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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
4baca586914a9ea3d6e25f77b26e6eec08146b19 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1055/CH9/EX9.1/ch9_1.sce | 711fc36a1fa3ce002f3798a75e6fbd30173fd69e | [] | 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 | 268 | sce | ch9_1.sce | // To determine the economic overall diameter of a 1- core cable metal sheathead.
clear
clc;
V=85;// working voltage (kV)
gmax=65;// dielectric strength of insulating material (kV/cm)
r=V/gmax;
d=2*r;
D=2.6*%e;
mprintf("Diameter of the sheath =%.2f cm\n",D);
|
e029bfa75611c23800011f2aa1a91975f3daf25e | 9c56678e62b7b8200d1d54c7b1462db3010168c5 | /scilab_proj/function1.sce | 3c4df8c866d30369efebc968011b21aafb5a438b | [] | no_license | rajroshansharma/scilab_project | 5a6b91215bd6d1c4abf652bb440dc6558b3ca607 | b80d3dcb9eef67f0755e05adbef4a7fa3c333afa | refs/heads/master | 2022-11-07T06:40:16.372703 | 2020-06-26T06:23:31 | 2020-06-26T06:23:31 | 275,082,037 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 493 | sce | function1.sce | function eqution=diff_inter(ar1,ar2,p);
ay0 = (ar2(2) - ar2(1))/(ar1(2) - ar1(1));
ay1 = (ar2(3) - ar2(2))/(ar1(3) - ar1(2));
ay2 = (ar2(4) - ar2(3))/(ar1(4) - ar1(3));
by0 = (ay1 - ay0)/(ar1(3) - ar1(1));
by1 = (ay2 - ay1)/(ar1(4) - ar1(2));
cy0 = (by0 - by1)/(ar1(4) - ar1(1));
x = poly(0,'x');
y = poly(0,'x');
x = p;
eqution = ar2(1) + (x - ar1(1))*ay0 + (x - ar1(1))*(x - ar1(2))*by0 + (x - ar1(1))*(x - ar1(2))*(x - ar1(3))*cy0;
disp(eqution);
endfunction
|
b295f39fdebf4361c04190eaab294bc912a99232 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2354/CH16/EX16.7/16_7.sce | c2c5a71f0dbb0349a3dd0f2bca4d55a21bb9aae0 | [] | 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 | 376 | sce | 16_7.sce | //example 16.7
clc; funcprot(0);
// Initialization of Variable
pi=3.14;
T1=80;
Tinfinity=20;//temperature
Rtc1=1e-3;//m2K/W
r1=0.002;
r2=0.003;
H=0.006;
k=200;
Rtb=638;//K/W
Rtf12=24.4;
Rtc=Rtc1/2/pi/r1/H;
Rtsleeve=log(r2/r1)/2/pi/H/k;
Requiv=(1/Rtf12+1/Rtb)^-1;
Rtot=Rtc+Rtsleeve+Requiv;
qt=(T1-Tinfinity)/Rtot
disp(qt,"heat transfer rate in W");
clear()
|
30cb4b0f4a2fccc7c98e3fa4f4b184adca3fbc2e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1109/CH7/EX7.2/7_2.sce | ca67d4dc0a631b61f87698895c2d790e09b1802d | [] | 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 | 170 | sce | 7_2.sce | clear;
clc
a=3;
lc=2*a;
Zs=500;n=377;c=3*(10^8);
lo=sqrt(1-((n/Zs)^2))*lc;
f=c/lo;
f1=f/(10^7);
printf("Frequency of dominant mode = %f GHz",round(f1*100)/100);
|
2a6ca9b9a6a719aa65fd4b4f5770d106ac825420 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1085/CH4/EX4.4/ex4_4.sce | dbdb73d3e748e160e1df8dcf4750b41d3af8a6dd | [] | 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 | 367 | sce | ex4_4.sce | //Exam:4.4
clc;
clear;
close;
Z_1=+2;
Z_2=-2;
r_Mg=0.65;//radius of Mg++ ion
r_S=1.84;//radius of S-- ion
r=r_Mg+r_S;//net radius(in Angstrom)
R=r*10^(-10);//net radius(in meter)
e=1.6*10^(-19);
E_o=8.854*10^-12;
pi=22/7;
F=-Z_1*Z_2*e^2/(4*pi*E_o*R^2);//force of attraction between ions(in Newton)
disp(F,'force of attraction between ions(in Newton)='); |
74205e0b9078a769ab7d2cf006819c6a18fe38f2 | 527c41bcbfe7e4743e0e8897b058eaaf206558c7 | /NZFunctions/StatisticalFunctions/FLProdNZ-UM-01.tst | e4367cbea699d36580949dd8488b63ea8a46e37d | [] | 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 | 1,374 | tst | FLProdNZ-UM-01.tst | -- 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: Statistical Functions
--
-- Last Updated: 05-30-2017
--
-- Author: <kamlesh.meena@fuzzyl.com>
--
-- BEGIN: TEST SCRIPT
-- BEGIN: TEST(s)
-----*******************************************************************************************************************************
---FLProd
-----****************************************************************
SELECT a.TickerSymbol,
EXTRACT(YEAR FROM b.TxnDate) AS CalendarYear,
COUNT(b.TxnDate) AS NumTxnDates,
FLProd(1.0 + LN(b.ClosePrice/a.ClosePrice)) - 1.0 AS AnnualReturn
FROM finStockPrice a,
finStockPrice b
WHERE a.TickerSymbol IN ('AAPL','HPQ','IBM','MSFT','ORCL')
AND b.TickerID = a.TickerID
AND b.DateIdx = a.DateIdx + 1
GROUP BY a.TickerSymbol, EXTRACT(YEAR FROM b.TxnDate)
ORDER BY 1,2
LIMIT 20;
---------------------------------------------------------------------
-----****************************************************************
|
66eeea1914bda8256dff2611ed03eb58831ac103 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2660/CH5/EX5.13/Ex5_13.sce | 22be7297d31dead05d4a66d6ed219900d1e670f5 | [] | 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 | 991 | sce | Ex5_13.sce | clc
// Existing machine
pmp = 100000 // present market price in Rs
io = 50000 // immediate overhauling in Rs
asl = 5 // additional service life in years
aoc = 50000 // annual operating cost in Rs
svo = 10000 // salvage value after overhauling in Rs
pc = io + pmp // present cost in Rs
i = 10 // interest rate
i = 10/100
crf1 = (i*(1+i)^asl)/((1+i)^asl - 1) // capital recovery factor
AC1 = (pc - svo)*crf1 + svo*i + aoc // average cost in Rs
// proposed machine
n = 10 // expected economic life in years
ic = 300000 // initial cost in Rs
sv = 100000 // salvage value in Rs
o = 30000 // annual operating cost in Rs
crf2 = (i*(1+i)^10)/((1+i)^10 - 1)
AC2 = (ic - sv)*crf2 + sv*i + o // average cost in Rs
printf("Existing machine = Rs %0.3f \n Proposed machine = Rs %0.2f" , AC1 , AC2)
disp("Since the equivalent annual cost of proposed machine is less than that of the existing machine , therefore, the replacement is justified.")
// Answers vary due to round off error
|
08d79325ab31a4f8bfd6f0fb0449b60e8a7ff935 | 6227c5ef4e1c5d72cdebd6eac81f82161dda7e17 | /digi_dc_dc/Scilab/AnalogRegulators/AnalyzeTypeIIopamp.sci | c8aa029e593e9796f73bcb73227012f208d97c34 | [] | no_license | maxsimmonds1337/Scilab | b4e8a03a9fbeda4d8f6e51e07d205bcf51addce8 | b413659e2b697565c24ad440d158f5bd28203570 | refs/heads/master | 2022-11-04T23:17:50.045864 | 2020-06-13T20:35:24 | 2020-06-13T20:35:24 | 272,081,285 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,223 | sci | AnalyzeTypeIIopamp.sci |
//Function to analyze an implemented type II regulator with an op-amp
//It allows to put different resitor and verify it is correctly implemented
//It performs too an analysis with the tolerances
//Montecarlo is the number of run for a montecarlo analysis
function [in_circuit,var_analysis]=AnalyzeTypeIIopamp(regulator,implemented,R1,tolR1,R2,tolR2,C1,tolC1,C2,tolC2,fc,montecarlo_run)
//Definition of the Laplace variable
s=poly(0,'s');
//Verification of the bode plot
num=R2/R1*(1+(s*R2*C1));
den=(s*R2*C1)*(1+s*R2*C2);
in_circuit=syslin('c',num,den);
scf();
bode([regulator;implemented;in_circuit],fc/10e3,fc*10,['ideal','implemented','in circuit']);
//Variation analysis by montecarlo
rand('seed',1); //seed of the random number generator;
montecarlo=[];
test_leg=[];
for(i=1:montecarlo_run)
//We generate the different R and C
R1r=R1+tolR1*R1*rand();
R2r=R2+tolR2*R2*rand();
C1r=C1+tolC1*C1*rand();
C2r=C2+tolC2*C2*rand();
num_r=R2r/R1r*(1+(s*R2r*C1r));
den_r=(s*R2r*C1r)*(1+s*R2r*C2r);
montecarlo=[montecarlo;syslin('c',num_r,den_r)];
test_leg=[test_leg,'test '+string(i)]
end
var_analysis=montecarlo;
scf()
bode([in_circuit;montecarlo],fc/10e3,fc*10);
endfunction
|
a64aea06a388040c3f7055323567aaf0d459280a | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.3/Unix-Windows/scilab-2.3/macros/xdess/fplot2d.sci | 2a3c1c7d3d1444498ff361db15267a721e3dd1bd | [
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain",
"MIT"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 1,051 | sci | fplot2d.sci | function []=fplot2d(xr,f,style,strf,leg,rect,nax)
// Dessin d'une courbe 2D d\'efinie par un external f
// on trace un aproximation lin\'eaire par morceaux de la courbe
// y=f(x), passant par les points (xr(i),f(xr(i)))
// xr est donc un vecteur implicite donnant les points ou l'on calcule f.
// pour les autres arguments qui sont optionnels, on se reportera \`a
// plot2d.
// Exemple~: taper fplot2d() pour voir un exemple.
// deff('<y>=f(x)','y=sin(x)+cos(x)');
// fplot2d(f,0:0.1:%pi);
//!
[lhs,rhs]=argn(0)
if rhs<=0,s_mat=['deff(''[y]=f(x)'',''y=sin(x)+cos(x)'');';
'fplot2d(0:0.1:%pi,f);'];
write(%io(2),s_mat);execstr(s_mat);
return;end;
if rhs < 2 then xx=[' I need at least 2 arguments';
' or zero a demo'];write(%io(2),xx);
return;end
if rhs < 3,style=-1,end
if rhs < 4,strf="021",end
if rhs < 5,leg=" ",end
if rhs < 6,rect=[0,0,10,10],end
if rhs < 7,nax=[2,10,2,10],end
[p1,p2]=size(xr);
if p1=1 , xr=xr';[p1,p2]=size(xr);end
plot2d(xr,feval(xr,f),style,strf,leg,rect,nax)
|
4c450c684a075d8ab15658edd2df39e5a753c5cd | 449d555969bfd7befe906877abab098c6e63a0e8 | /3886/CH5/EX5.6/5_6.sce | d1d254d879145de810e27beeadfbf1b21aa0f210 | [] | 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 | 635 | sce | 5_6.sce | //force required to prevent slipping
//refer fig. 5.10
mu=0.25
//assumptions are made and shown in fig.5.10
//F1=mu*N1
//consider equilibrium of block A
C1=(2000)/((0.25*cosd(30))+(0.5)) //N
N1=C1*cosd(30)
//Lami's theorem at joint O gives
P=(C1*sind(90))/sind(120) //N
C=(C1*sind(150))/sind(120) //N
//Consider equilibrium of block B for verification
//F2=C2*cosd(60) N
//N2=2000+C2*sind(60) N
//LF=mu*N2 N (limiting friction)
//actual frictional force F2 developed is less than the limiting frictional force hence block B is stationary
//P is the correct answer
printf("Requiref force is\nP=%0.2f N",P)
|
71bdf0e5d194ca98f36aeb1369fbdb8f7b818e46 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1427/CH2/EX2.9/2_9.sce | 1e57d5229c0c796b8f0f578ac8c2707a3117578f | [] | 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 | 367 | sce | 2_9.sce | //ques-2.9
//Determining percentage of Nitrogen in given coal sample
clc
w=1;//Weight of coal sample taken (in g)
v1=25;//Volume of sulphuric acid used (in mL)
n=1/10;//Normality of sulphuric acid
v2=15;//Volume of Sodium hydroxide used (in mL)
N=((v1-v2)*n*1.4)/w;//Percentage of coal sample
printf("The percentage of Ntrogen in coal sample is %.1f \n",N);
|
3154d0306849541a7a6681b51d185392b06f6803 | 1573c4954e822b3538692bce853eb35e55f1bb3b | /DSP Functions/allpassshift/test_9.sce | 6becac8265299cdf95c6fd853c4e818321121e83 | [] | no_license | shreniknambiar/FOSSEE-DSP-Toolbox | 1f498499c1bb18b626b77ff037905e51eee9b601 | aec8e1cea8d49e75686743bb5b7d814d3ca38801 | refs/heads/master | 2020-12-10T03:28:37.484363 | 2017-06-27T17:47:15 | 2017-06-27T17:47:15 | 95,582,974 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 254 | sce | test_9.sce | // Test # 9 : Input Argument #1 length
exec('./allpassshift.sci',-1);
[n,d]=allpassshift([0.3,0.2],0.6);
//!--error 10000
//Wo must be real ,numeric and scalar
//at line 33 of function allpassshift called by :
//[n,d]=allpassshift([0.3,0.2],0.6);
|
2e147bb2b84463344620b6720020cd4dfb4983c7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3751/CH2/EX2.17/Ex2_17.sce | e42604cde9ac73a6a0c258eea9f06f5050f539fd | [] | 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,431 | sce | Ex2_17.sce | //Fluid system - By - Shiv Kumar
//Chapter 2 - Impact of Jet
//Example 2.17
clc
clear
//Given Data:-
d=60; //Diameter of Jet, mm
Vi=22; //Absolute Velocity of Jet at Inlet, m/s
u=11; //Velocity of vane, m/s
ui=u;
uo=u;
alpha_i=0; //degrees
alpha_l=65; //degrees
alpha_o=180-alpha_l; //degrees
//Data Used:-
rho=1000; //Density of water, kg/m^3
//Computations:-
d=d/1000; //m
a=(%pi/4)*d^2; //cross-sectional area of Jet, m^2
Vwi=Vi; //m/s
Vri=Vi-ui; //m/s
Vro=Vri;
beta_o=alpha_o-asind(uo*sind(alpha_l)/Vro); //degrees
Vwo=uo-Vro*cosd(beta_o); //m/s
//(a)The Force exerted by Jet on Vane in direction of motion, Fx
Fx=rho*a*Vri*(Vwi-Vwo); //N
//(b)Power developed by vane,
P=Fx*u/1000; //kW
//(c)Efficiency of Vane,
eta=2*Fx*u/(rho*a*Vi^3)*100; //in Percentage
//Results:-
printf("(a)The Force exerted by Jet on Vane in direction of motion, Fx=%.2f N \n", Fx) //The answer vary due to round off error
printf("(b)Power developed by vane=%.3f kW \n", P) //The answer vary due to round off error
printf("(c)Efficiency of vane, eta=%.2f percent \n", eta) //The answer vary due to round off error
|
ec2f4127e26c5d9951ca84e874df5f947992c654 | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/cummax/cummax1.sce | 3f2b5d45b5d93bcc51c6a1ac628026335d2bd165 | [] | 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 | cummax1.sce | //check o/p when i/p is a vector
v=[8 3 6 7 9 10 6 2 2 3];
m=cummax(v);
disp(m);
//output
// column 1 to 6
//
// 8. 8. 8. 8. 9. 10.
//
// column 7 to 10
//
// 10. 10. 10. 10.
//
|
7d273c741c5c9f1276ed5a4e073f2a082ace82ae | 449d555969bfd7befe906877abab098c6e63a0e8 | /728/CH4/EX4.5/Ex4_5.sce | 0a6349b86534e32ff50f6386f6ae73cdfd9a6a27 | [] | 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 | 892 | sce | Ex4_5.sce | //Caption:Calculate charcteristic impedance & effective dielectric constant & velocity of propagation
//Exa:4.5
clc;
clear;
close;
e_r=9.7;
c=3*10^8;//in m/s
r_1=0.5;//when ratio: (W/h)=0.5
r_2=5;//when ratio: (W/h)=5
//For W/h ratio=0.5
e_eff_1=(e_r+1)/2+((e_r-1)/2)*[1/{sqrt(1+12*(1/r_1))+0.04*(1-r_1)}];
Z_o_1=60*log(8/r_1+r_1/4)/sqrt(e_eff_1);
v_1=c/sqrt(e_eff_1);
disp("For W/h=0.5 ,");
disp(e_eff_1,'Effective dielectric constant =');
disp(Z_o_1,'Charcteristic impedance (in ohms) =');
disp(v_1,'Velocity of propagation (in m/s) =');
//For W/h ratio=5
e_eff_2=(e_r+1)/2+((e_r-1)/2)*[1/{sqrt(1+12*(1/r_2))}];
Z_o_2=120*%pi*[1/{r_2+1.393+0.667*log(1.444+r_2)}]/sqrt(e_eff_2);
v_2=c/sqrt(e_eff_2);
disp("For W/h=5,");
disp(e_eff_2,'Effective dielectric constant =');
disp(Z_o_2,'Charcteristic impedance (in ohms) =');
disp(v_2,'Velocity of propagation (in m/s) ='); |
033801ad2e9753b89b9f2d91ec3e2810e3115eac | 449d555969bfd7befe906877abab098c6e63a0e8 | /443/DEPENDENCIES/8_7_data.sci | 2857fa22ba697c2cdda21f70c4f258d7c5d6d1c8 | [] | 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 | 8_7_data.sci | //Bore of engine(in cm)
D=10;
//Length of stroke(in cm)
L=9;
//speed of engine(in rpm)
N=4000;
//percentage of carbon
PC=0.845;
//Percentage of hydrogen
PH=0.155;
//Atomic weight of carbon
AtC=12;
//Atomic weight of hydrogen
AtH=2;
//Gas constant for air(n kJ/kgK)
R=0.287;
//Gas constant for fuel(in kJ/kgK)
Rf=0.09;
//Ambient temperature(in K)
T=300;
//Ambient pressure(in bar)
Pa=1;
//Fuel air ratio
FA=0.07;
//Discharge coefficient of air
Cda=0.8;
//Ratio of area of venturi
ra=0.8;
//Coefficient of air mixture
Ca=0.95;
//Velocity at throat(in m/s)
C=200;
//No of cylinders
k=4;
//volumetric efficiency
nv=0.85;
//Air fuel ratio
AF=14.23; |
abdd3c7cd3fe31fa82523f53c66dfe478ab0308e | f542bc49c4d04b47d19c88e7c89d5db60922e34e | /PresentationFiles_Subjects/CONT/TD78LPW/ATWM1_Working_Memory_MEG_TD78LPW_Session2/ATWM1_Working_Memory_MEG_Salient_Uncued_Run2.sce | 169c7c62e28085fac67f0f04e7a39acf8efd58e8 | [] | no_license | atwm1/Presentation | 65c674180f731f050aad33beefffb9ba0caa6688 | 9732a004ca091b184b670c56c55f538ff6600c08 | refs/heads/master | 2020-04-15T14:04:41.900640 | 2020-02-14T16:10:11 | 2020-02-14T16:10:11 | 56,771,016 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 48,408 | sce | ATWM1_Working_Memory_MEG_Salient_Uncued_Run2.sce | # ATWM1 MEG Experiment
scenario = "ATWM1_Working_Memory_MEG_salient_uncued_run2";
#scenario_type = fMRI; # Fuer Scanner
#scenario_type = fMRI_emulation; # Zum Testen
scenario_type = trials; # for MEG
#scan_period = 2000; # TR
#pulses_per_scan = 1;
#pulse_code = 1;
pulse_width=6;
default_monitor_sounds = false;
active_buttons = 2;
response_matching = simple_matching;
button_codes = 10, 20;
default_font_size = 28;
default_font = "Arial";
default_background_color = 0 ,0 ,0 ;
write_codes=true; # for MEG only
begin;
#Picture definitions
box { height = 300; width = 300; color = 0, 0, 0;} frame1;
box { height = 290; width = 290; color = 255, 255, 255;} frame2;
box { height = 30; width = 4; color = 0, 0, 0;} fix1;
box { height = 4; width = 30; color = 0, 0, 0;} fix2;
box { height = 30; width = 4; color = 255, 0, 0;} fix3;
box { height = 4; width = 30; color = 255, 0, 0;} fix4;
box { height = 290; width = 290; color = 128, 128, 128;} background;
TEMPLATE "StimuliDeclaration.tem" {};
trial {
sound sound_incorrect;
time = 0;
duration = 1;
} wrong;
trial {
sound sound_correct;
time = 0;
duration = 1;
} right;
trial {
sound sound_no_response;
time = 0;
duration = 1;
} miss;
# Start of experiment (MEG only) - sync with CTF software
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
} expStart;
time = 0;
duration = 1000;
code = "ExpStart";
port_code = 80;
};
# baselinePre (at the beginning of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
}default;
time = 0;
duration = 10000;
#mri_pulse = 1;
code = "BaselinePre";
port_code = 91;
};
TEMPLATE "ATWM1_Working_Memory_MEG.tem" {
trigger_encoding trigger_retrieval cue_time preparation_time encoding_time single_stimulus_presentation_time delay_time retrieval_time intertrial_interval alerting_cross stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 trial_code stim_retr1 stim_retr2 stim_retr3 stim_retr4 stim_cue1 stim_cue2 stim_cue3 stim_cue4 fixationcross_cued retr_code the_target_button posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4;
42 61 292 292 399 125 2142 2992 2492 fixation_cross gabor_038 gabor_102 gabor_022 gabor_128 gabor_038_alt gabor_102_alt gabor_022 gabor_128 "2_1_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_2500_gabor_patch_orientation_038_102_022_128_target_position_1_2_retrieval_position_2" gabor_circ gabor_055_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_1_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_055_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 2192 2992 1992 fixation_cross gabor_140 gabor_006 gabor_034 gabor_075 gabor_140 gabor_006 gabor_034_alt gabor_075_alt "2_2_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2000_gabor_patch_orientation_140_006_034_075_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_075_framed blank blank blank blank fixation_cross_white "2_2_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_075_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 1892 2992 2042 fixation_cross gabor_128 gabor_063 gabor_174 gabor_150 gabor_128 gabor_063 gabor_174_alt gabor_150_alt "2_3_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2050_gabor_patch_orientation_128_063_174_150_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_174_framed gabor_circ blank blank blank blank fixation_cross_white "2_3_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_174_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 2042 2992 2342 fixation_cross gabor_165 gabor_083 gabor_037 gabor_098 gabor_165_alt gabor_083 gabor_037_alt gabor_098 "2_4_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_2350_gabor_patch_orientation_165_083_037_098_target_position_1_3_retrieval_position_1" gabor_119_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_4_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_119_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 2042 2992 2242 fixation_cross gabor_165 gabor_149 gabor_039 gabor_016 gabor_165 gabor_149 gabor_039_alt gabor_016_alt "2_5_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2250_gabor_patch_orientation_165_149_039_016_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_039_framed gabor_circ blank blank blank blank fixation_cross_white "2_5_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_039_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 64 292 292 399 125 1942 2992 2392 fixation_cross gabor_057 gabor_025 gabor_170 gabor_042 gabor_057_alt gabor_025 gabor_170_alt gabor_042 "2_6_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_UncuedRetriev_300_300_399_1950_3000_2400_gabor_patch_orientation_057_025_170_042_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_042_framed blank blank blank blank fixation_cross_white "2_6_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_042_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 1742 2992 2242 fixation_cross gabor_120 gabor_180 gabor_091 gabor_015 gabor_120 gabor_180_alt gabor_091 gabor_015_alt "2_7_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2250_gabor_patch_orientation_120_180_091_015_target_position_2_4_retrieval_position_2" gabor_circ gabor_180_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_7_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_180_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 2042 2992 2042 fixation_cross gabor_130 gabor_003 gabor_071 gabor_178 gabor_130_alt gabor_003 gabor_071_alt gabor_178 "2_8_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_2050_gabor_patch_orientation_130_003_071_178_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_022_framed gabor_circ blank blank blank blank fixation_cross_white "2_8_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_022_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 1992 2992 2092 fixation_cross gabor_133 gabor_067 gabor_107 gabor_021 gabor_133_alt gabor_067 gabor_107_alt gabor_021 "2_9_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2100_gabor_patch_orientation_133_067_107_021_target_position_1_3_retrieval_position_1" gabor_179_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_9_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_179_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 1792 2992 2142 fixation_cross gabor_168 gabor_008 gabor_153 gabor_085 gabor_168_alt gabor_008_alt gabor_153 gabor_085 "2_10_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2150_gabor_patch_orientation_168_008_153_085_target_position_1_2_retrieval_position_1" gabor_030_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_10_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_030_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 2242 2992 2192 fixation_cross gabor_174 gabor_129 gabor_006 gabor_158 gabor_174_alt gabor_129 gabor_006 gabor_158_alt "2_11_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2200_gabor_patch_orientation_174_129_006_158_target_position_1_4_retrieval_position_1" gabor_039_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_11_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_039_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 64 292 292 399 125 1942 2992 2192 fixation_cross gabor_160 gabor_084 gabor_002 gabor_109 gabor_160 gabor_084_alt gabor_002_alt gabor_109 "2_12_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_UncuedRetriev_300_300_399_1950_3000_2200_gabor_patch_orientation_160_084_002_109_target_position_2_3_retrieval_position_1" gabor_160_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_12_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_160_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 1792 2992 2442 fixation_cross gabor_140 gabor_035 gabor_110 gabor_001 gabor_140_alt gabor_035 gabor_110 gabor_001_alt "2_13_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2450_gabor_patch_orientation_140_035_110_001_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_051_framed blank blank blank blank fixation_cross_white "2_13_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_051_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 2092 2992 2292 fixation_cross gabor_133 gabor_115 gabor_099 gabor_028 gabor_133_alt gabor_115 gabor_099 gabor_028_alt "2_14_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2300_gabor_patch_orientation_133_115_099_028_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_028_framed blank blank blank blank fixation_cross_white "2_14_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_028_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 2242 2992 1942 fixation_cross gabor_116 gabor_096 gabor_180 gabor_007 gabor_116 gabor_096_alt gabor_180_alt gabor_007 "2_15_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_1950_gabor_patch_orientation_116_096_180_007_target_position_2_3_retrieval_position_2" gabor_circ gabor_096_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_15_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_096_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 2042 2992 2142 fixation_cross gabor_104 gabor_015 gabor_128 gabor_176 gabor_104_alt gabor_015 gabor_128 gabor_176_alt "2_16_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2150_gabor_patch_orientation_104_015_128_176_target_position_1_4_retrieval_position_1" gabor_104_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_16_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_104_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 64 292 292 399 125 2042 2992 2492 fixation_cross gabor_109 gabor_166 gabor_093 gabor_146 gabor_109 gabor_166 gabor_093_alt gabor_146_alt "2_17_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_UncuedRetriev_300_300_399_2050_3000_2500_gabor_patch_orientation_109_166_093_146_target_position_3_4_retrieval_position_1" gabor_109_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_17_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_109_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 1792 2992 2142 fixation_cross gabor_129 gabor_064 gabor_013 gabor_099 gabor_129_alt gabor_064 gabor_013 gabor_099_alt "2_18_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2150_gabor_patch_orientation_129_064_013_099_target_position_1_4_retrieval_position_1" gabor_083_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_18_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_083_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 1892 2992 2092 fixation_cross gabor_095 gabor_163 gabor_007 gabor_078 gabor_095 gabor_163_alt gabor_007 gabor_078_alt "2_19_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2100_gabor_patch_orientation_095_163_007_078_target_position_2_4_retrieval_position_2" gabor_circ gabor_118_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_19_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_118_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 63 292 292 399 125 1892 2992 2542 fixation_cross gabor_104 gabor_083 gabor_139 gabor_025 gabor_104 gabor_083_alt gabor_139_alt gabor_025 "2_20_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_UncuedRetriev_300_300_399_1900_3000_2550_gabor_patch_orientation_104_083_139_025_target_position_2_3_retrieval_position_1" gabor_058_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_20_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_058_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 1742 2992 2542 fixation_cross gabor_103 gabor_026 gabor_146 gabor_076 gabor_103_alt gabor_026 gabor_146_alt gabor_076 "2_21_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2550_gabor_patch_orientation_103_026_146_076_target_position_1_3_retrieval_position_1" gabor_103_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_21_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_103_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 1842 2992 2392 fixation_cross gabor_169 gabor_127 gabor_015 gabor_058 gabor_169_alt gabor_127_alt gabor_015 gabor_058 "2_22_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2400_gabor_patch_orientation_169_127_015_058_target_position_1_2_retrieval_position_2" gabor_circ gabor_127_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_22_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_127_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 1992 2992 2542 fixation_cross gabor_048 gabor_063 gabor_029 gabor_092 gabor_048_alt gabor_063_alt gabor_029 gabor_092 "2_23_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2550_gabor_patch_orientation_048_063_029_092_target_position_1_2_retrieval_position_2" gabor_circ gabor_063_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_23_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_063_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 1992 2992 2592 fixation_cross gabor_154 gabor_170 gabor_047 gabor_022 gabor_154_alt gabor_170 gabor_047_alt gabor_022 "2_24_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2600_gabor_patch_orientation_154_170_047_022_target_position_1_3_retrieval_position_1" gabor_109_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_24_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_109_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 1992 2992 1892 fixation_cross gabor_083 gabor_001 gabor_170 gabor_118 gabor_083 gabor_001_alt gabor_170_alt gabor_118 "2_25_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_1900_gabor_patch_orientation_083_001_170_118_target_position_2_3_retrieval_position_2" gabor_circ gabor_001_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_25_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_001_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 64 292 292 399 125 1742 2992 2192 fixation_cross gabor_006 gabor_092 gabor_030 gabor_165 gabor_006_alt gabor_092 gabor_030_alt gabor_165 "2_26_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_UncuedRetriev_300_300_399_1750_3000_2200_gabor_patch_orientation_006_092_030_165_target_position_1_3_retrieval_position_2" gabor_circ gabor_092_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_26_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_092_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 1842 2992 2442 fixation_cross gabor_180 gabor_048 gabor_153 gabor_032 gabor_180 gabor_048 gabor_153_alt gabor_032_alt "2_27_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2450_gabor_patch_orientation_180_048_153_032_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_107_framed gabor_circ blank blank blank blank fixation_cross_white "2_27_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_107_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 2242 2992 1892 fixation_cross gabor_102 gabor_122 gabor_079 gabor_033 gabor_102_alt gabor_122 gabor_079 gabor_033_alt "2_28_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_1900_gabor_patch_orientation_102_122_079_033_target_position_1_4_retrieval_position_1" gabor_149_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_28_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_149_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 2242 2992 1892 fixation_cross gabor_053 gabor_069 gabor_137 gabor_024 gabor_053_alt gabor_069 gabor_137_alt gabor_024 "2_29_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_1900_gabor_patch_orientation_053_069_137_024_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_137_framed gabor_circ blank blank blank blank fixation_cross_white "2_29_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_137_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 63 292 292 399 125 1742 2992 2092 fixation_cross gabor_011 gabor_101 gabor_167 gabor_136 gabor_011 gabor_101_alt gabor_167 gabor_136_alt "2_30_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_UncuedRetriev_300_300_399_1750_3000_2100_gabor_patch_orientation_011_101_167_136_target_position_2_4_retrieval_position_1" gabor_057_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_30_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_057_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 2142 2992 2442 fixation_cross gabor_130 gabor_052 gabor_077 gabor_158 gabor_130_alt gabor_052 gabor_077 gabor_158_alt "2_31_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2450_gabor_patch_orientation_130_052_077_158_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_158_framed blank blank blank blank fixation_cross_white "2_31_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_158_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 2142 2992 2242 fixation_cross gabor_103 gabor_023 gabor_042 gabor_159 gabor_103_alt gabor_023_alt gabor_042 gabor_159 "2_32_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_2250_gabor_patch_orientation_103_023_042_159_target_position_1_2_retrieval_position_2" gabor_circ gabor_071_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_32_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_071_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 1942 2992 2342 fixation_cross gabor_041 gabor_131 gabor_009 gabor_162 gabor_041_alt gabor_131 gabor_009_alt gabor_162 "2_33_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2350_gabor_patch_orientation_041_131_009_162_target_position_1_3_retrieval_position_1" gabor_179_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_33_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_179_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 63 292 292 399 125 2092 2992 1992 fixation_cross gabor_143 gabor_168 gabor_102 gabor_058 gabor_143 gabor_168 gabor_102_alt gabor_058_alt "2_34_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_UncuedRetriev_300_300_399_2100_3000_2000_gabor_patch_orientation_143_168_102_058_target_position_3_4_retrieval_position_2" gabor_circ gabor_031_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_34_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_031_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 2092 2992 2092 fixation_cross gabor_145 gabor_018 gabor_058 gabor_128 gabor_145_alt gabor_018 gabor_058_alt gabor_128 "2_35_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2100_gabor_patch_orientation_145_018_058_128_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_107_framed gabor_circ blank blank blank blank fixation_cross_white "2_35_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_107_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 1892 2992 2192 fixation_cross gabor_176 gabor_057 gabor_133 gabor_114 gabor_176 gabor_057_alt gabor_133_alt gabor_114 "2_36_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2200_gabor_patch_orientation_176_057_133_114_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_087_framed gabor_circ blank blank blank blank fixation_cross_white "2_36_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_087_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 1892 2992 2392 fixation_cross gabor_095 gabor_056 gabor_167 gabor_112 gabor_095 gabor_056 gabor_167_alt gabor_112_alt "2_37_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2400_gabor_patch_orientation_095_056_167_112_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_027_framed gabor_circ blank blank blank blank fixation_cross_white "2_37_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_027_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 1942 2992 1942 fixation_cross gabor_073 gabor_054 gabor_001 gabor_026 gabor_073 gabor_054_alt gabor_001 gabor_026_alt "2_38_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_1950_gabor_patch_orientation_073_054_001_026_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_026_framed blank blank blank blank fixation_cross_white "2_38_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_026_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 64 292 292 399 125 2142 2992 2592 fixation_cross gabor_003 gabor_154 gabor_178 gabor_070 gabor_003 gabor_154_alt gabor_178_alt gabor_070 "2_39_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_UncuedRetriev_300_300_399_2150_3000_2600_gabor_patch_orientation_003_154_178_070_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_070_framed blank blank blank blank fixation_cross_white "2_39_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_070_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 1742 2992 2292 fixation_cross gabor_009 gabor_148 gabor_124 gabor_037 gabor_009_alt gabor_148 gabor_124_alt gabor_037 "2_40_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2300_gabor_patch_orientation_009_148_124_037_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_124_framed gabor_circ blank blank blank blank fixation_cross_white "2_40_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_124_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 1992 2992 2042 fixation_cross gabor_021 gabor_086 gabor_144 gabor_172 gabor_021_alt gabor_086 gabor_144_alt gabor_172 "2_41_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2050_gabor_patch_orientation_021_086_144_172_target_position_1_3_retrieval_position_1" gabor_021_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_41_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_021_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 1992 2992 2242 fixation_cross gabor_110 gabor_170 gabor_026 gabor_004 gabor_110_alt gabor_170_alt gabor_026 gabor_004 "2_42_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2250_gabor_patch_orientation_110_170_026_004_target_position_1_2_retrieval_position_1" gabor_110_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_42_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_110_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 2142 2992 2592 fixation_cross gabor_036 gabor_171 gabor_066 gabor_001 gabor_036_alt gabor_171_alt gabor_066 gabor_001 "2_43_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2600_gabor_patch_orientation_036_171_066_001_target_position_1_2_retrieval_position_1" gabor_036_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_43_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_036_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 2042 2992 1992 fixation_cross gabor_064 gabor_083 gabor_138 gabor_100 gabor_064_alt gabor_083 gabor_138_alt gabor_100 "2_44_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_2000_gabor_patch_orientation_064_083_138_100_target_position_1_3_retrieval_position_1" gabor_015_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_44_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_015_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 2092 2992 1942 fixation_cross gabor_021 gabor_158 gabor_042 gabor_082 gabor_021 gabor_158_alt gabor_042 gabor_082_alt "2_45_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_1950_gabor_patch_orientation_021_158_042_082_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_082_framed blank blank blank blank fixation_cross_white "2_45_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_082_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 2192 2992 2242 fixation_cross gabor_167 gabor_001 gabor_078 gabor_043 gabor_167_alt gabor_001_alt gabor_078 gabor_043 "2_46_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2250_gabor_patch_orientation_167_001_078_043_target_position_1_2_retrieval_position_1" gabor_167_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_46_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_167_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 63 292 292 399 125 1742 2992 1992 fixation_cross gabor_154 gabor_042 gabor_124 gabor_097 gabor_154 gabor_042_alt gabor_124 gabor_097_alt "2_47_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_UncuedRetriev_300_300_399_1750_3000_2000_gabor_patch_orientation_154_042_124_097_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_079_framed gabor_circ blank blank blank blank fixation_cross_white "2_47_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_079_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 1942 2992 2142 fixation_cross gabor_168 gabor_013 gabor_036 gabor_124 gabor_168 gabor_013_alt gabor_036 gabor_124_alt "2_48_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2150_gabor_patch_orientation_168_013_036_124_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_078_framed blank blank blank blank fixation_cross_white "2_48_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_078_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 1842 2992 2342 fixation_cross gabor_083 gabor_114 gabor_038 gabor_055 gabor_083 gabor_114 gabor_038_alt gabor_055_alt "2_49_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2350_gabor_patch_orientation_083_114_038_055_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_055_framed blank blank blank blank fixation_cross_white "2_49_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_055_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 2242 2992 2092 fixation_cross gabor_023 gabor_154 gabor_113 gabor_087 gabor_023 gabor_154_alt gabor_113_alt gabor_087 "2_50_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_2100_gabor_patch_orientation_023_154_113_087_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_113_framed gabor_circ blank blank blank blank fixation_cross_white "2_50_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_113_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 1742 2992 2392 fixation_cross gabor_151 gabor_097 gabor_025 gabor_067 gabor_151 gabor_097 gabor_025_alt gabor_067_alt "2_51_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2400_gabor_patch_orientation_151_097_025_067_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_067_framed blank blank blank blank fixation_cross_white "2_51_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_067_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 1892 2992 2492 fixation_cross gabor_176 gabor_052 gabor_003 gabor_136 gabor_176 gabor_052_alt gabor_003 gabor_136_alt "2_52_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2500_gabor_patch_orientation_176_052_003_136_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_088_framed blank blank blank blank fixation_cross_white "2_52_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_088_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 64 292 292 399 125 1892 2992 2292 fixation_cross gabor_024 gabor_162 gabor_055 gabor_092 gabor_024 gabor_162 gabor_055_alt gabor_092_alt "2_53_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_UncuedRetriev_300_300_399_1900_3000_2300_gabor_patch_orientation_024_162_055_092_target_position_3_4_retrieval_position_1" gabor_024_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_53_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_024_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 2192 2992 2142 fixation_cross gabor_133 gabor_154 gabor_095 gabor_118 gabor_133 gabor_154_alt gabor_095_alt gabor_118 "2_54_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2150_gabor_patch_orientation_133_154_095_118_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_095_framed gabor_circ blank blank blank blank fixation_cross_white "2_54_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_095_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 64 292 292 399 125 2192 2992 2292 fixation_cross gabor_063 gabor_002 gabor_174 gabor_129 gabor_063_alt gabor_002 gabor_174 gabor_129_alt "2_55_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_UncuedRetriev_300_300_399_2200_3000_2300_gabor_patch_orientation_063_002_174_129_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_174_framed gabor_circ blank blank blank blank fixation_cross_white "2_55_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_174_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 1842 2992 1942 fixation_cross gabor_084 gabor_115 gabor_147 gabor_001 gabor_084_alt gabor_115_alt gabor_147 gabor_001 "2_56_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_1950_gabor_patch_orientation_084_115_147_001_target_position_1_2_retrieval_position_2" gabor_circ gabor_115_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_56_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_115_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 2092 2992 2342 fixation_cross gabor_051 gabor_073 gabor_089 gabor_104 gabor_051 gabor_073_alt gabor_089_alt gabor_104 "2_57_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2350_gabor_patch_orientation_051_073_089_104_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_138_framed gabor_circ blank blank blank blank fixation_cross_white "2_57_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_138_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 2142 2992 1892 fixation_cross gabor_009 gabor_041 gabor_058 gabor_086 gabor_009_alt gabor_041_alt gabor_058 gabor_086 "2_58_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_1900_gabor_patch_orientation_009_041_058_086_target_position_1_2_retrieval_position_2" gabor_circ gabor_041_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_58_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_041_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 63 292 292 399 125 1792 2992 2192 fixation_cross gabor_169 gabor_093 gabor_034 gabor_115 gabor_169_alt gabor_093 gabor_034 gabor_115_alt "2_59_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_UncuedRetriev_300_300_399_1800_3000_2200_gabor_patch_orientation_169_093_034_115_target_position_1_4_retrieval_position_2" gabor_circ gabor_141_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_59_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_141_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 1792 2992 2492 fixation_cross gabor_095 gabor_009 gabor_037 gabor_176 gabor_095_alt gabor_009 gabor_037_alt gabor_176 "2_60_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2500_gabor_patch_orientation_095_009_037_176_target_position_1_3_retrieval_position_1" gabor_095_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_60_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_095_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 1942 2992 1892 fixation_cross gabor_038 gabor_153 gabor_123 gabor_016 gabor_038 gabor_153 gabor_123_alt gabor_016_alt "2_61_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_1900_gabor_patch_orientation_038_153_123_016_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_016_framed blank blank blank blank fixation_cross_white "2_61_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_016_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 1842 2992 2342 fixation_cross gabor_137 gabor_032 gabor_098 gabor_071 gabor_137 gabor_032 gabor_098_alt gabor_071_alt "2_62_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2350_gabor_patch_orientation_137_032_098_071_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_050_framed gabor_circ blank blank blank blank fixation_cross_white "2_62_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_050_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 1842 2992 2542 fixation_cross gabor_135 gabor_070 gabor_085 gabor_115 gabor_135 gabor_070_alt gabor_085_alt gabor_115 "2_63_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2550_gabor_patch_orientation_135_070_085_115_target_position_2_3_retrieval_position_2" gabor_circ gabor_025_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_63_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_025_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 2242 2992 2442 fixation_cross gabor_022 gabor_162 gabor_137 gabor_089 gabor_022_alt gabor_162_alt gabor_137 gabor_089 "2_64_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2450_gabor_patch_orientation_022_162_137_089_target_position_1_2_retrieval_position_1" gabor_072_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_64_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_072_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 1792 2992 2042 fixation_cross gabor_093 gabor_011 gabor_031 gabor_159 gabor_093_alt gabor_011 gabor_031_alt gabor_159 "2_65_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2050_gabor_patch_orientation_093_011_031_159_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_077_framed gabor_circ blank blank blank blank fixation_cross_white "2_65_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_077_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 2092 2992 2292 fixation_cross gabor_077 gabor_095 gabor_044 gabor_061 gabor_077_alt gabor_095 gabor_044_alt gabor_061 "2_66_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2300_gabor_patch_orientation_077_095_044_061_target_position_1_3_retrieval_position_1" gabor_127_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_66_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_127_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 63 292 292 399 125 2192 2992 2592 fixation_cross gabor_094 gabor_040 gabor_011 gabor_117 gabor_094 gabor_040 gabor_011_alt gabor_117_alt "2_67_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_UncuedRetriev_300_300_399_2200_3000_2600_gabor_patch_orientation_094_040_011_117_target_position_3_4_retrieval_position_2" gabor_circ gabor_177_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_67_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_177_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 1842 2992 1942 fixation_cross gabor_044 gabor_156 gabor_098 gabor_017 gabor_044_alt gabor_156 gabor_098_alt gabor_017 "2_68_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_1950_gabor_patch_orientation_044_156_098_017_target_position_1_3_retrieval_position_1" gabor_179_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_68_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_179_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 63 292 292 399 125 2192 2992 2042 fixation_cross gabor_119 gabor_034 gabor_085 gabor_006 gabor_119_alt gabor_034 gabor_085 gabor_006_alt "2_69_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_UncuedRetriev_300_300_399_2200_3000_2050_gabor_patch_orientation_119_034_085_006_target_position_1_4_retrieval_position_2" gabor_circ gabor_169_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_69_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_169_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 1792 2992 1992 fixation_cross gabor_015 gabor_073 gabor_162 gabor_104 gabor_015 gabor_073_alt gabor_162 gabor_104_alt "2_70_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2000_gabor_patch_orientation_015_073_162_104_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_055_framed blank blank blank blank fixation_cross_white "2_70_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_055_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
};
# baselinePost (at the end of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
};
time = 0;
duration = 5000;
code = "BaselinePost";
port_code = 92;
}; |
883203d6336a0a5d0fe7f1480a9c70aea1396f83 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1952/CH12/EX12.20/Ex20.sce | 9f016011c6650a3a04a6f164b8b70e4908d260f8 | [] | 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 | 809 | sce | Ex20.sce | // Additional solved examples , Example 20 , pg 339
rho=1.8*10^-8 //resistivity (in ohm*m)
Ef=4.8 //Fermi energy (in eV)
E=100 //electric field intensity (in V/m)
n=6.2*10^28 //concentration of electrons (in atoms/m^3)
e=1.6*10^-19 //charge in electron (in C)
Me=9.11*10^-31 //mass of electron (in Kg)
T=Me/(rho*n*e^2) //relaxation time
Un=(e*T)/Me //mobility of electron
Vd=(e*T*E)/Me //drift velocity
Vf=sqrt((2*Ef*e)/Me) //Fermi velocity
lam_m=Vf*T //mean free path
printf("Relaxation time of electron (in s)")
disp(T)
printf("Mobility of electron (in m^2/(V*s))")
disp(Un)
printf("Drift velocity of electron (in m/s)")
disp(Vd)
printf("Fermi velocity of electrons (in m/s)")
disp(Vf)
printf("Mean free path(in m)")
disp(lam_m)
|
14819a7ea30851e07a7cb8ad0bbce375db242146 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1238/CH1/EX1.11/11.sce | b2bf00fa1760de06c4b7d8921f289ffd17fc6125 | [] | 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 | 358 | sce | 11.sce | //hex to binary and decimal conversion//
//example 11//
clc
//clears the command window//
clear
//clears//
//decimal conversion//
x='CD42'
a=hex2dec('CD42');//hex to decimal conversion//
disp(a);//answer displayed in decimal form//
//binary conversion//
b=dec2bin(a);//dedcimal to binary conversion//
disp(b);//answer displayed in binary form//
|
4e1d51ecf0810ddd812ff1c63bc14b4ac74a450b | 0e1b45c07f0938ba9c8a003d6ae1cf2d8315efdb | /codeforces.ru/62D, Two from three/java/problem/test-02.tst | bc6916fe0a1c6ef07ffa8fb61de2501796d7039e | [] | no_license | Kot-Angens/acm | c85d8582c3e84f218415321743864b9680e01f2e | 05472eaa0fff7abb6679826085da5e0c990df4cb | refs/heads/master | 2021-01-24T22:36:05.159612 | 2012-10-02T13:51:56 | 2012-10-02T13:51:56 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 51 | tst | test-02.tst | 5
2 4 3 1 4
~~~~~~~~~~~~~~~~~~~~~~~~~~
8
1 3
2 5
4
|
23a98e95ad9f2a8a050cdb6649ccd5bd87a2cf37 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1439/CH5/EX5.5/5_5.sce | ac4cf5d3d1d190b6d22a830acaee74d9dd5ccd48 | [] | 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 | 236 | sce | 5_5.sce | clc
//initialisation of variables
n= 2 //mole
R= 1.987 //cal K^-1 mole^-1
X1= 0.5 //atm
X2= 0.5 //atm
//CALCULATIONS
S= -2.303*n*R*(X1*log10(X1)+X2*log10(X2))
//RESULTS
printf ('change in entropy= %.2f cal deg^-1 mole^-1',S)
|
82f7a3686df5993c53d6e15c9f9fca4416c99d06 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1055/CH13/EX13.2/ch13_2.sce | aa36a208ffbfa3364e83c830b2e1c95b9e595247 | [] | 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 | 441 | sce | ch13_2.sce | // Find the symmetrical component of currents
clear
clc;
Ia=500+ %i*150;// Line current in phase a
Ib=100- %i*600;// Line current in phase b
Ic=-300+ %i*600;// Line current in phase c
L=(cosd(120)+ %i*sind(120));
Iao=(Ia+Ib+Ic)/3;
Ia1=(Ia+Ib*L+(L^2)*Ic)/3;
Ia2=(Ia + (L^2)*Ib +(L*Ic))/3;
disp(Iao,"Iao(amps)=");
disp(Ia1,"Ia1(amps)=");
disp(Ia2,"Ia2(amps)=");// Answer in the book is not correct.wrong calculation in the book
|
1cefd0ebc206b7c544430b865f5e260dca99527f | d145a801b8f64afaf9dd0330b93936ca3343cbdb | /test_suite/restrain.tst | f72a7c73ee0f2ec68cd0352a6d88fa296f67ffe1 | [] | no_license | ChemCryst/crystals | 0fff27ff8576b7c7199e1eaa671407d50132b98e | 8087c68d7f05b903473cee1cb131c06f819dc660 | refs/heads/master | 2023-08-17T16:36:03.675124 | 2023-06-26T10:54:29 | 2023-06-26T10:54:29 | 152,602,292 | 2 | 0 | null | 2023-06-26T10:54:30 | 2018-10-11T14:09:45 | Roff | UTF-8 | Scilab | false | false | 3,556 | tst | restrain.tst | \set time slow
\rele print CROUTPUT:
\TITLE P6122 - LARSON'S TEST CASE ADAPTED TO TEST THE RESTRAINTS CHECKING
END
\LIST 1
REAL 8.53 8.53 20.37 0.0 0.0 -0.5
END
\LIST 2
CELL NSYM= 12, CENTRIC= NO
SYM X,Y,Z
SYM -X , -Y ,Z+.5
SYM +Y, +X,1/3-Z
SYM -Y,-X,5/6-Z
SYM -Y, X-Y, .333333333+Z
SYM Y, Y-X, Z+10/12
SYM -X, Y-X, 4/6-Z
SYM X, X-Y, 1/6-Z
SYM Y-X, -X, Z+4/6
SYM X-Y, X, Z+1/6
SYM X-Y, -Y, -Z
SYM Y-X, Y , -Z+.5
END
\LIST 5
READ NATOM=3, NLAYER=4, NELEMENT=3
LAYERS 1 2 3 4
ELEMENTS 10 20 30
\
\ THIS VERSION OF THE DECK HAS THE COORDINATES
\ OF C AND O INTERCHANGED AND EXPANDED
\
ATOM O 1 X=0.488 0.096 0.038 OCC=1. flag=0
CONT U[11]=0.03 0.04 0.05 -0.01 -0.02 0.01
ATOM S 1 X=0.202 0.798 0.91667 OCC=0.5 flag=0
CONT U[11]=0.02533 0.02533 0.02533 0.0 0.0 0.012665
ATOM C 1 X=0.498 0.498 0.66667 OCC=0.5 flag=0
CONT U[11]=0.04137 0.04137 0.02533 0.0 0.0 0.020685
END
\LIST 29
END
\LIST 12
DIAG O(1,X,Y,Z,U[11],U[22],U[33],U[23],U[13],U[12]) S(1,U[33],U[12])
PLUS C(1,U[33],U[12])
EQUIV S(1,X) S(1,Y)
EQUIV C(1,X) C(1,Y)
WEIGHT -1. S(1,Y)
EQUIV S(1,U[11],U[22])
EQUIV C(1,U[11],U[22])
EQUIV S(1,U[23],U[13])
EQUIV C(1,U[23],U[13])
WEIGHT -1. C(1,U[13])
END
\LIST 23
refine special=no update=no
END
\LIST 16
EXECUTION
RESTRAIN 1.5 , 0.03 = SQRT
CONT ((C(1,5,X)-S(1,5,X))*(C(1,5,X)-S(1,5,X))*G(1,1)
CONT +(C(1,5,X)-S(1,5,X))*(C(1,5,Y)-S(1,5,Y))*G(1,2)
CONT +(C(1,5,X)-S(1,5,X))*(C(1,5,Z)-S(1,5,Z))*G(1,3)
CONT +(C(1,5,Y)-S(1,5,Y))*(C(1,5,X)-S(1,5,X))*G(2,1)
CONT +(C(1,5,Y)-S(1,5,Y))*(C(1,5,Y)-S(1,5,Y))*G(2,2)
CONT +(C(1,5,Y)-S(1,5,Y))*(C(1,5,Z)-S(1,5,Z))*G(2,3)
CONT +(C(1,5,Z)-S(1,5,Z))*(C(1,5,X)-S(1,5,X))*G(3,1)
CONT +(C(1,5,Z)-S(1,5,Z))*(C(1,5,Y)-S(1,5,Y))*G(3,2)
CONT +(C(1,5,Z)-S(1,5,Z))*(C(1,5,Z)-S(1,5,Z))*G(3,3))
DISTANCE 1.5 , 0.03 = C(1) TO S(1) , C(1,5) TO S(1,5) S(1,7,1,-1)
CONT TO C(1,7,1,-1)
DISTANCE 1.5 , 0.03 = DIFFERENCE C(1,5) TO S(1,5) C(1) TO S(1)
CONT C(1) TO O(1) C(1,7) TO O(1,7)
DISTANCE 0.0 , 0.03 = MEAN C(1,5) TO S(1,5) C(1) TO S(1)
CONT C(1) TO O(1) C(1,7) TO O(1,7)
ANGLES 0 , 1.0 = C(1) TO S(1) TO O(1) , C(1,7,,-1) TO S(1,7,,-1)
CONT TO O(1,7,,-1)
ANGLES 0.0 , 1.0 = DIFFERENCE C(1) TO S(1) TO O(1)
CONT C(1,7) TO S(1,7) TO O(1,7)
CONT S(1,3) TO C(1,3) TO O(1,4)
ANGLES 0.0 , 1.0 = MEAN C(1) TO S(1) TO O(1)
CONT C(1,7) TO S(1,7) TO O(1,7)
CONT S(1,3) TO C(1,3) TO O(1,4)
CONT S(1,3) TO C(1,3) TO O(1,4)
VIBRATION 0.0 , 0.06 = S(1,5) TO O(1,5)
CONT S(1) TO O(1) S(1) TO C(1) S(1,7) TO C(1,7)
RESTRAIN 0.0,0.01=S(1,U[11])-O(1,U[11])
RESTRAIN 0.0,0.01=S(1,5,U[11])-O(1,5,U[11])
RESTRAIN 0.0,0.01=S(1,7,U[22])-O(1,7,U[22])
RESTRAIN 0.0,0.01=S(1,7,U[12])-O(1,7,U[12])
U(IJ) 0.0,0.01=S(1) TO O(1) S(1,5) TO O(1,5) S(1,7) TO O(1,7)
END
\CHECK
\LIST 16
COMPILER LISTING
EXECUTION LISTING
RESTRAIN 0,1=ELEMENT(1)+ELEMENT(2)+ELEMENT(3)
RESTRAIN 0,1=LAYER(4)+LAYER(1)+LAYER(3)+SCALE+DU[ISO]
RESTRAIN 0,1=S(1,,X)*SCALE+C(1,Y)*ELEMENT(2)+ELEMENT(3)*O(1,Z)
CONT +LAYER(3)*S(1,U[11])+ELEMENT(2)+ELEMENT(3)
END
\CHECK
END
\ TEST SPECIAL PARAMETERS
\LIST 1
REAL 10 10 10 90 98 90
END
\LIST 23
MOD ANOM=YES EXTI=YES BATCH=YES LAYER=YES
END
\SPACE
SYM P 21/C
END
\LIST 5
READ NATOM = 2 NLAYER=2 NELEM=1 NBATCH=2 NCELL=2 NPROF=3 NEXT=2
INDEX 1 0 0 0
LAYERS 1.1 1.2
ELEMENTS 1.3
BATCH 1.4 1.5
CELL 10 10
PROFILE 1.6 1.7 1.8
EXTINCTION 0.9 0.8
ATOM C 1 X=.1 .2 .3
ATOM C 2 X=.2 .3 .4
END
\list 12
full
end
\LIST 16
compiler
execut
SUM LAYER SCALES
SUM ELEMENT SCALES
SUM BATCH SCALES
SUM X
SUM CELL PARAMETERS
SUM PROFILE(1) PROFILE(2) PROFILE(3)
SUM PROFILE parameters
SUM EXTINCTION PARAMETERS
END
\CHECK
END
\FINI
\\
|
c3e683294517b579c9e9d3f4da250f03eded6faa | 449d555969bfd7befe906877abab098c6e63a0e8 | /2072/CH27/EX27.5/EX27_5.sce | 553481236fd50d4bf548a34df3e018be588fd423 | [] | 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 | 274 | sce | EX27_5.sce | //Chapter 27
clc
//Example 5
//given
V=10^5 //potential difference in Volts
h=6.63*10^-34 // plancks constant in J.s
c=3*10^8// velocity of light in m/s
e=1.6*10^-19// elelctronic charge in coulombs
L_min=(h*c)/(e*V)
disp(L_min,"Minimum wavelength produced in meters is")
|
198a09ab3a1ff82fbeb9fa2f2fd1247abc1c3443 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1962/CH10/EX10.5/example10_5.sce | e103371146929da0150acb7231080f1b940cb311 | [] | 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 | 165 | sce | example10_5.sce |
//example 10.5
//page 378
clc; funcprot(0);
//initialisation of variable
Vc=20;//velocity
g=9.81;
yc=(Vc^2/g)^(1/3);
disp(yc,"critical depth(m)=");
clear
|
1822eb1be033b3b26c50370dc250b017d326617d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1760/CH2/EX2.13/EX2_13.sce | dd5ad47c2bc5952099e94fe589fa5d926a97dd8c | [] | 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 | 242 | sce | EX2_13.sce | //EXAMPLE 2-13 PG NO-67
T=20*10^-3; //TIME PERIOD
Ta=300*10^-3; //TOTAL AREA
A=(Ta)/T; //AVERAGE VALUE
disp('ii) AVERAGE VALUE (A) is = '+string (A) +' V ');
|
87e69cf9abb9bbd16cdd08146cae6fef05889744 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2375/CH10/EX10.2/ex10_2.sce | 6eedda5e185aa06cda859bc6d9689270852026dd | [] | 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 | 284 | sce | ex10_2.sce | // Exa 10.2
clc;
clear;
close;
format('v',6)
// Given data
A = 1000;
Zi = 1;// in k ohm
Zi = Zi * 10^3;// in ohm
Beta = 0.01;
Zdesh_i = (1+A*Beta)*Zi;// in ohm
Zdesh_i =Zdesh_i *10^-3;// in k ohm
disp(Zdesh_i,"The input impedance of the feedback amplifier in k ohm is");
|
82908f8c8b6bc254b72ca1f2bd76230afb7f0cfb | 97135f725c599527ba0fd95a5289373c755daf3b | /Examples/test-suite/scilab/char_constant_runme.sci | b8848d013aa9646629ee9266d938b33f472893e5 | [] | no_license | maqalaqil/swag-c- | b8880cfc92424d5bbca1fe15ed98663a41063f27 | 6fd1ba2bf1d353f24c116a3c89a8540292b86a7d | refs/heads/master | 2020-07-06T21:02:08.949652 | 2019-09-01T07:56:55 | 2019-09-01T07:56:55 | 203,137,066 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 350 | sci | char_constant_runme.sci | exec("alaqiltest.start", -1);
if CHAR_CONSTANT_get() <> "x" then alaqiltesterror(); end
if STRING_CONSTANT_get() <> "xyzzy" then alaqiltesterror(); end
if ESC_CONST_get() <> ascii(1) then alaqiltesterror(); end
if ia_get() <> ascii('a') then alaqiltesterror(); end
if ib_get() <> ascii('b') then alaqiltesterror(); end
exec("alaqiltest.quit", -1);
|
fadc9a69a263f3bebcd4833bc4efbdfc2e0a1aa5 | e41b69b268c20a65548c08829feabfdd3a404a12 | /3DCosmos/Data/Scripts/_Sub/GeneralSettings.SCI | 6d2f2fcca0248d132650cbca140c1c2fd772cc9e | [
"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 | 7,407 | sci | GeneralSettings.SCI | codeblock readtextfile(ScriptDir+"\_TOOLS.sci");
T_scene_create;
sc=T_getscene;
myviewport=T_getviewport;
myviewport.CameraPos=point(0,0,1);
myviewport.CameraDir=vector(0,0,-1);
myviewport.FocalDistance=1;
refframe=sc.addsubframe("refframe");
cframe=refframe.addscreenframe("Controls Frame");
cframe.enablelight=false;
cframe.BlendType=BlendTranslucent;
cframe.DepthMask=DepthMaskDisable;
cframe.color=color(1,1,1,0.5);
root.mousedampingfactor=0.25;
cframe.EnabeMouseArrow(point(0.5,0.5),point(0,0),point(1,1),0.03);
px=0.07;py=0.9;
px2=px+0.4;
textsize=0.03;
showstereo=cframe.add("CheckControl","Size":textsize);
showstereo.checked=ReadSetting("ShowStereo",false);
showstereo.position=point(px,py);
cframe.add("TextControl","Content":'Show in stereo',"Size":textsize,"Position":point(px+1.5*textsize,py));
swapleftright=cframe.add("CheckControl","Size":textsize);
swapleftright.checked=ReadSetting("SwapLeftRight",false);
swapleftright.position=point(px2,py);
cframe.add("TextControl","Content":'Swap left and right',"Size":textsize,"Position":point(px2+1.5*textsize,py));
py=py-2.5*textsize;
mirrorleftH=cframe.add("CheckControl","Size":textsize);
mirrorleftH.checked=ReadSetting("MirrorLeftH",false);
mirrorleftH.position=point(px,py);
cframe.add("TextControl","Content":'Left mirror horizontal',"Size":textsize,"Position":point(px+1.5*textsize,py));
mirrorrightH=cframe.add("CheckControl","Size":textsize);
mirrorrightH.checked=ReadSetting("MirrorRightH",false);
mirrorrightH.position=point(px2,py);
cframe.add("TextControl","Content":'Right mirror horizontal',"Size":textsize,"Position":point(px2+1.5*textsize,py));
py=py-1.5*textsize;
mirrorleftV=cframe.add("CheckControl","Size":textsize);
mirrorleftV.checked=ReadSetting("MirrorLeftV",false);
mirrorleftV.position=point(px,py);
cframe.add("TextControl","Content":'Left mirror vertical',"Size":textsize,"Position":point(px+1.5*textsize,py));
mirrorrightV=cframe.add("CheckControl","Size":textsize);
mirrorrightV.checked=ReadSetting("MirrorRightV",false);
mirrorrightV.position=point(px2,py);
cframe.add("TextControl","Content":'Right mirror vertical',"Size":textsize,"Position":point(px2+1.5*textsize,py));
py=py-1.5*textsize;
cframe.add("TextControl","Content":'Horizontal Stretch:',"Size":textsize,"Position":point(px,py));
stretchfactor=cframe.add("EditControl","Size":textsize,"SizeX":0.15);
stretchfactor.position=point(px+0.25,py);
stretchfactor.content=ReadSetting("HorizontalStretch","1.000");
py=py-1.5*textsize;
cframe.add("TextControl","Content":'Eye separation factor:',"Size":textsize,"Position":point(px,py));
eyesepfactor=cframe.add("EditControl","Size":textsize,"SizeX":0.15);
eyesepfactor.position=point(px+0.25,py);
eyesepfactor.content=ReadSetting("EyeSepFactor","0.025");
py=py-2.5*textsize;
cframe.add("TextControl","Content":'Display',"Size":(1.2*textsize),"Position":point(px,py));
py=py-1.5*textsize;
cframe.add("TextControl","Content":'Name:',"Size":textsize,"Position":point(px,py));
dispname=cframe.add("EditControl","Size":textsize,"SizeX":0.25);
dispname.position=point(px+0.15,py);
dispname.content=ReadSetting("DisplayName","");
fullscreen=cframe.add("CheckControl","Size":textsize);
fullscreen.checked=ReadSetting("FullScreen",false);
fullscreen.position=point(px2+0.1,py);
cframe.add("TextControl","Content":'Full screen',"Size":textsize,"Position":point(px2+0.1+1.5*textsize,py));
py=py-1.5*textsize;
cframe.add("TextControl","Content":'Offset X:',"Size":textsize,"Position":point(px,py));
viewportx0=cframe.add("EditControl","Size":textsize,"SizeX":0.15);
viewportx0.position=point(px+0.15,py);
viewportx0.content=ReadSetting("WinOffsetX","");
cframe.add("TextControl","Content":'Size X:',"Size":textsize,"Position":point(px2,py));
viewportlx=cframe.add("EditControl","Size":textsize,"SizeX":0.15);
viewportlx.position=point(px2+0.15,py);
viewportlx.content=ReadSetting("WinSizeX","");
py=py-1.5*textsize;
cframe.add("TextControl","Content":'Offset Y:',"Size":textsize,"Position":point(px,py));
viewporty0=cframe.add("EditControl","Size":textsize,"SizeX":0.15);
viewporty0.position=point(px+0.15,py);
viewporty0.content=ReadSetting("WinOffsetY","");
cframe.add("TextControl","Content":'Size Y:',"Size":textsize,"Position":point(px2,py));
viewportly=cframe.add("EditControl","Size":textsize,"SizeX":0.15);
viewportly.position=point(px2+0.15,py);
viewportly.content=ReadSetting("WinSizeY","");
py=py-2.5*textsize;
cframe.add("TextControl","Content":'Frame rate:',"Size":textsize,"Position":point(px,py));
framerate=cframe.add("EditControl","Size":textsize,"SizeX":0.15);
framerate.position=point(px+0.15,py);
framerate.content=ReadSetting("FrameRate","");
cframe.add("TextControl","Content":'Sync factor:',"Size":textsize,"Position":point(px2,py));
syncfactor=cframe.add("EditControl","Size":textsize,"SizeX":0.15);
syncfactor.position=point(px2+0.15,py);
syncfactor.content=ReadSetting("SyncFactor","0");
py=py-2.5*textsize;
cframe.add("TextControl","Content":'Lattitude:',"Size":textsize,"Position":point(px,py));
lattitude=cframe.add("EditControl","Size":textsize,"SizeX":0.15);
lattitude.position=point(px+0.15,py);
lattitude.content=ReadSetting("Lattitude","51");
cframe.add("TextControl","Content":'Longitude:',"Size":textsize,"Position":point(px2,py));
longitude=cframe.add("EditControl","Size":textsize,"SizeX":0.15);
longitude.position=point(px2+0.15,py);
longitude.content=ReadSetting("Longitude","0");
py=py-2.5*textsize;
cframe.add("TextControl","Content":'Language:',"Size":textsize,"Position":point(px,py));
language=cframe.add("ListControl","Size":textsize,"SizeX":0.3,"CountY":1);
language.position=point(px+0.15,py);
llist=GetLanguageList;
language.List=llist;
actlanguage=ReadSetting("Language","English");
for i=0 to llist.size-1 do
if llist(i)==actlanguage then language.SelectIdx=i;
py=py-3*textsize;
btok=cframe.add("ButtonControl","Content":'Apply',"Position":point(px,py),"Size":textsize,"SizeX":0.2);
btcancel=cframe.add("ButtonControl","Content":'Cancel',"Position":point(px2,py),"Size":textsize,"SizeX":0.2);
finished=false;
savesettings=false;
while not(finished) do {
if btcancel.wasmodified then finished=true;
if btok.wasmodified then {
savesettings=true;
finished=true;
}
render;
}
if savesettings then {
WriteSetting("ShowStereo",showstereo.Checked);
WriteSetting("SwapLeftRight",swapleftright.Checked);
WriteSetting("MirrorLeftH",mirrorleftH.Checked);
WriteSetting("MirrorLeftV",mirrorleftV.Checked);
WriteSetting("MirrorRightH",mirrorrightH.Checked);
WriteSetting("MirrorRightV",mirrorrightV.Checked);
WriteSetting("HorizontalStretch",stretchfactor.content);
WriteSetting("EyeSepFactor",eyesepfactor.content);
WriteSetting("DisplayName",dispname.content);
WriteSetting("FullScreen",fullscreen.checked);
WriteSetting("WinOffsetX",viewportx0.content);
WriteSetting("WinOffsetY",viewporty0.content);
WriteSetting("WinSizeX",viewportlx.content);
WriteSetting("WinSizeY",viewportly.content);
WriteSetting("FrameRate",framerate.content);
WriteSetting("SyncFactor",syncfactor.content);
WriteSetting("Longitude",longitude.content);
WriteSetting("Lattitude",lattitude.content);
WriteSetting("Language",language.Selected);
#message('Please restart the software now');
Execute(ExecDir+"\z-flux.exe",execdir,false);
ExitProgram;
}
|
033c3eee81740da2624096f4ed3b34b391edf0d4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2168/CH1/EX1.3/Chapter1_example3.sce | c7af4835ccaae31b9529ec5167d457bdf60ff344 | [] | 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 | 323 | sce | Chapter1_example3.sce | clc
clear
//Input data
Fc=220//Fuel consumption in gm/(b.h.p*hr)
CV=10600//Calorific value in kcal/kg
//Calculations
hf=(Fc/1000)*CV//Heat supplied in kcal/hr
O=632//Output in terms of kcal/hr
bn=(O/hf)*100//Brake thermal efficiency in percent
//Output
printf('Brake thermal efficiency is %3.1f percent',bn)
|
fcc28e6413659ef73e07a383f02a577c7d53807b | b68ae1fc3cd37c85031f69e42d92903b7f1a90ab | /projects/08/FunctionCalls/SimpleFunction/SimpleFunctionVME.tst | 17be84bd4ef4a5b706374a45edd74ca23a66748a | [] | no_license | bricef/The-Elements-of-Computing-Systems | fb3aa100c18176ccfc876e9d30319c0b8a5c7635 | 6be81eacaa30ad57b06f018c0aecbcf7e04841bc | refs/heads/master | 2021-01-18T13:43:02.653913 | 2011-04-06T19:23:52 | 2011-04-06T19:23:52 | 1,578,790 | 5 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 731 | tst | SimpleFunctionVME.tst | // This file is part of the materials accompanying the book
// "The Elements of Computing Systems" by Nisan and Schocken,
// MIT Press. Book site: www.idc.ac.il/tecs
// File name: projects/08/FunctionCalls/SimpleFunction/SimpleFunctionVME.tst
load SimpleFunction.vm,
output-file SimpleFunction.out,
compare-to SimpleFunction.cmp,
output-list RAM[0]%D1.6.1 RAM[1]%D1.6.1 RAM[2]%D1.6.1
RAM[3]%D1.6.1 RAM[4]%D1.6.1 RAM[310]%D1.6.1;
set sp 317,
set local 317,
set argument 310,
set this 3000,
set that 4000,
set argument[0] 1234,
set argument[1] 37,
set argument[2] 9,
set argument[3] 305,
set argument[4] 300,
set argument[5] 3010,
set argument[6] 4010,
repeat 10 {
vmstep;
}
output;
|
334025f9cd1e98ebf574947053c6109d2bdad15b | 20253970b7dd99e615215029609de822e2bf855d | /judge/tests/52063/35.tst | 62e30e0e9ad02f35641146f1848417e52549494f | [] | no_license | B-Rich/CATS | d26d6c85cfc1dbdc78fa16f691adbfccc615df03 | d299e328f9e7498ecd9f58f64069fcd57536db00 | refs/heads/master | 2021-01-01T06:10:11.322262 | 2011-06-21T15:06:06 | 2011-06-21T15:06:06 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,163 | tst | 35.tst | 1000 1000
98
33 32 31
33 156 31
33 280 31
33 404 31
33 528 31
33 652 31
33 776 31
95 94 31
95 218 31
95 342 31
95 466 31
95 590 31
95 714 31
95 838 31
157 32 31
157 156 31
157 280 31
157 404 31
157 528 31
157 652 31
157 776 31
219 94 31
219 218 31
219 342 31
219 466 31
219 590 31
219 714 31
219 838 31
281 32 31
281 156 31
281 280 31
281 404 31
281 528 31
281 652 31
281 776 31
343 94 31
343 218 31
343 342 31
343 466 31
343 590 31
343 714 31
343 838 31
405 32 31
405 156 31
405 280 31
405 404 31
405 528 31
405 652 31
405 776 31
467 94 31
467 218 31
467 342 31
467 466 31
467 590 31
467 714 31
467 838 31
529 32 31
529 156 31
529 280 31
529 404 31
529 528 31
529 652 31
529 776 31
591 94 31
591 218 31
591 342 31
591 466 31
591 590 31
591 714 31
591 838 31
653 32 31
653 156 31
653 280 31
653 404 31
653 528 31
653 652 31
653 776 31
715 94 31
715 218 31
715 342 31
715 466 31
715 590 31
715 714 31
715 838 31
777 32 31
777 156 31
777 280 31
777 404 31
777 528 31
777 652 31
777 776 31
839 94 31
839 218 31
839 342 31
839 466 31
839 590 31
839 714 31
839 838 31
|
c00b3284c4d3dca3b4df9b09ced27bb5a931cf81 | e82d1909ffc4f200b5f6d16cffb9868f3b695f2a | /Lista 5/Questao3.sce | 6366279c75ebd739b7dc07011d8adc84cbbbfd26 | [] | no_license | AugustoCam95/Computational-Linear-Algebra | eb14307dd3b45ccc79617efe74d1faca639c36c5 | 99b1a1f9499fbc4343bd5c878444e9e281952774 | refs/heads/master | 2020-03-30T22:26:23.790763 | 2018-10-05T03:34:06 | 2018-10-05T03:34:06 | 151,666,289 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 760 | sce | Questao3.sce |
function [Q, T]=Questao3(A)
//extrai dimensoes
[l,c] = size(A)
//tira o mínimo e armazena em p
p=min(l,c)
//inicia a matriz Q como identidade
Q=eye(l,l)
//
e = eye(l,l)
for k=1:p-1
//pega o vetor coluna de A
x=A(k:l,k)
//calcula v a partir da expressão abaixo
v = x+(sign(x(1)))*norm(x)*e(1:l-k+1,1)
//normaliza v
v = v/norm(v)
//P é a matriz de householder
P = eye(l-k+1, l-k+1) - 2*(v*v')/(v'*v)
//Qk é a matriz Q na iteração K
Qk= [eye(k-1,k-1),zeros(k-1,l-k+1);zeros(l-k+1,k-1),P]
//iterações
A=Qk*A
Q=Qk*Q
end
Q=Q'
T=A
endfunction
|
3e74dc350c8feca96a68eb67f044cf5528a7e1d1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1592/DEPENDENCIES/delta.sce | ec11dea2f4ba826b2ffab7ab2a4492f4c54e1174 | [] | 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 | 87 | sce | delta.sce | clc;
//
function [y]=delta(t)
if t==0
y=1
else y=0
end
endfunction
|
501438645925cf451524c99f8bccaecb44d3b8d3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2201/CH9/EX9.1/ex9_1.sce | 62e853798dfd4cfc8f847432503faabbffbd14f7 | [] | 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 | 552 | sce | ex9_1.sce | // Exa 9.1
clc;
clear;
close;
// Given data
V_TN = 0.7;// in V
W = 45*10^-4;// in cm
L = 4;// in µm
L = L * 10^-4;// in cm
t_ox = 450;// in Å
t_ox = t_ox*10^-8;// in cm
V_GS = 1.4;// in V
Miu_n = 700;// in cm^2/V-s
Epsilon_ox = (8.85*10^-14)*(3.9);// in F/cm
k_n = (W*Miu_n*Epsilon_ox)/(2*L*t_ox);// A/V^2
disp(k_n*10^3,"The value of k_n in mA/V^2 is : ")
I_D = k_n*((V_GS-V_TN)^2);// in A
disp(I_D*10^3,"The current in mA is ");
// Note: There is a calculation error to find the value of k_n, So the answer in the book is wrong
|
d6fbd4ebb4ae50b57efb5da2b0cc22237c5dee33 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2126/CH2/EX2.15/15.sce | ff879d902ae1daf02dd6a6d958dfc653d649fafc | [] | 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,453 | sce | 15.sce | clc
clear
//Input data
A1=0.15 //Inlet area in m^2
C1=240 //Inlet velocity in m/s
T1=300 //Inlet temperature in K
P1=0.7 //Inlet pressure in bar
C2=120 //Exit velocity in m/s
k=1.4 //Adiabatic Constant
R=287 //Specific gas constant in J/kg-K
Cp=1005 //Specific heat capacity at constant pressure in J/kg-K
//Calculations
a1=sqrt(k*R*T1) //Velocity of sound at inlet in m/s
M1=C1/a1 //Inlet mach number
d1=(P1*10^5)/(R*T1) //Density at inlet in kg/s, P1 in Pa
m=d1*A1*C1 //Mass flow rate in kg/s
t1=0.913 //Ratio of inlet temperature to Stagnation temperature from gas tables @M1,k=1.4
To=T1/t1 //Stagnation temperature in K
p1=0.727 //Ratio of inlet pressure to Stagnation pressure from gas tables @M1,k=1.4
Po=P1/p1 //Stagnation pressure in bar
T2=To-(C2^2/(2*Cp)) //Exit temperature in K
t2=T2/To //Temperature ratio
M2=0.33 //Exit mach number from gas tables @t2,k=1.4
p2=0.927 //Ratio of exit pressure to Stagnation pressure from isentropic gas tables @M2,k=1.4
P2=Po*p2 //exit pressure in bar
d2=(P2*10^5)/(R*T2) //Density at exit in kg/s, P2 in Pa
A2=(m/(d2*C2)) //Exit area in m^2
ds=0 //Entropy change in kJ/kg-K, since process is isentropic
//Output
printf('(A)Mass flow rate is %3.3f kg/s\n (B)Stagnation pressure at exit is %3.4f bar\n (C)Stagnation Temperature at exit is %3.3f K\n (D)Static exit pressure is %3.3f bar\n (E)Entropy change is %3i kJ/kg-K\n (F)Exit area is %3.3f m^2',m,Po,To,P2,ds,A2)
|
6e67b602d2f6bf4d33c79fbe032cfdb3864f408c | 6be0aeb751f6e5893a4af029206dfa0e9a2b2c8e | /benchmarks/SanDiegoVision/clava/manualTransformations/dissertation_vision/benchmarks/pca/data/sat.tst | 4754fb0339c7fcbacee22c0ca1cb7477de7228d7 | [
"Apache-2.0",
"BSD-3-Clause"
] | permissive | TheNunoGomes/clava | 15188cdeebad25f105d066f06ed7429da55c3205 | 4a25a5fbd4bcd740c1fbe3d8b6e271c65ae311ae | refs/heads/master | 2023-03-22T12:23:22.335685 | 2021-03-08T17:48:01 | 2021-03-08T17:48:01 | 295,422,617 | 1 | 0 | Apache-2.0 | 2020-12-14T19:14:45 | 2020-09-14T13:20:31 | Mercury | UTF-8 | Scilab | false | false | 236,753 | tst | sat.tst | 2000 37
80 102 102 79 76 102 102 79 76 102 106 83 76 99 108 85 76 103 118 88 80 107 118 88 79 107 109 87 79 107 109 87 79 107 113 87 3
76 102 102 79 76 102 106 83 76 102 106 87 76 103 118 88 80 107 118 88 80 112 118 88 79 107 109 87 79 107 113 87 79 103 104 83 3
80 98 106 79 76 94 102 76 76 94 102 76 80 107 113 85 80 95 100 78 80 95 100 78 79 103 104 79 79 95 100 79 79 95 96 75 4
76 94 102 76 76 94 102 76 76 94 102 76 80 95 100 78 80 95 100 78 80 91 100 78 79 95 100 79 79 95 96 75 79 95 100 75 4
76 94 102 76 76 94 102 76 76 89 94 76 80 95 100 78 80 91 100 78 80 91 100 74 79 95 96 75 79 95 100 75 75 95 100 79 4
76 94 102 76 76 89 94 76 76 89 98 76 80 91 100 78 80 91 100 74 80 95 104 74 79 95 100 75 75 95 100 79 75 91 96 75 4
76 89 94 76 76 89 98 76 76 94 98 76 80 91 100 74 80 95 104 74 76 91 104 74 75 95 100 79 75 91 96 75 75 91 96 71 4
76 94 90 76 76 89 94 76 72 94 90 72 76 91 100 74 76 87 100 74 76 87 91 74 79 87 93 67 75 87 96 71 75 91 96 71 4
76 89 94 76 72 94 90 72 72 89 94 76 76 87 100 74 76 87 91 74 76 87 91 67 75 87 96 71 75 91 96 71 75 87 93 67 4
72 89 98 76 76 94 98 76 72 85 90 72 71 87 87 70 71 83 87 67 68 83 87 67 71 87 89 67 71 79 81 62 71 79 85 62 4
72 85 90 72 68 85 94 72 68 89 90 68 68 83 87 67 68 83 87 67 68 79 87 63 71 79 85 62 67 75 85 62 71 75 85 62 4
68 85 94 72 68 89 90 68 68 85 90 72 68 83 87 67 68 79 87 63 68 79 87 67 67 75 85 62 71 75 85 62 67 79 81 62 4
68 89 90 68 68 85 90 72 68 85 86 68 68 79 87 63 68 79 87 67 71 83 87 67 71 75 85 62 67 79 81 62 71 79 85 62 4
68 85 90 72 68 85 86 68 68 89 86 72 68 79 87 67 71 83 87 67 68 83 87 67 67 79 81 62 71 79 85 62 71 75 81 67 4
80 98 106 83 80 94 102 83 80 102 111 87 76 95 104 81 84 103 104 85 84 103 108 85 75 83 96 83 79 99 104 83 84 99 113 87 3
80 102 111 87 84 106 115 91 88 106 115 91 84 103 108 85 88 107 118 88 88 107 118 92 84 99 113 87 84 99 109 87 84 103 109 83 3
84 106 115 91 88 106 115 91 88 106 115 87 88 107 118 88 88 107 118 92 88 107 118 92 84 99 109 87 84 103 109 83 88 107 113 87 3
88 106 115 91 88 106 115 87 88 111 111 91 88 107 118 92 88 107 118 92 88 112 113 88 84 103 109 83 88 107 113 87 88 107 104 87 3
88 111 111 91 88 106 115 87 84 98 111 83 88 112 113 88 88 103 113 88 88 103 108 85 88 107 104 87 88 107 109 83 84 99 109 83 3
88 106 115 87 84 98 111 83 80 89 115 87 88 103 113 88 88 103 108 85 84 99 108 85 88 107 109 83 84 99 109 83 88 103 109 87 3
92 115 111 91 92 115 115 94 92 111 120 91 88 103 113 88 88 112 118 92 88 112 122 88 84 103 113 87 88 111 113 92 93 107 109 92 3
84 106 111 87 84 106 111 87 84 106 111 87 92 112 128 92 92 112 118 96 92 112 113 88 93 111 113 92 93 116 118 92 88 111 118 92 3
84 106 111 87 84 106 111 87 84 98 111 87 92 112 118 96 92 112 113 88 88 103 113 85 93 116 118 92 88 111 118 92 93 107 113 87 3
84 98 111 87 84 98 106 91 84 102 111 87 88 103 113 85 97 107 113 88 92 112 118 92 93 107 113 87 93 107 113 87 93 107 109 87 3
88 106 106 87 84 106 111 83 88 98 106 83 88 103 108 85 88 103 113 92 88 107 113 88 93 103 109 87 88 107 109 87 88 111 113 92 3
88 111 111 87 88 111 106 87 88 106 111 87 84 103 108 85 88 95 104 81 84 99 108 85 88 95 100 79 88 95 100 83 88 103 100 83 3
84 106 106 87 84 102 111 83 84 98 98 83 84 99 104 85 84 99 104 81 84 99 100 81 88 99 100 79 84 99 104 79 79 95 100 79 3
68 77 94 79 60 62 78 76 64 73 90 76 60 54 87 74 56 61 87 78 71 79 100 81 75 79 96 79 75 83 96 79 84 99 104 83 5
84 98 102 79 80 94 102 76 76 94 94 72 80 91 100 78 76 83 91 74 71 79 87 70 75 87 93 71 75 83 85 71 71 75 85 67 7
76 94 94 72 72 81 82 68 68 73 78 65 71 79 87 70 71 79 79 67 71 79 83 67 71 75 85 67 71 79 77 67 71 75 81 67 7
64 69 78 65 68 77 86 65 64 66 86 68 71 79 79 63 68 75 79 67 60 68 79 67 67 72 81 67 67 64 81 67 59 61 77 71 7
53 49 71 65 57 49 74 65 53 49 74 68 53 54 71 63 56 54 71 63 56 51 67 63 55 51 74 67 55 48 70 62 51 48 70 67 5
101 132 139 103 101 126 133 103 92 112 118 85 102 137 139 108 102 126 134 104 88 121 128 100 90 109 112 89 90 113 117 92 90 113 122 96 3
76 99 104 81 76 99 108 85 76 103 118 88 84 103 104 79 79 107 109 87 79 107 109 87 82 100 108 81 82 100 104 78 78 100 104 81 3
80 107 113 85 80 95 100 78 80 95 100 78 79 103 104 79 79 95 100 79 79 95 96 75 82 100 108 85 78 96 96 78 78 91 92 70 4
80 95 100 78 80 95 100 78 80 91 100 78 79 95 100 79 79 95 96 75 79 95 100 75 78 96 96 78 78 91 92 70 74 91 92 70 4
80 95 100 78 80 91 100 78 80 91 100 74 79 95 96 75 79 95 100 75 75 95 100 79 78 91 92 70 74 91 92 70 78 91 96 74 4
80 91 100 74 80 95 104 74 76 91 104 74 75 95 100 79 75 91 96 75 75 91 96 71 78 91 96 74 74 87 92 70 74 87 88 70 4
76 87 100 74 76 87 91 74 76 87 91 67 75 87 96 71 75 91 96 71 75 87 93 67 74 87 92 70 78 87 88 66 78 87 92 66 4
76 87 91 67 71 87 87 70 71 83 87 67 75 87 93 67 71 87 89 67 71 79 81 62 78 87 92 66 74 83 92 66 70 83 92 66 4
71 87 87 70 71 83 87 67 68 83 87 67 71 87 89 67 71 79 81 62 71 79 85 62 74 83 92 66 70 83 92 66 70 83 88 70 4
68 83 87 67 71 83 87 70 76 91 91 74 71 75 81 62 67 75 85 71 67 75 96 79 59 60 96 81 56 49 104 100 49 40 112 114 4
84 103 108 85 88 107 118 88 88 107 118 92 84 99 113 87 84 99 109 87 84 103 109 83 63 67 104 85 82 96 104 78 86 100 108 85 3
88 107 118 88 88 107 118 92 88 107 118 92 84 99 109 87 84 103 109 83 88 107 113 87 82 96 104 78 86 100 108 85 90 104 112 85 3
88 107 118 92 88 112 113 88 88 103 113 88 88 107 113 87 88 107 104 87 88 107 109 83 90 104 112 85 86 104 108 85 86 104 108 85 3
88 103 113 88 88 103 108 85 84 99 108 85 88 107 109 83 84 99 109 83 88 103 109 87 86 104 108 85 86 104 108 85 86 100 108 85 3
88 103 108 85 84 99 108 85 88 99 104 85 84 99 109 83 88 103 109 87 88 103 109 87 86 104 108 85 86 100 108 85 90 104 112 89 3
92 112 118 92 92 107 113 92 92 107 118 88 88 107 109 92 88 107 109 87 88 107 109 87 90 104 112 89 86 104 108 89 90 104 108 92 3
88 107 113 88 88 103 108 81 88 103 108 88 88 111 113 92 88 107 113 87 88 107 113 87 86 104 108 85 90 109 112 92 86 109 108 89 3
88 103 108 88 84 99 104 85 84 103 108 81 88 107 113 87 88 107 109 83 84 99 104 87 86 109 108 89 86 109 112 89 90 109 112 92 3
84 103 108 85 88 95 104 81 84 99 108 85 88 95 100 79 88 95 100 83 88 103 100 83 86 104 104 85 82 100 100 85 82 100 104 78 3
88 99 104 85 84 99 104 85 84 99 104 81 84 103 104 83 88 99 100 79 84 99 104 79 82 96 100 81 82 100 108 81 82 96 104 78 3
84 99 104 81 84 99 100 81 80 91 96 78 84 99 104 79 79 95 100 79 79 99 100 83 82 96 104 78 82 96 100 81 86 96 104 81 3
71 75 87 78 60 54 87 74 56 61 87 78 79 91 104 79 75 79 96 79 75 83 96 79 82 100 104 78 82 96 104 81 82 96 104 85 5
60 54 87 74 56 61 87 78 71 79 100 81 75 79 96 79 75 83 96 79 84 99 104 83 82 96 104 81 82 96 104 85 82 100 104 85 5
56 61 87 78 71 79 100 81 80 95 100 85 75 83 96 79 84 99 104 83 84 99 104 83 82 96 104 85 82 100 104 85 86 100 108 85 3
80 95 100 85 80 91 100 81 80 91 100 78 84 99 104 83 79 95 100 75 75 87 93 71 86 100 108 85 86 100 112 85 86 100 112 85 7
76 83 91 74 71 79 87 70 71 79 79 67 75 83 85 71 71 75 85 67 71 79 77 67 82 96 100 81 78 83 84 70 74 75 88 66 7
71 79 79 67 71 79 83 67 71 79 79 63 71 79 77 67 71 75 81 67 67 72 81 67 74 75 88 66 70 79 88 66 70 75 76 66 7
88 121 128 100 84 107 113 87 84 99 104 79 90 113 122 96 95 128 127 103 95 123 127 100 87 103 114 90 92 122 135 109 96 127 130 105 3
79 107 109 87 79 107 113 87 79 103 104 83 78 100 104 81 82 104 104 85 82 104 108 85 79 99 105 83 83 103 114 86 79 99 105 83 3
79 107 113 87 79 103 104 83 79 103 104 79 82 104 104 85 82 104 108 85 82 100 108 85 83 103 114 86 79 99 105 83 79 95 101 79 3
79 95 96 75 79 95 100 75 75 95 100 79 78 91 92 70 74 91 92 70 78 91 96 74 83 91 97 72 83 91 97 72 79 91 93 72 4
75 91 96 71 79 87 93 71 79 87 93 67 74 87 88 70 78 87 84 70 74 87 88 66 79 88 93 68 79 91 93 72 75 91 93 68 4
79 87 93 67 75 87 96 71 75 91 96 71 74 87 88 66 74 87 92 70 78 87 88 66 75 91 93 68 79 88 93 68 75 84 90 68 4
75 91 96 71 75 87 93 67 71 87 89 67 78 87 88 66 78 87 92 66 74 83 92 66 75 84 90 68 75 84 93 72 75 88 90 68 4
71 79 81 62 71 79 85 62 67 75 85 62 70 83 92 66 70 83 88 70 70 83 84 66 75 91 97 75 75 88 93 72 67 81 86 64 4
71 79 85 62 67 75 85 62 71 75 85 62 70 83 88 70 70 83 84 66 66 79 84 63 75 88 93 72 67 81 86 64 63 77 86 72 4
67 75 85 62 71 75 85 62 67 79 81 62 70 83 84 66 66 79 84 63 66 79 88 66 67 81 86 64 63 77 86 72 63 73 97 83 4
71 75 85 62 67 79 81 62 71 79 85 62 66 79 84 63 66 79 88 66 70 79 88 66 63 77 86 72 63 73 97 83 59 60 110 98 4
67 79 81 62 71 79 85 62 71 75 81 67 66 79 88 66 70 79 88 66 66 71 88 70 63 73 97 83 59 60 110 98 49 45 119 116 4
67 75 96 79 75 83 96 83 79 99 104 83 49 40 112 114 46 34 122 125 49 40 117 114 46 34 119 131 42 34 119 131 46 34 119 131 2
88 107 104 87 88 107 109 83 84 99 109 83 86 104 108 85 86 104 108 85 86 104 108 85 87 95 105 83 83 99 110 83 87 99 105 86 3
88 103 109 87 93 103 109 87 88 107 109 87 86 104 112 85 86 104 104 81 86 96 104 81 92 103 110 83 92 103 110 86 87 99 105 83 3
88 103 100 83 88 103 109 83 88 103 113 83 82 100 104 78 86 100 96 81 82 100 104 81 83 99 101 79 79 95 101 79 79 95 105 79 3
84 103 104 83 88 99 100 79 84 99 104 79 82 96 100 81 82 100 108 81 82 96 104 78 87 95 97 83 83 99 101 79 83 99 105 79 3
84 99 104 79 79 95 100 79 79 99 100 83 82 96 104 78 82 96 100 81 86 96 104 81 83 99 105 79 83 95 101 79 79 99 97 79 3
79 91 104 79 75 79 96 79 75 83 96 79 82 100 104 78 82 96 104 81 82 96 104 85 83 95 105 83 83 95 101 79 83 99 105 83 3
75 83 96 79 84 99 104 83 84 99 104 83 82 96 104 85 82 100 104 85 86 100 108 85 83 99 105 83 87 99 105 83 83 103 105 86 3
71 75 85 67 71 79 77 67 71 75 81 67 78 83 84 70 74 75 88 66 70 79 88 66 79 88 97 72 71 81 86 68 71 77 82 64 7
71 79 77 67 71 75 81 67 67 72 81 67 74 75 88 66 70 79 88 66 70 75 76 66 71 81 86 68 71 77 82 64 71 81 82 68 7
95 128 127 103 95 123 127 100 82 100 108 85 92 122 135 109 96 127 130 105 92 108 114 86 93 125 135 104 93 130 129 101 89 120 129 97 3
78 100 104 81 82 104 104 85 82 104 108 85 79 99 105 83 83 103 114 86 79 99 105 83 78 102 110 83 82 102 105 83 82 102 101 80 3
82 104 104 85 82 104 108 85 82 100 108 85 83 103 114 86 79 99 105 83 79 95 101 79 82 102 105 83 82 102 101 80 78 102 105 80 3
82 104 108 85 82 100 108 85 78 96 96 78 79 99 105 83 79 95 101 79 83 95 93 75 82 102 101 80 78 102 105 80 78 97 101 80 4
82 100 108 85 78 96 96 78 78 91 92 70 79 95 101 79 83 95 93 75 83 91 97 72 78 102 105 80 78 97 101 80 82 92 93 76 4
74 87 88 70 78 87 84 70 74 87 88 66 79 88 93 68 79 91 93 72 75 91 93 68 82 88 97 73 78 92 97 73 78 88 93 73 4
74 83 92 66 70 83 92 66 70 83 88 70 75 88 90 68 75 91 97 75 75 88 93 72 74 84 89 69 74 88 93 76 67 75 93 80 4
70 83 88 70 70 83 84 66 66 79 84 63 75 88 93 72 67 81 86 64 63 77 86 72 67 75 93 80 57 63 97 90 53 49 110 108 4
66 79 84 63 66 79 88 66 70 79 88 66 63 77 86 72 63 73 97 83 59 60 110 98 53 49 110 108 47 40 119 122 42 37 119 129 2
66 79 88 66 70 79 88 66 66 71 88 70 63 73 97 83 59 60 110 98 49 45 119 116 47 40 119 122 42 37 119 129 44 34 124 136 2
56 49 104 100 49 40 112 114 46 34 122 125 46 32 119 131 46 34 119 131 42 34 119 131 42 31 124 133 44 34 119 133 44 37 119 136 2
82 96 104 78 86 100 108 85 90 104 112 85 71 77 97 75 83 99 105 83 87 103 105 86 53 56 105 97 74 92 101 76 82 102 110 83 3
86 100 108 85 90 104 112 89 90 104 112 85 87 103 105 86 87 108 114 86 92 108 114 90 93 106 114 90 93 115 114 90 93 115 114 90 3
90 104 112 85 90 109 112 85 90 109 117 89 92 108 114 90 96 108 114 90 96 112 114 90 93 115 114 90 93 111 119 90 89 111 114 87 3
90 109 117 89 90 109 112 89 90 109 112 89 96 112 114 90 92 108 110 90 87 108 110 90 89 111 114 87 89 106 114 87 89 106 110 87 3
90 104 112 85 90 104 112 89 86 104 108 89 92 108 114 86 92 108 110 86 92 108 110 86 93 106 114 87 89 111 110 87 85 106 110 87 3
90 109 108 89 86 104 112 85 86 104 104 81 87 103 105 83 92 103 110 83 92 103 110 86 89 106 114 90 93 106 105 90 89 111 110 83 3
86 104 112 85 86 104 104 81 86 96 104 81 92 103 110 83 92 103 110 86 87 99 105 83 93 106 105 90 89 111 110 83 89 111 114 87 3
90 109 112 92 86 109 108 89 86 109 112 89 92 108 110 90 92 108 110 90 87 108 110 86 89 106 110 87 89 106 114 90 89 102 114 90 3
86 104 108 89 86 104 104 85 82 100 100 85 87 103 110 86 83 103 105 86 83 103 110 83 89 106 114 90 85 102 110 87 85 106 114 87 3
82 100 100 85 82 100 104 78 86 100 96 81 83 103 110 83 83 99 101 79 79 95 101 79 85 106 114 87 89 97 105 83 85 102 105 87 3
82 100 104 78 86 100 96 81 82 100 104 81 83 99 101 79 79 95 101 79 79 95 105 79 89 97 105 83 85 102 105 87 85 102 101 80 3
82 100 104 81 82 100 104 81 86 100 104 81 79 95 105 79 83 99 105 83 87 99 105 83 85 102 101 80 85 97 101 83 85 102 110 83 3
82 96 104 78 82 96 100 81 86 96 104 81 83 99 105 79 83 95 101 79 79 99 97 79 89 106 105 87 85 102 110 83 85 102 105 83 3
86 96 104 81 82 96 100 81 82 100 104 78 79 99 97 79 79 99 105 83 83 95 105 83 85 102 105 83 85 102 101 83 82 102 105 83 3
82 96 104 85 82 100 104 85 86 100 108 85 83 99 105 83 87 99 105 83 83 103 105 86 89 106 114 87 89 106 114 83 82 102 105 83 3
86 100 108 85 86 100 112 85 86 100 112 85 83 103 105 86 83 103 105 79 83 103 105 83 82 102 105 83 78 102 105 83 82 106 105 87 3
70 75 76 66 66 71 80 66 66 63 76 66 71 81 82 68 71 77 86 68 67 73 75 60 70 88 89 69 74 84 85 69 74 79 85 69 7
79 99 105 83 83 103 114 86 79 99 105 83 78 102 110 83 82 102 105 83 82 102 101 80 80 98 102 79 80 98 102 79 80 98 98 79 3
83 95 93 75 83 91 97 72 83 91 97 72 78 97 101 80 82 92 93 76 78 92 93 73 84 94 98 76 80 94 94 72 80 89 94 72 4
79 88 93 68 79 91 93 72 75 91 93 68 82 88 97 73 78 92 97 73 78 88 93 73 80 94 94 72 80 89 90 68 80 89 90 72 4
67 81 86 64 63 77 86 72 63 73 97 83 57 63 97 90 53 49 110 108 47 40 119 122 47 34 125 135 47 34 131 135 47 34 125 135 2
63 73 97 83 59 60 110 98 49 45 119 116 47 40 119 122 42 37 119 129 44 34 124 136 47 34 125 135 44 34 131 131 44 34 120 135 2
46 34 119 131 42 34 119 131 46 34 119 131 44 34 119 133 44 37 119 136 44 34 124 136 44 31 125 135 47 31 131 139 41 31 131 135 2
46 34 119 131 52 48 110 105 71 77 97 75 44 34 124 136 44 34 119 133 53 56 105 97 41 31 131 135 41 31 131 139 44 40 120 120 2
83 99 105 83 87 103 105 86 87 95 105 83 74 92 101 76 82 102 110 83 85 102 110 83 64 73 106 83 84 102 106 83 88 111 111 91 3
96 112 114 90 92 108 110 90 87 108 110 90 89 111 114 87 89 106 114 87 89 106 110 87 84 102 106 83 88 106 106 87 88 111 115 83 3
92 108 114 86 92 108 110 86 92 108 110 86 93 106 114 87 89 111 110 87 85 106 110 87 88 106 111 87 84 102 115 87 84 106 115 91 3
92 108 110 86 92 103 105 86 87 103 105 83 85 106 110 87 89 106 114 90 89 106 114 90 84 106 115 91 88 111 115 87 88 106 111 87 3
87 103 105 86 92 108 110 90 92 108 110 90 89 111 110 87 89 106 110 87 89 106 114 90 88 106 115 91 88 115 115 91 92 115 120 94 3
87 108 119 90 87 103 110 86 83 103 105 86 89 106 114 87 89 106 114 90 85 102 110 87 84 106 111 87 88 106 115 87 92 106 111 87 3
83 103 105 86 83 103 110 83 83 99 101 79 85 102 110 87 85 106 114 87 89 97 105 83 92 106 111 87 92 106 111 87 88 102 106 83 3
87 99 105 83 87 95 97 83 83 99 101 79 85 102 110 83 85 111 114 87 89 106 114 87 84 102 115 91 88 111 120 94 88 111 120 91 3
83 99 101 79 83 99 105 79 83 95 101 79 89 106 114 87 89 106 105 87 85 102 110 83 88 111 120 91 88 106 111 91 88 106 106 87 3
83 99 105 79 83 95 101 79 79 99 97 79 89 106 105 87 85 102 110 83 85 102 105 83 88 106 111 91 88 106 106 87 88 106 111 87 3
79 99 105 83 83 95 105 83 83 95 101 79 85 102 101 83 82 102 105 83 82 102 114 87 88 111 111 87 88 102 111 83 84 102 106 83 3
83 95 101 79 83 99 105 83 87 99 105 83 82 102 114 87 89 106 114 87 89 106 114 83 84 102 106 83 88 102 115 87 84 102 102 83 3
87 103 105 83 79 88 97 72 71 81 86 68 82 97 105 87 82 97 105 80 78 88 89 73 80 98 98 79 76 94 94 76 76 89 86 72 3
79 88 97 72 71 81 86 68 71 77 82 64 82 97 105 80 78 88 89 73 70 79 82 65 76 94 94 76 76 89 86 72 76 85 86 72 7
67 73 75 60 63 66 68 57 63 63 72 60 74 79 85 69 67 79 82 65 70 79 82 62 72 85 86 72 72 81 82 68 72 81 86 68 7
78 106 110 87 78 102 110 83 78 102 110 83 84 111 111 91 76 102 102 79 80 98 102 79 84 107 113 85 84 99 104 78 80 95 100 78 3
78 88 97 73 82 88 97 73 78 92 97 73 80 94 94 72 80 94 94 72 80 89 90 68 80 91 91 70 71 91 96 74 76 91 96 70 4
78 88 93 73 78 84 93 69 74 84 89 69 72 85 94 72 72 81 94 72 64 69 102 83 56 54 108 103 56 54 104 92 53 45 113 114 4
78 84 93 69 74 84 89 69 74 88 93 76 72 81 94 72 64 69 102 83 57 49 111 109 56 54 104 92 53 45 113 114 46 34 133 146 2
67 75 93 80 57 63 97 90 53 49 110 108 50 40 125 128 47 34 125 135 47 34 131 135 46 31 139 143 46 31 133 146 43 31 139 146 2
57 63 97 90 53 49 110 108 47 40 119 122 47 34 125 135 47 34 131 135 47 34 125 135 46 31 133 146 43 31 139 146 43 31 139 143 2
44 34 124 136 44 34 124 136 42 31 124 133 44 34 120 135 44 31 120 139 44 34 131 135 46 31 133 139 43 31 133 139 43 31 128 135 2
42 31 124 133 44 34 119 133 44 37 119 136 44 34 131 135 44 31 125 135 47 31 131 139 43 31 128 135 43 31 128 135 46 34 133 132 2
44 34 119 133 53 56 105 97 74 92 101 76 41 31 131 139 44 40 120 120 64 73 106 83 43 31 128 132 46 34 118 132 50 51 113 103 2
82 97 105 83 93 106 114 90 93 115 114 90 84 111 106 87 84 106 111 87 92 106 111 87 88 107 108 88 88 107 113 85 88 107 113 88 3
89 106 110 87 89 102 110 87 93 106 114 90 88 111 115 83 92 111 115 91 88 111 111 87 88 107 113 88 88 107 113 88 88 107 118 88 3
93 106 114 87 89 111 110 87 85 106 110 87 88 106 111 87 84 102 115 87 84 106 115 91 88 107 108 85 88 107 104 88 88 107 108 85 3
93 106 105 90 89 111 110 83 89 111 114 87 88 111 111 87 92 111 115 91 92 111 115 91 84 107 113 88 88 107 118 92 88 107 113 88 3
89 111 114 87 89 111 110 87 89 106 110 87 92 111 115 91 88 106 115 91 88 115 115 91 88 107 113 88 88 107 113 88 88 107 108 88 3
89 111 110 87 89 106 110 87 89 106 114 90 88 106 115 91 88 115 115 91 92 115 120 94 88 107 113 88 88 107 108 88 88 107 113 92 3
85 102 110 87 85 106 114 87 89 97 105 83 92 106 111 87 92 106 111 87 88 102 106 83 84 103 113 88 88 107 113 85 88 103 108 85 3
85 102 101 80 85 97 101 83 85 102 110 83 88 106 115 87 84 111 115 87 84 102 115 91 88 103 113 92 84 107 113 88 88 112 113 92 3
85 111 114 87 89 106 114 87 89 106 105 87 88 111 120 94 88 111 120 91 88 106 111 91 92 112 118 92 88 103 113 85 88 103 108 85 3
78 102 105 83 82 106 105 87 82 97 105 87 84 98 106 83 80 98 102 83 80 98 98 79 76 87 96 70 68 79 83 67 68 79 83 67 3
82 97 105 87 82 97 105 80 78 88 89 73 80 98 98 79 76 94 94 76 76 89 86 72 68 79 83 67 71 75 87 67 71 75 79 63 7
82 97 105 80 78 88 89 73 70 79 82 65 76 94 94 76 76 89 86 72 76 85 86 72 71 75 87 67 71 75 79 63 68 79 83 67 7
74 84 85 69 74 79 85 69 67 79 82 65 68 85 86 68 72 85 86 72 72 81 82 68 71 83 91 74 76 87 91 70 76 83 87 67 7
67 75 74 62 60 63 74 58 57 56 74 62 72 77 78 61 64 73 74 57 68 77 78 65 71 79 79 67 71 83 79 63 68 75 79 63 7
88 125 136 105 88 125 125 102 84 111 111 91 92 116 122 99 88 116 122 96 84 107 113 85 88 111 113 92 88 103 109 87 84 107 113 87 3
88 125 125 102 84 111 111 91 76 102 102 79 88 116 122 96 84 107 113 85 84 99 104 78 88 103 109 87 84 107 113 87 84 103 104 83 3
80 98 102 79 80 98 102 79 80 98 98 79 80 95 100 78 80 99 104 78 80 95 100 78 84 99 100 79 79 99 104 79 84 95 104 79 3
80 98 102 76 84 94 98 76 80 94 94 72 80 99 100 74 84 95 100 78 80 99 100 74 84 99 100 75 79 99 100 75 84 91 100 75 4
84 94 98 76 80 94 94 72 80 89 94 72 84 95 100 78 80 99 100 74 80 95 100 74 79 99 100 75 84 91 100 75 84 95 100 79 3
80 89 98 72 80 94 94 72 80 94 94 72 84 95 100 74 80 91 91 70 71 91 96 74 79 95 100 75 71 83 96 75 67 72 96 83 4
80 89 90 72 80 85 90 68 72 85 94 72 71 79 96 74 68 68 100 88 56 54 108 103 51 45 113 116 44 34 128 129 44 34 123 129 2
47 34 125 135 44 34 131 131 44 34 120 135 43 31 139 143 43 31 133 139 46 31 133 139 44 29 139 150 44 27 134 146 44 29 134 141 2
44 34 131 131 44 34 120 135 44 31 120 139 43 31 133 139 46 31 133 139 43 31 133 139 44 27 134 146 44 29 134 141 44 32 134 137 2
84 111 106 87 84 106 111 87 92 106 111 87 88 107 108 88 88 107 113 85 88 107 113 88 88 107 113 87 88 107 109 87 88 107 109 87 3
84 106 111 87 92 106 111 87 92 111 111 87 88 107 113 85 88 107 113 88 92 107 113 88 88 107 109 87 88 107 109 87 88 107 104 83 3
88 106 111 87 88 111 111 87 92 111 115 91 84 103 108 85 84 107 113 88 88 107 118 92 84 103 104 83 88 107 113 87 93 111 109 92 3
92 115 120 94 88 111 111 91 84 106 111 87 88 107 113 92 92 112 122 92 88 112 113 85 84 107 109 92 88 107 113 92 84 103 109 87 3
88 111 111 91 84 106 111 87 88 106 115 87 92 112 122 92 88 112 113 85 84 99 108 85 88 107 113 92 84 103 109 87 84 103 109 83 3
84 111 115 87 84 102 115 91 88 111 120 94 84 107 113 88 88 112 113 92 92 112 118 92 84 107 118 92 88 111 123 96 93 116 118 96 3
88 111 120 91 88 106 111 91 88 106 106 87 88 103 113 85 88 103 108 85 88 107 113 88 88 111 113 87 88 107 109 83 84 103 109 83 3
88 106 106 87 88 106 111 87 88 111 111 87 88 107 113 88 88 107 118 88 88 103 118 85 84 103 109 83 88 103 113 87 88 107 109 87 3
84 102 106 83 88 102 115 87 84 102 102 83 84 103 108 85 88 103 113 85 84 99 104 81 88 103 109 87 84 99 104 79 79 91 93 71 3
76 89 86 72 76 85 86 72 76 85 86 72 71 75 79 63 68 79 83 67 71 83 87 70 75 79 81 67 71 79 85 62 79 87 89 71 7
76 85 86 72 76 85 86 72 68 85 86 68 68 79 83 67 71 83 87 70 71 83 91 74 71 79 85 62 79 87 89 71 75 87 89 71 7
68 85 86 68 72 85 86 72 72 81 82 68 71 83 91 74 76 87 91 70 76 83 87 67 75 87 89 71 75 83 89 67 75 83 85 67 7
72 85 86 72 72 81 82 68 72 81 86 68 76 87 91 70 76 83 87 67 71 79 83 67 75 83 89 67 75 83 85 67 75 83 89 71 7
72 81 82 68 72 81 86 68 72 77 78 61 76 83 87 67 71 79 83 67 71 79 79 67 75 83 85 67 75 83 89 71 75 79 89 71 7
72 77 78 61 64 73 74 57 68 77 78 65 71 79 79 67 71 83 79 63 68 75 79 63 75 79 89 71 71 79 85 67 75 83 89 67 7
88 121 128 99 92 116 122 99 88 116 122 96 88 111 118 92 88 111 113 92 88 103 109 87 90 109 117 89 86 109 112 92 90 113 122 92 3
80 95 100 78 80 99 104 78 80 95 100 78 84 99 100 79 79 99 104 79 84 95 104 79 86 109 104 85 82 100 104 81 82 100 100 81 3
80 95 100 74 84 95 100 74 80 91 91 70 84 95 100 79 79 95 100 75 71 83 96 75 82 91 100 74 74 79 96 81 66 63 100 92 4
80 91 91 70 71 91 96 74 76 91 96 70 71 83 96 75 67 72 96 83 59 58 104 100 66 63 100 92 56 53 108 107 49 37 122 125 2
56 54 104 92 53 45 113 114 46 34 133 146 48 37 118 121 51 45 113 104 44 37 128 137 46 29 127 136 46 32 122 136 52 40 112 114 2
46 31 139 143 46 31 133 146 43 31 139 146 41 32 139 150 44 32 139 154 44 29 145 150 52 37 117 122 46 29 138 151 49 32 138 151 2
46 31 133 146 43 31 139 146 43 31 139 143 44 32 139 154 44 29 145 150 44 29 139 150 46 29 138 151 49 32 138 151 46 29 138 151 2
46 31 133 139 43 31 133 139 43 31 128 135 44 29 134 141 44 32 134 137 48 34 128 129 46 29 138 147 46 29 133 140 46 32 127 133 2
43 31 133 139 43 31 128 135 43 31 128 135 44 32 134 137 48 34 128 129 48 37 123 125 46 29 133 140 46 32 127 133 46 32 122 125 2
43 31 128 135 43 31 128 135 46 34 133 132 48 34 128 129 48 37 123 125 44 34 118 129 46 32 127 133 46 32 122 125 46 34 122 125 2
46 34 133 132 43 31 128 135 43 31 128 132 44 34 118 129 44 37 123 129 48 34 123 133 46 34 122 125 46 32 117 129 49 34 117 129 2
71 87 104 81 88 103 108 88 88 103 108 88 59 58 104 92 79 91 100 79 88 107 109 87 49 37 117 125 49 43 117 111 66 71 100 85 2
88 107 113 88 88 107 118 88 88 107 113 88 93 107 109 87 88 107 113 87 93 111 109 87 90 109 112 89 90 109 112 89 86 109 112 89 3
88 107 108 85 88 107 104 88 88 107 108 85 93 111 109 87 93 107 113 92 88 103 113 87 90 113 112 92 90 113 112 89 90 109 112 89 3
88 107 104 88 88 107 108 85 88 107 113 85 93 107 113 92 88 103 113 87 84 103 104 83 90 113 112 89 90 109 112 89 86 109 108 89 3
88 107 113 85 84 103 108 85 84 107 113 88 84 103 104 83 84 103 104 83 88 107 113 87 86 109 108 89 86 104 108 85 86 104 108 89 3
84 103 108 85 84 107 113 88 88 107 118 92 84 103 104 83 88 107 113 87 93 111 109 92 86 104 108 85 86 104 108 89 86 104 112 85 3
84 107 113 88 88 107 118 92 88 107 113 88 88 107 113 87 93 111 109 92 88 107 109 87 86 104 108 89 86 104 112 85 86 104 108 89 3
88 107 113 92 92 112 122 92 88 112 113 85 84 107 109 92 88 107 113 92 84 103 109 87 82 104 112 89 86 109 112 92 86 109 112 89 3
92 112 122 92 88 112 113 85 84 99 108 85 88 107 113 92 84 103 109 87 84 103 109 83 86 109 112 92 86 109 112 89 82 100 104 85 3
84 99 108 85 84 103 113 88 88 107 113 85 84 103 109 83 88 103 109 87 88 103 109 83 82 100 104 85 82 100 104 85 90 104 108 85 3
88 103 113 92 84 107 113 88 88 112 113 92 84 111 113 92 84 107 118 92 88 111 123 96 90 109 117 92 90 113 112 96 90 113 122 96 3
88 103 113 85 88 103 108 85 88 107 113 88 88 111 113 87 88 107 109 83 84 103 109 83 95 113 112 92 86 104 108 85 86 100 108 81 3
88 103 118 85 88 99 108 85 84 103 108 85 88 107 109 87 88 103 113 87 88 103 109 87 90 109 108 85 82 96 100 78 70 79 84 66 3
88 103 113 85 84 99 104 81 80 95 91 74 84 99 104 79 79 91 93 71 71 79 77 62 70 75 76 63 70 79 80 66 66 75 80 66 7
84 99 104 81 80 95 91 74 76 87 96 70 79 91 93 71 71 79 77 62 75 83 85 67 70 79 80 66 66 75 80 66 66 71 80 63 7
71 75 79 63 68 79 83 67 71 83 87 70 75 79 81 67 71 79 85 62 79 87 89 71 74 79 80 66 70 75 76 63 70 75 76 63 7
71 79 79 67 71 83 79 63 68 75 79 63 75 79 89 71 71 79 85 67 75 83 89 67 74 83 84 70 74 83 80 70 78 87 92 74 7
93 126 134 108 88 126 134 104 88 121 128 104 90 123 133 103 86 128 133 107 90 123 127 103 87 122 130 101 92 127 135 105 92 122 130 105 3
93 116 123 96 88 111 118 92 88 111 113 92 90 118 122 96 90 109 117 89 86 109 112 92 96 117 119 94 92 112 119 90 92 112 114 94 3
84 103 104 83 84 99 100 79 79 99 104 79 86 113 112 89 86 109 104 85 82 100 104 81 96 112 119 94 92 108 114 90 87 103 105 83 3
79 99 104 79 84 95 104 79 84 99 100 75 82 100 104 81 82 100 100 81 82 100 96 78 87 103 105 83 83 99 101 79 83 95 101 79 3
79 99 100 75 84 91 100 75 84 95 100 79 78 96 100 81 82 96 96 78 82 91 100 74 79 91 105 79 71 73 101 90 63 57 105 101 4
71 83 96 75 67 72 96 83 59 58 104 100 66 63 100 92 56 53 108 107 49 37 122 125 49 37 130 131 46 34 130 135 42 32 130 135 2
44 34 123 129 48 37 118 121 51 45 113 104 43 32 122 133 46 29 127 136 46 32 122 136 42 32 130 135 46 32 124 139 42 34 124 135 2
44 32 134 137 48 34 128 129 48 37 123 125 46 29 133 140 46 32 127 133 46 32 122 125 46 30 124 135 46 32 124 131 46 34 130 131 2
44 34 118 129 44 37 123 129 48 34 123 133 46 34 122 125 46 32 117 129 49 34 117 129 49 34 124 131 46 34 119 124 46 34 119 131 2
48 32 128 129 48 37 123 125 59 58 104 92 46 34 122 129 46 34 122 125 49 37 117 125 46 37 130 127 46 34 124 124 46 37 119 127 2
48 37 123 125 59 58 104 92 79 91 100 79 46 34 122 125 49 37 117 125 49 43 117 111 46 34 124 124 46 37 119 127 46 37 119 124 2
88 107 113 87 88 107 109 87 88 107 109 87 82 96 104 81 90 104 108 85 86 104 108 85 75 84 101 79 87 99 105 83 87 103 110 86 3
88 107 109 87 88 107 104 83 88 107 109 87 86 104 108 85 86 104 104 85 86 104 112 85 87 103 110 86 87 103 110 86 87 103 110 86 3
88 103 109 87 88 111 109 87 93 107 113 92 86 104 108 89 86 109 104 85 86 109 112 85 87 103 105 86 87 103 114 86 87 108 119 90 3
88 111 109 87 93 107 113 92 93 107 109 87 86 109 104 85 86 109 112 85 90 109 112 89 87 103 114 86 87 108 119 90 92 112 119 90 3
88 107 113 87 93 111 109 87 93 111 109 87 90 109 112 89 86 109 112 89 90 113 112 92 92 108 110 90 92 112 119 90 92 108 119 94 3
93 111 109 87 93 107 113 92 88 103 113 87 90 113 112 92 90 113 112 89 90 109 112 89 92 108 119 94 92 108 110 86 87 103 105 86 3
84 107 109 92 88 107 109 87 84 107 109 92 86 104 108 89 86 109 112 89 82 104 112 89 83 103 110 90 87 108 110 90 83 103 105 90 3
88 107 113 92 84 103 109 87 84 103 109 83 86 109 112 92 86 109 112 89 82 100 104 85 87 108 110 90 92 108 114 86 87 103 105 86 3
88 103 109 87 88 103 109 83 88 107 109 87 82 100 104 85 90 104 108 85 90 104 112 85 87 103 105 83 92 112 114 90 96 112 114 94 3
88 103 109 83 88 107 109 87 88 111 109 92 90 104 108 85 90 104 112 85 90 109 117 85 92 112 114 90 96 112 114 94 92 117 124 98 3
84 111 113 92 84 107 118 92 88 111 123 96 90 109 117 92 90 113 112 96 90 113 122 96 92 117 119 94 92 108 114 94 92 108 114 90 3
93 116 118 96 88 111 113 87 88 107 109 83 95 113 117 96 95 113 112 92 86 104 108 85 92 103 110 86 92 99 101 83 83 95 101 79 3
84 103 109 83 88 103 113 87 88 107 109 87 86 100 108 81 86 104 108 85 90 109 108 85 75 91 93 72 75 84 93 72 75 84 90 68 3
88 103 109 87 84 99 104 79 79 91 93 71 70 79 84 66 70 75 76 63 70 79 80 66 63 66 72 60 67 70 72 60 67 73 75 60 7
75 83 85 67 75 79 89 71 75 79 85 71 66 71 80 63 70 79 84 66 70 79 80 70 71 73 79 64 67 73 72 60 63 70 75 57 7
79 87 89 71 75 87 89 71 75 83 89 67 70 75 76 63 70 79 84 66 74 87 92 74 71 77 75 64 71 77 82 68 71 88 93 72 7
75 87 89 71 75 83 89 67 75 83 85 67 70 79 84 66 74 87 92 74 74 83 84 66 71 77 82 68 71 88 93 72 75 84 90 68 7
75 83 85 67 75 83 89 71 75 79 89 71 74 83 84 66 74 83 88 70 74 83 84 70 75 84 90 68 67 73 75 60 63 66 72 57 7
90 113 122 92 90 109 112 92 86 113 112 89 92 112 119 94 92 117 119 98 96 112 119 94 89 115 114 94 93 115 124 97 93 115 119 94 3
90 109 112 92 86 113 112 89 86 109 104 85 92 117 119 98 96 112 119 94 92 108 114 90 93 115 124 97 93 115 119 94 97 111 119 94 3
82 100 100 81 82 100 96 78 78 96 100 81 83 99 101 79 83 95 101 79 79 91 105 79 89 106 101 80 74 75 97 83 53 49 114 108 4
82 91 100 74 74 79 96 81 66 63 100 92 63 57 105 101 52 42 119 124 49 37 130 131 44 31 124 133 44 31 129 140 44 34 129 143 2
74 79 96 81 66 63 100 92 56 53 108 107 52 42 119 124 49 37 130 131 46 34 130 135 44 31 129 140 44 34 129 143 44 31 129 140 2
49 37 122 125 43 32 127 133 43 34 127 133 42 32 130 135 42 32 124 139 42 32 135 139 44 34 124 133 44 34 124 136 44 34 129 140 2
43 32 127 133 43 34 127 133 43 32 122 133 42 32 124 139 42 32 135 139 42 32 130 135 44 34 124 136 44 34 129 140 44 31 124 140 2
52 37 117 122 46 29 138 151 49 32 138 151 52 45 110 109 46 40 119 139 42 30 135 157 44 37 119 126 50 43 110 115 44 34 129 143 2
46 29 133 151 46 29 138 147 46 29 133 140 42 30 135 150 42 30 130 142 46 30 124 135 44 29 124 143 44 34 129 143 44 34 124 143 2
46 29 138 147 46 29 133 140 46 32 127 133 42 30 130 142 46 30 124 135 46 32 124 131 44 34 129 143 44 34 124 143 44 34 119 136 2
46 32 127 133 46 32 122 125 46 34 122 125 46 32 124 131 46 34 130 131 49 34 124 131 44 34 119 136 42 34 119 129 44 34 114 129 2
46 34 122 125 46 32 117 129 49 34 117 129 49 34 124 131 46 34 119 124 46 34 119 131 44 34 114 129 44 34 114 126 47 37 114 126 2
46 34 122 129 46 34 122 125 49 37 117 125 46 37 130 127 46 34 124 124 46 37 119 127 47 34 119 126 47 34 114 126 47 34 114 122 2
90 104 108 85 86 104 108 85 86 104 104 85 87 99 105 83 87 103 110 86 87 103 110 86 82 92 101 80 85 102 105 83 85 106 110 90 3
86 104 108 85 86 104 104 85 86 104 112 85 87 103 110 86 87 103 110 86 87 103 110 86 85 102 105 83 85 106 110 90 89 106 114 90 3
86 109 112 89 90 113 112 92 90 113 112 89 92 112 119 90 92 108 119 94 92 108 110 86 93 111 114 90 93 111 114 90 89 106 114 83 3
86 109 112 89 82 104 112 89 86 109 112 92 87 108 110 90 83 103 105 90 87 108 110 90 89 111 110 90 85 106 110 87 89 111 114 94 3
82 100 104 85 82 100 104 85 90 104 108 85 87 103 105 86 87 103 105 83 92 112 114 90 89 106 114 90 89 111 114 94 97 120 119 97 3
90 109 117 85 90 109 117 92 90 113 112 96 92 117 124 98 92 117 119 94 92 108 114 94 89 111 114 94 89 111 110 90 85 97 105 80 3
95 113 112 92 86 104 108 85 86 100 108 81 92 99 101 83 83 95 101 79 75 91 93 72 70 84 82 65 67 79 78 62 63 71 78 58 7
86 100 108 81 86 104 108 85 90 109 108 85 75 91 93 72 75 84 93 72 75 84 90 68 63 71 78 58 67 71 78 58 67 75 82 62 7
86 104 108 85 90 109 108 85 82 96 100 78 75 84 93 72 75 84 90 68 67 73 79 60 67 71 78 58 67 75 82 62 67 71 74 58 7
90 109 108 85 82 96 100 78 70 79 84 66 75 84 90 68 67 73 79 60 63 66 72 60 67 75 82 62 67 71 74 58 63 67 70 55 7
66 75 80 66 66 71 80 63 70 79 84 66 71 73 75 60 71 73 79 64 67 73 72 60 70 84 93 76 70 84 85 69 67 75 78 58 7
74 79 80 66 70 75 76 63 70 75 76 63 71 77 82 64 67 77 79 64 71 77 75 64 70 79 82 62 78 84 89 73 74 88 89 69 7
74 83 84 70 74 83 80 70 78 87 92 74 63 66 72 57 63 70 72 60 71 77 86 64 67 67 70 55 60 63 70 58 63 67 70 58 7
92 117 119 98 96 112 119 94 92 108 114 90 93 115 124 97 93 115 119 94 97 111 119 94 88 111 115 91 92 111 115 91 88 111 111 87 3
46 34 130 135 42 32 130 135 42 32 124 139 44 31 129 140 44 34 124 133 44 34 124 136 44 31 125 135 47 31 131 135 44 34 131 139 2
42 32 124 139 42 32 135 139 42 32 130 135 44 34 124 136 44 34 129 140 44 31 124 140 44 34 131 139 47 34 136 139 47 31 125 139 2
42 32 130 135 46 32 124 139 42 34 124 135 44 31 124 140 44 34 119 136 44 34 129 136 47 31 125 139 47 31 125 135 44 31 125 135 2
75 84 101 79 87 99 105 83 87 103 110 86 57 60 105 94 82 92 101 80 85 102 105 83 50 40 111 109 64 69 102 79 80 98 102 79 3
87 103 110 86 87 103 110 86 87 103 110 86 85 102 105 83 85 106 110 90 89 106 114 90 80 98 102 79 84 102 102 87 88 106 111 87 3
87 103 105 86 87 103 114 86 87 108 119 90 89 106 110 90 89 111 110 87 93 106 114 87 88 106 111 87 88 102 106 87 88 102 111 83 3
87 108 119 90 92 112 119 90 92 108 110 90 93 106 114 87 93 106 114 90 93 111 119 94 88 102 111 83 88 111 111 91 92 115 115 91 3
92 112 119 90 92 108 119 94 92 108 110 86 93 111 114 90 93 111 114 90 89 106 114 83 88 111 115 91 92 106 115 87 88 111 111 91 3
92 108 110 86 87 103 105 86 87 108 110 86 89 106 114 83 89 106 114 87 89 106 110 87 88 111 111 91 92 111 115 91 97 111 120 91 3
83 103 105 83 83 99 110 86 87 103 105 86 89 106 114 87 89 106 105 87 85 106 110 87 88 111 115 87 88 111 115 87 88 111 115 87 3
83 99 110 86 87 103 105 86 83 103 110 90 89 106 105 87 85 106 110 87 89 111 105 90 88 111 115 87 88 111 115 87 92 111 115 87 3
87 103 105 86 83 103 110 90 87 108 110 90 85 106 110 87 89 111 105 90 89 111 110 90 88 111 115 87 92 111 115 87 88 106 111 87 3
87 108 110 90 92 108 114 86 87 103 105 86 89 111 114 94 89 111 110 90 89 106 114 90 92 106 111 91 92 111 115 91 92 111 120 91 3
96 112 114 94 92 117 124 98 92 117 119 94 93 115 114 90 89 111 114 94 89 111 110 90 92 106 111 87 80 98 102 76 76 85 90 68 3
92 99 101 83 83 95 101 79 75 91 93 72 70 84 82 65 67 79 78 62 63 71 78 58 64 69 71 57 64 66 67 54 64 62 71 50 5
67 70 72 60 67 73 75 60 71 73 75 60 67 71 70 58 67 75 82 69 70 84 93 76 64 69 74 61 68 81 86 72 72 81 90 76 7
71 73 79 64 67 73 72 60 63 70 75 57 70 84 85 69 67 75 78 58 63 63 74 58 72 81 86 68 64 73 74 61 64 69 71 61 7
67 73 72 60 63 70 75 57 71 77 82 64 67 75 78 58 63 63 74 58 67 71 74 65 64 73 74 61 64 69 71 61 68 73 82 65 7
63 70 75 57 71 77 82 64 71 77 82 64 63 63 74 58 67 71 74 65 70 79 82 62 64 69 71 61 68 73 82 65 72 77 82 68 7
63 66 72 57 63 70 72 60 71 77 86 64 67 67 70 55 60 63 70 58 63 67 70 58 68 69 74 57 64 66 67 54 64 66 71 57 7
93 120 124 94 93 115 119 94 89 115 119 90 92 115 115 94 88 111 115 91 88 102 111 87 88 107 113 88 84 107 113 88 84 112 113 88 3
89 115 114 94 93 115 124 97 93 115 119 94 84 106 111 91 88 111 115 91 92 111 115 91 88 107 113 88 92 112 113 88 92 112 118 88 3
47 37 119 126 44 31 124 133 44 31 129 140 44 29 125 135 47 34 125 135 50 31 131 135 46 36 122 139 46 31 128 135 46 31 128 135 2
44 31 129 140 44 34 124 133 44 34 124 136 44 31 125 135 47 31 131 135 44 34 131 139 46 31 139 143 43 31 133 143 43 29 133 143 2
44 34 124 136 44 34 129 140 44 31 124 140 44 34 131 139 47 34 136 139 47 31 125 139 43 29 133 143 46 31 133 150 46 31 139 143 2
44 34 119 136 44 34 129 136 44 31 124 136 47 31 125 135 44 31 125 135 44 31 125 135 50 31 133 135 50 31 128 132 46 34 128 135 2
44 34 129 136 44 31 124 136 44 37 119 126 44 31 125 135 44 31 125 135 44 31 120 131 50 31 128 132 46 34 128 135 46 36 128 132 2
44 34 129 143 42 29 135 150 44 29 124 143 50 46 111 116 44 31 131 142 44 29 136 146 53 45 108 103 50 36 118 128 43 31 139 143 2
44 29 124 143 44 34 129 143 44 34 124 143 44 29 136 146 44 31 136 142 44 31 136 139 43 31 139 143 46 29 133 139 46 31 133 135 2
44 34 114 129 44 34 114 126 47 37 114 126 44 31 120 128 44 34 115 124 47 34 115 120 46 34 122 125 46 36 122 121 46 36 118 125 2
47 37 114 126 47 34 119 126 47 34 114 126 47 34 115 120 47 37 120 124 44 34 120 120 46 36 118 125 46 34 118 121 43 36 118 121 2
47 34 114 126 47 34 114 122 47 37 114 126 44 34 120 120 47 37 120 124 44 37 120 124 43 36 118 121 46 36 118 128 46 34 122 125 2
47 34 114 122 47 37 114 126 47 40 114 115 47 37 120 124 44 37 120 124 44 37 115 120 46 36 118 128 46 34 122 125 50 34 118 125 2
47 40 114 115 57 60 105 94 82 92 101 80 44 37 115 120 50 40 111 109 64 69 102 79 50 34 118 125 50 36 118 128 53 51 113 103 2
57 60 105 94 82 92 101 80 85 102 105 83 50 40 111 109 64 69 102 79 80 98 102 79 50 36 118 128 53 51 113 103 71 83 100 78 2
89 106 114 90 89 106 110 90 89 111 110 87 88 106 111 87 88 106 111 87 88 102 106 87 84 103 113 88 88 107 118 88 88 107 108 88 3
89 106 110 90 89 111 110 87 93 106 114 87 88 106 111 87 88 102 106 87 88 102 111 83 88 107 118 88 88 107 108 88 88 103 104 85 3
93 106 114 87 93 106 114 90 93 111 119 94 88 102 111 83 88 111 111 91 92 115 115 91 88 103 104 85 88 103 113 85 88 107 108 88 3
93 111 114 90 89 106 114 83 89 106 114 87 92 106 115 87 88 111 111 91 92 111 115 91 92 112 118 88 92 112 113 92 92 112 118 92 3
89 106 114 90 89 106 114 87 89 106 105 87 92 111 111 87 88 111 115 87 88 111 115 87 92 107 118 88 88 112 118 88 88 107 113 85 3
89 106 114 87 89 106 105 87 85 106 110 87 88 111 115 87 88 111 115 87 88 111 115 87 88 112 118 88 88 107 113 85 88 107 113 88 3
89 106 105 87 85 106 110 87 89 111 105 90 88 111 115 87 88 111 115 87 92 111 115 87 88 107 113 85 88 107 113 88 92 103 113 88 3
89 111 110 90 89 106 114 90 89 111 114 94 92 111 115 91 92 111 120 91 92 115 120 94 92 112 118 92 92 112 118 96 88 107 122 88 3
93 115 114 90 89 111 114 94 89 111 110 90 92 106 111 87 80 98 102 76 76 85 90 68 80 87 91 67 68 71 75 59 60 57 60 45 3
85 97 105 80 82 92 97 76 78 88 89 73 64 77 78 61 60 69 67 54 60 66 67 57 53 54 53 38 53 54 53 34 56 57 56 45 5
67 79 78 62 63 71 78 58 67 71 78 58 64 66 67 54 64 62 71 50 60 62 67 50 60 57 67 49 56 54 67 49 56 54 67 52 5
63 71 78 58 67 71 78 58 67 75 82 62 64 62 71 50 60 62 67 50 60 62 67 54 56 54 67 49 56 54 67 52 53 57 67 52 5
67 71 74 58 63 67 70 55 67 71 70 58 64 69 74 61 64 66 67 54 64 69 74 61 60 64 75 63 64 68 79 59 64 68 71 56 7
67 75 82 69 70 84 93 76 70 84 85 69 68 81 86 72 72 81 90 76 72 81 86 68 64 71 75 63 68 79 79 67 71 79 79 63 7
70 84 93 76 70 84 85 69 67 75 78 58 72 81 90 76 72 81 86 68 64 73 74 61 68 79 79 67 71 79 79 63 71 79 79 67 7
63 63 74 58 67 71 74 65 70 79 82 62 64 69 71 61 68 73 82 65 72 77 82 68 68 83 83 67 71 79 87 70 71 79 87 70 7
88 125 125 102 92 120 120 98 97 115 120 94 92 116 122 92 92 116 118 92 88 107 113 88 93 116 118 96 93 111 118 92 88 111 113 92 3
92 120 120 98 97 115 120 94 92 115 115 94 92 116 118 92 88 107 113 88 88 107 113 88 93 111 118 92 88 111 113 92 88 111 113 92 3
88 102 111 87 84 106 111 91 88 111 115 91 84 112 113 88 88 107 113 88 92 112 113 88 84 111 118 92 93 111 113 92 93 111 113 92 3
88 111 115 91 92 111 115 91 88 111 111 87 92 112 113 88 92 112 118 88 88 107 113 88 93 111 113 92 93 111 118 92 88 107 109 87 3
92 111 115 91 88 111 111 87 92 106 115 91 92 112 118 88 88 107 113 88 88 103 108 85 93 111 118 92 88 107 109 87 88 95 104 83 3
92 106 115 91 88 102 111 83 76 77 102 83 88 103 108 85 84 95 100 85 80 95 100 74 88 95 104 83 84 99 100 79 84 95 96 79 4
88 102 111 83 76 77 102 83 53 40 115 116 84 95 100 85 80 95 100 74 64 64 104 96 84 99 100 79 84 95 96 79 71 83 93 79 4
53 40 115 116 44 29 125 135 47 34 125 135 64 64 104 96 46 36 122 139 46 31 128 135 71 83 93 79 55 51 113 108 44 37 134 137 2
47 31 125 135 44 31 125 135 47 31 131 135 46 31 133 143 46 31 139 143 43 31 133 143 44 34 139 146 44 29 134 146 44 34 139 146 2
44 31 125 135 47 31 131 135 44 34 131 139 46 31 139 143 43 31 133 143 43 29 133 143 44 29 134 146 44 34 139 146 44 32 134 141 2
47 31 131 135 44 34 131 139 47 34 136 139 43 31 133 143 43 29 133 143 46 31 133 150 44 34 139 146 44 32 134 141 48 32 134 141 2
47 31 125 135 44 31 125 135 44 31 125 135 50 31 133 135 50 31 128 132 46 34 128 135 44 32 134 137 48 34 128 133 48 32 134 133 2
50 46 111 116 44 31 131 142 44 29 136 146 53 45 108 103 50 36 118 128 43 31 139 143 48 40 118 112 51 45 104 100 48 37 123 129 2
44 29 136 146 44 31 136 142 44 31 136 139 43 31 139 143 46 29 133 139 46 31 133 135 48 37 123 129 44 32 128 137 44 32 123 129 2
44 31 136 142 44 31 136 139 44 31 131 135 46 29 133 139 46 31 133 135 46 31 122 132 44 32 128 137 44 32 123 129 44 34 128 129 2
44 31 136 139 44 31 131 135 44 31 120 131 46 31 133 135 46 31 122 132 46 34 122 128 44 32 123 129 44 34 128 129 44 32 128 125 2
44 31 131 135 44 31 120 131 44 31 120 128 46 31 122 132 46 34 122 128 46 34 122 125 44 34 128 129 44 32 128 125 48 29 123 125 2
44 31 120 128 44 34 115 124 47 34 115 120 46 34 122 125 46 36 122 121 46 36 118 125 48 29 123 125 44 32 113 121 48 34 118 112 2
44 34 120 120 47 37 120 124 44 37 120 124 43 36 118 121 46 36 118 128 46 34 122 125 48 40 113 112 48 37 113 116 48 34 123 125 2
88 106 111 87 88 102 106 87 88 102 111 83 88 107 118 88 88 107 108 88 88 103 104 85 88 111 109 92 88 107 113 87 88 103 104 83 3
92 106 115 87 88 111 111 91 92 111 115 91 92 112 118 88 92 112 113 92 92 112 118 92 88 111 118 87 88 111 118 96 93 111 118 96 3
88 111 111 91 92 111 115 91 97 111 120 91 92 112 113 92 92 112 118 92 92 112 118 92 88 111 118 96 93 111 118 96 93 111 118 92 3
92 111 115 91 97 111 120 91 92 111 111 87 92 112 118 92 92 112 118 92 92 107 118 88 93 111 118 96 93 111 118 92 93 111 118 92 3
76 85 90 68 64 77 78 61 60 69 67 54 60 57 60 45 53 54 53 38 53 54 53 34 55 51 50 29 55 54 57 37 59 54 63 42 5
68 81 86 72 72 81 90 76 72 81 86 68 64 71 75 63 68 79 79 67 71 79 79 63 63 68 70 58 67 75 74 62 71 79 85 67 7
64 73 74 61 64 69 71 61 68 73 82 65 71 79 79 67 68 83 83 67 71 79 87 70 71 87 96 75 75 91 96 79 75 83 89 71 7
72 77 82 68 76 81 90 76 76 85 90 72 71 79 87 70 71 83 87 70 68 75 79 67 71 79 85 67 71 75 85 67 71 75 74 62 7
76 85 90 72 76 77 90 68 72 77 78 61 68 75 79 67 71 75 79 63 71 79 79 63 71 75 74 62 67 72 70 58 67 72 74 58 7
72 77 78 61 68 69 71 57 64 69 74 57 71 79 79 63 68 75 75 59 68 68 71 56 67 72 74 58 63 68 74 58 63 68 74 58 7
68 69 71 57 64 69 74 57 68 69 74 57 68 75 75 59 68 68 71 56 64 71 79 59 63 68 74 58 63 68 74 58 67 72 74 62 7
92 116 118 92 88 107 113 88 88 107 113 88 93 111 118 92 88 111 113 92 88 111 113 92 95 109 112 89 95 109 117 85 90 113 117 92 3
88 107 113 88 84 107 113 88 84 112 113 88 88 111 113 92 84 111 113 92 84 111 118 92 90 113 117 92 95 113 117 92 95 118 117 96 3
84 112 113 88 88 107 113 88 92 112 113 88 84 111 118 92 93 111 113 92 93 111 113 92 95 118 117 96 95 118 122 96 99 118 117 92 3
92 112 113 88 92 112 118 88 88 107 113 88 93 111 113 92 93 111 118 92 88 107 109 87 99 118 117 92 95 113 117 96 86 104 108 89 3
88 107 113 88 88 103 108 85 84 95 100 85 88 107 109 87 88 95 104 83 84 99 100 79 86 104 108 89 82 96 104 78 82 96 104 81 4
80 95 100 74 64 64 104 96 46 36 122 139 84 95 96 79 71 83 93 79 55 51 113 108 82 96 100 81 82 91 92 78 78 83 96 74 2
46 36 122 139 46 31 128 135 46 31 128 135 55 51 113 108 44 37 134 137 44 32 139 141 78 83 96 74 63 56 108 103 46 34 127 144 2
46 31 139 143 43 31 133 143 43 29 133 143 44 29 134 146 44 34 139 146 44 32 134 141 43 32 138 144 46 32 138 144 46 32 138 144 2
43 29 133 143 46 31 133 150 46 31 139 143 44 32 134 141 48 32 134 141 44 32 134 137 46 32 138 144 46 32 133 144 46 32 133 136 2
50 31 128 132 46 34 128 135 46 36 128 132 48 34 128 133 48 32 134 133 48 34 123 133 46 32 127 136 49 32 127 133 46 34 127 129 2
50 36 118 128 43 31 139 143 46 29 133 139 51 45 104 100 48 37 123 129 44 32 128 137 49 37 112 118 52 43 104 103 49 37 117 122 2
43 36 118 121 46 36 118 128 46 34 122 125 48 40 113 112 48 37 113 116 48 34 123 125 49 34 112 111 46 37 117 114 49 34 112 118 2
46 36 118 128 46 34 122 125 50 34 118 125 48 37 113 116 48 34 123 125 48 37 118 125 46 37 117 114 49 34 112 118 52 34 117 122 2
50 36 118 128 53 51 113 103 71 83 100 78 48 34 123 125 48 37 118 121 63 58 109 96 49 34 122 118 49 34 117 122 49 34 117 125 2
53 51 113 103 71 83 100 78 84 99 104 85 48 37 118 121 63 58 109 96 79 95 100 79 49 34 117 122 49 34 117 125 52 49 112 107 2
71 83 100 78 84 99 104 85 84 103 113 88 63 58 109 96 79 95 100 79 88 107 109 87 49 34 117 125 52 49 112 107 74 79 100 81 3
88 107 108 88 88 103 104 85 88 103 113 85 88 107 113 87 88 103 104 83 88 107 109 87 90 109 108 89 90 104 112 89 86 104 112 85 3
88 103 113 85 88 107 108 88 92 107 113 92 88 107 109 87 93 107 113 92 93 107 113 87 86 104 112 85 90 109 117 89 90 113 112 92 3
92 107 113 92 92 112 118 88 92 112 113 92 93 107 113 87 88 111 118 87 88 111 118 96 90 113 112 92 90 113 112 92 90 109 112 89 3
92 103 113 88 88 107 108 92 92 107 108 88 93 111 118 87 88 107 109 87 88 107 109 87 90 113 112 92 90 113 112 92 90 113 112 89 3
92 107 108 88 92 112 113 88 92 112 118 92 88 107 109 87 93 111 113 87 88 103 113 83 90 113 112 89 86 104 104 85 78 96 92 81 3
68 71 75 59 60 57 60 45 53 54 53 38 63 61 63 42 55 51 50 29 55 54 57 37 63 67 69 52 59 56 62 48 56 53 66 48 5
60 57 60 45 53 54 53 38 53 54 53 34 55 51 50 29 55 54 57 37 59 54 63 42 59 56 62 48 56 53 66 48 59 53 66 44 5
53 54 53 38 53 54 53 34 56 57 56 45 55 54 57 37 59 54 63 42 55 54 63 46 56 53 66 48 59 53 66 44 59 56 62 44 5
53 54 53 34 56 57 56 45 60 57 67 49 59 54 63 42 55 54 63 46 59 51 67 46 59 53 66 44 59 56 62 44 59 53 62 44 5
60 57 67 49 56 54 67 49 56 54 67 52 59 51 67 50 55 54 67 50 55 54 60 46 59 56 66 44 56 56 73 52 59 56 76 55 5
56 54 67 49 56 54 67 52 53 57 67 52 55 54 67 50 55 54 60 46 55 54 67 50 56 56 73 52 59 56 76 55 59 49 69 48 5
60 64 75 63 64 68 79 59 64 68 71 56 55 58 70 54 63 68 77 62 67 72 74 58 59 53 66 44 56 53 66 48 59 56 73 55 7
64 68 79 59 64 68 71 56 64 71 75 63 63 68 77 62 67 72 74 58 63 68 70 58 56 53 66 48 59 56 73 55 66 67 80 63 7
64 68 71 56 64 71 75 63 68 79 79 67 67 72 74 58 63 68 70 58 67 75 74 62 59 56 73 55 66 67 80 63 63 71 73 59 7
64 71 75 63 68 79 79 67 71 79 79 63 63 68 70 58 67 75 74 62 71 79 85 67 66 67 80 63 63 71 73 59 63 67 73 59 7
71 79 79 67 68 83 83 67 71 79 87 70 71 87 96 75 75 91 96 79 75 83 89 71 66 75 80 63 70 79 84 70 70 79 84 66 7
71 79 87 70 71 79 87 70 71 83 87 70 75 83 89 71 71 79 85 67 71 75 85 67 70 79 84 66 70 71 73 63 63 67 69 59 7
68 75 75 59 68 68 71 56 64 71 79 59 63 68 74 58 63 68 74 58 67 72 74 62 63 67 69 55 66 75 76 63 66 71 73 59 7
68 68 71 56 64 71 79 59 68 71 71 59 63 68 74 58 67 72 74 62 71 75 77 67 66 75 76 63 66 71 73 59 63 67 66 55 7
88 111 113 92 84 111 113 92 84 111 118 92 90 113 117 92 95 113 117 92 95 118 117 96 92 117 119 98 96 117 130 94 92 112 124 94 3
84 111 118 92 93 111 113 92 93 111 113 92 95 118 117 96 95 118 122 96 99 118 117 92 92 112 124 94 92 112 114 98 92 108 114 90 3
93 111 113 92 93 111 113 92 93 111 118 92 95 118 122 96 99 118 117 92 95 113 117 96 92 112 114 98 92 108 114 90 92 99 105 86 3
93 111 113 92 93 111 118 92 88 107 109 87 99 118 117 92 95 113 117 96 86 104 108 89 92 108 114 90 92 99 105 86 83 99 101 75 3
84 95 96 79 71 83 93 79 55 51 113 108 82 96 100 81 82 91 92 78 78 83 96 74 83 91 101 79 79 95 93 75 79 95 93 75 4
48 32 134 141 44 32 134 137 44 32 134 137 46 32 133 144 46 32 133 136 46 32 133 136 46 32 130 142 46 32 124 139 46 32 124 139 2
48 37 118 125 48 40 118 112 51 45 104 100 49 32 127 133 46 32 122 129 49 37 112 118 46 32 119 131 46 34 119 127 49 34 114 124 2
51 45 104 100 48 37 123 129 44 32 128 137 49 37 112 118 52 43 104 103 49 37 117 122 49 34 114 124 49 40 105 116 52 45 105 105 2
48 37 123 129 44 32 128 137 44 32 123 129 52 43 104 103 49 37 117 122 43 29 138 140 49 40 105 116 52 45 105 105 46 32 124 135 2
44 32 123 129 44 34 128 129 44 32 128 125 43 29 138 140 46 29 127 133 46 29 122 125 46 32 124 135 42 32 130 139 42 32 119 127 2
44 32 128 125 48 29 123 125 44 32 113 121 46 29 122 125 46 32 112 118 46 34 112 118 42 32 119 127 42 34 110 120 46 34 110 116 2
48 29 123 125 44 32 113 121 48 34 118 112 46 32 112 118 46 34 112 118 46 34 112 114 42 34 110 120 46 34 110 116 49 34 110 116 2
44 32 113 121 48 34 118 112 51 37 118 112 46 34 112 118 46 34 112 114 46 34 112 111 46 34 110 116 49 34 110 116 49 37 114 116 2
51 37 118 112 48 40 113 112 48 37 113 116 46 34 112 111 49 34 112 111 46 37 117 114 49 37 114 116 52 40 110 113 49 37 105 113 2
48 37 113 116 48 34 123 125 48 37 118 125 46 37 117 114 49 34 112 118 52 34 117 122 49 37 105 113 49 37 110 116 49 37 110 116 2
48 37 118 121 63 58 109 96 79 95 100 79 49 34 117 122 49 34 117 125 52 49 112 107 46 37 114 116 46 37 110 113 52 45 110 109 2
63 58 109 96 79 95 100 79 88 107 109 87 49 34 117 125 52 49 112 107 74 79 100 81 46 37 110 113 52 45 110 109 67 70 101 83 2
79 95 100 79 88 107 109 87 88 111 109 92 52 49 112 107 74 79 100 81 86 100 108 85 52 45 110 109 67 70 101 83 79 95 97 75 2
88 107 113 87 88 103 104 83 88 107 109 87 90 109 108 89 90 104 112 89 86 104 112 85 92 108 110 90 92 108 110 90 96 108 114 94 3
88 107 109 87 93 107 113 92 93 107 113 87 86 104 112 85 90 109 117 89 90 113 112 92 96 108 114 94 96 112 114 90 96 112 119 90 3
93 107 113 87 88 111 118 87 88 111 118 96 90 113 112 92 90 113 112 92 90 109 112 89 96 112 119 90 92 108 119 90 96 112 119 90 3
88 111 118 87 88 111 118 96 93 111 118 96 90 113 112 92 90 109 112 89 90 113 117 92 92 108 119 90 96 112 119 90 96 112 119 94 3
93 111 118 92 93 111 118 92 93 111 118 92 95 113 117 96 90 109 117 96 90 118 122 96 96 117 114 94 92 108 114 94 92 112 114 90 3
88 103 113 83 84 95 100 83 79 87 96 75 78 96 92 81 74 91 96 78 74 87 92 74 71 73 79 64 71 77 82 68 67 77 86 68 7
55 54 63 46 59 51 67 46 59 51 67 50 59 56 62 44 59 53 62 44 59 56 66 44 56 54 72 49 56 51 62 45 56 54 65 45 5
63 68 77 62 67 72 74 58 63 68 70 58 56 53 66 48 59 56 73 55 66 67 80 63 59 54 62 45 59 57 65 49 59 60 72 57 7
71 79 85 67 71 87 96 75 75 91 96 79 63 67 73 59 66 75 80 63 70 79 84 70 63 66 72 60 63 70 75 64 67 73 79 64 7
75 83 89 71 71 79 85 67 71 75 85 67 70 79 84 66 70 71 73 63 63 67 69 59 63 66 75 60 63 63 72 57 63 60 72 60 7
67 72 70 58 67 72 74 58 63 68 74 58 59 63 73 59 63 67 73 55 63 67 69 55 63 63 72 57 63 63 68 53 59 60 65 53 7
67 72 74 58 63 68 74 58 63 68 74 58 63 67 73 55 63 67 69 55 66 75 76 63 63 63 68 53 59 60 65 53 59 66 72 57 7
63 68 74 58 67 72 74 62 71 75 77 67 66 75 76 63 66 71 73 59 63 67 66 55 59 66 72 57 63 73 75 64 67 70 72 60 7
67 72 74 62 71 75 77 67 71 75 74 62 66 71 73 59 63 67 66 55 63 75 80 63 63 73 75 64 67 70 72 60 67 73 82 64 7
90 113 122 96 95 109 112 89 95 109 117 85 101 112 124 94 96 112 114 90 92 112 114 94 93 111 114 94 97 115 119 94 97 115 124 94 3
95 109 117 85 90 113 117 92 95 113 117 92 92 112 114 94 92 117 119 98 96 117 130 94 97 115 124 94 97 115 119 94 93 115 114 90 3
46 32 138 144 46 32 138 144 46 32 133 144 46 32 130 142 46 32 135 142 46 32 130 142 44 34 129 143 44 31 124 143 44 34 119 140 2
46 32 133 144 46 32 133 136 46 32 133 136 46 32 130 142 46 32 124 139 46 32 124 139 44 34 119 140 44 34 124 140 44 34 129 140 2
46 32 127 136 49 32 127 133 46 34 127 129 42 34 124 135 42 32 124 135 46 32 119 135 44 34 124 136 44 34 124 136 44 34 124 136 2
49 32 127 133 46 34 127 129 49 32 127 133 42 32 124 135 46 32 119 135 46 32 119 131 44 34 124 136 44 34 124 136 44 34 119 133 2
52 43 104 103 49 37 117 122 43 29 138 140 49 40 105 116 52 45 105 105 46 32 124 135 44 37 119 129 44 43 105 111 50 43 110 111 2
49 34 112 111 46 37 117 114 49 34 112 118 52 40 110 113 49 37 105 113 49 37 110 116 44 34 110 119 44 37 105 111 47 40 110 111 2
49 34 112 118 52 34 117 122 49 34 122 118 49 37 110 116 49 37 110 116 46 37 114 116 47 40 110 111 47 40 110 111 50 40 105 115 2
49 34 122 118 49 34 117 122 49 34 117 125 46 37 114 116 46 37 114 116 46 37 110 113 50 40 105 115 53 46 110 111 60 63 97 94 2
52 49 112 107 74 79 100 81 86 100 108 85 52 45 110 109 67 70 101 83 79 95 97 75 70 79 97 80 78 92 97 76 82 102 105 76 2
86 100 108 85 90 109 108 89 90 104 112 89 79 95 97 75 92 108 110 90 92 108 110 90 82 102 105 76 85 102 110 83 93 111 114 90 3
90 109 108 89 90 104 112 89 86 104 112 85 92 108 110 90 92 108 110 90 96 108 114 94 85 102 110 83 93 111 114 90 97 115 114 94 3
86 104 112 85 90 109 117 89 90 113 112 92 96 108 114 94 96 112 114 90 96 112 119 90 97 115 114 94 97 111 114 94 93 115 114 94 3
90 113 112 92 90 113 112 92 90 109 112 89 96 112 119 90 92 108 119 90 96 112 119 90 93 115 114 94 93 115 119 94 97 115 114 97 3
90 109 112 89 90 113 117 92 95 113 117 96 96 112 119 90 96 112 119 94 96 117 114 94 97 115 114 97 97 115 114 94 97 115 114 90 3
95 113 117 96 90 109 117 96 90 118 122 96 96 117 114 94 92 108 114 94 92 112 114 90 97 115 114 90 93 111 114 87 89 106 114 87 3
74 91 96 78 74 87 92 74 74 79 84 66 71 77 82 68 67 77 86 68 67 77 75 64 63 67 74 58 60 67 67 55 57 63 63 51 7
70 79 80 63 63 67 69 52 59 56 62 48 67 70 68 57 59 57 55 42 52 51 58 42 53 60 63 48 57 56 56 44 53 53 60 44 5
59 56 62 48 56 53 66 48 59 53 66 44 52 51 58 42 52 51 72 57 56 51 68 53 53 53 60 44 57 53 67 55 53 53 74 62 5
59 56 66 44 56 56 73 52 59 56 76 55 56 54 65 45 56 51 65 49 56 51 72 60 57 56 63 51 53 56 67 48 53 49 70 55 5
59 49 69 48 59 53 66 44 56 53 66 48 59 54 72 60 59 51 65 45 59 54 62 45 57 56 74 62 57 60 74 58 57 53 67 51 5
66 67 80 63 63 71 73 59 63 67 73 59 59 60 72 57 63 66 79 64 63 66 72 60 57 56 70 51 57 56 74 58 57 60 74 58 7
66 75 80 63 70 79 84 70 70 79 84 66 63 70 75 64 67 73 79 64 63 66 75 60 63 63 74 62 63 60 70 62 60 60 70 65 7
70 79 84 66 70 71 73 63 63 67 69 59 63 66 75 60 63 63 72 57 63 60 72 60 60 60 70 65 53 53 82 83 50 43 97 101 7
63 67 69 59 59 63 66 55 59 63 73 59 63 60 72 60 59 63 75 64 63 63 72 57 50 43 97 101 44 37 101 108 53 53 85 76 7
59 63 66 55 59 63 73 59 63 67 73 55 59 63 75 64 63 63 72 57 63 63 68 53 44 37 101 108 53 53 85 76 60 60 74 55 7
66 71 73 59 63 67 66 55 63 75 80 63 63 73 75 64 67 70 72 60 67 73 82 64 67 71 78 62 67 75 78 65 67 71 82 69 7
92 117 119 98 96 117 130 94 92 112 124 94 97 115 119 94 93 115 114 90 93 106 114 90 88 106 111 87 84 94 102 76 76 94 98 72 3
96 117 130 94 92 112 124 94 92 112 114 98 93 115 114 90 93 106 114 90 89 102 110 83 84 94 102 76 76 94 98 72 76 89 94 76 3
92 112 124 94 92 112 114 98 92 108 114 90 93 106 114 90 89 102 110 83 82 92 101 80 76 94 98 72 76 89 94 76 80 89 94 76 3
92 112 114 98 92 108 114 90 92 99 105 86 89 102 110 83 82 92 101 80 82 88 89 73 76 89 94 76 80 89 94 76 76 89 98 76 3
92 108 114 90 92 99 105 86 83 99 101 75 82 92 101 80 82 88 89 73 78 92 93 80 80 89 94 76 76 89 98 76 80 89 94 79 4
83 99 101 75 79 91 97 75 83 91 97 79 78 92 93 80 78 92 101 76 82 92 101 80 80 89 94 79 80 89 98 79 84 94 98 76 4
46 32 135 142 46 32 130 142 46 32 124 139 44 31 124 143 44 34 119 140 44 34 124 140 47 31 131 139 47 31 131 139 47 34 131 139 2
46 32 130 142 46 32 124 139 46 32 124 139 44 34 119 140 44 34 124 140 44 34 129 140 47 31 131 139 47 34 131 139 44 31 136 139 2
49 34 114 124 49 40 105 116 52 45 105 105 44 34 114 129 44 37 119 129 44 43 105 111 47 34 115 124 44 34 115 120 47 40 115 116 2
49 40 105 116 52 45 105 105 46 32 124 135 44 37 119 129 44 43 105 111 50 43 110 111 44 34 115 120 47 40 115 116 50 43 106 102 2
42 32 119 127 42 34 110 120 46 34 110 116 44 31 124 133 44 31 114 122 47 34 114 126 44 31 131 135 47 31 125 128 47 31 120 124 2
79 95 97 75 92 108 110 90 92 108 110 90 82 102 105 76 85 102 110 83 93 111 114 90 76 85 94 76 84 98 102 79 88 111 115 94 3
92 108 110 90 92 108 110 90 96 108 114 94 85 102 110 83 93 111 114 90 97 115 114 94 84 98 102 79 88 111 115 94 97 120 120 98 3
96 108 114 94 96 112 114 90 96 112 119 90 97 115 114 94 97 111 114 94 93 115 114 94 97 120 120 98 97 120 120 94 97 115 115 94 3
92 108 114 90 92 108 119 90 92 103 105 83 85 106 110 83 85 97 105 76 82 92 101 76 84 98 98 79 80 89 94 76 76 81 90 65 3
92 108 119 90 92 103 105 83 83 99 101 83 85 97 105 76 82 92 101 76 78 88 93 73 80 89 94 76 76 81 90 65 72 77 78 65 7
71 73 79 64 71 77 82 68 67 77 86 68 70 71 74 58 63 67 74 58 60 67 67 55 72 81 94 65 64 69 71 57 57 55 60 46 7
71 77 82 68 67 77 86 68 67 77 75 64 63 67 74 58 60 67 67 55 57 63 63 51 64 69 71 57 57 55 60 46 53 55 60 42 5
67 77 86 68 67 77 75 64 67 70 68 57 60 67 67 55 57 63 63 51 53 60 63 48 57 55 60 46 53 55 60 42 57 59 64 50 5
59 57 55 42 52 51 58 42 52 51 72 57 57 56 56 44 53 53 60 44 57 53 67 55 60 59 67 54 60 59 71 57 57 59 78 65 5
52 51 72 57 56 51 68 53 56 54 72 49 57 53 67 55 53 53 74 62 53 53 70 58 57 59 78 65 53 52 78 65 53 49 74 57 5
56 51 68 53 56 54 72 49 56 51 62 45 53 53 74 62 53 53 70 58 53 53 67 48 53 52 78 65 53 49 74 57 53 52 71 50 5
56 54 65 45 56 51 65 49 56 51 72 60 57 56 63 51 53 56 67 48 53 49 70 55 53 49 71 50 53 52 71 50 53 52 71 50 5
59 54 72 60 59 51 65 45 59 54 62 45 57 56 74 62 57 60 74 58 57 53 67 51 57 55 74 61 57 55 78 65 57 55 67 54 5
59 51 65 45 59 54 62 45 59 57 65 49 57 60 74 58 57 53 67 51 57 56 70 48 57 55 78 65 57 55 67 54 53 49 64 50 5
59 57 65 49 59 60 72 57 63 66 79 64 57 56 70 48 57 56 70 51 57 56 74 58 53 49 64 50 57 55 67 50 57 55 71 54 5
67 73 79 64 63 66 75 60 63 63 72 57 63 60 70 62 60 60 70 65 53 53 82 83 53 46 94 94 47 34 111 116 44 29 115 124 5
63 63 68 53 59 60 65 53 59 66 72 57 60 60 74 55 57 60 70 58 63 67 74 58 53 52 78 57 57 52 71 61 57 59 78 61 7
63 73 75 64 67 70 72 60 67 73 82 64 67 71 78 62 67 75 78 65 67 71 82 69 60 62 82 65 60 62 78 68 60 59 90 79 7
97 115 119 94 93 115 114 90 93 106 114 90 88 106 111 87 84 94 102 76 76 94 98 72 80 91 96 78 76 87 96 74 76 91 96 74 4
89 102 110 83 82 92 101 80 82 88 89 73 76 89 94 76 80 89 94 76 76 89 98 76 80 95 100 81 80 99 100 81 80 103 96 81 4
82 92 101 80 82 88 89 73 78 92 93 80 80 89 94 76 76 89 98 76 80 89 94 79 80 99 100 81 80 103 96 81 84 95 100 78 4
78 92 101 76 82 92 101 80 78 88 93 76 80 89 98 79 84 94 98 76 76 85 90 72 84 95 100 78 80 91 96 81 71 87 91 74 4
82 92 101 80 78 88 93 76 78 92 93 76 84 94 98 76 76 85 90 72 76 85 90 72 80 91 96 81 71 87 91 74 76 87 87 74 4
78 88 93 76 78 92 93 76 78 88 97 80 76 85 90 72 76 85 90 72 76 85 90 76 71 87 91 74 76 87 87 74 76 87 91 78 4
78 88 97 80 78 88 93 76 63 63 101 90 76 85 90 76 80 89 94 76 72 81 94 76 76 87 91 78 80 91 96 78 84 91 96 74 4
47 37 119 133 44 34 124 143 44 34 129 143 57 49 115 113 47 31 131 142 44 31 131 142 68 68 100 85 50 39 118 132 43 29 133 143 2
44 34 124 140 44 34 129 140 44 34 124 136 47 34 131 139 44 31 136 139 44 31 125 139 46 31 133 143 46 31 133 139 43 31 128 135 2
44 34 129 140 44 34 124 136 44 34 124 136 44 31 136 139 44 31 125 139 44 31 125 139 46 31 133 139 43 31 128 135 43 29 128 132 2
44 34 124 136 44 34 119 133 44 37 114 129 47 34 125 135 44 31 125 128 47 34 120 124 46 31 118 125 46 34 118 121 50 36 118 121 2
44 34 119 133 44 37 114 129 44 34 114 129 44 31 125 128 47 34 120 124 47 34 115 124 46 34 118 121 50 36 118 121 50 36 118 121 2
44 34 114 129 44 37 119 129 44 43 105 111 47 34 115 124 44 34 115 120 47 40 115 116 50 36 118 121 50 36 122 121 46 36 122 125 2
44 31 124 133 44 31 114 122 47 34 114 126 44 31 131 135 47 31 125 128 47 31 120 124 50 34 122 135 43 29 133 135 46 31 122 125 2
47 37 114 122 47 37 114 119 44 34 110 119 47 34 115 120 47 37 111 113 47 37 111 105 50 34 113 114 50 39 104 103 56 51 100 92 2
47 40 110 111 47 40 110 111 50 40 105 115 53 43 106 102 60 55 102 91 64 69 94 79 68 71 91 70 71 75 87 63 68 75 75 59 2
93 111 114 90 97 115 114 94 97 111 114 94 88 111 115 94 97 120 120 98 97 120 120 94 84 103 108 85 92 112 122 92 92 112 118 92 3
97 115 114 94 97 111 114 94 93 115 114 94 97 120 120 98 97 120 120 94 97 115 115 94 92 112 122 92 92 112 118 92 88 107 108 88 3
93 115 114 94 93 115 119 94 97 115 114 97 97 115 115 94 88 115 120 94 88 111 115 91 88 107 108 88 84 99 104 81 84 99 104 78 3
85 106 110 83 85 97 105 76 82 92 101 76 84 98 98 79 80 89 94 76 76 81 90 65 80 87 91 74 68 83 83 67 68 79 83 67 7
63 67 74 58 60 67 67 55 57 63 63 51 64 69 71 57 57 55 60 46 53 55 60 42 68 75 79 63 64 64 71 56 64 61 71 59 5
60 67 67 55 57 63 63 51 53 60 63 48 57 55 60 46 53 55 60 42 57 59 64 50 64 64 71 56 64 61 71 59 60 61 71 59 5
53 60 63 48 57 56 56 44 53 53 60 44 57 59 64 50 60 59 67 54 60 59 71 57 60 61 71 59 60 61 75 63 60 61 75 67 5
57 56 56 44 53 53 60 44 57 53 67 55 60 59 67 54 60 59 71 57 57 59 78 65 60 61 75 63 60 61 75 67 60 57 75 67 5
57 56 63 51 53 56 67 48 53 49 70 55 53 49 71 50 53 52 71 50 53 52 71 50 56 51 71 56 56 51 71 56 56 51 67 56 5
53 56 67 48 53 49 70 55 57 56 74 62 53 52 71 50 53 52 71 50 57 55 74 61 56 51 71 56 56 51 67 56 53 48 67 56 5
57 60 74 58 57 53 67 51 57 56 70 48 57 55 78 65 57 55 67 54 53 49 64 50 56 54 79 63 56 54 79 63 56 51 67 52 5
57 53 67 51 57 56 70 48 57 56 70 51 57 55 67 54 53 49 64 50 57 55 67 50 56 54 79 63 56 51 67 52 53 51 67 52 5
63 63 74 62 63 60 70 62 60 60 70 65 57 52 82 72 53 46 94 94 47 34 111 116 53 48 91 96 46 34 118 128 43 29 122 139 2
53 53 85 76 60 60 74 55 57 60 70 58 44 37 98 94 53 52 78 57 57 52 71 61 40 31 122 132 46 42 96 78 53 48 71 59 5
60 60 74 55 57 60 70 58 63 67 74 58 53 52 78 57 57 52 71 61 57 59 78 61 46 42 96 78 53 48 71 59 56 51 71 59 5
67 71 78 62 67 75 78 65 67 71 82 69 60 62 82 65 60 62 78 68 60 59 90 79 60 54 75 63 60 57 79 67 60 64 87 78 5
92 115 120 94 88 106 111 87 84 94 102 76 84 95 96 78 80 91 96 78 76 87 96 74 84 91 96 75 79 95 100 79 84 95 100 79 4
76 85 90 76 80 89 94 76 72 81 94 76 76 87 91 78 80 91 96 78 84 91 96 74 79 95 96 79 79 99 96 79 84 99 96 79 4
44 31 125 139 47 34 125 135 44 31 125 128 43 29 128 132 46 31 118 125 46 34 118 121 44 32 118 125 44 34 118 121 48 37 118 121 2
50 43 106 102 47 40 115 120 44 31 131 135 50 39 122 117 50 45 113 107 50 34 122 135 48 29 118 129 48 37 118 116 51 42 109 104 2
47 34 115 120 47 37 111 113 47 37 111 105 50 34 113 114 50 39 104 103 56 51 100 92 59 51 100 83 63 64 85 67 67 75 81 62 2
47 37 111 105 50 40 106 105 53 43 106 102 56 51 100 92 64 61 96 81 68 71 91 70 67 75 81 62 67 72 77 54 67 72 74 58 2
53 43 106 102 60 55 102 91 64 69 94 79 68 71 91 70 71 75 87 63 68 75 75 59 67 72 74 58 67 72 70 54 71 72 74 58 7
64 69 94 79 68 77 86 65 68 77 78 61 68 75 75 59 64 68 75 56 64 71 75 56 71 72 74 58 67 75 74 58 67 75 77 58 7
68 77 86 65 68 77 78 61 68 77 82 61 64 68 75 56 64 71 75 56 68 75 75 59 67 75 74 58 67 75 77 58 67 79 81 62 7
68 81 90 68 76 85 94 76 84 98 102 79 68 75 83 59 71 79 83 67 71 87 96 74 71 75 85 62 71 83 85 62 75 83 89 67 7
76 85 94 76 84 98 102 79 88 111 115 94 71 79 83 67 71 87 96 74 84 103 108 85 71 83 85 62 75 83 89 67 75 91 96 75 7
97 115 115 94 88 115 120 94 88 111 115 91 88 107 108 88 84 99 104 81 84 99 104 78 79 95 100 79 84 95 104 79 79 95 96 75 3
84 98 106 83 88 98 106 79 84 98 98 79 84 103 104 81 84 95 96 78 80 87 91 74 84 95 96 75 71 83 85 67 71 79 85 67 7
88 98 106 79 84 98 98 79 80 89 94 76 84 95 96 78 80 87 91 74 68 83 83 67 71 83 85 67 71 79 85 67 71 75 85 67 7
80 89 94 76 76 81 90 65 72 77 78 65 68 83 83 67 68 79 83 67 71 75 83 67 71 75 85 67 71 75 85 67 71 79 81 67 7
72 77 78 65 72 81 78 65 72 81 90 65 71 75 83 67 71 79 87 70 71 83 87 70 71 79 81 67 75 79 85 67 75 87 89 71 7
72 81 94 65 64 69 71 57 57 55 60 46 71 79 83 67 68 75 79 63 64 64 71 56 75 87 85 71 71 83 89 75 71 79 89 75 7
60 59 71 57 57 59 78 65 53 52 78 65 60 61 75 67 60 57 75 67 56 54 79 70 63 61 81 62 59 58 77 67 59 58 77 67 5
53 49 74 57 53 52 71 50 53 49 71 50 53 48 75 63 53 45 75 59 56 51 71 56 55 51 81 71 55 48 77 62 55 48 74 62 5
53 52 71 50 53 49 71 50 53 52 71 50 53 45 75 59 56 51 71 56 56 51 71 56 55 48 77 62 55 48 74 62 55 51 67 54 5
53 49 71 50 53 52 71 50 53 52 71 50 56 51 71 56 56 51 71 56 56 51 67 56 55 48 74 62 55 51 67 54 55 51 67 50 5
57 55 71 54 57 55 74 65 57 52 82 72 53 54 71 52 53 51 75 63 53 48 91 96 55 48 70 54 55 51 77 67 55 51 85 75 5
57 55 74 65 57 52 82 72 53 46 94 94 53 51 75 63 53 48 91 96 46 34 118 128 55 51 77 67 55 51 85 75 51 45 104 112 2
57 52 82 72 53 46 94 94 47 34 111 116 53 48 91 96 46 34 118 128 43 29 122 139 55 51 85 75 51 45 104 112 44 29 128 146 2
44 29 106 113 44 31 106 116 44 37 98 94 43 29 122 128 43 29 122 128 40 31 122 132 41 27 134 137 41 27 123 129 41 27 123 133 2
80 99 104 81 84 95 96 78 80 91 96 78 84 95 96 75 84 91 96 75 79 95 100 79 82 96 96 81 82 96 100 78 82 91 96 78 4
80 103 96 81 84 95 100 78 84 95 100 78 84 99 100 79 84 95 104 79 79 95 96 79 82 96 104 78 78 96 104 78 82 96 100 81 4
76 87 91 78 80 91 96 78 84 91 96 74 79 95 96 79 79 99 96 79 84 99 96 79 82 91 104 81 82 96 104 81 82 100 100 78 4
46 31 133 139 46 31 133 143 46 31 133 139 44 32 128 137 44 32 128 133 48 32 123 129 49 34 117 129 46 34 112 129 46 32 117 125 2
46 31 133 143 46 31 133 139 43 31 128 135 44 32 128 133 48 32 123 129 44 34 123 129 46 34 112 129 46 32 117 125 46 34 112 122 2
43 29 128 132 46 31 118 125 46 34 118 121 44 32 118 125 44 34 118 121 48 37 118 121 49 34 122 125 49 34 117 125 46 32 117 125 2
50 36 118 121 50 36 122 121 46 36 122 125 48 34 118 125 44 34 118 129 44 34 123 129 46 32 122 122 46 32 122 125 46 29 122 129 2
50 39 104 103 56 51 100 92 64 61 96 81 63 64 85 67 67 75 81 62 67 72 77 54 66 71 80 59 70 71 80 59 63 67 69 55 7
92 112 122 92 92 112 118 92 88 107 108 88 84 103 104 83 79 99 96 79 79 95 100 79 66 83 88 66 74 87 92 74 82 91 96 78 3
84 99 104 78 84 95 104 78 84 95 104 81 79 95 96 75 84 95 100 79 84 99 104 79 82 96 100 78 82 96 100 78 82 91 100 78 7
84 95 104 78 84 95 104 81 84 103 104 81 84 95 100 79 84 99 104 79 84 95 96 75 82 96 100 78 82 91 100 78 78 87 96 78 7
84 95 104 81 84 103 104 81 84 95 96 78 84 99 104 79 84 95 96 75 71 83 85 67 82 91 100 78 78 87 96 78 78 83 84 70 7
80 87 91 74 68 83 83 67 68 79 83 67 71 79 85 67 71 75 85 67 71 75 85 67 70 79 80 66 70 83 84 70 74 79 84 66 7
68 79 83 67 71 75 83 67 71 79 87 70 71 75 85 67 71 79 81 67 75 79 85 67 74 79 84 66 70 75 84 66 70 75 80 63 7
71 79 83 67 68 75 79 63 64 64 71 56 75 87 85 71 71 83 89 75 71 79 89 75 78 83 88 74 74 83 88 70 74 83 88 74 7
64 61 71 59 60 61 71 59 60 61 75 63 63 64 85 75 59 58 77 71 59 58 81 67 74 83 88 74 66 71 88 70 59 60 84 70 5
60 61 71 59 60 61 75 63 60 61 75 67 59 58 77 71 59 58 81 67 63 61 81 62 66 71 88 70 59 60 84 70 59 56 80 70 5
60 61 75 67 60 57 75 67 56 54 79 70 63 61 81 62 59 58 77 67 59 58 77 67 59 56 80 70 59 60 80 63 66 63 76 66 5
53 48 67 56 56 54 79 63 56 54 79 63 55 51 70 54 55 45 70 54 55 51 77 67 56 49 69 52 56 46 69 52 56 49 69 55 5
56 54 79 63 56 54 79 63 56 51 67 52 55 45 70 54 55 51 77 67 55 54 77 62 56 46 69 52 56 49 69 55 56 53 73 63 5
53 54 71 52 53 51 75 63 53 48 91 96 55 48 70 54 55 51 77 67 55 51 85 75 56 49 69 59 52 49 76 59 56 53 84 63 5
43 29 122 139 43 29 122 135 43 29 122 128 44 29 128 146 41 27 134 146 41 27 134 137 52 43 104 100 46 29 117 133 43 27 133 151 2
43 29 122 135 43 29 122 128 43 29 122 128 41 27 134 146 41 27 134 137 41 27 123 129 46 29 117 133 43 27 133 151 43 27 127 147 2
43 29 122 128 40 31 122 132 46 42 96 78 41 27 123 129 41 27 123 133 44 32 113 116 43 27 127 147 43 27 122 133 43 27 117 129 2
79 95 100 79 84 95 100 79 79 95 96 75 82 91 96 78 82 96 100 78 82 96 96 78 83 99 101 79 83 95 97 79 83 95 97 75 4
84 95 100 79 84 99 100 79 84 99 100 79 82 96 100 78 82 100 96 81 82 96 104 78 83 95 101 79 83 99 101 83 79 95 101 83 4
84 95 104 79 79 95 96 79 79 91 93 75 78 96 104 78 82 96 100 81 78 91 96 78 79 95 97 79 79 91 101 75 79 95 105 79 4
79 95 96 79 79 91 93 75 79 91 96 75 82 96 100 81 78 91 96 78 78 91 96 78 79 91 101 75 79 95 105 79 83 95 97 75 4
79 91 93 75 79 91 96 75 84 95 100 79 78 91 96 78 78 91 96 78 78 91 100 74 79 95 105 79 83 95 97 75 79 95 97 79 4
63 58 104 100 48 34 128 137 44 32 128 141 82 100 100 85 78 87 92 78 63 56 104 96 92 103 114 86 92 103 105 83 75 81 93 79 2
44 34 123 129 44 32 118 125 44 34 118 121 46 34 112 122 49 34 122 125 49 34 117 125 46 40 105 109 49 40 105 113 46 37 114 120 2
44 34 118 121 48 37 118 121 48 34 118 121 49 34 117 125 46 32 117 125 46 32 117 122 46 37 114 120 46 34 124 131 46 32 124 139 2
48 37 118 121 48 34 118 121 48 34 118 125 46 32 117 125 46 32 117 122 46 32 122 122 46 34 124 131 46 32 124 139 46 30 119 131 2
48 34 118 125 44 34 118 129 44 34 123 129 46 32 122 122 46 32 122 125 46 29 122 129 46 30 119 131 46 32 114 127 42 34 119 135 2
44 34 118 129 44 34 123 129 48 29 118 129 46 32 122 125 46 29 122 129 43 32 122 133 46 32 114 127 42 34 119 135 52 37 114 124 2
63 64 85 67 67 75 81 62 67 72 77 54 66 71 80 59 70 71 80 59 63 67 69 55 63 70 72 53 67 66 72 53 67 66 72 53 7
67 72 77 54 67 72 74 58 67 72 70 54 63 67 69 55 63 67 69 55 63 71 69 55 67 66 72 53 67 66 72 53 63 70 68 53 7
67 72 74 58 67 72 70 54 71 72 74 58 63 67 69 55 63 71 69 55 63 67 73 55 67 66 72 53 63 70 68 53 67 70 72 57 7
71 75 85 62 71 83 85 62 75 83 89 67 66 83 80 63 70 79 80 63 70 79 80 63 71 77 90 64 71 81 82 64 71 81 82 64 7
71 83 85 62 75 83 89 67 75 91 96 75 70 79 80 63 70 79 80 63 70 79 80 63 71 81 82 64 71 81 82 64 71 81 82 64 7
75 83 89 67 75 91 96 75 84 103 104 83 70 79 80 63 70 79 80 63 66 83 88 66 71 81 82 64 71 81 82 64 75 81 82 64 7
84 103 104 83 79 99 96 79 79 95 100 79 66 83 88 66 74 87 92 74 82 91 96 78 75 81 82 64 75 84 86 64 75 91 90 72 7
84 95 104 79 79 95 96 75 84 95 100 79 78 87 92 74 82 96 100 78 82 96 100 78 79 91 90 72 79 95 97 75 83 95 97 75 7
79 95 96 75 84 95 100 79 84 99 104 79 82 96 100 78 82 96 100 78 82 91 100 78 79 95 97 75 83 95 97 75 75 84 93 72 7
75 87 89 71 75 87 85 71 71 83 89 75 70 83 88 70 78 83 88 74 74 83 88 70 75 84 90 75 75 88 97 75 75 84 93 75 7
63 64 85 75 59 58 77 71 59 58 81 67 74 83 88 74 66 71 88 70 59 60 84 70 71 81 93 75 71 77 93 75 63 63 79 72 5
59 58 81 67 63 61 81 62 59 58 77 67 59 60 84 70 59 56 80 70 59 60 80 63 63 63 79 72 63 57 86 72 59 57 82 68 5
63 61 81 62 59 58 77 67 59 58 77 67 59 56 80 70 59 60 80 63 66 63 76 66 63 57 86 72 59 57 82 68 59 60 82 68 5
55 48 77 62 55 48 74 62 55 51 67 54 59 53 84 70 52 49 76 66 52 46 80 63 59 57 82 68 59 54 82 72 56 48 75 64 5
55 51 67 54 55 51 67 50 55 51 70 54 52 46 80 63 56 49 73 59 56 49 69 52 56 48 75 64 52 48 75 60 56 51 72 57 5
55 51 67 50 55 51 70 54 55 45 70 54 56 49 73 59 56 49 69 52 56 46 69 52 52 48 75 60 56 51 72 57 59 51 72 53 5
55 51 70 54 55 45 70 54 55 51 77 67 56 49 69 52 56 46 69 52 56 49 69 55 56 51 72 57 59 51 72 53 56 48 68 53 5
55 51 77 67 55 54 77 62 59 48 74 54 56 49 69 55 56 53 73 63 59 53 84 66 56 48 68 53 56 51 68 60 56 51 75 68 5
44 29 128 146 41 27 134 146 41 27 134 137 52 43 104 100 46 29 117 133 43 27 133 151 59 48 90 90 52 37 110 116 46 30 124 142 2
41 27 134 137 41 27 123 129 41 27 123 133 43 27 133 151 43 27 127 147 43 27 122 133 46 30 124 142 42 30 124 146 42 30 124 135 2
82 96 100 78 82 96 96 78 82 96 100 78 83 95 97 79 83 95 97 75 83 95 101 79 85 97 101 80 85 97 101 80 85 97 105 80 4
82 96 96 78 82 96 100 78 82 100 96 81 83 95 97 75 83 95 101 79 83 99 101 83 85 97 101 80 85 97 105 80 82 92 101 80 4
78 96 104 78 82 96 100 81 78 91 96 78 79 95 97 79 79 91 101 75 79 95 105 79 78 92 97 76 82 92 97 80 82 92 101 83 4
78 91 96 78 78 91 96 78 78 91 100 74 79 95 105 79 83 95 97 75 79 95 97 79 82 92 101 83 85 97 101 80 85 97 110 80 4
82 91 104 81 82 96 104 81 82 100 100 78 79 99 105 83 83 103 105 83 83 103 105 83 82 102 110 83 85 106 110 83 89 106 110 87 3
82 96 104 81 82 100 100 78 82 96 104 81 83 103 105 83 83 103 105 83 83 103 105 86 85 106 110 83 89 106 110 87 89 106 110 90 3
82 100 100 78 82 96 104 81 82 100 100 85 83 103 105 83 83 103 105 86 92 103 114 86 89 106 110 87 89 106 110 90 93 111 114 90 3
46 29 122 129 43 32 122 133 43 32 122 129 42 34 119 135 52 37 114 124 52 48 105 105 53 56 101 97 60 63 85 73 67 71 78 58 2
43 32 122 133 43 32 122 129 49 34 122 129 52 37 114 124 52 48 105 105 59 60 97 83 60 63 85 73 67 71 78 58 67 67 67 51 2
63 67 73 55 66 71 73 55 66 75 76 63 67 70 72 57 67 73 79 57 67 77 82 60 63 67 74 55 63 71 78 58 67 71 78 62 7
66 79 84 63 66 83 80 63 70 79 80 63 67 73 86 64 71 77 90 64 71 81 82 64 67 75 78 62 70 79 78 58 74 79 82 65 7
70 79 80 63 70 79 80 63 66 83 88 66 71 81 82 64 71 81 82 64 75 81 82 64 70 79 82 62 70 79 78 65 67 75 82 62 7
82 96 100 78 82 96 100 78 82 91 100 78 79 95 97 75 83 95 97 75 75 84 93 72 82 92 93 76 78 88 85 73 74 84 82 69 7
78 87 96 78 78 83 84 70 70 79 80 66 75 91 97 72 79 88 90 72 75 81 82 68 74 84 85 69 74 84 85 69 67 75 82 69 7
70 75 80 63 70 83 88 70 78 83 88 74 75 84 90 72 75 84 90 75 75 88 97 75 70 79 85 73 74 84 93 73 74 84 89 76 7
74 83 88 74 74 83 88 74 66 71 88 70 75 84 90 72 71 81 93 75 71 77 93 75 70 84 85 69 74 84 85 73 70 84 89 73 7
66 63 76 66 63 60 80 66 59 53 84 70 59 60 82 68 59 60 82 68 59 57 82 68 57 56 82 65 60 60 82 65 60 60 82 69 5
63 60 80 66 59 53 84 70 52 49 76 66 59 60 82 68 59 57 82 68 59 54 82 72 60 60 82 65 60 60 82 69 57 60 82 73 5
52 49 76 66 52 46 80 63 56 49 73 59 59 54 82 72 56 48 75 64 52 48 75 60 57 60 82 73 53 53 78 73 53 46 78 69 5
56 49 73 59 56 49 69 52 56 46 69 52 52 48 75 60 56 51 72 57 59 51 72 53 53 46 78 69 50 46 74 62 53 49 74 58 5
56 53 73 63 59 53 84 66 56 49 69 59 56 51 68 60 56 51 75 68 52 51 79 68 53 53 74 58 53 53 74 65 53 53 74 69 5
59 53 84 66 56 49 69 59 52 49 76 59 56 51 75 68 52 51 79 68 56 48 72 60 53 53 74 65 53 53 74 69 57 53 78 65 5
46 29 117 133 43 27 133 151 43 27 127 147 52 37 110 116 46 30 124 142 42 30 124 146 42 29 114 129 42 29 119 136 44 31 124 140 2
43 27 133 151 43 27 127 147 43 27 122 133 46 30 124 142 42 30 124 146 42 30 124 135 42 29 119 136 44 31 124 140 44 29 119 133 2
83 95 101 79 83 99 101 83 79 95 101 83 85 97 105 80 82 92 101 80 82 92 101 76 88 98 102 79 84 98 102 79 84 102 102 79 4
92 103 114 86 92 103 105 83 75 81 93 79 93 111 114 90 93 115 110 90 89 102 105 80 97 115 115 91 101 115 120 94 97 111 115 87 3
46 40 105 109 49 40 105 113 46 37 114 120 47 46 105 104 53 49 101 101 50 53 101 101 64 69 98 87 68 77 90 79 64 73 98 83 2
46 37 114 120 46 34 124 131 46 32 124 139 50 53 101 101 47 37 110 122 44 37 124 136 64 73 98 83 57 55 98 98 57 55 111 102 2
46 32 124 139 46 30 119 131 46 32 114 127 44 37 124 136 47 37 119 133 53 43 114 119 57 55 111 102 60 69 102 87 68 73 78 65 2
46 32 114 127 42 34 119 135 52 37 114 124 53 43 114 119 53 56 101 97 60 63 85 73 68 73 78 65 64 73 74 54 68 69 78 54 2
52 48 105 105 59 60 97 83 63 66 79 64 67 71 78 58 67 67 67 51 60 67 70 55 64 66 64 54 64 69 64 54 64 69 71 57 7
63 66 79 64 67 70 75 57 63 70 75 57 60 67 70 55 63 63 67 51 60 67 70 51 64 69 71 57 64 69 71 54 64 69 67 54 7
67 70 75 57 63 70 75 57 63 70 72 53 63 63 67 51 60 67 70 51 63 67 74 55 64 69 71 54 64 69 67 54 64 69 71 54 7
67 66 72 53 67 66 72 53 63 70 68 53 63 67 70 55 63 67 70 55 63 71 74 55 64 69 71 54 68 69 78 54 68 69 71 57 7
67 66 72 53 63 70 68 53 67 70 72 57 63 67 70 55 63 71 74 55 63 67 74 55 68 69 78 54 68 69 71 57 68 73 71 57 7
67 73 86 64 71 77 90 64 71 81 82 64 67 75 78 62 70 79 78 58 74 79 82 65 68 73 78 57 68 77 78 61 68 77 74 61 7
71 81 82 64 71 81 82 64 71 81 82 64 74 79 82 65 70 79 82 62 70 79 78 65 68 77 74 61 68 73 78 61 72 77 78 57 7
71 81 82 64 71 81 82 64 75 81 82 64 70 79 82 62 70 79 78 65 67 75 82 62 68 73 78 61 72 77 78 57 68 73 78 57 7
75 91 90 72 79 91 90 72 79 95 97 75 74 79 89 69 78 88 93 73 82 92 93 76 68 73 82 61 76 85 86 68 80 94 94 76 7
83 95 97 75 75 84 93 72 75 91 97 72 78 88 85 73 74 84 82 69 74 84 85 69 80 89 94 72 76 81 86 72 72 81 90 72 7
75 84 90 72 75 84 90 75 75 88 97 75 70 79 85 73 74 84 93 73 74 84 89 76 68 73 86 72 72 81 86 72 72 77 90 72 7
75 84 90 75 75 88 97 75 75 84 93 75 74 84 93 73 74 84 89 76 74 84 85 73 72 81 86 72 72 77 90 72 72 81 86 72 7
75 84 93 75 75 84 90 72 71 81 93 75 74 84 85 73 70 84 85 69 74 84 85 73 72 81 86 72 72 81 82 68 72 77 82 68 7
71 81 93 75 71 77 93 75 63 63 79 72 74 84 85 73 70 84 89 73 67 67 85 73 72 77 82 68 68 77 90 72 68 77 90 76 7
56 48 75 64 52 48 75 60 56 51 72 57 53 53 78 73 53 46 78 69 50 46 74 62 57 52 78 72 50 46 78 76 53 49 82 65 5
59 51 72 53 56 48 68 53 56 51 68 60 53 49 74 58 53 49 74 58 53 53 74 58 53 49 82 65 57 55 71 61 57 55 78 65 5
52 37 110 116 46 30 124 142 42 30 124 146 42 29 114 129 42 29 119 136 44 31 124 140 44 31 111 120 44 31 115 124 44 37 115 120 2
46 30 124 142 42 30 124 146 42 30 124 135 42 29 119 136 44 31 124 140 44 29 119 133 44 31 115 124 44 37 115 120 47 37 106 113 2
42 30 124 135 42 30 119 127 42 28 119 127 44 29 119 133 44 34 110 115 47 37 101 101 47 37 106 113 47 37 106 109 41 34 115 113 2
42 28 119 127 46 32 105 113 49 45 82 72 47 37 101 101 50 37 101 104 47 40 93 94 41 34 115 113 44 29 115 120 47 31 106 105 2
97 115 119 94 97 115 114 90 89 111 114 87 97 115 120 94 97 111 115 94 97 111 115 94 97 112 118 96 101 116 122 96 101 116 122 96 3
85 97 101 80 85 97 110 80 82 102 110 83 88 106 106 87 92 106 106 87 92 106 106 83 88 107 113 88 92 107 108 85 92 107 113 88 3
85 97 110 80 82 102 110 83 85 106 110 83 92 106 106 87 92 106 106 83 88 106 106 87 92 107 108 85 92 107 113 88 92 107 113 88 3
85 106 110 83 89 106 110 87 89 106 110 90 88 106 106 87 92 106 111 87 92 111 115 91 92 107 113 88 92 107 113 92 92 107 113 88 3
67 71 89 80 50 43 97 108 44 40 105 111 80 89 98 72 64 62 94 83 60 59 98 91 92 107 113 85 84 95 104 74 71 83 100 78 2
44 40 105 111 47 46 105 104 53 49 101 101 60 59 98 91 64 69 98 87 68 77 90 79 71 83 100 78 68 79 100 81 68 75 96 78 2
47 37 110 122 44 37 124 136 47 37 119 133 57 55 98 98 57 55 111 102 60 69 102 87 68 75 83 70 71 75 83 63 68 71 79 59 2
53 56 101 97 60 63 85 73 67 71 78 58 64 73 74 54 68 69 78 54 64 66 64 54 64 71 75 59 71 71 75 52 64 68 71 52 7
60 67 70 55 63 63 67 51 60 67 70 51 64 69 71 57 64 69 71 54 64 69 67 54 64 71 71 56 60 71 75 56 64 71 75 56 7
63 63 67 51 60 67 70 51 63 67 74 55 64 69 71 54 64 69 67 54 64 69 71 54 60 71 75 56 64 71 75 56 68 68 75 56 7
63 67 74 55 67 67 70 55 63 67 70 55 64 69 71 54 64 66 67 54 64 69 71 54 68 68 75 56 64 68 71 52 64 71 67 59 7
67 71 78 62 67 75 78 62 70 79 78 58 64 73 74 57 68 73 78 57 68 77 78 61 64 71 71 59 71 75 75 59 68 71 75 56 7
70 79 82 62 70 79 78 65 67 75 82 62 68 73 78 61 72 77 78 57 68 73 78 57 68 71 71 59 68 75 71 56 68 71 75 56 7
78 88 93 73 82 92 93 76 78 88 85 73 76 85 86 68 80 94 94 76 80 89 94 72 68 79 79 63 76 87 83 74 80 87 100 78 7
67 75 82 69 70 75 85 69 70 75 82 69 68 77 90 72 68 73 86 72 68 69 86 76 64 64 87 78 64 68 87 78 64 71 87 74 7
74 84 89 76 74 84 85 73 70 84 85 69 72 77 90 72 72 81 86 72 72 81 82 68 68 75 83 67 68 71 83 70 71 75 87 88 7
74 84 85 73 70 84 85 69 74 84 85 73 72 81 86 72 72 81 82 68 72 77 82 68 68 71 83 70 71 75 87 88 71 75 83 70 7
74 84 85 73 70 84 89 73 67 67 85 73 72 77 82 68 68 77 90 72 68 77 90 76 71 75 83 70 68 75 83 67 71 79 87 74 7
70 84 89 73 67 67 85 73 57 56 82 73 68 77 90 72 68 77 90 76 60 59 86 72 68 75 83 67 71 79 87 74 71 71 87 74 7
57 53 85 76 57 56 82 65 60 60 82 65 57 52 90 76 57 52 78 72 57 59 78 68 60 61 87 74 56 57 87 74 56 54 83 70 5
57 60 82 73 53 53 78 73 53 46 78 69 60 62 86 68 57 52 78 72 50 46 78 76 64 61 83 70 60 61 83 70 56 54 83 74 5
53 53 78 73 53 46 78 69 50 46 74 62 57 52 78 72 50 46 78 76 53 49 82 65 60 61 83 70 56 54 83 74 56 54 83 70 5
53 46 78 69 50 46 74 62 53 49 74 58 50 46 78 76 53 49 82 65 53 49 82 65 56 54 83 74 56 54 83 70 60 54 83 70 5
53 53 74 69 57 53 78 65 53 49 78 73 53 46 90 83 44 37 94 98 41 31 98 113 46 36 100 107 43 31 108 117 40 29 108 121 2
42 29 114 129 42 29 119 136 44 31 124 140 44 31 111 120 44 31 115 124 44 37 115 120 50 48 96 96 46 36 104 107 43 31 104 107 2
44 29 119 133 44 34 110 115 47 37 101 101 47 37 106 113 47 37 106 109 41 34 115 113 40 31 104 110 40 31 104 107 43 31 104 114 2
44 34 110 115 47 37 101 101 50 37 101 104 47 37 106 109 41 34 115 113 44 29 115 120 40 31 104 107 43 31 104 114 43 29 113 114 2
47 37 101 101 50 37 101 104 47 40 93 94 41 34 115 113 44 29 115 120 47 31 106 105 43 31 104 114 43 29 113 114 43 29 108 114 2
97 115 120 94 97 111 115 94 97 111 115 94 97 112 118 96 101 116 122 96 101 116 122 96 97 116 118 96 97 116 123 96 93 116 123 96 3
88 98 102 83 88 98 102 79 84 98 102 79 92 107 113 88 92 107 118 85 92 112 118 92 93 116 118 96 97 111 118 96 97 111 118 96 3
84 102 102 79 84 102 102 83 84 98 106 83 92 112 118 88 92 107 113 85 88 103 108 81 97 116 113 92 93 111 113 92 88 111 109 87 3
92 106 106 83 88 106 106 87 92 106 111 87 92 107 113 88 92 107 113 88 92 107 113 92 93 111 118 92 97 111 118 92 93 111 113 92 3
88 106 106 87 92 106 111 87 92 111 115 91 92 107 113 88 92 107 113 92 92 107 113 88 97 111 118 92 93 111 113 92 93 111 109 87 3
92 106 111 87 92 111 115 91 97 115 115 91 92 107 113 92 92 107 113 88 92 107 118 92 93 111 113 92 93 111 109 87 97 111 109 87 3
101 115 120 94 97 111 115 87 80 89 98 72 97 112 122 88 101 112 118 92 92 107 113 85 97 111 113 87 93 107 113 92 88 111 118 92 3
68 73 78 65 64 73 74 54 68 69 78 54 64 71 75 56 64 71 75 59 71 71 75 52 63 72 74 58 67 72 77 58 67 72 77 54 7
64 73 74 54 68 69 78 54 64 66 64 54 64 71 75 59 71 71 75 52 64 68 71 52 67 72 77 58 67 72 77 54 67 72 77 54 7
64 66 64 54 64 69 64 54 64 69 71 57 64 68 71 52 60 71 71 56 64 71 71 56 67 72 77 54 63 68 70 54 67 68 70 54 7
64 69 67 54 64 69 71 54 64 66 67 54 64 71 75 56 68 68 75 56 64 68 71 52 67 72 74 54 67 72 74 54 67 72 77 54 7
64 66 67 54 64 69 71 54 68 69 78 54 64 68 71 52 64 71 67 59 68 71 75 59 67 72 77 54 67 72 77 54 67 72 74 54 7
64 69 71 54 68 69 78 54 68 69 71 57 64 71 67 59 68 71 75 59 64 75 75 56 67 72 77 54 67 72 74 54 67 68 74 54 7
68 73 78 57 68 77 78 61 68 77 74 61 71 75 75 59 68 71 75 56 68 71 67 56 67 72 70 58 67 72 70 54 67 72 70 58 7
80 89 94 72 76 81 86 72 72 81 90 72 80 87 100 78 80 87 100 74 71 75 87 74 79 95 96 75 79 91 96 75 71 75 93 79 7
68 77 90 72 68 73 86 72 68 69 86 76 64 64 87 78 64 68 87 78 64 71 87 74 67 68 89 79 63 68 85 79 67 68 89 79 5
72 77 82 68 68 77 90 72 68 77 90 76 71 75 83 70 68 75 83 67 71 79 87 74 67 72 85 67 67 75 81 67 71 79 89 71 7
68 77 90 72 68 77 90 76 60 59 86 72 68 75 83 67 71 79 87 74 71 71 87 74 67 75 81 67 71 79 89 71 71 79 93 71 7
57 52 90 76 57 52 78 72 57 59 78 68 60 61 87 74 56 57 87 74 56 54 83 70 67 68 89 75 63 61 93 79 63 58 85 75 5
57 52 78 72 50 46 78 76 53 49 82 65 60 61 83 70 56 54 83 74 56 54 83 70 63 64 77 62 67 68 81 67 71 75 85 71 5
57 55 71 61 57 55 78 65 57 55 82 68 56 57 83 78 53 48 91 85 53 45 96 96 48 37 100 104 48 37 104 104 51 32 100 108 2
50 46 102 102 44 31 111 120 44 31 115 124 50 42 96 96 50 48 96 96 46 36 104 107 44 32 104 116 51 40 96 96 44 34 100 100 2
44 31 111 120 44 31 115 124 44 37 115 120 50 48 96 96 46 36 104 107 43 31 104 107 51 40 96 96 44 34 100 100 48 29 100 100 2
44 31 115 124 44 37 115 120 47 37 106 113 46 36 104 107 43 31 104 107 40 31 104 110 44 34 100 100 48 29 100 100 44 29 100 100 2
47 37 106 109 41 34 115 113 44 29 115 120 40 31 104 107 43 31 104 114 43 29 113 114 44 32 104 104 44 34 104 104 44 32 109 104 2
44 29 115 120 47 31 106 105 47 37 94 87 43 29 113 114 43 29 108 114 46 34 104 103 44 32 109 104 41 32 109 112 44 32 109 112 2
101 116 122 96 101 116 122 96 97 116 122 96 97 116 123 96 93 116 123 96 97 116 118 96 95 118 122 96 95 118 117 92 99 113 117 96 3
101 116 122 96 97 116 122 96 97 112 118 92 93 116 123 96 97 116 118 96 93 111 118 92 95 118 117 92 99 113 117 96 99 118 122 96 3
88 107 113 88 92 107 108 85 92 107 113 88 88 107 109 92 97 111 113 92 93 111 118 92 90 109 117 89 90 104 117 89 95 109 112 89 3
92 107 113 88 92 107 113 88 92 107 113 92 93 111 118 92 97 111 118 92 93 111 113 92 95 109 112 89 95 113 117 89 99 113 117 92 3
92 107 113 88 92 107 113 92 92 107 113 88 97 111 118 92 93 111 113 92 93 111 109 87 95 113 117 89 99 113 117 92 99 113 122 96 3
92 107 113 92 92 107 113 88 92 107 118 92 93 111 113 92 93 111 109 87 97 111 109 87 99 113 117 92 99 113 122 96 95 109 117 89 3
97 112 122 88 101 112 118 92 92 107 113 85 97 111 113 87 93 107 113 92 88 111 118 92 95 109 117 89 90 113 112 92 90 109 108 89 3
101 112 118 92 92 107 113 85 84 95 104 74 93 107 113 92 88 111 118 92 84 103 109 83 90 113 112 92 90 109 108 89 86 104 108 85 3
92 107 113 85 84 95 104 74 71 83 100 78 88 111 118 92 84 103 109 83 71 79 93 71 90 109 108 89 86 104 108 85 74 91 92 74 3
84 95 104 74 71 83 100 78 68 79 100 81 84 103 109 83 71 79 93 71 63 68 89 71 86 104 108 85 74 91 92 74 70 75 84 63 2
71 83 100 78 68 79 100 81 68 75 96 78 71 79 93 71 63 68 89 71 67 75 77 62 74 91 92 74 70 75 84 63 63 71 73 55 2
68 79 100 81 68 75 96 78 64 75 87 78 63 68 89 71 67 75 77 62 67 72 77 58 70 75 84 63 63 71 73 55 63 71 73 55 7
64 75 87 78 68 75 83 70 71 75 83 63 67 72 77 58 67 68 77 54 67 72 70 54 63 71 73 55 63 67 66 55 63 67 73 55 7
68 71 79 59 64 71 75 56 64 71 75 59 67 72 70 54 63 72 74 58 67 72 77 58 63 71 69 55 63 71 76 55 63 71 76 59 7
68 68 75 56 64 68 71 52 64 71 67 59 67 72 74 54 67 72 77 54 67 72 77 54 66 75 73 59 66 75 76 59 66 75 76 59 7
64 75 75 56 68 71 71 56 64 75 71 56 67 68 74 54 67 72 70 54 67 68 74 54 66 71 73 55 66 71 76 55 66 71 73 55 7
71 75 75 59 68 71 75 56 68 71 67 56 67 72 70 58 67 72 70 54 67 72 70 58 66 71 73 55 66 71 69 55 66 71 73 55 7
68 75 71 56 68 71 75 56 68 75 75 59 71 72 74 58 67 75 77 58 71 75 77 67 66 71 73 59 70 75 80 59 70 79 88 66 7
80 87 100 78 80 87 100 74 71 75 87 74 79 95 96 75 79 91 96 75 71 75 93 79 78 83 84 66 78 83 92 70 78 91 96 78 7
64 64 87 78 64 68 87 78 64 71 87 74 67 68 89 79 63 68 85 79 67 68 89 79 70 79 96 78 70 79 92 81 70 67 88 78 5
64 68 87 78 64 71 87 74 64 71 87 78 63 68 85 79 67 68 89 79 67 68 89 75 70 79 92 81 70 67 88 78 66 71 88 78 5
64 71 87 78 68 71 87 74 68 75 87 74 67 68 89 75 67 72 85 71 67 72 81 67 66 71 88 78 66 71 92 74 66 75 84 70 5
68 75 83 67 68 71 83 70 71 75 87 88 67 72 81 67 71 72 77 67 67 68 81 67 66 71 84 70 66 71 80 66 66 71 80 66 5
56 54 83 70 56 57 79 70 64 61 83 70 63 58 85 75 63 54 81 71 63 58 85 67 70 75 88 74 63 67 88 78 66 63 80 70 5
60 61 83 70 56 54 83 74 56 54 83 70 63 64 77 62 67 68 81 67 71 75 85 71 63 67 80 63 66 71 76 63 66 79 80 63 5
56 54 83 70 60 54 83 70 56 57 83 78 71 75 85 71 63 54 100 92 48 37 100 104 66 79 80 63 70 79 92 70 74 87 96 78 2
60 54 83 70 56 57 83 78 53 48 91 85 63 54 100 92 48 37 100 104 48 37 104 104 70 79 92 70 74 87 96 78 63 56 104 100 2
53 48 91 85 53 45 96 96 46 36 100 107 48 37 104 104 51 32 100 108 48 34 104 108 63 56 104 100 46 32 104 114 46 32 104 111 2
46 36 100 107 43 31 108 117 40 29 108 121 48 34 104 108 48 37 104 112 44 29 109 121 46 32 104 111 43 32 104 114 46 34 104 118 2
43 31 104 117 50 42 96 96 50 48 96 96 44 29 104 121 44 32 104 116 51 40 96 96 46 34 104 114 40 29 112 122 43 27 108 125 2
46 36 104 107 43 31 104 107 40 31 104 110 44 34 100 100 48 29 100 100 44 29 100 100 46 29 108 122 49 40 96 100 49 40 92 92 2
40 31 104 107 43 31 104 114 43 29 113 114 44 32 104 104 44 34 104 104 44 32 109 104 43 32 104 107 43 29 104 107 43 32 100 107 2
43 29 113 114 43 29 108 114 46 34 104 103 44 32 109 104 41 32 109 112 44 32 109 112 43 32 100 107 43 32 100 103 40 32 100 107 2
97 116 118 96 97 116 123 96 93 116 123 96 99 113 117 92 95 118 122 96 95 118 117 92 92 112 110 90 96 112 119 90 96 112 114 94 3
97 116 123 96 93 116 123 96 97 116 118 96 95 118 122 96 95 118 117 92 99 113 117 96 96 112 119 90 96 112 114 94 96 117 119 94 3
97 111 118 96 97 116 113 92 93 111 113 92 104 113 127 96 99 118 117 92 95 113 122 92 96 112 114 94 96 112 114 98 92 112 119 90 3
97 116 113 92 93 111 113 92 88 111 109 87 99 118 117 92 95 113 122 92 95 113 112 89 96 112 114 98 92 112 119 90 92 112 114 90 3
93 111 113 92 93 111 109 87 97 111 109 87 99 113 117 92 99 113 122 96 95 109 117 89 96 117 119 94 92 117 114 90 92 108 105 86 3
88 111 118 92 84 103 109 83 71 79 93 71 90 109 108 89 86 104 108 85 74 91 92 74 75 84 90 68 75 77 82 57 67 73 75 49 3
63 68 89 71 67 75 77 62 67 72 77 58 70 75 84 63 63 71 73 55 63 71 73 55 63 66 72 53 63 70 75 53 59 66 72 53 7
67 72 77 58 67 68 77 54 67 72 70 54 63 71 73 55 63 67 66 55 63 67 73 55 59 66 72 53 63 66 75 57 63 70 75 57 7
67 68 77 54 67 72 70 54 67 72 70 54 63 67 66 55 63 67 73 55 63 71 69 55 63 66 75 57 63 70 75 57 63 70 75 57 7
67 72 70 54 63 72 74 58 67 72 77 58 63 71 69 55 63 71 76 55 63 71 76 59 63 70 75 57 67 73 79 57 67 73 75 60 7
67 72 77 54 63 68 70 54 67 68 70 54 63 75 76 59 66 75 80 59 66 75 73 55 67 73 79 60 67 73 82 60 71 77 82 60 7
67 68 70 54 67 72 74 54 67 72 74 54 63 71 73 55 63 71 73 55 66 75 73 59 67 73 75 57 67 81 82 60 67 81 82 64 7
67 72 74 54 67 72 77 54 67 72 77 54 66 75 73 59 66 75 76 59 66 75 76 59 67 81 82 64 67 77 82 64 63 77 75 60 7
67 72 77 54 67 72 77 54 67 72 74 54 66 75 76 59 66 75 76 59 66 79 80 59 67 77 82 64 63 77 75 60 71 84 86 64 7
67 68 74 54 67 72 70 54 67 68 74 54 66 71 73 55 66 71 76 55 66 71 73 55 71 81 79 68 71 73 82 60 67 73 72 57 7
67 72 70 54 67 72 70 58 67 72 74 58 66 71 69 55 66 71 73 55 70 71 73 55 63 70 72 57 67 77 72 60 71 77 72 64 7
71 75 77 67 71 79 81 67 75 83 85 67 70 79 88 66 74 79 88 66 74 83 88 70 71 81 79 64 67 73 79 60 71 77 86 60 7
79 91 96 75 71 75 93 79 67 68 93 79 78 83 92 70 78 91 96 78 78 83 88 74 75 91 97 75 83 95 105 79 83 99 105 75 7
67 72 85 71 67 72 81 67 67 72 81 67 66 71 92 74 66 75 84 70 66 71 84 70 67 73 90 75 67 73 90 75 63 70 86 75 5
67 72 81 67 67 72 81 67 71 72 77 67 66 75 84 70 66 71 84 70 66 71 80 66 67 73 90 75 63 70 86 75 63 70 82 72 5
71 79 89 71 71 79 93 71 67 68 89 75 66 75 80 70 66 75 88 70 70 79 88 74 67 73 86 72 71 77 90 72 71 81 90 75 7
67 68 89 75 63 61 93 79 63 58 85 75 70 79 88 74 70 79 88 74 70 75 88 74 71 81 90 75 71 84 93 75 75 88 93 75 4
63 58 85 75 63 54 81 71 63 58 85 67 70 75 88 74 63 67 88 78 66 63 80 70 75 88 93 75 75 77 86 68 71 73 79 60 4
63 58 85 67 63 64 77 62 67 68 81 67 66 63 80 70 63 67 80 63 66 71 76 63 71 73 79 60 67 66 75 60 67 66 68 60 5
67 68 81 67 71 75 85 71 63 54 100 92 66 71 76 63 66 79 80 63 70 79 92 70 67 66 68 60 71 73 75 60 71 77 79 64 4
48 37 104 104 51 32 100 108 48 34 104 108 63 56 104 100 46 32 104 114 46 32 104 111 71 81 93 83 59 51 101 113 46 32 101 116 2
44 29 109 121 44 29 104 121 44 32 104 116 46 34 104 118 46 34 104 114 40 29 112 122 42 30 101 120 46 32 105 116 46 32 105 120 2
51 40 96 96 44 34 100 100 48 29 100 100 43 27 108 125 46 29 108 122 49 40 96 100 42 32 101 127 46 30 110 127 46 32 110 120 2
44 29 100 100 44 32 104 104 44 34 104 104 49 40 92 92 43 32 104 107 43 29 104 107 49 40 97 101 46 32 110 113 39 30 101 113 2
44 34 104 104 44 32 109 104 41 32 109 112 43 29 104 107 43 32 100 107 43 32 100 103 39 30 101 113 42 30 105 113 42 30 105 116 2
41 32 109 112 44 32 109 112 48 37 104 100 43 32 100 103 40 32 100 107 43 29 104 107 42 30 105 116 42 32 105 109 42 30 101 109 2
95 113 117 96 104 113 127 96 99 118 117 92 96 112 119 94 96 112 114 94 96 112 114 98 97 115 119 97 97 111 119 94 97 115 114 94 3
95 113 112 89 90 109 117 89 90 104 117 89 92 112 114 90 92 108 114 94 92 108 114 90 97 115 114 90 93 111 114 94 89 111 114 87 3
95 109 112 89 95 113 117 89 99 113 117 92 96 108 110 90 96 112 114 94 96 117 119 94 93 111 110 87 93 111 114 90 93 111 114 87 3
95 109 117 89 90 113 112 92 90 109 108 89 87 99 105 83 83 95 97 79 75 84 90 68 82 88 97 73 78 84 89 69 67 71 74 55 7
86 104 108 85 74 91 92 74 70 75 84 63 75 77 82 57 67 73 75 49 63 66 72 53 67 67 70 48 63 67 70 51 63 67 74 51 7
74 91 92 74 70 75 84 63 63 71 73 55 67 73 75 49 63 66 72 53 63 70 75 53 63 67 70 51 63 67 74 51 60 67 78 55 7
63 67 66 55 63 67 73 55 63 71 69 55 63 66 75 57 63 70 75 57 63 70 75 57 63 67 74 58 63 71 78 55 67 71 78 58 7
63 71 76 59 63 75 76 59 63 75 76 59 67 73 75 60 67 73 75 60 67 73 79 60 63 71 74 58 67 75 78 58 67 79 82 62 7
63 75 76 59 63 75 76 59 66 75 80 59 67 73 75 60 67 73 79 60 67 73 82 60 67 75 78 58 67 79 82 62 67 75 82 62 7
66 75 73 55 63 71 73 55 63 71 73 55 71 77 82 60 67 73 75 57 67 81 82 60 67 75 78 58 70 75 78 58 67 79 82 62 7
66 75 73 59 66 75 76 59 66 75 76 59 67 81 82 64 67 77 82 64 63 77 75 60 67 75 82 58 63 75 78 55 63 75 78 58 7
66 71 73 55 70 71 73 55 66 71 73 59 67 77 72 60 71 77 72 64 71 81 82 64 70 79 82 65 70 79 85 65 70 79 85 69 7
74 79 88 66 74 83 88 70 70 79 88 66 67 73 79 60 71 77 86 60 75 81 82 64 67 79 85 62 67 84 89 69 74 88 93 73 7
78 83 92 70 78 91 96 78 78 83 88 74 75 91 97 75 83 95 105 79 83 99 105 75 78 92 93 76 78 92 93 76 85 97 101 76 7
70 79 92 81 70 67 88 78 66 71 88 78 71 81 93 79 71 77 93 79 71 73 93 79 74 84 89 73 70 84 97 80 70 75 93 76 5
70 67 88 78 66 71 88 78 66 71 92 74 71 77 93 79 71 73 93 79 67 73 90 75 70 84 97 80 70 75 93 76 67 75 89 76 5
66 71 88 78 66 71 92 74 66 75 84 70 71 73 93 79 67 73 90 75 67 73 90 75 70 75 93 76 67 75 89 76 67 75 89 80 5
66 71 80 66 63 71 73 66 66 71 80 66 63 66 82 68 63 66 82 68 63 70 82 68 67 79 89 76 70 79 89 80 70 84 89 73 5
70 79 88 74 70 79 88 74 70 75 88 74 71 81 90 75 71 84 93 75 75 88 93 75 74 84 97 76 74 88 97 76 74 79 89 73 4
70 79 88 74 70 75 88 74 63 67 88 78 71 84 93 75 75 88 93 75 75 77 86 68 74 88 97 76 74 79 89 73 67 79 85 65 4
74 87 96 78 63 56 104 100 46 32 104 114 75 81 86 72 71 81 93 83 59 51 101 113 67 75 85 65 70 84 89 76 74 79 97 94 2
46 32 104 114 46 32 104 111 43 32 104 114 59 51 101 113 46 32 101 116 46 32 101 116 74 79 97 94 53 43 105 115 50 34 105 115 2
46 32 104 111 43 32 104 114 46 34 104 118 46 32 101 116 46 32 101 116 42 30 101 120 53 43 105 115 50 34 105 115 47 34 101 111 2
40 29 112 122 43 27 108 125 46 29 108 122 46 32 105 120 42 32 101 127 46 30 110 127 44 31 105 122 44 31 110 129 42 29 110 126 2
43 29 104 107 43 32 100 107 43 32 100 103 39 30 101 113 42 30 105 113 42 30 105 116 44 29 114 126 44 29 105 119 44 29 101 115 2
96 112 119 90 96 112 114 94 96 117 119 94 93 115 114 90 93 115 114 90 101 120 119 94 92 111 115 91 97 115 120 94 101 120 120 98 3
96 117 119 94 96 117 119 94 96 117 119 94 101 120 119 94 97 120 124 97 97 115 119 94 101 120 120 98 101 120 120 94 101 115 120 94 3
96 112 119 94 96 112 114 94 96 112 114 98 97 115 119 97 97 111 119 94 97 115 114 94 97 115 125 94 92 115 115 94 92 111 111 91 3
96 112 114 98 92 112 119 90 92 112 114 90 97 115 114 94 93 106 114 90 93 111 114 90 92 111 111 91 92 111 115 91 88 106 111 91 3
92 112 114 90 92 112 114 90 92 108 114 94 93 111 114 90 97 115 114 90 93 111 114 94 88 106 111 91 88 106 111 87 88 106 111 91 3
92 108 114 94 92 108 114 90 96 108 110 90 93 111 114 94 89 111 114 87 93 111 110 87 88 106 111 91 84 106 111 83 84 98 102 83 3
92 108 114 90 96 108 110 90 96 112 114 94 89 111 114 87 93 111 110 87 93 111 114 90 84 106 111 83 84 98 102 83 84 106 111 83 3
92 117 114 90 92 108 105 86 87 99 105 83 89 106 110 87 85 97 105 80 82 88 97 73 80 106 102 79 80 98 98 76 80 94 94 72 3
75 77 82 57 67 73 75 49 63 66 72 53 67 67 70 48 63 67 70 51 63 67 74 51 64 66 71 54 64 69 71 54 64 69 74 54 7
63 70 75 53 59 66 72 53 63 66 75 57 60 67 78 55 60 67 74 55 63 67 74 58 64 69 74 57 64 73 74 57 68 77 74 57 7
59 66 72 53 63 66 75 57 63 70 75 57 60 67 74 55 63 67 74 58 63 71 78 55 64 73 74 57 68 77 74 57 64 73 74 57 7
67 73 79 57 67 73 75 60 67 73 75 60 63 75 78 58 63 71 74 58 67 75 78 58 64 73 82 61 64 73 86 61 64 73 78 57 7
67 73 75 60 67 73 75 60 67 73 79 60 63 71 74 58 67 75 78 58 67 79 82 62 64 73 86 61 64 73 78 57 64 73 78 61 7
67 73 79 60 67 73 82 60 71 77 82 60 67 79 82 62 67 75 82 62 67 75 78 58 64 73 78 61 64 73 78 61 68 73 78 57 7
67 73 82 60 71 77 82 60 67 73 75 57 67 75 82 62 67 75 78 58 70 75 78 58 64 73 78 61 68 73 78 57 72 73 82 61 7
67 73 75 57 67 81 82 60 67 81 82 64 70 75 78 58 67 79 82 62 67 75 82 58 72 73 82 61 72 77 74 57 68 77 74 57 7
71 84 86 64 71 81 79 68 71 73 82 60 67 75 82 65 70 84 82 62 70 75 78 65 64 69 74 57 68 73 74 57 64 73 74 57 7
71 77 72 64 71 81 82 64 71 81 86 68 70 79 85 65 70 79 85 69 74 79 82 65 72 81 82 65 72 81 82 65 76 81 82 65 7
71 77 86 60 75 81 82 64 75 84 82 68 67 84 89 69 74 88 93 73 78 92 93 73 76 85 90 72 76 89 94 76 76 85 94 76 7
79 84 93 75 71 81 93 79 71 77 93 79 82 92 97 80 74 84 89 73 70 84 97 80 80 94 98 76 76 85 90 76 72 81 90 76 7
67 73 90 75 63 70 86 75 63 70 82 72 67 75 89 80 67 79 93 76 70 75 89 76 80 94 102 83 80 94 102 83 80 94 106 83 5
63 66 82 68 63 66 82 68 63 70 82 68 67 79 89 76 70 79 89 80 70 84 89 73 72 98 106 83 80 98 102 87 76 94 98 83 5
67 66 68 60 71 73 75 60 71 77 79 64 67 79 82 62 70 75 78 58 67 75 82 69 72 85 86 72 72 77 82 68 68 73 78 61 4
71 77 79 64 75 81 86 72 71 81 93 83 67 75 82 69 67 75 85 65 70 84 89 76 68 73 78 61 64 73 74 65 72 81 86 72 4
42 30 101 120 46 32 105 116 46 32 105 120 47 34 101 111 44 31 101 119 44 31 105 122 44 34 102 109 47 34 106 113 47 34 106 116 2
46 32 110 120 49 40 97 101 46 32 110 113 42 27 110 129 44 34 110 122 50 37 110 119 41 29 111 128 44 31 106 124 47 34 102 113 2
46 32 110 113 39 30 101 113 42 30 105 113 50 37 110 119 44 29 114 126 44 29 105 119 47 34 102 113 50 34 106 113 47 37 106 116 2
39 30 101 113 42 30 105 113 42 30 105 116 44 29 114 126 44 29 105 119 44 29 101 115 50 34 106 113 47 37 106 116 53 49 98 94 2
42 30 105 116 42 32 105 109 42 30 101 109 44 29 101 115 44 34 105 104 47 43 101 97 53 49 98 94 60 66 94 79 68 77 94 72 2
93 111 114 90 93 115 114 90 93 115 114 90 92 106 115 91 92 111 115 91 97 115 120 94 92 107 113 92 97 112 118 96 101 116 122 96 3
93 115 114 90 93 115 114 90 101 120 119 94 92 111 115 91 97 115 120 94 101 120 120 98 97 112 118 96 101 116 122 96 101 116 122 96 3
97 120 124 97 97 115 119 94 97 115 119 97 101 120 120 94 101 115 120 94 97 115 125 94 101 116 122 96 101 112 122 96 97 112 122 92 3
93 111 114 90 97 115 114 90 93 111 114 94 88 106 111 91 88 106 111 87 88 106 111 91 92 107 118 88 88 103 104 85 84 99 104 81 3
89 111 114 87 93 111 110 87 93 111 114 90 84 106 111 83 84 98 102 83 84 106 111 83 84 99 104 81 84 99 108 85 84 107 113 85 4
93 111 114 90 93 111 114 87 89 106 110 87 84 106 111 83 80 106 106 79 80 106 102 79 84 107 113 85 84 107 113 85 88 103 108 85 4
89 106 110 87 85 97 105 80 82 88 97 73 80 106 102 79 80 98 98 76 80 94 94 72 88 103 108 85 84 99 104 78 76 87 91 74 4
60 67 78 55 60 67 74 55 63 67 74 58 64 69 74 57 64 73 74 57 68 77 74 57 64 75 79 56 64 75 79 59 64 75 79 59 7
60 67 74 55 63 67 74 58 63 71 78 55 64 73 74 57 68 77 74 57 64 73 74 57 64 75 79 59 64 75 79 59 64 75 75 63 7
67 79 82 62 67 75 82 62 67 75 78 58 64 73 78 61 64 73 78 61 68 73 78 57 68 79 79 63 64 75 79 59 68 75 79 59 7
67 75 78 58 70 75 78 58 67 79 82 62 68 73 78 57 72 73 82 61 72 77 74 57 68 75 79 59 64 75 79 59 68 75 75 59 7
70 75 78 58 67 79 82 62 67 75 82 58 72 73 82 61 72 77 74 57 68 77 74 57 64 75 79 59 68 75 75 59 64 75 75 52 7
67 79 82 62 67 75 82 58 63 75 78 55 72 77 74 57 68 77 74 57 64 73 82 61 68 75 75 59 64 75 75 52 64 68 75 56 7
63 75 78 58 67 75 82 65 70 84 82 62 64 73 78 57 64 69 74 57 68 73 74 57 64 68 71 56 64 71 71 56 68 71 71 59 7
67 75 82 65 70 84 82 62 70 75 78 65 64 69 74 57 68 73 74 57 64 73 74 57 64 71 71 56 68 71 71 59 68 71 75 56 7
70 84 82 62 70 75 78 65 67 79 78 58 68 73 74 57 64 73 74 57 64 69 78 61 68 71 71 59 68 71 75 56 68 71 75 59 7
67 75 78 62 70 75 82 62 70 79 82 65 68 77 82 61 68 77 74 61 68 77 78 61 68 75 79 63 68 79 79 59 68 75 83 63 7
74 79 85 62 67 79 85 62 67 84 89 69 72 85 86 68 72 81 86 68 76 85 90 72 71 83 87 63 71 83 83 70 71 83 83 67 7
67 79 85 62 67 84 89 69 74 88 93 73 72 81 86 68 76 85 90 72 76 89 94 76 71 83 83 70 71 83 83 67 80 87 91 74 7
74 88 93 73 78 92 93 73 78 92 93 76 76 89 94 76 76 85 94 76 76 98 98 76 80 87 91 74 76 91 96 74 76 91 96 74 7
85 97 101 76 82 92 97 80 74 84 89 73 80 94 98 76 80 94 98 76 76 85 90 76 80 87 91 74 80 91 100 78 80 91 100 78 7
74 79 89 73 67 79 85 65 67 75 78 62 68 85 98 87 72 89 94 79 72 85 90 76 76 103 108 92 76 103 108 92 71 95 104 81 4
67 75 78 65 67 79 82 62 70 75 78 58 72 81 86 72 72 85 86 72 72 77 82 68 76 91 100 81 76 91 96 81 76 83 87 67 4
47 34 101 111 44 31 101 119 44 31 105 122 44 34 102 109 47 34 106 113 47 34 106 116 46 34 104 110 46 34 100 107 43 36 104 114 2
44 31 110 129 42 29 110 126 42 27 110 129 44 31 111 124 44 29 111 128 41 29 111 128 46 34 108 121 40 31 104 125 40 29 113 132 2
42 27 110 129 44 34 110 122 50 37 110 119 41 29 111 128 44 31 106 124 47 34 102 113 40 29 113 132 40 29 113 128 43 31 108 121 2
50 37 110 119 44 29 114 126 44 29 105 119 47 34 102 113 50 34 106 113 47 37 106 116 43 31 108 121 50 45 100 99 64 68 91 78 2
92 111 115 91 97 115 120 94 101 120 120 98 97 112 118 96 101 116 122 96 101 116 122 96 93 116 118 92 97 121 123 96 97 116 123 100 3
97 115 120 94 101 120 120 98 101 120 120 94 101 116 122 96 101 116 122 96 101 116 122 96 97 121 123 96 97 116 123 100 97 116 123 96 3
97 115 125 94 92 115 115 94 92 111 111 91 97 112 122 92 92 107 118 96 92 107 118 88 97 116 118 96 93 111 118 92 93 107 113 87 3
92 111 111 91 92 111 115 91 88 106 111 91 92 107 118 88 92 112 113 92 92 107 118 88 93 107 113 87 88 107 109 83 84 99 109 79 3
88 106 111 91 88 106 111 87 88 106 111 91 92 107 118 88 88 103 104 85 84 99 104 81 84 99 109 79 79 95 100 79 84 103 109 79 3
80 98 98 76 80 94 94 72 72 85 82 68 84 99 104 78 76 87 91 74 76 79 87 63 84 99 100 79 79 91 93 71 71 79 85 62 7
72 85 82 68 64 69 71 54 64 66 71 54 76 79 87 63 68 68 75 52 64 68 67 56 71 79 85 62 67 72 70 50 63 68 70 54 7
64 69 74 54 64 69 74 57 64 73 74 57 68 75 75 56 64 75 79 56 64 75 79 59 67 72 77 54 63 72 77 58 67 75 77 58 7
64 73 86 61 64 73 78 57 64 73 78 61 68 75 75 59 68 75 75 59 68 79 79 63 71 75 77 58 71 79 81 58 67 79 77 58 7
64 73 78 61 64 73 78 61 68 73 78 57 68 79 79 63 64 75 79 59 68 75 79 59 67 79 77 58 67 75 81 58 67 72 74 58 7
64 73 74 57 64 69 78 61 68 73 78 61 68 71 75 56 68 71 75 59 64 75 75 59 63 68 70 54 67 68 74 58 67 72 74 58 7
64 69 78 61 68 73 78 61 68 77 82 61 68 71 75 59 64 75 75 59 68 75 79 63 67 68 74 58 67 72 74 58 67 72 74 58 7
68 77 82 61 68 77 74 61 68 77 78 61 68 75 79 63 68 79 79 59 68 75 83 63 67 72 74 58 71 72 85 62 71 79 81 67 7
68 77 74 61 68 77 78 61 72 81 82 65 68 79 79 59 68 75 83 63 71 79 87 63 71 72 85 62 71 79 81 67 71 79 85 62 7
68 77 78 61 72 81 82 65 72 81 82 65 68 75 83 63 71 79 87 63 71 83 83 63 71 79 81 67 71 79 85 62 71 79 85 62 7
76 81 82 65 72 85 86 68 72 81 86 68 76 79 79 67 71 83 87 63 71 83 83 70 71 79 85 62 71 79 85 67 71 83 85 67 7
76 85 94 76 76 98 98 76 80 98 98 76 76 91 96 74 76 91 96 74 76 91 100 74 71 87 89 71 75 83 89 71 75 87 93 71 7
80 94 98 76 76 85 90 76 72 81 90 76 80 91 100 78 80 91 100 78 80 91 96 78 79 95 100 79 79 99 109 83 79 103 109 87 7
68 73 78 61 64 73 74 65 72 81 86 72 68 83 79 67 68 83 83 70 68 79 83 67 71 79 85 67 63 75 81 67 67 79 85 67 4
44 34 102 109 47 34 106 113 47 34 106 116 46 34 104 110 46 34 100 107 43 36 104 114 55 48 104 108 44 32 104 112 44 34 109 112 2
44 31 111 124 44 29 111 128 41 29 111 128 46 34 108 121 40 31 104 125 40 29 113 132 41 37 104 116 41 32 104 121 44 32 109 125 2
44 31 106 124 47 34 102 113 50 34 106 113 40 29 113 128 43 31 108 121 50 45 100 99 41 29 113 129 44 29 113 129 48 37 109 112 2
50 34 106 113 47 37 106 116 53 49 98 94 50 45 100 99 64 68 91 78 68 83 87 70 48 37 109 112 63 64 93 75 71 83 85 67 2
97 112 122 92 92 107 118 96 92 107 118 88 97 116 118 96 93 111 118 92 93 107 113 87 90 109 112 89 90 104 108 85 86 109 104 81 3
92 107 118 88 88 103 104 85 84 99 104 81 84 99 109 79 79 95 100 79 84 103 109 79 86 104 104 85 86 104 104 81 86 100 108 85 4
84 99 104 81 84 99 108 85 84 107 113 85 88 107 109 83 88 107 109 87 88 107 113 87 86 104 108 89 86 109 112 89 90 113 122 92 4
84 99 108 85 84 107 113 85 84 107 113 85 88 107 109 87 88 107 113 87 84 107 113 87 86 109 112 89 90 113 122 92 90 109 112 89 4
68 75 75 59 68 75 75 59 68 75 75 59 67 83 77 58 71 75 77 58 71 79 81 58 66 75 76 59 66 75 84 63 66 79 80 59 7
68 75 75 59 68 79 79 63 64 75 79 59 71 79 81 58 67 79 77 58 67 75 81 58 66 79 80 59 66 75 80 59 66 75 80 59 7
68 79 79 63 64 75 79 59 68 75 79 59 67 79 77 58 67 75 81 58 67 72 74 58 66 75 80 59 66 75 80 59 66 75 76 59 7
64 75 79 59 68 75 75 59 64 75 75 52 63 72 74 58 67 75 74 58 71 75 77 54 63 71 76 59 63 71 76 59 63 75 80 59 7
64 75 75 52 64 68 75 56 64 68 71 56 71 75 77 54 67 72 74 54 67 75 70 54 63 75 80 59 66 75 80 59 66 79 76 59 7
64 68 71 56 64 71 71 56 68 71 71 59 67 75 70 54 67 75 74 58 63 72 74 58 66 79 76 59 66 79 80 63 66 75 76 59 7
68 71 75 56 68 71 75 59 64 75 75 59 63 68 70 54 67 68 74 58 67 72 74 58 59 71 73 55 63 71 73 59 63 75 73 59 7
71 83 83 70 71 83 83 67 80 87 91 74 71 83 85 67 75 83 89 67 71 79 89 71 66 79 88 63 70 83 88 66 70 79 92 66 7
68 83 79 67 68 83 83 70 68 79 83 67 71 79 85 67 63 75 81 67 67 79 85 67 70 87 92 78 70 79 84 70 66 79 80 70 4
68 79 83 67 71 83 96 74 71 87 96 81 67 79 85 67 75 79 89 71 75 83 93 71 66 79 80 70 70 79 80 66 70 79 80 66 4
71 87 96 81 60 61 104 103 46 34 104 110 75 83 93 71 75 79 100 83 55 48 104 108 70 79 80 66 70 83 92 74 74 83 100 85 2
46 34 108 121 40 31 104 125 40 29 113 132 41 37 104 116 41 32 104 121 44 32 109 125 46 32 100 107 46 34 104 107 46 32 104 114 2
40 31 104 125 40 29 113 132 40 29 113 128 41 32 104 121 44 32 109 125 41 29 113 129 46 34 104 107 46 32 104 114 46 27 108 129 2
68 83 87 70 71 83 91 70 71 83 87 63 71 83 85 67 67 79 85 67 67 79 85 62 66 67 80 59 70 79 84 63 70 83 88 66 4
88 111 113 92 93 116 118 92 97 121 123 96 95 118 117 96 99 118 122 96 95 118 122 96 96 112 124 94 96 117 130 98 96 117 114 94 3
97 121 123 96 97 116 123 100 97 116 123 96 95 118 122 96 99 118 127 100 99 118 117 96 96 117 114 94 96 112 114 90 87 103 105 86 3
97 116 123 96 97 111 118 96 97 116 118 96 99 118 117 96 95 113 112 92 90 109 112 89 87 103 105 86 92 108 114 90 92 112 119 90 3
97 116 118 96 93 111 118 92 93 107 113 87 90 109 112 89 90 104 108 85 86 109 104 81 92 112 119 90 92 108 110 94 92 108 110 90 3
93 111 118 92 93 107 113 87 88 107 109 83 90 104 108 85 86 109 104 81 86 104 112 85 92 108 110 94 92 108 110 90 83 108 114 86 4
84 103 109 79 88 107 109 83 88 107 109 87 86 100 108 85 86 104 108 89 86 109 112 89 87 103 105 83 83 103 114 86 87 112 119 90 4
88 107 109 87 88 107 113 87 84 107 113 87 86 109 112 89 90 113 122 92 90 109 112 89 87 112 119 90 92 112 114 90 87 103 105 83 4
84 99 100 79 79 91 93 71 71 79 85 62 78 91 96 70 74 83 88 66 74 83 88 66 71 84 82 64 71 77 86 68 71 81 82 60 7
67 79 77 58 67 75 81 58 67 72 74 58 66 75 80 59 66 75 80 59 66 75 76 59 67 73 75 60 67 73 79 57 67 73 72 60 7
71 75 77 54 67 72 74 54 67 75 70 54 63 75 80 59 66 75 80 59 66 79 76 59 63 73 79 57 67 81 82 60 67 77 86 60 7
63 72 74 58 63 68 70 54 67 68 74 58 66 75 76 59 59 71 73 55 63 71 73 59 63 73 75 60 67 73 72 57 63 70 75 57 7
63 68 70 54 67 68 74 58 67 72 74 58 59 71 73 55 63 71 73 59 63 75 73 59 67 73 72 57 63 70 75 57 67 73 79 60 7
67 68 74 58 67 72 74 58 67 72 74 58 63 71 73 59 63 75 73 59 63 75 73 55 63 70 75 57 67 73 79 60 67 70 75 60 7
71 79 85 62 71 79 85 67 71 83 85 67 70 79 80 63 70 79 80 63 66 79 88 63 63 77 79 64 67 77 75 60 67 77 79 64 7
55 48 104 108 44 32 104 112 44 34 109 112 74 83 100 85 59 49 104 107 46 32 108 114 75 84 97 72 75 70 101 94 56 42 97 113 2
44 34 109 112 41 37 104 116 41 32 104 121 46 32 108 114 46 32 100 107 46 34 104 107 56 42 97 113 46 34 93 105 49 37 97 98 2
41 37 104 116 41 32 104 121 44 32 109 125 46 32 100 107 46 34 104 107 46 32 104 114 46 34 93 105 49 37 97 98 52 40 97 101 2
44 32 109 125 41 29 113 129 44 29 113 129 46 32 104 114 46 27 108 129 43 29 108 129 52 40 97 101 52 40 97 105 52 48 90 98 2
95 113 112 92 90 109 112 89 90 104 108 85 92 108 114 90 92 112 119 90 92 108 110 94 97 115 124 101 93 120 124 97 93 120 119 97 3
86 104 104 81 86 100 108 85 86 104 108 89 87 103 105 83 87 103 105 83 83 103 114 86 89 106 105 87 85 106 114 87 85 111 114 90 4
63 71 69 55 66 75 76 55 66 75 80 59 67 73 75 57 67 73 79 57 67 73 79 60 67 79 82 62 70 79 82 58 63 79 78 58 7
66 75 80 59 66 75 80 59 66 79 76 59 67 73 79 60 71 77 79 60 71 77 82 60 63 79 78 58 67 75 78 62 67 79 78 62 7
66 75 80 59 66 75 80 59 66 75 76 59 67 73 75 60 67 73 79 57 67 73 72 60 67 71 82 62 63 75 82 62 63 75 78 62 7
63 71 76 59 63 71 76 59 63 75 80 59 63 70 72 57 63 73 75 57 63 73 79 57 63 79 85 62 67 79 82 58 67 75 82 62 7
63 71 76 59 63 75 80 59 66 75 80 59 63 73 75 57 63 73 79 57 67 81 82 60 67 79 82 58 67 75 82 62 67 75 82 62 7
59 71 73 55 63 71 73 59 63 75 73 59 67 73 72 57 63 70 75 57 67 73 79 60 63 71 70 55 63 71 70 58 63 71 78 58 7
63 75 73 59 63 75 73 55 66 75 76 59 67 73 79 60 67 70 75 60 67 73 75 57 63 71 78 58 63 67 74 62 63 75 74 62 7
70 79 80 63 66 79 88 63 70 83 88 66 67 77 75 60 67 77 79 64 67 84 82 64 63 79 85 62 67 79 82 65 63 79 85 65 7
70 79 80 66 70 79 80 66 70 83 92 74 71 81 82 75 71 84 90 72 71 84 86 72 67 84 89 73 70 84 89 76 74 88 89 73 4
70 79 80 66 70 83 92 74 74 83 100 85 71 84 90 72 71 84 86 72 75 84 97 72 70 84 89 76 74 88 89 73 74 84 89 73 4
70 83 92 74 74 83 100 85 59 49 104 107 71 84 86 72 75 84 97 72 75 70 101 94 74 88 89 73 74 84 89 73 74 84 97 76 4
74 83 100 85 59 49 104 107 46 32 108 114 75 84 97 72 75 70 101 94 56 42 97 113 74 84 89 73 74 84 97 76 70 67 101 94 2
46 34 104 107 46 32 104 114 46 27 108 129 49 37 97 98 52 40 97 101 52 40 97 105 53 49 93 90 60 56 85 83 63 71 85 73 2
96 112 124 94 96 117 130 98 96 117 114 94 97 111 114 90 89 102 101 83 82 88 89 73 72 81 86 65 68 77 74 57 64 73 78 54 3
92 112 119 90 92 108 110 94 92 108 110 90 93 120 124 97 93 120 119 97 89 115 114 87 97 120 120 102 92 120 120 98 88 120 120 91 3
83 103 114 86 87 112 119 90 92 112 114 90 85 111 114 90 89 111 114 83 89 106 110 83 88 102 111 87 88 102 102 83 84 98 102 79 4
71 81 82 60 67 77 75 57 67 73 75 57 70 79 85 62 70 84 82 58 67 79 82 62 68 81 82 65 68 81 82 65 72 77 82 61 7
67 77 82 60 67 77 75 60 63 73 82 57 63 71 78 62 63 75 78 55 67 75 78 58 64 77 74 57 64 77 74 57 64 77 78 61 7
63 73 75 57 63 73 79 57 67 81 82 60 67 79 82 58 67 75 82 62 67 75 82 62 68 81 78 61 68 77 78 61 68 77 78 57 7
63 70 75 57 67 73 79 60 67 70 75 60 63 71 70 58 63 71 78 58 63 67 74 62 68 69 74 57 64 69 74 57 68 69 74 57 7
67 73 79 60 67 70 75 60 67 73 75 57 63 71 78 58 63 67 74 62 63 75 74 62 64 69 74 57 68 69 74 57 64 73 74 57 7
67 73 75 57 67 77 75 60 67 77 82 60 63 75 74 62 63 71 74 58 63 71 78 62 64 73 74 57 64 73 74 57 64 73 78 61 7
63 77 82 60 63 77 79 64 67 77 75 60 67 75 78 62 63 75 85 58 63 79 85 62 64 77 78 65 68 77 86 65 64 77 82 65 7
63 77 79 64 67 77 75 60 67 77 79 64 63 75 85 58 63 79 85 62 67 79 82 65 68 77 86 65 64 77 82 65 64 77 82 65 7
67 81 82 68 67 84 86 68 67 84 82 68 63 79 89 65 63 79 82 65 60 79 85 65 60 77 82 65 60 77 82 68 64 81 86 72 7
75 103 110 86 71 99 105 83 67 91 97 83 74 115 119 101 70 111 114 90 63 97 105 80 72 115 125 98 72 115 120 98 72 106 111 91 1
71 81 90 72 71 81 82 75 71 84 90 72 67 84 93 76 67 84 89 73 70 84 89 76 64 81 86 72 68 81 86 68 72 85 86 68 4
71 84 90 72 71 84 86 72 75 84 97 72 70 84 89 76 74 88 89 73 74 84 89 73 72 85 86 68 72 89 90 76 76 85 94 76 4
71 84 86 72 75 84 97 72 75 70 101 94 74 88 89 73 74 84 89 73 74 84 97 76 72 89 90 76 76 85 94 76 72 89 94 76 4
52 40 97 101 52 40 97 105 52 48 90 98 60 56 85 83 63 71 85 73 70 84 89 73 72 94 86 72 76 94 98 76 76 98 98 76 2
70 84 85 65 85 102 105 83 97 115 124 101 64 73 78 61 72 89 94 76 88 115 125 98 64 75 75 59 68 75 79 63 76 99 104 85 3
93 120 119 97 89 115 114 87 85 111 114 87 92 120 120 98 88 120 120 91 84 111 111 91 92 116 122 96 88 107 118 92 88 107 113 88 3
89 106 105 87 85 106 114 87 85 111 114 90 88 106 111 87 84 106 111 87 88 102 111 87 84 103 108 85 84 99 108 85 84 99 104 81 4
85 106 114 87 85 111 114 90 89 111 114 83 84 106 111 87 88 102 111 87 88 102 102 83 84 99 108 85 84 99 104 81 84 95 100 78 4
85 111 114 90 89 111 114 83 89 106 110 83 88 102 111 87 88 102 102 83 84 98 102 79 84 99 104 81 84 95 100 78 80 91 96 74 4
89 111 114 83 89 106 110 83 82 97 101 80 88 102 102 83 84 98 102 79 80 98 94 72 84 95 100 78 80 91 96 74 80 87 91 78 4
89 106 110 83 82 97 101 80 78 88 97 73 84 98 102 79 80 98 94 72 76 85 94 68 80 91 96 74 80 87 91 78 76 87 91 67 4
67 79 82 65 70 79 82 62 70 79 85 62 76 81 86 65 72 81 86 65 68 81 82 65 71 87 91 63 71 83 87 70 71 83 87 67 7
70 79 82 58 63 79 78 58 67 75 78 62 68 77 78 61 68 77 78 61 68 73 74 57 68 75 75 56 68 75 75 56 71 75 75 56 7
63 79 78 58 67 75 78 62 67 79 78 62 68 77 78 61 68 73 74 57 64 73 78 57 68 75 75 56 71 75 75 56 68 75 75 59 7
63 71 78 62 63 75 78 55 67 75 78 58 64 77 74 57 64 77 74 57 64 77 78 61 60 75 79 59 64 79 79 59 64 79 79 63 7
67 75 78 58 67 71 78 58 67 71 82 62 64 77 78 61 64 77 78 61 68 77 78 61 64 79 79 63 68 79 83 63 68 79 79 67 7
63 75 82 62 63 75 78 62 63 79 85 62 68 77 78 65 64 77 74 65 68 77 82 65 64 83 83 67 64 79 79 63 71 83 83 67 7
63 75 78 62 63 79 85 62 67 79 82 58 64 77 74 65 68 77 82 65 68 81 78 61 64 79 79 63 71 83 83 67 68 79 83 63 7
67 75 82 62 67 75 82 62 67 75 82 58 68 77 78 61 68 77 78 57 68 77 74 57 68 79 83 63 68 79 79 59 68 75 79 56 7
67 75 82 58 70 79 74 58 63 75 74 55 68 77 74 57 68 73 78 54 68 73 74 54 68 75 79 56 64 75 79 59 68 79 79 59 7
63 75 74 55 63 71 70 55 63 71 70 58 68 73 74 54 64 69 74 57 68 69 74 57 68 79 79 59 68 75 75 56 68 71 75 59 7
63 75 74 62 63 71 74 58 63 71 78 62 64 73 74 57 64 73 74 57 64 73 78 61 68 75 75 59 64 75 79 59 64 79 83 63 7
63 71 74 58 63 71 78 62 67 75 78 62 64 73 74 57 64 73 78 61 64 77 78 65 64 75 79 59 64 79 83 63 68 79 83 63 7
67 75 78 62 63 75 85 58 63 79 85 62 64 77 78 65 68 77 86 65 64 77 82 65 68 79 83 63 64 79 83 67 64 75 79 63 7
67 79 82 65 63 79 85 65 63 79 89 65 64 77 82 65 60 77 82 65 60 77 82 65 64 75 83 67 68 79 83 67 68 83 87 70 7
74 102 114 90 74 115 119 97 74 115 119 101 76 115 120 102 72 115 120 102 72 115 125 98 76 112 128 99 80 116 128 103 80 116 128 99 1
67 84 93 76 67 84 89 73 70 84 89 76 64 81 86 72 68 81 86 68 72 85 86 68 71 83 87 70 76 87 91 78 76 91 96 74 4
74 84 89 73 74 84 97 76 70 67 101 94 76 85 94 76 72 89 94 76 72 85 90 76 76 83 87 70 68 79 79 63 68 75 75 63 4
53 43 97 101 53 49 93 90 60 56 85 83 64 73 86 72 68 81 90 68 72 94 86 72 68 83 87 70 76 91 100 81 76 99 104 81 4
97 120 120 102 92 120 120 98 88 120 120 91 92 116 122 99 92 116 122 96 88 107 118 92 79 103 109 87 88 107 113 92 84 107 109 87 3
88 120 120 91 84 111 111 91 88 106 111 87 88 107 118 92 88 107 113 88 84 107 108 88 84 107 109 87 84 107 104 83 84 103 104 83 4
88 102 111 87 88 102 102 83 84 98 102 79 84 99 104 81 84 95 100 78 80 91 96 74 84 95 100 79 79 95 93 75 79 91 96 75 4
80 98 94 72 76 85 94 68 76 81 86 65 80 87 91 78 76 87 91 67 71 87 91 63 75 91 89 75 75 91 93 75 75 91 100 75 4
76 81 86 65 72 81 86 65 68 81 82 65 71 87 91 63 71 83 87 70 71 83 87 67 75 91 100 75 79 95 93 71 79 87 85 67 7
68 81 82 65 72 77 82 61 68 77 78 61 68 79 83 67 68 75 79 63 68 75 75 56 71 79 81 62 67 79 77 58 67 79 77 58 7
72 77 82 61 68 77 78 61 68 77 78 61 68 75 79 63 68 75 75 56 68 75 75 56 67 79 77 58 67 79 77 58 67 75 77 58 7
68 77 78 61 68 73 74 57 64 73 78 57 68 75 75 56 71 75 75 56 68 75 75 59 67 75 77 58 67 72 77 58 67 72 81 58 7
68 73 74 57 64 73 78 57 68 73 78 61 71 75 75 56 68 75 75 59 68 75 79 59 67 72 77 58 67 72 81 58 71 75 77 58 7
68 77 78 61 64 77 74 57 64 77 74 57 68 75 79 59 60 75 79 59 64 79 79 59 71 75 74 58 67 75 77 58 67 75 81 62 7
64 77 78 61 64 77 78 61 68 77 78 61 64 79 79 63 68 79 83 63 68 79 79 67 67 79 85 62 71 83 85 62 71 87 85 67 7
68 77 78 61 68 77 78 65 64 77 74 65 68 79 79 67 64 83 83 67 64 79 79 63 71 87 85 67 71 79 85 67 71 83 85 62 7
68 77 82 65 68 81 78 61 68 77 78 61 71 83 83 67 68 79 83 63 68 79 83 63 67 83 81 67 67 79 81 62 67 79 77 62 7
68 81 78 61 68 77 78 61 68 77 78 57 68 79 83 63 68 79 83 63 68 79 79 59 67 79 81 62 67 79 77 62 67 75 81 58 7
64 69 74 57 68 69 74 57 64 69 74 57 68 75 75 56 68 71 75 59 68 75 75 59 67 75 81 58 67 72 77 58 67 75 77 62 7
64 73 74 57 64 73 78 61 64 77 78 65 64 75 79 59 64 79 83 63 68 79 83 63 67 79 81 62 67 79 81 67 71 83 81 67 7
64 77 82 65 60 77 82 65 60 77 82 65 64 75 83 67 68 79 83 67 68 83 87 70 67 87 81 71 67 87 93 75 67 87 93 79 7
72 115 120 102 72 115 125 98 72 115 120 98 80 116 128 103 80 116 128 99 76 116 122 96 75 116 123 100 75 116 128 100 75 111 128 100 1
68 94 102 87 64 89 102 79 64 81 86 72 71 87 100 81 71 83 91 74 71 83 87 70 75 91 104 83 71 91 96 75 71 83 93 71 4
64 81 86 72 68 81 86 68 72 85 86 68 71 83 87 70 76 87 91 78 76 91 96 74 71 83 93 71 71 79 93 71 71 79 85 67 4
68 81 86 68 72 85 86 68 72 89 90 76 76 87 91 78 76 91 96 74 76 91 91 70 71 79 93 71 71 79 85 67 71 68 77 62 4
76 85 94 76 72 89 94 76 72 85 90 76 76 83 87 70 68 79 79 63 68 75 75 63 67 72 74 58 67 72 74 58 67 68 77 58 7
72 94 86 72 76 94 98 76 76 98 98 76 76 99 104 81 80 99 104 78 76 95 96 78 79 99 100 79 79 95 100 79 75 91 96 75 4
76 94 98 76 76 98 98 76 76 94 98 76 80 99 104 78 76 95 96 78 71 87 96 74 79 95 100 79 75 91 96 75 75 91 93 71 4
64 71 75 56 64 75 71 59 64 75 79 59 67 75 74 58 67 75 74 58 63 72 77 58 78 87 88 74 70 79 80 66 66 75 80 59 7
84 103 108 85 84 99 108 85 84 99 104 81 84 103 104 83 88 99 104 83 84 95 100 79 82 100 104 81 82 100 104 81 86 100 100 81 4
80 87 91 78 76 87 91 67 71 87 91 63 75 91 89 75 75 91 93 75 75 91 100 75 78 87 92 70 78 91 96 74 78 96 100 74 4
71 83 87 67 68 79 83 67 68 75 79 63 79 87 85 67 71 79 81 62 67 79 77 58 82 100 104 81 78 91 96 74 66 79 84 66 7
68 75 79 63 68 75 75 56 68 75 75 56 67 79 77 58 67 79 77 58 67 75 77 58 66 79 84 66 66 79 80 63 70 79 80 63 7
68 75 75 59 68 75 79 59 68 75 79 59 67 72 81 58 71 75 77 58 71 75 74 58 70 79 80 59 70 75 73 59 70 75 76 59 7
64 79 79 63 68 79 83 63 68 79 79 67 67 79 85 62 71 83 85 62 71 87 85 67 63 79 84 63 66 79 84 63 66 79 84 63 7
68 79 79 67 64 83 83 67 64 79 79 63 71 87 85 67 71 79 85 67 71 83 85 62 66 79 84 63 66 79 84 63 66 79 80 63 7
64 79 79 63 71 83 83 67 68 79 83 63 71 83 85 62 67 83 81 67 67 79 81 62 66 79 80 63 66 79 80 63 66 75 84 63 7
71 83 83 67 68 79 83 63 68 79 83 63 67 83 81 67 67 79 81 62 67 79 77 62 66 79 80 63 66 75 84 63 66 75 84 63 7
68 75 75 56 68 71 75 59 68 75 75 59 67 75 81 58 67 72 77 58 67 75 77 62 59 60 100 81 66 71 88 70 70 79 76 59 7
68 75 75 59 64 75 79 59 64 79 83 63 67 75 81 62 67 79 81 62 67 79 81 67 66 79 80 66 66 75 84 66 66 79 84 66 7
64 87 100 74 68 91 100 81 71 103 118 96 67 95 100 79 75 99 109 87 79 111 123 100 63 83 96 78 66 91 104 81 74 100 108 92 1
68 91 100 81 71 103 118 96 76 116 122 99 75 99 109 87 79 111 123 100 75 111 123 100 66 91 104 81 74 100 108 92 78 113 117 96 1
76 116 122 99 76 112 128 99 80 116 128 103 75 111 123 100 75 116 123 100 75 116 123 100 78 113 117 96 74 113 122 100 70 113 127 96 1
76 112 128 99 80 116 128 103 80 116 128 99 75 116 123 100 75 116 123 100 75 116 128 100 74 113 122 100 70 113 127 96 66 113 117 100 1
71 83 91 74 71 83 87 70 76 87 91 78 71 91 96 75 71 83 93 71 71 79 93 71 78 91 96 81 74 83 96 74 66 71 73 59 4
76 91 96 74 76 91 91 70 76 83 87 70 71 79 85 67 71 68 77 62 67 72 74 58 63 63 66 52 59 63 66 52 59 63 66 55 7
68 79 79 63 68 75 75 63 68 83 87 70 67 72 74 58 67 68 77 58 67 72 77 62 63 63 69 55 63 67 69 55 59 67 66 55 7
68 75 75 63 68 83 87 70 76 91 100 81 67 68 77 58 67 72 77 62 75 87 96 79 63 67 69 55 59 67 66 55 63 67 66 55 7
71 91 87 70 76 83 91 70 71 83 87 67 75 91 89 71 75 91 93 71 71 83 89 67 74 83 96 74 74 87 92 70 74 87 88 70 4
67 75 74 58 63 72 77 58 67 75 81 58 70 79 80 66 66 75 80 59 66 79 80 59 71 88 93 68 67 77 82 64 67 81 86 64 7
67 75 81 58 63 75 77 58 67 83 85 67 66 79 80 59 66 75 80 63 66 75 76 59 67 81 86 64 67 77 79 64 67 73 75 60 7
79 103 109 87 88 107 113 92 84 107 109 87 63 71 73 59 66 79 84 63 78 100 104 85 67 73 79 57 63 77 82 60 71 84 90 72 7
84 103 104 83 88 99 104 83 84 95 100 79 82 100 104 81 82 100 104 81 86 100 100 81 87 99 105 83 87 99 101 83 87 99 105 79 4
75 91 93 75 75 91 100 75 79 95 93 71 78 91 96 74 78 96 100 74 82 100 104 81 75 84 93 75 79 91 101 79 83 103 105 83 4
75 91 100 75 79 95 93 71 79 87 85 67 78 96 100 74 82 100 104 81 82 100 104 81 79 91 101 79 83 103 105 83 83 99 105 83 4
67 72 77 58 67 72 81 58 71 75 77 58 66 75 80 63 70 79 80 59 70 75 73 59 75 81 86 64 71 81 82 60 71 77 82 64 7
67 72 81 58 71 75 77 58 71 75 74 58 70 79 80 59 70 75 73 59 70 75 76 59 71 81 82 60 71 77 82 64 67 77 82 64 7
71 75 74 58 67 75 77 58 67 75 81 62 70 75 76 59 63 75 80 59 63 75 76 63 67 77 82 64 67 70 90 64 67 73 82 64 7
71 87 85 67 71 79 85 67 71 83 85 62 66 79 84 63 66 79 84 63 66 79 80 63 67 77 82 64 71 77 82 64 67 77 82 64 7
67 75 77 62 67 72 77 62 67 75 85 62 63 63 88 74 63 60 88 85 59 56 88 85 59 57 97 86 59 57 97 86 56 57 97 86 5
67 72 77 62 67 75 85 62 67 75 81 58 63 60 88 85 59 56 88 85 59 60 100 81 59 57 97 86 56 57 97 86 59 57 97 86 5
67 75 85 62 67 75 81 58 67 72 77 58 59 56 88 85 59 60 100 81 66 71 88 70 56 57 97 86 59 57 97 86 59 63 90 79 5
67 75 77 62 67 75 81 62 67 75 81 62 70 79 76 59 70 75 76 59 66 79 80 66 63 73 82 64 67 77 79 60 67 77 82 64 7
75 99 109 87 79 111 123 100 75 111 123 100 66 91 104 81 74 100 108 92 78 113 117 96 67 99 105 86 75 112 119 101 79 112 124 101 1
75 111 123 100 75 116 123 100 75 116 123 100 78 113 117 96 74 113 122 100 70 113 127 96 79 112 124 101 79 112 124 98 71 108 124 98 1
71 111 123 100 67 107 118 96 63 103 113 92 66 113 127 100 66 113 122 100 66 113 127 100 63 112 124 98 63 108 124 101 67 108 135 98 1
63 103 113 92 67 99 109 87 71 99 109 87 66 113 127 100 66 109 122 100 63 109 117 92 67 108 135 98 67 112 130 98 67 112 119 98 1
71 99 109 87 71 95 104 87 67 95 100 83 63 109 117 92 66 100 108 89 66 96 96 85 67 112 119 98 67 103 114 90 63 91 105 83 1
67 68 77 58 67 72 77 62 75 87 96 79 63 67 69 55 59 67 66 55 63 67 66 55 63 70 72 60 67 70 75 57 67 66 72 60 7
67 72 77 62 75 87 96 79 79 99 100 79 59 67 66 55 63 67 66 55 63 67 73 59 67 70 75 57 67 66 72 60 63 66 68 57 7
75 91 93 71 75 87 93 71 75 91 89 71 74 91 92 78 74 87 96 74 74 83 96 74 75 91 101 75 75 88 90 72 75 88 90 72 4
66 75 76 59 63 71 73 59 66 79 84 63 67 73 75 60 67 73 79 57 63 77 82 60 67 75 78 62 67 75 78 62 63 75 78 58 7
78 87 92 70 78 91 96 74 78 96 100 74 75 91 97 72 75 84 93 75 79 91 101 79 78 88 93 76 78 88 97 76 85 102 105 83 4
78 91 96 74 78 96 100 74 82 100 104 81 75 84 93 75 79 91 101 79 83 103 105 83 78 88 97 76 85 102 105 83 85 102 101 83 4
78 96 100 74 82 100 104 81 82 100 104 81 79 91 101 79 83 103 105 83 83 99 105 83 85 102 105 83 85 102 101 83 85 102 110 80 4
82 100 104 81 82 100 104 81 78 91 96 74 83 103 105 83 83 99 105 83 79 91 93 72 85 102 101 83 85 102 110 80 82 88 101 76 4
66 79 84 66 66 79 80 63 70 79 80 63 71 81 82 64 71 81 90 68 75 88 93 68 67 71 93 65 74 88 97 80 82 97 105 83 7
66 79 80 63 70 79 80 63 66 75 80 63 71 81 90 68 75 88 93 68 75 81 86 64 74 88 97 80 82 97 105 83 78 88 93 73 7
66 79 84 63 66 79 84 63 66 79 80 63 67 77 82 64 71 77 82 64 67 77 82 64 67 75 82 62 67 71 82 65 63 71 82 65 7
66 79 80 63 66 75 84 63 66 75 84 63 63 70 82 68 63 66 93 79 63 63 93 83 60 60 85 76 60 60 93 83 60 60 93 87 5
66 75 84 63 66 75 84 63 63 71 88 70 63 66 93 79 63 63 93 83 59 60 90 83 60 60 93 83 60 60 93 87 57 56 93 90 5
59 60 100 81 66 71 88 70 70 79 76 59 59 57 97 86 59 63 90 79 63 73 82 64 57 60 93 80 57 63 89 76 60 67 78 65 5
63 83 96 78 66 91 104 81 74 100 108 92 63 84 86 79 67 99 105 86 75 112 119 101 63 88 101 76 70 102 114 94 74 115 119 101 1
74 100 108 92 78 113 117 96 74 113 122 100 75 112 119 101 79 112 124 101 79 112 124 98 74 115 119 101 74 115 119 101 70 111 124 101 1
63 109 117 92 66 100 108 89 66 96 96 85 67 112 119 98 67 103 114 90 63 91 105 83 67 115 129 104 63 106 119 94 63 97 105 87 1
74 83 96 74 66 71 73 59 63 63 66 52 79 91 97 79 71 81 86 64 63 66 62 57 67 75 85 73 70 75 82 69 70 71 78 62 7
63 67 66 55 63 67 73 59 70 83 88 70 67 66 72 60 63 66 68 57 59 70 75 60 67 67 74 62 67 67 74 58 63 67 70 58 7
70 83 88 70 78 91 96 78 74 91 92 78 59 70 75 60 71 84 90 72 75 91 101 75 63 67 70 58 63 75 82 65 74 88 89 76 4
74 91 92 78 74 87 96 74 74 83 96 74 75 91 101 75 75 88 90 72 75 88 90 72 74 88 89 76 74 88 97 73 70 88 85 65 4
75 91 93 72 71 88 93 68 67 77 82 64 74 88 89 73 78 92 93 73 70 84 85 62 76 89 90 68 76 94 94 72 76 89 90 68 4
67 77 79 64 67 73 75 60 67 73 79 57 67 79 82 65 67 75 78 62 67 75 78 62 68 77 74 61 68 77 74 61 68 77 78 61 7
67 73 79 57 63 77 82 60 71 84 90 72 67 75 78 62 63 75 78 58 63 79 78 62 68 77 78 61 64 73 74 61 64 73 78 57 7
63 77 82 60 71 84 90 72 83 99 105 83 63 75 78 58 63 79 78 62 74 92 93 76 64 73 74 61 64 73 78 57 64 81 82 65 7
83 99 105 83 83 103 105 83 87 99 105 83 74 92 93 76 82 102 105 83 82 97 105 83 64 81 82 65 76 94 102 79 84 98 102 83 4
83 103 105 83 87 99 105 83 87 99 101 83 82 102 105 83 82 97 105 83 82 97 101 83 76 94 102 79 84 98 102 83 84 98 102 83 4
87 99 101 83 87 99 105 79 79 99 101 83 82 97 101 83 85 102 105 83 82 97 105 80 84 98 102 83 84 102 98 83 84 102 102 79 4
79 99 101 83 79 95 101 75 75 91 97 72 82 97 105 80 82 92 97 76 78 88 93 76 84 102 102 79 84 94 98 79 76 85 90 72 4
75 91 97 72 75 84 93 75 79 91 101 79 78 88 93 76 78 88 97 76 85 102 105 83 76 85 90 72 76 94 94 76 80 102 102 79 4
83 103 105 83 83 99 105 83 79 91 93 72 85 102 101 83 85 102 110 80 82 88 101 76 84 102 102 83 84 102 102 79 72 81 90 65 4
71 81 90 68 75 88 93 68 75 81 86 64 74 88 97 80 82 97 105 83 78 88 93 73 76 89 98 79 80 94 102 76 76 85 90 68 7
56 57 97 86 59 57 97 86 59 63 90 79 60 56 93 87 57 60 93 80 57 63 89 76 57 55 86 76 57 55 86 72 57 55 82 72 5
63 84 86 79 67 99 105 86 75 112 119 101 63 88 101 76 70 102 114 94 74 115 119 101 64 94 106 83 68 106 115 98 72 115 120 98 1
75 112 119 101 79 112 124 101 79 112 124 98 74 115 119 101 74 115 119 101 70 111 124 101 72 115 120 98 68 111 120 98 68 115 125 98 1
79 112 124 101 79 112 124 98 71 108 124 98 74 115 119 101 70 111 124 101 67 106 124 101 68 111 120 98 68 115 125 98 68 111 125 98 1
67 112 124 98 67 112 124 98 63 112 124 98 67 111 119 97 63 111 124 97 63 120 124 101 68 115 120 98 64 115 125 98 64 115 125 102 1
63 108 124 101 67 108 135 98 67 112 130 98 63 115 124 101 67 111 124 101 63 115 124 101 64 115 125 98 60 111 120 98 64 111 115 102 1
67 103 114 90 63 91 105 83 63 88 90 75 63 106 119 94 63 97 105 87 63 88 97 83 68 115 120 102 64 106 111 91 64 94 102 83 1
63 70 72 60 67 70 75 57 67 66 72 60 63 71 78 62 67 71 78 62 67 67 74 62 68 73 78 65 68 69 74 57 64 66 71 54 7
67 66 72 60 63 66 68 57 59 70 75 60 67 67 74 62 67 67 74 58 63 67 70 58 64 66 71 54 64 69 71 57 68 69 74 61 7
75 88 90 72 75 88 90 68 71 81 90 64 70 88 85 65 67 75 78 62 63 71 74 62 64 73 78 61 64 73 78 61 68 73 78 57 7
67 79 85 65 67 79 82 65 67 75 78 62 72 81 82 61 68 77 74 61 68 77 74 61 76 87 96 70 71 79 83 59 68 79 79 63 7
63 75 78 58 63 79 78 62 74 92 93 76 64 73 74 61 64 73 78 57 64 81 82 65 64 75 79 59 64 75 79 63 68 75 79 59 7
63 79 78 62 74 92 93 76 82 102 105 83 64 73 78 57 64 81 82 65 76 94 102 79 64 75 79 63 68 75 79 59 68 83 87 70 7
74 92 93 76 82 102 105 83 82 97 105 83 64 81 82 65 76 94 102 79 84 98 102 83 68 75 79 59 68 83 87 70 80 91 91 81 7
82 102 105 83 82 97 105 83 82 97 101 83 76 94 102 79 84 98 102 83 84 98 102 83 68 83 87 70 80 91 91 81 84 95 100 78 4
82 97 105 80 82 92 97 76 78 88 93 76 84 102 102 79 84 94 98 79 76 85 90 72 84 99 104 85 80 99 100 81 76 91 96 74 4
78 88 97 76 85 102 105 83 85 102 101 83 76 94 94 76 80 102 102 79 84 102 102 83 76 91 96 74 76 91 96 74 76 91 87 70 4
78 88 93 73 78 84 93 69 78 88 97 80 76 85 90 68 80 94 98 76 80 98 98 83 71 87 87 70 76 91 91 78 76 91 100 78 7
74 88 101 80 70 88 93 69 67 75 85 62 76 98 102 79 76 89 94 72 72 81 86 65 80 99 104 81 80 99 104 78 76 91 96 74 7
70 88 93 69 67 75 85 62 67 75 82 62 76 89 94 72 72 81 86 65 72 77 82 61 80 99 104 78 76 91 96 74 71 79 83 63 7
67 75 85 62 67 75 82 62 67 71 82 65 72 81 86 65 72 77 82 61 68 69 78 65 76 91 96 74 71 79 83 63 64 68 83 67 7
67 71 82 65 63 71 82 65 60 60 85 76 68 69 78 65 64 62 82 68 60 59 90 76 64 68 83 67 60 61 83 70 56 57 79 70 5
60 60 85 76 60 60 93 83 60 60 93 87 60 59 90 76 60 59 98 87 57 59 98 87 56 57 79 70 60 51 83 74 56 54 83 70 5
60 60 93 87 57 56 93 90 57 56 97 94 57 59 98 87 57 55 94 87 57 55 90 83 56 54 83 70 56 57 87 78 60 57 87 78 5
57 60 93 80 57 63 89 76 60 67 78 65 57 55 86 72 57 55 82 72 57 59 74 68 56 57 87 70 56 57 83 67 56 57 83 70 5
63 111 124 97 63 120 124 101 63 115 124 101 64 115 125 98 64 115 125 102 64 115 125 98 64 116 128 103 64 112 128 103 64 116 122 99 1
63 120 124 101 63 115 124 101 67 111 124 101 64 115 125 102 64 115 125 98 60 111 120 98 64 112 128 103 64 116 122 99 64 121 122 96 1
67 111 124 101 63 115 124 101 67 115 129 104 60 111 120 98 64 111 115 102 68 115 125 102 64 121 122 96 64 116 122 99 64 116 122 96 1
63 106 119 94 63 97 105 87 63 88 97 83 68 115 120 102 64 106 111 91 64 94 102 83 68 116 128 103 68 112 128 96 64 103 113 88 1
67 71 78 62 67 67 74 62 67 67 74 58 68 69 74 57 64 66 71 54 64 69 71 57 64 75 75 59 68 71 75 59 68 71 75 59 7
67 67 74 62 67 67 74 58 63 67 70 58 64 66 71 54 64 69 71 57 68 69 74 61 68 71 75 59 68 71 75 59 68 75 75 59 7
76 89 90 68 76 94 94 72 76 89 90 68 76 87 91 70 76 87 91 67 76 91 96 74 75 87 89 67 75 87 89 67 75 87 89 67 4
76 89 90 68 72 81 82 61 68 77 74 61 76 91 96 74 76 87 96 70 71 79 83 59 75 87 89 67 75 83 89 71 71 83 85 67 4
72 81 82 61 68 77 74 61 68 77 74 61 76 87 96 70 71 79 83 59 68 79 79 63 75 83 89 71 71 83 85 67 67 75 85 62 7
84 98 102 83 84 98 102 83 84 102 98 83 80 91 91 81 84 95 100 78 80 95 100 81 75 87 89 71 79 91 93 75 79 95 96 75 4
84 102 102 79 84 94 98 79 76 85 90 72 84 99 104 85 80 99 100 81 76 91 96 74 84 95 100 79 84 95 100 75 79 87 93 75 4
84 102 102 83 84 102 102 79 72 81 90 65 76 91 87 70 71 79 87 70 68 75 87 67 67 72 85 67 63 58 81 67 63 68 85 67 5
72 81 90 65 68 69 86 68 76 89 98 79 68 75 87 67 76 83 91 74 80 95 100 78 63 68 85 67 71 91 93 75 75 91 89 71 7
80 94 98 76 80 98 98 83 84 98 102 83 76 91 91 78 76 91 100 78 80 95 100 78 71 83 81 67 71 87 85 71 75 95 96 79 7
80 98 98 83 84 98 102 83 80 98 106 83 76 91 100 78 80 95 100 78 80 99 104 81 71 87 85 71 75 95 96 79 79 95 104 79 7
80 98 106 83 76 98 102 79 76 89 94 72 80 99 104 81 80 99 104 81 80 99 104 78 79 95 104 79 75 99 100 79 79 99 104 83 3
57 55 86 76 57 55 86 72 57 55 82 72 56 54 87 78 56 57 87 70 56 57 83 67 55 54 85 71 55 54 85 71 55 58 81 71 5
57 55 86 72 57 55 82 72 57 59 74 68 56 57 87 70 56 57 83 67 56 57 83 70 55 54 85 71 55 58 81 71 55 54 85 71 5
57 55 82 72 57 59 74 68 60 66 82 65 56 57 83 67 56 57 83 70 56 64 83 67 55 58 81 71 55 54 85 71 55 51 81 71 5
68 106 115 98 72 115 120 98 68 111 120 98 68 112 118 96 68 116 122 99 71 112 118 99 71 111 118 92 71 111 123 96 71 107 123 96 1
68 115 125 98 68 111 125 98 68 115 120 98 68 112 122 96 68 112 128 99 68 116 122 103 67 107 113 96 67 111 118 96 71 116 123 100 1
64 115 125 98 64 115 125 102 64 115 125 98 64 116 128 103 64 112 128 103 64 116 122 99 67 111 123 100 67 111 123 100 67 116 123 100 1
64 115 125 98 60 111 120 98 64 111 115 102 64 116 122 99 64 121 122 96 64 116 122 99 67 116 123 100 71 111 128 100 67 111 123 96 1
60 111 120 98 64 111 115 102 68 115 125 102 64 121 122 96 64 116 122 99 64 116 122 96 71 111 128 100 67 111 123 96 67 111 123 100 1
64 106 111 91 64 94 102 83 68 94 102 79 68 112 128 96 64 103 113 88 60 91 104 81 71 116 123 100 71 107 118 96 67 99 109 83 1
68 77 74 65 68 77 74 61 68 73 78 65 68 75 79 63 68 75 75 59 64 75 75 63 71 79 85 67 63 75 81 62 67 72 77 62 7
64 66 71 54 64 69 71 57 68 69 74 61 68 71 75 59 68 71 75 59 68 75 75 59 63 68 67 58 67 72 70 62 67 75 74 58 7
68 73 82 65 68 81 86 68 68 77 82 65 68 75 75 59 68 79 79 63 71 79 87 67 67 75 74 62 63 72 74 62 63 75 77 62 7
76 87 91 70 76 87 91 67 76 91 96 74 75 87 89 67 75 87 89 67 75 87 89 67 74 87 84 70 74 87 92 70 74 87 88 66 4
76 87 91 67 76 91 96 74 76 87 96 70 75 87 89 67 75 87 89 67 75 83 89 71 74 87 92 70 74 87 88 66 74 87 88 70 4
71 79 83 59 68 79 79 63 64 79 83 59 71 83 85 67 67 75 85 62 71 79 89 62 78 91 92 74 74 83 92 70 66 79 84 63 7
68 79 79 63 64 79 83 59 64 75 79 59 67 75 85 62 71 79 89 62 71 79 77 58 74 83 92 70 66 79 84 63 66 75 76 63 7
84 95 100 78 80 95 100 81 84 99 104 85 79 91 93 75 79 95 96 75 84 95 100 79 74 79 84 66 82 87 96 78 82 96 100 78 4
76 91 96 74 76 91 96 74 76 91 96 74 79 87 93 75 71 79 89 75 67 75 89 67 82 91 96 78 66 71 88 74 56 53 80 66 5
76 91 96 74 76 91 96 74 76 91 87 70 71 79 89 75 67 75 89 67 67 72 85 67 66 71 88 74 56 53 80 66 59 53 73 63 5
76 91 96 74 76 91 87 70 71 79 87 70 67 75 89 67 67 72 85 67 63 58 81 67 56 53 80 66 59 53 73 63 56 49 80 66 5
68 75 87 67 76 83 91 74 80 95 100 78 63 68 85 67 71 91 93 75 75 91 89 71 56 53 73 66 70 79 84 66 78 83 88 70 7
80 95 100 78 76 87 91 67 71 87 87 70 75 91 89 71 75 83 81 62 71 79 85 67 78 83 88 70 74 87 84 66 78 87 84 70 7
71 87 87 70 76 91 91 78 76 91 100 78 71 79 85 67 71 83 81 67 71 87 85 71 78 87 84 70 74 79 84 63 70 83 84 66 7
76 91 91 78 76 91 100 78 80 95 100 78 71 83 81 67 71 87 85 71 75 95 96 79 74 79 84 63 70 83 84 66 66 87 84 70 7
76 91 100 78 80 95 100 78 80 99 104 81 71 87 85 71 75 95 96 79 79 95 104 79 70 83 84 66 66 87 84 70 74 91 100 78 7
80 99 104 81 80 99 104 78 76 91 96 74 75 99 100 79 79 99 104 83 79 99 109 83 78 96 104 81 82 100 104 81 82 100 104 85 3
71 79 83 63 64 68 83 67 60 61 83 70 79 91 96 75 71 72 77 58 59 54 67 54 82 100 104 85 78 91 92 74 66 67 66 41 3
56 57 79 70 60 51 83 74 56 54 83 70 55 51 67 50 51 51 70 50 55 51 67 54 52 49 56 33 52 49 66 44 52 56 69 55 5
60 57 87 78 56 57 83 70 56 54 87 78 59 58 81 71 55 54 85 71 55 54 85 71 59 60 76 66 59 60 80 70 56 60 84 74 5
56 57 87 70 56 57 83 67 56 57 83 70 55 54 85 71 55 58 81 71 55 54 85 71 56 56 88 74 56 53 84 74 56 53 84 78 5
60 91 100 78 64 99 104 88 68 112 118 96 63 91 100 75 67 103 113 87 71 111 118 92 63 87 92 81 66 104 112 89 66 104 112 92 1
68 112 122 96 68 112 128 99 68 116 122 103 67 107 113 96 67 111 118 96 71 116 123 100 66 109 117 96 66 109 112 96 66 109 122 100 1
64 116 128 103 64 112 128 103 64 116 122 99 67 111 123 100 67 111 123 100 67 116 123 100 66 109 122 100 66 113 122 100 66 113 127 100 1
64 121 122 96 64 116 122 99 64 116 122 96 71 111 128 100 67 111 123 96 67 111 123 100 66 113 122 100 66 113 127 100 70 118 127 100 1
68 71 75 59 68 71 75 59 68 75 75 59 63 68 67 58 67 72 70 62 67 75 74 58 63 67 69 55 66 71 73 55 66 71 73 59 7
71 75 79 59 68 75 75 59 68 75 75 59 67 79 81 62 67 72 77 58 67 75 74 58 66 75 76 63 70 79 84 66 66 75 73 59 7
75 87 89 67 75 87 89 67 75 87 89 67 74 87 84 70 74 87 92 70 74 87 88 66 75 91 93 72 75 88 90 72 71 84 93 72 4
75 87 89 67 75 87 89 67 75 83 89 71 74 87 92 70 74 87 88 66 74 87 88 70 75 88 90 72 71 84 93 72 75 88 90 68 4
71 79 89 62 71 79 77 58 67 79 77 62 66 79 84 63 66 75 76 63 66 79 80 63 71 84 90 68 63 81 82 64 63 81 79 64 7
67 75 77 62 67 79 81 62 75 87 89 71 66 79 88 63 66 79 84 63 66 79 80 59 67 84 86 68 71 84 86 64 67 81 82 64 7
67 79 81 62 75 87 89 71 79 91 93 75 66 79 84 63 66 79 80 59 74 79 84 66 71 84 86 64 67 81 82 64 67 77 82 64 7
84 95 100 79 84 95 100 75 79 87 93 75 82 96 100 78 82 96 104 78 82 91 96 78 79 99 101 79 83 103 105 83 83 91 101 79 4
75 83 81 62 71 79 85 67 71 83 81 67 74 87 84 66 78 87 84 70 74 79 84 63 75 88 97 75 75 88 97 72 75 84 93 68 7
71 83 81 67 71 87 85 71 75 95 96 79 74 79 84 63 70 83 84 66 66 87 84 70 75 84 93 68 75 91 90 75 79 88 93 75 7
75 95 96 79 79 95 104 79 75 99 100 79 66 87 84 70 74 91 100 78 78 96 104 81 79 88 93 75 75 88 97 72 75 91 101 79 7
71 72 77 58 59 54 67 54 55 51 67 50 78 91 92 74 66 67 66 41 52 49 56 33 75 91 97 68 63 66 68 34 52 51 62 42 5
59 54 67 54 55 51 67 50 51 51 70 50 66 67 66 41 52 49 56 33 52 49 66 44 63 66 68 34 52 51 62 42 49 48 68 49 5
55 54 85 71 55 54 85 71 55 54 85 71 59 60 80 70 56 60 84 74 56 56 88 74 56 54 82 72 56 51 79 75 49 54 86 75 5
55 54 85 71 55 54 85 71 55 58 81 71 56 60 84 74 56 56 88 74 56 53 84 74 56 51 79 75 49 54 86 75 52 54 79 75 5
71 111 123 96 71 107 123 96 67 107 113 96 66 113 117 92 66 109 122 96 66 109 117 96 67 108 119 98 67 112 119 98 71 108 119 98 1
71 111 128 100 67 111 123 96 67 111 123 100 66 113 122 100 66 113 127 100 70 118 127 100 63 112 130 101 71 112 130 101 71 112 124 101 1
71 111 128 100 71 116 123 100 71 107 118 96 70 113 127 100 70 113 122 100 70 118 127 100 67 112 124 101 67 112 124 98 67 112 130 101 1
71 116 123 100 71 107 118 96 67 99 109 83 70 113 122 100 70 118 127 100 70 113 122 96 67 112 124 98 67 112 130 101 71 108 130 101 1
63 75 81 62 67 72 77 62 67 68 74 58 70 79 84 70 66 71 73 63 63 63 66 55 67 73 79 68 67 73 79 64 63 66 68 57 7
67 68 74 58 63 68 67 58 67 72 70 62 63 63 66 55 63 67 69 55 66 71 73 55 63 66 68 57 63 66 68 57 59 70 75 57 7
67 75 74 62 63 72 74 62 63 75 77 62 66 71 76 59 66 71 73 63 63 67 73 59 67 70 72 60 67 70 75 57 63 70 68 57 7
63 75 77 62 67 79 81 62 67 72 77 58 63 67 73 59 66 75 76 63 70 79 84 66 63 70 68 57 63 66 68 57 67 77 75 64 7
74 87 84 70 74 87 92 70 74 87 88 66 75 91 93 72 75 88 90 72 71 84 93 72 74 92 89 76 74 84 93 69 70 88 89 69 4
74 87 88 66 74 87 88 70 78 91 92 74 71 84 93 72 75 88 90 68 75 88 93 68 70 88 89 69 74 84 89 69 74 84 85 65 4
74 87 88 70 78 91 92 74 74 83 92 70 75 88 90 68 75 88 93 68 75 91 93 72 74 84 89 69 74 84 85 65 74 88 93 69 4
78 91 92 74 74 83 92 70 66 79 84 63 75 88 93 68 75 91 93 72 71 84 90 68 74 84 85 65 74 88 93 69 78 92 93 73 4
66 79 84 63 66 75 76 63 66 79 80 63 71 84 90 68 63 81 82 64 63 81 79 64 78 92 93 73 67 88 89 69 67 84 85 62 7
66 75 76 63 66 79 80 63 66 79 88 63 63 81 82 64 63 81 79 64 67 84 86 68 67 88 89 69 67 84 85 62 63 79 85 65 7
82 87 96 78 82 96 100 78 82 96 104 78 71 88 93 72 79 99 101 79 83 103 105 83 67 84 85 69 78 97 101 83 82 102 110 87 4
82 96 100 78 82 96 104 78 82 91 96 78 79 99 101 79 83 103 105 83 83 91 101 79 78 97 101 83 82 102 110 87 78 88 101 83 4
82 91 96 78 66 71 88 74 56 53 80 66 83 91 101 79 71 63 86 75 59 54 82 75 78 88 101 83 67 67 93 80 60 60 85 80 5
56 49 80 66 56 53 73 66 70 79 84 66 59 51 79 72 56 54 75 64 67 73 82 64 57 53 82 73 57 53 78 69 67 67 78 65 5
56 53 73 66 70 79 84 66 78 83 88 70 56 54 75 64 67 73 82 64 75 84 90 68 57 53 78 69 67 67 78 65 70 79 89 65 7
74 87 84 66 78 87 84 70 74 79 84 63 75 88 97 75 75 88 97 72 75 84 93 68 74 88 93 73 78 92 97 80 78 92 97 80 7
74 79 84 63 70 83 84 66 66 87 84 70 75 84 93 68 75 91 90 75 79 88 93 75 78 92 97 80 78 92 101 83 82 97 101 83 7
56 60 73 59 59 60 76 66 59 60 80 70 56 60 75 64 52 57 75 68 56 54 82 72 50 53 82 69 53 53 82 76 50 56 82 73 5
56 56 88 74 56 53 84 74 56 53 84 78 49 54 86 75 52 54 79 75 52 51 82 75 50 53 78 69 53 53 74 69 50 53 78 65 5
56 53 84 78 52 49 88 78 56 56 88 74 52 51 82 75 52 54 90 72 52 54 79 68 50 53 78 65 50 53 82 65 53 56 74 69 5
56 56 88 74 56 63 84 66 66 75 80 63 52 54 79 68 52 57 79 64 59 70 79 60 53 56 74 69 53 53 82 73 53 56 82 69 5
59 79 88 70 59 83 96 74 63 87 92 81 63 77 82 68 59 84 90 75 63 99 110 86 60 79 82 65 60 92 101 83 67 111 114 94 1
63 87 92 81 66 104 112 89 66 104 112 92 63 99 110 86 67 108 119 98 71 112 119 94 67 111 114 94 67 111 119 94 63 111 124 94 1
66 113 117 92 66 109 122 96 66 109 117 96 67 108 119 98 67 112 119 98 71 108 119 98 67 111 119 97 67 111 119 101 67 111 119 101 1
66 109 122 100 66 113 122 100 66 113 127 100 67 108 130 101 67 112 124 98 63 112 119 98 63 111 124 97 63 111 124 101 63 111 124 101 1
66 113 122 100 66 113 127 100 66 113 122 100 67 112 124 98 63 112 119 98 63 112 130 101 63 111 124 101 63 111 124 101 63 111 124 101 1
66 113 127 100 70 118 127 100 70 113 127 100 71 112 130 101 71 112 124 101 67 112 124 101 67 115 129 101 67 120 124 97 70 115 129 101 1
70 118 127 100 70 113 127 100 70 113 122 100 71 112 124 101 67 112 124 101 67 112 124 98 67 120 124 97 70 115 129 101 70 111 119 101 1
70 113 122 100 70 118 127 100 70 113 122 96 67 112 124 98 67 112 130 101 71 108 130 101 70 111 119 101 67 111 119 94 67 111 119 97 1
70 79 84 70 66 71 73 63 63 63 66 55 67 73 79 68 67 73 79 64 63 66 68 57 63 71 82 65 70 75 85 69 67 71 74 65 7
63 67 69 55 66 71 73 55 66 71 73 59 63 66 68 57 59 70 75 57 63 66 75 60 63 67 70 58 63 71 74 58 63 71 74 58 7
75 88 90 72 71 84 93 72 75 88 90 68 74 84 93 69 70 88 89 69 74 84 89 69 76 89 94 68 72 85 90 68 72 85 86 68 4
71 84 93 72 75 88 90 68 75 88 93 68 70 88 89 69 74 84 89 69 74 84 85 65 72 85 90 68 72 85 86 68 76 85 90 68 4
71 84 90 68 63 81 82 64 63 81 79 64 78 92 93 73 67 88 89 69 67 84 85 62 76 94 94 72 76 94 94 68 68 85 82 65 4
67 84 86 68 71 84 86 64 67 81 82 64 63 79 85 65 63 75 85 65 70 84 82 65 64 81 82 61 64 77 86 65 64 77 82 65 7
67 81 82 64 67 77 82 64 71 88 93 72 70 84 82 65 67 84 82 65 67 84 85 69 64 77 82 65 64 81 78 65 68 81 82 65 7
71 88 93 72 79 99 101 79 83 103 105 83 67 84 85 69 78 97 101 83 82 102 110 87 68 81 82 65 72 89 94 72 80 102 106 87 4
83 103 105 83 83 91 101 79 71 63 86 75 82 102 110 87 78 88 101 83 67 67 93 80 80 102 106 87 76 89 98 79 68 73 90 79 5
59 54 79 72 59 51 79 72 56 54 75 64 60 56 85 80 57 53 82 73 57 53 78 69 60 55 82 76 57 55 78 72 57 55 74 61 5
59 51 79 72 56 54 75 64 67 73 82 64 57 53 82 73 57 53 78 69 67 67 78 65 57 55 78 72 57 55 74 61 64 66 78 65 5
75 88 97 75 75 88 97 72 75 84 93 68 74 88 93 73 78 92 97 80 78 92 97 80 76 89 94 76 80 98 102 76 80 98 102 76 7
75 88 97 72 75 84 93 68 75 91 90 75 78 92 97 80 78 92 97 80 78 92 101 83 80 98 102 76 80 98 102 76 80 94 102 79 7
75 91 90 75 79 88 93 75 75 88 97 72 78 92 101 83 82 97 101 83 82 92 101 76 80 94 102 79 84 98 111 83 80 98 111 83 3
75 88 97 72 75 91 101 79 79 99 105 83 82 92 101 76 78 92 105 80 82 97 105 87 80 98 111 83 80 98 106 83 84 98 111 87 7
75 91 101 79 79 99 105 83 83 99 105 83 78 92 105 80 82 97 105 87 82 97 105 83 80 98 106 83 84 98 111 87 84 102 111 87 3
79 99 105 83 83 99 105 83 79 99 105 83 82 97 105 87 82 97 105 83 78 97 105 83 84 98 111 87 84 102 111 87 84 98 106 83 3
83 99 105 83 79 99 105 83 75 91 97 68 82 97 105 83 78 97 105 83 78 88 89 69 84 102 111 87 84 98 106 83 76 85 90 61 3
49 54 86 75 52 54 79 75 52 51 82 75 50 53 78 69 53 53 74 69 50 53 78 65 57 55 74 61 53 55 82 61 50 52 74 65 5
52 54 90 72 52 54 79 68 52 57 79 64 50 53 82 65 53 56 74 69 53 53 82 73 53 52 78 68 53 52 74 68 50 52 78 65 5
52 54 79 68 52 57 79 64 59 70 79 60 53 56 74 69 53 53 82 73 53 56 82 69 53 52 74 68 50 52 78 65 53 52 78 65 5
59 84 90 75 63 99 110 86 67 108 119 98 60 92 101 83 67 111 114 94 67 111 119 94 68 106 111 91 68 111 115 98 68 111 115 98 1
63 99 110 86 67 108 119 98 71 112 119 94 67 111 114 94 67 111 119 94 63 111 124 94 68 111 115 98 68 111 115 98 64 111 125 102 1
67 112 119 98 71 108 119 98 67 112 114 98 67 111 119 101 67 111 119 101 67 115 119 101 68 111 115 98 68 111 115 98 68 115 120 98 1
71 112 124 101 67 112 124 101 67 112 124 98 67 120 124 97 70 115 129 101 70 111 119 101 72 115 120 102 68 115 120 102 68 115 120 98 1
71 108 130 101 71 108 114 90 63 88 97 75 67 111 119 97 70 111 119 97 70 97 105 87 64 111 115 98 68 111 120 102 68 106 115 94 1
67 73 79 64 63 66 68 57 63 66 68 57 70 75 85 69 67 71 74 65 63 67 70 58 72 77 82 68 72 77 78 65 68 73 71 61 7
63 66 75 60 67 70 72 60 67 70 75 57 63 71 74 58 63 67 70 58 60 67 70 55 60 69 74 54 60 69 71 57 60 62 67 57 7
74 84 93 69 70 88 89 69 74 84 89 69 76 89 94 68 72 85 90 68 72 85 86 68 76 91 96 70 76 83 96 70 71 87 87 70 4
74 84 85 65 74 88 93 69 78 92 93 73 76 85 90 68 76 85 90 68 76 94 94 72 71 87 91 70 76 83 91 67 80 87 91 70 4
78 92 93 73 67 88 89 69 67 84 85 62 76 94 94 72 76 94 94 68 68 85 82 65 80 87 91 70 80 95 91 74 71 87 87 70 4
67 84 85 62 63 79 85 65 63 75 85 65 68 85 82 65 64 81 82 61 64 77 86 65 71 87 87 70 68 83 87 63 64 83 83 67 7
70 84 82 65 67 84 82 65 67 84 85 69 64 77 82 65 64 81 78 65 68 81 82 65 68 79 83 63 68 83 83 67 68 83 83 63 7
78 88 101 83 67 67 93 80 60 60 85 80 76 89 98 79 68 73 90 79 64 66 90 79 80 95 100 81 76 83 96 81 68 75 83 81 5
57 53 78 69 67 67 78 65 70 79 89 65 57 55 74 61 64 66 78 65 72 81 86 68 60 57 75 67 64 64 83 67 71 79 91 70 5
67 67 78 65 70 79 89 65 74 88 93 73 64 66 78 65 72 81 86 68 76 89 94 76 64 64 83 67 71 79 91 70 76 87 96 74 7
78 92 105 80 82 97 105 87 82 97 105 83 80 98 106 83 84 98 111 87 84 102 111 87 80 103 108 85 80 99 108 85 84 103 108 85 3
82 97 105 83 78 97 105 83 78 88 89 69 84 102 111 87 84 98 106 83 76 85 90 61 84 103 108 85 80 99 104 81 71 83 87 59 3
50 53 78 69 53 53 74 69 50 53 78 65 57 55 74 61 53 55 82 61 50 52 74 65 53 54 75 67 53 54 79 67 56 54 75 63 5
50 53 78 65 50 53 82 65 53 56 74 69 50 52 74 65 53 52 78 68 53 52 74 68 56 54 75 63 53 51 75 59 56 51 71 59 5
53 56 82 69 57 75 82 65 63 79 89 65 53 52 78 65 53 62 78 61 60 77 82 65 53 51 75 59 53 57 75 63 56 68 87 63 5
67 111 119 94 63 111 124 94 67 111 119 97 68 111 115 98 64 111 125 102 68 111 120 98 71 112 122 96 68 112 122 99 64 112 122 99 1
67 111 119 101 67 115 119 101 67 111 119 94 68 111 115 98 68 115 120 98 68 115 125 98 64 112 122 99 64 116 122 99 64 112 128 96 1
67 115 119 101 67 111 119 94 63 111 124 97 68 115 120 98 68 115 125 98 68 115 125 98 64 116 122 99 64 112 128 96 64 112 122 96 1
67 111 119 94 63 111 124 97 63 111 124 101 68 115 125 98 68 115 125 98 60 111 125 98 64 112 128 96 64 112 122 96 60 107 122 96 1
63 111 124 97 63 111 124 101 63 111 124 101 68 115 125 98 60 111 125 98 64 106 125 98 64 112 122 96 60 107 122 96 64 107 118 99 1
63 111 124 101 63 111 124 101 67 115 129 101 64 106 125 98 64 111 120 98 64 111 125 102 64 107 118 99 64 107 122 96 68 107 122 99 1
67 120 124 97 70 115 129 101 70 111 119 101 72 115 120 102 68 115 120 102 68 115 120 98 68 116 122 99 68 116 128 99 68 116 122 99 1
60 67 70 55 63 71 70 58 60 67 67 58 60 62 67 57 64 66 64 57 64 66 67 57 60 68 67 56 64 68 67 56 60 68 67 56 7
72 85 90 68 72 85 86 68 76 85 90 68 76 83 96 70 71 87 87 70 71 87 91 70 75 83 89 71 75 87 93 71 75 87 93 67 4
72 85 86 68 76 85 90 68 76 85 90 68 71 87 87 70 71 87 91 70 76 83 91 67 75 87 93 71 75 87 93 67 79 91 93 71 4
64 81 78 65 68 81 82 65 72 89 94 72 68 83 83 67 68 83 83 63 68 83 87 67 67 79 85 67 71 79 85 67 71 79 85 62 7
68 73 90 79 64 66 90 79 60 55 82 76 76 83 96 81 68 75 83 81 64 68 83 74 79 91 96 79 79 91 96 75 75 79 89 75 5
64 66 90 79 60 55 82 76 57 55 78 72 68 75 83 81 64 68 83 74 60 61 75 70 79 91 96 75 75 79 89 75 59 64 77 71 5
57 55 74 61 64 66 78 65 72 81 86 68 60 57 75 67 64 64 83 67 71 79 91 70 55 64 81 67 67 64 85 67 71 79 89 71 5
64 66 78 65 72 81 86 68 76 89 94 76 64 64 83 67 71 79 91 70 76 87 96 74 67 64 85 67 71 79 89 71 75 83 89 71 7
80 98 102 76 80 98 102 76 80 94 102 79 80 91 100 78 80 95 104 78 80 95 104 81 75 87 89 75 79 91 96 75 79 95 100 79 7
80 98 102 76 80 94 102 79 84 98 111 83 80 95 104 78 80 95 104 81 84 99 104 85 79 91 96 75 79 95 100 79 84 103 104 87 7
80 94 102 79 84 98 111 83 80 98 111 83 80 95 104 81 84 99 104 85 84 103 108 88 79 95 100 79 84 103 104 87 79 107 109 92 3
80 98 111 83 80 98 106 83 84 98 111 87 84 103 108 88 80 103 108 85 80 99 108 85 79 107 109 92 79 107 109 87 84 107 113 87 3
76 85 90 61 57 59 64 39 53 49 71 46 71 83 87 59 56 57 63 41 53 51 67 52 71 83 81 62 55 61 63 46 51 54 67 50 5
53 55 78 68 53 52 82 72 53 52 82 68 56 57 79 63 60 54 75 59 53 54 71 59 55 54 74 58 55 54 74 62 55 58 77 58 5
57 55 74 61 53 55 82 61 50 52 74 65 53 54 75 67 53 54 79 67 56 54 75 63 55 58 70 58 55 54 74 58 55 54 74 58 5
53 52 74 68 50 52 78 65 53 52 78 65 56 51 71 59 53 51 75 59 53 51 75 59 51 54 70 62 55 51 77 67 55 54 81 71 5
53 52 78 65 53 62 78 61 60 77 82 65 53 51 75 59 53 57 75 63 56 68 87 63 55 54 81 71 51 58 81 75 55 68 89 71 5
64 81 82 68 60 77 82 65 60 89 102 79 64 79 87 67 60 83 91 74 60 99 108 88 63 87 89 71 67 91 100 79 71 103 109 87 1
60 77 82 65 60 89 102 79 68 106 111 91 60 83 91 74 60 99 108 88 68 112 118 96 67 91 100 79 71 103 109 87 71 111 113 96 1
60 89 102 79 68 106 111 91 68 111 115 98 60 99 108 88 68 112 118 96 71 107 118 96 71 103 109 87 71 111 113 96 71 111 123 100 1
64 106 125 98 64 111 120 98 64 111 125 102 64 107 118 99 64 107 122 96 68 107 122 99 67 107 118 96 71 116 118 100 71 111 123 104 1
72 115 120 102 68 115 120 102 68 115 120 98 68 116 122 99 68 116 128 99 68 116 122 99 71 111 123 104 67 111 123 100 67 111 123 96 1
68 111 120 102 68 106 115 94 64 89 98 79 68 112 122 103 71 112 122 99 68 99 108 85 71 111 118 100 71 111 123 100 71 103 118 96 1
60 62 67 57 64 66 64 57 64 66 67 57 60 68 67 56 64 68 67 56 60 68 67 56 63 64 70 58 59 64 67 54 63 68 70 58 7
76 83 96 70 71 87 87 70 71 87 91 70 75 83 89 71 75 87 93 71 75 87 93 67 78 87 88 70 78 87 92 74 74 87 96 74 4
80 87 91 70 80 95 91 74 71 87 87 70 79 91 96 71 75 91 93 71 75 87 96 71 78 87 96 70 78 91 88 70 78 87 88 70 4
80 95 91 74 71 87 87 70 68 83 87 63 75 91 93 71 75 87 96 71 71 83 93 67 78 91 88 70 78 87 88 70 78 96 92 74 4
71 87 87 70 68 83 87 63 64 83 83 67 75 87 96 71 71 83 93 67 67 79 85 62 78 87 88 70 78 96 92 74 74 87 88 70 4
64 83 83 67 68 79 83 63 68 83 83 67 67 79 85 62 63 75 85 62 67 79 85 67 74 87 88 70 66 79 80 66 63 83 80 63 7
64 68 83 74 60 61 75 70 60 57 75 67 75 79 89 75 59 64 77 71 55 64 81 67 82 91 100 78 74 83 92 74 63 67 80 70 5
71 79 91 70 76 87 96 74 80 91 100 78 71 79 89 71 75 83 89 71 75 87 89 75 66 63 84 66 70 75 88 70 74 79 88 74 7
84 103 108 88 80 103 108 85 80 99 108 85 79 107 109 92 79 107 109 87 84 107 113 87 86 100 108 81 82 104 112 89 82 104 112 89 3
84 103 108 85 80 99 104 81 71 83 87 59 79 107 104 87 84 99 104 83 71 83 81 62 82 104 112 89 82 100 104 89 78 96 104 81 3
80 99 104 81 71 83 87 59 56 57 63 41 84 99 104 83 71 83 81 62 55 61 63 46 82 100 104 89 78 96 104 81 66 79 76 59 3
71 83 87 59 56 57 63 41 53 51 67 52 71 83 81 62 55 61 63 46 51 54 67 50 78 96 104 81 66 79 76 59 59 56 66 44 5
56 57 63 41 53 51 67 52 53 54 75 59 55 61 63 46 51 54 67 50 55 58 70 58 66 79 76 59 59 56 66 44 52 53 69 52 5
53 51 67 52 53 54 75 59 56 57 79 63 51 54 67 50 55 58 70 58 55 54 74 58 59 56 66 44 52 53 69 52 56 56 69 59 5
56 57 79 63 60 54 75 59 53 54 71 59 55 54 74 58 55 54 74 62 55 58 77 58 56 56 69 59 52 56 73 59 56 56 73 59 5
53 54 71 59 56 57 75 59 53 57 79 63 55 58 77 58 51 54 74 58 55 54 70 58 56 56 73 59 52 60 73 59 56 56 69 55 5
56 54 75 63 53 51 75 59 56 51 71 59 55 54 74 58 55 54 70 58 51 54 70 62 52 53 69 59 56 53 76 59 52 53 73 63 5
56 51 71 59 53 51 75 59 53 51 75 59 51 54 70 62 55 51 77 67 55 54 81 71 52 53 73 63 52 56 73 66 56 56 84 78 5
53 51 75 59 53 57 75 63 56 68 87 63 55 54 81 71 51 58 81 75 55 68 89 71 56 56 84 78 56 63 88 78 59 71 88 78 5
60 99 108 88 68 112 118 96 71 107 118 96 71 103 109 87 71 111 113 96 71 111 123 100 63 91 100 78 66 104 108 89 70 113 122 96 1
64 107 122 96 68 107 122 99 68 116 122 99 71 116 118 100 71 111 123 104 71 111 123 104 66 104 117 96 70 109 122 100 66 113 127 103 1
68 116 122 99 68 116 128 99 68 116 122 99 71 111 123 104 67 111 123 100 67 111 123 96 66 113 127 103 66 113 122 103 66 109 117 96 1
68 75 79 63 60 68 67 52 60 61 67 56 67 75 77 62 63 68 70 54 63 64 67 54 66 71 80 70 66 75 80 66 70 75 73 59 7
60 61 67 56 64 64 71 56 60 68 67 56 63 64 67 54 63 68 70 54 63 64 70 58 70 75 73 59 63 67 66 55 63 67 66 55 7
64 64 71 56 60 68 67 56 64 68 67 56 63 68 70 54 63 64 70 58 59 64 67 54 63 67 66 55 63 67 66 55 63 67 73 55 7
75 83 89 71 75 87 93 71 75 87 93 67 78 87 88 70 78 87 92 74 74 87 96 74 79 88 97 72 79 88 93 72 75 91 97 72 4
75 91 93 71 75 87 96 71 71 83 93 67 78 91 88 70 78 87 88 70 78 96 92 74 79 95 93 72 79 91 90 68 79 88 90 72 4
67 79 85 62 63 75 85 62 67 79 85 67 74 87 88 70 66 79 80 66 63 83 80 63 79 88 93 72 71 84 86 68 67 81 86 64 7
55 64 81 67 67 64 85 67 71 79 89 71 63 67 80 70 59 63 73 66 66 63 84 66 75 81 86 75 63 66 79 68 63 57 75 68 5
67 64 85 67 71 79 89 71 75 83 89 71 59 63 73 66 66 63 84 66 70 75 88 70 63 66 79 68 63 57 75 68 67 73 82 72 5
75 83 89 71 75 87 89 75 79 91 96 75 70 75 88 70 74 79 88 74 74 87 96 70 67 73 82 72 71 84 86 75 75 81 90 68 7
75 87 89 75 79 91 96 75 79 95 100 79 74 79 88 74 74 87 96 70 78 91 100 78 71 84 86 75 75 81 90 68 75 81 93 68 7
79 107 109 87 84 107 113 87 79 107 104 87 82 104 112 89 82 104 112 89 82 104 112 89 79 95 105 83 83 103 110 86 83 99 110 86 3
84 107 113 87 79 107 104 87 84 99 104 83 82 104 112 89 82 104 112 89 82 100 104 89 83 103 110 86 83 99 110 86 79 95 105 86 3
84 99 104 83 71 83 81 62 55 61 63 46 82 100 104 89 78 96 104 81 66 79 76 59 79 95 105 86 79 95 105 83 75 84 90 68 3
51 54 67 50 55 58 70 58 55 54 74 58 59 56 66 44 52 53 69 52 56 56 69 59 63 66 68 49 56 54 65 49 56 54 68 53 5
55 54 74 58 55 54 70 58 51 54 70 62 52 53 69 59 56 53 76 59 52 53 73 63 59 57 82 68 59 60 86 75 59 60 93 79 5
51 58 81 75 55 68 89 71 63 87 89 71 56 63 88 78 59 71 88 78 63 87 92 78 75 91 105 86 79 103 110 90 71 103 110 86 5
71 111 113 96 71 111 123 100 71 107 123 100 66 104 108 89 70 113 122 96 70 113 122 96 67 99 110 86 71 112 119 98 71 108 119 98 1
71 111 123 100 67 111 123 100 67 107 118 96 70 118 117 100 66 113 122 100 66 109 122 96 67 108 119 98 63 112 114 98 63 108 119 98 1
67 111 123 100 67 107 118 96 67 107 123 100 66 113 122 100 66 109 122 96 63 113 122 96 63 112 114 98 63 108 119 98 63 112 119 94 1
71 111 123 104 67 111 123 100 67 111 123 96 66 113 127 103 66 113 122 103 66 109 117 96 67 108 124 98 63 108 124 98 67 108 119 98 1
67 111 123 96 71 107 118 96 71 107 118 96 66 109 117 96 66 109 122 96 66 104 122 96 67 108 119 98 63 108 119 98 63 108 119 98 1
71 103 118 96 67 87 100 79 59 83 89 75 70 113 122 103 66 109 122 96 63 96 104 89 63 112 124 98 67 108 119 98 63 99 110 94 1
67 87 100 79 59 83 89 75 63 83 85 71 66 109 122 96 63 96 104 89 63 83 88 78 67 108 119 98 63 99 110 94 63 88 101 79 1
63 64 70 58 59 64 67 54 63 68 70 58 63 67 66 55 63 67 73 55 63 67 69 59 59 66 65 60 67 70 75 60 67 66 72 57 7
63 68 70 58 63 64 70 58 63 61 63 54 63 67 69 59 63 67 69 55 59 63 69 55 67 66 72 57 63 66 68 57 63 63 68 53 7
78 87 92 74 78 87 88 70 78 87 88 70 75 88 90 72 75 91 97 72 79 88 97 72 74 88 93 73 78 88 97 69 78 92 97 73 4
78 91 88 70 78 87 88 70 78 96 92 74 79 95 93 72 79 91 90 68 79 88 90 72 82 84 89 73 78 84 89 69 78 88 89 69 4
78 87 88 70 78 96 92 74 74 87 88 70 79 91 90 68 79 88 90 72 79 88 93 72 78 84 89 69 78 88 89 69 78 88 89 73 4
74 87 88 70 66 79 80 66 63 83 80 63 79 88 93 72 71 84 86 68 67 81 86 64 78 88 89 73 78 88 93 73 70 79 93 65 4
66 79 80 63 66 83 84 63 70 83 84 66 67 81 82 64 67 77 86 64 67 81 82 64 67 84 85 62 67 79 82 65 67 84 89 65 7
82 91 100 78 74 83 92 74 63 67 80 70 79 95 101 79 75 88 97 79 75 81 86 75 78 88 93 76 74 79 89 73 67 75 89 73 4
74 83 92 74 63 67 80 70 59 63 73 66 75 88 97 79 75 81 86 75 63 66 79 68 74 79 89 73 67 75 89 73 60 67 78 62 4
63 67 80 70 59 63 73 66 66 63 84 66 75 81 86 75 63 66 79 68 63 57 75 68 67 75 89 73 60 67 78 62 53 49 78 58 5
74 87 96 70 78 91 100 78 86 91 96 81 75 81 90 68 75 81 93 68 75 84 90 72 70 79 85 73 70 79 85 65 70 79 85 69 7
78 91 100 78 86 91 96 81 86 100 108 81 75 81 93 68 75 84 90 72 75 84 90 75 70 79 85 65 70 79 85 69 70 84 89 69 7
82 104 112 89 82 104 112 89 82 104 112 89 79 95 105 83 83 103 110 86 83 99 110 86 78 92 97 80 82 106 114 87 85 111 114 90 3
82 104 112 89 82 104 112 89 82 100 104 89 83 103 110 86 83 99 110 86 79 95 105 86 82 106 114 87 85 111 114 90 85 106 114 94 3
82 100 104 89 78 96 104 81 66 79 76 59 79 95 105 86 79 95 105 83 75 84 90 68 85 106 114 94 82 102 114 90 74 92 97 80 3
59 56 66 44 52 53 69 52 56 56 69 59 63 66 68 49 56 54 65 49 56 54 68 53 70 79 82 65 60 63 74 55 57 60 70 55 5
52 56 73 59 56 56 73 59 52 60 73 59 56 57 72 57 56 57 72 57 56 57 75 57 60 63 78 62 60 71 85 69 60 63 82 69 5
56 56 73 59 52 60 73 59 56 56 69 55 56 57 72 57 56 57 75 57 56 54 72 57 60 71 85 69 60 63 82 69 60 56 78 69 5
52 56 73 66 56 56 84 78 56 63 88 78 63 70 97 83 67 77 97 83 75 91 105 86 89 106 114 94 93 115 124 97 93 120 124 104 5
59 71 88 78 63 87 92 78 63 87 96 74 79 103 110 90 71 103 110 86 67 99 101 83 82 120 124 101 70 111 119 94 67 106 114 90 1
63 91 100 78 66 104 108 89 70 113 122 96 75 99 101 79 67 99 110 86 71 112 119 98 63 92 105 80 63 88 105 83 67 97 110 87 1
63 104 117 96 63 109 112 92 66 104 117 96 63 103 119 94 67 103 119 94 63 103 114 94 63 102 114 94 67 106 114 97 63 102 114 90 1
63 109 112 92 66 104 117 96 70 109 122 100 67 103 119 94 63 103 114 94 67 108 119 98 67 106 114 97 63 102 114 90 63 106 119 94 1
66 104 117 96 70 109 122 100 66 113 127 103 63 103 114 94 67 108 119 98 67 108 124 98 63 102 114 90 63 106 119 94 63 106 119 97 1
70 109 122 100 66 113 127 103 66 113 122 103 67 108 119 98 67 108 124 98 63 108 124 98 63 106 119 94 63 106 119 97 63 111 124 97 1
63 67 66 55 63 67 66 55 63 67 73 55 67 70 72 57 59 66 65 60 67 70 75 60 67 75 82 69 60 71 74 58 63 71 74 58 7
63 67 73 55 63 67 69 59 63 67 69 55 67 70 75 60 67 66 72 57 63 66 68 57 63 71 74 58 67 71 74 62 63 71 74 58 7
79 88 93 68 79 95 93 72 79 91 90 68 74 84 97 69 82 84 89 73 78 84 89 69 76 85 86 68 76 85 90 68 76 89 86 68 4
79 95 93 72 79 91 90 68 79 88 90 72 82 84 89 73 78 84 89 69 78 88 89 69 76 85 90 68 76 89 86 68 80 85 86 68 4
79 91 90 68 79 88 90 72 79 88 93 72 78 84 89 69 78 88 89 69 78 88 89 73 76 89 86 68 80 85 86 68 76 85 90 68 4
67 81 86 64 67 81 86 64 67 81 82 64 70 79 93 65 70 79 85 62 67 84 85 62 76 85 94 68 68 77 82 65 68 77 86 65 7
67 81 82 64 67 77 86 64 67 81 82 64 67 84 85 62 67 79 82 65 67 84 89 65 68 77 86 65 72 81 86 68 72 81 86 65 7
67 77 86 64 67 81 82 64 67 84 82 68 67 79 82 65 67 84 89 65 67 75 82 62 72 81 86 68 72 81 86 65 68 77 82 65 7
75 88 97 79 75 81 86 75 63 66 79 68 74 79 89 73 67 75 89 73 60 67 78 62 72 81 90 76 68 77 86 68 60 62 74 57 7
67 73 82 72 71 84 86 75 75 81 90 68 60 60 78 65 67 75 85 73 70 79 85 73 64 69 86 72 76 85 94 76 72 89 94 72 7
83 103 110 86 83 99 110 86 79 95 105 86 82 106 114 87 85 111 114 90 85 106 114 94 80 102 111 87 80 106 115 94 84 111 115 94 3
75 84 90 68 63 66 68 49 56 54 65 49 74 92 97 80 70 79 82 65 60 63 74 55 84 102 111 87 80 94 102 83 76 89 90 68 5
56 54 65 49 56 54 68 53 56 57 72 57 60 63 74 55 57 60 70 55 60 63 78 62 76 89 90 68 64 73 71 54 60 66 74 61 5
56 54 68 53 56 57 72 57 56 57 72 57 57 60 70 55 60 63 78 62 60 71 85 69 64 73 71 54 60 66 74 61 60 69 86 76 5
56 57 72 57 56 57 72 57 56 57 75 57 60 63 78 62 60 71 85 69 60 63 82 69 60 66 74 61 60 69 86 76 60 66 98 83 5
56 57 75 57 56 54 72 57 59 54 79 60 60 63 82 69 60 56 78 69 60 60 93 80 60 66 98 83 64 69 98 87 72 81 102 87 5
59 60 86 75 59 60 93 79 63 70 97 83 70 84 101 87 82 92 105 90 89 106 114 94 92 115 120 102 97 115 125 102 92 106 115 91 3
63 70 97 83 67 77 97 83 75 91 105 86 89 106 114 94 93 115 124 97 93 120 124 104 92 106 115 91 80 106 106 91 80 111 120 98 3
79 103 110 90 71 103 110 86 67 99 101 83 82 120 124 101 70 111 119 94 67 106 114 90 76 111 115 94 68 106 115 91 68 102 115 91 1
71 108 119 98 67 108 119 98 63 112 114 98 67 111 114 94 67 106 119 97 67 106 114 94 64 98 106 91 64 106 115 94 64 106 115 94 1
63 103 114 94 63 103 119 90 63 103 119 94 63 102 119 94 63 102 119 94 63 102 114 94 64 102 115 94 64 106 120 94 68 106 115 94 1
63 103 119 90 63 103 119 94 67 103 119 94 63 102 119 94 63 102 114 94 67 106 114 97 64 106 120 94 68 106 115 94 64 102 115 94 1
63 103 114 94 67 108 119 98 67 108 124 98 63 102 114 90 63 106 119 94 63 106 119 97 64 102 115 94 64 106 120 94 64 111 125 102 1
67 108 119 98 67 108 124 98 63 108 124 98 63 106 119 94 63 106 119 97 63 111 124 97 64 106 120 94 64 111 125 102 68 111 125 102 1
67 108 124 98 63 108 124 98 67 108 119 98 63 106 119 97 63 111 124 97 63 111 119 101 64 111 125 102 68 111 125 102 68 106 120 98 1
74 88 93 73 78 88 97 69 78 92 97 73 72 89 94 72 76 89 94 72 80 94 94 72 80 87 96 70 80 91 96 70 80 91 96 74 4
78 92 97 73 78 92 93 73 82 88 97 69 80 94 94 72 80 94 94 76 80 94 94 72 80 91 96 74 76 95 91 74 80 91 96 70 4
82 88 97 69 74 88 93 73 74 84 97 69 80 94 94 72 80 89 94 72 76 85 86 68 80 91 96 70 76 91 91 70 71 87 91 70 4
74 88 93 73 74 84 97 69 82 84 89 73 80 89 94 72 76 85 86 68 76 85 90 68 76 91 91 70 71 87 91 70 71 87 87 70 4
74 84 97 69 82 84 89 73 78 84 89 69 76 85 86 68 76 85 90 68 76 89 86 68 71 87 91 70 71 87 87 70 76 87 91 70 4
78 84 89 69 78 88 89 69 78 88 89 73 76 89 86 68 80 85 86 68 76 85 90 68 76 87 91 70 76 87 87 70 76 87 91 63 4
78 88 89 73 78 88 93 73 70 79 93 65 76 85 90 68 80 89 94 72 76 85 94 68 76 87 91 63 80 91 91 67 76 87 91 70 4
70 79 93 65 70 79 85 62 67 84 85 62 76 85 94 68 68 77 82 65 68 77 86 65 76 87 91 70 71 83 87 67 68 83 83 63 7
70 79 85 62 67 84 85 62 67 79 82 65 68 77 82 65 68 77 86 65 72 81 86 68 71 83 87 67 68 83 83 63 68 79 87 63 7
67 84 89 65 67 75 82 62 70 84 85 69 72 81 86 65 68 77 82 65 64 73 78 57 68 79 83 63 68 79 83 67 68 75 83 59 7
67 75 82 62 70 84 85 69 78 88 93 76 68 77 82 65 64 73 78 57 68 81 78 68 68 79 83 67 68 75 83 59 64 71 79 63 7
78 88 93 76 74 79 89 73 67 75 89 73 68 81 78 68 72 81 90 76 68 77 86 68 64 71 79 63 71 79 87 70 71 75 87 70 4
74 79 89 73 67 75 89 73 60 67 78 62 72 81 90 76 68 77 86 68 60 62 74 57 71 79 87 70 71 75 87 70 64 61 75 52 7
67 75 89 73 60 67 78 62 53 49 78 58 68 77 86 68 60 62 74 57 53 49 74 57 71 75 87 70 64 61 75 52 60 54 75 59 5
60 67 78 62 53 49 78 58 60 60 78 65 60 62 74 57 53 49 74 57 64 69 86 72 64 61 75 52 60 54 75 59 71 79 91 78 5
82 106 114 87 85 111 114 90 85 106 114 94 80 102 111 87 80 106 115 94 84 111 115 94 80 103 113 88 84 103 113 88 84 103 113 92 3
70 79 82 65 60 63 74 55 57 60 70 55 80 94 102 83 76 89 90 68 64 73 71 54 88 107 118 92 84 103 108 88 71 75 83 59 3
60 63 74 55 57 60 70 55 60 63 78 62 76 89 90 68 64 73 71 54 60 66 74 61 84 103 108 88 71 75 83 59 60 68 71 59 5
57 60 70 55 60 63 78 62 60 71 85 69 64 73 71 54 60 66 74 61 60 69 86 76 71 75 83 59 60 68 71 59 64 75 91 78 5
60 63 78 62 60 71 85 69 60 63 82 69 60 66 74 61 60 69 86 76 60 66 98 83 60 68 71 59 64 75 91 78 71 87 100 81 5
63 92 105 80 63 88 105 83 67 97 110 87 64 89 102 79 60 85 94 79 64 89 98 83 64 99 104 85 56 91 104 81 60 95 113 88 1
63 102 114 90 63 102 119 94 63 102 119 94 64 102 115 94 64 102 115 94 64 106 120 94 64 107 113 96 64 107 122 92 64 107 113 92 1
63 102 119 94 63 102 114 94 67 106 114 97 64 106 120 94 68 106 115 94 64 102 115 94 64 107 113 92 64 103 113 92 64 103 118 96 1
63 106 119 94 63 106 119 97 63 111 124 97 64 106 120 94 64 111 125 102 68 111 125 102 64 107 118 96 68 112 122 96 68 112 122 99 1
67 111 114 101 67 106 114 90 63 97 97 83 72 111 120 98 72 111 111 98 68 102 106 87 71 112 128 99 71 112 122 96 76 112 118 96 1
67 106 114 90 63 97 97 83 60 84 89 73 72 111 111 98 68 102 106 87 68 89 102 79 71 112 122 96 76 112 118 96 68 99 113 85 1
63 71 74 58 67 71 74 62 63 71 74 58 64 73 71 57 64 77 74 61 64 73 74 61 68 75 83 63 64 71 75 63 71 75 79 63 7
76 89 94 72 80 94 94 72 80 94 94 76 80 91 96 70 80 91 96 74 76 95 91 74 79 91 96 75 79 87 93 71 75 91 96 75 4
80 94 94 72 80 89 94 72 76 85 86 68 80 91 96 70 76 91 91 70 71 87 91 70 79 87 96 71 75 87 93 71 75 87 89 67 4
80 89 94 72 76 85 86 68 76 85 90 68 76 91 91 70 71 87 91 70 71 87 87 70 75 87 93 71 75 87 89 67 71 87 89 67 4
76 85 90 68 80 89 94 72 76 85 94 68 76 87 91 63 80 91 91 67 76 87 91 70 75 87 89 67 75 87 85 67 75 87 89 67 4
76 85 94 68 68 77 82 65 68 77 86 65 76 87 91 70 71 83 87 67 68 83 83 63 75 87 89 67 71 87 89 67 67 79 85 67 4
68 77 82 65 68 77 86 65 72 81 86 68 71 83 87 67 68 83 83 63 68 79 87 63 71 87 89 67 67 79 85 67 67 79 81 62 7
68 77 86 65 72 81 86 68 72 81 86 65 68 83 83 63 68 79 87 63 68 79 83 63 67 79 85 67 67 79 81 62 67 79 81 67 7
68 77 86 68 60 62 74 57 53 49 74 57 71 75 87 70 64 61 75 52 60 54 75 59 71 75 81 71 63 61 74 54 59 54 77 54 5
53 49 74 57 64 69 86 72 76 85 94 76 60 54 75 59 71 79 91 78 80 99 104 78 59 54 77 54 71 79 93 75 84 99 109 83 5
76 85 94 76 72 89 94 72 76 85 86 68 80 99 104 78 84 95 100 78 76 87 91 70 84 99 109 83 79 91 104 75 75 87 89 75 7
72 89 94 72 76 85 86 68 72 85 86 72 84 95 100 78 76 87 91 70 76 91 96 74 79 91 104 75 75 87 89 75 79 91 96 75 7
72 94 98 76 80 98 106 83 80 102 111 87 76 99 104 85 80 103 113 88 80 103 113 88 84 103 109 83 88 107 113 92 88 107 113 92 3
80 98 106 83 80 102 111 87 80 106 115 94 80 103 113 88 80 103 113 88 84 103 113 88 88 107 113 92 88 107 113 92 88 107 113 92 3
80 102 111 87 80 106 115 94 84 111 115 94 80 103 113 88 84 103 113 88 84 103 113 92 88 107 113 92 88 107 113 92 88 107 118 96 3
80 106 115 94 84 111 115 94 84 106 115 91 84 103 113 88 84 103 113 92 88 103 113 96 88 107 113 92 88 107 118 96 88 107 113 92 3
84 111 115 94 84 106 115 91 84 102 111 87 84 103 113 92 88 103 113 96 88 107 113 92 88 107 118 96 88 107 113 92 88 107 118 92 3
60 69 86 76 60 66 98 83 64 69 98 87 64 75 91 78 71 87 100 81 80 99 108 88 75 99 109 83 75 107 113 92 75 103 113 96 5
80 94 111 91 84 106 111 91 92 115 120 102 84 112 118 96 92 116 128 103 97 121 128 103 75 99 113 92 75 107 113 92 79 111 123 100 3
76 111 115 94 68 106 115 91 68 102 115 91 71 95 108 88 71 103 113 92 68 107 118 92 71 103 118 92 71 107 118 96 71 107 118 96 1
68 102 115 91 64 89 102 79 60 85 94 79 68 107 118 92 64 99 104 85 56 91 104 81 71 107 118 96 63 107 113 92 63 99 113 87 1
64 89 98 83 64 98 106 91 64 106 115 94 60 95 113 88 64 95 104 88 64 103 113 92 63 103 113 92 63 103 113 92 63 103 113 87 1
68 106 115 94 64 102 115 94 64 102 115 94 64 103 113 92 64 103 118 96 64 103 118 99 67 99 109 92 67 99 118 92 71 111 118 96 1
64 102 115 94 64 106 120 94 64 111 125 102 64 103 118 99 64 107 118 96 68 112 122 96 71 111 118 96 67 107 118 96 63 107 123 100 1
68 111 125 102 68 106 120 98 64 111 125 98 68 112 122 99 64 103 118 96 64 107 122 99 63 107 118 100 67 111 118 100 67 111 123 100 1
64 111 125 98 64 102 115 98 64 111 120 98 64 107 122 99 64 107 118 96 64 107 118 99 67 111 123 100 67 111 118 96 67 107 118 96 1
68 111 120 98 68 111 131 102 72 111 120 98 68 112 122 99 68 107 128 96 71 112 128 99 67 111 113 100 67 111 118 96 71 111 118 96 1
68 102 106 87 68 89 102 79 64 85 90 72 76 112 118 96 68 99 113 85 68 91 96 78 75 111 118 100 71 107 118 96 67 99 109 83 1
64 77 74 61 64 73 74 61 64 66 71 57 64 71 75 63 71 75 79 63 68 71 71 56 71 79 77 62 67 75 77 62 67 72 77 58 7
80 91 96 74 76 95 91 74 80 91 96 70 79 87 93 71 75 91 96 75 79 87 96 71 78 87 96 70 74 87 92 70 74 91 92 70 4
76 95 91 74 80 91 96 70 76 91 91 70 75 91 96 75 79 87 96 71 75 87 93 71 74 87 92 70 74 91 92 70 74 87 92 66 4
80 91 96 70 76 91 91 70 71 87 91 70 79 87 96 71 75 87 93 71 75 87 89 67 74 91 92 70 74 87 92 66 74 87 92 66 4
76 87 91 63 80 91 91 67 76 87 91 70 75 87 89 67 75 87 85 67 75 87 89 67 74 83 88 66 66 79 80 63 66 79 76 59 4
60 54 75 59 71 79 91 78 80 99 104 78 59 54 77 54 71 79 93 75 84 99 109 83 63 56 76 55 63 60 80 59 78 83 100 78 5
88 107 113 92 88 107 118 92 84 103 108 88 88 107 118 92 88 111 118 100 88 116 123 100 86 104 112 89 86 104 112 92 86 113 122 100 3
71 75 83 59 60 68 71 59 64 75 91 78 84 99 104 79 71 91 93 71 75 99 109 83 86 118 122 100 82 109 112 92 78 109 112 92 3
80 99 108 88 84 107 118 96 84 112 118 96 75 103 113 96 75 99 109 96 75 99 113 92 70 100 112 92 66 96 108 92 63 87 100 81 1
84 107 118 96 84 112 118 96 92 116 128 103 75 99 109 96 75 99 113 92 75 107 113 92 66 96 108 92 63 87 100 81 63 87 104 81 1
84 112 118 96 92 116 128 103 97 121 128 103 75 99 113 92 75 107 113 92 79 111 123 100 63 87 100 81 63 87 104 81 63 96 104 89 1
88 116 122 96 92 103 108 81 80 87 96 81 79 107 118 92 75 107 113 92 71 103 113 96 66 100 108 92 63 100 117 96 66 104 117 96 1
64 99 104 85 56 91 104 81 60 95 113 88 63 107 113 92 63 99 113 87 63 103 113 92 63 104 117 92 63 100 112 92 63 104 112 92 1
64 107 113 92 64 103 113 92 64 103 118 96 67 103 118 96 67 99 109 92 67 99 118 92 66 104 108 96 66 104 117 92 66 100 108 89 1
64 107 118 96 68 112 122 96 68 112 122 99 67 107 118 96 63 107 123 100 63 107 118 100 63 109 122 96 63 100 117 96 66 109 122 100 1
68 112 122 99 64 103 118 96 64 107 122 99 63 107 118 100 67 111 118 100 67 111 123 100 66 109 122 100 66 109 122 100 66 109 117 96 1
64 103 118 96 64 107 122 99 64 107 118 96 67 111 118 100 67 111 123 100 67 111 118 96 66 109 122 100 66 109 117 96 66 113 117 96 1
68 107 122 96 68 112 122 99 68 107 128 96 71 107 118 96 67 111 113 100 67 111 118 96 66 113 117 96 70 109 122 100 66 109 122 96 1
68 112 122 99 68 107 128 96 71 112 128 99 67 111 113 100 67 111 118 96 71 111 118 96 70 109 122 100 66 109 122 96 70 113 127 96 1
68 107 128 96 71 112 128 99 71 112 122 96 67 111 118 96 71 111 118 96 71 111 118 100 66 109 122 96 70 113 127 96 70 113 117 96 1
71 112 128 99 71 112 122 96 76 112 118 96 71 111 118 96 71 111 118 100 75 111 118 100 70 113 127 96 70 113 117 96 74 113 117 96 1
79 91 96 71 79 91 96 75 79 87 93 71 74 87 92 70 78 87 96 70 78 87 96 70 71 88 93 68 75 84 93 68 75 84 90 68 4
79 91 96 75 79 87 93 71 75 91 96 75 78 87 96 70 78 87 96 70 74 87 92 70 75 84 93 68 75 84 90 68 75 84 90 68 4
75 87 93 71 75 87 89 67 71 87 89 67 74 87 92 66 74 87 92 66 74 83 88 66 71 81 82 64 67 73 82 60 67 73 79 57 4
75 87 89 67 71 87 89 67 75 83 89 67 74 87 92 66 74 83 88 66 70 83 84 70 67 73 82 60 67 73 79 57 63 73 72 57 4
75 83 89 67 75 87 89 67 75 87 89 67 70 83 84 70 74 83 84 66 74 83 88 66 63 73 72 57 67 73 79 60 71 81 86 64 4
71 87 89 67 67 79 85 67 67 79 81 62 70 79 88 63 74 87 88 70 70 83 84 66 63 73 75 57 67 84 79 68 71 91 90 72 7
67 68 74 54 67 72 77 62 71 75 81 71 70 75 76 59 66 71 73 55 63 75 80 59 71 77 86 64 71 77 86 64 71 81 86 68 7
67 72 77 62 71 75 81 71 63 61 74 54 66 71 73 55 63 75 80 59 70 75 84 66 71 77 86 64 71 81 86 68 75 81 86 68 7
75 87 89 75 79 91 96 75 84 103 109 83 82 91 96 78 78 91 96 78 82 104 112 85 87 95 97 79 83 99 105 86 87 112 114 94 7
88 107 113 92 88 107 113 92 88 107 118 96 90 113 127 96 90 109 117 96 95 109 117 96 92 117 130 101 96 112 124 98 92 108 114 94 3
88 107 118 92 88 111 118 100 88 116 123 100 86 104 112 89 86 104 112 92 86 113 122 100 83 103 114 90 83 112 124 94 87 112 119 98 3
88 111 118 100 88 116 123 100 84 99 104 79 86 104 112 92 86 113 122 100 86 118 122 100 83 112 124 94 87 112 119 98 79 103 114 90 3
75 107 113 92 75 103 113 96 75 99 109 96 74 100 112 92 70 100 112 92 66 96 108 92 63 95 110 90 63 91 105 90 59 91 105 86 1
75 99 109 96 75 99 113 92 75 107 113 92 66 96 108 92 63 87 100 81 63 87 104 81 59 91 105 86 59 91 101 86 59 95 110 90 1
71 103 113 96 71 107 113 92 71 103 118 92 66 104 117 96 66 104 112 92 66 109 117 92 59 103 119 94 63 103 114 94 63 103 110 90 1
71 107 113 92 71 103 118 92 71 107 118 96 66 104 112 92 66 109 117 92 70 104 117 92 63 103 114 94 63 103 110 90 59 99 110 90 1
71 107 118 96 63 107 113 92 63 99 113 87 66 104 122 92 63 104 117 92 63 100 112 92 59 95 110 90 59 91 105 86 59 88 110 86 1
63 99 113 87 63 103 113 92 63 103 113 92 63 100 112 92 63 104 112 92 63 104 112 92 59 88 110 86 59 88 110 90 59 99 114 90 1
67 103 118 96 67 99 109 92 67 99 118 92 66 104 108 96 66 104 117 92 66 100 108 89 63 91 101 79 63 95 105 83 67 95 101 83 1
67 99 118 92 71 111 118 96 67 107 118 96 66 100 108 89 63 100 112 92 63 109 122 96 67 95 101 83 67 95 101 86 67 99 114 86 1
67 111 118 96 67 107 118 96 71 107 118 96 66 113 117 96 66 113 122 96 66 113 117 96 67 103 114 94 63 108 119 94 63 112 114 94 1
71 111 118 96 71 111 118 100 75 111 118 100 70 113 127 96 70 113 117 96 74 113 117 96 67 112 119 98 67 108 119 98 71 108 114 98 1
71 107 118 96 67 99 109 83 63 87 89 75 74 113 122 100 70 109 112 96 66 100 108 85 71 112 119 98 67 112 119 98 67 103 110 90 1
67 99 109 83 63 87 89 75 63 79 89 71 70 109 112 96 66 100 108 85 63 87 88 74 67 112 119 98 67 103 110 90 63 88 97 79 1
78 87 96 70 78 87 96 70 74 87 92 70 75 84 93 68 75 84 90 68 75 84 90 68 74 84 85 65 70 79 82 62 67 75 78 58 4
74 91 92 70 74 87 92 66 74 87 92 66 75 84 82 68 71 81 82 64 67 73 82 60 63 75 78 55 63 71 74 55 63 67 82 58 4
74 87 92 66 74 87 92 66 74 83 88 66 71 81 82 64 67 73 82 60 67 73 79 57 63 71 74 55 63 67 82 58 63 71 74 58 7
70 83 84 70 74 83 84 66 74 83 88 66 63 73 72 57 67 73 79 60 71 81 86 64 63 71 74 58 63 71 74 58 67 75 78 58 7
70 79 88 63 74 87 88 70 70 83 84 66 63 73 75 57 67 84 79 68 71 91 90 72 60 71 70 58 63 75 74 62 67 84 85 69 7
70 83 84 66 66 75 80 63 70 79 76 63 71 91 90 72 67 84 90 64 67 81 82 64 67 84 85 69 70 88 93 73 74 88 89 73 7
66 75 80 63 70 79 76 63 70 79 84 66 67 84 90 64 67 81 82 64 67 81 82 64 70 88 93 73 74 88 89 73 78 92 97 80 7
70 79 76 63 70 79 84 66 70 75 76 59 67 81 82 64 67 81 82 64 71 77 86 64 74 88 89 73 78 92 97 80 82 97 97 80 7
70 75 84 66 63 56 76 55 63 60 80 59 75 81 86 68 63 63 79 57 63 70 86 72 78 92 97 76 67 71 78 62 74 79 89 73 5
63 60 80 59 78 83 100 78 82 96 104 85 63 70 86 72 79 91 101 83 83 91 101 83 74 79 89 73 78 92 97 87 78 97 101 83 7
90 109 117 96 95 109 117 96 90 109 117 92 96 112 124 98 92 108 114 94 87 99 105 90 93 115 124 101 89 106 114 94 85 106 114 94 3
90 109 117 92 86 104 112 89 86 104 112 92 87 99 105 90 83 103 114 90 83 112 124 94 85 106 114 94 78 115 114 97 78 111 119 94 3
82 109 112 92 78 109 112 92 74 100 112 92 71 95 110 90 67 99 114 94 63 95 110 90 63 97 105 87 60 97 110 90 60 102 114 90 1
74 100 112 92 70 100 112 92 66 96 108 92 63 95 110 90 63 91 105 90 59 91 105 86 60 102 114 90 57 92 110 87 57 88 101 87 1
63 96 104 89 66 100 108 92 63 100 117 96 59 99 114 90 59 99 114 90 59 95 119 90 60 88 110 83 57 92 110 87 57 97 110 87 1
63 104 112 92 59 104 112 92 59 100 104 81 59 99 114 90 63 99 114 90 63 99 110 86 60 97 119 94 63 111 119 97 63 106 119 90 1
59 104 112 92 59 100 104 81 59 96 104 81 63 99 114 90 63 99 110 86 59 95 105 86 63 111 119 97 63 106 119 90 60 97 114 94 1
59 100 104 81 59 96 104 81 63 91 108 89 63 99 110 86 59 95 105 86 63 99 101 86 63 106 119 90 60 97 114 94 63 102 114 87 1
63 100 104 89 66 100 112 92 66 104 108 96 67 95 101 83 67 95 105 79 63 91 101 79 67 97 105 80 63 88 97 73 63 84 97 73 1
66 100 108 89 63 100 112 92 63 109 122 96 67 95 101 83 67 95 101 86 67 99 114 86 67 84 89 76 63 79 85 73 67 84 93 76 1
63 100 117 96 66 109 122 100 66 109 122 100 67 103 110 94 67 108 119 98 67 108 119 94 67 92 101 76 63 102 114 90 67 102 114 94 1
66 109 122 100 66 109 122 100 66 109 117 96 67 108 119 98 67 108 119 94 63 103 119 94 63 102 114 90 67 102 114 94 67 102 114 90 1
66 109 117 96 66 113 117 96 66 113 122 96 63 103 119 94 67 103 114 94 63 108 119 94 67 102 114 90 63 102 119 94 63 111 119 97 1
66 109 122 96 70 113 127 96 70 113 117 96 67 108 119 98 67 112 119 98 67 108 119 98 67 111 119 97 67 111 124 94 67 115 124 97 1
71 88 93 68 75 84 93 68 75 84 90 68 74 84 85 65 74 84 85 65 70 79 82 62 64 73 74 57 64 73 74 57 64 69 71 57 4
75 84 93 68 75 84 90 68 75 84 90 68 74 84 85 65 70 79 82 62 67 75 78 58 64 73 74 57 64 69 71 57 64 69 74 57 7
71 81 86 64 71 81 82 64 67 73 75 57 67 75 78 58 70 79 82 65 67 75 78 65 64 73 78 61 68 77 90 68 72 77 86 65 7
67 84 79 68 71 91 90 72 67 84 90 64 63 75 74 62 67 84 85 69 70 88 93 73 64 69 74 61 72 81 86 68 80 98 106 83 7
71 81 86 68 75 81 86 68 63 63 79 57 78 92 101 80 78 92 97 76 67 71 78 62 80 94 102 79 76 85 90 68 68 77 90 68 7
75 81 86 68 63 63 79 57 63 70 86 72 78 92 97 76 67 71 78 62 74 79 89 73 76 85 90 68 68 77 90 68 76 85 98 79 5
63 70 86 72 79 91 101 83 83 91 101 83 74 79 89 73 78 92 97 87 78 97 101 83 76 85 98 79 76 85 98 79 80 94 102 83 7
79 91 101 83 83 91 101 83 87 95 97 79 78 92 97 87 78 97 101 83 82 102 105 87 76 85 98 79 80 94 102 83 88 106 106 87 7
87 112 119 98 79 103 114 90 71 95 110 90 70 106 114 90 67 102 114 94 63 97 105 87 64 98 111 91 60 98 111 87 57 85 98 83 1
67 99 114 94 63 95 110 90 63 91 105 90 60 97 110 90 60 102 114 90 57 92 110 87 53 85 102 83 57 89 106 83 57 81 94 79 1
63 91 105 90 59 91 105 86 59 91 101 86 57 92 110 87 57 88 101 87 57 88 101 83 57 81 94 79 57 81 90 76 57 81 90 76 1
59 91 105 86 59 91 101 86 59 95 110 90 57 88 101 87 57 88 101 83 57 88 105 83 57 81 90 76 57 81 90 76 53 85 94 76 1
59 91 101 86 59 95 110 90 59 99 114 90 57 88 101 83 57 88 105 83 60 88 110 83 57 81 90 76 53 85 94 76 57 85 98 83 1
59 99 114 90 59 95 119 90 59 103 119 94 57 92 110 87 57 97 110 87 63 97 110 87 60 94 106 87 60 94 111 87 57 94 102 87 1
63 103 110 90 59 99 110 90 59 95 110 90 57 92 114 87 57 92 105 83 57 88 105 83 53 89 106 87 53 89 106 83 53 81 102 83 1
59 99 110 90 59 95 110 90 59 91 105 86 57 92 105 83 57 88 105 83 57 92 105 83 53 89 106 83 53 81 102 83 53 85 94 83 1
59 99 114 90 63 99 114 90 63 99 110 86 60 97 119 94 63 111 119 97 63 106 119 90 57 98 106 91 60 106 115 98 64 106 120 98 1
63 99 101 86 67 95 101 83 67 95 105 79 63 102 114 87 67 97 105 80 63 88 97 73 64 106 120 94 64 106 115 94 68 102 115 87 1
67 103 110 94 67 108 119 98 67 108 119 94 67 92 101 76 63 102 114 90 67 102 114 94 64 85 98 76 64 89 106 83 64 102 115 91 1
63 108 119 94 63 112 114 94 67 108 119 101 63 111 119 97 63 106 114 97 67 111 124 94 64 111 120 94 64 111 125 98 72 111 120 98 1
67 108 119 98 67 112 119 98 67 108 119 98 67 111 119 97 67 111 124 94 67 115 124 97 72 111 120 98 72 111 125 98 68 111 115 94 1
67 112 119 98 67 108 119 98 71 108 114 98 67 111 124 94 67 115 124 97 67 115 119 97 72 111 125 98 68 111 115 94 68 111 115 94 1
71 108 114 98 71 112 119 98 67 112 119 98 67 115 119 97 70 111 119 97 67 111 119 94 68 111 115 94 68 111 120 98 68 111 120 94 1
71 112 119 98 67 112 119 98 67 103 110 90 70 111 119 97 67 111 119 94 67 106 114 97 68 111 120 98 68 111 120 94 68 111 120 94 1
67 103 110 90 63 88 97 79 63 84 93 75 67 106 114 97 67 102 105 87 63 88 89 76 68 111 120 94 68 111 115 94 68 94 98 79 1
70 79 82 62 67 75 78 58 63 75 78 55 64 69 71 57 64 69 74 57 64 69 74 57 68 71 71 59 68 75 71 56 68 71 75 56 7
70 79 82 65 67 75 78 65 60 71 70 58 68 77 90 68 72 77 86 65 68 73 78 61 64 79 79 63 68 83 83 70 68 83 87 67 7
70 88 93 73 74 88 89 73 78 92 97 80 80 98 106 83 88 106 111 87 88 106 111 87 76 87 91 78 88 103 113 85 88 103 113 88 7
74 88 89 73 78 92 97 80 82 97 97 80 88 106 111 87 88 106 111 87 88 102 111 87 88 103 113 85 88 103 113 88 84 99 108 85 7
82 97 97 80 82 92 93 83 78 92 101 80 88 102 111 87 80 98 102 83 80 94 102 79 84 99 108 85 84 95 104 81 76 87 96 70 7
78 92 97 76 67 71 78 62 74 79 89 73 76 85 90 68 68 77 90 68 76 85 98 79 76 83 87 70 76 87 96 78 76 83 96 78 7
67 71 78 62 74 79 89 73 78 92 97 87 68 77 90 68 76 85 98 79 76 85 98 79 76 87 96 78 76 83 96 78 76 83 91 78 7
78 115 114 97 78 111 119 94 70 106 114 90 72 102 106 91 64 98 102 91 64 98 111 91 64 99 108 92 64 103 118 96 60 103 108 88 1
70 106 114 90 67 102 114 94 63 97 105 87 64 98 111 91 60 98 111 87 57 85 98 83 60 103 108 88 53 83 100 85 53 83 104 81 1
57 88 101 83 57 88 105 83 60 88 110 83 57 81 90 76 53 85 94 76 57 85 98 83 56 79 91 78 53 79 96 78 53 83 96 81 1
60 97 114 94 63 102 114 87 67 97 105 80 64 102 115 94 64 106 120 94 64 106 115 94 64 112 118 96 64 107 113 96 71 107 118 96 1
67 92 101 76 63 102 114 90 67 102 114 94 64 85 98 76 64 89 106 83 64 102 115 91 68 87 96 78 68 87 100 78 64 95 104 81 1
63 102 114 90 67 102 114 94 67 102 114 90 64 89 106 83 64 102 115 91 68 106 115 94 68 87 100 78 64 95 104 81 64 103 113 88 1
67 102 114 90 63 102 119 94 63 111 119 97 68 106 115 94 68 111 120 98 64 111 120 94 64 103 113 88 64 107 118 96 68 107 118 96 1
63 111 119 97 63 106 114 97 67 111 124 94 64 111 120 94 64 111 125 98 72 111 120 98 68 107 118 96 64 112 122 96 64 112 122 99 1
63 106 114 97 67 111 124 94 67 111 119 97 64 111 125 98 72 111 120 98 72 111 120 98 64 112 122 96 64 112 122 99 68 107 122 96 1
67 115 124 97 67 115 119 97 70 111 119 97 68 111 115 94 68 111 115 94 68 111 120 98 76 112 122 99 71 112 122 96 71 112 122 96 1
67 106 114 97 67 102 105 87 63 88 89 76 68 111 120 94 68 111 115 94 68 94 98 79 68 112 122 99 68 112 118 96 68 95 113 88 1
64 69 71 57 64 69 74 57 64 69 74 57 68 71 71 59 68 75 71 56 68 71 75 56 67 72 74 58 67 72 74 54 63 75 74 58 7
64 69 74 57 64 73 74 61 64 73 71 57 68 71 75 56 68 71 75 56 64 75 75 56 63 75 74 58 63 72 74 54 63 68 70 58 7
64 73 74 61 64 73 71 57 68 69 74 57 68 71 75 56 64 75 75 56 68 71 75 56 63 72 74 54 63 68 70 58 63 72 70 58 7
64 73 78 57 64 73 78 61 68 77 90 68 64 75 79 56 64 71 75 63 64 79 79 63 67 72 70 58 63 72 74 58 63 72 77 58 7
68 77 90 68 72 77 86 65 68 73 78 61 64 79 79 63 68 83 83 70 68 83 87 67 63 72 77 58 67 79 85 67 67 83 89 71 7
72 77 86 65 68 73 78 61 64 69 74 61 68 83 83 70 68 83 87 67 68 79 83 59 67 79 85 67 67 83 89 71 71 79 81 67 7
68 73 78 61 64 69 74 61 72 81 86 68 68 83 87 67 68 79 83 59 68 75 79 59 67 83 89 71 71 79 81 67 67 72 81 62 7
64 69 74 61 72 81 86 68 80 98 106 83 68 79 83 59 68 75 79 59 76 87 91 78 71 79 81 67 67 72 81 62 71 83 89 67 7
80 98 106 83 88 106 111 87 88 106 111 87 76 87 91 78 88 103 113 85 88 103 113 88 71 83 89 67 79 87 96 79 75 83 96 79 7
80 98 102 83 80 94 102 79 76 85 90 68 84 95 104 81 76 87 96 70 76 83 87 70 79 87 96 75 79 87 89 71 79 87 100 75 7
80 94 102 79 76 85 90 68 68 77 90 68 76 87 96 70 76 83 87 70 76 87 96 78 79 87 89 71 79 87 100 75 75 87 96 79 7
76 85 90 68 68 77 90 68 76 85 98 79 76 83 87 70 76 87 96 78 76 83 96 78 79 87 100 75 75 87 96 79 75 79 96 79 7
88 106 106 87 88 106 111 91 88 115 120 94 88 103 108 88 88 107 113 92 88 112 122 96 93 103 113 92 88 107 118 96 88 121 123 100 3
84 111 115 94 84 115 115 98 88 115 120 102 88 116 122 103 84 112 122 99 84 116 122 99 84 111 118 96 79 107 109 96 71 103 113 96 3
84 115 115 98 88 115 120 102 80 111 115 94 84 112 122 99 84 116 122 99 76 112 118 92 79 107 109 96 71 103 113 96 67 99 113 87 1
76 106 115 94 72 102 106 91 64 98 102 91 71 103 108 88 64 99 108 92 64 103 118 96 63 91 104 87 59 91 100 87 59 87 104 87 1
64 98 111 91 60 98 111 87 57 85 98 83 60 103 108 88 53 83 100 85 53 83 104 81 55 83 100 83 51 79 100 79 51 75 96 79 1
60 98 111 87 57 85 98 83 53 85 102 83 53 83 100 85 53 83 104 81 53 83 100 85 51 79 100 79 51 75 96 79 51 72 89 75 1
57 89 106 83 57 81 94 79 57 81 90 76 50 75 91 74 53 75 79 74 56 79 91 78 51 68 85 71 51 75 93 79 55 75 96 79 1
57 81 90 76 57 81 90 76 53 85 94 76 56 79 91 78 56 79 91 78 53 79 96 78 55 75 96 79 55 72 93 71 55 72 85 75 1
57 85 98 83 60 94 106 87 60 94 111 87 53 83 96 81 60 87 100 85 56 87 104 81 59 79 93 75 59 91 104 83 59 87 100 83 1
60 94 106 87 60 94 111 87 57 94 102 87 60 87 100 85 56 87 104 81 53 83 100 78 59 91 104 83 59 87 100 83 55 79 96 75 1
57 85 102 79 53 89 106 87 53 89 106 83 53 79 96 81 53 87 104 88 53 95 108 85 55 83 96 79 55 83 104 83 51 83 100 83 1
53 89 106 83 53 81 102 83 53 85 94 83 53 95 108 85 53 83 100 81 53 79 96 78 51 83 100 83 51 79 96 79 55 79 93 75 1
53 81 102 83 53 85 94 83 53 85 98 83 53 83 100 81 53 79 96 78 46 79 87 78 51 79 96 79 55 79 93 75 51 75 93 75 1
64 102 115 94 64 106 120 94 64 106 115 94 64 112 118 96 64 107 113 96 71 107 118 96 71 107 118 96 67 107 118 96 79 111 118 96 1
68 111 120 98 64 111 120 94 64 111 125 98 64 107 118 96 68 107 118 96 64 112 122 96 67 107 118 96 67 107 118 96 67 107 123 96 1
64 111 120 94 64 111 125 98 72 111 120 98 68 107 118 96 64 112 122 96 64 112 122 99 67 107 118 96 67 107 123 96 67 111 123 96 1
72 111 120 98 72 111 125 98 68 111 115 94 68 107 122 96 68 112 128 99 76 112 122 99 67 111 123 100 67 111 118 100 71 111 123 96 1
68 75 71 56 68 71 75 56 68 71 75 56 67 72 74 54 63 75 74 58 63 72 74 54 66 71 69 55 66 71 73 55 66 71 76 55 7
68 71 75 56 64 75 75 56 68 71 75 56 63 72 74 54 63 68 70 58 63 72 70 58 66 71 76 55 63 71 76 55 63 71 73 59 7
64 71 75 63 64 79 79 63 68 83 83 70 63 72 74 58 63 72 77 58 67 79 85 67 63 75 76 59 66 75 76 63 70 79 80 63 7
88 103 113 85 88 103 113 88 84 99 108 85 79 87 96 79 75 83 96 79 75 91 96 83 90 104 108 85 78 91 96 78 66 71 84 78 7
88 103 113 88 84 99 108 85 84 95 104 81 75 83 96 79 75 91 96 83 79 87 96 75 78 91 96 78 66 71 84 78 59 63 88 74 7
84 99 108 85 84 95 104 81 76 87 96 70 75 91 96 83 79 87 96 75 79 87 89 71 66 71 84 78 59 63 88 74 70 75 92 78 7
76 83 96 78 76 83 91 78 80 95 100 81 75 79 96 79 75 83 96 79 88 95 109 87 74 79 88 74 74 83 88 78 78 91 100 81 7
88 103 108 88 88 107 113 92 88 112 122 96 93 103 113 92 88 107 118 96 88 121 123 100 86 104 112 92 86 100 108 92 78 104 104 92 3
88 112 122 96 88 116 122 103 84 112 122 99 88 121 123 100 84 111 118 96 79 107 109 96 78 104 104 92 78 113 112 96 70 104 112 92 3
84 112 122 99 84 116 122 99 76 112 118 92 79 107 109 96 71 103 113 96 67 99 113 87 70 104 112 92 66 91 100 81 63 87 100 81 1
76 112 118 92 71 103 108 88 64 99 108 92 67 99 113 87 63 91 104 87 59 91 100 87 63 87 100 81 63 87 104 85 56 91 108 89 1
71 103 108 88 64 99 108 92 64 103 118 96 63 91 104 87 59 91 100 87 59 87 104 87 63 87 104 85 56 91 108 89 56 87 104 85 1
64 103 118 96 60 103 108 88 53 83 100 85 59 87 104 87 55 83 100 83 51 79 100 79 56 87 104 85 56 83 100 81 49 75 100 78 1
53 83 100 85 53 83 104 81 53 83 100 85 51 79 100 79 51 75 96 79 51 72 89 75 49 75 100 78 52 67 84 78 52 71 84 78 1
56 79 91 78 53 79 96 78 53 83 96 81 55 72 93 71 55 72 85 75 59 79 93 75 52 67 80 74 56 67 84 70 52 71 84 74 1
53 83 96 81 60 87 100 85 56 87 104 81 59 79 93 75 59 91 104 83 59 87 100 83 52 71 84 74 56 79 96 74 56 83 104 85 1
46 79 87 78 50 79 96 78 56 87 104 92 51 75 93 75 51 79 96 79 55 87 100 83 56 83 108 85 56 83 100 81 56 79 100 81 1
56 87 104 92 60 103 118 92 64 107 118 96 55 87 100 83 63 95 109 92 67 107 118 96 56 79 100 81 52 83 100 81 59 87 108 85 1
71 107 118 96 76 112 122 99 76 112 122 99 79 111 118 96 84 116 118 96 75 107 123 96 66 96 112 92 70 100 117 92 66 109 122 92 1
76 112 122 99 76 112 122 99 68 103 113 88 84 116 118 96 75 107 123 96 67 107 118 92 70 100 117 92 66 109 122 92 70 109 122 96 1
64 95 104 81 64 103 113 88 64 107 118 96 67 87 93 75 63 95 100 83 67 107 118 96 66 87 100 78 66 87 96 78 66 87 92 78 1
64 103 113 88 64 107 118 96 68 107 118 96 63 95 100 83 67 107 118 96 67 107 118 96 66 87 96 78 66 87 92 78 66 91 104 78 1
64 112 122 99 68 107 122 96 68 112 128 99 67 111 123 96 67 111 123 100 67 111 118 100 63 109 122 96 66 113 127 100 66 109 122 100 1
71 112 122 96 68 112 122 99 68 112 118 96 71 111 123 100 71 107 118 96 71 107 109 92 70 113 117 100 70 109 122 100 70 113 122 100 1
68 112 122 99 68 112 118 96 68 95 113 88 71 107 118 96 71 107 109 92 67 91 104 87 70 109 122 100 70 113 122 100 70 113 117 100 1
63 72 74 54 63 68 70 58 63 72 70 58 66 71 76 55 63 71 76 55 63 71 73 59 63 70 72 57 63 73 72 60 67 77 82 64 7
67 79 85 67 67 83 89 71 71 79 81 67 70 79 80 63 70 83 92 70 78 91 92 78 87 99 105 83 87 99 110 86 87 112 114 90 7
75 91 96 83 79 87 96 75 79 87 89 71 66 71 84 78 59 63 88 74 70 75 92 78 67 66 82 72 63 66 79 72 71 77 86 72 7
75 87 96 79 75 79 96 79 75 83 96 79 74 79 92 74 74 79 88 74 74 83 88 78 71 73 86 68 71 77 90 72 75 91 101 83 7
75 83 96 79 88 95 109 87 93 103 113 92 74 83 88 78 78 91 100 81 86 104 112 92 75 91 101 83 87 103 114 90 92 108 114 98 7
93 103 113 92 88 107 118 96 88 121 123 100 86 104 112 92 86 100 108 92 78 104 104 92 92 108 114 98 87 112 114 94 79 108 110 98 3
88 121 123 100 84 111 118 96 79 107 109 96 78 104 104 92 78 113 112 96 70 104 112 92 79 108 110 98 71 103 114 94 63 95 105 86 1
79 107 109 96 71 103 113 96 67 99 113 87 70 104 112 92 66 91 100 81 63 87 100 81 63 95 105 86 56 81 90 79 52 77 90 75 1
59 87 104 87 55 83 100 83 51 79 100 79 56 87 104 85 56 83 100 81 49 75 100 78 49 73 97 79 49 73 86 79 52 70 90 75 1
55 83 100 83 51 79 100 79 51 75 96 79 56 83 100 81 49 75 100 78 52 67 84 78 49 73 86 79 52 70 90 75 52 70 90 75 1
51 72 89 75 51 68 85 71 51 75 93 79 52 71 84 78 56 75 92 74 56 79 92 78 52 73 90 75 56 84 97 79 56 81 97 79 1
51 68 85 71 51 75 93 79 55 75 96 79 56 75 92 74 56 79 92 78 49 75 88 78 56 84 97 79 56 81 97 79 52 73 93 79 1
55 75 96 79 55 72 93 71 55 72 85 75 49 75 88 78 52 67 80 74 56 67 84 70 52 73 93 79 52 66 86 72 52 66 82 68 1
55 72 93 71 55 72 85 75 59 79 93 75 52 67 80 74 56 67 84 70 52 71 84 74 52 66 86 72 52 66 82 68 56 70 82 72 1
55 72 85 75 59 79 93 75 59 91 104 83 56 67 84 70 52 71 84 74 56 79 96 74 52 66 82 68 56 70 82 72 56 84 97 79 1
59 79 93 75 59 91 104 83 59 87 100 83 52 71 84 74 56 79 96 74 56 83 104 85 56 70 82 72 56 84 97 79 59 91 101 86 1
59 87 100 83 55 79 96 75 55 83 96 79 56 83 104 85 63 91 108 89 59 91 104 85 59 91 101 86 59 91 101 86 56 88 101 83 1
51 75 93 75 51 79 96 79 55 87 100 83 56 83 108 85 56 83 100 81 56 79 100 81 56 88 101 83 56 88 105 83 56 84 93 83 1
51 79 96 79 55 87 100 83 63 95 109 92 56 83 100 81 56 79 100 81 52 83 100 81 56 88 105 83 56 84 93 83 56 84 97 79 1
79 111 118 96 84 116 118 96 75 107 123 96 66 96 112 92 70 100 117 92 66 109 122 92 63 95 101 86 63 103 114 94 67 103 124 94 1
67 111 123 100 67 111 118 100 71 111 123 96 66 113 127 100 66 109 122 100 66 109 122 96 63 108 124 98 63 108 124 98 67 103 124 94 1
71 107 109 92 67 91 104 87 67 91 104 92 70 113 122 100 70 113 117 100 66 104 108 92 67 103 114 90 67 99 110 86 67 95 105 86 1
67 91 104 87 67 91 104 92 71 95 100 83 70 113 117 100 66 104 108 92 66 91 104 89 67 99 110 86 67 95 105 86 67 88 101 86 1
63 71 73 59 63 75 76 59 66 75 76 63 75 88 90 72 79 95 101 79 83 99 101 83 85 102 110 87 89 106 110 87 89 106 110 87 7
70 83 92 70 78 91 92 78 82 100 108 85 87 99 110 86 87 112 114 90 96 108 119 94 89 102 105 87 89 106 114 94 93 111 119 97 3
78 91 92 78 82 100 108 85 86 104 108 89 87 112 114 90 96 108 119 94 92 108 124 90 89 106 114 94 93 111 119 97 93 111 114 94 3
82 100 108 85 86 104 108 89 90 104 108 85 96 108 119 94 92 108 124 90 92 99 105 86 93 111 119 97 93 111 114 94 85 102 105 83 3
86 104 108 89 90 104 108 85 78 91 96 78 92 108 124 90 92 99 105 86 83 88 97 79 93 111 114 94 85 102 105 83 82 92 101 80 3
90 104 108 85 78 91 96 78 66 71 84 78 92 99 105 86 83 88 97 79 67 66 82 72 85 102 105 83 82 92 101 80 74 79 93 73 7
78 91 100 81 86 104 112 92 86 100 108 92 87 103 114 90 92 108 114 98 87 112 114 94 89 106 114 94 85 106 114 94 78 102 119 90 3
56 91 108 89 56 87 104 85 56 83 100 81 52 81 101 79 49 73 97 79 49 73 86 79 50 71 93 76 47 67 89 73 47 71 85 73 1
52 71 84 78 56 75 92 74 56 79 92 78 52 73 90 75 56 84 97 79 56 81 97 79 50 75 89 80 53 84 97 80 57 84 93 76 1
49 75 88 78 52 67 80 74 56 67 84 70 52 73 93 79 52 66 86 72 52 66 82 68 57 75 82 73 53 71 78 73 53 71 82 73 1
59 87 108 85 63 96 112 92 66 100 112 92 59 88 101 86 59 91 105 86 59 95 105 90 60 92 105 87 60 88 105 87 60 97 101 83 1
70 100 117 92 66 109 122 92 70 109 122 96 63 103 114 94 67 103 124 94 67 108 114 98 63 111 119 97 67 111 119 94 67 106 119 97 1
66 113 127 100 66 109 122 100 66 109 122 96 63 108 124 98 63 108 124 98 67 103 124 94 60 92 110 83 63 102 110 94 63 106 114 90 1
70 109 122 100 70 113 122 100 70 113 117 100 67 103 119 90 67 103 114 90 67 99 110 86 63 102 114 87 63 97 110 87 63 92 110 87 1
70 113 117 100 66 104 108 92 66 91 104 89 67 99 110 86 67 95 105 86 67 88 101 86 63 92 110 87 67 92 110 90 67 88 110 90 1
63 66 68 53 63 66 68 57 67 73 68 57 63 71 74 55 67 71 78 58 67 75 78 62 80 89 94 72 80 89 94 76 80 98 98 79 7
67 73 68 57 67 73 72 57 63 70 72 57 67 75 78 62 67 84 85 65 78 97 97 76 80 98 98 79 88 111 111 91 92 111 111 91 7
67 73 72 57 63 70 72 57 63 73 72 60 67 84 85 65 78 97 97 76 82 102 105 80 88 111 111 91 92 111 111 91 88 102 115 87 3
63 70 72 57 63 73 72 60 67 77 82 64 78 97 97 76 82 102 105 80 85 106 110 83 92 111 111 91 88 102 115 87 84 106 115 91 3
63 73 72 60 67 77 82 64 71 81 75 68 82 102 105 80 85 106 110 83 85 102 114 83 88 102 115 87 84 106 115 91 84 102 111 87 3
75 88 90 72 79 95 101 79 83 99 101 83 85 102 110 87 89 106 110 87 89 106 110 87 84 102 111 87 92 106 106 87 88 106 115 87 3
87 112 114 90 96 108 119 94 92 108 124 90 89 106 114 94 93 111 119 97 93 111 114 94 88 111 111 94 92 111 115 94 92 102 115 87 3
92 99 105 86 83 88 97 79 67 66 82 72 85 102 105 83 82 92 101 80 74 79 93 73 88 98 106 79 84 98 106 79 72 81 82 65 7
71 77 86 72 67 73 90 68 71 73 86 68 63 63 82 69 67 71 82 65 70 75 89 73 60 66 78 61 64 66 78 65 64 66 82 65 7
87 112 114 94 79 108 110 98 71 103 114 94 78 102 119 90 74 102 114 90 63 97 114 94 64 98 111 91 60 102 111 91 57 102 115 94 1
79 108 110 98 71 103 114 94 63 95 105 86 74 102 114 90 63 97 114 94 57 97 105 90 60 102 111 91 57 102 115 94 57 94 111 87 1
71 103 114 94 63 95 105 86 56 81 90 79 63 97 114 94 57 97 105 90 57 84 101 80 57 102 115 94 57 94 111 87 53 85 102 87 1
56 84 97 79 56 81 97 79 52 73 93 79 53 84 97 80 57 84 93 76 57 75 82 73 60 89 98 83 60 94 106 87 60 81 94 76 1
56 70 82 72 56 84 97 79 59 91 101 86 53 75 89 76 53 79 93 73 53 79 93 73 53 73 90 79 57 73 90 76 57 77 98 76 1
56 84 97 79 59 91 101 86 59 91 101 86 53 79 93 73 53 79 93 73 50 79 97 80 57 73 90 76 57 77 98 76 57 81 98 83 1
59 95 105 90 63 95 101 86 63 103 114 94 60 97 101 83 57 106 110 90 63 111 119 97 57 94 111 87 60 102 111 94 60 106 115 94 1
63 103 114 94 67 103 124 94 67 108 114 98 63 111 119 97 67 111 119 94 67 106 119 97 60 106 115 94 64 106 115 94 68 111 120 98 1
67 108 114 98 75 108 114 98 67 99 110 86 67 106 119 97 70 111 119 97 63 102 114 90 68 111 120 98 72 111 120 98 68 102 111 87 1
67 95 105 86 67 88 101 86 67 91 105 83 67 92 110 90 67 88 110 90 63 88 105 83 68 89 115 94 72 94 111 94 76 89 115 94 5
67 75 78 62 67 84 85 65 78 97 97 76 80 98 98 79 88 111 111 91 92 111 111 91 84 103 108 81 88 107 113 88 88 112 122 92 3
85 106 110 87 89 102 105 87 89 106 114 94 88 106 106 87 88 106 106 87 88 111 111 94 88 103 104 81 84 103 108 85 84 103 108 88 3
89 102 105 87 89 106 114 94 93 111 119 97 88 106 106 87 88 111 111 94 92 111 115 94 84 103 108 85 84 103 108 88 92 107 108 85 3
89 106 114 94 93 111 119 97 93 111 114 94 88 111 111 94 92 111 115 94 92 102 115 87 84 103 108 88 92 107 108 85 88 103 104 81 3
70 75 89 73 67 71 89 73 78 88 97 83 64 66 82 65 64 62 82 65 76 89 102 87 84 95 100 85 76 83 96 74 76 95 113 88 7
89 106 114 94 85 106 114 94 78 102 119 90 84 106 111 94 76 102 111 91 64 98 111 91 80 107 118 96 71 99 108 88 60 95 108 88 3
50 75 97 76 50 71 93 76 47 67 89 73 50 66 82 72 53 69 86 72 50 66 82 76 53 64 79 74 50 68 83 70 53 64 79 74 1
50 71 93 76 47 67 89 73 47 71 85 73 53 69 86 72 50 66 82 76 50 66 86 76 50 68 83 70 53 64 79 74 53 61 79 67 1
53 71 78 73 53 71 82 73 53 75 89 76 57 73 90 76 53 73 90 76 53 73 90 79 64 95 108 88 60 83 100 78 53 75 87 74 1
53 75 89 76 53 79 93 73 53 79 93 73 53 73 90 79 57 73 90 76 57 77 98 76 53 75 87 74 56 79 96 78 56 87 104 85 1
53 84 101 80 50 84 93 76 53 88 97 80 53 85 102 79 57 85 94 79 53 81 90 79 56 83 104 81 56 83 96 81 60 87 96 81 1
50 84 93 76 53 88 97 80 57 88 105 87 57 85 94 79 53 81 90 79 53 85 98 83 56 83 96 81 60 87 96 81 56 83 100 81 1
60 88 105 87 57 92 101 87 57 88 105 83 57 89 106 87 60 94 102 87 60 98 111 87 56 91 104 85 60 91 104 85 56 91 104 85 1
57 92 101 87 57 88 105 83 60 92 105 87 60 94 102 87 60 98 111 87 60 94 98 83 60 91 104 85 56 91 104 85 56 91 108 85 1
60 97 101 83 57 106 110 90 63 111 119 97 57 94 111 87 60 102 111 94 60 106 115 94 56 95 108 88 60 95 113 92 68 103 118 92 1
67 111 119 94 67 106 119 97 70 111 119 97 64 106 115 94 68 111 120 98 72 111 120 98 64 103 118 96 68 107 122 96 71 112 122 103 1
70 111 119 97 63 102 114 90 63 92 105 80 72 111 120 98 68 102 111 87 68 89 98 83 71 112 122 103 68 112 122 92 71 103 113 88 1
57 88 101 80 60 92 110 83 63 102 110 94 53 73 102 94 50 62 102 98 53 66 106 91 43 34 118 132 43 31 118 132 43 34 118 125 2
63 106 114 90 63 106 114 90 74 111 114 90 60 94 111 87 64 98 111 91 68 98 111 91 46 48 108 107 53 75 104 92 64 95 108 88 1
74 111 114 90 67 106 114 87 63 102 114 87 68 98 111 91 68 102 111 91 64 98 106 87 64 95 108 88 64 99 113 88 64 95 108 85 1
67 84 97 83 67 84 97 87 63 79 85 76 64 81 98 83 64 73 90 79 60 69 78 72 64 64 83 74 60 61 79 70 60 61 83 74 7
80 89 94 76 80 98 98 79 88 111 111 91 84 99 104 85 84 103 108 81 88 107 113 88 88 103 104 87 88 103 109 83 88 103 109 83 3
92 111 111 91 88 102 115 87 84 106 115 91 88 112 122 92 88 107 113 92 88 107 113 88 88 107 109 87 88 107 113 87 93 107 113 92 3
84 102 111 87 92 106 106 87 88 106 115 87 88 107 113 85 84 103 104 81 84 103 104 81 88 103 109 87 88 103 104 79 79 95 100 79 3
88 106 106 87 88 106 106 87 88 111 111 94 88 103 104 81 84 103 108 85 84 103 108 88 79 103 100 79 84 99 100 79 84 99 104 79 3
88 106 106 87 88 111 111 94 92 111 115 94 84 103 108 85 84 103 108 88 92 107 108 85 84 99 100 79 84 99 104 79 93 107 109 87 3
64 66 78 65 64 66 82 65 64 62 82 65 76 87 100 81 84 95 100 85 76 83 96 74 84 103 113 92 88 103 109 92 84 103 109 92 7
64 66 82 65 64 62 82 65 76 89 102 87 84 95 100 85 76 83 96 74 76 95 113 88 88 103 109 92 84 103 109 92 84 107 118 96 7
64 62 82 65 76 89 102 87 84 106 111 94 76 83 96 74 76 95 113 88 80 107 118 96 84 103 109 92 84 107 118 96 79 111 118 96 7
84 106 111 94 76 102 111 91 64 98 111 91 80 107 118 96 71 99 108 88 60 95 108 88 79 111 118 96 67 99 113 92 55 87 104 87 1
64 98 111 91 60 102 111 91 57 102 115 94 60 95 108 88 60 95 113 92 53 95 108 88 55 87 104 87 51 87 100 87 51 83 104 83 1
60 102 111 91 57 102 115 94 57 94 111 87 60 95 113 92 53 95 108 88 50 83 104 85 51 87 100 87 51 83 104 83 48 75 96 75 1
57 94 111 87 53 85 102 87 50 73 94 76 50 83 104 85 53 79 100 81 53 71 91 74 48 75 96 75 48 72 89 75 51 68 85 71 1
53 85 102 87 50 73 94 76 50 66 82 72 53 79 100 81 53 71 91 74 53 64 79 74 48 72 89 75 51 68 85 71 51 68 77 71 1
60 77 94 79 60 89 98 83 60 94 106 87 64 95 104 85 64 99 113 92 68 99 118 88 59 79 89 79 59 79 96 79 63 83 96 83 1
60 81 94 76 57 73 90 76 53 73 90 76 60 91 104 85 64 95 108 88 60 83 100 78 63 79 96 83 63 87 96 83 63 87 96 83 1
57 85 94 79 53 81 90 79 53 85 98 83 56 83 96 81 60 87 96 81 56 83 100 81 67 95 104 87 67 95 109 87 63 95 104 83 1
53 81 90 79 53 85 98 83 57 89 106 87 60 87 96 81 56 83 100 81 56 91 104 85 67 95 109 87 63 95 104 83 63 95 113 87 1
60 94 98 83 57 85 98 87 57 94 111 87 56 91 108 85 56 91 104 85 56 95 108 88 55 87 104 87 55 91 104 87 63 95 109 87 1
64 106 115 94 68 111 120 98 72 111 120 98 64 103 118 96 68 107 122 96 71 112 122 103 67 107 118 96 67 107 123 96 67 111 123 96 1
68 98 111 91 68 102 111 91 64 98 106 87 64 95 108 88 64 99 113 88 64 95 108 85 51 58 113 104 59 87 104 83 63 95 100 83 1
68 102 111 91 64 98 106 87 64 98 111 87 64 99 113 88 64 95 108 85 60 99 104 85 59 87 104 83 63 95 100 83 63 95 104 83 1
64 85 111 87 68 89 115 94 72 94 111 94 64 91 108 88 71 91 118 92 76 95 122 99 63 95 109 92 75 99 118 96 75 99 118 96 5
76 89 115 94 72 89 111 91 76 89 106 83 76 99 122 96 80 95 118 96 80 95 118 92 75 99 118 96 75 95 109 96 75 95 113 96 5
72 89 111 91 76 89 106 83 72 85 98 79 80 95 118 96 80 95 118 92 76 83 100 78 75 95 109 96 75 95 113 96 79 99 109 83 5
72 85 98 79 64 81 98 83 64 73 90 79 76 83 100 78 64 64 83 74 60 61 79 70 79 99 109 83 71 75 93 79 51 51 81 79 5
64 81 98 83 64 73 90 79 60 69 78 72 64 64 83 74 60 61 79 70 60 61 83 74 71 75 93 79 51 51 81 79 51 54 81 75 5
88 107 113 92 88 107 113 88 88 103 113 85 88 107 113 87 93 107 113 92 88 107 113 87 86 104 108 85 90 104 108 89 90 104 112 89 3
88 107 113 88 88 103 113 85 88 107 113 85 93 107 113 92 88 107 113 87 88 103 109 87 90 104 108 89 90 104 112 89 86 100 108 89 3
92 107 108 85 88 103 104 81 84 95 104 85 93 107 109 87 84 103 109 79 84 99 100 79 90 104 112 85 90 109 112 89 82 100 96 81 3
76 87 100 81 84 95 100 85 76 83 96 74 84 103 113 92 88 103 109 92 84 103 109 92 86 100 108 89 86 100 108 89 78 100 112 92 3
84 95 100 85 76 83 96 74 76 95 113 88 88 103 109 92 84 103 109 92 84 107 118 96 86 100 108 89 78 100 112 92 78 104 122 96 3
50 83 104 85 53 79 100 81 53 71 91 74 48 75 96 75 48 72 89 75 51 68 85 71 49 79 96 78 49 71 88 78 49 71 88 74 1
53 61 79 67 56 68 83 74 64 83 100 85 51 61 77 71 51 68 81 71 59 72 85 75 49 63 76 66 49 67 80 70 52 71 80 74 1
64 95 104 85 64 99 113 92 68 99 118 88 59 79 89 79 59 79 96 79 63 83 96 83 52 71 84 70 56 75 88 74 56 75 92 78 1
60 83 100 78 53 75 87 74 56 79 96 78 63 87 96 83 59 83 89 79 59 95 109 87 59 83 100 81 59 83 100 81 59 87 104 85 1
56 87 100 81 56 87 100 78 56 87 104 81 67 99 109 87 63 95 104 87 63 95 109 87 70 104 117 92 63 96 112 89 63 96 112 89 1
56 87 100 78 56 87 104 81 56 83 104 81 63 95 104 87 63 95 109 87 67 95 100 87 63 96 112 89 63 96 112 89 66 100 112 89 1
56 87 104 81 56 83 104 81 56 83 96 81 63 95 109 87 67 95 100 87 67 95 104 87 63 96 112 89 66 100 112 89 63 100 112 92 1
60 87 96 81 56 83 100 81 56 91 104 85 67 95 109 87 63 95 104 83 63 95 113 87 63 100 117 92 63 96 112 89 63 96 108 89 1
60 95 113 92 68 103 118 92 64 103 118 96 67 99 109 92 67 103 113 92 67 107 118 96 63 96 112 89 63 100 112 89 63 104 108 92 1
68 112 122 92 71 103 113 88 68 99 108 88 71 111 128 100 71 111 128 96 71 107 123 96 66 104 122 103 74 113 122 100 70 113 122 96 1
43 36 104 121 43 34 118 132 43 31 118 132 44 29 123 133 44 37 118 133 44 37 118 129 46 43 112 122 49 49 112 118 52 53 108 114 2
43 34 118 125 46 48 108 107 53 75 104 92 44 32 113 125 44 32 118 129 48 34 113 125 49 40 112 125 46 34 112 133 46 32 112 133 2
64 95 108 88 64 99 113 88 64 95 108 85 51 58 113 104 59 87 104 83 63 95 100 83 46 32 112 133 46 46 112 114 56 71 104 89 1
64 99 113 88 64 95 108 85 60 99 104 85 59 87 104 83 63 95 100 83 63 95 104 83 46 46 112 114 56 71 104 89 59 87 100 81 5
76 99 122 96 80 95 118 96 80 95 118 92 75 99 118 96 75 95 109 96 75 95 113 96 74 91 112 96 70 87 112 100 66 83 117 100 5
80 95 118 92 76 83 100 78 64 64 83 74 75 95 113 96 79 99 109 83 71 75 93 79 66 83 117 100 70 87 112 100 82 91 108 85 5
64 64 83 74 60 61 79 70 60 61 83 74 71 75 93 79 51 51 81 79 51 54 81 75 82 91 108 85 63 63 88 78 52 53 76 74 5
60 57 79 70 53 54 75 70 56 57 71 67 51 48 81 79 48 42 74 75 48 48 67 71 56 53 80 74 49 49 76 74 49 46 69 66 5
84 103 104 83 88 103 104 83 88 103 104 87 90 100 104 85 90 100 108 81 90 104 108 85 83 95 101 79 87 99 101 83 87 99 105 83 3
88 107 109 87 88 107 113 87 93 107 113 92 86 100 104 81 86 104 108 85 90 104 108 89 83 95 101 83 87 103 110 86 92 103 105 86 3
88 107 113 87 93 107 113 92 88 107 113 87 86 104 108 85 90 104 108 89 90 104 112 89 87 103 110 86 92 103 105 86 87 103 110 86 3
88 107 113 87 88 103 109 87 88 103 104 79 90 104 112 89 86 100 108 89 86 104 108 89 87 103 110 86 87 103 114 86 92 112 119 94 3
84 99 100 79 84 95 109 83 79 87 96 71 82 100 96 81 82 96 100 81 86 96 100 81 83 91 97 79 83 95 101 83 87 95 101 83 3
84 95 109 83 79 87 96 71 67 75 81 62 82 96 100 81 86 96 100 81 82 91 92 81 83 95 101 83 87 95 101 83 83 99 101 83 3
84 103 109 92 84 107 118 96 79 111 118 96 78 100 112 92 78 104 122 96 74 109 112 96 75 99 110 90 67 99 114 90 63 99 114 90 1
84 107 118 96 79 111 118 96 67 99 113 92 78 104 122 96 74 109 112 96 66 104 112 92 67 99 114 90 63 99 114 90 59 91 101 90 1
79 111 118 96 67 99 113 92 55 87 104 87 74 109 112 96 66 104 112 92 59 91 100 85 63 99 114 90 59 91 101 90 56 84 93 83 1
51 64 77 71 48 61 74 67 51 61 77 71 52 67 84 70 52 63 80 70 49 63 76 66 49 73 86 75 52 66 82 72 52 70 82 72 1
59 79 96 79 63 83 96 83 63 79 96 83 56 75 88 74 56 75 92 78 59 79 96 81 56 81 97 83 59 84 93 83 59 81 101 83 1
63 95 113 87 59 95 113 92 59 91 104 87 63 96 108 89 63 96 108 89 59 96 112 89 63 103 119 90 59 99 114 90 59 95 110 86 1
55 87 104 87 55 91 104 87 63 95 109 87 52 87 108 85 56 87 100 85 63 87 108 85 56 84 101 83 56 84 105 86 59 81 105 86 1
67 107 118 96 67 107 123 96 67 111 123 96 63 104 108 92 63 100 108 96 66 100 117 92 63 99 110 94 63 95 105 90 67 99 110 94 1
67 107 123 96 67 111 123 96 71 111 128 100 63 100 108 96 66 100 117 92 66 104 122 103 63 95 105 90 67 99 110 94 63 103 119 94 1
67 111 123 96 71 111 128 100 71 111 128 96 66 100 117 92 66 104 122 103 74 113 122 100 67 99 110 94 63 103 119 94 67 108 124 98 1
71 103 118 96 67 103 118 92 63 107 118 92 70 109 122 100 66 113 117 100 66 109 117 100 71 112 124 101 71 112 130 101 71 112 130 101 1
67 103 118 92 63 107 118 92 63 87 109 96 66 113 117 100 66 109 117 100 66 113 122 100 71 112 130 101 71 112 130 101 71 112 119 98 1
48 34 113 125 51 58 113 104 59 87 104 83 46 32 112 133 46 32 112 133 46 46 112 114 42 32 114 135 42 30 110 139 42 30 114 135 2
75 99 118 96 75 95 109 96 75 95 113 96 74 91 112 96 70 87 112 100 66 83 117 100 67 88 110 98 67 88 119 98 75 91 110 94 5
75 95 109 96 75 95 113 96 79 99 109 83 70 87 112 100 66 83 117 100 70 87 112 100 67 88 119 98 75 91 110 94 79 91 119 98 5
75 95 113 96 79 99 109 83 71 75 93 79 66 83 117 100 70 87 112 100 82 91 108 85 75 91 110 94 79 91 119 98 79 99 110 86 5
48 42 74 75 48 48 67 71 51 54 67 62 49 49 76 74 49 46 69 66 52 53 73 66 59 60 75 68 52 54 75 68 52 60 72 64 5
90 104 112 85 90 109 112 89 82 100 96 81 87 103 105 83 87 103 110 83 83 91 97 79 85 106 105 83 85 102 101 83 82 92 105 76 3
90 109 112 89 82 100 96 81 82 96 100 81 87 103 110 83 83 91 97 79 83 95 101 83 85 102 101 83 82 92 105 76 85 92 101 83 3
82 100 96 81 82 96 100 81 86 96 100 81 83 91 97 79 83 95 101 83 87 95 101 83 82 92 105 76 85 92 101 83 85 92 105 83 3
78 87 100 81 86 100 108 89 86 100 108 89 87 103 110 90 87 99 105 86 79 99 105 86 85 102 114 87 78 92 101 87 74 97 105 94 3
78 104 122 96 74 109 112 96 66 104 112 92 67 99 114 90 63 99 114 90 59 91 101 90 57 97 110 94 53 88 101 83 50 71 89 76 1
49 67 80 70 52 71 80 74 52 71 84 70 49 70 82 72 52 73 82 75 56 77 93 79 50 71 85 73 53 75 89 73 53 84 97 80 1
56 75 92 78 59 79 96 81 56 79 88 81 59 84 93 83 59 81 101 83 56 81 93 79 53 84 101 87 50 79 93 80 53 79 89 76 1
63 100 112 92 70 104 117 92 63 96 112 89 67 99 110 94 63 95 110 90 63 95 105 90 60 88 101 83 60 75 93 83 63 79 97 83 1
63 96 112 89 66 100 112 89 63 100 112 92 63 99 110 90 63 103 119 90 67 99 114 94 63 88 105 90 67 97 114 90 70 106 114 94 1
63 100 112 89 63 104 108 92 63 100 108 96 59 91 110 86 63 99 110 94 63 95 105 90 60 97 105 87 63 92 110 94 63 92 105 87 1
46 34 112 133 46 32 112 133 46 32 112 133 46 30 119 139 42 32 114 135 42 30 110 139 44 31 114 140 44 31 114 133 44 31 114 133 2
46 32 112 133 46 32 112 133 46 46 112 114 42 32 114 135 42 30 110 139 42 30 114 135 44 31 114 133 44 31 114 133 44 31 110 133 2
46 32 112 133 46 46 112 114 56 71 104 89 42 30 110 139 42 30 114 135 46 34 110 124 44 31 114 133 44 31 110 133 44 29 114 136 2
66 91 112 89 70 96 112 92 70 96 117 92 56 73 97 79 63 88 105 83 67 84 105 94 47 37 114 122 50 63 97 90 63 84 97 80 5
70 96 117 92 74 91 112 96 70 87 112 100 67 84 105 94 67 88 110 98 67 88 119 98 63 84 97 80 70 88 105 87 74 92 114 94 5
74 91 112 96 70 87 112 100 66 83 117 100 67 88 110 98 67 88 119 98 75 91 110 94 70 88 105 87 74 92 114 94 74 92 110 94 5
70 87 112 100 66 83 117 100 70 87 112 100 67 88 119 98 75 91 110 94 79 91 119 98 74 92 114 94 74 92 110 94 70 88 114 97 5
52 53 76 74 56 53 80 74 49 49 76 74 59 60 72 72 59 63 79 72 59 60 75 68 63 75 89 73 60 71 82 65 63 67 78 69 5
83 99 101 83 83 95 97 79 83 95 101 83 82 97 101 76 82 97 101 80 85 102 110 87 80 98 98 76 80 98 102 79 84 98 106 83 3
83 95 97 79 83 95 101 83 87 103 110 86 82 97 101 80 85 102 110 87 85 102 110 90 80 98 102 79 84 98 106 83 84 102 106 87 3
83 95 101 83 87 103 110 86 92 103 105 86 85 102 110 87 85 102 110 90 89 102 110 87 84 98 106 83 84 102 106 87 84 102 106 87 3
87 103 110 86 92 103 105 86 87 103 110 86 85 102 110 90 89 102 110 87 89 102 114 87 84 102 106 87 84 102 106 87 84 106 111 87 3
92 103 105 86 87 103 110 86 87 103 114 86 89 102 110 87 89 102 114 87 89 106 114 94 84 102 106 87 84 106 111 87 88 111 115 91 3
87 103 110 86 87 103 114 86 92 112 119 94 89 102 114 87 89 106 114 94 93 115 124 94 84 106 111 87 88 111 115 91 92 115 115 94 3
92 103 110 90 83 95 105 79 83 95 101 79 93 106 114 94 89 97 101 80 85 97 105 80 88 102 106 83 88 102 106 83 88 98 106 79 3
83 95 105 79 83 95 101 79 87 103 105 83 89 97 101 80 85 97 105 80 85 106 105 83 88 102 106 83 88 98 106 79 84 102 106 79 3
87 103 110 83 83 91 97 79 83 95 101 83 85 102 101 83 82 92 105 76 85 92 101 83 84 94 102 79 84 98 98 79 84 94 102 79 3
83 91 97 79 83 95 101 83 87 95 101 83 82 92 105 76 85 92 101 83 85 92 105 83 84 98 98 79 84 94 102 79 84 102 111 87 3
83 95 101 83 87 95 101 83 83 99 101 83 85 92 101 83 85 92 105 83 89 102 110 87 84 94 102 79 84 102 111 87 88 106 102 91 3
79 99 105 86 75 99 110 90 67 99 114 90 74 97 105 94 67 97 110 94 57 97 110 94 64 98 111 91 57 94 111 91 53 85 102 83 1
75 99 110 90 67 99 114 90 63 99 114 90 67 97 110 94 57 97 110 94 53 88 101 83 57 94 111 91 53 85 102 83 50 73 90 76 1
63 99 114 90 59 91 101 90 56 84 93 83 53 88 101 83 50 71 89 76 47 71 89 80 50 73 90 76 50 69 86 72 53 69 86 72 1
59 91 101 90 56 84 93 83 52 77 93 79 50 71 89 76 47 71 89 80 50 71 85 76 50 69 86 72 53 69 86 72 53 69 82 72 1
56 84 93 83 52 77 93 79 52 73 90 75 47 71 89 80 50 71 85 76 47 67 85 69 53 69 86 72 53 69 82 72 50 66 82 72 1
52 77 93 79 52 73 90 75 46 73 90 75 50 71 85 76 47 67 85 69 47 71 85 73 53 69 82 72 50 66 82 72 50 73 90 76 1
49 73 93 79 52 77 93 75 49 73 86 75 50 79 89 76 50 79 93 76 50 79 89 76 50 73 90 76 50 77 98 79 53 77 94 79 1
52 77 93 75 49 73 86 75 52 66 82 72 50 79 93 76 50 79 89 76 50 71 82 73 50 77 98 79 53 77 94 79 50 73 90 76 1
63 99 114 94 67 99 110 94 63 95 110 90 57 88 101 83 60 88 101 83 60 75 93 83 57 81 94 79 60 77 90 79 64 81 90 83 1
63 95 110 90 63 95 105 90 63 99 110 90 60 75 93 83 63 79 97 83 63 88 105 90 64 81 90 83 64 85 94 83 64 85 98 83 1
67 99 114 94 63 99 114 94 63 103 114 90 70 106 114 94 67 97 114 87 63 97 114 90 64 98 111 91 68 94 115 91 60 89 102 83 1
59 95 110 86 56 84 101 83 56 84 105 86 63 106 114 90 60 92 105 87 53 84 110 87 68 106 115 94 64 98 111 91 57 94 111 87 1
56 84 101 83 56 84 105 86 59 81 105 86 60 92 105 87 53 84 110 87 53 84 105 83 64 98 111 91 57 94 111 87 53 89 106 87 1
56 84 105 86 59 81 105 86 59 88 105 86 53 84 110 87 53 84 105 83 57 88 105 87 57 94 111 87 53 89 106 87 57 94 111 87 1
59 91 110 86 63 99 110 94 63 95 105 90 60 97 105 87 63 92 110 94 63 92 105 87 57 94 106 83 60 85 102 87 60 85 102 87 1
67 99 110 94 63 103 119 94 67 108 124 98 63 97 114 90 67 102 119 97 74 106 124 104 64 98 111 91 68 106 111 98 72 111 120 102 1
63 103 119 94 67 108 124 98 75 112 124 101 67 102 119 97 74 106 124 104 78 111 129 101 68 106 111 98 72 111 120 102 80 115 125 102 1
67 108 124 98 75 112 124 101 71 112 124 101 74 106 124 104 78 111 129 101 67 102 119 97 72 111 120 102 80 115 125 102 68 111 120 98 1
75 112 124 101 71 112 124 101 71 112 130 101 78 111 129 101 67 102 119 97 67 106 124 97 80 115 125 102 68 111 120 98 64 106 115 94 1
71 112 130 101 71 112 130 101 71 112 119 98 67 106 124 97 70 111 124 101 67 106 119 97 64 106 115 94 64 106 120 98 68 111 125 98 1
71 112 119 98 67 108 114 98 56 70 110 98 67 106 119 97 67 111 114 97 60 88 110 97 68 111 125 98 68 102 115 94 60 89 111 94 1
67 108 114 98 56 70 110 98 52 54 97 105 67 111 114 97 60 88 110 97 47 40 105 122 68 102 115 94 60 89 111 94 53 59 106 113 1
46 32 119 135 46 30 119 139 42 32 114 135 44 31 110 140 44 31 114 140 44 31 114 133 47 31 111 131 47 34 111 128 44 34 115 128 2
67 84 105 94 67 88 110 98 67 88 119 98 63 84 97 80 70 88 105 87 74 92 114 94 57 73 86 72 64 85 98 79 64 85 102 91 5
75 91 110 94 79 91 119 98 79 99 110 86 74 92 110 94 70 88 114 97 74 88 110 94 64 77 106 98 68 69 111 98 68 73 111 91 5
71 77 86 75 59 60 72 72 59 63 79 72 78 84 93 80 63 75 89 73 60 71 82 65 68 77 98 79 72 77 94 76 76 85 98 76 7
85 102 105 80 85 97 101 80 82 97 101 76 88 106 102 83 88 102 102 79 80 98 98 76 80 99 104 78 80 91 96 78 80 95 100 78 3
82 97 101 80 85 102 110 87 85 102 110 90 80 98 102 79 84 98 106 83 84 102 106 87 80 95 100 78 80 91 96 74 80 95 100 81 3
85 102 110 90 89 102 110 87 89 102 114 87 84 102 106 87 84 102 106 87 84 106 111 87 80 95 100 81 84 103 108 88 88 112 113 88 3
85 102 114 87 78 92 101 87 74 97 105 94 84 98 102 87 72 94 106 87 64 98 111 91 76 95 104 88 68 99 113 88 60 91 108 88 3
78 92 101 87 74 97 105 94 67 97 110 94 72 94 106 87 64 98 111 91 57 94 111 91 68 99 113 88 60 91 108 88 53 87 104 85 1
50 71 89 76 47 71 89 80 50 71 85 76 50 69 86 72 53 69 86 72 53 69 82 72 50 68 87 74 50 71 87 70 50 71 87 74 1
47 67 85 69 47 71 85 73 50 75 89 76 50 66 82 72 50 73 90 76 53 77 94 76 50 75 91 74 53 75 87 78 53 75 87 78 1
47 71 85 73 50 75 89 76 50 79 89 76 50 73 90 76 53 77 94 76 50 73 90 76 53 75 87 78 53 75 87 78 50 75 91 81 1
50 75 89 76 50 79 89 76 50 79 93 76 53 77 94 76 50 73 90 76 50 77 98 79 53 75 87 78 50 75 91 81 50 75 96 78 1
50 71 82 73 47 67 82 65 50 71 85 73 50 73 90 76 50 69 86 72 53 69 82 72 56 68 83 67 53 68 83 70 53 71 87 74 1
53 79 89 76 57 79 93 80 57 88 101 83 57 77 90 76 53 77 90 76 53 77 94 79 60 87 104 85 60 83 100 85 56 79 91 78 1
57 88 101 83 60 88 101 83 60 75 93 83 57 81 94 79 60 77 90 79 64 81 90 83 60 79 96 85 64 91 100 81 68 87 96 81 1
63 102 114 90 63 106 114 90 60 92 105 87 64 98 115 91 68 106 115 94 64 98 111 91 64 83 96 88 68 99 113 88 68 99 108 85 1
60 92 105 87 53 84 110 87 53 84 105 83 64 98 111 91 57 94 111 87 53 89 106 87 68 99 108 85 56 91 104 88 56 95 108 92 1
60 97 105 87 63 92 110 94 63 92 105 87 57 94 106 83 60 85 102 87 60 85 102 87 56 83 100 85 56 83 96 85 60 91 100 85 1
63 92 110 94 63 92 105 87 63 97 114 90 60 85 102 87 60 85 102 87 64 98 111 91 56 83 96 85 60 91 100 85 60 99 108 92 1
74 106 124 104 78 111 129 101 67 102 119 97 72 111 120 102 80 115 125 102 68 111 120 98 68 99 118 99 71 107 122 103 71 112 122 99 1
67 102 119 97 67 106 124 97 70 111 124 101 68 111 120 98 64 106 115 94 64 106 120 98 71 112 122 99 68 112 122 99 71 112 128 99 1
67 106 124 97 70 111 124 101 67 106 119 97 64 106 115 94 64 106 120 98 68 111 125 98 68 112 122 99 71 112 128 99 71 103 122 96 1
67 106 119 97 67 111 114 97 60 88 110 97 68 111 125 98 68 102 115 94 60 89 111 94 71 103 122 96 64 91 104 92 60 91 108 88 1
60 88 110 97 47 40 105 122 44 31 114 136 60 89 111 94 53 59 106 113 50 31 115 128 60 91 108 88 60 83 108 92 60 64 100 99 2
47 40 105 122 44 31 114 136 44 31 110 140 53 59 106 113 50 31 115 128 47 31 111 131 60 83 108 92 60 64 100 99 53 51 104 114 2
44 31 110 140 44 31 114 140 44 31 114 133 47 31 111 131 47 34 111 128 44 34 115 128 53 51 104 114 50 36 113 128 43 36 118 128 2
44 31 114 140 44 31 114 133 44 31 114 133 47 34 111 128 44 34 115 128 44 31 115 131 50 36 113 128 43 36 118 128 46 39 108 114 2
44 31 114 133 44 31 114 133 44 31 110 133 44 34 115 128 44 31 115 131 44 31 115 131 43 36 118 128 46 39 108 114 50 48 104 107 2
44 29 114 133 47 37 114 122 50 63 97 90 47 37 106 124 50 43 98 109 53 55 98 91 56 61 96 88 56 61 91 85 56 64 91 85 2
50 63 97 90 63 84 97 80 70 88 105 87 53 55 98 91 57 73 86 72 64 85 98 79 56 64 91 85 60 64 91 81 60 75 96 78 5
70 88 105 87 74 92 114 94 74 92 110 94 64 85 98 79 64 85 102 91 64 77 106 98 60 75 96 78 64 68 104 88 64 64 108 92 5
74 88 110 94 78 84 93 80 63 75 89 73 68 73 111 91 68 77 98 79 72 77 94 76 64 61 108 99 64 68 108 92 71 83 100 81 7
88 106 102 83 88 102 102 79 80 98 98 76 80 99 104 78 80 91 96 78 80 95 100 78 88 99 104 83 88 103 104 83 84 95 100 79 3
88 102 102 79 80 98 98 76 80 98 102 79 80 91 96 78 80 95 100 78 80 95 100 78 88 103 104 83 84 95 100 79 79 99 96 79 3
84 102 106 87 84 106 111 87 88 111 115 91 84 103 108 88 88 112 113 88 92 112 118 88 84 99 104 83 88 107 113 87 88 107 109 87 3
84 106 111 87 88 111 115 91 92 115 115 94 88 112 113 88 92 112 118 88 88 99 104 88 88 107 113 87 88 107 109 87 84 99 104 79 3
92 106 111 87 88 102 106 83 88 102 106 83 80 99 104 81 84 103 104 81 84 103 104 85 84 99 104 79 88 99 109 83 84 103 100 83 3
88 102 106 83 88 98 106 79 84 102 106 79 84 103 104 85 84 99 104 81 84 99 100 81 84 103 100 83 84 99 104 83 88 99 109 83 3
84 94 102 79 84 102 111 87 88 106 102 91 84 99 104 85 88 103 108 88 88 99 113 92 88 103 113 87 88 103 109 92 79 95 100 87 3
50 73 90 76 50 69 86 72 53 69 86 72 50 71 91 78 50 68 87 74 50 71 87 70 48 61 81 67 48 64 85 71 51 72 85 75 1
53 77 94 76 50 73 90 76 50 77 98 79 53 75 87 78 50 75 91 81 50 75 96 78 55 79 96 79 51 75 93 75 51 75 89 75 1
50 77 98 79 53 77 94 79 50 73 90 76 50 75 96 78 56 75 91 74 56 68 83 67 51 75 89 75 55 72 89 71 55 68 81 71 1
53 73 90 76 53 77 94 76 53 77 94 76 53 79 96 70 53 79 96 81 56 83 96 78 55 79 96 79 59 83 96 79 71 99 104 87 1
53 77 90 76 53 77 94 79 57 81 94 79 60 83 100 85 56 79 91 78 60 79 96 85 59 75 96 79 59 83 96 79 63 91 100 83 1
64 81 90 83 64 85 94 83 64 85 98 83 68 87 96 81 60 83 96 81 64 87 104 85 75 91 109 92 75 95 104 87 71 95 104 87 1
68 89 102 87 64 98 111 91 68 94 115 91 68 91 104 88 68 91 104 85 68 87 104 88 75 91 109 92 75 95 104 87 67 83 96 79 1
64 98 111 91 68 94 115 91 60 89 102 83 68 91 104 85 68 87 104 88 60 75 91 78 75 95 104 87 67 83 96 79 59 72 85 71 1
60 85 102 83 64 98 115 91 68 106 115 94 56 68 83 74 64 83 96 88 68 99 113 88 55 68 85 75 63 79 96 83 67 99 109 92 1
68 106 115 94 64 98 111 91 57 94 111 87 68 99 113 88 68 99 108 85 56 91 104 88 67 99 109 92 67 103 109 92 63 95 109 87 1
57 94 111 87 53 89 106 87 57 94 111 87 56 91 104 88 56 95 108 92 56 87 108 85 63 95 109 87 59 95 113 92 63 95 109 87 1
64 98 111 91 68 106 111 98 72 111 120 102 60 99 108 92 64 99 113 92 68 99 118 99 63 99 113 92 63 103 113 96 71 103 113 96 1
68 106 111 98 72 111 120 102 80 115 125 102 64 99 113 92 68 99 118 99 71 107 122 103 63 103 113 96 71 103 113 96 71 103 113 96 1
64 106 120 98 68 111 125 98 68 102 115 94 71 112 128 99 71 103 122 96 64 91 104 92 67 99 113 96 67 91 104 92 59 75 100 83 1
47 31 111 131 47 34 111 128 44 34 115 128 53 51 104 114 50 36 113 128 43 36 118 128 63 79 100 87 59 68 96 92 55 61 100 96 2
44 31 115 131 47 31 111 124 47 37 106 124 50 48 104 107 50 57 96 96 56 61 96 88 59 64 100 92 55 61 100 87 55 58 96 87 5
47 31 111 124 47 37 106 124 50 43 98 109 50 57 96 96 56 61 96 88 56 61 91 85 55 61 100 87 55 58 96 87 59 58 93 83 5
64 85 98 79 64 85 102 91 64 77 106 98 60 75 96 78 64 68 104 88 64 64 108 92 59 75 89 79 59 64 100 92 59 58 104 100 5
64 85 102 91 64 77 106 98 68 69 111 98 64 68 104 88 64 64 108 92 60 61 108 99 59 64 100 92 59 58 104 100 59 58 104 100 5
64 77 106 98 68 69 111 98 68 73 111 91 64 64 108 92 60 61 108 99 64 61 108 99 59 58 104 100 59 58 104 100 59 61 109 100 5
68 69 111 98 68 73 111 91 68 77 98 79 60 61 108 99 64 61 108 99 64 68 108 92 59 58 104 100 59 61 109 100 63 64 104 96 5
76 85 98 76 72 81 86 72 68 73 78 65 80 99 104 85 80 95 100 81 71 79 91 74 79 95 96 79 79 95 96 79 75 87 93 79 4
68 73 78 65 64 66 74 65 64 73 82 68 71 79 91 74 68 71 83 67 68 71 83 70 75 87 93 79 71 75 85 71 75 79 89 71 7
84 99 100 81 88 99 104 85 84 99 100 81 88 99 109 83 84 99 100 79 84 103 104 83 86 100 104 81 82 96 104 81 82 100 104 81 3
50 71 91 78 50 68 87 74 50 71 87 70 48 61 81 67 48 64 85 71 51 72 85 75 46 75 96 78 46 71 84 74 46 67 84 74 1
50 68 87 74 50 71 87 70 50 71 87 74 48 64 85 71 51 72 85 75 51 72 85 75 46 71 84 74 46 67 84 74 49 71 92 74 1
53 75 87 78 50 75 91 81 50 75 96 78 55 79 96 79 51 75 93 75 51 75 89 75 52 79 96 78 52 79 92 81 52 71 84 74 1
50 75 91 81 50 75 96 78 56 75 91 74 51 75 93 75 51 75 89 75 55 72 89 71 52 79 92 81 52 71 84 74 52 71 84 70 1
56 68 83 67 53 68 83 70 53 71 87 74 55 68 81 71 51 72 81 71 55 75 85 75 52 71 80 70 52 71 84 70 56 75 92 74 1
64 91 100 81 68 87 96 81 60 83 96 81 67 91 109 87 75 91 109 92 75 95 104 87 63 83 100 85 63 83 100 85 66 87 100 85 1
68 87 96 81 60 83 96 81 64 87 104 85 75 91 109 92 75 95 104 87 71 95 104 87 63 83 100 85 66 87 100 85 66 83 100 81 1
68 91 104 85 68 87 104 88 60 75 91 78 75 95 104 87 67 83 96 79 59 72 85 71 66 87 104 89 70 96 104 89 63 79 88 78 1
64 83 96 88 68 99 113 88 68 99 108 85 63 79 96 83 67 99 109 92 67 103 109 92 59 67 84 74 59 79 96 81 63 87 108 89 1
56 95 108 92 56 87 108 85 56 83 100 85 59 95 113 92 63 95 109 87 63 87 100 83 63 96 112 89 63 100 122 92 63 104 117 92 1
56 87 108 85 56 83 100 85 56 83 96 85 63 95 109 87 63 87 100 83 63 87 100 87 63 100 122 92 63 104 117 92 63 96 108 89 1
60 99 108 92 64 99 113 92 68 99 118 99 63 99 113 92 63 103 113 96 71 103 113 96 66 100 112 92 70 100 112 92 70 104 112 96 1
68 112 122 99 71 112 128 99 71 103 122 96 71 111 118 96 67 99 113 96 67 91 104 92 70 100 112 96 66 104 122 96 70 100 117 96 1
71 112 128 99 71 103 122 96 64 91 104 92 67 99 113 96 67 91 104 92 59 75 100 83 66 104 122 96 70 100 117 96 63 83 104 89 1
60 91 108 88 60 83 108 92 60 64 100 99 59 87 104 92 67 99 109 92 67 87 100 83 59 79 92 81 63 75 104 85 70 100 112 92 1
43 36 118 128 46 39 108 114 50 48 104 107 55 61 100 96 55 64 104 92 59 64 100 92 63 71 104 92 59 67 104 96 59 63 104 96 5
46 39 108 114 50 48 104 107 50 57 96 96 55 64 104 92 59 64 100 92 55 61 100 87 59 67 104 96 59 63 104 96 59 60 100 92 5
56 61 96 88 56 61 91 85 56 64 91 85 55 58 96 87 59 58 93 83 59 61 89 79 56 60 100 89 56 60 88 81 56 60 88 78 5
64 68 104 88 64 64 108 92 60 61 108 99 59 64 100 92 59 58 104 100 59 58 104 100 59 67 88 74 63 71 92 81 59 60 96 92 5
80 95 100 81 71 79 91 74 68 71 83 67 79 95 96 79 75 87 93 79 71 75 85 71 74 87 92 78 74 91 100 81 78 96 96 81 4
71 79 91 74 68 71 83 67 68 71 83 70 75 87 93 79 71 75 85 71 75 79 89 71 74 91 100 81 78 96 96 81 78 91 96 78 7
84 95 100 79 88 99 104 83 88 103 104 83 82 96 100 81 86 96 104 81 86 96 108 81 83 91 97 79 79 95 97 75 83 95 97 79 3
88 99 104 83 88 103 104 83 84 95 100 79 86 96 104 81 86 96 108 81 86 104 108 81 79 95 97 75 83 95 97 79 83 95 105 83 3
84 95 100 79 79 99 96 79 79 91 96 79 86 104 108 81 86 96 104 81 82 96 100 78 83 95 105 83 83 95 101 79 79 95 101 79 3
79 99 96 79 79 91 96 79 84 95 100 79 86 96 104 81 82 96 100 78 82 96 100 81 83 95 101 79 79 95 101 79 83 95 101 79 3
88 107 109 87 84 99 104 79 84 99 104 79 90 109 112 92 90 104 112 89 90 100 108 85 96 112 110 94 96 108 114 90 92 103 110 86 3
84 99 104 79 84 99 104 79 88 99 109 83 90 104 112 89 90 100 108 85 86 104 104 81 96 108 114 90 92 103 110 86 87 103 110 83 3
84 99 104 79 88 99 109 83 84 103 100 83 90 100 108 85 86 104 104 81 86 100 108 85 92 103 110 86 87 103 110 83 87 99 105 86 3
84 103 100 83 84 99 104 83 88 99 109 83 86 100 108 85 86 104 112 85 86 100 104 81 87 99 105 86 87 99 105 86 83 95 105 83 3
84 99 104 83 88 99 109 83 84 99 100 79 86 104 112 85 86 100 104 81 82 96 104 81 87 99 105 86 83 95 105 83 83 99 105 83 3
55 83 100 83 51 75 93 79 51 64 85 75 56 91 108 89 52 83 100 81 49 75 92 78 52 84 97 86 52 81 97 79 52 73 90 79 1
48 61 81 67 48 64 85 71 51 72 85 75 46 75 96 78 46 71 84 74 46 67 84 74 49 73 97 83 49 77 93 75 46 66 86 72 1
55 79 89 79 55 79 96 79 59 83 96 79 56 79 88 78 56 83 92 81 56 83 100 78 59 84 97 83 56 88 97 83 52 84 97 83 1
71 99 104 87 67 103 109 87 63 91 109 87 59 87 96 81 66 100 108 89 66 96 108 92 56 81 97 79 59 84 93 79 59 88 105 86 1
63 91 100 83 67 91 109 87 75 91 109 92 59 83 96 81 63 83 100 85 63 83 100 85 59 73 93 75 63 81 93 83 63 91 101 86 1
67 91 109 87 75 91 109 92 75 95 104 87 63 83 100 85 63 83 100 85 66 87 100 85 63 81 93 83 63 91 101 86 59 88 101 83 1
75 91 109 92 75 95 104 87 71 95 104 87 63 83 100 85 66 87 100 85 66 83 100 81 63 91 101 86 59 88 101 83 67 84 93 83 1
71 95 104 87 75 91 109 92 75 95 104 87 66 83 100 81 66 83 96 81 66 87 104 89 67 84 93 83 67 84 97 83 59 77 90 75 1
67 99 109 92 67 103 109 92 63 95 109 87 59 79 96 81 63 87 108 89 63 91 112 89 63 91 101 90 67 103 114 94 63 99 114 90 1
63 95 109 87 63 87 100 83 63 87 100 87 63 100 122 92 63 104 117 92 63 96 108 89 67 103 114 94 67 103 114 94 67 99 110 94 1
71 103 113 96 71 103 113 96 71 107 123 100 70 104 112 96 70 104 112 96 70 100 112 92 75 108 114 94 71 108 114 94 75 108 119 98 1
71 103 113 96 71 107 123 100 71 111 118 96 70 104 112 96 70 100 112 92 70 100 112 96 71 108 114 94 75 108 119 98 75 103 119 98 1
71 111 118 96 67 99 113 96 67 91 104 92 70 100 112 96 66 104 122 96 70 100 117 96 75 103 119 98 71 99 114 98 75 108 124 98 1
67 99 113 96 67 91 104 92 59 75 100 83 66 104 122 96 70 100 117 96 63 83 104 89 71 99 114 98 75 108 124 98 71 99 110 94 1
67 87 100 83 63 79 100 87 59 68 96 92 70 100 112 92 70 100 108 89 66 79 96 85 63 81 101 86 71 95 119 94 67 88 105 86 1
55 61 100 96 55 64 104 92 59 64 100 92 63 71 104 92 59 67 104 96 59 63 104 96 63 73 97 86 59 70 105 94 63 66 101 90 5
59 61 85 75 59 75 89 79 59 64 100 92 56 60 84 78 52 56 80 74 59 67 88 74 52 54 86 83 49 45 86 86 49 51 86 83 5
59 61 109 100 63 64 104 96 71 79 96 79 56 63 104 96 59 67 104 96 63 67 108 96 59 60 97 90 59 63 93 90 63 66 97 94 5
63 64 104 96 71 79 96 79 79 95 96 79 59 67 104 96 63 67 108 96 70 75 104 85 59 63 93 90 63 66 97 94 67 77 110 90 5
86 96 108 81 86 104 108 81 86 96 104 81 83 95 97 79 83 95 105 83 83 95 101 79 78 92 101 76 78 92 97 76 82 97 97 80 3
86 104 108 81 86 96 104 81 82 96 100 78 83 95 105 83 83 95 101 79 79 95 101 79 78 92 97 76 82 97 97 80 85 97 97 80 3
86 96 104 81 82 96 100 78 82 96 100 81 83 95 101 79 79 95 101 79 83 95 101 79 82 97 97 80 85 97 97 80 85 106 105 80 3
82 91 104 78 86 100 108 85 90 109 112 92 83 95 105 83 92 103 110 90 96 112 110 94 93 111 114 90 93 115 114 94 93 111 114 94 3
90 109 112 92 90 104 112 89 90 100 108 85 96 112 110 94 96 108 114 90 92 103 110 86 93 111 114 94 89 102 110 87 85 97 110 83 3
90 104 112 89 90 100 108 85 86 104 104 81 96 108 114 90 92 103 110 86 87 103 110 83 89 102 110 87 85 97 110 83 85 102 105 80 3
86 100 108 85 86 104 112 85 86 100 104 81 87 99 105 86 87 99 105 86 83 95 105 83 85 102 105 83 85 97 101 83 85 97 101 83 3
86 100 104 81 82 96 104 81 82 100 104 81 83 95 105 83 83 99 105 83 87 103 105 86 85 97 101 83 89 102 105 87 85 102 110 87 3
82 104 112 85 86 104 108 92 82 100 108 89 87 99 105 86 83 95 105 90 79 99 110 90 85 102 110 94 78 92 110 87 70 88 105 90 3
56 91 108 89 52 83 100 81 49 75 92 78 52 84 97 86 52 81 97 79 52 73 90 79 50 79 101 83 50 75 93 80 50 71 89 80 1
52 71 84 70 52 71 80 70 52 71 84 70 52 70 86 72 52 70 86 72 56 73 86 75 53 79 89 76 53 75 93 73 53 71 85 69 1
56 83 100 78 59 87 96 81 66 100 108 89 52 84 97 83 56 81 97 79 59 84 93 79 57 75 97 76 57 79 93 80 60 84 93 80 1
66 96 108 92 59 91 100 85 56 79 96 81 59 88 105 86 63 95 110 86 63 84 101 83 60 75 93 83 63 84 97 83 63 84 93 80 1
59 91 100 85 56 79 96 81 59 83 96 81 63 95 110 86 63 84 101 83 59 73 93 75 63 84 97 83 63 84 93 80 63 79 89 83 1
59 83 96 81 63 83 100 85 63 83 100 85 59 73 93 75 63 81 93 83 63 91 101 86 63 79 89 83 67 88 105 87 67 92 101 90 1
63 83 100 85 66 87 100 85 66 83 100 81 63 91 101 86 59 88 101 83 67 84 93 83 67 92 101 90 60 84 97 83 63 75 97 80 1
66 87 100 85 66 83 100 81 66 83 96 81 59 88 101 83 67 84 93 83 67 84 97 83 60 84 97 83 63 75 97 80 63 79 85 80 1
66 83 96 81 66 87 104 89 70 96 104 89 67 84 97 83 59 77 90 75 59 73 97 79 63 79 85 80 60 75 89 80 60 84 97 80 1
66 87 104 89 70 96 104 89 63 79 88 78 59 77 90 75 59 73 97 79 59 73 93 75 60 75 89 80 60 84 97 80 63 92 105 87 1
70 96 104 89 63 79 88 78 56 63 84 70 59 73 97 79 59 73 93 75 63 73 93 75 60 84 97 80 63 92 105 87 63 92 105 87 1
56 63 84 70 59 67 84 74 59 79 96 81 63 73 93 75 59 81 93 79 63 91 101 90 63 92 105 87 60 92 110 90 67 102 114 90 1
59 67 84 74 59 79 96 81 63 87 108 89 59 81 93 79 63 91 101 90 67 103 114 94 60 92 110 90 67 102 114 90 70 106 119 94 1
63 87 108 89 63 91 112 89 63 96 112 89 67 103 114 94 63 99 114 90 63 103 114 94 70 106 119 94 67 106 110 90 70 111 114 97 1
63 100 122 92 63 104 117 92 63 96 108 89 67 103 114 94 67 103 114 94 67 99 110 94 70 115 119 97 67 106 124 94 67 106 114 94 1
66 96 112 89 66 100 112 92 70 100 112 92 67 103 114 94 71 103 114 98 75 112 119 98 70 106 119 94 70 106 119 94 74 111 114 97 1
66 100 112 92 70 100 112 92 70 104 112 96 71 103 114 98 75 112 119 98 75 108 114 94 70 106 119 94 74 111 114 97 70 111 124 97 1
70 104 112 96 70 104 112 96 70 100 112 92 75 108 114 94 71 108 114 94 75 108 119 98 70 111 124 97 70 106 114 94 74 106 114 97 1
63 83 104 89 59 79 92 81 63 75 104 85 71 99 110 94 67 77 97 79 63 66 90 79 67 97 114 90 67 84 101 87 74 92 105 90 1
63 75 104 85 70 100 112 92 70 100 108 89 63 66 90 79 63 81 101 86 71 95 119 94 74 92 105 90 78 92 110 94 78 97 114 97 1
70 100 112 92 70 100 108 89 66 79 96 85 63 81 101 86 71 95 119 94 67 88 105 86 78 92 110 94 78 97 114 97 70 92 110 83 1
63 71 104 92 59 67 104 96 59 63 104 96 63 73 97 86 59 70 105 94 63 66 101 90 60 75 101 83 60 75 101 83 60 75 97 80 5
56 60 100 89 56 60 88 81 56 60 88 78 59 63 90 83 59 63 86 83 56 60 86 79 60 71 93 80 57 67 93 83 53 60 93 80 5
56 60 88 78 56 60 84 78 52 56 80 74 56 60 86 79 52 54 86 83 49 45 86 86 53 60 93 80 47 49 82 83 44 43 82 87 5
56 60 84 78 52 56 80 74 59 67 88 74 52 54 86 83 49 45 86 86 49 51 86 83 47 49 82 83 44 43 82 87 50 46 82 83 5
52 56 80 74 59 67 88 74 63 71 92 81 49 45 86 86 49 51 86 83 59 70 90 72 44 43 82 87 50 46 82 83 57 67 85 76 5
59 67 104 96 63 67 108 96 70 75 104 85 59 63 93 90 63 66 97 94 67 77 110 90 63 71 101 87 63 71 101 90 67 75 105 90 5
83 95 97 79 83 95 105 83 83 95 101 79 78 92 101 76 78 92 97 76 82 97 97 80 80 94 102 79 80 98 94 76 84 94 98 79 3
83 95 105 83 83 95 101 79 79 95 101 79 78 92 97 76 82 97 97 80 85 97 97 80 80 98 94 76 84 94 98 79 88 106 106 87 3
83 95 101 79 79 95 101 79 83 95 101 79 82 97 97 80 85 97 97 80 85 106 105 80 84 94 98 79 88 106 106 87 92 115 115 94 3
83 95 101 79 83 95 105 83 92 103 110 90 85 106 105 80 93 111 114 90 93 115 114 94 92 115 115 94 92 120 125 98 92 115 115 87 3
52 81 97 79 52 73 90 79 49 73 97 83 50 75 93 80 50 71 89 80 50 75 101 80 50 69 86 72 50 69 90 76 50 69 90 76 1
49 73 97 83 49 77 93 75 46 66 86 72 50 75 101 80 47 75 97 80 50 71 89 76 50 69 90 76 50 73 94 76 50 73 90 76 1
49 70 86 72 52 70 82 75 49 66 86 75 53 75 97 80 53 71 89 73 50 71 89 73 53 77 98 79 53 81 98 79 53 77 94 76 1
49 66 86 75 52 66 86 72 52 70 86 72 50 71 89 73 50 71 85 73 53 79 89 76 53 77 94 76 53 73 98 76 57 77 98 79 1
52 66 86 72 52 70 86 72 52 70 86 72 50 71 85 73 53 79 89 76 53 75 93 73 53 73 98 76 57 77 98 79 57 73 90 72 1
56 88 97 83 52 84 97 83 56 81 97 79 57 79 97 80 57 75 97 76 57 79 93 80 57 73 90 76 53 73 90 76 57 77 94 79 1
63 84 101 83 59 73 93 75 63 81 93 83 63 84 93 80 63 79 89 83 67 88 105 87 60 81 94 79 64 81 98 83 64 85 98 83 1
59 73 93 75 63 81 93 83 63 91 101 86 63 79 89 83 67 88 105 87 67 92 101 90 64 81 98 83 64 85 98 83 64 85 102 83 1
63 81 93 83 63 91 101 86 59 88 101 83 67 88 105 87 67 92 101 90 60 84 97 83 64 85 98 83 64 85 102 83 60 81 90 76 1
59 77 90 75 59 73 97 79 59 73 93 75 60 75 89 80 60 84 97 80 63 92 105 87 68 98 111 91 64 98 106 91 64 94 111 91 1
59 73 93 75 63 73 93 75 59 81 93 79 63 92 105 87 63 92 105 87 60 92 110 90 64 94 111 91 60 94 111 91 64 98 111 91 1
59 81 93 79 63 91 101 90 67 103 114 94 60 92 110 90 67 102 114 90 70 106 119 94 64 98 111 91 68 106 115 94 72 106 115 98 1
75 108 124 98 71 99 110 94 67 77 97 79 70 106 114 94 67 97 114 90 67 84 101 87 76 111 115 94 76 106 115 94 76 102 111 98 1
63 66 90 79 63 81 101 86 71 95 119 94 74 92 105 90 78 92 110 94 78 97 114 97 80 111 125 102 88 115 131 102 88 111 120 94 1
71 95 119 94 67 88 105 86 63 73 97 86 78 97 114 97 70 92 110 83 60 75 101 83 88 111 120 94 76 89 102 76 64 77 94 76 5
63 73 97 86 59 70 105 94 63 66 101 90 60 75 101 83 60 75 101 83 60 75 97 80 64 77 94 76 60 77 94 76 57 81 90 76 5
59 70 105 94 63 66 101 90 59 66 97 86 60 75 101 83 60 75 97 80 57 71 97 80 60 77 94 76 57 81 90 76 60 85 94 79 5
59 66 97 86 59 63 90 83 59 63 86 83 57 71 97 80 60 71 93 80 57 67 93 83 60 85 94 79 60 81 90 83 60 73 90 83 5
59 63 90 83 59 63 86 83 56 60 86 79 60 71 93 80 57 67 93 83 53 60 93 80 60 81 90 83 60 73 90 83 53 62 86 83 5
59 63 86 83 56 60 86 79 52 54 86 83 57 67 93 83 53 60 93 80 47 49 82 83 60 73 90 83 53 62 86 83 50 52 82 83 5
56 60 86 79 52 54 86 83 49 45 86 86 53 60 93 80 47 49 82 83 44 43 82 87 53 62 86 83 50 52 82 83 50 52 78 83 5
59 60 97 90 59 63 93 90 63 66 97 94 60 60 97 87 63 71 101 87 63 71 101 90 60 66 102 91 60 62 106 94 60 66 106 94 5
67 77 110 90 75 91 97 79 79 91 97 83 67 75 105 90 74 88 105 83 74 92 101 80 64 73 102 94 76 89 106 87 76 89 98 79 4
75 91 97 79 79 91 97 83 79 91 97 79 74 88 105 83 74 92 101 80 74 84 97 76 76 89 106 87 76 89 98 79 72 89 98 79 4
79 91 97 83 79 91 97 79 75 88 93 75 74 92 101 80 74 84 97 76 74 88 93 76 76 89 98 79 72 89 98 79 76 85 98 79 4
85 102 110 87 85 102 110 94 78 92 110 87 88 106 111 91 88 106 111 98 76 94 106 91 84 99 108 92 84 107 113 96 84 107 122 96 3
50 79 101 83 50 75 93 80 50 71 89 80 50 73 86 76 50 69 86 72 50 69 90 76 50 79 100 81 50 75 96 78 46 71 87 74 1
50 75 101 80 47 75 97 80 50 71 89 76 50 69 90 76 50 73 94 76 50 73 90 76 50 71 87 74 50 75 91 78 50 79 96 78 1
50 71 89 76 50 67 93 76 50 75 97 80 50 73 90 76 50 73 94 79 53 81 102 83 50 79 96 78 46 79 96 78 50 79 96 81 1
50 75 97 80 53 75 97 80 53 71 89 73 53 81 102 83 53 77 98 79 53 81 98 79 50 79 96 81 53 79 96 81 53 83 96 78 1
57 79 97 80 57 79 97 80 57 75 97 76 57 77 94 76 57 73 90 76 53 73 90 76 56 71 79 74 56 75 87 74 56 75 96 74 1
57 79 97 80 57 75 97 76 57 79 93 80 57 73 90 76 53 73 90 76 57 77 94 79 56 75 87 74 56 75 96 74 60 79 91 81 1
60 75 93 83 63 84 97 83 63 84 93 80 60 73 90 79 60 73 90 79 60 81 94 79 60 83 96 81 68 83 96 81 64 87 104 85 1
63 79 89 83 67 88 105 87 67 92 101 90 64 81 98 83 64 85 98 83 64 85 102 83 60 83 100 85 64 83 96 81 60 87 104 85 1
67 88 105 87 67 92 101 90 60 84 97 83 64 85 98 83 64 85 102 83 60 81 90 76 64 83 96 81 60 87 104 85 60 91 108 85 1
60 84 97 83 63 75 97 80 63 79 85 80 60 81 90 76 60 81 90 79 68 89 106 87 60 91 108 85 64 91 113 88 64 95 113 88 1
63 79 85 80 60 75 89 80 60 84 97 80 68 89 106 87 68 98 111 91 64 98 106 91 64 95 113 88 68 103 113 88 68 103 118 92 1
63 92 105 87 60 92 110 90 67 102 114 90 60 94 111 91 64 98 111 91 68 106 115 94 68 107 118 92 68 103 118 92 71 103 118 92 1
67 106 110 90 70 111 114 97 70 115 119 97 72 106 115 94 68 106 120 94 72 111 120 94 68 107 122 96 68 103 118 92 64 103 122 92 1
70 111 114 97 70 115 119 97 67 106 124 94 68 106 120 94 72 111 120 94 64 106 115 94 68 103 118 92 64 103 122 92 71 107 122 96 1
70 106 114 94 74 106 114 97 70 111 119 97 76 111 115 94 76 111 115 94 72 106 115 91 76 107 122 99 71 116 122 99 76 107 122 103 1
70 111 119 97 70 102 114 94 70 106 114 94 72 106 115 91 72 106 115 94 76 111 115 94 76 107 122 103 76 112 122 96 76 112 122 99 1
60 75 101 83 60 75 101 83 60 75 97 80 64 77 94 76 60 77 94 76 57 81 90 76 64 79 96 81 60 83 100 81 60 83 96 85 1
60 75 101 83 60 75 97 80 57 71 97 80 60 77 94 76 57 81 90 76 60 85 94 79 60 83 100 81 60 83 96 85 64 87 100 88 1
60 75 97 80 57 71 97 80 60 71 93 80 57 81 90 76 60 85 94 79 60 81 90 83 60 83 96 85 64 87 100 88 64 83 104 88 1
53 60 93 80 47 49 82 83 44 43 82 87 53 62 86 83 50 52 82 83 50 52 78 83 56 71 96 85 56 68 91 81 56 64 91 81 5
47 49 82 83 44 43 82 87 50 46 82 83 50 52 82 83 50 52 78 83 50 52 82 79 56 68 91 81 56 64 91 81 53 64 83 78 5
60 60 97 87 63 71 101 87 63 71 101 90 60 66 102 91 60 62 106 94 60 66 106 94 60 64 104 99 56 64 108 96 64 71 108 96 5
80 98 94 76 84 94 98 79 88 106 106 87 84 95 100 85 84 103 108 92 92 107 118 96 93 107 113 92 93 111 123 96 97 111 123 96 3
84 102 102 79 80 94 94 76 80 94 98 79 84 95 96 74 80 95 96 74 84 95 100 81 79 91 100 75 79 95 100 79 79 95 100 79 3
84 102 111 91 84 102 106 91 88 106 111 91 84 103 113 96 84 99 113 88 84 99 108 92 88 103 109 92 84 99 109 92 88 103 113 96 3
68 94 111 91 57 81 102 83 50 77 90 79 68 103 113 92 53 91 104 88 50 79 104 85 67 103 113 96 55 91 109 87 55 87 100 87 1
57 81 102 83 50 77 90 79 50 73 86 76 53 91 104 88 50 79 104 85 50 79 100 81 55 91 109 87 55 87 100 87 55 83 100 87 1
50 69 90 76 50 73 94 76 50 73 90 76 50 71 87 74 50 75 91 78 50 79 96 78 51 79 96 79 51 75 96 79 48 72 89 79 1
50 73 94 79 53 81 102 83 53 77 98 79 46 79 96 78 50 79 96 81 53 79 96 81 48 68 89 75 48 75 89 79 51 75 96 79 1
53 81 102 83 53 77 98 79 53 81 98 79 50 79 96 81 53 79 96 81 53 83 96 78 48 75 89 79 51 75 96 79 51 72 89 75 1
57 77 98 79 57 73 90 72 50 62 78 68 53 71 87 74 53 71 83 74 53 71 87 74 55 79 93 75 51 75 89 75 51 68 85 75 1
57 73 90 72 50 62 78 68 53 69 82 76 53 71 83 74 53 71 87 74 53 68 83 70 51 75 89 75 51 68 85 75 51 68 81 71 1
60 81 98 79 60 73 90 79 60 73 90 79 64 87 100 85 60 83 96 81 68 83 96 81 63 95 104 83 63 95 104 83 63 95 104 87 1
60 81 94 79 64 81 98 83 64 85 98 83 64 87 104 85 60 83 100 85 64 83 96 81 63 95 104 87 63 91 104 83 63 91 104 83 1
60 81 90 79 68 89 106 87 68 98 111 91 64 91 113 88 64 95 113 88 68 103 113 88 67 103 113 92 71 103 109 92 71 103 113 92 1
68 89 106 87 68 98 111 91 64 98 106 91 64 95 113 88 68 103 113 88 68 103 118 92 71 103 109 92 71 103 113 92 71 107 118 92 1
64 98 106 91 64 94 111 91 60 94 111 91 68 103 118 92 68 107 113 92 68 107 118 92 71 107 118 92 71 107 113 96 71 103 118 92 1
72 106 115 91 76 111 115 94 76 111 115 94 71 107 118 96 76 107 122 99 71 116 122 99 71 107 113 96 75 103 118 96 75 103 118 96 1
76 106 115 94 76 102 111 98 80 111 125 102 80 107 122 96 76 107 118 96 84 116 128 103 84 103 118 96 71 79 109 92 79 103 123 100 1
76 102 111 98 80 111 125 102 88 115 131 102 76 107 118 96 84 116 128 103 92 116 133 103 71 79 109 92 79 103 123 100 84 111 128 100 1
88 115 131 102 88 111 120 94 76 89 102 76 92 116 133 103 84 112 122 96 71 83 96 85 84 111 128 100 84 103 118 92 71 79 96 79 1
64 77 94 76 60 77 94 76 57 81 90 76 64 79 96 81 60 83 100 81 60 83 96 85 63 75 96 83 67 83 104 87 59 83 100 83 1
60 85 94 79 60 81 90 83 60 73 90 83 64 87 100 88 64 83 104 88 64 79 100 85 63 87 100 87 63 83 104 87 63 79 100 87 1
50 52 82 83 50 52 78 83 50 52 82 79 56 68 91 81 56 64 91 81 53 64 83 78 59 72 96 83 59 75 96 75 59 75 89 75 5
50 52 82 79 57 66 82 72 60 77 90 83 53 64 83 78 56 68 87 74 60 71 91 81 59 75 89 75 59 79 89 71 63 79 93 75 5
60 77 90 83 60 66 102 91 60 62 106 94 60 71 91 81 60 64 104 99 56 64 108 96 63 79 93 75 63 68 109 92 59 75 109 96 5
60 62 106 94 60 66 106 94 64 73 102 94 56 64 108 96 64 71 108 96 68 75 108 96 59 75 109 96 67 87 113 96 67 95 109 92 5
84 99 108 81 80 95 100 81 84 95 100 85 88 103 109 87 88 103 109 87 93 107 113 92 78 100 100 81 86 104 108 85 90 109 112 92 3
84 99 113 88 84 99 108 92 84 107 113 96 84 99 109 92 88 103 113 96 88 103 118 100 90 104 112 92 90 104 112 89 95 109 117 96 3
84 107 122 96 68 103 113 92 53 91 104 88 79 107 123 100 67 103 113 96 55 91 109 87 86 104 117 100 74 104 122 96 66 104 122 96 1
68 103 113 92 53 91 104 88 50 79 104 85 67 103 113 96 55 91 109 87 55 87 100 87 74 104 122 96 66 104 122 96 56 91 112 89 1
53 91 104 88 50 79 104 85 50 79 100 81 55 91 109 87 55 87 100 87 55 83 100 87 66 104 122 96 56 91 112 89 56 87 112 89 1
53 79 96 81 53 83 96 78 53 75 96 78 51 75 96 79 51 72 89 75 48 79 93 79 49 67 84 74 49 71 92 78 52 75 92 78 1
53 83 96 78 53 75 96 78 53 71 87 74 51 72 89 75 48 79 93 79 55 79 93 79 49 71 92 78 52 75 92 78 52 75 92 78 1
56 75 87 74 56 75 96 74 60 79 91 81 55 72 85 75 59 79 93 79 63 87 100 83 56 75 92 74 56 79 96 78 59 87 100 81 1
56 75 96 74 60 79 91 81 64 87 100 85 59 79 93 79 63 87 100 83 63 95 104 83 56 79 96 78 59 87 100 81 59 87 100 89 1
60 91 108 85 64 91 113 88 64 95 113 88 71 103 113 92 67 103 113 92 71 103 109 92 70 104 117 92 70 109 117 96 70 109 112 96 1
64 95 113 88 68 103 113 88 68 103 118 92 71 103 109 92 71 103 113 92 71 107 118 92 70 109 112 96 66 104 112 92 70 104 112 92 1
68 103 118 92 68 107 113 92 68 107 118 92 71 107 118 92 71 107 113 96 71 103 118 92 70 104 112 92 70 109 117 96 70 109 117 92 1
68 103 118 92 71 103 118 92 71 103 118 96 67 103 118 92 71 103 118 96 71 103 109 92 70 104 112 92 70 109 112 92 70 109 117 96 1
71 103 118 92 71 103 118 96 68 107 122 96 71 103 118 96 71 103 109 92 71 99 113 92 70 109 112 92 70 109 117 96 70 100 108 92 1
71 103 118 96 68 107 122 96 68 103 118 92 71 103 109 92 71 99 113 92 71 99 118 96 70 109 117 96 70 100 108 92 66 100 112 92 1
68 107 122 96 68 103 118 92 64 103 122 92 71 99 113 92 71 99 118 96 67 103 118 96 70 100 108 92 66 100 112 92 66 104 117 92 1
76 112 122 99 80 107 122 96 76 107 118 96 84 111 123 100 84 103 118 96 71 79 109 92 78 104 112 96 78 104 112 96 74 83 108 89 1
80 107 122 96 76 107 118 96 84 116 128 103 84 103 118 96 71 79 109 92 79 103 123 100 78 104 112 96 74 83 108 89 66 71 100 85 1
84 116 128 103 92 116 133 103 84 112 122 96 79 103 123 100 84 111 128 100 84 103 118 92 66 71 100 85 74 83 104 92 78 96 112 96 1
60 83 96 85 64 87 100 88 64 83 104 88 59 83 100 83 63 87 100 87 63 83 104 87 66 91 104 92 66 87 108 89 63 83 104 85 1
64 79 100 85 56 71 96 85 56 68 91 81 63 79 100 87 59 75 96 87 59 72 96 83 63 83 100 85 66 83 100 85 63 83 100 81 1
56 68 91 81 56 64 91 81 53 64 83 78 59 72 96 83 59 75 96 75 59 75 89 75 63 83 100 81 59 87 96 81 63 83 92 74 5
56 68 87 74 60 71 91 81 60 64 104 99 59 79 89 71 63 79 93 75 63 68 109 92 59 83 96 74 59 83 92 74 59 83 92 70 5
60 71 91 81 60 64 104 99 56 64 108 96 63 79 93 75 63 68 109 92 59 75 109 96 59 83 92 74 59 83 92 70 63 79 108 92 5
|
2ee47f74e93dd8772f10c0b645ec7e7eba647010 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1979/CH8/EX8.9/Ex8_9.sce | e159f61d5ec6734844f56da3a35c72274ec325e2 | [] | 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 | 773 | sce | Ex8_9.sce | //chapter-8 page 343 example 8.9
//==============================================================================
clc;
clear;
//For a helical TWT
c=3*10^8;//Velocity of light in m/sec
d=0.002;//diameter in m
x=5000;//no.of turns per m
m=9.1*10^(-31);//mass of an electron in kg
e=1.6*10^(-19);//charge of an electron in C
//CALCULATION
y=(%pi)*d;//circumference in m
p=1/x;//pitch in m
Vp=(c*p)/y;//Axial phase velocity in m/sec
V0=((m*Vp^2)/(2*e));//The Anode voltage at which the TWT can be operated for useful gain in V
//OUTPUT
mprintf('\nAxial phase velocity is Vp=%6.2f m/sec \nThe Anode voltage at which the TWT can be operated for useful gain is V0=%2.2f V',Vp,V0);
//=========================END OF PROGRAM===============================
|
38b12f0d56a1b1e48c30fde989fca7f17ef0291d | 449d555969bfd7befe906877abab098c6e63a0e8 | /2333/CH1/EX1.28/28.sce | 69f384c0701f8e531f95e3e820ea53b5db16c761 | [] | 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 | 438 | sce | 28.sce | clc
// Given that
m_p = 1.6e-27 // mass of proton in kg
m_e = 9.1e-31 // mass of electron in kg
c = 3e8 // speed of light in m/sec
// Sample Problem 28 on page no. 54
printf("\n # PROBLEM 28 # \n")
printf(" Standard formula used \n")
printf("\n m = m_0/sqrt(1-(v/c)^2) \n")
v = c* sqrt(1-(m_e/m_p)^2) // velocity of moving electron in m/sec
printf("\n Velocity of moving electron is %e m/sec. ",v)
// But real answer is 2.99e8 m/sec
|
a2402d45957ea03a40084b410f1043095257526e | 3389c1cdaf3066846fbbac0bc8c2a1fdb8fe0fca | /Metodo_newton_2_unknows_jonatas_bazzoli/Metodo_newton_2_unknow_jonatas_bazzoli.sce | df81d5dc713df5c06438f3c14c78210d296be2a9 | [] | no_license | jbazzoli/AgoritmosNumericos | bc7936d6a2db10a34a2c2f1a3033dc44f6f66d24 | 169f816992a5c0ddb5bfa54d1efb34c384e9201f | refs/heads/master | 2020-07-15T16:19:11.756569 | 2019-08-31T23:24:04 | 2019-08-31T23:24:04 | 205,606,105 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 752 | sce | Metodo_newton_2_unknow_jonatas_bazzoli.sce | //função são f(x)=x*x+y*y-2 e g(x)=x*x-y*y-1
x1=6;
x0=2.0;
y1=6;
y0=0.2;
f=0;
fx=0;
g=0;
gy=0;
gx=0;
fy=0;
eps=0.001;
cont=0;
cont2=0;
r1=0.7070;
y2=0;
erroant=0;
erroprox=0;
erro=0;
p=0;
while (sqrt(((x0-x1)/x0)^2)>eps) & (sqrt(((y0-y1)/y0)^2)>eps)
if cont2>2
y2=y1;
erroant=sqrt((y2-r1)^2)
cont2=0;
end
x1=x0;
y1=y0;
f=x0^2+y0^2-2;
g=x0^2-y0^2-1;
fx=2*x0;
gx=2*x0;
fy=2*y0;
gy=-2*y0;
x0=x0-((f*gy-g*fy)/(fx*gy-fy*gx));
y0=y0-((g*fx-f*gx)/(fx*gy-fy*gx));
cont=cont+1;
erro=sqrt((y1-r1)^2)
erroprox=sqrt((y0-r1)^2)
cont2=cont2+1;
end
p=(log(sqrt((erroprox/erro)^2))/log(sqrt((erro/erroant)^2)));
disp(x0,y0,"valor x e valor y");
disp(cont,"iteration:");
disp(p,"covergencia");
|
cef42048e9b78351915dc0ab1c707e1e0b81e2e3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /405/CH7/EX7.8/7_8.sce | 235af8e82e2e1738c4e1c45df39caf964b1733b0 | [] | 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,709 | sce | 7_8.sce | clear;
clc;
printf("\t\t\tExample Number 7.8\n\n\n");
// heat transfer across vertical air gap
// Example 7.8 (page no.-345)
// solution
L = 0.5;// [m] side length vertical square plate
d = 0.015;// [m] distance between plates
p = 101325;// [Pa] pressure of air
R = 287;// [] universal gas constant
T1 = 100;// [degree celsius] temperature of first plate
T2 = 40;// [degree celsius] temperature of second plate
E = 0.2;// emissivity of both surfaces
// the properties of air is evaluated at the mean temperature
Tf = (T1+T2)/2;// [degree celsius]
rho = p/(R*(Tf+273));// [Kg/m^(3)] density
k = 0.0295;// [W/m degree celsius]
Pr = 0.70;// prandtl number
Beta = 1/(Tf+273);// [K^(-1)]
mu = 2.043*10^(-5);// [Kg/m s] viscosity
g = 9.8;// [square meter/s] acceleration due to gravity
// the Grashof-prandtl number product is now calculated as
Gr_into_Pr = (g*rho^(2)*Beta*(T1-T2)*(d)^(3)*Pr)/(mu^(2));
// we may now use equation (7-64) to calculate the effective thermal conductivity, with
L = 0.5;// [m]
del = 0.015;// [m]
// and the constants taken from table 7-3(page no.-344):
Ke_by_K = 0.197*(Gr_into_Pr)^(1/4)*(L/del)^(-1/9);
// the heat transfer may now be calculated with equation (7-54). the area is
A = L^(2);// [square meter]
q = Ke_by_K*k*A*(T1-T2)/del;// [W]
// the radiation flux is calculated with equation(7-67), taking
T1 = 373;// [K]
T2 = 313;// [K]
E1 = E;
E2 = E;
sigma = 5.669*10^(-8);// [W/square meter K^(4)]
q_A = sigma*(T1^(4)-T2^(4))/((1/E1)+(1/E2)-1);// [W/square meter]
q_rad = A*q_A;// [W]
printf("free-convection heat transfer across the air space is %f W",q);
printf("\n\nradiation heat transfer across the air space is %f W",q_rad);
|
9511558d2767b058b2f72113884fb6389ca89c2a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1868/CH9/EX9.2/Ch09Ex2.sce | f406affa91c0c8fd8f3ac72bebeddc4cf82bb002 | [] | 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 | 528 | sce | Ch09Ex2.sce | // Scilab code Ex9.2: Pg 307 (2005)
clc; clear;
h_cross = 6.58e-16; // Reduced Plank's constant, eV-s
S = h_cross*sqrt(3)/2; // Spin angular momentum, eV-s
S_z = h_cross/2; // Z-component of spin angular momentum, eV-s
theta_up = acosd(S_z/S);
theta_down = acosd(-S_z/S);
printf("\nFor up spin state, theta = %4.2f degrees", theta_up);
printf("\nFor down spin state, theta = %5.1f degrees", theta_down);
// Result
// For up spin state, theta = 54.74 degrees
// For down spin state, theta = 125.3 degrees
|
8e09f27752f1382c25cf428a25f437db05ab0741 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3434/CH4/EX4.4/Ex4_4.sce | 0992e6c89dc93a42b2decb0b3eebb0690f35085c | [] | 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 | 493 | sce | Ex4_4.sce | // given data
clc
Hg=14450.418 // in kj/m^2 per day from previous example
Ho=22926.408 // in kj/m^2 per day from previous example
KT=Hg/Ho // unitless
Hd=Hg*(1.354-1.570*KT) // in kj/m^2 per day
Hb= Hg-Hd // in kj/m^2 per day
printf("Monthly average of daily diffused is %.2f in kj/m^2 per day",Hd)
printf("\n beam radiation is %.2f in kj/m^2 per day",Hb)
// the solution inthe textbook is slighlty different as the values from previous examples are used which too are incorrect
|
4760cfca1249847c3cb3e4334104b1e150b96980 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1673/CH7/EX7.10/7_10.sce | b63d3f9b54a064318bd869685f9d06965876d07e | [] | 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 | 209 | sce | 7_10.sce | //ill condiioned linear systems
//example 7.10
//page 277
clc;clear;close;
A=[1/2 1/3 1/4;1/5 1/6 1/7;1/8 1/9 1/10]//hilbert's matrix
de_A=det(A);
if de_A<1 then
printf(' A is ill-conditioned')
end |
3110c63b4dedf6081d3716e3fe1c03c4c3cef800 | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/MX09.prev.tst | baf4fc4d117ee40f420796e8e89e0326c2a0ef06 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | gfis/ramath | 498adfc7a6d353d4775b33020fdf992628e3fbff | b09b48639ddd4709ffb1c729e33f6a4b9ef676b5 | refs/heads/master | 2023-08-17T00:10:37.092379 | 2023-08-04T07:48:00 | 2023-08-04T07:48:00 | 30,116,803 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 917 | tst | MX09.prev.tst | chain 2, fact 1 [[-3,0,2,0],[0,-1,0,2],[3,1,1,-2],[-1,-1,2,1]] [3,4,5,6] => [1,8,6,9] => [9,10,-1,12] ?? [-29,14,12,-9]
chain 2, fact 1 [[0,1,3,-3],[2,2,0,-1],[1,0,-3,3],[2,2,-1,0]] [3,4,5,6] => [1,8,6,9] => [-1,9,10,12] ?? [3,4,5,6]
chain 2, fact 1 [[1,1,0,-1],[-1,-4,5,0],[1,0,1,0],[0,-4,5,0]] [3,4,5,6] => [1,6,8,9] => [-2,15,9,16] ?? [-3,-13,7,-15]
chain 2, fact 1 [[1,1,0,-1],[-1,-1,5,-2],[1,0,1,0],[0,-1,5,-2]] [3,4,5,6] => [1,6,8,9] => [-2,15,9,16] ?? [-3,0,7,-2]
chain 2, fact 1 [[1,1,0,-1],[-1,2,5,-4],[1,0,1,0],[0,2,5,-4]] [3,4,5,6] => [1,6,8,9] => [-2,15,9,16] ?? [-3,13,7,11]
chain 8, fact 27 [[5,5,0,-3],[3,0,-5,5],[0,3,5,-5],[5,5,-3,0]] [3,4,5,6] => [17,14,7,20] => [95,116,-23,134] => [653,1070,-437,1124] => [5243,9764,-4595,9926] => [45257,88334,-43313,88820] => [401495,796436,-395663,797894] => [3595973,7172270,-3578477,7176644] => [32311283,64563524,-32258795,64576646]
elapsed time: nn s
|
a5d66ccd18518d89f248e48c0f780cad9ddea770 | 1489f5f3f467ff75c3223c5c1defb60ccb55df3d | /tests/test_ods_fsed_1_k.tst | d33d02f2b5f61fde937a4740d479ce0f18ed305e | [
"MIT"
] | permissive | ciyam/ciyam | 8e078673340b43f04e7b0d6ac81740b6cf3d78d0 | 935df95387fb140487d2e0053fabf612b0d3f9e2 | refs/heads/master | 2023-08-31T11:03:25.835641 | 2023-08-31T04:31:22 | 2023-08-31T04:31:22 | 3,124,021 | 18 | 16 | null | 2017-01-28T16:22:57 | 2012-01-07T10:55:14 | C++ | UTF-8 | Scilab | false | false | 2,210 | tst | test_ods_fsed_1_k.tst | cd
/
cd abc/def/test_1/test_2
folder_move test_3 ../..
cd ..
branch folders
ghi
ghi/111
ghi/555
ghi/999
test_2
folder_move test_2 ..
branch folders
ghi
ghi/111
ghi/555
ghi/999
cd /
branch folders
abc
abc/aaa
abc/def
abc/def/test_1
abc/def/test_1/ghi
abc/def/test_1/ghi/111
abc/def/test_1/ghi/555
abc/def/test_1/ghi/999
abc/def/test_2
abc/def/test_3
abc/nnn
abc/xyz
abc/xyz/test_A
abc/xyz/test_B
abc/xyz/test_C
abc/zzz
branch objects
abc/
abc/aaa/
abc/def/
abc/def/test_1/
abc/def/test_1/ghi/
abc/def/test_1/ghi/111/
abc/def/test_1/ghi/555/
abc/def/test_1/ghi/999/
abc/def/test_2/
abc/def/test_3/
abc/nnn/
abc/xyz/
abc/xyz/test_A/
abc/xyz/test_B/
abc/xyz/test_C/
abc/zzz/
dump
Total index levels = 0
Total number of nodes = 1
Total number of items = 32
Dumping level #0
[Node 1] flags = 3, dge_link = -1
lft_link = -1, rgt_link = -1
Item #0, data = /abc, link = -1
Item #1, data = /abc/aaa, link = -1
Item #2, data = /abc/def, link = -1
Item #3, data = /abc/def/test_1, link = -1
Item #4, data = /abc/def/test_1/ghi, link = -1
Item #5, data = /abc/def/test_1/ghi/111, link = -1
Item #6, data = /abc/def/test_1/ghi/555, link = -1
Item #7, data = /abc/def/test_1/ghi/999, link = -1
Item #8, data = /abc/def/test_2, link = -1
Item #9, data = /abc/def/test_3, link = -1
Item #10, data = /abc/nnn, link = -1
Item #11, data = /abc/xyz, link = -1
Item #12, data = /abc/xyz/test_A, link = -1
Item #13, data = /abc/xyz/test_B, link = -1
Item #14, data = /abc/xyz/test_C, link = -1
Item #15, data = /abc/zzz, link = -1
Item #16, data = :/abc, link = -1
Item #17, data = :abc/aaa, link = -1
Item #18, data = :abc/def, link = -1
Item #19, data = :abc/nnn, link = -1
Item #20, data = :abc/xyz, link = -1
Item #21, data = :abc/zzz, link = -1
Item #22, data = :abc:def/test_1, link = -1
Item #23, data = :abc:def/test_2, link = -1
Item #24, data = :abc:def/test_3, link = -1
Item #25, data = :abc:def:test_1/ghi, link = -1
Item #26, data = :abc:def:test_1:ghi/111, link = -1
Item #27, data = :abc:def:test_1:ghi/555, link = -1
Item #28, data = :abc:def:test_1:ghi/999, link = -1
Item #29, data = :abc:xyz/test_A, link = -1
Item #30, data = :abc:xyz/test_B, link = -1
Item #31, data = :abc:xyz/test_C, link = -1
exit
|
75d3efa689b3263d753094a9f49c61c01c02870d | 449d555969bfd7befe906877abab098c6e63a0e8 | /869/CH13/EX13.1/13_1.sce | 113d90db67c3603459f396982aae3ee50409795a | [] | 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 | 325 | sce | 13_1.sce | clc
//initialisation of variables
E= 1.5*10^6
F1= -100 //lb
F2= -100 //lb
x1= 6 //in
x2= 6 //in
Ina= 64 //in^4
h1= -600 //lb ft
h2= -1200 //lb ft
xa1= 10 // in
xa2= 8 //in
//CALCULATIONS
deltamax= ((1/2)*x1*xa1*h1+(1/2)*(x1+x2)*h2*xa2)*(1728)/(E*Ina)
//RESULTS
printf ('maximum deflection= %.2f in',deltamax)
|
04a7a51bf55d1be2b2e6a0efb8cce35f705614cb | e806e966b06a53388fb300d89534354b222c2cad | /macros/arrowedline.sci | efbe94eecf953760ad5cd00b79d40232fafa60a1 | [] | no_license | gursimarsingh/FOSSEE_Image_Processing_Toolbox | 76c9d524193ade302c48efe11936fe640f4de200 | a6df67e8bcd5159cde27556f4f6a315f8dc2215f | refs/heads/master | 2021-01-22T02:08:45.870957 | 2017-01-15T21:26:17 | 2017-01-15T21:26:17 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 702 | sci | arrowedline.sci | function[dstImg] = arrowedline(srcImg, x1, y1, x2, y2, R, G, B, varargin)
[lhs, rhs] = argn(0)
srcMat = mattolist(srcImg)
select rhs
case 8 then
out = arrowedline(srcMat, x1, y1, x2, y2, R, G, B)
case 9 then
out = arrowedline(srcMat, x1, y1, x2, y2, R, G, B,varargin(1))
case 10 then
out = arrowedline(srcMat, x1, y1, x2, y2, R, G, B, varargin(1),varargin(2))
case 11 then
out = arrowedline(srcMat, x1, y1, x2, y2, R, G, B, varargin(1),varargin(2), varargin(3))
case 12 then
out = arrowedline(srcMAt, x1, y1, x2, y2, R, G, B, varargin(1),varargin(2), varargin(3), varargin(4))
end
channels = size(out)
for i = 1:channels
dstImg(:,:,1) = out(1)
end
endfunction
|
370130f045a862a138353595ce16b3cdabc74fbf | 449d555969bfd7befe906877abab098c6e63a0e8 | /431/CH2/EX2.6/EX2_6.sce | 26993d5dbad1e6c16cbc8d09137a90265e03f5ca | [] | 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_6.sce | //Calculating emf generated onopen circuit condition
//Chapter 2
//Example 2.6
//page 93
clear;
clc;
disp("example 2.5")
P=8 //number of poles
A=8 //number of parallel paths in the armature
Z=960 //number of conductors
N=400 //speed in rpm
phi=0.04 //flux per pole
E=(phi*Z*N*P)/(60*A) //emf generated onopen circuit condition
printf("emf generated on open circuit condition, E=%d volts",E) |
c665c4e6cf30c7314cb885d03c493e181cac95b2 | 2d7fb0d5dbae1f305d3e1d8a1ae832b21b265698 | /HackCPU/Test Instances/test0.tst | 4bec4d6386c61017cc4779207843d96bb91aa921 | [] | no_license | shvishnu/Hardware-Description-Language | 5958d004b21ed8c75028da514aa16bc848c14e87 | 052dea214fe7e8456338b7dc1d377a121c022b88 | refs/heads/main | 2023-06-18T14:24:44.110683 | 2021-07-19T19:40:37 | 2021-07-19T19:40:37 | 385,691,538 | 0 | 0 | null | 2021-07-19T19:40:38 | 2021-07-13T17:55:49 | Scilab | UTF-8 | Scilab | false | false | 706 | tst | test0.tst | load Computer.hdl,
output-file test0.out,
output-list RAM64[16]%D1.7.1 RAM64[17]%D1.7.1 RAM64[18]%D1.7.1 RAM64[19]%D1.7.1;
// loads program written in the Hack language -- d = a + b - c
ROM32K load test0.hack,
set RAM64[16] 30, // a = 30
set RAM64[17] 20, // b = 20
set RAM64[18] 10, // c = 10
repeat 20 {
tick, tock;
}
output;
set reset 1,
tick, tock;
set reset 0,
set RAM64[16] 12, // a = 12
set RAM64[17] 24, // b = 24
set RAM64[18] 13, // c = 13
repeat 20 {
tick, tock;
}
output;
set reset 1,
tick, tock;
set reset 0,
set RAM64[16] 32, // a = 32
set RAM64[17] 47, // b = 47
set RAM64[18] 35, // c = 35
repeat 20 {
tick, tock;
}
output; |
dfa9af8d39aa89834a74a420cf95dc75847a50e8 | 1b969fbb81566edd3ef2887c98b61d98b380afd4 | /Rez/bivariate-lcmsr-post_mi/bfi_o_vrt_col_d/~BivLCM-SR-bfi_o_vrt_col_d-PLin-VLin.tst | 92080c41879183bf33dab98ddf335c6a4cfe59a9 | [] | no_license | psdlab/life-in-time-values-and-personality | 35fbf5bbe4edd54b429a934caf289fbb0edfefee | 7f6f8e9a6c24f29faa02ee9baffbe8ae556e227e | refs/heads/master | 2020-03-24T22:08:27.964205 | 2019-03-04T17:03:26 | 2019-03-04T17:03:26 | 143,070,821 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 11,909 | tst | ~BivLCM-SR-bfi_o_vrt_col_d-PLin-VLin.tst |
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
1 2 3 4 5
________ ________ ________ ________ ________
1 0.246693D+00
2 0.220699D-03 0.213155D-02
3 -0.140317D-01 -0.128065D-02 0.394080D+00
4 -0.157141D-02 -0.881513D-04 -0.246718D-02 0.339422D-02
5 0.114831D-02 -0.558142D-04 -0.535145D-03 -0.888387D-04 0.412977D-02
6 0.429685D-03 0.617910D-04 -0.835837D-04 0.585327D-04 -0.997629D-04
7 0.408973D-03 0.261057D-03 0.650622D-03 0.162810D-03 -0.368980D-03
8 0.444086D-03 0.816811D-04 -0.148360D-02 0.132163D-03 0.793641D-05
9 -0.448048D+00 0.925970D-02 -0.470029D-02 0.359559D-02 -0.169891D-02
10 -0.222379D+00 0.117238D-02 0.138560D+00 -0.107511D-01 0.161938D+00
11 -0.897244D-01 0.237431D-01 -0.208296D+00 0.327310D-01 0.484448D-01
12 -0.322746D+00 0.467640D-02 -0.120179D+01 0.588445D-01 -0.154940D-01
13 0.150080D-01 0.409525D-02 0.965114D-01 0.432809D-03 -0.719784D-02
14 0.168389D+00 -0.115750D-01 -0.486366D+00 0.197569D-01 -0.160879D-01
15 -0.812025D+00 -0.479826D-01 -0.463137D+00 -0.598008D-02 -0.125355D+00
16 0.236498D-02 -0.939190D-02 0.628991D-02 -0.135835D-02 0.206232D-03
17 -0.550817D-02 0.117779D-03 0.126384D-03 0.345559D-03 -0.264893D-03
18 -0.602228D+00 -0.508894D-01 0.636647D+00 -0.506200D-01 0.461201D-01
19 -0.119168D+00 -0.132177D-02 0.106879D+00 -0.278182D-02 0.603351D-02
20 0.305619D+00 -0.863867D-02 -0.315413D+01 -0.280061D-01 0.365967D-01
21 0.137799D+00 -0.110351D-02 -0.871500D-01 0.431468D-02 -0.122613D-02
22 0.150098D-02 0.418618D-03 -0.899919D-03 0.450495D-03 -0.448916D-03
23 0.163608D-01 0.183222D-02 -0.388825D-01 -0.130564D-01 0.563781D-03
24 0.898203D-03 0.310141D-03 0.381961D-02 -0.935412D-03 -0.760948D-04
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
6 7 8 9 10
________ ________ ________ ________ ________
6 0.598475D-03
7 0.818947D-03 0.469592D-02
8 0.164825D-04 -0.175206D-03 0.168960D-02
9 0.304821D-02 -0.248712D-01 0.657112D-03 0.238518D+02
10 -0.101768D-02 -0.465867D-02 0.364354D-02 -0.152368D+01 0.143389D+02
11 0.537961D-02 0.439768D-02 0.161287D-01 0.422502D+01 0.213184D+01
12 -0.723815D-02 0.808412D-01 0.133435D-01 -0.261413D+00 0.302812D+01
13 0.507543D-01 0.144407D+00 -0.466932D-02 -0.696624D+00 0.776917D-01
14 0.892617D-02 -0.118443D-01 0.142091D+00 0.979293D-01 -0.912505D-01
15 -0.740437D-02 0.407653D-01 -0.252980D-02 0.384777D+01 -0.521681D+01
16 -0.782372D-03 -0.953924D-03 -0.228985D-03 0.452903D+00 -0.546477D-01
17 -0.340215D-04 -0.249137D-03 -0.148018D-03 -0.988540D-01 -0.186051D-01
18 -0.513705D-01 -0.119308D+00 -0.613292D-01 -0.129512D+01 0.326234D+01
19 -0.132151D-01 -0.384749D-02 0.354609D-03 0.283816D-01 0.138706D+00
20 0.374979D-02 0.106497D+00 -0.946661D-01 -0.408062D+01 0.147239D+01
21 0.116580D-01 -0.708445D-04 -0.279660D-02 0.626242D-01 0.209348D+00
22 0.953992D-04 0.583636D-04 0.442903D-03 0.125327D-01 -0.299296D-01
23 0.475849D-03 0.136755D-02 -0.750714D-03 0.849568D-03 0.684980D-01
24 -0.100658D-03 -0.885461D-03 -0.110315D-03 0.300144D-01 -0.197546D-01
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
11 12 13 14 15
________ ________ ________ ________ ________
11 0.256803D+02
12 0.339105D+01 0.125427D+03
13 -0.258527D+01 0.282314D+01 0.123956D+02
14 -0.215208D+00 -0.726681D+00 -0.329986D+00 0.560252D+02
15 -0.467132D+01 -0.192299D+01 0.100184D+01 -0.106451D+01 0.168001D+03
16 -0.112218D-01 0.202141D+00 0.146325D-02 -0.100090D+00 0.185798D+01
17 -0.124891D-01 0.409959D-01 -0.672499D-02 0.129602D-01 -0.819927D+00
18 -0.161577D+01 -0.456971D+00 -0.448984D+01 -0.101690D+02 0.220303D+02
19 -0.122695D+00 -0.139047D+01 -0.100839D+01 0.460922D+00 0.110591D+01
20 -0.842448D+00 -0.157212D+02 0.239890D+01 -0.156751D+02 0.175646D+02
21 0.180552D+00 0.118845D+01 0.843409D+00 -0.865670D+00 -0.686056D+00
22 -0.124223D-01 -0.141708D-01 -0.826176D-03 0.561405D-01 -0.926706D-01
23 -0.483630D-01 -0.335089D+00 0.605536D-01 0.180298D+00 0.668239D+00
24 0.194614D-01 -0.131307D+00 -0.283019D-01 -0.902088D-01 -0.716108D-01
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
16 17 18 19 20
________ ________ ________ ________ ________
16 0.254373D+00
17 -0.151451D-01 0.899728D-02
18 0.387232D+00 -0.113892D+00 0.173152D+03
19 -0.101693D-01 -0.601445D-02 0.250224D+01 0.347782D+01
20 0.749815D+00 -0.953593D-01 -0.466292D-01 0.207593D+01 0.517372D+03
21 0.341796D-01 -0.385051D-02 0.226264D+01 -0.328428D+01 -0.202601D+01
22 -0.415960D-02 0.561575D-03 -0.796446D+00 -0.418304D-02 0.350174D-01
23 0.259151D-01 -0.623347D-02 -0.548309D+00 -0.308952D-01 0.453614D+01
24 -0.624906D-02 0.382145D-03 0.114495D+00 -0.581224D-02 -0.256940D+01
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
21 22 23 24
________ ________ ________ ________
21 0.406013D+01
22 -0.355801D-01 0.735866D-02
23 -0.320955D-01 -0.274432D-02 0.608515D+00
24 -0.479173D-02 -0.192038D-02 -0.293406D-01 0.260560D-01
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
1 2 3 4 5
________ ________ ________ ________ ________
1 1.000
2 0.010 1.000
3 -0.045 -0.044 1.000
4 -0.054 -0.033 -0.067 1.000
5 0.036 -0.019 -0.013 -0.024 1.000
6 0.035 0.055 -0.005 0.041 -0.063
7 0.012 0.083 0.015 0.041 -0.084
8 0.022 0.043 -0.057 0.055 0.003
9 -0.185 0.041 -0.002 0.013 -0.005
10 -0.118 0.007 0.058 -0.049 0.665
11 -0.036 0.101 -0.065 0.111 0.149
12 -0.058 0.009 -0.171 0.090 -0.022
13 0.009 0.025 0.044 0.002 -0.032
14 0.045 -0.033 -0.104 0.045 -0.033
15 -0.126 -0.080 -0.057 -0.008 -0.150
16 0.009 -0.403 0.020 -0.046 0.006
17 -0.117 0.027 0.002 0.063 -0.043
18 -0.092 -0.084 0.077 -0.066 0.055
19 -0.129 -0.015 0.091 -0.026 0.050
20 0.027 -0.008 -0.221 -0.021 0.025
21 0.138 -0.012 -0.069 0.037 -0.009
22 0.035 0.106 -0.017 0.090 -0.081
23 0.042 0.051 -0.079 -0.287 0.011
24 0.011 0.042 0.038 -0.099 -0.007
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
6 7 8 9 10
________ ________ ________ ________ ________
6 1.000
7 0.489 1.000
8 0.016 -0.062 1.000
9 0.026 -0.074 0.003 1.000
10 -0.011 -0.018 0.023 -0.082 1.000
11 0.043 0.013 0.077 0.171 0.111
12 -0.026 0.105 0.029 -0.005 0.071
13 0.589 0.599 -0.032 -0.041 0.006
14 0.049 -0.023 0.462 0.003 -0.003
15 -0.023 0.046 -0.005 0.061 -0.106
16 -0.063 -0.028 -0.011 0.184 -0.029
17 -0.015 -0.038 -0.038 -0.213 -0.052
18 -0.160 -0.132 -0.113 -0.020 0.065
19 -0.290 -0.030 0.005 0.003 0.020
20 0.007 0.068 -0.101 -0.037 0.017
21 0.236 -0.001 -0.034 0.006 0.027
22 0.045 0.010 0.126 0.030 -0.092
23 0.025 0.026 -0.023 0.000 0.023
24 -0.025 -0.080 -0.017 0.038 -0.032
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
11 12 13 14 15
________ ________ ________ ________ ________
11 1.000
12 0.060 1.000
13 -0.145 0.072 1.000
14 -0.006 -0.009 -0.013 1.000
15 -0.071 -0.013 0.022 -0.011 1.000
16 -0.004 0.036 0.001 -0.027 0.284
17 -0.026 0.039 -0.020 0.018 -0.667
18 -0.024 -0.003 -0.097 -0.103 0.129
19 -0.013 -0.067 -0.154 0.033 0.046
20 -0.007 -0.062 0.030 -0.092 0.060
21 0.018 0.053 0.119 -0.057 -0.026
22 -0.029 -0.015 -0.003 0.087 -0.083
23 -0.012 -0.038 0.022 0.031 0.066
24 0.024 -0.073 -0.050 -0.075 -0.034
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
16 17 18 19 20
________ ________ ________ ________ ________
16 1.000
17 -0.317 1.000
18 0.058 -0.091 1.000
19 -0.011 -0.034 0.102 1.000
20 0.065 -0.044 0.000 0.049 1.000
21 0.034 -0.020 0.085 -0.874 -0.044
22 -0.096 0.069 -0.706 -0.026 0.018
23 0.066 -0.084 -0.053 -0.021 0.256
24 -0.077 0.025 0.054 -0.019 -0.700
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
21 22 23 24
________ ________ ________ ________
21 1.000
22 -0.206 1.000
23 -0.020 -0.041 1.000
24 -0.015 -0.139 -0.233 1.000
|
a8c74a41d7cc948c60a36adece3f77baa4bb010f | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/statelevels/statelevels6.sce | a625490fdf84ab9f258254192e1ecf893cb669ea | [] | 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 | 549 | sce | statelevels6.sce | //check the o/p when i/p parameters include x(Bilevel waveform,a real valued row or column vector), NBINS(Number of histogram bins),Method(Statelevel estiation method in the subhistograms)
t=[0
2.50000000000000e-07
5.00000000000000e-07
7.50000000000000e-07
1.00000000000000e-06
1.25000000000000e-06];
x=[-0.00104287295007201
-0.00244190236539361
0.00330474678679599
0.00312506274996585
-0.00888427641170878
-0.000128837692967764
];
bounds=[1 10];
[levels,histogram,binlevels] = statelevels(x,1e3,'mean',bounds);
disp(levels)
//output
//!NaN NaN !
|
e5b7773894e937863aaedb1812fbc08dea3840c8 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.5/tests/examples/cspect.man.tst | 07058c8531fb42bf9f703b6a8eb8c2b17a067b86 | [
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 439 | tst | cspect.man.tst | clear;lines(0);
rand('normal');rand('seed',0);
x=rand(1:1024-33+1);
//make low-pass filter with eqfir
nf=33;bedge=[0 .1;.125 .5];des=[1 0];wate=[1 1];
h=eqfir(nf,bedge,des,wate);
//filter white data to obtain colored data
h1=[h 0*ones(1:maxi(size(x))-1)];
x1=[x 0*ones(1:maxi(size(h))-1)];
hf=fft(h1,-1); xf=fft(x1,-1);yf=hf.*xf;y=real(fft(yf,1));
sm=cspect(100,200,'tr',y);
smsize=maxi(size(sm));fr=(1:smsize)/smsize;
plot(fr,log(sm))
|
0acf17968edefbb3c984ab6eacc5a0ec93fc52dc | 449d555969bfd7befe906877abab098c6e63a0e8 | /608/CH23/EX23.07/23_07.sce | 3788919c94fbc81f4862f286c8412c303aff4bf3 | [] | 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 | 445 | sce | 23_07.sce | //Problem 23.07: Determine (-2 + i3)^5 in polar and in cartesian form.
//initializing the variables:
z = -2 + %i*3;
//calculation:
zc = z^5
x = real(zc)
y = imag(zc)
r = (x^2 + y^2)^0.5
theta = atan(y/x)*180/%pi
if ((x<0)&(y<0)) then
theta = theta -180;
elseif ((x<0)&(y>0)) then
theta = theta +180;
end
printf("\n\n Result \n\n")
printf("\n Z is %.0f + (%.0f)i", x,y)
printf("\n ZT is (%.1f/_%.2f°)", r,theta) |
efeecefff6884d5f57339f10d985eb2809e2a7e1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /49/CH8/EX8.3/ex3.sce | cb090f788217d25b2a46f8a0a377d17d69f0802f | [] | 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,027 | sce | ex3.sce | //CHAPTER 8 _ TEMPERATURE MEASUREMENT
//Caption : ELECTRICAL- RESISTANCE SENSORS
// Example 3 // Page 517
s =0.2 //('enter the sensitivity =:')
d=0.4*10^-3
A=%pi*(d^2)/4;
// R=pho *l/A
R=100
pho=0.8*10^-3;
l=(R*A)/pho;
printf('Length corresponding to resistance 100 ohm and diameter 0.4mm is %fd m\n',l)
d=2*10^-3
A=%pi*(d^2)/4;
R=100
pho=0.8*10^-3;
l=(R*A)/pho;
printf('Length corresponding to resistance 100 ohm and diameter 2mm is %1.2f m\n',l)
// The above lengths of wire indicate that their diameters should be very small so reasonable lengths can be used in practical applications .
// Let resistance at 50deg cent be R1 and at 100 deg cent be R2
t=-50 //('Enter the temperture at which resistance has to be calculated = :')
R1= R+s*(t-20);
printf('Resistance at temperature %d is %f ohm \n',t,R1)
t2=100 //('Enter the temperture at which resistance has to be calculated = :')
R2= R+s*(t2-20);
printf('Resistance at temperature %d is %f ohm\n ',t2,R2)
|
b0d1fa27d31bc236d83476bfb91a62c41a18525f | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/PFT3.prev.tst | 31c3b76b4b49f00be11636ecc1c61583954f04dd | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | gfis/ramath | 498adfc7a6d353d4775b33020fdf992628e3fbff | b09b48639ddd4709ffb1c729e33f6a4b9ef676b5 | refs/heads/master | 2023-08-17T00:10:37.092379 | 2023-08-04T07:48:00 | 2023-08-04T07:48:00 | 30,116,803 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 693 | tst | PFT3.prev.tst | result postfix=[1, 1, x, -, x, y, *, -, /]
A007318 tria 0 1 1,-1,-1,0,0,0 x,y
result postfix=[1, 1, x, -, 1, x, y, *, -, *, 1, x, 2, ^, y, *, -, *, /]
A003983 tria 1 1 1,-1,-1,0,0,0,0,1,1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 x,y
result postfix=[1, 1, x, -, 2, ^, 1, x, y, *, -, *, /]
A004736 tria 1 1 1,-2,-1,1,2,0,0,-1,0,0,0,0,0,0,0 x,y
result postfix=[0, 1, -, 2, x, *, y, *, +, 0, 1, -, 3, x, *, y, *, +, x, +, /]
A038763 tria 0 1,0,-2,0,0,0 1,-1,-3,0,0,0 x,y
result postfix=[x, 1, y, x, 2, ^, 4, x, *, +, 3, +, *, -, /]
A299989 tria 0 0,1,0 1,0,-4,0,-1,0,0,0,0,0 x,y
result postfix=[y, 1, x, y, 2, ^, 4, y, *, +, 3, +, *, -, /]
A299989 tria 0 0,0,0 1,-3,-4,0,0,0,0,0,0,0 x,y
|
8f6807dd1942092a285a6ce6a4adcff4f5b5117a | 36c5f94ce0d09d8d1cc8d0f9d79ecccaa78036bd | /APEX Mid Strafes FINAL VERSION.sce | d79425c98e81f6fe5aa255de088494bf9df8f0b3 | [] | 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 | 98,555 | sce | APEX Mid Strafes FINAL VERSION.sce | Name=APEX Mid Strafes FINAL VERSION
PlayerCharacters=Apex Legend
BotCharacters=Apex Purple Shield.bot
IsChallenge=true
Timelimit=80.0
PlayerProfile=Apex Legend
AddedBots=Apex Purple Shield.bot
PlayerMaxLives=0
BotMaxLives=0
PlayerTeam=2
BotTeams=1
MapName=cataicfps.map
MapScale=1.5
BlockProjectilePredictors=true
BlockCheats=true
InvinciblePlayer=true
InvincibleBots=false
Timescale=1.0
BlockHealthbars=false
TimeRefilledByKill=0.0
ScoreToWin=1000.0
ScorePerDamage=3.0
ScorePerKill=50.0
ScorePerMidairDirect=0.0
ScorePerAnyDirect=0.0
ScorePerTime=0.0
ScoreLossPerDamageTaken=0.0
ScoreLossPerDeath=0.0
ScoreLossPerMidairDirected=0.0
ScoreLossPerAnyDirected=0.0
ScoreMultAccuracy=true
ScoreMultDamageEfficiency=true
ScoreMultKillEfficiency=false
GameTag=Reflex, Quake, APEX
WeaponHeroTag=APEX, ALL
DifficultyTag=3
AuthorsTag=COSBY
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=true
BlockFCT=false
Description=Mid Pressure hitscan tracking against a Harder to hit Target Final Version
GameVersion=1.0.7.2
ScorePerDistance=0.0
[Aim Profile]
Name=Medium Skill
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
[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=Apex Purple Shield
DodgeProfileNames=Fast Strafes Close;Mimic;ADAD;Short Strafes Jumping
DodgeProfileWeights=2.0;1.5;1.0;1.0
DodgeProfileMaxChangeTime=2.0
DodgeProfileMinChangeTime=0.1
WeaponProfileWeights=1.0;0.0;0.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Medium Skill;Medium Skill;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=Apex Purple Shield
SeeThroughWalls=false
NoDodging=false
NoAiming=false
[Character Profile]
Name=Apex Legend
MaxHealth=200.0
WeaponProfileNames=Peacekeeper;Wingman;R-99;Spitfire;R-301;Eva;Hemlock;VK-47 Flatline
MinRespawnDelay=3.0
MaxRespawnDelay=9.0
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=300.0
MaxCrouchSpeed=400.0
Acceleration=2000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=400.0
Gravity=1.6
AirControl=0.1
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=0.366 Y=0.067 Z=0.371
EnemyHeadColor=X=0.863 Y=0.776 Z=0.434
TeamBodyColor=X=0.366 Y=0.067 Z=0.371
TeamHeadColor=X=0.863 Y=0.776 Z=0.434
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=270.0
MainBBType=Cylindrical
MainBBHeight=83.0
MainBBRadius=13.0
MainBBHasHead=true
MainBBHeadRadius=7.0
MainBBHeadOffset=1.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=65.0
ProjBBRadius=10.0
ProjBBHasHead=true
ProjBBHeadRadius=6.0
ProjBBHeadOffset=-8.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=Run.abilsprint;Melee.abilmelee;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=0.9
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.1
AllowBufferedJumps=false
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=1.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=140.0
TPSOffset=X=0.000 Y=20.000 Z=0.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
[Character Profile]
Name=Apex Purple Shield
MaxHealth=200.0
WeaponProfileNames=Peacemaker;Wingman;R-301;Spitfire;Longbow;Hemlock;;
MinRespawnDelay=3.0
MaxRespawnDelay=9.0
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=175.0
MaxCrouchSpeed=160.0
Acceleration=2000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=400.0
Gravity=1.6
AirControl=0.1
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=0.863 Y=0.776 Z=0.434
EnemyHeadColor=X=1.000 Y=0.888 Z=0.000
TeamBodyColor=X=0.366 Y=0.067 Z=0.371
TeamHeadColor=X=0.863 Y=0.776 Z=0.434
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=270.0
MainBBType=Cylindrical
MainBBHeight=83.0
MainBBRadius=13.0
MainBBHasHead=true
MainBBHeadRadius=7.0
MainBBHeadOffset=1.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=65.0
ProjBBRadius=10.0
ProjBBHasHead=true
ProjBBHeadRadius=6.0
ProjBBHeadOffset=-8.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=Run.abilsprint;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=0.9
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.1
AllowBufferedJumps=false
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=1.0
ForwardSpeedBias=1.0
HealthRegainedonkill=200.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=140.0
TPSOffset=X=0.000 Y=20.000 Z=0.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
[Dodge Profile]
Name=Fast Strafes Close
MaxTargetDistance=150.0
MinTargetDistance=50.0
ToggleLeftRight=true
ToggleForwardBack=true
MinLRTimeChange=0.1
MaxLRTimeChange=1.0
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.1
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.07
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.6
MaxCrouchTime=0.8
MinJumpTime=0.1
MaxJumpTime=0.1
LeftStrafeTimeMult=0.5
RightStrafeTimeMult=0.6
StrafeSwapMinPause=0.1
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Dodge Profile]
Name=Mimic
MaxTargetDistance=1245.901611
MinTargetDistance=373.770477
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.2
MaxLRTimeChange=0.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.5
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Mimic
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.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Dodge Profile]
Name=ADAD
MaxTargetDistance=2500.0
MinTargetDistance=750.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.2
MaxLRTimeChange=0.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
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.2
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.16
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.1
MaxCrouchTime=0.2
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Dodge Profile]
Name=Short Strafes Jumping
MaxTargetDistance=2500.0
MinTargetDistance=750.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.2
MaxLRTimeChange=0.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.65
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.5
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Weapon Profile]
Name=Peacekeeper
Type=Hitscan
ShotsPerClick=11
DamagePerShot=10.0
KnockbackFactor=1.0
TimeBetweenShots=1.1
Pierces=false
Category=SemiAuto
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.5
MagazineMax=10000
AmmoPerShot=1
ReloadTimeFromEmpty=3.5
ReloadTimeFromPartial=2.5
DamageFalloffStartDistance=111111.0
DamageFalloffStopDistance=1000000.0
DamageAtMaxRange=10.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=None
HitParticleEffect=None
BounceOffWorld=false
BounceFactor=0.5
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=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.8
RecoilNegatable=false
DecalType=1
DecalSize=3.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=300.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=false
AimPunchAmount=0.0
AimPunchResetTime=0.2
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=5
CancelReloadOnKill=true
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=103.0
ADSFOVScale=Clamped Horizontal
ADSAllowUserOverrideFOV=false
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=100.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=0.0,0.1,0.0,0.0
SpreadSCA=0.0,0.1,0.0,0.0
SpreadMSA=0.0,0.1,0.0,0.0
SpreadMCA=0.0,0.1,0.0,0.0
SpreadSSH=0.0,0.1,0.0,0.1
SpreadSCH=0.0,0.1,0.0,0.0
SpreadMSH=0.0,0.1,0.0,0.1
SpreadMCH=0.0,0.1,0.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=1.0
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.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=true
PBS0=1.6,25.0
PBS1=0.8,25.0
PBS2=0.0,25.0
PBS3=0.8,300.0
PBS4=1.6,300.0
PBS5=0.8,90.0
PBS6=1.6,90.0
PBS7=0.8,155.0
PBS8=1.6,155.0
PBS9=0.8,230.0
PBS10=1.6,230.0
[Weapon Profile]
Name=Wingman
Type=Hitscan
ShotsPerClick=1
DamagePerShot=45.0
KnockbackFactor=0.0
TimeBetweenShots=0.31
Pierces=false
Category=SemiAuto
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=10000
AmmoPerShot=1
ReloadTimeFromEmpty=2.1
ReloadTimeFromPartial=2.1
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=45.0
DelayBeforeShot=0.0
HitscanVisualEffect=None
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=Gunshot
HitParticleEffect=None
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=true
ADSZoomDelay=0.2
ADSZoomSensFactor=0.8
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=false
DecalType=1
DecalSize=4.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=false
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=97.099998
ADSFOVScale=Apex Legends
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
Explosive=false
Radius=0.1
DamageAtCenter=0.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.0
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=0.0,0.1,0.0,0.0
SpreadSCA=0.0,0.1,0.0,0.0
SpreadMSA=0.0,0.1,0.0,0.0
SpreadMCA=0.0,0.1,0.0,0.0
SpreadSSH=2.0,2.0,1.0,2.0
SpreadSCH=2.0,2.0,3.0,6.0
SpreadMSH=2.0,2.0,1.0,2.0
SpreadMCH=2.0,2.0,3.0,6.0
MaxRecoilUp=1.3
MinRecoilUp=1.0
MinRecoilHoriz=1.0
MaxRecoilHoriz=1.0
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=1.0
AAMaxSpeed=360.0
AADeadZone=0.0
AAFOV=360.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.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=R-99
Type=Hitscan
ShotsPerClick=1
DamagePerShot=12.0
KnockbackFactor=4.0
TimeBetweenShots=0.072222
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.5
MagazineMax=10000
AmmoPerShot=1
ReloadTimeFromEmpty=2.45
ReloadTimeFromPartial=1.8
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=12.0
DelayBeforeShot=0.0
HitscanVisualEffect=None
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=Gunshot
HitParticleEffect=Blood
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=true
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.05
HitSoundCooldown=0.05
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=4.0
RecoilNegatable=false
DecalType=1
DecalSize=3.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=false
SpreadStationaryVelocity=100.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=false
AimPunchAmount=0.0
AimPunchResetTime=0.2
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=1
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=103.0
ADSFOVScale=Clamped Horizontal
ADSAllowUserOverrideFOV=false
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=100.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=0.0,0.1,0.0,0.0
SpreadSCA=0.0,0.1,0.0,0.0
SpreadMSA=0.0,0.1,0.0,0.0
SpreadMCA=0.0,0.1,0.0,0.0
SpreadSSH=1.0,1.0,-0.5,0.5
SpreadSCH=1.0,1.0,-1.0,5.0
SpreadMSH=1.0,1.0,-0.5,0.5
SpreadMCH=1.0,1.0,-1.0,5.0
MaxRecoilUp=0.8
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.2
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.3
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.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=Spitfire
Type=Hitscan
ShotsPerClick=1
DamagePerShot=20.0
KnockbackFactor=4.0
TimeBetweenShots=0.117188
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=10000
AmmoPerShot=1
ReloadTimeFromEmpty=3.33
ReloadTimeFromPartial=2.8
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
HitscanVisualEffect=None
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=Gunshot
HitParticleEffect=Blood
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=true
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=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=4.0
RecoilNegatable=false
DecalType=1
DecalSize=5.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=300.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=false
AimPunchAmount=0.0
AimPunchResetTime=0.2
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=1
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=103.0
ADSFOVScale=Clamped Horizontal
ADSAllowUserOverrideFOV=false
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=100.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=0.0,0.1,0.0,0.0
SpreadSCA=0.0,0.1,0.0,0.0
SpreadMSA=0.0,0.1,0.0,0.0
SpreadMCA=0.0,0.1,0.0,0.0
SpreadSSH=1.0,1.0,-1.0,2.1
SpreadSCH=1.0,1.0,-1.0,5.0
SpreadMSH=1.0,1.0,-1.0,2.1
SpreadMCH=1.0,1.0,-1.0,5.0
MaxRecoilUp=0.2
MinRecoilUp=0.1
MinRecoilHoriz=-0.2
MaxRecoilHoriz=0.2
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.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=R-301
Type=Hitscan
ShotsPerClick=1
DamagePerShot=14.0
KnockbackFactor=4.0
TimeBetweenShots=0.08
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=10000
AmmoPerShot=1
ReloadTimeFromEmpty=2.45
ReloadTimeFromPartial=1.8
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
HitscanVisualEffect=None
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=Gunshot
HitParticleEffect=Blood
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=true
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.07
HitSoundCooldown=0.07
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=4.0
RecoilNegatable=false
DecalType=1
DecalSize=5.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=300.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=false
AimPunchAmount=0.0
AimPunchResetTime=0.2
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=1
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=103.0
ADSFOVScale=Clamped Horizontal
ADSAllowUserOverrideFOV=false
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=100.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=0.0,0.1,0.0,0.0
SpreadSCA=0.0,0.1,0.0,0.0
SpreadMSA=0.0,0.1,0.0,0.0
SpreadMCA=0.0,0.1,0.0,0.0
SpreadSSH=1.0,1.0,-1.0,3.0
SpreadSCH=1.0,1.0,-1.0,3.0
SpreadMSH=1.0,1.0,-1.0,3.0
SpreadMCH=1.0,1.0,-1.0,3.0
MaxRecoilUp=0.1
MinRecoilUp=0.0
MinRecoilHoriz=-0.2
MaxRecoilHoriz=0.2
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.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=Eva
Type=Hitscan
ShotsPerClick=9
DamagePerShot=7.0
KnockbackFactor=1.0
TimeBetweenShots=0.55
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.5
MagazineMax=10000
AmmoPerShot=1
ReloadTimeFromEmpty=3.5
ReloadTimeFromPartial=3.0
DamageFalloffStartDistance=111111.0
DamageFalloffStopDistance=1000000.0
DamageAtMaxRange=10.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=None
HitParticleEffect=None
BounceOffWorld=false
BounceFactor=0.5
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=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.8
RecoilNegatable=false
DecalType=1
DecalSize=3.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=300.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=false
AimPunchAmount=0.0
AimPunchResetTime=0.2
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=5
CancelReloadOnKill=true
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=103.0
ADSFOVScale=Clamped Horizontal
ADSAllowUserOverrideFOV=false
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=100.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=0.0,0.1,0.0,0.0
SpreadSCA=0.0,0.1,0.0,0.0
SpreadMSA=0.0,0.1,0.0,0.0
SpreadMCA=0.0,0.1,0.0,0.0
SpreadSSH=0.0,0.1,0.0,0.1
SpreadSCH=0.0,0.1,0.0,0.0
SpreadMSH=0.0,0.1,0.0,0.1
SpreadMCH=0.0,0.1,0.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=1.0
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.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=true
PBS0=1.5,90.0
PBS1=1.5,120.0
PBS2=1.5,60.0
PBS3=0.8,180.0
PBS4=0.8,0.0
PBS5=0.0,0.0
PBS6=1.5,270.0
PBS7=1.5,240.0
PBS8=1.5,300.0
[Weapon Profile]
Name=Hemlock
Type=Hitscan
ShotsPerClick=1
DamagePerShot=18.0
KnockbackFactor=4.0
TimeBetweenShots=0.4
Pierces=false
Category=SemiAuto
BurstShotCount=3
TimeBetweenBursts=0.1
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.3
MagazineMax=10000
AmmoPerShot=1
ReloadTimeFromEmpty=2.45
ReloadTimeFromPartial=1.8
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
HitscanVisualEffect=None
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=Gunshot
HitParticleEffect=Blood
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=true
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.07
HitSoundCooldown=0.07
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=4.0
RecoilNegatable=false
DecalType=1
DecalSize=4.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=300.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=false
AimPunchAmount=0.0
AimPunchResetTime=0.2
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=1
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=103.0
ADSFOVScale=Clamped Horizontal
ADSAllowUserOverrideFOV=false
IsBurstWeapon=true
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=100.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=0.0,0.1,0.0,0.0
SpreadSCA=0.0,0.1,0.0,0.0
SpreadMSA=0.0,0.1,0.0,0.0
SpreadMCA=0.0,0.1,0.0,0.0
SpreadSSH=1.0,1.0,-1.0,1.1
SpreadSCH=1.0,1.0,-1.0,3.0
SpreadMSH=1.0,1.0,-1.0,1.1
SpreadMCH=1.0,1.0,-1.0,3.0
MaxRecoilUp=0.25
MinRecoilUp=0.0
MinRecoilHoriz=-0.02
MaxRecoilHoriz=0.1
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.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=VK-47 Flatline
Type=Hitscan
ShotsPerClick=1
DamagePerShot=16.0
KnockbackFactor=0.0
TimeBetweenShots=0.1
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=10000
AmmoPerShot=1
ReloadTimeFromEmpty=3.1
ReloadTimeFromPartial=2.4
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=45.0
DelayBeforeShot=0.0
HitscanVisualEffect=None
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=Gunshot
HitParticleEffect=None
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=true
ADSZoomDelay=0.2
ADSZoomSensFactor=0.8
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=false
DecalType=1
DecalSize=4.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=false
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=97.099998
ADSFOVScale=Apex Legends
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
Explosive=false
Radius=0.1
DamageAtCenter=0.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.0
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=0.0,0.1,0.0,0.0
SpreadSCA=0.0,0.1,0.0,0.0
SpreadMSA=0.0,0.1,0.0,0.0
SpreadMCA=0.0,0.1,0.0,0.0
SpreadSSH=1.0,1.0,0.3,2.0
SpreadSCH=2.0,2.0,3.0,6.0
SpreadMSH=1.0,1.0,0.3,2.0
SpreadMCH=2.0,2.0,3.0,6.0
MaxRecoilUp=0.55
MinRecoilUp=-0.1
MinRecoilHoriz=-0.3
MaxRecoilHoriz=0.1
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=1.0
AAMaxSpeed=360.0
AADeadZone=0.0
AAFOV=360.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.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=Longbow
Type=Hitscan
ShotsPerClick=1
DamagePerShot=55.0
KnockbackFactor=0.0
TimeBetweenShots=0.8
Pierces=false
Category=SemiAuto
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.5
MagazineMax=10000
AmmoPerShot=1
ReloadTimeFromEmpty=2.1
ReloadTimeFromPartial=4.0
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=45.0
DelayBeforeShot=0.0
HitscanVisualEffect=None
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=Gunshot
HitParticleEffect=None
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=true
ADSZoomDelay=0.2
ADSZoomSensFactor=0.8
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=false
DecalType=1
DecalSize=7.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=false
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=false
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=97.099998
ADSFOVScale=Apex Legends
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
Explosive=false
Radius=0.1
DamageAtCenter=0.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.0
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=0.0,0.1,0.0,0.0
SpreadSCA=0.0,0.1,0.0,0.0
SpreadMSA=0.0,0.1,0.0,0.0
SpreadMCA=0.0,0.1,0.0,0.0
SpreadSSH=0.0,0.1,3.0,6.0
SpreadSCH=2.0,2.0,3.0,6.0
SpreadMSH=0.0,0.1,2.0,8.0
SpreadMCH=2.0,2.0,3.0,6.0
MaxRecoilUp=1.3
MinRecoilUp=1.0
MinRecoilHoriz=2.0
MaxRecoilHoriz=2.0
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=1.0
AAMaxSpeed=360.0
AADeadZone=0.0
AAFOV=360.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.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Melee Ability Profile]
Name=Melee
MaxCharges=1.0
ChargeTimer=0.25
ChargesRefundedOnKill=0.0
DelayAfterUse=1.0
FullyAuto=false
AbilityDuration=0.15
HurtboxRadius=75.0
HurtboxDamage=30.0
HurtboxGroundKnockbackFactor=0.0
HurtboxAirKnockbackFactor=0.0
BlockAttackTimer=0.5
AbilityBlockedWhenAttacking=false
AmmoPerShot=0
FlatKnockbackHorizontal=100.0
FlatKnockbackVertical=0.0
FlatKnockbackHorizontalMin=100.0
FlatKnockbackVerticalMin=0.0
AIUseInCombat=true
AIUseOutOfCombat=false
AIUseOnGround=true
AIUseInAir=true
AIReuseTimer=1.0
AIMinSelfHealth=0.0
AIMaxSelfHealth=100.0
AIMinTargHealth=0.0
AIMaxTargHealth=100.0
AIMinTargDist=0.0
AIMaxTargDist=600.0
AIMaxTargFOV=15.0
AIDamageReaction=false
AIDamageReactionIgnoreChance=0.0
AIDamageReactionMinDelay=0.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=0.0
AIDamageReactionResetTimer=0.1
[Sprint Ability Profile]
Name=Run
MaxCharges=1.0
ChargeTimer=0.001
ChargesRefundedOnKill=0.0
DelayAfterUse=0.1
FullyAuto=false
AbilityDuration=0.0
BlockAttackWhileSprinting=false
AbilityBlockedWhenAttacking=false
SpeedModifier=1.8
45DegreeSprint=true
90DegreeSprint=true
135DegreeSprint=true
180DegreeSprint=false
TapToSprint=true
Block45DegreesWhenSprinting=false
AIUseInCombat=true
AIUseOutOfCombat=false
AIUseOnGround=true
AIUseInAir=true
AIReuseTimer=1.0
AIMinSelfHealth=0.0
AIMaxSelfHealth=100.0
AIMinTargHealth=0.0
AIMaxTargHealth=100.0
AIMinTargDist=0.0
AIMaxTargDist=2000.0
AIMaxTargFOV=15.0
AIDamageReaction=true
AIDamageReactionIgnoreChance=0.0
AIDamageReactionMinDelay=0.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=0.0
AIDamageReactionResetTimer=0.1
[Map Data]
reflex map version 8
global
entity
type WorldSpawn
String32 targetGameOverCamera score
Float sky.timeOfDay 13.000000
Float sky.skyAngle 210.000000
ColourXRGB32 sky.skyTopColor ff020302
ColourXRGB32 sky.skyHorizonColor ff000800
ColourXRGB32 sky.skyBottomColor ff020e03
ColourXRGB32 sky.sunColor ff3e4a51
Float sky.sunIntensitySize 8.000000
Float sky.sunSharpness 8.000000
ColourXRGB32 sky.horizonColor ff9fc3a9
Float sky.horizonIntensity 0.300000
Float sky.horizonHaloExponentSun 8.000000
Float sky.horizonLine 0.150000
Float sky.starsIntensity 4.000000
ColourXRGB32 sky.cloudsColor ffffffff
Float sky.cloudsCoverage 0.500000
Float sky.cloudsCoverageMultiplier 24.000000
Float sky.cloudsRoughness 0.400000
ColourXRGB32 fogColor ff5b6577
Float fogDistanceEnd 4500.000000
Float fogHeightTop 200.000000
Float fogHeightBottom -2000.000000
String256 title The Catalyst
String256 ownerString tehace & promEUs
Bool8 mode1v1 1
Bool8 mode2v2 1
brush
vertices
1120.000000 1928.000000 128.000000
1120.000000 1928.000000 112.000000
1116.000000 1928.000000 112.000000
1116.000000 1928.000000 128.000000
1120.000000 1880.000000 128.000000
1120.000000 1880.000000 112.000000
1116.000000 1880.000000 112.000000
1116.000000 1880.000000 128.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1120.000000 1920.000000 112.000000
1120.000000 1920.000000 96.000000
1116.000000 1920.000000 96.000000
1116.000000 1920.000000 112.000000
1120.000000 1880.000000 112.000000
1120.000000 1880.000000 96.000000
1116.000000 1880.000000 96.000000
1116.000000 1880.000000 112.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1120.000000 1912.000000 96.000000
1120.000000 1912.000000 80.000000
1116.000000 1912.000000 80.000000
1116.000000 1912.000000 96.000000
1120.000000 1880.000000 96.000000
1120.000000 1880.000000 80.000000
1116.000000 1880.000000 80.000000
1116.000000 1880.000000 96.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1120.000000 1904.000000 80.000000
1120.000000 1904.000000 64.000000
1116.000000 1904.000000 64.000000
1116.000000 1904.000000 80.000000
1120.000000 1880.000000 80.000000
1120.000000 1880.000000 64.000000
1116.000000 1880.000000 64.000000
1116.000000 1880.000000 80.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1120.000000 1896.000000 64.000000
1120.000000 1896.000000 48.000000
1116.000000 1896.000000 48.000000
1116.000000 1896.000000 64.000000
1120.000000 1880.000000 64.000000
1120.000000 1880.000000 48.000000
1116.000000 1880.000000 48.000000
1116.000000 1880.000000 64.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1120.000000 1888.000000 48.000000
1120.000000 1888.000000 32.000000
1116.000000 1888.000000 32.000000
1116.000000 1888.000000 48.000000
1120.000000 1880.000000 48.000000
1120.000000 1880.000000 32.000000
1116.000000 1880.000000 32.000000
1116.000000 1880.000000 48.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
740.000000 1935.000000 160.000000
740.000000 1935.000000 -28.000000
736.000000 1935.000000 -28.000000
736.000000 1935.000000 160.000000
740.000000 1905.000000 160.000000
740.000000 1905.000000 -28.000000
736.000000 1905.000000 -28.000000
736.000000 1905.000000 160.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
864.000000 1935.000000 288.000000
868.000000 1935.000000 288.000000
736.000000 1935.000000 156.000000
868.000000 1905.000000 288.000000
736.000000 1935.000000 160.000000
736.000000 1905.000000 160.000000
864.000000 1905.000000 288.000000
736.000000 1905.000000 156.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff3f3f3f common/materials/stone/stone
brush
vertices
1344.000000 1942.000000 -76.000000
1360.000000 1942.000000 -80.000000
1312.000000 1942.000000 -122.000000
1360.000000 1940.000000 -80.000000
1312.000000 1942.000000 -106.000000
1312.000000 1940.000000 -106.000000
1344.000000 1940.000000 -76.000000
1312.000000 1940.000000 -122.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xffa3a3a3 common/materials/metal/aluminum
brush
vertices
1312.000000 1942.000000 160.000000
1312.000000 1942.000000 -122.000000
1296.000000 1942.000000 -136.000000
1296.000000 1940.000000 160.000000
1296.000000 1942.000000 160.000000
1312.000000 1940.000000 -122.000000
1296.000000 1940.000000 -136.000000
1312.000000 1940.000000 160.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xffa3a3a3 common/materials/metal/aluminum
brush
vertices
1296.000000 1942.000000 160.000000
1296.000000 1942.000000 144.000000
1152.000000 1942.000000 144.000000
1152.000000 1942.000000 160.000000
1296.000000 1940.000000 160.000000
1296.000000 1940.000000 144.000000
1152.000000 1940.000000 144.000000
1152.000000 1940.000000 160.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffa3a3a3 common/materials/metal/aluminum
brush
vertices
1152.000000 1940.000000 176.000000
1168.000000 1942.000000 160.000000
1152.000000 1942.000000 160.000000
1168.000000 1940.000000 160.000000
1152.000000 1940.000000 160.000000
1152.000000 1942.000000 176.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0xffa3a3a3 common/materials/metal/aluminum
brush
vertices
1152.000000 1942.000000 268.000000
1152.000000 1942.000000 144.000000
1136.000000 1942.000000 144.000000
1136.000000 1942.000000 268.000000
1152.000000 1940.000000 268.000000
1152.000000 1940.000000 144.000000
1136.000000 1940.000000 144.000000
1136.000000 1940.000000 268.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1168.000000 1942.000000 252.000000
1152.000000 1940.000000 252.000000
1152.000000 1942.000000 236.000000
1168.000000 1940.000000 252.000000
1152.000000 1940.000000 236.000000
1152.000000 1942.000000 252.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 4 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 5 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 0 5 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0xffa3a3a3 common/materials/metal/aluminum
brush
vertices
844.000000 1942.000000 388.000000
844.000000 1942.000000 292.000000
828.000000 1942.000000 296.000000
828.000000 1940.000000 388.000000
828.000000 1942.000000 388.000000
844.000000 1940.000000 292.000000
828.000000 1940.000000 296.000000
844.000000 1940.000000 388.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xffa3a3a3 common/materials/metal/aluminum
brush
vertices
844.000000 1942.000000 292.000000
720.000000 1942.000000 168.000000
704.000000 1942.000000 172.000000
828.000000 1940.000000 296.000000
828.000000 1942.000000 296.000000
720.000000 1940.000000 168.000000
704.000000 1940.000000 172.000000
844.000000 1940.000000 292.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xffa3a3a3 common/materials/metal/aluminum
brush
vertices
720.000000 1942.000000 168.000000
720.000000 1942.000000 -12.000000
704.000000 1942.000000 -12.000000
704.000000 1940.000000 172.000000
704.000000 1942.000000 172.000000
720.000000 1940.000000 -12.000000
704.000000 1940.000000 -12.000000
720.000000 1940.000000 168.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xffa3a3a3 common/materials/metal/aluminum
brush
vertices
704.000000 1942.000000 20.000000
704.000000 1942.000000 4.000000
688.000000 1942.000000 4.000000
704.000000 1940.000000 20.000000
688.000000 1940.000000 4.000000
704.000000 1940.000000 4.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 5 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 5 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 1 5 0xffa3a3a3 common/materials/metal/aluminum
brush
vertices
704.000000 1942.000000 4.000000
704.000000 1942.000000 -12.000000
652.000000 1942.000000 -12.000000
656.000000 1940.000000 4.000000
656.000000 1942.000000 4.000000
704.000000 1940.000000 -12.000000
652.000000 1940.000000 -12.000000
704.000000 1940.000000 4.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xffa3a3a3 common/materials/metal/aluminum
brush
vertices
656.000000 1942.000000 4.000000
652.000000 1942.000000 -12.000000
612.000000 1942.000000 28.000000
652.000000 1940.000000 -12.000000
612.000000 1942.000000 48.000000
612.000000 1940.000000 48.000000
656.000000 1940.000000 4.000000
612.000000 1940.000000 28.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xffa3a3a3 common/materials/metal/aluminum
brush
vertices
612.000000 1942.000000 356.000000
612.000000 1942.000000 28.000000
596.000000 1942.000000 44.000000
596.000000 1940.000000 360.000000
596.000000 1942.000000 360.000000
612.000000 1940.000000 28.000000
596.000000 1940.000000 44.000000
612.000000 1940.000000 356.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xffa3a3a3 common/materials/metal/aluminum
brush
vertices
704.000000 1941.000000 104.000000
704.000000 1941.000000 88.000000
612.000000 1941.000000 88.000000
612.000000 1941.000000 104.000000
704.000000 1940.000000 104.000000
704.000000 1940.000000 88.000000
612.000000 1940.000000 88.000000
612.000000 1940.000000 104.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
704.000000 1941.000000 72.000000
704.000000 1941.000000 56.000000
612.000000 1941.000000 56.000000
612.000000 1941.000000 72.000000
704.000000 1940.000000 72.000000
704.000000 1940.000000 56.000000
612.000000 1940.000000 56.000000
612.000000 1940.000000 72.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
704.000000 1941.000000 136.000000
704.000000 1941.000000 120.000000
612.000000 1941.000000 120.000000
612.000000 1941.000000 136.000000
704.000000 1940.000000 136.000000
704.000000 1940.000000 120.000000
612.000000 1940.000000 120.000000
612.000000 1940.000000 136.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
704.000000 1941.000000 168.000000
704.000000 1941.000000 152.000000
612.000000 1941.000000 152.000000
612.000000 1941.000000 168.000000
704.000000 1940.000000 168.000000
704.000000 1940.000000 152.000000
612.000000 1940.000000 152.000000
612.000000 1940.000000 168.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
996.000000 1872.000000 285.000000
996.000000 1872.000000 -252.000000
988.000000 1872.000000 -252.000000
988.000000 1872.000000 285.000000
996.000000 1848.000000 285.000000
996.000000 1848.000000 -252.000000
988.000000 1848.000000 -252.000000
988.000000 1848.000000 285.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
996.000000 1848.000000 285.000000
996.000000 1848.000000 -252.000000
988.000000 1848.000000 -252.000000
988.000000 1848.000000 285.000000
996.000000 1840.000000 285.000000
996.000000 1840.000000 -252.000000
988.000000 1840.000000 -252.000000
988.000000 1840.000000 285.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff9f9f9f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff9f9f9f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff9f9f9f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff9f9f9f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff9f9f9f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff9f9f9f common/materials/stone/stone
brush
vertices
1372.000000 1944.000000 352.000000
1372.000000 1944.000000 128.000000
1116.000000 1944.000000 128.000000
1116.000000 1944.000000 352.000000
1372.000000 1936.000000 352.000000
1372.000000 1936.000000 128.000000
1116.000000 1936.000000 128.000000
1116.000000 1936.000000 352.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
1120.000000 1936.000000 284.000000
1120.000000 1936.000000 128.000000
1116.000000 1936.000000 128.000000
1116.000000 1936.000000 284.000000
1120.000000 1880.000000 284.000000
1120.000000 1880.000000 128.000000
1116.000000 1880.000000 128.000000
1116.000000 1880.000000 284.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1372.000000 1944.000000 128.000000
1372.000000 1944.000000 -176.000000
1280.000000 1944.000000 -176.000000
1280.000000 1944.000000 128.000000
1372.000000 1936.000000 128.000000
1372.000000 1936.000000 -176.000000
1280.000000 1936.000000 -176.000000
1280.000000 1936.000000 128.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
720.000000 1944.000000 360.000000
720.000000 1944.000000 -28.000000
580.000000 1944.000000 -28.000000
580.000000 1944.000000 360.000000
720.000000 1940.000000 360.000000
720.000000 1940.000000 -28.000000
580.000000 1940.000000 -28.000000
580.000000 1940.000000 360.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
844.000000 1944.000000 524.000000
844.000000 1944.000000 360.000000
580.000000 1944.000000 360.000000
580.000000 1944.000000 524.000000
844.000000 1940.000000 524.000000
844.000000 1940.000000 360.000000
580.000000 1940.000000 360.000000
580.000000 1940.000000 524.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
1276.000000 1888.000000 32.000000
1276.000000 1888.000000 16.000000
1120.000000 1888.000000 16.000000
1120.000000 1888.000000 32.000000
1276.000000 1880.000000 32.000000
1276.000000 1880.000000 16.000000
1120.000000 1880.000000 16.000000
1120.000000 1880.000000 32.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffd0d0d0 common/materials/synthetic/plastic
brush
vertices
1276.000000 1896.000000 48.000000
1276.000000 1896.000000 32.000000
1120.000000 1896.000000 32.000000
1120.000000 1896.000000 48.000000
1276.000000 1880.000000 48.000000
1276.000000 1880.000000 32.000000
1120.000000 1880.000000 32.000000
1120.000000 1880.000000 48.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffd0d0d0 common/materials/synthetic/plastic
brush
vertices
1276.000000 1904.000000 64.000000
1276.000000 1904.000000 48.000000
1120.000000 1904.000000 48.000000
1120.000000 1904.000000 64.000000
1276.000000 1880.000000 64.000000
1276.000000 1880.000000 48.000000
1120.000000 1880.000000 48.000000
1120.000000 1880.000000 64.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffd0d0d0 common/materials/synthetic/plastic
brush
vertices
1276.000000 1912.000000 80.000000
1276.000000 1912.000000 64.000000
1120.000000 1912.000000 64.000000
1120.000000 1912.000000 80.000000
1276.000000 1880.000000 80.000000
1276.000000 1880.000000 64.000000
1120.000000 1880.000000 64.000000
1120.000000 1880.000000 80.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffd0d0d0 common/materials/synthetic/plastic
brush
vertices
1276.000000 1920.000000 96.000000
1276.000000 1920.000000 80.000000
1120.000000 1920.000000 80.000000
1120.000000 1920.000000 96.000000
1276.000000 1880.000000 96.000000
1276.000000 1880.000000 80.000000
1120.000000 1880.000000 80.000000
1120.000000 1880.000000 96.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffd0d0d0 common/materials/synthetic/plastic
brush
vertices
1276.000000 1928.000000 112.000000
1276.000000 1928.000000 96.000000
1120.000000 1928.000000 96.000000
1120.000000 1928.000000 112.000000
1276.000000 1880.000000 112.000000
1276.000000 1880.000000 96.000000
1120.000000 1880.000000 96.000000
1120.000000 1880.000000 112.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffd0d0d0 common/materials/synthetic/plastic
brush
vertices
1276.000000 1936.000000 128.000000
1276.000000 1936.000000 112.000000
1120.000000 1936.000000 112.000000
1120.000000 1936.000000 128.000000
1276.000000 1880.000000 128.000000
1276.000000 1880.000000 112.000000
1120.000000 1880.000000 112.000000
1120.000000 1880.000000 128.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffd0d0d0 common/materials/synthetic/plastic
brush
vertices
996.000000 2128.000000 285.000000
996.000000 2128.000000 -252.000000
988.000000 2128.000000 -252.000000
988.000000 2128.000000 285.000000
996.000000 1872.000000 285.000000
996.000000 1872.000000 -252.000000
988.000000 1872.000000 -252.000000
988.000000 1872.000000 285.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff770000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff770000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff770000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff770000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff770000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff770000 internal/editor/textures/editor_clip
brush
vertices
876.000000 2128.000000 284.000000
752.000000 2128.000000 160.000000
736.000000 2128.000000 168.000000
752.000000 1944.000000 160.000000
860.000000 2128.000000 292.000000
860.000000 1944.000000 292.000000
876.000000 1944.000000 284.000000
736.000000 1944.000000 168.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff770000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0xff770000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0xff770000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0xff770000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0xff770000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff770000 internal/editor/textures/editor_clip
brush
vertices
752.000000 2128.000000 160.000000
752.000000 2128.000000 -28.000000
736.000000 2128.000000 -28.000000
736.000000 1944.000000 168.000000
736.000000 2128.000000 168.000000
752.000000 1944.000000 -28.000000
736.000000 1944.000000 -28.000000
752.000000 1944.000000 160.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff770000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0xff770000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff770000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0xff770000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0xff770000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff770000 internal/editor/textures/editor_clip
brush
vertices
736.000000 1936.000000 285.000000
736.000000 1936.000000 -28.000000
673.000000 1936.000000 -28.000000
673.000000 1936.000000 285.000000
736.000000 1904.000000 285.000000
736.000000 1904.000000 -28.000000
673.000000 1904.000000 -28.000000
673.000000 1904.000000 285.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff6d6d6d common/materials/stone/stone
brush
vertices
864.000000 1936.000000 288.000000
736.000000 1904.000000 288.000000
736.000000 1936.000000 160.000000
864.000000 1904.000000 288.000000
736.000000 1904.000000 160.000000
736.000000 1936.000000 288.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 5 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 0 5 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0xff6d6d6d common/materials/stone/stone
brush
vertices
736.000000 1944.000000 160.000000
736.000000 1944.000000 -28.000000
720.000000 1944.000000 -28.000000
720.000000 1936.000000 168.000000
720.000000 1944.000000 168.000000
736.000000 1936.000000 -28.000000
720.000000 1936.000000 -28.000000
736.000000 1936.000000 160.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff6d6d6d common/materials/stone/stone
brush
vertices
1276.000000 1880.000000 284.000000
1276.000000 1880.000000 -252.000000
992.000000 1880.000000 -252.000000
992.000000 1880.000000 284.000000
1276.000000 1872.000000 284.000000
1276.000000 1872.000000 -252.000000
992.000000 1872.000000 -252.000000
992.000000 1872.000000 284.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
740.000000 2224.000000 524.000000
740.000000 2224.000000 -160.000000
580.000000 2224.000000 -160.000000
580.000000 2224.000000 524.000000
740.000000 2128.000000 524.000000
740.000000 2128.000000 -160.000000
580.000000 2128.000000 -160.000000
580.000000 2128.000000 524.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
1280.000000 1936.000000 128.000000
1280.000000 1936.000000 -168.000000
1276.000000 1936.000000 -168.000000
1280.000000 1876.000000 -168.000000
1276.000000 1936.000000 128.000000
1276.000000 1876.000000 128.000000
1280.000000 1876.000000 128.000000
1276.000000 1876.000000 -168.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 structural/dev/dev_grey128
brush
vertices
1500.000000 2132.000000 -244.000000
1500.000000 2132.000000 -564.000000
984.000000 2132.000000 -564.000000
984.000000 2132.000000 -244.000000
1500.000000 1840.000000 -244.000000
1500.000000 1840.000000 -564.000000
984.000000 1840.000000 -564.000000
984.000000 1840.000000 -244.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
844.000000 1944.000000 360.000000
844.000000 1940.000000 360.000000
720.000000 1944.000000 168.000000
720.000000 1944.000000 360.000000
720.000000 1940.000000 360.000000
720.000000 1940.000000 168.000000
864.000000 1944.000000 304.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 0 6 0x00000000
brush
vertices
860.000000 1944.000000 284.000000
736.000000 1944.000000 160.000000
720.000000 1944.000000 168.000000
736.000000 1936.000000 160.000000
864.000000 1944.000000 304.000000
864.000000 1936.000000 304.000000
860.000000 1936.000000 284.000000
720.000000 1936.000000 168.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff6d6d6d common/materials/stone/stone
brush
vertices
1372.000000 2132.000000 412.000000
1372.000000 2132.000000 -252.000000
740.000000 2132.000000 -252.000000
740.000000 2132.000000 412.000000
1372.000000 2128.000000 412.000000
1372.000000 2128.000000 -252.000000
740.000000 2128.000000 -252.000000
740.000000 2128.000000 412.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff770000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff770000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff770000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff770000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff770000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff770000 internal/editor/textures/editor_clip
brush
vertices
1372.000000 2132.000000 -84.000000
1372.000000 2132.000000 -252.000000
1180.000000 2132.000000 -252.000000
1372.000000 1880.000000 -84.000000
1372.000000 1880.000000 -252.000000
1180.000000 1880.000000 -252.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
1500.000000 2132.000000 356.000000
1500.000000 2132.000000 -92.000000
1372.000000 2132.000000 -92.000000
1372.000000 2132.000000 356.000000
1500.000000 1944.000000 356.000000
1500.000000 1944.000000 -92.000000
1372.000000 1944.000000 -92.000000
1372.000000 1944.000000 356.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
860.000000 2132.000000 464.000000
860.000000 2132.000000 284.000000
676.000000 2132.000000 460.000000
676.000000 1944.000000 464.000000
676.000000 2132.000000 464.000000
860.000000 1944.000000 284.000000
676.000000 1944.000000 460.000000
860.000000 1944.000000 464.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 structural/dev/dev_grey128
brush
vertices
740.000000 2132.000000 524.000000
580.000000 1944.000000 524.000000
580.000000 2132.000000 364.000000
740.000000 1944.000000 524.000000
580.000000 1944.000000 364.000000
580.000000 2132.000000 524.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 0 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000 structural/dev/dev_grey128
brush
vertices
580.000000 2132.000000 372.000000
580.000000 2132.000000 -28.000000
548.000000 2132.000000 -28.000000
548.000000 2132.000000 372.000000
580.000000 1944.000000 372.000000
580.000000 1944.000000 -28.000000
548.000000 1944.000000 -28.000000
548.000000 1944.000000 372.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
580.000000 1944.000000 36.000000
644.000000 2132.000000 -28.000000
580.000000 2132.000000 -28.000000
644.000000 1944.000000 -28.000000
580.000000 1944.000000 -28.000000
580.000000 2132.000000 36.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000 structural/dev/dev_grey128
brush
vertices
740.000000 2132.000000 -28.000000
740.000000 2132.000000 -108.000000
484.000000 2132.000000 -108.000000
484.000000 2132.000000 -28.000000
740.000000 1904.000000 -28.000000
740.000000 1904.000000 -108.000000
484.000000 1904.000000 -108.000000
484.000000 1904.000000 -28.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
1372.000000 2132.000000 356.000000
1372.000000 2132.000000 284.000000
860.000000 2132.000000 284.000000
860.000000 2132.000000 356.000000
1372.000000 1840.000000 356.000000
1372.000000 1840.000000 284.000000
860.000000 1840.000000 284.000000
860.000000 1840.000000 356.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
entity
type CameraPath
UInt32 entityIdAttachedTo 9
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type Target
Vector3 position 1152.000000 1880.000000 -192.000000
String32 name tp1
entity
type PlayerSpawn
Vector3 position 1056.000000 1876.000000 228.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 1072.000000 1876.000000 -204.000000
Vector3 angles 315.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 1328.000000 1940.000000 228.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 1328.000000 1940.000000 -60.000000
Vector3 angles 290.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 1200.000000 1876.000000 -140.000000
Vector3 angles 290.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 632.000000 1948.000000 52.000000
Vector3 angles 90.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
|
fa7daf0d0b787775381b033083d3d7a790ba9632 | 481f3317298608c37d4cb96f148faf5068d712bb | /lib/scilab/getTransferFunction.sci | 00791fffd7a2cd066d40fde7f8f53a5e7b37d84d | [] | no_license | masilvabustos/xcos2uc | 1f83c0710da6506cec8c8aad5a97848903f6ad32 | 531c35a53b7efc11e69e98c643ebad3df3d362f5 | refs/heads/master | 2020-04-05T22:41:50.570623 | 2016-11-13T18:18:22 | 2016-11-13T18:18:22 | 22,852,879 | 1 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 354 | sci | getTransferFunction.sci |
function trfun = getTransferFunction(block)
if block.gui <> 'DLR' then
error('getTransferFunction: invalid block (must be DLR)')
end
num_str = block.graphics.exprs(1)
den_str = block.graphics.exprs(2)
z = poly(0, 'z')
num = evstr(num_str)
den = evstr(den_str)
trfun = num/den
endfunction
|
145b2a66be57e9846e99ce2c33094a0b8d67101e | 449d555969bfd7befe906877abab098c6e63a0e8 | /2975/CH30/EX30.6w/Ex30_6w.sce | c75449660450670a4d824e15f091c3eb12074fce | [] | 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 | 528 | sce | Ex30_6w.sce | //developed in windows 8 operating system 64bit
//platform Scilab 5.4.1
//example 30_6w
clc;clear;
//Given Data
k=9*10^9; //Value of the coulomb constant (Unit: N-m^2/C^2)
A=100; //Value of A (Unit:V/m^2)
a=20*10^-2; //Value of the radius of sphere (Unit: m)
//Calculation
charge=A*a^3/k; //Calculation of charge contained in the sphere (Unit:C)
disp(charge,"The charge contained in a sphere is (Unit:C)");
|
923ede14da4a4e1b9e1684f74b0cd3d89ac95206 | 449d555969bfd7befe906877abab098c6e63a0e8 | /764/CH11/EX11.4.b/solution11_4.sce | 502e71d006b61c9d79f5f82f51e822274f1a5ae1 | [] | 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,423 | sce | solution11_4.sce |
//(Friction Clutches) Example 11.4
//Function to calculate the roots of a cubic equation
function[r] = cubic(a, b, c)
//Use Gerolamo Cardano's solution for cubic equations with real roots
//roots function can also be used
//Use auxiliary variables p and q
p =((3 * b)-(a^2))/3
q =(c)+((2 * (a^3))/27)-((a * b)/3)
//Calculate discrimant Di for the cubic equation
Di = ((p/2)^2)+((q/3)^3)
//Calculate values of cos(Fi) and Fi
if(p<0)
//For |p|
p = p * -1
end
Fi = acos((-1 * q)/(2 * (sqrt((p/3)^3))))
Fi1 = Fi/3
Fi2 = (Fi + (4 *%pi))/3
Fi3 = (Fi + (2 *%pi))/3
//x,y and z are the three real distinct roots of the cubic equation
x = (-1 * (a/3)) + (2 * cos(Fi1) * sqrt(p/3))
y = (-1 * (a/3)) + (2 * cos(Fi2) * sqrt(p/3))
z = (-1 * (a/3)) + (2 * cos(Fi3) * sqrt(p/3))
printf('\nx,y and z are the three real roots of this cubic equation\n')
printf('x = %f\ny = %f\nz = %f\n',x,y,z)
//d should be maximum for cost and area of friction lining to be minimum
//Assigning proper value to d
if (x > y) then
e = x
if (e > z) then
r = e
else
r = z
end
else
e = y
if (e > z) then
r = e
else
r = z
end
end
endfunction
//Obtain path of solution file
path = get_absolute_file_path('solution11_4.sce')
//Obtain path of function file
datapath = path + filesep()+'function11_4.sci'
//Clear all
clc
//Execute the data file
exec(datapath)
//Define variable i and arrays y and z
i = 1
//Initialise y and z vectors
y = zeros(1,11)
z = zeros(1,11)
printf('\nTorque characteristic(T) is given by:\n')
printf('\nT = (8 * Mt)/(pi * mu * Pa * (D^3))\n')
printf('\nd/D = x\n')
//x is the independent variable and T is the dependent variable
//Store values of x and T in y and z vectors
for x=0:0.005:1
T = tchar(x)
y(1,i) = x
z(1,i) = T
i = i + 1
end
//Plot the graph
plot(y,z)
//Get the handle of current axes
g = gca()
//Give labels and set label properties
g.labels_font_color=5
g.font_size=2
g.grid=[2,2]
g.box="off"
title('Variation of Torque against d/D')
xlabel('d/D')
ylabel('Torque characteristic')
a = max(z)
printf('\nMaximum value of torque characteristic(Tmax) = %f\n',a)
//Find corresponding value of d/D
r = cubic(0, -1, a)
//As two positive roots are almost equal, print their average value
printf('\nd/D value corresponding to Tmax = %f\n',r)
|
c3b406d9a45bfe84016c933153d44ff8178bf576 | f575b6ff7e0f0e2a1e8b41f9ab83ac853231ba68 | /pkg/anupq/gap/anupga.tst | 7bd7e150b7aaf57f4d9f581ea7f5084e14e4e19c | [] | no_license | jmichel7/gap3-jm | 756c6e6c5d3c7956fe4dc20b2f76f320f49a11b5 | 3eeb3c4d174d567c51e712f997febb1e8e2ad65f | refs/heads/master | 2023-08-23T19:04:53.627679 | 2023-08-21T14:21:33 | 2023-08-21T14:21:33 | 124,115,667 | 0 | 3 | null | null | null | null | UTF-8 | Scilab | false | false | 5,351 | tst | anupga.tst | SizeScreen( [ 70, 24 ] );
#>[ 70, 24 ]
InfoRead1 := Ignore;
#>function (...) internal; end
RequirePackage( "anupq" );
F := FreeGroup(2);
#>Group( f.1, f.2 )
F.relators := [ F.1^2, F.2^2, Comm(F.1,F.2) ];
#>[ f.1^2, f.2^2, f.1^-1*f.2^-1*f.1*f.2 ]
G := AgGroupFpGroup(F);
#>Group( f.1, f.2 )
a1 := GroupHomomorphismByImages( G, G, [G.1, G.2], [G.2, G.1 * G.2] );
#>GroupHomomorphismByImages( Group( f.1, f.2 ), Group( f.1, f.2 ),
#>[ f.1, f.2 ], [ f.2, f.1*f.2 ] )
a2 := GroupHomomorphismByImages( G, G, [G.1, G.2], [G.2, G.1] );
#>GroupHomomorphismByImages( Group( f.1, f.2 ), Group( f.1, f.2 ),
#>[ f.1, f.2 ], [ f.2, f.1 ] )
G.automorphisms := [ a1, a2 ];
#>[ GroupHomomorphismByImages( Group( f.1, f.2 ), Group( f.1, f.2 ),
#> [ f.1, f.2 ], [ f.2, f.1*f.2 ] ),
#> GroupHomomorphismByImages( Group( f.1, f.2 ), Group( f.1, f.2 ),
#> [ f.1, f.2 ], [ f.2, f.1 ] ) ]
L := PqDescendants( G, "OrderBound", 4, "ClassBound", 4 );
#>[ Group( G.1, G.2, G.3 ), Group( G.1, G.2, G.3 ),
#> Group( G.1, G.2, G.3, G.4 ), Group( G.1, G.2, G.3, G.4 ),
#> Group( G.1, G.2, G.3, G.4 ), Group( G.1, G.2, G.3, G.4 ),
#> Group( G.1, G.2, G.3, G.4 ) ]
List( L, x -> x.relators );
#>[ [ G.1^2*G.3^-1, G.2^2, G.3^2 ],
#> [ G.1^2, G.2^2, G.3^2, G.2^-1*G.1^-1*G.2*G.1*G.3^-1 ],
#> [ G.1^2*G.3^-1, G.2^2*G.4^-1, G.3^2, G.4^2 ],
#> [ G.1^2*G.4^-1, G.2^2, G.3^2, G.4^2, G.2^-1*G.1^-1*G.2*G.1*G.3^-1
#> ],
#> [ G.1^2*G.4^-1, G.2^2*G.3^-1, G.3^2, G.4^2, G.2^-1*G.1^-1*G.2*G.1*\
#>G.3^-1 ], [ G.1^2*G.3^-1, G.2^2, G.3^2*G.4^-1, G.4^2 ],
#> [ G.1^2, G.2^2, G.3^2*G.4^-1, G.4^2, G.2^-1*G.1^-1*G.2*G.1*G.3^-1,
#> G.3^-1*G.1^-1*G.3*G.1*G.4^-1, G.3^-1*G.2^-1*G.3*G.2*G.4^-1 ] ]
List( L, x -> x.automorphisms );
#>[ [ GroupHomomorphismByImages( Group( G.1, G.2, G.3 ), Group( G.1,
#> G.2, G.3 ), [ G.1, G.2, G.3 ], [ G.1*G.3, G.2, G.3 ] ),
#> GroupHomomorphismByImages( Group( G.1, G.2, G.3 ), Group(
#> G.1, G.2, G.3 ), [ G.1, G.2, G.3 ], [ G.1, G.2*G.3, G.3 ] ),
#> GroupHomomorphismByImages( Group( G.1, G.2, G.3 ), Group(
#> G.1, G.2, G.3 ), [ G.1, G.2, G.3 ], [ G.1*G.2, G.2, G.3 ] )
#> ],
#> [ GroupHomomorphismByImages( Group( G.1, G.2, G.3 ), Group( G.1,
#> G.2, G.3 ), [ G.1, G.2, G.3 ], [ G.2, G.1, G.3 ] ) ],
#> [ GroupHomomorphismByImages( Group( G.1, G.2, G.3, G.4 ), Group(
#> G.1, G.2, G.3, G.4 ), [ G.1, G.2, G.3, G.4 ],
#> [ G.1*G.3, G.2, G.3, G.4 ] ),
#> GroupHomomorphismByImages( Group( G.1, G.2, G.3,
#> G.4 ), Group( G.1, G.2, G.3, G.4 ), [ G.1, G.2, G.3, G.4 ],
#> [ G.1*G.4, G.2, G.3, G.4 ] ),
#> GroupHomomorphismByImages( Group( G.1, G.2, G.3,
#> G.4 ), Group( G.1, G.2, G.3, G.4 ), [ G.1, G.2, G.3, G.4 ],
#> [ G.1, G.2*G.3, G.3, G.4 ] ),
#> GroupHomomorphismByImages( Group( G.1, G.2, G.3,
#> G.4 ), Group( G.1, G.2, G.3, G.4 ), [ G.1, G.2, G.3, G.4 ],
#> [ G.1, G.2*G.4, G.3, G.4 ] ),
#> GroupHomomorphismByImages( Group( G.1, G.2, G.3,
#> G.4 ), Group( G.1, G.2, G.3, G.4 ), [ G.1, G.2, G.3, G.4 ],
#> [ G.2, G.1*G.2, G.4, G.3*G.4 ] ),
#> GroupHomomorphismByImages( Group( G.1, G.2, G.3,
#> G.4 ), Group( G.1, G.2, G.3, G.4 ), [ G.1, G.2, G.3, G.4 ],
#> [ G.2, G.1, G.4, G.3 ] ) ],
#> [ GroupHomomorphismByImages( Group( G.1, G.2, G.3, G.4 ), Group(
#> G.1, G.2, G.3, G.4 ), [ G.1, G.2, G.3, G.4 ],
#> [ G.1*G.4, G.2, G.3, G.4 ] ),
#> GroupHomomorphismByImages( Group( G.1, G.2, G.3,
#> G.4 ), Group( G.1, G.2, G.3, G.4 ), [ G.1, G.2, G.3, G.4 ],
#> [ G.1, G.2*G.4, G.3, G.4 ] ),
#> GroupHomomorphismByImages( Group( G.1, G.2, G.3,
#> G.4 ), Group( G.1, G.2, G.3, G.4 ), [ G.1, G.2, G.3, G.4 ],
#> [ G.1*G.2, G.2, G.3, G.3*G.4 ] ) ],
#> [ GroupHomomorphismByImages( Group( G.1, G.2, G.3, G.4 ), Group(
#> G.1, G.2, G.3, G.4 ), [ G.1, G.2, G.3, G.4 ],
#> [ G.1*G.4, G.2, G.3, G.4 ] ),
#> GroupHomomorphismByImages( Group( G.1, G.2, G.3,
#> G.4 ), Group( G.1, G.2, G.3, G.4 ), [ G.1, G.2, G.3, G.4 ],
#> [ G.1, G.2*G.4, G.3, G.4 ] ),
#> GroupHomomorphismByImages( Group( G.1, G.2, G.3,
#> G.4 ), Group( G.1, G.2, G.3, G.4 ), [ G.1, G.2, G.3, G.4 ],
#> [ G.1*G.2, G.2, G.3, G.4 ] ) ],
#> [ GroupHomomorphismByImages( Group( G.1, G.2, G.3, G.4 ), Group(
#> G.1, G.2, G.3, G.4 ), [ G.1, G.2, G.3, G.4 ],
#> [ G.1*G.4, G.2, G.3, G.4 ] ),
#> GroupHomomorphismByImages( Group( G.1, G.2, G.3,
#> G.4 ), Group( G.1, G.2, G.3, G.4 ), [ G.1, G.2, G.3, G.4 ],
#> [ G.1, G.2*G.4, G.3, G.4 ] ),
#> GroupHomomorphismByImages( Group( G.1, G.2, G.3,
#> G.4 ), Group( G.1, G.2, G.3, G.4 ), [ G.1, G.2, G.3, G.4 ],
#> [ G.1*G.3, G.2, G.3*G.4, G.4 ] ),
#> GroupHomomorphismByImages( Group( G.1, G.2, G.3,
#> G.4 ), Group( G.1, G.2, G.3, G.4 ), [ G.1, G.2, G.3, G.4 ],
#> [ G.1*G.2, G.2, G.3, G.4 ] ) ],
#> [ GroupHomomorphismByImages( Group( G.1, G.2, G.3, G.4 ), Group(
#> G.1, G.2, G.3, G.4 ), [ G.1, G.2, G.3, G.4 ],
#> [ G.1, G.2*G.4, G.3, G.4 ] ),
#> GroupHomomorphismByImages( Group( G.1, G.2, G.3,
#> G.4 ), Group( G.1, G.2, G.3, G.4 ), [ G.1, G.2, G.3, G.4 ],
#> [ G.2, G.1, G.3*G.4, G.4 ] ) ] ]
|
78d45ebdb00549e50180ebf77ba3b2c8cff2dce6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1820/CH6/EX6.5/Example6_5.sce | 919af5d8a9c4c26c35890dc36ab132aabd0a6ce4 | [] | 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,768 | sce | Example6_5.sce | // ELECTRIC POWER TRANSMISSION SYSTEM ENGINEERING ANALYSIS AND DESIGN
// TURAN GONEN
// CRC PRESS
// SECOND EDITION
// CHAPTER : 6 : DIRECT-CURRENT POWER TRANSMISSION
// EXAMPLE : 6.5 :
clear ; clc ; close ; // Clear the work space and console
// GIVEN DATA
X_C = 6.2292017 ; // commutating reactance when all 3 breakers are closed
E_LN = 53.418803 * 10^3 ; // Wye-side volt rating
V_d0 = 125 * 10^3 ; // voltage rating of bridge rectifier in V
V_dr0 = V_d0 ; // Max continuos no-load direct voltage in V
I = 1600 ; // current rating of bridge rectifier in A
I_d = I ; // Max continuous current
nom_kV = sqrt(3) * E_LN ; // Nominal kV_L-L
X_tr = 0.10 ; //impedance of rectifier transformer in pu Ω
alpha = 0 ; // delay angle α = 0 degree
// CALCULATIONS
// For case (a)
E_m = sqrt(2) * E_LN ;
u = acosd(1 - (2*X_C*I_d)/(sqrt(3)*E_m)); // overlap angle when delay angle α = 0 degree
// For case (b)
R_C = (3/%pi) * X_C ; // Equ commutation resistance per phase
V_d = V_d0 * cosd(alpha) - R_C * I_d ; // dc voltage of rectifier in V
// For case (c)
cos_theta = V_d/V_d0 ; // Displacement or power factor of rectifier
// For case (d)
Q_r = V_d * I_d * tand( acosd(cos_theta) ) ; // magnetizing var I/P
// DISPLAY RESULTS
disp("EXAMPLE : 6.5 : SOLUTION :-") ;
printf("\n (a) Overlap angle u of rectifier, u = %.2f degree\n",u) ;
printf("\n (b) The dc voltage V_dr of rectifier, V_dr = %.2f V \n",V_d) ;
printf("\n (c) Displacement factor of rectifier, cosθ = %.3f \n",cos_theta) ;
printf("\n and θ = %.1f degree \n ",acosd(cos_theta)) ;
printf("\n (d) Magnetizing var input to rectifier, Q_r = %.4e var \n",Q_r) ;
printf("\n NOTE : In case(d) 7.6546e+07 var is same as 7.6546*10^7 var = 76.546 Mvar \n") ;
|
51075f9afcb9e66d7129764dfdd00f219c5d9ccb | 449d555969bfd7befe906877abab098c6e63a0e8 | /165/CH11/EX11.10.f/ex11_10_f.sce | 5e9021916092c01a7936ae61245e6ad9957d0e39 | [] | 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 | 298 | sce | ex11_10_f.sce | //Example 11.10(f)
clc;
//Given values of bridge elements
R1=300;
C1=0.6*10^-6;
R2=100;
C3=100*10^-12;
//Value of Rx for Schering's Bridge
Rx=C1*R2/C3;
//Value of Cx for Schering's Bridge
Cx=C3*R1/R2;
printf('\nValue of resistence is %d ohm\n',Rx)
disp(Cx,'Value of Capacitance is') |
913f8372a08122fa2552aa8662f20a95374138b0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /608/CH8/EX8.02/8_02.sce | 5bfaee2671464e40f4211e7bba004835c958d269 | [] | 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 | 744 | sce | 8_02.sce | //Problem 8.02: A conductor carries a current of 20 A and is at rightangles to a magnetic field having a flux density of 0.9 T. If the length of the conductor in the field is 30 cm, calculate the force acting on the conductor. Determine also the value of the force if the conductor is inclined at an angle of 30° to the direction of the field.
//initializing the variables:
B = 0.9; // in tesla
I = 20; // in Amperes
l = 0.30; // in m
alpha = 30; // in degree
u0 = 4*%pi*1E-7;
//calculation:
F1 = B*I*l
F2 = B*I*l*sin(alpha*%pi/180)
printf("\n\nResult\n\n")
printf("\n (a)Force when the conductor is at right angles to the field = %.1f N",F1)
printf("\n (b)Force when the conductor is at 30° angle to the field = %.1f N",F2) |
977a8e7cba2d61e4aa66d781edcb8187049c995d | 449d555969bfd7befe906877abab098c6e63a0e8 | /2705/CH13/EX13.4/Ex13_4.sce | 2f9f9c42a1f40b1d126b3c35c92cf33665ec44e6 | [] | 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,144 | sce | Ex13_4.sce | clear;
clc;
disp('Example 13.4');
// aim : To determine
// (a) the power output of the stage
// (b) the specific enthalpy drop in the stage
// (c) the percentage increase in relative velocity in the moving blades due to expansion in the bladse
// given values
N = 50;// speed, [m/s]
d = 1;// blade ring diameter, [m]
nai = 50;// nozzle inlet angle, [degree]
nae = 30;// nozzle exit angle, [degree]
m_dot = 600000;// steam flow rate, [kg/h]
se = .85;// stage efficiency
// solution
// (a)
U = %pi*d*N;// mean blade speed, [m/s]
// from Fig. 13.17(diagram 13.4)
Cwi_plus_Cwe = 444;// change in whirl speed, [m/s]
P = m_dot*U*Cwi_plus_Cwe/3600;// power output of the stage, [W]
mprintf('\n (a) The power output of the stage is = %f MW\n',P*10^-6);
// (b)
h = U*Cwi_plus_Cwe/se;// specific enthalpy,[J/kg]
mprintf('\n (b) The specific enthalpy drop in the stage is = %f kJ/kg\n ',h*10^-3);
// (c)
// again from diagram
Cri = 224;// [m/s]
Cre = 341;// [m/s]
Iir = (Cre-Cri)/Cri;// increase in relative velocity
mprintf('\n (c) The increase in relative velocity is = %f percent\n',Iir*100);
// End
|
f02b081dec9d3bf5ef6c08c5e8d6b0cac924d18b | 449d555969bfd7befe906877abab098c6e63a0e8 | /62/CH3/EX3.5/ex_3_5.sce | 10504dcaf7885bcf41a9074603a3772ab1c1bbf9 | [] | 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 | 351 | sce | ex_3_5.sce | clc
syms t s
s1=%s;
x=laplace(exp(-2*t)+exp(-3*t),t,s)
y=laplace(exp(-3*t)-%e^(2*t))
z=laplace(%e^(2*t)-%e^(-3*t))
disp(z,y,x,"laplace transform of a b c is")
x=1/(s1+2)+1/(s1+3);
plzr(x)
y=1/(s1+3)-1/(s1-2);
figure
plzr(y)
z=1/(s1-2)-1/(s1+3);
figure
plzr(z)
disp("there is no region of convergence for c hence no transform exists")
|
d7c35b28517fbf26355862934918f3d26aceda2f | 13525377024c6d91a5eee2f120caf1f837b42683 | /Scilab/Newton_F.sci | 9b2d3e5599ea7a0ebacdb2a0aaabd6c208fdf6df | [] | no_license | BASARANOMO/water-distribution-network-convex-optimization | b6ea0b6c17734ff00f04065ff3a4b216166acffd | 454e87fa668cfbabe3e62991c87b24d679df6c75 | refs/heads/main | 2023-02-25T12:39:50.978120 | 2021-02-03T08:55:07 | 2021-02-03T08:55:07 | 335,556,035 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,030 | sci | Newton_F.sci | function [fopt,xopt,gopt]=Newton_F(Oracle,xini)
///////////////////////////////////////////////////////////////////////////////
// //
// RESOLUTION D'UN PROBLEME D'OPTIMISATION SANS CONTRAINTES //
// //
// Methode de Newton avec pas unite //
// //
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
//
// On rappelle que l'oracle demande la presence d'un certain nombre
// de tableaux et de variables dans l'environnement Scilab.
//
///////////////////////////////////////////////////////////////////////////////
// ------------------------
// Parametres de la methode
// ------------------------
titre = "Parametres de la methode de Newton";
labels = ["Nombre maximal d iterations";...
"Longueur initiale du pas";...
"Seuil de convergence sur G"];
typ = list("vec",1,"vec",1,"vec",1);
default = ["25";"1.0";"0.000001"];
[ok,iter,alphai,tol] = getvalue(titre,labels,typ,default);
// ----------------------------
// Initialisation des variables
// ----------------------------
x = xini;
logG = [];
logP = [];
Cout = [];
timer();
// -------------------------
// Boucle sur les iterations
// -------------------------
kstar = iter;
for k = 1:iter
// - valeur du critere, du gradient et du hessien
ind = 7;
[F,G,H] = Oracle(x,ind);
// - test de convergence
if norm(G) <= tol then
kstar = k;
break
end
// - test de l'inversibilite du hessien
if rcond(H) <= 0.000001 then
printf('Iteration %i , matrice hessienne singuliere !\n',k)
H = eye(H);
end
// - evolution de la norme du gradient
logG = [ logG ; log10(norm(G)) ];
// - evolution du critere
Cout = [ Cout ; F ];
// - direction de descente
D = - H \ G;
// - test de la direction de descente
coe = D' * G
if coe >= 0 then
printf('Iteration %i , direction de montee !\n',k)
end
// - valeur du pas
alphan = alphai;
// - evolution du pas de gradient
logP = [ logP ; log10(alphan) ];
// - mise a jour des variables
x = x + (alphan*D);
end
// ---------------------------
// Resultats de l'optimisation
// ---------------------------
fopt = F;
xopt = x;
gopt = G;
tcpu = timer();
cvge = ['Iteration : ' string(kstar);...
'Temps CPU : ' string(tcpu);...
'Critere optimal : ' string(fopt);...
'Norme du gradient : ' string(norm(gopt))];
disp('Fin de la methode de Newton')
disp(cvge)
// - visualisation de la convergence
Visualg(logG,logP,Cout);
endfunction
|
5a3506e210412b72a26738d030b230e600d25cfc | af86eb5dd11a276a153a618491fd2a0af057d237 | /Communication Engineering - Scilab/AM using RC low pass filter.sce | 3a07abc371750cf34c6a0face26bcb3328bab6bd | [] | no_license | gsiddhad/Mathematics | c2b2b78536e0769ea65791128b12aceea3c6f720 | 4bf16c674d84d1498b874c0f3b3d4b31785aae47 | refs/heads/master | 2023-03-06T02:52:46.933057 | 2021-02-20T11:17:58 | 2021-02-20T11:17:58 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,998 | sce | AM using RC low pass filter.sce | Fc = 20; // carrier frequency of 20 kHz
Fs = 160; // sampling rate of 160 samples per ms
Fm = 0.4; // modulating frequency of 0.4 kHz
t = 0:1/Fs:10; // t of 10 seconds
pi = 3.1416;
c = cos(2*pi*Fc*t); // carrier signal
m = cos(2*pi*Fm*t); // modulating signal
s = c + 0.25*cos(2*pi*(Fc+Fm)*t) + 0.25*cos(2*pi*(Fc-Fm)*t); // FCAM 50% mod
dsb_sc = ammod(m,Fc,Fs); // DSB-SC signal
figure;
subplot(4,1,1);
plot(t, m);
title('Modulating Signal'); xlabel('time (s)'); ylabel('amplitude');
subplot(4,1,2);
plot(t, c);
title('Carrier Signal'); xlabel('time (s)'); ylabel('amplitude');
subplot(4,1,3);
plot(t, s);
title('FCAM Signal'); xlabel('time (s)'); ylabel('amplitude');
subplot(4,1,4);
plot(t, dsb_sc);
title('DSB-SC Signal'); xlabel('time (s)'); ylabel('amplitude');
// Non-Coherent Detection Step 1: Envelope Detection
Vc(1) = 0; // initial capacitor voltage
for i = 2:length(s)
if s(i) > Vc(i-1) // diode on (charging)
Vc(i) = s(i);
else // diode off (discharging)
Vc(i) = Vc(i-1) - 0.023*Vc(i-1);
end
end
Vd(1) = 0;
for i = 2:length(dsb_sc)
if dsb_sc(i) > Vd(i-1) // diode on (charging)
Vd(i) = dsb_sc(i);
else // diode off (discharging)
Vd(i) = Vd(i-1) - 0.023*Vd(i-1);
end
end
// Non-Coherent Detection Step 2: Low Pass RC Filter
h = fir1(100, 0.0125, 'low'); // 1 kHz cut-off frequency
foutputc = filter(h,1,Vc);
figure;
subplot(3,1,1);
plot(t, Vc);
title('Envelope detector output of FCAM signal'); xlabel('time (s)'); ylabel('amplitude');
subplot(3,1,2);
plot(t, Vd);
title('Envelope detector output of DSB-SC signal'); xlabel('time (s)'); ylabel('amplitude');
subplot(3,1,3);
plot(t, foutputc);
title('Non-coherent demodulated FCAM signal'); xlabel('time (s)'); ylabel('amplitude');
|
fe9bd5667c58964986c0202f4b1b5ee23e0fc9e2 | 31e4840b6243736b6c4603f5712ce9b7b666dc68 | /321A/labs/exp11/part2.sce | 0308561ff35cddfecd28d2631f08a2bdf50bf6c4 | [] | no_license | austinbeauch/thirdyearphys | ca1d64b0a19b36ba3ce2a20021a939dfae6ae32f | 71b4eb77ff4e323c3df2aef42fb9f6a83265ba3d | refs/heads/master | 2020-07-22T02:47:37.732073 | 2019-12-04T05:44:24 | 2019-12-04T05:44:24 | 207,051,918 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,005 | sce | part2.sce | t = mgetl("C:\Users\austi\Documents\thirdyearphys\321A\labs\exp11\data.txt");
c = evstr(t);
time = c(:,1);
force = c(:,2);
x = c(:,3);
middle = (max(x) + min(x))/2
x = x-middle;
v = c(:,4);
acc = c(:,5);
plot(time, x)
xlabel("Time")
ylabel("Position")
title("Position vs Time")
plot(x, v)
xlabel("Positon")
ylabel("Velocity")
title("Phase Space")
plot3d3(x,v,time)
xlabel("Positon")
ylabel("Velocity")
zlabel("Time")
title("Phase Space")
figure(1);
plot(time, [x,v,acc,force])
hl=legend(['Position';'Velocity';'Acceleration';'Force']);
xlabel("Time")
ylabel("x, v, a, F")
title("Position, Velocity, Acceleration, and Force versus Time")
m_cart = 0.4831;
m_springs = .02240;
m_effective = m_cart + m_springs/3;
T = 2.95;
//T = 2*3.14*sqrt(m_effective/k)
k = (T/(2*3.14))^-2 * m_effective;
K = 0.5 * m_effective * v^2;
P = 0.5 * k * x^2;
E = K + P;
m = 25
plot(x(1:m), [K(1:m), P(1:m), E(1:m)]);
xlabel("Position")
ylabel("Energy")
title("Energy Space")
hl=legend(['Kinetic';'Potential';'Total'], 4);
|
668dccf71625a44d44503a810882ce3c808cd5d5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1151/CH6/EX6.9/example9.sce | 4b2bd1854494d7126b3c847d808b34a93680101b | [] | 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 | 320 | sce | example9.sce | // f i r s t e l ement i n any row o f r o u t h s t a b u l a t i o n i s z e r o
clc;s=%s
m=s^3+s+1;
r= coeff (m); // Ex t r a c t s the c o e f f i c i e n t o f the po l ynomi a l
n= length (r);
routh = routh_t (m)
disp (routh ," r outh=")
printf (" since there are two sign changes the system is unstable")
|
7ec79b7dc2d226d0a46e371c31de77faec0fce67 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3831/CH8/EX8.1/Ex8_1.sce | cc16a821d5cfa5c24aec69730296c22bff190dc8 | [] | 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 | 472 | sce | Ex8_1.sce | // Example 8_1
clc;funcprot(0);
// Given data
m=2.00;// kg
// State 1
T_1=50.0;// °C
x_1=0;// The quality of steam
// State 2
T_2=50.0;// °C
p_2=5.00;// kPa
// Calculation
s_1=0.7036;// kJ/(kg.K)
s_2=8.4982;// kJ/(kg.K)
u_1=209.3;// kJ/kg
u_2=2444.7;// kJ/kg
T_b=T_1;// °C
Q_12=m*(T_b+273.15)*(s_2-s_1);// kJ
W_12=(m*(u_1-u_2))+Q_12;// kJ
printf("\nThe heat and work transports of energy for this process,Q_12=%4.0f kJ & W_12=%3.0f kJ",Q_12,W_12);
|
fbd1bea06951b10b5891aacbc5275acf450b37da | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/RPS0.prev.tst | 50f94727fd02e0c93212b6437bddaa91b3623dc1 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | gfis/ramath | 498adfc7a6d353d4775b33020fdf992628e3fbff | b09b48639ddd4709ffb1c729e33f6a4b9ef676b5 | refs/heads/master | 2023-08-17T00:10:37.092379 | 2023-08-04T07:48:00 | 2023-08-04T07:48:00 | 30,116,803 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 15,375 | tst | RPS0.prev.tst | # (8*t + 1)^3 = 2 * m^2 + n^2 ?
0 1
1 3^6 = 2 * (2*5)^2 + (23)^2 proper representation by 10^2 + 23^2
= 2 * (2^2*3)^2 + (3*7)^2
= 2 * (2*3^2)^2 + (3^2)^2 [3]
2 17^3 = 2 * (2*17)^2 + (3*17)^2
= 2 * (2*19)^2 + (3^2*5)^2 proper representation by 38^2 + 45^2 [2]
3 5^6
4 3^3*11^3 = 2 * (2*11)^2 + (11*17)^2
= 2 * (2^4*3)^2 + (3*59)^2
= 2 * (2*3*11)^2 + (3*5*11)^2
= 2 * (2^3*11)^2 + (11*13)^2
= 2 * (2*3*17)^2 + (3*41)^2
= 2 * (2^2*29)^2 + (5*19)^2 proper representation by 116^2 + 95^2
= 2 * (2^2*3*11)^2 + (3*11)^2
= 2 * (2*67)^2 + (5)^2 proper representation by 134^2 + 5^2 [8]
5 41^3 = 2 * (2^2*5)^2 + (3^2*29)^2 proper representation by 20^2 + 261^2
= 2 * (2^2*41)^2 + (3*41)^2 [2]
6 7^6
7 3^3*19^3 = 2 * (2^3*3)^2 + (3*11*13)^2
= 2 * (2*3*19)^2 + (3*7*19)^2
= 2 * (2^2*43)^2 + (5*71)^2 proper representation by 172^2 + 355^2
= 2 * (2^2*3*19)^2 + (3*5*19)^2
= 2 * (2*7*19)^2 + (11*19)^2
= 2 * (2*139)^2 + (5^2*7)^2 proper representation by 278^2 + 175^2
= 2 * (2*3*7^2)^2 + (3*37)^2
= 2 * (2^4*19)^2 + (19)^2 [8]
8 5^3*13^3
9 73^3 = 2 * (2*3^2*23)^2 + (5*43)^2 proper representation by 414^2 + 215^2
= 2 * (2*3*73)^2 + (73)^2 [2]
10 3^12 = 2 * (2*3*11)^2 + (3*241)^2
= 2 * (2*3^3*5)^2 + (3^3*23)^2
= 2 * (2^2*3^4)^2 + (3^4*7)^2
= 2 * (2^2*5*23)^2 + (7*47)^2 proper representation by 460^2 + 329^2
= 2 * (2*3^5)^2 + (3^5)^2
= 2 * (2^3*3^2*7)^2 + (3^2*17)^2 [6]
11 89^3 = 2 * (2*89)^2 + (3^2*89)^2
= 2 * (2*5*47)^2 + (3^3*19)^2 proper representation by 470^2 + 513^2 [2]
12 97^3 = 2 * (2*3^2)^2 + (5*191)^2 proper representation by 18^2 + 955^2
= 2 * (2*3*97)^2 + (5*97)^2 [2]
13 3^3*5^3*7^3
14 113^3 = 2 * (2^2*113)^2 + (3^2*113)^2
= 2 * (2^2*211)^2 + (3^3*5)^2 proper representation by 844^2 + 135^2 [2]
15 11^6 = 2 * (2*3^2*5^2)^2 + (7*167)^2 proper representation by 450^2 + 1169^2
= 2 * (2*3*11^2)^2 + (7*11^2)^2
= 2 * (2^2*3*7*11)^2 + (11*23)^2 [3]
16 3^3*43^3 = 2 * (2*3*13)^2 + (3*487)^2
= 2 * (2*3*43)^2 + (3*11*43)^2
= 2 * (2*5*43)^2 + (31*43)^2
= 2 * (2*5*71)^2 + (11*97)^2 proper representation by 710^2 + 1067^2
= 2 * (2^2*5*43)^2 + (19*43)^2
= 2 * (2^2*3*79)^2 + (3*197)^2
= 2 * (2^3*5^3)^2 + (383)^2 proper representation by 1000^2 + 383^2
= 2 * (2^3*3*43)^2 + (3*43)^2 [8]
17 137^3 = 2 * (2^3*101)^2 + (3^2*5^3)^2 proper representation by 808^2 + 1125^2
= 2 * (2^3*137)^2 + (3*137)^2 [2]
18 5^3*29^3
19 3^6*17^3 = 2 * (2*3*17)^2 + (3*17*37)^2
= 2 * (2*3*43)^2 + (3*619)^2
= 2 * (2^4*17)^2 + (17*109)^2
= 2 * (2^3*53)^2 + (5*359)^2 proper representation by 424^2 + 1795^2
= 2 * (2^2*3^2*13)^2 + (3^2*197)^2
= 2 * (2^2*3^2*17)^2 + (3^2*11*17)^2
= 2 * (2*3^3*17)^2 + (3^4*17)^2
= 2 * (2*3^3*19)^2 + (3^5*5)^2
= 2 * (2^7*3^2)^2 + (3^2*107)^2
= 2 * (2^3*3^2*17)^2 + (3^2*5*17)^2
= 2 * (2^2*17*19)^2 + (17*29)^2
= 2 * (2^2*331)^2 + (5^2*11)^2 proper representation by 1324^2 + 275^2
= 2 * (2*3*13*17)^2 + (3*5*17)^2
= 2 * (2*3*223)^2 + (3*11)^2 [14]
20 7^3*23^3
21 13^6
22 3^3*59^3 = 2 * (2^3*19)^2 + (5*7*67)^2 proper representation by 152^2 + 2345^2
= 2 * (2*3*59)^2 + (3*13*59)^2
= 2 * (2^2*3*7*11)^2 + (3*653)^2
= 2 * (2*499)^2 + (5*13*29)^2 proper representation by 998^2 + 1885^2
= 2 * (2*11*59)^2 + (5^2*59)^2
= 2 * (2^3*3*59)^2 + (3*7*59)^2
= 2 * (2*3*269)^2 + (3*193)^2
= 2 * (2^2*7*59)^2 + (5*59)^2 [8]
23 5^3*37^3
24 193^3 = 2 * (2*3*193)^2 + (11*193)^2
= 2 * (2*3^2*97)^2 + (5*11*19)^2 proper representation by 1746^2 + 1045^2 [2]
25 3^3*67^3 = 2 * (2^3*67)^2 + (41*67)^2
= 2 * (2^2*3*67)^2 + (3*13*67)^2
= 2 * (2^5*3*11)^2 + (3*809)^2
= 2 * (2*3*211)^2 + (3*739)^2
= 2 * (2*11*67)^2 + (29*67)^2
= 2 * (2^2*5^2*19)^2 + (13*73)^2 proper representation by 1900^2 + 949^2
= 2 * (2*5*197)^2 + (599)^2 proper representation by 1970^2 + 599^2
= 2 * (2*3*5*67)^2 + (3*67)^2 [8]
26 11^3*19^3 = 2 * (2*19)^2 + (3*19*53)^2
= 2 * (2*11*41)^2 + (3*11*83)^2
= 2 * (2^3*5*23)^2 + (3^3*101)^2 proper representation by 920^2 + 2727^2
= 2 * (2^2*13*19)^2 + (3*19*47)^2
= 2 * (2^3*11*19)^2 + (3^2*11*19)^2
= 2 * (2*5*173)^2 + (3^2*197)^2 proper representation by 1730^2 + 1773^2
= 2 * (2^2*11*47)^2 + (3*11*23)^2
= 2 * (2*5*11*19)^2 + (3*11*19)^2 [8]
27 7^3*31^3
28 3^6*5^6 = 2 * (2*5^4)^2 + (5^3*23)^2
= 2 * (2^2*3*5^3)^2 + (3*5^3*7)^2
= 2 * (2*3^2*5^3)^2 + (3^2*5^3)^2 [3]
29 233^3 = 2 * (2*233)^2 + (3*5*233)^2
= 2 * (2*23*29)^2 + (3^2*5*67)^2 proper representation by 1334^2 + 3015^2 [2]
30 241^3 = 2 * (2*3*241)^2 + (13*241)^2
= 2 * (2*3^2*5*29)^2 + (13*47)^2 proper representation by 2610^2 + 611^2 [2]
31 3^3*83^3 = 2 * (2^2*83)^2 + (47*83)^2
= 2 * (2*5*53)^2 + (7*19*29)^2 proper representation by 530^2 + 3857^2
= 2 * (2*7*83)^2 + (43*83)^2
= 2 * (2*3*7*31)^2 + (3*13*89)^2
= 2 * (2^3*5*47)^2 + (11*263)^2 proper representation by 1880^2 + 2893^2
= 2 * (2^3*3*83)^2 + (3*11*83)^2
= 2 * (2*3*5*83)^2 + (3*7*83)^2
= 2 * (2^2*3*229)^2 + (3*193)^2 [8]
32 257^3 = 2 * (2^2*257)^2 + (3*5*257)^2
= 2 * (2^2*643)^2 + (3^2*5*43)^2 proper representation by 2572^2 + 1935^2 [2]
33 5^3*53^3
34 3^3*7^3*13^3
35 281^3 = 2 * (2*5*43)^2 + (3^3*173)^2 proper representation by 430^2 + 4671^2
= 2 * (2*5*281)^2 + (3^2*281)^2 [2]
36 17^6 = 2 * (2^3*3*17)^2 + (7*17*41)^2
= 2 * (2^2*3^2*5*19)^2 + (863)^2 proper representation by 3420^2 + 863^2
= 2 * (2^2*3*17^2)^2 + (17^2)^2 [3]
37 3^9*11^3 = 2 * (2^2*3*11)^2 + (3*5*11*31)^2
= 2 * (2*3^3*11)^2 + (3^3*11*17)^2
= 2 * (2*3^2*37)^2 + (3^2*13*43)^2
= 2 * (2^2*3^2*31)^2 + (3^2*541)^2
= 2 * (2^4*3^4)^2 + (3^4*59)^2
= 2 * (2^2*11*31)^2 + (11*431)^2
= 2 * (2*859)^2 + (5*17*53)^2 proper representation by 1718^2 + 4505^2
= 2 * (2*3^4*11)^2 + (3^4*5*11)^2
= 2 * (2^3*3^3*11)^2 + (3^3*11*13)^2
= 2 * (2*3*11*41)^2 + (3*11*103)^2
= 2 * (2*3^4*17)^2 + (3^4*41)^2
= 2 * (2*3*479)^2 + (3*17*61)^2
= 2 * (2^3*379)^2 + (5*13*43)^2 proper representation by 3032^2 + 2795^2
= 2 * (2^2*3^3*29)^2 + (3^3*5*19)^2
= 2 * (2^5*3^2*11)^2 + (3^2*5^2*11)^2
= 2 * (2*3^2*11*17)^2 + (3^2*11*19)^2
= 2 * (2*11*157)^2 + (11*139)^2
= 2 * (2^2*3^4*11)^2 + (3^4*11)^2
= 2 * (2^3*3*149)^2 + (3*263)^2
= 2 * (2*3^3*67)^2 + (3^3*5)^2 [20]
38 5^3*61^3
39 313^3 = 2 * (2^2*3^2*71)^2 + (5*839)^2 proper representation by 2556^2 + 4195^2
= 2 * (2^2*3*313)^2 + (5*313)^2 [2]
40 3^3*107^3 = 2 * (2*3*179)^2 + (3*43^2)^2
= 2 * (2^2*3*107)^2 + (3*17*107)^2
= 2 * (2*5*163)^2 + (11*479)^2 proper representation by 1630^2 + 5269^2
= 2 * (2*3*5*107)^2 + (3*11*107)^2
= 2 * (2^2*5*167)^2 + (17*193)^2 proper representation by 3340^2 + 3281^2
= 2 * (2^5*107)^2 + (29*107)^2
= 2 * (2^3*3*13^2)^2 + (3*139)^2
= 2 * (2*19*107)^2 + (107)^2 [8]
41 7^3*47^3
42 337^3 = 2 * (2^2*3^2*47)^2 + (5*7*163)^2 proper representation by 1692^2 + 5705^2
= 2 * (2^2*3*337)^2 + (7*337)^2 [2]
43 3^3*5^3*23^3
44 353^3 = 2 * (2^3*353)^2 + (3*5*353)^2
= 2 * (2^3*547)^2 + (3^2*5*53)^2 proper representation by 4376^2 + 2385^2 [2]
45 19^6 = 2 * (2*3*19^2)^2 + (17*19^2)^2
= 2 * (2^2*3*17*19)^2 + (7*19*31)^2
= 2 * (2*3^2*5*53)^2 + (17*73)^2 proper representation by 4770^2 + 1241^2 [3]
46 3^6*41^3 = 2 * (2^2*3^3*5)^2 + (3^5*29)^2
= 2 * (2*3^2*41)^2 + (3^2*19*41)^2
= 2 * (2^4*3*41)^2 + (3*41*53)^2
= 2 * (2*5^2*43)^2 + (19*337)^2 proper representation by 2150^2 + 6403^2
= 2 * (2*31*41)^2 + (41*149)^2
= 2 * (2^3*3*113)^2 + (3*1987)^2
= 2 * (2*5*307)^2 + (13*431)^2 proper representation by 3070^2 + 5603^2
= 2 * (2^5*3*37)^2 + (3*1667)^2
= 2 * (2*3^2*5*41)^2 + (3^2*13*41)^2
= 2 * (2^2*3^3*41)^2 + (3^4*41)^2
= 2 * (2*3^2*251)^2 + (3^2*11*31)^2
= 2 * (2*3^2*271)^2 + (3^2*181)^2
= 2 * (2^3*3*5*41)^2 + (3*11*41)^2
= 2 * (2*41*61)^2 + (11*41)^2 [14]
47 13^3*29^3
48 5^3*7^3*11^3
49 3^3*131^3 = 2 * (2^3*3*43)^2 + (3*2551)^2
= 2 * (2^2*3*131)^2 + (3*19*131)^2
= 2 * (2^4*131)^2 + (5*11*131)^2
= 2 * (2^2*1051)^2 + (5*19*53)^2 proper representation by 4204^2 + 5035^2
= 2 * (2*17*131)^2 + (5*7*131)^2
= 2 * (2*3*13*61)^2 + (3*7*11*17)^2
= 2 * (2*7*389)^2 + (5^2*47)^2 proper representation by 5446^2 + 1175^2
= 2 * (2*3*7*131)^2 + (3*131)^2 [8]
50 401^3 = 2 * (2*5*7*73)^2 + (3^2*389)^2 proper representation by 5110^2 + 3501^2
= 2 * (2*7*401)^2 + (3*401)^2 [2]
51 409^3 = 2 * (2^2*3^2*5^2)^2 + (11*743)^2 proper representation by 900^2 + 8173^2
= 2 * (2^2*3*409)^2 + (11*409)^2 [2]
52 3^3*139^3 = 2 * (2^2*139)^2 + (61*139)^2
= 2 * (2*3*149)^2 + (3*7*401)^2
= 2 * (2^3*3*139)^2 + (3*17*139)^2
= 2 * (2*13*139)^2 + (7^2*139)^2
= 2 * (2*7*317)^2 + (5*1151)^2 proper representation by 4438^2 + 5755^2
= 2 * (2^2*3*443)^2 + (3*31*43)^2
= 2 * (2*3*7*139)^2 + (3*5*139)^2
= 2 * (2^3*739)^2 + (5*17*19)^2 proper representation by 5912^2 + 1615^2 [8]
53 5^6*17^3 = 2 * (2*5^3*17)^2 + (3*5^3*17)^2
= 2 * (2*5^3*19)^2 + (3^2*5^4)^2 [2]
54 433^3 = 2 * (2*3*433)^2 + (19*433)^2
= 2 * (2*3^2*337)^2 + (5*19*29)^2 proper representation by 6066^2 + 2755^2 [2]
55 3^6*7^6 = 2 * (2*5*7^3)^2 + (7^3*23)^2
= 2 * (2^2*3*7^3)^2 + (3*7^4)^2
= 2 * (2*3^2*7^3)^2 + (3^2*7^3)^2 [3]
56 449^3 = 2 * (2*449)^2 + (3*7*449)^2
= 2 * (2*5*263)^2 + (3^2*7*139)^2 proper representation by 2630^2 + 8757^2 [2]
57 457^3 = 2 * (2^2*3^2*73)^2 + (5*13*139)^2 proper representation by 2628^2 + 9035^2
= 2 * (2^2*3*457)^2 + (13*457)^2 [2]
58 3^3*5^3*31^3
59 11^3*43^3 = 2 * (2^2*11*43)^2 + (3*7*11*43)^2
= 2 * (2*7*149)^2 + (3^3*5*73)^2 proper representation by 2086^2 + 9855^2
= 2 * (2^4*11*23)^2 + (3*7*11*37)^2
= 2 * (2*7^2*43)^2 + (3*5*13*43)^2
= 2 * (2^2*1291)^2 + (3^2*5*7*23)^2 proper representation by 5164^2 + 7245^2
= 2 * (2^3*19*43)^2 + (3*5*7*43)^2
= 2 * (2*7*11*43)^2 + (3^2*11*43)^2
= 2 * (2*7*11*47)^2 + (3*11*31)^2 [8]
60 13^3*37^3
61 3^3*163^3 = 2 * (2*3*11*43)^2 + (3*3347)^2
= 2 * (2^3*3*163)^2 + (3*19*163)^2
= 2 * (2*3*5*163)^2 + (3*17*163)^2
= 2 * (2^2*3*479)^2 + (3*2377)^2
= 2 * (2*5*23*29)^2 + (17*311)^2 proper representation by 6670^2 + 5287^2
= 2 * (2^2*11*163)^2 + (23*163)^2
= 2 * (2*23*163)^2 + (13*163)^2
= 2 * (2^3*5*191)^2 + (19*23)^2 proper representation by 7640^2 + 437^2 [8]
62 7^3*71^3
63 5^3*101^3
|
ff651052b6aca33e76a55a78caf62249ba2bba5d | 449d555969bfd7befe906877abab098c6e63a0e8 | /3862/CH8/EX8.17/Ex8_17.sce | a444c31bcb003ba603f8dfde76ab2d8889bc860b | [] | 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 | 267 | sce | Ex8_17.sce | clear
//variable declaration
E=(2.1*100000) //Young’s modulus of the material,N/mm^2
G=(0.78*100000) //modulus of rigidity,N/mm^2
pr=(E/(2*G))-1
printf("\n poissons Ratio= %0.3f ",pr)
K=E/(3*(1-2*pr))
printf("\n Bulk modulus= %0.3f N/mm^2",K)
|
e9f708827453165b75aa3af060a30456427e2a50 | a557f90da8513f81cafd8f65e37e2c0d66449a2f | /chebyshev.sce | c7f24a9b1d8e25657a236e08fcad5354e9dbc9f7 | [] | no_license | Sahil966121/SCI | 484cd77d6247e54fe87d36b4f112965c83ab5d96 | cf2921861486a4f2e2e83c3ca813a4e7710d3508 | refs/heads/main | 2023-03-03T17:43:08.236192 | 2021-02-03T05:19:43 | 2021-02-03T05:19:43 | 324,413,192 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 734 | sce | chebyshev.sce | clc;
f1=input('Enter the pass band edge(Hz)=');
f2=input('Enter the stop band edge(Hz)=');
rp=input('Enter the pass band ripple(dB)=');
rs=input('Enter the stop band attenuation(dB)=');
fs=input('Enter the sampling rate(Hz)=');
rp_ratio=10^(rp/20);
w1=2*%pi*f1*1/fs;
w2=2*%pi*f2*1/fs;
o1=2*fs*tan(w1/2);
o2=2*fs*tan(w2/2);
or=o2/o1;
A2=10.^(-rs/10);
A=sqrt(A2);
epsilon2=(10.^(-rp/10)-1);
epsilon=sqrt(epsilon2);
g=((A2-1).^0.5./epsilon);
n=(acosh(g))/(acosh(or));
n=ceil(n);
oc=o1;
wc=2*atan(oc/(2*fs));
hs=analpf(n,'cheb1',[1-rp_ratio],oc);
hz=iir(n,'lp','cheb1',wc/(2*%pi),[1-rp_ratio 1]);
[hzm,fr]=frmag(hz,256);
magz=20*log10(hzm)';
figure();
plot2d(fr*(2*%pi),magz);xtitle('Digital IIR filter:lowpass','frequency','magnitude');
|
19d74c9b06a9f68ce6120b30a1bf80259d06dcc4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /896/CH20/EX20.3/3.sce | 29cbdb5b8f0950348a5abd03616466c17f9bc151 | [] | 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 | 465 | sce | 3.sce | clc
//Example 20.3
//Calculate the grid velocities
v=1.077*10^(-5)//ft^2/s
t=2//sec
dy=0.01//ft
w=v*t/dy^2//dimentionless
//Let Vij represent velocity through the i,j grid
V00=5//ft/s
V10=5//ft/s
V01=0//ft/s
V02=0//ft/s
V12=0//ft/s
V11=V01+w*(V00-2*V01+V02)//ft/s
V21=V11+w*(V10-2*V11+V12)//ft/s
printf("The grid velocity for 2,1 is %f ft/s\n",V21);
V13=0//ft/s
V22=V12+w*(V11-2*V12+V13)//ft/s
printf("The grid velocity for 2,2 is %f ft/s\n",V22); |
c1dc34098a12915b93df9096ff60aa3320be57f3 | fabc48f29c1a9611501fae0c34433b44d5617bd0 | /scilab/primOptimization.sci | 99cfeb861959c69dca341cd6582c0c76391c1a0f | [] | no_license | rubiruchi/automatic-power-optimization | 51e7a9575619e0232595be18ed4b02e2fcd48bc8 | 575471ea5ae392d60365508bf84d58ad4d32764a | refs/heads/master | 2020-04-21T06:22:14.980063 | 2018-12-26T09:51:02 | 2018-12-26T09:51:02 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,795 | sci | primOptimization.sci | function [newGraph,mincost,vertices,maxGraph] = primOptimization(n,cost,maxLevel, minLevel)
[row,col]=size(cost);
newGraph=zeros(row,col);
//maxGraph=ones(n,1).*minLevel;
maxGraph=ones(n,1).*maxLevel;
for j=1:n
for i=1:n
// if (cost(i,j)==0) then
// cost(i,j)=maxLevel;
// end
if (newGraph(i,j)==0) then
newGraph(i,j)=maxLevel;
end
end
end
//disp(cost);
vertices=zeros(2,n-1)';
visited = zeros(1,n);
mincost=0;
ne=1;
visited(1)=1;
while(ne < n)
//minimum=maxLevel;
minimum=minLevel;
for i=1:n
for j=1:n
if((cost(i,j) > minimum) & (cost(i,j) < maxLevel))
if(visited(i)~=0)
// if(cost(i,j) < maxLevel)
minimum=cost(i,j);
u=i;
a=u
v=j;
b=v;
// end
end
end
end
end
if((visited(u)==0) | (visited(v)==0))
disp('Edge:');
disp(ne);
disp(u);
disp(v);
vertices(ne,1)=a;
vertices(ne,2)=b;
disp('cost:');
disp(minimum);
ne=ne+1;
mincost=mincost+minimum;
visited(b)=1;
newGraph(a,b)=minimum;
newGraph(b,a)=cost(b,a);
if minimum > maxGraph(a)
maxGraph(a)=minimum;
end
if cost(b,a) > maxGraph(b)
maxGraph(b)=cost(b,a);
end
end
cost(b,a)=maxLevel;
cost(a,b)=cost(b,a);
end
endfunction
|
63d1bf51e5b08619ef65e4c01da1eb63e76fb004 | 449d555969bfd7befe906877abab098c6e63a0e8 | /24/CH26/EX26.1/Example26_1.sce | 2f33f1b6873a155d8c228d1c519e278b67b603de | [] | 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 | 225 | sce | Example26_1.sce | exec('electrostatics.sci', -1)
//Given that
C = 55*10^-15 //in F
V = 5.3 //in V
//Sample Problem 26-1
printf("**Sample Problem 26-1**\n")
Q = C*V
n = Q/e
printf("The number of excess electron is equal to %e", n) |
1d90228065b46267176ec2b222376388393eb884 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2201/CH3/EX3.8/ex3_8.sce | 3e972196e90029f5996144334f659c4cc1df5858 | [] | 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 | 433 | sce | ex3_8.sce | //Exa 3.8
clc;
clear;
close;
// Given data
q = 1.6*10^-19;// in C
n_i = 2.5*10^13;
Miu_n = 3800;// in cm^2/V-s
Miu_p = 1800;// in cm^2/V-s
Sigma = n_i*(Miu_n + Miu_p)*q;// in (ohm-cm)^-1
Rho = 1/Sigma;// in ohm-cm
disp(Rho,"The resistivity in ohm-cm is");
N_D =4.4*10^22/10^8 ;// in atoms/cm^3
Sigma_n = N_D * Miu_n*q;// in (ohm-cm)^-1
Rho1 = 1/Sigma_n;// in ohm cm
disp(Rho1,"The resistivity drops in ohm cm is");
|
2810040d4f68885252d8b3a991a3cdb4420b44d6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /575/DEPENDENCIES/481.sci | 52bc5234d94e07fa81402f6b972bf9f4b02022b8 | [] | 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 | 73 | sci | 481.sci | xN2wet=0.6
xCO2wet=0.15
xO2wet=0.1
xH2O=0.15
basis=100 //mol Wet gas |
de4dc11a5fa403274c752a8b69384fdd2d66d4fd | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.3/macros/robust/lcf.sci | daae66ee230c12502d77eb68731ad006f1e1ed15 | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 617 | sci | lcf.sci | function [N,M]=lcf(Sl)
//Compute Normalized coprime factorization of a linear dynamic system
//%Syntax and parameters description
// [N,M]=lcf(Sl)
//
// SL : linear dynamic system given in state space or transfer function.
// see syslin
// N,M : is realization of Sl: Sl = M^-1 N
//!
//FD.
flag=0;Sl1=Sl(1);
if Sl1(1)='r' then Sl=tf2ss(Sl),flag=1;end
[A,B,C,D]=Sl(2:5);[nw,nb]=size(B);[nc,nw]=size(C);
R=eye+D*D';
[Z,H]=gfare(Sl);
Ar=A+H*C;
Bn=B+H*D;Bm=H;
Rm12=inv(sqrtm(R));
Cr=Rm12*C;Dn=Rm12*D;Dm=Rm12;
N=syslin('c',Ar,Bn,Cr,Dn);
M=syslin('c',Ar,Bm,Cr,Dm);
if flag=1 then N=ss2tf(N);M=ss2tf(M);end
|
a8f2d2c92c0051a2b34ee456224b694a1edbbcef | 2306fe37806fcf2e0b7509d8c35d5b5761d87624 | /main.sce | 63e7aaaa83a7105a1f3cf6d12113ac3e4f69b5a2 | [
"MIT"
] | permissive | thbt/PlanetarySystem | 60532b0a9e0e59a8ee2089eb721b68ff9c518335 | a8a514c583e59cebacaa3ad32cf5c2ac923d7e60 | refs/heads/master | 2021-01-01T16:40:28.843162 | 2015-07-30T09:30:03 | 2015-07-30T09:30:03 | 39,942,394 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 892 | sce | main.sce | exec translationUtils.sci;
exec rotationUtils.sci;
exec dessinerForme.sci;
exec cube.sce;
exec tetraedre.sce;
exec octaedre.sce;
xMin = -8;
xMax = 8;
yMin = -8;
yMax = 8;
zMin = -8;
zMax = 8;
i = 0;
while 1
i = i + 0.1;
// On prépare la prochaine image de l'animation
drawlater();
clf();
// On règle les axes
subplot(121)
a = gca();
a.data_bounds = [xMin yMin zMin; xMax yMax zMax];
a.isoview = "on";
a.box = "off";
//projection
subplot(122)
a = gca();
a.data_bounds = [xMin yMin zMin; xMax yMax zMax];
// On s'occupe du cube (update + affichage)
updateCube(i);
// On s'occupe de l'octaedre (update + affichage)
updateOctaedre(i);
// On s'occupe du tetraedre (update + affichage)
updateTetraedre(i);
// Maintenant que la frame est prête, on l'affiche !
drawnow();
end
|
545a2398ac5b04c1816aaea12ca79631d5941afb | 449d555969bfd7befe906877abab098c6e63a0e8 | /2609/CH9/EX9.13/Ex9_13.sce | 56c25b88df27980385be0f921b83bf1fc4c02311 | [] | 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 | 620 | sce | Ex9_13.sce | //Ex 9.13
clc;
clear;
close;
format('v',5);
fL=20;//Hz(Cutoff frequency)
//For Butterworth filter of 2nd order
alfa=1.414;klp=1;//constant
Ap=3-alfa;// band pass gain
RfBYRi=Ap-1;//ratio
disp("Various design parameters are :-");
C=0.22;//micro F//Chosen for the design choosing between 0.01 & 1 micro F
disp(C,"Capacitance C(micro F)");
format('v',4);
R=klp/(2*%pi*fL*C*10^-6)/1000;//kohm
disp(R,"Resistance R(kohm)");
//For offset minimization
//R=Rf||Ri=Rf/(RfBYRi+1)
Rf=R*(RfBYRi+1);//kohm
disp(Rf,"Resistance Rf(kohm)");
Ri=Rf/RfBYRi;//kohm
Ri=floor(Ri);//kohm
disp(Ri,"Resistance Ri(kohm)");
|
78bf167bdd8685a81382d4e9a3c5ebe5fd7ec11d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1385/CH5/EX5.1/5_1.sce | 662de9ee9fb2bb6862178703df9e9e1bf175e61e | [] | 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 | 214 | sce | 5_1.sce | clc
//initialisation of variables
T= 20 //C
R= 0.082 //li-atm per mole per degree
V= 2 //lit
m= 6 //gms
M= 60 //gms
//CALCULATIONS
P= m*R*(273+T)/(M*V)
//RESULTS
printf (' osmotic pressure= %.1f atm',P)
|
fe1022d76b4e3bdbc292157c056ca93ab13f0cdd | 449d555969bfd7befe906877abab098c6e63a0e8 | /135/CH3/EX3.4/EX4.sce | f5555db2bfdd862c75cc532aca70226addad5b8e | [] | 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 | 940 | sce | EX4.sce | // Example 3.4: (a) DC load current
// (b) DC power in load
// (c) Rectification efficiency
// (d) Percentage regulation
// (e) PIV of each diode
clc, clear
Vrms=40; // Input in volts
Rf=1; // Forward conduction resistance of diodes in ohms
RL=29; // Load resistance in ohms
Vmax=Vrms*sqrt(2); // in volts
Imax=Vmax/(Rf+RL); // in amperes
disp("Part (a)");
Idc=2*Imax/%pi; // DC load current in amperes
disp(Idc,"DC load current (A) =");
disp("Part (b)");
Pdc=Idc^2*RL; // DC power in load in watts
disp(Pdc,"DC power in load (W) =");
disp("Part (c)");
Pac=Vrms^2/(Rf+RL); // AC power in load
eta=Pdc/Pac; // Rectification efficiency
disp(eta,"Rectification efficiency =");
disp("Part (d)");
reg=Rf*100/RL; // Percentage regulation
disp(reg,"Percentage regulation (%) =");
disp("Part (e)");
PIV=2*Vmax; // in volts
disp(PIV,"PIV for each diode (V) ="); |
59f80f65c2c93d43ccc1ec47c565e4ecf492437e | 449d555969bfd7befe906877abab098c6e63a0e8 | /620/CH26/EX26.16/example26_16.sce | 5807f9af1cc6e310414353e776d71a454cbc9d1c | [] | 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 | 500 | sce | example26_16.sce | v=10;
f=60;
r=10;
l1=0.01;
l2=0.05;
disp("Part a");
disp("resistance (in Ω) of the coil for maximum power transfer is"); disp(r);
disp("Part b");
l=l1+l2;
x_c=2*%pi*f*l;
c=1/(2*%pi*f*x_c);
disp("the size of the capacitor (in μF) is"); disp(c*10^6);
disp("Part c");
z1=2*r;
i=v/z1;
p=i^2*r;
disp("power delivered (in W) to the coil is"); disp(p);
disp("Part d");
z=sqrt(z1^2+x_c^2);
i1=v/z;
pr=i1^2*r;
disp("Power dlivered (in W) to the col without the capacitor is"); disp(pr); |
b6744bd5c364ccf329096f4afafc005490a9aebd | 180e6114e33b1701c31283dcbb71516689b9b7bf | /Ex_10_11_look.sci | 9d10e401b3b0ad718dd4f51f20829cfc6d8f503d | [
"MIT"
] | permissive | nikita9604/Distance-by-Disk-Scheduling-Algorithms | 6ddbe15f169355cfc7d21a9c54e4d3a61780115d | fb84cb8318937f07daba53f97ec3ae4b80d211a1 | refs/heads/main | 2023-01-18T17:21:41.857905 | 2020-11-28T10:35:42 | 2020-11-28T10:35:42 | 316,706,477 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,770 | sci | Ex_10_11_look.sci | //This Source file is written by Nikita Rath (18BLC1131), VIT Chennai
//Function for LOOK
function [] = look(a,head,n)
printf("Order of Track ");
seek_count = 0;
ihead = head;
previous_head = 1805;
direction = head - previous_head;
temp1 = 1;
temp2 = 1;
//Traversing through requests
for i = 1:n
//Request greater or less than head
if(a(i)>=head) then
queue1(temp1)=a(i);
temp1 = temp1 + 1;
else
queue2(temp2)=a(i);
temp2 = temp2 + 1;
end
end
//Sort request greater than head (Ascending)
for i = 1:temp1-2
for j = i+1:temp1-1
if (queue1(i) > queue1(j)) then
temp = queue1(i);
queue1(i) = queue1(j);
queue1(j) = temp;
end
end
end
//Sort request less than head (Ascending)
for i = 1:temp2-2
for j = i+1:temp2-1
if (queue2(i) > queue2(j)) then
temp = queue2(i);
queue2(i) = queue2(j);
queue2(j) = temp;
end
end
end
loop = 2;
j = 1;
//For traversing through right and left of the head
while (loop>0)
//Left side or Right side
if(direction<0)
//Traversing to the left side (decrementing)
for i=temp2-1:-1:1
queue(j) = queue2(i);
j = j + 1;
//Calculate the distance between requests
distance = abs(queue2(i) - head);
//Increment seek_count with the distance
seek_count = seek_count + distance;
head = queue2(i);
printf(" T%d ",j-1);
end
//Turn towards right side
direction = 1;
elseif(direction>0)
//Traversing to the right side
for i=1:temp1-1
queue(j) = queue1(i);
j = j + 1;
//Calculate the distance between requests
distance = abs(queue1(i) - head);
//Increment seek_count with the distance
seek_count = seek_count + distance;
head = queue1(i);
printf(" T%d ",j-1);
end
//Turn towards left side
direction = -1;
end
loop = loop - 1;
end
printf(" T%d ",j);
printf("\nNo. of Cylinders");
printf(" %d ",ihead);
//Order of request execution
for i = 1:j-1
printf(" %4d ",queue(i));
end
//Total distance
printf("\n Total distance : %d", seek_count);
endfunction
|
3058cc3a33ac41ec9c85bbd1cfec3397a081c810 | 6d1f05d2074f1d6f18d3d473f2dbd867c94fc7ee | /giarratano/SOURCE/TESTING/memrycmd.tst | 021c7b04c6918c666ecab657c48c831fe13e9b70 | [] | no_license | arranger1044/icse-1516 | c40d2c86892cd90c14042a95581cbb0e238190fb | ee4bafb57bb549ef40e29b8edf8cdad038e97162 | refs/heads/master | 2020-12-24T19:04:01.588095 | 2016-05-31T07:46:47 | 2016-05-31T07:46:47 | 56,578,768 | 14 | 5 | null | null | null | null | UTF-8 | Scilab | false | false | 288 | tst | memrycmd.tst | (unwatch all)
(clear)
(dribble-on "memrycmd.out")
(batch "memrycmd.bat")
(dribble-off)
(clear)
(open "memrycmd.rsl" memrycmd "w")
(load "compline.clp")
(printout memrycmd "memrycmd.bat differences are as follows:" crlf)
(compare-files memrycmd.exp memrycmd.out memrycmd)
(close memrycmd)
|
8f0ba8ad71a02ccd1a460dae30f53c752df400ce | 449d555969bfd7befe906877abab098c6e63a0e8 | /416/CH2/EX2.10/exp2_10cpp.sce | cd62416cb2915c7f011161a41f56d6e9b15e1179 | [] | 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 | 432 | sce | exp2_10cpp.sce | clc
disp("example 2.10")
egd1=438*10^4;plp=0.2;pcf=0.15;//annual load duration ;annual load factor;plant capacity factor
pml=egd1/(plp*8760)
pc=(pml*plp)/pcf
printf("annual load factor =energy generated during 1 year/(max. load)x8760=%.1f \n maximum load =%dkW",plp,pml)
printf("\ncapacity factor =(max.load/plant capacity)x(load factor)\n plant capacity =max.load/0.75 =%fMW \n reserve capacity =3.333-2.5=%fMW",pc,pc-pml)
|
dc28007dbfe5c0f3f7ab8fea286436c7301da09a | 449d555969bfd7befe906877abab098c6e63a0e8 | /812/CH8/EX8.05/8_05.sce | 7d3d6eac68b527c7fe6acbf196976026c21f11a6 | [] | 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 | 349 | sce | 8_05.sce | //required//
pathname=get_absolute_file_path('8.05.sce')
filename=pathname+filesep()+'8.05-data.sci'
exec(filename)
//Reservoir depth required to maintain flow(in m):
D1=8*Q^2/(%pi)^2/D^4/g*(f*L/D+K+1)
//Reynolds number:
Re=4*d*Q/((%pi)*u*D)
printf("\n\nRESULTS\n\n")
printf("\n\nReservoir depth required to maintain flow: %.3f m\n\n",D1)
|
4eb993dcc81211168a7cb2deaa54dba121141d11 | 449d555969bfd7befe906877abab098c6e63a0e8 | /409/CH24/EX24.1/Example24_1.sce | 5334f0d6d39e3218ff82bfe3d1a2d6d5c18aca89 | [] | 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,642 | sce | Example24_1.sce | clear ;
clc;
// Example 24.1
printf('Example 24.1\n\n');
//page no. 720
// Solution Fig. E24.1
// Assumptions to be made in eqn. 24.1 in following segment
printf('Assumptions to be made in eqn. 24.1 in following segments are:\n');
//(a)- 1 to 5
printf('\n(a)- 1 to 5.\n');
printf(' 1. Change in potential energy(del_PE) = 0(no change in level) .\n');
printf(' 2. Probably change in kinetic energy(del_KE)=0 .\n');
printf(' 3. Change in energy = 0 (process appears to be steady).\n');
printf(' Result : Q + W = del_H.\n');
//(b) 4 to 5
printf('\n\n(b) 4 to 5.\n');
printf(' 1. Q = W = 0 \n');
printf(' 2. Probably change in kinetic energy(del_KE)=0.\n');
printf(' 3. Change in energy = 0 (process appears to be steady).\n');
printf(' Result : del_H = -del_PE . \n');
//(c) 3 to 4
printf('\n\n(c) 3 to 4.\n');
printf(' 1. Q = W = 0 \n');
printf(' 2. Probably change in kinetic energy(del_KE)=0.\n');
printf(' 3. Change in energy = 0 (process appears to be steady).\n');
printf(' Result : del_H = -del_PE . \n');
//(d) 3 to 5
printf('\n\n(d) 3 to 5.\n');
printf(' 1. Q = W = 0 \n');
printf(' 2. Probably change in kinetic energy(del_KE)=0.\n');
printf(' 3. Change in energy = 0 (process appears to be steady).\n');
printf(' 4. Change in potential energy(del_PE) = 0(no change in level) .\n');
printf(' Result : del_H = 0 . \n');
//(e)- 1 to 3
printf('\n(e) 1 to 3.\n');
printf(' 1. Change in potential energy(del_PE) = 0(no change in level) .\n');
printf(' 2. Probably change in kinetic energy(del_KE)=0 .\n');
printf(' 3. Change in energy = 0 (process appears to be steady).\n');
printf(' Result : Q + W = del_H.\n'); |
71e0069ab8d5d4c25e2839afb14ead247e0fa2b6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /991/CH3/EX3.4/Example3_4.sce | 9b2afea232f73e60ed4f26863abf739231a4b7c1 | [] | 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 | 903 | sce | Example3_4.sce | //Example 3.4.
clc
V=200
m=9.1*10^-31;
q = 1.6*10^-19;
format(8)
v=sqrt(2*q*V/m)
disp("(i)The electron starts from rest at plate A, therefore, the initial velocity is zero. The velocity of electron on reaching plate B is")
disp(v,"v(m/s) = sqrt(2*q*V/m) =")
iv=0 //initial velocity
fv=8.38*10^6 //final velocity
va=(iv+fv)/2 //average velocity of electron in transit
disp("(ii)Time taken by the electron to travel from plate A to plate B can be calculated from the average velocity of the electron in transit.The average velocity is,")
disp(va,"vaverage(m/s) = (Initial velocity + Final velocity) / 2 =")
sp=3*10^-3 //separation between the plates
time=sp/va
disp("Therefore, time taken for travel is,")
disp(time,"Time(seconds) = Separation between the plates / Average velocity =")
ke=q*V
disp("(iii)Kinetic energy of the electron on reaching the plate B is")
disp(ke,"Kinetic energy(Joules) = q V =") |
fb9e2b0eb732887f0d581638093efe7b2b320cbe | 449d555969bfd7befe906877abab098c6e63a0e8 | /70/CH2/EX2.3.6/2_3_6.sci | 577c595fa9c0ee5979f0940db71123068326fc32 | [] | 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 | 201 | sci | 2_3_6.sci | //page 93
clear;
close;
clc;
disp('The vectors w1=(1,0,0),w2=(0,1,0),w3=(-2,0,0) span a plane (x-y plane) in R3. The first two vectors also span this plane, whereas w1 and w3 span only a line.');
//end |
92970792b672990ecdb442715c9603c128ca2449 | 04235b80bb5ac43154dbceab7b2b952b54418bc8 | /planner/irl/optim_nsga2.sci | f202ee7590b1b330ef59b71b83928895194dfa2f | [] | no_license | NO2/dmps | 4370cfc08f2796f8776543d5282efc4a997fadad | 9266714e5ffbc9d5f6109baac2da16651ea6fd4d | refs/heads/master | 2021-03-12T21:31:05.322501 | 2015-03-11T14:43:30 | 2015-03-11T14:43:30 | 32,451,046 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 6,445 | sci | optim_nsga2.sci | // Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) 2008 - Yann COLLETTE <yann.collette@renault.com>
//
// This file must be used under the terms of the CeCILL.
// This source file is licensed as described in the file COPYING, which
// you should have received as part of this distribution. The terms
// are also available at
// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
function [pop_opt, fobj_pop_opt, pop_init, fobj_pop_init] = optim_nsga2(ga_f, pop_size, nb_generation, p_mut, p_cross, Log, param)
[nargout, nargin] = argn();
if ~isdef('param','local') then
param = [];
end
[codage_func,err] = get_param(param,'codage_func',coding_ga_identity);
[init_func,err] = get_param(param,'init_func',init_ga_default);
[crossover_func,err] = get_param(param,'crossover_func',crossover_ga_default);
[mutation_func,err] = get_param(param,'mutation_func',mutation_ga_default);
[nb_couples,err] = get_param(param,'nb_couples',100);
if ~isdef('ga_f','local') then
error(gettext("optim_nsga2: ga_f is mandatory"));
end
if ~isdef('pop_size','local') then
pop_size = 100;
end
if ~isdef('nb_generation','local') then
nb_generation = 10;
end
if ~isdef('p_mut','local') then
p_mut = 0.1;
end
if ~isdef('p_cross','local') then
p_cross = 0.1;
end
if ~isdef('Log','local') then
Log = %F;
end
// Initialization of the population
if (Log) then
printf(gettext("%s: Initialization of the population\n"),"optim_nsga2");
end
Pop = init_func(pop_size,param);
if (nargout>=3) then
pop_init = Pop;
end
// Code the individuals
Pop = codage_func(Pop,'code',param);
for i=1:length(Pop)
FObj_Pop(i,:) = ga_f(Pop(i));
end
// Compute the domination rank
Rank=DominationRank(FObj_Pop);
// Compute the crowding distance
MO_FObj_Pop = FObj_Pop;
Index = 1:size(MO_FObj_Pop,1);
Crowdist = zeros(size(MO_FObj_Pop,1),1);
for i=1:size(FObj_Pop,2)
[tmp, Index_List] = gsort(MO_FObj_Pop(:,i));
MO_FObj_Pop = MO_FObj_Pop(Index_List,:);
Index = Index(Index_List);
Crowdist(Index_List(1)) = %inf;
Crowdist(Index_List($)) = %inf;
_Max = max(MO_FObj_Pop(:,i));
_Min = min(MO_FObj_Pop(:,i));
for j=2:size(MO_FObj_Pop,1)-1
Crowdist(Index(j)) = Crowdist(Index(j)) - (MO_FObj_Pop(j+1,i) - MO_FObj_Pop(j-1,i)) / (_Max - _Min+1);
end
end
if (nargout==4) then
fobj_pop_init = FObj_Pop;
end
// The genetic algorithm
for It=1:nb_generation
if (Log) then
printf(gettext("%s: iteration %d / %d\n"), "optim_nsga2", It, nb_generation);
end
//
// Selection
//
Indiv1 = list();
Indiv2 = list();
for j=1:nb_couples
// Selection of 2 individuals via binary tournament selection to fill Indiv1
Index1 = ceil((size(FObj_Pop,1) - 1)*rand(1,1)+1);
Index2 = ceil((size(FObj_Pop,1) - 1)*rand(1,1)+1);
if (Rank(Index1)<Rank(Index2)) | ((Rank(Index1)==Rank(Index2)) & (Crowdist(Index1)>Crowdist(Index2))) then
Indiv1(j) = Pop(Index1);
FObj_Indiv1(j,:) = MO_FObj_Pop(Index1,:);
else
Indiv1(j) = Pop(Index2);
FObj_Indiv1(j,:) = MO_FObj_Pop(Index2,:);
end
// Selection of 2 individuals via binary tournament selection to fill Indiv2
Index1 = ceil((size(FObj_Pop,1) - 1)*rand(1,1)+1);
Index2 = ceil((size(FObj_Pop,1) - 1)*rand(1,1)+1);
if (Rank(Index1)<Rank(Index2)) | ((Rank(Index1)==Rank(Index2)) & (Crowdist(Index1)>Crowdist(Index2))) then
Indiv2(j) = Pop(Index1);
FObj_Indiv2(j,:) = MO_FObj_Pop(Index1,:);
else
Indiv2(j) = Pop(Index2);
FObj_Indiv2(j,:) = MO_FObj_Pop(Index2,:);
end
end
//
// Crossover
//
for j=1:nb_couples
if (p_cross>rand(1,1)) then
[x1, x2] = crossover_func(Indiv1(j), Indiv2(j),param);
Indiv1(j) = x1;
Indiv2(j) = x2;
ToCompute_I1(j) = %T;
ToCompute_I2(j) = %T;
else
ToCompute_I1(j) = %F;
ToCompute_I2(j) = %F;
end
end
//
// Mutation
//
for j=1:nb_couples
if (p_mut>rand(1,1)) then
x1 = mutation_func(Indiv1(j),param);
Indiv1(j) = x1;
ToCompute_I1(j) = %T;
end
if (p_mut>rand(1,1)) then
x2 = mutation_func(Indiv2(j),param);
Indiv2(j) = x2;
ToCompute_I2(j) = %T;
end
end
//
// Computation of the objective functions
//
for j=1:length(Indiv1)
if ToCompute_I1(j) then FObj_Indiv1(j,:) = ga_f(Indiv1(j)); end
if ToCompute_I2(j) then FObj_Indiv2(j,:) = ga_f(Indiv2(j)); end
end
// Reinit ToCompute lists
ToCompute_I1 = ToCompute_I1 & %F;
ToCompute_I2 = ToCompute_I2 & %F;
// We merge all the individuals in one list ...
All_Pop = lstcat(Pop, Indiv1, Indiv2);
All_FObj = [FObj_Pop' FObj_Indiv1' FObj_Indiv2']';
// Compute the domination rank on all the population
Rank=DominationRank(All_FObj);
// Compute the crowding distance
MO_All_FObj = All_FObj;
Index = 1:size(MO_All_FObj,1);
Crowdist = zeros(size(MO_All_FObj,1),1);
for k=1:size(MO_All_FObj,2)
[tmp, Index_List] = gsort(MO_All_FObj(:,k));
MO_All_FObj = MO_All_FObj(Index_List,:);
Index = Index(Index_List);
Crowdist(Index_List(1)) = %inf;
Crowdist(Index_List($)) = %inf;
_Max = max(MO_All_FObj(:,k));
_Min = min(MO_All_FObj(:,k));
for j=2:size(MO_All_FObj,1)-1
Crowdist(Index(j)) = Crowdist(Index(j)) - (MO_All_FObj(j+1,k) - MO_All_FObj(j-1,k)) / (_Max - _Min + 1);
end
end
//
// Recombination
//
// We rank all the individual wrt to the partial order
for k=1:size(All_FObj,1)-1
for j=k+1:size(All_FObj,1)
if (Rank(j)<Rank(k)) | ((Rank(j)==Rank(k)) & (Crowdist(j)>Crowdist(k))) then
tmp = Rank(k);
Rank(k) = Rank(j);
Rank(j) = tmp;
tmp = Crowdist(k);
Crowdist(k) = Crowdist(j);
Crowdist(j) = tmp;
tmp = All_Pop(k);
All_Pop(k) = All_Pop(j);
All_Pop(j) = tmp;
tmp = All_FObj(k,:);
All_FObj(k,:) = All_FObj(j,:);
All_FObj(j,:) = tmp;
end
end
end
// Extraction and selection of the phenotype
FObj_Pop = All_FObj(1:pop_size,:);
// Extraction and selection of the genotype
Pop = list(All_Pop(1:pop_size));
// Extraction of the ranks and Crow distance
Rank = Rank(1:pop_size);
Crowdist = Crowdist(1:pop_size);
end
pop_opt = codage_func(Pop,'decode',param);
fobj_pop_opt = FObj_Pop;
endfunction
|
56afb30c7b596e6440762ab18d26beb38ae47983 | c557cd21994aaa23ea4fe68fa779dd8b3aac0381 | /test/authormatch.tst | 0a7b576c5462671d67ee1c35d575fd95c65cfdfa | [
"BSD-3-Clause",
"BSD-2-Clause"
] | permissive | dougsong/reposurgeon | 394001c0da4c3503bc8bae14935808ffd6f45657 | ee63ba2b0786fa1b79dd232bf3d4c2fe9c22104b | refs/heads/master | 2023-03-09T15:22:45.041046 | 2023-02-25T08:33:06 | 2023-02-25T08:33:06 | 280,299,498 | 1 | 0 | NOASSERTION | 2023-02-25T08:33:08 | 2020-07-17T01:45:32 | Go | UTF-8 | Scilab | false | false | 938 | tst | authormatch.tst | ## Test matching on author name
read <<EOF
blob
mark :376857
data 16
Blob at :376857
blob
mark :376858
data 16
Blob at :376858
blob
mark :376859
data 16
Blob at :376859
blob
mark :376860
data 16
Blob at :376860
reset refs/heads/xwidget^0
commit refs/heads/xwidget
mark :376861
author =Constantin Kulikov <zxnotdead@gmail.com> 1356371359 +0100
committer martin rudalics <rudalics@gmx.at> 1356371359 +0100
data 310
Allow function as value of initial-buffer-choice (Bug#13251).
* startup.el (initial-buffer-choice): Allow function as value
(Bug#13251).
(command-line-1): Handle case where initial-buffer-choice
specifies a function.
* server.el (server-execute): Handle case where
initial-buffer-choice specifies a function.
M 100644 :376857 etc/NEWS
M 100644 :376858 lisp/ChangeLog
M 100644 :376859 lisp/server.el
M 100644 :376860 lisp/startup.el
EOF
set interactive
/Kulikov/a resolve Should match
/mumble/a resolve Should not match
|
e0d48627216ec29efa8c0ffcf5b41209fb839e91 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2882/CH12/EX12.6/Ex12_6.sce | ab955c4b2f1909d3f338b41a4a88f9a4971a4623 | [] | 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 | 937 | sce | Ex12_6.sce | //Tested on Windows 7 Ultimate 32-bit
//Chapter 12 Modulation and Demodulation Pg no. 380
clear;
clc;
//Given
fc=9D6;//frequency of carrier wave in hertz
Vc=9;//peak value of carrier wave in volts
fm=10D3;//frequency of modulating wave in hertz
Vm=4.5;//amplitude of modulating sine wave in volts
//Solution
m=Vm/Vc;//modulation index
printf("Modulation index m = %d %%",m*100);
fu=fc+fm;//upper side band frequency in hertz
fl=fc-fm;//lower side band frequency in hertz
f=[fc-2*fm fc-fm fc fc+fm fc+2*fm];//frequency range
for i=1:5
if f(i)==fu | f(i)==fl then
A(i)=m*Vc/2;//amplitude of side frequency in volts
else
A(i)=0;//amplitude of side frequency in volts
end
end
bar(f/10^6,A,0.1,'red');
title("Frequency spectrum of AM wave");
xlabel("Frequency in MHz");
ylabel("Amplitude in volts");
xstring(8.988,2.3,"lower side band");
xstring(9.008,2.3,"upper side band");
|
18e04a3bdacd7cb8a2e21e87aca56ca598c1b0ac | 449d555969bfd7befe906877abab098c6e63a0e8 | /3845/CH29/EX29.2/Ex29_2.sce | 61d4f28a27648d768ec8c19aecf36c23265d4a01 | [] | 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 | 337 | sce | Ex29_2.sce | //Example 29.2
q=1.60*10^-19;//Charge of an electron (C)
V=50*10^3;//Potential difference (V)
hf=q*V;//Maximum photon energy (J)
hf=hf*1/(1.60*10^-19);//maximum photon energy (eV)
printf('Maximum x-ray photon energy = %0.1f keV',hf/1000)
//Openstax - College Physics
//Download for free at http://cnx.org/content/col11406/latest
|
dfc31ef7b065088d0fa8f1dd063b16bd1c167d44 | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/MP10.prev.tst | 31540862ab7fdd903594d6a726267c6e35957d17 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | gfis/ramath | 498adfc7a6d353d4775b33020fdf992628e3fbff | b09b48639ddd4709ffb1c729e33f6a4b9ef676b5 | refs/heads/master | 2023-08-17T00:10:37.092379 | 2023-08-04T07:48:00 | 2023-08-04T07:48:00 | 30,116,803 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,119 | tst | MP10.prev.tst | matList[0] = [[11,12,13,14],[21,22,23,24],[31,32,33,34],[41,42,43,44]]
permuted from 0 by [0,1,3,2]: [[11,12,14,13],[21,22,24,23],[31,32,34,33],[41,42,44,43]]
permuted from 0 by [0,2,1,3]: [[11,13,12,14],[21,23,22,24],[31,33,32,34],[41,43,42,44]]
permuted from 0 by [0,2,3,1]: [[11,14,12,13],[21,24,22,23],[31,34,32,33],[41,44,42,43]]
permuted from 0 by [0,3,2,1]: [[11,14,13,12],[21,24,23,22],[31,34,33,32],[41,44,43,42]]
permuted from 0 by [0,3,1,2]: [[11,13,14,12],[21,23,24,22],[31,33,34,32],[41,43,44,42]]
permuted from 0 by [1,0,2,3]: [[12,11,13,14],[22,21,23,24],[32,31,33,34],[42,41,43,44]]
permuted from 0 by [1,0,3,2]: [[12,11,14,13],[22,21,24,23],[32,31,34,33],[42,41,44,43]]
permuted from 0 by [1,2,0,3]: [[13,11,12,14],[23,21,22,24],[33,31,32,34],[43,41,42,44]]
permuted from 0 by [1,2,3,0]: [[14,11,12,13],[24,21,22,23],[34,31,32,33],[44,41,42,43]]
permuted from 0 by [1,3,2,0]: [[14,11,13,12],[24,21,23,22],[34,31,33,32],[44,41,43,42]]
permuted from 0 by [1,3,0,2]: [[13,11,14,12],[23,21,24,22],[33,31,34,32],[43,41,44,42]]
permuted from 0 by [2,1,0,3]: [[13,12,11,14],[23,22,21,24],[33,32,31,34],[43,42,41,44]]
permuted from 0 by [2,1,3,0]: [[14,12,11,13],[24,22,21,23],[34,32,31,33],[44,42,41,43]]
permuted from 0 by [2,0,1,3]: [[12,13,11,14],[22,23,21,24],[32,33,31,34],[42,43,41,44]]
permuted from 0 by [2,0,3,1]: [[12,14,11,13],[22,24,21,23],[32,34,31,33],[42,44,41,43]]
permuted from 0 by [2,3,0,1]: [[13,14,11,12],[23,24,21,22],[33,34,31,32],[43,44,41,42]]
permuted from 0 by [2,3,1,0]: [[14,13,11,12],[24,23,21,22],[34,33,31,32],[44,43,41,42]]
permuted from 0 by [3,1,2,0]: [[14,12,13,11],[24,22,23,21],[34,32,33,31],[44,42,43,41]]
permuted from 0 by [3,1,0,2]: [[13,12,14,11],[23,22,24,21],[33,32,34,31],[43,42,44,41]]
permuted from 0 by [3,2,1,0]: [[14,13,12,11],[24,23,22,21],[34,33,32,31],[44,43,42,41]]
permuted from 0 by [3,2,0,1]: [[13,14,12,11],[23,24,22,21],[33,34,32,31],[43,44,42,41]]
permuted from 0 by [3,0,2,1]: [[12,14,13,11],[22,24,23,21],[32,34,33,31],[42,44,43,41]]
permuted from 0 by [3,0,1,2]: [[12,13,14,11],[22,23,24,21],[32,33,34,31],[42,43,44,41]]
|
9a6ff0f28ff710cfcc46b7b20a7b698668816b2a | 449d555969bfd7befe906877abab098c6e63a0e8 | /2912/CH8/EX8.7/Ex8_7.sce | 15215c575abe9a6fed82f631143686c7f202da51 | [] | 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 | 426 | sce | Ex8_7.sce | //chapter 8
//example 8.7
//Calculate Hystersis loss per cycle
//page 238
clear;
clc;
//given
A=100; // in m^2 (area of Hysteresis loop)
B=0.01; // in Wb/m^2 (unit space along vertical axis or magnetic flux density)
H=40; // in A/m (unit space along horizontal axis or magnetic fild ntensity)
//calculate
H_L=A*B*H; // calculation of magnetic intensity
printf('\nThe Hystersis loss per cycle is %.f J/m^2',H_L);
|
0666b3e30b713891145939f2dcef1ec2567c7b13 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1046/CH4/EX4.10/4_10.sce | 2d22f20d2dea4906d168583c174420d8300ed8c4 | [] | 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,594 | sce | 4_10.sce | //Example 4.10
//calculate the length of heat exchanger.
//Given
dti=0.0212 //m inner tube
dto=0.0254 //cm, outer tube
dpi=0.035 //cm, outer pipe
mo_=500 //kh/h, cooling rate of oil
To2=110 //C, initial temo. of oil
To1=70 //C, temp. after cooling of oil
Tw2=40 //C, inlet temp. of water
Tw1=29 //C, outlet temp. of water
//properties of oil
cpo=0.478 //kcal/kg C
ko=0.12 //kcal/h m C, thermal conductivity
rho=850 //kg/m^3, density of oil
//properties of water
kw=0.542 //kcal/h m C, thermal conductivity
kw_=(kw*1.162) //kj/kg C
muw=7.1*10^-4 //kg/ms, viscosity of water
cpw=1 //kcal/kg C
cpw_=cpw*4.17 //kcal/kg C
rhow=1000 //kg/m^3, density
//calculation
HL=mo_*cpo*(To2-To1) //kcal/h, heat load of exchanger
mw_=HL/(cpw*(Tw2-Tw1)) //kg/h water flow rate
mw_1=mw_/(3600*10^3) //m^3/s water flow rate
A1=(%pi/4)*(dti)^2 //m^2, flow area of tube
Vw=mw_1/A1 //m/s water velocity
Rew=dti*Vw*rhow/muw //Reynold no.
Prw=cpw_*10^3*muw/kw_ //Prandtl no.
Nuw=0.023*Rew^0.8*Prw^0.4 //nusslet no.
//water side heat transfer coefficient hi
hi=Nuw*kw/dti
//oil side heat transfer coefficient
A2=%pi/4*(dpi^2-dto^2) //m^2, flow area of annulus
Vo=mo_/(3600*rho*A2) //m/s velocity of oil
de=(dpi^2-dto^2)/dto //m, equivalent dia of annulus
Tmo=(To2+To1)/2 //C,mean oil temp.
muoil=exp((5550/(Tmo+273))-19) //kg/ms, viscosity of oil
Reo=de*Vo*rho/muoil
Pro=cpo*muoil*3600/ko //prandtl no. for oil
//assume (1st approximation)
Nuo=3.66
ho=Nuo*ko/de //kcal/h m^2 c
L=1 //assume length of tube
Ai=%pi*dti*L
Ao=%pi*dto*L
//overall heat transfer coefficient 1st approximation
Uo=1/(1/ho+Ao/(Ai*hi))
LMTD=((To2-Tw2)-(To1-Tw1))/(log((To2-Tw2)/(To1-Tw1)))
Ao1=HL/(Uo*LMTD) //m^2, heat transfer area
Lt=Ao1/(%pi*dto) //m, tube length
//from eq. 4.8
Nuo1=1.86*(Reo*Pro/(Lt/de))^(1/3) //Nusslet no.
ho1=Nuo1*ko/de
Tmw=(Tw1+Tw2)/2 //C, mean water temp.
//balancing heat transfer rate of oil and water
//average wall temp. Twall
Twall=((hi*dti*(-Tmw))-(ho1*dto*Tmo))/(-65.71216)
//viscosity of oil at this temp.
muwall=exp((5550/(Twall+273))-19) //kg/ms, viscosity of oil
//Nusslet no.
Nuo2=1.86*(Reo*Pro/(Lt/de))^(1/3)*(muoil/muwall)^0.14
ho2=Nuo2*ko/de
Uo2=1/((1/ho2)+(Ao/(Ai*hi)))
Ao2=HL/(Uo2*LMTD)
Lt_=Ao2/(%pi*dto)
printf("The tube length is %f m",Lt_)
|
3ddda5c0e0bbd00f02c5207e021460707e838f5a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3718/CH5/EX5.2/Ex5_2.sce | 04c757c809012f89ea509ec87372af7bd84a62bc | [] | 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 | 234 | sce | Ex5_2.sce | //Chapter 5: Chemical Kinetics and Catalysis
//Problem: 2
clc;
//Declaration of Variables
t = 40 //in minutes
// Solution
mprintf("Rate constant = 0.693 / t\n")
K = 0.693 / t
mprintf(" Rate constant = %.4f / min",K)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.