blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 6 214 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2 values | repo_name stringlengths 6 87 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 15 values | visit_date timestamp[us]date 2016-08-04 09:00:04 2023-09-05 17:18:33 | revision_date timestamp[us]date 1998-12-11 00:15:10 2023-09-02 05:42:40 | committer_date timestamp[us]date 2005-04-26 09:58:02 2023-09-02 05:42:40 | github_id int64 436k 586M ⌀ | star_events_count int64 0 12.3k | fork_events_count int64 0 6.3k | gha_license_id stringclasses 7 values | gha_event_created_at timestamp[us]date 2012-11-16 11:45:07 2023-09-14 20:45:37 ⌀ | gha_created_at timestamp[us]date 2010-03-22 23:34:58 2023-01-07 03:47:44 ⌀ | gha_language stringclasses 36 values | src_encoding stringclasses 17 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 1 class | length_bytes int64 5 10.4M | extension stringclasses 15 values | filename stringlengths 2 96 | content stringlengths 5 10.4M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
7c39bfc0d47a951cbc53dd0d299efe527aa8fce2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1541/CH1/EX1.13/Chapter1_Example13.sce | e713d786143570d1e8a158b2abc5c249c1c1e7de | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 609 | sce | Chapter1_Example13.sce | //Chapter-1, Example 1.13, Page 1.34
//=============================================================================
clc
clear
//INPUT DATA
P=4;//Number of poles
V=500;//Terminal voltage in V
Ia=80;//Armature current in A
Ra=0.4;//Armature resistance in ohm
A=2;//Number of parallel paths
Z=522;//Number of conductors
q=0.025;//Useful flux per pole in Wb
//CALCULATIONS
Eb=(V-(Ia*Ra));//Back emf in V
N=(Eb*60*A)/(P*q*Z);//Speed of the motor in rpm
//OUTPUT
mprintf('Speed of the motor is %3.1f rpm',N)
//=================================END OF PROGRAM==============================
|
337d4b265290409a4c1719868a3943e25df7880a | 3b9a879e67cbab4a5a4a5081e2e9c38b3e27a8cc | /Área 1/Aula 5/Questao_10.sce | 4073727858d57537e25acfbc24f6ece5ab311508 | [
"MIT"
] | permissive | JPedroSilveira/numerical-calculus-with-scilab | 32e04e9b1234a0a82275f86aa2d6416198fa6c81 | 190bc816dfaa73ec2efe289c34baf21191944a53 | refs/heads/master | 2023-05-10T22:39:02.550321 | 2021-05-11T17:17:09 | 2021-05-11T17:17:09 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 88 | sce | Questao_10.sce | s=0
C = 0
M = eye(295,295)
for k=1:295;
s=s+M(k,1:k)*M(1:k,k);
C = C + (k - 1)
end
|
568f09d1919c376efcc0ce990a56ed3fd6b0e88b | e41b69b268c20a65548c08829feabfdd3a404a12 | /3DCosmos/BCK/Scripts/Test/test_shape.SCI | 801a17050d1eff7cbf370ce906a42430a42c976d | [
"LicenseRef-scancode-khronos",
"MIT"
] | permissive | pvaut/Z-Flux | 870e254bf340047ed2a52d888bc6f5e09357a8a0 | 096d53d45237fb22f58304b82b1a90659ae7f6af | refs/heads/master | 2023-06-28T08:24:56.526409 | 2023-03-01T12:44:08 | 2023-03-01T12:44:08 | 7,296,248 | 1 | 1 | null | 2023-06-13T13:04:58 | 2012-12-23T15:40:26 | C | UTF-8 | Scilab | false | false | 1,894 | sci | test_shape.SCI |
codeblock readtextfile(ScriptDir+"\TOOLS.sci");
sf=T_scene_create;
sss=T_getscene;
sss.ambientlightcolor=color(0.15,0.15,0.15);
#sss.VolumeShadowAdd(0,color(0,0,0,0.5),0.002,20);
refframe=sss.addsubframe("refframe");
sf1=sss.addsubframe("sf1");
obj=sf1.add("SolidObject");
createvar(s);
if true then {
s=Bar(point(-1,-1,-1),vector(2,2,2));
s.subsample(0.25);
for i=0 to 5 do {
pt=point(0.5,0,-1*i/5);
u=Bar(pt,vector(2,2,2));
u.subsample(0.5);
U.Transform(Transformation.rotate(vector(0,0,1),i/2));
u.SetLabel(1);
s=s-u;
}
s.subsample(0.25);
s.WarpSpiral(0.25);
s.WarpConalPinch(2);
s.subsample(0.2);
s3=sphere(point(0,0.5,0),0.4,30);s3.setlabel(2);
s=s-s3;
}
# break;
obj.CreateShape(s);
if false then {
cs=FlatContourSet;
cs.addpoint(point(0,0));
cs.addpoint(point(1,0));
cs.addpoint(point(2,2));
cs.addpoint(point(1,2));
cs.addpoint(point(0,1));
cs.close;
cs.calcflatnormals;
cs.newcontour;
fnc=functor("point(0.5+0.3*cos(a),0.6-0.5*sin(a),0)","a");
cs.generate(fnc,0,2*Pi,40);
# s1=ExtrudedShape(cs,0.5);
# s=s1-Sphere(point(1,1,0.5),0.6);
# obj.CreateShape(s);
}
if false then {
cs=FlatContourSet;
cs.addpoint(point(0,1));
cs.addpoint(point(1,1.5));
cs.addpoint(point(2,1));
cs.calcflatnormals;
s1=RevolvedShape(cs,80);
s=s1-Sphere(point(1.6,0,0.5),1.2,40);
obj.CreateShape(s);
}
#break;
#obj.CreateFlatShape(cs);
#obj.BlendType=BlendTransparent;
#obj.DepthMask=DepthMaskDisable;
#obj.RenderOutLine=true;
obj.renderback=true;
obj.color=color(0.4,0.6,0.8);
obj.SetColor(0,color(0,0.5,1));
obj.SetColor(1,color(1,0.5,0.25));
obj.SetColor(2,color(1,0,0));
obj.SpecularValue=30;
obj.SpecularColor=color(0.35,0.35,0.35);
root.time=time(2008,1,1,0,0,0);
root.TimeSpeed=0.001;
while true do {
incrtime;
render;
}
|
3cda5e03a2c3b1d638a32305dad5780249326296 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2120/CH6/EX6.3/ex6_3.sce | 7282b5a68e028a08b53727a8efb6c7e92aa4c8c6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 519 | sce | ex6_3.sce | //Exa 6.3
clc;
clear;
close;
//Given data
heatEngineEffi= 32/100;// heat engine efficiency
COP= 5;// COP of heat pump
// heat engine efficiency = Wnet/Q1 = (Q1-Q2)/Q1
Q1byWnet= 1/heatEngineEffi;
Q2byWnet= (1-heatEngineEffi)*Q1byWnet;
// COP = Q4/Wnet = Q4/(Q4-Q3)
Q4byWnet= COP;
ratio= (Q2byWnet+Q4byWnet)/Q1byWnet;// ratio of heat transferred to the circulating water to heat trasferred to the engine
disp(ratio,"Ratio of heat trasferred to the circulating water to heat trasferred to the engine is : ")
|
03297cf8ad3b90d3e98c3d5e70600bef83e33681 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2777/CH5/EX5.23/Ex5_23.sce | 5e298d45ac2d82958c69d337d4684bdceb903ae5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 5,437 | sce | Ex5_23.sce |
// ELECTRICAL MACHINES
// R.K.Srivastava
// First Impression 2011
// CENGAGE LEARNING INDIA PVT. LTD
// CHAPTER : 5 : INDUCTION MACHINES
// EXAMPLE : 5.23
clear ; clc ; close ; // Clear the work space and console
// GIVEN DATA
R1 = 0.2; // Circuit Parameter in Ohms
R2 = 0.4; // Circuit Parameter in Ohms
X1 = 1.0; // Circuit Parameter in Ohms
X2 = 1.5; // Circuit Parameter in Ohms
m = 3; // Total Number of phase in Induction Motor
p = 2; // Total number of Poles of Induction Motor
f = 50; // Frequency in Hertz
V = 440; // Operating Voltage of the Inductuon Motor
// CALCULATIONS
Ws = 2*%pi*f; // Synchronous angular speed in Radians per second
Z = (R1+R2)+((%i)*(X1+X2)); // At slip s=1, the impedance seen from the terminals in Ohms
s = 1; // Slip
// For Case(a) Winding is connected in star
Isy_a = V/(abs(Z)*sqrt(3)); // Current in Amphere
Tsy_a = (3*Isy_a^2*R2)/(s*Ws); // Torque in Newton-Meter
// Winding is connected in delta
Isd_a = (V*sqrt(3))/abs(Z); // Current in Amphere
Tsd_a = (3*(Isd_a/sqrt(3))^2*R2)/(s*Ws); // Torque in Newton-Meter
I_R = Isd_a/Isy_a; // Ratio of the line current
T_R = Tsd_a/Tsy_a; // Ratio of the Torque
// For Case(b) Machine is started using auto-transfromer and voltage is 50% reduced
Isy_b = (0.5*V)/(abs(Z)*sqrt(3)); // Current in Amphere when Winding is connected star
Tsy_b = (3*Isy_b^2*R2)/(s*Ws); // Torque in Newton-Meter when Winding is connected star
Isd_b = (0.5*V*sqrt(3))/abs(Z); // Current in Amphere when Winding is connected delta
Tsd_b = (3*(Isd_b/sqrt(3))^2*R2)/(s*Ws); // Torque in Newton-Meter when Winding is connected delta
// For Case(c) Both Voltage and Frequency are reduced to 50%
f_new = (10/100)*f; // New Frequency
Ws_c = 2*%pi*f_new; // Synchronous angular speed in Radians per second
Z_c = ((R1+R2)+((%i)*(X1+X2))*(f_new/f)); // At slip s=1, the impedance seen from the terminals in Ohms
Isy_c = (0.1*V)/(abs(Z_c)*sqrt(3)); // Current in Amphere when Winding is connected star
Tsy_c = (3*Isy_c^2*R2)/(s*Ws_c); // Torque in Newton-Meter when Winding is connected star
Isd_c = (0.1*V*sqrt(3))/abs(Z_c); // Current in Amphere when Winding is connected delta
Tsd_c = (3*(Isd_c/sqrt(3))^2*R2)/(s*Ws_c); // Torque in Newton-Meter when Winding is connected delta
// DISPLAY RESULTS
disp("EXAMPLE : 5.23 : SOLUTION :-");
printf("\n For Case (a.1) Winding is connected in star \n");
printf("\n (a.1.1) Per phase impedance seen from the terminals in Ohms, Z = %.3f < %.1f Ohms \n",abs(Z),atand(imag(Z),real(Z)));
printf("\n (a.1.2) Initial Starting Current , Isy = %.2f A \n",Isy_a)
printf("\n (a.1.3) Starting Torque , Tsy = %.1f Nm \n",Tsy_a)
printf("\n For Case (a.2) Winding is connected in delta \n" );
printf("\n (a.2.1) Initial Starting Current , Isd = %.2f A \n",Isd_a)
printf("\n (a.2.2) Starting Torque , Tsd = %.2f Nm \n",Tsd_a)
printf("\n For Case (b) Machine is started using auto-transfromer and voltage is 50 percentage reduced :- (b.1) Winding is connected in star \n ")
printf("\n (b.1.1) Per phase impedance seen from the terminals in Ohms, Z = %.3f<%.1f Ohms \n",abs(Z),atand(imag(Z),real(Z)));
printf("\n (b.1.2) Initial Starting Current , Isy = %.1f A \n",Isy_b)
printf("\n (b.1.3) Starting Torque , Tsy = %.2f Nm \n",Tsy_b)
printf("\n For Case (b.2) Winding is connected in delta \n" );
printf("\n (b.2.1) Initial Starting Current , Isd = %.2f A \n",Isd_b)
printf("\n (b.2.2) Starting Torque , Tsd = %.f Nm \n",Tsd_b)
printf("\n For Case (c) Both Voltage and Frequency are reduced to 50 percentage :- (c.1) Winding is connected in star \n ");
printf("\n (c.1.1) Per phase impedance seen from the terminals in Ohms, Z = %.2f<%.2f Ohms \n",abs(Z_c),atand(imag(Z_c),real(Z_c)));
printf("\n (c.1.2) Initial Starting Current , Isy = %.2f A \n",Isy_c)
printf("\n (c.1.3) Starting Torque , Tsy = %.2f Nm \n",Tsy_c)
printf("\n For Case (c.2) Winding is connected in delta \n" );
printf("\n (c.2.1) Initial Starting Current , Isd = %.2f A \n",Isd_c)
printf("\n (c.2.2) Starting Torque , Tsd = %.2f Nm \n",Tsd_c)
printf('\nComparing the Calculated values of starting current and torque eid rated frequency and rated voltage\n")
printf("\n star delta\n")
printf("\n 440V,50Hz 44V,5Hz 440V,50Hz 44V,5Hz \n")
printf("\n starting current %.2f A %.f A %.f A %.2f A \n",Isy_a,Isy_c,Isd_a,Isd_c)
printf("\n starting Torque %.1f Nm %.2f Nm %.f Nm %.2f Nm \n",Tsy_a,Tsy_c,Tsd_a,Tsd_c)
printf("\n\n [ TEXT BOOK SOLUTION IS PRINTED WRONGLY ( I verified by manual calculation )]\n" );
printf("\n WRONGLY PRINTED ANSWERS ARE :- For Case (a.2) Winding is connected in delta :- (a) Initial Starting Current Isy = 254.01 A instead of %.2f A \n\n ",Isd_a);
|
ebd007d45da45392674ebd4ed58800164af7e540 | 449d555969bfd7befe906877abab098c6e63a0e8 | /650/CH2/EX2.7/7.sce | 4966ec402ba3cd60d0f260d013f520580bbc0ae9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 370 | sce | 7.sce | clc
Q=100; //m^3/hr
d1=0.2; //m
d2=0.15; //m
p1=80*10^3; //N/m^2
rho=1000; //kg/m^3
g=9.8; //m/s^2
a1=%pi*d1^2/4;
a2=%pi*d2^2/4;
v1=Q/3600/a1;
v2=Q/3600/a2;
H_L=0.2*v2^2/2/g;
p2=p1+rho/2*(v1^2-v2^2)-rho*g*H_L;
F_u=p1*a1; // Upstream force
F_d=p2*a2; // Downstream force
F_x=rho*Q/3600*(v2-v1)-F_u+F_d;
disp("Force required =")
disp(F_x)
disp("N") |
a5c7fc5d1ed38b9dc7dfe9353f2f12257eaa49dc | 676ffceabdfe022b6381807def2ea401302430ac | /solvers/CompressibleFlowSolver/Tests/Perturbation_NS_M05_square_CBC_par.tst | 604f6e83d4c6736579fc5fbd86fdb0a596fda175 | [
"MIT"
] | permissive | mathLab/ITHACA-SEM | 3adf7a49567040398d758f4ee258276fee80065e | 065a269e3f18f2fc9d9f4abd9d47abba14d0933b | refs/heads/master | 2022-07-06T23:42:51.869689 | 2022-06-21T13:27:18 | 2022-06-21T13:27:18 | 136,485,665 | 10 | 5 | MIT | 2019-05-15T08:31:40 | 2018-06-07T14:01:54 | Makefile | UTF-8 | Scilab | false | false | 1,240 | tst | Perturbation_NS_M05_square_CBC_par.tst | <?xml version="1.0" encoding="utf-8"?>
<test>
<description>Euler, pressure perturbation to test RiemannInvariant CBC, Navier-Stokes equations parallel</description>
<executable>CompressibleFlowSolver</executable>
<parameters>--use-scotch Perturbation_NS_M05_square_CBC_par.xml</parameters>
<processes>8</processes>
<files>
<file description="Session File"> Perturbation_NS_M05_square_CBC_par.xml</file>
<file description="Restart File"> Perturbation_NS_M05_square_CBC_par.rst</file>
</files>
<metrics>
<metric type="L2" id="1">
<value variable="rho" tolerance="1e-12">4.72522e-06</value>
<value variable="rhou" tolerance="1e-12">0.000826153</value>
<value variable="rhov" tolerance="1e-12">0.000972476</value>
<value variable="E" tolerance="1e-12">9463.8</value>
</metric>
<metric type="Linf" id="2">
<value variable="rho" tolerance="1e-12">0.000219959</value>
<value variable="rhou" tolerance="1e-12">0.0544127</value>
<value variable="rhov" tolerance="1e-12">0.0262103</value>
<value variable="E" tolerance="1e-12">37883.9</value>
</metric>
</metrics>
</test>
|
e55a9ab5fa969e5137a25ff87287ea4a212cea84 | 449d555969bfd7befe906877abab098c6e63a0e8 | /539/CH18/EX18.2/Example_18_2.sce | 968b0865d6ae0e2178464d9d1b9d2ca52e53d3a1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 503 | sce | Example_18_2.sce | //Electrical Conductivity Determination for Intrinsic Silicon at 150°C
clear;
clc;
printf("\t Example 18.2\n");
e=1.6*10^-19; //Coulomb Charge on electron
ni=4*10^19; //For Si at 423 K (m^-3)
//Values of m_e and m_h are deduced from graphs at page No.689
m_e=0.06; //m^2/V-s Mobility of electron
m_h=0.022; ////m^2/V-s Mobility of holes
//sigma is electrical conductivity
sigma=ni*e*(m_e+m_h);
printf("\nElectrical Conductivity is : %f (Ohm-m)^-1\n",sigma);
//End |
0ce5b23a958aaf3b0b19fd7b7dbe0ca0d1b3ac18 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3756/CH1/EX1.12/Ex1_12.sce | bb623d57d9650a1e1d83cf3bfbc6239cf91ca773 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 285 | sce | Ex1_12.sce | clc
//
//
//
//Variable declaration
d=0.3*10**-2 //slit separation
D=1 //Distance from Screen
Beta=0.0195*10**-2 //Wavelength
//Calculations
lambdaa=(Beta*d*10**10)/D
//Result
printf("\n The wavelength is %i *10**-10 m",lambdaa)
|
55ddf799c7ba66299da82cd775b195a81f7232cd | 449d555969bfd7befe906877abab098c6e63a0e8 | /1271/CH2/EX2.20/example2_20.sce | 1dc43215d24d6a425a8e82ab84bfe7af0e07774e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 530 | sce | example2_20.sce | clc
// Given that
lambda = 6e-7 // wavelength of light in meter
b = 1.2e-6 // slit-width in meter
// Sample Problem 20 on page no. 2.46
printf("\n # PROBLEM 20 # \n")
m = 1 // for first minima
theta = asin((m * lambda) / b) // calculation for angular width of the central maxima in radian
theta_ = theta * (180 / %pi) // calculation for angular width of the central maxima in degree
printf("\n Standard formula used \n theta = asin((m * lambda) / b). \n")
printf("\n Angular width of the central maxima = %f degree ",2 * theta_)
|
5c7d232447cb3bb4a1971e26d743881d9e7fed31 | 8ad9380384d2751d79937ba5d6d581565596b891 | /sci_gateway/cpp/builder_gateway_cpp.sce | b8d6660e5cedc900dbf32fba64cecb14220eea44 | [
"BSD-3-Clause"
] | permissive | iamAkshayrao/scilab_point_cloud_toolbox | 1d8845f0830ddb623383c8dbfeadc8a3a35e8801 | 5d592a695b7976f4e63f0ae24d0a14937e474642 | refs/heads/master | 2022-12-17T23:14:11.513116 | 2020-09-25T18:57:02 | 2020-09-25T18:57:02 | 290,829,006 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,805 | sce | builder_gateway_cpp.sce | //Submitted as part of Scilab Toolbox Hackathon, An initiative of the FOSSEE Project, IIT-B
//Toolbox Name : Point Cloud Toolbox
//Team ID : SH105
//Team members : Ankit Kumar (Team Leader)
// Akshay S Rao
// Aliasgar AV
// Mohammed Rehab Sait
mode(-1)
lines(0)
toolbox_title = "Point_Cloud_Toolbox";
Build_64Bits = %t;
path_builder = get_absolute_file_path('builder_gateway_cpp.sce');
Function_Names = [
"PointCloud","sci_PointCloud", "csci6";
];
//Name of all the files to be compiled
Files = [
"sci_PointCloud.cpp"
]
[a, opt] = getversion();
Version = opt(2);
//Build_64Bits = %f;
if getos()=="Windows" then
third_dir = path_builder+filesep()+'..'+filesep()+'..'+filesep()+'thirdparty';
lib_base_dir = third_dir + filesep() + 'windows' + filesep() + 'lib' + filesep() + Version + filesep();
inc_base_dir = third_dir + filesep() + 'windows' + filesep() + 'include';
C_Flags=['-D__USE_DEPRECATED_STACK_FUNCTIONS__ -I -w '+path_builder+' '+ '-I '+inc_base_dir+' ']
Linker_Flag = [lib_base_dir+"libraryname.lib "]
elseif getos()=="Darwin" then //Mac
third_dir = path_builder+filesep()+'..'+filesep()+'..'+filesep()+'thirdparty';
lib_base_dir = third_dir + filesep() + 'Mac' + filesep() + 'lib' + filesep() + Version + filesep();
inc_base_dir = third_dir + filesep() + 'Mac' + filesep() + 'include' ;
C_Flags=["-D__USE_DEPRECATED_STACK_FUNCTIONS__ -w -fpermissive -I"+path_builder+" -I"+inc_base_dir+" -Wl,-rpath "+lib_base_dir+" "]
Linker_Flag = ["-L"+lib_base_dir+" -lmul -Wl,-rpath="+lib_base_dir]
else//LINUX
third_dir = path_builder+filesep()+'..'+filesep()+'..'+filesep()+'thirdparty';
lib_base_dir = third_dir + filesep() + 'linux' + filesep() + 'lib' + filesep() + Version + filesep();
inc_base_dir = third_dir + filesep() + 'linux' + filesep() + 'include';
C_Flags = ["-I"+inc_base_dir];
Linker_Flag = ["-L" + lib_base_dir + " -lextract_feature -ladd_gaussian_noise -ltransform_from_viewpoint -lxyz2pcd -lpcd2vtk -lgenerate -lcluster_extraction -luniform_sampling -lplane_projection -lvfh_estimation -lvtk2pcd -lpcd_viewer -lply2vtk -lvtk2obj -lvtk2ply -lobj2pcd -lpoisson_reconstruction -lvoxel_grid -lmesh_sampling -lradius_filter -lnormal_estimation -lgrid_min -lfpfh_estimation -lprogressive_morphological_filter -lconcatenate_points_pcd -lfast_bilateral_filter -lmarching_cubes_reconstruction -lpcd_change_viewpoint -lobj2ply -lcompute_cloud_error -lpassthrough_filter -lpcd2ply -lpcd2png -lgp3_surface -lcrop_to_hull -lcompute_hull -lply2pcd -lcompute_hausdorff -loutlier_removal -ltransform_point_cloud -lpclzf2pcd -Wl,-rpath="+lib_base_dir + " -lflann"];
//-lpcl_people -lpcl_segmentation -lpcl_outofcore -lpcl_ml -lpcl_visualization -lpcl_keypoints -lpcl_tracking -lpcl_filters -lpcl_surface -lpcl_sample_consensus -lpcl_recognition -lpcl_registration -lpcl_features -lpcl_search -lpcl_kdtree -lpcl_io_ply -lpcl_stereo -lpcl_io -lpcl_octree -lpcl_common
PCL_DIR=[lib_base_dir+"libpcl_common",lib_base_dir+"libpcl_ml",lib_base_dir+"libpcl_octree",lib_base_dir+"libpcl_io_ply",lib_base_dir+"libpcl_io",lib_base_dir+"libpcl_stereo",lib_base_dir+"libpcl_kdtree",lib_base_dir+"libpcl_search",lib_base_dir+"libpcl_sample_consensus",lib_base_dir+"libpcl_filters",lib_base_dir+"libpcl_features",lib_base_dir+"libpcl_registration",lib_base_dir+"libpcl_recognition",lib_base_dir+"libpcl_surface",lib_base_dir+"libpcl_tracking",lib_base_dir+"libpcl_keypoints",lib_base_dir+"libpcl_visualization",lib_base_dir+"libpcl_outofcore",lib_base_dir+"libpcl_segmentation",lib_base_dir+"libpcl_people"]
end
tbx_build_gateway(toolbox_title,Function_Names,Files,get_absolute_file_path("builder_gateway_cpp.sce"),PCL_DIR, Linker_Flag, C_Flags,[]);
clear toolbox_title Function_Names Files Linker_Flag C_Flags;
|
a9e8ea6f7753b4ff407346d8535fc7d2691b0741 | 62e6605ab494919b6833bf1a1b158bcb6f9b79df | /chck.sci | e72df216cea0ec4202444a5a027b5cd850f2db41 | [] | no_license | mani1250/system-identification | c597c26d10bb5dd62b1b4db650b3945afc336e37 | 5db0536c792dfaa4a8f01561315263503ff34d3d | refs/heads/master | 2021-01-12T06:56:00.703593 | 2017-03-07T12:18:15 | 2017-03-07T12:18:15 | 76,865,655 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 984 | sci | chck.sci | clear;
clc;
Fs = 1000; // Sampling frequency
Fc = 400; // cut-off frequency
w = Fc/(Fs/2); // Normalized frequency
// Design a low pass filter with above mentioned specifications
[b,a] = iir(5,'lp','butt',0.8); // 5th order butterworth LPF
[h,w] = frmag();
figure;
plot(w/%pi*Fs/2,abs(h));
title('frquency response of a 5th order Butterworth LPF');
xlabel('Frequency (Hz)');
ylabel('Magnitude');
grid;
// Finding the Actual Impulse response of the LPF by applying
N = 128;
impulse = [1 zeros(1,N)] // applying an impulse
h = filter();
figure;
subplot(2,1,1)
plot(h/max(h)); // plot the normalized response
title('Acyual impulse Response');
// Using the correlation to find the impulse of the lpf
for(i=1:128)
x = rand(1,N,'normal');
y = filter(); rxy = xcorr(x,y);
Rxy = fliplr();
PA(:,1) = Rxy;
end
clear Ryx
Ryx = sum(PA')/128;
subplot(2,1,2)
plot(Rxy/max(Ryx));
title('Estimated Impulse Response');
grid; |
534cd408432a5ccfe4baae29aa0ca2257e541c1a | 449d555969bfd7befe906877abab098c6e63a0e8 | /884/CH15/EX15.3/Example15_3.sce | 4b6da560dfb20f198d67797e226145d8f077dd3d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 484 | sce | Example15_3.sce | // Computation of pH of a solution from [H+] ion concentration
clear;
clc;
printf("\t Example 15.3\n");
H1=3.2*10^-4; //Concentration of [H+] ion on first occasion, M
pH1=-log10(H1);//from the definition of pH
printf("\t pH of the solution on first occasion is: %4.2f \n",pH1);
H2=1*10^-3; //Concentration of [H+] ion on second occasion, M
pH2=-log10(H2);//from the definition of pH
printf("\t pH of the solution on second occasion is : %4.2f \n",pH2);
//End
|
3fff71db078abbe6644a3583599a7de5272637b8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1847/CH2/EX2.64/Ch02Ex64.sce | ec9ea0b47f5f8fc8e8a2003305d4f177f05506da | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 821 | sce | Ch02Ex64.sce | // Scilab Code Ex2.64:: Page-2.49(2009)
clc; clear;
lambda1 = 6000e-008; // First visible wavelength, cm
lambda2 = 4500e-008; // Second visible wavelength, cm
R = 120; // Radius of curvature of the lens, cm
// As diameter of nth dark ring due to lambda1 is
// D_n^2 = 4*n*R*lambda1 and D_nplus1^ = 4*(n+1)*R*lambda2, so that D_n^2 = D_nplus1^2 gives
n = lambda2/(lambda1-lambda2); // Order of interference for dark fringes
printf("\nThe value of n = %d", n);
n = 15; // Order of interference fringe
D_n = sqrt(4*n*R*lambda1); // Diameter of nth dark ring due to lambda1
printf("\nThe diameter of 15th dark ring due to wavelength of %4d angstrom = %4.2f cm", lambda1/1e-008, D_n);
// Result
// The value of n = 3
// The diameter of 15th dark ring due to wavelength of 6000 angstrom = 0.66 cm
|
dd402ae46f8e437266e6745cbb55683c23207641 | 449d555969bfd7befe906877abab098c6e63a0e8 | /260/CH5/EX5.17/5_17.sce | 4db2fef1400383e21139d5f866ff49054274f44a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 470 | sce | 5_17.sce | //Eg-5.17
//pg-259
clear
clc
A=[1 3 6;3 5 7;6 7 4];
T = [1 -6.7082 0;-6.7082 9.8 4.6;0 4.6 -0.8]; //The corresponding tridigonal matrix
x = poly(0,'x');
p = det(A - x*eye(3,3));
q = det(T - x*eye(3,3));
printf('\nThe characteristic polynomial of the orignal matrix A is ')
disp(p)
printf('\nThe characteristic polynomial of the tridiagonal matrix of A is ')
disp(q)
printf('\n\nIt is clear that both the polynomials are almost the same.\n')
|
c853079be79919a008d1278f2c56a3ccc288697b | a29c13fa4c58d566270fb640a4d1f184f92c1223 | /02_Software/02_Control_Design/03_Start-Up_Process/Start Up_Energy.sce | bda7a810798d131ff9df6761971c0c56bd7eac29 | [] | no_license | li-bre/li-bre-wind | e15bc80f955d02731fe6e7eb255f24478a2395ae | d65584798c48461484e3a3531797612e3ba18c32 | refs/heads/master | 2022-02-28T15:32:22.893410 | 2022-02-08T15:54:47 | 2022-02-08T15:54:47 | 232,623,593 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,570 | sce | Start Up_Energy.sce | //Simulation of the Start-up process at v1=3.5 m/s
close
clear
exec('polyfit.sci');
R=0.75;
H=1.2;
A=2*R*H;
rho=1.22;
J_rotor=8.2;
v1=3.5;
omega_3_5=[0.467 0.933 1.400 1.867 2.333 2.800 3.267 3.733 4.200 4.667 5.133 5.600 6.067 6.533 7.000 7.467 7.933 8.400 8.867 9.333 9.800 10.267 10.733 11.200 11.667 12.133 12.600];
n_3_5=omega_3_5*60/(2*%pi);
CM_3_5=[0.0265 0.0265 0.027 0.0275 0.0285 0.0295 0.03 0.03 0.031 0.032 0.034 0.0385 0.044 0.05 0.0575 0.0665 0.0775 0.0895 0.1035 0.1145 0.12 0.131 0.1495 0.1455 0.132 0.1185 0.104];
T_3_5=0.5*rho*A*R*v1.^2*CM_3_5; // Turbine torque
omega_4=[0.533 1.067 1.600 2.133 2.667 3.200 3.733 4.267 4.800 5.333 5.867 6.400 6.933 7.467 8.000 8.533 9.067 9.600 10.133 10.667 11.200 11.733 12.267 12.800 13.333 13.867 14.400];
n_4=omega_4*60/(2*%pi);
omega_5=[0.667 1.333 2.000 2.667 3.333 4.000 4.667 5.333 6.000 6.667 7.333 8.000 8.667 9.333 10.000 10.667 11.333 12.000 12.667 13.333 14.000 14.667 15.333 16.000 16.667 17.333 18.000];
n_5=omega_5*60/(2*%pi);
T_4=[0.272 0.267 0.279 0.296 0.32 0.347 0.366 0.383 0.404 0.428 0.469 0.537 0.619 0.712 0.821 0.958 1.119 1.302 1.505 1.638 1.695 1.881 2.092 1.945 1.76 1.575 1.364];
T_5=[0.363 0.383 0.41 0.443 0.498 0.555 0.599 0.63 0.651 0.674 0.743 0.86 0.978 1.136 1.304 1.557 1.873 2.189 2.458 2.69 2.886 3.307 3.328 3.002 2.673 2.336 2.089];
//n_Gen_LL=[0 88.9 124.3 244.2 372.4 483.7 580.1];
//omega_Gen_LL=n_Gen_LL*2*%pi/60;
//T_Gen_LL=[0.87 1.02 1.17 1.46 1.70 1.80 1.71];
n_Gen_LL=[0 88.9 124.3 244.2];
omega_Gen_LL=n_Gen_LL*2*%pi/60;
T_Gen_LL=[0.87 1.02 1.17 1.46];
T_3_5_fun=polyfit(omega_3_5,T_3_5,5); // Fit a polynomial function
T_4_fun=polyfit(omega_4,T_4,5); // Fit a polynomial function
T_5_fun=polyfit(omega_5,T_5,7); // Fit a polynomial function
T_gen_LL_fun=polyfit(omega_Gen_LL,T_Gen_LL,3); // Fit a polynomial function
omega_fit=(0:0.1:18);
T_3_5_fit=horner(T_3_5_fun,omega_fit); //Evaluate polynomial function
T_4_fit=horner(T_4_fun,omega_fit); //Evaluate polynomial function
T_5_fit=horner(T_5_fun,omega_fit); //Evaluate polynomial function
T_gen_LL_fit=horner(T_gen_LL_fun,omega_fit); //Evaluate polynomial function
//
//scf(0); clf();
//plot(omega_fit,T_3_5_fit)
//plot(omega_3_5,T_3_5,'g')
//plot(omega_fit,T_4_fit)
//plot(omega_4,T_4,'g')
//plot(omega_fit,T_5_fit)
//plot(omega_5,T_5,'g')
T_ges_3_5=T_3_5_fit-T_gen_LL_fit;
[Tges_3_5_pos,posloc_3_5]=find(T_ges_3_5>0);
P_ges_3_5=T_ges_3_5.*omega_fit;
P1_3_5=P_ges_3_5*0.6;
T_ges_4=T_4_fit-T_gen_LL_fit;
[Tges_4_pos,posloc_4]=find(T_ges_4>0);
P_ges_4=T_ges_4.*omega_fit;
P1_4=P_ges_4*0.6;
T_ges_5=T_5_fit-T_gen_LL_fit;
[Tges_5_pos,posloc_5]=find(T_ges_5>0);
P_ges_5=T_ges_5.*omega_fit;
P1_5=P_ges_5*0.6;
n_fit=omega_fit*60/(2*%pi);
scf(1); clf();
//plot(n_fit,T_3_5_fit)
//plot(n_fit,T_4_fit,'g')
//plot(n_fit,T_5_fit,'k')
plot(n_fit(posloc_3_5),P1_3_5(posloc_3_5),"thickness",2)
plot(n_fit(posloc_4),P1_4(posloc_4),'r',"thickness",2)
plot(n_fit(posloc_5),P1_5(posloc_5),'k',"thickness",2)
//plot(n_fit,T_gen_LL_fit,'r')
l=legend([...
'$v_1=3.5\ m/s$';...
'$v_1=4\ m/s$';...
'$v_1=5\ m/s$';...
],2);
xlabel ("$Rotational\ speed\ n_{turb}\ [RPM]$")
//ylabel ("$Torque\ [Nm],\ Power\, [W]$")
ylabel ("$expected\ power\, P_2\ [W]$")
a=gca();
f=get("current_figure");
f.figure_size=[800,550];
a.grid=[1 1];
a.font_size=4;
a.title.font_size=4;
a.x_label.font_size=4;
a.y_label.font_size=4;
l.font_size = 3;
a.axes_visible="on";
a.data_bounds=[0,0,0;180,20,0]; //set the boundary values for the x, y and z coordinates.
////
filename='start_up_P_2_payback';
xs2pdf(gcf(),filename);
|
2827b733da18c85e3e393a991c070c0ed3705e9f | 449d555969bfd7befe906877abab098c6e63a0e8 | /149/CH13/EX13.10/que10.sce | 3b70e30eff278893c9885e29ebf47040bd4e417b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 88 | sce | que10.sce | //error
clc
disp('solution of the given linear differential equation is given by : '); |
54203861d1223d069c665e0bddc0d0e932cdb6ac | 449d555969bfd7befe906877abab098c6e63a0e8 | /10/CH6/EX2/cha6_2.sce | 6fd11e4fae1d5a5fe8a3e9953dc101a9372bc7f5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 729 | sce | cha6_2.sce | V=14000;Phase=3;Ra=0.07;V1=10;Is=490;Pf=0.8;
If=200;Vl=18000;
Vb=V/sqrt(Phase)
Ib=(V1*10^6)/(sqrt(Phase)*V)
Zb=Vb/Ib
Zsun=(Vl/sqrt(3))/Is
Xsun=sqrt(Zsun^2-Ra^2)
Xsun=Xsun/Zb
Zssa=(V/sqrt(3))/Is
Xssa=Zssa/Zb
a=cos(0.8)
Deg=a*180/%pi
Zs=Zssa/Ra
Zs=atan(Zs)
Angle=Zs*180/%pi
function[x,y]=polar2rect(r,theta)
x=r*cos(theta*%pi/180);
y=r*sin(theta*%pi/180);
endfunction
[a,b]=polar2rect(1,0)
X1=a+%i*b
[c,d]=polar2rect(1,-Deg)
X2=c+%i*d
[e,f]=polar2rect(0.84,Angle)
X3=e+%i*f
X=X1+(X2*X3)
function[r,theta]=rect2polar(x,y)
r=sqrt(x^2+y^2);
theta=atan(y/x)*180/%pi;
endfunction
[I,Angle]=rect2polar(1.54,0.64)
Ef=I*V
If=I*If
|
8b89cf002e78c57ba685ea40257345788092072e | 449d555969bfd7befe906877abab098c6e63a0e8 | /2780/CH10/EX10.5/Ex10_5.sce | 0d5a6fe82d152d5e0fd82b579fc84fa4406a7c65 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 306 | sce | Ex10_5.sce | clc
//to calculate number of ampere turns
l=0.5 //length in m
mu=6.5*10^-3 //permeability of iron in henry/m
A=2*10^-4 //area of cross-section in m^-4
R=l/(mu*A) //reluctance in A-turns/weber
flux=4*10^-4 //in weber
mmf=flux*R
disp("the number of ampere turns is mmf="+string(mmf)+"ampere-turns")
|
480327e19564da75626907d6eaeeed742b2f45e0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /830/CH3/EX3.1.4/Signal2.sce | 9f5f8133f1a409210825cde0694b1e5668a77418 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 184 | sce | Signal2.sce | //Graphical//
//Example 3.1.4
//Z transform of x[n] = -alpha^n. u[-n-1]
//alpha = 0.5
clear;
close;
clc;
syms n z;
x=-(0.5)^(-n)
X=symsum(x*(z^(n)),n,1,%inf)
disp(X,"ans=")
|
15282331b1f9b98d9eb8c342e39291560a672933 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3472/CH10/EX10.9/Example10_9.sce | 267c9917a3df5d35f6e91714628f9e3b507a3b2d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 2,992 | sce | Example10_9.sce | // A Texbook on POWER SYSTEM ENGINEERING
// A.Chakrabarti, M.L.Soni, P.V.Gupta, U.S.Bhatnagar
// DHANPAT RAI & Co.
// SECOND EDITION
// PART II : TRANSMISSION AND DISTRIBUTION
// CHAPTER 3: STEADY STATE CHARACTERISTICS AND PERFORMANCE OF TRANSMISSION LINES
// EXAMPLE : 3.9 :
// Page number 134
clear ; clc ; close ; // Clear the work space and console
// Given data
f = 50.0 // Frequency(Hz)
E_r = 66.0*10**3 // Line voltage at receiving end(V)
l = 120.0 // Line length(km)
r = 0.1 // Resistance(ohm/km/phase)
x = 0.3 // Inductive reactance(ohm/km/phase)
y = 0.04*10**-4 // Capacitive susceptance(S/km/phase)
P_L = 10.0*10**6 // Load at receiving end(W)
PF_r = 0.8 // Lagging load power factor
// Calculations
R = r*l // Total resistance(ohm/phase)
X = x*l // Inductive reactance(ohm/phase)
Y = y*l // Susceptance(mho)
Z = complex(R,X) // Total impedance(ohm/phase)
V_r = E_r/3**0.5 // Receiving end phase voltage(V)
I_r = P_L/(3**0.5*E_r*PF_r)*exp(%i*-acos(PF_r)) // Load current(A)
V_1 = V_r+I_r*(Z/2) // Voltage across capacitor(V)
I_c = %i*Y*V_1 // Charging current(A)
I_s = I_r+I_c // Sending end current(A)
V_s = V_1+I_s*(Z/2) // Sending end voltage(V/phase)
V_s_ll = 3**0.5*abs(V_s)/1000.0 // Sending end line to line voltage(kV)
angle_Vr_Vs = phasemag(V_s) // Angle between V_r and V_s(°)
angle_Vr_Is = phasemag(I_s) // Angle between V_r and I_s(°)
angle_Vs_Is = angle_Vr_Vs-angle_Vr_Is // Angle between V_s and I_s(°)
PF_s = cosd(angle_Vs_Is) // Sending end power factor
P_s = 3*abs(V_s*I_s)*PF_s // Sending end power(W)
n = P_L/P_s*100 // Transmission efficiency(%)
// Results
disp("PART II - EXAMPLE : 3.9 : SOLUTION :-")
printf("\nSending end voltage, |V_s| = %.f V/phase = %.3f V (line-to-line)", abs(V_s),V_s_ll)
printf("\nSending end current, |I_s| = %.2f A", abs(I_s))
printf("\nTransmission efficiency = %.2f percent \n", n)
printf("\nNOTE: ERROR: Calculation mistake in finding sending end power factor")
printf("\n Changes in the obtained answer from that of textbook is due to more precision")
|
382f7880f752ce5e6316e3ea75f6aaf55d11428c | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/eqtflength/eqtflength4.sce | 9f8a973b93fe664aeed8db15d8a247c173b74255 | [] | no_license | deecube/fosseetesting | ce66f691121021fa2f3474497397cded9d57658c | e353f1c03b0c0ef43abf44873e5e477b6adb6c7e | refs/heads/master | 2021-01-20T11:34:43.535019 | 2016-09-27T05:12:48 | 2016-09-27T05:12:48 | 59,456,386 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 269 | sce | eqtflength4.sce | num=[1 0.5 50 5];
n=[1 3 4 5];
den=[1 0.75 0.6 0];
[b,a]=eqtflength(num,den,n);
disp(b);
disp(a);
//output
//[b,a]=eqtflength(num,den,n);
// !--error 58
//Wrong number of input arguments.at line 4 of exec file called by : //length4.sce', -1
|
f85d8869ffdabf6b7161cff1a7679aab66ce320d | 127f3a4b49df924522f80739a53cc288d5521807 | /tp2/exercice2.sci | 6530b8a49a2c415370b2ff6aaca767fc44c95460 | [] | no_license | iimen/TD-TP-CN | 94e90aae917e47b8cc4d6d8b80af803b0dc82986 | 81da5d066b4ae7f3a2947f2fd4f4e67a88b5863a | refs/heads/master | 2023-01-24T16:23:51.161089 | 2020-12-17T12:29:55 | 2020-12-17T12:29:55 | 318,002,785 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 367 | sci | exercice2.sci | //N=100
function jouet (N)
A= rand(N,N);
xex= rand(N,1);
b=A*xex ;
x=A\b ;
frelres= norm(x-xex)/norm (xex);
brelres= norm(b-A*x)/norm(b);
disp ("frelres : ",frelres);
disp ("brelres : ",brelres);
c= cond(A);
disp ("conditionnement : ",c);
borne = cond(A) * brelres;
disp ("borne : ",borne);
disp ('fin du pg');
end
|
63015ba6df156db4dc4f97bebfec3ece2f598452 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1238/CH1/EX1.10.b/10_b.sce | 9fff80822c72b316715ff60f0bcbd74f31d6f171 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 205 | sce | 10_b.sce | //decimal to hex conversion//
//example 10.b//
clc
//clears the command window//
clear
//clears//
//decimal to hex conversion//
x=2047
a=dec2hex(2047)
disp('the result in hex form is:')
disp(a)
|
a846d2ee7f3e04877d1b2ccdeff316ee31121bd1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /965/CH4/EX4.1/1.sci | 962b43411f550db87531c989d07076f5a6078876 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 680 | sci | 1.sci | clc;
clear all;
disp("required time calculation")
As=2*0.5*0.5;// m^2 surface area of plate
V=0.5*0.5*0.00625;// m^3 volume of plate
Lc=V/As;// m characteristic length of plate
h=90; //W/m^2/C
k=370;//W/m.C
rho=9000;// kg/m^3
C=380;//J/kg.C
t=108;// degree C
ta= 36;// degree C
ti=300;// degree C
Bi=h*Lc/k;// biot number
if (Bi< 0.1)
disp("Bi is less than 0.1 hence lumped heat capacity method can be applied")
disp("Temperature distribution is given by : (t-ta)/(ti-ta) = exp((-h*As*tau)/rho*V*C)")
m=(t-ta)/(ti-ta);
x=-h*As/(V*rho*C);
disp("sunstituting the values we get,")
tau = (log(m))/x;
disp("sec",tau,"time required to attend the temperature is ")
|
f04a7aefa1c84053132b0f5456073566e4a28b92 | bdbafbcce90eb6b9aa54964c32057b8117961b58 | /Moniteur_Skel.sce | 857cc32a12561180f0b6db2cf0a47fd5baf1bab6 | [] | no_license | Rachine/Tp_Optim | 617191c586b46d8d44fc1bd24b24e3d3b760c851 | 68cabcb55cd4f343796d6f0f3823e4aa03edbe25 | refs/heads/master | 2016-09-05T09:23:21.650931 | 2015-05-10T20:37:58 | 2015-05-10T20:37:58 | 34,060,544 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,983 | sce | Moniteur_Skel.sce | ///////////////////////////////////////////////////////////////////////////////
// //
// MONITEUR D'ENCHAINEMENT POUR LE CALCUL DE L'EQUILIBRE D'UN RESEAU D'EAU //
// //
///////////////////////////////////////////////////////////////////////////////
// --------------------------------------
// Dimensionnement de l'espace de travail
// --------------------------------------
stacksize(10000000);
// ------------------------------------------
// Fonctions fournies dans le cadre du projet
// ------------------------------------------
// Donnees du problemes
exec('Probleme_R.sce');
exec('Structures_R.sce');
// Affichage des resultats
exec('Visualg.sci');
// Verification des resultats
exec('HydrauliqueP.sci');
exec('HydrauliqueD.sci');
exec('Verification.sci');
// ------------------------------------------
// Fonctions a ecrire dans le cadre du projet
// ------------------------------------------
// ---> Charger les fonctions associees a l'oracle du probleme,
// aux algorithmes d'optimisation et de recherche lineaire.
//
// Exemple : la fonction "optim" de Scilab
//
exec('OracleDG.sci');
exec('Gradient_V.sci');
titrgr = "Gradient à pas variable pour le problème dual";
// ------------------------------
// Initialisation de l'algorithme
// ------------------------------
// La dimension (n-md) est celle du probleme primal
xini = 0.1 * rand(md,1);
// ----------------------------
// Minimisation proprement dite
// ----------------------------
// Exemple : la fonction "optim" de Scilab
//
[fopt,xopt,gopt] = Gradient_V(OracleDG,xini);
// -----> A completer...
// --------------------------
// Verification des resultats
// --------------------------
[q,z,f,p] = HydrauliqueD(xopt);
Verification(q,z,f,p);
//
|
4dddefd27137982ea1c2992811140253eccf6f3c | f2635c3a10a2508720f5d231581bbcf58664cf12 | /pl/math/test/testcases/directed/log10.tst | 34831436234a8c831b3f01d5931ed086158994ec | [
"LLVM-exception",
"MIT",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | xboxfanj/optimized-routines | 9ed0fef9346076e3eaf952cecd9b6c39cca8d92b | e312306d13daf9c044145ca26fb34ef7704fae81 | refs/heads/master | 2023-01-21T08:14:26.298438 | 2022-12-21T00:02:54 | 2023-01-10T16:39:37 | 232,194,104 | 0 | 0 | MIT | 2020-01-06T22:07:31 | 2020-01-06T22:07:30 | null | UTF-8 | Scilab | false | false | 925 | tst | log10.tst | ; log10.tst
;
; Copyright (c) 2007-2023, Arm Limited.
; SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception
func=log10 op1=7ff80000.00000001 result=7ff80000.00000001 errno=0
func=log10 op1=fff80000.00000001 result=7ff80000.00000001 errno=0
func=log10 op1=7ff00000.00000001 result=7ff80000.00000001 errno=0 status=i
func=log10 op1=fff00000.00000001 result=7ff80000.00000001 errno=0 status=i
func=log10 op1=fff02000.00000000 result=7ff80000.00000001 errno=0 status=i
func=log10 op1=7ff00000.00000000 result=7ff00000.00000000 errno=0
func=log10 op1=3ff00000.00000000 result=00000000.00000000 errno=0
func=log10 op1=fff00000.00000000 result=7ff80000.00000001 errno=EDOM status=i
func=log10 op1=00000000.00000000 result=fff00000.00000000 errno=ERANGE status=z
func=log10 op1=80000000.00000000 result=fff00000.00000000 errno=ERANGE status=z
func=log10 op1=80000000.00000001 result=7ff80000.00000001 errno=EDOM status=i
|
5d74bc9304e14df664b681b60555d0ceeda30275 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set14/s_Materials_Science_R._S._Khurmi_And_R._S._Sedha_2153.zip/Materials_Science_R._S._Khurmi_And_R._S._Sedha_2153/CH3/EX3.31/ex_3_31.sce | 6a7bf360e245d73d3bd24dc12cdd669415e1ea3b | [] | no_license | hohiroki/Scilab_TBC | cb11e171e47a6cf15dad6594726c14443b23d512 | 98e421ab71b2e8be0c70d67cca3ecb53eeef1df6 | refs/heads/master | 2021-01-18T02:07:29.200029 | 2016-04-29T07:01:39 | 2016-04-29T07:01:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 236 | sce | ex_3_31.sce | errcatch(-1,"stop");mode(2);//Example 3.31 : interplanar spacing
;
;
//given data :
format('v',5)
theta=20.3;//in degree
lamda=1.54;// in angstrum
n=1;
a=sind(theta)
d=lamda/(2*a);
disp(d,"interplanar spacing,d(angstrom) = ")
exit();
|
241c0fe6580172fa830461b36e067e04c06031c9 | da29d448a99aced48770da66dc0864581769bdab | /u01-knn/test/pen.tst | ad2bf2233b6f964d2d93f98e061eaa03f0202caa | [] | no_license | andrehacker/fu-pattern-rec | 8e7a814b5e2688deaffd2960e59587539682e3b9 | 45309b80318af587cacbc5feffb92b7f367a150d | refs/heads/master | 2021-05-26T13:10:06.713431 | 2013-02-16T11:44:15 | 2013-02-16T11:44:15 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 210,209 | tst | pen.tst | 8
88 92
2 99
16 66
94 37
70 0
0 24
42 65
100 100
8
80 100
18 98
60 66
100 29
42 0
0 23
42 61
56 98
8
0 94
9 57
20 19
7 0
20 36
70 68
100 100
18 92
9
95 82
71 100
27 77
77 73
100 80
93 42
56 13
0 0
9
68 100
6 88
47 75
87 82
85 56
100 29
75 6
0 0
1
70 100
100 97
70 81
45 65
30 49
20 33
0 16
0 0
4
40 100
0 81
15 58
100 57
47 87
50 88
40 42
36 0
7
3 71
0 95
45 100
100 99
79 78
48 53
31 24
54 0
9
79 87
98 81
71 100
72 73
100 66
91 21
48 0
0 13
9
92 95
30 100
34 68
87 89
84 78
100 35
64 0
0 19
9
58 64
100 96
27 100
0 63
79 65
91 72
48 36
10 0
0
34 89
3 70
1 25
49 0
100 23
100 67
56 99
0 100
2
0 90
46 100
88 92
79 69
60 48
39 27
47 6
100 0
0
20 71
0 29
31 0
78 12
100 51
84 93
37 100
8 66
5
100 100
67 98
41 80
44 50
78 42
68 16
35 2
0 0
9
91 69
48 57
9 79
60 100
100 75
95 40
64 8
0 0
3
30 74
55 100
89 87
66 56
100 38
92 8
41 0
0 20
7
5 65
0 89
37 100
88 97
100 79
71 53
48 26
59 0
0
42 93
19 88
0 42
24 0
83 11
100 56
75 100
17 97
4
4 100
0 72
15 44
79 50
100 76
90 51
83 22
85 0
6
100 100
79 80
54 59
32 38
21 16
50 0
79 16
0 16
8
0 76
30 48
53 9
11 0
47 34
97 66
100 100
38 85
7
0 93
40 100
57 61
51 17
35 0
12 37
54 48
100 49
6
100 100
73 95
40 69
14 39
2 2
39 0
37 29
0 14
6
88 100
42 77
12 50
0 22
45 0
100 17
73 44
15 49
0
33 86
0 55
1 12
52 0
90 34
100 76
56 100
6 77
4
69 100
44 77
5 50
0 28
67 23
100 44
95 29
89 0
0
27 83
0 42
9 0
65 17
96 57
100 100
45 95
10 58
4
19 100
35 93
0 63
12 36
89 37
100 66
94 33
89 0
1
27 73
81 100
83 91
78 52
62 14
0 0
29 1
100 5
9
77 96
38 100
58 77
99 86
100 50
84 12
43 0
0 0
3
41 84
73 100
100 82
62 60
97 38
91 8
42 0
0 19
5
32 92
24 47
71 36
38 0
0 0
21 48
49 92
100 100
4
53 100
30 95
0 60
100 55
92 87
77 79
79 37
79 0
4
100 95
75 100
42 70
0 44
42 33
85 49
83 31
85 0
1
0 50
41 69
76 90
100 100
89 74
78 50
70 25
68 0
1
2 75
37 100
56 99
58 61
46 25
0 0
34 5
100 8
0
10 100
0 60
14 18
60 0
100 24
96 66
58 95
19 73
9
79 90
100 93
63 100
82 84
99 61
87 22
44 0
0 19
7
0 88
59 100
89 72
82 40
63 9
28 0
25 25
100 27
8
5 97
9 61
37 25
0 0
7 32
56 64
100 96
37 100
3
59 89
42 23
29 42
25 100
100 82
75 46
98 0
0 3
5
20 100
6 61
25 28
18 0
0 27
11 63
55 75
100 82
6
100 100
49 77
17 51
2 24
24 0
100 10
73 35
0 42
0
29 80
0 41
14 0
70 14
100 53
100 96
49 100
19 62
8
21 87
33 52
62 13
5 0
0 36
74 66
100 100
5 89
2
13 67
40 100
65 78
37 42
0 11
6 4
60 0
100 19
8
5 70
56 44
60 3
0 0
30 39
84 72
100 100
32 74
7
0 94
68 100
89 68
72 33
43 0
3 21
25 50
100 58
8
100 93
48 100
27 69
30 33
16 0
0 26
41 51
100 58
1
0 55
46 58
73 82
100 100
92 75
89 50
84 25
89 0
9
96 66
62 100
32 69
74 62
89 56
100 10
50 0
0 10
5
32 96
70 100
12 95
32 66
89 62
100 22
51 0
0 16
4
79 100
41 82
0 61
23 45
77 37
86 54
86 25
100 0
1
22 72
55 100
54 89
53 50
55 12
0 1
49 0
100 4
2
23 70
51 100
74 82
51 46
20 15
0 4
50 0
100 2
1
88 100
100 95
75 79
38 64
25 47
12 32
0 16
12 0
6
76 100
31 87
1 52
0 14
61 0
100 27
50 42
1 21
0
29 97
0 57
22 10
68 0
100 40
83 90
37 100
12 57
8
53 67
80 44
67 7
0 0
35 36
83 68
100 100
25 80
0
11 45
17 6
55 0
88 25
100 61
79 94
38 100
0 84
8
88 90
18 100
17 66
79 33
49 0
0 28
41 67
100 98
6
75 100
42 78
13 51
0 22
40 0
100 16
88 43
22 35
2
27 82
65 100
100 89
69 62
33 39
0 15
37 1
88 0
9
70 84
11 76
0 91
56 100
99 83
100 55
88 28
75 0
9
88 100
29 100
30 74
85 83
100 67
97 27
57 0
0 5
8
51 54
100 87
36 100
19 62
44 22
2 0
0 37
78 57
0
15 84
0 57
5 17
52 0
95 28
100 67
70 100
20 87
3
0 76
29 95
92 100
81 77
75 56
100 35
85 13
31 0
3
38 65
36 98
100 100
99 69
62 55
96 26
55 0
0 15
8
82 100
8 92
45 60
100 29
52 0
0 24
21 61
53 98
3
0 82
34 100
78 90
49 62
80 49
100 18
62 0
18 13
1
53 64
73 100
70 83
67 42
36 11
0 0
49 4
100 9
1
0 39
30 69
48 100
39 69
41 35
33 5
31 2
100 0
3
12 91
48 100
66 77
77 63
100 42
75 15
34 0
0 15
9
100 89
34 100
0 75
76 78
83 62
90 35
85 8
5 0
5
26 98
24 49
45 13
17 0
0 35
26 72
62 91
100 100
8
61 100
24 88
21 49
26 9
0 0
7 37
51 60
100 78
0
25 76
0 39
15 0
68 1
98 36
100 76
58 100
7 90
8
0 63
37 44
42 6
1 0
25 36
65 67
100 100
46 80
0
62 100
25 91
0 49
7 2
55 0
92 30
100 78
63 100
0
78 99
21 85
0 50
5 14
59 0
100 27
100 65
79 100
9
76 93
24 100
0 72
58 73
74 74
100 42
92 12
37 0
1
100 100
79 86
62 71
50 57
33 43
21 28
8 14
0 0
5
100 98
71 100
42 88
35 55
59 41
61 16
31 3
0 0
1
27 50
56 89
64 100
55 52
35 9
0 2
52 2
100 0
2
0 67
25 100
49 73
36 33
6 0
1 6
53 3
100 11
0
56 97
15 77
0 35
23 0
70 3
100 36
95 78
54 100
8
100 83
25 100
16 67
58 28
12 0
0 33
65 65
89 91
0
23 97
0 48
17 0
58 3
93 35
100 89
59 100
23 73
9
95 76
34 80
0 97
57 100
98 80
100 53
83 25
59 0
7
0 93
41 100
57 65
47 26
21 0
2 35
51 38
100 36
3
17 81
59 100
76 75
53 48
100 44
89 13
40 0
0 20
8
77 64
100 96
45 100
35 63
34 25
0 0
0 36
48 62
2
9 88
22 100
26 65
16 31
0 5
33 1
66 0
100 3
9
99 88
74 100
56 75
100 85
99 57
89 17
46 0
0 4
0
26 94
0 61
6 16
47 0
91 17
100 60
71 95
27 100
8
76 67
75 100
0 77
49 40
83 0
5 12
36 52
100 87
4
34 100
14 83
2 66
0 48
23 34
65 30
91 17
100 0
7
0 98
75 100
84 65
54 31
26 0
100 21
96 39
6 41
6
100 100
55 82
23 54
0 23
33 0
87 15
66 44
11 40
7
8 100
67 99
72 65
55 31
32 0
0 26
36 47
100 52
4
49 100
7 83
0 54
100 60
72 82
51 86
59 36
68 0
1
15 70
48 100
63 89
57 56
67 24
15 1
0 0
100 0
7
0 95
39 100
67 73
53 30
40 0
21 40
53 45
100 40
9
80 100
28 81
44 70
89 82
89 54
100 25
69 4
0 0
5
62 81
100 100
84 91
40 76
67 64
83 26
46 0
0 9
1
45 69
74 100
68 94
57 50
39 9
0 3
50 3
100 0
3
0 89
61 100
100 85
47 65
44 47
98 29
71 4
6 0
1
100 100
70 86
53 72
37 58
20 43
10 29
0 14
13 0
1
100 100
82 91
64 75
50 59
27 43
14 27
0 11
0 0
3
32 75
59 100
88 84
72 54
100 38
89 10
39 0
0 19
7
0 98
39 100
71 80
72 39
69 0
48 29
60 50
100 55
7
0 100
52 94
74 60
71 23
55 0
9 21
43 31
100 31
7
8 96
55 100
62 67
42 30
25 0
0 36
41 49
100 50
7
23 89
59 100
75 68
58 33
36 0
0 18
48 27
100 32
5
42 98
22 72
75 51
62 0
0 6
23 57
43 100
100 99
3
21 85
57 100
63 71
30 55
85 47
100 15
48 0
0 11
8
100 91
49 100
28 66
55 30
26 0
0 30
50 61
95 90
1
7 59
29 100
31 91
32 46
31 1
0 0
54 1
100 0
6
100 65
92 100
39 93
9 62
0 27
31 0
60 26
19 28
6
86 100
46 83
17 56
0 28
17 1
92 0
100 21
22 16
5
100 100
58 96
20 95
0 62
28 58
66 45
55 11
17 0
3
54 87
85 100
76 71
65 47
100 21
77 0
33 5
0 22
0
52 100
12 74
0 41
12 9
66 0
100 27
98 60
79 93
2
19 76
53 100
92 81
73 40
33 13
0 0
49 5
100 6
5
14 93
0 54
52 31
24 0
2 29
4 78
44 96
100 100
4
61 100
0 72
1 42
79 43
100 67
67 90
56 45
57 0
0
10 98
0 54
7 11
51 0
90 30
100 72
66 100
18 88
7
0 93
41 100
62 75
44 39
26 3
5 0
29 19
100 28
4
97 100
45 84
0 62
2 46
48 41
100 45
58 23
21 0
3
52 87
79 100
79 75
72 49
100 29
76 8
36 0
0 7
8
100 96
2 100
0 65
61 32
37 0
19 32
68 68
64 96
1
18 73
62 100
53 85
53 53
52 20
0 0
8 6
100 6
4
29 100
4 77
0 54
64 53
100 69
71 47
46 24
32 0
7
0 84
3 73
30 98
100 100
90 79
73 48
61 16
59 0
4
45 100
12 79
0 52
62 40
100 56
88 55
78 27
68 0
0
14 72
5 25
39 0
81 20
100 63
75 100
30 98
0 65
5
28 96
98 97
87 95
13 100
34 64
100 45
63 0
0 18
2
0 83
28 96
63 100
72 78
58 54
50 29
65 8
100 0
0
24 96
0 61
7 16
43 0
82 11
100 48
78 86
39 100
3
0 94
33 100
52 83
64 65
77 47
100 30
89 13
52 0
2
39 60
64 100
96 84
69 41
25 12
0 15
50 0
100 4
0
98 89
53 100
12 72
0 27
37 0
86 21
100 63
92 90
8
83 95
6 100
20 65
100 38
83 0
0 12
12 55
36 95
2
3 74
33 100
52 71
33 34
3 2
0 4
51 0
100 1
2
0 79
27 93
60 100
77 80
72 54
64 28
66 4
100 0
1
9 49
42 63
82 85
100 100
76 74
51 48
29 22
0 0
4
12 100
10 90
0 56
58 43
100 65
97 70
91 35
90 0
4
36 100
3 88
0 64
54 55
100 67
73 45
46 23
29 0
0
20 57
0 20
40 0
83 23
100 62
87 100
40 88
11 53
7
0 87
18 95
89 100
100 79
64 41
38 0
1 10
52 24
1
0 61
29 88
51 100
43 66
43 32
23 0
11 2
100 3
6
37 67
84 100
51 80
24 41
32 0
100 4
69 28
0 13
2
24 72
50 100
61 64
33 33
0 12
29 19
64 0
100 10
8
83 74
74 100
42 73
51 36
46 0
0 12
35 41
100 54
2
18 74
49 100
53 67
31 31
0 0
13 11
59 2
100 8
4
24 100
24 76
0 45
100 48
100 57
61 65
61 31
67 0
5
24 96
34 62
72 36
37 0
15 40
0 89
50 99
100 100
1
0 66
39 83
100 100
100 82
84 62
68 41
58 20
50 0
5
31 97
100 100
25 94
12 62
48 62
94 33
60 0
0 5
5
57 94
100 100
48 82
24 48
71 64
85 31
54 0
0 1
9
87 74
63 100
46 71
87 82
100 54
88 17
40 1
0 0
0
79 98
30 90
2 53
0 10
46 0
88 27
100 70
73 100
2
0 77
34 100
82 97
72 64
39 36
4 10
48 1
100 0
4
14 100
14 92
0 65
55 55
100 72
72 53
49 27
29 0
1
0 73
27 86
73 100
100 98
89 72
83 46
82 20
85 0
3
0 87
27 100
55 87
68 68
82 50
100 32
100 13
73 0
0
79 100
27 86
0 53
9 15
53 0
95 25
100 63
76 99
9
87 100
56 95
71 86
87 81
94 50
100 19
53 6
0 0
9
62 83
62 75
81 100
74 86
100 53
90 18
37 0
0 16
2
10 61
35 100
69 88
41 46
0 13
10 28
53 0
100 23
6
70 100
72 97
45 57
39 13
91 0
100 39
41 44
0 11
6
70 100
54 86
29 53
23 16
69 0
100 23
50 36
0 21
8
57 87
41 78
74 38
84 0
0 7
37 48
100 81
90 100
5
11 98
0 55
52 36
45 0
17 22
11 72
42 100
100 99
3
37 80
53 100
88 83
59 60
100 44
92 15
49 0
0 8
1
0 69
47 81
88 100
100 91
91 68
76 45
71 22
68 0
5
24 100
17 56
58 34
37 0
0 23
12 59
51 85
100 93
0
54 98
17 64
0 18
50 0
93 36
100 84
54 100
19 60
9
64 100
10 99
0 71
56 77
72 71
100 37
75 8
19 0
1
100 100
93 86
73 72
57 57
40 44
23 29
10 15
0 0
6
100 99
52 100
17 70
0 32
24 0
68 16
40 45
3 28
0
44 100
20 63
22 22
63 0
100 29
95 69
47 89
0 74
2
0 83
20 100
67 96
73 74
64 51
51 30
56 9
100 0
8
54 73
37 100
0 71
49 36
76 0
19 19
53 56
100 91
6
100 100
63 100
32 78
8 53
0 23
23 0
63 8
44 32
0
75 100
31 92
1 55
0 10
46 0
84 31
100 73
68 99
6
87 100
49 77
19 52
0 24
25 0
83 2
100 25
45 31
4
47 100
12 70
0 41
65 43
100 49
51 69
49 33
50 0
2
9 74
38 100
53 78
30 43
0 17
27 8
63 6
100 0
5
100 94
72 100
49 93
44 64
68 53
55 29
29 13
0 0
1
0 73
40 98
58 100
55 64
58 27
24 3
43 0
100 4
8
73 100
13 64
66 49
100 93
43 70
0 28
17 0
29 34
2
13 78
49 100
65 76
38 48
4 23
0 9
54 14
100 0
5
11 95
8 55
56 35
33 0
0 25
1 65
43 92
100 100
0
33 100
2 54
0 5
62 0
100 42
91 92
32 95
4 49
3
51 100
85 98
100 80
67 67
59 43
67 17
37 1
0 0
0
21 65
9 25
40 0
79 25
100 61
87 98
40 100
0 80
6
77 100
28 90
0 50
15 10
72 0
100 33
48 45
21 11
5
100 100
64 98
36 99
34 68
59 60
62 36
32 17
0 0
7
0 100
59 97
81 66
63 32
44 0
3 25
37 34
100 39
1
18 72
25 100
24 70
22 34
17 0
0 2
51 2
100 2
6
100 93
74 100
30 74
0 44
2 10
57 0
96 23
44 33
2
28 77
40 100
49 67
29 32
0 18
32 14
66 0
100 18
9
100 75
62 62
54 95
93 100
98 63
81 28
46 0
0 1
8
87 67
66 100
0 79
49 45
100 10
40 0
37 40
81 78
1
0 55
20 68
65 88
100 100
76 75
51 50
28 25
11 0
0
19 90
2 64
15 24
62 0
100 30
97 71
55 100
0 92
7
0 94
60 100
98 75
93 40
76 6
48 0
34 23
100 24
1
100 100
70 89
57 74
43 59
35 45
17 29
9 14
0 0
8
86 70
51 100
0 76
78 41
100 0
0 13
40 54
98 80
6
100 100
56 89
22 59
0 26
24 0
77 11
77 39
22 36
3
0 92
44 100
71 83
56 59
100 47
89 19
50 0
3 1
2
29 97
59 100
46 72
14 58
0 43
32 27
64 9
100 0
2
19 78
40 100
54 75
31 45
0 19
26 9
62 0
100 13
7
12 87
0 77
35 97
100 100
98 78
81 43
73 6
72 0
8
81 85
34 100
40 66
60 30
26 0
0 22
47 51
100 78
5
13 91
18 54
66 40
37 0
5 29
0 81
44 99
100 100
4
25 100
16 73
0 44
57 40
100 54
88 58
65 29
51 0
4
23 100
0 81
25 48
100 44
96 80
85 68
76 28
65 0
9
73 100
23 90
70 82
77 95
91 60
100 24
60 0
0 2
8
82 88
35 100
0 69
48 36
79 0
24 15
50 54
100 86
8
64 65
100 100
41 85
67 42
64 0
0 16
20 59
81 74
1
0 54
47 78
69 100
53 68
33 35
0 6
31 0
100 7
5
34 99
9 67
52 42
35 0
0 4
19 62
52 97
100 100
0
48 73
27 86
0 48
7 5
53 0
91 27
100 71
66 100
2
0 74
19 98
60 100
46 66
22 34
15 0
59 0
100 11
2
41 93
88 100
86 75
47 53
0 38
5 25
50 10
100 0
7
0 98
49 100
64 89
47 44
42 0
8 37
48 49
100 51
7
0 100
81 100
68 62
34 26
24 0
92 28
100 50
5 46
9
2 88
37 76
87 100
0 93
48 81
95 70
87 34
100 0
0
77 96
27 100
0 67
3 27
42 0
89 12
100 52
88 90
6
100 100
60 90
32 70
11 48
0 23
16 0
44 12
8 6
2
28 69
43 100
77 86
60 45
29 9
0 1
52 0
100 6
3
0 87
42 100
100 94
87 73
67 53
64 32
69 11
22 0
6
86 100
38 76
8 48
0 20
50 0
100 18
74 45
8 57
6
100 95
78 100
28 72
0 39
1 4
71 0
88 32
11 41
4
100 100
74 90
28 68
0 44
77 46
72 48
37 23
9 0
6
96 100
51 76
17 50
0 20
41 0
100 16
73 39
4 33
7
0 86
52 100
100 80
99 36
65 0
26 3
34 38
90 49
0
73 100
24 85
0 39
22 0
70 20
100 62
78 99
31 76
9
1 77
80 74
75 100
0 84
38 66
100 76
87 38
88 0
9
23 63
0 84
47 100
98 90
100 66
81 43
51 21
19 0
3
17 82
50 100
86 86
56 57
97 46
100 17
51 0
0 6
6
100 100
64 78
33 56
13 32
3 8
54 0
54 17
0 9
6
65 100
33 80
12 57
0 35
6 12
52 0
100 13
58 19
8
100 93
38 100
21 67
85 34
62 0
0 20
50 57
88 93
5
14 96
87 100
21 96
22 58
70 65
100 28
54 0
0 17
2
16 86
44 100
35 59
12 25
0 4
33 3
66 1
100 0
1
100 100
83 96
67 80
50 64
37 48
20 32
7 16
0 0
3
0 89
29 100
66 87
70 66
84 46
100 26
75 8
25 0
8
84 96
0 100
28 66
100 36
68 0
2 21
46 60
88 95
2
10 68
35 100
59 72
37 30
0 3
15 14
58 2
100 0
5
24 100
31 56
45 16
16 0
0 43
15 81
57 87
100 88
0
16 86
0 43
25 1
68 0
100 35
90 85
50 100
13 75
2
53 85
60 100
57 67
32 39
0 15
29 5
69 0
100 24
6
94 100
50 77
17 49
5 16
50 0
100 14
57 31
0 24
4
71 98
76 100
39 75
0 51
39 36
100 49
76 26
86 0
7
0 84
54 100
100 79
95 42
69 8
29 0
28 26
90 30
4
46 100
38 76
0 48
47 48
100 67
91 64
70 31
44 0
8
95 75
42 100
14 74
80 39
73 0
0 20
47 59
100 84
4
38 100
6 73
0 41
71 37
100 67
80 63
49 32
21 0
6
100 100
58 80
26 58
0 35
0 11
61 0
74 12
16 6
9
0 82
46 75
97 100
27 97
45 81
100 79
88 39
78 0
0
57 93
18 71
0 34
19 0
64 4
96 34
100 73
69 100
9
88 83
71 100
44 78
86 77
100 64
87 21
46 1
0 0
0
96 36
83 81
42 100
9 65
0 20
42 0
88 20
100 62
2
0 91
27 100
31 62
16 26
10 0
40 3
70 7
100 8
0
27 94
1 60
0 20
38 0
81 16
100 53
92 93
51 100
8
97 82
68 100
42 69
44 32
23 0
0 24
42 49
100 61
4
10 100
0 77
30 60
73 55
100 71
77 53
64 27
57 0
1
0 62
47 88
67 100
63 65
59 29
46 2
34 0
100 0
6
100 100
58 91
24 69
2 42
0 12
39 0
49 26
4 37
7
7 98
58 100
90 70
71 27
41 0
0 27
50 37
100 35
1
79 89
100 100
79 83
57 67
36 50
18 34
7 17
0 0
8
12 64
57 46
46 0
0 3
44 41
100 74
90 100
25 79
1
0 53
34 82
45 100
43 65
50 30
40 0
37 2
100 7
2
11 64
23 100
52 84
34 45
5 10
0 0
50 3
100 5
9
95 79
73 100
61 72
98 95
100 55
84 16
36 0
0 1
1
0 50
32 76
60 100
63 64
62 29
30 6
40 1
100 0
7
0 95
54 100
66 90
55 46
51 0
18 16
45 27
100 29
2
0 75
15 100
47 99
42 69
31 39
30 9
63 0
100 1
2
9 74
32 100
63 84
48 48
12 19
0 13
49 4
100 0
0
62 81
22 80
0 38
23 0
71 4
100 43
84 88
40 100
0
21 66
0 28
27 0
77 14
100 49
88 88
40 100
6 70
7
0 89
58 100
88 87
60 44
32 0
22 3
39 33
100 40
8
2 91
0 56
28 21
43 0
39 33
76 65
100 100
37 96
3
26 83
72 100
84 69
56 45
100 47
87 15
36 0
0 24
1
4 63
28 100
35 82
28 37
0 6
2 10
51 7
100 0
3
24 78
56 100
96 83
77 53
100 39
97 10
46 0
0 18
7
0 99
54 100
78 72
73 39
71 6
48 0
45 14
100 16
0
25 100
1 63
0 21
41 0
87 16
100 57
74 93
25 89
2
2 76
35 100
76 86
57 52
18 26
0 14
51 11
100 0
3
36 84
81 100
97 70
52 46
96 33
100 5
45 0
0 18
8
77 93
35 77
83 37
72 0
0 18
37 60
100 94
75 100
8
4 87
64 61
56 21
0 0
47 36
100 70
99 100
19 78
5
22 95
97 100
100 98
18 95
32 70
100 47
72 0
0 16
1
100 100
77 87
57 72
40 58
26 45
14 30
3 14
0 0
3
21 90
68 100
69 67
56 47
100 37
80 3
31 0
0 28
5
29 94
91 100
60 92
34 70
72 65
100 31
60 0
0 13
5
28 86
38 57
91 37
57 1
0 0
8 62
42 98
100 100
6
100 100
64 81
35 60
13 37
0 14
31 0
53 21
5 24
0
59 93
14 69
0 33
24 0
78 12
100 47
85 83
36 100
4
43 100
0 73
6 44
90 41
100 54
56 68
52 34
62 0
4
49 100
16 85
0 64
20 47
88 51
100 43
84 22
71 0
7
0 96
43 100
76 92
54 48
36 0
21 13
56 32
100 36
6
100 100
51 81
18 54
0 24
29 0
89 11
84 36
23 28
9
30 73
81 71
82 100
33 91
81 68
100 35
55 9
0 0
4
35 100
27 68
0 37
65 42
100 60
100 66
96 32
96 0
6
100 100
57 85
20 57
0 27
26 0
90 8
81 34
14 36
6
84 100
55 81
32 58
20 33
30 9
100 6
52 13
0 0
3
17 86
68 100
71 70
57 60
100 41
91 7
35 0
0 19
8
99 89
26 100
27 68
83 32
40 0
0 27
63 61
100 91
7
0 70
18 97
76 100
92 74
66 36
54 0
100 26
58 33
8
7 67
62 39
100 8
38 0
24 33
57 67
74 100
0 91
4
72 100
1 75
0 42
100 38
99 66
65 83
61 42
64 0
9
31 56
100 80
48 100
0 67
61 52
98 71
63 33
24 0
8
49 80
46 69
65 27
30 0
0 33
49 67
100 100
27 99
7
0 89
33 100
49 54
39 6
16 0
10 36
55 35
100 31
3
6 75
36 97
92 100
69 75
66 51
100 30
54 12
0 0
0
70 97
16 84
0 49
12 14
62 0
95 29
100 65
92 100
7
32 100
86 86
100 56
81 27
46 0
0 17
38 34
98 47
5
48 84
99 100
100 94
53 74
48 44
90 26
55 0
0 1
5
11 100
8 63
44 36
37 0
0 21
1 59
46 84
100 91
7
0 92
28 100
67 74
70 35
48 0
5 24
45 34
100 34
7
0 97
51 100
65 88
46 44
42 0
9 29
40 34
100 40
5
39 88
0 66
68 60
68 15
8 0
19 47
31 95
100 100
8
100 81
54 100
0 72
43 36
66 0
26 24
67 61
95 91
6
100 100
55 89
17 61
0 29
28 0
94 6
94 33
26 34
3
14 85
54 100
100 96
72 72
87 41
92 10
47 0
0 3
4
17 100
21 85
0 53
45 47
96 57
92 61
98 28
100 0
7
0 95
41 100
59 67
51 27
40 0
12 32
52 47
100 55
2
25 70
40 100
68 81
47 46
18 14
0 0
53 3
100 12
8
41 100
58 60
70 19
1 0
0 35
60 65
100 95
25 84
6
67 100
27 73
4 41
6 6
60 0
100 24
52 37
0 22
5
53 92
100 100
66 94
40 66
49 39
87 18
48 0
0 4
9
81 80
53 100
43 73
87 88
100 59
88 16
46 0
0 0
7
0 86
42 100
84 84
83 42
78 0
45 15
49 41
100 48
7
0 88
45 100
81 79
80 43
72 7
58 0
47 23
100 24
5
56 97
24 69
100 58
96 17
25 0
5 42
0 85
75 100
4
30 100
21 86
0 58
32 36
80 43
100 61
91 30
89 0
0
31 100
2 56
12 3
60 0
100 35
91 85
42 90
0 60
8
41 93
32 64
32 23
0 0
0 32
51 56
100 82
58 100
1
4 64
27 100
31 83
26 39
0 8
5 3
52 2
100 0
9
0 74
68 69
90 100
13 91
42 70
100 77
83 39
79 0
7
0 100
46 98
95 82
95 41
84 0
49 9
45 22
100 28
4
47 100
31 76
0 45
63 50
100 64
92 61
94 28
96 0
3
14 90
65 100
100 84
57 65
71 53
91 26
56 3
0 0
8
0 91
25 63
86 33
75 0
14 11
53 43
100 75
75 100
4
53 100
16 78
0 47
59 38
100 63
86 58
58 29
29 0
2
24 61
45 100
90 99
68 54
29 17
0 14
51 0
100 5
5
20 82
71 100
100 96
41 87
10 71
62 48
54 0
0 0
5
100 91
75 100
47 79
39 45
73 40
78 13
41 0
0 0
2
18 75
51 100
65 72
41 35
8 3
0 0
50 6
100 15
5
13 96
0 71
78 61
82 12
7 0
4 49
15 97
100 100
4
74 100
47 84
0 66
23 53
84 42
100 44
60 23
33 0
1
0 67
44 80
88 100
100 88
88 66
69 44
50 22
50 0
9
100 77
64 61
9 74
54 100
100 85
91 51
59 19
0 0
8
72 74
63 100
0 78
67 42
100 0
15 4
38 47
95 80
3
57 100
84 99
79 71
68 47
100 30
77 9
38 0
0 3
2
0 75
15 100
47 91
41 64
27 38
16 11
53 1
100 0
2
1 61
11 100
19 66
2 27
0 1
33 0
66 1
100 3
1
21 64
34 100
39 92
41 55
41 18
0 1
34 0
100 1
9
78 75
51 100
8 75
47 58
85 60
100 20
64 0
0 1
7
0 82
33 100
77 89
87 57
72 25
53 0
51 27
100 24
7
12 98
56 100
54 67
33 33
10 0
0 34
39 44
100 44
7
0 88
35 100
55 68
49 27
38 0
19 32
59 40
100 45
6
100 100
54 91
22 66
0 40
3 13
54 0
81 23
24 31
0
31 94
0 62
2 17
40 0
78 20
100 60
80 98
37 100
4
46 100
11 80
0 55
51 43
100 62
81 48
65 24
73 0
0
24 84
2 39
26 0
77 10
100 53
84 97
33 100
0 63
1
0 56
32 78
78 98
100 100
85 75
76 50
73 24
76 0
7
6 97
62 100
89 70
62 34
42 0
100 25
76 40
0 36
2
48 81
5 96
53 100
55 68
24 38
0 7
48 0
100 2
8
78 72
60 100
24 68
69 32
57 0
0 29
36 67
100 98
4
62 100
13 81
0 50
100 56
77 78
57 88
62 35
65 0
8
0 54
53 37
52 0
22 6
57 39
92 72
100 100
48 77
8
7 92
47 58
76 23
13 0
22 35
78 67
100 100
0 86
9
87 86
46 100
17 70
75 75
100 80
94 39
58 6
0 0
7
0 95
27 100
57 71
45 31
33 0
3 36
36 51
100 53
1
0 51
25 69
65 88
100 100
82 76
65 50
55 26
51 0
5
47 91
28 66
70 32
98 0
40 11
2 47
0 81
100 100
7
0 91
59 100
85 94
54 53
37 7
21 0
34 35
100 42
1
5 58
39 100
47 99
41 42
12 0
0 5
55 4
100 6
6
90 100
58 88
23 56
16 17
66 0
100 27
58 54
0 43
6
100 100
69 83
40 58
15 31
0 0
36 1
43 27
6 20
0
27 69
0 35
8 0
60 12
90 44
100 81
57 100
13 80
1
0 61
34 81
84 100
100 94
84 71
70 47
55 24
48 0
4
22 100
19 84
0 49
40 39
97 41
90 69
93 31
100 0
0
19 86
0 47
5 4
50 0
90 29
100 70
68 100
35 75
7
19 92
38 100
59 68
44 31
18 0
0 35
50 39
100 45
1
0 33
35 52
66 75
96 100
100 96
79 66
61 33
49 0
9
13 78
77 78
74 100
0 89
49 78
99 71
91 35
100 0
1
0 59
40 78
76 100
100 100
82 75
62 49
40 25
29 0
7
0 91
42 95
84 100
88 78
70 38
61 0
57 38
100 40
6
100 100
72 81
55 55
45 27
48 0
72 5
36 18
0 12
6
67 100
39 88
10 56
0 20
44 0
100 12
92 38
31 37
6
63 100
33 90
5 56
10 18
61 0
100 22
46 36
0 16
7
0 77
32 100
83 79
89 39
68 0
27 0
33 23
100 25
6
100 96
60 100
22 79
0 51
1 21
34 0
67 16
27 34
0
70 96
26 100
3 64
0 24
40 0
88 14
100 52
86 92
3
0 44
11 72
48 93
98 100
100 74
70 50
64 27
82 0
5
51 90
100 100
73 93
42 67
81 46
96 14
49 0
0 6
4
100 100
61 90
13 72
0 54
52 38
93 43
52 23
24 0
3
38 86
66 100
100 94
70 74
71 39
70 7
35 0
0 3
9
6 76
44 71
89 100
0 95
27 79
100 81
91 40
97 0
7
0 88
53 100
100 92
66 62
37 30
35 0
7 32
62 36
7
0 70
32 100
87 94
99 54
92 13
55 0
42 20
100 27
3
9 84
44 100
67 78
27 55
83 44
100 14
48 0
0 3
2
11 72
45 100
100 98
90 60
49 31
0 10
15 2
74 0
5
61 92
100 100
74 85
55 51
92 36
78 2
38 0
0 11
1
23 68
46 100
46 85
47 48
43 12
0 0
54 4
100 2
7
0 96
51 100
100 96
70 63
49 27
32 0
16 36
69 51
5
38 92
96 100
65 92
30 63
65 48
100 24
58 0
0 5
9
97 88
41 100
31 59
98 67
100 91
97 46
75 2
0 0
0
35 83
0 45
0 0
51 0
91 35
100 82
56 100
14 74
2
29 78
44 100
47 62
29 26
0 0
27 6
64 7
100 17
4
32 100
19 78
0 48
49 35
100 47
98 60
75 30
59 0
9
30 91
72 60
91 96
47 100
95 75
100 19
52 0
0 1
7
0 95
62 100
98 78
70 37
50 0
100 27
88 46
26 48
4
28 100
28 72
0 39
39 41
100 54
98 60
96 25
91 0
8
62 100
0 77
68 43
100 4
7 0
21 39
88 73
15 90
3
27 76
41 100
100 94
79 66
86 45
94 16
39 0
0 10
8
56 72
38 100
0 69
45 35
64 0
2 21
35 57
100 86
9
72 65
53 100
0 88
39 64
75 83
100 42
84 4
27 0
0
9 56
6 14
40 0
78 27
100 62
90 97
43 100
0 84
6
86 100
38 72
7 38
14 3
82 0
100 34
44 50
0 28
5
100 92
65 100
46 85
49 58
77 42
67 18
35 6
0 0
0
46 100
28 86
6 42
23 0
82 13
100 56
62 92
0 88
0
76 54
73 95
27 100
0 60
8 15
53 0
91 29
100 72
5
16 96
94 100
28 96
4 68
35 51
100 35
65 0
0 14
7
0 92
52 100
98 83
100 48
85 13
59 0
44 17
99 18
9
72 87
29 100
0 67
50 56
92 79
100 45
98 6
45 0
8
42 97
4 72
33 33
42 0
0 22
56 54
100 89
44 100
5
38 82
77 100
100 96
51 90
13 71
58 52
46 0
0 14
2
14 77
37 100
51 74
32 41
0 18
33 16
68 0
100 18
8
69 78
31 98
21 62
61 21
0 0
10 40
79 72
100 100
8
79 80
39 100
45 57
60 15
8 0
0 34
55 56
100 75
0
41 100
3 64
0 13
50 0
95 31
100 80
50 87
22 44
4
51 82
100 100
54 76
0 54
8 32
84 45
49 25
27 0
5
55 96
99 100
52 86
61 58
96 35
100 6
51 0
0 2
3
37 55
41 86
100 100
97 71
83 53
96 23
49 0
0 9
6
100 100
62 80
32 59
11 38
0 16
35 0
78 17
24 8
2
7 77
33 100
56 77
34 37
0 4
4 0
53 5
100 20
7
0 98
42 100
73 70
60 31
35 0
5 27
52 32
100 24
1
100 100
72 86
52 71
34 57
17 43
7 29
0 14
0 0
9
91 92
26 100
14 61
79 63
91 77
100 35
69 0
0 18
7
6 65
0 92
48 100
100 97
74 73
47 49
25 24
32 0
6
100 100
50 91
19 66
0 40
0 13
48 0
94 15
44 21
5
100 100
60 99
27 83
15 52
47 44
76 26
42 7
0 0
8
66 94
20 75
77 39
77 0
0 15
39 53
100 89
0 100
3
43 84
74 100
100 87
70 64
94 38
78 11
39 0
0 1
0
93 84
52 100
6 83
0 35
28 0
77 6
100 47
89 79
1
30 68
63 99
76 100
65 60
44 23
0 0
46 2
100 10
4
42 100
22 74
0 48
43 34
97 39
100 53
78 27
64 0
0
67 100
25 89
0 51
4 8
49 0
88 26
100 68
67 97
6
70 100
33 89
0 56
2 18
62 0
100 27
40 43
0 17
4
15 100
0 84
6 64
65 60
100 62
81 42
71 21
73 0
9
84 68
73 100
9 84
37 60
100 81
90 46
59 9
0 0
0
32 100
0 70
11 24
56 0
100 22
95 68
55 98
15 77
3
0 94
59 100
90 99
100 76
31 51
85 46
73 23
3 0
3
0 98
70 100
97 84
87 65
83 46
100 27
97 9
30 0
6
100 100
61 83
35 63
12 43
0 22
4 0
41 6
27 25
2
0 75
47 100
100 94
94 58
60 27
7 4
30 5
98 0
6
95 100
46 78
11 44
7 6
66 0
100 29
48 46
0 28
9
0 78
54 69
100 92
55 100
34 69
90 75
93 41
91 0
0
15 75
0 34
24 0
69 10
98 44
100 86
58 100
13 86
6
100 100
77 99
42 76
16 50
0 20
28 0
65 17
25 30
8
47 50
88 41
100 1
0 0
18 41
88 76
84 100
12 73
2
38 67
50 100
73 67
41 26
0 2
9 12
54 1
100 0
7
0 89
59 100
100 74
68 36
27 0
53 1
95 28
15 34
4
48 91
63 100
32 78
0 56
51 46
100 48
78 24
65 0
5
100 98
65 100
19 94
0 61
44 67
74 44
51 13
6 0
6
100 100
71 93
38 65
16 33
29 0
76 7
35 19
0 14
8
35 79
43 65
79 27
16 0
0 34
60 68
100 100
3 92
4
38 100
0 71
19 44
91 41
100 58
71 77
63 38
61 0
4
71 100
35 82
0 62
45 51
100 49
82 43
52 21
25 0
1
0 54
30 84
54 100
53 64
46 27
5 0
41 0
100 4
3
44 86
76 100
74 73
55 45
100 32
100 9
49 0
0 4
6
100 100
65 88
26 61
0 30
13 0
71 6
61 34
2 34
1
0 75
60 100
69 89
66 51
73 13
13 2
35 0
100 3
7
0 89
53 100
91 77
77 36
49 0
23 19
43 43
100 44
4
48 100
20 88
0 72
4 54
21 39
52 28
79 15
100 0
3
48 86
92 100
100 79
58 62
80 48
75 17
33 0
0 15
4
41 100
45 99
10 77
0 58
59 49
100 49
71 25
58 0
8
100 100
46 84
76 42
74 0
0 14
26 56
81 92
51 99
7
0 97
49 100
100 97
99 66
69 33
42 0
22 33
74 34
3
64 88
84 100
100 78
76 54
85 33
86 10
42 0
0 4
9
44 86
90 86
60 100
61 82
100 58
94 20
49 4
0 0
1
0 73
7 84
63 100
100 98
88 73
80 49
74 24
77 0
5
22 86
100 100
32 97
0 69
13 59
92 55
86 19
15 0
5
21 85
73 100
100 96
44 87
10 74
62 51
47 0
0 11
6
98 100
50 83
14 53
0 20
46 0
100 16
70 43
18 38
3
0 93
64 100
100 79
54 55
23 43
86 34
74 5
10 0
2
38 70
61 100
91 86
72 53
39 24
0 0
47 12
100 11
3
0 78
38 98
86 100
76 66
79 52
100 28
65 0
24 9
1
0 54
35 72
69 92
100 100
83 75
64 50
42 25
25 0
5
18 89
100 100
53 93
10 64
53 77
96 52
68 21
0 0
6
100 100
62 85
34 58
11 31
0 3
48 0
81 24
34 23
5
67 96
100 100
43 86
17 51
67 69
91 37
52 7
0 0
9
67 86
100 84
66 100
56 79
96 66
96 23
52 0
0 15
3
20 88
67 100
100 92
69 72
62 49
80 26
51 7
0 0
1
100 100
83 93
67 78
54 62
38 47
29 31
12 15
0 0
4
39 100
31 68
0 39
56 41
100 50
95 61
92 29
92 0
6
100 100
66 98
34 75
10 48
0 17
32 0
57 23
22 40
1
0 65
39 96
45 100
48 64
56 28
20 2
12 0
100 3
8
72 100
28 80
53 47
84 15
30 0
0 23
49 50
100 76
9
100 80
66 55
22 67
55 100
100 80
94 40
59 5
0 0
0
24 84
0 42
11 0
61 9
95 44
100 89
54 100
14 70
7
0 89
45 100
77 80
72 45
70 10
59 0
48 24
100 28
1
0 46
37 65
74 85
100 100
82 74
63 49
40 24
15 0
9
72 89
88 80
71 100
72 85
100 57
87 18
41 0
0 21
6
100 100
54 77
20 49
0 19
41 0
100 11
76 38
11 35
8
65 80
59 100
2 75
73 45
100 10
0 0
8 33
78 63
2
15 85
53 100
78 79
47 53
4 34
0 20
49 9
100 0
7
0 84
36 100
69 79
77 38
70 0
35 21
59 35
100 39
0
35 93
23 80
0 41
2 0
55 3
92 34
100 75
61 100
9
75 69
79 100
14 88
71 70
92 84
100 36
58 0
0 9
5
21 98
27 71
57 35
27 0
6 22
0 60
21 95
100 100
0
18 67
0 42
23 2
68 0
100 32
93 77
54 100
21 76
0
22 100
1 55
10 10
60 0
100 31
97 77
51 99
0 83
9
83 100
35 96
65 77
94 94
100 58
95 22
53 3
0 0
4
69 100
37 70
0 41
21 32
91 30
100 56
93 33
84 0
7
0 83
52 100
100 82
80 41
53 0
30 3
33 40
99 45
6
100 100
55 80
23 54
5 26
27 0
81 7
58 29
0 27
0
35 100
0 67
4 19
52 0
100 18
100 66
60 97
10 89
9
84 100
34 84
69 76
91 80
90 55
100 29
60 11
0 0
7
2 59
0 86
41 100
100 100
88 79
59 55
38 28
35 0
0
100 62
79 100
34 94
4 59
0 13
44 0
79 22
85 61
7
0 96
54 100
65 76
41 39
24 0
16 14
45 34
100 35
2
1 66
8 100
29 77
22 35
0 2
31 0
65 4
100 10
2
24 64
38 100
68 92
48 56
17 25
0 5
51 0
100 9
5
65 95
100 100
45 82
47 73
94 59
87 25
39 0
0 8
7
0 73
4 69
22 95
93 100
100 83
82 45
67 8
76 0
1
4 57
39 95
49 100
51 47
24 8
0 0
53 2
100 5
5
42 100
34 62
55 29
40 0
0 23
5 55
51 71
100 83
0
45 97
9 67
0 26
36 0
82 14
100 53
79 93
32 100
0
32 90
21 41
46 0
91 17
100 66
64 100
15 88
0 42
9
100 64
91 100
40 82
80 61
97 76
99 31
61 0
0 2
7
0 96
41 100
79 85
84 43
78 0
56 8
58 29
100 28
7
0 70
38 100
100 98
84 53
53 6
69 0
98 30
36 31
5
8 91
12 53
59 36
26 0
5 32
0 79
42 98
100 100
4
22 100
0 75
5 49
61 47
100 68
86 52
70 26
69 0
9
58 100
3 99
0 64
57 65
71 70
100 30
70 0
13 3
6
73 100
35 86
3 53
0 16
54 0
100 22
53 42
4 30
7
0 100
44 97
60 58
46 17
26 0
5 38
51 49
100 56
3
0 97
51 100
82 86
84 65
90 45
100 25
82 8
35 0
0
78 100
20 92
0 58
6 22
53 0
97 23
100 59
89 95
4
91 93
80 100
43 77
0 55
54 47
100 50
69 25
38 0
6
100 100
71 77
49 52
29 29
22 4
58 0
44 19
0 7
0
46 100
10 71
0 28
32 0
76 20
100 59
87 99
39 98
4
29 100
15 81
4 62
0 43
20 27
59 24
95 18
100 0
0
88 63
73 100
25 98
0 55
11 11
57 0
100 23
98 68
6
100 100
48 81
14 53
0 24
35 0
97 12
43 29
4 16
9
92 93
38 100
44 62
100 84
91 75
94 29
53 0
0 23
2
0 82
25 100
36 68
21 33
13 7
42 2
71 0
100 1
7
28 98
77 100
89 65
67 27
35 0
0 17
48 29
100 30
0
35 100
2 66
0 21
41 0
87 9
100 51
69 85
23 89
4
53 100
3 75
0 43
76 41
100 74
73 61
38 31
7 0
4
54 100
14 71
0 38
68 33
100 47
61 76
50 38
54 0
6
100 74
75 100
25 85
0 53
8 19
55 0
68 27
16 34
0
34 92
16 51
39 9
84 0
100 43
79 85
35 100
0 70
7
0 94
35 100
60 71
55 29
49 0
29 39
50 57
100 57
9
42 91
73 64
100 95
48 100
81 73
100 38
64 4
0 0
8
87 100
11 90
62 63
100 28
53 0
0 23
45 57
94 89
4
46 100
30 79
0 51
43 38
86 47
100 64
81 32
71 0
4
74 100
51 90
0 70
18 55
84 42
100 45
60 22
23 0
1
0 93
70 100
100 88
95 70
75 52
70 34
55 17
45 0
9
75 100
35 99
61 73
89 99
95 64
100 22
56 0
0 7
3
25 96
76 100
84 73
43 51
80 39
100 13
52 1
0 0
0
0 29
21 0
63 25
100 59
100 100
52 86
13 55
2 12
4
89 100
52 72
0 46
10 33
100 35
99 60
89 31
85 0
2
32 76
51 100
70 73
39 41
0 17
10 18
54 0
100 6
1
27 60
44 100
42 90
44 45
47 3
0 0
50 2
100 6
3
54 89
75 100
90 75
69 48
100 30
83 8
40 0
0 8
3
22 86
74 100
96 72
67 42
100 42
98 12
30 0
0 19
2
28 88
55 100
56 69
30 41
0 16
33 7
72 0
100 26
4
42 100
19 80
0 47
46 36
100 45
100 71
94 36
87 0
5
54 89
100 100
68 98
25 71
68 66
81 29
46 0
0 11
2
2 75
28 100
66 95
48 65
22 37
0 7
47 0
100 1
7
6 67
0 93
50 100
100 100
83 74
60 50
39 26
25 0
9
80 82
23 83
0 96
67 100
100 77
91 51
67 25
45 0
5
8 75
15 56
100 33
75 0
30 9
12 44
0 79
88 100
0
12 88
4 47
15 8
68 0
100 34
99 73
54 100
0 90
4
21 100
8 82
0 63
11 46
39 36
73 30
100 18
100 0
0
20 88
1 52
17 7
69 0
100 38
85 84
36 100
0 69
8
80 100
22 76
58 36
100 0
0 7
12 38
96 65
44 91
2
42 75
70 100
75 66
51 29
14 0
0 6
49 13
100 15
2
0 73
28 100
69 100
60 68
36 38
11 9
51 0
100 6
3
34 95
78 100
100 83
65 63
91 37
91 11
46 0
0 5
9
100 76
53 55
15 73
51 100
91 81
83 44
52 12
0 0
4
77 100
48 75
16 52
0 26
47 18
100 36
89 25
79 0
8
76 82
72 42
93 0
7 5
33 42
100 74
72 100
0 74
9
85 83
100 76
81 100
50 67
93 69
95 21
47 0
0 23
0
62 100
14 91
0 54
12 17
55 0
96 21
100 60
79 95
7
14 83
0 74
8 94
62 100
100 97
75 63
61 26
56 0
5
41 89
29 61
76 47
49 7
0 0
21 46
51 89
100 100
8
97 91
0 94
19 58
68 22
12 0
20 37
81 70
100 100
4
72 100
34 82
0 59
51 53
100 48
99 51
71 26
51 0
0
26 100
0 60
5 16
50 0
93 25
100 67
52 75
13 48
7
17 98
77 100
85 66
68 32
42 0
0 26
38 50
100 60
8
58 100
0 84
75 60
100 24
35 0
6 32
45 68
30 98
4
100 100
86 89
42 71
0 52
23 39
62 46
35 23
9 0
2
43 72
0 89
46 100
67 76
49 47
26 19
46 0
100 3
3
6 91
55 100
58 90
49 64
88 42
100 12
51 0
0 4
3
33 84
84 100
94 76
50 54
93 47
100 19
52 0
0 6
9
51 100
7 78
57 64
87 92
86 70
100 31
61 4
0 0
4
28 100
16 81
0 45
38 27
85 51
100 69
80 33
81 0
6
89 66
100 100
50 96
17 64
0 26
27 0
54 31
18 33
6
36 83
61 100
23 68
0 33
23 0
100 5
80 29
0 23
6
100 100
67 81
41 62
20 41
8 20
18 0
47 10
0 20
7
0 98
35 100
61 76
57 37
42 0
31 24
64 39
100 48
8
74 100
47 82
54 43
54 4
0 0
28 31
78 55
100 89
0
14 86
0 42
25 0
71 3
100 43
86 89
41 100
5 69
7
0 100
62 99
100 74
88 39
71 5
43 0
20 17
100 27
2
3 51
38 84
99 100
100 63
57 33
0 10
12 0
82 1
1
0 77
56 90
100 100
94 80
75 60
56 40
38 20
31 0
0
44 95
23 49
22 0
68 4
100 45
100 94
47 100
0 75
9
72 100
16 89
52 60
100 86
92 72
93 28
55 0
0 19
8
70 75
92 40
84 0
0 0
35 38
100 71
90 100
13 84
9
67 72
24 71
0 86
41 100
84 97
100 65
88 32
68 0
8
76 97
38 71
44 34
36 0
0 24
54 52
100 82
62 100
0
34 91
0 72
5 22
45 0
90 16
100 63
69 100
24 91
2
0 87
23 100
47 85
33 53
17 21
33 0
66 8
100 18
6
100 100
53 89
19 63
0 31
13 0
63 1
75 29
29 43
8
4 71
54 39
31 0
0 10
46 46
100 80
80 100
2 77
6
100 100
42 81
0 45
4 2
72 0
92 34
45 58
3 55
1
76 100
100 94
88 77
76 61
60 46
40 30
20 14
0 0
7
0 99
57 100
79 89
63 45
59 0
32 6
33 27
100 32
1
0 52
34 63
66 82
100 100
94 78
78 52
62 26
55 0
0
26 95
0 58
9 16
58 0
99 25
100 68
65 100
20 87
9
85 90
31 100
31 64
88 80
98 71
100 32
65 0
0 13
0
13 88
0 53
17 13
67 0
100 31
91 72
51 100
5 86
2
58 64
69 100
91 71
72 33
36 4
0 1
50 6
100 0
8
85 98
17 99
21 61
66 23
15 0
0 35
61 68
100 100
0
35 84
24 28
54 0
87 28
100 81
66 100
30 83
0 48
2
0 80
22 100
57 95
46 59
25 27
31 0
67 9
100 21
7
0 93
62 100
74 85
53 42
49 0
1 31
28 37
100 40
6
100 100
68 91
37 65
15 37
9 4
45 0
46 27
0 23
8
84 78
38 100
18 67
77 33
59 0
0 23
45 60
100 95
4
31 93
5 82
0 43
73 40
100 58
60 100
43 51
48 0
1
0 75
45 100
45 95
44 61
45 27
15 0
34 1
100 5
3
25 81
61 100
85 77
57 53
100 42
93 7
36 0
0 22
7
0 61
0 85
39 99
100 100
79 76
57 51
38 25
33 0
7
0 66
26 97
85 100
100 63
71 25
41 0
19 39
80 36
4
71 100
12 76
0 47
100 47
97 83
74 93
68 44
65 0
7
12 100
49 100
65 68
49 33
27 0
0 19
44 29
100 31
3
4 73
31 98
76 100
69 68
100 42
87 11
43 0
0 12
7
0 91
42 100
71 75
59 37
51 0
27 34
50 54
100 56
5
31 87
20 59
92 56
73 15
0 0
6 44
25 90
100 100
6
74 100
38 91
15 62
0 30
13 0
69 0
100 26
46 32
0
46 100
18 76
0 32
29 0
77 18
100 59
75 98
23 96
2
8 73
22 100
34 65
26 29
0 2
16 0
58 3
100 6
5
100 100
59 98
24 83
7 57
46 66
60 36
38 5
0 0
9
70 86
89 80
71 100
80 81
100 50
78 20
40 6
0 0
4
57 100
10 87
0 53
52 39
95 58
100 68
87 35
84 0
2
0 76
28 100
66 93
61 57
35 29
19 7
60 6
100 0
8
80 95
0 84
43 48
100 16
58 0
37 36
75 73
82 100
7
0 80
43 100
89 83
80 50
63 17
47 0
30 26
100 30
8
9 100
59 67
85 33
41 0
0 21
44 54
100 87
29 98
1
0 70
71 90
100 100
84 66
76 32
47 2
5 2
98 0
6
95 100
46 85
16 55
0 22
39 0
100 13
80 39
16 29
5
100 100
58 99
28 91
12 57
52 58
64 26
36 0
0 9
0
50 98
22 84
0 39
25 0
78 12
100 56
83 100
27 97
0
19 81
0 41
11 0
52 10
84 40
100 80
67 100
29 82
6
100 77
77 100
29 86
0 57
3 24
39 0
56 21
11 39
7
6 93
48 100
84 70
79 23
48 0
0 23
44 35
100 39
6
100 100
62 85
32 57
11 26
25 0
58 21
35 45
0 35
8
75 82
28 100
0 67
77 36
100 0
16 15
40 55
84 92
7
0 94
66 100
97 72
83 35
56 0
24 11
32 40
100 46
2
13 66
24 100
54 86
33 45
0 17
17 17
58 6
100 0
8
64 74
73 52
100 13
35 0
47 37
95 72
56 100
0 76
8
98 87
44 100
20 70
26 31
0 0
0 32
44 58
100 70
6
100 100
55 89
21 59
0 27
29 0
88 11
70 39
4 37
7
0 93
59 100
89 71
72 35
48 0
22 24
35 48
100 51
0
31 89
0 57
4 14
61 0
100 33
95 77
47 100
16 72
2
41 84
59 100
53 69
28 40
0 14
32 16
67 0
100 21
5
6 100
1 53
61 48
44 0
5 16
0 70
41 98
100 97
8
100 100
37 77
61 40
67 2
0 0
34 38
83 72
70 88
1
0 77
18 100
23 90
25 57
26 25
2 0
13 4
100 8
3
48 92
89 100
100 83
81 63
81 42
77 21
42 6
0 0
7
0 92
44 100
78 79
68 40
58 0
33 17
53 33
100 31
7
2 90
60 100
100 72
72 36
40 0
88 12
79 29
0 31
4
100 100
51 81
7 61
0 42
67 51
51 46
23 23
9 0
7
0 75
23 100
63 85
72 42
70 0
29 12
51 25
100 32
7
8 70
0 96
46 100
100 98
96 75
69 50
48 24
58 0
7
12 90
0 83
42 94
100 100
83 77
61 51
41 26
35 0
2
0 74
30 100
66 87
51 51
21 21
4 0
52 1
100 7
7
0 64
19 92
100 100
87 73
61 37
39 0
31 24
96 42
3
0 87
44 100
84 87
53 59
53 41
100 26
69 5
18 0
2
0 82
22 100
50 91
48 66
38 42
33 18
55 1
100 0
1
13 65
58 82
100 100
77 80
52 60
32 40
10 20
0 0
7
0 96
46 100
73 68
61 34
34 0
4 1
28 23
100 30
8
100 100
43 95
56 56
59 17
0 0
17 34
65 65
72 95
4
32 100
0 74
9 46
73 52
100 83
77 64
53 32
32 0
1
14 55
43 100
46 92
41 36
9 0
0 2
50 0
100 1
3
16 81
54 100
100 89
60 61
58 48
97 28
57 0
0 5
1
27 69
56 100
64 87
58 47
37 12
0 0
50 2
100 5
3
50 70
60 100
100 97
91 61
88 47
83 15
43 0
0 7
7
0 97
43 96
87 100
100 93
70 73
42 51
19 26
17 0
5
14 91
38 75
69 39
35 0
0 18
8 66
35 100
100 96
1
0 68
50 100
57 96
56 54
56 13
36 6
1 0
100 1
4
48 100
46 97
12 66
0 43
61 40
86 66
88 34
100 0
5
22 96
26 53
81 46
60 0
21 23
0 73
42 95
100 100
0
23 93
5 56
19 13
68 0
100 35
92 79
45 100
0 78
1
0 24
30 48
61 75
91 100
100 93
83 62
68 31
59 0
1
0 51
35 69
78 91
100 100
81 75
62 50
40 25
24 0
5
36 93
12 61
87 55
79 16
11 0
0 48
25 92
100 100
7
0 86
47 100
94 84
87 40
65 0
39 6
45 38
100 42
0
73 74
80 100
23 65
0 22
57 0
100 38
91 82
23 73
5
13 98
8 65
41 37
29 0
3 29
0 70
45 93
100 100
5
40 95
16 58
100 52
90 10
12 0
0 48
8 89
94 100
2
13 75
44 100
52 65
32 30
0 0
0 11
50 5
100 5
5
15 82
5 53
43 23
10 0
2 41
0 84
49 98
100 100
2
0 62
20 90
58 100
58 71
37 41
23 9
58 0
100 4
4
56 100
26 75
0 46
34 32
81 32
96 61
86 29
100 0
9
74 100
0 96
2 68
74 81
60 70
86 37
100 6
21 0
8
6 100
0 67
56 36
70 0
58 22
100 57
100 91
0 95
3
27 77
60 100
100 92
70 62
97 51
92 18
49 0
0 9
9
76 76
48 100
0 80
37 58
100 74
84 57
46 29
19 0
0
61 100
23 76
0 38
15 0
75 11
100 48
73 85
14 91
9
79 75
41 100
3 75
54 59
79 61
100 20
54 0
0 14
4
31 100
15 84
2 65
0 45
20 29
48 21
79 14
100 0
9
100 71
29 72
0 90
59 100
98 79
98 51
83 25
59 0
1
63 92
100 100
77 85
54 69
34 52
17 35
3 17
0 0
0
64 59
62 97
5 80
0 37
36 0
95 15
100 58
82 100
2
24 78
43 100
54 75
30 43
0 16
27 4
66 0
100 22
6
41 100
38 84
16 52
11 17
54 0
100 19
55 32
0 23
5
11 88
0 64
67 52
64 0
0 2
0 57
25 99
100 100
8
100 72
58 100
0 77
46 39
62 0
24 21
69 58
69 91
7
0 100
34 96
56 64
56 23
40 0
29 32
64 35
100 34
2
8 68
33 100
52 79
31 42
0 14
24 0
64 1
100 19
9
100 93
52 100
38 70
89 83
99 72
92 30
56 1
0 0
1
0 49
35 62
82 82
100 100
85 74
65 49
44 24
29 0
1
0 59
46 76
91 100
82 66
71 34
65 0
33 8
100 10
2
13 77
44 100
51 68
40 36
15 7
0 1
50 3
100 0
0
67 100
22 81
0 46
12 11
64 0
100 27
94 63
77 99
7
0 81
29 100
64 82
67 40
50 0
23 32
60 43
100 51
6
100 100
61 79
25 51
0 20
38 0
91 17
61 42
5 28
6
70 100
35 72
10 44
10 14
68 0
100 26
65 53
0 63
4
40 100
0 86
7 63
100 63
68 90
46 80
52 39
40 0
9
83 68
58 100
5 82
45 59
88 76
100 31
63 0
0 4
7
0 90
57 100
100 81
83 40
58 0
29 3
28 37
89 43
0
44 99
11 71
0 30
30 0
74 11
100 47
88 86
46 100
8
67 74
73 100
0 79
71 43
98 0
9 7
33 51
100 77
4
78 100
37 74
0 45
58 39
100 53
81 69
70 35
65 0
5
24 95
97 100
22 92
19 55
71 70
100 32
54 0
0 21
7
0 84
48 100
83 79
69 38
47 0
14 19
46 40
100 46
5
100 90
68 100
23 99
0 71
15 59
54 49
49 16
12 0
6
100 100
46 89
13 64
0 34
25 7
80 0
80 24
26 26
2
26 84
38 100
52 74
30 42
0 15
20 9
62 0
100 18
9
22 73
64 90
16 100
38 82
87 63
100 26
52 7
0 0
6
64 100
53 87
20 59
0 28
24 0
85 0
100 26
41 33
1
44 85
100 100
83 85
61 68
44 51
31 34
17 17
0 0
4
56 100
18 69
0 36
61 34
100 41
78 77
71 39
66 0
3
21 86
72 100
85 72
70 43
79 41
100 15
47 0
0 18
7
27 100
92 91
100 61
88 30
71 0
0 10
8 32
96 40
1
100 100
95 85
84 70
71 55
55 41
36 27
14 13
0 0
4
16 100
0 83
0 65
18 50
50 41
82 34
99 18
100 0
5
100 97
64 100
35 79
29 42
74 44
82 17
43 0
0 3
6
65 100
35 85
4 54
0 20
48 0
100 24
67 51
7 36
7
11 62
0 88
38 99
100 100
87 78
64 52
44 27
45 0
8
82 100
0 89
51 60
100 28
43 0
3 26
36 63
43 97
1
100 100
82 91
65 75
50 59
35 43
18 28
9 12
0 0
8
98 75
34 100
0 75
70 41
99 0
16 13
61 53
100 85
3
47 85
67 100
82 78
61 51
100 38
90 12
45 0
0 7
5
33 93
16 53
69 34
24 0
0 19
10 66
34 100
100 99
8
20 89
57 60
100 30
82 0
0 8
5 41
45 71
85 100
3
32 78
57 100
86 87
70 60
100 42
93 16
50 0
0 7
6
100 100
53 91
20 64
0 32
9 1
59 0
64 23
16 23
5
48 87
100 100
91 93
42 76
64 54
92 28
55 1
0 0
0
15 98
0 58
13 17
57 0
96 24
100 67
70 100
29 83
1
0 64
34 76
73 94
100 100
82 75
67 50
53 25
42 0
1
13 68
69 100
72 97
70 50
67 3
0 0
24 3
100 6
1
55 78
81 100
67 70
51 40
36 10
0 0
49 4
100 7
6
100 100
62 80
34 58
13 34
0 10
36 0
57 21
9 24
6
100 100
63 87
35 68
16 47
2 25
0 2
32 0
30 21
5
100 100
50 97
21 75
44 71
82 56
76 25
47 0
0 5
5
100 100
56 97
32 73
54 62
92 46
78 9
36 0
0 16
6
94 88
77 100
31 73
0 44
6 13
69 0
100 23
20 30
0
62 93
16 74
0 35
21 0
77 7
100 43
83 81
33 100
8
52 100
31 70
46 34
25 0
0 19
50 50
100 81
69 99
2
36 69
56 100
79 82
60 47
29 17
0 0
50 4
100 12
4
46 100
18 84
0 61
44 49
100 56
93 47
74 24
61 0
7
0 100
56 100
70 68
51 34
32 0
6 14
30 34
100 40
5
21 88
24 41
78 40
53 0
14 20
0 70
44 96
100 100
3
27 89
67 100
77 76
78 59
100 35
71 8
28 0
0 21
0
29 99
8 63
0 21
36 0
79 20
100 58
76 94
29 100
7
0 71
7 96
53 100
100 94
78 70
52 47
29 24
14 0
6
69 100
45 82
14 54
0 23
37 0
100 7
70 27
5 25
6
100 100
63 94
30 68
7 38
7 6
52 0
45 23
0 16
6
100 100
47 87
13 57
0 22
41 0
92 16
62 43
23 23
6
100 97
60 100
27 77
4 45
0 6
36 0
50 34
16 37
8
77 69
97 100
28 80
53 38
78 0
0 7
30 43
100 69
8
100 83
46 100
34 68
72 33
53 0
0 11
46 41
94 71
1
0 0
29 19
53 46
78 74
100 100
81 67
65 34
50 0
2
39 74
65 100
65 60
38 21
0 0
23 22
62 4
100 4
8
51 82
22 64
48 25
14 0
0 35
51 67
100 100
30 90
5
6 87
25 60
80 43
47 4
0 0
4 54
39 93
100 100
9
71 63
88 100
14 97
0 58
76 60
100 77
60 39
23 0
9
90 100
54 100
55 76
94 97
97 61
100 23
57 0
0 2
6
100 100
52 85
20 55
2 22
37 0
80 24
46 47
0 26
8
100 81
23 100
0 65
56 30
45 0
25 34
89 68
94 98
4
62 100
40 74
7 45
0 29
68 46
100 59
83 29
69 0
4
46 100
24 84
0 56
13 34
67 29
93 53
91 31
100 0
4
43 100
33 87
0 61
2 40
69 39
85 56
76 27
100 0
5
100 100
52 97
23 87
27 58
74 54
78 19
39 0
0 13
3
25 77
43 100
82 84
65 58
97 41
100 16
53 5
0 0
5
32 100
18 63
52 30
23 0
0 37
8 79
52 94
100 99
7
0 75
31 99
81 100
100 69
90 34
76 0
53 8
88 23
6
100 100
74 96
45 68
28 35
32 0
63 12
38 37
0 31
5
10 86
69 100
39 91
3 66
44 47
100 36
61 11
0 0
3
13 80
43 100
74 88
64 56
100 36
78 8
36 0
0 19
4
59 100
11 75
0 43
100 49
66 80
70 83
73 32
74 0
5
17 100
18 55
64 42
40 0
12 27
0 75
45 95
100 99
8
74 98
10 96
44 61
100 29
48 0
0 28
39 67
40 100
3
24 83
62 100
86 81
59 55
89 39
100 16
52 0
0 9
9
93 91
40 100
43 80
79 92
91 56
100 20
57 0
0 1
8
25 68
68 43
61 0
4 9
42 48
100 82
68 100
0 74
2
23 72
44 100
73 86
51 50
19 20
0 8
50 0
100 11
5
12 79
9 48
36 18
30 0
12 31
0 62
34 88
100 100
1
100 100
70 89
52 75
39 61
25 45
11 31
2 15
0 0
0
42 77
50 88
8 48
0 1
63 0
98 43
100 91
38 100
9
62 91
79 64
90 100
56 78
97 64
100 21
51 0
0 16
1
0 63
22 66
64 87
100 100
76 75
53 50
27 25
7 0
5
100 97
75 100
45 86
44 59
75 44
69 18
35 6
0 0
2
23 86
68 100
91 74
53 49
9 33
0 8
49 1
100 0
5
19 100
0 65
49 36
33 0
1 14
4 67
41 94
100 97
9
28 76
80 85
44 100
48 85
100 71
96 37
51 15
0 0
7
11 99
57 100
66 54
41 8
51 0
100 29
59 41
0 51
1
0 33
35 48
64 74
92 100
100 97
80 65
60 33
43 0
2
14 69
34 100
50 74
29 36
0 21
36 23
68 0
100 14
1
0 39
38 57
69 79
100 100
90 74
71 49
53 24
34 0
6
100 100
62 87
21 59
0 27
30 0
95 9
73 34
5 30
7
3 100
59 100
79 68
71 33
52 0
0 13
41 36
100 46
0
48 97
9 63
0 15
49 0
94 27
100 73
55 100
5 82
5
100 99
66 100
36 80
38 50
79 41
69 16
32 0
0 7
2
34 71
46 100
54 66
32 25
0 0
21 7
61 9
100 20
6
100 100
76 79
49 58
29 34
20 10
58 0
49 17
0 5
0
28 95
0 55
8 8
55 0
93 32
100 79
59 100
15 78
8
28 91
49 71
100 35
55 0
0 24
32 63
82 100
45 100
7
15 81
0 68
14 97
77 100
100 95
80 62
68 28
63 0
5
20 98
1 64
46 35
30 0
1 24
0 71
43 95
100 100
5
100 99
54 100
23 79
17 60
61 63
66 30
39 1
0 0
7
0 88
29 100
65 86
62 40
52 0
35 43
61 53
100 52
3
13 85
52 100
63 74
57 55
100 49
81 18
40 0
0 7
9
100 90
53 100
37 61
91 65
99 84
97 41
62 7
0 0
9
100 72
47 57
18 78
60 100
90 74
83 39
53 10
0 0
1
12 78
40 100
44 98
44 58
44 19
0 0
44 4
100 6
9
84 66
82 100
26 78
72 56
99 86
100 44
72 6
0 0
2
0 79
25 100
35 66
22 30
3 0
35 1
67 4
100 11
3
39 80
72 100
100 85
71 60
89 36
84 7
40 0
0 16
0
27 94
26 95
0 49
6 0
64 0
100 40
91 88
37 100
5
56 94
97 100
49 85
35 54
83 42
100 21
53 2
0 0
0
35 98
6 70
0 25
34 0
77 12
100 50
84 92
41 100
0
11 55
13 10
51 0
85 29
100 70
72 100
30 90
0 58
7
0 87
31 100
66 71
61 35
51 0
1 13
21 28
100 34
2
0 83
22 100
38 70
27 30
14 0
42 1
71 2
100 5
3
54 88
85 100
100 82
70 60
91 37
86 11
43 0
0 14
1
0 68
43 82
90 100
100 94
87 71
78 47
76 23
81 0
6
100 91
58 100
20 75
0 38
11 0
56 3
61 37
20 33
6
27 70
59 100
27 66
14 26
48 0
100 19
59 40
0 30
6
81 100
59 98
21 65
0 29
33 0
100 10
86 37
20 25
1
17 66
45 100
42 82
45 40
41 0
0 9
51 10
100 10
0
19 59
22 8
60 0
92 31
100 78
65 100
27 88
0 51
7
2 100
51 92
58 61
51 29
29 0
0 10
38 27
100 29
1
0 82
58 99
70 100
61 62
59 24
24 2
14 0
100 3
5
33 86
62 60
88 30
64 0
31 28
0 57
21 84
100 100
4
58 100
49 99
23 74
0 51
55 46
100 46
82 26
62 0
3
40 92
77 100
90 85
75 56
100 29
79 6
40 1
0 0
9
42 68
0 73
1 95
44 100
82 87
100 59
91 29
74 0
3
0 86
47 100
83 86
48 64
62 49
100 31
71 7
16 0
5
31 96
100 100
56 96
30 72
61 60
99 33
56 0
0 15
9
70 100
14 87
66 79
87 81
98 52
100 21
58 0
0 6
4
50 100
15 82
0 51
72 45
100 61
64 73
49 36
43 0
8
100 82
56 100
51 60
69 18
22 0
0 28
48 53
96 73
2
25 70
54 100
60 66
35 27
0 1
19 10
61 0
100 0
2
13 78
40 100
53 71
32 34
0 13
25 7
62 0
100 1
2
28 79
55 100
52 68
29 39
0 15
31 1
68 0
100 23
9
0 70
62 70
95 100
21 88
45 72
100 76
80 39
67 0
5
50 92
100 100
53 92
22 60
48 65
80 40
51 8
0 0
7
23 93
0 70
15 100
70 99
100 93
87 60
76 27
65 0
5
26 81
9 61
52 33
25 0
0 22
13 73
50 100
100 92
5
100 95
83 100
29 98
0 66
27 57
75 46
64 12
17 0
0
19 85
20 39
44 0
86 18
100 62
73 100
26 97
0 60
2
38 88
51 100
60 74
35 47
0 24
9 16
51 0
100 9
9
77 100
37 95
63 78
98 95
100 56
86 19
46 0
0 1
4
24 100
24 99
0 64
38 41
99 39
100 78
89 39
85 0
2
0 59
18 94
52 100
52 61
32 26
24 0
62 7
100 14
8
89 73
61 100
22 71
68 37
76 0
0 0
40 34
100 64
8
88 90
14 100
35 70
100 38
79 0
0 11
40 51
88 89
7
13 84
0 67
21 100
85 100
100 88
75 52
60 14
56 0
0
100 67
70 100
24 88
0 46
9 0
57 2
92 34
91 75
8
49 92
37 76
62 35
30 0
0 28
52 59
100 91
42 100
1
0 51
37 81
47 100
37 66
33 32
4 3
18 0
100 3
1
0 60
40 87
57 100
52 66
55 32
43 2
24 0
100 5
3
41 77
70 100
100 78
67 50
76 38
93 11
44 0
0 5
9
54 71
92 76
69 100
65 77
100 55
83 23
43 7
0 0
2
0 86
34 100
62 83
38 53
10 27
7 0
54 2
100 5
0
71 76
34 100
0 72
8 31
42 0
86 15
100 56
88 96
4
27 100
19 89
0 65
43 53
100 55
78 44
46 24
30 0
4
66 100
32 71
0 43
59 45
100 70
100 65
76 32
50 0
3
34 84
72 100
95 78
65 52
100 39
95 11
49 0
0 2
1
0 43
34 59
68 79
100 100
85 75
69 49
51 24
30 0
8
100 85
24 100
2 73
77 42
85 0
0 14
33 56
81 87
5
100 93
66 100
27 93
0 65
31 55
66 40
47 10
7 0
4
59 100
0 78
33 53
100 56
67 89
46 73
37 36
29 0
5
11 78
0 56
53 41
46 0
3 10
4 70
46 100
100 94
2
14 67
29 100
54 72
35 32
0 4
17 10
59 0
100 3
8
96 86
33 100
31 66
100 32
66 0
0 27
72 60
78 98
3
34 78
66 100
100 87
67 59
85 49
89 19
47 0
0 5
8
11 100
45 66
100 33
82 0
16 19
47 53
89 87
0 87
2
45 72
73 100
85 83
51 58
10 36
0 18
48 6
100 0
3
71 92
70 100
93 86
70 60
100 38
87 12
41 0
0 5
1
0 67
38 82
88 100
100 82
85 61
65 40
46 20
23 0
3
0 85
41 100
70 82
54 53
100 49
90 21
51 2
5 0
1
27 70
60 100
59 84
57 44
54 6
0 5
46 2
100 0
0
24 76
0 48
25 2
83 0
100 50
82 100
28 84
8 34
4
25 100
16 68
0 34
48 35
90 49
89 58
92 23
100 0
8
59 72
58 100
0 68
84 35
100 0
2 18
54 56
71 84
8
63 100
6 82
83 55
100 20
24 0
0 34
22 70
13 95
0
40 100
11 66
0 22
35 0
78 16
100 55
83 95
39 99
6
100 94
76 100
36 67
3 30
31 0
90 15
59 46
0 34
0
97 76
57 100
17 72
0 28
36 0
81 19
100 56
88 88
8
28 93
31 53
54 15
0 0
11 36
61 67
100 100
30 98
0
14 85
0 48
25 10
73 0
100 35
85 76
43 100
0 84
3
35 78
62 100
92 78
69 49
77 49
100 20
56 0
0 14
3
36 83
66 100
94 81
60 54
100 44
92 12
44 0
0 17
4
49 100
0 79
9 49
100 50
86 78
49 86
44 43
48 0
4
15 100
2 79
0 57
48 49
100 56
97 43
87 21
98 0
0
19 64
10 25
46 0
85 19
100 64
73 100
29 99
0 66
6
81 100
79 99
34 67
3 33
25 0
100 9
76 37
0 26
2
20 76
39 100
56 79
32 46
0 22
21 18
59 1
100 0
3
13 90
64 100
90 74
39 58
97 53
100 20
51 0
0 12
1
0 48
30 66
65 83
100 100
99 79
88 53
81 26
76 0
3
22 77
62 100
90 74
55 43
93 49
100 18
42 0
0 22
3
26 94
67 100
100 89
66 68
92 39
84 14
41 7
0 0
1
0 65
40 83
100 100
96 80
80 60
56 40
28 20
12 0
2
34 69
54 100
62 68
36 34
0 8
6 10
52 3
100 0
5
56 92
36 64
100 46
72 5
1 0
0 44
18 87
92 100
9
77 100
22 84
63 60
92 94
100 63
100 24
45 0
0 29
1
100 93
86 100
70 84
54 67
41 50
27 33
14 17
0 0
1
0 56
25 64
60 89
65 100
45 75
35 49
45 23
100 0
4
30 100
0 72
13 43
66 40
100 62
92 60
68 30
49 0
1
20 66
34 100
41 74
29 32
0 0
8 0
54 4
100 11
8
0 84
46 57
89 28
68 0
41 24
70 54
100 85
41 100
9
53 80
38 100
0 77
66 72
70 67
100 30
68 3
2 0
4
59 100
24 90
0 58
97 49
100 78
82 78
65 38
53 0
1
100 100
91 86
71 72
53 58
38 44
24 29
11 15
0 0
8
100 86
12 100
0 64
67 29
39 0
35 38
94 74
92 98
4
45 100
10 75
0 47
60 38
100 54
97 59
79 29
69 0
1
0 66
31 84
71 100
100 99
92 74
84 50
82 25
85 0
7
28 94
63 100
84 69
66 30
42 0
0 25
47 38
100 37
0
34 75
0 44
0 3
47 0
86 29
100 67
74 100
24 91
3
27 91
37 99
100 100
78 77
63 53
75 29
57 5
0 0
1
0 59
46 83
62 100
57 64
55 27
25 0
36 3
100 1
6
87 100
36 82
3 52
0 17
50 0
100 13
55 31
0 20
5
37 87
100 100
56 91
19 67
22 54
79 42
59 16
0 0
8
42 79
53 42
42 0
0 2
38 38
89 70
100 100
39 75
2
26 91
74 100
74 77
48 53
19 30
0 5
47 0
100 2
4
44 100
22 68
0 38
54 40
100 48
95 65
93 32
100 0
4
34 100
0 78
13 56
68 53
100 71
75 48
49 24
30 0
9
78 69
87 100
0 90
16 63
100 80
87 63
50 31
28 0
6
100 100
48 88
14 59
0 28
27 0
92 8
69 29
2 18
7
6 100
54 96
81 56
64 6
36 0
0 38
51 35
100 32
8
79 100
44 95
53 51
54 8
6 0
0 36
60 54
100 83
2
44 64
60 100
97 83
77 43
39 11
0 13
51 23
100 0
2
1 82
32 100
48 71
38 41
12 13
0 6
49 0
100 1
9
97 87
56 74
34 95
83 100
100 68
88 36
53 8
0 0
2
0 83
28 100
59 88
42 57
22 28
31 0
70 1
100 2
2
19 65
24 100
46 81
27 45
0 12
10 1
56 0
100 4
8
98 80
34 100
8 73
73 44
100 10
8 0
0 27
70 55
2
0 81
38 100
66 74
42 36
6 10
10 1
55 6
100 0
9
0 76
47 71
96 96
28 100
17 77
90 74
100 37
100 0
1
38 68
68 100
66 82
62 44
55 7
0 0
57 3
100 7
5
12 100
25 89
17 37
40 0
0 10
7 54
51 72
100 81
8
100 66
66 100
0 77
32 38
60 0
9 21
51 59
87 94
1
0 50
42 72
81 95
100 100
88 75
69 50
49 25
32 0
8
70 62
100 93
27 100
27 67
66 33
55 0
0 15
47 45
8
43 93
30 62
45 25
0 0
6 30
53 61
100 91
53 100
3
31 87
77 100
81 69
53 45
100 39
92 9
33 0
0 25
0
31 81
1 43
13 1
68 0
100 36
96 79
48 100
0 80
6
100 100
70 87
29 60
0 30
3 0
71 5
73 30
2 25
6
100 100
45 83
14 61
0 38
3 14
66 0
97 15
21 7
5
100 100
62 97
39 73
46 49
84 41
71 14
34 0
0 8
0
67 100
26 92
0 56
9 12
49 0
88 15
100 60
70 90
2
15 72
38 100
49 67
29 29
0 16
33 22
66 8
100 0
3
0 77
40 96
90 100
82 73
68 50
100 24
60 0
20 15
6
100 100
60 82
32 56
13 28
22 0
70 8
40 24
0 19
1
0 68
40 100
64 96
61 59
57 23
9 0
33 3
100 2
9
97 85
53 100
12 78
74 74
97 86
100 44
61 12
0 0
0
67 93
26 70
0 35
15 0
63 12
92 46
100 86
62 100
6
90 100
44 77
13 49
0 21
38 0
100 13
90 37
18 39
5
17 94
5 57
52 30
16 0
0 28
5 72
39 98
100 100
5
36 88
23 59
100 55
92 16
20 0
0 35
8 76
73 100
3
0 92
54 100
65 83
63 63
85 44
100 24
63 8
7 0
4
19 74
73 100
44 79
0 47
53 32
100 53
53 38
41 0
1
8 79
56 100
71 92
64 51
53 11
0 1
42 1
100 0
4
100 100
74 78
40 50
0 28
54 26
93 39
88 28
94 0
9
65 100
7 99
0 69
62 73
77 72
100 35
63 8
2 0
2
32 68
49 100
91 92
59 47
13 11
0 23
46 0
100 5
6
100 100
87 85
56 64
30 41
13 17
41 0
44 15
0 14
6
100 100
48 81
19 54
7 25
39 0
92 10
64 34
0 33
3
44 81
80 100
97 76
48 55
100 40
99 10
42 0
0 9
5
38 100
34 73
100 61
88 17
25 0
0 35
4 82
70 97
1
0 51
21 68
63 88
100 100
79 75
58 50
37 25
30 0
8
22 68
98 38
91 0
0 2
36 41
100 76
98 100
24 73
0
14 78
7 33
40 0
84 15
100 61
72 100
26 100
0 60
2
0 84
36 100
53 79
28 50
7 22
27 0
76 5
100 14
2
0 80
38 100
50 70
30 37
0 8
3 3
52 5
100 0
9
0 70
68 77
100 100
30 93
34 73
79 64
74 32
75 0
9
86 88
46 100
50 80
99 94
100 62
96 26
56 2
0 0
3
39 82
68 100
100 86
72 61
91 44
83 15
41 0
0 14
3
14 90
51 100
68 78
71 53
100 34
79 11
41 1
0 0
3
32 86
49 100
100 96
73 72
67 48
89 22
52 2
0 0
0
24 73
0 38
13 0
66 10
96 44
100 83
55 100
9 78
1
0 57
24 71
64 94
100 100
92 75
80 50
76 24
84 0
1
9 65
43 98
52 100
49 60
60 21
0 0
12 4
100 6
0
26 88
0 49
9 5
61 0
100 30
94 73
52 100
4 83
5
29 100
12 57
42 33
26 0
0 33
11 71
53 88
100 91
0
22 88
15 37
37 0
77 12
100 51
77 92
37 100
0 78
8
34 94
26 63
62 29
51 0
68 35
100 69
83 100
0 86
5
29 100
22 63
68 33
24 0
0 24
1 72
40 92
100 94
4
30 100
17 80
0 43
43 32
85 53
100 75
82 38
67 0
1
0 63
44 80
87 100
100 98
77 74
54 49
30 25
15 0
7
0 91
50 100
84 73
79 36
66 0
27 21
45 37
100 37
5
11 87
14 61
58 36
24 0
0 28
9 77
41 100
100 94
5
9 84
14 73
50 37
44 0
10 24
0 69
39 96
100 100
3
0 91
39 100
72 90
79 69
92 50
100 31
89 12
52 0
3
29 74
53 100
100 99
75 71
81 51
81 20
38 0
0 15
2
14 78
52 100
75 75
55 40
22 10
0 6
52 7
100 0
6
81 100
50 80
23 60
4 40
0 19
31 0
100 13
42 23
5
99 100
46 97
19 76
33 55
84 50
100 12
49 0
0 7
7
25 86
0 69
19 98
69 96
100 100
81 66
67 32
54 0
8
100 88
12 95
25 62
81 29
25 0
0 30
42 65
94 100
7
0 100
55 98
79 67
76 33
60 0
0 1
37 17
100 27
2
0 78
28 100
59 91
44 58
22 28
25 1
63 0
100 2
6
72 100
37 86
12 55
0 23
43 0
100 14
57 34
8 20
1
0 69
51 82
100 100
95 84
78 63
62 42
51 21
46 0
5
100 97
73 100
34 88
38 59
83 50
85 18
45 0
0 3
0
11 82
0 40
15 0
71 11
100 47
96 88
42 100
7 67
6
40 100
25 83
3 51
2 17
49 0
100 17
60 38
0 35
6
77 100
41 76
14 51
0 24
22 0
82 4
100 28
45 36
4
56 100
28 72
0 44
54 50
100 69
84 59
59 30
42 0
2
0 83
34 100
49 68
28 30
0 1
25 0
62 7
100 7
2
0 68
20 98
72 100
68 68
38 38
7 10
45 0
100 3
3
13 85
21 100
57 83
44 58
71 38
100 17
57 2
0 0
9
12 83
89 77
80 100
0 84
62 74
100 73
83 36
75 0
4
37 100
34 78
0 51
25 36
85 36
100 61
86 32
80 0
2
0 72
33 92
73 100
69 72
48 46
30 19
55 0
100 0
9
70 63
93 98
0 100
3 62
99 68
100 70
53 31
26 0
7
0 87
39 100
73 74
69 31
51 0
12 28
50 47
100 54
2
17 78
53 100
68 73
37 41
0 14
25 25
62 0
100 15
0
45 100
4 74
0 39
19 6
69 0
100 29
100 64
79 98
2
31 89
51 100
52 67
31 39
0 19
27 9
63 0
100 14
1
0 84
18 85
71 100
100 91
93 68
87 45
81 23
84 0
4
58 100
11 92
0 62
73 57
100 81
67 94
58 47
55 0
5
29 87
92 100
94 98
34 81
36 45
100 37
64 7
0 0
5
8 95
26 71
82 45
55 0
0 12
0 65
28 100
100 98
3
36 81
42 100
100 97
71 70
84 55
94 26
60 0
0 5
7
0 81
25 100
69 85
70 42
59 0
22 18
49 38
100 42
3
0 86
41 100
84 92
52 66
64 48
100 25
63 6
16 0
0
22 100
0 68
0 28
40 0
89 25
100 64
65 96
1 88
4
100 100
65 78
29 57
0 34
57 39
77 51
58 26
51 0
0
58 100
19 75
0 36
14 0
61 10
93 42
100 83
58 96
0
34 91
8 49
26 2
72 0
100 42
86 93
42 100
0 75
3
0 75
29 90
67 100
83 80
94 58
100 36
88 14
56 0
4
59 100
20 82
0 49
59 35
100 58
91 64
60 32
35 0
8
45 99
57 70
100 33
74 0
0 22
28 59
81 94
40 100
7
8 98
53 100
69 63
50 24
46 0
100 19
58 37
0 46
1
23 81
0 54
48 78
100 100
98 86
69 58
44 29
28 0
0
64 100
15 93
0 56
10 19
51 0
94 20
100 57
86 94
0
12 77
0 37
23 0
74 4
98 39
100 80
61 100
23 71
9
41 67
100 96
9 100
0 66
88 79
96 74
62 37
42 0
8
53 70
77 38
67 0
0 5
45 42
100 75
86 100
26 72
9
90 100
33 98
44 58
99 72
95 80
100 32
61 0
0 16
1
0 53
31 81
51 100
50 62
46 25
15 0
59 1
100 3
7
0 66
26 100
64 88
73 43
63 0
34 33
57 54
100 60
3
16 86
70 100
85 71
51 43
100 40
97 7
37 0
0 26
5
100 93
73 100
43 98
34 66
50 50
61 34
31 17
0 0
1
0 38
36 55
66 78
97 100
100 88
88 58
77 29
66 0
6
100 100
52 98
19 69
0 34
10 0
58 8
54 41
16 29
0
74 92
30 100
0 65
2 25
44 0
94 20
100 60
79 98
5
8 93
96 100
52 95
12 73
35 61
100 39
83 0
0 5
5
23 95
85 100
49 95
20 65
70 64
100 31
57 0
0 13
8
75 97
0 100
47 68
100 35
63 0
5 23
39 63
86 97
7
0 75
36 100
81 93
97 51
96 5
73 0
53 21
100 25
9
73 89
16 89
0 100
57 99
96 81
100 53
86 27
73 0
5
100 93
59 100
45 82
45 54
84 45
74 27
37 13
0 0
7
0 90
29 100
61 76
54 33
46 0
24 38
55 53
100 52
2
39 97
64 100
50 68
26 42
0 21
34 11
68 0
100 19
8
55 100
0 89
28 57
69 28
35 0
24 26
59 59
100 89
9
100 72
72 100
27 81
58 65
81 64
80 23
39 0
0 14
6
100 100
46 80
14 53
0 25
27 0
100 7
78 28
3 21
4
49 100
28 74
0 47
5 34
62 39
100 56
79 28
72 0
7
0 93
79 100
100 68
68 34
26 0
19 10
9 44
94 42
1
0 72
29 81
89 100
100 85
79 64
54 42
36 21
32 0
2
0 66
15 91
64 100
70 76
49 51
32 24
45 1
100 0
7
2 100
53 99
63 66
42 33
18 0
0 22
38 37
100 41
2
0 85
20 100
47 85
33 53
12 23
27 0
64 2
100 9
7
0 90
42 99
89 100
84 79
62 41
57 0
53 38
100 37
6
99 100
54 85
17 54
15 18
71 0
100 21
37 36
0 18
2
38 85
36 100
49 70
32 39
0 17
23 1
64 0
100 16
8
14 85
51 57
66 17
0 0
35 36
91 68
100 100
23 85
3
51 87
78 100
95 79
99 50
100 22
71 6
35 1
0 0
1
100 80
100 100
77 97
63 77
43 58
29 38
11 19
0 0
0
11 90
1 57
0 19
41 0
84 27
100 64
87 100
35 97
2
0 71
26 100
47 69
31 31
1 0
0 7
50 7
100 5
1
100 100
86 98
72 81
55 64
41 47
24 30
14 13
0 0
9
100 89
36 100
19 78
87 80
74 71
100 35
69 8
0 0
5
30 84
43 61
100 38
64 4
0 0
6 47
25 88
90 100
0
52 89
15 63
0 21
33 0
73 16
100 54
88 96
48 100
9
100 81
60 100
33 68
82 62
94 80
87 36
52 0
0 2
1
0 52
44 69
79 91
100 100
88 74
72 49
57 23
51 0
6
100 100
52 92
20 65
0 36
12 6
71 0
90 24
34 25
8
100 84
19 100
0 67
64 34
67 0
5 19
58 55
77 89
1
0 60
45 83
66 100
56 64
62 27
44 0
36 1
100 1
2
0 68
14 97
67 100
69 68
36 39
1 11
48 7
100 0
4
63 100
45 97
0 78
0 61
49 44
100 47
63 24
37 0
1
0 57
24 68
60 88
100 100
93 74
83 50
72 25
69 0
4
47 100
5 78
0 46
74 47
100 79
74 64
38 32
3 0
6
100 100
56 88
16 58
0 23
40 0
97 18
54 42
0 22
1
0 100
0 86
18 72
36 57
55 43
82 28
100 14
73 0
8
34 74
64 45
100 10
6 0
23 36
83 70
91 100
0 82
7
0 95
51 100
73 92
64 47
62 0
39 17
52 33
100 36
9
76 100
25 87
50 60
86 86
91 69
100 31
55 9
0 0
2
0 85
24 100
49 90
38 56
24 24
37 0
69 4
100 14
7
0 76
13 100
63 100
100 96
75 73
50 48
30 23
46 0
8
100 86
43 100
0 74
45 38
66 0
36 25
63 64
90 94
9
54 73
94 82
73 100
73 79
100 53
81 19
42 2
0 0
3
0 100
57 100
68 81
72 62
91 43
100 24
62 8
9 0
3
0 98
54 100
70 84
67 65
80 45
100 27
94 9
44 0
2
6 81
40 100
57 78
38 50
11 24
0 5
51 8
100 0
8
100 79
30 100
18 66
79 27
21 0
0 35
87 65
67 92
9
100 94
43 100
31 59
91 69
100 86
98 39
65 0
0 1
3
38 91
77 100
100 87
73 67
66 46
82 24
48 8
0 0
9
50 100
0 89
16 62
66 73
82 60
100 23
56 2
2 0
5
18 82
6 46
56 39
36 0
0 5
11 63
49 95
100 100
8
56 93
0 95
60 65
100 29
49 0
9 28
39 66
37 100
4
66 100
38 100
0 71
2 44
64 36
98 61
94 34
100 0
4
45 100
0 74
8 48
100 45
76 72
63 64
47 31
28 0
7
0 85
47 93
100 100
66 69
37 35
16 0
0 17
41 26
3
20 87
60 100
100 94
75 68
83 40
87 12
46 0
0 1
6
90 100
51 76
21 49
11 19
50 0
100 12
52 23
0 15
5
39 97
17 63
65 49
45 0
0 5
14 60
42 100
100 98
7
0 94
56 100
59 78
44 39
36 0
15 25
44 38
100 42
2
37 97
84 100
92 69
51 48
4 35
0 18
49 7
100 0
7
2 85
40 100
81 72
64 26
38 0
0 35
46 38
100 39
8
61 100
0 90
53 61
100 29
56 0
9 21
50 57
86 92
9
18 80
62 65
61 100
36 92
84 69
100 28
53 7
0 0
7
0 90
41 96
99 100
67 57
54 0
32 5
42 25
100 31
8
86 86
69 100
27 69
82 33
46 0
0 31
66 65
100 94
0
13 72
1 33
27 0
75 10
100 44
88 83
43 100
0 82
8
31 76
52 64
76 26
13 0
0 35
53 69
100 100
16 88
6
100 100
56 93
29 63
13 31
28 0
74 7
46 29
0 17
4
61 100
32 73
0 44
28 36
81 54
100 63
90 31
80 0
1
0 69
56 84
100 100
97 80
84 59
62 39
38 19
34 0
6
60 98
50 100
20 70
0 38
7 8
83 0
100 24
13 20
0
61 98
20 75
0 32
26 0
73 14
100 53
84 96
36 100
4
61 100
49 80
20 56
0 32
54 23
100 40
74 26
71 0
4
53 100
0 77
10 45
100 43
87 66
47 77
35 39
31 0
3
52 87
78 100
100 84
77 59
96 37
82 13
42 3
0 0
3
19 84
63 100
100 93
60 73
74 51
96 30
50 13
0 0
1
0 52
21 71
53 94
88 100
85 75
79 49
76 24
100 0
3
0 84
43 100
98 98
87 70
63 48
100 22
52 10
0 0
2
29 69
48 100
61 71
35 35
0 5
0 0
50 2
100 14
8
88 100
39 100
67 59
77 17
5 0
0 31
60 61
100 94
8
90 78
57 100
0 72
65 37
73 0
3 23
43 64
100 84
6
100 100
62 85
30 61
7 32
0 0
40 0
34 25
1 11
5
20 100
13 75
45 41
31 0
0 12
6 57
44 89
100 100
5
42 85
24 51
75 38
52 4
0 0
17 49
50 85
100 100
2
34 87
59 100
56 60
34 24
0 0
18 9
59 4
100 2
4
100 100
74 78
35 57
0 37
67 37
89 45
65 23
52 0
1
0 37
30 58
65 78
100 100
75 77
52 52
33 26
18 0
0
53 86
14 64
0 29
26 0
76 18
100 52
98 87
49 100
9
90 64
87 100
21 100
0 67
66 62
100 69
66 34
51 0
6
100 100
63 81
34 57
10 30
10 0
48 10
38 37
0 24
2
3 68
21 100
52 87
32 51
0 22
15 4
61 0
100 14
7
0 89
56 100
95 76
72 37
47 0
10 3
32 16
100 22
2
0 88
34 99
70 100
68 71
46 43
33 11
64 0
100 5
2
34 63
51 100
65 72
39 33
0 5
2 8
53 7
100 0
2
21 68
39 100
49 76
27 43
0 12
3 0
53 2
100 13
2
4 68
19 100
43 75
35 35
11 0
0 5
47 13
100 7
7
0 99
57 100
84 73
74 36
67 0
2 18
26 32
100 40
6
100 98
53 100
18 70
0 32
21 0
66 17
47 47
18 24
9
55 75
33 100
0 77
46 69
85 74
100 40
85 10
35 0
0
78 100
26 100
0 64
3 24
46 0
93 18
100 59
87 97
2
0 87
23 100
44 80
36 52
23 25
25 0
63 0
100 4
3
10 76
49 100
73 74
47 43
100 31
83 2
15 0
0 25
2
2 85
29 100
37 71
23 41
0 15
17 0
58 2
100 8
6
86 100
59 92
19 64
0 33
21 2
94 0
100 25
26 20
7
7 54
0 89
71 100
100 83
71 45
45 6
32 0
67 21
3
10 86
51 100
83 81
59 51
91 41
100 11
51 0
0 7
7
5 96
66 100
72 65
54 24
31 0
0 38
41 53
100 51
2
17 73
41 100
55 73
32 39
0 12
13 4
58 0
100 8
8
86 86
10 100
12 67
84 40
71 0
0 18
35 58
100 89
3
44 79
69 100
99 88
69 62
100 41
97 12
47 0
0 15
4
70 100
52 85
22 62
0 39
70 40
100 49
78 25
66 0
8
56 83
78 50
100 11
19 0
25 37
80 71
83 100
0 84
6
100 100
63 90
23 63
0 32
16 0
70 6
53 31
0 22
5
100 92
61 100
31 80
20 42
58 44
73 20
38 1
0 0
7
0 96
53 100
95 71
85 28
54 0
4 20
43 31
100 37
1
0 61
37 90
53 100
52 64
45 28
2 0
27 2
100 3
1
0 71
41 83
100 100
94 82
75 61
62 41
53 20
44 0
4
50 100
19 86
0 71
11 55
43 42
80 31
100 16
89 0
8
58 92
68 45
86 0
0 0
22 40
94 71
100 100
14 85
9
100 100
70 90
84 75
89 74
95 42
96 11
49 0
0 0
7
0 98
55 98
100 100
72 63
52 23
40 0
31 35
86 40
2
11 72
38 100
53 72
34 35
5 3
0 1
52 0
100 1
0
95 67
69 100
26 94
0 51
11 7
60 0
100 28
94 75
5
10 79
14 68
85 47
64 2
0 0
0 49
12 93
100 100
4
32 100
2 74
0 45
55 43
100 64
75 53
47 27
43 0
6
100 100
61 92
33 63
11 31
8 0
52 19
48 43
0 28
2
26 71
48 100
74 74
46 37
5 12
0 11
50 8
100 0
4
83 100
72 82
26 59
0 35
85 39
100 54
77 27
55 0
9
53 65
100 93
31 100
0 69
71 60
100 64
67 32
32 0
1
1 66
32 100
35 99
32 62
32 26
0 0
11 1
100 5
4
79 100
33 72
0 41
34 20
100 32
92 63
60 32
31 0
4
58 100
23 77
0 47
52 34
100 50
97 62
76 31
70 0
8
72 100
23 84
64 44
64 0
0 11
41 49
100 80
58 99
2
12 60
24 100
58 90
37 47
0 14
1 0
51 0
100 15
7
0 96
59 100
100 89
74 54
47 19
28 0
35 39
92 48
0
38 100
7 83
0 35
32 0
81 10
100 54
70 92
21 90
7
0 95
45 100
92 99
70 63
52 25
38 0
51 33
100 37
6
99 100
64 81
25 52
6 19
55 0
100 25
60 45
0 31
2
0 68
23 100
54 88
41 34
10 0
22 7
61 8
100 8
3
11 87
46 100
74 88
55 61
100 49
89 21
50 2
0 0
4
28 100
33 79
0 49
12 21
71 26
100 54
63 34
48 0
1
0 62
54 76
87 98
100 100
98 75
98 50
98 24
96 0
3
44 89
85 100
88 75
64 56
100 41
82 12
41 0
0 14
3
0 83
33 100
68 88
67 65
79 42
100 21
59 7
6 0
4
60 100
16 74
0 43
67 33
100 62
88 61
55 30
24 0
1
14 70
50 100
49 86
47 41
32 2
0 0
73 4
100 6
0
10 100
0 58
10 17
60 0
100 32
94 73
46 97
0 74
5
8 95
97 100
43 94
2 69
47 64
100 38
72 0
0 19
2
0 63
24 100
62 81
42 37
3 6
1 9
51 2
100 0
5
21 98
6 52
55 37
22 0
1 33
0 81
41 100
100 99
6
67 100
28 75
2 48
0 19
46 0
100 15
67 39
7 41
5
16 76
71 94
100 100
43 83
45 52
93 28
66 2
0 0
2
0 67
17 100
56 99
49 55
25 16
14 0
56 13
100 13
1
6 66
32 98
55 100
44 62
30 26
0 0
50 5
100 7
2
0 89
15 100
56 97
39 64
12 33
12 2
57 0
100 11
2
20 100
42 87
29 67
13 48
0 28
13 9
55 2
100 0
8
100 99
40 91
66 49
58 8
0 0
22 41
66 76
72 100
0
2 60
0 18
33 0
73 19
100 53
98 92
54 100
14 83
2
16 68
37 100
63 90
45 48
16 11
0 1
50 0
100 8
8
66 100
27 88
42 50
45 11
0 0
7 34
53 53
100 70
0
42 99
10 59
15 12
66 0
100 38
98 84
49 100
0 75
0
68 100
23 80
0 40
19 0
70 5
100 42
100 86
57 93
9
81 100
3 89
0 68
86 83
100 65
100 37
95 9
0 0
6
100 100
52 83
17 52
2 18
40 0
81 23
55 47
0 38
1
0 78
36 100
38 97
37 60
35 23
1 0
43 7
100 6
0
45 100
10 66
0 26
31 0
75 29
100 66
72 95
24 74
6
100 100
58 88
22 63
0 31
8 0
56 9
59 39
7 47
1
33 75
69 100
90 94
79 55
55 19
0 0
34 3
100 7
7
0 90
50 100
100 94
84 52
62 13
42 0
40 40
92 44
2
26 80
42 100
46 71
26 39
0 11
34 2
69 0
100 22
9
68 90
91 100
56 88
96 81
100 43
84 7
40 0
0 20
2
26 73
0 66
38 100
50 90
20 47
6 19
52 0
100 9
9
76 91
100 85
69 100
76 82
100 55
89 14
41 0
0 21
7
25 100
75 99
78 57
63 13
42 0
0 29
47 41
100 36
2
3 72
26 100
50 80
31 48
0 19
13 12
65 0
100 17
4
99 100
33 82
0 52
100 53
95 83
78 90
70 35
70 0
6
100 100
60 93
22 70
0 35
14 0
60 6
65 38
21 49
9
100 100
61 83
94 89
91 71
93 40
93 11
47 2
0 0
1
25 68
51 100
52 78
54 42
54 5
0 0
43 1
100 1
3
47 85
76 100
83 73
56 53
100 38
90 11
44 0
0 7
3
13 78
41 100
77 83
35 56
79 50
100 19
52 0
0 11
5
100 100
63 99
28 85
27 49
67 40
88 16
46 0
0 1
2
4 74
38 100
55 71
37 35
6 5
0 7
50 6
100 0
8
12 87
56 64
83 27
21 0
0 29
55 62
100 95
9 100
5
100 94
67 100
39 100
37 68
62 52
58 32
28 16
0 0
0
20 95
10 37
38 0
78 11
100 57
73 100
33 96
0 62
5
100 98
71 100
49 99
47 70
75 55
56 32
28 15
0 0
3
23 81
65 100
92 74
67 45
97 35
100 4
38 0
0 17
7
0 88
47 100
79 76
85 40
83 4
65 0
48 28
100 34
1
100 100
89 91
68 76
53 61
32 46
21 30
11 15
0 0
3
0 87
52 100
96 82
45 58
39 42
100 28
73 4
8 0
3
44 83
76 100
82 75
58 58
100 45
90 15
45 0
0 11
3
58 94
80 100
81 71
73 44
100 21
75 1
31 0
0 13
7
0 91
35 100
100 97
74 65
38 32
23 0
2 34
59 38
3
0 88
44 100
80 83
40 62
58 44
100 25
70 5
21 0
0
58 100
11 60
0 10
62 0
100 44
96 94
33 97
10 49
6
59 100
34 78
7 49
0 18
48 0
100 17
68 43
11 47
2
4 84
38 100
51 76
38 50
17 25
0 0
49 3
100 4
0
27 93
7 49
15 0
66 1
100 41
91 87
39 100
0 68
6
100 100
48 99
12 68
5 30
39 0
91 8
59 37
0 35
0
23 100
0 56
8 9
58 0
98 31
100 79
55 99
17 67
7
0 87
53 100
87 71
73 32
38 0
2 26
35 47
100 53
6
100 96
66 100
25 69
0 33
18 0
82 8
66 35
11 16
3
35 75
55 100
86 85
66 55
100 36
87 7
37 0
0 22
1
100 100
91 90
76 75
62 60
44 45
29 30
15 15
0 0
8
83 100
0 91
54 66
100 34
68 0
5 11
11 48
38 85
1
1 64
29 100
34 79
28 32
0 1
8 0
54 2
100 2
4
88 100
65 83
33 54
0 30
65 27
100 48
98 31
94 0
8
67 96
7 83
66 56
100 23
34 0
0 30
24 68
24 100
7
0 96
45 100
60 66
55 31
40 0
11 30
45 48
100 56
8
21 100
48 66
83 32
48 0
36 29
86 62
100 95
0 95
7
0 93
42 100
69 72
68 36
66 0
42 15
50 33
100 35
5
100 93
76 100
41 98
39 77
67 61
56 35
29 16
0 0
6
100 100
58 95
23 68
1 38
0 5
55 0
57 25
7 19
7
0 95
39 100
58 70
45 30
35 0
18 38
58 47
100 49
7
0 98
35 100
75 75
63 43
47 10
28 0
19 19
100 30
7
16 89
0 68
28 92
95 100
100 89
83 58
68 27
65 0
6
93 100
47 90
9 61
0 27
35 0
100 4
84 31
18 27
7
0 86
43 100
97 91
100 57
71 26
39 0
31 35
85 30
9
100 100
47 97
43 75
91 90
92 67
92 24
51 0
0 9
8
100 100
0 91
32 54
92 20
17 0
19 36
75 71
47 92
3
32 94
70 100
100 94
71 76
51 55
53 30
37 10
0 0
0
58 100
15 81
0 34
32 0
81 6
100 49
77 92
29 94
2
0 75
39 97
95 100
100 70
65 42
23 18
12 0
69 1
4
11 100
0 82
6 52
65 57
100 83
77 60
54 31
36 0
3
33 80
24 99
82 100
82 77
84 53
100 30
67 9
0 0
8
20 100
7 68
34 34
44 0
0 18
63 48
100 81
27 79
7
8 69
0 91
45 100
100 93
75 70
49 47
26 23
26 0
8
100 100
53 95
53 58
67 21
20 0
0 25
53 46
94 69
0
100 35
94 76
62 100
22 75
0 37
18 0
58 17
71 55
7
0 95
33 100
50 69
50 32
40 0
28 36
60 45
100 46
5
26 93
17 75
65 46
44 0
0 18
21 70
42 98
100 100
8
76 100
0 90
48 62
93 29
54 0
13 27
44 64
100 94
0
23 97
0 52
11 4
61 0
100 36
99 84
50 100
5 77
9
42 92
85 75
83 100
47 86
99 69
100 31
54 7
0 0
1
15 46
48 82
66 100
59 48
37 7
0 2
51 0
100 6
0
32 58
21 36
18 0
70 8
100 41
95 79
53 100
0 88
5
41 83
28 54
100 50
76 12
7 0
0 41
14 84
87 100
3
0 79
46 100
82 84
36 59
70 49
100 21
50 0
6 15
1
13 63
34 98
45 100
44 61
37 24
0 0
48 5
100 7
1
12 72
75 91
100 100
56 80
19 60
6 40
0 20
0 0
2
0 75
20 100
49 94
42 58
28 25
38 0
70 4
100 12
7
6 72
0 98
45 100
100 98
77 76
48 51
25 25
30 0
6
100 100
48 91
15 64
0 32
13 0
60 6
56 36
20 21
5
21 97
27 57
82 40
50 0
0 0
0 60
41 96
100 100
0
19 69
14 18
45 0
83 27
100 73
67 100
24 86
0 47
9
80 100
33 88
73 91
82 78
97 52
100 26
57 8
0 0
4
39 100
0 83
2 49
91 50
100 70
58 88
61 44
74 0
1
0 65
26 99
36 100
38 63
40 27
4 0
23 1
100 1
7
0 81
46 100
97 83
100 44
77 7
38 0
33 24
94 31
5
6 95
88 100
34 98
6 74
43 62
100 38
75 0
0 13
5
52 100
100 99
45 92
15 56
57 64
82 38
49 4
0 0
5
0 70
23 35
44 0
35 4
6 37
10 74
52 95
100 100
2
11 65
34 100
66 77
42 38
4 8
0 2
50 7
100 0
2
20 79
58 100
80 76
46 50
0 33
4 21
50 5
100 0
3
0 81
39 97
96 100
91 78
95 52
100 25
54 9
0 0
4
56 100
38 81
0 53
19 33
81 30
100 57
85 26
96 0
4
71 95
37 79
0 47
90 47
100 68
75 100
63 50
66 0
1
24 70
0 74
48 97
100 100
95 76
86 50
81 24
81 0
4
100 100
70 82
36 55
0 31
37 31
76 36
77 34
73 0
8
8 90
39 61
44 20
0 0
11 37
55 67
100 96
57 100
6
100 88
57 100
19 79
0 44
16 9
62 0
59 29
15 33
7
0 100
66 98
55 65
24 33
14 0
75 25
100 47
13 48
9
48 52
100 77
45 100
4 70
63 53
81 53
62 12
0 0
5
100 92
65 100
39 79
37 49
73 45
69 16
36 0
0 4
3
52 89
56 100
100 96
75 74
65 50
80 26
44 8
0 0
9
78 88
28 100
0 75
58 74
72 73
100 36
66 6
8 0
7
0 93
61 100
100 81
86 50
72 19
55 0
34 22
99 23
2
0 69
22 93
55 100
65 73
46 41
33 8
65 0
100 4
8
87 69
68 100
0 76
42 38
86 0
21 7
51 47
100 85
4
69 100
25 86
0 55
100 58
84 86
52 89
51 39
45 0
9
65 89
26 100
0 70
51 63
84 70
100 31
70 3
17 0
0
47 79
16 68
0 30
27 0
74 12
100 46
94 86
51 100
2
0 85
28 100
53 82
31 50
7 19
25 0
63 3
100 4
0
38 99
0 55
5 1
70 0
100 49
78 100
23 84
13 30
5
33 90
21 49
63 32
27 0
0 14
9 64
52 89
100 100
1
23 73
45 100
46 89
40 57
28 26
0 0
49 6
100 7
7
22 87
0 71
21 98
100 100
97 83
76 53
58 22
36 0
4
37 100
0 83
11 58
100 58
39 91
32 90
32 39
29 0
1
23 38
42 82
54 100
46 49
33 0
0 2
49 0
100 0
3
38 73
53 100
96 97
75 61
100 44
83 9
39 0
0 15
0
27 94
15 45
36 0
82 7
100 52
81 98
32 100
0 62
4
66 100
15 80
0 50
91 46
100 72
78 65
58 33
45 0
7
0 92
40 100
100 86
91 45
65 6
30 0
21 30
92 36
3
16 72
46 100
85 97
72 60
100 46
86 13
43 0
0 9
1
0 22
30 40
56 67
80 95
100 100
92 66
85 34
80 0
0
3 96
0 45
16 0
67 8
100 46
98 93
48 100
14 67
1
0 60
5 56
52 79
100 100
81 75
67 50
57 24
71 0
7
0 82
32 100
55 67
52 21
41 0
16 36
58 47
100 48
9
100 94
44 100
41 64
89 78
90 73
90 31
52 0
0 7
9
74 73
31 61
47 91
93 100
100 68
83 35
50 8
0 0
6
100 100
77 76
49 53
26 30
20 6
77 0
51 17
0 10
7
5 99
85 100
82 62
40 26
24 0
100 25
96 46
0 47
6
98 100
34 77
0 37
20 0
89 0
100 37
36 51
6 49
7
3 98
51 100
66 63
59 22
38 0
0 25
49 34
100 38
8
24 100
0 79
59 42
98 0
74 0
91 45
100 91
13 93
1
100 100
73 90
55 75
55 60
36 45
18 30
0 15
0 0
2
22 71
44 100
56 74
32 32
0 0
18 15
59 24
100 38
0
58 100
17 78
0 37
18 0
70 4
100 38
83 78
35 83
4
22 100
27 86
0 58
1 35
71 40
100 60
96 30
99 0
9
100 68
62 100
2 85
40 58
88 85
94 35
62 4
0 0
7
0 81
31 100
60 80
61 31
50 0
29 37
64 45
100 48
9
25 55
74 63
65 100
1 75
25 43
100 66
49 34
0 0
7
0 97
48 97
100 100
67 68
39 35
23 0
7 22
60 33
0
11 94
0 48
23 6
72 0
100 36
84 80
39 100
5 69
5
12 96
12 52
62 32
20 0
0 32
4 78
36 99
100 100
8
0 100
10 68
55 32
18 0
4 30
57 63
100 98
10 98
6
100 100
57 85
27 63
5 39
0 14
35 0
66 20
27 29
2
0 68
16 100
51 90
35 53
7 19
8 1
58 0
100 17
8
100 68
75 100
28 83
44 42
49 0
0 4
31 40
90 59
4
50 100
17 86
0 58
53 46
100 70
79 55
53 27
36 0
7
12 96
49 100
55 66
35 32
9 0
0 31
49 38
100 40
7
0 89
39 95
100 100
100 78
74 40
57 0
28 4
69 17
4
56 100
15 74
0 39
58 48
100 78
86 69
58 35
30 0
3
7 80
39 100
78 92
65 58
100 48
85 16
43 0
0 12
0
56 99
18 67
0 27
33 0
84 22
100 61
82 99
32 100
2
59 49
48 85
100 100
95 58
55 23
0 2
21 13
82 0
2
27 70
36 100
66 81
57 44
30 10
0 4
48 5
100 0
8
100 87
19 100
17 67
92 39
75 0
0 20
29 60
94 92
1
0 15
32 39
66 68
96 99
100 100
81 67
65 34
52 0
3
35 75
58 100
82 83
64 51
100 37
74 8
33 0
0 11
8
65 100
17 83
52 40
60 0
0 24
34 65
100 93
66 99
5
42 87
100 100
54 83
12 53
53 62
87 41
56 6
0 0
6
100 90
97 100
68 74
45 47
35 20
77 1
61 18
0 0
8
100 100
4 85
92 59
99 21
11 0
0 32
73 62
49 86
1
21 62
45 100
45 96
49 53
51 11
0 0
56 5
100 0
9
81 87
37 100
9 73
74 74
78 71
100 32
68 3
0 0
2
0 81
26 100
62 100
67 74
59 50
47 24
61 3
100 0
5
45 100
34 60
47 24
16 0
0 38
20 73
59 85
100 86
4
0 100
2 74
11 43
72 39
99 58
100 67
88 34
84 0
9
37 61
0 70
22 92
60 100
91 85
100 57
91 28
80 0
3
15 82
42 100
70 85
63 63
100 48
82 17
39 0
0 13
8
95 66
100 100
40 98
29 61
34 23
0 0
11 34
73 56
0
87 73
57 100
12 87
0 41
27 4
73 0
100 38
94 67
5
23 75
77 98
100 100
42 88
23 50
84 46
62 10
0 0
6
100 100
59 81
25 53
6 22
38 0
88 17
42 24
0 9
0
33 88
0 51
5 0
69 4
100 50
85 100
28 89
11 39
1
100 100
96 99
84 82
69 65
51 49
35 32
18 15
0 0
4
15 100
39 92
0 61
1 36
72 36
100 54
85 36
80 0
7
0 93
45 100
81 71
81 32
69 0
21 25
35 31
100 34
1
0 62
30 95
36 100
34 64
41 29
0 2
16 4
100 0
5
100 100
55 100
22 89
0 59
35 61
69 44
54 12
13 0
9
61 79
98 79
73 100
53 78
100 67
84 37
44 16
0 0
2
26 88
49 100
56 74
32 45
0 21
24 5
67 0
100 23
0
49 92
8 61
0 16
56 0
97 35
100 81
51 100
28 60
8
66 100
18 75
36 35
27 0
0 28
48 60
100 91
39 98
3
46 85
80 100
83 70
52 48
100 39
91 10
43 0
0 6
0
12 60
0 28
29 0
74 10
100 41
94 79
56 100
16 84
4
25 100
0 73
16 49
72 51
100 68
89 58
79 29
74 0
0
19 81
0 39
22 0
77 17
100 57
85 100
33 98
28 56
7
5 96
72 100
69 74
51 37
49 0
0 27
48 36
100 39
8
39 78
45 44
44 2
0 0
39 37
95 70
100 100
29 78
6
100 100
63 81
33 61
9 40
0 17
23 0
44 20
5 16
8
100 71
80 100
24 83
40 48
57 12
0 0
11 33
78 56
5
100 95
75 100
52 80
54 47
83 33
63 9
32 0
0 0
2
13 73
46 100
56 67
40 32
13 0
0 7
49 8
100 6
3
29 90
77 100
92 80
44 59
64 45
100 19
53 2
0 0
0
40 94
0 51
6 0
71 5
100 52
77 100
18 82
6 32
0
26 98
14 82
0 37
32 0
91 14
100 59
71 100
25 99
0
16 75
0 41
27 5
77 0
100 37
85 78
43 100
7 71
1
0 53
28 58
64 79
100 100
81 77
58 52
37 26
19 0
9
72 92
19 100
32 58
89 78
91 83
100 39
72 0
0 8
9
99 88
48 100
32 70
85 86
88 68
100 27
60 0
0 4
2
13 79
35 100
58 77
37 41
0 12
4 13
55 0
100 12
4
60 100
8 78
0 45
80 42
100 65
72 78
66 39
70 0
7
0 99
58 100
66 68
49 34
31 0
14 18
39 36
100 41
8
100 99
52 100
42 65
41 29
11 0
0 30
40 58
100 70
3
44 78
73 100
100 86
81 60
98 38
94 12
48 0
0 3
3
0 75
23 96
68 100
100 86
72 62
77 33
50 12
10 0
0
32 88
11 55
17 9
72 0
100 40
91 86
37 100
0 67
0
27 100
0 66
6 28
45 0
100 20
100 57
76 92
21 90
2
0 84
28 100
43 75
29 45
12 15
28 0
64 2
100 7
4
42 100
26 84
0 51
47 39
99 62
100 65
68 34
53 0
9
74 62
100 100
32 99
23 62
88 84
90 54
68 11
0 0
9
82 86
54 100
32 66
93 75
97 79
100 37
70 0
0 7
3
48 88
82 100
100 77
67 55
99 35
93 11
47 1
0 0
1
0 30
24 54
52 77
78 100
100 99
88 66
74 33
64 0
8
100 97
47 100
35 69
67 37
57 4
0 0
22 30
66 56
1
67 86
100 100
79 83
58 67
38 50
21 33
4 17
0 0
0
61 97
21 90
0 43
22 0
73 12
100 55
78 100
26 94
9
59 79
92 70
76 100
66 82
100 59
82 19
44 0
0 1
6
100 87
86 100
41 76
9 49
0 18
46 0
78 22
15 26
1
0 55
23 90
35 100
28 51
11 8
5 0
52 1
100 1
2
0 88
27 100
49 74
39 41
16 16
36 4
68 0
100 0
1
0 55
33 83
60 100
53 67
46 34
30 1
40 1
100 0
7
6 100
60 98
62 56
35 15
45 0
100 26
69 40
0 38
1
4 77
54 100
53 97
53 56
52 15
0 0
51 4
100 9
2
33 76
41 100
57 71
34 37
0 14
25 16
65 0
100 17
9
56 73
35 83
0 91
39 100
79 91
100 63
96 31
81 0
9
98 96
52 96
74 64
97 100
97 70
100 28
62 0
0 14
8
100 95
52 100
58 58
59 14
1 0
0 29
52 55
98 75
4
82 93
59 100
20 70
0 43
67 35
92 65
86 29
100 0
6
67 100
24 79
0 51
0 20
43 0
100 6
88 28
29 30
0
27 96
0 65
4 24
53 0
94 29
100 71
62 100
9 83
4
45 100
19 72
0 41
47 31
100 32
82 63
78 33
80 0
9
66 100
26 99
42 77
86 95
87 64
100 25
60 0
0 1
1
0 52
39 67
76 84
100 100
89 75
78 49
65 24
52 0
4
46 97
40 100
0 71
63 61
100 75
64 98
46 49
34 0
4
22 100
2 84
0 67
31 55
67 47
97 35
100 17
93 0
5
100 99
53 100
21 90
0 62
42 62
70 39
55 10
14 0
8
0 75
46 58
67 22
21 0
29 36
74 67
100 100
36 86
2
0 70
34 93
82 100
93 72
67 44
33 20
49 3
100 0
2
1 72
20 100
42 73
32 37
5 6
0 2
51 1
100 0
6
100 100
55 78
26 52
9 25
25 0
86 15
64 35
0 21
7
0 94
41 100
64 78
49 39
38 0
23 38
48 58
100 56
8
18 72
68 49
65 13
0 0
21 35
63 67
100 100
37 84
2
13 69
37 100
52 73
32 37
0 9
15 12
59 0
100 5
0
21 83
20 100
0 49
18 1
82 0
100 49
66 93
3 89
0
16 98
10 90
0 42
27 0
85 9
100 55
69 98
11 100
0
16 74
0 50
25 0
76 3
100 52
74 99
21 100
0 51
3
35 87
75 100
88 85
69 62
100 40
88 17
45 6
0 0
1
24 64
42 100
42 92
42 52
42 13
0 2
46 1
100 0
5
54 83
100 100
89 94
38 87
38 70
77 34
42 0
0 19
6
100 100
60 96
23 68
0 33
17 0
69 7
75 38
22 37
8
0 87
65 67
100 32
78 0
40 30
60 66
80 100
4 94
7
18 100
80 95
90 61
52 26
26 0
100 16
79 32
0 36
4
66 100
26 87
0 68
54 63
100 57
64 40
33 21
9 0
7
0 94
70 100
83 85
67 43
56 0
35 9
33 29
100 34
3
0 73
27 97
90 100
86 73
66 49
100 25
68 0
31 9
9
93 55
78 100
28 94
49 67
93 75
100 29
60 2
0 0
7
0 98
51 98
100 100
74 65
50 28
40 0
44 39
96 47
4
39 100
10 76
0 41
52 25
89 45
100 67
78 33
57 0
1
20 63
40 98
44 100
40 63
40 25
0 1
20 1
100 0
8
70 98
0 89
60 61
100 26
49 0
12 31
46 68
81 100
4
89 100
52 79
19 51
0 27
59 39
100 62
82 31
63 0
7
11 95
46 96
100 100
67 71
35 39
18 0
0 29
39 30
4
50 100
34 84
0 57
49 44
96 52
97 58
93 23
100 0
9
94 100
73 92
59 66
99 93
100 82
89 44
50 16
0 0
9
81 92
29 100
11 78
72 82
100 70
94 31
60 1
0 0
3
0 79
39 100
82 90
53 57
86 49
100 17
57 0
14 13
0
24 80
0 45
16 0
79 13
100 58
75 100
16 74
12 28
7
10 81
51 100
92 73
80 31
51 0
0 24
38 39
100 38
7
0 89
76 100
95 88
66 48
58 8
34 0
17 27
100 33
8
57 88
4 100
0 63
63 33
100 0
28 14
49 52
91 87
7
0 100
17 94
71 87
51 49
32 11
8 0
24 22
100 35
3
61 79
57 100
100 93
65 68
94 46
77 18
27 0
0 16
2
6 67
31 100
66 91
48 52
17 19
0 0
50 3
100 3
0
31 100
0 69
0 27
37 0
87 11
100 51
71 85
23 85
5
36 86
91 100
61 91
21 65
58 48
100 27
59 4
0 0
5
0 63
34 43
58 12
59 0
34 30
21 62
51 88
100 100
8
100 97
26 100
66 60
89 18
8 0
0 31
62 65
77 98
2
13 68
27 100
56 86
34 44
0 9
0 0
50 0
100 8
4
55 100
5 69
0 45
91 53
100 79
57 95
47 45
22 0
7
0 86
46 100
88 77
78 36
51 0
11 26
45 37
100 42
3
26 81
55 100
69 75
68 62
100 46
78 16
36 0
0 16
6
100 100
48 87
15 60
6 26
35 0
74 18
44 45
0 29
9
100 55
42 50
29 81
75 100
96 69
82 33
51 3
0 0
1
3 62
28 94
39 100
41 60
36 22
0 0
50 7
100 13
6
100 100
68 89
50 67
32 46
23 23
25 0
48 2
0 2
3
16 81
48 100
75 80
36 62
89 49
100 19
53 0
0 3
6
100 100
58 82
26 53
6 21
38 0
88 15
57 36
0 29
2
18 82
22 100
39 68
27 30
0 1
23 8
67 0
100 20
5
8 94
71 100
39 96
6 71
60 71
100 35
55 0
0 16
9
77 83
100 100
61 93
87 83
93 52
83 12
40 0
0 18
9
96 75
82 100
55 79
96 86
100 56
89 18
48 0
0 2
9
96 70
76 100
46 73
98 69
100 64
98 24
52 0
0 2
9
78 100
21 80
49 44
95 76
91 80
100 34
62 0
0 13
5
24 100
10 59
49 35
21 0
2 21
0 64
46 85
100 87
7
15 97
66 100
72 64
54 20
34 0
0 37
52 40
100 45
2
33 75
51 100
63 71
36 31
0 0
4 16
52 15
100 17
7
0 95
44 100
66 70
48 35
24 0
2 22
42 35
100 38
6
100 100
67 84
34 62
10 38
0 11
42 0
32 24
1 20
9
93 100
47 99
55 75
100 84
96 62
86 21
47 0
0 3
4
12 100
0 71
25 43
86 44
100 75
90 52
90 20
90 0
0
15 58
0 19
33 0
71 18
100 52
93 93
54 100
15 85
4
52 100
20 71
0 40
61 39
100 47
76 68
76 34
78 0
3
22 85
61 100
99 79
61 54
74 42
100 15
52 0
0 13
8
38 96
40 57
61 16
5 0
0 36
50 68
100 100
56 96
1
22 57
50 98
61 100
56 50
35 10
0 2
52 6
100 0
9
93 77
49 100
19 73
72 68
90 63
100 20
58 0
0 10
5
35 90
100 100
39 88
11 55
62 64
89 36
57 4
0 0
5
38 92
100 100
52 94
15 58
69 72
94 35
58 0
0 2
3
55 93
81 100
73 72
77 51
100 28
70 8
32 0
0 9
8
100 82
29 97
14 62
60 22
0 0
27 39
99 72
77 100
3
2 78
35 100
88 85
47 58
100 50
98 15
43 0
0 23
1
4 64
32 98
38 100
40 62
40 23
0 0
32 4
100 4
6
100 100
41 89
8 59
2 23
46 0
88 23
43 43
0 24
5
0 97
60 100
42 99
5 69
44 59
100 43
69 0
0 13
6
35 96
42 100
16 65
7 28
44 0
100 16
62 35
0 22
7
5 94
0 76
17 100
78 98
100 91
84 57
72 23
65 0
7
0 93
33 100
43 51
35 0
3 22
12 48
55 59
100 64
3
39 76
64 100
89 81
66 50
100 34
91 6
41 0
0 18
2
0 94
6 100
44 100
39 63
19 29
24 0
63 5
100 17
4
89 100
64 76
25 50
0 30
66 26
95 52
100 31
95 0
4
84 100
33 78
0 50
43 34
100 45
98 57
62 30
39 0
5
37 90
19 57
66 43
40 5
0 0
21 50
52 90
100 100
1
0 40
35 58
67 80
100 100
86 78
68 52
49 27
38 0
2
14 78
56 100
88 80
71 41
36 12
0 0
49 12
100 7
4
76 100
40 87
0 68
8 56
68 45
100 42
68 21
44 0
7
0 98
45 100
70 95
57 48
55 0
23 25
50 34
100 38
3
16 78
53 100
81 76
53 46
94 46
100 15
44 0
0 14
5
16 100
10 57
64 35
25 0
0 31
5 80
39 96
100 94
5
100 100
63 98
38 91
42 66
77 56
60 34
30 16
0 0
9
97 63
77 100
32 79
72 63
96 67
100 23
56 0
0 4
6
57 100
30 77
8 53
0 28
10 4
60 0
100 16
62 24
6
100 100
58 92
22 68
0 39
8 7
55 0
74 28
34 48
9
91 100
48 99
60 83
100 84
99 47
87 13
44 0
0 2
2
0 79
33 100
63 82
44 49
14 22
19 1
59 1
100 0
8
100 78
64 100
44 72
52 35
44 0
0 2
18 36
67 56
5
28 81
44 54
92 34
54 1
0 0
18 45
45 86
100 100
5
83 90
100 100
42 82
9 55
73 62
77 27
32 0
0 13
5
44 85
93 100
100 92
45 81
51 68
93 36
50 0
0 17
0
39 90
4 68
0 20
41 0
84 24
100 70
67 100
23 80
2
21 74
43 100
52 64
32 28
0 6
22 3
61 0
100 1
3
24 70
42 100
100 100
72 69
66 54
92 26
45 0
0 2
5
58 81
90 100
100 96
58 86
38 67
67 36
39 0
0 10
1
0 38
31 56
67 77
100 100
93 91
72 62
58 32
58 0
1
14 68
56 100
75 97
68 60
64 22
0 4
18 0
100 3
0
26 88
0 58
4 17
54 0
96 28
100 69
63 100
12 86
2
46 85
42 100
52 73
32 41
0 16
21 7
62 0
100 17
3
24 80
38 100
90 93
58 66
64 48
100 25
56 6
0 0
8
0 92
52 62
100 32
79 0
15 10
42 42
82 74
61 100
4
70 100
82 88
40 64
0 40
32 26
100 42
90 27
86 0
3
28 89
64 100
100 92
79 71
59 51
68 27
39 9
0 0
0
77 100
30 79
0 40
11 0
64 8
100 42
98 85
46 95
5
100 100
57 92
24 87
0 58
33 57
66 42
48 13
8 0
0
40 70
1 38
0 0
61 9
95 43
100 83
59 100
28 65
1
0 68
40 78
76 100
88 91
88 68
88 45
88 22
100 0
4
77 100
32 78
0 55
7 34
86 42
100 46
57 24
39 0
2
0 77
33 100
55 77
38 42
11 12
2 0
51 8
100 8
9
0 78
19 95
58 100
92 89
100 67
92 44
81 21
67 0
3
32 77
52 100
91 90
79 61
100 38
95 11
43 0
0 17
1
0 65
42 81
88 100
100 91
85 68
67 46
50 23
42 0
6
90 100
52 84
17 55
0 22
42 0
100 8
72 30
13 25
4
46 100
22 66
0 32
69 38
100 45
56 65
53 28
51 0
1
38 50
49 98
59 100
56 50
34 7
0 9
52 4
100 0
1
0 35
44 64
61 100
61 48
31 10
0 0
54 2
100 1
6
100 100
65 89
35 63
9 34
0 2
44 0
55 25
7 19
3
38 100
73 98
71 69
78 46
100 20
77 0
38 0
0 6
5
17 97
89 100
48 96
21 70
59 67
100 36
63 0
0 16
5
16 100
0 55
64 39
46 0
12 15
0 63
29 96
100 98
4
36 100
31 82
0 50
20 26
85 39
100 63
69 32
43 0
1
12 69
88 84
100 100
71 80
47 60
29 40
12 19
0 0
5
100 99
68 100
47 74
52 52
81 42
63 14
30 0
0 16
4
100 100
73 76
37 49
0 25
51 28
90 40
85 28
88 0
6
80 100
37 76
10 50
0 22
39 0
100 13
68 37
2 46
4
95 100
50 78
0 57
12 37
90 43
100 48
68 25
55 0
6
100 100
55 93
12 66
0 29
30 0
84 15
72 48
10 46
5
40 89
28 61
58 28
23 0
0 24
6 63
45 92
100 100
8
77 96
0 100
21 61
90 30
62 0
12 24
56 62
100 100
2
29 71
50 100
70 77
41 49
0 28
7 18
51 4
100 0
2
4 65
14 100
24 66
16 28
0 1
34 0
66 0
100 0
0
40 97
2 65
0 9
51 0
94 46
100 100
38 95
14 44
0
42 97
27 86
0 40
26 0
86 13
100 59
65 100
5 93
7
4 85
64 100
96 72
68 34
44 0
100 31
87 44
0 41
1
0 46
49 68
72 100
68 88
64 55
55 22
9 1
100 0
1
0 71
47 85
100 100
100 81
84 61
66 41
47 20
31 0
6
100 100
52 83
16 58
0 31
16 5
84 0
66 23
7 24
1
30 70
57 100
57 80
62 45
54 12
0 2
43 2
100 0
3
19 97
72 100
68 73
30 51
81 42
100 17
54 2
0 0
9
46 69
93 73
81 100
55 81
100 62
93 22
48 7
0 0
8
82 73
74 100
32 75
73 38
78 0
0 2
34 33
100 60
1
21 57
43 100
44 79
36 30
0 2
5 3
53 1
100 0
6
90 100
55 85
17 58
0 26
35 0
100 5
87 33
22 36
7
0 93
42 100
67 55
52 0
10 2
11 27
55 36
100 39
7
4 89
0 73
23 99
87 100
100 88
79 59
59 29
44 0
3
41 90
72 100
86 75
60 50
100 35
89 10
44 0
0 5
4
8 100
0 83
0 52
63 44
100 67
82 63
69 31
61 0
7
17 94
0 66
11 93
63 100
100 98
81 64
62 29
47 0
7
6 95
75 100
81 65
48 27
41 0
100 24
70 45
0 49
6
96 64
100 100
50 99
15 68
0 31
22 0
47 27
14 25
2
11 75
26 100
46 81
28 46
0 17
21 19
59 0
100 11
7
0 93
64 100
100 80
91 50
80 20
68 0
22 20
87 28
0
22 80
0 35
32 0
87 22
100 69
61 100
18 65
9 19
2
0 87
32 100
55 79
51 48
33 21
25 0
62 0
100 4
0
89 77
57 100
19 73
0 36
19 0
67 5
100 35
83 67
5
22 91
3 65
65 51
54 0
0 2
9 55
28 100
100 99
1
100 98
100 100
71 83
50 66
36 50
21 33
0 16
7 0
6
100 99
68 100
32 70
10 35
20 0
76 4
59 31
0 23
8
11 100
16 66
27 32
0 0
14 28
64 59
100 92
39 97
3
29 88
77 100
81 74
47 51
100 49
98 20
56 0
0 4
1
0 68
54 81
92 100
100 85
95 63
90 42
87 21
85 0
5
34 81
30 59
100 51
90 14
22 0
0 43
20 92
90 100
3
3 90
54 100
100 90
82 70
64 49
72 28
62 9
0 0
3
20 85
61 100
100 93
67 69
82 44
93 18
48 4
0 0
2
23 86
62 100
71 71
41 43
0 24
7 17
52 7
100 0
6
65 97
70 100
39 66
24 28
55 0
100 19
53 34
0 21
6
100 100
55 93
20 71
0 43
4 11
45 0
68 24
33 42
9
92 93
50 100
41 65
88 79
100 74
91 29
53 0
0 4
1
20 87
100 100
80 83
40 66
20 49
0 33
0 15
100 0
1
100 100
100 92
67 77
33 62
33 46
33 30
0 15
0 0
6
84 100
52 90
13 57
2 19
58 0
100 25
46 44
0 19
0
30 85
0 47
9 5
66 0
100 36
100 79
56 100
39 60
1
39 51
76 82
100 100
71 65
44 31
0 1
29 0
97 2
4
41 100
4 73
26 49
80 61
100 85
63 58
29 29
0 0
6
80 100
42 78
12 46
0 10
56 0
100 22
61 49
8 33
2
47 66
50 100
92 98
78 55
47 18
0 0
46 19
100 0
7
6 95
53 100
72 68
63 33
43 0
0 20
43 40
100 48
4
57 100
30 71
0 42
37 41
88 60
100 65
90 32
92 0
5
28 94
100 100
100 96
22 90
15 58
86 51
65 0
0 8
2
38 67
44 100
85 96
71 58
40 24
0 7
43 17
100 0
4
100 100
55 93
17 74
0 53
57 47
84 43
55 22
29 0
9
31 49
91 77
59 100
0 73
25 41
100 57
71 36
37 0
4
32 100
0 77
11 54
100 59
46 86
41 79
45 33
41 0
7
0 96
52 100
72 90
57 46
63 0
23 24
49 37
100 43
7
0 100
40 96
49 51
42 5
20 0
3 36
51 39
100 42
9
0 81
54 71
81 100
11 97
29 74
100 82
84 41
83 0
0
20 93
1 47
9 0
63 0
100 38
100 84
45 100
0 70
9
99 83
58 100
27 67
78 65
100 84
86 41
55 4
0 0
6
100 100
59 88
23 59
0 28
19 0
81 9
56 26
3 15
6
100 100
60 90
26 62
0 31
12 0
62 4
60 33
9 36
8
100 60
82 100
22 89
33 44
47 0
0 1
26 42
93 62
7
0 100
40 94
60 63
50 26
33 0
19 32
59 40
100 48
8
43 78
68 40
55 1
0 0
18 37
65 65
100 99
45 100
8
82 94
18 100
28 65
68 30
34 0
0 24
47 56
100 86
6
100 81
67 100
22 81
0 47
7 13
52 0
67 30
22 45
4
44 100
32 71
0 44
29 37
88 49
100 57
75 29
58 0
2
0 64
25 90
77 100
76 69
51 39
18 12
43 0
100 4
4
19 100
14 84
0 56
72 45
100 69
100 58
86 29
77 0
9
100 66
68 45
49 71
80 100
95 67
78 30
45 0
0 3
8
67 92
0 93
16 57
100 29
78 0
14 25
43 64
67 100
2
33 70
46 100
59 80
34 48
1 21
0 2
50 0
100 6
4
63 100
14 72
0 41
87 41
100 62
63 74
60 36
52 0
3
19 72
42 99
100 100
88 71
57 53
79 23
42 0
0 15
0
31 100
1 70
0 29
35 0
82 23
100 62
85 99
31 93
5
63 90
100 100
62 84
42 58
82 46
79 17
42 3
0 0
3
20 80
46 95
100 100
80 76
86 50
99 23
53 7
0 0
2
5 63
21 100
49 76
33 34
0 0
5 6
53 2
100 8
2
63 67
74 100
99 80
73 39
35 7
0 3
51 4
100 0
0
2 66
0 30
18 0
58 6
88 32
100 65
83 95
43 100
1
0 57
39 75
81 96
100 100
85 74
72 48
55 23
43 0
2
0 81
33 100
52 79
36 49
12 22
7 0
53 4
100 7
1
0 59
39 78
75 100
100 98
83 74
69 49
56 25
61 0
1
4 65
28 100
38 100
36 61
38 22
0 0
42 5
100 8
1
0 64
43 78
81 100
100 98
95 73
88 49
81 24
83 0
7
0 96
49 100
77 76
62 38
51 0
2 2
25 14
100 23
9
46 45
0 58
20 83
69 100
100 81
91 53
69 27
48 0
4
37 100
0 81
17 50
100 51
76 74
51 96
47 46
48 0
4
46 100
19 78
0 43
85 40
100 58
68 75
58 38
60 0
0
4 67
0 35
17 0
61 12
93 43
100 83
61 100
21 83
3
0 86
51 100
81 83
47 58
80 45
100 20
58 0
1 1
8
19 65
68 37
56 0
0 5
36 40
85 71
100 100
36 80
2
42 92
64 100
50 49
23 16
0 10
34 11
68 4
100 0
7
0 92
57 100
100 77
77 38
46 0
25 9
25 48
92 58
7
0 72
29 100
71 82
74 43
57 5
23 0
45 28
100 35
1
0 49
37 66
71 87
100 100
87 75
75 50
61 25
51 0
8
43 93
23 65
55 27
21 0
0 33
48 64
100 93
45 100
9
80 98
100 92
64 100
76 76
93 65
85 18
44 0
0 15
4
38 100
28 70
0 41
36 40
100 38
87 61
89 28
93 0
2
50 71
74 100
100 81
75 47
42 17
0 1
39 11
91 0
1
80 100
100 97
75 82
55 66
35 50
20 34
5 16
0 0
6
86 100
47 80
14 54
0 26
17 0
100 8
92 33
19 50
8
18 61
51 37
44 0
0 13
33 48
84 79
100 100
35 75
0
30 100
0 65
0 20
41 0
85 12
100 54
77 93
33 99
3
15 81
54 100
91 81
43 55
44 49
100 32
66 3
0 0
1
40 63
51 100
56 89
54 51
54 14
0 0
46 1
100 5
9
93 69
79 100
18 84
57 60
94 73
100 34
70 1
0 0
7
11 65
7 91
53 100
100 98
72 75
44 50
19 25
0 0
6
100 96
80 100
42 71
12 40
0 4
49 0
55 30
0 19
5
41 96
19 61
66 43
42 2
0 0
18 51
49 89
100 100
5
42 93
5 61
93 54
100 14
21 0
0 41
14 83
97 100
2
0 69
29 100
49 75
33 36
3 4
9 14
54 6
100 0
2
16 72
35 100
46 74
26 42
0 13
4 3
53 0
100 4
4
23 100
16 73
0 42
73 48
98 75
89 62
91 28
100 0
6
100 100
55 80
21 54
0 26
28 0
98 5
79 26
7 19
9
100 79
54 100
21 67
78 60
98 82
92 38
60 0
0 6
0
34 100
0 75
0 41
25 9
84 0
100 33
73 65
16 71
0
43 61
10 23
46 0
88 31
100 76
64 100
24 67
0 25
1
0 73
52 81
100 100
100 84
88 63
76 42
60 20
72 0
4
47 100
9 76
0 45
59 48
100 73
67 58
36 30
15 0
4
50 100
27 77
0 45
41 30
100 40
84 67
63 33
46 0
8
30 98
30 76
72 38
60 0
0 11
44 48
100 83
49 100
9
96 71
52 46
31 73
72 100
100 71
86 33
52 1
0 0
3
0 87
33 100
98 97
95 78
75 53
100 26
77 5
13 0
2
0 69
37 96
100 100
100 65
68 34
20 9
32 0
97 1
0
20 88
0 52
14 14
63 0
97 31
100 71
64 100
16 84
8
54 96
33 71
73 34
30 0
0 29
49 65
100 100
31 98
4
35 100
16 80
0 45
56 45
100 53
59 81
55 40
54 0
3
23 88
68 100
97 81
63 60
87 40
100 16
55 0
0 1
6
100 100
55 95
23 68
2 37
0 5
47 0
53 28
6 14
4
19 100
1 79
0 57
39 46
87 51
87 41
81 19
100 0
6
100 100
62 83
34 64
14 43
0 22
4 0
44 12
36 30
4
32 100
0 70
9 39
68 37
100 59
86 67
82 33
91 0
4
84 100
12 80
0 59
88 62
100 92
61 79
40 40
27 0
9
83 100
38 82
81 87
94 85
100 53
100 20
53 6
0 0
5
63 89
100 100
85 96
39 88
43 64
70 32
40 0
0 9
1
0 66
39 93
56 100
57 61
58 22
28 0
50 2
100 5
3
38 85
73 100
100 86
68 65
87 42
81 15
42 0
0 12
3
64 86
79 100
100 87
73 63
93 41
83 13
43 0
0 5
0
0 43
1 33
41 0
100 15
99 63
61 100
8 75
4 28
7
0 100
76 97
100 65
75 32
44 0
1 6
21 26
100 23
7
0 90
43 100
87 86
69 46
47 7
66 0
100 30
45 28
5
25 92
29 62
86 43
56 3
0 0
8 53
38 94
100 100
9
64 86
100 100
47 100
71 71
96 66
96 19
45 0
0 19
1
0 72
23 81
67 100
100 99
94 75
87 49
83 25
75 0
8
87 94
47 82
96 43
82 0
0 4
29 43
100 74
97 100
2
27 72
56 100
60 66
35 26
0 12
32 16
69 0
100 10
2
0 78
23 100
52 88
39 62
25 37
11 12
47 0
100 4
0
52 100
18 79
0 35
23 0
72 18
100 57
72 92
21 85
8
86 72
35 100
0 67
68 38
100 1
22 0
43 43
92 82
1
0 33
40 52
73 75
100 100
100 86
87 58
76 29
73 0
9
77 100
8 92
44 73
92 97
100 65
100 30
68 0
0 2
1
46 67
71 100
60 73
58 33
51 0
0 1
62 3
100 8
4
46 100
5 73
0 41
61 41
100 57
84 69
69 35
67 0
5
18 93
10 55
55 27
13 0
0 34
5 81
45 100
100 98
0
43 89
15 49
22 0
72 3
100 46
83 92
30 100
0 66
6
100 100
54 97
16 68
0 32
24 0
74 15
76 50
21 59
7
49 93
89 100
94 65
68 28
50 0
100 24
60 37
0 43
5
29 100
30 64
62 30
20 0
1 31
0 77
41 93
100 95
4
49 100
25 79
0 48
84 46
100 64
66 70
57 35
56 0
3
3 94
51 100
100 100
72 79
51 56
68 30
46 9
0 0
9
100 54
48 62
0 75
25 100
65 90
60 59
48 30
33 0
8
50 100
13 80
76 54
100 16
40 0
37 42
53 84
0 98
1
0 57
50 74
82 97
100 100
89 75
75 50
64 25
61 0
3
30 88
74 100
100 88
66 69
74 46
90 22
50 7
0 0
1
0 53
29 81
49 100
44 66
40 31
25 0
54 5
100 6
6
100 100
62 84
26 56
0 25
28 0
83 16
64 44
13 26
7
0 98
80 100
100 68
87 33
59 0
19 16
10 43
93 49
6
78 100
29 80
6 50
0 19
44 0
100 15
72 37
17 25
7
8 65
0 92
47 97
100 100
75 77
53 52
37 25
41 0
7
6 100
51 92
57 56
45 21
22 0
0 31
48 39
100 40
4
49 100
5 84
0 48
100 45
80 79
43 89
38 45
37 0
0
65 100
18 88
0 52
11 17
58 0
99 23
100 60
85 96
6
100 100
71 96
38 74
11 50
0 21
27 0
63 16
39 39
6
74 100
49 87
12 56
0 23
44 0
100 17
42 34
2 20
5
19 89
10 61
50 28
25 0
3 31
0 75
40 98
100 100
7
0 91
51 96
88 100
67 55
64 7
47 0
48 19
100 24
4
28 100
5 77
0 53
39 40
87 44
100 46
80 23
63 0
7
0 92
58 100
74 68
57 34
36 0
71 20
100 47
36 42
5
23 100
18 78
36 40
17 0
0 51
21 83
61 84
100 82
7
0 82
39 100
80 95
66 51
56 6
40 0
55 28
100 29
1
0 58
25 69
67 91
100 100
76 75
53 50
25 25
4 0
8
80 98
0 95
55 68
100 34
52 0
0 24
31 64
29 100
6
60 100
36 85
7 54
4 20
52 0
100 18
54 38
0 23
0
91 100
28 93
0 62
0 27
39 0
89 18
100 53
91 89
4
55 100
22 88
0 72
1 53
32 41
67 32
95 19
100 0
2
26 80
42 100
57 69
34 30
0 0
9 20
54 27
100 26
3
2 75
36 100
87 93
58 62
94 49
100 19
50 0
0 16
1
82 100
100 86
88 71
59 57
35 44
24 29
6 14
0 0
1
25 67
54 100
56 78
51 34
20 4
0 9
51 4
100 0
2
23 80
60 100
100 88
81 61
43 40
0 23
11 5
64 0
4
29 100
5 74
0 46
48 39
100 46
74 57
69 28
70 0
9
90 72
64 100
24 72
75 57
94 75
100 30
61 0
0 2
0
84 88
39 100
3 68
0 27
41 0
91 15
100 54
84 94
8
59 94
8 100
17 65
90 36
76 0
0 10
48 46
100 83
0
41 90
11 65
0 23
33 0
77 23
100 60
88 100
41 96
6
76 99
51 100
15 64
0 25
46 0
100 22
41 42
3 17
1
0 80
44 100
47 91
47 58
48 24
16 0
27 1
100 3
0
50 82
8 61
0 15
50 0
95 30
100 77
59 100
23 64
2
37 82
57 100
53 65
30 36
0 16
30 0
66 2
100 19
5
40 87
23 57
44 22
9 0
0 40
5 78
46 100
100 99
5
21 98
18 65
62 42
24 0
1 35
0 91
58 100
100 95
4
16 100
4 71
0 42
39 21
89 33
100 55
80 28
87 0
8
0 93
55 63
98 29
72 0
47 27
93 61
100 100
34 99
7
0 91
51 100
84 82
51 43
25 0
1 16
39 40
100 41
5
100 100
60 100
36 91
34 62
68 56
70 33
38 14
0 0
5
19 92
0 57
64 39
64 0
5 11
13 62
30 100
100 99
2
0 64
16 100
47 79
35 40
6 6
11 9
58 0
100 4
0
38 100
15 59
18 13
63 0
100 33
96 77
48 90
0 72
0
11 80
0 34
31 0
77 17
100 60
72 100
24 94
3 51
4
66 100
41 77
0 49
18 29
77 30
100 63
90 30
95 0
3
0 92
50 100
70 75
25 53
58 42
100 20
58 0
3 1
6
100 99
62 100
26 78
2 48
0 16
38 0
59 23
20 38
0
45 96
23 78
0 35
29 0
83 21
100 65
63 100
3 91
4
42 100
24 72
0 43
50 49
93 70
100 61
94 29
99 0
8
54 92
0 100
16 65
66 35
72 0
22 15
56 51
100 84
9
75 94
95 90
62 100
84 86
100 52
91 16
44 0
0 18
7
0 85
51 100
81 71
76 35
58 0
31 25
35 55
100 61
3
0 86
39 100
89 95
73 74
70 52
100 33
100 13
50 0
0
18 82
0 38
23 0
70 6
100 41
85 83
39 100
4 74
8
0 79
61 54
100 21
61 0
43 34
82 69
82 100
0 92
1
0 55
43 71
90 91
100 100
94 75
87 50
76 25
69 0
1
7 56
36 89
45 100
42 60
38 20
0 0
48 5
100 5
8
100 64
98 100
51 78
52 39
48 0
0 4
31 38
95 57
3
12 67
34 92
100 100
77 71
77 51
89 22
40 0
0 17
5
13 87
5 54
40 24
6 0
3 38
0 77
44 95
100 100
1
100 100
66 89
48 75
34 60
17 45
10 30
3 15
0 0
8
78 94
3 100
22 66
100 35
62 0
0 25
44 66
41 96
2
2 70
0 100
51 100
65 67
41 33
6 4
47 0
100 2
7
0 75
33 89
77 100
79 72
61 37
55 0
55 20
100 27
0
19 92
0 51
17 7
64 0
100 29
91 77
50 100
4 87
4
60 100
32 69
0 37
42 29
100 29
85 51
68 38
60 0
1
0 61
34 91
51 100
48 60
45 19
4 0
48 1
100 3
3
76 91
100 100
89 75
84 51
85 23
61 2
23 0
0 22
9
82 100
37 86
66 70
87 86
100 52
92 18
49 1
0 0
3
33 75
46 100
78 86
57 56
100 40
96 11
46 0
0 13
3
0 82
33 100
77 93
50 66
71 47
100 24
58 7
11 0
7
36 100
65 90
66 59
48 28
25 0
0 28
47 36
100 37
7
0 74
29 100
65 86
73 44
64 0
31 8
60 35
100 40
6
100 100
56 90
20 66
0 34
9 1
55 0
67 31
26 46
6
100 100
78 83
56 57
40 31
44 3
92 8
46 14
0 0
3
34 85
62 100
79 76
51 49
90 36
100 13
48 0
0 7
7
0 93
49 100
100 100
80 66
61 27
51 0
44 35
95 37
5
43 100
30 64
49 28
30 0
0 25
18 59
58 73
100 78
8
73 90
0 100
2 65
57 30
20 0
2 34
59 69
100 98
4
42 100
19 71
0 40
50 25
100 35
99 60
68 31
49 0
4
81 100
42 80
0 49
57 38
100 49
68 70
67 35
63 0
9
92 69
36 74
0 87
52 100
98 86
100 56
79 28
58 0
1
0 44
37 59
71 78
100 100
88 82
70 55
55 28
43 0
4
50 100
27 82
0 58
38 42
100 55
86 48
55 24
34 0
6
100 88
100 100
76 73
52 44
40 16
80 0
56 20
0 1
5
100 98
66 100
38 98
32 73
59 60
48 37
24 19
0 0
8
44 68
62 40
100 2
0 0
25 38
98 71
96 100
6 73
2
0 70
22 99
50 100
45 59
28 22
39 0
69 4
100 8
6
100 100
52 82
15 54
0 21
44 0
96 17
66 43
7 30
5
14 96
77 100
30 99
20 60
66 61
100 32
54 0
0 17
9
81 71
97 100
36 89
74 72
95 74
100 34
59 6
0 0
1
100 100
100 90
50 75
25 60
0 45
0 30
0 15
0 0
5
20 88
29 53
73 35
42 0
0 3
20 59
53 98
100 100
7
0 98
38 100
61 62
61 16
39 0
18 37
58 41
100 37
1
0 71
56 80
100 100
93 86
74 64
59 43
48 20
59 0
6
100 100
68 92
35 67
7 35
0 0
43 2
50 26
9 11
9
99 69
77 100
51 72
88 79
100 59
84 15
38 0
0 7
4
52 100
49 99
0 63
99 53
100 81
81 84
77 42
86 0
4
31 100
12 74
0 46
55 42
100 51
78 59
78 29
83 0
0
47 82
17 73
0 34
25 0
71 9
100 44
97 85
55 100
9
81 98
26 93
59 67
95 100
88 66
100 24
48 0
0 14
2
16 71
44 100
64 71
40 31
0 11
23 12
66 0
100 15
5
100 89
68 100
22 89
0 55
49 66
83 43
63 9
14 0
6
100 98
56 100
20 77
0 48
3 17
44 0
53 22
11 40
7
0 97
40 100
68 74
58 34
51 0
24 34
48 56
100 60
0
34 100
17 85
0 38
27 0
82 9
100 53
60 87
5 89
0
76 49
70 92
27 100
0 66
3 19
41 0
80 21
100 57
3
25 84
64 100
82 71
42 52
95 42
100 9
46 0
0 12
4
37 100
10 79
0 41
56 31
97 53
100 76
74 38
49 0
5
100 100
70 100
27 97
5 62
34 58
61 36
41 1
0 0
0
83 31
100 71
67 100
24 87
0 46
8 0
51 0
82 36
1
0 67
35 78
71 95
100 100
83 75
67 51
50 26
42 0
6
90 100
46 77
20 49
12 20
51 0
100 17
64 41
0 44
3
0 80
35 100
75 96
59 62
100 56
99 22
64 0
24 6
2
0 86
29 100
62 95
51 62
31 32
34 2
69 0
100 6
3
6 78
53 100
61 70
55 54
100 35
82 3
21 0
0 26
8
100 91
0 91
41 60
92 25
20 0
0 29
55 64
88 100
8
0 100
40 68
79 35
72 0
49 23
74 59
100 94
43 86
0
80 70
57 100
15 73
0 30
34 0
83 15
100 56
75 88
5
12 91
0 50
65 45
67 0
13 9
4 65
31 100
100 99
3
38 78
73 100
92 70
58 48
100 39
85 6
33 0
0 28
5
12 91
79 100
45 95
29 63
88 68
100 24
52 0
0 23
4
45 99
9 100
0 75
36 56
100 63
98 49
80 25
82 0
6
66 100
31 74
6 47
0 20
41 0
100 16
84 36
16 23
7
7 80
0 80
29 100
99 99
100 90
78 59
61 28
46 0
9
46 90
70 87
16 80
0 94
54 100
100 82
94 39
70 0
1
0 62
19 71
69 91
100 100
71 75
50 50
29 25
12 0
1
9 59
39 87
61 100
46 59
22 22
0 3
50 2
100 0
8
29 88
71 73
100 33
43 0
0 25
39 64
94 100
35 94
2
19 80
45 100
49 64
29 27
0 0
25 8
63 14
100 21
4
32 100
8 74
0 46
51 37
100 48
96 55
86 27
81 0
5
18 98
72 100
26 89
34 61
82 45
100 19
53 4
0 0
0
26 83
26 14
66 3
100 47
89 100
45 86
6 47
0 0
1
0 50
45 74
84 100
73 68
63 34
34 7
32 3
100 0
3
33 82
53 99
100 100
73 72
81 48
89 20
48 2
0 0
6
100 100
66 80
35 60
11 39
0 17
29 0
74 16
35 20
2
33 64
58 100
94 90
67 51
28 19
0 15
49 16
100 0
2
23 82
57 100
60 70
34 42
0 22
20 12
59 8
100 0
7
0 95
52 100
71 86
63 42
62 0
27 33
48 50
100 53
4
74 100
82 86
37 63
0 39
76 41
100 47
61 24
21 0
1
94 92
100 100
77 83
62 65
43 47
26 29
15 12
0 0
2
28 75
49 100
57 63
34 26
0 3
26 11
66 0
100 5
6
100 100
65 80
38 56
15 29
8 0
48 8
36 27
0 13
3
2 83
35 100
62 82
62 68
100 51
84 21
44 0
0 7
2
0 88
42 100
68 83
52 59
29 36
9 12
48 2
100 0
3
36 84
66 100
91 75
79 46
100 27
70 4
22 0
0 25
7
18 75
0 74
35 97
100 100
88 79
72 49
52 18
40 0
8
23 84
28 57
71 22
0 0
6 33
69 66
100 100
2 90
8
82 95
0 83
62 54
100 20
37 0
49 35
89 70
88 100
4
68 98
70 100
36 79
0 59
60 49
100 47
73 23
51 0
7
10 84
64 100
98 70
71 34
36 0
0 30
30 55
100 49
6
84 88
100 100
70 73
46 47
32 19
51 0
41 25
0 8
1
0 100
100 91
0 76
0 60
0 45
0 30
0 15
100 0
4
71 100
37 74
0 45
17 29
95 29
100 50
91 33
89 0
0
25 100
0 63
2 17
43 0
86 10
100 52
74 90
32 97
0
100 46
93 86
46 100
10 72
0 28
29 0
76 18
88 55
1
0 4
29 27
55 56
79 85
100 100
84 67
69 34
62 0
0
41 96
6 63
0 11
48 0
92 31
100 82
51 100
18 62
2
48 68
57 100
92 91
76 54
45 21
0 0
45 22
100 4
3
0 84
31 100
81 98
73 74
87 51
100 29
67 10
17 0
7
0 98
76 100
100 68
88 34
67 0
16 1
13 16
95 11
3
0 81
39 100
88 90
61 59
85 47
100 14
53 0
8 5
9
94 95
42 100
35 71
86 84
100 66
100 25
55 2
0 0
9
77 87
98 82
78 100
52 67
97 65
100 23
49 0
0 16
1
0 53
33 71
76 93
100 100
79 74
53 49
28 25
12 0
3
0 86
41 100
77 86
58 58
98 42
100 16
58 1
8 0
3
41 94
82 100
97 79
81 54
100 30
86 6
42 0
0 1
2
0 80
28 100
55 82
37 48
11 20
24 3
62 1
100 0
6
100 100
50 80
19 59
0 36
0 13
53 0
78 19
3 19
0
92 47
92 90
49 100
11 74
0 27
35 0
76 18
100 57
2
0 96
9 97
50 100
47 64
22 32
19 0
60 5
100 19
4
62 100
12 72
0 43
100 45
89 69
53 88
54 43
52 0
1
0 73
43 100
44 95
38 62
37 29
16 0
22 2
100 3
0
7 68
23 100
0 51
15 1
80 0
100 48
64 91
1 89
8
34 77
79 59
100 23
28 0
0 32
38 68
93 100
31 87
5
16 100
6 51
58 34
24 0
3 29
0 81
46 99
100 99
4
42 100
13 73
0 42
52 35
100 48
92 56
92 25
97 0
5
41 91
53 62
95 30
52 0
14 16
0 53
17 87
100 100
4
56 100
28 83
0 61
38 45
100 55
69 45
46 23
31 0
4
33 100
14 97
0 80
9 61
39 48
74 36
92 18
100 0
5
21 93
28 62
53 24
13 0
5 41
0 84
47 96
100 100
9
0 74
51 63
100 96
34 100
15 69
88 83
82 45
65 0
4
56 100
34 83
0 63
23 48
77 39
100 42
68 22
48 0
0
0 93
2 43
21 0
67 8
100 45
100 92
54 100
21 68
4
26 100
0 84
22 56
100 57
52 92
48 85
44 36
40 0
5
19 99
90 100
57 94
12 73
52 60
100 35
66 0
0 5
9
60 95
84 73
85 100
36 87
99 76
100 39
64 9
0 0
0
63 100
18 89
0 44
14 0
62 12
96 49
100 95
54 93
6
100 100
78 98
34 69
6 36
15 1
77 0
68 32
0 28
5
100 98
85 99
38 100
26 71
66 56
79 36
40 18
0 0
6
100 100
45 87
12 59
0 26
27 0
87 8
87 37
27 31
8
53 100
27 65
97 33
82 0
27 20
70 58
100 97
0 91
0
37 93
2 89
0 33
42 0
92 11
100 65
60 100
9 91
6
100 100
56 82
22 55
0 25
26 0
78 9
61 36
6 38
7
0 92
48 100
68 67
64 33
48 0
9 24
39 49
100 58
6
100 100
45 91
7 63
0 30
33 1
89 0
63 28
7 31
0
29 85
8 43
33 0
86 9
100 57
74 100
17 92
0 46
6
100 79
59 100
17 73
0 35
22 0
76 5
59 34
19 16
7
0 89
59 100
100 74
82 35
51 0
10 18
35 42
100 48
8
100 81
37 100
0 71
49 36
71 0
18 22
51 59
90 93
4
82 100
64 89
31 67
0 45
62 37
100 46
78 23
71 0
5
48 94
40 69
79 37
53 0
3 19
0 64
34 95
100 100
9
100 80
46 100
25 68
88 75
86 75
96 32
57 0
0 19
4
37 100
20 83
0 59
37 42
100 47
93 48
70 24
50 0
6
100 100
57 84
22 59
3 28
24 0
72 11
54 36
0 28
0
35 100
7 65
0 21
37 0
79 18
100 58
83 97
37 100
6
100 100
55 94
27 70
6 44
0 14
29 0
43 25
2 25
9
88 100
25 87
61 58
92 89
89 63
100 23
47 0
0 23
9
51 76
0 73
11 95
60 100
97 83
100 55
91 27
83 0
5
100 96
62 100
33 83
26 45
57 42
75 19
40 0
0 1
9
88 100
38 82
63 53
100 82
98 67
95 31
67 0
0 8
2
17 92
55 100
69 71
38 50
0 38
23 25
61 13
100 0
7
0 83
55 100
100 79
94 38
69 0
40 7
32 48
91 57
9
9 83
66 72
95 100
0 91
44 74
100 73
82 37
78 0
2
0 82
30 100
74 97
76 72
63 47
44 24
50 0
100 0
8
25 92
13 64
52 30
8 0
0 34
46 68
100 100
10 89
2
0 80
31 100
70 90
53 62
27 37
7 10
48 0
100 1
5
31 95
24 52
49 23
14 0
0 40
19 78
56 99
100 100
1
0 32
33 41
62 64
85 94
100 100
85 66
70 34
57 0
6
100 89
55 100
17 72
0 31
26 0
67 22
40 48
13 21
5
50 91
100 100
90 97
62 69
100 43
99 11
51 0
0 1
2
7 77
43 100
59 77
36 41
3 10
0 0
54 0
100 20
9
87 71
85 100
46 81
89 71
100 74
91 30
51 4
0 0
2
7 51
31 90
93 100
99 58
59 21
0 0
35 17
100 5
0
43 100
16 86
0 41
24 0
75 11
100 53
85 97
34 97
8
100 91
33 100
7 73
76 39
67 0
0 25
48 68
91 94
9
100 88
47 100
23 66
80 66
91 78
93 36
62 0
0 3
0
36 88
6 47
9 0
63 7
100 44
100 88
48 100
0 73
5
21 87
24 55
60 29
24 0
0 17
10 68
52 90
100 100
3
38 85
73 100
90 77
52 56
100 49
95 18
50 0
0 11
2
0 64
12 98
47 100
30 63
5 29
15 3
56 0
100 1
3
14 73
41 100
87 95
64 65
100 45
100 15
49 0
0 16
2
14 71
40 100
49 70
27 36
0 5
25 0
66 2
100 19
2
20 86
42 100
38 64
11 35
0 22
35 0
75 1
100 31
0
54 92
11 60
0 17
50 0
95 29
100 72
58 100
15 72
3
2 96
63 100
60 81
54 62
73 43
100 26
62 10
0 0
5
24 91
7 61
54 36
37 0
6 23
0 76
39 100
100 95
1
0 33
35 52
67 75
97 100
100 90
83 61
68 31
56 0
0
35 57
0 47
1 0
48 5
86 36
100 83
58 100
12 86
5
9 100
0 62
52 48
45 0
2 13
3 68
37 99
100 100
4
40 100
23 89
0 59
26 34
95 45
100 60
68 31
56 0
8
94 91
32 81
100 44
91 0
8 18
45 60
98 100
0 100
2
45 82
60 100
56 69
31 43
0 23
28 3
65 0
100 16
1
13 52
35 92
40 100
43 57
45 13
0 0
51 1
100 0
3
22 86
62 100
82 74
59 60
100 42
93 11
40 0
0 17
9
100 100
55 86
93 81
97 76
97 51
93 26
55 7
0 0
4
61 100
1 74
0 47
100 48
95 73
64 76
54 36
52 0
0
0 46
3 4
43 0
78 24
100 57
92 96
51 100
17 78
7
6 100
32 98
66 71
62 34
41 0
0 27
39 41
100 46
1
0 54
26 89
36 100
32 61
40 22
4 0
40 3
100 4
7
0 91
53 100
93 87
60 47
36 4
26 0
37 35
100 40
9
92 90
51 100
34 76
87 79
100 67
92 29
53 4
0 0
9
52 89
1 100
0 72
60 76
68 73
100 39
88 6
27 0
4
79 100
47 89
0 70
24 56
87 45
100 43
60 22
28 0
8
100 97
23 100
14 67
65 34
43 0
0 26
39 62
93 96
6
100 100
52 87
16 61
0 29
22 0
73 10
65 40
10 46
5
100 100
51 96
10 82
7 63
57 61
71 35
44 9
0 0
5
65 87
100 100
73 87
37 74
64 58
67 21
36 0
0 12
6
100 100
59 80
31 55
16 26
31 0
82 5
47 18
0 4
3
1 90
42 100
76 89
59 61
100 44
100 18
55 2
0 0
9
90 88
43 100
15 69
67 66
86 66
100 27
59 3
0 0
7
0 87
41 100
79 83
60 43
50 2
49 0
40 32
100 36
0
35 100
8 68
0 31
24 0
73 10
100 43
98 80
55 94
2
2 79
32 100
52 70
39 36
12 6
0 7
50 7
100 0
3
23 81
61 100
92 91
58 62
81 39
100 17
51 4
0 0
4
61 100
34 75
0 44
55 37
100 49
76 70
66 35
70 0
3
26 82
76 100
81 76
35 51
55 49
100 28
64 0
0 2
0
23 88
0 47
20 7
66 0
100 29
91 76
52 100
12 78
4
29 100
24 75
0 48
27 33
89 37
87 51
89 22
100 0
1
100 100
81 89
67 74
48 59
33 45
22 30
7 15
0 0
6
100 100
54 86
18 59
0 29
23 1
85 0
66 18
23 15
8
7 77
54 48
76 10
24 0
49 36
100 69
80 100
0 84
6
100 74
81 100
33 92
4 62
0 26
31 0
61 21
24 42
6
100 86
67 100
24 80
0 50
0 16
41 0
63 24
18 35
3
20 78
63 100
92 84
46 59
60 50
100 30
62 3
0 0
6
100 95
49 100
14 71
0 34
21 0
64 16
39 45
29 13
0
26 89
7 73
0 30
45 0
97 21
100 65
64 100
9 88
5
100 94
55 100
21 84
0 55
45 62
71 40
51 11
8 0
9
96 91
37 100
56 59
93 91
94 71
100 26
56 0
0 20
6
100 100
62 87
34 64
13 37
0 9
29 0
40 25
1 22
3
11 88
57 100
100 88
61 66
67 50
91 24
55 2
0 0
7
2 74
5 95
70 100
100 89
66 67
31 45
0 22
2 0
9
90 82
46 100
38 56
97 74
92 84
100 35
62 0
0 19
3
0 88
37 100
79 94
92 73
90 52
100 31
93 10
54 0
5
24 91
22 61
38 25
1 0
0 39
0 78
46 95
100 100
8
63 96
3 100
26 61
54 21
9 0
0 28
50 56
100 84
2
38 85
60 100
58 72
33 45
0 24
15 10
58 0
100 10
4
30 100
10 85
0 66
0 48
27 34
65 28
96 18
100 0
6
100 100
60 98
23 69
0 32
24 0
77 8
70 39
17 37
3
53 96
98 100
100 85
67 68
71 45
78 22
45 6
0 0
6
100 83
62 100
22 73
0 44
3 13
70 0
95 22
8 21
5
45 96
0 68
48 62
52 12
6 0
20 54
45 100
100 99
4
42 100
12 74
0 45
65 51
100 76
85 55
62 27
37 0
7
0 96
54 100
99 80
86 42
67 6
34 0
36 25
100 36
1
25 64
54 100
53 90
49 45
32 3
0 0
51 1
100 2
9
0 78
57 74
91 100
10 94
23 74
100 80
86 40
85 0
3
37 90
73 100
100 90
64 72
83 45
83 16
43 3
0 0
6
100 100
63 82
35 63
10 43
0 21
14 0
63 2
35 11
4
44 100
2 69
0 38
71 39
100 50
60 74
56 37
58 0
7
0 97
46 100
68 71
62 34
43 0
22 14
49 29
100 31
4
73 100
38 88
11 74
0 55
23 40
62 31
95 18
100 0
8
65 100
0 89
67 60
100 24
38 0
29 38
55 78
3 99
0
16 89
1 48
23 9
72 0
100 34
87 76
45 100
0 83
4
42 100
44 88
11 57
0 33
77 40
100 64
91 34
93 0
9
1 80
50 69
100 100
1 90
0 62
97 81
97 41
86 0
5
24 96
19 69
58 30
16 0
2 42
0 90
52 100
100 94
5
37 95
7 60
65 60
65 11
0 0
16 50
30 95
100 100
9
78 100
17 99
24 73
83 80
100 68
98 30
61 2
0 0
5
24 96
91 100
100 95
32 92
25 62
87 51
62 0
0 6
6
100 100
55 85
15 56
8 21
56 0
99 24
53 45
0 26
0
36 92
7 77
0 30
35 0
81 15
100 58
76 99
27 100
3
46 85
75 100
79 72
53 56
100 46
95 15
49 0
0 15
1
0 87
56 98
100 100
84 80
67 60
56 40
51 20
44 0
4
46 100
6 79
0 48
67 43
100 73
77 61
45 31
19 0
4
72 100
28 85
0 61
100 67
89 84
64 84
64 41
59 0
1
50 67
75 100
67 81
56 40
43 2
0 0
57 2
100 4
9
74 100
10 93
15 69
77 80
78 66
100 30
66 4
0 0
2
29 76
50 100
70 74
50 42
18 16
0 0
50 7
100 7
7
15 84
0 64
18 97
78 98
100 100
79 65
68 29
65 0
5
19 75
64 99
100 100
48 90
5 63
53 51
47 2
0 0
5
46 81
15 59
51 32
31 0
0 8
14 56
50 90
100 100
6
100 100
50 90
20 61
0 29
18 0
76 6
62 31
5 33
7
0 84
53 100
94 76
94 38
77 0
38 3
41 28
100 36
7
15 95
69 100
75 66
51 33
22 0
0 9
30 29
100 33
5
51 88
58 54
87 20
66 0
25 30
0 63
31 94
100 100
8
16 82
51 50
100 17
13 0
0 32
60 65
89 100
16 84
7
0 100
38 98
48 59
38 19
24 0
18 39
58 45
100 46
7
8 92
37 100
66 67
59 24
27 0
0 32
50 28
100 24
3
19 60
33 88
100 100
93 70
51 48
98 27
63 0
0 0
7
0 96
42 100
62 62
56 19
39 0
11 36
51 52
100 57
4
56 100
31 68
0 38
27 25
83 22
100 50
91 34
76 0
9
92 75
51 67
51 98
94 100
100 63
84 28
49 0
0 2
4
38 100
2 73
0 42
69 34
100 52
83 62
62 31
45 0
7
0 91
43 100
89 95
100 59
84 23
66 0
38 32
84 33
8
88 82
39 100
4 68
100 35
84 0
0 22
49 62
84 93
5
100 92
66 100
39 82
42 57
70 38
64 9
32 0
0 8
1
0 78
50 86
100 100
85 80
73 60
58 40
50 19
31 0
3
11 91
56 100
100 92
73 73
51 52
55 28
47 6
0 0
5
58 85
100 100
65 96
24 70
23 55
70 48
49 13
0 0
3
13 95
71 100
93 71
54 42
94 42
100 12
43 0
0 20
3
37 76
46 100
99 95
74 61
100 50
91 18
42 0
0 15
0
52 100
20 70
0 29
34 0
82 18
100 60
69 94
16 86
6
100 88
69 100
34 82
8 56
0 23
26 0
50 22
22 42
2
31 75
53 100
68 77
49 45
21 16
0 1
50 5
100 0
4
37 100
0 77
13 53
74 60
100 82
68 55
40 28
18 0
4
42 100
4 70
0 34
60 32
100 57
98 71
70 35
47 0
5
19 86
17 47
59 32
21 0
1 38
0 90
49 98
100 100
4
41 100
0 75
11 49
96 50
100 56
52 70
54 35
57 0
0
81 100
27 92
0 59
2 22
47 0
95 23
100 61
88 97
9
91 98
43 100
45 75
95 100
100 76
95 43
61 14
0 0
1
0 67
27 77
67 93
100 100
92 75
85 50
79 25
75 0
3
38 85
75 100
92 84
71 58
100 37
82 11
41 0
0 6
5
55 92
100 100
73 86
43 59
72 40
89 12
46 0
0 0
8
60 100
20 91
32 52
45 12
0 0
5 35
53 54
100 73
0
44 100
8 78
0 41
14 6
66 0
99 30
100 67
56 78
3
0 90
45 100
62 76
28 53
60 42
100 26
62 6
13 0
4
29 100
12 82
0 62
1 41
31 32
64 29
93 20
100 0
5
100 100
57 98
18 90
0 62
22 55
57 40
42 12
4 0
2
0 90
41 100
69 86
59 64
45 43
33 22
49 3
100 0
1
0 40
38 60
74 80
100 100
76 76
55 50
38 25
22 0
2
8 62
17 100
61 88
41 44
0 11
8 22
58 0
100 14
5
15 85
9 47
70 44
54 0
9 12
0 68
37 97
100 100
6
100 100
57 85
21 58
0 29
13 0
66 8
57 33
6 26
8
0 91
15 56
44 22
15 0
36 34
82 67
100 100
5 95
7
0 69
39 100
82 84
70 40
41 0
6 13
44 41
100 40
3
0 79
31 100
79 95
51 66
82 50
100 21
58 0
12 12
0
10 76
0 34
26 0
69 9
100 42
97 84
57 100
14 87
1
13 58
40 100
49 97
46 45
25 3
0 1
50 1
100 0
8
89 68
81 100
34 80
34 40
30 0
0 8
38 42
100 59
2
0 70
33 100
83 97
78 59
44 26
2 0
42 1
100 2
7
0 95
56 100
61 80
51 40
44 0
17 27
41 39
100 47
2
0 62
34 93
81 100
85 61
53 28
11 17
56 19
100 0
7
0 100
75 97
100 71
61 36
32 0
83 4
81 24
0 23
4
28 100
1 75
0 45
70 38
100 66
88 58
60 29
34 0
7
0 90
32 100
66 77
45 39
26 0
1 20
45 34
100 39
4
35 100
0 73
11 42
76 37
100 67
82 61
54 30
27 0
4
76 100
53 91
0 71
33 56
100 47
97 48
47 26
17 0
6
100 100
65 92
27 69
0 40
8 7
58 0
87 21
41 33
4
91 100
77 80
11 58
0 37
97 45
100 50
51 26
29 0
2
0 74
18 100
50 94
45 62
32 32
24 4
62 0
100 1
7
0 98
53 100
84 72
62 34
43 0
1 26
44 37
100 38
9
26 100
6 58
59 94
100 50
61 0
0 0
30 60
16 98
5
62 97
85 100
42 77
49 67
100 57
94 23
50 0
0 9
0
33 99
0 55
1 4
66 0
100 45
91 96
34 100
13 51
3
51 82
84 100
99 79
80 55
100 29
79 4
36 0
0 19
7
0 92
35 95
100 100
93 79
59 41
36 0
12 16
76 22
2
0 69
27 95
66 100
76 66
61 31
37 1
58 0
100 6
0
26 70
19 25
57 0
95 21
100 68
69 100
24 88
0 48
8
75 100
25 84
55 49
63 14
0 0
3 21
58 46
100 77
3
35 93
78 100
89 85
69 65
100 42
88 16
46 4
0 0
0
100 53
95 92
46 100
11 69
0 26
34 0
76 25
88 62
9
100 71
72 100
34 78
84 71
98 71
91 29
48 2
0 0
4
100 100
69 76
33 52
0 27
58 33
87 53
56 28
38 0
7
0 100
41 98
56 69
50 34
43 0
28 26
57 44
100 48
9
54 100
0 92
10 62
64 69
73 71
100 36
79 7
23 0
8
94 100
8 82
79 46
99 4
0 0
15 41
100 72
47 96
5
14 95
85 100
45 96
9 68
44 57
100 33
59 0
0 16
6
100 100
64 90
24 52
37 9
96 0
92 42
29 50
0 17
5
47 84
94 100
100 93
41 80
25 61
82 41
53 0
0 10
9
100 91
38 100
32 62
99 70
96 83
97 40
69 1
0 0
0
24 87
31 38
61 0
100 25
96 72
57 100
10 87
0 42
4
48 100
25 78
0 48
25 30
72 29
94 55
90 32
100 0
8
31 100
0 74
52 36
48 0
0 18
52 56
100 94
19 94
1
0 65
43 81
84 100
100 92
90 69
80 46
73 22
53 0
7
0 100
33 93
67 92
100 94
78 71
57 49
38 25
27 0
7
0 75
4 98
64 100
100 92
72 70
46 48
27 24
25 0
2
0 96
51 100
58 78
38 56
13 35
0 14
42 1
100 0
4
31 100
0 81
21 58
100 62
74 88
54 80
58 40
66 0
1
86 93
100 100
64 84
39 67
22 51
8 34
0 17
0 0
4
41 100
2 77
0 46
74 42
100 65
88 62
80 31
79 0
3
0 86
47 100
100 91
68 72
58 51
74 31
76 10
11 0
4
60 100
27 82
0 58
49 46
86 55
86 63
87 31
100 0
9
100 91
53 100
48 69
93 88
93 65
87 24
49 0
0 14
4
16 100
12 92
0 69
38 52
100 57
96 46
82 24
75 0
6
51 100
45 99
11 65
0 25
43 0
100 20
74 48
15 31
0
26 77
0 33
28 0
69 15
100 52
85 97
44 100
4 84
6
57 100
23 74
2 45
0 16
47 0
100 13
72 34
16 23
2
35 69
58 100
85 86
65 48
35 13
0 1
53 0
100 25
7
0 100
34 81
48 42
44 0
15 8
14 31
57 32
100 30
1
4 62
25 76
76 97
100 100
75 74
47 49
18 23
0 0
2
0 69
24 100
61 94
38 37
34 0
38 4
76 2
100 7
3
0 80
37 100
82 95
68 63
79 47
100 17
67 0
22 9
4
41 100
12 77
0 42
69 28
100 58
86 67
50 34
18 0
4
77 100
37 78
0 53
48 37
100 40
92 60
87 28
97 0
9
0 86
24 71
84 95
22 100
28 77
100 81
97 40
97 0
1
0 72
49 84
98 100
100 80
93 60
88 39
76 20
59 0
1
0 53
39 81
46 100
48 66
47 31
24 0
36 5
100 7
0
81 80
28 87
0 53
8 16
61 0
100 25
100 62
84 100
9
93 100
50 87
100 91
93 70
91 44
89 18
57 1
0 0
2
14 77
34 100
52 74
30 41
0 13
25 5
66 0
100 23
0
13 96
0 58
16 17
63 0
100 27
94 68
60 100
17 89
3
34 87
63 100
100 93
69 64
69 37
86 13
44 0
0 0
6
100 100
62 80
31 56
9 29
12 0
59 2
48 23
0 18
1
83 100
100 91
78 76
61 61
44 45
28 30
11 15
0 0
1
20 62
39 98
44 100
37 62
41 24
0 0
30 0
100 0
8
89 83
59 100
41 63
59 23
20 0
0 29
49 54
100 73
9
100 96
46 100
79 89
82 88
82 57
87 27
57 5
0 0
1
0 55
32 91
39 100
36 47
19 0
1 7
50 7
100 8
1
0 64
15 76
63 97
100 100
85 74
74 49
67 23
89 0
6
100 100
53 79
19 50
0 18
36 0
74 25
52 53
2 38
6
100 100
57 91
28 63
6 33
9 1
62 0
59 22
0 12
8
82 100
24 94
52 46
75 0
0 13
38 56
100 92
64 99
0
38 90
0 75
0 32
42 0
93 23
100 66
60 100
1 94
9
41 83
88 70
78 100
41 80
94 64
100 28
56 1
0 0
8
72 91
29 94
52 47
61 0
0 17
45 56
100 93
45 100
1
0 68
17 84
81 100
100 81
86 60
72 40
58 20
50 0
1
33 66
53 100
53 91
58 53
51 17
0 0
35 3
100 6
1
100 100
93 85
67 72
47 58
27 42
7 28
0 14
13 0
3
34 87
71 100
80 75
65 52
100 37
84 11
44 0
0 1
6
100 100
58 94
21 66
5 35
17 4
74 0
62 29
0 37
2
22 69
40 100
79 87
69 52
41 22
0 0
46 2
100 0
6
85 100
44 87
11 54
0 16
50 0
100 20
68 46
8 41
9
93 100
42 95
60 70
99 100
97 77
100 37
58 9
0 0
1
0 61
29 92
46 100
48 62
43 24
4 0
45 6
100 8
8
78 100
37 99
58 59
74 20
19 0
0 28
51 55
100 80
0
83 61
59 100
17 86
0 41
20 0
68 3
100 36
91 74
5
56 85
95 100
100 97
47 95
7 71
57 52
48 0
0 11
0
57 100
16 72
0 34
24 0
81 14
100 51
73 86
12 82
2
2 66
26 100
78 99
77 64
41 34
0 7
47 3
100 0
0
14 67
0 30
26 0
70 16
100 48
96 85
53 100
7 87
8
100 85
32 100
0 67
56 34
68 0
23 24
71 59
61 84
6
89 100
46 78
14 51
0 22
38 0
100 8
92 33
30 28
1
8 66
26 100
38 89
37 48
28 9
0 0
49 5
100 7
1
7 70
36 100
55 98
48 61
44 24
0 0
35 6
100 5
7
15 79
0 65
17 100
71 99
100 96
77 60
58 24
47 0
3
55 85
67 100
86 75
67 47
100 31
83 9
38 0
0 8
6
77 100
65 90
24 61
0 28
33 0
100 8
69 32
2 27
8
14 67
44 47
44 9
0 0
23 36
63 68
100 100
44 88
0
17 86
1 59
18 11
72 0
100 42
82 90
28 100
0 56
3
51 93
86 100
80 69
54 44
100 37
94 10
48 1
0 0
5
21 67
27 49
39 21
0 0
12 28
26 59
48 88
100 100
9
95 86
64 100
61 78
95 99
100 60
83 21
44 2
0 0
8
97 66
100 100
53 84
59 43
50 4
0 0
25 36
83 57
2
0 75
24 100
50 84
41 44
19 14
35 0
67 0
100 0
5
21 89
13 64
67 42
42 0
0 17
5 68
34 100
100 97
0
29 83
5 60
8 14
64 0
100 35
89 81
33 100
0 83
3
1 84
49 100
89 80
58 51
97 49
100 19
49 0
0 4
1
16 69
51 100
60 91
56 54
60 17
0 4
29 0
100 2
7
0 97
31 100
51 70
53 34
42 0
28 21
61 37
100 44
5
10 94
84 100
37 97
21 67
63 60
100 32
60 0
0 18
5
100 97
74 100
42 89
31 56
59 39
67 10
34 0
0 0
9
80 94
33 100
47 57
96 85
87 92
100 44
76 0
0 19
9
69 95
74 65
93 100
44 86
97 75
100 30
56 0
0 15
5
100 100
58 98
29 80
27 45
63 36
78 13
39 0
0 3
9
75 100
78 82
87 97
57 84
100 64
91 33
53 10
0 0
8
100 92
57 100
48 66
53 30
28 0
0 20
34 48
85 61
0
38 84
7 59
0 17
45 0
87 30
100 71
64 100
11 88
2
7 79
40 100
47 66
34 30
6 0
0 8
49 9
100 9
9
100 100
56 95
78 84
95 83
97 54
89 26
49 8
0 0
4
25 100
0 68
4 39
75 47
100 53
51 80
49 40
47 0
1
0 55
34 87
53 100
49 63
47 26
12 0
34 5
100 5
7
0 91
36 100
66 79
73 39
63 0
39 19
61 33
100 33
0
20 56
34 14
70 0
100 26
94 70
65 100
27 95
0 64
7
0 100
60 100
100 92
62 58
42 16
41 0
22 41
84 45
0
61 96
13 89
0 41
37 0
94 10
100 60
64 100
6 97
3
63 79
67 100
100 100
84 73
69 50
73 23
41 4
0 0
2
47 68
59 100
100 94
81 56
47 23
0 3
45 9
99 0
6
100 100
51 82
17 55
0 24
32 0
83 14
77 43
25 39
6
90 100
46 78
20 50
17 19
59 0
100 17
48 27
0 16
7
1 80
0 73
22 99
71 100
100 98
83 65
67 32
55 0
8
76 66
82 100
0 88
49 53
97 15
32 0
38 39
100 72
9
69 99
13 100
0 65
54 68
70 74
100 37
74 5
17 0
6
17 99
30 100
0 53
14 4
83 0
100 46
28 55
6 13
8
90 79
70 100
0 74
51 37
100 0
22 10
56 50
79 87
2
29 73
57 100
97 87
81 51
45 24
0 3
45 2
100 0
6
100 100
49 80
17 51
0 19
34 0
91 15
77 44
23 39
6
100 100
63 85
33 62
8 37
0 7
39 0
60 25
25 41
0
17 70
0 32
24 0
67 14
97 48
100 90
59 100
28 71
2
0 92
31 100
60 88
47 54
24 25
33 0
66 2
100 8
2
0 87
35 100
57 82
41 53
22 26
26 0
66 7
100 20
0
11 100
0 48
17 0
68 4
100 46
89 94
40 92
13 50
5
100 100
54 92
19 77
12 53
58 56
73 27
43 1
0 0
2
21 89
36 100
24 61
0 31
1 21
32 2
67 0
100 17
1
0 35
37 50
73 74
100 100
90 81
77 53
63 26
61 0
9
56 100
0 98
10 73
64 82
81 70
100 33
64 7
8 0
2
23 75
53 100
75 78
44 50
0 32
2 18
50 8
100 0
8
80 93
0 100
7 62
78 34
64 0
0 20
56 56
100 90
5
30 86
20 58
68 35
32 0
0 18
16 64
39 100
100 100
9
39 57
100 90
29 100
37 64
95 92
95 49
82 3
0 0
1
0 60
39 74
73 91
100 100
80 75
67 51
51 25
39 0
3
65 90
73 100
86 75
72 50
100 29
79 8
38 0
0 6
6
82 100
49 75
26 47
17 18
56 0
100 18
55 31
0 20
8
100 81
62 100
35 72
46 35
39 0
0 14
34 44
94 57
3
0 100
52 97
70 80
80 61
95 44
100 25
66 10
18 0
3
44 92
62 100
100 91
76 64
91 43
83 14
42 0
0 13
1
16 70
39 75
80 100
62 68
53 36
50 6
0 0
100 3
2
0 66
16 93
83 100
91 73
62 46
22 21
28 0
100 3
4
44 100
15 79
0 47
68 42
100 71
82 60
52 30
25 0
9
92 100
19 98
45 60
98 90
100 74
100 26
42 0
0 31
8
100 55
77 100
0 88
56 48
90 0
15 1
49 50
98 81
4
43 100
0 74
15 46
100 43
95 69
72 74
67 37
64 0
8
0 81
50 53
100 25
69 0
28 24
44 54
78 84
39 100
3
50 80
76 100
93 83
78 62
100 38
82 12
42 0
0 9
9
55 92
95 81
87 100
57 85
100 69
85 38
46 16
0 0
1
10 66
30 100
39 90
45 54
41 17
0 0
43 4
100 3
0
12 84
0 63
8 16
46 0
88 15
100 59
71 94
29 100
1
100 100
70 89
55 74
39 60
21 45
9 30
0 15
0 0
4
33 100
0 72
7 46
77 39
100 62
90 61
69 30
57 0
9
64 70
100 100
53 89
81 82
96 66
99 23
54 0
0 11
1
36 70
68 100
67 89
57 49
36 13
0 0
50 5
100 8
2
3 74
31 100
45 72
28 36
0 6
9 2
57 0
100 13
1
9 57
38 96
51 100
46 52
36 5
0 0
51 0
100 2
5
56 91
100 100
51 86
16 58
66 62
81 29
49 0
0 0
7
0 89
31 100
61 78
51 35
45 0
17 37
50 51
100 54
4
43 100
18 71
0 39
35 22
100 32
98 63
76 31
58 0
8
7 61
49 36
46 0
0 6
30 40
77 71
100 100
31 83
8
82 90
50 66
100 30
40 0
18 27
72 62
100 100
0 99
7
5 100
45 90
41 45
36 0
3 14
0 39
49 48
100 55
0
82 80
47 100
5 75
0 32
34 0
85 14
100 55
85 97
8
14 84
43 52
44 12
0 0
19 38
59 69
100 100
57 98
0
85 91
27 82
0 48
8 13
64 0
100 30
95 66
73 100
6
89 100
80 97
44 61
44 20
99 0
100 31
40 46
0 29
9
100 100
61 92
96 89
88 70
89 44
88 18
49 4
0 0
1
0 82
52 100
71 100
63 64
61 29
36 2
21 0
100 5
7
0 66
3 93
49 100
100 98
74 74
47 50
24 26
13 0
8
30 82
0 70
42 34
0 0
18 34
80 67
100 100
8 82
1
0 45
35 62
67 82
100 100
91 74
74 50
56 24
38 0
9
99 74
62 100
23 75
60 53
95 58
100 11
49 1
0 0
5
25 95
18 52
59 29
22 0
0 16
18 66
52 99
100 100
9
87 95
34 100
57 77
100 96
88 70
99 28
57 2
0 0
5
0 96
77 100
90 97
9 96
26 52
100 45
77 0
1 16
1
0 72
32 100
45 99
42 68
39 37
20 7
26 2
100 0
7
0 94
43 100
62 92
49 47
48 0
25 17
53 33
100 38
7
0 98
52 100
61 75
49 32
48 0
17 37
48 42
100 50
5
100 94
80 100
47 94
37 66
60 56
66 36
34 16
0 0
6
100 100
55 94
17 64
0 32
17 0
88 2
64 22
24 13
3
15 80
46 100
65 77
57 47
100 37
90 10
46 0
0 3
5
100 95
70 100
38 84
35 56
74 47
78 17
40 2
0 0
7
17 97
87 100
100 66
72 31
43 0
0 32
32 45
73 45
2
0 92
35 100
65 86
44 56
15 30
18 2
60 0
100 5
5
100 93
66 100
40 81
39 51
76 45
72 14
37 0
0 4
0
14 93
1 80
0 37
31 0
86 21
100 62
69 99
6 100
9
56 100
0 98
6 72
60 78
77 72
100 33
89 1
33 0
2
0 89
25 100
31 68
17 37
11 9
40 4
70 3
100 0
6
100 100
60 79
27 54
2 26
10 0
54 16
34 40
0 21
2
24 74
46 100
67 72
61 38
34 8
0 0
47 7
100 5
5
100 100
74 99
46 98
45 72
65 51
53 26
29 9
0 0
8
100 80
73 100
68 62
69 22
27 0
0 29
45 50
93 63
4
28 100
12 86
0 67
22 52
58 46
93 38
100 19
91 0
9
98 88
45 100
28 67
86 66
100 69
100 31
61 0
0 11
9
95 77
46 100
5 71
54 55
95 75
100 28
62 0
0 6
4
21 100
15 75
0 45
58 42
92 50
88 61
89 30
100 0
3
45 79
73 100
83 83
89 55
100 27
76 4
38 0
0 5
4
44 100
18 74
0 48
48 40
100 44
91 56
88 28
92 0
5
24 92
81 100
26 79
19 54
83 66
100 34
62 4
0 0
9
0 84
32 66
88 88
25 100
29 79
100 67
89 34
83 0
3
36 80
67 100
100 92
75 63
99 41
94 16
49 3
0 0
4
22 100
16 99
0 70
11 40
78 38
100 61
97 30
94 0
1
0 25
35 48
64 75
97 100
100 88
81 59
61 29
43 0
9
83 66
46 100
0 73
37 46
81 78
100 34
64 0
6 3
3
49 85
78 100
92 85
74 55
100 35
80 11
41 0
0 0
2
15 75
33 100
58 79
35 46
0 19
7 20
52 0
100 7
9
100 72
74 100
35 73
65 53
84 65
90 25
55 0
0 2
5
100 100
56 95
21 82
12 56
59 69
74 33
45 0
0 8
1
0 76
44 84
100 100
81 80
64 60
42 40
28 20
8 0
9
72 72
90 100
0 94
5 59
91 65
100 68
60 34
25 0
4
40 100
15 69
0 44
60 52
100 66
87 66
91 30
82 0
7
22 96
53 100
59 66
43 32
22 0
0 33
49 40
100 42
0
35 80
0 46
6 2
57 0
95 33
100 79
59 100
30 66
6
100 100
57 79
27 58
7 35
0 12
50 0
97 17
50 27
0
0 62
11 17
45 0
80 14
100 52
86 92
49 100
16 83
1
100 100
76 87
64 72
50 58
38 44
24 29
12 14
0 0
2
0 84
45 100
100 95
99 65
65 38
24 15
29 1
86 0
0
4 97
0 51
18 8
68 0
100 36
91 81
44 100
11 68
5
17 86
8 46
58 33
24 0
0 32
0 88
51 99
100 100
7
6 92
45 100
54 59
47 16
32 0
0 36
43 52
100 56
2
1 61
0 92
47 100
62 70
42 39
16 9
49 0
100 7
0
21 87
0 38
26 0
67 6
100 41
92 95
52 100
21 65
2
45 75
44 100
68 75
40 34
0 8
13 15
57 0
100 12
8
100 76
52 100
0 71
53 37
64 0
37 23
75 59
88 85
0
24 96
0 68
11 23
49 0
86 23
100 68
74 100
42 72
0
42 78
2 60
0 9
48 0
91 29
100 78
55 100
16 71
3
15 83
56 100
82 78
35 58
62 47
100 26
56 5
0 0
1
0 67
42 98
63 100
53 63
48 27
10 1
15 0
100 0
2
11 77
39 100
52 68
33 32
0 5
7 12
54 9
100 0
6
74 100
49 87
26 59
20 28
29 0
100 11
86 39
0 49
7
1 96
0 75
23 98
86 100
100 90
75 56
57 19
54 0
1
33 63
52 100
46 80
41 39
29 0
0 1
49 2
100 0
3
21 79
64 100
84 72
62 42
87 45
100 15
46 0
0 16
2
0 69
20 100
56 86
41 49
10 19
10 5
57 0
100 16
6
100 100
52 83
8 54
0 14
57 0
100 27
58 50
8 43
0
16 100
0 56
21 15
62 0
100 22
97 69
62 98
25 82
2
3 58
20 100
41 80
22 38
0 8
33 4
66 3
100 0
3
3 76
30 100
91 98
81 65
80 45
100 22
52 0
0 12
0
24 63
8 43
36 0
86 11
100 61
68 100
14 91
0 42
7
11 85
0 70
26 96
92 100
100 87
81 55
65 21
60 0
3
6 90
63 100
98 91
63 72
84 50
100 27
57 10
0 0
3
0 79
34 100
64 87
57 59
100 48
92 16
50 0
9 11
6
48 100
35 83
7 51
0 18
47 0
100 19
67 42
9 26
4
65 100
37 83
13 64
0 43
24 28
63 27
100 22
97 0
8
73 97
43 100
49 55
42 10
0 0
6 42
56 60
100 79
7
8 72
0 99
47 99
100 100
77 77
53 53
35 27
31 0
1
0 74
16 80
57 96
100 100
86 75
66 50
47 25
39 0
9
100 83
54 100
23 73
70 65
89 68
89 26
51 0
0 12
3
34 87
66 100
80 78
77 53
100 29
72 6
34 0
0 13
4
58 100
33 73
0 48
28 38
82 38
100 60
93 30
99 0
0
28 100
0 56
15 6
65 0
100 38
92 90
43 99
7 63
3
25 86
59 100
77 81
54 57
100 42
89 16
40 0
0 18
7
17 92
50 100
63 68
46 34
21 0
0 22
40 35
100 40
3
28 81
59 100
72 73
43 55
96 48
100 16
50 0
0 10
4
100 100
73 78
38 59
0 41
33 36
67 43
40 22
27 0
6
100 100
52 83
17 60
0 33
10 6
63 0
65 24
13 36
9
100 83
57 100
40 67
88 75
98 54
97 11
48 0
0 12
9
70 91
88 79
74 100
77 79
100 51
93 13
43 0
0 19
5
47 100
20 67
73 35
45 0
0 2
0 41
18 79
100 94
3
42 93
74 100
77 71
58 45
100 34
82 10
38 0
0 8
0
13 100
0 62
12 21
53 0
94 19
100 60
75 96
32 97
8
46 100
0 100
7 61
63 30
48 0
8 28
50 64
100 98
1
0 66
19 75
62 99
100 100
88 75
69 50
58 25
58 0
0
28 100
5 70
0 27
44 0
98 23
100 64
65 100
19 89
7
0 100
36 95
42 47
38 0
2 19
1 47
50 57
100 63
3
45 84
75 100
100 79
79 54
79 40
90 17
49 0
0 8
0
22 98
0 60
17 19
62 0
100 25
96 68
62 100
21 86
4
51 100
24 86
6 67
0 47
27 33
69 31
100 20
97 0
2
16 56
30 100
54 79
36 31
0 3
19 9
60 7
100 0
5
31 95
2 68
64 58
62 10
0 0
10 52
31 100
100 100
0
29 95
0 63
4 19
52 0
96 23
100 68
66 100
16 87
1
0 46
33 63
66 82
100 100
84 75
64 51
46 25
29 0
5
20 85
23 62
55 30
18 0
0 22
0 57
29 88
100 100
2
54 70
54 100
93 96
75 58
42 24
0 0
44 12
100 11
8
84 100
16 87
88 59
100 23
19 0
0 31
39 67
21 96
5
47 89
33 69
100 51
83 10
14 0
0 44
9 90
81 100
7
0 81
38 100
84 100
81 67
69 33
63 0
50 21
100 27
1
100 100
76 91
59 76
41 61
24 46
12 30
0 15
0 0
6
88 100
53 80
22 54
0 27
9 0
100 7
44 18
6 4
2
0 68
34 93
99 100
100 66
66 35
13 11
1 0
76 2
6
53 100
37 93
10 58
0 20
45 0
100 18
62 40
0 38
0
47 100
14 69
0 31
27 0
77 13
100 48
86 86
38 98
7
0 81
51 100
96 81
89 40
67 0
37 17
41 50
100 53
2
9 80
56 100
100 87
88 51
51 23
0 4
29 4
88 0
3
53 90
80 100
85 77
66 51
100 31
89 8
42 0
0 4
5
29 100
19 44
27 0
5 9
0 62
30 88
65 95
100 97
6
94 100
47 78
14 50
0 22
39 0
100 19
81 46
8 53
2
0 88
24 100
40 76
24 50
4 25
23 4
62 0
100 0
3
38 95
87 100
82 65
53 45
100 44
93 11
38 0
0 25
2
0 68
26 100
69 94
62 52
31 19
18 18
60 0
100 8
9
75 100
23 96
31 75
82 82
100 65
91 27
50 4
0 0
0
54 92
13 72
0 31
31 0
79 17
100 55
85 95
37 100
0
49 100
15 80
0 37
22 1
67 0
100 31
100 75
62 92
4
38 97
30 100
0 76
14 52
88 51
100 51
76 26
78 0
9
69 94
4 100
8 70
82 76
69 85
100 46
74 11
0 0
7
0 99
57 100
88 70
80 33
52 0
3 3
40 24
100 27
0
15 78
2 43
20 5
69 0
100 34
92 73
53 99
0 100
5
15 89
13 49
67 38
39 0
8 29
0 74
35 96
100 100
4
100 100
75 79
40 60
0 43
17 31
60 41
31 21
17 0
6
100 100
60 76
36 49
26 21
57 0
91 23
62 47
0 49
9
71 84
25 100
0 69
56 66
76 74
100 36
66 5
7 0
1
0 36
32 57
65 78
100 100
83 77
60 52
40 26
21 0
3
1 90
53 100
73 77
22 60
62 53
100 26
55 4
0 0
6
74 100
46 89
21 54
17 16
65 0
100 22
46 34
0 27
1
0 34
39 52
74 75
100 100
92 83
77 55
62 28
52 0
4
31 100
0 85
0 52
31 29
100 35
74 65
60 33
52 0
2
0 92
27 100
77 97
70 70
37 46
12 20
49 2
100 0
4
38 100
12 86
0 69
6 51
35 40
68 31
91 17
100 0
2
27 70
60 100
94 88
73 52
39 20
0 0
45 18
100 4
9
100 96
56 100
50 72
92 90
92 65
85 24
47 0
0 4
2
24 85
69 100
70 68
43 35
7 9
0 0
50 7
100 1
0
51 100
12 82
0 36
24 0
70 9
100 46
85 88
40 88
8
0 95
32 69
68 34
45 0
30 25
70 59
100 95
30 100
3
38 85
69 100
93 81
77 54
100 34
93 9
45 0
0 13
6
100 100
57 98
23 72
0 41
1 7
47 0
52 28
2 32
8
43 87
43 51
47 14
0 0
29 33
71 63
100 96
45 100
5
22 92
17 53
63 30
27 0
0 17
14 64
46 98
100 100
6
87 100
43 78
13 52
0 24
31 0
91 10
100 37
41 41
9
0 74
59 77
100 100
31 97
28 72
92 70
89 35
88 0
4
63 100
24 88
0 73
4 57
41 45
76 32
92 16
100 0
8
77 84
48 72
68 33
38 0
0 17
50 48
100 79
64 100
1
100 100
81 85
65 72
47 58
33 44
16 29
9 15
0 0
0
98 68
72 100
25 83
0 39
27 0
77 4
100 47
95 83
0
35 100
4 69
5 30
42 0
92 24
100 63
60 93
0 78
9
75 88
100 100
61 88
97 80
100 40
87 4
39 0
0 22
5
69 91
100 100
54 83
25 54
73 62
88 31
57 4
0 0
8
100 100
29 98
39 65
88 34
81 1
0 0
27 34
84 62
0
42 100
8 74
0 28
31 0
74 8
100 45
89 88
49 95
8
100 64
96 100
49 79
75 40
57 0
0 15
46 45
97 69
2
6 73
36 100
45 66
31 30
0 0
5 10
52 7
100 9
0
0 82
0 42
17 6
68 0
100 31
96 69
64 100
17 93
5
28 100
24 57
49 24
31 0
0 25
24 60
59 83
100 90
1
21 64
50 100
52 98
52 57
52 17
0 0
31 2
100 0
7
0 88
35 100
73 97
98 69
91 26
68 0
62 14
100 12
6
100 100
58 90
25 68
4 44
0 20
35 0
60 18
7 34
3
0 67
28 94
91 100
90 73
69 53
100 25
61 0
11 5
2
0 77
15 100
46 100
45 64
31 31
35 0
67 1
100 8
1
74 100
100 96
78 80
52 64
30 48
13 32
4 16
0 0
5
100 99
62 100
36 78
47 51
82 44
69 14
34 0
0 14
8
61 93
51 73
71 35
40 0
0 24
44 58
100 88
51 100
4
36 100
3 72
0 45
62 50
100 61
95 63
97 30
97 0
1
60 83
100 100
93 91
60 73
40 55
20 36
7 18
0 0
4
7 100
2 76
0 46
52 30
100 40
100 58
94 29
93 0
7
12 97
73 100
100 70
74 35
49 0
0 25
34 41
98 37
6
100 100
66 90
29 63
0 31
13 0
67 4
78 35
29 46
2
0 57
27 90
84 100
100 66
67 33
21 7
24 0
84 2
6
100 99
60 100
22 65
0 27
31 0
87 23
62 54
7 37
4
31 100
47 91
12 58
0 24
74 20
100 45
78 36
65 0
2
41 100
69 100
54 69
24 50
0 36
35 31
68 14
100 0
5
100 100
55 98
17 83
0 52
43 61
65 37
44 7
4 0
1
0 78
40 82
69 100
61 69
62 37
66 6
18 0
100 5
4
58 100
30 90
0 63
37 46
90 38
100 56
80 27
70 0
0
27 95
0 62
9 20
57 0
100 27
98 70
61 100
8 85
7
0 63
8 86
53 100
100 96
73 73
46 49
26 25
19 0
9
60 89
99 83
65 100
75 80
100 48
82 11
29 0
0 33
7
28 100
69 99
65 65
47 32
22 0
0 27
39 38
100 38
0
99 79
59 100
18 78
0 35
30 0
77 4
100 45
94 88
8
91 100
36 74
52 38
52 0
0 9
55 43
100 78
91 75
6
100 100
56 91
21 60
7 24
41 0
76 29
50 57
0 44
7
12 97
48 100
69 69
55 33
35 0
0 25
46 35
100 39
6
100 100
68 95
33 72
7 45
0 15
38 0
55 25
11 33
1
0 42
32 61
65 81
100 100
92 76
74 51
56 25
40 0
3
52 83
80 100
100 80
71 55
94 45
91 17
49 0
0 8
5
21 96
13 55
63 35
43 0
7 23
0 62
37 94
100 100
6
100 100
47 84
14 51
0 13
44 0
79 31
43 51
10 19
7
0 85
60 100
100 74
85 36
67 0
35 6
16 35
96 42
0
27 71
17 60
0 21
35 0
77 23
100 60
88 100
44 91
1
0 61
28 82
48 100
50 62
46 25
9 0
48 2
100 4
6
84 100
41 80
20 50
15 19
55 0
100 20
48 31
0 15
3
21 84
41 100
77 79
34 53
80 54
100 21
52 0
0 14
6
71 100
50 95
16 66
0 34
16 5
92 0
100 26
21 32
4
55 100
30 74
0 45
37 38
85 55
100 62
81 30
64 0
4
69 100
65 96
31 71
0 46
40 32
100 46
77 26
67 0
7
0 91
70 100
100 83
76 43
66 0
53 5
21 43
92 46
8
60 94
40 72
97 36
93 0
0 15
30 52
100 86
37 100
9
91 100
26 98
49 62
100 78
100 78
99 34
62 0
0 19
1
100 100
84 90
60 75
40 60
20 44
8 29
0 14
4 0
6
100 100
40 84
0 45
0 0
57 17
38 50
14 52
57 27
4
33 100
19 85
0 68
0 49
24 34
57 25
90 18
100 0
2
0 86
28 100
59 93
57 66
38 40
34 13
66 4
100 0
3
38 71
48 95
100 100
87 72
83 48
92 20
49 0
0 0
1
0 44
33 59
66 80
100 100
96 82
77 54
59 28
44 0
0
33 77
9 40
26 0
76 8
100 46
87 89
36 100
0 69
7
6 100
54 99
66 59
48 18
25 0
0 38
49 43
100 42
6
98 100
50 84
12 55
0 21
48 0
100 22
43 32
14 15
6
100 100
44 83
11 53
0 20
35 0
89 16
76 41
20 35
5
100 93
70 100
44 82
34 51
66 43
64 14
33 0
0 2
8
0 67
46 60
61 23
24 0
35 36
72 67
100 100
45 85
3
0 88
42 100
84 89
80 69
80 48
100 28
78 9
28 0
7
0 92
51 100
100 89
77 54
54 18
31 0
22 37
78 46
6
100 100
59 80
22 53
8 18
39 0
80 24
47 45
0 37
2
46 73
64 100
100 89
80 57
48 26
0 0
14 14
92 11
1
0 53
38 69
77 89
100 100
86 75
73 49
58 24
60 0
4
6 100
0 99
0 56
65 51
100 65
60 94
52 47
53 0
4
51 100
14 75
0 46
52 34
100 45
82 59
67 29
55 0
5
36 84
0 66
84 57
100 18
22 0
5 40
9 86
84 100
7
0 88
49 100
98 83
75 41
45 1
63 0
100 27
37 30
9
58 58
100 91
25 100
0 67
86 63
88 70
47 35
8 0
1
25 67
52 100
58 92
55 46
33 7
0 0
50 2
100 3
4
48 100
13 71
0 40
49 25
100 37
87 62
61 32
64 0
3
0 85
47 96
100 100
93 82
72 59
82 33
68 9
19 0
3
31 81
60 100
78 78
51 56
100 48
94 13
46 0
0 15
4
38 100
16 86
0 51
55 45
92 70
100 72
95 36
95 0
3
47 100
88 93
100 74
63 61
46 43
59 21
42 4
0 0
6
61 100
26 77
13 50
11 23
39 0
100 14
68 37
0 48
8
66 100
11 88
38 45
66 1
0 0
47 40
100 78
51 88
6
43 100
10 76
0 47
10 18
53 0
100 12
86 36
33 38
9
32 76
79 66
75 100
40 89
88 66
100 26
52 6
0 0
2
2 82
26 100
36 70
22 38
0 12
26 0
63 1
100 4
5
100 99
60 100
25 85
29 69
65 55
64 25
39 1
0 0
0
30 90
0 56
2 18
46 0
87 28
100 66
78 100
21 100
2
14 56
27 100
42 69
26 27
0 5
33 0
67 0
100 1
2
41 84
58 100
62 66
35 38
0 19
24 6
64 0
100 16
5
100 93
72 100
30 96
0 71
22 64
59 52
50 18
17 0
2
0 93
42 100
58 73
35 43
2 20
12 7
55 1
100 0
3
12 77
40 100
74 85
58 55
100 40
94 14
49 2
0 0
9
80 76
47 100
5 72
62 64
75 72
100 29
64 0
0 2
4
71 100
28 74
0 45
66 50
100 70
75 85
62 42
51 0
9
80 86
30 100
36 60
95 73
93 78
100 35
62 0
0 19
3
51 87
81 100
92 72
59 45
100 39
96 10
46 0
0 11
0
23 79
0 46
6 5
53 0
89 29
100 71
67 100
25 83
7
2 90
41 100
78 71
61 28
27 0
0 36
50 35
100 42
3
16 100
75 98
60 62
33 53
100 45
84 10
18 0
0 23
6
100 100
59 78
23 53
1 23
27 0
77 10
54 34
0 36
1
100 100
67 93
47 77
27 62
13 46
0 30
0 14
0 0
6
76 100
44 86
11 55
0 19
46 0
100 14
59 36
13 26
5
2 97
8 66
45 31
12 0
0 37
2 91
50 100
100 100
2
0 83
29 100
63 95
46 62
25 31
25 0
63 4
100 14
3
20 76
50 100
100 95
75 69
90 51
88 23
49 0
0 7
3
0 89
56 100
77 77
29 54
50 48
100 27
60 5
0 0
1
0 68
31 77
81 100
94 96
88 71
81 48
81 24
100 0
5
28 83
6 56
73 48
83 10
15 0
0 42
32 90
100 100
8
45 99
29 73
72 36
49 0
0 23
45 59
100 92
39 100
1
0 38
32 56
66 78
99 100
100 91
81 60
62 31
46 0
4
44 100
13 80
0 59
49 49
100 59
69 39
38 20
18 0
0
26 70
0 38
14 0
65 4
93 40
100 79
60 100
21 74
8
33 81
56 52
74 15
0 0
10 34
64 66
100 100
24 89
8
93 100
53 92
60 49
56 8
0 0
11 35
62 57
100 84
2
16 67
32 100
52 78
35 38
0 11
14 19
56 0
100 8
7
25 98
64 100
72 67
53 33
30 0
0 16
37 30
100 33
3
15 87
57 100
91 82
48 61
74 43
100 16
53 1
0 0
6
100 100
77 97
45 71
17 43
0 12
32 0
62 24
24 29
7
14 91
56 100
68 67
53 33
35 0
0 12
41 29
100 35
6
60 100
24 75
2 47
0 18
45 0
100 10
67 34
11 46
6
100 100
54 83
22 57
5 26
28 0
77 11
52 31
0 22
6
88 100
39 75
9 48
0 21
55 0
100 21
76 48
0 61
6
100 95
84 100
40 77
6 47
0 12
49 0
77 27
30 47
1
4 61
26 97
38 100
28 60
16 21
0 2
49 2
100 0
3
0 100
45 100
68 83
76 66
89 48
100 30
87 12
53 0
8
7 100
15 64
28 27
0 0
7 34
67 63
100 94
20 91
8
16 88
0 68
63 38
84 0
22 15
57 58
100 99
58 100
9
90 69
63 100
21 75
60 67
91 59
100 17
54 0
0 6
0
7 81
0 58
14 8
67 0
100 42
91 94
39 100
16 55
5
67 88
95 100
47 75
18 50
81 62
100 29
64 0
0 7
4
46 100
28 68
0 35
63 40
96 58
93 63
93 27
100 0
4
39 100
17 84
0 63
8 42
42 33
79 30
100 18
78 0
1
100 100
83 86
70 71
53 57
37 43
20 29
7 14
0 0
2
46 78
79 100
100 77
68 51
28 35
0 16
43 6
89 0
8
25 85
16 59
43 22
0 0
22 34
73 66
100 100
25 89
8
68 84
0 100
2 65
97 35
100 0
11 16
52 58
74 98
2
0 70
9 100
44 97
35 60
14 27
21 0
60 0
100 3
0
98 56
83 100
33 97
0 56
1 9
54 0
100 25
100 67
9
73 85
93 77
73 100
53 70
100 64
97 21
48 0
0 24
7
0 66
2 93
50 100
100 98
78 72
55 47
38 19
39 0
9
96 83
57 100
38 65
90 72
100 72
100 25
54 2
0 0
6
98 100
51 87
15 59
0 29
22 0
100 6
85 34
10 49
7
23 82
71 100
89 68
77 33
52 0
0 21
38 45
100 51
8
84 88
7 100
11 65
66 31
33 0
0 32
61 65
100 88
5
45 80
0 64
66 49
70 9
2 0
4 45
29 91
100 100
5
6 91
23 60
73 41
41 0
8 29
0 81
38 96
100 100
5
45 90
13 52
88 46
74 5
0 0
4 43
26 90
100 100
5
100 100
74 98
45 76
46 52
83 42
76 12
38 0
0 1
0
58 100
19 74
0 32
27 0
76 25
100 65
74 99
18 85
4
56 100
32 74
0 45
27 28
88 30
100 56
63 29
36 0
9
75 100
38 82
74 82
80 71
96 46
100 20
54 4
0 0
1
3 67
43 91
57 100
49 63
36 27
0 0
43 4
100 5
9
97 86
61 100
54 71
98 85
100 64
87 25
48 0
0 2
3
32 84
68 100
100 89
73 61
95 42
88 11
44 0
0 15
1
0 60
20 68
59 85
100 100
86 76
67 50
49 26
39 0
0
100 54
78 100
30 92
0 48
14 1
66 0
99 40
84 79
1
94 100
100 100
94 84
82 66
65 49
41 33
18 16
0 0
4
52 100
17 74
0 45
52 33
100 47
99 60
79 30
65 0
4
100 100
60 87
30 59
0 38
51 31
84 54
71 32
74 0
2
0 76
26 100
52 87
42 47
19 17
37 3
69 5
100 0
4
44 100
28 82
0 52
40 32
100 33
91 65
80 33
77 0
5
17 94
97 100
45 94
20 67
47 73
100 42
68 0
0 16
0
45 100
7 61
0 10
60 0
100 43
96 93
38 96
15 48
6
100 100
71 89
39 64
15 35
11 0
50 1
40 30
0 27
4
0 100
19 85
19 63
98 65
100 67
62 46
33 23
12 0
2
12 68
25 100
48 79
32 46
0 22
20 16
57 0
100 5
5
31 96
17 64
44 28
20 0
5 36
0 77
44 97
100 100
5
28 82
19 54
81 45
55 9
0 0
11 49
37 91
100 100
9
88 68
59 100
14 83
58 66
88 63
100 23
58 0
0 6
7
0 89
43 100
74 76
70 37
54 0
27 20
53 48
100 56
5
51 96
20 54
78 53
65 12
0 0
11 43
40 90
100 100
3
32 84
65 100
76 75
66 46
100 30
79 7
40 0
0 3
0
41 100
0 74
9 26
49 0
93 22
100 69
61 98
10 91
7
0 81
35 92
100 100
95 70
73 32
67 0
34 20
96 31
9
100 74
51 73
0 79
23 100
72 95
100 66
100 32
85 0
5
74 94
100 100
68 84
79 57
95 30
74 6
37 0
0 8
9
78 100
31 86
57 71
88 89
100 53
94 17
50 1
0 0
9
14 99
49 72
60 100
25 93
75 70
100 35
59 7
0 0
7
0 92
51 100
100 100
63 69
34 36
23 0
2 27
63 33
3
32 83
61 100
100 93
70 67
88 35
88 6
43 0
0 3
7
0 70
3 91
45 100
100 100
75 75
51 50
34 24
39 0
3
46 76
55 100
100 98
75 69
95 46
97 20
50 6
0 0
6
100 100
53 81
19 56
0 26
20 0
78 0
96 24
47 37
1
100 88
100 100
83 83
65 66
46 50
28 33
11 17
0 0
2
15 82
55 100
94 82
67 45
28 17
0 6
51 13
100 0
9
55 54
34 74
0 92
56 100
100 82
100 54
86 27
70 0
7
3 70
0 96
47 100
100 97
74 73
51 49
40 23
62 0
5
53 96
91 100
41 87
47 64
92 47
100 22
55 4
0 0
0
17 74
2 33
25 0
75 22
100 59
96 99
40 100
0 71
7
0 97
67 100
76 73
62 40
51 7
38 0
24 25
100 34
7
32 93
80 100
100 64
63 26
36 0
96 29
78 42
0 38
4
54 100
0 79
17 60
100 60
85 86
50 82
38 36
33 0
7
0 95
68 100
84 86
70 43
67 0
32 12
38 31
100 38
2
21 78
51 100
57 62
33 27
0 1
23 10
62 12
100 0
3
52 89
75 100
88 73
68 45
100 30
86 7
38 0
0 12
7
15 76
35 99
88 100
100 94
71 72
42 49
17 25
0 0
1
0 67
21 68
64 86
100 100
82 75
65 50
48 25
33 0
7
10 60
0 85
41 95
100 100
95 78
67 52
43 27
37 0
9
40 63
4 75
0 97
43 100
84 89
100 61
91 29
75 0
7
0 66
9 89
55 100
100 92
79 68
50 46
30 22
47 0
9
80 100
32 95
70 84
73 73
88 48
100 23
62 4
0 0
8
100 76
70 100
0 73
64 38
73 0
17 23
83 58
79 88
1
100 93
90 100
70 83
60 67
40 50
30 33
10 17
0 0
5
8 98
17 58
71 44
40 0
2 27
0 78
33 100
100 99
7
0 82
49 100
98 82
91 46
73 11
46 0
38 21
100 19
3
51 86
74 100
91 81
70 61
100 40
87 14
45 0
0 12
2
22 83
62 100
73 69
43 41
0 26
6 12
52 1
100 0
4
76 100
37 78
0 49
32 29
100 28
85 59
59 32
40 0
9
69 63
100 100
12 100
0 66
86 77
99 75
67 35
49 0
7
0 89
51 100
100 94
82 57
64 20
38 0
38 39
90 48
4
23 100
0 71
18 44
72 46
100 70
76 60
56 31
55 0
1
0 60
31 70
64 88
100 100
90 75
79 50
73 25
70 0
2
39 76
61 100
57 57
33 21
0 1
27 16
64 11
100 0
2
33 79
43 100
60 73
42 38
12 8
0 9
50 0
100 8
5
4 96
76 100
60 97
17 79
65 70
100 29
43 0
0 26
9
80 100
31 81
51 67
95 84
97 55
100 27
64 5
0 0
2
0 72
19 100
43 87
39 51
22 18
33 0
66 5
100 11
4
100 100
88 93
45 71
0 48
78 45
75 48
45 24
32 0
1
0 71
39 81
77 100
100 92
86 69
70 47
54 24
45 0
7
0 66
27 100
100 92
99 51
55 15
13 0
20 35
98 30
4
33 100
0 80
19 52
100 58
99 79
63 79
55 39
54 0
0
33 82
0 48
2 5
52 0
92 31
100 74
60 100
9 83
2
0 75
25 99
84 100
88 73
66 46
37 21
37 0
100 1
3
0 71
20 92
69 100
69 77
71 54
100 34
82 12
35 0
3
52 81
74 100
97 89
69 66
100 46
95 20
57 0
0 2
0
21 80
8 35
35 0
77 7
100 45
77 88
37 100
0 76
4
32 100
6 72
0 38
57 30
92 60
100 70
76 35
52 0
9
83 75
48 45
17 67
56 100
100 79
92 36
58 0
0 0
5
39 94
26 62
93 41
67 0
7 6
0 51
18 90
100 100
7
0 92
58 100
88 94
67 47
60 0
36 1
37 22
100 20
9
93 71
19 73
0 92
67 100
100 78
74 50
38 25
0 0
1
0 67
44 83
93 100
100 92
83 70
68 46
66 23
73 0
7
0 100
52 99
100 92
74 57
58 19
49 0
37 39
87 45
9
73 100
16 99
42 83
96 97
100 61
99 23
57 0
0 5
9
69 84
67 100
5 72
73 61
100 96
92 48
63 2
0 0
5
100 100
71 90
50 90
39 67
70 55
59 31
31 13
0 0
6
100 98
67 100
29 76
2 44
0 8
45 0
54 32
11 50
0
27 88
9 62
0 18
42 0
83 30
100 73
69 100
19 81
6
100 100
56 92
22 69
0 42
3 13
47 0
73 23
33 42
1
0 27
30 45
58 70
85 96
100 100
84 67
69 34
58 0
6
100 100
55 86
21 65
0 40
5 14
46 0
62 19
17 32
5
3 91
61 100
47 97
5 74
48 52
100 32
56 12
0 0
7
0 99
59 100
72 82
47 42
49 0
6 30
35 39
100 45
9
100 67
76 100
27 83
54 61
86 71
95 29
55 2
0 0
0
49 100
14 71
0 24
33 0
73 8
100 45
83 89
44 95
6
100 100
67 99
37 69
14 35
8 0
50 9
36 31
0 6
2
0 89
34 100
59 81
42 53
22 26
24 0
70 7
100 14
2
0 79
32 100
54 77
42 43
19 14
15 0
56 10
100 11
0
44 100
21 73
0 35
12 0
68 6
100 39
93 77
44 90
0
26 100
0 58
5 11
55 0
97 28
100 75
56 97
17 68
8
100 86
15 100
0 70
98 37
81 0
35 26
92 65
81 93
0
0 93
24 56
49 21
80 0
100 35
83 81
52 100
23 91
3
41 84
68 100
87 76
63 59
100 38
89 7
40 0
0 14
5
49 84
100 100
83 93
30 78
57 68
87 35
53 0
0 8
1
13 82
53 90
100 100
85 79
66 59
47 39
25 19
0 0
6
100 97
82 100
45 75
15 47
0 13
39 0
58 24
12 25
5
38 90
88 100
100 97
47 83
11 65
62 48
45 0
0 13
4
40 100
6 71
0 39
62 36
100 65
94 63
66 31
38 0
6
75 100
58 75
38 47
30 18
62 0
100 13
50 16
0 10
2
26 60
43 100
60 74
37 33
0 10
17 16
59 9
100 0
0
63 97
17 91
0 54
15 17
59 0
94 25
100 64
86 100
0
29 100
0 62
1 18
50 0
96 27
100 69
54 95
2 80
0
52 100
15 72
0 32
24 0
69 8
100 40
92 81
49 89
6
67 100
33 79
6 49
0 16
47 0
100 12
70 29
13 25
0
86 53
90 92
36 100
0 62
0 16
52 0
100 27
100 66
5
20 95
27 64
54 30
34 0
14 33
0 71
41 95
100 100
1
0 44
31 59
67 79
100 100
93 79
76 54
69 26
71 0
2
0 76
31 100
67 82
47 44
13 13
5 1
52 4
100 0
3
100 94
41 92
94 100
89 64
63 49
100 21
52 0
0 10
2
19 80
34 100
53 70
33 32
0 1
1 0
51 1
100 11
8
100 96
32 100
43 66
93 32
58 0
0 20
22 59
64 94
4
83 100
14 75
0 42
97 44
100 67
64 81
60 40
58 0
2
13 71
38 100
63 82
38 47
0 21
8 20
54 0
100 14
7
0 83
25 100
82 79
79 40
56 0
10 12
31 36
100 35
5
1 100
0 58
70 42
59 0
10 10
0 64
27 94
100 94
6
100 100
60 83
24 51
0 17
45 0
94 17
57 41
6 30
4
63 100
23 87
0 67
28 51
85 54
100 41
77 21
60 0
4
60 100
31 85
0 63
14 52
69 46
100 46
78 23
60 0
1
29 62
52 100
50 95
52 54
52 12
0 0
45 4
100 5
7
9 91
45 100
58 61
49 18
31 0
0 35
46 47
100 46
4
69 100
24 81
0 50
47 36
100 60
80 60
39 32
25 0
4
88 100
42 80
0 48
99 52
100 76
73 86
65 39
78 0
0
19 100
10 46
29 0
75 15
100 58
65 92
19 85
0 40
8
88 93
2 100
22 66
100 37
75 0
0 11
28 52
88 86
5
93 100
63 99
43 85
53 54
100 48
89 23
45 8
0 0
9
0 87
45 72
100 100
27 100
30 73
97 83
89 41
91 0
1
23 64
39 100
42 93
41 54
41 15
0 0
49 2
100 1
7
0 64
23 100
74 84
75 42
61 0
6 1
36 30
100 37
7
0 100
57 100
96 92
81 54
70 14
54 0
45 39
100 48
3
15 75
56 100
92 79
64 45
71 41
100 15
48 0
0 17
5
5 89
18 57
56 28
24 0
13 36
0 72
34 97
100 100
5
53 89
32 62
100 53
75 13
9 0
0 43
25 88
93 100
2
0 53
34 88
88 100
100 67
63 31
16 3
41 0
98 4
8
45 87
56 67
51 25
0 0
5 35
53 68
100 100
47 98
1
0 67
42 81
94 100
100 86
77 64
61 42
45 21
52 0
3
54 84
81 100
91 79
66 55
100 39
86 12
42 0
0 14
0
23 89
0 52
11 14
60 0
96 30
100 70
63 100
11 92
7
0 92
36 100
56 70
41 30
27 0
4 37
51 43
100 43
3
16 85
60 100
86 73
44 52
90 48
100 14
46 0
0 13
5
100 98
60 100
19 89
2 58
49 55
71 28
45 1
0 0
5
15 100
10 62
39 34
22 0
0 16
7 53
50 69
100 74
7
1 92
71 100
100 72
66 35
27 0
76 28
72 52
0 56
6
97 72
100 100
44 81
13 53
0 23
41 0
85 22
18 32
2
15 67
40 100
60 86
36 52
0 23
3 3
56 0
100 19
0
100 47
92 98
39 100
0 64
4 15
55 0
98 31
95 76
2
44 65
64 100
100 88
80 49
45 17
0 0
29 11
79 1
4
62 100
29 75
0 42
68 41
100 56
71 75
62 37
61 0
6
33 76
100 100
46 72
3 40
0 5
81 0
93 26
6 19
8
86 85
40 100
33 67
100 34
98 0
0 18
29 53
98 86
5
100 96
74 100
52 97
47 72
67 61
49 38
26 17
0 0
0
29 84
0 54
15 8
63 0
100 32
91 79
48 100
3 81
6
100 100
51 80
16 53
0 23
31 0
93 9
87 35
28 27
5
5 91
0 49
50 37
17 0
2 35
5 85
40 100
100 100
4
60 100
31 87
12 70
0 53
12 36
47 26
83 16
100 0
1
50 85
100 100
96 90
67 73
46 55
21 36
0 18
0 0
3
44 80
68 100
94 84
72 55
100 29
79 5
35 0
0 17
4
29 100
15 94
0 56
66 47
100 58
59 84
43 43
36 0
4
100 100
77 90
29 69
0 45
69 36
92 50
73 24
48 0
4
62 100
36 81
0 61
38 53
100 51
93 45
72 23
59 0
6
97 100
77 99
31 68
0 34
14 0
100 2
94 32
14 24
6
100 100
67 77
44 53
31 26
38 0
88 4
44 15
0 4
7
9 95
45 100
100 99
71 66
46 31
28 0
0 29
56 32
8
100 95
40 100
31 63
73 29
45 0
0 17
45 49
94 81
3
29 82
70 100
90 78
53 52
100 47
92 13
44 0
0 11
1
23 71
64 100
68 88
58 52
59 16
0 5
28 0
100 4
1
24 65
42 100
42 86
43 45
44 6
0 0
50 4
100 7
0
29 81
6 54
22 7
76 0
100 45
87 93
34 100
0 64
8
65 83
24 100
18 71
79 37
78 0
0 22
44 59
100 92
4
100 100
68 82
32 56
0 36
55 29
85 56
72 32
83 0
8
93 100
49 75
69 37
62 0
0 2
38 38
100 69
67 87
1
100 100
95 94
79 78
62 62
48 46
29 31
14 16
0 0
7
10 88
0 72
25 97
90 100
100 89
81 56
71 22
59 0
6
100 86
62 100
21 83
0 51
5 17
43 0
67 25
29 42
5
100 100
68 97
16 90
8 56
53 57
83 36
52 8
0 0
0
18 93
0 67
8 24
54 0
100 25
98 69
59 100
5 86
9
90 62
52 42
30 69
68 100
100 73
86 33
52 0
0 4
8
57 93
0 71
61 42
100 6
31 0
40 42
71 82
21 100
0
54 100
18 69
0 30
27 0
72 18
100 54
84 91
34 93
1
0 73
33 81
89 100
100 85
92 63
78 41
58 20
28 0
4
62 100
26 73
0 45
80 46
100 58
73 64
63 32
63 0
3
29 81
59 100
100 95
70 68
72 44
91 21
49 4
0 0
0
25 50
17 11
58 0
90 27
100 65
80 99
36 100
0 75
4
39 100
17 79
0 56
6 32
42 28
79 35
100 24
90 0
1
0 69
43 96
59 100
51 60
46 20
13 0
42 6
100 10
6
100 100
64 77
38 52
23 26
36 0
87 13
64 37
0 46
6
96 63
100 100
45 95
11 63
0 25
36 0
48 29
19 19
2
0 85
33 100
55 82
44 57
28 32
17 8
55 0
100 1
0
29 100
5 66
0 26
35 0
81 18
100 56
83 93
33 96
5
100 100
65 100
40 89
40 62
74 51
63 30
30 17
0 0
9
0 77
58 73
82 100
15 94
38 74
100 71
80 35
67 0
9
76 80
80 100
19 88
74 79
100 78
98 40
55 12
0 0
9
80 64
51 54
24 77
69 100
100 73
90 35
56 4
0 0
6
93 100
41 80
12 54
0 25
29 0
100 4
97 29
26 36
3
11 68
31 95
89 100
71 71
72 54
100 26
60 2
0 0
2
37 74
74 100
88 68
62 32
22 3
0 11
49 4
100 0
4
28 95
0 81
27 72
100 67
50 100
47 82
35 30
40 0
4
26 100
2 69
0 37
52 29
100 34
65 60
50 34
48 0
7
14 100
52 100
72 63
62 23
33 0
0 23
50 25
100 27
0
19 100
21 99
0 49
9 0
72 4
100 50
73 95
7 90
3
26 92
64 100
100 94
79 73
61 50
64 25
37 7
0 0
2
2 70
23 100
50 79
32 35
0 1
10 0
54 0
100 1
9
47 63
1 67
0 88
45 100
90 90
100 59
81 28
55 0
6
100 89
74 100
34 76
6 45
0 11
41 0
57 32
12 45
2
0 62
19 93
84 100
100 66
71 32
20 6
25 0
93 2
5
31 100
17 68
64 37
43 0
10 21
0 74
39 100
100 98
5
2 74
7 43
62 33
41 0
0 3
4 50
48 79
100 100
2
41 72
44 100
84 94
72 58
41 26
0 0
41 14
100 6
9
92 79
66 100
38 64
86 61
100 78
99 33
60 0
0 5
0
33 80
0 47
13 0
74 8
100 54
79 100
29 76
25 26
2
8 78
36 100
48 72
28 38
0 9
11 3
57 0
100 6
5
10 67
30 37
16 3
0 0
12 36
22 73
55 94
100 100
9
0 70
60 69
82 100
3 83
48 70
100 78
76 39
64 0
8
100 78
64 100
0 75
57 37
46 0
24 31
82 68
100 98
1
100 100
73 86
58 72
42 58
23 43
12 29
4 14
0 0
8
83 91
2 100
21 67
77 36
62 0
0 17
42 54
100 87
6
100 100
58 78
23 55
0 30
5 3
60 0
95 22
47 32
7
13 97
54 100
82 64
65 18
41 0
0 27
48 38
100 40
9
90 88
31 100
31 62
90 76
97 79
100 33
59 0
0 23
4
32 100
13 72
0 41
52 28
100 31
83 60
56 32
41 0
2
0 74
18 100
67 99
57 66
27 36
0 5
48 0
100 5
4
61 100
19 87
0 51
94 47
100 75
61 94
52 47
58 0
9
13 88
0 100
49 100
89 88
100 66
94 43
79 21
60 0
3
36 83
76 100
100 76
62 49
61 43
93 17
43 0
0 17
8
100 96
38 100
48 69
85 36
65 2
0 0
33 28
86 53
3
7 95
54 100
100 95
76 76
49 56
47 32
43 9
0 0
1
53 62
70 73
77 100
70 75
63 48
35 22
0 5
100 0
1
13 54
44 89
54 100
52 53
45 7
0 0
49 0
100 5
3
0 87
25 100
72 96
47 64
81 47
100 18
57 0
7 0
4
70 100
34 72
0 44
58 42
100 64
91 61
68 30
43 0
9
78 64
54 53
23 76
66 100
100 72
87 31
49 0
0 6
5
20 100
6 54
59 38
49 0
11 4
0 48
41 79
100 93
8
10 99
34 69
100 36
83 0
7 19
31 56
72 92
0 100
9
91 77
55 100
18 73
62 62
95 57
100 19
65 0
0 6
6
63 100
26 76
7 51
0 25
22 0
100 6
78 31
0 40
6
100 99
69 100
28 73
0 40
8 4
63 0
72 34
15 37
8
0 91
30 60
100 30
100 0
22 23
43 54
96 85
26 100
2
42 83
54 100
50 64
28 33
0 13
34 0
70 1
100 23
9
100 80
65 43
26 55
50 100
90 92
83 42
49 3
0 0
3
26 85
59 100
81 78
72 54
100 34
82 9
42 0
0 1
8
100 80
38 100
6 65
91 39
82 0
0 16
48 53
100 89
0
24 86
0 45
17 0
66 2
100 35
88 82
44 100
2 78
0
100 47
85 86
43 100
7 73
0 28
31 0
70 22
78 61
8
75 72
23 100
40 65
98 32
67 0
0 17
48 52
100 83
7
0 99
61 100
67 66
51 33
32 0
2 17
27 32
100 32
1
0 49
52 62
95 82
100 100
84 75
71 50
59 25
57 0
1
3 60
17 100
23 84
24 40
8 3
0 0
50 5
100 11
9
93 96
37 100
45 62
100 83
90 81
90 38
63 0
0 10
9
67 94
17 100
43 67
98 94
93 81
100 39
74 0
0 6
8
94 97
0 90
60 56
100 18
29 0
32 38
85 74
51 100
7
8 100
80 98
100 68
66 35
44 0
0 29
21 40
98 41
0
86 92
30 100
1 69
0 30
32 0
85 15
100 51
86 89
3
27 82
68 100
100 89
65 65
88 41
97 17
49 5
0 0
7
0 95
38 100
62 70
56 32
46 0
32 37
57 48
100 51
3
18 75
49 100
96 93
72 62
100 49
95 15
46 0
0 15
2
25 81
45 100
54 72
33 41
0 16
15 6
61 0
100 20
3
34 71
63 100
100 80
57 53
91 36
91 5
33 0
0 15
1
46 85
100 100
97 85
73 68
51 51
35 33
16 16
0 0
0
17 92
0 50
11 7
66 0
100 35
96 78
49 100
9 69
7
1 89
62 100
100 76
77 38
58 0
24 4
0 36
77 41
1
7 56
33 100
46 97
39 43
5 11
0 7
49 2
100 0
3
0 89
42 100
100 93
92 72
85 52
90 31
69 12
17 0
8
44 91
20 83
94 48
100 4
0 0
11 45
67 87
7 100
5
16 89
13 41
65 35
26 0
0 29
2 83
53 100
100 96
0
43 78
3 49
0 9
57 0
98 30
100 70
60 100
39 69
5
44 84
33 59
88 39
56 0
6 12
0 65
40 97
100 100
3
17 77
35 100
90 93
60 68
78 53
100 28
64 5
0 0
9
100 92
52 100
31 64
84 74
86 77
89 35
56 0
0 11
3
52 97
82 100
76 70
60 48
100 34
84 8
41 0
0 10
6
100 100
64 80
36 60
12 38
0 16
28 0
74 15
12 10
9
72 57
100 85
41 100
11 68
78 69
85 52
69 15
0 0
9
28 69
100 87
40 100
0 67
80 68
91 70
45 35
7 0
8
0 67
41 40
48 0
9 0
40 38
83 72
100 100
35 79
7
0 94
42 100
66 71
59 35
42 0
14 26
54 37
100 36
7
0 90
1 77
32 100
88 99
100 91
77 59
65 24
62 0
9
100 75
55 100
20 72
65 60
84 65
98 21
53 0
0 2
1
0 58
9 58
54 79
99 100
100 84
81 56
63 28
49 0
0
40 100
7 73
0 34
23 0
74 6
100 40
89 77
46 95
6
100 100
61 83
25 58
5 29
20 1
75 0
57 20
0 14
7
0 56
7 86
34 100
84 96
100 83
74 57
50 29
38 0
3
42 90
78 100
100 84
72 63
90 39
83 15
42 0
0 12
4
49 100
32 71
0 36
62 38
100 42
58 70
55 32
64 0
3
33 75
42 100
82 91
71 62
97 41
100 15
53 0
0 9
9
49 61
95 87
52 100
41 69
100 83
78 53
54 18
0 0
1
0 65
20 81
65 100
100 98
89 74
76 50
65 24
63 0
0
14 40
19 0
58 11
85 42
100 81
70 100
30 86
0 59
2
5 68
45 100
87 83
55 45
10 13
0 12
57 0
100 9
2
7 72
39 100
64 72
42 31
0 5
2 7
52 1
100 0
3
0 84
45 100
77 85
38 61
53 46
100 31
61 10
9 0
5
50 90
33 62
73 32
55 0
27 33
0 66
27 95
100 100
8
11 100
49 67
100 35
93 0
49 16
69 53
78 90
0 89
9
100 78
67 100
25 78
64 67
94 66
93 26
54 0
0 1
3
2 84
48 100
100 96
67 70
60 49
95 29
61 4
0 0
2
1 69
26 100
59 85
37 46
2 14
0 16
55 0
100 17
4
100 100
39 84
0 63
37 46
90 62
68 45
46 23
41 0
9
49 80
88 75
65 100
55 85
99 62
100 28
56 6
0 0
4
73 100
26 72
0 43
84 37
100 56
76 65
65 33
66 0
9
40 99
0 99
23 73
53 100
77 68
100 30
59 5
3 0
2
16 75
43 100
66 75
44 39
10 10
0 0
50 9
100 18
9
91 60
70 100
16 88
32 50
87 76
100 27
58 0
0 6
8
100 80
66 100
34 71
29 35
15 0
0 19
41 45
97 58
8
35 60
76 44
56 0
0 3
40 44
100 80
91 100
25 68
5
33 90
100 100
60 98
13 66
40 63
97 41
68 6
0 0
9
83 90
39 100
29 70
86 76
100 67
99 27
59 1
0 0
6
100 100
63 83
27 57
0 26
25 0
76 12
58 39
15 24
3
47 81
68 100
100 93
81 69
93 42
78 18
41 6
0 0
1
31 60
62 88
92 100
85 70
88 40
88 10
0 0
100 4
8
53 100
2 77
66 46
100 10
17 0
0 33
68 62
66 98
7
0 89
38 100
54 60
50 13
36 0
20 30
60 39
100 45
9
22 76
43 69
95 100
0 96
20 71
100 81
82 41
69 0
7
0 97
50 99
100 100
88 71
56 37
38 0
46 38
96 35
8
85 81
44 100
28 68
68 34
68 0
0 9
50 40
100 72
6
100 100
69 94
28 66
0 33
7 0
72 3
79 32
11 33
2
0 63
22 89
83 100
84 67
57 35
14 8
33 0
100 7
2
0 93
49 100
88 89
78 68
57 49
41 28
51 9
100 0
1
0 68
57 96
82 100
70 59
65 18
18 3
19 0
100 2
5
33 86
21 56
91 44
65 1
0 0
2 51
26 94
100 100
2
0 77
26 100
51 85
36 49
13 19
26 0
63 2
100 7
9
95 72
46 68
46 100
91 99
100 66
85 32
49 6
0 0
0
31 83
0 52
6 10
49 0
87 23
100 65
79 100
47 73
1
0 32
25 56
59 79
100 100
74 77
48 52
25 27
14 0
9
60 100
23 88
71 92
100 96
90 65
87 32
56 7
0 0
9
100 96
50 100
45 61
91 75
94 78
93 35
57 0
0 1
6
100 100
62 96
27 75
5 49
0 20
30 0
66 17
30 34
8
80 100
31 87
78 45
87 0
0 2
33 45
100 83
36 79
1
17 61
43 100
47 92
51 48
57 3
0 2
42 3
100 0
5
16 88
0 57
38 31
22 0
13 32
11 68
42 95
100 100
7
0 83
46 100
100 85
84 42
58 0
29 8
27 48
94 54
9
84 94
39 100
28 61
88 66
100 92
91 46
60 7
0 0
6
100 100
63 81
33 60
11 40
0 16
33 0
83 12
65 32
7
0 98
60 100
100 78
74 38
46 0
62 1
82 29
21 42
2
15 74
39 100
69 81
42 46
0 20
20 22
61 0
100 15
2
6 61
33 100
61 76
39 27
0 1
17 3
61 0
100 3
5
15 83
6 48
65 46
45 0
8 20
0 74
43 94
100 100
8
4 69
57 50
46 6
0 0
46 40
100 77
82 100
5 72
8
87 100
49 88
50 46
42 6
0 0
10 36
58 51
100 75
6
100 100
57 97
22 68
0 37
11 5
92 0
92 28
3 25
0
36 100
8 70
0 27
28 0
68 10
96 44
100 84
61 86
0
83 100
32 99
0 68
2 30
33 0
82 12
100 48
88 86
9
82 88
45 100
51 65
100 80
90 76
98 30
56 3
0 0
8
86 70
70 100
28 79
42 39
30 0
0 16
41 46
100 62
4
52 100
32 69
0 35
17 24
96 26
100 55
91 37
86 0
3
8 82
47 100
70 76
56 48
100 49
84 16
42 0
0 13
4
44 100
0 72
0 42
100 43
99 60
59 70
53 35
65 0
9
95 63
55 48
31 74
72 100
100 72
84 33
50 0
0 1
1
0 50
51 73
85 100
75 67
53 36
15 8
25 2
100 0
4
48 100
26 87
0 60
22 35
100 47
88 54
53 28
47 0
5
30 91
1 68
54 50
44 0
0 9
11 64
41 100
100 99
5
36 81
31 54
88 38
58 0
0 8
8 54
38 92
100 100
8
77 82
48 100
31 73
100 38
85 0
0 22
61 57
97 92
0
34 81
6 42
22 0
70 10
100 48
92 91
42 100
0 73
3
22 70
46 96
100 100
86 72
68 47
90 20
47 0
0 8
0
30 96
5 58
0 16
38 0
80 17
100 56
80 93
36 100
6
95 100
51 76
22 51
11 24
27 0
100 13
78 36
0 40
5
45 85
34 63
100 53
71 9
3 0
0 50
4 97
79 100
4
15 100
1 82
0 63
18 47
45 37
75 31
99 18
100 0
8
100 99
32 100
23 64
93 33
75 0
0 21
39 58
79 94
4
24 100
0 82
0 49
65 51
100 82
81 63
49 32
21 0
1
0 65
42 92
72 100
61 62
57 24
25 1
41 4
100 0
3
44 86
62 100
74 75
63 47
100 30
81 5
37 0
0 12
4
40 100
0 70
5 36
74 41
100 75
79 65
48 32
15 0
6
100 100
57 81
24 59
0 34
0 8
47 0
65 22
14 23
6
95 93
56 100
28 68
18 34
38 2
100 0
74 27
0 21
1
0 53
32 70
41 100
41 76
41 47
32 17
32 1
100 0
3
21 73
45 100
85 99
69 67
100 47
90 16
46 0
0 6
9
72 100
66 68
93 98
44 83
90 74
100 30
60 0
0 9
9
100 83
37 83
0 99
60 100
97 79
92 51
68 25
45 0
4
26 100
8 84
0 66
15 50
45 40
79 32
100 17
100 0
8
72 94
14 85
53 44
63 1
0 0
47 38
100 75
39 100
0
65 90
24 90
0 44
19 0
67 6
100 44
91 91
44 100
8
83 90
0 100
34 67
100 34
70 0
4 24
45 61
74 90
6
100 100
54 94
17 68
0 32
21 0
65 9
52 40
14 22
7
0 88
37 100
59 63
57 17
44 0
17 37
55 49
100 50
9
71 93
85 82
65 100
79 77
100 48
79 18
40 4
0 0
7
0 91
53 100
71 89
53 45
49 0
18 20
37 37
100 37
9
97 86
61 100
25 69
79 87
89 79
100 34
58 3
0 0
5
100 95
63 100
37 91
31 63
81 55
89 32
46 14
0 0
3
0 77
42 100
75 79
34 53
60 47
100 25
57 4
6 0
2
23 79
57 100
78 79
51 50
10 31
0 17
49 7
100 0
4
58 100
5 75
0 41
100 44
75 79
48 89
44 38
37 0
0
19 100
8 57
21 18
66 0
100 29
79 66
30 78
0 47
6
100 100
49 85
16 57
0 28
23 0
89 5
94 31
27 26
9
100 71
54 62
46 90
85 100
89 63
74 27
42 0
0 11
8
71 81
2 86
65 45
100 0
0 2
20 50
87 91
38 100
3
22 80
59 100
85 81
41 62
92 47
100 15
49 0
0 12
5
100 93
68 100
40 91
56 74
88 63
63 39
31 20
0 0
5
49 83
99 100
94 92
49 67
61 44
100 23
55 0
0 0
7
27 100
88 86
100 56
90 25
58 0
0 24
8 42
100 45
9
88 91
52 91
73 73
94 100
100 58
87 18
46 0
0 1
8
65 100
4 79
73 52
100 17
31 0
0 35
49 68
69 97
7
0 96
66 100
78 85
63 42
62 0
31 19
34 42
100 44
7
0 94
51 100
73 73
51 36
24 0
10 9
38 34
100 40
4
49 100
24 82
0 54
20 37
82 40
82 54
80 25
100 0
8
89 73
78 100
25 72
71 36
69 0
0 19
54 53
100 86
6
87 100
43 83
13 55
0 23
30 0
80 5
100 28
50 29
3
32 87
81 100
85 69
58 41
97 47
100 15
46 0
0 19
5
32 89
94 100
61 94
15 63
51 60
100 35
63 1
0 0
3
25 85
54 100
78 77
61 48
100 35
80 10
36 0
0 16
8
66 96
66 77
71 32
33 0
0 31
49 64
100 96
48 100
3
30 91
65 100
83 77
64 52
100 38
76 9
37 0
0 10
3
27 81
67 100
95 91
68 61
100 50
92 17
50 0
0 5
5
0 89
9 71
41 41
28 0
20 24
23 69
53 95
100 100
4
53 100
30 83
0 55
41 36
96 42
100 62
80 31
66 0
1
0 62
33 90
46 100
48 64
55 27
30 5
44 0
100 5
9
89 83
58 100
32 68
77 64
100 74
88 29
48 4
0 0
0
56 100
15 71
0 29
34 0
79 21
100 62
75 97
26 83
1
0 43
36 59
70 78
100 100
79 76
56 51
32 26
10 0
1
0 40
29 57
65 78
100 100
93 80
74 53
55 26
38 0
2
18 92
51 100
44 64
26 30
0 0
12 20
57 14
100 12
0
37 84
0 53
7 11
64 0
100 35
100 78
50 100
7 69
9
59 65
100 98
31 100
10 64
83 67
85 52
60 13
0 0
1
7 64
39 98
47 100
47 59
44 18
0 0
37 4
100 4
0
22 71
0 35
28 0
72 8
100 45
96 90
54 100
16 75
6
96 100
77 91
33 58
10 19
67 0
100 31
60 62
0 37
8
78 82
26 100
0 69
77 36
66 0
7 24
70 62
100 95
9
69 99
25 100
34 72
84 91
84 68
100 22
57 0
0 12
9
86 100
36 84
89 89
95 71
95 44
100 18
59 0
0 0
5
100 99
69 100
39 78
45 54
87 45
78 18
41 0
0 1
6
99 100
46 86
12 59
0 28
27 0
89 2
100 29
38 30
8
97 74
79 100
37 74
59 35
35 0
0 19
41 52
100 71
5
19 91
9 66
63 43
42 0
0 12
11 64
34 100
100 97
6
86 100
39 77
4 51
0 25
29 0
100 11
89 36
18 51
6
100 100
44 94
8 59
0 17
51 0
92 27
48 50
7 21
3
36 73
59 100
91 78
71 46
95 35
100 5
38 0
0 19
0
42 76
27 30
55 0
90 30
100 77
65 100
25 79
0 40
2
0 85
32 100
64 87
50 57
28 29
24 0
63 5
100 15
3
19 79
53 100
91 92
83 65
93 45
100 22
54 6
0 0
7
0 89
42 100
100 93
88 56
59 21
42 0
32 25
94 29
4
37 100
0 73
30 49
100 51
86 76
57 75
47 38
44 0
8
42 75
62 57
100 25
42 0
0 26
33 60
76 92
42 100
3
66 89
93 100
80 69
68 48
100 23
80 0
40 1
0 6
4
82 100
49 65
0 36
10 27
85 24
100 45
88 27
91 0
6
100 100
59 83
31 63
11 42
0 20
17 0
69 8
48 24
0
42 100
20 61
20 20
62 0
100 25
96 66
49 86
0 67
8
0 60
63 39
57 0
22 10
54 47
100 82
91 100
23 75
2
0 90
40 100
80 85
53 59
20 35
4 9
56 0
100 4
0
17 72
0 37
18 2
56 0
90 20
100 58
79 93
42 100
6
100 100
58 87
30 59
19 27
40 0
84 8
45 21
0 12
2
46 88
70 100
63 71
36 44
0 22
12 14
58 0
100 18
9
77 94
31 100
52 86
92 96
94 62
100 28
71 0
0 0
1
100 100
84 97
71 81
57 65
43 49
29 32
14 16
0 0
0
48 100
8 73
0 31
29 0
78 16
100 54
79 91
33 79
8
86 82
46 100
43 66
86 32
63 0
0 12
46 45
100 75
3
12 82
55 100
81 88
51 61
99 51
100 21
56 2
0 0
4
96 100
60 82
18 54
0 33
63 26
99 49
94 34
100 0
3
49 79
58 100
91 85
80 58
100 44
85 20
44 7
0 0
1
8 49
60 72
100 100
75 74
48 45
29 15
0 0
88 1
9
96 77
68 100
33 73
79 67
100 73
94 25
51 1
0 0
5
100 93
75 100
47 88
33 54
68 49
79 28
43 8
0 0
7
0 78
27 100
55 82
58 35
50 0
36 24
67 37
100 40
2
15 78
44 100
100 95
76 69
37 44
0 21
14 0
83 3
5
17 84
18 59
48 36
17 0
0 38
6 87
52 93
100 100
9
83 100
47 91
70 81
100 86
94 55
91 23
55 3
0 0
6
80 100
35 84
10 53
0 20
41 0
100 14
91 40
28 33
1
100 100
87 86
60 71
40 57
20 43
20 29
13 14
0 0
5
48 95
100 100
100 92
47 85
34 70
73 35
48 0
0 19
2
0 74
34 100
83 99
81 63
48 31
6 6
47 4
100 0
0
26 100
12 55
19 11
67 0
100 36
79 75
26 79
0 39
9
86 88
61 100
49 71
95 80
100 60
95 22
51 0
0 2
0
13 88
5 45
26 0
73 7
100 49
85 93
37 100
0 70
4
32 100
0 80
6 56
100 56
57 88
47 84
55 38
60 0
2
0 75
29 100
68 97
70 61
43 29
18 2
59 0
100 3
7
8 87
0 71
24 96
88 100
100 90
84 56
68 22
53 0
0
55 96
14 68
0 32
24 0
77 17
100 52
96 89
49 100
7
0 93
44 100
100 98
68 66
38 32
21 0
6 38
61 34
6
88 100
39 88
11 58
0 26
35 0
100 9
84 34
12 36
1
0 36
39 49
72 74
100 100
97 87
84 58
71 28
73 0
2
30 83
69 100
66 65
38 35
0 12
4 7
52 8
100 0
4
43 100
31 73
0 45
20 25
79 24
100 46
91 31
98 0
9
76 99
17 100
22 77
78 86
100 73
95 36
56 10
0 0
8
93 81
43 100
22 69
63 36
60 0
0 2
33 31
100 47
9
79 98
100 92
64 100
55 68
92 69
91 23
44 0
0 26
8
35 100
27 71
65 36
48 0
0 19
44 52
100 83
56 95
7
0 92
43 100
78 76
81 32
58 0
26 1
56 31
100 43
8
84 61
100 100
43 96
33 49
34 0
0 9
31 50
90 69
6
100 90
90 100
54 73
31 43
29 12
88 8
58 18
0 0
4
15 100
11 84
0 48
61 43
100 59
71 72
49 36
35 0
0
11 100
0 60
1 19
45 0
89 26
100 65
65 95
13 82
1
0 59
33 67
67 92
88 100
71 75
67 50
67 23
100 0
3
64 89
96 100
88 74
63 48
100 31
91 8
46 0
0 3
2
0 81
33 100
68 91
38 65
11 36
20 5
60 1
100 0
7
0 94
62 100
92 71
80 34
52 0
21 23
34 48
100 51
3
0 65
21 91
86 100
90 80
56 54
100 30
67 7
0 0
8
74 100
43 73
94 38
100 0
51 8
79 46
91 84
0 88
8
30 83
65 53
91 13
11 0
0 34
67 64
100 100
22 97
4
30 100
9 74
0 47
50 36
100 56
94 52
70 26
62 0
4
44 100
21 72
0 42
35 20
100 20
99 51
78 29
58 0
8
81 100
6 97
38 62
100 30
58 0
0 22
42 61
96 96
9
70 100
17 99
0 74
53 72
78 70
100 38
84 8
32 0
9
65 56
100 84
48 100
0 76
45 59
77 61
42 30
19 0
1
0 49
25 58
62 79
100 100
96 79
81 53
67 26
58 0
1
100 100
86 86
72 71
58 57
42 43
25 28
8 14
0 0
7
21 100
62 95
57 54
53 13
38 0
0 19
49 17
100 16
9
81 80
34 100
0 73
63 65
89 77
100 36
89 0
22 1
1
100 100
57 88
38 72
19 58
5 44
0 29
0 14
5 0
2
34 76
59 100
66 73
37 46
0 23
19 13
61 0
100 20
6
100 100
63 77
32 52
12 24
28 0
76 19
51 37
0 22
6
100 100
58 88
22 62
0 33
0 1
49 0
70 28
26 42
9
59 100
5 95
38 72
62 89
73 56
100 22
60 1
0 0
4
37 100
0 87
6 57
100 57
95 85
61 85
50 42
49 0
0
75 89
29 97
0 63
2 24
45 0
89 23
100 62
85 100
9
100 89
57 56
6 63
37 100
94 92
92 50
61 12
0 0
9
81 85
52 100
38 61
87 54
100 75
87 32
50 0
0 2
7
0 88
47 100
96 90
100 59
80 28
53 0
37 29
88 25
9
99 66
41 58
19 84
70 100
100 70
93 34
59 3
0 0
5
59 82
92 100
72 93
32 71
58 42
100 22
58 0
0 2
2
15 73
46 100
72 65
44 25
0 3
13 10
62 0
100 16
6
100 99
68 100
32 67
8 31
24 0
69 21
34 46
0 22
7
26 100
69 97
75 64
52 31
23 0
0 19
42 32
100 35
5
100 97
80 100
46 99
36 73
62 63
53 42
26 21
0 0
1
0 76
32 90
43 100
45 66
43 32
26 0
45 1
100 0
1
0 26
31 43
61 67
91 94
100 100
84 67
68 34
56 0
0
32 100
13 85
0 40
27 0
88 10
100 55
74 96
14 99
4
48 100
28 71
0 43
40 32
100 37
87 58
61 29
41 0
7
0 90
50 100
90 76
93 39
76 3
26 0
46 30
100 37
4
47 100
29 87
0 61
0 37
77 51
100 52
80 26
72 0
5
41 84
89 100
100 97
44 93
26 73
72 43
46 0
0 22
0
55 100
15 89
0 39
23 0
69 6
100 44
90 92
47 91
2
0 63
20 100
57 88
45 47
14 14
8 0
53 8
100 3
7
0 94
63 100
85 71
72 35
57 0
24 26
43 40
100 37
3
30 88
76 100
88 71
59 43
100 41
98 10
47 0
0 16
4
34 100
0 71
5 40
75 32
100 58
94 64
80 32
64 0
3
17 74
42 100
100 98
73 70
86 51
95 24
53 0
0 3
0
23 86
9 42
16 0
67 12
100 50
99 92
43 100
0 70
8
84 100
54 77
58 40
48 5
0 0
12 28
60 44
100 65
5
63 86
32 66
58 32
30 0
5 19
0 57
41 84
100 100
8
100 77
70 100
33 75
31 36
17 0
0 17
39 45
93 62
4
100 100
69 79
33 59
0 38
48 34
90 47
71 24
71 0
1
0 77
35 100
47 95
44 61
38 27
0 0
36 3
100 5
5
47 87
100 100
50 85
17 56
62 60
88 34
52 7
0 0
7
0 87
47 100
96 88
100 54
87 21
61 0
39 15
96 17
2
0 87
22 100
48 97
62 78
64 55
64 32
76 11
100 0
8
52 100
14 74
14 37
0 0
11 30
57 61
100 94
41 100
2
0 88
10 98
50 100
44 66
27 34
19 0
59 3
100 13
8
100 83
30 100
0 72
52 38
59 0
30 16
64 54
71 88
0
12 71
0 26
48 0
97 36
100 82
42 100
4 60
5 15
4
16 100
0 68
5 36
57 25
100 35
78 61
47 33
34 0
7
0 89
25 100
77 80
81 40
71 0
33 15
36 41
100 50
0
47 99
11 74
0 31
30 0
75 6
100 42
89 85
49 100
4
37 100
0 80
16 52
100 55
82 82
52 80
53 39
58 0
9
100 85
57 100
44 74
90 76
93 54
82 15
41 0
0 20
8
100 82
51 100
0 72
56 37
78 0
36 12
68 51
92 85
0
45 99
5 77
0 30
34 0
79 19
100 62
74 100
25 100
3
0 84
34 100
100 98
88 75
80 52
100 30
80 9
20 0
8
78 72
60 100
0 72
56 37
100 0
31 3
57 43
95 83
1
14 71
72 93
100 100
77 71
53 43
28 16
0 0
91 2
3
37 94
72 100
100 93
76 74
59 51
60 25
34 8
0 0
6
95 100
52 79
20 57
0 34
5 9
62 0
100 18
40 27
4
46 100
7 83
0 51
66 52
100 82
76 63
47 32
22 0
5
42 90
24 55
80 48
51 10
0 0
9 48
43 85
100 100
0
32 98
12 54
24 5
71 0
100 41
91 89
43 100
0 77
0
6 85
0 41
24 0
69 7
100 44
85 88
40 100
3 71
0
44 100
11 69
0 30
27 0
79 17
100 53
80 89
24 91
9
90 100
45 93
66 75
94 92
100 53
92 16
49 0
0 0
4
47 100
20 69
0 38
53 39
100 49
59 73
53 40
53 0
7
0 98
51 100
67 66
57 26
43 0
6 29
48 43
100 43
6
72 100
40 92
5 60
0 25
49 0
100 22
42 38
11 19
2
45 74
45 96
90 100
76 62
46 28
0 0
38 18
100 2
1
3 71
38 100
45 92
42 56
38 20
0 1
32 0
100 3
1
100 100
80 87
61 73
43 59
30 45
16 30
5 15
0 0
4
56 100
38 69
0 41
44 38
100 40
95 68
80 34
74 0
8
71 100
0 88
51 58
100 26
47 0
2 25
62 55
89 91
0
30 81
2 67
0 25
33 0
74 26
100 63
88 100
37 89
3
33 87
68 100
87 79
71 53
100 31
86 7
43 0
0 1
8
100 78
52 100
17 76
86 39
72 0
0 25
60 64
84 92
3
24 78
51 100
91 89
70 63
98 43
100 17
53 0
0 10
7
0 72
29 97
79 100
100 69
86 34
65 0
43 21
88 30
7
0 94
37 100
65 77
70 38
61 0
43 16
62 38
100 46
0
36 100
0 73
1 28
41 0
89 17
100 61
74 98
21 94
0
19 100
0 61
10 20
53 0
93 25
100 66
67 98
19 87
8
17 99
7 62
29 25
12 0
0 36
59 68
100 100
15 85
2
37 65
52 100
57 64
31 26
0 9
31 18
65 0
100 5
7
7 95
47 100
68 69
50 34
27 0
0 19
44 31
100 35
5
18 95
22 59
73 44
44 0
11 31
0 85
51 100
100 99
4
45 100
44 81
7 51
0 31
68 35
100 52
89 34
80 0
6
100 100
47 81
20 43
30 4
93 0
93 35
40 43
0 40
4
37 100
10 92
0 56
79 50
100 71
74 86
56 42
47 0
4
62 100
46 92
0 71
19 57
94 51
100 47
60 24
35 0
3
0 61
20 91
73 100
88 76
61 58
100 32
78 2
25 0
9
65 100
0 96
24 75
79 93
91 68
100 31
69 0
2 1
3
0 86
37 98
79 100
60 82
81 57
100 31
70 9
30 0
0
54 87
14 56
0 17
40 0
79 32
100 70
74 100
28 73
1
0 61
38 73
77 90
100 100
78 76
58 51
41 25
26 0
8
5 79
32 48
32 7
0 0
31 37
78 68
100 100
41 77
1
18 70
49 100
47 86
36 40
4 7
0 0
50 4
100 9
8
71 85
40 100
43 59
46 18
4 0
0 33
56 48
100 69
1
100 100
89 85
74 71
59 57
41 43
24 29
9 14
0 0
8
28 81
71 63
100 26
32 0
0 28
42 64
85 100
12 87
4
100 100
66 81
23 62
0 40
66 34
93 44
68 22
59 0
4
49 100
16 90
0 56
79 49
100 64
57 77
48 39
47 0
6
100 100
47 96
15 64
0 29
32 0
85 16
57 46
9 30
5
42 76
79 100
86 89
45 64
60 42
100 20
56 0
0 2
6
86 100
39 79
11 52
0 23
35 0
100 9
92 33
22 34
8
30 91
51 64
61 25
6 0
0 34
49 67
100 100
43 95
5
24 100
25 58
64 36
45 0
13 23
0 65
44 90
100 100
1
0 73
58 96
58 100
56 64
60 29
39 0
34 4
100 5
2
38 69
60 100
60 60
35 24
0 7
28 15
65 4
100 0
4
81 100
42 70
0 41
32 36
100 38
98 51
78 34
72 0
5
14 96
0 62
53 40
65 0
26 3
17 54
33 97
100 100
2
0 82
24 100
54 99
50 61
34 27
41 0
71 6
100 17
3
15 90
58 100
100 92
71 72
53 51
66 28
48 7
0 0
3
1 90
50 100
98 90
72 62
100 44
90 15
43 0
0 12
3
2 85
43 100
66 79
54 52
100 39
97 13
51 2
0 0
1
19 70
28 100
45 93
35 49
13 7
0 0
49 7
100 13
6
100 100
60 85
25 58
0 28
13 0
71 6
46 23
15 10
1
0 73
59 85
100 100
84 80
72 60
59 40
50 20
53 0
1
0 55
37 80
62 100
46 67
27 36
4 5
37 2
100 0
7
0 84
37 100
75 85
75 43
67 0
47 5
56 24
100 28
4
72 100
49 96
0 73
4 56
86 48
100 48
53 25
23 0
5
53 93
0 64
51 34
53 0
18 17
0 54
16 88
100 100
9
100 89
61 100
47 70
85 91
97 60
85 19
45 0
0 1
8
0 89
44 66
63 30
36 0
34 34
68 67
100 100
53 95
6
100 100
59 84
28 56
13 26
41 0
100 9
54 22
0 6
4
100 100
100 87
55 68
5 50
45 38
68 41
29 21
0 0
0
19 84
1 43
26 0
85 1
100 46
74 90
16 100
0 58
6
100 100
44 78
15 52
9 26
29 0
100 12
79 37
0 42
7
0 100
34 97
55 66
57 32
40 0
15 22
46 36
100 42
3
24 92
61 100
100 99
81 79
59 57
56 31
35 9
0 0
1
0 56
43 77
75 99
100 100
98 75
94 50
92 25
100 0
3
0 88
55 100
85 79
21 55
22 48
100 39
73 13
1 0
2
14 69
39 100
53 71
35 33
0 8
28 12
72 0
100 26
6
100 100
66 85
37 69
14 51
0 32
0 12
31 0
34 11
2
0 62
16 100
37 82
24 42
8 8
38 2
69 0
100 0
2
0 74
32 100
72 88
49 56
7 34
0 21
49 11
100 0
8
93 84
41 100
36 65
90 33
71 0
0 7
53 39
100 74
1
0 66
23 73
63 90
100 100
81 75
63 50
44 25
31 0
3
54 88
80 100
81 68
68 41
100 23
76 1
36 0
0 13
3
42 86
71 100
69 72
98 54
100 26
76 3
32 0
0 18
5
12 97
83 100
43 98
7 69
63 63
100 23
49 0
0 22
7
0 83
47 97
100 100
96 68
72 35
56 0
52 27
86 43
2
35 76
55 100
72 70
43 33
0 9
15 13
64 0
100 13
4
29 100
9 82
0 63
6 44
39 35
77 33
100 19
96 0
3
20 80
54 100
83 84
58 63
100 49
87 17
45 0
0 14
0
47 85
12 75
0 34
26 0
74 8
100 44
92 85
47 100
8
76 87
38 100
45 64
51 23
15 0
0 25
51 42
100 62
4
21 100
21 83
0 55
29 41
85 45
100 55
86 28
86 0
7
0 96
64 100
96 70
81 33
52 0
19 19
35 49
100 56
2
5 78
41 100
63 74
45 41
14 13
0 11
51 7
100 0
5
31 87
80 100
45 88
27 63
75 45
100 20
56 2
0 0
2
0 73
21 92
57 100
79 84
74 61
68 38
71 15
100 0
1
10 67
42 100
43 97
45 58
48 19
0 0
42 3
100 2
7
9 98
61 100
69 65
54 30
33 0
0 32
19 37
100 43
0
11 90
0 41
31 0
82 0
100 46
77 92
30 100
3 58
3
45 84
68 100
77 73
53 45
100 35
86 11
37 0
0 16
2
27 77
59 100
82 75
58 43
23 15
0 0
49 10
100 9
1
7 72
0 57
52 77
100 100
93 84
67 56
41 28
22 0
3
30 75
54 100
100 99
74 72
79 46
88 18
43 0
0 12
2
16 65
29 100
59 83
38 41
0 12
8 16
55 0
100 7
1
0 43
32 58
67 79
100 100
89 76
76 51
63 25
59 0
3
40 81
77 100
100 86
78 59
97 36
93 10
47 0
0 10
8
89 91
34 100
39 66
74 31
49 0
0 19
46 49
100 76
4
9 100
7 97
0 66
100 58
78 84
46 74
39 37
39 0
1
1 73
49 100
55 92
51 56
46 20
0 2
30 1
100 0
2
10 81
44 100
57 74
32 42
0 16
16 5
58 4
100 0
0
42 86
24 44
36 0
82 3
100 48
86 92
34 100
0 63
8
18 84
6 71
67 37
38 0
0 27
51 64
100 100
17 79
2
0 88
28 100
71 96
63 66
36 39
23 9
64 0
100 2
1
15 65
44 92
55 100
54 62
45 25
0 0
36 1
100 5
2
16 86
46 100
48 64
32 31
0 3
1 6
51 5
100 0
2
21 76
39 100
45 67
27 29
0 0
25 2
63 1
100 2
0
16 75
0 30
27 0
71 13
100 49
96 95
52 100
24 65
8
0 91
40 58
62 22
22 0
22 35
69 67
100 100
18 91
3
0 86
47 100
91 88
56 62
58 40
100 19
59 4
8 0
1
100 96
98 100
82 83
68 66
52 49
32 33
20 16
0 0
2
23 90
55 100
54 66
26 40
0 31
32 19
65 2
100 0
0
29 100
0 68
9 23
47 0
90 10
100 54
73 91
30 97
2
0 82
35 100
58 85
42 57
21 29
15 0
58 2
100 11
1
0 52
44 70
69 100
69 72
51 41
20 11
9 1
100 0
8
100 84
42 100
0 72
39 36
75 0
32 16
63 55
69 91
2
23 66
31 100
61 84
48 46
20 13
0 0
50 2
100 2
2
49 76
63 100
67 77
34 53
0 29
8 13
53 1
100 0
2
16 59
30 100
55 87
34 45
0 12
2 0
51 4
100 7
4
72 100
48 88
0 69
17 57
77 46
100 44
63 23
32 0
6
100 100
53 88
20 61
0 31
16 1
67 0
56 27
3 32
2
5 75
38 100
58 76
35 41
4 11
0 0
49 7
100 3
4
38 100
24 68
0 35
71 40
100 60
96 50
95 15
100 0
6
86 100
46 81
18 61
0 40
0 19
32 0
100 3
46 10
5
36 96
29 73
71 46
47 0
0 7
15 60
41 99
100 100
5
100 98
61 100
41 90
28 61
59 61
57 40
29 19
0 0
1
0 58
40 79
83 100
100 92
87 69
73 46
63 22
80 0
7
0 93
43 99
92 100
68 52
64 0
47 0
40 36
100 42
9
100 100
59 85
89 80
84 60
82 36
92 13
52 1
0 0
7
21 95
58 100
68 68
48 33
23 0
0 31
42 41
100 44
7
16 97
76 100
80 61
56 22
34 0
0 37
37 45
100 42
3
23 96
79 100
100 86
74 66
72 44
88 23
53 6
0 0
5
22 83
0 55
48 40
45 0
15 25
15 72
52 100
100 85
5
32 82
4 56
43 25
36 0
18 37
0 73
32 99
100 100
7
0 98
66 100
64 66
32 34
2 0
47 20
100 47
28 50
9
19 70
0 86
46 100
94 92
100 68
83 44
59 22
41 0
7
18 96
4 70
0 99
62 100
100 97
82 62
72 25
64 0
9
25 76
75 100
17 68
61 54
89 90
100 44
87 10
0 0
4
24 100
0 81
3 55
65 52
100 72
66 52
34 27
24 0
4
43 100
17 84
0 62
29 43
84 47
100 43
71 22
49 0
7
0 99
75 100
83 71
52 36
27 0
6 3
22 30
100 34
9
63 85
100 88
61 100
80 78
99 58
98 15
49 0
0 15
4
36 100
22 80
0 50
49 39
100 54
75 62
58 31
59 0
1
0 59
9 64
57 86
100 100
72 75
47 51
21 25
6 0
6
86 100
49 77
28 51
26 24
51 0
100 13
63 34
0 31
9
61 80
97 90
60 100
67 80
100 58
83 24
44 4
0 0
6
86 100
38 80
6 51
0 18
47 0
100 13
62 30
7 18
2
17 90
29 100
62 82
45 35
9 0
0 3
50 4
100 10
7
0 93
60 100
99 88
73 47
55 5
39 0
38 34
100 36
7
0 92
48 100
76 74
70 41
57 9
38 0
46 20
100 20
2
0 82
26 98
59 100
67 78
55 53
49 27
65 6
100 0
2
0 86
26 100
55 96
57 68
45 41
42 12
68 1
100 0
4
100 100
79 92
36 73
4 51
52 49
54 46
24 24
0 0
3
32 78
59 100
91 88
68 58
100 41
94 12
43 0
0 10
6
86 100
35 77
8 51
0 23
35 0
100 15
84 42
22 58
9
92 72
72 100
34 72
76 57
100 71
96 29
56 0
0 6
1
0 42
40 60
74 81
100 100
90 74
78 48
66 23
65 0
3
5 90
55 100
78 84
31 65
71 51
100 23
52 5
0 0
5
15 100
23 62
66 40
37 0
0 13
0 56
45 85
100 99
5
24 87
0 82
30 72
59 23
4 0
4 45
36 98
100 100
6
80 100
100 97
48 68
7 38
0 7
91 0
98 22
9 12
3
5 85
56 100
82 78
38 55
52 48
100 29
63 5
0 0
7
0 82
40 100
92 98
100 66
83 33
65 0
35 26
81 32
2
3 77
40 100
70 80
52 45
20 18
0 0
50 7
100 1
2
41 85
62 100
52 65
30 36
0 15
33 7
68 0
100 19
9
42 84
80 85
52 100
67 81
100 57
85 22
44 5
0 0
4
30 100
21 71
0 44
68 41
100 54
100 55
98 26
98 0
7
22 100
65 96
82 55
65 14
38 0
0 29
48 33
100 33
5
47 85
100 100
40 87
24 59
80 61
90 34
57 8
0 0
1
0 45
42 70
66 100
60 62
47 25
1 5
43 0
100 4
1
0 3
29 24
57 50
83 77
100 100
80 69
64 35
51 0
3
30 84
61 100
85 79
67 54
95 39
100 14
54 0
0 10
8
52 86
60 50
50 14
0 0
27 32
73 61
100 94
40 100
6
100 83
65 100
24 79
0 48
4 14
46 0
67 26
24 40
4
53 100
5 82
0 56
81 52
100 72
66 91
54 44
44 0
2
0 85
39 100
83 99
87 71
60 44
32 17
55 0
100 1
5
16 95
100 100
22 92
2 65
24 47
96 39
75 0
0 2
3
0 87
47 100
97 87
94 69
92 50
100 31
81 13
22 0
2
0 64
24 98
68 100
57 58
24 25
7 6
54 7
100 0
4
47 100
35 95
0 66
31 43
100 48
95 66
82 34
79 0
7
0 84
44 100
95 94
74 55
57 16
54 0
45 40
100 45
8
94 93
6 100
17 69
100 43
79 0
0 17
17 63
88 95
1
100 100
78 86
60 72
44 58
33 44
18 29
7 14
0 0
2
58 65
71 100
90 70
63 31
23 0
0 13
48 1
100 4
8
61 100
0 84
51 60
100 33
72 0
16 17
41 53
87 84
3
43 75
62 100
91 87
77 57
100 38
87 11
42 0
0 15
3
0 73
25 100
69 95
55 58
100 56
90 21
47 0
2 8
7
15 99
47 100
69 70
52 34
30 0
0 19
41 31
100 34
6
100 77
98 100
41 83
5 55
0 23
42 0
66 24
11 35
2
31 68
46 100
81 88
63 49
29 16
0 5
50 0
100 12
9
82 100
2 92
8 61
75 80
71 79
100 44
81 11
0 0
1
0 63
15 63
58 81
100 100
94 81
67 54
41 28
16 0
1
0 69
32 74
70 96
100 100
91 75
81 50
70 25
64 0
8
73 83
18 100
0 67
72 34
100 0
6 16
37 54
70 88
8
49 89
71 59
98 23
38 0
18 33
60 67
100 100
0 94
3
1 83
45 100
100 93
67 66
66 50
96 23
62 0
0 5
3
4 88
39 100
59 78
60 55
100 42
88 19
47 6
0 0
3
0 88
45 100
100 99
96 76
69 54
69 29
69 5
18 0
9
100 72
77 100
20 74
71 56
94 81
95 39
65 0
0 0
3
10 78
43 100
78 86
57 59
100 46
82 17
41 0
0 9
7
0 81
29 100
59 78
54 35
41 0
12 30
55 41
100 46
7
0 91
39 100
75 72
80 37
79 0
31 12
38 29
100 29
7
0 95
43 100
77 72
65 32
47 0
10 32
39 52
100 53
4
44 100
19 82
0 59
47 48
100 59
80 46
54 24
41 0
1
26 65
56 100
58 88
46 44
15 11
0 0
50 1
100 4
4
69 100
34 75
0 44
46 30
100 44
90 68
67 35
55 0
2
25 74
36 100
61 78
39 37
5 4
0 2
50 0
100 1
9
99 98
40 100
39 68
96 77
86 83
100 38
62 6
0 0
8
86 95
9 96
27 61
100 31
64 0
0 24
55 61
93 100
2
10 81
42 100
48 67
35 34
7 4
0 7
49 0
100 0
1
0 68
23 100
35 90
31 54
20 18
7 0
53 2
100 3
9
63 88
87 80
71 100
71 78
100 61
99 21
52 0
0 12
2
0 77
27 100
54 89
33 60
11 32
16 3
58 0
100 3
8
50 83
74 47
90 0
41 4
59 49
100 85
47 100
0 71
8
91 94
13 83
67 52
100 18
16 0
0 33
36 68
48 100
2
31 69
49 100
60 70
34 36
0 13
29 21
65 0
100 16
6
100 100
64 90
33 69
10 45
0 17
30 0
50 20
13 36
9
86 78
60 100
51 63
95 77
100 66
90 22
47 0
0 16
7
8 87
0 83
38 96
95 100
100 82
81 50
68 16
62 0
1
23 71
52 100
40 91
40 57
40 24
0 0
29 4
100 4
8
100 73
77 100
31 80
31 40
29 0
0 14
35 46
90 62
4
47 100
12 76
0 50
47 39
100 58
81 51
59 26
55 0
2
0 71
22 100
61 91
49 54
21 22
6 0
53 8
100 7
1
0 15
29 40
59 68
85 97
100 100
79 67
60 34
46 0
4
55 100
48 93
0 72
34 58
100 52
97 48
58 25
32 0
1
100 100
74 97
61 81
47 65
34 49
21 33
5 16
0 0
4
46 100
20 73
0 43
46 30
100 45
93 58
63 30
52 0
5
40 95
100 100
32 85
10 58
78 61
87 29
43 0
0 6
5
37 98
11 60
88 52
76 8
0 0
0 46
18 88
100 100
5
49 81
50 50
85 25
42 0
0 16
15 58
44 91
100 100
4
38 100
19 71
0 39
26 22
72 30
100 51
64 32
47 0
4
58 100
0 70
9 41
97 38
100 60
66 78
55 39
53 0
0
17 88
3 64
6 21
60 0
100 34
100 76
48 100
0 78
6
100 100
69 80
36 54
17 27
19 0
83 3
67 29
0 40
2
2 72
33 100
58 79
34 46
3 15
0 2
53 0
100 10
6
100 100
77 91
40 64
15 35
17 5
80 0
63 24
0 14
8
35 70
75 47
75 10
0 0
18 36
68 68
100 100
23 79
9
6 83
99 86
80 100
0 80
100 81
91 57
71 28
54 0
4
26 100
0 70
44 54
100 53
77 78
46 69
36 34
28 0
7
6 86
49 100
100 76
61 40
20 4
41 0
74 23
0 27
6
100 100
71 80
42 59
18 38
0 14
23 0
52 19
22 32
8
8 67
51 37
22 0
9 24
53 58
100 92
59 100
0 74
3
30 84
63 100
90 86
67 58
100 39
75 13
36 0
0 13
9
100 85
57 100
23 65
82 63
97 78
96 37
64 0
0 7
9
83 89
36 100
45 59
92 84
92 75
100 28
58 0
0 19
5
14 99
8 54
73 46
44 0
0 17
1 81
44 99
100 100
6
98 100
43 83
7 51
0 15
50 0
100 26
83 54
19 46
4
63 100
35 79
0 55
42 39
87 48
85 51
83 20
100 0
1
0 65
61 80
100 100
94 88
86 65
84 43
86 20
92 0
7
0 100
59 100
81 88
60 45
52 0
31 7
24 32
100 33
8
100 81
22 100
0 67
59 33
47 0
28 29
87 64
66 89
3
26 93
63 100
77 78
56 54
100 41
98 17
52 6
0 0
9
100 70
49 55
15 73
53 100
93 85
80 46
48 14
0 0
8
77 81
14 100
23 66
79 34
67 0
0 14
47 48
100 80
2
1 63
14 100
56 87
38 42
0 9
2 2
51 5
100 0
3
47 87
89 100
91 75
67 56
100 39
80 11
37 0
0 18
6
50 100
35 71
17 42
12 12
56 0
100 20
54 31
0 19
8
95 100
54 94
67 54
61 14
15 0
0 38
46 58
100 72
7
19 94
53 100
69 67
50 31
21 0
0 29
49 34
100 37
1
0 66
47 97
50 100
51 60
50 20
1 0
35 4
100 9
7
0 94
63 100
100 96
81 49
82 0
44 14
11 44
89 47
0
13 94
0 52
16 11
66 0
100 32
90 74
48 100
5 78
2
49 72
64 100
100 88
78 52
43 22
0 1
40 6
90 0
9
56 60
100 84
44 100
0 72
66 61
85 65
68 32
53 0
4
81 100
60 89
22 66
0 40
42 25
100 36
94 27
75 0
4
61 100
32 70
0 41
18 28
77 29
100 49
95 34
92 0
4
64 100
38 98
0 75
23 61
85 46
100 48
69 24
43 0
3
1 82
42 100
64 79
42 61
96 49
100 17
48 0
0 13
0
41 72
7 50
0 7
46 0
82 34
100 76
59 100
15 76
0
11 75
4 45
21 1
81 0
100 43
88 87
29 100
0 67
9
100 69
54 61
13 77
56 100
96 77
90 44
58 14
0 0
6
100 100
59 90
22 62
0 29
22 0
76 10
51 37
0 33
3
0 85
21 100
66 98
83 77
90 53
100 30
75 10
35 0
7
0 63
16 90
100 100
90 73
53 40
22 6
11 0
48 18
2
0 74
35 100
100 96
94 63
52 35
0 11
5 0
77 6
5
43 89
93 100
66 91
40 64
82 43
100 15
52 0
0 1
5
43 81
11 69
78 51
100 17
27 0
0 32
14 80
84 100
4
36 100
24 70
0 38
49 33
95 47
87 55
96 21
100 0
2
16 75
41 100
52 64
32 27
0 0
21 9
62 2
100 14
0
56 100
27 79
0 39
12 0
66 15
100 51
93 93
38 93
0
19 100
0 61
3 23
48 0
97 27
100 66
62 97
10 81
4
38 100
37 81
12 55
0 28
52 27
100 42
86 26
65 0
|
2d8413cf03f4c144cf107febba92e0f1fa20bfaf | f6134e0a162a059c42ec3ef8de2a63941d73936c | /Scilab_code/Local_Planner/quatMult.sci | c0564ab0b6195efba8a6802a64db78cc6d4b0226 | [] | no_license | mxch18/SRL-WRT_pathPlanning | 38a1701934a4a0e919a6c1c7990092b242df72da | 6992febbbe103814d2cef5351a0e8917b183a2b0 | refs/heads/master | 2020-03-23T06:43:54.155192 | 2018-09-26T17:26:56 | 2018-09-26T17:26:56 | 141,226,032 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 584 | sci | quatMult.sci | function qOut = quatMult(q1,q2)
//Author : Maxens ACHIEPI
//Space Robotics Laboratory - Tohoku University
//Description:
//Outputs the quaternion qOut = q1*q2;
//INPUT
//q1 : quaternion. Row vector
//q2 : quaternion. Row vector
//OUTPUT
//qOut: quaternion. Row vector
//----------------------------------------------------------------------------//
s = q1(1);
t = q2(1);
v = q1(2:4);
w = q2(2:4);
qOut = zeros(1,4);
qOut(1) = s*t-v*w';
qOut(2:4) = s*w+t*v+cross(v,w);
endfunction
|
3aa3f137d8f7a55e7fb920e5697fb5d208011c8d | 449d555969bfd7befe906877abab098c6e63a0e8 | /3014/CH1/EX1.26/Ex1_26.sce | 146f8e67ae81e1e1dd85945ffc11f20d0652445d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 400 | sce | Ex1_26.sce |
clc
//Given that
lambda = 2 // wavelength of neutron in angstrom
m = 1.67e-27 // Mass of neutron in Kg
h = 6.63e-34 // Plank constant
printf("Example 1.26")
v = h/(lambda*1e-10*m) // velocity of neutron
k = 0.5*m*v^2 // Kinetic energy of neutron
printf("\n Velocity of neutron is %e m/s.",v)
printf("\n Kinetic energy of neutron is %f eV.\n\n\n",k/1.6e-19)
// Answer in book is 0.021eV
|
8c2e5c3ed964f445d1dfb78d1bebece6192e58e6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1553/CH10/EX10.14/10Ex14.sce | 6b8d8f92d06015c83df100b5063ddc6b76da2f42 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 334 | sce | 10Ex14.sce | //chapter 10 Ex 14
clc;
clear;
close;
probTotal=75;
arith=10; algebra=30; geo=35;
per_arith=70/100; per_algebra=40/100; per_geo=60/100;
correct=(per_arith*arith+per_algebra*algebra+per_geo*geo);
correctPass=(60/100)*probTotal;
required=correctPass-correct;
mprintf("The number of questions required were %d",required);
|
33e7f2983b19ce3bed833290439879c272daff38 | 4bbc2bd7e905b75d38d36d8eefdf3e34ba805727 | /ee_scicoslab/scicos_flex/dspic/macros/flex_blocks/FLEX-MTB/FLEX_MTB_encoder.sci | 47858019a5a8ae090227e726a4a7c254d536d717 | [] | no_license | mannychang/erika2_Scicos-FLEX | 397be88001bdef59c0515652a365dbd645d60240 | 12bb5aa162fa6b6fd6601e0dacc972d7b5f508ba | refs/heads/master | 2021-02-08T17:01:20.857172 | 2012-07-10T12:18:28 | 2012-07-10T12:18:28 | 244,174,890 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,720 | sci | FLEX_MTB_encoder.sci | function [x,y,typ] = FLEX_MTB_encoder(job,arg1,arg2)
x=[];y=[];typ=[];
select job
case 'plot' then
exprs = arg1.graphics.exprs;
enc_type = exprs(1);
standard_draw(arg1);
case 'getinputs' then
[x,y,typ] = standard_inputs(arg1);
case 'getoutputs' then
[x,y,typ] = standard_outputs(arg1);
case 'getorigin' then
[x,y] = standard_origin(arg1);
case 'set' then
x = arg1;
model = arg1.model;
graphics = arg1.graphics;
exprs = graphics.exprs;
while %t do
[ok, enc_type, exprs] = getvalue('Encoder parameters:',..
[' Encoder type [0(hw encoder),1(sw encoder)] :'],..
list('vec',1),exprs);
if ~ok then
break;
end
if((enc_type>1) | (enc_type<0)) then
warning('Encoder type unknown!. Keeping previous values.');
break;
end
in=[];
out = ones(2,1);
[model,graphics,ok] = check_io(model,graphics,in,out,1,[]);
if ok then
graphics.exprs = exprs;
model.rpar = [];
model.ipar = [enc_type];
model.dstate=[];
x.graphics = graphics;
x.model = model;
break
end
end
case 'define' then
enc_type = 0;
model = scicos_model();
model.sim = list('flex_daughter_encoder',4);
model.in = [];
model.out = ones(2,1);
model.evtin = 1;
model.rpar = [];
model.ipar = [enc_type];
model.dstate=[];
model.blocktype = 'd';
model.dep_ut = [%t %f];
exprs = [sci2exp(enc_type)];
gr_i = ['xstringb(orig(1),orig(2),[''FLEX-MTB'' ; ''Enc.In : ''+ string(enc_type)],sz(1),sz(2),''fill'');'];
x = standard_define([3 2],model,exprs,gr_i);
end
endfunction
|
d71688082c8db22e88895b69789d9900cf54946f | 449d555969bfd7befe906877abab098c6e63a0e8 | /593/CH13/EX13.9/ex13_9.sce | c27d2fb581f37ae1613ecbbc03a35a857735b458 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,237 | sce | ex13_9.sce | clear;
//clc();
// Example 13.9
// Page: 363
printf("Example-13.9 Page no.-363\n\n");
//***Data***//
T = 298.15;//[K] Temperature
P_0 = 1;//[atm]
P = 100;//[atm]
E_0 = -1.229;//[V]
F = 96500;//[(coulomb)/(mole*electrons)] faraday constant
R = 8.314;//[J/(mol*K)] universal gas constant
// The reaction is
// H2O(l) = H2(g) + 1/2O2(g)
// number of the valence electrons transferred in this reaction is
n_e = 2;//[(mole electrons)/mole]
// Gibb's free energy is given by
// g = g_0 + integrate(dg/dP)*dP, at constant temperature with integration limit P_0 and P
// or
// g = g_0 + integrate(v_T)*dP
// In the rightmost term we replace v_T by (R*T)/P, which is correct only for ideal gases, so
// g = g_0 + (R*T)*log(P/P_0)
// According to the assumption ,we can ignore the change in Gibb's free energy with pressure of the liquid water, so that
// delta_g = delta_g_0 + 1.5*(R*T)*log(P/P_0)
// and
// E = (-delta_g)/(n_e*F) = -(delta_g_0 + 1.5*(R*T)*log(P/P_0))/(n_e*F)
// So equilibrium cell voltage is given as
E = E_0 - 1.5*(R*T)*log(P/P_0)/(n_e*F);
printf("The equilibrium cell voltage of electrolytic cell if feed and product are at the pressure 100 atm is %f Volt",E);
|
4bab4954ba7f088c189c5e154e9f2c6136705399 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2990/CH6/EX6.22/Ex6_22.sce | 9bd32acdc653552fc4e25d248e5a4f99d700b8af | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 614 | sce | Ex6_22.sce |
clc; funcprot(0);
// Initialization of Variable
function[dms]=degtodms(deg)
d = int(deg)
md = abs(deg - d) * 60
m = int(md)
sd = (md - m) * 60
sd=round(sd*100)/100;
if sd==60.0 then
sd=0;
m=m+1;
end
dms=[d m sd]
endfunction
f=150.4;//focal length in mm
xc=-32.43;//coordinate in mm
xd=9.52;//coordinate in mm
//calculation
thc=atan(xc/f);
thd=atan(xd/f);
th=thd-thc;
th=th*180/%pi;
Az=325+15.0/60+th;
Az=degtodms(Az);
disp(Az,"Azimuth of D in deg,min,sec respectively")
disp("the answer differs slightly due to round off error")
clear()
|
ba3968d9df3f12cf4449893624bc09e56b2d6222 | 20e1ce60c516a737e583089b58739647749845ac | /lib/methode_puissance.sce | 4227d25efd0718b02270b11d2346b40a123b13c7 | [] | no_license | idhd/projet-math | 83320adbb68bba0ae6e6dfcfaaa48146146af3e7 | a982b65947a2ed15d6b4340779c5645da2a03ed4 | refs/heads/master | 2020-06-04T22:03:10.736659 | 2011-06-03T22:38:03 | 2011-06-03T22:41:04 | 1,808,626 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 167 | sce | methode_puissance.sce | function res = methode_puissance(A, n)
N = size(A,'r');
v = rand(N,1);
for i=0:n
v = A*v;
v = v ./norm(v);
end
res = v;
endfunction |
08c9619f9ae48b337e42b03017daa409b6715cad | 527c41bcbfe7e4743e0e8897b058eaaf206558c7 | /NZFunctions/Copulas/SkewedStudent-T-Copula-NZ-UM-01.tst | 94570d091dba67bd736e056fc28176c9890e3694 | [] | no_license | kamleshm/intern_fuzzy | c2dd079bf08bede6bca79af898036d7a538ab4e2 | aaef3c9dc9edf3759ef0b981597746d411d05d34 | refs/heads/master | 2021-01-23T06:25:46.162332 | 2017-07-12T07:12:25 | 2017-07-12T07:12:25 | 93,021,923 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 4,153 | tst | SkewedStudent-T-Copula-NZ-UM-01.tst | --INFO: Reading startup configuration from file PulsarLogOn.act_ssl_config
-- Fuzzy Logix, LLC: Functional Testing Script for DB Lytix functions on Teradata Aster
--
-- Copyright (c): 2016 Fuzzy Logix, LLC
--
-- NOTICE: All information contained herein is, and remains the property of Fuzzy Logix, LLC.
-- The intellectual and technical concepts contained herein are proprietary to Fuzzy Logix, LLC.
-- and may be covered by U.S. and Foreign Patents, patents in process, and are protected by trade
-- secret or copyright law. Dissemination of this information or reproduction of this material is
-- strictly forbidden unless prior written permission is obtained from Fuzzy Logix, LLC.
-- Functional Test Specifications:
--
-- Test Category: Copulas – Multivariate Distributions
--
-- Last Updated: 05-30-2017
--
-- Author: <kamlesh.meena@fuzzyl.com>
--
-- BEGIN: TEST(s)
-----****************************************************************
---Skewed Student’s T Copula
-----****************************************************************
-----------------------------------------------------------------------------------
/******************************************************************/
/**************** First truncate all the tables *******************/
/******************************************************************/
TRUNCATE TABLE tblSimUncorr;
TRUNCATE TABLE tblCholesky;
TRUNCATE TABLE tblSimCorr;
TRUNCATE TABLE tblInvGamma;
/******************************************************************/
/******** Generate uncorrelated standard normal variates **********/
/******************************************************************/
INSERT INTO tblSimUncorr
SELECT a.SerialVal AS TrialID,
b.SerialVal AS DrawID,
c.SerialVal AS SeriesID,
FLSimNormal(RANDOM(), 0, 1)
FROM fzzlSerial a,
fzzlSerial b,
fzzlSerial c
WHERE a.SerialVal <= 10000 ---- number of trials
AND b.SerialVal <= 1000 ---- number of draws
AND c.SerialVal <= 4 ---- number of variates
ORDER BY 1, 2, 3;
/******************************************************************/
/************** Generate Inverse Gamma Distribution ***************/
/******************************************************************/
INSERT INTO tblInvGamma
SELECT a.SerialVal AS TrialID,
b.SerialVal AS DrawID,
FLSimInvGamma(RANDOM(), 5.5, 5.5) ---- degrees of freedom is 11
FROM fzzlSerial a,
fzzlSerial b
WHERE a.SerialVal <= 10000
AND b.SerialVal <= 1000;
/******************************************************************/
/**************** Perform Cholesky decomposition ******************/
/******************************************************************/
INSERT INTO tblCholesky
SELECT FLMatrixRow(p.CholeskyStr) AS Row,
FLMatrixCol(p.CholeskyStr) AS Col,
FLMatrixVal(p.CholeskyStr) AS Value
FROM (
SELECT FLCholeskyStr(a.seriesid1, a.seriesid2, a.Correl)
OVER (PARTITION BY 1) AS CholeskyStr
FROM tbldistCorrel a
WHERE a.seriesid1 <= 4 ---- Limit rows and columns
AND a.seriesid2 <= 4 ---- to match the number of variates
) AS p
ORDER BY 1, 2;
/******************************************************************/
/***************Generate Skewed Student's T Copula ***************/
/******************************************************************/
INSERT INTO tblSimCorr
SELECT p.TrialID,
p.DrawID,
p.SeriesID,
FLSimSkewTCopulaObs(q.Mean, q.StdDev, q.Skewness, 11, p.SimValue, r.SimValue)
FROM (
SELECT a.TrialID,
a.DrawID,
b.Row AS SeriesID,
FLSumProd(b.Value, a.SimValue) AS SimValue
FROM tblSimUncorr a,
tblCholesky b
WHERE b.Col = a.SeriesID
GROUP BY a.TrialID, a.DrawID, b.Row
) AS p,
tblDistParams q,
tblInvGamma r
WHERE q.SeriesID = p.SeriesID
AND r.TrialID = p.TrialID
AND r.DrawID = p.DrawID;
SELECT *
FROM tblSimUncorr
LIMIT 20;
SELECT *
FROM tblCholesky
LIMIT 20;
SELECT *
FROM tblSimCorr
LIMIT 20;
SELECT *
FROM tblInvGamma
LIMIT 20;
|
6b21d128a3bff81e9ea64f0fd11883d65bcdefdc | 449d555969bfd7befe906877abab098c6e63a0e8 | /914/CH10/EX10.5/ex10_5.sce | 24cd25a5f9e42e554a64b5d7ff1825947e085000 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,114 | sce | ex10_5.sce | clc;
warning("off");
printf("\n\n example10.5 - pg417");
// given
L=300; //[m] - length of pipe
d=0.06; //[m] - inside diameter
deltap=147*10^3; //[Pa] - pressure the pump can supply
ebyd=0.000762; // relative roughness
p=1000; //[kg/m^3] - density
mu=1*10^-3; //[kg/m*sec] - viscosity
tauw=(d*(deltap))/(4*L);
// using the hit and trial method for estimation of flow velocity
// let
f=0.005;
U=((2*tauw)/(p*f))^(1/2);
Nre=(d*U*p)/mu;
// from the graph value of f at the above calculated reynolds no. and the given relative roughness(e/d)
f=0.0054;
U=((2*tauw)/(p*f))^(1/2);
Nre=(d*U*p)/mu;
// from the graph value of f at the above calculated reynolds no. and the given relative roughness(e/d)
f=0.0053;
U=((2*tauw)/(p*f))^(1/2);
Nre=(d*U*p)/mu;
// from the graph value of f at the above calculated reynolds no. and the given relative roughness(e/d)
f=0.0053;
// At this point the value of f is deemed unchanged from the last iteration .Hence, the values obtained after the third iteration are the converged values
printf("\n\n The maximum flow velocity is \n U=%f m/sec",U);
|
92905e38a6d143ba98e11b98bf8384fb71ec6ef6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2195/CH5/EX5.10.2/ex_5_10_2.sce | a3588cfb57e6f7f5fde0296e4eb1e26041378bfc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 117 | sce | ex_5_10_2.sce | //Example 5.10.2: resolution
clc;
clear;
close;
format('v',9)
//given data :
n=5
R=1/10^n;
disp(R,"resolution,R = ")
|
870b2cb0993a191661b67e8eeda63eb7d0889a82 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2510/CH14/EX14.14/Ex14_14.sce | c3cba5c92ae915accfe4a17f9c29d67b3489e4f4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,733 | sce | Ex14_14.sce | //Variable declaration:
Di = 0.825/12.0 //Pipe inside diameter (ft)
Do = 1.05/12.0 //Pipe outside diameter (ft)
Dl = 4.05/12.0 //Insulation thickness (ft)
l = 1.0 //Pipe length (ft)
kp = 26.0 //Thermal conductivity of pipe (Btu/h.ft.°F)
kl = 0.037 //Thermal conductivity of insulation (Btu/h.ft.°F)
hi = 800.0 //Steam film coefficient (Btu/h.ft^2.°F)
ho = 2.5 //Air film coefficient (Btu/h.ft^2.°F)
pi = %pi
//Calculation:
ri = Di/2.0 //Pipe inside radius (ft)
ro = Do/2.0 //Pipe outside radius (ft)
rl = Dl/2.0 //Insulation radius (ft)
Ai = pi*Di*l //Inside area of pipe (ft^2)
Ao = pi*Do*l //Outside area of pipe (ft^2)
Al = pi*Dl*l //Insulation area of pipe (ft^2)
A_Plm = (Ao-Ai)/log(Ao/Ai) //Log mean area for steel pipe (ft^2)
A_Ilm = (Al-Ao)/log(Al/Ao) //Log mean area for insulation (ft^2)
Ri = 1.0/(hi*Ai) //Air resistance (m^2.K/W)
Ro = 1.0/(ho*Al) //Steam resistance (m^2.K/W)
Rp = (ro-ri)/(kp*A_Plm) //Pipe resistance (m^2.K/W)
Rl = (rl-ro)/(kl*A_Ilm) //Insulation resistance (m^2.K/W)
U = 1.0/(Ai*(Ri+Rp+Ro+Rl)) //Overall heat coefficient based on the inside area (Btu/h.ft^2.°F)
//Result:
printf("The overall heat transfer coefficient based on the inside area of the pipe is : %.3f Btu/h.ft^2.°F .",U)
|
14b2a04c06870783996c3f89aec21428e4cd07bf | 449d555969bfd7befe906877abab098c6e63a0e8 | /2309/CH2/EX2.a.7/A_Ex2_7.sce | ed852e7819b2e56be61c3173000054a15b0e219f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 690 | sce | A_Ex2_7.sce | // Chapter 2 Additional Example 7
//==============================================================================
clc;
clear;
//input data
h = 6.625*10^-34; // plank's constant
c = 3*10^8; // vel. of light in m/s
lamda = 5511.11*10^-10; // wavelength of green LED light in m
q = 1.6*10^-19; // charge of electron
//Calculations
Eg = (h*c)/lamda; // band gap energy in joules
E = Eg/q // bang gap energy in eV
//Output
mprintf('Energy bandgap Eg = %3.2f eV',E);
//==============================================================================
|
308e5b12d76e4ef2900e9f9dc052ccf59ed9dfd7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3636/CH3/EX3.12/Ex3_12.sce | d09cb33c78ca5017836257b6fc34e60cdff387f4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 581 | sce | Ex3_12.sce | clc;
clear;
R=10*10^3 //Resistance in ohm
V=5 //Voltage in V
J=50 //current density in A/cm^2
E=100 //in V/cm
q=1.6*10^10 //in eV
myu_p=410 //in cm^2/V*s
Nd=5*10^15 //in cm^-3
//Calculation
I=V/R //ohms law in mA
A=I/J //Area in cm^2
L=V/E
rho=(R*A)/L
sigma=1/rho //in ohm^-1 cm^-1
Na=(sigma/(myu_p*q))+Nd
mprintf("a)Limiting electric field= %i V/cm\n",E)
mprintf("b)Length of resistor= %.1e cm\n",L)
mprintf("c)Area of cross-section= %.1g cm^2\n",A)
mprintf("d)Acceptor doping concentration= %.2g cm^-3",Na) //The answer provided in the textbook is wrong
|
56e51c7f5e300a767d8fcbdb3aba6b2444e3118b | 449d555969bfd7befe906877abab098c6e63a0e8 | /608/CH21/EX21.27/21_27.sce | 71764dacd9247f4bc0fa0d18deeb2218ffeb92ff | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 596 | sce | 21_27.sce | //Problem 21.27: A d.c. series motor drives a load at 30 rev/s and takes a current of 10 A when the supply voltage is 400 V. If the total resistance of the motor is 2 ohm and the iron, friction and windage losses amount to 300 W, determine the efficiency of the motor.
//initializing the variables:
R = 2; // in ohm
n = 30; // in rev/sec
I = 10; // in A
C = 300; // in Watt
V = 400; // in Volts
//calculation:
//Efficiency =((V*I - I*I*R - C)/(V*I))*100%
eff = ((V*I - (I*I*R) - C)/(V*I))*100 // in percent
printf("\n\n Result \n\n")
printf("\n efficiency is %.1f percent",eff) |
d49f9f624bab88d75a9872a34539b02dbd31b3a5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /569/CH6/EX6.1/6_1.sci | cfcd27216ce7bfa45af6c64d37f046db13e3a7d2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 114 | sci | 6_1.sci | // calculating feedback resistance
clc;
A=100;
R1=1*10^3;
Rf=-A*R1;
disp(Rf,'feedback resistance (ohm)=');
|
92c2fc6f149e8994938b6de31872485d392ceb5c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2921/CH2/EX2.3/Ex2_3.sce | 9fd946f0a2f401571a6b9f4e6f606838aaa16e6a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 456 | sce | Ex2_3.sce | clc;
clear;
mprintf('MACHINE DESIGN \n Timothy H. Wentzell, P.E. \n EXAMPLE-2.3 Page 29 ') //Example 2.3
T=300*12; //[in*lb] Engine torque
d=8; //[in] Crankshaft effective diameter
F=T/(d/2); //[lb] Force exerted by piston
A=%pi*(2^2)/4; //[in^2] Area of cross section of piston
P=F/A; //[lb/in^2] Pressure in cylinder
mprintf('\n\n Pressure inside cylinder %f lb/in^2',P);
|
cb9db8933c976b3741bafadd3ad9440d05a2aaed | c0c48c5a363ac2c0bf21e72833d72a99771dc6ce | /Simulation_Codes/lab11_18i190002/ex2.sce | efa0d755219db9da8597b23dd6d9ba33429b1a94 | [] | no_license | shubham1166/Operarions_Research_Projects | 3b6664b83d89b2a005b5194489bfd0d95cafe3d8 | 8f28eea93d9e4ff3d6a8e95160c3f9464ce2fc34 | refs/heads/main | 2023-03-14T02:48:42.359247 | 2021-03-03T05:51:28 | 2021-03-03T05:51:28 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 645 | sce | ex2.sce | //Shubham sharma
//18i190002
//Msc PhD OR
clc,clear
function x=myfunction(T,L,n)
function Z1=myfunction2(T,L)
s=0
flag=1
i=0
while flag==1
X = grand(1, 1, "exp", L)
s=s+X
i=i+1
if s>=T
flag=0
end
end
Z1=i
endfunction
for i=1:n
x(i)=myfunction2(T,L)
end
endfunction
x=myfunction(25,1,20000)
disp(mean(x),'Mean is')
disp(variance(x),'Variance is ')
clf
histplot(10,x,xlabel('--values of Zk-->'),ylabel('--Frequency density-->'),title('Histogram plot when T=25, lambda=1 and n=20000'))
|
4e1f4e8773ba5cddd517091a126f80b919d2d67d | 449d555969bfd7befe906877abab098c6e63a0e8 | /68/CH1/EX1.2/ex2.sce | 87f07b3c64226f263fb49df1c8814ea614326bc5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 766 | sce | ex2.sce | // Example 1.2: Gain of transistor amplifier
// Amplifier has transfer characteristics v_O=10-(10^-11)*(exp^40*v_1) applies for v_1 is greater than or equal 0V and v_o is greater than or equal to 0.3V
L_l = 0.3; // limit L_-
disp(L_l,"The limit L_- (V) =")
v_I=1/40*log((10-0.3)/10^-11); // from the transfer characteristics and v_o=0.3V
disp(v_I,"v_I in volts =")
L_u=10-10^-11; // obtained by v_I=0 in transfer characteristics
disp(L_u,"the limit L_+ (V) =")
V_I=1/40*log((10-5)/10^-11); // V_O=5V
disp(V_I,"The value of the dc bias voltage that results in V_O=5V (V)=")
A_v=-10^-11*exp(40*V_I)*40; // A_v=dv_O/dv_I
disp(A_v,"Gain at the operating point (V/V) =")
disp("NOTE the gain is negative that implies the amplifier is an inverting amplifier")
|
ec10e6c74520d7045c596b0c6b220d7d99d039b2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3760/CH4/EX4.22/Ex4_22.sce | b2fbe535b30c25fc53aa24b6e6cbc753128b1403 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 714 | sce | Ex4_22.sce | clc;
Vt=100;//terminnal voltage
P=2;//no of poles
Z=1000;//no of conductors
A=2;//no of parallel paths for armature conductors
Ra_=2*10e-3;//resistance of each armature
Ra=500*Ra_*(1/2);//total armature resistance
//Let If be field current
//Ea=Vt+(Il+If)*0.5
//Ea1=100+(10+If)*0.5,because at 1055 rpm Il=10.
//Ea2=100+(20+If)*0.5,because at 1105 rpm Il=20.
//But, Ea=k1*If*speed
//Therefore,((If*1055)/(If*1105))=((100+(10+If)*0.5)/(100+(20+If)*0.5)),which gives-
If=1;//field current
Ea1=100+(10+1)*0.5;//at 1055 rpm
N=1055;//speed of rotor
phi=(Ea1*60*A)/(Z*N*P);
Rf=Vt/If;//field circuit resistance
printf('Field circuit resistance is %f ohm.\n',Rf);
printf('Flux per pole is %f Wb.',phi);
|
4c63456604608723604bc27b1512d1ee3cb46d27 | 449d555969bfd7befe906877abab098c6e63a0e8 | /149/CH2/EX2.45/ex45.sce | 95e3a1d2c05506b10f3d6700defe7916d5769255 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 262 | sce | ex45.sce | clear
clc
x=poly([0],'x')
A=[1 4;2 3]
I=eye(2,2)
disp("eigen values of A are ")
spec(A)
disp("let ")
a=-1;
b=5;
disp("hence,the characteristic equation is (x-a)(x-b) ")
p=(x-a)*(x-b)
disp("A^2-4*A-5*I=")
A^2-4*A-5*I
disp("inverse of A= ")
inv(A) |
9a599ab72f7569dcc491c60a7df481ea6e637ba2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3718/CH1/EX1.20/Ex1_20.sce | aed3ceebeb04ad7d41739569b33d74ad64cf5848 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 289 | sce | Ex1_20.sce | //Chapter 1: Structure and Bonding
//Problem: 20
clc;
B_O = (9 - 4) / 2.0 // Bond order of N2+
printf( "MO configuration of N2+ is\n")
printf(" σ(1s2)σ*(1s2)σ(2s2)σ*(2s2) [π(2px2) = π(2py2)] σ(2pz1)\n")
printf("\n The Bond order of N2+, 1/2[Nb - Na] =%.1f", B_O)
|
00d09d0869252d4651aec91926fe5876acadba87 | 449d555969bfd7befe906877abab098c6e63a0e8 | /611/CH4/EX4.16/Chap4_Ex16_R1.sce | e4844eabb55657f321eeb0a2f83b288e88dd9321 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 2,486 | sce | Chap4_Ex16_R1.sce | // Y.V.C.Rao ,1997.Chemical Engineering Thermodynamics.Universities Press,Hyderabad,India.
//Chapter-4,Example 16,Page 118
//Title:Percentage error
//================================================================================================================
clear
clc
//INPUT
T0=300;//initial temperature of superheated steam in degree celsius
P0=3;//initial pressure of superheated steam in MPa
Xe=0.85;//quality of steam leaving the turbine (no unit)
Tf=45;//final temperature of steam leaving the turbine in degree celsius
Vi=10;//velocity of steam at the entrance in m/s
Ve=40;//exit velocity of steam in m/s
Zi=10;//elevation at the entrance in m
Ze=4;//elevation at the exit in m
m=1;//mass flow rate of steam through turbine in kg/s
g=9.81;//accleration due to gravity in m/s^2
//CALCULATION
hi=2995.1;//specific enthalpy of superheated steam in kJ/kg obtained from superheated steam tables corresponding to T0 and P0
hf=188.35;//specific enthalpy of saturated liquid in kJ/kg obtained from steam tables corresponding to Tf
hg=2583.3;//specific enthalpy of saturated vapour in kJ/kg obtained from steam tables corresponding to Tf
he=((1-Xe)*hf)+(Xe*hg);//calculation of specific enthalpy of steam at the exit in kJ/kg using Eq.(3.6)
Q=0;//adiabatic process
enthalpy_change=(he*10^3)-(hi*10^3);//calculation of the enthalpy change between the entrance and exit in J/kg
KE_change=((Ve^2)-(Vi^2))/2;//calculation of the kinetic energy change between the entrance and exit in J/kg
PE_change=g*(Ze-Zi);//calculation of the potential energy change between the entrance and exit in J/kg
Ws=Q-(m*(enthalpy_change+KE_change+PE_change)*10^-3);//calculation of power output in kW using Eq.(4.61)
err_KE=((KE_change)/(Ws*10^3))*100;//calculation of percentage error when kinetic energy change is ignored
err_PE=((abs (PE_change)/(Ws*10^3)))*100;//calculation of percentage error when potential energy change is ignored
err=err_KE+err_PE;//calculation of percentage error when both potential kinetic energy changes are ignored
//OUTPUT
mprintf('\n The percentage error when Kinetic energy change is ignored= %0.3f \n',err_KE);
mprintf('\n The percentage error when Potential energy change is ignored= %0.4f \n',err_PE);
mprintf('\n The percentage error when both Kinetic and Potential energy changes are ignored= %f \n',err);
//===============================================END OF PROGRAM===================================================
|
0d2cddccdda42123d0a3d044395a3d76f783e978 | c09810ccf146237702bc5eedd87109dd496b389a | /ОТУ/4.1/4.1.sce | 8760eeedb87ebb154a254c8625eb0c9f9f89b0ec | [] | no_license | Krokofol/OOAIDLab | 2d0e5b2ff517dd1e51d8239dc8bb5575b2ed8384 | a583d91a47c9e5f2a56a36b2c3f13bbc794f9517 | refs/heads/master | 2023-03-30T22:04:06.564312 | 2021-04-01T14:22:01 | 2021-04-01T14:22:01 | 339,401,547 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 271 | sce | 4.1.sce | p1=poly([-0.9 -1 0 0 1.1],'x','c');
p2=poly([-4 1 0 1],'x','c');
x1=roots(p1)
x2=roots(p2)
P1 = -0.9-x1(1)+1.1*x1(1)^4
P1 = -0.9-x1(2)+1.1*x1(2)^4
P1 = -0.9-x1(3)+1.1*x1(3)^4
P1 = -0.9-x1(4)+1.1*x1(4)^4
P2 = -4+x2(1)+x2(1)^3
P2 = -4+x2(2)+x2(2)^3
P2 = -4+x2(3)+x2(3)^3
|
1d9dd71becd33773c28fa25e6390468d1ee6813f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2863/CH2/EX2.15/ex2_15.sce | 0a18b4550d8dd85598559c07bfb5b70a6f838f87 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 179 | sce | ex2_15.sce | //chapter 2
//Etheta=60*Im*cos(pi/2*cos(theta)/sin(theta))/r
printf("\n");
r=500*10^3;
Etheta=10*10^-6;
Im=Etheta*r/60;
printf("the current through the dipole is %gA",Im);
|
52995fd35fc68e347d2e1ffece2e000bcadef0e1 | 3c47dba28e5d43bda9b77dca3b741855c25d4802 | /microdaq/macros/microdaq_macros/mdaqDSPBuild.sci | f2fc31328982992d19e08fcb26ccccb357d0f8b4 | [
"BSD-3-Clause"
] | permissive | microdaq/Scilab | 78dd3b4a891e39ec20ebc4e9b77572fd12c90947 | ce0baa6e6a1b56347c2fda5583fb1ccdb120afaf | refs/heads/master | 2021-09-29T11:55:21.963637 | 2019-10-18T09:47:29 | 2019-10-18T09:47:29 | 35,049,912 | 6 | 3 | BSD-3-Clause | 2019-10-18T09:47:30 | 2015-05-04T17:48:48 | Scilab | UTF-8 | Scilab | false | false | 324 | sci | mdaqDSPBuild.sci | function mdaqDSPBuild(diagram_file)
if isfile(diagram_file) == %F then
disp("ERROR: Xcos model file not found!");
return;
end
// load Xcos libs if needed
if isdef("c_pass1") == %F then
loadXcosLibs();
end
importXcosDiagram(diagram_file);
mdaq_code_gen(%F);
endfunction
|
416ca7c12f0fa1c9b51ffe5fccef5fb90b294df2 | b3905327def373bc96c2f3e887c763452bfd2525 | /AMain.pas.tst | 1011a8a60e4c7dc4595acaac00de913bd57f5a33 | [] | no_license | duffman/Xindi-Developers-Editor | a97e0a5feac5fd6d7725ad1b68247ddb2ecdd127 | 627701461ae609db83db42ab2a70511a5b2bbeed | refs/heads/master | 2022-01-10T01:06:18.729273 | 2019-07-20T00:26:33 | 2019-07-20T00:26:33 | 197,858,700 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 814 | tst | AMain.pas.tst | unit Main;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, VirtualTrees,
VirtualExplorerTree;
type
TForm1 = class(TForm)
Memo1: TMemo;
Button1: TButton;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.Button1Click(Sender: TObject);
var
value: Variant;
tmpStr: String;
begin
value := 234;
tmpStr := Format('Test1 "%s"', [value]);
Memo1.Lines.Add(tmpStr);
value := 'Kalle Kula';
tmpStr := Format('Test2 "%s"', [value]);
Memo1.Lines.Add(tmpStr);
end;
end.
|
2a90819f338da6d5d0c232ff02058eeac2fcd3f8 | 43799901e22e995d4db64000ef28c0a787aeb11b | /ISAWIN/LINOV/ROU2/appli.tst | 64282cf30859ea56965fd2bcc45c1cbae3e5a5c6 | [
"WTFPL"
] | permissive | aquaforum/tench_catch | 7082d8e8f3a224aa50be9150a96362f2f323a2be | 3f377476d82d7343edd985a6d3a41b57dc301f98 | refs/heads/master | 2023-07-17T13:33:10.901467 | 2021-08-22T19:29:09 | 2021-08-22T19:29:09 | 398,885,059 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 8,203 | tst | appli.tst | @ISA_SYMBOLS,21971786
#NAME,rou2,3.41
#DATE,03.12.2015
#SIZE,G=7,S=0,T=0,L=0,P=4,V=50
#COMMENT,wsma1tst
@PROGRAMS,7
#!5001,PARM_RAM
#!5002,ANALOG
#!5003,CONTROL
#!5004,TX_X
#!5005,MUX2
#!5006,FLIMIT
#!5007,P_P0
@STEPS,0
@TRANSITIONS,0
@BOOLEANS,82
#!1002,X0002,+I,!0000,FALSE,TRUE
#!1003,X0003,+I,!0000,FALSE,TRUE
#!1004,X0004,+I,!0000,FALSE,TRUE
#!1005,X0005,+I,!0000,FALSE,TRUE
#!1006,X0006,+I,!0000,FALSE,TRUE
#!1007,X0007,+I,!0000,FALSE,TRUE
#!1008,X0008,+I,!0000,FALSE,TRUE
#!1009,X0009,+I,!0000,FALSE,TRUE
#!100A,X0010,+I,!0000,FALSE,TRUE
#!100B,X0011,+I,!0000,FALSE,TRUE
#!100C,X0012,+I,!0000,FALSE,TRUE
#!100D,X0013,+I,!0000,FALSE,TRUE
#!100E,X0014,+I,!0000,FALSE,TRUE
#!100F,X0015,+I,!0000,FALSE,TRUE
#!1010,X0016,+I,!0000,FALSE,TRUE
#!1013,Y0003,+O,!0000,FALSE,TRUE
#!1014,Y0004,+O,!0000,FALSE,TRUE
#!1015,Y0005,+O,!0000,FALSE,TRUE
#!1016,Y0006,+O,!0000,FALSE,TRUE
#!1017,Y0007,+O,!0000,FALSE,TRUE
#!1018,Y0008,+O,!0000,FALSE,TRUE
#!1019,Y0009,+O,!0000,FALSE,TRUE
#!101A,Y0010,+O,!0000,FALSE,TRUE
#!101B,Y0011,+O,!0000,FALSE,TRUE
#!101C,Y0012,+O,!0000,FALSE,TRUE
#!101D,Y0013,+O,!0000,FALSE,TRUE
#!101E,Y0014,+O,!0000,FALSE,TRUE
#!101F,Y0015,+O,!0000,FALSE,TRUE
#!1020,Y0016,+O,!0000,FALSE,TRUE
#!1022,MC0007,+X,!0000,FALSE,TRUE
#!1023,MC0008,+X,!0000,FALSE,TRUE
#!1024,RUN,+X,!0000,FALSE,TRUE
#!1025,X0001,+X,!0000,FALSE,TRUE
#!1026,REJ0001,+X,!0000,FALSE,TRUE
#!1027,REJ0002,+X,!0000,FALSE,TRUE
#!1028,REJ0003,+X,!0000,FALSE,TRUE
#!1029,REJ0004,+X,!0000,FALSE,TRUE
#!102A,REJ0005,+X,!0000,FALSE,TRUE
#!102B,Y0001,+X,!0000,FALSE,TRUE
#!102C,REJ0006,+X,!0000,FALSE,TRUE
#!102D,REJ0007,+X,!0000,FALSE,TRUE
#!102E,Y0002,+X,!0000,FALSE,TRUE
#!102F,SAVE,+X,!0000,FALSE,TRUE
#!1030,TIME_SET,+X,!0000,FALSE,TRUE
#!1031,IRUN,+X,!0000,FALSE,TRUE
#!1032,INIT,+X,!5001,FALSE,TRUE
#!1033,AM0001,+X,!0000,FALSE,TRUE
#!1034,AM0002,+X,!0000,FALSE,TRUE
#!1035,AM0003,+X,!0000,FALSE,TRUE
#!1036,AM0004,+X,!0000,FALSE,TRUE
#!1037,AM0005,+X,!0000,FALSE,TRUE
#!1038,AM0006,+X,!0000,FALSE,TRUE
#!1039,CLOSESTOP,+X,!0000,FALSE,TRUE
#!103A,AM0007,+X,!0000,FALSE,TRUE
#!103B,AM0008,+X,!0000,FALSE,TRUE
#!103C,MC0001,+X,!0000,FALSE,TRUE
#!103D,MC0002,+X,!0000,FALSE,TRUE
#!103E,MC0003,+X,!0000,FALSE,TRUE
#!103F,MC0004,+X,!0000,FALSE,TRUE
#!1040,MC0005,+X,!0000,FALSE,TRUE
#!1041,MC0006,+X,!0000,FALSE,TRUE
#!1042,RUNR,+X,!0000,FALSE,TRUE
#!1043,RUNF,+X,!0000,FALSE,TRUE
#!1044,SHOT,+X,!0000,FALSE,TRUE
#!1045,IR1,+X,!0000,FALSE,TRUE
#!1046,TY0014,+X,!0000,FALSE,TRUE
#!1047,TY0013,+X,!0000,FALSE,TRUE
#!1048,D_01,+X,!0000,FALSE,TRUE
#!1049,MANRESET,+X,!0000,FALSE,TRUE
#!104A,ZEROPOS,+X,!0000,FALSE,TRUE
#!104B,LV0004,+X,!0000,FALSE,TRUE
#!104C,TY0002,+X,!0000,FALSE,TRUE
#!104D,TY0001,+X,!0000,FALSE,TRUE
#!104E,SAVEPOS,+X,!0000,FALSE,TRUE
#!104F,CNTRESET,+X,!0000,FALSE,TRUE
#!1050,DO_02,+X,!0000,FALSE,TRUE
#!1051,DA_02,+X,!0000,FALSE,TRUE
#!1052,RES,+X,!5001,FALSE,TRUE
#!1053,SL,+X,!5005,FALSE,TRUE
#!1054,AUTO_O,+X,!5007,FALSE,TRUE
#!1055,MODE_,+X,!5007,FALSE,TRUE
#!1056,AUTO_,+X,!5007,FALSE,TRUE
@ANALOGS,165
#!2012,MM_S,+X,!0000,I,
#!2013,SP50003,+X,!0000,F,
#!2014,SP60003,+X,!0000,F,
#!2015,V0001,+X,!0000,F,
#!2016,MON_S,+X,!0000,I,
#!2017,V0010,+X,!0000,F,
#!2018,V0002,+X,!0000,F,
#!2019,SP70003,+X,!0000,F,
#!201A,V0011,+X,!0000,F,
#!201B,V0003,+X,!0000,F,
#!201C,V0020,+X,!0000,F,
#!201D,V0012,+X,!0000,F,
#!201E,KK0003,+X,!0000,F,
#!201F,V0004,+X,!0000,F,
#!2020,V0021,+X,!0000,F,
#!2021,V0013,+X,!0000,F,
#!2022,V0005,+X,!0000,F,
#!2023,V0022,+X,!0000,F,
#!2024,V0014,+X,!0000,F,
#!2025,V0006,+X,!0000,F,
#!2026,V0023,+X,!0000,F,
#!2027,V0015,+X,!0000,F,
#!2028,V0007,+X,!0000,F,
#!2029,V0024,+X,!0000,F,
#!202A,V0016,+X,!0000,F,
#!202B,V0008,+X,!0000,F,
#!202C,V0017,+X,!0000,F,
#!202D,V0009,+X,!0000,F,
#!202E,V0018,+X,!0000,F,
#!202F,TD0001,+X,!0000,F,
#!2030,V0019,+X,!0000,F,
#!2031,TD0002,+X,!0000,F,
#!2032,TD0003,+X,!0000,F,
#!2033,TD0004,+X,!0000,F,
#!2034,K10003,+X,!0000,F,
#!2035,TD0005,+X,!0000,F,
#!2036,TD0006,+X,!0000,F,
#!2037,TD0007,+X,!0000,F,
#!2038,K20003,+X,!0000,F,
#!2039,TD0008,+X,!0000,F,
#!203A,FV0001,+X,!0000,I,
#!203B,FV0010,+X,!0000,I,
#!203C,FV0002,+X,!0000,I,
#!203D,FV0011,+X,!0000,I,
#!203E,FV0020,+X,!0000,I,
#!203F,FV0003,+X,!0000,I,
#!2040,K30003,+X,!0000,F,
#!2041,FV0012,+X,!0000,I,
#!2042,FV0021,+X,!0000,I,
#!2043,FV0004,+X,!0000,I,
#!2044,FV0013,+X,!0000,I,
#!2045,FV0022,+X,!0000,I,
#!2046,FV0005,+X,!0000,I,
#!2047,FV0014,+X,!0000,I,
#!2048,FV0023,+X,!0000,I,
#!2049,FV0006,+X,!0000,I,
#!204A,DD_S,+X,!0000,I,
#!204B,FV0015,+X,!0000,I,
#!204C,K40003,+X,!0000,F,
#!204D,FV0024,+X,!0000,I,
#!204E,FV0007,+X,!0000,I,
#!204F,FV0016,+X,!0000,I,
#!2050,FV0008,+X,!0000,I,
#!2051,C0001,+X,!0000,F,
#!2052,FV0017,+X,!0000,I,
#!2053,FV0009,+X,!0000,I,
#!2054,FV0018,+X,!0000,I,
#!2055,C0002,+X,!0000,F,
#!2056,K50003,+X,!0000,F,
#!2057,TI0001,+X,!0000,F,
#!2058,FV0019,+X,!0000,I,
#!2059,TI0002,+X,!0000,F,
#!205A,C0003,+X,!0000,F,
#!205B,TI0003,+X,!0000,F,
#!205C,C0004,+X,!0000,F,
#!205D,TI0004,+X,!0000,F,
#!205E,C0005,+X,!0000,F,
#!205F,TI0005,+X,!0000,F,
#!2060,SS_S,+X,!0000,I,
#!2061,TI0006,+X,!0000,F,
#!2062,C0006,+X,!0000,F,
#!2063,TI0007,+X,!0000,F,
#!2064,XMIN0001,+X,!0000,F,
#!2065,C0007,+X,!0000,F,
#!2066,XMIN0002,+X,!0000,F,
#!2067,XMIN0003,+X,!0000,F,
#!2068,TI0008,+X,!0000,F,
#!2069,XMIN0004,+X,!0000,F,
#!206A,XMIN0005,+X,!0000,F,
#!206B,XMIN0006,+X,!0000,F,
#!206C,XMAX0001,+X,!0000,F,
#!206D,XMIN0007,+X,!0000,F,
#!206E,XMAX0002,+X,!0000,F,
#!206F,XMIN0008,+X,!0000,F,
#!2070,C0008,+X,!0000,F,
#!2071,XMAX0003,+X,!0000,F,
#!2072,XMAX0004,+X,!0000,F,
#!2073,XMAX0005,+X,!0000,F,
#!2074,XMAX0006,+X,!0000,F,
#!2075,XMAX0007,+X,!0000,F,
#!2076,XMAX0008,+X,!0000,F,
#!2077,KPR0001,+X,!0000,F,
#!2078,KPR0002,+X,!0000,F,
#!2079,KPR0003,+X,!0000,F,
#!207A,KPR0004,+X,!0000,F,
#!207B,KPR0005,+X,!0000,F,
#!207C,KPR0006,+X,!0000,F,
#!207D,KPR0007,+X,!0000,F,
#!207E,KPR0008,+X,!0000,F,
#!207F,SP0001,+X,!0000,F,
#!2080,SP0002,+X,!0000,F,
#!2081,SP0003,+X,!0000,F,
#!2082,SP0004,+X,!0000,F,
#!2083,SP0005,+X,!0000,F,
#!2084,HH_S,+X,!0000,I,
#!2085,SP0006,+X,!0000,F,
#!2086,SP0007,+X,!0000,F,
#!2087,SP0008,+X,!0000,F,
#!2088,SP2003,+X,!0000,F,
#!2089,SPR0003,+X,!0000,F,
#!208A,YY_S,+X,!0000,I,
#!208B,CT0008,+X,!0000,I,
#!208C,CT0007,+X,!0000,I,
#!208D,CT0006,+X,!0000,I,
#!208E,CT0005,+X,!0000,I,
#!208F,CT0004,+X,!0000,I,
#!2090,CT0003,+X,!0000,I,
#!2091,CT0002,+X,!0000,I,
#!2092,CT0001,+X,!0000,I,
#!2093,LOCKPOS,+X,!0000,F,
#!2094,VC0003,+X,!0000,F,
#!2095,KI,+X,!0000,F,
#!2096,XT0008,+X,!0000,F,
#!2097,XT0007,+X,!0000,F,
#!2098,XT0006,+X,!0000,F,
#!2099,XT0005,+X,!0000,F,
#!209A,XT0004,+X,!0000,F,
#!209B,XT0003,+X,!0000,F,
#!209C,XT0002,+X,!0000,F,
#!209D,XT0001,+X,!0000,F,
#!209E,II,+X,!5001,I,
#!209F,ADR,+X,!5001,I,
#!20A0,TIME_S,+X,!0000,I,
#!20A1,AI2_LO,+X,!5002,I,
#!20A2,AI2_HI,+X,!5002,I,
#!20A3,V0000,+X,!5003,F,
#!20A4,TX0I,+X,!5003,F,
#!20A5,ISPR0003,+X,!5003,F,
#!20A6,IN2,+X,!5005,F,
#!20A7,IN1,+X,!5005,F,
#!20A8,MUX2,+X,!5005,F,
#!20A9,IN_,+X,!5006,F,
#!20AA,MAX_,+X,!5006,F,
#!20AB,OUT,+X,!5006,F,
#!20AC,FLIMIT,+X,!5006,F,
#!20AD,MIN_,+X,!5006,F,
#!20AE,KP_O,+X,!5007,F,
#!20AF,X0_O,+X,!5007,F,
#!20B0,SP_O,+X,!5007,F,
#!20B1,PV_O,+X,!5007,F,
#!20B2,KP_,+X,!5007,F,
#!20B3,X0_,+X,!5007,F,
#!20B4,SP_,+X,!5007,F,
#!20B5,PV_,+X,!5007,F,
#!20B6,P0_,+X,!5007,F,
@TIMERS,2
#!3001,TKI,+X,!0000
#!3002,ZDKI,+X,!0000
@MESSAGES,0
@USP,4
#!B001,RETAIN_X
#!B002,TO_A4_20
#!B003,A4_20_TO
#!B004,WD_LONG
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@END_SYMBOLS
|
8e6cf0cd9296fd99521faa4d4b6a1f8afb0be31d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1991/CH10/EX10.2/2.sce | 621deafa5a7021e46b4e4013d50261ec7e8f4d98 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 335 | sce | 2.sce | clc
clear
//input
la=0.535*10^-6//wavelength
nb=1.51//refractive index
dmin=34 //minimum deviation
//calculation
l=la/nb//wavelength of light
x=(nb-cosd(dmin/2))/sind(dmin/2)//refractive index of prism
y=acotd(x)
z=y*2
//output
printf("the wavelength of light is %3.3e m",l)
printf("\nthe angle of prism is %3.0d deg",z)
|
efeccc7ac7d0fd5e27c52c52b8abada1be7ed605 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2594/CH1/EX1.18/Ex1_18.sce | 807d780b8b2395a624147973fd8ade3127bf5125 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 263 | sce | Ex1_18.sce | clc
a=5.43*10^-8
disp("a = "+string(a)+"cm") //initializing value of lattice constant.
N=8
disp("N = "+string(N)) //initializing value of no. of atoms in a unit cell.
ns =(N/(a^3))
disp("Number of atom in the cm^3,ns =(N/(a^3))= "+string(ns))//calculation
|
f626ea880fa354482f0b362f38f97ba5a1e2e0fd | 449d555969bfd7befe906877abab098c6e63a0e8 | /3532/CH5/EX5.7.2/Ex5_9.sce | 3c7585937f9413771e2c6323c7c306d99ef3fcc2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,582 | sce | Ex5_9.sce | clc
clear
mprintf('Mechanical vibrations by G.K.Grover\n Example 5.7.2\n')
//given data
W1=220*2*%pi/60//vibrating frequency at 220 RPM (in rad/sec)
W2=W1//frequency to which the spring mass system is tuned to.
M2=1//mass in spring mass system in kgs
N1=188//first resonant freq of spring mass system in cpm
N2=258//second resonant freq of spring mass system in cpm
//u=ratio of absorber mass to main mass i.e M2/M1
//calculations
K2=M2*W2^2
Wn1=N1*2*%pi/60//first resonant freq of spring mass system in rad/sec
Wn2=N2*2*%pi/60//second resonant freq of spring mass system in rad/sec
//case 1
W=Wn1
x1=(W/W2)
u1=[x1^2-1]^2/x1^2//from Eqn 5.7.9,Sec 5.7.1.
//case 2
W=Wn2
x2=(W/W2)
u2=[x2^2-1]^2/x2^2//from Eqn 5.7.9,Sec 5.7.1.
//therefore
u=(u1+u2)/2//which is equal to M2/M1
M1=M2/u// mass of main system in kgs
K1=K2/u//stiffness of main system in N/m
//now
Wn21=150*2*%pi/60//new first resonant frequency in rad/sec
Wn22=310*2*%pi/60//new second resonant frequency in rad/sec
W=Wn21
x1=(W/W2)
u1=[x1^2-1]^2/x1^2//from Eqn 5.7.9,Sec 5.7.1.
//case 2
W=Wn22
x2=(W/W2)
u2=[x2^2-1]^2/x2^2//from Eqn 5.7.9,Sec 5.7.1.
//choosing the higher value
if u1>u2 then
u=u1
else
u=u2
end
M3=M1*u// mass of main system in kgs
K3=K1*u//stiffness of main system in N/m
//output
mprintf(' The mass of main system required is %4.4f kgs\n stiffness of main system reqired is %5.5f N/m\n If the resonant frequencies lie outside the range of 150 to 310 rpm then\n mass of main system is %4.4f kgs\n stiffness of main system is %5.5f N/m',M1,K1,M3,K3)
|
f0cb7c0cb7754c53ade063babb08337565052a1b | 717ddeb7e700373742c617a95e25a2376565112c | /1445/CH8/EX8.33/Ex8_33.sce | aaf8cdd40969733e8c79b2ac14eff3701b554a44 | [] | no_license | appucrossroads/Scilab-TBC-Uploads | b7ce9a8665d6253926fa8cc0989cda3c0db8e63d | 1d1c6f68fe7afb15ea12fd38492ec171491f8ce7 | refs/heads/master | 2021-01-22T04:15:15.512674 | 2017-09-19T11:51:56 | 2017-09-19T11:51:56 | 92,444,732 | 0 | 0 | null | 2017-05-25T21:09:20 | 2017-05-25T21:09:19 | null | UTF-8 | Scilab | false | false | 1,501 | sce | Ex8_33.sce | //CHAPTER 8- DIRECT CURRENT MACHINES
//Example 33
disp("CHAPTER 8");
disp("EXAMPLE 33");
//230 V DC series motor
//VARIABLE INITIALIZATION
v_t=230; //in Volts
N1=1500; //in rpm
I_a1=20; //in Amperes
r_a=0.3; //armature resistance in Ohms
r_se=0.2; //series field resistance in Ohms
//SOLUTION
//solution (a)
//for series motors, phi dir prop Ia
// therefore, Te dir prop Ia^2
// at starting Eb=0 and Vt= Ia1.(r_a+r_se+r_ext)
//rearranging for r_ext, we get
// r_ext = (Vt-Ia1.(r_a+r_se))/ Ia1
E_b=0; //back emf at starting
nr1=v_t-I_a1*(r_a+r_se); //value of numerator in the expression for r_ext
r_ext=nr1/I_a1;
disp(sprintf("(a) At starting, the resistance that must be added is %.0f Ω",r_ext));
//solution (b)
//Ia2=Ia1=20 A
//as phi dir prop Ia, we get
//Eb2/Eb1 = phi2.n2/ phi1. N1 = Ia2.N2/Ia1.N1
//=> Eb2/Eb1=N2/N1 as Ia2=Ia1 (eq 1)
I_a2=I_a1;
N2=1000;
ratio=N2/N1;
// now, we know that Eb1=Vt-Ia1.(r_a+r_se) and
// Eb2 = Vt - Ia2.(r_a+r_se+r_ext)
//substituting values of Eb1 and Eb2 in eq 1 above, we get
//n2/n1 = (Vt - Ia2.(r_a+r_se+r_ext))/ (Vt-Ia1.(r_a+r_se))
//since ia1=Ia2 (rated torque)
//we get
//r_ext = (N2/N1).(v_t-I_a1*(r_a+r_se))/Ia2 -(v_t-I_a2*(r_a+r_se))/Ia2
//
nr2=v_t-I_a2*(r_a+r_se);
r_ext=((ratio*nr1)-nr2)/(-I_a2);
disp(sprintf("(b) At 1000 rpm, the resistance that must be added is %.3f Ω",r_ext));
//END
|
59d23a49e2fcf99111ebfb64f949169bbcee5407 | a3821dccf6d2cf3720781d6ed6b66c49e03cdab4 | /Source/WebContent/TypeScript/Api/Model.tst | b6229a9a537af39ed04f1f7bdeac3809ac70c493 | [] | no_license | backlof/Imglib | 9cfb1047b766f9e05f69f3b32eea1c4e463187f0 | f7d16e0be0e286dde7cb62a6576f73015cbba397 | refs/heads/master | 2021-05-07T06:58:05.503869 | 2018-02-07T12:48:29 | 2018-02-07T12:48:29 | 111,833,115 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 497 | tst | Model.tst | ${
using Typewriter.Extensions.Types;
Template(Settings settings)
{
settings.IncludeProject("Host");
settings.OutputFilenameFactory = (file) => {
return file.Name.Replace(".cs", ".ts");
};
}
IEnumerable<Type> DefinedTypes(Class c)
{
return c.Methods.Where(m => m.Type.Unwrap().IsDefined).Select(m => m.Type.Unwrap());
}
}namespace Api {$Classes(x => x.Namespace == "Imglib.Host.Controller.Model")[
export interface $Name$TypeParameters {$Properties[
$name: $Type;]
}
]} |
d39623d1ed23fe6f35694c58ebbdad82b0016049 | 449d555969bfd7befe906877abab098c6e63a0e8 | /167/CH2/EX2.17/ex17.sce | f03cf072af23047bd758e6d5546df9a1f87bbfc0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 549 | sce | ex17.sce | //example 17
//Cost Savings Associated with High-Efficiency motors
clear
clc
n1=89 //efficiency of first motor
n2=93.2 //efficiency of second motor
c=0.08 //cost of electricity in $/kWh
p=60*0.7457 //rated power in kW
h=3500 //operating hours per year
e=p*h*(1/(n1/100)-1/(n2/100)) //energy savings
s=e*c //cost savings
t=640/s //simple payback period in year
printf("\n Hence,the amount of energy saved is = %.0f kWh/year. \n",e);
printf("\n The money saved is =%.0f $/year. \n",s);
printf("\n The payback period is=%.2f years.\n",t); |
175b8a974c0d94e50607a303801a8f82c7ab2644 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1223/CH3/EX3.6/Ex3_6.sce | 548fa58fe672167bc2006c2610085cf7f28a4f2d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 711 | sce | Ex3_6.sce | clear;
clc;
//Example 3.6
Vbe=0.7;
b=75;
//Q point values::
//using KVL eq around the B-E loop
//Vbb=Ib*Re+Vbe+Ie*Re
//assuming transistor is in forward biased mode we can write Ie=(1+b)*Ib
Vbb=6;
Rb=25;//KOhm
Re=0.6;//KOhm
Ib=(Vbb-Vbe)/(Rb+(1+b)*Re);
printf('\nbase current=%f mA\n',Ib)
Ic=b*Ib;
printf('\ncollector current=%0.2f mA\n',Ic)
Ie=(1+b)*Ib;
printf('\nemitter current=%0.2f mA\n',Ie)
Vcc=12;
Rc=0.4;
Vce=Vcc-Ic*Rc-Ie*Re;
printf('\ncollector emitter voltage=%0.2f V\n',Vce)
//load line::
//using KVL law around C-E loop
//Vce=Vcc-(Ic*(Rc+((1+B)/B)*Re));
Ic=[0,12,5.63]
Vce=12-Ic*1;
xset('window',1)
plot2d(Vce,Ic,style=3)
title("load line")
xlabel("Vce")
ylabel("Ic")
|
9bb6d7778761ce353990d5acd4d954f2463480ba | 449d555969bfd7befe906877abab098c6e63a0e8 | /2102/CH3/EX3.4/exa_3_4.sce | 2cdc135396941955448131df7ad0d0b712e1f6f7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 546 | sce | exa_3_4.sce | // Exa 3.4
clc;
clear;
close;
// Given data
Vd_1= 0.3;// in V
V_T= 25;// in mV
V_T= V_T*10^-3;// in V
// when Id_1= 1 mA
Id_1= 1;// in mA
Id_1=Id_1*10^-3;// in A
// Formula Id_1= Io*[%e^(Vd/(n*V_T))-1]= Io*[e^(Vd/(n*V_T))]
// Id_1= Io*[e^(Vd_1/(n*V_T))] (i)
// when Id_2= 200 mA
Id_2= 200;// in mA
Id_2=Id_2*10^-3;// in A
Vd_2= 0.45;// in V
// Id_2= Io*[e^(Vd_2/(n*V_T))] (ii)
// Dividing (ii) by (i), we have
n= (Vd_2-Vd_1)/(log(Id_2/Id_1)*V_T);
disp(n,"The value of the constant for the diode is ")
|
a7d16d3d0e9d048a1b3f2c0720f33bdc59e7d84b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2870/CH4/EX4.3/Ex4_3.sce | e3ff94ceae33adbabe3d2b660a6d8766b9f094f6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 199 | sce | Ex4_3.sce | clc;clear;
//Example 4.3
//given data
P1=100;
V1=0.4;
V2=0.1;
//calculations
//for isothermal W = P1*V1* ln(V2/V1)
W=P1*V1*log(V2/V1);
disp(W,'the work done during this process in kJ')
|
63c497fb14c6b5d6512ca02beb0f55ce93770148 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2561/CH13/EX13.1/Ex13_1.sce | 579ca5526cab8ba1670c1c438f673ecd4f5c97d9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,184 | sce | Ex13_1.sce | //Ex13_1
clc
VT=26*10^(-3)
disp("VT= "+string(VT)+" volts") // Thermal voltage
R1=5*10^(3)
disp("R1= "+string(R1)+ " ohm") // resistance
Iso=1*10^(-10)
disp(" Iso = "+string(Iso)+" ampere") // Scale factor (as current)directly proportional to cross-section area of EBJ
disp("part(i)")
vs=1*10^(-3)
disp("vs= "+string(vs)+" volts") // Input voltage1
vo=-VT*[log(vs/(Iso*R1))]
disp("vo=-VT*[log(vs/(Iso*R1))]= "+string(vo)+" volts") // Output voltage of Log OP-AMP for input1 i.e vs = 1 mV
disp("part(ii)")
vs=10*10^(-3)
disp("vs= "+string(vs)+" volts") // Input voltage2
vo=-VT*[log(vs/(Iso*R1))]
disp("vo=-VT*[log(vs/(Iso*R1))]= "+string(vo)+" volts") // Output voltage of Log OP-AMP for input1 i.e vs = 10 mV
disp("part(iii)")
vs=100*10^(-3)
disp("vs= "+string(vs)+" volts") // Input voltage3
vo=-VT*[log(vs/(Iso*R1))]
disp("vo=-VT*[log(vs/(Iso*R1))]= "+string(vo)+" volts") // Output voltage of Log OP-AMP for input1 i.e vs = 100 mV
disp("part(iv)")
vs=1
disp("vs= "+string(vs)+" volts") // Input voltage4
vo=-VT*[log(vs/(Iso*R1))]
disp("vo=-VT*[log(vs/(Iso*R1))]= "+string(vo)+" volts") // Output voltage of Log OP-AMP for input1 i.e vs = 1V
|
f5817923f593262eb1e7d3e66735e39a3ce14092 | 449d555969bfd7befe906877abab098c6e63a0e8 | /377/CH15/EX15.5/15_5.sce | bc1784cf228cdbab7cc0f6c8d3136bb715bc5b8b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 126 | sce | 15_5.sce | disp("λ=c*h/Eg");
h=6.626*10^-34;
c=2.998*10^8;
E=1.43*1.6*10^-19;
d=c*h/E;
printf('\nThe value of λ is %fμm',d*10^6); |
0fce9c880a3c16f84b9e1a6cc890913ee7c5c4b4 | 52cbfb547384bc9612dc59f5280971ed5a701a9d | /Discrete Step Signal.sce | bb5bc0311b24b2c49ab94f5ae96835331a89cebd | [] | no_license | allenbenny419/Scilab-Codes | efa5402bea6d03088f77dafcf9ed87bd1f93e915 | 48109cd70c8a66a56e87f88152e866565dd52362 | refs/heads/main | 2023-06-23T21:10:24.227426 | 2021-07-21T11:09:15 | 2021-07-21T11:09:15 | 388,086,261 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 127 | sce | Discrete Step Signal.sce | clear;
clc;
t =0:1:6;
u = ones ( t ) .*( t >=0) ;
plot2d3(t,u);
xtitle('Discrete Step Signal')
xlabel('x')
ylabel('y')
|
6652771c1ab39ce67751227c3ff53f617564c60f | 449d555969bfd7befe906877abab098c6e63a0e8 | /773/CH6/EX6.01/6_01.sci | 3d1daae05afc43586a93bfe07e565b770d0139b8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 241 | sci | 6_01.sci | //syslin//
exec series.sce;
s=%s;
sys1=syslin('c',(s+3)/(s+1))
sys2=syslin('c',0.2/(s+2))
sys3=syslin('c',50/(s+4))
sys4=syslin('c',10/(s))
a=series(sys1,sys2);
b=series(a,sys3);
y=series(b,sys4);
y=simp(y);
disp(y,"C(s)/R(s)=")
|
07bbf118f17ca00805ce24a814ef699a81f0fcce | 449d555969bfd7befe906877abab098c6e63a0e8 | /1304/CH1/EX1.2/1_2.sce | 505a170c6a1d7d321e4397e97e3cb443f9e1f6ce | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 600 | sce | 1_2.sce | clear;
clc;
printf("\t\t\tExample Number 1.2\n\n\n");
// heat loss through a glass window
// illustration1.2
// solution
L = 0.015; // [m]Thickness of glass window
dT = 20-(-5);//[degree celsius] temperature difference
A= 0.5;//[m^2] surface area of the glass window
//calculating rate of heat flow across the brick wall
k=0.78;//[W/m degree celcius] thermal conductivity of the glass window
q = (k*A*dT)/(1000*L);//[kW] rate of heat loss
t=2;//[h] time in hours
H=q*t;//[kW.h] total heat loss in time t
printf("Total heat loss across the glass window in 2 hours is %f kW.H",H);
|
3213edebc80abc35730571572a872e3fc4bcf818 | 449d555969bfd7befe906877abab098c6e63a0e8 | /343/CH1/EX1.64/ex_64.sce | b5e4e791fe0f67169222f817ad39b6e3afd880d7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 563 | sce | ex_64.sce | R1=8; //Assigning values to parameters
R2=4;
R3=12;
R4=12;
R5=34;
R6=30;
R7=30;
R8=17;
R9=13;
V=180;
R10=R1+R2;
R11=R8+R9;
Ra=(R10*R3)/(R3+R4+R10); //Converting Delta to Star
Rb=(R3*R4)/(R3+R4+R10);
Rc=(R10*R4)/(R3+R4+R10);
Rx=(R6*R7)/(R6+R7+R11); //Converting Delta to Star
Ry=(R7*R11)/(R6+R7+R11);
Rz=(R6*R11)/(R6+R7+R11);
Rp=R5+Ra+Rx;
Rm=Rc+Ry;
Rn=(Rp*Rm)/(Rp+Rm);
Rth=Rb+Rz+Rn;
I=V/(Rp+Rc+Rz);
Vth=Rp*I
Rl=10;
Il=Vth/(Rl+Rth);
disp("Amperes",Il,"Current in 10 Ohm load using Thevenin theorem is") |
266d7a9003e033a5a98cea4698b9d6c0b10a727a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1163/CH23/EX23.2/example_23_2.sce | f4276352d58bc286eb24442eef810cd722d81a69 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 327 | sce | example_23_2.sce | clear;
clc;
disp("--------------Example 23.2----------------")
printf("The datagram has only 7 bytes of data. Because the number of bytes of data is odd, padding is added for checksum calculation.\nThe pseudoheader as well as the padding will be dropped when the user datagram is delivered to IP."); // display the example
|
18176a7eadb3a2d4c02a65611b66e9a98d5c1a9e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1571/CH6/EX6.2/Chapter6_Example2.sce | 0c00d2e0b2d16835f73b8a2e3a59421902388e9a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 380 | sce | Chapter6_Example2.sce | clc
clear
//INPUT
vv=1674;//volume of vapour in cc
vl=1;//volume of liquid in cc
p=760;//pressure of steam and water in mm
t=373;//temperature in K
p1=27.12;//superincumbent pressure in mm
//CALCULATIONS
v=vv-vl;//change in volume
l=(v*p1*t*0.024203/(p));//latent heat of vapourisation in cal
//OUTPUT
mprintf('the latent heat of vapourisation is %3.1f cal',l)
|
1660f845e5f4946622a7242051ba117a9a9c5916 | 189317284c359f59c635a4494221a1e29a603c9a | /Montante.sce | 28d9786c54fc73c65dbe64451759864eecd29561 | [] | no_license | sdkvictor/Scilab-Programs | 6f316a0d143ce6e754a13858e3e6c30ae6c8d99c | 7aae73a5996535406311027efa8c4e3e46f45640 | refs/heads/master | 2020-04-25T05:22:36.591339 | 2019-02-25T17:20:36 | 2019-02-25T17:20:36 | 172,540,701 | 0 | 0 | null | 2019-02-25T16:19:25 | 2019-02-25T16:19:25 | null | UTF-8 | Scilab | false | false | 179 | sce | Montante.sce | function X = Montante(MAT)
pivote = 0
for(i = 1:size(MAT,1)
end
endfunction
MAT = input("Da la matriz")
X = Montante(MAT)
disp(X)
|
61963fd56cc380471dab7a4abb399501554a8129 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2333/CH6/EX6.3/3.sce | 702125cdf20323b5f9ed411c41355f594238d6dd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 663 | sce | 3.sce | clc
// Given that
mu2 = 1.59 // refractive index for cladding
NA = 0.2 // Numerical aperture
mu_water = 1.33 // refractive index of water
del_mu = 0.025 // relative refractive index
// Sample Problem 3 on page no. 256
printf("\n # PROBLEM 3 # \n")
mu1 = sqrt(NA^2+mu2^2) // refractive index of cladding
NA_w = sqrt(mu1^2 - mu2^2)/mu_water // Numerical aperture for water
theta_0 = asin(NA_w) * (180 / %pi) // Acceptance angle of fiber in water
printf("\n Standard formula used \n theta_c = asin(mu2 / mu1) * (180 / pi). \n NA = sqrt(mu1^2 - mu2^2). \n theta_0 = asin(NA) * (180 / pi). \n")
printf("\n Acceptance angle of fiber in water is %f degree.",theta_0)
|
6f6cd036730bf8b24c10c52bf6907235bbbc879e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1787/CH2/EX2.16/Exa2_16.sce | 6f4e6960410adf9221cab7ae002f49491b3dbe10 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 180 | sce | Exa2_16.sce | //Exa 2.16
clc;
clear;
close;
//given data
e=1.6*10^-19;//in coulamb
n=2.05*10^22;//in m^-3
RH=1/(n*e);//in m^3-coulamb^-1
disp(RH,"Hall coefficient in m^3-coulamb^-1 : "); |
091ae6a272072de605d04dd04659f0a06371ed17 | 449d555969bfd7befe906877abab098c6e63a0e8 | /374/CH3/EX3.4/34.sci | 1852ad81c326195745b5e57ae57df13b183a7880 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 542 | sci | 34.sci | //chapter 3 example 4//
clc
clear
//core radius of monomode fibre=a,core refractive index=n1,refractive index difference between core and cladding=d,operating wavelength=l,critical radius of curvature=Rc,cutoff wavelength=Lc//
a=4*(10^-6);//in mts//
n1=1.500;
d=0.003;
l=1.55*(10^-6);//in mts//
Lc=(((2*%pi*a*n1)*(sqrt(2*d)))/2.405)*(10^6);//cutoff wavelength//
printf("\n cutoff wavelength=%f*(10^-6)m.\n",Lc);
lc1=Lc*(10^-6);
h=(2.748-(0.996*(l/lc1)));
k=h^-3;
v=(20*l)/(d^1.5);
Rc=k*v;
printf("\n critical radius=%f .\n",k); |
678bb6fc7072aad09bbb57e15e90964839408f4f | 717ddeb7e700373742c617a95e25a2376565112c | /213/CH15/EX15.6/15_6.sce | 1dd040dda23ef45a7bbebcf49e8fc12423240ab6 | [] | no_license | appucrossroads/Scilab-TBC-Uploads | b7ce9a8665d6253926fa8cc0989cda3c0db8e63d | 1d1c6f68fe7afb15ea12fd38492ec171491f8ce7 | refs/heads/master | 2021-01-22T04:15:15.512674 | 2017-09-19T11:51:56 | 2017-09-19T11:51:56 | 92,444,732 | 0 | 0 | null | 2017-05-25T21:09:20 | 2017-05-25T21:09:19 | null | UTF-8 | Scilab | false | false | 443 | sce | 15_6.sce | //To find inertia force
clc
//Given:
D=175/1000, L=200/1000, r=L/2, l=400/1000 //m
N=500 //rpm
mR=180 //kg
//Solution:
//Calculating the angular speed of the crank
omega=2*%pi*N/60 //rad/s
//Analytical method:
//Calculating the ratio of lengths of connecting rod and crank
n=l/r
//Calculating the inertia force
FI=mR*omega^2*r*(cosd(theta)+cosd(2*theta)/n)/1000 //kN
//Results:
printf("\n\n Inertia force, FI = %.2f kN.\n\n",FI) |
82795b8bf8eca5c7bee836f48f8ddb9c6050edbc | 449d555969bfd7befe906877abab098c6e63a0e8 | /3131/CH5/EX5.4/5_4.sce | aacab62ed174f26bce0b4a21a60c96cc1270c844 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 155 | sce | 5_4.sce | clear all; clc;
disp("Ex 5_4")
disp("Please refer figure 5-10c for the free body diagram of the unloaded platform suspended off the edge of the oil rig.")
|
9e9a0b791af17727a94d7f2b55a8cf748564bc0c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1883/CH5/EX5.7.2/Example5_16.sce | 04bb431563e32ea7b7c19eb81175487fea55daba | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 775 | sce | Example5_16.sce | //Chapter-5,Example5_7_2,pg 5-27
delta_x=10*10^-9 //position is located within this distance
h=6.63*10^-34 //plancks constant
delta_px=h/(4*%pi*delta_x) //By Heisenberg's uncertainty priciple
E=1.6*10^-16 //Energy associated with an electron
m=9.1*10^-31 //mass of an electron
p=sqrt(2*m*E) //momentum of an electron
percentage=delta_px*100/p //percentage uncertainty in momentum
printf("\npercentage uncertainty in momentum of an electron = %.4f \n",percentage)
|
49c09f94a3b8f05db6c10be951529728b3f1b9fa | 717ddeb7e700373742c617a95e25a2376565112c | /503/CH9/EX9.2/ch9_2.sci | 956c0e8164283c811daa0aec60c1e36766e969da | [] | no_license | appucrossroads/Scilab-TBC-Uploads | b7ce9a8665d6253926fa8cc0989cda3c0db8e63d | 1d1c6f68fe7afb15ea12fd38492ec171491f8ce7 | refs/heads/master | 2021-01-22T04:15:15.512674 | 2017-09-19T11:51:56 | 2017-09-19T11:51:56 | 92,444,732 | 0 | 0 | null | 2017-05-25T21:09:20 | 2017-05-25T21:09:19 | null | UTF-8 | Scilab | false | false | 637 | sci | ch9_2.sci | //to calculate torque,resitance to be added to rotor ckt
clc;
f=50;
P=6;
n_s=120*f/P;
w_s=2*%pi*n_s/60;
n=875;
s_maxT=(n_s-n)/n_s;
R_2=.25;
X_2=R_2/s_maxT;
T_max=10;
//v=V/a
v=sqrt((T_max*w_s*X_2)/(3*.5));
T=((3)*v^2*(R_2/s))/(w_s*((R_2/s)^2+(X_2)^2));
disp(T,'torque(Nm)');
//from eqn(T_start/T_max)=(R2+Rext)*(X2/.5)/((R2+Rext)^2+X2^2)
//after solving
//Rt^2-6.67*Rt+4=0
function [x]=quad(a,b,c)
d=sqrt(b^2-4*a*c);
x1=(-b+d)/(2*a);
x2=(-b-d)/(2*a);
if(x1>x2)
x=x2;
else
x=x1;
end
endfunction
Rt=quad(1,-6.67,4);
r2=.25;
disp(Rt-r2,'external resistance(ohm)');
|
c8a9d85827da3e5a24978e6de679660ad3f10d39 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3792/CH8/EX8.9/Ex8_9.sce | 7dd8ff5826a3631eb5e0087f37c03045c4de9aff | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,080 | sce | Ex8_9.sce | // SAMPLE PROBLEM 8/9
clc;funcprot(0);
// Given data
m=50;// The mass of the cylinder in kg
r=0.5;// The cylinder radius in m
k=75;// The spring constant in N/m
c=10;// The damping coefficient in N.s/m
x=-0.2;// m
t=0;// s
g=9.81;// The acceleration due to gravity in m/s^2
// Calculation
omega_n=sqrt((2/3)*(k/m));// The undamped natural frequency in rad/s
eta=(1/3)*(c/(m*omega_n));// The damping ratio
omega_d=omega_n*(sqrt(1-eta^2));// The damped natural frequency in rad/s
tau_d=(2*%pi)/omega_d;// The period of the damped system in s
function[X]=Candpsi(y)
X(1)=(y(1)*sin(y(2)))-(-0.2);
X(2)=((-0.0667*y(1)*sin(y(2)))+((0.998*y(1)*cos(y(2)))))-0;
endfunction
y=[0.1 1.1];
z=fsolve(y,Candpsi);
C=z(1);// m
psi=z(2);// rad
printf("\n(a)The undamped natural frequency,omega_n=%1.0f rad/s \n(b)The damping ratio,eta=%0.4f \n(c)The damped natural frequency,omega_d=%0.3f rad/s \n(d)The period of the damped system,tau=%1.2f s \nThus, the motion is given by x=%0.3fexp(-%0.4f*t)sin(%0.3ft+%1.3f)m",omega_n,eta,omega_d,tau_d,C,eta,omega_d,psi);
|
ea6e2eec9636f960566563e3e2b39e2946b5ccc3 | 36c5f94ce0d09d8d1cc8d0f9d79ecccaa78036bd | /AYYY LMAO.sce | e1681a5aac16667d764e36ed9a1878642b51f32f | [] | no_license | Ahmad6543/Scenarios | cef76bf19d46e86249a6099c01928e4e33db5f20 | 6a4563d241e61a62020f76796762df5ae8817cc8 | refs/heads/master | 2023-03-18T23:30:49.653812 | 2020-09-23T06:26:05 | 2020-09-23T06:26:05 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 90,227 | sce | AYYY LMAO.sce | Name=AYYY LMAO
PlayerCharacters=Strafer
BotCharacters=Watcher Bot Long Strafes.bot
IsChallenge=true
Timelimit=60.0
PlayerProfile=Strafer
AddedBots=Watcher Bot Long Strafes.bot;Watcher Bot Long Strafes.bot;Watcher Bot Long Strafes.bot
PlayerMaxLives=0
BotMaxLives=0;0;0
PlayerTeam=1
BotTeams=2;2;2
MapName=mwmod.map
MapScale=2.0
BlockProjectilePredictors=true
BlockCheats=true
InvinciblePlayer=false
InvincibleBots=false
Timescale=1.0
BlockHealthbars=false
TimeRefilledByKill=0.0
ScoreToWin=1000.0
ScorePerDamage=1.0
ScorePerKill=0.0
ScorePerMidairDirect=0.0
ScorePerAnyDirect=0.0
ScorePerTime=0.0
ScoreLossPerDamageTaken=0.0
ScoreLossPerDeath=0.0
ScoreLossPerMidairDirected=0.0
ScoreLossPerAnyDirected=0.0
ScoreMultAccuracy=false
ScoreMultDamageEfficiency=false
ScoreMultKillEfficiency=false
GameTag=FPS, Flick, Track
WeaponHeroTag=Manwing
DifficultyTag=3
AuthorsTag=faiNt`
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=true
BlockFCT=false
Description=Shoot the heads... Ayyy lmao!
GameVersion=1.0.7.2
ScorePerDistance=0.0
[Aim Profile]
Name=At Feet
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=-200.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Aim Profile]
Name=Low Skill At Feet
MinReactionTime=0.35
MaxReactionTime=0.45
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=20.0
TrackSpeed=3.0
TrackError=5.0
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=60.0
ShootFOV=25.0
VerticalAimOffset=-200.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Aim Profile]
Name=Low Skill
MinReactionTime=0.35
MaxReactionTime=0.45
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=20.0
TrackSpeed=3.0
TrackError=5.0
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=60.0
ShootFOV=25.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Aim Profile]
Name=Default
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Bot Profile]
Name=Watcher Bot Long Strafes
DodgeProfileNames=Oppose Long Strafe;Long Strafe FB;Long Strafe
DodgeProfileWeights=3.0;1.0;1.0
DodgeProfileMaxChangeTime=2.0
DodgeProfileMinChangeTime=1.5
WeaponProfileWeights=1.0;1.0;2.0;1.0;0.0;0.0;0.0;0.0
AimingProfileNames=At Feet;Low Skill At Feet;Low Skill;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=Watcher
SeeThroughWalls=false
NoDodging=false
NoAiming=false
[Character Profile]
Name=Strafer
MaxHealth=300.0
WeaponProfileNames=Manwing;LG;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=80.000
HeadshotOnly=false
DamageKnockbackFactor=4.0
MovementType=Base
MaxSpeed=700.0
MaxCrouchSpeed=500.0
Acceleration=5000.0
AirAcceleration=16000.0
Friction=4.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=true
CanJumpFromCrouch=false
EnemyBodyColor=X=0.771 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=1.000 Y=0.888 Z=0.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cylindrical
MainBBHeight=320.0
MainBBRadius=58.0
MainBBHasHead=false
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=320.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
[Character Profile]
Name=Watcher
MaxHealth=600.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.1
MaxRespawnDelay=5.0
StepUpHeight=45.0
CrouchHeightModifier=0.69
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=20.000
HeadshotOnly=true
DamageKnockbackFactor=3.0
MovementType=Base
MaxSpeed=700.0
MaxCrouchSpeed=270.0
Acceleration=10000.0
AirAcceleration=16000.0
Friction=100.0
BrakingFrictionFactor=0.0
JumpVelocity=300.0
Gravity=1.0
AirControl=0.16
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=true
CanJumpFromCrouch=false
EnemyBodyColor=X=0.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=0.888 Z=0.000
TeamBodyColor=X=1.000 Y=0.888 Z=0.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cylindrical
MainBBHeight=100.0
MainBBRadius=26.0
MainBBHasHead=true
MainBBHeadRadius=20.0
MainBBHeadOffset=40.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=160.0
ProjBBRadius=26.0
ProjBBHasHead=false
ProjBBHeadRadius=20.0
ProjBBHeadOffset=15.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.1
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
[Dodge Profile]
Name=Oppose Long Strafe
MaxTargetDistance=10000.0
MinTargetDistance=60.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.25
MaxLRTimeChange=2.0
MinFBTimeChange=0.25
MaxFBTimeChange=0.5
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.18
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=1.0
DamageReactionResetTimer=0.1
JumpFrequency=0.0
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.18
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.8
BlockedMovementReactionMin=0.05
BlockedMovementReactionMax=0.1
[Dodge Profile]
Name=Long Strafe FB
MaxTargetDistance=100000.0
MinTargetDistance=60.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.25
MaxLRTimeChange=2.0
MinFBTimeChange=0.25
MaxFBTimeChange=0.5
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.18
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.0
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.8
BlockedMovementReactionMin=0.05
BlockedMovementReactionMax=0.1
[Dodge Profile]
Name=Long Strafe
MaxTargetDistance=25000.0
MinTargetDistance=60.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.25
MaxLRTimeChange=2.0
MinFBTimeChange=0.8
MaxFBTimeChange=1.0
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.0
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.8
BlockedMovementReactionMin=0.05
BlockedMovementReactionMax=0.1
[Weapon Profile]
Name=Manwing
Type=Hitscan
ShotsPerClick=1
DamagePerShot=200.0
KnockbackFactor=0.1
TimeBetweenShots=0.29
Pierces=false
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=8
AmmoPerShot=1
ReloadTimeFromEmpty=2.1
ReloadTimeFromPartial=2.1
DamageFalloffStartDistance=5000.0
DamageFalloffStopDistance=5000.0
DamageAtMaxRange=200.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.5
WallParticleEffect=None
HitParticleEffect=None
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-80.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.1
RecoilNegatable=true
DecalType=1
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=8
CancelReloadOnKill=true
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Overwatch
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,0.0
SpreadSCA=1.0,1.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,1.0,-1.0,0.0
SpreadSSH=1.0,1.0,-1.0,0.0
SpreadSCH=1.0,1.0,-1.0,0.0
SpreadMSH=1.0,1.0,-1.0,0.0
SpreadMCH=1.0,1.0,-1.0,0.0
MaxRecoilUp=4.0
MinRecoilUp=4.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.025
TimeToRecoilReset=0.29
AAMode=2
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=0.5
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=true
TriggerBotDelay=0.01
TriggerBotFOV=0.1
StickyLock=false
HeadLock=true
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=LG
Type=Hitscan
ShotsPerClick=1
DamagePerShot=1.0
KnockbackFactor=0.0
TimeBetweenShots=0.046
Pierces=false
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=1.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=7.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.05
WallParticleEffect=None
HitParticleEffect=None
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-80.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=false
DecalType=0
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=true
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=1.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.1
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Clamped Horizontal
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,0.0
SpreadSCA=1.0,1.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,1.0,-1.0,0.0
SpreadSSH=1.0,1.0,-1.0,0.0
SpreadSCH=1.0,1.0,-1.0,0.0
SpreadMSH=1.0,1.0,-1.0,0.0
SpreadMCH=1.0,1.0,-1.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Map Data]
reflex map version 8
global
entity
type WorldSpawn
brush
vertices
880.000000 -0.000000 -496.000000
880.000000 0.000000 -512.000000
880.000000 288.000000 -512.000000
880.000000 288.000000 -496.000000
688.000000 288.000000 -512.000000
688.000000 -0.000000 -512.000000
688.000000 -0.000000 -496.000000
688.000000 288.000000 -496.000000
faces
0.000000 0.000000 2.000000 36.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 36.000000 -0.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 2.000000 36.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 36.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
864.000000 -0.000000 512.000000
864.000000 0.000000 496.000000
864.000000 288.000000 496.000000
864.000000 288.000000 512.000000
688.000000 288.000000 496.000000
688.000000 -0.000000 496.000000
688.000000 0.000000 512.000000
688.000000 288.000000 512.000000
faces
0.000000 0.000000 2.000000 36.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 36.000000 -0.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 2.000000 36.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 36.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
192.000000 -0.000000 496.000000
192.000000 0.000000 -496.000000
192.000000 16.000000 -496.000000
192.000000 16.000000 496.000000
176.000000 16.000000 -496.000000
176.000000 -0.000000 -496.000000
176.000000 0.000000 496.000000
176.000000 16.000000 496.000000
faces
0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
192.000000 16.000000 496.000000
192.000000 16.000000 -496.000000
192.000000 240.000000 -496.000000
192.000000 240.000000 496.000000
176.000000 240.000000 -496.000000
176.000000 16.000000 -496.000000
176.000000 16.000000 496.000000
176.000000 240.000000 496.000000
faces
0.000000 -6.000000 2.000000 28.000000 -0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -6.000000 2.000000 28.000000 -0.000000 4 5 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 -6.000000 2.000000 28.000000 -0.000000 7 6 0 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -6.000000 2.000000 28.000000 -0.000000 1 5 4 2 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 2.000000 2.000000 -0.000000 2 4 7 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 2.000000 2.000000 -0.000000 6 5 1 0 0x00000000 internal/editor/textures/editor_clip
brush
vertices
864.000000 -0.000000 384.000000
864.000000 0.000000 -384.000000
864.000000 144.000000 -384.000000
864.000000 144.000000 384.000000
688.000000 144.000000 -384.000000
688.000000 -0.000000 -384.000000
688.000000 -0.000000 384.000000
688.000000 144.000000 384.000000
faces
0.000000 0.000000 96.000000 18.000000 0.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 96.000000 18.000000 -0.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 2.666660 18.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 2.666660 18.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 2.666660 96.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 2.666660 96.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
450.000000 -0.000000 496.000000
450.000000 0.000000 384.000000
450.000000 16.000000 384.000000
450.000000 16.000000 496.000000
432.000000 16.000000 384.000000
432.000000 -0.000000 384.000000
432.000000 0.000000 496.000000
432.000000 16.000000 496.000000
faces
0.000000 0.000000 2.000000 2.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 -0.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 2.285720 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 2.285720 2.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 2.285720 2.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 2.285720 2.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
469.000000 -0.000000 496.000000
469.000000 0.000000 384.000000
469.000000 16.000000 384.000000
469.000000 32.000000 400.000000
469.000000 32.000000 496.000000
450.000000 32.000000 400.000000
450.000000 16.000000 384.000000
450.000000 -0.000000 384.000000
450.000000 0.000000 496.000000
450.000000 32.000000 496.000000
faces
0.000000 -1.000000 3.000000 4.571420 -0.000000 0 1 2 3 4 0x00000000 __TB_empty
0.000000 -1.000000 3.000000 4.571420 -0.000000 5 6 7 8 9 0x00000000 __TB_empty
0.000000 0.000000 1.142858 4.571420 0.000000 9 8 0 4 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 -0.000000 6 5 3 2 0x00000000 __TB_empty
0.000000 0.000000 4.000000 2.000000 -0.000000 1 7 6 2 0x00000000 __TB_empty
0.000000 0.000000 1.142858 3.000000 -0.000000 3 5 9 4 0x00000000 __TB_empty
0.000000 0.000000 1.142858 3.000000 0.000000 8 7 1 0 0x00000000 __TB_empty
brush
vertices
487.000000 -0.000000 496.000000
487.000000 0.000000 384.000000
487.000000 48.000000 384.000000
487.000000 48.000000 496.000000
469.000000 48.000000 384.000000
469.000000 -0.000000 384.000000
469.000000 0.000000 496.000000
469.000000 48.000000 496.000000
faces
0.000000 0.000000 3.000000 6.571420 -0.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 3.000000 6.571420 -0.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 1.142858 6.571420 0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 1.142858 6.571420 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 1.142858 3.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 1.142858 3.000000 0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
656.000000 -0.000000 496.000000
656.000000 0.000000 384.000000
656.000000 96.000000 384.000000
656.000000 96.000000 496.000000
523.000000 96.000000 384.000000
523.000000 -0.000000 384.000000
523.000000 0.000000 496.000000
523.000000 96.000000 496.000000
faces
0.000000 0.000000 3.000000 14.571420 -0.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 3.000000 12.571420 -0.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 4.142860 12.571420 0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 4.142860 12.571420 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 4.142860 3.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 4.142860 3.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
469.000000 -0.000000 -384.000000
469.000000 0.000000 -496.000000
469.000000 32.000000 -496.000000
469.000000 32.000000 -400.000000
469.000000 16.000000 -384.000000
450.000000 32.000000 -400.000000
450.000000 32.000000 -496.000000
450.000000 -0.000000 -496.000000
450.000000 -0.000000 -384.000000
450.000000 16.000000 -384.000000
faces
0.000000 -1.000000 3.000000 -4.571420 180.000000 0 1 2 3 4 0x00000000 __TB_empty
0.000000 -1.000000 3.000000 -4.571420 180.000000 5 6 7 8 9 0x00000000 __TB_empty
0.000000 0.000000 2.000000 -2.000000 -0.000000 3 5 9 4 0x00000000 __TB_empty
0.000000 0.000000 4.000000 2.000000 -0.000000 9 8 0 4 0x00000000 __TB_empty
0.000000 0.000000 1.142858 4.571420 -0.000000 1 7 6 2 0x00000000 __TB_empty
0.000000 0.000000 1.142858 -3.000000 -0.000000 2 6 5 3 0x00000000 __TB_empty
0.000000 0.000000 1.142858 -3.000000 0.000000 8 7 1 0 0x00000000 __TB_empty
brush
vertices
450.000000 -0.000000 -384.000000
450.000000 0.000000 -496.000000
450.000000 16.000000 -496.000000
450.000000 16.000000 -384.000000
432.000000 16.000000 -496.000000
432.000000 -0.000000 -496.000000
432.000000 0.000000 -384.000000
432.000000 16.000000 -384.000000
faces
0.000000 0.000000 2.000000 -2.000000 180.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 -2.000000 180.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 2.285720 2.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 2.285720 2.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 2.285720 -2.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 2.285720 -2.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
487.000000 -0.000000 -384.000000
487.000000 0.000000 -496.000000
487.000000 48.000000 -496.000000
487.000000 48.000000 -384.000000
469.000000 48.000000 -496.000000
469.000000 -0.000000 -496.000000
469.000000 0.000000 -384.000000
469.000000 48.000000 -384.000000
faces
0.000000 0.000000 3.000000 -6.571420 180.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 3.000000 -6.571420 180.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 1.142858 6.571420 -0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 1.142858 6.571420 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 1.142858 -3.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 1.142858 -3.000000 0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
656.000000 -0.000000 -384.000000
656.000000 0.000000 -496.000000
656.000000 96.000000 -496.000000
656.000000 96.000000 -384.000000
523.000000 96.000000 -496.000000
523.000000 -0.000000 -496.000000
523.000000 0.000000 -384.000000
523.000000 96.000000 -384.000000
faces
0.000000 0.000000 3.000000 -14.571420 180.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 3.000000 -12.571420 180.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 4.142860 12.571420 -0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 4.142860 12.571420 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 4.142860 -3.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 4.142860 -3.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
864.000000 -0.000000 -384.000000
864.000000 0.000000 -496.000000
864.000000 96.000000 -496.000000
864.000000 96.000000 -384.000000
656.000000 96.000000 -496.000000
656.000000 -0.000000 -496.000000
656.000000 -0.000000 -384.000000
656.000000 96.000000 -384.000000
faces
0.000000 0.000000 14.000000 12.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 14.000000 12.000000 -0.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 3.250000 12.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 3.250000 12.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 3.250000 14.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 3.250000 14.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
880.000000 -0.000000 496.000000
880.000000 0.000000 384.000000
880.000000 96.000000 384.000000
880.000000 96.000000 496.000000
672.000000 96.000000 384.000000
672.000000 -0.000000 384.000000
672.000000 0.000000 496.000000
672.000000 96.000000 496.000000
faces
0.000000 1.000000 14.000000 -12.000000 180.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 1.000000 14.000000 -12.000000 180.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 1.000000 3.250000 12.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 1.000000 3.250000 12.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 3.250000 -14.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 3.250000 -14.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
688.000000 -0.000000 384.000000
688.000000 0.000000 -384.000000
688.000000 96.000000 -384.000000
688.000000 96.000000 384.000000
464.000000 96.000000 -384.000000
464.000000 -0.000000 -384.000000
464.000000 0.000000 384.000000
464.000000 96.000000 384.000000
faces
0.000000 0.000000 96.000000 12.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 96.000000 12.000000 -0.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 96.000000 12.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 96.000000 12.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 2.000000 96.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 96.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
864.000000 128.000000 496.000000
864.000000 128.000000 384.000000
864.000000 144.000000 384.000000
864.000000 144.000000 496.000000
736.000000 144.000000 384.000000
736.000000 128.000000 384.000000
736.000000 128.000000 496.000000
736.000000 144.000000 496.000000
faces
0.000000 0.000000 7.000000 2.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 7.000000 2.000000 -0.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 16.000000 2.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 16.000000 2.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 16.000000 7.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 16.000000 7.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
688.000000 96.000000 496.000000
688.000000 96.000000 384.000000
720.000000 112.000000 384.000000
720.000000 112.000000 496.000000
736.000000 128.000000 384.000000
736.000000 128.000000 496.000000
736.000000 144.000000 384.000000
736.000000 144.000000 496.000000
704.000000 128.000000 384.000000
704.000000 128.000000 496.000000
656.000000 96.000000 384.000000
656.000000 96.000000 496.000000
faces
0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 0.000000 2 4 5 3 0x00000000 __TB_empty
0.000000 0.000000 1.555556 2.000000 -0.000000 4 6 7 5 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 0.000000 6 8 9 7 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 0.000000 8 10 11 9 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 -0.000000 5 7 9 11 0 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 -0.000000 1 10 8 6 4 2 0x00000000 __TB_empty
0.000000 0.000000 4.000000 1.750000 -0.000000 11 10 1 0 0x00000000 __TB_empty
brush
vertices
688.000000 -0.000000 -496.000000
688.000000 0.000000 -512.000000
688.000000 288.000000 -512.000000
688.000000 288.000000 -496.000000
176.000000 288.000000 -512.000000
176.000000 -0.000000 -512.000000
176.000000 0.000000 -496.000000
176.000000 288.000000 -496.000000
faces
0.000000 0.000000 2.000000 36.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 36.000000 0.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 2.000000 36.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 36.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
688.000000 -0.000000 512.000000
688.000000 0.000000 496.000000
688.000000 288.000000 496.000000
688.000000 288.000000 512.000000
176.000000 288.000000 496.000000
176.000000 -0.000000 496.000000
176.000000 0.000000 512.000000
176.000000 288.000000 512.000000
faces
0.000000 0.000000 2.000000 36.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 36.000000 0.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 2.000000 36.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 36.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
-32.000000 -0.000000 512.000000
-32.000000 0.000000 -512.000000
-32.000000 112.000000 -512.000000
-32.000000 112.000000 512.000000
-256.000000 112.000000 -512.000000
-256.000000 -0.000000 -512.000000
-256.000000 0.000000 512.000000
-256.000000 112.000000 512.000000
faces
0.000000 0.000000 128.000000 14.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 128.000000 14.000000 -0.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 6.666660 14.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 6.666660 14.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 6.666660 128.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 6.666660 128.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
-256.000000 112.000000 -512.000000
-256.000000 112.000000 512.000000
-256.000000 160.000000 512.000000
-256.000000 160.000000 -512.000000
-240.000000 160.000000 512.000000
-240.000000 112.000000 512.000000
-240.000000 112.000000 -512.000000
-240.000000 160.000000 -512.000000
faces
0.000000 0.000000 2.000000 6.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 6.000000 -0.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 2.000000 6.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 6.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
258.000000 400.000000 -380.000000
258.000000 400.000000 -572.000000
258.000000 452.000000 -572.000000
258.000000 452.000000 -380.000000
242.000000 452.000000 -572.000000
242.000000 400.000000 -572.000000
242.000000 400.000000 -380.000000
242.000000 452.000000 -380.000000
faces
0.000000 -6.000000 2.000000 28.000000 -0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -6.000000 2.000000 28.000000 -0.000000 4 5 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 -6.000000 2.000000 28.000000 -0.000000 7 6 0 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -6.000000 2.000000 28.000000 -0.000000 1 5 4 2 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 2.000000 2.000000 -0.000000 2 4 7 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 2.000000 2.000000 -0.000000 6 5 1 0 0x00000000 internal/editor/textures/editor_clip
brush
vertices
316.000000 10.000000 140.000000
358.000000 0.000000 154.000000
342.000000 10.000000 112.000000
298.000000 0.000000 154.000000
358.000000 0.000000 94.000000
298.000000 0.000000 94.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 1 3 5 0x00000000
brush
vertices
316.000000 10.000000 266.000000
358.000000 0.000000 280.000000
342.000000 10.000000 238.000000
298.000000 0.000000 280.000000
358.000000 0.000000 220.000000
298.000000 0.000000 220.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 1 3 5 0x00000000
brush
vertices
296.000000 0.000000 496.000000
296.000000 0.000000 -496.000000
296.000000 236.000000 -496.000000
296.000000 236.000000 496.000000
292.000000 236.000000 -496.000000
292.000000 0.000000 -496.000000
292.000000 0.000000 496.000000
292.000000 236.000000 496.000000
faces
0.000000 -6.000000 2.000000 28.000000 -0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -6.000000 2.000000 28.000000 -0.000000 4 5 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 -6.000000 2.000000 28.000000 -0.000000 7 6 0 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -6.000000 2.000000 28.000000 -0.000000 1 5 4 2 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 2.000000 2.000000 -0.000000 2 4 7 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 2.000000 2.000000 -0.000000 6 5 1 0 0x00000000 internal/editor/textures/editor_clip
brush
vertices
364.000000 0.000000 494.000000
364.000000 0.000000 -498.000000
364.000000 192.000000 -498.000000
364.000000 192.000000 494.000000
360.000000 192.000000 -498.000000
360.000000 0.000000 -498.000000
360.000000 0.000000 494.000000
360.000000 192.000000 494.000000
faces
0.000000 -6.000000 2.000000 28.000000 -0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -6.000000 2.000000 28.000000 -0.000000 4 5 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 -6.000000 2.000000 28.000000 -0.000000 7 6 0 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -6.000000 2.000000 28.000000 -0.000000 1 5 4 2 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 2.000000 2.000000 -0.000000 2 4 7 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 2.000000 2.000000 -0.000000 6 5 1 0 0x00000000 internal/editor/textures/editor_clip
brush
vertices
432.000000 0.000000 496.000000
432.000000 0.000000 -496.000000
432.000000 172.000000 -496.000000
432.000000 172.000000 496.000000
428.000000 172.000000 -496.000000
428.000000 0.000000 -496.000000
428.000000 0.000000 496.000000
428.000000 172.000000 496.000000
faces
0.000000 -6.000000 2.000000 28.000000 -0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -6.000000 2.000000 28.000000 -0.000000 4 5 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 -6.000000 2.000000 28.000000 -0.000000 7 6 0 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -6.000000 2.000000 28.000000 -0.000000 1 5 4 2 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 2.000000 2.000000 -0.000000 2 4 7 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 2.000000 2.000000 -0.000000 6 5 1 0 0x00000000 internal/editor/textures/editor_clip
brush
vertices
292.000000 0.000000 132.000000
292.000000 52.000000 132.000000
192.000015 52.000000 132.000061
192.000000 0.000000 -55.999931
192.000015 0.000000 132.000061
291.999939 0.000000 -55.999931
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 5 0x00000000
brush
vertices
192.000000 0.000000 132.000000
192.000000 52.000000 132.000000
292.000000 52.000000 132.000000
292.000000 0.000000 320.000000
292.000000 0.000000 132.000000
192.000000 0.000000 320.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 5 0x00000000
brush
vertices
428.000000 0.000000 56.000000
364.000000 0.000000 -38.000000
428.000000 19.999998 -38.000000
364.000000 0.000000 56.000000
428.000000 0.000000 -38.000000
364.000000 19.999998 -38.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
364.000000 0.000000 -132.000000
428.000000 0.000000 -38.000061
364.000031 19.999998 -38.000092
428.000031 0.000000 -131.999969
364.000031 0.000000 -38.000092
428.000000 19.999998 -38.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
292.000000 0.000000 -394.000000
192.000000 0.000000 -496.000000
292.000000 50.000000 -496.000000
192.000000 0.000000 -394.000000
292.000000 0.000000 -496.000000
192.000000 50.000000 -496.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
480.000000 96.000000 336.000000
480.000000 96.000000 -496.000000
480.000000 192.000000 -496.000000
480.000000 192.000000 336.000000
464.000000 192.000000 -496.000000
464.000000 96.000000 -496.000000
464.000000 96.000000 336.000000
464.000000 192.000000 336.000000
faces
1.000000 -22.000000 84.000000 12.000000 -0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
1.000000 -22.000000 84.000000 12.000000 -0.000000 4 5 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 -22.000000 2.000000 12.000000 -0.000000 7 6 0 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -22.000000 2.000000 12.000000 -0.000000 1 5 4 2 0x00000000 internal/editor/textures/editor_clip
0.000000 -1.000000 2.000000 84.000000 -0.000000 2 4 7 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -1.000000 2.000000 84.000000 -0.000000 6 5 1 0 0x00000000 internal/editor/textures/editor_clip
brush
vertices
523.000000 -0.000000 -384.000000
523.000000 0.000000 -496.000000
523.000000 96.000000 -496.000000
523.000000 96.000000 -384.000000
505.000000 96.000000 -496.000000
505.000000 -0.000000 -496.000000
505.000000 0.000000 -384.000000
505.000000 96.000000 -384.000000
faces
0.000000 0.000000 3.000000 -10.571420 180.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 3.000000 -10.571420 180.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 1.142858 10.571420 -0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 1.142858 10.571420 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 1.142858 -3.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 1.142858 -3.000000 0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
480.000000 156.000000 496.000000
488.000000 156.000000 496.000000
488.000000 156.000000 -496.000000
480.000000 156.000000 -496.000000
480.000000 96.000000 496.000000
488.000000 96.000000 496.000000
488.000000 96.000000 -496.000000
480.000000 96.000000 -496.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
523.000000 -0.000000 496.000000
523.000000 0.000000 384.000000
523.000000 96.000000 384.000000
523.000000 96.000000 496.000000
505.000000 96.000000 384.000000
505.000000 -0.000000 384.000000
505.000000 0.000000 496.000000
505.000000 96.000000 496.000000
faces
0.000000 0.000000 3.000000 10.571420 -0.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 3.000000 10.571420 -0.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 1.142858 10.571420 0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 1.142858 10.571420 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 1.142858 3.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 1.142858 3.000000 0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
505.000000 0.000000 496.000000
505.000000 0.000000 384.000000
505.000000 96.000000 384.000000
505.000000 96.000000 496.000000
487.000000 96.000000 384.000000
487.000000 -0.000000 384.000000
487.000000 0.000000 496.000000
487.000000 96.000000 496.000000
faces
0.000000 0.000000 3.000000 8.571420 -0.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 3.000000 8.571420 -0.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 1.142858 8.571420 0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 1.142858 8.571420 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 1.142858 3.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 1.142858 3.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
505.000000 -0.000000 -384.000000
505.000000 0.000000 -496.000000
505.000000 96.000000 -496.000000
505.000000 96.000000 -384.000000
487.000000 96.000000 -496.000000
487.000000 -0.000000 -496.000000
487.000000 0.000000 -384.000000
487.000000 96.000000 -384.000000
faces
0.000000 0.000000 3.000000 -8.571420 180.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 3.000000 -8.571420 180.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 1.142858 8.571420 -0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 1.142858 8.571420 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 1.142858 -3.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 1.142858 -3.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
556.000000 96.000000 496.000000
556.000000 96.000000 -496.000000
556.000000 288.000000 -496.000000
556.000000 288.000000 496.000000
552.000000 288.000000 -496.000000
552.000000 96.000000 -496.000000
552.000000 96.000000 496.000000
552.000000 288.000000 496.000000
faces
0.000000 -6.000000 2.000000 28.000000 -0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -6.000000 2.000000 28.000000 -0.000000 4 5 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 -6.000000 2.000000 28.000000 -0.000000 7 6 0 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -6.000000 2.000000 28.000000 -0.000000 1 5 4 2 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 2.000000 2.000000 -0.000000 2 4 7 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 2.000000 2.000000 -0.000000 6 5 1 0 0x00000000 internal/editor/textures/editor_clip
brush
vertices
626.000000 98.000000 496.000000
626.000000 98.000000 -496.000000
626.000000 290.000000 -496.000000
626.000000 290.000000 496.000000
622.000000 290.000000 -496.000000
622.000000 98.000000 -496.000000
622.000000 98.000000 496.000000
622.000000 290.000000 496.000000
faces
0.000000 -6.000000 2.000000 28.000000 -0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -6.000000 2.000000 28.000000 -0.000000 4 5 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 -6.000000 2.000000 28.000000 -0.000000 7 6 0 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -6.000000 2.000000 28.000000 -0.000000 1 5 4 2 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 2.000000 2.000000 -0.000000 2 4 7 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 2.000000 2.000000 -0.000000 6 5 1 0 0x00000000 internal/editor/textures/editor_clip
brush
vertices
768.000000 144.000000 -462.000000
704.000000 144.000000 -496.000000
768.000000 174.000000 -496.000000
704.000000 144.000000 -462.000000
768.000000 144.000000 -496.000000
704.000000 174.000000 -496.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
770.000000 144.000000 500.000000
770.000000 144.000000 -488.000000
770.000000 334.000000 -488.000000
770.000000 334.000000 500.000000
768.000000 334.000000 -488.000000
768.000000 144.000000 -488.000000
768.000000 144.000000 500.000000
768.000000 334.000000 500.000000
faces
0.000000 -56.000000 84.000000 12.000000 -0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -56.000000 84.000000 12.000000 -0.000000 4 5 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 -56.000000 2.000000 12.000000 -0.000000 7 6 0 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -56.000000 2.000000 12.000000 -0.000000 1 5 4 2 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 2.000000 84.000000 -0.000000 2 4 7 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 2.000000 84.000000 -0.000000 6 5 1 0 0x00000000 internal/editor/textures/editor_clip
brush
vertices
704.000000 144.000000 492.000000
704.000000 144.000000 -496.000000
704.000000 352.000000 -496.000000
704.000000 352.000000 492.000000
702.000000 352.000000 -496.000000
702.000000 144.000000 -496.000000
702.000000 144.000000 492.000000
702.000000 352.000000 492.000000
faces
0.000000 -56.000000 84.000000 12.000000 -0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -56.000000 84.000000 12.000000 -0.000000 4 5 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 -56.000000 2.000000 12.000000 -0.000000 7 6 0 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -56.000000 2.000000 12.000000 -0.000000 1 5 4 2 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 2.000000 84.000000 -0.000000 2 4 7 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 2.000000 84.000000 -0.000000 6 5 1 0 0x00000000 internal/editor/textures/editor_clip
brush
vertices
704.000000 144.000000 -426.000000
768.000061 144.000000 -391.999939
704.000000 174.000000 -392.000000
768.000061 144.000000 -425.999939
704.000000 144.000000 -392.000000
768.000061 174.000000 -391.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
768.000000 144.000000 -328.000000
704.000000 144.000000 -362.000000
768.000000 174.000000 -362.000000
704.000000 144.000000 -328.000000
768.000000 144.000000 -362.000000
704.000000 174.000000 -362.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
704.000000 174.000000 -362.000000
768.000000 174.000000 -362.000000
768.000000 174.000000 -392.000000
704.000000 174.000000 -392.000000
704.000000 144.000000 -362.000000
768.000000 144.000000 -362.000000
768.000000 144.000000 -392.000000
704.000000 144.000000 -392.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
768.000000 144.000000 -194.000000
704.000000 144.000000 -228.000000
768.000000 174.000000 -228.000000
704.000000 144.000000 -194.000000
768.000000 144.000000 -228.000000
704.000000 174.000000 -228.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
704.000000 174.000000 -228.000000
768.000000 174.000000 -228.000000
768.000000 174.000000 -258.000000
704.000000 174.000000 -258.000000
704.000000 144.000000 -228.000000
768.000000 144.000000 -228.000000
768.000000 144.000000 -258.000000
704.000000 144.000000 -258.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
704.000000 144.000000 -292.000000
768.000061 144.000000 -257.999939
704.000000 174.000000 -258.000000
768.000061 144.000000 -291.999939
704.000000 144.000000 -258.000000
768.000061 174.000000 -257.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
704.000000 144.000000 -164.000000
768.000061 144.000000 -129.999939
704.000000 174.000000 -130.000000
768.000061 144.000000 -163.999939
704.000000 144.000000 -130.000000
768.000061 174.000000 -129.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
704.000000 174.000000 -100.000000
768.000000 174.000000 -100.000000
768.000000 174.000000 -130.000000
704.000000 174.000000 -130.000000
704.000000 144.000000 -100.000000
768.000000 144.000000 -100.000000
768.000000 144.000000 -130.000000
704.000000 144.000000 -130.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
768.000000 144.000000 -66.000000
704.000000 144.000000 -100.000000
768.000000 174.000000 -100.000000
704.000000 144.000000 -66.000000
768.000000 144.000000 -100.000000
704.000000 174.000000 -100.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
704.000000 144.000000 -66.000000
768.000061 144.000000 -31.999939
704.000000 174.000000 -32.000000
768.000061 144.000000 -65.999939
704.000000 144.000000 -32.000000
768.000061 174.000000 -31.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
704.000000 174.000000 -2.000000
768.000000 174.000000 -2.000000
768.000000 174.000000 -32.000000
704.000000 174.000000 -32.000000
704.000000 144.000000 -2.000000
768.000000 144.000000 -2.000000
768.000000 144.000000 -32.000000
704.000000 144.000000 -32.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
768.000000 144.000000 32.000000
704.000000 144.000000 -2.000000
768.000000 174.000000 -2.000000
704.000000 144.000000 32.000000
768.000000 144.000000 -2.000000
704.000000 174.000000 -2.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
704.000000 144.000000 52.000000
768.000061 144.000000 86.000061
704.000000 174.000000 86.000000
768.000061 144.000000 52.000061
704.000000 144.000000 86.000000
768.000061 174.000000 86.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
704.000000 174.000000 116.000000
768.000000 174.000000 116.000000
768.000000 174.000000 86.000000
704.000000 174.000000 86.000000
704.000000 144.000000 116.000000
768.000000 144.000000 116.000000
768.000000 144.000000 86.000000
704.000000 144.000000 86.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
768.000000 144.000000 150.000000
704.000000 144.000000 116.000000
768.000000 174.000000 116.000000
704.000000 144.000000 150.000000
768.000000 144.000000 116.000000
704.000000 174.000000 116.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
704.000000 144.000000 208.000000
768.000061 144.000000 242.000061
704.000000 174.000000 242.000000
768.000061 144.000000 208.000061
704.000000 144.000000 242.000000
768.000061 174.000000 242.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
704.000000 174.000000 272.000000
768.000000 174.000000 272.000000
768.000000 174.000000 242.000000
704.000000 174.000000 242.000000
704.000000 144.000000 272.000000
768.000000 144.000000 272.000000
768.000000 144.000000 242.000000
704.000000 144.000000 242.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
768.000000 144.000000 306.000000
704.000000 144.000000 272.000000
768.000000 174.000000 272.000000
704.000000 144.000000 306.000000
768.000000 144.000000 272.000000
704.000000 174.000000 272.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
704.000000 144.000000 398.000000
768.000061 144.000000 432.000061
704.000000 174.000000 432.000000
768.000061 144.000000 398.000061
704.000000 144.000000 432.000000
768.000061 174.000000 432.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
704.000000 174.000000 462.000000
768.000000 174.000000 462.000000
768.000000 174.000000 432.000000
704.000000 174.000000 432.000000
704.000000 144.000000 462.000000
768.000000 144.000000 462.000000
768.000000 144.000000 432.000000
704.000000 144.000000 432.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
768.000000 144.000000 496.000000
704.000000 144.000000 462.000000
768.000000 174.000000 462.000000
704.000000 144.000000 496.000000
768.000000 144.000000 462.000000
704.000000 174.000000 462.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
626.000000 146.000000 214.000000
688.000000 146.000000 214.000000
626.000000 96.000000 134.000000
626.000000 96.000000 214.000000
688.000000 96.000000 134.000000
688.000000 96.000000 214.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 4 5 0x00000000
brush
vertices
688.000000 146.000000 296.000000
626.000061 146.000000 296.000000
688.000000 96.000000 376.000000
688.000000 96.000000 296.000000
626.000000 96.000000 376.000000
626.000061 96.000000 296.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 4 5 0x00000000
brush
vertices
626.000000 118.000000 504.000000
688.000000 118.000000 504.000000
688.000000 118.000000 340.000000
626.000000 118.000000 340.000000
626.000000 116.000000 504.000000
688.000000 116.000000 504.000000
688.000000 116.000000 340.000000
626.000000 116.000000 340.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
688.000000 144.000000 496.000000
690.000000 144.000000 496.000000
690.000000 144.000000 384.000000
688.000000 144.000000 384.000000
688.000000 118.000000 496.000000
690.000000 118.000000 496.000000
690.000000 118.000000 384.000000
688.000000 118.000000 384.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
626.000000 146.000000 -246.000000
688.000000 146.000000 -246.000000
626.000000 96.000000 -326.000000
626.000000 96.000000 -246.000000
688.000000 96.000000 -326.000000
688.000000 96.000000 -246.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 4 5 0x00000000
brush
vertices
626.000000 146.000000 -164.000000
688.000000 146.000000 -164.000000
688.000000 146.000000 -246.000000
626.000000 146.000000 -246.000000
626.000000 96.000000 -164.000000
688.000000 96.000000 -164.000000
688.000000 96.000000 -246.000000
626.000000 96.000000 -246.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
688.000000 146.000000 -164.000000
626.000061 146.000000 -164.000000
688.000000 96.000000 -84.000000
688.000000 96.000000 -164.000000
626.000000 96.000000 -84.000000
626.000061 96.000000 -164.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 4 5 0x00000000
brush
vertices
864.000000 128.000000 -384.000000
864.000000 128.000000 -496.000000
864.000000 144.000000 -496.000000
864.000000 144.000000 -384.000000
704.000000 144.000000 -496.000000
704.000000 128.000000 -496.000000
704.000000 128.000000 -384.000000
704.000000 144.000000 -384.000000
faces
0.000000 0.000000 7.000000 2.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 7.000000 2.000000 -0.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 16.000000 2.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 16.000000 2.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 16.000000 7.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 16.000000 7.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
688.000000 144.000000 -384.000000
690.000000 144.000000 -384.000000
690.000000 144.000000 -498.000000
688.000000 144.000000 -498.000000
688.000000 96.000000 -384.000000
690.000000 96.000000 -384.000000
690.000000 96.000000 -498.000000
688.000000 96.000000 -498.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
552.000000 96.000000 170.000000
552.000000 122.000000 250.000000
552.000000 96.000000 250.000000
488.000000 96.000000 250.000000
488.000000 96.000000 170.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 3 4 0x00000000
brush
vertices
552.000000 96.000000 310.000000
488.000000 96.000000 250.000000
552.000000 122.000000 250.000000
552.000000 96.000000 250.000000
488.000000 96.000000 310.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 0 4 0x00000000
brush
vertices
488.000000 98.000000 -14.000000
488.000000 124.000000 -94.000031
488.000000 98.000000 -94.000031
552.000000 98.000000 -94.000031
551.999878 98.000000 -13.999969
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 3 4 0x00000000
brush
vertices
488.000000 98.000000 -153.999878
552.000000 98.000000 -94.000031
488.000000 124.000000 -94.000031
488.000000 98.000000 -94.000031
551.999878 98.000000 -154.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 0 4 0x00000000
brush
vertices
626.000000 146.000000 296.000000
688.000000 146.000000 296.000000
688.000000 146.000000 214.000000
626.000000 146.000000 214.000000
626.000000 96.000000 296.000000
688.000000 96.000000 296.000000
688.000000 96.000000 214.000000
626.000000 96.000000 214.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
864.000000 144.000000 190.000000
770.000000 144.000000 80.000000
864.000000 196.000000 80.000000
770.000000 144.000000 190.000000
864.000000 144.000000 80.000000
770.000000 196.000000 80.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
770.000000 196.000000 80.000000
864.000000 196.000000 80.000000
864.000000 196.000000 -136.000000
770.000000 196.000000 -136.000000
770.000000 144.000000 80.000000
864.000000 144.000000 80.000000
864.000000 144.000000 -136.000000
770.000000 144.000000 -136.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
770.000000 144.000000 -246.000000
864.000000 144.000000 -136.000000
770.000000 196.000000 -136.000000
864.000000 144.000000 -246.000000
770.000000 144.000000 -136.000000
864.000000 196.000000 -136.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
880.000000 -0.000000 496.000000
880.000000 0.000000 -496.000000
880.000000 288.000000 -496.000000
880.000000 288.000000 496.000000
864.000000 288.000000 -496.000000
864.000000 -0.000000 -496.000000
864.000000 -0.000000 496.000000
864.000000 288.000000 496.000000
faces
0.000000 0.000000 1.968254 36.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 1.968254 36.000000 -0.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 2.000000 36.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 36.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 2.000000 1.968254 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 1.968254 -0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
866.000000 146.000000 492.000000
866.000000 146.000000 -496.000000
866.000000 402.000000 -496.000000
866.000000 402.000000 492.000000
864.000000 402.000000 -496.000000
864.000000 146.000000 -496.000000
864.000000 146.000000 492.000000
864.000000 402.000000 492.000000
faces
0.000000 -56.000000 84.000000 12.000000 -0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -56.000000 84.000000 12.000000 -0.000000 4 5 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 -56.000000 2.000000 12.000000 -0.000000 7 6 0 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -56.000000 2.000000 12.000000 -0.000000 1 5 4 2 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 2.000000 84.000000 -0.000000 2 4 7 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 2.000000 84.000000 -0.000000 6 5 1 0 0x00000000 internal/editor/textures/editor_clip
brush
vertices
296.000000 20.000000 -198.000000
360.000000 20.000000 -198.000000
360.000000 20.000000 -254.000000
296.000000 20.000000 -254.000000
296.000000 0.000000 -198.000000
360.000000 0.000000 -198.000000
360.000000 0.000000 -254.000000
296.000000 0.000000 -254.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
360.000000 0.000000 -142.000000
296.000000 0.000000 -198.000000
360.000000 20.000000 -198.000000
296.000000 0.000000 -142.000000
360.000000 0.000000 -198.000000
296.000000 20.000000 -198.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
296.000000 0.000000 -310.000000
360.000000 0.000000 -253.999969
295.999969 20.000000 -253.999969
359.999969 0.000000 -309.999969
295.999969 0.000000 -253.999969
360.000000 20.000000 -253.999969
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
556.000000 126.000000 246.000000
622.000000 126.000000 246.000000
622.000000 126.000000 106.000000
556.000000 126.000000 106.000000
556.000000 96.000000 246.000000
622.000000 96.000000 246.000000
622.000000 96.000000 106.000000
556.000000 96.000000 106.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
556.000000 126.000000 -198.000000
622.000000 126.000000 -198.000000
622.000000 126.000000 -338.000000
556.000000 126.000000 -338.000000
556.000000 96.000000 -198.000000
622.000000 96.000000 -198.000000
622.000000 96.000000 -338.000000
556.000000 96.000000 -338.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
622.000000 96.000000 105.999985
622.000000 126.000000 105.999985
556.000000 126.000000 106.000000
556.000000 96.000000 56.000000
556.000000 96.000000 106.000000
621.999939 96.000000 55.999973
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 5 0x00000000
brush
vertices
556.000000 96.000000 246.000000
556.000000 126.000000 246.000000
622.000000 126.000000 246.000000
622.000000 96.000000 296.000000
622.000000 96.000000 246.000000
556.000000 96.000000 296.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 5 0x00000000
brush
vertices
556.000000 96.000000 -198.000000
556.000000 126.000000 -198.000000
622.000000 126.000000 -198.000061
621.999939 96.000000 -148.000000
622.000000 96.000000 -198.000061
556.000000 96.000000 -148.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 5 0x00000000
brush
vertices
622.000000 96.000000 -338.000000
622.000000 126.000000 -338.000000
556.000000 126.000000 -337.999878
556.000000 96.000000 -388.000000
556.000000 96.000000 -337.999878
622.000000 96.000000 -388.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 5 0x00000000
brush
vertices
688.000000 204.000000 496.000000
704.000000 204.000000 496.000000
704.000000 204.000000 -496.000000
688.000000 204.000000 -496.000000
688.000000 144.000000 496.000000
704.000000 144.000000 496.000000
704.000000 144.000000 -496.000000
688.000000 144.000000 -496.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
174.000000 0.000000 512.000000
880.000000 0.000000 512.000000
880.000000 0.000000 -512.000000
174.000000 0.000000 -512.000000
174.000000 -2.000000 512.000000
880.000000 -2.000000 512.000000
880.000000 -2.000000 -512.000000
174.000000 -2.000000 -512.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
428.000000 30.000000 -340.000000
364.000122 30.000000 -340.000000
364.000122 0.000000 -340.000000
428.000031 0.000000 -185.999969
428.000000 0.000000 -340.000000
364.000122 0.000000 -186.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000
brush
vertices
364.000000 30.000000 -340.000000
428.000000 30.000000 -340.000000
428.000000 0.000000 -340.000000
364.000000 0.000000 -494.000000
364.000000 0.000000 -340.000000
428.000000 0.000000 -494.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000
brush
vertices
364.000000 30.000000 496.000000
428.000000 30.000000 496.000000
428.000000 0.000000 496.000000
364.000000 0.000000 342.000000
364.000000 0.000000 496.000000
428.000000 0.000000 342.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000
entity
type CameraPath
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type PlayerSpawn
Vector3 position 402.000000 4.000000 212.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 332.000000 24.000000 -232.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 248.000000 26.000000 -64.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -218.000000 112.000000 0.000000
Vector3 angles 90.000000 0.000000 0.000000
Bool8 teamB 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 522.000000 98.000000 86.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 590.000000 98.000000 -6.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 590.000000 136.000000 -284.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 736.000000 170.000000 -16.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 660.000000 148.000000 -222.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 656.000000 150.000000 252.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 822.000000 168.000000 158.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 814.000000 176.000000 -206.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
|
263c96c016e0f30e32b6effc5a8f85461151f9bf | 449d555969bfd7befe906877abab098c6e63a0e8 | /1523/CH4/EX4.1/ex4_1.sce | 60047fe159fc9e56713e9747822408c0117e9b26 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 208 | sce | ex4_1.sce | //AC Circuits:example 4.1:(pg4.4)
i=15;
t=3.375*10^-3;
f=40;
pi=3.14;
Im=(i/sin(2*pi*f*t));
disp("i=15 Amp");
disp("t=3.375 ms");
disp("f=40 Hz");
disp("i=Im*sin(2*pi*f*t)");
printf("Im=%.fAmp",Im); |
81496b5b2609989e0116ef7dad5cb1d3bf1c29d9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1697/CH1/EX1.6/Exa1_6.sce | a32b473c21303f30936fa29be446df496d2ad892 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 228 | sce | Exa1_6.sce | //Exa 1.6
clc;
clear;
close;
//given data :
le=50;//in m
f=100;//in MHz
lambda=300/(f);//in m
Rr=(160*(%pi)^2)*(le/lambda)^2;//in Ohm
disp(Rr/10^6,"Radiation Resistance in Mohm: ");
//Note : Answer in the book is wrong |
22110a151642dbf66d6e48f09ef98dd43b8171bb | 449d555969bfd7befe906877abab098c6e63a0e8 | /1931/CH1/EX1.11/11.sce | 71774ab800112b8d731aaa48b64a48cd19d56a18 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 303 | sce | 11.sce | clc
clear
//INPUT DATA
V=12000//volume of auditorium in m^3
T=1.5//The reverberation time of the auditorium in sec
a=0.4//average absorption coefficient in sabine
//CALCULTION
S=(0.167*V)/(a*T)//area of interior surfaces in m^2
//OUTPUT
printf('The area of interior surfaces is %i m^2',S)
|
4b5bd5ccd5db60e82c05290420bf41c4d336cb07 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1445/CH3/EX3.2/Ex3_2.sce | c3ef9143f66635e308da6d6bc865cbe7f5cd9fec | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 783 | sce | Ex3_2.sce | //CHAPTER 3- THREE-PHASE A.C. CIRCUITS
//Example 2
clc;
disp("CHAPTER 3");
disp("EXAMPLE 2");
//VARIABLE INITIALIZATION
v_l=400; //line voltage in Volts
I_l=30; //line current in Amperes
p=12*1000; //power absorbed in Watts
//SOLUTION
v_ph=v_l/sqrt(3); //phase voltage = (line voltage)/sqrt(3)
z_ph=v_ph/I_l; //phase current = line current for star connection
pow_fact=p/(sqrt(3)*v_l*I_l); //three-phase power = sqrt(3)*v_l*I_l*pow_fact
r_ph=z_ph*pow_fact; //from impedance tringle
disp(sprintf("The resisatnce of each impedance is %f Ω",r_ph));
x_ph=sqrt((z_ph^2)-(r_ph^2));
disp(sprintf("The ractance of each impedance is %f Ω",x_ph));
//END
|
105ea71e2f725b28d19f319b4ec21d3d3b3238a4 | 181f67b4868e49ca80872d6ac088a51540f90da6 | /186A3/sin.sce | 1027cd83e40135f8aaefd4e02c0a6eebc7c5f1e0 | [] | no_license | nobody51/AP186 | 567f25ba1ad7f71ad2983860078eeaccffa46080 | cb916fc9b38b508026403a2227ffc76d490fe948 | refs/heads/master | 2021-08-28T09:35:55.488122 | 2017-12-11T21:34:46 | 2017-12-11T21:34:46 | 104,969,401 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 291 | sce | sin.sce | nx = 500; ny = 500;
x = linspace(-1,1,nx);
y = linspace(-1,1,ny);
[X,Y] = ndgrid(x,y);
A = sin(9*X);
f = scf();
grayplot(x,y,A);
f.color_map = graycolormap(32);
A = double(A);
fftA = fft2(A);
fftA = uint8(imnorm(fftshift(abs(fftA)))*255);
f=scf();
imshow(fftA);
//xs2png(gcf(),'sine.png');
|
e505148a4fd9db84bdc68a7b58de326de867d3f4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1670/CH10/EX10.25/10_25.sce | 8ba900a19dbc057fcf40b625cd95e7fd747f0e79 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 728 | sce | 10_25.sce | //Example 10.25
//Milne Simpsons formula
//Page no. 340
clc;clear;close;
h=0.1;
deff('y=f(x,y)','y=x*y+y^2')
y(1)=1;
for i=1:5
x(i)=(i-1)*h
end
for i=1:3
K(1)=h*f(x(i),y(i));
K(2)=h*f(x(i)+h/2,y(i)+K(1)/2);
K(3)=h*f(x(i)+h/2,y(i)+K(2)/2);
K(4)=h*f(x(i)+h,y(i)+K(3));
y(i+1)=y(i)+(K(1)+2*K(2)+2*K(3)+K(4))/6
for j=1:4
printf('\n K%i = %.4g\n',j,K(j))
end
printf('\ny(%g) = %.4f\n\n',x(i)+h,y(i+1))
end
i=5;
y(i)=y(i-4)+4*h*(2*f(x(i-1),y(i-1))-f(x(i-2),y(i-2))+2*f(x(i-3),y(i-3)))/3
printf('\nPredictor y(%g) = %.4f\n\n',x(i),y(i))
y(i)=y(i-2)+h*(f(x(i-2),y(i-2))+4*f(x(i-1),y(i-1))+f(x(i),y(i)))/3
printf('Corrector y(%g) = %.4f\n\n',x(i),y(i)) |
10e055d39b1e61fc3c0cbb40ac521b98fa673e3c | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set7/s__elelectronics_instrumentation_and_measurements_U._S._Shah_2195.zip/_elelectronics_instrumentation_and_measurements_U._S._Shah_2195/CH7/EX7.5.1/ex_7_5_1.sce | 0abbe59cc9464813e054c909239eaefddd6006d4 | [] | no_license | hohiroki/Scilab_TBC | cb11e171e47a6cf15dad6594726c14443b23d512 | 98e421ab71b2e8be0c70d67cca3ecb53eeef1df6 | refs/heads/master | 2021-01-18T02:07:29.200029 | 2016-04-29T07:01:39 | 2016-04-29T07:01:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 205 | sce | ex_7_5_1.sce | errcatch(-1,"stop");mode(2);//Example 7.5.1: resistance
;
;
//given data :
R1=5;// in kilo-ohm
R2=7;// in kilo-ohm
R3=10; // in kilo-ohm
Rx=(R2*R3)/R1;
disp(Rx,"unknown resistance,Rx(k-ohm) = ")
exit();
|
349209a735742858ff968251fae06a2b844d78c1 | 717ddeb7e700373742c617a95e25a2376565112c | /278/CH12/EX12.8/ex_12_8.sce | 8f46529d67e73124911b2e08da2c52a742ccc157 | [] | no_license | appucrossroads/Scilab-TBC-Uploads | b7ce9a8665d6253926fa8cc0989cda3c0db8e63d | 1d1c6f68fe7afb15ea12fd38492ec171491f8ce7 | refs/heads/master | 2021-01-22T04:15:15.512674 | 2017-09-19T11:51:56 | 2017-09-19T11:51:56 | 92,444,732 | 0 | 0 | null | 2017-05-25T21:09:20 | 2017-05-25T21:09:19 | null | UTF-8 | Scilab | false | false | 1,004 | sce | ex_12_8.sce | //design knucle joint
clc
//solution
//given
P=70*10^3//N
ftur=420//N/mm^2//for rod//ultimate point stress
ftup=510//N/mm^2//for pin
tu=396//N/mm^2
Fs=6
ftr=ftur/Fs//N/mm^2//yeild
t=tu/Fs//N/mm^2
pi=3.14
//let d be dia of rod
//P=(pi/4)*d^2*ftr=55*d^2
//d=sqrt(P/55)//mm
printf("the diameter of bolt is,%f mm\n",sqrt(P/55))
printf("the diameter of bolt is,say 36mm\n")
d=36//mm
//d1=d=36//mm//dia of knuckle pin
d1=36//mm
d2=2*d//mm//dia of outer eye
d3=1.5*d//mm//dia of knucle pin head and collar
T=1.25*d//mm//thickness of single eye
T1=0.75*d//thickness of fork
////let t1 be double shear stress acting
//P=(pi/4)*2*d1^2*t1//
t1=(P*4)/(2*pi*d1^2)//N//mm^2
printf("the double shear acting is,%f N/mm^2\n",t1)
//let ft1 be failur stress
//P=(d2-d1)*T*ft1
ft1=P/((d2-d1)*T)//N/mm^2
printf("the failure stress in tension acting is,%f N/mm^2\n",ft1)
//let ft2 forked end tension
//P=(d2-d1)*2*T1*ft2
ft2=P/((d2-d1)*2*T1)//
printf("forked end tension si,%f N/mm^2\n",ft2) |
f9f79b52a989ce5131590b140e13f8d94e8f0223 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1223/CH17/EX17.7/Ex17_7.sce | 9bc85a6e912e337b78aef411aeb4db0a2874b881 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 509 | sce | Ex17_7.sce | clear;
clc;
//Example 17.7
Vcc=1.7;
Re=0.008;//mohm
Rc=0.008;//mohm
Vy=0.4;
Vbe=0.7;
Vor=Vcc//logic 1
Vor=Vcc-Vy//logic 0
Vr=1.5;
iE=(Vr-Vbe)/Re;
printf('\nemitter current=%.2f microA\n',iE)
iR=Vy/Rc;
printf('\nmaximum current in Rc =%.2fmicroA\n',iR)
iD=iE-iR;
printf('\ncurrent through the diode=%.2f microA\n',iD)
P=iE*Vcc;
printf('\npower dissipation=%.2f microW\n',P)
Vv=1.7;
iE=(Vv-Vbe)/Re;
printf('\niE =%.2fmicroA\n',iE)
P=iE*Vcc;
printf('\npower dissipation =%.2fmicroW\n',P)
|
198c5d694e9dce1d2cd254a0607577921ee8ef39 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2912/CH12/EX12.8/Ex12_8.sce | 5b74a619d00ba88f57d049e04d524d20f61cb71c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 564 | sce | Ex12_8.sce | // chapter 12
// example 12.8
// calculate numerical aperture and acceptance angle of an optical fibre
// page 361-362
clear;
clc;
// given
u1=1.48; // refractive index of core
u2=1.45; // refractive index of cladding
//calculate
NA=sqrt(u1^2-u2^2); // calculation of numerical aperture
printf('\nThe numerical aperture of the fibre is \tNA=%.3f',NA);
theta=asind(NA); // calculation of acceptance angle
printf('\nThe acceptance angle of the optical fibre is \t%.2f degree',theta);
// Note: there is slight variation in the answer due to round off
|
017de71e83e8bd9635dc8f3c8a4ae9ffd9441866 | 491f29501fa7d484a5860f64aef3fa89fb18ca3d | /examples/electronics/IdealSwitch/computeResidu.sce | 84b2bd4fb1e84104974e1bb757abef85a27437cb | [
"Apache-2.0"
] | permissive | siconos/siconos-tutorials | e7e6ffbaaea49add49eddd317c46760393e3ef9a | 0472c74e27090c76361d0b59283625ea88f80f4b | refs/heads/master | 2023-06-10T16:43:13.060120 | 2023-06-01T07:21:25 | 2023-06-01T07:21:25 | 152,255,663 | 7 | 2 | Apache-2.0 | 2021-04-08T12:00:39 | 2018-10-09T13:26:39 | Jupyter Notebook | UTF-8 | Scilab | false | false | 68 | sce | computeResidu.sce | Rr=nextR-nextG;
Ry=nextY-nextH;
Rfree=nextX-X_k;
Rx=Rfree - h*nextR; |
e50d2b0add8222d3400a9ec76efb4d293feb2523 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3411/CH5/EX5.2.u1/Ex5_2_u1.sce | ef5e465baeb488e60216d88829a047a0e2cf528b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 533 | sce | Ex5_2_u1.sce | //Example 5_2_u1
clc();
clear;
//To determine the miller indices of the plane
//Given Intercepts are Infinity,OY,OZ
intercepts1="Infinity"
intercepts2="OY"
intercepts3="OZ"
unitcell1="Infinity"
unitcell2=1
unitcell3=(2/3)
resiprocal1=0
resiprocal2=1/unitcell2
resiprocal3=1/unitcell3
lcms=int32([unitcell2 unitcell3]);
v=lcm(lcms)
lcm1=0
lcm2=2
lcm3=3
printf("Co-ordinates of A,B,C are (Infinity,0,0),(0,%d,0)(0,0,%f)",unitcell2,unitcell3)
printf("\n Miller indices of the plane are(%d,%d,%d)",lcm1,lcm2,lcm3)
|
61322545ac79b242d214161ec79d9ec48c93cee8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /213/CH4/EX4.8/4_8.sce | 17197b02ec0d7bce50fe828d77dbe6fb6666abec | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,733 | sce | 4_8.sce | //To Find Centre of Percussion and Impulse
clc
//Given:
m=30 //kg
OG=1.05,h=OG,AG=0.15 //m
//Solution:
//Calculating the Frequency of Oscillation
n=20/43.5 //Hz
//Calculating the Equivalent Length of Simple Pendulum
L=9.81/(2*%pi*n)^2 //m
//Calculating the Distance of Centre of Percussion (C) from the Centre of Gravity (G)
CG=L-OG //m
//Calculating the Distance of Centre of Percussion (C) from the Knife Edge A
AC=AG-CG //m
//Calculating the Radius of Gyration of the Pendulum About O
kO=sqrt(L*h) //m
h1=h*(1-cos(60*%pi/180)) //m
//Calculating the Angular Velocity of the Pendulum
omega=sqrt(2*m*9.81*h1/(m*kO^2)) //rad/s
OA=OG+AG
//Calculating the Velocity of Striking
v=omega*(OA) //Velocity of Striking
//Calculating the Angular Velocity of the Pendulum Immediately After Impact
I=m*kO^2
LKE=55 //Loss of Kinetic Energy, N-m
omega1=sqrt(omega^2-LKE*2/I)
//Calculating the Impulses at Knife Edge A and at Pivot O (P and Q)
CLM=m*h*(omega-omega1) //Change of Linear Momentum
CAM=m*(kO^2-h^2)*(omega-omega1) //Change of Angular Momentum
//P+Q=Change of Linear Momentum and, 0.15P-1.05Q=Change of Angular Momentum.
//i.e., P+Q=CLM and 0.15P-1.05Q=CAM
//Variables Matrix
A=[1 1; 0.15 -1.05]
B=[CLM; CAM]
V=A \ B
P=V(1)
Q=V(2)
//Calculating the Change in Axis Reaction When the Pendulum is Vertical
CAR=m*(omega^2-omega1^2)*h //Change in Axis Reaction, N
//Results:
printf("\n\n The Distance of Centre of Percussion, AC = %.3f m.\n",AC)
printf(" The Velocity of Striking = %.2f m/s.\n",v)
printf(" The Impulse at the Knife Edge, P = %.1f N-s.\n",P)
printf(" The Impulse at the Pivot, Q = %.2f N-s.\n",Q)
printf(" The Change in Axis Reaction When the Pendulum is Vertical = %d N.\n\n",CAR) |
e0c2bae4bf3fdd2251df1cfe7980132654c28bc1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /14/CH3/EX3.6/example_3_6.sce | bbc2d6341231ab76a01ae2991731540913e0c4ee | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,048 | sce | example_3_6.sce | //Chapter 3
//Example 3.6
//ParallelCircuit
//Page 63
clear;clc;
//Example 3.6
//Given
f = 60;//in Hz
//From Table A.1
D_s = 0.0229 //in ft
//Distances from given figure 3.15
d_a_c = 18;d_c_a = d_a_c;d_b_b = 21;
d = 10;//distance between conductors
d_a_b = sqrt(d^2 + (d_b_b - 19.5)^2);
d_a_b1 = sqrt(d^2 + (d_b_b - 1.5)^2);
d_aa1_actual = sqrt((d * 2)^2 + d_a_c^2);
d_bb1_actual = d_b_b;
d_cc1_actual = d_aa1_actual;
d_aa1_pos = sqrt(d_aa1_actual * D_s);
d_bb1_pos = sqrt(d_bb1_actual * D_s);
d_cc1_pos = sqrt(d_cc1_actual * D_s)
//GMD's between phases
D_p_ab = ((d_a_b * d_a_b1)^(2*1/4));//in ft
D_p_bc = D_p_ab;
D_p_ca = (((d*2) * d_c_a)^(2*1/4));//in ft
D_eq = (D_p_ab * D_p_bc * D_p_ca)^(1/3);//in ft
printf("\n\n Equivalent GMD = %.1f ft \n\n",D_eq)
//GMR
D_p_s = (d_aa1_pos * d_bb1_pos * d_cc1_pos)^(1/3);
printf("\n\n GMR = %.3f ft \n\n",D_p_s)
//Inductance
L = 2e-7 * log(D_eq / D_p_s);
X_L = 2 * %pi * f * L * 1609;//multiplication by 1609 is to convert to ohm/mi
printf("\n\n The Inductive reactance = %.3f ohm/mi/phase \n\n",X_L) |
21540eeb91e690da84551fb320d39f47e9ee6163 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1499/CH7/EX7.20/q20.sce | 1973b577a1b97a9de53a2ea97debeae5cc244073 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 400 | sce | q20.sce | syms m11 m12 m13 m21 m22 m23 m31 m32 m33 ^ t m
s=%s;
poly(0,"l");
A=[3 -2;-1 2]
[r c]=size(A)
I=eye(r,c);
p=l*I-A;
q=det(p); // determinant of li-p
// roots of q are
l1=1;
l2=4;
x1=[m11;m21];
q1=(l1*I-A)*1
//on solving
m11=1;
m21=1;
x2=[m12;m22];
q2=(l2*I-A)*1
//on solving;
m12=2;
m22=-1;
// modal matrix is
M=[m11 m12;m21 m22]
q=inv(M)
A1=real(q*A*M)
|
28e558e5d2149c23718c6bdff3b85bf15286cc80 | c206e3f57b0a6f75bd1feefefecd29398746c358 | /scripts/neighborhood.sci | cfe1a03845e03bfa62c8657d829e54c2505b39f1 | [] | no_license | danielfcollier/scilab-image-processing-scripts | e092a7c1a6a0ade906c020218a9571290245e40f | 43d78cb06dc6c27ab8663f351e4c172d038280ce | refs/heads/main | 2023-04-12T20:05:52.840157 | 2021-04-27T18:56:06 | 2021-04-27T18:56:06 | 362,219,761 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,293 | sci | neighborhood.sci | function I=connection(F,Pos,Neigbor,L)
[M1,M2]=size(F);
m1=Pos(1);
m2=Pos(2);
F=ceil((F+1-L)/L);
I=ones(M1,M2);
N=zeros(M1,M2);
T=zeros(M1,M2);
I(m1,m2)=0;
N(m1,m2)=1;
while(sum(N)>0)
for m1=1:M1
for m2=1:M2
if N(m1,m2)==1
n1=(m1-1)+1*((m1-1)==0);
n2=m2;
if T(n1,n2)~=1
if F(m1,m2)==F(n1,n2)
I(n1,n2)=0;
N(n1,n2)=1;
end
end
n1=m1;
n2=(m2-1)+1*((m2-1)==0);
if T(n1,n2)~=1
if F(m1,m2)==F(n1,n2)
I(n1,n2)=0;
N(n1,n2)=1;
end
end
n1=(m1+1)-1*(m1==M1);
n2=m2;
if T(n1,n2)~=1
if F(m1,m2)==F(n1,n2)
I(n1,n2)=0;
N(n1,n2)=1;
end
end
n1=m1;
n2=(m2+1)-1*(m2==M2);
if T(n1,n2)~=1
if F(m1,m2)==F(n1,n2)
I(n1,n2)=0;
N(n1,n2)=1;
end
end
if (Neigbor==8)
n1=(m1-1)+1*((m1-1)==0);
n2=(m2-1)+1*((m2-1)==0);
if T(n1,n2)~=1
if F(m1,m2)==F(n1,n2)
I(n1,n2)=0;
N(n1,n2)=1;
end
end
n1=(m1+1)-1*(m1==M1);
n2=(m2-1)+1*((m2-1)==0);
if T(n1,n2)~=1
if F(m1,m2)==F(n1,n2)
I(n1,n2)=0;
N(n1,n2)=1;
end
end
n1=(m1+1)-1*(m1==M1);
n2=(m2+1)-1*(m2==M2);
if T(n1,n2)~=1
if F(m1,m2)==F(n1,n2)
I(n1,n2)=0;
N(n1,n2)=1;
end
end
n1=(m1-1)+1*((m1-1)==0);
n2=(m2+1)-1*(m2==M2);
if T(n1,n2)~=1
if F(m1,m2)==F(n1,n2)
I(n1,n2)=0;
N(n1,n2)=1;
end
end
end
N(m1,m2)=0;
T(m1,m2)=1;
end
end
end
end
endfunction
|
880bb04aea722601ece5f9f648a249454f910832 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2615/CH12/EX53.4/53.sce | 16d7426775519d5e509df891ddab65f416e0abaf | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 220 | sce | 53.sce | clc
//initialisation of variables
v=60//m/sec
v1=16.6//m/sec
r=300//m
g=9.8//m/sec
//CALCULATIONS
R=(v1^4)/((g^2)*(r^2))//km/hr
//RESULTS
printf('the ignored thus greatly simplifying the equation=% f km/hr',R)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.