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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
f76efe60ad18823be3629dc4dd10709a642e866e | 449d555969bfd7befe906877abab098c6e63a0e8 | /3363/CH15/EX15.7/Ex15_7.sce | 9e7311f614516b879b2fe1e214e4a95c1aa2627c | [] | 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 | 24 | sce | Ex15_7.sce | //Example 15.7, page 547 |
d97b62e4139d08f6601480039a85551261630baf | 449d555969bfd7befe906877abab098c6e63a0e8 | /1994/CH1/EX1.2/Example1_2.sce | 4b9172c042c8ba1c9d021a3756534ac25e95155d | [] | 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 | 172 | sce | Example1_2.sce | //Chapter-1,Example1_2,pg 1_18
Eav=9
Erms=10
Rm=500
Idc=2*10^-3
Edc=0.9*Erms
Rs=(Edc/Idc)-Rm
printf("required multiplier resistance")
printf("Rs=%.2f ohm \n",Rs )
|
4d1417ab2074f50dc034d063c767625decf71636 | 127061b879bebda7ce03f6910c80d0702ad1a713 | /bin/PIL_trace.sci | 90059fe245be79f95a23da514c23dfb67038fe5e | [] | no_license | pipidog/PiLib-Scilab | 961df791bb59b9a16b3a32288f54316c6954f128 | 125ffa71b0752bfdcef922a0b898263e726db533 | refs/heads/master | 2021-01-18T20:30:43.364412 | 2017-08-17T00:58:50 | 2017-08-17T00:58:50 | 100,546,695 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 298 | sci | PIL_trace.sci | // **** Purpose ****
// calculate the trace of a matrix
// **** Variables ****
// A: nxn, complex or real
// <= input matrix
// output: 1x1, complex or real
// => trace of A
// **** Version ****
// 05/01/2014
// **** Comment ****
function output=PIL_trace(A)
output=sum(diag(A));
endfunction
|
6cb10cc796004fa05a0b59781a76333fad6222d7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1217/CH6/EX6.13/Exa6_13.sce | a5782b70f7845055277299f140e96aa753e4a317 | [] | 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,049 | sce | Exa6_13.sce | // Exa 6.13
clc;
clear;
close;
// given data
fL=200;//in Hz
fH=1;//in KHz
AFBP=4;//unitless
//for LP section design
//assume C=0.01 uF
C=0.01;//in uF
R=1/(2*%pi*fH*1000*C*10^-6);//in ohm
disp("For low pass section design component values are :");
disp(R/1000,"Value of R in Kohm is :")
disp(C,"Value of C in uF is :")
//for HP section design
//assume C=0.05 uF
C=0.05;//in uF
R=1/(2*%pi*fL*1000*C*10^-6);//in ohm
disp("For high pass section design component values are :");
disp(R,"Value of R in Kohm is :");
disp(C,"Value of C in uF is :");
disp("We have AFBP=AFHP*AFLP=4");
disp("The gain of HP section as well as LP section could be set equal to 2 to obtain overall gain of 4. This gives equal value for input and feedback resistors for both sections, i.e. ");
disp("R=10 Kohm");
fc=sqrt(fH*fL*1000);//in Hz
BW=fH*1000-fL;//in Hz
Q=fc/BW;//unitless
disp(fc,"Center frequency in Hz is : ");
disp(BW,"BW in Hz is :");
disp(Q,"Selectivity is :")
disp("As Q<10, hence the given filter is wide band pass filter.")
|
82e7d902419e490245d03507dfc763eb5e8354a0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3648/CH15/EX15.4/Ex15_4.sce | ca7d485d3570df0f1b3852c5e56b7e07492d7a7c | [] | 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 | 453 | sce | Ex15_4.sce | //Example 15_4
clc();
clear;
//To find the resultant force on 20 micro C
f1=2 //Units in N
f2=1.8 //Units in N
theta=37 //Units in degrees
f2x=f2*cos(theta*%pi/180) //Units in N
f2y=f2*sin(theta*%pi/180) //Units in N
fy=f1+f2y //Units in N
f=sqrt(fy^2+f2x^2) //Units in N
theta=atan(fy/f2x)*180/%pi //Unitsta in degrees
printf("The resultant force is f=%.1f N \n The resultant angle is theta=%.1f degrees",f,theta)
|
39bfd9fc8394908bdfce8d796154aace86b7d3ab | 57af31f8edca423b6c1c37a40e7a3b18c9689d9e | /Test/createHFG.sci | 0c53f86b2733ab0bdf6a8d48f4ebc58f26c422f0 | [] | no_license | Nandish82/Scilab | 9531c3430f141fce5193fbb206aaf48c4a7bfa43 | 26bd720a86c88601f0c4b913f4e973027ab8bbf9 | refs/heads/master | 2021-01-23T15:42:37.495141 | 2015-04-14T21:30:04 | 2015-04-14T21:30:04 | 31,420,748 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,947 | sci | createHFG.sci |
// Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
//function [H,F,G,cm3,Mm,Qbar,RN]=createHFG(N,A,B,Q,P,R)
//the size of Q is the a square matrix of size Ns*Ns..number of states
//the size of P is the same except it is the Terminal weight
//the size of R is usually the same as the above
// ! L.9: mtlb(B) can be replaced by B() or B whether B is an M-file or not.
sizeB = size(mtlb_double(mtlb(B)));
cosizeB = sizeB(2);//number of columns of B i.e the number of inputs
// ! L.11: mtlb(A) can be replaced by A() or A whether A is an M-file or not.
sizeA = size(mtlb_double(mtlb(A)));
sizeA = sizeA(1);
//sizeC=size(C);
//sizeC=sizeC(1); %number of outputs
// ! L.18: mtlb(N) can be replaced by N() or N whether N is an M-file or not.
// ! L.18: mtlb(A) can be replaced by A() or A whether A is an M-file or not.
// ! L.18: mtlb(N) can be replaced by N() or N whether N is an M-file or not.
cm3 = zeros(mtlb_double(mtlb(N))*size(size(mtlb_double(mtlb(A))),"*"),mtlb_double(mtlb(N))*cosizeB);
Mm = [];
// ! L.20: mtlb(N) can be replaced by N() or N whether N is an M-file or not.
for i = mtlb_imp(1,mtlb_double(mtlb(N)))
// ! L.21: mtlb(A) can be replaced by A() or A whether A is an M-file or not.
Mm = [Mm;mtlb_double(mtlb(A))^i];
// ! L.22: mtlb(N) can be replaced by N() or N whether N is an M-file or not.
for j = mtlb_imp(1,mtlb_double(mtlb(N)))
if i>=j then
//cm2((i-1)*ndims(B)+1:(i-1)*2+2,j)=(A^(i-j))*B
//cm2((i-1)*ndims(A)+1:(i-1)*ndims(A)+1,)=
// ! L.26: mtlb(A) can be replaced by A() or A whether A is an M-file or not.
// ! L.26: mtlb(B) can be replaced by B() or B whether B is an M-file or not.
cm3((i-1)*sizeA+1:i*sizeA,(j-1)*cosizeB+1:j*cosizeB) = (mtlb_double(mtlb(A))^(i-j))*mtlb_double(mtlb(B));
end;
end;
end;
Q_N = [];
// ! L.32: mtlb(N) can be replaced by N() or N whether N is an M-file or not.
for i = mtlb_imp(1,mtlb_s(mtlb_double(mtlb(N)),1))
// ! L.33: mtlb(Q) can be replaced by Q() or Q whether Q is an M-file or not.
// !! L.33: Matlab function blkdiag not yet converted, original calling sequence used.
Q_N = 1*mtlb_double(blkdiag(Q_N,mtlb(Q)));
end;
// ! L.36: mtlb(P) can be replaced by P() or P whether P is an M-file or not.
// !! L.36: Matlab function blkdiag not yet converted, original calling sequence used.
Qbar = blkdiag(Q_N,mtlb(P));
RN = []
// ! L.39: mtlb(N) can be replaced by N() or N whether N is an M-file or not.
for i = mtlb_imp(1,mtlb_double(mtlb(N)))
// ! L.40: mtlb(R) can be replaced by R() or R whether R is an M-file or not.
// !! L.40: Matlab function blkdiag not yet converted, original calling sequence used.
RN = blkdiag(RN,mtlb(R));
end;
H = mtlb_a((cm3'*mtlb_double(Qbar))*cm3,mtlb_double(RN));
F = (cm3'*mtlb_double(Qbar))*Mm;
// ! L.46: mtlb(Q) can be replaced by Q() or Q whether Q is an M-file or not.
G = mtlb_a((Mm'*mtlb_double(Qbar))*Mm,mtlb_double(mtlb(Q)));
//end
|
cefaa31c9a5ee658070d7f9420d7c8ed560c738d | 449d555969bfd7befe906877abab098c6e63a0e8 | /3768/CH6/EX6.5/Ex6_5.sce | db871c62ced73d7d330b84d4f938269082609e4c | [] | 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 | 476 | sce | Ex6_5.sce | //Example number 6.5, Page number 117
clc;clear;
close;
//Variable declaration
d=8.92*10**3; //density(kg/m**3)
rho=1.73*10**-8; //resistivity(ohm m)
M=63.5; //atomic weight
N=6.02*10**26; //avagadro number
e=1.6*10**-19; //charge(c)
m=9.1*10**-31; //mass(kg)
//Calculation
n=d*N/M;
mew=1/(rho*n*e); //mobility(m/Vs)
tow=m/(n*e**2*rho); //average time(sec)
//Result
printf("mobility is %.3e m/Vs",mew)
printf("\n average time is %.2e sec",tow)
|
86d1116fd20a9db8ce40d3d0844becd34298dd0f | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/bow/bow.11_19.tst | e595c2e544eb561cbdeb004c2fdcbca3ec189d38 | [] | no_license | mandar15/NLP_Project | 3142cda82d49ba0ea30b580c46bdd0e0348fe3ec | 1dcb70a199a0f7ab8c72825bfd5b8146e75b7ec2 | refs/heads/master | 2020-05-20T13:36:05.842840 | 2013-07-31T06:53:59 | 2013-07-31T06:53:59 | 6,534,406 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 3,661 | tst | bow.11_19.tst | 11 1:0.2 5:0.3333333333333333 10:0.25 35:0.08333333333333333 37:1.0 62:0.1111111111111111 195:1.0 292:1.0 635:0.5 1116:1.0
11 22:0.5 23:1.0 55:0.5 61:1.0 91:1.0 305:0.5
11 10:0.25 12:0.14285714285714285 31:0.25 61:1.0 62:0.1111111111111111 104:1.0 132:1.0 157:1.0 172:0.25
11 91:1.0 199:1.0 307:2.0
11 16:1.0 62:0.1111111111111111 67:1.0 534:0.25
11 1:0.1 8:0.09090909090909091 91:1.0 210:0.5 228:2.0 266:1.0 387:3.0 1380:1.0
11 37:1.0 66:1.0 232:0.125 711:0.5
11 4:0.25 5:0.3333333333333333 17:0.25 35:0.16666666666666666 37:2.0 65:1.0 66:1.0 83:1.0 91:1.0 232:0.125 242:1.0 317:1.0 339:1.0 580:1.0 1112:1.0
11 5:0.3333333333333333 62:0.1111111111111111 222:1.0 317:2.0
11 3:0.25 12:0.2857142857142857 132:1.0 210:0.3333333333333333 280:0.034482758620689655 305:0.5 707:1.0 710:1.0
11 1:0.1 3:0.25 5:0.3333333333333333 35:0.08333333333333333 37:2.0 62:0.1111111111111111 104:1.0 220:1.0 222:1.0 269:1.0 326:1.0 600:1.0
11 1:0.1 2:1.0 5:0.3333333333333333 8:0.5454545454545454 37:2.0 61:1.0 62:0.2222222222222222 125:1.0 128:0.16666666666666666 228:1.0 232:0.25 317:1.0 339:1.0 514:0.08333333333333333 1325:1.0 1347:1.0
11 4:0.25 5:0.3333333333333333 17:0.25 35:0.16666666666666666 37:2.0 65:1.0 66:1.0 83:1.0 91:1.0 232:0.125 242:1.0 317:1.0 339:1.0 580:1.0 1112:1.0
11 5:0.3333333333333333 62:0.1111111111111111 222:1.0 317:2.0
11 66:1.0
11 96:0.5
11 209:1.0
11 1:0.1 2:1.0 3:0.25 8:0.09090909090909091 10:0.25 12:0.2857142857142857 31:0.25 33:1.0 66:1.0 80:1.0 84:1.0 91:1.0 120:0.5 143:1.0 210:0.16666666666666666 1310:0.3333333333333333
11 1:0.1 10:0.5 12:0.2857142857142857 31:0.25 37:1.0 62:0.1111111111111111 79:1.0 81:0.5 84:1.0 132:1.0 206:1.0 210:0.16666666666666666 333:1.0
11 1:0.1 2:1.0 8:0.18181818181818182 12:0.2857142857142857 17:0.25 62:0.1111111111111111 98:0.14285714285714285 229:0.5 267:1.0 292:1.0 882:1.0 1260:1.0
11 3:0.25 5:0.3333333333333333 8:0.09090909090909091 12:0.14285714285714285 31:0.25 119:0.3333333333333333 201:1.0 202:1.0 292:1.0 305:0.5 1287:1.0
11 1:0.2 2:1.0 5:0.3333333333333333 8:0.09090909090909091 12:0.14285714285714285 23:1.0 37:1.0 62:0.2222222222222222 64:0.2 73:0.25 91:1.0 187:0.5 199:1.0 243:1.0 340:0.3333333333333333 859:1.0 1040:1.0 1295:1.0
11 1:0.1 3:0.25 5:0.3333333333333333 12:0.14285714285714285 75:0.3333333333333333 132:1.0
11 12:0.14285714285714285 50:1.0 62:0.1111111111111111 83:0.5 143:1.0 512:1.0 736:1.0
11 12:0.14285714285714285 31:0.25
11 1:0.1 5:0.3333333333333333 8:0.09090909090909091 10:0.25 12:0.2857142857142857 25:0.14285714285714285 31:0.5 35:0.08333333333333333 37:1.0 40:1.0 62:0.1111111111111111 66:1.0 75:0.3333333333333333 146:1.0 147:1.0 212:1.0 391:0.5 439:1.0 451:1.0
11 12:0.14285714285714285 31:0.25 50:1.0 90:0.5 143:1.0 206:1.0 292:1.0 340:0.3333333333333333
11 1:0.1 5:0.3333333333333333 12:0.14285714285714285 25:0.14285714285714285 42:1.0 61:1.0 62:0.1111111111111111 63:1.0 132:1.0 964:1.0
11 8:0.09090909090909091 25:0.14285714285714285 31:0.25 49:1.0 62:0.1111111111111111 64:0.2 69:1.0 71:1.0 202:1.0 697:1.0 1318:1.0
11 10:0.25 31:0.25 35:0.08333333333333333 37:1.0 58:1.0 62:0.1111111111111111 85:1.0 206:1.0 326:1.0 389:1.0 905:1.0
11 1:0.1 5:0.3333333333333333 8:0.09090909090909091 12:0.14285714285714285 37:1.0 64:0.2 73:0.25 82:1.0 128:0.16666666666666666 210:0.16666666666666666 227:0.5 335:0.125 1325:1.0
11 3:0.25 33:1.0 58:1.0 93:0.3333333333333333 95:1.0 1384:1.0
11 1:0.1 451:1.0 807:1.0
11 8:0.09090909090909091 58:1.0 91:1.0 96:0.5 854:1.0
11 1:0.2 2:1.0 12:0.14285714285714285 25:0.14285714285714285 35:0.16666666666666666 115:1.0 172:0.25 315:1.0 1166:1.0 1213:1.0 1388:1.0
11 1:0.2 2:1.0 3:0.25 198:1.0 292:1.0
11 1:0.1 91:1.0 117:1.0 307:1.0
|
b806948141243dd2f0667475bcfbf89a9455cdff | 449d555969bfd7befe906877abab098c6e63a0e8 | /2360/CH3/EX3.21/ex3_21.sce | c020180a6ec1d77c4b2faf664e73a32ed29b7225 | [] | 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 | 584 | sce | ex3_21.sce | // Exa 3.21
format('v',7);clc;clear;close;
// Given data
r = 2;//radius in m
r = r * 10^3;// in mm
d = 200;//deflection in mm
To = 3.1415;// in sec
J = 2*10^-6;// in kg-m^2
i = 1;// in µA
i = i * 10^-6;// in A
// d = 2*r*theta_f;
theta_f = d/(2*r);// in rad
// To = 2*%pi * (sqrt( J/K ));
K = 4*%pi^2*J/To^2;// in Nm/A
// theta_f = (G*i)/K;
G = (theta_f*K)/i;// in Nm/A
// The required resistance to obtain critical damping
Rc = G^2/( 2*sqrt(J*K));// in ohm
Rc = Rc * 10^-3;// in k ohm
disp(Rc,"The required resistance to obtain critical damping in kΩ is");
|
8fb86c04e7f40f968b825c3be45daddec02c19ee | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/P04.prev.tst | 1414db17519b175b653d577d1d867a2aa66d33ae | [
"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 | 122 | tst | P04.prev.tst | 0
; vgcd=1; gcd=1; isZero=true; hasVariable=false; isBiased=true; mergeVariables=0; relation=EQ_0
; evaluate=success =0
|
a0770770888bcc1e17559660a641f2a689f5e76b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3269/CH9/EX9.8/Ex9_8.sce | a7d28d52470ed976f7856de12e9425b2350cccb3 | [] | 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,053 | sce | Ex9_8.sce | // Example 9.8
clear all;
clc;
// Given data
phi_n = 20; // Given neutron flux in neutrons/cm^2-sec
// From Figure 9.12
// To receive an dose equivalent rate of 1 mrem/hr, the fast neutron flux is 7 neutrons/cm^2-sec
phi_n_eq = 7;
D_dot_eq = 1;
D_dot_n = (phi_n*D_dot_eq)/phi_n_eq; // Dose rate due to fast neutron flux in mrem/hr
phi_th = 300; // Given thermal flux in neutrons/cm^2-sec
// From Figure 9.12
// To receive an dose equivalent rate of 1 mrem/hr, the thermal flux is 260 neutrons/cm^2-sec
phi_th_eq = 260;
D_dot_th = (phi_th*D_dot_eq)/phi_th_eq; // Dose rate due to thermal neutron flux in mrem/hr
D_dot = D_dot_n+D_dot_th; // Total dose rate in mrem/hr
printf("\n The permitted weekly dose is 100 mrem \n");
D_dot_perm = 100;
// Calculation
t = D_dot_perm/D_dot;
printf(" \n The time of exposure upto a safe level = %.1f hour \n",t);
// The answer given in the textbook is wrong. This is because of wrong computation of total dose rate
|
614dde9d368aa62c05cc3b1a9d540ebbf14ac037 | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/TECM.prev.tst | f50ca4fb047d7f5358fa2638c284859a3717eedc | [
"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 | 23,644 | tst | TECM.prev.tst | Expanding for base=27, level=3, reasons+features=base,same,similiar,evenexp norm
Refined variables=x,y
[0+1x,0+1y]: unknown -> [1] [0,0] x²-y³+2
---------------- level 0
expanding queue[0]^-1,meter=[27,27]: x²-y³+2
[5+27x,0+27y]: unknown -> [1] [5,0] 10x+27x²-729y³+1
[22+27x,0+27y]: negative-1 [1] by {x=>-x-1}
[5+27x,3+27y]: unknown -> [2] [5,3] 10x+27x²-27y-243y²-729y³
-> solution [5,3],NONTRIVIAL
[22+27x,3+27y]: negative-1 [2] by {x=>-x-1}
[5+27x,6+27y]: unknown -> [3] [5,6] 10x+27x²-108y-486y²-729y³-7
[22+27x,6+27y]: negative-1 [3] by {x=>-x-1}
[5+27x,9+27y]: unknown -> [4] [5,9] 10x+27x²-243y-729y²-729y³-26
[22+27x,9+27y]: negative-1 [4] by {x=>-x-1}
[5+27x,12+27y]: unknown -> [5] [5,12] 10x+27x²-432y-972y²-729y³-63
[22+27x,12+27y]: negative-1 [5] by {x=>-x-1}
[5+27x,15+27y]: unknown -> [6] [5,15] 10x+27x²-675y-1215y²-729y³-124
[22+27x,15+27y]: negative-1 [6] by {x=>-x-1}
[5+27x,18+27y]: unknown -> [7] [5,18] 10x+27x²-972y-1458y²-729y³-215
[22+27x,18+27y]: negative-1 [7] by {x=>-x-1}
[5+27x,21+27y]: unknown -> [8] [5,21] 10x+27x²-1323y-1701y²-729y³-342
[22+27x,21+27y]: negative-1 [8] by {x=>-x-1}
[5+27x,24+27y]: unknown -> [9] [5,24] 10x+27x²-1728y-1944y²-729y³-511
[22+27x,24+27y]: negative-1 [9] by {x=>-x-1}
endexp[0]
---------------- level 1
expanding queue[1]^0,meter=[27,1]: 10x+27x²-729y³+1
[221+729x,0+27y]: unknown -> [10] [8,0] 442x+729x²-27y³+67
endexp[1]
expanding queue[2]^0,meter=[27,1]: 10x+27x²-27y-243y²-729y³
[5+729x,3+27y]: unknown -> [11] [0,0] 10x+729x²-y-9y²-27y³
-> solution [5,3],NONTRIVIAL
endexp[2]
expanding queue[3]^0,meter=[27,1]: 10x+27x²-108y-486y²-729y³-7
[680+729x,6+27y]: unknown -> [12] [25,0] 1360x+729x²-4y-18y²-27y³+634
endexp[3]
expanding queue[4]^0,meter=[27,1]: 10x+27x²-243y-729y²-729y³-26
[221+729x,9+27y]: unknown -> [13] [8,0] 442x+729x²-9y-27y²-27y³+66
endexp[4]
expanding queue[5]^0,meter=[27,1]: 10x+27x²-432y-972y²-729y³-63
[248+729x,12+27y]: unknown -> [14] [9,0] 496x+729x²-16y-36y²-27y³+82
endexp[5]
expanding queue[6]^0,meter=[27,1]: 10x+27x²-675y-1215y²-729y³-124
[194+729x,15+27y]: unknown -> [15] [7,0] 388x+729x²-25y-45y²-27y³+47
endexp[6]
expanding queue[7]^0,meter=[27,1]: 10x+27x²-972y-1458y²-729y³-215
[221+729x,18+27y]: unknown -> [16] [8,0] 442x+729x²-36y-54y²-27y³+59
endexp[7]
expanding queue[8]^0,meter=[27,1]: 10x+27x²-1323y-1701y²-729y³-342
[491+729x,21+27y]: unknown -> [17] [18,0] 982x+729x²-49y-63y²-27y³+318
endexp[8]
expanding queue[9]^0,meter=[27,1]: 10x+27x²-1728y-1944y²-729y³-511
[437+729x,24+27y]: unknown -> [18] [16,0] 874x+729x²-64y-72y²-27y³+243
endexp[9]
---------------- level 2
expanding queue[10]^1,meter=[27,1]: 442x+729x²-27y³+67
[16988+19683x,0+27y]: unknown -> [19] [23,0] 33976x+19683x²-y³+14662
endexp[10]
expanding queue[11]^2,meter=[27,27]: 10x+729x²-y-9y²-27y³
[5+19683x,3+729y]: unknown -> [20] [0,0] 10x+19683x²-y-243y²-19683y³
-> solution [5,3],NONTRIVIAL
[734+19683x,30+729y]: unknown -> [21] [1,1] 1468x+19683x²-100y-2430y²-19683y³+26
[14585+19683x,57+729y]: unknown -> [22] [20,2] 29170x+19683x²-361y-4617y²-19683y³+10798
[2192+19683x,84+729y]: unknown -> [23] [3,3] 4384x+19683x²-784y-6804y²-19683y³+214
[2921+19683x,111+729y]: unknown -> [24] [4,4] 5842x+19683x²-1369y-8991y²-19683y³+364
[16772+19683x,138+729y]: unknown -> [25] [23,5] 33544x+19683x²-2116y-11178y²-19683y³+14158
[4379+19683x,165+729y]: unknown -> [26] [6,6] 8758x+19683x²-3025y-13365y²-19683y³+746
[5108+19683x,192+729y]: unknown -> [27] [7,7] 10216x+19683x²-4096y-15552y²-19683y³+966
[18959+19683x,219+729y]: unknown -> [28] [26,8] 37918x+19683x²-5329y-17739y²-19683y³+17728
[6566+19683x,246+729y]: unknown -> [29] [9,9] 13132x+19683x²-6724y-19926y²-19683y³+1434
[7295+19683x,273+729y]: unknown -> [30] [10,10] 14590x+19683x²-8281y-22113y²-19683y³+1670
[1463+19683x,300+729y]: unknown -> [31] [2,11] 2926x+19683x²-10000y-24300y²-19683y³-1263
[8753+19683x,327+729y]: unknown -> [32] [12,12] 17506x+19683x²-11881y-26487y²-19683y³+2116
[9482+19683x,354+729y]: unknown -> [33] [13,13] 18964x+19683x²-13924y-28674y²-19683y³+2314
[3650+19683x,381+729y]: unknown -> [34] [5,14] 7300x+19683x²-16129y-30861y²-19683y³-2133
[10940+19683x,408+729y]: unknown -> [35] [15,15] 21880x+19683x²-18496y-33048y²-19683y³+2630
[11669+19683x,435+729y]: unknown -> [36] [16,16] 23338x+19683x²-21025y-35235y²-19683y³+2736
[5837+19683x,462+729y]: unknown -> [37] [8,17] 11674x+19683x²-23716y-37422y²-19683y³-3279
[13127+19683x,489+729y]: unknown -> [38] [18,18] 26254x+19683x²-26569y-39609y²-19683y³+2814
[13856+19683x,516+729y]: unknown -> [39] [19,19] 27712x+19683x²-29584y-41796y²-19683y³+2774
[8024+19683x,543+729y]: unknown -> [40] [11,20] 16048x+19683x²-32761y-43983y²-19683y³-4863
[15314+19683x,570+729y]: unknown -> [41] [21,21] 30628x+19683x²-36100y-46170y²-19683y³+2506
[16043+19683x,597+729y]: unknown -> [42] [22,22] 32086x+19683x²-39601y-48357y²-19683y³+2266
[10211+19683x,624+729y]: unknown -> [43] [14,23] 20422x+19683x²-43264y-50544y²-19683y³-7047
[17501+19683x,651+729y]: unknown -> [44] [24,24] 35002x+19683x²-47089y-52731y²-19683y³+1544
[18230+19683x,678+729y]: unknown -> [45] [25,25] 36460x+19683x²-51076y-54918y²-19683y³+1050
[12398+19683x,705+729y]: unknown -> [46] [17,26] 24796x+19683x²-55225y-57105y²-19683y³-9993
endexp[11]
expanding queue[12]^3,meter=[27,27]: 1360x+729x²-4y-18y²-27y³+634
[17447+19683x,6+729y]: unknown -> [47] [23,0] 34894x+19683x²-4y-486y²-19683y³+15465
[7241+19683x,33+729y]: unknown -> [48] [9,1] 14482x+19683x²-121y-2673y²-19683y³+2662
[3596+19683x,60+729y]: unknown -> [49] [4,2] 7192x+19683x²-400y-4860y²-19683y³+646
[6512+19683x,87+729y]: unknown -> [50] [8,3] 13024x+19683x²-841y-7047y²-19683y³+2121
[15989+19683x,114+729y]: unknown -> [51] [21,4] 31978x+19683x²-1444y-9234y²-19683y³+12913
[12344+19683x,141+729y]: unknown -> [52] [16,5] 24688x+19683x²-2209y-11421y²-19683y³+7599
[15260+19683x,168+729y]: unknown -> [53] [20,6] 30520x+19683x²-3136y-13608y²-19683y³+11590
[5054+19683x,195+729y]: unknown -> [54] [6,7] 10108x+19683x²-4225y-15795y²-19683y³+921
[1409+19683x,222+729y]: unknown -> [55] [1,8] 2818x+19683x²-5476y-17982y²-19683y³-455
[4325+19683x,249+729y]: unknown -> [56] [5,9] 8650x+19683x²-6889y-20169y²-19683y³+166
[13802+19683x,276+729y]: unknown -> [57] [18,10] 27604x+19683x²-8464y-22356y²-19683y³+8610
[10157+19683x,303+729y]: unknown -> [58] [13,11] 20314x+19683x²-10201y-24543y²-19683y³+3828
[13073+19683x,330+729y]: unknown -> [59] [17,12] 26146x+19683x²-12100y-26730y²-19683y³+6857
[2867+19683x,357+729y]: unknown -> [60] [3,13] 5734x+19683x²-14161y-28917y²-19683y³-1894
[18905+19683x,384+729y]: unknown -> [61] [25,14] 37810x+19683x²-16384y-31104y²-19683y³+15281
[2138+19683x,411+729y]: unknown -> [62] [2,15] 4276x+19683x²-18769y-33291y²-19683y³-3295
[11615+19683x,438+729y]: unknown -> [63] [15,16] 23230x+19683x²-21316y-35478y²-19683y³+2585
[7970+19683x,465+729y]: unknown -> [64] [10,17] 15940x+19683x²-24025y-37665y²-19683y³-1881
[10886+19683x,492+729y]: unknown -> [65] [14,18] 21772x+19683x²-26896y-39852y²-19683y³-30
[680+19683x,519+729y]: unknown -> [66] [0,19] 1360x+19683x²-29929y-42039y²-19683y³-7079
[16718+19683x,546+729y]: unknown -> [67] [22,20] 33436x+19683x²-33124y-44226y²-19683y³+5930
[19634+19683x,573+729y]: unknown -> [68] [26,21] 39268x+19683x²-36481y-46413y²-19683y³+10027
[9428+19683x,600+729y]: unknown -> [69] [12,22] 18856x+19683x²-40000y-48600y²-19683y³-6458
[5783+19683x,627+729y]: unknown -> [70] [7,23] 11566x+19683x²-43681y-50787y²-19683y³-10824
[8699+19683x,654+729y]: unknown -> [71] [11,24] 17398x+19683x²-47524y-52974y²-19683y³-10367
[18176+19683x,681+729y]: unknown -> [72] [24,25] 36352x+19683x²-51529y-55161y²-19683y³+739
[14531+19683x,708+729y]: unknown -> [73] [19,26] 29062x+19683x²-55696y-57348y²-19683y³-7303
endexp[12]
expanding queue[13]^4,meter=[27,27]: 442x+729x²-9y-27y²-27y³+66
[11156+19683x,9+729y]: unknown -> [74] [15,0] 22312x+19683x²-9y-729y²-19683y³+6323
[17717+19683x,36+729y]: unknown -> [75] [24,1] 35434x+19683x²-144y-2916y²-19683y³+15945
[4595+19683x,63+729y]: unknown -> [76] [6,2] 9190x+19683x²-441y-5103y²-19683y³+1060
[11156+19683x,90+729y]: unknown -> [77] [15,3] 22312x+19683x²-900y-7290y²-19683y³+6286
[17717+19683x,117+729y]: unknown -> [78] [24,4] 35434x+19683x²-1521y-9477y²-19683y³+15866
[4595+19683x,144+729y]: unknown -> [79] [6,5] 9190x+19683x²-2304y-11664y²-19683y³+921
[11156+19683x,171+729y]: unknown -> [80] [15,6] 22312x+19683x²-3249y-13851y²-19683y³+6069
[17717+19683x,198+729y]: unknown -> [81] [24,7] 35434x+19683x²-4356y-16038y²-19683y³+15553
[4595+19683x,225+729y]: unknown -> [82] [6,8] 9190x+19683x²-5625y-18225y²-19683y³+494
[11156+19683x,252+729y]: unknown -> [83] [15,9] 22312x+19683x²-7056y-20412y²-19683y³+5510
[17717+19683x,279+729y]: unknown -> [84] [24,10] 35434x+19683x²-8649y-22599y²-19683y³+14844
[4595+19683x,306+729y]: unknown -> [85] [6,11] 9190x+19683x²-10404y-24786y²-19683y³-383
[11156+19683x,333+729y]: unknown -> [86] [15,12] 22312x+19683x²-12321y-26973y²-19683y³+4447
[17717+19683x,360+729y]: unknown -> [87] [24,13] 35434x+19683x²-14400y-29160y²-19683y³+13577
[4595+19683x,387+729y]: unknown -> [88] [6,14] 9190x+19683x²-16641y-31347y²-19683y³-1872
[11156+19683x,414+729y]: unknown -> [89] [15,15] 22312x+19683x²-19044y-33534y²-19683y³+2718
[17717+19683x,441+729y]: unknown -> [90] [24,16] 35434x+19683x²-21609y-35721y²-19683y³+11590
[4595+19683x,468+729y]: unknown -> [91] [6,17] 9190x+19683x²-24336y-37908y²-19683y³-4135
[11156+19683x,495+729y]: unknown -> [92] [15,18] 22312x+19683x²-27225y-40095y²-19683y³+161
[17717+19683x,522+729y]: unknown -> [93] [24,19] 35434x+19683x²-30276y-42282y²-19683y³+8721
[4595+19683x,549+729y]: unknown -> [94] [6,20] 9190x+19683x²-33489y-44469y²-19683y³-7334
[11156+19683x,576+729y]: unknown -> [95] [15,21] 22312x+19683x²-36864y-46656y²-19683y³-3386
[17717+19683x,603+729y]: unknown -> [96] [24,22] 35434x+19683x²-40401y-48843y²-19683y³+4808
[4595+19683x,630+729y]: unknown -> [97] [6,23] 9190x+19683x²-44100y-51030y²-19683y³-11631
[11156+19683x,657+729y]: unknown -> [98] [15,24] 22312x+19683x²-47961y-53217y²-19683y³-8085
[17717+19683x,684+729y]: unknown -> [99] [24,25] 35434x+19683x²-51984y-55404y²-19683y³-311
[4595+19683x,711+729y]: unknown -> [100] [6,26] 9190x+19683x²-56169y-57591y²-19683y³-17188
endexp[13]
expanding queue[14]^5,meter=[27,27]: 496x+729x²-16y-36y²-27y³+82
[6080+19683x,12+729y]: unknown -> [101] [8,0] 12160x+19683x²-16y-972y²-19683y³+1878
[17744+19683x,39+729y]: unknown -> [102] [24,1] 35488x+19683x²-169y-3159y²-19683y³+15993
[3164+19683x,66+729y]: unknown -> [103] [4,2] 6328x+19683x²-484y-5346y²-19683y³+494
[1706+19683x,93+729y]: unknown -> [104] [2,3] 3412x+19683x²-961y-7533y²-19683y³+107
[13370+19683x,120+729y]: unknown -> [105] [18,4] 26740x+19683x²-1600y-9720y²-19683y³+8994
[18473+19683x,147+729y]: unknown -> [106] [25,5] 36946x+19683x²-2401y-11907y²-19683y³+17176
[17015+19683x,174+729y]: unknown -> [107] [23,6] 34030x+19683x²-3364y-14094y²-19683y³+14441
[8996+19683x,201+729y]: unknown -> [108] [12,7] 17992x+19683x²-4489y-16281y²-19683y³+3699
[14099+19683x,228+729y]: unknown -> [109] [19,8] 28198x+19683x²-5776y-18468y²-19683y³+9497
[12641+19683x,255+729y]: unknown -> [110] [17,9] 25282x+19683x²-7225y-20655y²-19683y³+7276
[4622+19683x,282+729y]: unknown -> [111] [6,10] 9244x+19683x²-8836y-22842y²-19683y³-54
[9725+19683x,309+729y]: unknown -> [112] [13,11] 19450x+19683x²-10609y-25029y²-19683y³+3306
[8267+19683x,336+729y]: unknown -> [113] [11,12] 16534x+19683x²-12544y-27216y²-19683y³+1545
[248+19683x,363+729y]: unknown -> [114] [0,13] 496x+19683x²-14641y-29403y²-19683y³-2427
[5351+19683x,390+729y]: unknown -> [115] [7,14] 10702x+19683x²-16900y-31590y²-19683y³-1559
[3893+19683x,417+729y]: unknown -> [116] [5,15] 7786x+19683x²-19321y-33777y²-19683y³-2914
[15557+19683x,444+729y]: unknown -> [117] [21,16] 31114x+19683x²-21904y-35964y²-19683y³+7849
[977+19683x,471+729y]: unknown -> [118] [1,17] 1954x+19683x²-24649y-38151y²-19683y³-5260
[19202+19683x,498+729y]: unknown -> [119] [26,18] 38404x+19683x²-27556y-40338y²-19683y³+12458
[11183+19683x,525+729y]: unknown -> [120] [15,19] 22366x+19683x²-30625y-42525y²-19683y³-998
[16286+19683x,552+729y]: unknown -> [121] [22,20] 32572x+19683x²-33856y-44712y²-19683y³+4930
[14828+19683x,579+729y]: unknown -> [122] [20,21] 29656x+19683x²-37249y-46899y²-19683y³+1309
[6809+19683x,606+729y]: unknown -> [123] [9,22] 13618x+19683x²-40804y-49086y²-19683y³-8951
[11912+19683x,633+729y]: unknown -> [124] [16,23] 23824x+19683x²-44521y-51273y²-19683y³-5677
[10454+19683x,660+729y]: unknown -> [125] [14,24] 20908x+19683x²-48400y-53460y²-19683y³-9054
[2435+19683x,687+729y]: unknown -> [126] [3,25] 4870x+19683x²-52441y-55647y²-19683y³-16172
[7538+19683x,714+729y]: unknown -> [127] [10,26] 15076x+19683x²-56644y-57834y²-19683y³-15606
endexp[14]
expanding queue[15]^6,meter=[27,27]: 388x+729x²-25y-45y²-27y³+47
[18419+19683x,15+729y]: unknown -> [128] [25,0] 36838x+19683x²-25y-1215y²-19683y³+17236
[3839+19683x,42+729y]: unknown -> [129] [5,1] 7678x+19683x²-196y-3402y²-19683y³+745
[15503+19683x,69+729y]: unknown -> [130] [21,2] 31006x+19683x²-529y-5589y²-19683y³+12194
[14045+19683x,96+729y]: unknown -> [131] [19,3] 28090x+19683x²-1024y-7776y²-19683y³+9977
[19148+19683x,123+729y]: unknown -> [132] [26,4] 38296x+19683x²-1681y-9963y²-19683y³+18533
[11129+19683x,150+729y]: unknown -> [133] [15,5] 22258x+19683x²-2500y-12150y²-19683y³+6121
[9671+19683x,177+729y]: unknown -> [134] [13,6] 19342x+19683x²-3481y-14337y²-19683y³+4470
[14774+19683x,204+729y]: unknown -> [135] [20,7] 29548x+19683x²-4624y-16524y²-19683y³+10658
[6755+19683x,231+729y]: unknown -> [136] [9,8] 13510x+19683x²-5929y-18711y²-19683y³+1692
[5297+19683x,258+729y]: unknown -> [137] [7,9] 10594x+19683x²-7396y-20898y²-19683y³+553
[10400+19683x,285+729y]: unknown -> [138] [14,10] 20800x+19683x²-9025y-23085y²-19683y³+4319
[2381+19683x,312+729y]: unknown -> [139] [3,11] 4762x+19683x²-10816y-25272y²-19683y³-1255
[923+19683x,339+729y]: unknown -> [140] [1,12] 1846x+19683x²-12769y-27459y²-19683y³-1936
[6026+19683x,366+729y]: unknown -> [141] [8,13] 12052x+19683x²-14884y-29646y²-19683y³-646
[17690+19683x,393+729y]: unknown -> [142] [24,14] 35380x+19683x²-17161y-31833y²-19683y³+12815
[16232+19683x,420+729y]: unknown -> [143] [22,15] 32464x+19683x²-19600y-34020y²-19683y³+9622
[1652+19683x,447+729y]: unknown -> [144] [2,16] 3304x+19683x²-22201y-36207y²-19683y³-4399
[13316+19683x,474+729y]: unknown -> [145] [18,17] 26632x+19683x²-24964y-38394y²-19683y³+3598
[11858+19683x,501+729y]: unknown -> [146] [16,18] 23716x+19683x²-27889y-40581y²-19683y³+755
[16961+19683x,528+729y]: unknown -> [147] [23,19] 33922x+19683x²-30976y-42768y²-19683y³+7137
[8942+19683x,555+729y]: unknown -> [148] [12,20] 17884x+19683x²-34225y-44955y²-19683y³-4623
[7484+19683x,582+729y]: unknown -> [149] [10,21] 14968x+19683x²-37636y-47142y²-19683y³-7170
[12587+19683x,609+729y]: unknown -> [150] [17,22] 25174x+19683x²-41209y-49329y²-19683y³-3426
[4568+19683x,636+729y]: unknown -> [151] [6,23] 9136x+19683x²-44944y-51516y²-19683y³-12010
[3110+19683x,663+729y]: unknown -> [152] [4,24] 6220x+19683x²-48841y-53703y²-19683y³-14315
[8213+19683x,690+729y]: unknown -> [153] [11,25] 16426x+19683x²-52900y-55890y²-19683y³-13263
[194+19683x,717+729y]: unknown -> [154] [0,26] 388x+19683x²-57121y-58077y²-19683y³-18725
endexp[15]
expanding queue[16]^7,meter=[27,27]: 442x+729x²-36y-54y²-27y³+59
[9698+19683x,18+729y]: unknown -> [155] [13,0] 19396x+19683x²-36y-1458y²-19683y³+4778
[16259+19683x,45+729y]: unknown -> [156] [22,1] 32518x+19683x²-225y-3645y²-19683y³+13426
[3137+19683x,72+729y]: unknown -> [157] [4,2] 6274x+19683x²-576y-5832y²-19683y³+481
[9698+19683x,99+729y]: unknown -> [158] [13,3] 19396x+19683x²-1089y-8019y²-19683y³+4729
[16259+19683x,126+729y]: unknown -> [159] [22,4] 32518x+19683x²-1764y-10206y²-19683y³+13329
[3137+19683x,153+729y]: unknown -> [160] [4,5] 6274x+19683x²-2601y-12393y²-19683y³+318
[9698+19683x,180+729y]: unknown -> [161] [13,6] 19396x+19683x²-3600y-14580y²-19683y³+4482
[16259+19683x,207+729y]: unknown -> [162] [22,7] 32518x+19683x²-4761y-16767y²-19683y³+12980
[3137+19683x,234+729y]: unknown -> [163] [4,8] 6274x+19683x²-6084y-18954y²-19683y³-151
[9698+19683x,261+729y]: unknown -> [164] [13,9] 19396x+19683x²-7569y-21141y²-19683y³+3875
[16259+19683x,288+729y]: unknown -> [165] [22,10] 32518x+19683x²-9216y-23328y²-19683y³+12217
[3137+19683x,315+729y]: unknown -> [166] [4,11] 6274x+19683x²-11025y-25515y²-19683y³-1088
[9698+19683x,342+729y]: unknown -> [167] [13,12] 19396x+19683x²-12996y-27702y²-19683y³+2746
[16259+19683x,369+729y]: unknown -> [168] [22,13] 32518x+19683x²-15129y-29889y²-19683y³+10878
[3137+19683x,396+729y]: unknown -> [169] [4,14] 6274x+19683x²-17424y-32076y²-19683y³-2655
[9698+19683x,423+729y]: unknown -> [170] [13,15] 19396x+19683x²-19881y-34263y²-19683y³+933
[16259+19683x,450+729y]: unknown -> [171] [22,16] 32518x+19683x²-22500y-36450y²-19683y³+8801
[3137+19683x,477+729y]: unknown -> [172] [4,17] 6274x+19683x²-25281y-38637y²-19683y³-5014
[9698+19683x,504+729y]: unknown -> [173] [13,18] 19396x+19683x²-28224y-40824y²-19683y³-1726
[16259+19683x,531+729y]: unknown -> [174] [22,19] 32518x+19683x²-31329y-43011y²-19683y³+5824
[3137+19683x,558+729y]: unknown -> [175] [4,20] 6274x+19683x²-34596y-45198y²-19683y³-8327
[9698+19683x,585+729y]: unknown -> [176] [13,21] 19396x+19683x²-38025y-47385y²-19683y³-5393
[16259+19683x,612+729y]: unknown -> [177] [22,22] 32518x+19683x²-41616y-49572y²-19683y³+1785
[3137+19683x,639+729y]: unknown -> [178] [4,23] 6274x+19683x²-45369y-51759y²-19683y³-12756
[9698+19683x,666+729y]: unknown -> [179] [13,24] 19396x+19683x²-49284y-53946y²-19683y³-10230
[16259+19683x,693+729y]: unknown -> [180] [22,25] 32518x+19683x²-53361y-56133y²-19683y³-3478
[3137+19683x,720+729y]: unknown -> [181] [4,26] 6274x+19683x²-57600y-58320y²-19683y³-18463
endexp[16]
expanding queue[17]^8,meter=[27,27]: 982x+729x²-49y-63y²-27y³+318
[4865+19683x,21+729y]: unknown -> [182] [6,0] 9730x+19683x²-49y-1701y²-19683y³+1202
[1220+19683x,48+729y]: unknown -> [183] [1,1] 2440x+19683x²-256y-3888y²-19683y³+70
[10697+19683x,75+729y]: unknown -> [184] [14,2] 21394x+19683x²-625y-6075y²-19683y³+5792
[13613+19683x,102+729y]: unknown -> [185] [18,3] 27226x+19683x²-1156y-8262y²-19683y³+9361
[9968+19683x,129+729y]: unknown -> [186] [13,4] 19936x+19683x²-1849y-10449y²-19683y³+4939
[19445+19683x,156+729y]: unknown -> [187] [26,5] 38890x+19683x²-2704y-12636y²-19683y³+19017
[2678+19683x,183+729y]: unknown -> [188] [3,6] 5356x+19683x²-3721y-14823y²-19683y³+53
[18716+19683x,210+729y]: unknown -> [189] [25,7] 37432x+19683x²-4900y-17010y²-19683y³+17326
[8510+19683x,237+729y]: unknown -> [190] [11,8] 17020x+19683x²-6241y-19197y²-19683y³+3003
[11426+19683x,264+729y]: unknown -> [191] [15,9] 22852x+19683x²-7744y-21384y²-19683y³+5698
[7781+19683x,291+729y]: unknown -> [192] [10,10] 15562x+19683x²-9409y-23571y²-19683y³+1824
[17258+19683x,318+729y]: unknown -> [193] [23,11] 34516x+19683x²-11236y-25758y²-19683y³+13498
[491+19683x,345+729y]: unknown -> [194] [0,12] 982x+19683x²-13225y-27945y²-19683y³-2074
[16529+19683x,372+729y]: unknown -> [195] [22,13] 33058x+19683x²-15376y-30132y²-19683y³+11265
[6323+19683x,399+729y]: unknown -> [196] [8,14] 12646x+19683x²-17689y-32319y²-19683y³-1196
[9239+19683x,426+729y]: unknown -> [197] [12,15] 18478x+19683x²-20164y-34506y²-19683y³+409
[5594+19683x,453+729y]: unknown -> [198] [7,16] 11188x+19683x²-22801y-36693y²-19683y³-3133
[15071+19683x,480+729y]: unknown -> [199] [20,17] 30142x+19683x²-25600y-38880y²-19683y³+5921
[17987+19683x,507+729y]: unknown -> [200] [24,18] 35974x+19683x²-28561y-41067y²-19683y³+9816
[14342+19683x,534+729y]: unknown -> [201] [19,19] 28684x+19683x²-31684y-43254y²-19683y³+2714
[4136+19683x,561+729y]: unknown -> [202] [5,20] 8272x+19683x²-34969y-45441y²-19683y³-8101
[7052+19683x,588+729y]: unknown -> [203] [9,21] 14104x+19683x²-38416y-47628y²-19683y³-7802
[3407+19683x,615+729y]: unknown -> [204] [4,22] 6814x+19683x²-42025y-49815y²-19683y³-11228
[12884+19683x,642+729y]: unknown -> [205] [17,23] 25768x+19683x²-45796y-52002y²-19683y³-5010
[15800+19683x,669+729y]: unknown -> [206] [21,24] 31600x+19683x²-49729y-54189y²-19683y³-2529
[12155+19683x,696+729y]: unknown -> [207] [16,25] 24310x+19683x²-53824y-56376y²-19683y³-9623
[1949+19683x,723+729y]: unknown -> [208] [2,26] 3898x+19683x²-58081y-58563y²-19683y³-19008
endexp[17]
expanding queue[18]^9,meter=[27,27]: 874x+729x²-64y-72y²-27y³+243
[437+19683x,24+729y]: unknown -> [209] [0,0] 874x+19683x²-64y-1944y²-19683y³+9
[14288+19683x,51+729y]: unknown -> [210] [19,1] 28576x+19683x²-289y-4131y²-19683y³+10365
[15017+19683x,78+729y]: unknown -> [211] [20,2] 30034x+19683x²-676y-6318y²-19683y³+11433
[2624+19683x,105+729y]: unknown -> [212] [3,3] 5248x+19683x²-1225y-8505y²-19683y³+291
[16475+19683x,132+729y]: unknown -> [213] [22,4] 32950x+19683x²-1936y-10692y²-19683y³+13673
[17204+19683x,159+729y]: unknown -> [214] [23,5] 34408x+19683x²-2809y-12879y²-19683y³+14833
[4811+19683x,186+729y]: unknown -> [215] [6,6] 9622x+19683x²-3844y-15066y²-19683y³+849
[18662+19683x,213+729y]: unknown -> [216] [25,7] 37324x+19683x²-5041y-17253y²-19683y³+17203
[19391+19683x,240+729y]: unknown -> [217] [26,8] 38782x+19683x²-6400y-19440y²-19683y³+18401
[6998+19683x,267+729y]: unknown -> [218] [9,9] 13996x+19683x²-7921y-21627y²-19683y³+1521
[1166+19683x,294+729y]: unknown -> [219] [1,10] 2332x+19683x²-9604y-23814y²-19683y³-1222
[1895+19683x,321+729y]: unknown -> [220] [2,11] 3790x+19683x²-11449y-26001y²-19683y³-1498
[9185+19683x,348+729y]: unknown -> [221] [12,12] 18370x+19683x²-13456y-28188y²-19683y³+2145
[3353+19683x,375+729y]: unknown -> [222] [4,13] 6706x+19683x²-15625y-30375y²-19683y³-2108
[4082+19683x,402+729y]: unknown -> [223] [5,14] 8164x+19683x²-17956y-32562y²-19683y³-2454
[11372+19683x,429+729y]: unknown -> [224] [15,15] 22744x+19683x²-20449y-34749y²-19683y³+2559
[5540+19683x,456+729y]: unknown -> [225] [7,16] 11080x+19683x²-23104y-36936y²-19683y³-3258
[6269+19683x,483+729y]: unknown -> [226] [8,17] 12538x+19683x²-25921y-39123y²-19683y³-3728
[13559+19683x,510+729y]: unknown -> [227] [18,18] 27118x+19683x²-28900y-41310y²-19683y³+2601
[7727+19683x,537+729y]: unknown -> [228] [10,19] 15454x+19683x²-32041y-43497y²-19683y³-4834
[8456+19683x,564+729y]: unknown -> [229] [11,20] 16912x+19683x²-35344y-45684y²-19683y³-5482
[15746+19683x,591+729y]: unknown -> [230] [21,21] 31492x+19683x²-38809y-47871y²-19683y³+2109
[9914+19683x,618+729y]: unknown -> [231] [13,22] 19828x+19683x²-42436y-50058y²-19683y³-6998
[10643+19683x,645+729y]: unknown -> [232] [14,23] 21286x+19683x²-46225y-52245y²-19683y³-7878
[17933+19683x,672+729y]: unknown -> [233] [24,24] 35866x+19683x²-50176y-54432y²-19683y³+921
[12101+19683x,699+729y]: unknown -> [234] [16,25] 24202x+19683x²-54289y-56619y²-19683y³-9912
[12830+19683x,726+729y]: unknown -> [235] [17,26] 25660x+19683x²-58564y-58806y²-19683y³-11078
endexp[18]
---------------- level 3
Maximum level 3 [236] mod 27: x²-y³+2
|
e1362b5be30b2517424a11484b33363e462be71c | 63c8bbe209f7a437f8bcc25dc1b7b1e9a100defa | /test/0020.tst | 8b033822593093a2ce01c8408d0a9403b1becda2 | [] | no_license | fmeci/nfql-testing | e9e7edb03a7222cd4c5f17b9b4d2a8dd58ea547c | 6b7d465b32fa50468e3694f63c803e3630c5187d | refs/heads/master | 2021-01-11T04:09:48.579127 | 2013-05-02T13:30:17 | 2013-05-02T13:30:17 | 71,239,280 | 0 | 0 | null | 2016-10-18T11:01:57 | 2016-10-18T11:01:55 | Python | UTF-8 | Scilab | false | false | 502 | tst | 0020.tst | splitteR O {}
FILter TWq { }
FiLteR rTBT {I or Not l or nOT c NOT H not QCC }
zTXFnM -> Fh -> g
groUpeR C {mODULE q{ uaySHX <= a yFHu = B fi <= mbkAoK Xyye <= UC } MoDuLE i{ h < GUZ RDElTA 69 } aGGrEgATE BiTor(ajz) aS eS ,gJ.Z ,unIOn(xE) As u }
uNgROuPeR l { }
gRouPFILteR z {}
MErGeR NZ { mODule z { BRancHeS Q, Y Zr OI I DEltA 3mS Or c D P OR Cg > h YH ( vcFqoH ( ) ) nOT < GJOZ ( 876.1 ) } ModUlE ly { brAncheS b YIL M mUxu deLta 40m OR K sI h OR M O B GX ( ) } expoRT IO } |
b8e574551d31e4d93e08765cf12886bf856d287c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1238/CH5/EX5.1/1.sce | f1e2c1639bb3f171f19275634ae7ff6245fdabac | [] | 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 | 1.sce | //finding required time//
//example 1//
clc
//clears the command window//
clear
//clears//
R=10*10^3;//external resistance//
C=0.1*10^-6;//timing capacitor//
T=1.1*R*C;//time for which output remains high in monostable multivibrator using IC 555 timer//
printf('required time=%f seconds',T);//result is displayed
|
0aa7a88a96681690c9ce79386bd75ca0edd1277a | 4a1effb7ec08302914dbd9c5e560c61936c1bb99 | /Project 2/Experiments/Ripper-C/results/Ripper-C.vowel-10-1tra/result7s0.tst | 5dde330a06e627e4b0efea7a9d4970645b3339a4 | [] | no_license | nickgreenquist/Intro_To_Intelligent_Systems | 964cad20de7099b8e5808ddee199e3e3343cf7d5 | 7ad43577b3cbbc0b620740205a14c406d96a2517 | refs/heads/master | 2021-01-20T13:23:23.931062 | 2017-05-04T20:08:05 | 2017-05-04T20:08:05 | 90,484,366 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 972 | tst | result7s0.tst | @relation vowel
@attribute TT integer[0,1]
@attribute SpeakerNumber integer[0,14]
@attribute Sex integer[0,1]
@attribute F0 real[-5.211,-0.941]
@attribute F1 real[-1.274,5.074]
@attribute F2 real[-2.487,1.431]
@attribute F3 real[-1.409,2.377]
@attribute F4 real[-2.127,1.831]
@attribute F5 real[-0.836,2.327]
@attribute F6 real[-1.537,1.403]
@attribute F7 real[-1.293,2.039]
@attribute F8 real[-1.613,1.309]
@attribute F9 real[-1.68,1.396]
@attribute Class{0,1,2,3,4,5,6,7,8,9,10}
@inputs TT,SpeakerNumber,Sex,F0,F1,F2,F3,F4,F5,F6,F7,F8,F9
@outputs Class
@data
2 2
9 9
1 1
9 9
1 0
8 8
0 0
5 6
10 10
8 8
0 0
5 5
8 8
9 9
7 7
9 9
7 7
9 9
3 3
0 1
0 0
2 2
2 1
4 4
1 1
3 3
4 4
6 6
1 1
5 5
2 2
5 3
6 6
7 7
0 0
4 4
2 2
9 9
4 4
3 5
1 1
2 1
5 5
7 7
1 1
8 8
9 9
5 5
9 9
2 2
6 6
1 3
2 2
6 7
10 5
0 0
7 8
10 5
3 3
5 5
6 6
1 1
6 6
7 7
8 0
4 4
4 4
7 7
2 2
7 7
10 10
10 10
3 3
6 6
0 0
3 3
8 8
0 0
4 5
8 8
1 1
0 1
7 8
6 6
8 8
3 3
3 3
4 4
10 10
5 5
9 9
10 5
3 3
4 4
10 5
8 8
6 6
5 5
10 10
|
4cfd40aca73fea4a14f6a6c7c068a171e90aa1f3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1752/CH6/EX6.8/exa6_8.sce | a4c6782ecd7394b0924dea192d093073eb81f7a2 | [] | 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 | 513 | sce | exa6_8.sce | //Exa 6.8
clc;
clear;
close;
//given data
Pr=0.712;
K=0.026;// in W/mK
delta=1.57*10^-5;// in m^2/s
T_s=320;// in K
T_infinite=280;// in K
del_T=T_s-T_infinite;
T_f=(T_s+T_infinite)/2;// in K
Bita=1/T_f;
d1=20;// in cm
d2=30;// in cm
x=(d2-d1)/2;// in cm
x=x*10^-2;// in m
g=9.81;
Gr=(g*Bita*del_T*x^3)/delta^2;
Ra=Gr*Pr;
// Formula Nu= h*x/K =0.228*Ra^(0.226)
h=0.228*Ra^(0.226)*K/x;// in W/m^2K
A=%pi*(d1*10^-2)^2;
q=h*A*del_T;// w
disp("Heat transfer rate is : "+string(q)+" watt");
|
f0c4669b4766ea302abf0361f8bba9f4b8ab55a8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2135/CH2/EX2.46/Exa_2_46.sce | 4cdc3f6446676fcda3ba20e4e5c254889401e3b7 | [] | 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 | Exa_2_46.sce | //Exa 2.46
clc;
clear;
close;
format('v',7);
//Given Data :
t1=90;//degreeC
t2=30;//degreeC
modot=3;//Kg/s
//h=1.7*t+11*10^-4*t^2
h1=1.7*t1+11*10^-4*t1^2;//KJ/Kg
h2=1.7*t2+11*10^-4*t2^2;//KJ/Kg
tw1=27;//degreeC
tw2=67;//degreeC
Cp=4.2;//KJ/KgK
//h=Cp*tw;//KJ/Kg
hw1=Cp*tw1;//KJ/Kg
hw2=Cp*tw2;//KJ/Kg
//modot*(h1-h2)=mwdot*(hw2-hw1)
mwdot=modot*(h1-h2)/(hw2-hw1);//Kg/s
disp(mwdot,"Rate of flow of water in Kg/s : ");
|
c6fd298b6ae8109c681ae1bdee3416c42f2c13e4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3705/CH2/EX2.11/Ex2_11.sce | ec18a18c6b07a861311a935d224525e46f8c7883 | [] | 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 | 851 | sce | Ex2_11.sce |
clear//
//Variable Declaration
delta=100 //Increase in the temperature in degreeF
Load=12000 //Load on the beam in lb
//Length in inch
Ls=2*12 //Steel
Lb=3*12 //Bronze
//Area in sq.in
As=0.75 //Steel
Ab=1.5 //Bronze
//Modulus of elasticity in psi
Es=29*10**6 //Steel
Eb=12*10**6 //Bronze
//Coefficient of thermal expansion in /degree C
alpha_s=6.5*10**-6 //Steel
alpha_b=10**-5 //Bronze
//Calculations
//Applying the Hookes Law and equilibrium we get two equations
a=([[Ls*(Es*As)**-1,-Lb*(Eb*Ab)**-1;2,1]])
b=([(alpha_b*delta*Lb-alpha_s*delta*Ls);Load])
y=linsolve(a,b)
//Stresses
sigma_st=-y(1)*As**-1 //Stress in steel in psi (T)
sigma_br=-y(2)*Ab**-1 //Stress in bronze in psi (C)
//Result
printf("\n The Stress in steel and bronze are as follows")
printf("\n %0.3f psi (T) and %0.3f psi(C)",sigma_st,sigma_br)
|
02422fc5dfb1444d6e9947dad387b649c09e6d4c | 2a68cb9b7c7006d8a7bdda5635e6eda03abed1b1 | /gump/scenario/runner.sce | 53ae250c794f72d519c545dd02525d966a9bf17c | [] | no_license | zhao-kun/gump | a16dd68c166e1f78b77c89a8415e6009ea05f14d | c54676ad8aeb2cfb7d1d67bbb6e16ba8e948f6e8 | refs/heads/master | 2020-12-25T18:20:35.480150 | 2014-07-21T01:56:45 | 2014-07-21T01:56:45 | 22,003,996 | 0 | 1 | null | null | null | null | GB18030 | Scilab | false | false | 1,363 | sce | runner.sce | #
# 测试案例的名称
#
test-case TM_SVR
#
# 压力测试的时长 (minutes)
#
time-elapse 10
#
# 虚拟用户配置
# 每类虚拟用户执行的服务名称,数量等信息
#
virtual-user
beps_credit_going:2 #10个虚拟用户执行小额贷记汇出交易
# hvps_credit_going:1 #10个虚拟用户执行小额贷记汇出交易
#
# 每笔交易的思考时间(单位毫秒), 注意thinktime的时间会降低系统的每秒交易处理量
#
#think-time 200
#
# 日志级别 0 - DEBUG; 1 - INFO; 2 - WARN; 3 - ERROR; 4 - ALWAYS
#
log-level 0
#
# redis 服务器的地址
# tcp://xxx.xxx.xxx.xxx:xxxx - tcp 方式链接redis服务器,远程方式
# unix:///filepath/ - unix 域方式进行连接,本地方式
#
#redis-server tcp://127.0.0.1:6379
redis-server unix:///tmp/redis.sock
#
# 报告生成目录可以是绝对目录或相对目录(废弃)
#
report-dir /home/ap/aps/log
#
# 运行模式(THREAD/PROCESS)
# THREAD - 虚拟用户以进程方式运行
# PROCESS - 虚拟用户以线程模式运行
#
run-mode PROCESS
#
# PLUGIN 插件库的动态库名称,和入口函数,建议放在${RUNNERDIR}/lib目录下,
# 并且LD_LIBRARY_PATH中指定${RUNNERDIR}/lib为动态库搜索的路径
#
plugin
libluabase.so luaopen_baselib
libluacorba.so luaopen_corbalib
|
532b36329643cf6b5b382a018805b0995f535e8b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1085/CH11/EX11.3/ex11_3.sce | e8a3e9b32d56ccfa81f088f9d66fef3d1c30a59e | [] | 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 | 301 | sce | ex11_3.sce | //Exam:11.3
clc;
clear;
close;
D=0.002;//Grain diameter(in mm)
d=D*10^(-3);//Grain diameter(in m)
K=0.63;//Constant(in MNm^(-3/2))
sigma_i=80;//in MNm^-2
sigma_y=sigma_i+K*d^(-1/2);//Yield stress for a polycrystalline alloy
disp(sigma_y,'Yield stress for a polycrystalline alloy(in MN/m^2)'); |
9cb2313783376029b2b99ff754cb6276a288bfa4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2507/CH5/EX5.5/Ex5_5.sce | 06f910160ca3f900a0597d04b34000ffd677fd1f | [] | 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 | 422 | sce | Ex5_5.sce | clc
clear
printf("Example 5.5 | Page number 125 \n\n");
//Find air temperature after throttling
//Given Data
p1 = 10//bar //inlet pressure
t1 = 300 //°C //inlet temperature
p2 = 0.1 //bar //exit pressure
Cp = 1 //kJ/kgK // heat capacity at constant pressure
//Solution
//Adiabatic process
delta_h = 0 //change in enthalpy
t2 = delta_h/Cp + t1
printf("Temperature of air after throttling = %.1f °C",t1)
|
e6e959e834a756ab1dbfa0c72bd730991a3c73c3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2258/CH7/EX7.28/7_28.sce | 52538a1e1d89b76ae01940dfba8ed52cf15accee | [] | 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 | 339 | sce | 7_28.sce | clc();
clear;
// To calculate the mobility and density of charge carrier
RH=3.66*10^-4; //hall coefficient in m^3/c
rho_i=8.93*10^-3; //resistivity in ohm m
e=1.6*10^-19;
nh=1/(RH*e);
mew_h=1/(rho_i*nh*e);
printf("density of charge carriers in m^3 is");
disp(nh);
printf("mobility of charge carriers is %f m^2/Vs",mew_h);
|
020bcb44d192edeb49fe12d3731b7ee5a6e6a292 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1784/CH47/EX47.2/example2.sce | 5b21b1539aa7405abb375d0e41c2d14e7ea7ea5b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 220 | sce | example2.sce | //Example 2
//chapter 47
P=(10^(-3))*(3*10^(-18))/(300)
disp(P,"Power in j-sec")
s=1.6*(10^(-19))
t=(5*s)/P
disp(t,"time reqired in sec =")
one_sec=0.000277778// hr
in_hour=one_sec*t
disp(in_hour,"time required in hour") |
44f7650f6a9c1ea67a26929d4482c96a230dc57a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1427/CH15/EX15.10/15_10.sce | 5f3607a1375b16956f6d9f4a4bdda58a34696cce | [] | 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 | 384 | sce | 15_10.sce | //ques-15.10
//Calculating equilibrium constant for a reaction
clc
P=1000;//pressure (in atm)
//a/b=1/3 (Volume ratio)
a=1;//volume of N2
b=3;//volume of H2
c=0.2491;//mole fraction of ammonia
//c=(2*x)/(4-2*x)
x=0.9964/2.4982;//degree of dissociation
Kp=(16*x^2*(2-x)^2)/(27*P^2*(1-x)^4);//equilibrium constant
printf("Equilibrium constant required is %.9f atm^-2.",Kp);
|
f02aa5ec55f76c1a9dda877f0c2070919a75dd0e | 449d555969bfd7befe906877abab098c6e63a0e8 | /944/CH5/EX5.32/example5_32_TACC.sce | 26ebf23d7c110f75a4f7cb2d90d371d1034fe1ed | [] | 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 | 342 | sce | example5_32_TACC.sce | //example 5.32
clear;
clc;
//Given:
P=1.75*10^-5;//Vapour pressure of pure water at 293K[torr]
dP=1.1*10^-7;//Lowering in vapour pressure of water
//To find the mole fraction of sucrose,so that the vapour pressure of water will be lowered by dP
x=dP/P;//mole fraction of sucrose
disp(x,'The mole fraction of sucrose is ');
|
aba9c2cb5d753c25ff90f832b41a7857844dedee | 449d555969bfd7befe906877abab098c6e63a0e8 | /3432/CH6/EX6.16/Ex6_16.sce | a21196a34fadfba763103bb5607a42390512b514 | [] | 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,503 | sce | Ex6_16.sce | //Example 6.16
//Lead compensation for Servomechanism System.
xdel(winsid())//close all graphics Windows
clear;
clc;
//------------------------------------------------------------------
//System transfer function
s=poly(0,'s');
numG=10;
denG=s*(s/2.5+1)*(s/6+1);
G=numG/denG;
//Dc gain
K=1;
KGs=syslin('c',K*G);
//Lead compensator 1
numD=s/2+1;
denD=s/20+1;
D1=numD/denD;
D1s=syslin('c',D1);
KGD1s=D1s*KGs; //compensated system
//Lead compensator 2
numD=s/4+1;
denD=s/40+1;
D2=D1*numD/denD; //double compensator
D2s=syslin('c',D2);
KGD2s=D2s*KGs; //compensated system
//The bode plot of the system with K
bode([KGs;KGD1s;KGD2s],0.1/2/%pi,100/2/%pi,['KG';'KGD1';'KGD2'],"rad");
exec .\fig_settings.sci; //custom script for setting figure properties
title('Bode plot for lead compensation design','fontsize',3)
//------------------------------------------------------------------
//Margins of uncompensated and compensated systems
[gm1,wcg1]=g_margin(KGs);
[pm1,wcp1]=p_margin(KGs);
disp(wcp1*2*%pi,"Wcp",wcg1*2*%pi,"Wcg",pm1,...
"Phase margin",gm1,"Gain margin","Uncompensated system :")
[gm2,wcg2]=g_margin(KGD1s);
[pm2,wcp2]=p_margin(KGD1s);
disp(wcp2*2*%pi,"Wcp",wcg2*2*%pi,"Wcg",pm2,...
"Phase margin",gm2,"Gain margin","System with D1 compensator :")
[gm3,wcg3]=g_margin(KGD2s);
[pm3,wcp3]=p_margin(KGD2s);
disp(wcp3*2*%pi,"Wcp",wcg3*2*%pi,"Wcg",pm3,...
"Phase margin",gm3,"Gain margin","System with D2 compensator :")
//------------------------------------------------------------------
|
acf6ece52eb938882eba05255d0542659a4da86d | 449d555969bfd7befe906877abab098c6e63a0e8 | /2183/CH8/EX8.18/Ex_8_18.sce | a432131ccee68710921e65484a190bcc4b8e98bd | [] | 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 | 451 | sce | Ex_8_18.sce | //Example 8.18 // Optimum receiver bandwidth and peak to peak signal power to noise ratio
clc;
clear;
close;
//given data :
Tr=12*10^-9;// in sec
f0=20*10^6;// in Hz
fD=5*10^6;// in Hz
Mr=80;// multiplication factor
Pp=.75*10^-7;
B=5*10^6;// in Hz
i2N=10^-17;// in A^2
fr=(1/Tr)*10^-6;
disp(fr," Optimum receiver bandwidth,fr(MHz) = ")
T0=1/f0;
SbyN=10*log10((3*(T0*fD*Mr*Pp)^2)/((2*%pi*Tr*B)^2*i2N));
disp(SbyN,"signal power to noise ratio,(dB) = ")
|
80dca248aaafdea9130b053eccacdccd24fca6e0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1592/CH6/EX6.8/Example_6_8.sce | 82ba51734d6636085aa6cddb13a80750bf8641d1 | [] | 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 | 256 | sce | Example_6_8.sce | //Scilab Code for Example 6.8 of Signals and systems by
//P.Ramakrishna Rao
//Sampling Frequency of BPS
clc;
clear;
disp('Maximum Frequency component present: 25 kHz');
fs=2*25000;
disp(fs,'Minimum Sampling Frequency to avoid distortion is:(Hz)');
|
78c7a9c7b2796cded54e783491993808876f078f | 940067908a620ecf3af07168e750cd30769047e4 | /AlgorithmeInterpolationLangrange2.sci | bebfee745a0811fecefd75a12ad62d0f433f45d8 | [
"MIT"
] | permissive | davidfotsa/Numerical_Methods_With_Scilab | 9bada60e6feba012fa7a52ce0e0ea85a40afd0d4 | a3c731888b8a7a77f0d851210bc62e00e348ace9 | refs/heads/main | 2023-08-01T13:11:14.528993 | 2021-09-28T04:19:38 | 2021-09-28T04:19:38 | 407,939,339 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 375 | sci | AlgorithmeInterpolationLangrange2.sci | //Algorithme Interpolation Langrange 2
funcprot(0);
function v=v(i,X,x)
v=1;
for j=1:length(X)
if (j<>i) then
v=v*(x-X(j));
end;
end;
endfunction;
function vp=vp(X,x)
vp=0;
for i=1:length(X)
vp=vp+v(i,X,x);
end;
endfunction;
function f=f(X,Y,x)
f=0;
for i=1:length(X)
f=f+v(i,X,x)*Y(i)/vp(X,x);
end;
endfunction;
|
d0db69ca37f31e2a19b178587a849d962b6d456d | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.5/Unix-Windows/scilab-2.5/tests/examples/pfss.man.tst | a06c3b6e797e7e9e5189b17100ccfc0352b796d9 | [
"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 | 117 | tst | pfss.man.tst | clear;lines(0);
W=ssrand(1,1,6);
elts=pfss(W);
W1=0;for k=1:size(elts), W1=W1+ss2tf(elts(k));end
clean(ss2tf(W)-W1)
|
fdd74d6a011d0b5dea13884613e459b2dec32b85 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3831/CH1/EX1.9/Ex1_9.sce | 803db723659fa5786c19309b9ace3bfab2a19818 | [] | 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 | 352 | sce | Ex1_9.sce | // Example 1_9
clc;funcprot(0);
// Given data
m=10.0;// lbm
omega=1800;// rpm
d=4.00;// inches
R=d/2;// inches
g_c=32.174;// lbm.ft/lbf.s^2
// Calculation
I=(m*(R/12)^2)/2;// lbm.ft^2
KE_rot=(I*((2*%pi*omega)/60)^2)/(2*g_c);// lbf
printf("\nThe rotational kinetic energy in the armature of an electric motor,KE_rot=%2.1f ft.lbf",KE_rot);
|
7292b562a8ff562f5a96750ab8b5c4c4b87fb4b3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /147/CH14/EX14.4/Example14_4.sce | d5e86e19cecd25c7f4eaf81309e7fad3acd23b68 | [] | 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 | Example14_4.sce | //Speed n, Flux per pole phi, Total number of conductors z
close();
clear;
clc;
p = 4;
n = 1800;//rpm
z = 728;
phi = 30*10^(-3);//Wb
//Since armature is lap wound p=a
a = p;
E = phi*n*z/60*p/a;
mprintf('Voltage induced in armature winding, E = %0.1f V',E); |
1bae05a0323e6d24bb703ae155417792534faac1 | 608ce453a5e6495299d7099c28b04d167ac50a76 | /P4/div.tst | 71a04de506cc737c4b6b7fe2b4d7c22f266c1581 | [] | no_license | andreww-han/CSCE-312 | abad4364c0a6a9f406a8a409145ec94a6eb52b88 | c3d23e7f5a13df9413656bda76ec82ab8bdc3a1c | refs/heads/master | 2022-11-27T18:52:41.794118 | 2020-07-20T20:16:53 | 2020-07-20T20:16:53 | 281,214,854 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,023 | tst | div.tst | //Andrew Han
// Filename = div.tst
load Div.hack,
output-file Div.out,
compare-to Div.cmp,
output-list RAM[0]%D2.6.2 RAM[1]%D2.6.2 RAM[2]%D2.6.2;
set RAM[0] 1, // Set test arguments
set RAM[1] 1,
set RAM[2] -1; // Test that program initialized product to 0
repeat 20 {
ticktock;
}
set RAM[0] 1, // Restore arguments in case program used them as loop counter
set RAM[1] 1,
output;
set PC 0,
set RAM[0] 2, // Set test arguments
set RAM[1] 2,
set RAM[2] -1; // Ensure that program initialized product to 0
repeat 20 {
ticktock;
}
set RAM[0] 2, // Restore arguments in case program used them as loop counter
set RAM[1] 2,
output;
set PC 0,
set RAM[0] 0, // Set test arguments
set RAM[1] 2,
set RAM[2] -1; // Ensure that program initialized product to 0
repeat 30 {
ticktock;
}
set RAM[0] 0, // Restore arguments in case program used them as loop counter
set RAM[1] 2,
output;
set PC 0,
set RAM[0] 9, // Set test arguments
set RAM[1] 3,
set RAM[2] -1; // Ensure that program initialized product to 0
repeat 30 {
ticktock;
}
set RAM[0] 9, // Restore arguments in case program used them as loop counter
set RAM[1] 3,
output;
set PC 0,
set RAM[0] 15, // Set test arguments
set RAM[1] 300,
set RAM[2] -1; // Ensure that program initialized product to 0
repeat 50 {
ticktock;
}
set RAM[0] 15, // Restore arguments in case program used them as loop counter
set RAM[1] 300,
output;
set PC 0,
set RAM[0] 290, // Set test arguments
set RAM[1] 20,
set RAM[2] -1; // Ensure that program initialized product to 0
repeat 120 {
ticktock;
}
set RAM[0] 290, // Restore arguments in case program used them as loop counter
set RAM[1] 20,
output;
set PC 0,
set RAM[0] 1000, // Set test arguments
set RAM[1] 1000,
set RAM[2] -1; // Ensure that program initialized product to 0
repeat 30 {
ticktock;
}
set RAM[0] 1000, // Restore arguments in case program used them as loop counter
set RAM[1] 1000,
output;
|
ad726a8d94be0f5efa5f4efbff9ed736b677851d | a29c13fa4c58d566270fb640a4d1f184f92c1223 | /02_Software/02_Control_Design/02_MPPT_Step_function_response/Torque of Stepfunction response.sce | 83bd1692a41498bca890863373912aa284eb9c68 | [] | no_license | li-bre/li-bre-wind | e15bc80f955d02731fe6e7eb255f24478a2395ae | d65584798c48461484e3a3531797612e3ba18c32 | refs/heads/master | 2022-02-28T15:32:22.893410 | 2022-02-08T15:54:47 | 2022-02-08T15:54:47 | 232,623,593 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 4,486 | sce | Torque of Stepfunction response.sce | // Rotor vs. Generator Power
clear
close
scf(0); clf();
//
//Beispiel: Erhöhung der PWM von 90 auf 95
v1=3:10;
//n_Rotor=[84.034 112.045 140.056 168.068 196.079 224.090 252.101 280.113];
//P_Rotor=[0.008 0.022 0.049 0.089 0.143 0.214 0.303 0.409] * 1000;
n_Rotor=[84.034 112.045 140.056 168.068 196.079 224.090];
P_Rotor=[0.008 0.022 0.049 0.089 0.143 0.214] * 1000;
T_Rotor=[0.895 1.881 3.307 5.078 6.953 9.109];
n_Gen=[49.6 90.6 100.4 106.6 120.4];
P_Gen=[0 14.5 33.0 45.5 80.7 ];
T_Gen=[0.83 2.78 4.90 7.44 %nan];
n_Gen_LL=[88.9 124.3 244.2 372.4 483.7 580.1];
n_Gen_KS=[6.6 15 19.8 21.6];
T_Gen_LL=[1.02 1.17 1.46 1.70 1.80 1.71];
T_Gen_KS=[1.51 4.12 8.92 9.32];
n_6m=[7.639 15.279 22.918 30.558 38.197 45.837 53.476 61.115 68.755 76.394 84.034 91.673 99.313 106.952 114.592 122.231 129.87 137.51 145.149 152.789 160.428 168.068 175.707 183.346 190.986 198.625 206.265];
T_6m=[0.595 0.636 0.685 0.704 0.735 0.763 0.784 0.821 0.858 0.924 1.068 1.243 1.448 1.678 1.959 2.425 2.847 3.267 3.666 3.975 4.361 5.078 4.715 4.243 3.755 3.385 3.082];
PWM=[60 65 70 75 80 85 90 95 100 85 90 95 100];
T=[1.73 1.67 1.89 1.86 2.36 2.33 2.46 2.64 2.76 4.04 3.79 4.19 4.11];
P1=[4.845 5.755 10.862 11.021 14.950 17.329 18.562 18.880 20.884 50.995 50.630 51.168 48.732];
P2=[4.128 4.845 8.750 9.851 13.462 14.821 15.543 17.390 17.517 39.054 40.322 36.517 33.492];
V1=[31.600 33.200 34.300 32.100 30.100 27.800 25.900 24.000 22.700 32.900 30.500 28.800 27.900];
V2=[12.510 12.530 12.620 12.630 12.700 12.740 12.810 12.850 12.880 13.120 13.120 13.120 13.100];
I1=P1./V1;
I2=P2./V2;
RPM=[192.000 199.200 210.600 195.000 187.200 174.000 165.000 155.400 147.600 211.200 199.200 187.200 178.800];
PWM0=find(PWM==60);
PWM1=find(PWM==65);
PWM2=find(PWM==70);
PWM3=find(PWM==75);
PWM4=find(PWM==80);
PWM5=find(PWM==85);
PWM6=find(PWM==90);
PWM7=find(PWM==95);
PWM8=find(PWM==100);;
//// Linearisierung
x_omega=100:250;
//M_gen_PWM95=M_95_0+C_M95*x_omega
M_95=T(PWM7);
M_90=T(PWM6);
omega_95=RPM(PWM7);
omega_90=RPM(PWM6);
C_95=(M_95(2)-M_95(1))/(omega_95(2)-omega_95(1));
C_90=(M_90(2)-M_90(1))/(omega_90(2)-omega_90(1));
M_95_0=M_95(1)-C_95*omega_95(1);
M_90_0=M_90(1)-C_90*omega_90(1);
M_95_lin=M_95_0+C_95*x_omega;
M_90_lin=M_90_0+C_90*x_omega;
n_ABC=[194.24 194.24 185.48];
T_ABC=[3.597 4.533 4.106];
//T_v6=T_v6_0+C_v6*x_omega
C_v6=(T_ABC(3)-T_ABC(1))/(n_ABC(3)-n_ABC(1));
T_v6_0=T_ABC(1)-C_v6*n_ABC(1);
T_v6_lin=T_v6_0+C_v6*x_omega;
/// Plotten////
//plot(n_Gen_KS,T_Gen_KS,'color',[0 0.8 0],'linest','-','marker','*',"thickness",2,'markersize',10)
plot(RPM(PWM7),T(PWM7),'color',[0 0.8 0],'linest','-','marker','x',"thickness",2,'markersize',10)
plot(x_omega,M_95_lin,'color',[0 0.8 0],'linest','--',"thickness",2,'markersize',10)
plot(RPM(PWM6),T(PWM6),'color',[0.25 0.25 0.25],'linest','-','marker','x',"thickness",2,'markersize',10)
plot(x_omega,M_90_lin,'color',[0.25 0.25 0.25],'linest','--',"thickness",2,'markersize',10)
//plot(n_Gen_LL,T_Gen_LL,'color',[0 0.75 1],'linest','-','marker','*',"thickness",2,'markersize',10)
plot(n_6m,T_6m,'color',[1 0 0],'linest','-',"thickness",2,'markersize',10)
plot(x_omega,T_v6_lin,'color',[1 0 0],'linest','--',"thickness",2,'markersize',10)
plot(n_ABC,T_ABC,'color',[0 0 1],'linest','-','marker','+',"thickness",2,'markersize',12)
// Ploteigenschaften
xset("font",6,5)
xstring(n_ABC-12,T_ABC-0.2,['A' 'B' 'C'])
xset("font",6,4)
xtitle("$ $", "$Rotational\ speed\ [rpm]$","$Torque\ [Nm]$");
l=legend([...
//'$T_{turb,\ opt}$';...
//'$T_{gen}\ short\ circuit$';...
//'$T_{gen}\ uncontrolled$';...
//'$T_{gen}\ PWM\ 100$';...
'$T_{gen}\ D=95/255$';...
'$T_{gen,lin}\ D=95/255$';...
'$T_{gen}\ D=90/255$';...
'$T_{gen,lin}\ D=90/255$';...
//'$T_{gen}\ PWM\ 85$';...
//'$T_{gen}\ PWM\ 80$';...
//'$T_{gen}\ PWM\ 75$';...
//'$T_{gen}\ PWM\ 70$';...
//'$T_{gen}\ PWM\ 65$';...
//'$T_{gen}\ PWM\ 60$';...
//'$T_{gen}\ open\ circuit$';...
'$T_{turb}\ v_1=6\,m/s$';...
'$T_{turb,lin}\ v_1=6\,m/s$';...
'$path\ of\ step\ function\ response$';
],2);
a=gca(); // get the handle of the current axes
f=get("current_figure");
f.figure_size=[800,600]
a.grid=[1 1];
a.font_size=4; //set the tics label font size
a.title.font_size=4;
a.x_label.font_size=4;
a.y_label.font_size=4;
l.font_size = 3;
a.axes_visible="on"; // makes the axes visible
a.tight_limits="on";
a.data_bounds=[0,0,0;250,5.5,1]; //set the boundary values for the x, y and z coordinates.
filename='moments_for_timeconsideration_MPPT';
xs2pdf(0,filename);
xs2pdf(gcf(),filename);
|
980e3b04ef3f7ee5453828c65a4a7328ac3bd179 | 717ddeb7e700373742c617a95e25a2376565112c | /3460/CH3/EX3.11/ex3_11.sce | 6c9700dfc418a9367eae1bc2d4d6676ae76c8c8c | [] | no_license | appucrossroads/Scilab-TBC-Uploads | b7ce9a8665d6253926fa8cc0989cda3c0db8e63d | 1d1c6f68fe7afb15ea12fd38492ec171491f8ce7 | refs/heads/master | 2021-01-22T04:15:15.512674 | 2017-09-19T11:51:56 | 2017-09-19T11:51:56 | 92,444,732 | 0 | 0 | null | 2017-05-25T21:09:20 | 2017-05-25T21:09:19 | null | UTF-8 | Scilab | false | false | 153 | sce | ex3_11.sce |
clc;
clear all;
Vrms=30;//given rms voltage
Irms=15;//given rms current
PEP=Vrms*Irms;//peak envelope power
disp(PEP,'peak envelope power is=');
|
2507459b75096410753f139008fd4106e22cdde7 | d88ad726e2ceb60f4e7098725a50c4d67c71f67f | /S1/CurvRec/TP2/BOUHDID-TP2/crust.sce | 343868ffd88fb7ba6b944a0e77babd571907cb71 | [] | no_license | Sabouh/M2GICAO | 65bde1da541a84c6ed1ccc198057178e1dc1575a | 8a492490aa2b4ef04e1ad2a92649c7211be01fea | refs/heads/master | 2021-01-24T17:39:10.215981 | 2016-03-12T20:13:09 | 2016-03-12T20:13:09 | 43,699,888 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,159 | sce | crust.sce | function Crust(S)
// **** A MODIFIER/COMPLETER ****
// R should contain a list of pair of indices connecting the initial points in S
// for instance:
// R = [R ; [1,2]] adds the edge connecting points 1 and 2 in the array R
R = [];
// ******************************
//Compute the Delaunay triangulation T
//Compute the set C of the circumscribed circle assiociated to triangles T
[T,C,r] = delaunay(S);
//On retrouve sommets correspondant aux indices dans T
// et on met leur coordonnées ds une matrice ST
//Matrice STI se souvient de l'indice qui correspond à S pour chaque sommet de ST
ST = [];
STI =[];
[lig,col] = size(T);
for i=1:lig
for j=1:col
ST((i-1)*col+j,:) = S(T(i,j),:);
STI((i-1)*col+j,:) = T(i,j);
end
end
//S1 : T U C
S1 = [ST; C];
//Compute the Delaunay triangulation D of the set of points T U C
[T1,C1,r] = delaunay(S1);
//On veut retrouver les arêtes des triangles de T1
//mais on ne veut pas que les centres de cercles soient pris en compte
[lig,col] = size(ST);
[ligne,colo] = size(T1);
//Pour chaque triangle (chaque ligne de t1)
//Fonction aretes définie à la fin du fichier :
//On parcourt les indices de ce triangle
// Si l'indice est plus grand que nT de ST (ca veut dire que c est cercle)
//on ne le prend pas en compte
//sinon on ajoute le lien entre les 2 autres si aucun ne comprend un cercle
for i=1:ligne
R = [R ; aretes(STI,T1(i,:),lig)];
end
//fin
// nouvelle figure
scf();
// affichage des points en entrée
plot(S(:,1),S(:,2),'ro');
// affichage des connections
for i=1:size(R,1)
plot([S(R(i,1),1);S(R(i,2),1)],[S(R(i,1),2);S(R(i,2),2)],'b-');
end
set(gca(),"auto_clear","off")
set(gca(),"margins",[0.05 , 0.05 , 0.05 , 0.05])
set(gca(),"box","off")
set(gca(),"isoview","on")
set(gca(),"auto_scale","on")
endfunction
function test_crust(num_test)
exec("qdelaunay.sce",-1);
if argn(2)<1
num_test=0;
end
select num_test
case 1
// // test 1
// les donnees
S = [0 0; 2 0; 4 0; 0 2; 1 2; 3 2; 2 3];
Crust(S);
case 2 then
// // test 2 − points aleatoires
S = rand(100,2);
Crust(S);
case 3 then
// // test 3 − points suivant une grille reguliere
S = zeros(100,2);
for i =0:9
for j =1:10
S(i*10+j,:) = [2*j+i 2*i];
end
end
Crust(S);
case 4 then
// // test 4 − points entres à la souris
S = inputpoints()';
Crust(S);
end // select
endfunction
//Renvoie les aretes d'un triangle
// tels que les valeurs d'extremites de ces arêtes ne depassent pas N
//
function R=aretes(S,T,N)
R = [];
a = T(1);
b = T(2);
c = T(3);
if ((a>=N & b>=N) |(a>=N & c>=N) | (b>=N & c>=N)) then
//Si 2 sur les 3 est supérieur à N on renvoie rien
else
//
if (a>=N) then
R = [R ; [S(b),S(c)]];
else
if (b >=N) then
R = [R ; [S(a),S(c)]];
else
R = [R ; [S(a),S(b)]];
end
end
end
endfunction
|
804f288b665c4ffbbb6304882b6dc534e8e9ac2c | 178822612bcd418dc12ba7a649304a24ab618d60 | /Numerical Analysis/f.sci | de7e19f0737ee37281f587836fa8ea0c4893ded8 | [] | no_license | engom/Math_Problem_Solving | b56c6cbfbff6c416c519795b9ab8f0c0bbba5ea3 | 6538c476681ae4ee803ea9b3a8944c5f370e1961 | refs/heads/master | 2022-05-25T01:13:16.123161 | 2016-02-13T11:32:28 | 2016-02-13T11:32:28 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 47 | sci | f.sci | function[y]=f(x)
y=3*x^3-2*x+2
endfunction
|
19b9e735e8b0b76fbbf44b9dd50ba05f3f9553d5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3411/CH7/EX7.4.u1/Ex7_4_u1.sce | dfde2872d204dd93936b88dcad0e2c9f15a054de | [] | 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 | 288 | sce | Ex7_4_u1.sce | //Example 7_4_u1
clc();
clear;
//To calculate the numerical apperture and angle of acceptance
n1=1.45
n2=1.40
NA=sqrt(n1^2-n2^2)
printf("Numerical apperture is NA=%.3f\n",NA)
ia=asin(NA)*180/%pi //units in degrees
printf("Angle of acceptance is ia=%.2f Degrees",ia)
|
68b476de7eaa806743becdb3f1246ec4c34204e7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /323/CH2/EX2.69/ex2_69.sci | 408dae8c33e71f5051690c559accea56689ccb64 | [] | 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 | 478 | sci | ex2_69.sci | //Chapter 2, Example2.69,Pg2.85
clc;
disp("Refer to the diagram shown in the figure")
A=[15 -5;0 1]
B=[120;-6]
I=A\B
printf("\n I1=%.0f A \n",I(1))
printf("\n I2=%.0f A \n",I(2))
Vth=120-10*I(1) //Thevenin Voltage
printf("\n Vth =%.0f V \n",Vth)
//Calculation of Rth
Rth=(10*5/(10+5))
printf("\n Rth=%.2f ohms \n",Rth)
//For maximum power transfer load resistance should be equal to thevenin resistance
Pmax=(Vth*Vth/(4*Rth))
printf("\n Pmax=%.2f W \n",Pmax)
|
c31254938afe0da789c0b9db215aa28b8ec064e4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1775/CH1/EX1.12/Chapter1_Example12.sce | d3d2ed7af2dd4294a3eb723eeabc78d8cceae46e | [] | 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,813 | sce | Chapter1_Example12.sce | //Chapter-1, Illustration 12, Page 24
//Title: Fuels and Combustion
//=============================================================================
clc
clear
//INPUT DATA
H2=0.14;//Percentage composition of H2 by volume
CO2=0.05;//Percentage composition of CO2 by volume
CO=0.22;//Percentage composition of CO by volume
CH4=0.02;//Percentage composition of CH4 by volume
O2=0.02;//Percentage composition of O2 by volume
N2=0.55;//Percentage composition of N2 by volume
e=0.4;//Excess air supplied
//CALCULATIONS
v=(2.38*(H2+CO))+(9.52*CH4)-(4.76*O2);//Volume of air required for complete combustion in (m^3)
ve=v*e;//Volume of excess air supplied in m^3
vtN2=v-(v*0.21);//Volume of N2 in theoretical air in m^3
veN2=ve-(ve*0.21);//Volume of N2 in excess air in m^3
vt=vtN2+veN2;//Total volume of N2 in air supplied in m^3
vCO2=CO+CH4+CO2;//CO2 formed per m^3 of fuel gas
vN2=vt+N2;//N2 formed per m^3 of fuel gas
veO2=ve*0.21;//Volume of excess O2 per m^3 of fuel gas
vT=vCO2+vN2+veO2;//Total volume of dry combustion products
pCO2=(vCO2*100)/vT;//Percentage volume of CO2
pN2=(vN2*100)/vT;//Percentage volume of N2
pO2=(veO2*100)/vT;//Percentage volume of O2
//OUTPUT
mprintf('Volume of air required for complete combustion is %3.3f (m^3) \n Volume of CO2 per m^3 of gas fuel is %3.2f m^3/m^3 of gas fuel \n Volume of N2 per m^3 of gas fuel is %3.3f m^3/m^3 of gas fuel \n Volume of excess O2 per m^3 of gas fuel is %3.2f m^3/m^3 of gas fuel \n Total volume of dry combustion products is %3.3f m^3/m^3 of gas fuel \n Percentage volume of CO2 is %3.1f percent \n Percentage volume of N2 is %3.2f percent \n Percentage volume of O2 is %3.2f percent',v,vCO2,vN2,veO2,vT,pCO2,pN2,pO2)
//==============================END OF PROGRAM=================================
|
7b8775485da37f831b78c370e4c5802dcec37750 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3830/CH6/EX6.2/Ex6_2.sce | 2bd384dcbc08bdb8e4ac6adbd36c410c2479c663 | [] | 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 | Ex6_2.sce | // Exa 6.2
clc;
clear;
// Given
//Fig. 6.9 shows wheatstone bridge
R1 = 1000; // Ohms
R2 = 100; // Ohms
R3 = 400; // Ohms
Rx = 41; // Ohms(Unknown resistance)
V = 1.5; // Voltage supplied
Rg = 50; // Galvanometer resistance (ohms)
Si = 2; // current sensitivity in mm/microAmp
// Solution
Rth = (R1*R3/(R1+R3)) + R2*Rx/(R2+Rx);
Eth = V*(R3/(R1+R3) - Rx/(R2+Rx));
Ig = Eth/(Rth+Rg);
d = Ig*Si;
printf('The thevenins equivalent resistance = %.1f Ohms \n',round(Rth));
printf(' The thevenins equivalent voltage = %.1f mV \n',abs(Eth*10^3));
printf(' The current through the galvanometer = %.2f micro Amp \n',abs(Ig*10^6));
printf(' The deflection produced by the galvanometer caused by the imbalance in the circuit = %.2f mm \n',abs(d*10^6));
|
fe061a8615db6d28448dfd8c9e47f7fbaf24b0ee | 449d555969bfd7befe906877abab098c6e63a0e8 | /2120/CH4/EX4.9/ex4_9.sce | 45678b50fb9b9b3abca0745373393897053c52c4 | [] | 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 | 795 | sce | ex4_9.sce | // Exa 4.9
clc;
clear;
close;
// Given data
// Relation of specific internal energy of the gas
// U= 1.5*p*v-85 kJ/kg
p1 = 1000;// in kpa
p2 = 200;// in pa
v1 = 0.20;// in m^3
v2 = 1.20;// in m^3
m = 1.5;// in kg
U1= 1.5*p1*v1-85;// kJ/kg
U2= 1.5*p2*v2-85;// kJ/kg
delU= U2-U1;// in kJ
disp(delU,"Change in internal energy in kJ is");
// p1= a+b*v1 (i)
// p2= a+b*v2 (ii)
// From eq(i) and (ii)
b= (p1-p2)/(v1-v2);// in kN/m^2
a= p1-b*v1;// in kN/m^2
disp(a,"The value of a in kN/m^2 is ")
disp(b,"The value of b in kN/m^2 is ")
// Part (c)
// Work done = integration of p w.r.t. v and p = a+b*v1
W= integrate('a+b*v','v',v1,v2);// in kJ
disp(W,"Work done in kJ is :")
// Part (d)
Q= delU+W;// in kJ
disp(Q,"The net heat transfer in kJ is : ")
|
11fdd1455d96760b10d1ef443bc451fa79e6cf78 | 7b7be9b58f50415293def4aa99ef5795e6394954 | /sim/cmd/test/heatpump.tst | 027ddd0f4593871bc7ee61d651be663776e68917 | [] | no_license | sabualkaz/sim42 | 80d1174e4bc6ae14122f70c65e259a9a2472ad47 | 27b5afe75723c4e5414904710fa6425d5f27e13c | refs/heads/master | 2022-07-30T06:23:20.119353 | 2020-05-23T16:30:01 | 2020-05-23T16:30:01 | 265,842,394 | 0 | 0 | null | 2020-05-21T12:26:00 | 2020-05-21T12:26:00 | null | UTF-8 | Scilab | false | false | 1,748 | tst | heatpump.tst | # Depeopanizer test (from old Hysim manual)
units Field
$thermo = VirtualMaterials.Peng-Robinson
/ -> $thermo
thermo + Propane ISOBUTANE n-BUTANE ISOPENTANE
Feed = Stream.Stream_Material()
Feed.In.T = 90
Feed.In.P = 55
Feed.In.MoleFlow = 3000
Feed.In.Fraction = 2.5 39 58 .5
c4split = Tower.Tower()
c4split.Stage_0 + 38 # forty stages`
cd c4split.Stage_0
l = Tower.LiquidDraw()
l.Port.P = 60
l.nC4spec = Tower.VolFractionSpec()
l.nC4spec + n-BUTANE
l.nC4spec.Port = .05
reflux = Tower.RefluxRatioSpec()
reflux.Port = 7
cond = Tower.EnergyFeed(0)
estT = Tower.Estimate('T')
estT.Port = 100
cd ../Stage_1
vap = Tower.InternalVapourClone()
/to_comp = Stream.Stream_Material()
vap.Port -> /to_comp.In
cd ../Stage_29
f = Tower.Feed()
f.Port -> /Feed.Out
cd ../Stage_39
l = Tower.LiquidDraw()
l.Port.P = 68
reb = Tower.EnergyFeed(1)
estT = Tower.Estimate('T')
estT.Port = 120
cd ..
/liq_prod = Stream.Stream_Material()
/liq_prod.clone = Stream.ClonePort(1)
/liq_prod.In -> Stage_0.l.Port
/btm_prod = Stream.Stream_Material()
/btm_prod.In -> Stage_39.l.Port
TryToSolve = 1 # start calculation
/liq_prod.Out
/btm_prod.Out
cd /
K-100 = Compressor.Compressor()
K-100.Efficiency = .75
K-100.Out.P = 235.1787
c4split.Stage_1.vap.Port -> K-100.In
E-100 = Heater.Cooler()
E-100.DeltaP = 5
K-100.Out -> E-100.In
E-100.OutQ -> c4split.Stage_39.reb.Port
E-101 = Heater.Cooler()
E-101.DeltaP = 5
E-100.Out -> E-101.In
CV-100 = Valve.Valve()
E-101.Out -> CV-100.In
V-100 = Flash.SimpleFlash()
CV-100.Out -> V-100.In
split = Split.Splitter()
V-100.Liq0 -> split.In
split.Out0 -> liq_prod.clone
copy /
paste /
/btm_prod.In
/RootClone.btm_prod.In |
11f3ffbf126ba3500821a72fdc8bd6ad2ac12d9d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1985/CH12/EX12.5/Chapter12_example5.sce | 21bb3b3b4e89b57e325c40d2523f5c819ee7aeda | [] | 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 | 369 | sce | Chapter12_example5.sce | clc
clear
//Input data
W=2.2//Work function of sodium in eV
h=6.625*10^-34//Plancks constant in J.s
c=3*10^8//Velocity of light in m/s
e=1.6*10^-19//Charge of electron in Columbs
//Calculations
v=(W*e)/h//Frequency in Hz
l=(c/v)/10^-10//The threshold wavelength in angstroms
//Output
printf('The threshold wavelength of the metal is %3.0f angstroms',l)
|
001204f68fb6c10662f807ba52674c7c3fbc9ac3 | 927ae3c8364fc99a2d5e82faa7e34b91e34a4af8 | /doc/data/models/main_script.sce | 224cc8b246b45e0a6839f93881eb7897a4e74bb0 | [
"MIT"
] | permissive | speedcontrols/ac_sc_grinder | a7dadfa2e0dfd8a8df6e56c801a98c2eebaccfb3 | 0313cb501eeb9d2ac8e886d4eac3b6a1d67c6d22 | refs/heads/master | 2022-05-11T14:48:10.847346 | 2022-05-02T00:29:55 | 2022-05-02T00:29:55 | 120,060,877 | 91 | 22 | MIT | 2019-04-06T12:10:38 | 2018-02-03T04:59:09 | C | UTF-8 | Scilab | false | false | 1,070 | sce | main_script.sce | scs_m = xcosDiagramToScilab('model_grinder.zcos');
speed = 3000; // Real motor speed in RPM
// Model parameters
scs_m.props.context = [..
"Speed = "+string(speed)..
"angle = 0.15".. // Triac firing angle, 0 - 1
"R_motor = 92".. // Motor resistance
"L_motor = 0.17".. // Motor inductance
"coeff_motor = 0.07".. // (Back-EMF / (Speed * Current)) coefficient
"current_quant = 0.001611328125".. // 1 bit of ADC value in amperes
"voltage_quant = 0.161938476562".. // 1 bit of ADC value in volts
"start_measure = 0.01925".. // Speed measuring starts at this time
"tick_freq = 17857".. // Sampling time of speed calculator
"stop_time = 0.02".. // Speed measuring stops at this time
];
xcos_simulate(scs_m, 4);
scf();
x = [0:0.1:0.9]';
xset("thickness",3);
plot2d(x,[(ones(1,10)*speed)' (ones(1,10)*m_speed.values)'],rect=[0,0,1,30000]);
xset("thickness",0);
xgrid();
title(['Results of formula' '$\LARGE{n = \frac{Voltage}{Current} - R - L \frac{dCurrent}{dt} \frac{1}{Current}}$']);
legend(['real' 'measured'],1);
printf("\n Calculated Speed = %f", m_speed.values);
|
c5340a53fbbcb4a7d761234e5de84dabc6e12349 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1898/CH4/EX4.12/Ex4_12.sce | 906f0215b70bad4c2c049a9e2f067b151d525d72 | [] | 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,246 | sce | Ex4_12.sce |
clear all; clc;
disp("Scilab Code Ex 4.12 : ")
//Given:
h = 0.250; //m
T1 = 20; //degree celcius
udl = 150; //kN/m
T2 = 80; //degree celcius
len = 0.3; //m
dia_steel = 0.04;//m
r_steel = 0.02;
dia_aluminium = 0.06; //m
r_al = dia_aluminium/2;
area_st = %pi*(r_steel^2);
area_al = %pi*(r_al^2);
F = 90*10^3;//N
alpha_st = 12*10^-6; //per degree celcius
alpha_al = 23*10^-6; //per degree celcius
E_st = 200*10^9; // N/m^2
E_al = 73.1*10^9; // N/m^2
//Equilibrium:
//From the free body diagram: Eqn1 : 2F_st + F_al-
// -delst_T + F_st*delst_F = -delal_T + F_al*delal_F
//Eqn2 : 165.9*10^3 =1.216F_al - F_st F = 0
//Compatibility:
delst_T = alpha_st*(T1+T2)*h;
delst_F = h/(area_st*E_st);
delal_T = alpha_al*(T1+T2)*h;
delst_F = h/(area_al*E_al);
coeffMat = [2 1; -1 1.216]
b= [90*10^3 ; 165.9*10^3]
F = coeffMat\b;
F_st = F(1)/1000;
F_al =F(2)/1000;
F_al =ceil(F_al);
//Display:
printf("\n\nThe force on the steel post = %1.1f kN",F_st);
printf('\nThe force on the aluminium post = %1.1f kN',F_al);
//-----------------------------------------------------------------------------END----------------------------------------------------------------------------------
|
9ca81098bd3a7e8e5fb5fcec28b5020c38ac1fff | 449d555969bfd7befe906877abab098c6e63a0e8 | /2213/CH1/EX1.11/ex_1_11.sce | 531db14326919786c4d767b7fe66ce73e0da823c | [] | 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 | 260 | sce | ex_1_11.sce | //Example 1.11 // frequency
clc;
clear;
close;
format('v',5)
p=5*10^-7;//specific resistance in Ω-m
rp=1;//relative permeability
dp=0.0015;//depth of penetration in mter
f=((p*10^7)/((rp*(dp)^2)*4*(%pi)^2))*10^-3;//frequency in kHz
disp(f,"frequency in kHz")
|
f40366521b295f8847c9337672bd1607fc361e7f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2183/CH8/EX8.7.a/Ex_8_7_a.sce | c90b9b002210cef3a51329a0faa25560475bcd51 | [] | 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 | 498 | sce | Ex_8_7_a.sce | // Example 8.7.a //dispersion equalization penalty
clc;
clear;
close;
sg=0.65;// ns km^-1
l=8;//km
st=sg*l;//ns
bt=20;//M bit s^-1
dlw=2*(2*st*10^-9*bt*10^6*sqrt(2))^4;//dB
st1=sg*sqrt(l);//ns
dlw1=2*(2*st1*10^-9*bt*10^6*sqrt(2))^4;//dB
disp(dlw,"dispersion equalization penalty in dB without mode coupling at bit rate of 20 M bit s^-1")
disp(dlw1,"dispersion equalization penalty in dB with mode coupling at bit rate of 20 M bit s^-1")
//penalty with mode coupling is calculated wrong in the book
|
27aa2745c34213af3c3ac072a28c029e9bb0daec | 18cbceafa51692cec0d288cd11a9d4024eacd919 | /02/Or16B1.tst | 0bb0924e00f9c1832cd5f1d5fd6f49c6cbeb176b | [
"MIT"
] | permissive | hw4282/nand2tetris | a4f95dba8fbe779974befa8d422be7b9be9e0f28 | 87a4ac19595871f3e6b695dd7371898d1ea2f896 | refs/heads/master | 2021-04-28T09:09:01.446446 | 2018-02-26T06:03:38 | 2018-02-26T06:03:38 | 122,032,122 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 343 | tst | Or16B1.tst | load Or16B1.hdl,
output-file Or16B1.out,
compare-to Or16B1.cmp,
output-list a%B2.16.1 out%B2.1.1;
set a %B1000000000000000,
eval,
output;
set a %B1111111100000000,
eval,
output;
set a %B1111111100000000,
eval,
output;
set a %B1010101010101010,
eval,
output;
set a %B1010101010101010,
eval,
output;
set a %B0000000000000000,
eval,
output; |
c627a283f2c562192a4d6d36fc6f366cc1d2150f | e6ea8d4e6298d6aee8f296425a9e68b48ad33795 | /sci_examples/max_cost_asignment_ex.sce | c1ca633c10228b9c3da3aa1892f0a1f8249af55e | [] | no_license | srkirve77/scilab_toolbox | a7d75b97e58813033491ab32fecec43a35ae2e2e | 738760c8b1fd812b0a8d84f05764d395fe7041de | refs/heads/master | 2022-11-07T19:38:51.977104 | 2020-06-22T16:57:01 | 2020-06-22T16:57:01 | 271,746,071 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 236 | sce | max_cost_asignment_ex.sce |
arr = [1,2,6;5,3,6;4,5,0];
//max_cost_assignment(row,col,array)
//rows signify jobs while column signify different persons
// rows should be equal to col to get correct answer through this algorithm
disp(max_cost_assignment(3,3,arr));
|
80746354cfd8125b04b3e712f3b33bf1097c40fe | 449d555969bfd7befe906877abab098c6e63a0e8 | /1895/CH5/EX5.50/EXAMPLE5_50.SCE | ed4d2044f8e04e9e1544c9cbdda1c762ecff682c | [] | 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 | 981 | sce | EXAMPLE5_50.SCE | //ANALOG AND DIGITAL COMMUNICATION
//BY Dr.SANJAY SHARMA
//CHAPTER 5
//ANGLE MODULATION
clear all;
clc;
printf("EXAMPLE 5.50(PAGENO 265)");
//given
f_1 = 200*10^3//frequency applied at first stage
delta_f1 = 25//frequency deviation at first stage
n1 = 64//frequency multiplication at first stage
n2 = 48//frequency multiplication at second stage
f_LO = 10.8*10^6//frequency of oscillator as shown if block diagram
//calculations
delta_f = delta_f1*n1*n2//maximum frequency deviation
f_2 = n1*f_1//frequency applied at second stage
f_3a = f_2 + f_LO//frequency applied the third stage
f_3b = f_2 - f_LO//frequency applied the third stage
f_c1 = n2*f_3a//carreir frequency for maximun f_3
f_c2 = n2*f_3b//carreir frequency for minimum f_3
//results
printf("\n\ni.Maximum frequency deviation =%.2f Hz",delta_f);
printf("\n\nii.a.Carrier frequency for maximum f_3 = %.2f Hz",f_c1);
printf("\n\n b.Carrier frequency for minimum f_3 = %.2f Hz",f_c2);
|
3a669ee046efa6ad62e3dc018a0de66bb9c43f8f | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set5/s_Electrical_Machines_M._V._Despande_833.zip/Electrical_Machines_M._V._Despande_833/CH11/EX11.13/Ex11_13.sce | df3cafa42f17bd00aaab418248859abae73c4f94 | [] | no_license | hohiroki/Scilab_TBC | cb11e171e47a6cf15dad6594726c14443b23d512 | 98e421ab71b2e8be0c70d67cca3ecb53eeef1df6 | refs/heads/master | 2021-01-18T02:07:29.200029 | 2016-04-29T07:01:39 | 2016-04-29T07:01:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 931 | sce | Ex11_13.sce | errcatch(-1,"stop");mode(2);//Caption:Find (a)Equivalent rotor current (b)Stator current (c)Power factor (d)Stator input (e)Rotor input (f)Efficiency
//Exa:11.13
;
;
V=440//Voltage supplied(in volts)
f=50//frequency(in hertz)
Z_s=1.5+(%i*3)//Stator impedance per phase(in ohms)
Z_r=1.6+(%i*1)//Rotor impedance per phase(in ohms)
Z_m=3+(%i*40)//Magnetising impedance per phase(in ohms)
P_wf=300//Friction and winding loss(in watt)
s=0.04//Slip
Z=40+(%i*1)
z=Z*Z_m/(Z+Z_m)
Zt=z+Z_s
I1=(V/sqrt(3))/Zt
E=(V/sqrt(3))-(I1*Z_s)
I2=E/Z
disp(I2,'(a)Equivalent Rotor current(in A)=')
disp(I1,'(b)Stator current(in A)=')
pf=cosd(atand(imag(Zt)/real(Zt)))
disp(pf,'(c)Power factor=')
P_s=sqrt(3)*V*sqrt(I1*conj(I1))*pf
disp(P_s,'(d)Stator input(in watt)=')
P_r=3*(I2*conj(I2))*(real(Z_r)/s)
disp(P_r,'(e)Rotor input(in watt)=')
P_ro=P_r*(1-s)
P_me=P_ro-P_wf
e=(P_me/P_s)*100
disp(e,'(e)Efficiency(in%)=')
exit();
|
f9479c72174a4577d5bbcf06b62e469feeeaa9df | 449d555969bfd7befe906877abab098c6e63a0e8 | /2681/CH6/EX6.9/Ex6_9.sce | b8f20a51c313f9905e9e0cabe35bfcb5a3db0a1a | [] | 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 | Ex6_9.sce | //percentage of reflected voltage
//given
clc
Vi=50//volts
Vr=25//volts
row=Vr/Vi//reflection coefficent
per_ref_volt=row*100//percentage of reflected voltage
disp(per_ref_volt,'the percentage of reflected voltage')
|
38a7051a81a5f532a6ed59c71ffa87f7b62ee5e9 | 4483ff664b4d01c53114a7fc535625c197c8f989 | /green routing/c3.sce | b44ac002379507b21607c8db0d2d81b089ec6dca | [] | no_license | winash1618/myproject | be9b77d4a405edce7e625a999803016b50ab99d0 | 2132e76e6a996bee19f356a2b68af827fa6c621b | refs/heads/master | 2022-12-06T06:09:06.487979 | 2020-08-20T02:00:54 | 2020-08-20T02:00:54 | 288,880,158 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 5,944 | sce | c3.sce | clc
clear all
x=8
z=25
cap=[288 95 115 133 107 22 34 28 186 190 33 56 100 90 82 143 68 166 44 73 72 60 68 8 20]
a=[3.0 2.0 19.0 18.0 4.0 1.0 9.0 10.0 7.0 6.0 11.0 16.0 5.0 8.0 14.0 12.0 13.0 15.0 17.0 25.0 20.0 21.0 23.0 24.0 22.0
]
sizer=[2.0 4.0 2.0 4.0 5.0 2.0 4.0 2.0
]
tim=[0 5.9 6.2 5.6 27 17 20 29 19 18 16 23 24 34 11 9 11 11 13 17 14 30 25 28 27;
5.9 0 3.4 3.9 32 22 26 36 26 23 21 30 29 34 17 17 18 9.9 13 19 16 32 27 31 29;
6.2 3.4 0 5.7 35 25 28 36 23 19 22 30 32 41 18 16 19 11 14 21 18 34 28 32 31;
5.6 3.9 5.7 0 29 19 22 30 21 19 17 26 26 36 13 10 13 5.5 8.8 15 12 28 23 26 25;
27 32 35 29 0 6.5 4.5 7.5 16 15 12 10 9.7 6.8 17 18 18 27 29 22 29 34 31 32 21;
17 22 25 19 6.5 0 2.9 13 9 9.6 3.7 7.6 6.9 12 7 8.3 8.5 17 79 18 19 25 21 23 14;
20 26 28 22 4.5 2.9 0 11 13 13 6.6 6.2 5.5 10 10 11 11 20 21 18 22 23 20 22 12;
29 36 36 30 7.5 13 11 0 23 23 19 16 16 10 21 22 23 31 32 28 33 38 35 36 22;
19 26 23 21 16 9 13 23 0 2 5.9 17 16 23 11 11 12 21 22 22 23 36 30 34 23;
18 23 19 19 15 9.6 13 23 2 0 5.6 17 17 22 9.6 9.5 13 22 23 22 24 40 34 38 23;
16 21 22 17 12 3.7 6.6 19 5.9 5.6 0 11 11 19 5.6 6.8 7 16 17 16 18 34 28 32 18;
23 30 30 26 10 7.6 6.2 16 17 17 11 0 0.7 5.8 15 16 12 23 22 12 15 18 15 16 6.8;
24 29 32 26 9.7 6.9 5.5 16 16 17 11 0.7 0 5.1 14 15 12 23 22 13 15 18 14 16 6.9;
34 34 41 36 6.8 12 10 10 23 22 19 5.8 5.1 0 24 25 17 28 27 18 20 23 21 21 9.8;
11 17 18 13 17 7 10 21 11 9.6 5.6 15 14 24 0 5.2 2.1 11 12 12 13 29 24 27 18;
9 17 16 10 18 8.3 11 22 11 9.5 6.8 16 15 25 5.2 0 5.7 13 14 18 15 31 25 29 21;
11 18 19 13 18 8.5 11 23 12 13 7 12 12 17 2.1 5.7 0 11 13 9.4 11 23 18 21 15;
11 9.9 11 5.5 27 17 20 31 21 22 16 23 23 28 11 13 11 0 7.4 11 8 24 19 22 21;
13 13 14 8.8 29 79 21 32 22 23 17 22 22 27 12 14 13 7.4 0 9.8 6.8 23 18 21 20;
17 19 21 15 22 18 18 28 22 22 16 12 13 18 12 18 9.4 11 9.8 0 3.4 15 9.7 13 11;
14 16 18 12 29 19 22 33 23 24 18 15 15 20 13 15 11 8 6.8 3.4 0 17 11 15 14;
30 32 34 28 34 25 23 38 36 40 34 18 18 23 29 31 23 24 23 15 17 0 8 2.3 14;
25 27 28 23 31 21 20 35 30 34 28 15 14 21 24 25 18 19 18 9.7 11 8 0 6.1 11;
28 31 32 26 32 23 22 36 34 38 32 16 16 21 27 29 21 22 21 13 15 2.3 6.1 0 12;
27 29 31 25 21 14 12 22 23 23 18 6.8 6.9 9.8 18 21 15 21 20 11 14 14 11 12 0;
]
dib=[5 6.7 6.8 7.4 23 15 18 30 15 12 14 23 22 29 15 9.3 15 13 16 22 19 35 30 33 30;
5 6.7 6.8 7.4 23 15 18 30 15 12 14 23 22 29 15 9.3 15 13 16 22 19 35 30 33 30;
13 14 14 16 15 8.1 11 23 4.7 2.8 5.5 16 15 22 5.6 5.3 11 18 19 23 20 36 31 34 22;
13 14 14 16 15 8.1 11 23 4.7 2.8 5.5 16 15 22 5.6 5.3 11 18 19 23 20 36 31 34 22;
23 27 29 24 8.6 4.9 4.1 15 14 14 8.5 3.1 2.4 7.4 12 13 13 22 23 15 18 20 17 19 9.3;
16 23 23 14 23 13 14 24 17 17 11 7.4 8.1 13 6.3 9.8 4.2 14 13 5.5 6.9 19 14 18 11;
25 28 29 23 30 20 19 31 31 35 29 13 13 18 21 26 18 19 18 10 12 4.7 3.3 2.9 9.1;
25 28 29 23 30 20 19 31 31 35 29 13 13 18 21 26 18 19 18 10 12 4.7 3.3 2.9 9.1;
]
dis=zeros(1,x)
fis=zeros(1,x)
ratio=zeros(1,x)
po=zeros(x,z)
jio=ones(1,x)
i=1
for k=1:x
r=1
while r<=sizer(1,k) & i<=z
po(k,r)=a(1,i)
r=r+1
if i>z
break
end
i=i+1
end
end
for k=1:x
for i=1:z
if i<sizer(1,k) & sizer(1,k)>1
jio(1,k)=jio(1,k)+cap(1,po(k,i))
dis(1,k)=dis(1,k)+tim(po(k,i),po(k,i+1))
fis(1,k)=fis(1,k)+0.249*tim(po(k,i),po(k,i+1))*jio(1,k)
else
break
end
end
end
for k=1:x
if sizer(1,k)>0
jio(1,k)=jio(1,k)+cap(1,po(k,sizer(1,k)))
dis(1,k)=dis(1,k)+dib(k,po(k,1))+dib(k,po(k,sizer(1,k)))
fis(1,k)=fis(1,k)+0.249*dib(k,po(k,1))+0.249*dib(k,po(k,sizer(1,k)))*jio(1,k)
end
end
for k=1:x
vit=0
for i=1:z
if i<=sizer(1,k)
vit=vit+cap(po(k,i))
end
end
if vit>0
ratio(1,k)=(dis(1,k)*15)/vit
end
end
disp("below is total distatnce")
disp(sum(dis))
disp("below is total distance covered by each vehicle")
disp(dis)
disp("below is this is capacity ratio for each vehicle")
disp(ratio)
disp(po)
disp("below is total carbon emission for each vehicle")
disp(fis)
disp("below is total carbon emission")
disp(sum(fis))
disp("below is route")
sup=a
gd=sizer
tomp=zeros(x)
for j=1:x
if(j==1)
tomp(j)=gd(j)
else
tomp(j)=tomp(j-1)+gd(j)
end
end
fine=zeros(x,z)
for j=1:x
if j==1 then
for k=1:tomp(j)
fine(j,k)=sup(k)
end
else
i=1
for k=tomp(j-1)+1:tomp(j)
fine(j,i)=sup(k)
i=i+1
end
end
end
namer=['CHEDIKULAM' 'URUPUMKUTTY' 'EDAPUZHA' 'EDOOR' 'KOLAYAD' 'VELLARVALLY' 'ARYAPARAMBA' 'PERUVA' 'KAPPAD' 'ATTENCHERY' 'PERAVOOR' 'MALOOR' 'THRIKADARIPOIL' 'THODEEKKALAM' 'EDATHOTTY' 'PALAPPUZHA' 'THALIPPOYIL' 'VATTIARA' 'PERUMPARAMBU' 'PADIKACHAL' 'PUNNAD' 'KODOLIPRAM' 'MARUTHAYI' 'VELLIYAMPARAMBA KSS LTD' 'KANHILERI'
]
bmc=["KEEZHPALLY" "KEEZHPALLY" "ODEMTHODE" "ODEMTHODE" "THOLUMBRA" "THILLANKERI" "PAZHASSI RAJA NAGAR" "PAZHASSI RAJA NAGAR"
]
yum=0
for i=1:1:x
for j=1:z
if fine(i,j)>0
if j==1
disp(bmc(i))
disp(dib(i,fine(i,j)))
yum=yum+dib(i,fine(i,j))
end
disp(namer(fine(i,j)))
if j~=gd(i) then
disp(tim(fine(i,j),fine(i,j+1)))
yum=yum+tim(fine(i,j),fine(i,j+1))
end
if j==gd(i)
disp(dib(i,fine(i,j)))
yum=yum+dib(i,fine(i,j))
disp(bmc(i))
end
end
end
end
disp(yum)
|
b72f5b9203e5cbb06e75f314017f0b84606b2715 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1460/CH4/EX4.7/4_7.sce | 3df6261be7f2db38706a621a3150b23a3f1b7d49 | [] | 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 | 229 | sce | 4_7.sce | clc
//Initialization of variables
w1=100 //lbm
w2=2 //lbm
h1=127 //B/lbm
h2=125 //B/lbm
hc=401 //B/lbm
//calculations
ht1=w1*h1
ht2=w2*h2
ht3=(w1+w2)*hc
Q=ht3-ht1-ht2
//results
printf("Heat liberated = %d B/sec",Q)
|
30bee161bc13c7b35c97929073787c76638b6af4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1985/CH3/EX3.2/Chapter3_Example2.sce | 7b96577bc6592312fa25775cffd818191aafb854 | [] | 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 | 230 | sce | Chapter3_Example2.sce |
clc
clear
//INPUT DATA
c=3*10^8;//Speed of light in m/s
//CALCULATIONS
v=((sqrt(3)*c)/2)/10^8//Speed in m/s
//OUTPUT
mprintf('The mass of the object is double its mass at rest, when its speed is %3.3f*10^8 m/s',v)
|
f39e7c7bdc7c28962d82b8ad02e56c15e1ad1685 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1118/CH14/EX14.2/eg14_2.sce | eeff87b465084cf8ed8cfa0d3d57f3a116d52249 | [] | 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 | 343 | sce | eg14_2.sce | clear;
clc;
y= [- 12*(%i) (%i)*5 0 (%i)*2 (%i)*5;5*(%i) -(%i)*9 (%i)*4 0 0;0 4*(%i) -(%i)*7.33 (%i)*3.33 0;(%i)*2 0 3.33*(%i) -(%i)*9.33 (%i)*4;5*(%i) 0 0 (%i)*4 -(%i)*9]
Y=y;
z25=(%i)*.4;
i=2;
j=5;
y(i,j)=1/z25;
y(i,i)=Y(i,i)+y(i,j);
y(j,j)=Y(j,j)+y(i,j);
y(i,j)=-y(i,j);
y(j,i)=y(i,j);
disp(y)
|
7a9410c9933d8d2dc0979e75dd10b15250fb4301 | 717ddeb7e700373742c617a95e25a2376565112c | /284/CH8/EX8.1/ex_1.sce | a564c8681f49470e09b1f1ffdbd9df2cfb86aa5f | [] | no_license | appucrossroads/Scilab-TBC-Uploads | b7ce9a8665d6253926fa8cc0989cda3c0db8e63d | 1d1c6f68fe7afb15ea12fd38492ec171491f8ce7 | refs/heads/master | 2021-01-22T04:15:15.512674 | 2017-09-19T11:51:56 | 2017-09-19T11:51:56 | 92,444,732 | 0 | 0 | null | 2017-05-25T21:09:20 | 2017-05-25T21:09:19 | null | UTF-8 | Scilab | false | false | 595 | sce | ex_1.sce | // Chapter 8_Metal Semiconductor and Semiconductor heterojunctions
//Caption_Shottky barrier diode
//Ex_1//page 308
T=300 //temperature in kelvin
Nd=10^16 //donor impurity
phi_m=4.55 //metal work function for tungsten
xi=4.01 //electron affinity for silicon
phi_bo=phi_m-xi
phi_n=0.0259*log(2.8*10^19/Nd)
Vbi=phi_bo-phi_n
xn=(2*eps*Vbi/(e*Nd))^0.5 //space charge width at zero bias
Emax=e*Nd*xn/eps //maximum electric field
printf('Theoritical barrier height is %f V, built-in potential barrier is %f V and maximium electric field is %f V/cm', phi_bo,phi_n,Emax) |
8ff32efdb1ac480302908ba5a16c388debcfd426 | d9433e89434ee8d62d3e576fb874618e0faf8b6c | /p2-C.sce | bfdcf5974c476bc329ed178b2be969c71314582b | [] | no_license | wps13/STD | 125f62aa98bcbe3f29eed9e20d5f9e8a2f3a34eb | 2e132f31d71a68ee52ebf1994f9c6062db6eb4d6 | refs/heads/master | 2020-04-07T01:26:44.358619 | 2018-12-22T01:48:21 | 2018-12-22T01:48:21 | 157,941,582 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 686 | sce | p2-C.sce | load('/home/willane/Downloads/p2STD/xa_10_1.sod')
x1 = x_a
load('/home/willane/Downloads/p2STD/xa_26_1.sod')
x2 = x_a
load('/home/willane/Downloads/p2STD/xa_43_1.sod')
x3 = x_a
x = [x1 x2 x3]
Xf = fft(x)
N = length(x)
fs=35000 //taxa de amostragem
periodo = 1/fs
t = linspace(0,N/264600,N)
function sinal_amostrado = amostragem_sinal(tempo,sinal,periodo_amostragem)
N = length(sinal);
n=0;
for k=1:N
if tempo(k)>n*periodo_amostragem
sinal_amostrado(n+1) = sinal(k)
n=n+1
end
end
endfunction
sinalFinal = amostragem_sinal(t,x,periodo)
Sf = fft(sinalFinal)
tam = length(Sf)/2
Sf = Sf(1:tam)
plot2d3(abs(Sf))
|
f324a70e60de6c5a9584184a7fb90a0db8d4a0b1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /623/CH21/EX4.4.8/U4_C4_8.sce | 7b8eb782fb0440ea094cade39d804f9d4f5d8d3f | [] | 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 | 822 | sce | U4_C4_8.sce | //variable initialization
m=9.1*10^-31; //mass of electron (Kg)
h=1.054*10^-34; //Plank's constant (Js)
B=1.2 //magnetic field (mu*b/m^2)
gs=2 //for a pure spin system
J=0.5; //for a pure spin system
//calculation
mub=h/(2*m); //(eV/T)
deltaE=2*gs*mub*B*J; //energy difference b/w electrons(eV)
printf("\n ΔE = %.2e eV",deltaE);
|
bc7cd9b4acd57aabdf9e65a730b0a3f1c5a3e4fb | 449d555969bfd7befe906877abab098c6e63a0e8 | /174/CH2/EX2.3/example2_3.sce | b80d66cbe7558e2eb1d6838d1f3b95fa3dd8bd5f | [] | 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 | example2_3.sce | // To convert velocity to a different unit
// Modern Electronic Instrumentation And Measurement Techniques
// By Albert D. Helfrick, William D. Cooper
// First Edition Second Impression, 2009
// Dorling Kindersly Pvt. Ltd. India
// Example 2-3 in Page 29
clear; clc; close;
// Given data
c_s = 2.997925 * 10^8; // velocity in m/s
//Calculations
c_hr = 2.997925 *10^8* 1/10^3* 3.6*10^3; // velocity in km/hr
printf("The velocity of light in km/hr = %0.3e km/hr",c_hr);
//Result
// The velocity of light in km/hr = 1.079e+009 km/hr |
fedb982ff63f8472ce956956f1609c8d7caa0adc | 4a1effb7ec08302914dbd9c5e560c61936c1bb99 | /Project 2/Experiments/GFS-GCCL-C/results/GFS-GCCL-C.abalone-10-1tra/result5s0.tst | 30d85f5adc4c275ed36d61c841bc425234586275 | [] | no_license | nickgreenquist/Intro_To_Intelligent_Systems | 964cad20de7099b8e5808ddee199e3e3343cf7d5 | 7ad43577b3cbbc0b620740205a14c406d96a2517 | refs/heads/master | 2021-01-20T13:23:23.931062 | 2017-05-04T20:08:05 | 2017-05-04T20:08:05 | 90,484,366 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,518 | tst | result5s0.tst | @relation abalone
@attribute Sex{M,F,I}
@attribute Length real[0.075,0.815]
@attribute Diameter real[0.055,0.65]
@attribute Height real[0.0,1.13]
@attribute Whole_weight real[0.002,2.8255]
@attribute Shucked_weight real[0.001,1.488]
@attribute Viscera_weight real[5.0E-4,0.76]
@attribute Shell_weight real[0.0015,1.005]
@attribute Rings{15,7,9,10,8,20,16,19,14,11,12,18,13,5,4,6,21,17,22,1,3,26,23,29,2,27,25,24}
@inputs Sex,Length,Diameter,Height,Whole_weight,Shucked_weight,Viscera_weight,Shell_weight
@outputs Rings
@data
9 8
14 9
9 8
11 9
13 11
8 8
7 9
8 9
9 8
11 9
9 8
9 8
11 9
6 7
12 10
12 10
13 10
12 10
12 9
13 9
11 8
10 8
7 6
17 9
14 9
22 10
10 9
17 9
4 6
5 6
14 9
12 9
18 10
9 8
12 9
7 8
11 9
18 10
20 9
14 10
12 10
10 9
12 10
13 9
11 9
17 10
15 10
17 10
5 6
10 9
11 8
11 8
11 9
10 9
12 9
9 9
16 9
12 9
12 9
5 6
15 8
21 9
10 8
16 9
13 8
11 6
7 6
10 8
13 10
15 9
15 9
13 9
12 9
15 9
11 9
10 8
5 6
6 6
6 8
7 8
8 9
10 9
10 9
9 10
12 10
9 10
3 6
6 6
7 8
6 8
7 8
7 8
9 8
8 9
8 9
9 9
8 9
8 9
10 9
9 9
10 10
11 10
10 11
10 11
11 10
4 6
5 6
6 6
7 9
7 8
7 8
9 9
10 9
10 10
11 10
9 10
9 10
10 11
8 11
5 6
5 6
5 6
8 8
8 8
9 9
8 9
8 9
8 9
11 9
10 9
10 9
9 10
13 11
11 11
7 8
9 8
8 9
8 9
9 10
8 9
10 11
6 6
7 6
8 8
7 8
8 8
8 9
10 9
9 9
8 9
9 9
8 9
11 9
8 11
8 9
10 9
10 10
10 10
8 10
13 11
10 10
11 10
12 11
13 11
7 8
9 8
9 8
10 8
7 9
8 9
10 9
10 10
9 9
11 10
7 6
6 7
7 9
6 8
10 9
10 9
9 9
8 9
10 9
9 9
10 9
10 9
8 9
11 10
11 10
12 10
4 4
6 6
5 6
7 6
10 8
9 9
9 9
10 9
9 11
6 8
8 9
8 9
11 11
11 9
19 9
11 8
10 9
15 9
9 8
11 8
12 9
9 9
7 6
10 8
18 11
12 11
6 9
12 9
14 9
13 8
6 6
21 10
19 9
13 11
13 11
7 9
8 8
11 9
10 9
20 10
9 8
7 9
9 9
10 9
7 8
23 9
7 6
11 9
14 10
14 9
16 8
10 9
13 6
11 8
9 8
9 9
20 9
14 10
14 8
11 10
9 9
6 6
8 9
9 9
9 9
15 11
10 11
10 11
4 7
5 6
5 6
8 8
6 8
9 8
7 8
9 9
8 9
10 10
8 10
9 10
9 11
6 9
7 8
8 8
8 9
9 9
10 9
9 10
3 7
7 8
8 8
8 9
8 9
9 10
10 10
6 6
7 9
9 10
7 8
9 9
8 9
11 9
9 9
10 10
9 10
11 10
15 11
12 10
10 11
10 10
13 11
8 9
8 9
12 11
4 6
6 9
7 8
8 9
8 9
9 10
11 10
10 10
7 8
9 9
5 4
9 9
13 9
9 8
12 8
16 11
14 9
14 10
14 10
16 10
11 9
15 10
9 8
6 8
12 9
17 9
12 8
11 9
9 9
11 11
13 10
10 7
12 9
16 10
10 9
11 9
13 9
12 9
11 8
13 10
19 9
10 8
8 8
10 9
7 6
8 8
6 8
8 9
7 9
8 10
9 10
6 9
6 8
8 8
7 8
9 9
9 9
9 10
7 8
10 9
8 8
10 9
10 9
11 10
9 10
11 11
8 9
10 10
6 8
7 8
9 9
9 9
11 10
9 10
13 10
12 11
10 10
11 11
9 9
18 10
9 9
15 9
12 8
10 8
11 9
10 9
16 10
6 6
11 9
10 9
6 6
6 9
7 9
10 10
7 8
8 9
11 11
11 9
11 11
11 10
8 8
9 9
9 10
9 11
11 10
9 11
7 8
8 8
8 8
10 10
8 8
11 10
10 9
|
6c3764a990b55a746426443797e3e60cc3d7174b | 270c239ad1a53c003654a7b02b6ed1e7d2ae17bd | /salt/20300/UKA/Workflow/saltcheck-tests/install.tst | 5c41279dcd26e6f2d3dc30b35c9aa0ecad16bdc5 | [] | no_license | smerugumala/SumTFinalBuilds | 8f024c5e2a7cea534789f9d61ddaafbce97b57fd | f75bd81ab050d1a5c71c2af61aaa309b68c0f054 | refs/heads/main | 2023-02-11T22:26:24.576871 | 2021-01-08T12:10:18 | 2021-01-08T12:10:18 | 327,892,208 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 405 | tst | install.tst | {% import "20300/UKA/Workflow/vars.sls" as base %}
{% set trialset = salt['network.ipaddrs']( ) %}
{% set val= trialset | replace("[u'", "") %}
{% set ip_addr= val| replace("']", "") %}
check values for listeners{{ip_addr}}:
module_and_function: file.search
args:
- {{ base.kafka_config_path }}
- listeners=PLAINTEXT://{{ip_addr}}
assertion: assertTrue
output_details: True
|
f6d34f6249c370df1dc3a4d3d1bc93e7f40f0ec1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /881/CH5/EX5.8/exa5_8.sce | 6c3d0e954a106b50788a285a5658d143c4bbfe4c | [] | 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 | 360 | sce | exa5_8.sce | clc;
//Example 5.8
//Page no 198
//solution
A=-80; //dB
G1=33; //dB
G2=47; //dB
G3=25; //dB
G=G1+G2+G3;
disp('dB',G,"The sum of the gains is, ");
L1=3; //dB
L2=6; //dB
L3=8; //dB
L=L1+L2+L3;
disp('dB',L,"The sum of the losses is, ");
G4=G-L;
disp('dB',G4,"Thus, net receiver gains is, ");
B=A+G4;
disp('dBm',B,"and the audio signal level is, ");
|
0ed9483a5a930c005f6241b52b0801c7df984190 | 3c47dba28e5d43bda9b77dca3b741855c25d4802 | /microdaq/macros/mdaqClose.sci | 93e6c726a00316674c41e3aa982deb7892a19c07 | [
"BSD-3-Clause"
] | permissive | microdaq/Scilab | 78dd3b4a891e39ec20ebc4e9b77572fd12c90947 | ce0baa6e6a1b56347c2fda5583fb1ccdb120afaf | refs/heads/master | 2021-09-29T11:55:21.963637 | 2019-10-18T09:47:29 | 2019-10-18T09:47:29 | 35,049,912 | 6 | 3 | BSD-3-Clause | 2019-10-18T09:47:30 | 2015-05-04T17:48:48 | Scilab | UTF-8 | Scilab | false | false | 400 | sci | mdaqClose.sci | function mdaqClose(link_id)
if argn(2) == 1 then
if link_id < 0 then
error("ERROR: Invalid connection id!");
end
result = call("sci_mlink_disconnect",..
link_id, 1, "i",..
"out",..
[1, 1], 2, "i");
else
call("sci_mlink_disconnect_all", "out", [1, 1], 1, "i");
end
endfunction
|
8b17a802e52cb66536d0d230440fcc3081dfb9b6 | 9b68b3d73b63ebcbfe18cc9a4aa8e91c84833a84 | /tests/libs/hdf5/test-h5-wrappers-new/FORTRAN/H5D/testfiles/110/h5ex_d_gzip.tst | 9efcd78a5161e65c0f8b45be18d8465f7590fab7 | [
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-llnl",
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0",
"LicenseRef-scancode-hdf4"
] | permissive | openhpc/ohpc | 17515db5082429eb9f250f12bf242b994beb715f | 725a1f230434d0f08153ba1a5d0a7418574f8ae9 | refs/heads/3.x | 2023-08-19T02:15:14.682630 | 2023-08-18T19:33:51 | 2023-08-18T19:34:18 | 43,318,561 | 827 | 247 | Apache-2.0 | 2023-09-14T01:22:18 | 2015-09-28T18:20:29 | C | UTF-8 | Scilab | false | false | 74 | tst | h5ex_d_gzip.tst | Filter type is: H5Z_FILTER_DEFLATE_F
Maximum value in DS1 is: 1890
|
f26fcf151679236ca73a8329ced1fda6366fcc03 | 449d555969bfd7befe906877abab098c6e63a0e8 | /405/CH11/EX11.5/11_5.sce | c4439d9988fd4db40bd0ea63f6681016a63871db | [] | 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 | 11_5.sce | clear;
clc;
printf("\t\t\tExample Number 11.5\n\n\n");
// water evaporation rate
// Example 11.5(page no.-593-594)
// solution
Ta = 38+273;// [K] temperature of atmospheric air
RH = 0.30;// relative humidity
u = 10;// [mi/h] mean wind speed
R = 0.287;// universal gas constant
Dw = 0.256*10^(-4);// [square meter/s] from table A-8(page no.-610)
rho_w = 1000;// [kg/cubic meter]
// for this calculation we can make use of equation(11-36). from thermodynamic steam tables
p_g = 6.545;// [kPa] at 38 degree celsius
p_s = p_g;// [kPa]
p_w = RH*p_s;// [kPa]
p_s = 1.933;// [in Hg]
p_w = 0.580;// [in Hg]
// also
u_bar = u*24;// [mi/day]
// equation(11-36) yields, with the application of the 0.7 factor
E_lp = 0.7*(0.37+0.0041*u_bar)*(p_s-p_w)^(0.88);// [in/day]
E_lp = E_lp*2.54/100;// [m/day]
// noting that standard pan has the diameter of 1.2m, we can use the figure to calculate the mass evaporation rate per unit area as
m_dot_w_by_A = E_lp*rho_w/24;// [kg/h square meter]
// as a matter of interest, we might calculate the molecular-diffusion rate of water vapour from equation(11-35), taking z1 as the 1.5m dimension above the standard pan.
z1 = 1.5;// [m]
// since rho = p/(R*T)
// equation(11-35) can be written as
m_dot_w_by_A1 = 0.622*Dw*p_g*3600/(R*Ta*z1);// [kg/h square meter]
printf("evaporation rate on the land under these conditions is %e kg/h square meter",m_dot_w_by_A1);
|
ba59a8b7b8b612ad24903ef927dd1a44e931f452 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2885/CH2/EX2.1/ex2_1.sce | e39664f7307cec8654f170c8f342af297bee800a | [] | 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 | 477 | sce | ex2_1.sce | //Calculate the conductivity and resistivity of germanium
clear;
clc;
//soltion
//given
q=1.6*10^-19;//Coulomb //charge of an electron
ni=2.5*10^19;//per m^3 //concentration
un=0.36;//m^2/Vs //mobility of electron
up=0.17;//m^2/Vs //mobility of holes
con=q*ni*(un+up); //conductivity
res=(1/con); //resistivity
printf("The conductivty is %.2f S/m \n",con);
printf("The resistivity is %.2f Ωm",res);
|
f3abf488b171509f6f5edbb1d29b7517e470258c | 449d555969bfd7befe906877abab098c6e63a0e8 | /3845/CH31/EX31.3/Ex31_3.sce | 2d89d117c8e43a0f3da096aa26d9330828b6d4b1 | [] | 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 | 580 | sce | Ex31_3.sce | //Example 31.3
format('v',11)
m_parent=59.933819;//Atomic mass of parent nucleus (Co 60) (u), See Appendix A
m_final=59.930788;//Final atomic mass of product of decay (Ni 60) (u), See Appendix A
delta_m=m_parent-m_final;//Difference in mass (u)
E=delta_m*931.5;//Energy emitted in decay (MeV)
//E=delta_m*c^2, but 1 u=931.5MeV/c^2
printf('Energy emitted in decay = %0.2f MeV',E)
//There is a small variation in the values used in the textbook and the ones found in Appendix A
//Openstax - College Physics
//Download for free at http://cnx.org/content/col11406/latest
|
756fb5f72d5636ea46dabf631ce80f96eb0529ec | bacd6919260d728f4316702bbe1edf811810bede | /legacy/37.one.good/console/Untitled34_tails.sce | fe284dc53018a5dbd46bdc7a9231850945236d63 | [] | no_license | vopl/sp | 332d8c2ff536fc5d8772ff2f3fbeca9b50c47641 | a4313f4d7af47cc3132d7546947d4d668c7e487e | refs/heads/master | 2020-04-16T02:09:36.036424 | 2016-10-05T18:08:30 | 2016-10-05T18:08:30 | 65,293,458 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 239 | sce | Untitled34_tails.sce |
stacksize('max');
clf;
w = 5925;
tail = read("P:\finance\spectrumSeparator\nhel.Composite\20.1.goertzel.7\console\tail",-1,w);
h = size(tail,1);
plot(tail(1,:),'b');
hh=3;
if hh<=h then
plot(tail(hh,:),'r');
end;
|
04aa08f7a50d5a8855d1531116aede71de43beae | 96bfb0f9ada9bbaae6290fe6c1b0eb61622cf75a | /contours.sce | d66e4e3f89860bec1fa888f7877e9b2a47930166 | [] | no_license | mmahmed15/Incompressible-CFD-Solver | 5494efb45b144f14f5a36e22da2109016168fb28 | 4f7e7a122aa7c2fd8c53929a758cf63f78714d35 | refs/heads/master | 2022-03-05T22:04:11.206165 | 2019-10-10T18:15:11 | 2019-10-10T18:15:11 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 456 | sce | contours.sce | clear
clc
close
x=[1:1:7]
y=x
scf(1)
filename="p.csv"
p = csvRead(filename)
pp=p'
contourf(x,y,p,20)
//contourf(x,y,T,8,3:8,"111"," ",rect=[0,0,6,4])
title("p")
scf(2)
filename="u.csv"
u = csvRead(filename)
uu=u'
contour2d(x,y,u,20)
//contourf(x,y,T,8,3:8,"111"," ",rect=[0,0,6,4])
title("u")
scf(3)
filename="v.csv"
v = csvRead(filename)
vv=v'
contour2d(x,y,v,20)
//contourf(x,y,T,8,3:8,"111"," ",rect=[0,0,6,4])
title("v")
|
2a7e86a0c1b28da10c0bcf3b970a2fc1f239b175 | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/ngram/5.13_3.tst | 90249c18dc9b82b782dd73549a41e91cb7154147 | [] | no_license | mandar15/NLP_Project | 3142cda82d49ba0ea30b580c46bdd0e0348fe3ec | 1dcb70a199a0f7ab8c72825bfd5b8146e75b7ec2 | refs/heads/master | 2020-05-20T13:36:05.842840 | 2013-07-31T06:53:59 | 2013-07-31T06:53:59 | 6,534,406 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 262,576 | tst | 5.13_3.tst | 13 1193:1 1351:1 1399:1 1412:1 1611:1 2026:1 2310:1 2725:1 3536:1 3614:1 4048:1 5023:1 5306:1 6563:1 6807:1 7096:1 9339:1 10287:1 10986:1 12265:1 12752:1 12779:1 12917:1 13087:1 13582:1 13887:1 13981:1 14047:1 14147:1 14199:1 16393:40 16952:1 17175:1 17763:1 18035:1 18634:1 18909:1 19561:1 19766:1 20049:1 20183:1 20322:1 20466:1 21106:1 21319:1 24067:1 24105:1 24257:1 24716:1 24928:1 24974:1 25536:1 25640:1
13 1193:1 1351:1 1399:1 1412:1 1611:1 2026:1 2130:1 2310:1 2554:1 2725:1 3452:1 3517:1 3536:1 3584:1 3614:1 3827:1 3914:1 4048:1 5023:1 5306:1 5326:1 6138:1 6563:1 6761:1 6807:1 6877:1 7096:1 7880:1 8500:1 8507:1 8633:1 8740:1 9339:1 9400:1 10228:1 10244:1 10287:1 10610:1 10986:1 11061:1 12130:1 12265:1 12452:1 12585:1 12752:1 12779:1 12917:1 13087:1 13244:1 13582:1 13887:1 13981:1 14047:1 14147:1 14199:1 15612:1 15916:1 16393:51 16742:1 16952:1 17076:1 17080:1 17175:1 17199:1 17748:1 17763:1 17948:1 18035:1 18168:1 18634:1 18909:1 19045:1 19278:1 19561:1 19766:1 19838:1 20049:1 20093:1 20183:1 20235:1 20322:1 20331:1 20360:1 20466:1 20767:1 21038:1 21106:1 21319:1 22406:1 22454:1 22848:1 22875:1 23024:1 23366:1 24067:1 24105:1 24257:1 24682:1 24716:1 24928:1 24974:1 25099:1 25536:1 25640:1 26031:1
13 149:1 618:1 878:1 1193:1 1351:1 1399:1 1412:1 1498:1 1611:1 1805:1 2026:1 2130:1 2310:1 2554:1 2568:1 2725:1 3206:1 3293:1 3355:1 3452:1 3517:1 3526:1 3536:1 3572:1 3584:1 3604:1 3614:1 3827:1 3839:1 3914:1 4048:1 4055:1 4318:1 4392:1 4650:1 4833:1 5023:1 5065:1 5306:1 5326:1 6138:1 6482:2 6563:1 6666:1 6761:1 6807:1 6877:3 7096:1 7880:1 8215:1 8500:1 8507:1 8633:1 8740:1 8743:1 9251:1 9339:1 9400:1 9721:1 9745:1 9993:1 10112:2 10179:1 10228:1 10244:1 10287:1 10502:1 10610:1 10947:1 10986:1 11061:1 12126:1 12130:1 12265:1 12452:1 12462:1 12585:1 12752:1 12779:1 12829:1 12871:1 12917:1 13087:1 13244:1 13349:1 13582:1 13887:1 13981:1 14047:1 14147:1 14158:1 14199:1 15035:1 15612:1 15792:1 15916:1 16326:1 16393:98 16675:2 16742:1 16771:1 16952:1 17076:1 17079:1 17080:1 17175:1 17199:1 17748:1 17763:1 17948:1 17961:1 18035:1 18168:1 18634:1 18655:1 18683:1 18909:1 19045:1 19264:1 19278:1 19561:1 19766:1 19838:1 20049:1 20093:1 20183:1 20235:1 20322:1 20331:1 20360:1 20466:1 20530:1 20767:1 20953:1 20984:1 21038:1 21106:1 21319:1 21555:1 22406:1 22407:1 22454:1 22620:1 22848:1 22875:1 23024:1 23366:1 23466:2 23657:1 24067:1 24105:1 24130:1 24257:1 24682:1 24716:1 24928:1 24974:1 25099:1 25407:1 25536:1 25640:1 25662:1 25867:1 26031:1
13 149:1 357:1 618:1 878:1 1193:1 1351:1 1399:1 1412:1 1498:2 1611:1 1805:1 2026:1 2034:1 2130:1 2310:1 2554:1 2568:2 2725:1 3199:1 3206:1 3293:1 3355:1 3452:1 3517:1 3526:1 3536:1 3572:1 3584:1 3604:1 3614:1 3827:1 3839:1 3880:1 3914:1 4048:1 4055:1 4318:1 4392:2 4580:1 4650:1 4833:1 5023:1 5065:1 5306:1 5326:1 6138:1 6482:3 6531:1 6563:1 6666:1 6761:1 6807:1 6877:3 7096:1 7161:1 7474:1 7880:1 7881:1 8215:1 8500:1 8507:1 8633:1 8740:1 8743:1 9251:1 9339:1 9400:1 9721:1 9745:1 9993:1 10112:3 10179:1 10228:1 10244:1 10287:1 10502:1 10610:1 10637:1 10640:1 10947:1 10986:1 11061:1 11658:1 12126:1 12130:1 12263:1 12265:1 12452:1 12462:1 12585:1 12752:1 12779:1 12829:1 12871:1 12917:1 13061:1 13073:1 13087:1 13244:1 13349:2 13582:1 13887:1 13981:1 14047:1 14147:1 14158:1 14199:1 14419:1 14846:1 15035:1 15612:1 15764:1 15792:1 15916:1 15968:1 16326:1 16359:1 16393:113 16675:3 16742:1 16771:1 16829:1 16939:1 16952:1 17076:1 17079:1 17080:1 17175:1 17199:1 17748:1 17763:1 17948:1 17961:1 18035:1 18168:1 18634:1 18655:1 18683:1 18909:1 19045:1 19264:2 19278:1 19561:1 19766:1 19838:1 19864:1 19991:1 20049:1 20093:1 20183:1 20235:1 20322:1 20331:1 20360:1 20466:1 20530:1 20748:1 20767:1 20953:1 20984:1 21038:1 21106:1 21319:1 21555:1 22406:1 22407:2 22454:1 22558:1 22620:1 22829:1 22848:1 22875:1 23024:1 23366:1 23466:3 23657:1 24067:1 24105:1 24130:1 24186:1 24257:1 24682:1 24716:1 24928:1 24974:1 25099:1 25407:1 25536:1 25640:1 25662:1 25867:1 25967:1 26027:1 26031:1
13 149:2 251:1 357:1 525:1 618:2 820:1 878:1 1193:1 1351:1 1395:1 1399:1 1412:1 1465:1 1472:1 1498:2 1611:1 1805:1 1919:1 2026:1 2034:1 2130:1 2287:1 2310:1 2554:1 2568:2 2725:1 3087:1 3199:1 3206:2 3293:1 3355:1 3424:1 3452:1 3517:1 3526:1 3536:1 3572:1 3584:1 3604:1 3614:1 3827:1 3839:2 3880:1 3914:1 4048:2 4055:1 4147:1 4318:2 4392:2 4402:1 4414:1 4580:1 4650:1 4712:1 4833:1 4841:1 5023:1 5065:1 5306:1 5326:1 5514:2 5865:1 6006:1 6138:1 6147:1 6197:1 6290:1 6482:3 6531:1 6563:1 6666:1 6761:1 6786:1 6807:1 6877:3 7096:2 7161:1 7474:1 7592:1 7599:1 7880:1 7881:1 7989:1 8215:1 8486:1 8500:1 8507:1 8591:1 8633:1 8660:1 8740:1 8743:1 9103:1 9149:1 9241:1 9251:1 9339:1 9400:1 9646:1 9721:1 9745:1 9993:1 10112:3 10179:1 10228:1 10244:1 10280:1 10287:1 10300:1 10502:1 10503:1 10610:1 10637:1 10640:1 10656:1 10721:1 10947:1 10978:1 10986:1 11061:1 11196:1 11496:1 11558:1 11658:1 11778:1 11855:1 12126:1 12130:1 12263:1 12265:1 12342:1 12452:1 12462:1 12585:1 12752:1 12776:1 12779:1 12829:2 12871:1 12917:1 13061:1 13073:1 13087:1 13115:1 13244:1 13349:2 13582:1 13666:1 13819:1 13887:1 13981:1 14047:1 14147:1 14158:2 14199:1 14419:1 14800:1 14846:1 14982:1 15035:1 15041:1 15198:1 15612:1 15738:1 15764:1 15792:1 15916:1 15968:1 16067:1 16130:1 16326:2 16359:1 16393:141 16493:1 16653:1 16675:3 16706:1 16742:1 16771:1 16829:1 16853:1 16939:1 16952:1 17076:1 17079:1 17080:1 17175:1 17199:1 17439:1 17748:1 17763:1 17948:1 17961:1 18016:1 18035:1 18067:1 18168:1 18451:1 18634:1 18655:1 18683:1 18865:1 18909:1 19045:1 19190:1 19264:2 19278:1 19333:1 19561:1 19609:1 19766:1 19838:1 19864:1 19991:1 20049:2 20093:1 20183:1 20235:1 20236:1 20322:1 20331:1 20360:1 20466:1 20530:1 20748:1 20767:1 20775:1 20953:1 20984:1 21038:1 21106:1 21319:1 21555:1 22270:1 22355:1 22406:1 22407:2 22454:1 22558:1 22620:1 22696:1 22730:1 22829:1 22848:1 22875:1 22946:1 23024:1 23366:1 23466:3 23657:1 24067:1 24105:1 24130:2 24186:1 24257:1 24343:1 24373:1 24514:1 24682:1 24716:1 24928:1 24934:2 24974:1 25099:1 25407:1 25408:1 25452:1 25476:1 25536:1 25640:1 25662:1 25867:1 25878:1 25967:1 26027:1 26031:1 26126:1
13 149:2 251:1 357:1 525:1 618:2 820:1 878:1 1089:1 1193:1 1351:1 1395:1 1399:1 1412:1 1465:1 1472:1 1498:2 1611:1 1805:1 1919:1 1993:1 2026:1 2034:1 2130:1 2287:1 2310:1 2534:1 2554:1 2568:2 2641:1 2725:1 3005:1 3087:1 3199:1 3206:2 3227:1 3293:1 3355:1 3424:1 3452:1 3517:1 3526:1 3536:1 3572:1 3584:1 3604:1 3614:1 3827:1 3839:2 3880:1 3914:1 4048:2 4055:1 4089:1 4125:1 4147:1 4165:1 4318:2 4392:2 4402:1 4414:1 4580:1 4650:1 4712:2 4833:1 4841:1 5023:1 5065:1 5306:1 5326:1 5514:2 5865:1 6006:2 6138:1 6147:1 6197:1 6290:1 6482:3 6531:1 6563:1 6666:1 6761:1 6786:2 6807:2 6877:3 7061:1 7096:2 7161:1 7182:1 7474:1 7588:1 7592:1 7599:1 7880:1 7881:1 7925:1 7989:1 8215:1 8486:1 8500:1 8507:1 8591:1 8633:1 8660:1 8740:1 8743:1 8916:1 9103:1 9149:1 9241:1 9251:1 9339:1 9394:1 9400:1 9646:2 9721:1 9745:1 9993:1 10044:1 10112:3 10179:1 10228:1 10244:1 10280:1 10287:1 10300:1 10502:1 10503:1 10610:1 10637:1 10640:1 10650:1 10656:1 10721:1 10947:1 10978:2 10986:1 11061:1 11196:2 11496:1 11552:1 11558:1 11658:1 11778:1 11855:2 12126:1 12130:1 12263:1 12265:1 12342:2 12452:1 12462:1 12585:1 12638:1 12752:1 12776:2 12779:1 12829:2 12871:1 12917:1 12920:1 13061:1 13073:1 13087:1 13115:1 13244:1 13349:2 13582:1 13598:1 13666:1 13819:1 13887:1 13981:1 14047:1 14147:1 14158:2 14199:1 14257:1 14419:1 14704:1 14705:1 14800:1 14846:1 14953:1 14982:1 15035:1 15041:1 15198:1 15248:1 15261:1 15306:1 15487:1 15612:1 15738:1 15758:1 15764:1 15792:1 15916:1 15968:1 16067:1 16130:2 16194:1 16326:2 16359:1 16393:158 16493:1 16653:1 16675:3 16706:1 16742:1 16771:1 16829:1 16853:1 16939:1 16952:1 17076:1 17079:1 17080:1 17175:1 17199:1 17439:1 17526:1 17748:1 17763:1 17948:1 17961:1 18010:2 18016:1 18035:1 18067:1 18168:1 18436:1 18451:1 18634:1 18655:1 18683:1 18865:1 18909:1 19016:1 19045:1 19190:1 19264:2 19278:1 19333:1 19561:1 19609:1 19612:1 19766:1 19778:1 19838:1 19864:1 19991:1 20049:3 20093:1 20183:1 20235:1 20236:1 20256:1 20322:1 20331:1 20360:1 20466:1 20530:1 20748:2 20767:1 20775:1 20953:1 20984:1 21038:1 21106:1 21151:1 21153:1 21319:1 21344:1 21555:1 21747:1 22052:1 22249:1 22270:1 22355:1 22393:1 22406:1 22407:2 22454:1 22558:1 22620:1 22696:2 22730:1 22829:2 22848:1 22875:1 22946:2 23024:1 23145:1 23366:1 23455:1 23466:3 23657:1 24021:1 24067:1 24105:1 24130:2 24186:1 24257:1 24343:1 24373:2 24514:1 24682:1 24716:1 24928:1 24934:2 24974:1 25099:1 25407:1 25408:2 25452:2 25476:1 25536:1 25640:1 25662:1 25867:1 25878:1 25967:1 26027:1 26031:1 26126:2
13 149:2 251:2 357:1 525:1 618:2 736:1 795:1 820:1 878:1 1053:1 1089:1 1193:1 1351:1 1395:1 1399:1 1412:1 1465:1 1472:1 1498:2 1611:2 1670:1 1805:1 1919:1 1951:1 1993:1 2003:1 2026:1 2034:1 2130:1 2287:2 2310:1 2534:1 2554:1 2568:2 2594:1 2641:1 2725:1 3005:1 3087:1 3172:1 3199:1 3206:2 3227:1 3293:1 3337:1 3355:1 3386:1 3424:1 3452:1 3517:1 3526:1 3536:1 3572:1 3584:1 3604:1 3614:1 3827:1 3839:2 3880:1 3914:1 3972:1 4048:3 4055:1 4089:1 4125:1 4147:1 4165:1 4318:2 4392:2 4402:1 4414:1 4580:1 4600:1 4650:1 4712:3 4740:1 4833:1 4841:1 5023:1 5065:1 5306:1 5326:1 5514:2 5865:1 5971:1 6006:3 6138:1 6147:1 6197:1 6290:1 6291:1 6305:1 6482:3 6531:1 6563:1 6666:1 6761:1 6786:3 6807:3 6877:3 7061:1 7096:3 7161:1 7182:1 7474:1 7567:1 7588:1 7592:1 7599:1 7880:1 7881:1 7925:1 7989:1 8215:1 8245:1 8486:2 8500:1 8507:2 8520:1 8591:1 8633:1 8645:1 8660:1 8688:1 8725:1 8740:1 8743:1 8916:1 9103:1 9149:1 9241:1 9251:1 9339:1 9394:1 9400:1 9646:3 9721:1 9745:1 9993:1 10044:1 10112:3 10179:1 10228:1 10244:1 10280:1 10287:1 10300:1 10502:1 10503:2 10610:1 10637:1 10640:1 10650:1 10656:1 10721:1 10947:1 10978:3 10986:1 11061:1 11196:3 11496:1 11552:1 11558:1 11658:1 11778:1 11855:3 12126:1 12130:1 12263:1 12265:1 12342:3 12452:1 12462:1 12580:1 12585:1 12638:1 12752:1 12776:3 12779:1 12829:2 12871:1 12917:1 12920:1 13061:1 13073:1 13087:2 13115:2 13244:1 13349:2 13582:1 13598:1 13666:1 13819:1 13887:1 13981:1 14047:1 14098:2 14147:2 14158:2 14170:1 14199:1 14257:1 14419:1 14704:1 14705:1 14800:1 14805:1 14846:1 14923:1 14953:1 14982:1 15035:1 15041:1 15198:1 15248:1 15261:1 15306:1 15487:1 15612:1 15738:1 15758:1 15764:1 15792:1 15916:1 15966:1 15968:1 16067:1 16130:3 16194:1 16326:2 16359:1 16393:229 16493:1 16653:1 16675:3 16706:1 16742:1 16771:1 16829:1 16853:1 16939:1 16952:2 17076:1 17079:1 17080:1 17175:1 17199:1 17387:1 17394:1 17439:1 17526:1 17748:1 17763:1 17940:1 17948:1 17961:1 18010:2 18016:1 18035:1 18067:1 18168:1 18436:1 18451:1 18634:1 18655:1 18683:1 18865:1 18909:1 18933:1 19012:1 19016:1 19045:1 19190:1 19264:2 19278:1 19333:1 19561:1 19609:1 19612:2 19766:2 19778:1 19838:1 19864:1 19991:1 20049:5 20093:1 20183:1 20235:1 20236:1 20256:1 20322:1 20331:1 20360:1 20466:1 20530:1 20748:2 20767:1 20775:1 20953:1 20984:1 21038:1 21106:1 21151:1 21153:1 21319:1 21344:1 21555:1 21655:2 21747:1 21798:1 21838:2 21889:1 22052:1 22249:1 22270:1 22355:1 22393:1 22406:1 22407:2 22454:1 22558:1 22620:1 22696:3 22730:1 22774:1 22829:2 22848:1 22875:1 22946:3 23024:1 23145:1 23366:1 23455:1 23466:3 23643:1 23657:1 23697:1 23832:1 24021:1 24067:1 24105:1 24130:2 24186:1 24257:1 24343:1 24373:3 24514:1 24520:1 24556:1 24682:1 24716:1 24797:1 24839:1 24928:1 24934:2 24974:1 25099:1 25288:1 25407:1 25408:3 25452:3 25476:1 25536:2 25640:1 25662:1 25867:1 25878:2 25967:1 26027:1 26031:1 26126:3
13 149:2 251:2 357:1 525:1 618:2 736:1 795:1 820:1 878:1 1053:1 1089:1 1193:1 1351:1 1395:1 1399:1 1412:1 1465:1 1472:1 1498:2 1611:2 1670:1 1805:1 1919:1 1951:1 1993:1 2003:1 2026:1 2034:1 2130:1 2287:2 2310:1 2534:1 2554:1 2568:2 2594:1 2641:1 2725:1 3005:1 3087:1 3172:1 3199:1 3206:2 3227:1 3246:1 3293:1 3337:1 3355:1 3386:1 3424:1 3452:1 3517:1 3526:1 3536:1 3572:1 3584:1 3604:1 3614:1 3674:1 3827:1 3839:2 3880:1 3914:1 3972:1 4048:3 4055:1 4089:1 4125:1 4147:1 4165:1 4276:1 4318:2 4392:2 4399:1 4402:1 4414:1 4580:1 4600:1 4650:1 4712:4 4729:1 4740:1 4833:1 4841:1 4996:1 5023:1 5065:1 5172:1 5306:1 5326:1 5514:2 5865:1 5971:2 6006:4 6138:1 6147:1 6197:1 6290:1 6291:1 6305:1 6482:3 6531:1 6563:1 6666:1 6761:2 6786:4 6807:3 6877:3 6991:1 7061:1 7096:3 7161:1 7182:1 7474:1 7566:1 7567:1 7588:1 7592:1 7599:1 7714:1 7880:1 7881:1 7925:1 7989:1 8215:1 8245:1 8277:1 8486:2 8500:1 8507:2 8520:1 8591:1 8633:1 8645:1 8660:1 8688:1 8725:1 8740:1 8743:1 8804:1 8916:1 9103:1 9149:1 9241:1 9251:2 9339:1 9394:1 9400:1 9646:4 9721:1 9745:1 9993:1 10044:1 10112:3 10179:1 10228:1 10231:1 10244:2 10280:1 10287:1 10300:1 10502:1 10503:2 10610:2 10637:1 10640:1 10650:1 10656:1 10721:1 10947:1 10978:4 10986:1 11061:1 11196:4 11496:1 11552:1 11558:1 11658:1 11778:1 11855:4 11901:1 12126:1 12130:1 12263:1 12265:1 12342:4 12452:1 12462:1 12580:1 12585:1 12638:1 12752:1 12776:4 12779:1 12829:2 12871:1 12917:1 12920:1 13061:1 13073:1 13087:2 13115:2 13244:1 13349:2 13582:1 13598:1 13602:1 13666:1 13819:1 13826:1 13887:1 13952:1 13981:1 14016:1 14047:1 14098:2 14147:2 14158:2 14170:1 14199:1 14257:1 14419:1 14704:1 14705:1 14800:1 14805:1 14846:1 14923:2 14953:1 14982:1 15035:1 15041:1 15198:1 15248:1 15261:1 15306:1 15487:1 15612:1 15738:1 15758:1 15764:1 15792:1 15847:1 15916:1 15966:1 15968:1 16067:1 16084:1 16130:4 16194:1 16326:2 16359:1 16393:260 16493:1 16653:1 16675:3 16706:1 16742:1 16771:1 16829:1 16853:1 16939:1 16952:2 17038:1 17076:1 17079:1 17080:1 17103:1 17175:1 17199:1 17387:1 17394:1 17439:1 17526:1 17748:1 17763:1 17940:1 17948:1 17961:1 18010:2 18016:1 18035:1 18067:1 18168:1 18436:1 18451:1 18634:1 18655:1 18683:1 18865:1 18909:1 18933:1 19012:1 19016:1 19045:1 19079:1 19190:1 19264:2 19278:1 19333:1 19561:1 19609:1 19612:3 19650:1 19766:2 19778:1 19838:1 19864:1 19991:1 20049:6 20093:2 20183:1 20235:1 20236:1 20256:1 20322:1 20331:1 20360:1 20466:1 20530:1 20748:2 20767:1 20775:1 20953:1 20984:1 21003:1 21038:1 21106:1 21151:1 21153:1 21319:1 21344:1 21555:1 21571:1 21655:2 21747:1 21798:1 21838:2 21889:1 22052:1 22249:1 22270:1 22355:1 22393:1 22406:1 22407:2 22454:1 22495:1 22558:1 22620:1 22696:4 22730:1 22774:1 22829:2 22848:1 22875:1 22946:4 22984:1 23024:1 23145:1 23366:1 23455:1 23466:3 23643:1 23657:1 23697:1 23832:1 24021:1 24067:1 24105:1 24130:2 24184:1 24186:1 24192:1 24257:1 24290:1 24343:1 24373:4 24514:1 24520:1 24556:1 24682:2 24716:1 24797:1 24839:1 24928:1 24934:2 24974:1 25099:2 25288:1 25407:1 25408:4 25452:4 25476:1 25536:2 25640:1 25662:1 25668:1 25867:1 25878:2 25967:1 26027:1 26031:1 26126:4
13 149:2 200:1 251:3 345:1 357:1 446:1 525:1 618:2 736:1 788:1 795:1 820:1 837:1 878:1 1053:1 1089:1 1193:1 1351:1 1395:1 1399:1 1412:1 1465:1 1472:1 1498:2 1611:2 1670:1 1805:1 1919:1 1951:1 1993:1 2003:1 2026:1 2034:1 2130:1 2284:1 2287:3 2310:1 2466:1 2534:1 2554:1 2568:2 2594:1 2641:1 2686:2 2725:1 3005:1 3087:1 3172:1 3199:1 3206:3 3227:1 3246:1 3293:1 3337:1 3355:1 3386:1 3424:1 3452:1 3517:1 3526:1 3536:1 3538:2 3572:1 3584:1 3604:1 3614:1 3674:1 3752:1 3827:1 3839:3 3880:1 3914:1 3972:1 4025:1 4048:4 4055:1 4089:1 4125:1 4147:1 4165:1 4276:1 4318:2 4392:2 4399:1 4402:1 4414:1 4546:1 4580:1 4600:1 4650:1 4712:4 4729:1 4740:1 4833:1 4841:1 4895:1 4996:1 5023:1 5040:1 5065:1 5172:1 5306:1 5326:1 5409:1 5514:2 5704:1 5865:1 5971:2 6006:4 6138:1 6147:1 6197:1 6290:1 6291:1 6305:1 6482:3 6531:1 6563:1 6666:1 6761:3 6786:4 6807:3 6877:3 6991:1 7061:1 7096:3 7161:1 7182:1 7334:1 7378:1 7474:1 7566:1 7567:1 7588:1 7592:1 7599:1 7714:1 7880:1 7881:1 7886:1 7916:1 7925:1 7989:1 8190:1 8215:1 8245:1 8277:1 8486:3 8500:1 8507:2 8520:1 8591:1 8633:1 8645:1 8660:1 8688:1 8725:1 8740:1 8743:1 8804:1 8898:1 8916:1 8940:1 9103:1 9149:1 9241:1 9251:2 9339:1 9394:1 9400:1 9646:4 9690:1 9721:1 9745:1 9843:1 9993:2 10044:1 10112:3 10179:1 10228:1 10231:1 10244:2 10259:1 10280:1 10287:1 10300:1 10502:1 10503:3 10610:2 10637:1 10640:1 10650:1 10656:1 10721:1 10947:1 10978:4 10986:1 11061:1 11196:4 11481:1 11496:1 11552:1 11558:1 11658:1 11678:1 11778:1 11855:4 11901:1 12126:1 12130:1 12263:1 12265:1 12278:1 12342:4 12452:1 12462:1 12580:1 12585:1 12638:1 12725:1 12742:1 12752:1 12754:1 12776:4 12779:1 12829:3 12871:2 12882:1 12917:1 12920:1 13061:1 13073:1 13087:2 13115:3 13200:1 13227:1 13244:1 13349:2 13385:1 13582:1 13598:1 13602:1 13646:1 13666:1 13819:1 13826:1 13847:2 13852:1 13887:1 13952:1 13981:1 14016:1 14047:1 14080:1 14098:3 14147:2 14158:2 14170:1 14199:1 14257:1 14419:1 14704:1 14705:1 14800:1 14805:1 14846:1 14923:2 14953:1 14982:1 14999:1 15035:1 15041:1 15042:2 15066:1 15133:1 15198:1 15248:1 15261:1 15306:1 15453:1 15487:1 15612:1 15726:1 15738:1 15758:1 15764:1 15792:1 15847:1 15916:1 15966:1 15968:1 16067:2 16084:1 16130:4 16194:1 16326:2 16359:1 16393:375 16493:1 16653:1 16675:3 16706:1 16742:1 16771:1 16829:1 16853:1 16939:1 16952:2 17038:1 17076:1 17079:1 17080:1 17087:1 17100:1 17103:1 17175:1 17199:1 17218:2 17387:1 17394:1 17439:1 17526:1 17572:1 17646:1 17748:1 17760:1 17763:1 17836:1 17940:1 17948:1 17961:1 18010:2 18016:1 18035:1 18067:1 18168:1 18436:1 18451:1 18530:1 18634:1 18655:1 18683:1 18865:1 18909:1 18933:1 19012:1 19016:1 19045:1 19079:1 19190:1 19264:2 19278:1 19333:1 19561:1 19609:1 19612:3 19648:1 19650:1 19766:2 19778:1 19838:1 19864:2 19883:1 19991:1 20045:1 20049:6 20093:2 20126:2 20183:1 20235:1 20236:1 20256:1 20322:1 20331:1 20360:1 20466:1 20530:1 20655:1 20748:2 20767:1 20775:1 20783:1 20953:1 20984:1 21003:1 21038:1 21106:1 21151:1 21153:1 21319:1 21344:1 21555:1 21571:1 21655:3 21700:1 21747:1 21798:1 21838:3 21889:1 21907:1 22052:1 22249:1 22270:1 22284:1 22355:1 22393:1 22406:1 22407:2 22442:1 22454:1 22495:1 22558:1 22620:1 22680:1 22696:4 22730:1 22774:1 22829:2 22848:1 22875:1 22946:4 22984:1 23024:1 23137:2 23145:1 23272:2 23366:1 23455:1 23466:3 23643:1 23657:1 23697:1 23832:1 24021:1 24067:1 24105:1 24130:3 24184:1 24186:1 24192:1 24257:1 24290:1 24303:1 24343:1 24373:4 24381:1 24514:1 24520:1 24556:1 24682:2 24702:1 24716:1 24797:1 24839:1 24843:1 24928:1 24934:2 24974:1 25074:1 25099:3 25107:1 25129:1 25288:1 25397:1 25407:1 25408:4 25452:4 25476:1 25536:2 25556:1 25640:1 25662:1 25668:1 25867:1 25878:3 25967:1 26027:1 26031:1 26126:4
13 149:2 200:1 251:3 321:1 345:1 357:1 446:1 525:1 618:2 736:1 744:1 788:1 795:1 820:1 837:1 878:1 1053:2 1089:1 1193:1 1351:1 1395:2 1399:2 1412:1 1465:1 1472:1 1498:2 1611:2 1670:1 1805:1 1919:1 1951:1 1993:1 2003:1 2026:1 2034:1 2130:1 2284:1 2287:3 2310:1 2322:1 2466:1 2531:1 2534:1 2554:1 2568:2 2594:1 2641:1 2686:2 2725:1 3005:1 3087:1 3131:1 3172:1 3199:1 3206:3 3227:1 3246:1 3293:1 3337:1 3355:1 3386:2 3424:1 3452:1 3517:1 3526:1 3536:1 3538:2 3572:1 3584:1 3604:1 3614:1 3674:2 3752:1 3827:1 3839:3 3880:1 3914:1 3949:1 3972:2 4025:1 4048:4 4055:1 4089:1 4125:1 4147:1 4165:1 4251:1 4276:1 4318:2 4392:2 4399:1 4402:1 4414:1 4546:1 4580:1 4600:1 4650:1 4712:4 4729:1 4740:1 4833:1 4841:1 4895:1 4996:1 5016:1 5023:1 5040:1 5065:1 5170:1 5172:1 5306:1 5326:1 5409:1 5410:1 5514:2 5704:1 5865:1 5970:1 5971:2 6006:4 6138:1 6147:1 6197:1 6290:1 6291:1 6305:1 6482:3 6531:1 6563:1 6666:1 6761:3 6786:4 6807:3 6825:1 6877:3 6991:1 7061:1 7096:3 7161:1 7182:1 7334:1 7378:1 7474:1 7566:1 7567:1 7588:1 7592:1 7599:1 7637:1 7678:1 7714:1 7880:1 7881:1 7886:1 7916:1 7925:1 7989:1 8190:1 8215:1 8245:2 8277:1 8486:3 8500:1 8507:2 8520:1 8591:1 8605:1 8633:1 8645:1 8660:1 8688:1 8725:2 8740:1 8743:1 8804:1 8898:1 8916:1 8940:1 9103:1 9149:1 9241:1 9251:2 9339:1 9394:1 9400:2 9646:4 9690:1 9721:1 9745:1 9843:1 9855:1 9993:3 10044:1 10112:3 10179:1 10228:1 10231:1 10244:2 10259:1 10274:1 10280:1 10287:1 10300:1 10304:1 10502:1 10503:3 10553:1 10610:2 10637:1 10640:2 10650:1 10656:1 10721:1 10947:1 10978:4 10986:1 11061:1 11196:4 11256:1 11481:1 11496:1 11552:1 11558:1 11600:1 11658:1 11678:1 11778:1 11855:4 11901:1 12126:1 12130:1 12263:1 12265:1 12278:1 12342:4 12452:1 12462:1 12580:1 12585:1 12638:1 12725:1 12742:1 12752:1 12754:1 12776:4 12779:1 12829:3 12871:2 12882:1 12917:1 12920:1 13061:2 13073:1 13087:2 13115:3 13200:1 13227:1 13244:1 13349:2 13385:1 13582:1 13598:1 13602:1 13646:1 13666:1 13805:1 13819:1 13826:1 13847:2 13852:1 13887:1 13952:1 13962:1 13981:1 14016:1 14047:1 14080:1 14098:3 14147:2 14158:2 14170:1 14199:1 14257:1 14419:1 14704:1 14705:1 14800:1 14805:1 14846:1 14923:2 14953:1 14978:1 14982:1 14999:1 15035:1 15041:1 15042:2 15066:1 15133:1 15198:1 15248:1 15261:1 15269:1 15306:1 15453:1 15487:1 15612:1 15726:1 15738:1 15758:1 15764:1 15792:1 15847:1 15916:1 15966:2 15968:1 16067:2 16082:1 16084:1 16130:4 16194:1 16313:1 16326:2 16333:1 16359:1 16393:413 16476:1 16493:1 16653:1 16675:3 16706:1 16742:1 16771:1 16829:1 16853:1 16939:1 16952:2 17038:1 17076:1 17079:1 17080:1 17087:1 17100:1 17103:1 17118:1 17175:1 17199:1 17218:2 17387:1 17394:1 17439:1 17526:1 17572:1 17646:1 17748:1 17760:1 17763:1 17836:1 17863:1 17940:1 17948:1 17961:1 18010:2 18016:1 18035:1 18067:1 18168:1 18251:1 18436:1 18451:1 18530:1 18634:1 18655:1 18683:1 18865:1 18909:1 18933:1 19012:2 19016:1 19045:1 19079:1 19190:1 19264:2 19278:1 19289:1 19333:1 19561:1 19609:1 19612:3 19648:1 19650:1 19766:2 19778:1 19838:1 19864:2 19883:1 19991:1 20045:1 20049:6 20093:2 20126:2 20183:1 20235:1 20236:1 20256:1 20322:1 20331:1 20360:1 20399:1 20466:1 20530:1 20655:1 20748:2 20767:1 20775:1 20783:1 20899:1 20953:1 20984:1 21003:1 21038:1 21106:1 21151:1 21153:1 21217:1 21319:2 21344:1 21555:1 21571:1 21655:3 21700:1 21747:1 21798:1 21838:3 21889:2 21907:1 22052:1 22215:1 22249:1 22270:1 22284:1 22355:1 22393:1 22406:1 22407:2 22442:1 22454:1 22495:1 22558:1 22620:1 22680:1 22696:4 22730:1 22774:1 22829:2 22848:1 22875:1 22946:4 22984:1 23024:1 23137:2 23145:1 23272:2 23366:1 23455:1 23466:3 23643:1 23657:1 23697:1 23832:2 24021:1 24067:1 24105:1 24130:3 24184:1 24186:1 24192:1 24257:1 24290:1 24303:1 24343:1 24373:4 24381:1 24439:1 24514:1 24520:1 24556:2 24640:1 24682:2 24702:1 24716:1 24797:1 24839:1 24843:1 24928:1 24934:2 24974:1 25074:1 25099:3 25107:1 25129:1 25288:1 25397:1 25407:1 25408:4 25452:4 25476:1 25536:2 25556:1 25640:1 25662:1 25668:1 25867:1 25878:3 25916:1 25967:1 26027:1 26031:1 26126:4
13 149:2 200:1 251:3 321:1 345:1 357:1 386:1 446:1 525:1 618:2 736:1 744:1 784:1 788:1 791:1 795:2 820:1 837:1 878:1 1053:2 1089:1 1193:1 1351:1 1395:2 1399:2 1412:1 1465:1 1472:1 1473:1 1498:2 1611:2 1670:1 1805:1 1919:1 1951:1 1993:1 2003:1 2026:1 2034:1 2130:1 2284:1 2287:3 2310:1 2322:1 2466:1 2515:1 2531:1 2534:1 2554:1 2568:2 2594:1 2641:1 2686:2 2725:1 2817:1 3005:1 3087:1 3109:1 3131:1 3172:1 3199:1 3206:3 3227:1 3246:1 3293:1 3337:1 3351:1 3355:1 3386:2 3424:1 3452:1 3512:1 3517:1 3526:1 3536:1 3538:2 3572:1 3584:1 3604:1 3614:1 3674:2 3679:1 3752:1 3827:1 3839:3 3864:1 3880:1 3914:1 3949:1 3972:2 4025:1 4048:4 4055:1 4089:1 4125:1 4147:1 4165:1 4251:1 4276:1 4318:2 4392:2 4399:1 4402:1 4409:1 4414:1 4546:1 4580:1 4600:1 4650:1 4712:4 4729:1 4740:1 4833:1 4841:1 4895:1 4920:1 4996:1 5016:1 5023:1 5040:1 5065:1 5170:1 5172:1 5306:1 5326:1 5382:1 5409:1 5410:1 5514:2 5572:1 5704:1 5865:1 5970:1 5971:2 6006:4 6138:1 6147:1 6197:1 6290:1 6291:1 6305:1 6346:1 6482:3 6531:1 6563:1 6658:1 6666:1 6761:4 6786:4 6807:3 6825:1 6877:3 6991:1 7061:1 7096:3 7161:1 7182:1 7334:1 7378:1 7435:1 7474:1 7566:1 7567:1 7588:1 7592:1 7599:1 7637:1 7678:1 7714:1 7880:1 7881:1 7886:1 7915:1 7916:1 7925:1 7989:1 8190:1 8215:1 8245:2 8277:1 8334:1 8486:3 8500:1 8507:3 8520:1 8591:1 8605:1 8607:1 8633:1 8638:1 8645:1 8660:1 8688:1 8725:2 8740:1 8743:1 8804:1 8898:1 8916:1 8940:1 9103:1 9113:1 9149:1 9241:1 9251:3 9339:1 9394:1 9400:2 9491:1 9586:1 9646:4 9690:1 9721:1 9745:1 9843:1 9855:1 9858:1 9993:3 10044:1 10112:3 10179:1 10228:1 10231:1 10244:2 10259:1 10274:1 10280:1 10287:1 10300:1 10304:1 10369:1 10502:1 10503:3 10553:1 10610:3 10637:1 10640:2 10650:1 10656:1 10721:1 10750:1 10947:1 10978:4 10986:1 11061:1 11151:1 11196:4 11256:1 11481:1 11496:1 11552:1 11558:1 11600:1 11617:1 11658:1 11678:1 11695:1 11778:1 11855:4 11901:1 12126:1 12130:1 12263:1 12265:1 12278:1 12342:4 12452:1 12462:1 12580:1 12585:1 12638:1 12725:1 12742:1 12752:1 12754:1 12776:4 12779:1 12829:3 12871:2 12882:1 12917:1 12920:1 13039:1 13061:2 13073:1 13087:2 13115:3 13200:1 13227:1 13244:1 13266:1 13349:2 13385:1 13485:1 13582:1 13598:1 13602:1 13646:1 13666:1 13805:1 13819:1 13826:1 13847:2 13852:1 13887:1 13952:1 13962:1 13981:1 14016:2 14022:1 14047:1 14080:1 14084:1 14098:3 14147:2 14158:2 14170:1 14199:1 14200:1 14257:1 14419:1 14612:1 14704:1 14705:1 14725:4 14800:1 14805:1 14846:1 14923:2 14953:1 14978:1 14982:1 14999:1 15035:1 15041:1 15042:2 15066:1 15133:1 15171:1 15198:1 15248:1 15249:1 15261:1 15269:1 15306:1 15324:1 15453:1 15487:1 15608:1 15612:1 15614:1 15670:1 15726:1 15738:1 15758:1 15764:1 15792:1 15841:1 15847:1 15916:1 15966:2 15968:1 16067:2 16082:1 16084:1 16130:4 16194:1 16313:1 16326:2 16333:1 16359:1 16393:474 16476:1 16493:1 16653:1 16675:3 16706:1 16742:1 16771:1 16829:1 16853:1 16939:1 16952:2 17038:1 17076:1 17079:1 17080:1 17087:1 17100:1 17103:2 17118:1 17175:1 17199:1 17218:2 17387:1 17394:1 17439:1 17526:1 17572:1 17646:1 17748:1 17760:1 17763:1 17836:1 17863:1 17940:1 17948:1 17961:1 18010:2 18016:1 18035:1 18067:1 18114:1 18168:1 18251:1 18397:1 18406:1 18436:1 18451:1 18530:1 18634:1 18655:1 18683:1 18831:1 18865:1 18909:1 18933:1 19012:2 19016:1 19045:1 19079:1 19190:1 19264:2 19278:1 19289:1 19333:1 19400:1 19561:1 19609:1 19612:3 19648:1 19650:1 19766:2 19778:1 19838:1 19864:2 19883:1 19953:1 19991:1 19998:1 20045:1 20049:6 20093:3 20126:2 20183:1 20235:1 20236:1 20256:1 20322:1 20331:1 20360:1 20399:1 20466:1 20530:1 20655:1 20748:2 20767:1 20775:1 20783:1 20899:1 20953:1 20984:1 21003:1 21038:1 21106:1 21151:1 21153:1 21217:1 21319:2 21344:1 21463:5 21504:1 21555:1 21571:1 21655:3 21700:1 21747:1 21798:1 21838:3 21889:2 21907:1 22052:1 22215:1 22249:1 22270:1 22284:1 22355:1 22393:1 22403:1 22406:1 22407:2 22442:1 22454:1 22495:1 22558:1 22597:1 22620:1 22680:1 22696:4 22730:1 22774:1 22829:2 22848:1 22875:1 22946:4 22984:1 23024:1 23137:2 23145:1 23272:2 23366:1 23455:1 23466:3 23489:1 23643:1 23657:1 23697:1 23832:2 23911:1 24021:1 24067:1 24105:1 24130:3 24184:2 24186:1 24192:1 24257:1 24290:1 24303:1 24343:1 24373:4 24381:1 24439:1 24514:1 24520:1 24556:2 24622:1 24640:1 24682:3 24702:1 24716:1 24797:1 24839:1 24843:1 24928:1 24934:2 24974:1 25074:1 25099:4 25107:1 25129:1 25288:1 25397:1 25407:1 25408:4 25452:4 25476:1 25536:2 25556:1 25592:1 25640:1 25662:1 25668:1 25867:1 25878:3 25916:1 25967:1 26027:1 26031:1 26126:4
13 36:1 149:2 200:1 251:3 321:1 345:1 357:1 386:1 446:1 525:1 618:2 736:1 744:1 784:1 788:1 791:1 795:2 820:1 837:1 875:1 878:1 1053:2 1089:1 1193:1 1351:1 1395:2 1399:2 1412:1 1465:1 1472:1 1473:1 1498:3 1611:2 1670:1 1805:1 1919:1 1951:1 1993:1 2003:1 2026:1 2034:1 2061:1 2130:1 2169:1 2284:1 2287:3 2310:1 2322:1 2373:1 2466:1 2515:1 2531:1 2534:1 2554:1 2568:2 2594:1 2641:1 2686:2 2725:1 2817:1 3005:1 3087:1 3109:1 3131:1 3172:1 3199:1 3206:3 3227:2 3246:1 3293:1 3337:1 3351:1 3355:1 3386:2 3424:1 3452:1 3512:1 3517:1 3526:1 3536:1 3538:2 3572:1 3584:1 3604:1 3614:1 3674:2 3679:1 3752:1 3827:1 3839:3 3864:1 3880:1 3914:1 3949:1 3972:2 4025:1 4048:4 4055:1 4089:2 4125:1 4147:1 4165:1 4251:1 4276:1 4318:2 4392:2 4399:1 4402:1 4409:1 4414:1 4546:1 4580:1 4600:1 4650:1 4652:1 4655:1 4712:4 4729:1 4740:1 4833:1 4841:1 4895:1 4920:1 4996:1 5016:1 5023:1 5040:1 5065:1 5170:1 5172:1 5306:1 5326:1 5382:1 5409:1 5410:1 5514:2 5572:1 5609:1 5704:1 5735:1 5865:1 5970:1 5971:2 6006:4 6138:1 6147:1 6197:1 6290:1 6291:1 6305:1 6346:1 6400:1 6482:3 6531:1 6563:1 6658:1 6666:1 6761:4 6786:4 6807:4 6825:1 6877:3 6991:1 7061:1 7096:3 7161:1 7182:2 7334:1 7378:1 7435:1 7474:1 7566:1 7567:1 7588:2 7592:1 7599:1 7637:1 7678:1 7714:1 7880:1 7881:1 7886:1 7915:1 7916:1 7925:2 7989:1 8190:1 8215:1 8245:2 8277:1 8334:1 8338:1 8424:1 8486:3 8500:1 8507:3 8520:1 8591:1 8605:1 8607:1 8633:1 8638:1 8645:1 8660:1 8688:1 8725:2 8740:1 8743:1 8804:1 8898:1 8916:1 8940:1 9103:1 9113:1 9149:1 9225:1 9241:1 9251:3 9339:1 9388:1 9394:1 9400:2 9491:1 9586:1 9646:4 9690:1 9721:1 9745:1 9843:1 9855:1 9858:1 9993:3 10044:1 10112:3 10179:1 10228:1 10231:1 10244:2 10259:1 10274:1 10280:1 10287:1 10300:1 10304:1 10369:1 10502:1 10503:3 10553:1 10599:1 10610:3 10637:1 10640:2 10650:2 10656:1 10721:1 10750:1 10947:1 10978:4 10986:1 11061:1 11151:1 11196:4 11256:1 11481:1 11496:1 11552:2 11558:1 11600:1 11617:1 11658:1 11678:1 11695:1 11778:1 11786:1 11855:4 11901:1 12126:1 12130:1 12263:2 12265:1 12278:1 12342:4 12402:1 12452:1 12462:1 12580:1 12585:1 12587:1 12638:2 12725:1 12742:1 12752:1 12754:1 12776:4 12779:1 12829:3 12871:2 12882:1 12917:1 12920:2 13039:1 13061:2 13073:1 13087:3 13115:3 13200:1 13227:1 13244:1 13266:1 13349:2 13385:1 13477:1 13485:1 13582:1 13598:1 13602:1 13646:1 13666:1 13805:1 13819:1 13826:1 13847:2 13852:1 13887:1 13952:1 13962:1 13981:1 14016:2 14022:1 14047:1 14080:1 14084:1 14098:3 14147:3 14158:2 14170:1 14199:1 14200:1 14257:1 14408:1 14419:1 14567:1 14612:1 14704:2 14705:2 14725:4 14800:1 14805:1 14846:1 14923:2 14953:2 14977:1 14978:1 14982:1 14999:1 15035:1 15041:1 15042:2 15066:1 15133:1 15171:1 15198:1 15248:2 15249:1 15261:1 15269:1 15306:1 15324:1 15453:1 15487:2 15514:1 15608:1 15612:1 15614:1 15645:1 15670:1 15718:1 15726:1 15738:1 15758:2 15764:1 15792:1 15841:1 15847:1 15916:1 15966:2 15968:1 16067:2 16082:1 16084:1 16130:4 16194:1 16313:1 16326:2 16333:1 16359:1 16373:1 16393:521 16476:1 16493:1 16610:1 16653:1 16675:3 16706:1 16742:1 16771:1 16829:1 16853:1 16939:1 16952:3 17038:1 17076:1 17079:1 17080:1 17087:1 17100:1 17103:2 17118:1 17175:1 17199:1 17218:2 17349:1 17387:1 17394:1 17439:1 17526:1 17572:1 17646:1 17748:1 17760:1 17763:1 17836:1 17863:1 17940:1 17948:1 17961:1 18010:4 18016:1 18035:1 18067:1 18114:1 18168:1 18251:1 18397:1 18406:1 18436:1 18451:1 18457:1 18530:1 18634:1 18655:1 18683:1 18831:1 18865:1 18909:1 18933:1 19012:2 19016:1 19045:1 19079:1 19138:1 19190:1 19264:2 19278:1 19289:1 19333:1 19400:1 19553:1 19561:1 19609:1 19612:3 19648:1 19650:1 19714:1 19766:2 19778:1 19838:1 19864:2 19883:1 19953:1 19991:1 19998:1 20045:1 20049:7 20093:3 20126:2 20183:1 20235:1 20236:1 20256:2 20289:1 20322:1 20331:1 20360:1 20399:1 20466:1 20530:1 20655:1 20688:1 20748:2 20767:1 20775:1 20783:1 20899:1 20953:1 20984:1 21003:1 21038:1 21106:1 21151:1 21153:1 21217:1 21319:2 21344:1 21346:1 21463:5 21504:1 21555:1 21571:1 21655:3 21700:1 21747:1 21798:1 21838:3 21860:1 21889:2 21907:1 22052:2 22160:1 22215:1 22249:1 22270:1 22284:1 22355:1 22393:1 22403:1 22406:1 22407:2 22442:1 22454:1 22495:1 22558:1 22597:1 22620:1 22680:1 22696:4 22730:1 22774:1 22829:2 22848:1 22875:1 22946:4 22984:1 23011:1 23024:1 23134:1 23137:2 23145:1 23272:2 23366:1 23426:1 23455:1 23466:3 23489:1 23643:1 23657:1 23697:1 23832:2 23911:1 24018:1 24021:1 24067:1 24105:1 24130:3 24184:2 24186:1 24192:1 24257:1 24290:1 24303:1 24343:1 24373:4 24381:1 24439:1 24514:1 24520:1 24556:2 24622:1 24640:1 24682:3 24702:1 24716:1 24797:1 24839:1 24843:1 24928:1 24934:2 24974:1 25055:1 25074:1 25099:4 25107:1 25129:1 25288:1 25397:1 25407:1 25408:4 25452:4 25476:1 25536:3 25556:1 25592:1 25640:1 25662:1 25668:1 25867:1 25878:3 25916:1 25967:1 26004:1 26027:1 26031:1 26126:4
13 36:1 149:2 200:1 251:3 321:1 345:1 346:1 357:1 386:1 446:1 525:1 618:2 736:1 744:1 784:1 788:1 791:1 795:2 820:1 837:1 875:1 878:1 1053:2 1089:1 1193:1 1351:1 1395:2 1399:2 1412:1 1465:1 1472:1 1473:1 1498:3 1611:2 1670:1 1805:1 1919:1 1951:1 1993:1 2003:1 2026:1 2034:1 2061:1 2130:1 2169:1 2284:1 2287:3 2310:1 2322:1 2373:1 2466:1 2515:1 2531:1 2534:1 2554:1 2568:2 2594:1 2641:1 2686:2 2725:1 2817:1 3005:1 3087:1 3109:1 3131:1 3172:1 3199:1 3206:3 3227:2 3246:1 3293:1 3337:1 3351:1 3355:1 3386:2 3424:1 3452:1 3512:1 3517:1 3526:1 3536:1 3538:2 3572:1 3584:1 3604:1 3614:1 3674:2 3679:1 3752:1 3827:1 3839:3 3864:1 3880:1 3914:1 3949:1 3972:2 4025:1 4048:4 4055:1 4089:2 4125:1 4147:1 4165:1 4251:1 4276:1 4318:2 4392:2 4399:1 4402:1 4409:1 4414:1 4546:1 4580:1 4600:1 4650:1 4652:1 4655:1 4712:5 4729:1 4740:1 4833:1 4841:1 4895:1 4920:1 4996:1 5016:1 5023:1 5040:1 5065:1 5170:1 5172:1 5306:1 5326:1 5382:1 5409:1 5410:1 5514:2 5572:1 5609:1 5704:1 5735:1 5865:1 5970:1 5971:2 6006:5 6138:1 6147:1 6197:1 6290:1 6291:1 6305:1 6346:1 6400:1 6482:3 6531:1 6563:1 6658:1 6666:1 6761:4 6786:5 6807:4 6825:1 6877:3 6991:1 7061:1 7096:4 7161:1 7182:2 7334:1 7378:1 7435:1 7474:1 7566:1 7567:1 7588:2 7592:1 7599:1 7637:1 7678:1 7714:1 7880:1 7881:1 7886:1 7915:1 7916:1 7925:2 7989:1 8190:1 8215:1 8245:2 8277:1 8334:1 8338:1 8424:1 8486:3 8500:1 8507:3 8520:1 8591:1 8605:1 8607:1 8633:1 8638:1 8645:1 8660:1 8688:1 8725:2 8740:1 8743:1 8804:1 8898:1 8916:1 8940:1 9103:1 9113:1 9149:1 9225:1 9241:1 9251:3 9339:1 9388:1 9394:1 9400:2 9491:1 9572:1 9586:1 9646:5 9690:1 9721:1 9745:1 9843:1 9855:1 9858:1 9993:3 10044:1 10112:3 10179:1 10228:1 10231:1 10244:2 10259:1 10274:1 10280:1 10287:1 10300:1 10304:1 10369:1 10502:1 10503:3 10553:1 10599:1 10610:3 10637:1 10640:2 10650:2 10656:1 10721:1 10750:1 10947:1 10978:5 10986:1 11061:1 11151:1 11196:5 11256:1 11481:1 11496:1 11552:2 11558:1 11600:1 11617:1 11658:1 11678:1 11695:1 11778:1 11786:1 11855:5 11901:1 12126:1 12130:1 12263:2 12265:1 12278:1 12342:5 12402:1 12452:1 12462:1 12580:1 12585:1 12587:1 12638:2 12725:1 12742:1 12752:1 12754:1 12776:5 12779:1 12829:3 12871:2 12882:1 12917:1 12920:2 13039:1 13061:2 13073:1 13087:3 13115:3 13200:1 13227:1 13244:1 13266:1 13349:2 13385:1 13477:1 13485:1 13582:1 13598:1 13602:1 13646:1 13666:1 13805:1 13819:1 13826:1 13847:2 13852:1 13887:1 13952:1 13962:1 13981:1 14016:2 14022:1 14047:1 14080:1 14084:1 14098:3 14147:3 14158:2 14170:1 14199:1 14200:1 14257:1 14408:1 14419:1 14567:1 14612:1 14704:2 14705:2 14725:4 14800:1 14805:1 14846:1 14923:2 14953:2 14977:1 14978:1 14982:1 14999:1 15035:1 15041:1 15042:2 15066:1 15133:1 15171:1 15198:1 15248:2 15249:1 15261:1 15269:1 15306:1 15324:1 15453:1 15487:2 15514:1 15608:1 15612:1 15614:1 15645:1 15670:1 15718:1 15726:1 15738:1 15758:2 15764:1 15792:1 15841:1 15847:1 15916:1 15966:2 15968:1 16067:2 16082:1 16084:1 16130:5 16194:1 16313:1 16326:2 16333:1 16359:1 16373:1 16393:533 16476:1 16493:1 16610:1 16653:1 16675:3 16706:1 16742:1 16771:1 16829:1 16853:1 16939:1 16952:3 17038:1 17076:1 17079:1 17080:1 17087:1 17100:1 17103:2 17118:1 17175:1 17199:1 17218:2 17349:1 17387:1 17394:1 17439:2 17526:1 17572:1 17646:1 17748:1 17760:1 17763:1 17836:1 17863:1 17940:1 17948:1 17961:1 18010:4 18016:1 18035:1 18067:1 18114:1 18168:1 18251:1 18397:1 18406:1 18436:1 18451:1 18457:1 18530:1 18634:1 18655:1 18683:1 18831:1 18865:2 18909:1 18933:1 19012:2 19016:1 19045:1 19079:1 19138:1 19190:2 19264:2 19278:1 19289:1 19333:1 19400:1 19553:2 19561:1 19609:1 19612:4 19648:1 19650:1 19714:1 19766:2 19778:1 19838:1 19864:2 19883:1 19953:1 19991:1 19998:1 20045:1 20049:8 20093:3 20126:2 20183:1 20235:1 20236:1 20256:2 20289:1 20322:1 20331:1 20360:1 20399:1 20466:1 20530:1 20655:1 20688:1 20748:2 20767:1 20775:1 20783:1 20899:1 20953:1 20984:1 21003:1 21038:1 21106:1 21151:1 21153:1 21217:1 21319:2 21344:1 21346:1 21463:5 21504:1 21555:1 21571:1 21640:1 21655:3 21700:1 21747:1 21798:1 21838:3 21860:1 21889:2 21907:1 22052:2 22160:1 22215:1 22249:1 22270:1 22284:1 22355:1 22393:1 22403:1 22406:1 22407:2 22420:1 22442:1 22454:1 22495:1 22558:1 22597:1 22620:1 22680:1 22696:5 22730:1 22774:1 22829:2 22848:1 22875:1 22946:5 22984:1 23011:1 23024:1 23134:1 23137:2 23145:1 23272:2 23366:1 23426:1 23455:1 23466:3 23489:1 23643:1 23657:1 23697:1 23832:2 23911:1 24018:1 24021:1 24067:1 24105:1 24130:3 24184:2 24186:1 24192:1 24257:1 24290:1 24303:1 24343:1 24373:5 24381:1 24439:1 24514:1 24520:1 24556:2 24622:1 24640:1 24682:3 24702:1 24716:1 24797:1 24839:1 24843:1 24928:1 24934:2 24974:1 25055:1 25074:1 25099:4 25107:1 25129:1 25288:1 25397:1 25407:1 25408:5 25452:5 25476:1 25536:3 25556:1 25592:1 25621:1 25640:1 25662:1 25668:1 25867:1 25878:3 25916:1 25967:1 26004:1 26027:1 26031:1 26126:5
13 36:1 149:2 200:1 251:3 321:1 345:1 346:1 357:1 386:1 446:1 525:1 618:2 736:1 744:1 784:1 788:1 791:1 795:2 820:1 837:1 875:1 878:1 1053:2 1089:1 1193:1 1351:1 1395:2 1399:2 1412:1 1465:1 1472:1 1473:1 1498:3 1611:2 1670:1 1803:1 1805:1 1919:1 1951:1 1993:1 2003:1 2026:1 2028:1 2034:1 2061:1 2130:1 2169:1 2284:1 2287:3 2310:1 2322:1 2373:1 2466:1 2515:1 2531:1 2534:1 2554:1 2568:2 2594:1 2641:1 2686:2 2725:1 2817:1 3005:1 3009:1 3087:1 3109:1 3131:1 3172:1 3199:1 3206:3 3227:2 3246:1 3293:1 3337:1 3351:1 3355:1 3386:2 3424:1 3452:1 3512:1 3517:1 3526:1 3536:1 3538:2 3572:1 3584:1 3604:1 3614:1 3674:2 3679:1 3752:1 3827:1 3839:3 3864:1 3880:1 3914:1 3949:1 3972:2 4025:1 4039:1 4048:4 4055:1 4089:2 4119:1 4125:1 4147:1 4165:1 4251:1 4276:1 4318:2 4392:2 4399:1 4402:1 4409:1 4414:1 4546:1 4580:1 4600:1 4650:1 4652:1 4655:1 4712:6 4729:1 4740:1 4833:1 4841:1 4895:1 4920:1 4996:1 5016:1 5023:1 5040:1 5065:1 5170:1 5172:1 5306:1 5326:1 5382:1 5409:1 5410:1 5514:2 5572:1 5609:1 5704:1 5735:1 5865:1 5970:1 5971:2 6006:6 6138:1 6147:1 6197:1 6290:1 6291:1 6305:1 6346:1 6400:1 6482:3 6531:1 6563:1 6658:1 6666:1 6761:4 6786:6 6807:5 6825:1 6877:3 6991:1 7061:1 7096:5 7161:1 7182:2 7334:1 7378:1 7435:1 7474:1 7566:1 7567:1 7588:2 7592:1 7599:1 7637:1 7678:1 7714:1 7876:1 7880:1 7881:1 7886:1 7915:1 7916:1 7925:2 7989:1 8099:1 8190:1 8215:1 8245:2 8277:1 8334:1 8338:1 8424:1 8486:3 8500:1 8507:3 8520:1 8591:1 8605:1 8607:1 8633:1 8638:1 8645:1 8660:1 8688:1 8725:2 8740:1 8743:1 8804:1 8898:1 8916:1 8940:1 9103:1 9113:1 9149:1 9225:1 9241:1 9251:3 9339:1 9388:1 9394:1 9400:2 9491:1 9572:1 9586:1 9646:6 9690:1 9721:1 9745:1 9843:1 9855:1 9858:1 9993:3 10044:1 10112:3 10179:1 10228:1 10231:1 10244:2 10259:1 10274:1 10280:1 10287:1 10300:1 10304:1 10369:1 10502:1 10503:3 10553:1 10599:1 10610:3 10637:1 10640:2 10650:2 10656:1 10721:1 10750:1 10947:1 10978:6 10986:1 11061:1 11151:1 11196:6 11256:1 11481:1 11496:1 11552:2 11558:1 11600:1 11617:1 11658:1 11678:1 11695:1 11778:1 11786:1 11855:6 11901:1 12040:1 12126:1 12130:1 12263:2 12265:1 12278:1 12342:6 12402:1 12452:1 12462:1 12580:1 12585:1 12587:1 12638:2 12725:1 12742:1 12752:1 12754:1 12776:6 12779:1 12829:3 12871:2 12882:1 12917:1 12920:2 13039:1 13061:2 13073:1 13087:4 13115:3 13200:1 13227:1 13244:1 13266:1 13349:2 13385:1 13408:1 13477:1 13485:1 13571:1 13582:1 13598:1 13602:1 13646:1 13666:1 13805:1 13819:1 13826:1 13847:2 13852:1 13887:1 13952:1 13962:1 13981:1 14016:2 14022:1 14047:1 14080:1 14084:1 14098:3 14147:3 14158:2 14170:1 14199:1 14200:1 14257:1 14408:1 14419:1 14567:1 14612:1 14704:2 14705:2 14725:4 14800:1 14805:1 14846:1 14923:2 14953:2 14977:1 14978:1 14982:1 14999:1 15035:1 15041:1 15042:2 15066:1 15133:1 15171:1 15198:1 15248:2 15249:1 15261:1 15269:1 15306:1 15324:1 15453:1 15487:2 15514:1 15580:1 15608:1 15612:1 15614:1 15645:1 15670:1 15718:1 15726:1 15738:1 15758:2 15764:1 15792:1 15841:1 15847:1 15916:1 15966:2 15968:1 16067:2 16082:1 16084:1 16130:6 16194:1 16313:1 16326:2 16333:1 16359:1 16373:1 16393:564 16476:1 16493:1 16610:1 16653:1 16675:3 16706:1 16742:1 16771:1 16829:1 16853:1 16939:1 16952:3 17038:1 17076:1 17079:1 17080:1 17087:1 17100:1 17103:2 17118:1 17175:1 17199:1 17218:2 17349:1 17387:1 17394:1 17439:3 17526:1 17572:1 17646:1 17748:1 17760:1 17763:1 17836:1 17863:1 17940:1 17948:1 17961:1 18010:4 18016:1 18035:1 18067:1 18114:1 18168:1 18251:1 18397:1 18406:1 18436:1 18451:1 18457:1 18530:1 18634:1 18655:1 18683:1 18831:1 18865:3 18909:1 18933:1 18942:1 19012:2 19016:1 19045:1 19079:1 19138:1 19190:3 19264:2 19278:1 19289:1 19333:1 19400:1 19553:2 19561:1 19609:1 19612:5 19648:1 19650:1 19714:1 19766:2 19778:1 19838:1 19864:2 19883:1 19953:1 19991:1 19998:1 20045:1 20049:10 20093:3 20126:2 20183:1 20235:1 20236:1 20256:2 20289:1 20322:1 20331:1 20360:1 20399:1 20466:1 20530:1 20655:1 20688:1 20748:2 20767:1 20775:1 20783:1 20899:1 20953:1 20984:1 21003:1 21038:1 21106:1 21151:1 21153:1 21217:1 21319:2 21344:1 21346:1 21463:5 21504:1 21555:1 21571:1 21640:1 21655:3 21700:1 21747:1 21798:1 21838:3 21860:1 21889:2 21907:1 22052:2 22160:1 22215:1 22249:2 22270:1 22284:1 22355:1 22393:1 22403:1 22406:1 22407:2 22420:1 22442:1 22454:1 22495:1 22558:1 22597:1 22620:1 22680:1 22696:6 22730:1 22774:1 22829:2 22848:1 22875:1 22946:6 22984:1 23011:1 23024:1 23134:1 23137:2 23145:1 23272:2 23366:1 23426:1 23455:1 23466:3 23489:1 23643:1 23657:1 23697:1 23832:2 23911:1 24018:1 24021:1 24067:1 24069:1 24105:1 24130:3 24184:2 24186:1 24192:1 24257:1 24290:1 24303:1 24343:1 24373:6 24381:1 24439:1 24514:1 24520:1 24556:2 24622:1 24640:1 24682:3 24702:1 24716:1 24797:1 24839:1 24843:1 24928:1 24934:2 24974:1 25055:1 25074:1 25099:4 25107:1 25129:1 25288:1 25397:1 25407:1 25408:6 25436:1 25452:6 25476:1 25536:3 25556:1 25592:1 25621:1 25640:1 25662:1 25668:1 25867:1 25878:3 25916:1 25967:1 26004:1 26027:1 26031:1 26036:1 26126:6
13 36:1 149:2 200:1 251:3 263:1 321:1 345:1 346:1 357:1 386:1 387:1 446:1 525:1 618:2 736:1 744:1 768:1 784:1 788:1 791:1 795:2 820:1 837:1 849:1 875:1 878:1 1053:2 1089:1 1193:1 1351:1 1395:2 1399:3 1412:1 1465:1 1472:1 1473:1 1498:5 1611:2 1652:1 1670:1 1803:1 1805:1 1919:1 1951:1 1993:1 2003:1 2026:1 2028:1 2034:1 2061:1 2130:1 2169:1 2192:1 2259:1 2284:1 2287:3 2310:1 2322:1 2343:1 2373:1 2466:1 2515:1 2531:1 2534:1 2554:1 2568:2 2594:1 2641:1 2686:2 2725:1 2817:1 3005:1 3009:1 3087:1 3109:1 3131:1 3172:1 3199:1 3206:3 3227:2 3246:2 3293:1 3337:1 3351:2 3355:1 3386:2 3424:1 3452:1 3512:1 3517:1 3526:1 3536:1 3538:2 3572:1 3584:1 3604:1 3614:1 3674:2 3679:1 3752:1 3801:1 3827:1 3839:3 3864:1 3880:1 3914:1 3949:1 3972:2 4025:1 4039:1 4048:4 4052:1 4055:1 4089:2 4119:1 4125:1 4147:1 4165:1 4234:1 4251:1 4276:1 4318:2 4392:2 4399:1 4402:1 4409:1 4414:1 4546:1 4580:1 4600:1 4650:1 4652:1 4655:1 4712:7 4729:1 4740:1 4833:1 4841:1 4895:1 4920:1 4996:2 5016:1 5023:1 5040:1 5065:1 5170:1 5172:2 5306:1 5326:1 5382:1 5409:1 5410:1 5514:2 5572:1 5609:1 5704:1 5735:1 5865:1 5970:2 5971:2 6006:7 6138:1 6147:1 6197:1 6290:1 6291:1 6305:1 6346:1 6400:1 6413:1 6482:3 6531:1 6563:1 6658:1 6666:1 6743:1 6761:4 6786:7 6807:5 6825:1 6877:3 6991:1 7061:1 7096:6 7161:1 7182:2 7334:1 7378:1 7435:1 7474:1 7566:1 7567:1 7583:1 7588:2 7592:1 7599:1 7637:1 7678:1 7714:1 7876:1 7880:1 7881:1 7886:1 7915:1 7916:1 7925:2 7989:1 8099:1 8190:1 8215:1 8245:2 8277:1 8334:1 8338:1 8424:1 8486:3 8500:1 8507:3 8520:1 8591:1 8605:1 8607:1 8633:1 8638:1 8645:1 8660:1 8688:1 8725:2 8740:1 8743:1 8804:2 8898:1 8916:1 8940:1 9017:1 9103:1 9113:1 9149:1 9225:1 9241:1 9251:3 9306:1 9339:1 9388:1 9394:1 9400:2 9491:1 9546:1 9572:1 9586:2 9646:7 9690:1 9721:1 9745:1 9843:1 9855:1 9858:1 9993:3 10044:1 10112:3 10179:1 10228:1 10231:1 10244:2 10259:1 10274:1 10280:1 10287:1 10300:1 10304:1 10314:1 10369:1 10502:1 10503:3 10553:1 10599:1 10610:3 10637:1 10640:2 10650:2 10656:1 10716:1 10721:1 10750:1 10944:1 10947:1 10978:7 10986:1 11061:1 11151:1 11196:7 11256:1 11481:1 11496:1 11552:2 11558:1 11600:1 11617:1 11658:1 11675:1 11678:1 11695:1 11778:1 11786:1 11838:1 11855:7 11901:2 11986:1 12040:1 12126:1 12130:1 12263:4 12265:1 12278:1 12342:7 12402:1 12452:1 12453:1 12462:1 12508:1 12580:1 12585:1 12587:1 12638:2 12725:1 12742:1 12752:1 12754:1 12776:7 12779:1 12829:3 12871:2 12882:1 12917:1 12920:2 13039:1 13061:2 13073:1 13087:4 13115:3 13200:1 13227:1 13244:1 13266:1 13349:2 13385:1 13408:1 13477:1 13485:1 13571:1 13582:1 13598:1 13602:1 13646:1 13666:1 13805:1 13819:1 13826:1 13847:2 13852:1 13887:1 13952:1 13962:1 13981:1 14016:2 14022:2 14047:1 14080:1 14084:1 14098:3 14147:3 14158:2 14170:1 14199:1 14200:1 14223:1 14231:1 14257:1 14408:2 14415:1 14419:1 14567:1 14612:1 14704:2 14705:2 14725:4 14800:1 14805:1 14846:1 14923:2 14953:2 14977:1 14978:1 14982:1 14999:1 15001:1 15035:1 15041:1 15042:2 15066:1 15133:1 15171:1 15198:1 15248:2 15249:1 15261:1 15269:1 15306:1 15324:1 15453:1 15487:2 15514:1 15580:1 15608:1 15612:1 15614:1 15645:1 15670:2 15693:1 15718:1 15726:1 15738:1 15758:2 15764:1 15788:1 15792:1 15841:1 15847:1 15916:1 15966:2 15968:1 16067:2 16082:1 16084:1 16130:7 16194:2 16205:1 16313:1 16326:2 16333:1 16359:1 16373:2 16393:642 16476:1 16493:1 16610:1 16653:1 16675:3 16706:1 16742:1 16750:1 16771:1 16829:1 16853:1 16939:1 16952:3 16973:1 17018:1 17038:2 17076:1 17079:1 17080:1 17087:1 17100:1 17103:2 17118:1 17175:1 17199:1 17218:2 17349:1 17387:1 17394:1 17439:4 17526:1 17572:1 17646:1 17748:1 17760:1 17763:1 17836:1 17848:1 17863:1 17940:1 17948:1 17961:1 18010:4 18016:1 18035:1 18067:1 18114:1 18168:1 18251:1 18397:1 18406:1 18436:1 18451:1 18457:1 18530:1 18620:1 18634:1 18655:1 18683:1 18831:1 18865:4 18909:1 18933:1 18942:1 19012:2 19016:1 19045:1 19079:1 19138:1 19190:4 19264:2 19278:1 19289:1 19333:1 19400:1 19553:2 19561:1 19609:1 19612:6 19648:1 19650:1 19693:1 19714:1 19766:2 19778:1 19838:1 19864:2 19883:1 19953:1 19991:1 19998:1 20045:1 20049:11 20093:3 20126:2 20183:1 20235:1 20236:1 20256:2 20289:1 20322:1 20331:1 20360:1 20399:1 20466:1 20530:1 20655:1 20688:1 20702:1 20748:2 20749:1 20767:1 20775:1 20783:1 20889:1 20899:1 20953:1 20984:1 21003:1 21010:1 21038:1 21106:1 21151:1 21153:1 21217:1 21319:3 21344:1 21346:1 21463:5 21495:1 21504:1 21555:1 21571:1 21640:2 21655:3 21680:1 21700:1 21747:1 21786:1 21798:1 21838:3 21860:1 21889:2 21907:1 22052:2 22160:1 22215:1 22249:2 22270:1 22284:1 22355:1 22393:1 22403:1 22406:1 22407:2 22410:1 22420:1 22442:1 22454:1 22495:1 22558:1 22597:2 22620:1 22680:1 22696:7 22730:1 22774:1 22829:2 22848:1 22875:1 22946:7 22984:1 23011:1 23024:1 23134:1 23137:2 23145:2 23272:2 23366:1 23426:1 23455:1 23466:3 23489:1 23643:1 23657:1 23697:1 23712:1 23832:2 23878:1 23911:1 24018:1 24021:1 24067:1 24069:1 24105:1 24130:3 24184:2 24186:1 24192:1 24257:1 24290:1 24303:1 24343:1 24373:7 24381:1 24439:1 24504:1 24514:1 24520:1 24526:1 24556:2 24573:1 24622:1 24640:1 24682:3 24701:1 24702:1 24716:1 24797:1 24839:1 24843:1 24928:1 24934:2 24974:1 25055:1 25074:1 25099:4 25107:1 25129:1 25288:1 25320:1 25350:1 25397:1 25407:1 25408:7 25436:1 25452:7 25476:1 25536:3 25556:1 25592:1 25621:2 25640:1 25662:1 25668:1 25796:1 25867:1 25878:3 25916:1 25967:1 26004:1 26027:1 26031:1 26036:1 26126:7
13 28:1 36:1 149:2 200:1 251:3 263:1 297:1 321:1 345:1 346:1 357:1 386:1 387:1 446:1 525:1 618:2 722:1 736:1 744:1 768:1 784:1 788:1 791:1 795:2 820:1 837:1 849:1 875:1 878:1 1053:2 1089:1 1193:1 1351:1 1395:3 1399:3 1412:1 1465:1 1472:1 1473:1 1498:5 1611:2 1652:1 1670:1 1803:1 1805:1 1919:1 1951:1 1993:1 2003:1 2026:1 2028:1 2034:1 2061:1 2130:1 2151:1 2169:1 2192:1 2259:2 2284:1 2287:3 2302:1 2310:1 2322:1 2343:1 2373:1 2466:1 2515:1 2531:1 2534:1 2554:1 2562:1 2568:2 2594:1 2641:1 2686:2 2725:1 2817:1 3005:1 3009:1 3070:1 3087:1 3109:1 3131:1 3172:1 3199:1 3206:3 3227:2 3246:2 3293:1 3337:1 3351:3 3355:1 3363:1 3386:2 3424:1 3452:1 3512:1 3517:1 3526:1 3536:1 3538:2 3572:1 3584:1 3604:1 3614:1 3674:2 3679:1 3752:1 3801:1 3827:1 3839:3 3864:1 3880:1 3891:1 3914:1 3949:1 3972:2 4025:1 4039:1 4048:4 4052:1 4055:1 4068:1 4089:2 4119:1 4125:1 4147:1 4165:1 4234:1 4251:1 4276:1 4318:2 4392:2 4399:1 4402:1 4409:1 4414:1 4546:1 4580:1 4600:1 4650:1 4652:1 4655:1 4712:8 4729:1 4740:1 4833:1 4841:1 4895:1 4920:1 4996:2 5016:2 5023:1 5040:1 5065:1 5095:1 5124:1 5170:1 5172:2 5306:1 5326:1 5382:1 5409:1 5410:1 5514:2 5572:1 5609:1 5704:1 5735:1 5865:1 5970:2 5971:2 6006:8 6138:1 6147:1 6197:1 6290:1 6291:1 6305:1 6346:1 6400:1 6413:1 6482:3 6531:1 6563:1 6658:1 6666:1 6743:1 6761:4 6786:8 6807:5 6825:1 6877:3 6991:1 7061:1 7096:7 7161:1 7182:2 7334:1 7378:1 7435:1 7474:1 7566:1 7567:1 7583:1 7588:2 7592:1 7599:1 7637:1 7678:1 7714:1 7876:1 7879:1 7880:1 7881:1 7886:1 7915:1 7916:1 7925:2 7989:1 8099:1 8190:1 8215:1 8245:2 8277:1 8334:1 8338:1 8424:1 8486:3 8500:1 8507:3 8520:1 8591:1 8605:1 8607:1 8633:1 8638:1 8645:1 8660:1 8688:1 8725:2 8740:1 8743:1 8804:2 8898:1 8916:1 8940:1 9017:1 9103:1 9113:1 9149:1 9225:1 9241:1 9251:3 9255:1 9306:1 9307:1 9339:1 9388:1 9394:1 9400:2 9491:1 9517:1 9546:1 9572:1 9586:2 9646:8 9690:1 9721:1 9745:1 9843:1 9855:1 9858:1 9993:3 10044:1 10112:3 10179:1 10228:1 10231:1 10244:2 10259:1 10274:1 10280:1 10287:1 10300:1 10304:1 10314:1 10369:1 10502:1 10503:3 10553:1 10598:1 10599:1 10610:3 10637:1 10640:2 10650:2 10656:1 10716:1 10721:1 10750:1 10796:1 10944:1 10947:1 10978:8 10986:1 11061:1 11151:1 11196:8 11256:1 11481:1 11496:1 11552:2 11558:1 11600:1 11617:1 11658:1 11675:1 11678:1 11695:1 11778:1 11786:1 11838:1 11855:8 11901:2 11986:2 12040:2 12126:1 12130:1 12263:4 12265:1 12278:1 12342:8 12402:1 12452:1 12453:2 12462:1 12508:1 12580:1 12585:1 12587:1 12638:2 12725:1 12742:1 12752:1 12754:1 12776:8 12779:1 12829:3 12871:2 12882:1 12917:1 12920:2 13039:1 13061:2 13073:1 13087:4 13115:3 13200:1 13227:1 13244:1 13266:1 13349:2 13385:1 13408:1 13477:1 13485:1 13571:1 13582:1 13598:1 13602:1 13646:1 13661:1 13666:1 13805:1 13819:1 13823:1 13826:1 13847:2 13852:1 13887:1 13952:1 13962:1 13981:1 14016:2 14022:2 14047:1 14080:1 14084:1 14098:3 14147:3 14158:2 14170:1 14199:1 14200:1 14223:1 14231:1 14257:1 14408:2 14415:1 14419:1 14489:1 14567:1 14612:1 14704:2 14705:2 14725:4 14800:1 14805:1 14838:1 14846:1 14923:2 14953:2 14977:1 14978:1 14982:1 14999:1 15001:1 15035:1 15041:1 15042:2 15066:1 15133:1 15171:1 15198:1 15248:2 15249:1 15261:1 15269:1 15306:1 15324:1 15453:1 15487:2 15514:1 15580:1 15608:1 15612:1 15614:1 15645:1 15670:2 15693:1 15718:1 15726:1 15738:1 15758:2 15764:1 15788:1 15792:1 15841:1 15847:1 15916:1 15966:2 15968:1 16067:2 16082:1 16084:1 16130:8 16194:2 16205:1 16313:1 16326:2 16333:1 16359:1 16373:2 16393:687 16476:1 16493:1 16505:1 16610:1 16653:1 16675:3 16706:1 16742:1 16750:1 16771:1 16829:1 16853:1 16939:1 16952:3 16973:1 17018:1 17038:2 17076:1 17079:1 17080:1 17087:1 17100:1 17103:2 17118:1 17175:1 17199:1 17218:2 17349:1 17387:1 17394:1 17439:5 17526:1 17572:1 17623:1 17646:1 17748:1 17760:1 17763:1 17836:1 17848:1 17863:1 17940:1 17948:1 17959:1 17961:1 18010:4 18016:1 18035:1 18067:1 18114:1 18168:1 18251:1 18397:1 18406:1 18436:1 18451:1 18457:1 18530:1 18599:1 18620:1 18634:1 18655:1 18683:1 18831:1 18865:5 18909:1 18933:1 18942:1 19012:2 19016:1 19045:1 19079:1 19138:1 19190:5 19264:2 19278:1 19289:1 19333:1 19366:1 19400:1 19453:1 19553:2 19561:1 19609:1 19612:7 19648:1 19650:1 19693:1 19714:1 19766:2 19778:1 19838:1 19864:2 19883:1 19953:1 19991:1 19998:1 20045:1 20049:12 20093:4 20126:2 20166:1 20183:1 20235:1 20236:1 20256:2 20289:1 20322:1 20331:1 20360:1 20399:1 20466:1 20530:1 20655:1 20688:1 20702:1 20748:2 20749:1 20767:1 20775:1 20783:1 20889:1 20899:1 20953:1 20984:1 21003:1 21010:1 21038:1 21106:1 21151:1 21153:1 21217:1 21319:3 21344:1 21346:1 21463:5 21495:1 21504:1 21555:1 21571:1 21640:2 21655:3 21680:1 21700:1 21747:1 21786:1 21798:1 21838:3 21860:1 21889:2 21907:1 22052:2 22160:1 22215:1 22249:2 22270:1 22284:1 22336:1 22355:1 22393:1 22403:1 22406:1 22407:2 22410:1 22420:1 22442:1 22454:1 22495:1 22558:1 22581:1 22597:2 22620:1 22680:1 22696:8 22730:1 22774:1 22829:2 22848:1 22875:1 22946:8 22984:1 23011:1 23024:1 23134:1 23137:2 23145:2 23272:2 23366:1 23426:1 23455:1 23466:3 23489:1 23643:1 23657:1 23697:1 23712:1 23832:2 23878:1 23911:1 24009:1 24018:1 24021:1 24067:1 24068:1 24069:1 24105:1 24130:3 24184:2 24186:1 24192:1 24257:1 24290:1 24303:1 24343:1 24373:8 24381:1 24439:1 24504:1 24514:1 24520:1 24526:1 24556:3 24573:1 24622:1 24640:1 24682:4 24701:1 24702:1 24716:1 24797:1 24839:1 24843:1 24928:1 24934:2 24974:1 25055:1 25074:1 25099:4 25107:1 25129:1 25288:1 25320:1 25350:1 25387:1 25397:1 25407:1 25408:8 25436:1 25452:8 25476:1 25536:3 25556:1 25592:1 25621:2 25640:1 25662:1 25668:1 25796:1 25867:1 25878:3 25916:1 25967:1 26004:1 26027:1 26031:1 26036:1 26126:8
13 28:1 36:1 149:2 200:1 251:3 263:2 297:1 321:1 345:1 346:1 349:1 357:1 386:1 387:1 446:1 525:1 618:2 721:1 722:1 736:1 744:1 768:1 784:1 788:1 791:1 795:2 820:1 837:1 849:1 875:1 878:1 1053:2 1089:1 1193:1 1351:1 1395:3 1399:3 1412:1 1465:1 1472:1 1473:1 1498:5 1611:3 1652:1 1670:1 1803:1 1805:1 1919:1 1951:1 1981:1 1993:1 2003:1 2022:1 2026:1 2028:1 2034:1 2061:1 2130:1 2151:1 2169:1 2192:2 2259:2 2284:1 2287:3 2302:1 2310:1 2322:1 2343:1 2373:1 2466:1 2475:1 2515:1 2531:1 2534:1 2554:1 2562:1 2568:2 2594:1 2641:1 2642:1 2686:2 2725:1 2817:1 3005:1 3009:1 3070:1 3087:1 3109:1 3131:1 3172:1 3199:1 3206:3 3227:2 3246:2 3293:1 3337:1 3351:3 3355:1 3363:1 3386:2 3424:1 3452:1 3512:1 3517:1 3526:1 3536:1 3538:2 3572:1 3584:1 3604:1 3614:1 3674:2 3679:1 3752:1 3801:1 3827:1 3839:3 3864:1 3880:1 3891:1 3914:1 3949:1 3972:2 4025:1 4039:1 4048:4 4052:1 4055:1 4068:1 4089:2 4119:1 4125:1 4147:2 4165:1 4234:1 4251:1 4276:2 4318:2 4392:2 4399:1 4402:1 4409:1 4414:1 4488:1 4546:1 4580:1 4600:1 4604:1 4650:1 4652:1 4655:1 4712:8 4729:1 4740:1 4743:1 4766:1 4833:1 4841:1 4895:1 4920:1 4996:2 5016:2 5023:1 5040:1 5065:1 5095:1 5109:1 5124:1 5170:1 5172:2 5306:1 5326:1 5382:1 5409:1 5410:1 5514:2 5572:1 5609:1 5704:1 5735:1 5865:1 5970:2 5971:2 6006:8 6097:2 6138:1 6147:1 6197:1 6290:1 6291:1 6305:1 6346:1 6400:1 6413:1 6482:3 6531:1 6563:1 6658:1 6666:1 6743:1 6761:4 6786:8 6807:5 6825:1 6877:3 6991:1 7061:1 7096:8 7161:1 7182:2 7198:1 7334:1 7378:1 7435:1 7474:1 7566:1 7567:1 7583:1 7588:2 7592:1 7599:1 7637:1 7678:1 7714:1 7769:1 7876:1 7879:1 7880:1 7881:1 7886:1 7915:1 7916:1 7925:2 7989:2 8099:1 8190:1 8215:1 8245:2 8277:1 8334:1 8338:1 8383:1 8424:1 8486:3 8500:1 8507:3 8520:1 8591:1 8605:1 8607:1 8633:1 8638:1 8645:1 8660:1 8688:1 8725:2 8740:1 8743:1 8804:2 8808:1 8818:1 8898:1 8916:1 8940:1 9017:1 9080:1 9103:1 9113:2 9149:1 9225:1 9241:1 9251:3 9255:1 9306:1 9307:1 9339:1 9388:1 9394:1 9400:2 9471:1 9491:1 9517:1 9546:1 9572:1 9586:2 9646:8 9690:1 9721:1 9745:1 9843:1 9855:1 9858:1 9993:3 10042:1 10044:1 10112:3 10179:1 10228:1 10231:1 10232:1 10244:2 10259:1 10274:1 10280:1 10287:1 10300:1 10304:1 10314:1 10369:1 10502:1 10503:3 10553:1 10598:1 10599:1 10610:3 10637:1 10640:2 10650:2 10656:1 10716:1 10721:2 10750:1 10793:1 10796:1 10944:1 10947:1 10978:8 10986:1 11061:1 11147:1 11151:1 11196:8 11256:1 11481:1 11496:1 11552:2 11558:1 11600:1 11617:1 11658:1 11675:1 11678:1 11695:1 11778:1 11786:1 11838:1 11855:8 11901:2 11986:2 12040:2 12126:1 12130:1 12263:4 12265:1 12278:1 12342:8 12402:1 12452:1 12453:2 12462:1 12466:1 12508:1 12580:1 12585:1 12587:1 12638:2 12725:1 12742:1 12752:1 12754:1 12776:8 12779:1 12829:3 12871:2 12882:1 12917:1 12920:2 12942:1 13039:1 13061:2 13073:1 13087:6 13115:3 13200:1 13227:1 13244:1 13266:1 13349:2 13361:1 13385:1 13408:1 13477:1 13485:1 13571:1 13574:1 13582:1 13598:1 13602:1 13646:1 13661:1 13666:1 13798:1 13805:1 13819:1 13823:1 13826:1 13847:2 13852:1 13862:1 13887:1 13952:1 13962:1 13981:1 14016:2 14022:2 14047:1 14080:1 14084:1 14098:4 14147:4 14158:2 14170:1 14193:1 14199:1 14200:1 14223:1 14231:1 14257:1 14408:2 14415:1 14419:1 14489:1 14567:1 14612:1 14704:2 14705:2 14725:4 14800:1 14805:1 14833:1 14838:1 14846:1 14923:2 14953:2 14977:1 14978:1 14982:1 14999:1 15001:1 15035:1 15041:1 15042:2 15066:1 15133:1 15171:1 15198:1 15248:2 15249:1 15261:1 15269:1 15306:1 15324:1 15453:1 15472:1 15487:2 15514:1 15580:1 15608:1 15612:1 15614:1 15645:1 15670:2 15693:1 15718:1 15726:1 15738:1 15745:1 15758:2 15764:1 15788:2 15792:1 15841:1 15847:1 15911:1 15916:1 15966:2 15968:1 16067:2 16082:1 16084:1 16130:8 16194:2 16205:1 16313:1 16326:2 16333:1 16359:1 16373:2 16393:771 16476:1 16493:1 16505:1 16610:1 16653:1 16675:3 16706:1 16742:1 16750:1 16771:1 16829:1 16853:1 16939:1 16952:4 16973:1 17018:2 17038:2 17076:1 17079:1 17080:1 17087:1 17100:1 17103:2 17118:1 17175:1 17199:1 17218:2 17349:1 17387:1 17394:1 17439:5 17526:1 17572:1 17623:1 17646:1 17742:1 17748:1 17760:1 17763:1 17836:1 17848:1 17863:1 17940:1 17948:1 17959:1 17961:1 18010:4 18016:1 18035:1 18067:1 18114:1 18168:1 18251:1 18397:1 18406:1 18436:1 18451:2 18457:1 18530:1 18599:1 18620:1 18634:1 18655:1 18683:1 18831:1 18865:5 18909:1 18933:1 18942:1 19012:2 19016:1 19045:1 19079:1 19138:1 19190:5 19263:1 19264:2 19278:1 19289:1 19329:1 19333:1 19363:1 19366:1 19400:1 19453:1 19553:2 19561:1 19609:1 19612:7 19648:1 19650:1 19693:1 19700:1 19714:1 19766:3 19778:1 19838:1 19864:3 19883:1 19953:1 19991:1 19998:1 20045:1 20049:14 20093:4 20126:2 20166:1 20183:1 20235:1 20236:1 20256:2 20289:1 20322:1 20331:1 20360:1 20399:1 20466:1 20530:1 20641:1 20655:1 20688:1 20702:1 20748:2 20749:1 20767:1 20775:1 20783:1 20889:1 20899:1 20953:1 20984:1 21003:1 21010:1 21038:1 21106:1 21151:1 21153:1 21217:1 21272:1 21319:3 21344:1 21346:1 21463:5 21495:1 21504:1 21555:1 21571:1 21640:2 21655:4 21680:1 21700:1 21747:1 21786:1 21798:1 21838:4 21860:1 21889:2 21907:1 22052:2 22128:1 22160:1 22215:1 22249:2 22264:1 22270:1 22284:1 22336:1 22355:1 22393:1 22403:1 22406:1 22407:2 22410:1 22420:1 22442:1 22454:1 22495:1 22503:2 22558:1 22581:1 22597:2 22620:1 22680:1 22691:1 22696:8 22730:2 22774:1 22829:2 22848:1 22875:1 22946:8 22984:1 23011:1 23015:1 23024:1 23134:1 23137:2 23145:2 23272:2 23366:1 23426:1 23455:1 23466:3 23489:1 23643:1 23657:1 23697:1 23712:1 23832:2 23878:1 23911:2 24009:1 24018:1 24021:1 24067:1 24068:1 24069:1 24105:1 24130:3 24184:2 24186:1 24192:1 24257:1 24270:1 24290:1 24303:1 24343:2 24373:8 24381:1 24439:1 24504:1 24514:1 24520:1 24526:1 24556:4 24573:1 24622:1 24640:1 24682:4 24701:1 24702:1 24716:1 24797:1 24839:1 24843:1 24883:1 24928:1 24934:2 24974:1 25055:1 25074:1 25099:4 25107:1 25129:1 25288:1 25320:2 25350:2 25387:1 25397:1 25402:1 25407:1 25408:8 25436:1 25452:8 25476:1 25536:4 25552:2 25556:1 25592:1 25621:2 25640:1 25662:1 25668:1 25796:1 25867:1 25878:3 25916:1 25967:1 26004:1 26027:1 26031:1 26036:1 26126:8
13 28:1 36:1 149:2 200:1 251:3 263:2 297:1 321:1 345:1 346:1 349:1 357:1 386:1 387:1 446:1 525:1 618:2 721:1 722:1 736:1 744:1 768:1 784:1 788:1 791:1 795:2 820:1 837:1 849:1 875:1 878:1 1053:2 1089:1 1193:1 1351:1 1395:3 1399:3 1412:1 1465:1 1472:1 1473:1 1498:5 1611:3 1652:1 1670:1 1803:1 1805:1 1919:1 1951:1 1981:1 1991:1 1993:1 2003:1 2022:1 2026:1 2028:1 2034:1 2061:1 2130:1 2151:1 2169:1 2192:2 2259:2 2284:1 2287:3 2302:1 2310:1 2322:1 2343:1 2373:1 2428:1 2466:1 2475:1 2515:1 2531:1 2534:1 2554:1 2562:1 2568:2 2594:1 2641:2 2642:1 2686:2 2725:1 2817:1 3005:1 3009:1 3070:1 3087:1 3109:1 3131:1 3172:1 3199:1 3206:3 3227:2 3246:2 3293:1 3337:1 3351:3 3355:1 3363:1 3386:2 3424:1 3452:1 3512:1 3517:1 3526:1 3536:1 3538:2 3572:1 3584:1 3604:1 3614:1 3674:2 3679:1 3752:1 3801:1 3827:1 3839:3 3864:1 3880:1 3891:1 3914:1 3949:1 3972:2 4025:1 4039:1 4048:4 4052:1 4055:1 4068:1 4089:2 4119:1 4125:1 4147:2 4165:1 4234:1 4251:1 4276:3 4318:2 4392:2 4399:1 4402:1 4407:1 4409:1 4414:1 4488:1 4546:1 4580:1 4600:1 4604:1 4650:1 4652:1 4655:1 4712:9 4729:1 4740:1 4743:1 4766:1 4833:1 4841:1 4895:1 4920:1 4996:2 5016:2 5023:1 5040:1 5065:1 5095:1 5109:1 5124:1 5170:1 5172:2 5306:1 5326:1 5382:1 5409:1 5410:1 5514:2 5572:1 5609:1 5704:1 5735:1 5865:1 5970:2 5971:2 6006:9 6097:2 6138:1 6147:1 6197:1 6290:1 6291:1 6305:1 6346:1 6400:1 6413:1 6482:3 6531:1 6563:1 6658:1 6666:1 6743:1 6761:4 6786:9 6807:5 6825:1 6877:3 6988:1 6991:1 7039:1 7061:1 7096:9 7161:1 7182:2 7198:1 7334:1 7378:1 7435:1 7474:1 7566:1 7567:1 7583:1 7588:2 7592:1 7599:1 7637:1 7678:1 7714:1 7769:1 7876:1 7879:1 7880:1 7881:1 7886:1 7915:1 7916:1 7925:2 7989:2 8070:1 8099:1 8190:1 8215:1 8245:2 8277:1 8334:1 8338:1 8383:1 8424:1 8486:3 8500:1 8507:3 8520:1 8591:1 8605:1 8607:1 8633:1 8638:1 8645:1 8660:1 8688:1 8725:2 8740:1 8743:1 8804:2 8808:1 8818:1 8898:1 8916:1 8940:1 9017:1 9080:1 9103:1 9113:2 9149:1 9225:1 9235:1 9241:1 9251:3 9255:1 9306:1 9307:1 9339:1 9388:1 9394:1 9400:2 9471:1 9491:1 9517:1 9546:1 9572:1 9586:2 9646:9 9690:1 9721:1 9745:1 9843:1 9855:1 9858:1 9993:3 10042:1 10044:2 10112:3 10179:1 10228:1 10229:1 10231:1 10232:1 10244:2 10259:1 10274:1 10280:1 10287:1 10300:1 10304:1 10314:1 10369:1 10502:1 10503:3 10553:1 10598:1 10599:1 10610:3 10637:1 10640:2 10650:2 10656:1 10716:1 10721:2 10750:1 10793:1 10796:1 10944:1 10947:1 10978:9 10986:1 11061:1 11147:1 11151:1 11196:9 11256:1 11481:1 11496:1 11552:2 11558:1 11600:1 11617:1 11658:1 11675:1 11678:1 11695:1 11778:1 11786:1 11838:1 11855:9 11901:2 11986:2 12040:2 12096:1 12126:1 12130:1 12263:4 12265:1 12278:1 12342:9 12402:1 12452:1 12453:2 12462:1 12466:1 12508:1 12580:1 12585:1 12587:1 12638:2 12725:1 12742:1 12752:1 12754:1 12776:9 12779:1 12829:3 12871:2 12882:1 12917:1 12920:2 12942:1 13039:1 13061:2 13073:1 13087:6 13115:3 13200:1 13223:1 13227:1 13244:1 13266:1 13349:2 13361:1 13385:1 13408:1 13477:1 13485:1 13571:1 13574:1 13582:1 13598:1 13602:1 13646:1 13661:1 13666:1 13798:1 13805:1 13819:1 13823:1 13826:1 13847:2 13852:1 13862:1 13887:1 13952:1 13962:1 13981:1 14016:2 14022:2 14047:1 14052:1 14080:1 14084:1 14098:4 14147:4 14158:2 14170:1 14193:1 14199:1 14200:1 14223:1 14231:1 14257:1 14408:2 14415:1 14419:1 14489:1 14567:1 14612:1 14704:2 14705:2 14725:4 14800:1 14805:1 14833:1 14838:1 14846:1 14923:2 14953:2 14977:1 14978:1 14982:1 14999:1 15001:1 15035:1 15041:1 15042:2 15066:1 15133:1 15171:1 15198:1 15248:2 15249:1 15261:2 15269:1 15306:1 15324:1 15384:1 15453:1 15472:1 15487:2 15514:1 15580:1 15608:1 15612:1 15614:1 15645:1 15670:2 15693:1 15718:1 15726:1 15738:1 15745:1 15758:2 15764:1 15788:2 15792:1 15841:1 15847:1 15911:1 15916:1 15966:2 15968:1 16067:2 16082:1 16084:1 16130:9 16194:2 16205:1 16313:1 16326:2 16333:1 16359:1 16373:2 16393:797 16476:1 16493:1 16505:1 16610:1 16653:1 16675:3 16706:1 16742:1 16750:1 16771:1 16829:1 16853:1 16939:1 16952:4 16973:1 17018:2 17038:2 17076:1 17079:1 17080:1 17087:1 17100:1 17103:2 17118:1 17175:1 17199:1 17218:2 17349:1 17387:1 17394:1 17439:6 17526:1 17572:1 17623:1 17646:1 17742:1 17748:1 17760:1 17763:1 17836:1 17848:1 17863:1 17940:1 17948:1 17959:1 17961:1 18010:4 18016:1 18035:1 18067:1 18114:1 18168:1 18251:2 18397:1 18406:1 18436:1 18451:2 18457:1 18530:1 18599:1 18620:1 18634:1 18655:1 18683:1 18831:1 18865:6 18909:1 18933:1 18942:1 19012:2 19016:1 19045:1 19079:1 19138:1 19190:6 19263:1 19264:2 19278:1 19289:1 19329:1 19333:1 19363:1 19366:1 19400:1 19453:1 19549:1 19553:2 19561:1 19609:1 19612:8 19648:1 19650:1 19693:1 19700:1 19714:1 19766:3 19778:1 19838:1 19864:3 19883:1 19953:1 19991:1 19998:1 20045:1 20049:15 20093:4 20126:2 20166:1 20183:1 20235:1 20236:1 20256:2 20289:1 20322:1 20331:1 20360:1 20399:1 20466:1 20530:1 20641:1 20655:1 20688:1 20702:1 20748:2 20749:1 20767:1 20775:1 20783:1 20889:1 20899:1 20953:1 20984:1 21003:1 21010:1 21038:1 21106:1 21151:2 21153:1 21217:1 21272:1 21319:3 21344:1 21346:1 21463:5 21495:1 21504:1 21555:1 21571:1 21640:2 21655:4 21680:1 21700:1 21747:1 21786:1 21798:1 21838:4 21860:1 21889:2 21907:1 22052:2 22128:1 22160:1 22215:1 22249:2 22264:1 22270:1 22284:1 22336:1 22355:1 22393:1 22403:1 22406:1 22407:2 22410:1 22420:1 22442:1 22454:1 22495:1 22503:2 22558:1 22581:1 22597:2 22620:1 22680:1 22691:1 22696:9 22730:2 22774:1 22829:2 22848:1 22875:1 22946:9 22984:1 23011:1 23015:1 23018:1 23024:1 23134:1 23137:2 23145:2 23272:2 23366:1 23426:1 23455:1 23466:3 23489:1 23643:1 23657:1 23697:1 23712:1 23832:2 23878:1 23911:2 24009:1 24018:1 24021:1 24067:1 24068:1 24069:1 24105:1 24130:3 24184:2 24186:1 24192:1 24257:1 24270:1 24290:1 24303:1 24343:2 24373:9 24381:1 24439:1 24504:1 24514:1 24520:1 24526:1 24556:4 24573:1 24622:1 24640:1 24682:4 24701:1 24702:1 24716:1 24797:1 24839:1 24843:1 24883:1 24928:1 24934:2 24974:1 25055:1 25074:1 25099:4 25107:1 25129:1 25288:1 25320:2 25350:2 25387:1 25397:1 25402:1 25407:1 25408:9 25436:1 25452:9 25464:1 25476:1 25536:4 25552:2 25556:1 25592:1 25621:2 25640:1 25662:1 25668:1 25796:1 25867:1 25878:3 25916:1 25967:1 26004:1 26027:1 26031:1 26036:1 26126:9
13 28:1 36:1 83:1 149:2 162:1 200:1 229:1 251:3 263:2 297:1 321:1 345:1 346:1 349:1 357:1 386:1 387:1 446:1 525:1 618:2 721:1 722:1 736:1 744:1 768:1 784:1 788:1 791:1 795:2 820:1 837:1 849:1 875:1 878:1 1053:3 1089:1 1193:1 1351:1 1395:4 1399:3 1412:1 1465:1 1471:1 1472:1 1473:1 1498:5 1611:3 1652:1 1670:1 1803:1 1805:1 1919:1 1951:1 1981:1 1991:1 1993:1 2003:1 2022:1 2026:1 2028:1 2034:1 2061:1 2130:1 2151:1 2169:1 2171:1 2188:1 2192:2 2259:2 2284:1 2287:3 2294:1 2302:1 2310:1 2322:1 2343:1 2373:1 2428:1 2466:1 2475:1 2515:1 2531:1 2534:1 2554:1 2562:1 2568:2 2594:1 2641:2 2642:1 2686:2 2725:2 2817:1 3005:1 3009:1 3070:1 3087:1 3109:1 3131:1 3172:1 3199:1 3206:3 3227:2 3246:2 3293:1 3337:1 3351:3 3355:1 3363:1 3386:4 3424:1 3452:1 3512:1 3517:1 3526:1 3536:1 3538:2 3572:1 3584:1 3604:1 3614:1 3674:2 3679:1 3752:1 3801:1 3827:1 3839:3 3864:1 3880:1 3891:1 3914:1 3949:1 3972:3 4025:1 4039:1 4048:4 4052:1 4055:1 4068:2 4089:2 4119:1 4125:1 4147:2 4165:1 4234:1 4251:2 4276:3 4318:2 4323:1 4392:2 4399:1 4402:1 4407:1 4408:1 4409:1 4414:1 4488:1 4546:1 4580:1 4600:1 4604:1 4650:1 4652:1 4655:1 4712:10 4729:1 4740:1 4743:1 4766:1 4833:1 4841:1 4895:1 4920:1 4996:2 5016:2 5023:1 5040:1 5065:1 5076:1 5095:1 5109:1 5124:1 5170:2 5172:2 5306:1 5326:1 5382:1 5409:1 5410:2 5514:3 5572:1 5609:1 5638:1 5704:1 5735:1 5865:1 5970:2 5971:2 6006:10 6097:2 6138:1 6147:1 6162:1 6197:1 6290:1 6291:1 6305:1 6346:1 6400:1 6413:1 6476:1 6482:3 6531:1 6563:1 6658:1 6666:1 6743:1 6761:5 6786:10 6807:5 6825:1 6877:3 6988:1 6991:1 7039:1 7061:1 7096:10 7161:1 7182:2 7198:1 7334:1 7378:1 7435:1 7474:1 7566:1 7567:1 7583:1 7588:2 7592:1 7599:1 7637:1 7649:1 7671:1 7678:1 7714:1 7769:1 7856:1 7876:1 7879:1 7880:1 7881:1 7886:1 7915:1 7916:1 7925:2 7989:2 8070:1 8099:1 8179:1 8190:1 8215:2 8245:3 8277:1 8334:1 8338:1 8383:1 8424:1 8486:3 8500:1 8507:3 8520:1 8591:1 8605:1 8607:1 8633:1 8638:1 8645:1 8660:1 8688:1 8725:3 8740:1 8743:1 8804:2 8808:1 8818:1 8898:1 8916:1 8940:1 8959:1 9017:1 9080:1 9103:1 9113:2 9149:1 9174:1 9225:1 9235:1 9241:1 9251:3 9255:1 9306:1 9307:1 9339:1 9388:1 9394:1 9395:1 9400:2 9471:1 9491:1 9517:1 9546:1 9572:1 9586:2 9595:1 9646:10 9690:1 9721:2 9745:1 9843:1 9855:1 9858:1 9993:3 10042:2 10044:2 10112:3 10179:1 10228:1 10229:1 10231:1 10232:1 10244:2 10259:1 10274:2 10280:1 10287:1 10300:1 10304:2 10314:1 10369:1 10502:1 10503:3 10553:2 10598:1 10599:1 10610:3 10637:1 10640:2 10650:2 10656:1 10716:1 10721:2 10750:1 10793:1 10796:1 10944:1 10947:1 10978:10 10986:1 11061:1 11147:1 11151:1 11196:10 11256:1 11481:1 11496:1 11552:2 11558:2 11600:1 11617:1 11658:1 11675:1 11678:1 11695:1 11778:1 11786:1 11838:1 11855:10 11901:2 11986:2 12040:2 12096:1 12126:1 12130:1 12263:4 12265:1 12278:1 12342:10 12402:1 12452:1 12453:2 12462:1 12466:1 12508:1 12580:1 12585:1 12587:1 12602:1 12638:2 12710:1 12725:1 12742:1 12752:1 12754:1 12776:10 12779:1 12829:3 12871:2 12882:1 12917:1 12920:2 12942:1 13039:1 13061:2 13073:1 13087:6 13100:1 13115:3 13200:1 13223:1 13227:1 13244:1 13266:1 13349:2 13361:1 13379:1 13385:1 13408:1 13477:1 13485:1 13571:1 13574:1 13582:1 13598:1 13602:1 13646:1 13661:1 13666:1 13798:1 13805:1 13819:1 13823:1 13826:1 13847:2 13852:1 13862:1 13887:1 13952:1 13962:2 13981:1 13999:1 14012:1 14016:2 14022:2 14047:1 14052:1 14080:1 14084:1 14098:4 14147:4 14158:2 14170:1 14193:1 14199:1 14200:1 14223:1 14231:1 14257:1 14408:2 14415:1 14419:1 14453:1 14489:1 14567:1 14596:1 14612:1 14704:2 14705:2 14725:4 14800:1 14805:1 14833:1 14838:1 14846:1 14923:2 14953:2 14977:1 14978:1 14982:1 14999:1 15001:1 15035:2 15041:1 15042:2 15066:1 15133:1 15171:1 15198:1 15248:2 15249:1 15253:1 15261:2 15269:1 15306:1 15324:1 15384:1 15453:1 15472:1 15487:2 15514:1 15521:1 15580:1 15608:1 15612:1 15614:1 15645:1 15670:2 15693:1 15718:1 15726:1 15738:1 15745:1 15758:2 15764:1 15788:2 15792:1 15841:1 15847:1 15911:1 15916:1 15966:3 15968:1 16067:2 16082:1 16084:1 16130:10 16194:2 16205:1 16313:1 16326:2 16333:1 16359:1 16373:2 16393:830 16476:1 16493:1 16505:1 16610:1 16653:1 16675:3 16706:1 16742:1 16750:1 16771:1 16829:1 16853:1 16939:1 16952:4 16973:1 17018:2 17038:2 17076:1 17079:1 17080:1 17087:1 17100:1 17103:4 17118:1 17175:1 17199:1 17218:2 17256:1 17349:1 17387:1 17394:1 17439:6 17526:1 17572:1 17623:1 17646:1 17742:1 17748:1 17760:1 17763:1 17836:1 17848:1 17863:1 17940:1 17948:1 17957:1 17959:1 17961:1 18010:4 18016:1 18035:1 18067:1 18114:1 18168:1 18177:1 18251:2 18397:1 18406:1 18436:1 18451:2 18457:1 18530:1 18599:1 18620:1 18634:1 18655:1 18683:1 18831:1 18865:6 18909:1 18933:1 18942:1 19012:3 19016:1 19045:1 19079:1 19138:1 19190:6 19252:1 19263:1 19264:2 19278:1 19289:1 19329:1 19333:1 19363:1 19366:1 19400:1 19453:1 19549:1 19553:2 19561:1 19567:1 19609:1 19612:9 19648:1 19650:1 19693:1 19700:1 19714:1 19766:3 19778:1 19838:1 19854:1 19860:1 19864:3 19883:1 19953:1 19991:1 19998:1 20045:1 20049:16 20093:4 20126:2 20166:1 20183:1 20235:1 20236:1 20256:2 20289:1 20322:1 20331:1 20360:1 20399:1 20454:1 20466:1 20530:1 20604:1 20641:1 20655:1 20688:1 20702:1 20748:2 20749:1 20767:1 20775:1 20783:1 20889:1 20899:2 20953:1 20984:1 21003:1 21010:1 21038:1 21106:1 21151:2 21153:1 21217:2 21272:1 21319:3 21344:1 21346:1 21463:5 21495:1 21504:1 21555:1 21563:1 21571:1 21640:2 21655:4 21680:2 21700:1 21747:1 21774:1 21786:1 21798:1 21838:4 21860:1 21889:3 21907:1 21960:1 22052:2 22105:1 22119:1 22128:1 22160:1 22215:1 22249:2 22264:1 22270:1 22284:1 22336:1 22355:2 22393:1 22403:1 22406:1 22407:2 22409:1 22410:1 22420:1 22442:1 22454:1 22495:1 22503:2 22558:1 22581:1 22597:2 22620:1 22680:1 22691:1 22696:10 22730:2 22774:1 22829:2 22848:1 22875:1 22946:10 22984:1 23011:1 23015:1 23018:1 23024:1 23134:1 23137:2 23145:2 23254:1 23272:2 23366:1 23426:1 23455:1 23466:3 23489:1 23622:1 23643:1 23657:1 23697:1 23712:1 23832:2 23878:1 23911:2 23941:1 24009:1 24018:1 24021:1 24067:1 24068:1 24069:1 24105:1 24130:3 24184:3 24185:1 24186:1 24192:1 24257:1 24270:1 24290:1 24303:1 24343:2 24373:10 24381:1 24439:2 24504:1 24514:1 24520:1 24526:1 24556:4 24573:1 24622:1 24640:2 24682:4 24687:1 24701:1 24702:1 24716:1 24797:1 24839:1 24843:1 24883:1 24885:1 24928:1 24934:2 24974:1 25055:1 25074:1 25099:5 25107:1 25129:1 25288:1 25300:1 25320:2 25350:2 25387:1 25397:1 25402:1 25407:1 25408:10 25436:1 25452:10 25464:1 25476:1 25536:4 25552:2 25556:1 25579:1 25592:1 25621:2 25640:1 25662:1 25668:1 25796:1 25867:1 25878:3 25916:1 25937:1 25967:1 26004:1 26027:1 26031:1 26036:1 26126:10
13 28:1 36:1 83:1 149:2 162:1 200:1 229:1 251:3 263:2 297:1 321:1 345:1 346:1 349:1 357:1 386:1 387:1 446:1 525:1 605:1 618:2 721:1 722:1 736:1 744:1 768:1 784:1 788:1 791:1 795:2 796:1 820:1 837:1 849:1 875:1 878:1 1053:3 1089:1 1193:1 1351:1 1395:4 1399:3 1412:1 1465:1 1471:1 1472:1 1473:1 1498:6 1611:3 1652:1 1670:1 1803:1 1805:1 1919:1 1951:1 1981:1 1991:1 1993:1 2003:1 2022:1 2026:1 2028:1 2034:1 2061:1 2130:1 2151:1 2169:1 2171:1 2188:1 2192:2 2223:1 2243:1 2259:2 2284:1 2287:3 2294:1 2302:1 2310:1 2322:1 2343:1 2373:1 2428:1 2448:1 2466:1 2475:1 2515:1 2527:1 2531:2 2534:1 2554:1 2562:1 2568:2 2594:1 2641:2 2642:1 2686:2 2725:2 2817:1 3005:1 3009:1 3070:1 3087:1 3109:1 3131:1 3172:1 3199:1 3206:3 3227:2 3246:2 3293:1 3337:1 3351:3 3355:1 3363:1 3385:1 3386:4 3424:1 3452:1 3460:1 3512:1 3517:1 3526:1 3536:1 3538:2 3572:1 3584:1 3604:1 3614:1 3674:2 3679:1 3752:1 3801:1 3827:1 3839:3 3864:1 3880:1 3891:1 3914:1 3949:1 3972:3 4025:1 4039:1 4048:4 4052:1 4055:2 4068:2 4089:2 4119:1 4125:1 4147:2 4165:1 4234:1 4251:2 4276:3 4318:2 4323:1 4349:1 4392:2 4399:1 4402:1 4407:1 4408:1 4409:2 4414:1 4488:1 4509:1 4546:1 4580:1 4600:1 4604:1 4650:1 4652:1 4655:1 4712:11 4729:1 4740:1 4743:1 4766:1 4833:1 4841:1 4895:1 4920:1 4996:2 5016:2 5023:1 5040:1 5065:1 5076:1 5095:1 5109:1 5124:1 5170:2 5172:2 5306:1 5326:1 5382:1 5409:1 5410:2 5487:1 5514:3 5556:1 5572:1 5609:1 5638:1 5704:1 5735:1 5865:1 5970:2 5971:2 6006:11 6097:2 6138:1 6147:1 6162:1 6197:1 6290:1 6291:1 6305:1 6346:1 6400:1 6413:1 6476:1 6482:3 6531:1 6563:1 6658:1 6666:1 6743:1 6761:5 6786:11 6807:5 6825:2 6877:4 6988:1 6991:1 7039:1 7061:1 7096:11 7161:1 7182:2 7198:1 7334:1 7378:1 7422:1 7435:1 7474:1 7566:1 7567:1 7583:1 7588:2 7592:1 7599:1 7637:1 7649:1 7671:1 7678:1 7714:1 7769:1 7856:1 7876:1 7879:1 7880:1 7881:1 7886:1 7915:1 7916:1 7925:2 7989:2 8058:1 8070:1 8099:1 8179:1 8190:1 8215:2 8245:3 8277:1 8334:1 8338:1 8383:1 8424:1 8486:3 8500:1 8507:5 8520:1 8521:1 8591:2 8605:1 8607:1 8633:1 8638:1 8645:1 8660:1 8688:1 8725:3 8740:1 8743:1 8804:2 8808:1 8818:1 8898:1 8916:1 8940:1 8959:1 9017:1 9049:1 9080:1 9103:1 9113:2 9149:1 9174:1 9225:1 9235:1 9241:1 9247:1 9251:4 9255:1 9306:1 9307:1 9339:1 9388:1 9394:1 9395:1 9400:2 9471:1 9491:1 9517:1 9523:1 9546:1 9572:1 9586:2 9595:1 9646:11 9690:1 9721:2 9745:1 9843:1 9853:1 9855:1 9858:1 9993:3 10042:2 10044:2 10052:1 10112:3 10179:1 10228:1 10229:1 10231:1 10232:1 10244:2 10259:1 10274:2 10280:1 10287:2 10300:1 10304:2 10314:1 10369:1 10502:1 10503:3 10553:2 10598:1 10599:1 10610:3 10637:1 10640:2 10650:2 10656:1 10698:1 10716:1 10721:2 10750:1 10793:1 10796:1 10944:1 10947:1 10978:11 10986:1 11055:1 11061:1 11147:1 11151:1 11158:1 11196:11 11256:1 11481:2 11496:1 11552:2 11558:2 11600:1 11617:1 11658:1 11675:1 11678:1 11695:1 11778:1 11786:1 11838:1 11855:11 11901:2 11986:2 12040:2 12096:1 12126:1 12130:1 12263:5 12265:1 12278:1 12342:11 12343:1 12402:1 12452:1 12453:2 12462:1 12466:1 12508:1 12580:1 12585:1 12587:1 12602:1 12638:2 12710:1 12725:1 12742:1 12752:1 12754:1 12776:11 12779:1 12829:3 12871:2 12882:1 12917:1 12920:2 12942:1 13018:1 13039:1 13061:2 13073:1 13087:6 13100:1 13115:3 13200:1 13223:1 13227:1 13244:1 13266:1 13349:2 13361:1 13379:2 13385:1 13408:1 13477:1 13485:1 13571:1 13574:1 13582:1 13598:1 13602:1 13646:1 13661:1 13666:1 13798:1 13805:1 13819:1 13823:1 13826:1 13847:2 13852:1 13856:1 13862:1 13887:1 13952:1 13962:2 13981:1 13999:1 14012:1 14016:3 14022:2 14047:2 14052:1 14080:1 14084:1 14098:4 14147:4 14158:2 14170:1 14193:1 14199:1 14200:1 14223:1 14231:1 14257:1 14408:2 14415:1 14418:1 14419:1 14453:1 14489:1 14567:1 14596:1 14612:1 14704:2 14705:2 14725:4 14800:1 14805:1 14833:1 14838:1 14846:1 14923:2 14953:2 14977:1 14978:1 14982:1 14999:1 15001:1 15035:2 15041:1 15042:2 15066:1 15133:1 15171:1 15182:1 15198:1 15239:1 15248:2 15249:1 15253:1 15261:2 15269:1 15306:1 15324:1 15384:1 15453:1 15472:1 15487:2 15514:1 15521:1 15580:1 15608:1 15612:1 15614:1 15645:1 15670:2 15693:1 15718:1 15726:1 15738:1 15745:1 15758:2 15764:1 15788:2 15792:1 15813:1 15841:1 15847:1 15901:1 15911:1 15916:1 15966:3 15968:1 16067:2 16082:1 16084:1 16130:11 16194:2 16205:1 16313:1 16326:2 16333:1 16359:1 16373:2 16393:899 16476:1 16493:1 16505:1 16610:1 16653:1 16675:3 16706:1 16742:1 16750:1 16771:1 16829:1 16834:1 16853:1 16939:1 16952:4 16973:1 17018:2 17038:2 17073:1 17076:1 17079:1 17080:1 17087:1 17100:1 17103:4 17114:1 17118:1 17175:1 17199:1 17218:2 17256:1 17344:1 17349:1 17387:1 17394:1 17439:7 17526:1 17572:1 17623:1 17646:1 17742:1 17748:1 17758:1 17760:1 17763:1 17836:1 17848:1 17863:1 17934:1 17940:1 17948:1 17957:1 17959:1 17961:1 18010:4 18016:1 18017:1 18035:1 18067:1 18114:1 18168:1 18177:1 18251:2 18292:1 18397:1 18406:1 18436:1 18451:2 18457:1 18530:1 18599:1 18620:1 18634:1 18655:1 18683:1 18831:1 18865:7 18909:1 18933:1 18942:1 19012:3 19016:1 19045:1 19079:2 19138:1 19190:7 19198:1 19252:1 19263:1 19264:2 19278:1 19281:1 19289:1 19329:1 19333:1 19363:1 19366:1 19400:1 19453:1 19549:1 19553:2 19561:1 19567:1 19609:1 19612:10 19648:1 19650:1 19693:1 19700:1 19714:1 19766:3 19778:1 19838:1 19854:1 19860:1 19864:3 19883:2 19953:1 19991:1 19998:1 20045:1 20049:17 20093:4 20126:2 20166:1 20183:1 20235:1 20236:1 20256:2 20289:1 20321:1 20322:1 20331:1 20360:1 20399:1 20454:1 20466:1 20530:1 20604:1 20641:1 20655:1 20688:1 20702:1 20748:2 20749:1 20767:1 20775:1 20783:1 20889:1 20899:2 20900:1 20953:1 20984:1 21003:1 21010:1 21038:1 21106:1 21148:1 21151:2 21153:1 21217:2 21272:1 21319:3 21344:1 21346:1 21463:5 21495:1 21504:1 21555:1 21563:1 21570:1 21571:1 21640:2 21655:4 21680:2 21700:1 21747:1 21774:1 21786:1 21798:1 21838:4 21860:1 21889:3 21907:2 21960:1 22043:1 22052:2 22105:1 22119:1 22128:1 22160:1 22215:1 22249:2 22253:1 22264:1 22270:1 22284:1 22336:1 22355:2 22393:1 22403:1 22406:1 22407:2 22409:1 22410:1 22420:1 22442:1 22454:1 22495:1 22503:2 22558:1 22581:1 22597:2 22620:1 22680:1 22691:1 22696:11 22730:2 22774:1 22829:2 22848:1 22875:1 22946:11 22984:1 23011:1 23015:1 23018:1 23024:1 23134:1 23137:2 23145:2 23254:1 23256:1 23272:2 23366:1 23426:1 23455:1 23466:3 23489:1 23622:1 23643:1 23657:1 23697:1 23712:1 23832:2 23878:1 23911:2 23941:1 24009:2 24018:1 24021:1 24067:1 24068:1 24069:1 24105:1 24130:3 24184:4 24185:1 24186:1 24192:1 24242:1 24257:1 24270:1 24290:1 24303:1 24343:2 24373:11 24381:1 24439:2 24504:1 24514:1 24520:1 24526:1 24556:4 24559:1 24573:1 24622:1 24640:2 24682:4 24687:1 24701:1 24702:1 24716:1 24797:1 24839:1 24843:1 24883:1 24885:1 24928:1 24934:2 24974:1 25055:1 25074:1 25099:5 25107:1 25129:1 25288:1 25300:1 25320:2 25350:2 25387:1 25397:1 25402:1 25407:1 25408:11 25436:1 25452:11 25464:1 25476:2 25536:4 25552:2 25556:1 25579:1 25592:1 25621:2 25640:1 25662:1 25668:1 25796:1 25867:1 25878:3 25916:1 25937:1 25967:1 26000:1 26004:1 26027:1 26031:1 26036:1 26113:1 26126:11
13 28:1 36:1 83:1 149:2 162:1 200:1 229:1 251:3 263:2 297:1 321:1 345:1 346:1 349:1 357:1 386:1 387:1 446:1 525:1 605:1 618:2 721:1 722:2 736:1 744:1 768:1 784:1 788:1 791:1 795:2 796:2 820:1 837:1 849:1 875:1 878:1 1053:3 1089:1 1193:1 1351:1 1395:4 1399:4 1412:1 1465:1 1471:1 1472:1 1473:1 1498:6 1611:3 1652:1 1670:1 1803:1 1805:1 1919:1 1951:1 1981:1 1991:1 1993:1 2003:1 2022:1 2026:1 2028:1 2034:1 2061:1 2130:1 2151:1 2169:1 2171:1 2188:1 2192:2 2210:1 2223:1 2243:1 2259:2 2284:1 2287:3 2294:1 2302:1 2310:1 2322:1 2343:1 2373:1 2428:1 2448:1 2466:1 2475:1 2515:1 2527:1 2531:3 2534:1 2554:1 2562:1 2568:2 2594:1 2641:2 2642:1 2686:2 2725:2 2817:1 3005:1 3009:1 3070:1 3087:1 3109:1 3131:2 3172:1 3199:1 3206:3 3227:2 3246:2 3293:1 3337:1 3351:3 3355:1 3363:1 3385:1 3386:4 3424:1 3452:1 3460:1 3512:1 3517:1 3526:1 3536:1 3538:2 3572:1 3584:1 3604:1 3614:1 3674:2 3679:1 3752:1 3801:1 3827:1 3839:3 3864:1 3880:1 3891:1 3914:1 3949:1 3972:3 4025:1 4039:1 4048:4 4052:1 4055:3 4068:2 4089:2 4119:1 4125:1 4147:2 4165:1 4234:1 4251:2 4276:3 4318:2 4323:1 4349:1 4392:2 4399:1 4402:1 4407:1 4408:1 4409:2 4414:1 4488:1 4509:1 4546:1 4580:1 4600:1 4604:1 4650:1 4652:1 4655:1 4712:12 4729:1 4740:1 4743:1 4766:1 4833:1 4841:1 4895:1 4920:1 4996:2 5016:2 5023:1 5040:1 5065:1 5076:1 5095:1 5109:1 5124:1 5170:2 5172:2 5306:1 5326:1 5382:1 5409:1 5410:2 5487:1 5514:3 5556:1 5572:1 5609:1 5638:1 5704:1 5735:1 5865:1 5970:2 5971:2 6006:12 6097:2 6138:1 6147:1 6162:1 6197:1 6290:1 6291:1 6305:1 6346:1 6400:1 6413:1 6476:1 6482:3 6531:1 6563:1 6658:1 6666:1 6743:1 6761:5 6786:12 6807:5 6825:3 6877:4 6988:1 6991:1 7039:1 7061:1 7096:11 7161:1 7182:2 7198:1 7334:1 7378:1 7422:1 7435:1 7474:1 7566:1 7567:1 7578:1 7583:1 7588:2 7592:1 7599:1 7637:1 7649:1 7671:1 7678:2 7714:1 7769:1 7856:1 7876:1 7879:1 7880:1 7881:1 7886:1 7915:1 7916:1 7925:2 7989:2 8058:1 8070:1 8099:1 8179:1 8190:1 8215:2 8245:3 8277:1 8334:1 8338:1 8383:1 8424:1 8486:3 8500:1 8507:5 8520:1 8521:2 8591:3 8605:1 8607:1 8633:1 8638:1 8645:1 8660:1 8688:1 8725:3 8740:1 8743:1 8804:2 8808:1 8818:1 8898:1 8916:1 8940:1 8959:1 9017:1 9049:1 9080:1 9103:1 9113:2 9149:1 9174:1 9177:1 9225:1 9235:1 9241:1 9247:1 9251:4 9255:1 9306:1 9307:1 9339:1 9371:1 9388:1 9394:1 9395:1 9400:3 9471:1 9491:1 9517:1 9523:1 9546:1 9572:1 9586:2 9595:1 9646:12 9690:1 9721:2 9745:1 9843:1 9853:1 9855:1 9858:1 9981:1 9993:3 10042:2 10044:2 10052:1 10112:3 10179:1 10228:1 10229:1 10231:1 10232:1 10244:2 10259:1 10274:2 10280:1 10287:2 10300:1 10304:2 10314:1 10369:1 10502:1 10503:3 10553:2 10598:1 10599:1 10610:3 10637:1 10640:2 10650:2 10656:1 10677:1 10698:1 10716:1 10721:2 10750:1 10793:1 10796:1 10944:1 10947:1 10978:12 10986:1 11055:1 11061:1 11147:1 11151:1 11158:1 11196:11 11256:1 11481:2 11496:1 11535:1 11552:2 11558:2 11600:2 11617:1 11658:1 11675:1 11678:1 11695:1 11778:1 11786:1 11838:1 11855:12 11901:2 11986:2 12040:2 12096:1 12126:1 12130:1 12263:5 12265:1 12278:1 12342:12 12343:1 12402:1 12452:1 12453:2 12462:1 12466:1 12508:1 12580:1 12585:1 12587:1 12602:1 12638:2 12710:1 12725:1 12742:1 12752:1 12754:1 12776:12 12779:1 12829:3 12871:2 12882:1 12917:1 12920:2 12942:1 13018:1 13039:1 13061:2 13073:1 13087:6 13100:1 13115:3 13200:1 13223:1 13227:1 13244:1 13266:1 13349:2 13361:1 13379:2 13385:1 13408:1 13477:1 13485:1 13571:1 13574:1 13582:1 13598:1 13602:1 13646:1 13661:1 13666:1 13798:1 13805:1 13819:1 13823:1 13826:1 13847:2 13852:1 13856:1 13862:1 13887:1 13952:1 13962:2 13981:1 13999:1 14012:1 14016:3 14022:2 14047:2 14052:1 14080:1 14084:1 14098:4 14147:4 14158:2 14170:1 14193:1 14199:1 14200:1 14223:1 14231:1 14257:1 14408:2 14415:1 14418:1 14419:1 14453:1 14489:1 14567:1 14596:1 14612:1 14704:2 14705:2 14725:4 14800:1 14805:1 14833:1 14838:1 14846:1 14923:2 14953:2 14977:1 14978:1 14982:1 14999:1 15001:1 15035:2 15041:1 15042:2 15066:1 15133:1 15171:1 15182:1 15198:1 15239:1 15248:2 15249:1 15253:1 15261:2 15269:1 15306:1 15324:1 15384:1 15453:1 15472:1 15487:2 15514:1 15521:1 15580:1 15608:1 15612:1 15614:1 15645:1 15670:2 15693:1 15718:1 15726:1 15738:1 15745:1 15758:2 15764:1 15788:2 15792:1 15813:1 15841:1 15847:1 15901:1 15911:1 15916:1 15966:3 15968:1 16067:2 16082:1 16084:1 16130:12 16194:2 16205:1 16313:1 16326:2 16333:1 16359:1 16373:2 16393:931 16476:1 16493:1 16505:1 16610:1 16653:1 16675:3 16706:1 16742:1 16750:1 16771:1 16829:1 16834:1 16853:1 16939:1 16952:4 16973:1 17018:2 17038:2 17073:1 17076:1 17079:1 17080:1 17087:1 17100:1 17103:4 17111:1 17114:1 17118:1 17175:1 17199:1 17218:2 17256:1 17344:1 17349:1 17387:1 17394:1 17439:7 17526:1 17572:1 17623:1 17646:1 17742:1 17748:1 17758:1 17760:1 17763:1 17836:1 17848:1 17863:2 17934:1 17940:1 17948:1 17957:1 17959:1 17961:1 18010:4 18016:1 18017:1 18035:1 18067:1 18114:1 18168:1 18177:1 18251:2 18292:1 18397:1 18406:1 18414:1 18436:1 18451:2 18457:1 18530:1 18599:1 18620:2 18634:1 18655:1 18683:1 18831:1 18865:7 18909:1 18933:1 18942:1 19012:3 19016:1 19045:1 19079:2 19138:1 19190:7 19198:1 19252:1 19263:1 19264:2 19278:1 19281:1 19289:2 19329:1 19333:1 19363:1 19366:1 19400:1 19453:1 19549:1 19553:2 19561:1 19567:1 19609:1 19612:10 19622:1 19648:1 19650:1 19693:1 19700:1 19714:1 19766:3 19778:1 19838:1 19854:1 19860:1 19864:3 19883:2 19953:1 19991:1 19998:1 20045:1 20049:18 20093:4 20126:2 20166:1 20183:1 20235:1 20236:1 20256:2 20289:1 20321:1 20322:1 20331:1 20360:1 20399:1 20454:1 20466:1 20530:1 20604:1 20641:1 20655:1 20688:1 20702:1 20748:2 20749:1 20767:1 20775:1 20783:1 20889:1 20899:2 20900:1 20953:1 20984:1 21003:1 21010:1 21038:1 21085:1 21106:1 21148:1 21151:2 21153:1 21217:2 21272:1 21319:4 21344:1 21346:1 21463:5 21495:1 21504:1 21555:1 21563:1 21570:1 21571:1 21581:1 21640:2 21655:4 21680:2 21700:1 21747:1 21774:1 21786:1 21798:1 21838:4 21860:1 21889:3 21907:2 21960:1 22043:1 22052:2 22105:1 22119:1 22128:1 22160:1 22215:1 22249:2 22253:1 22264:1 22270:1 22284:1 22336:1 22355:2 22393:1 22403:1 22406:1 22407:2 22409:1 22410:1 22420:1 22442:1 22454:1 22495:1 22503:2 22558:1 22581:1 22597:2 22620:1 22680:1 22691:1 22696:11 22730:2 22774:1 22829:2 22848:1 22875:1 22946:12 22984:1 23011:1 23015:1 23018:1 23024:1 23134:1 23137:2 23145:2 23254:1 23256:1 23272:2 23366:1 23426:1 23455:1 23466:3 23489:1 23622:1 23643:1 23657:1 23697:1 23712:1 23832:2 23878:1 23911:2 23941:1 24009:2 24018:1 24021:1 24067:1 24068:1 24069:1 24105:1 24130:3 24184:4 24185:1 24186:1 24192:1 24242:1 24257:1 24270:1 24290:1 24303:1 24343:2 24373:12 24381:1 24439:2 24504:1 24514:1 24520:1 24526:1 24556:5 24559:1 24573:1 24622:1 24640:2 24682:4 24687:1 24701:1 24702:1 24716:1 24797:1 24839:1 24843:1 24883:1 24885:1 24928:1 24934:2 24974:1 25055:1 25074:1 25099:5 25107:1 25129:1 25154:1 25288:1 25300:1 25320:2 25350:2 25387:1 25397:1 25402:1 25407:1 25408:12 25436:1 25452:12 25464:1 25476:3 25536:4 25552:2 25556:1 25579:1 25592:1 25621:2 25640:1 25662:1 25668:1 25796:1 25867:1 25878:3 25916:1 25937:1 25967:1 26000:1 26004:1 26027:1 26031:1 26036:1 26113:1 26126:12
13 28:1 36:1 44:1 83:1 149:2 162:1 200:1 229:1 251:3 263:2 297:1 321:1 345:1 346:1 349:1 357:1 386:1 387:1 446:1 525:1 605:1 618:2 721:1 722:2 736:1 744:1 768:1 784:1 788:1 791:1 795:2 796:2 820:1 824:1 837:1 849:1 875:1 878:1 1053:3 1089:1 1193:1 1351:1 1395:4 1399:4 1412:1 1465:1 1471:1 1472:1 1473:1 1498:6 1611:3 1652:1 1670:1 1803:1 1805:1 1919:1 1951:1 1981:1 1991:1 1993:1 2003:1 2022:1 2026:1 2028:1 2034:1 2061:1 2073:1 2130:1 2151:1 2169:1 2171:1 2188:1 2192:2 2210:1 2223:1 2243:1 2259:2 2284:1 2287:3 2294:1 2302:1 2310:1 2322:1 2343:1 2373:1 2428:1 2448:2 2466:1 2475:2 2515:1 2527:1 2531:3 2534:1 2554:1 2562:1 2568:2 2594:1 2641:3 2642:1 2686:2 2725:2 2817:1 2925:1 3005:1 3009:1 3070:1 3087:1 3109:1 3131:2 3172:1 3199:1 3206:3 3227:2 3246:2 3293:1 3313:1 3320:1 3337:1 3351:3 3355:1 3363:1 3385:2 3386:4 3424:1 3452:1 3460:1 3512:1 3517:1 3526:1 3536:1 3538:2 3572:1 3584:1 3604:1 3614:1 3674:2 3679:1 3752:1 3801:1 3827:1 3839:3 3864:1 3880:1 3891:1 3914:1 3949:1 3972:3 4025:1 4039:1 4048:4 4052:1 4055:3 4068:2 4089:2 4119:1 4125:1 4147:2 4165:1 4234:1 4251:2 4276:3 4318:2 4323:1 4349:1 4392:2 4399:1 4402:1 4407:1 4408:1 4409:2 4414:1 4488:1 4509:1 4546:1 4580:1 4600:1 4604:1 4650:1 4652:1 4655:1 4712:13 4729:1 4740:1 4743:1 4766:1 4833:1 4841:1 4895:1 4920:1 4996:2 5016:2 5023:1 5040:1 5065:1 5076:1 5095:1 5109:1 5124:1 5170:2 5172:2 5306:1 5326:1 5382:1 5409:1 5410:2 5487:1 5514:3 5556:1 5572:1 5609:1 5638:1 5704:1 5735:1 5865:1 5964:1 5970:2 5971:2 6006:13 6097:2 6138:1 6147:1 6162:1 6197:1 6290:1 6291:1 6305:1 6346:1 6400:1 6413:1 6476:1 6482:3 6531:1 6563:1 6658:1 6666:1 6743:1 6761:5 6786:13 6807:5 6825:3 6877:4 6988:1 6991:1 6999:1 7039:1 7061:1 7096:11 7161:1 7182:2 7198:1 7208:1 7334:1 7378:1 7422:2 7435:1 7474:1 7566:1 7567:1 7578:1 7583:1 7588:2 7592:1 7599:1 7637:1 7649:1 7671:1 7678:2 7714:1 7769:1 7856:1 7876:1 7879:1 7880:1 7881:1 7884:1 7886:1 7915:1 7916:1 7925:2 7989:2 8058:1 8070:1 8099:1 8179:1 8190:1 8215:2 8245:3 8277:1 8334:1 8338:1 8383:1 8424:1 8486:3 8500:1 8507:5 8520:2 8521:2 8591:3 8605:1 8607:1 8608:1 8633:1 8638:1 8645:1 8660:1 8688:1 8725:3 8740:1 8743:1 8804:2 8808:1 8818:1 8848:1 8898:1 8916:1 8940:1 8959:1 9017:1 9049:1 9080:1 9103:1 9113:2 9149:1 9174:1 9177:1 9225:1 9235:1 9241:1 9247:1 9251:4 9255:1 9306:1 9307:1 9339:1 9371:1 9388:1 9394:1 9395:1 9400:3 9471:1 9491:1 9517:1 9523:1 9546:1 9572:1 9586:2 9595:1 9628:1 9646:13 9690:1 9721:2 9745:1 9843:1 9853:1 9855:1 9858:1 9981:1 9993:3 10042:2 10044:2 10052:1 10112:3 10179:1 10228:1 10229:1 10231:1 10232:1 10244:2 10259:1 10274:2 10280:1 10287:2 10300:1 10304:2 10314:1 10369:1 10502:1 10503:3 10553:2 10598:1 10599:1 10610:3 10637:1 10640:2 10650:2 10656:1 10664:1 10677:1 10698:1 10716:1 10721:2 10750:1 10793:1 10796:1 10944:1 10947:1 10978:12 10986:1 11055:1 11061:1 11147:1 11151:1 11158:2 11196:12 11256:1 11481:2 11496:1 11535:1 11552:2 11558:2 11600:2 11617:1 11658:1 11675:1 11678:1 11695:1 11778:1 11786:1 11838:1 11855:12 11901:3 11986:2 12040:2 12096:1 12126:1 12130:1 12263:5 12265:1 12278:1 12342:13 12343:1 12402:1 12452:1 12453:2 12462:1 12466:1 12508:1 12580:1 12585:1 12587:1 12602:1 12638:2 12710:1 12725:1 12742:1 12752:1 12754:1 12776:12 12779:1 12829:3 12871:2 12882:1 12917:1 12920:2 12942:1 12969:1 13018:1 13039:1 13061:2 13073:1 13087:6 13100:1 13115:3 13200:1 13223:1 13227:1 13244:1 13266:1 13349:2 13361:1 13379:2 13385:1 13408:1 13472:1 13477:1 13485:1 13571:1 13574:1 13582:1 13598:1 13602:1 13646:1 13661:1 13666:1 13798:1 13805:1 13819:1 13823:1 13826:1 13847:2 13852:1 13856:1 13862:1 13877:1 13887:1 13952:1 13962:2 13981:1 13999:1 14012:1 14016:3 14022:2 14047:2 14052:1 14080:1 14084:1 14098:4 14147:4 14158:2 14170:1 14193:1 14199:1 14200:1 14223:1 14231:1 14257:1 14408:2 14415:1 14418:1 14419:1 14453:1 14489:1 14567:1 14596:1 14612:1 14704:2 14705:2 14725:4 14774:1 14800:1 14805:1 14833:1 14838:1 14846:1 14923:2 14953:2 14977:1 14978:1 14982:1 14999:1 15001:1 15035:2 15041:1 15042:2 15066:1 15133:1 15171:1 15182:1 15198:1 15239:1 15248:2 15249:1 15253:2 15261:2 15269:1 15306:1 15324:1 15384:1 15415:1 15453:1 15472:1 15487:2 15514:1 15521:1 15580:1 15608:1 15612:1 15614:1 15645:1 15670:2 15693:1 15718:1 15726:1 15738:1 15745:1 15758:2 15764:1 15788:2 15792:1 15813:1 15841:1 15847:1 15901:1 15911:1 15916:1 15966:3 15968:1 16067:2 16082:1 16084:1 16130:12 16170:1 16194:2 16205:1 16313:1 16326:2 16333:1 16359:1 16373:2 16393:976 16476:1 16493:1 16505:1 16610:1 16653:1 16675:3 16706:1 16742:1 16750:1 16765:1 16771:1 16829:1 16834:1 16853:1 16939:1 16952:4 16973:1 17018:2 17038:2 17073:1 17076:1 17079:1 17080:1 17087:1 17100:1 17103:5 17111:1 17114:1 17118:1 17175:1 17199:1 17218:2 17256:1 17344:1 17349:1 17387:1 17394:1 17429:1 17439:7 17526:1 17572:1 17623:1 17646:1 17723:1 17742:1 17748:1 17758:1 17760:1 17763:1 17836:1 17848:1 17863:2 17934:1 17940:1 17948:1 17957:1 17959:1 17961:1 18010:4 18016:1 18017:1 18035:1 18067:1 18114:1 18168:1 18177:1 18251:2 18292:2 18397:1 18406:1 18414:1 18436:1 18451:2 18457:1 18530:1 18599:1 18620:2 18634:1 18655:1 18683:1 18696:1 18831:1 18865:7 18909:1 18933:1 18942:1 19012:3 19016:1 19045:1 19079:2 19138:1 19190:7 19198:1 19252:1 19255:1 19263:1 19264:2 19278:1 19281:1 19289:2 19329:1 19333:1 19363:1 19366:1 19400:1 19453:1 19549:1 19553:2 19561:1 19567:1 19609:1 19612:11 19622:1 19648:1 19650:1 19693:1 19700:1 19714:1 19766:3 19778:1 19838:1 19849:1 19854:1 19860:1 19864:3 19883:2 19953:1 19991:1 19998:1 20045:1 20049:18 20093:4 20126:2 20166:1 20183:1 20226:1 20235:1 20236:1 20256:2 20279:1 20287:1 20289:1 20321:1 20322:1 20331:1 20360:1 20399:1 20454:1 20466:1 20530:1 20603:1 20604:1 20641:1 20655:1 20688:1 20702:1 20748:2 20749:1 20765:1 20767:1 20775:1 20783:1 20889:1 20899:2 20900:1 20953:1 20984:1 21003:1 21010:1 21038:1 21085:1 21106:1 21148:1 21151:3 21153:1 21217:2 21272:1 21319:4 21344:1 21346:1 21463:5 21495:1 21504:1 21555:1 21563:1 21570:1 21571:1 21581:1 21640:2 21655:4 21680:2 21700:1 21747:1 21774:1 21786:1 21798:1 21838:4 21860:1 21889:3 21907:2 21960:1 22043:1 22052:2 22105:1 22119:1 22128:1 22160:1 22215:1 22249:2 22253:1 22264:1 22270:1 22284:1 22336:1 22355:2 22393:1 22403:1 22406:1 22407:2 22409:1 22410:1 22420:1 22442:1 22454:1 22495:1 22503:2 22558:1 22581:1 22597:2 22620:1 22680:1 22691:1 22696:12 22730:2 22756:1 22774:1 22829:2 22848:1 22875:1 22946:13 22984:1 23011:1 23015:1 23018:1 23024:1 23036:1 23134:1 23137:2 23145:2 23254:1 23256:1 23272:2 23366:1 23426:1 23455:1 23466:3 23489:1 23622:1 23643:1 23657:1 23697:1 23712:1 23832:2 23878:1 23911:2 23941:1 24009:2 24018:1 24021:1 24067:1 24068:1 24069:1 24105:1 24130:3 24184:4 24185:1 24186:1 24191:1 24192:1 24195:1 24242:1 24257:1 24270:1 24290:1 24303:1 24343:2 24373:12 24381:1 24439:2 24504:1 24514:1 24520:1 24526:1 24556:5 24559:2 24573:1 24622:1 24640:2 24682:4 24687:1 24701:1 24702:1 24716:1 24797:1 24839:2 24843:1 24883:1 24885:1 24928:1 24934:2 24974:1 25055:1 25074:1 25099:5 25107:1 25129:1 25154:1 25288:1 25300:1 25320:2 25350:2 25387:1 25397:1 25402:1 25407:1 25408:12 25436:1 25452:13 25464:1 25476:3 25536:4 25552:2 25556:1 25579:1 25592:1 25621:2 25640:1 25662:1 25668:1 25796:1 25867:1 25878:3 25916:1 25937:1 25967:1 26000:1 26004:1 26027:1 26031:1 26036:1 26113:1 26126:13
13 28:1 36:1 44:1 83:1 149:2 162:1 200:1 229:1 251:3 263:2 297:1 321:1 345:1 346:1 349:1 357:1 386:1 387:1 446:1 525:1 605:1 618:2 721:1 722:2 736:1 744:1 768:1 784:1 788:1 791:1 795:2 796:2 820:1 822:1 824:1 837:1 849:1 875:1 878:2 914:1 1053:3 1089:1 1193:1 1351:1 1395:4 1399:4 1412:1 1465:1 1471:1 1472:1 1473:1 1498:6 1611:3 1652:1 1670:1 1803:1 1805:1 1919:1 1951:1 1981:1 1991:1 1993:1 2003:1 2022:1 2026:1 2028:1 2034:1 2061:1 2069:1 2073:1 2129:1 2130:1 2151:1 2169:1 2171:1 2188:1 2192:2 2210:1 2223:1 2243:1 2259:2 2284:1 2287:3 2294:1 2302:3 2310:1 2322:1 2343:1 2373:1 2428:1 2448:2 2466:1 2475:3 2515:1 2527:1 2531:3 2534:1 2554:1 2562:1 2568:2 2594:1 2641:3 2642:1 2686:2 2725:2 2817:1 2925:1 3005:1 3009:1 3070:1 3087:1 3109:1 3131:2 3172:1 3199:1 3206:3 3227:2 3246:2 3293:1 3313:1 3320:1 3337:1 3346:1 3351:3 3355:1 3363:1 3385:2 3386:4 3424:1 3452:1 3460:1 3512:1 3517:1 3526:1 3536:1 3538:2 3572:1 3584:1 3604:1 3614:1 3674:2 3679:1 3752:1 3801:1 3827:1 3839:3 3864:1 3880:1 3891:1 3914:1 3949:1 3972:3 3980:1 4025:1 4039:1 4048:4 4052:1 4055:3 4068:2 4089:2 4119:1 4125:1 4147:2 4165:1 4167:1 4234:1 4251:2 4276:3 4318:2 4323:1 4349:1 4391:1 4392:2 4399:1 4402:1 4407:1 4408:1 4409:2 4414:1 4488:1 4509:1 4546:1 4580:1 4600:1 4604:1 4650:1 4652:1 4655:2 4712:14 4729:1 4740:1 4743:1 4766:1 4833:1 4841:1 4895:1 4920:1 4996:2 5016:2 5023:1 5040:1 5065:1 5076:1 5095:1 5109:1 5124:1 5170:2 5172:2 5306:1 5326:1 5382:1 5409:1 5410:2 5487:1 5514:3 5556:1 5572:1 5609:1 5638:1 5704:1 5735:1 5753:1 5865:1 5964:1 5970:2 5971:2 6006:14 6097:2 6138:1 6147:1 6162:1 6197:1 6290:1 6291:1 6305:1 6346:1 6400:1 6413:1 6476:1 6482:3 6531:1 6563:1 6658:1 6666:1 6743:1 6761:5 6786:14 6807:5 6825:3 6877:5 6988:1 6991:1 6999:1 7039:1 7061:1 7096:12 7161:1 7167:1 7182:2 7198:1 7208:1 7334:1 7378:1 7422:2 7435:1 7474:1 7566:1 7567:1 7578:1 7583:1 7588:2 7592:1 7599:1 7637:1 7649:1 7671:1 7678:2 7714:1 7769:1 7856:1 7876:1 7879:1 7880:1 7881:1 7884:1 7886:1 7915:1 7916:1 7925:2 7989:2 8058:1 8070:1 8099:1 8179:1 8190:1 8215:2 8236:1 8245:3 8277:1 8334:1 8338:1 8383:1 8424:1 8486:3 8500:1 8507:5 8520:2 8521:2 8591:3 8605:1 8607:1 8608:1 8633:1 8638:1 8645:1 8660:1 8688:1 8725:3 8740:1 8743:1 8804:2 8808:1 8818:1 8848:1 8898:1 8916:1 8940:1 8959:1 9017:1 9049:1 9080:1 9103:1 9113:2 9136:1 9149:1 9174:1 9177:1 9225:1 9235:1 9241:1 9247:1 9251:5 9255:1 9306:1 9307:1 9339:1 9371:1 9388:1 9394:1 9395:1 9400:3 9471:1 9491:1 9494:1 9517:1 9523:1 9546:1 9572:1 9586:2 9595:1 9628:1 9646:14 9690:2 9721:2 9745:1 9843:1 9853:1 9855:1 9858:1 9981:1 9993:3 10042:2 10044:2 10052:1 10112:3 10179:1 10228:1 10229:1 10231:1 10232:1 10244:2 10259:1 10274:2 10280:1 10287:2 10300:1 10304:2 10314:1 10369:1 10502:1 10503:3 10553:2 10598:1 10599:1 10610:3 10637:1 10640:2 10650:2 10656:1 10664:1 10677:1 10698:1 10716:1 10721:2 10750:1 10793:1 10796:1 10944:1 10947:1 10978:13 10986:1 11055:1 11061:1 11147:1 11151:1 11158:2 11196:13 11256:1 11481:2 11496:1 11535:1 11552:2 11558:2 11562:1 11600:2 11617:1 11658:1 11675:1 11678:1 11695:1 11778:1 11786:1 11838:1 11855:13 11901:3 11986:2 12040:2 12096:1 12126:1 12130:1 12263:5 12265:1 12278:1 12342:14 12343:1 12402:1 12452:1 12453:2 12462:1 12466:1 12508:1 12580:1 12585:1 12587:1 12602:1 12638:2 12710:1 12725:1 12742:1 12752:1 12754:1 12776:13 12779:1 12829:3 12871:2 12882:1 12917:1 12920:2 12939:1 12942:1 12969:1 13018:1 13039:1 13061:2 13073:1 13087:6 13100:1 13115:3 13200:1 13223:1 13227:1 13244:1 13266:1 13349:2 13361:1 13379:2 13385:1 13408:1 13472:1 13477:1 13485:1 13571:1 13574:1 13582:1 13598:1 13602:1 13646:2 13661:1 13666:1 13798:1 13805:1 13819:1 13823:1 13826:1 13847:2 13852:1 13856:1 13862:1 13877:1 13887:1 13916:1 13952:1 13962:2 13981:1 13999:1 14012:1 14016:3 14022:2 14047:2 14052:1 14080:1 14084:1 14098:4 14147:4 14158:2 14170:1 14193:1 14199:1 14200:1 14223:1 14231:1 14257:1 14408:2 14415:1 14418:1 14419:1 14453:1 14489:1 14567:1 14596:1 14612:1 14704:2 14705:2 14725:4 14774:1 14800:1 14805:1 14833:1 14838:1 14846:1 14923:2 14953:2 14977:1 14978:1 14982:1 14999:1 15001:1 15035:2 15041:1 15042:2 15066:1 15133:1 15171:1 15182:1 15198:1 15239:1 15248:2 15249:1 15253:2 15261:3 15269:1 15306:1 15324:1 15384:1 15415:1 15453:1 15472:1 15487:2 15514:1 15521:1 15580:1 15608:1 15612:1 15614:1 15616:1 15645:1 15670:2 15693:1 15718:1 15726:1 15738:1 15745:1 15758:2 15764:1 15788:2 15792:1 15813:1 15841:1 15847:1 15901:1 15911:1 15916:1 15966:3 15968:1 16067:2 16082:1 16084:1 16130:13 16170:1 16194:2 16205:1 16313:1 16326:2 16333:1 16359:1 16373:2 16393:998 16476:1 16493:1 16505:1 16610:1 16653:1 16675:3 16706:1 16742:1 16750:1 16765:1 16771:1 16829:1 16834:1 16853:1 16939:1 16952:4 16973:1 17018:2 17038:2 17073:1 17076:2 17079:1 17080:1 17087:1 17100:1 17103:5 17111:1 17114:1 17118:1 17175:1 17199:1 17218:2 17256:1 17344:1 17349:2 17387:1 17394:1 17429:1 17439:8 17526:1 17572:1 17623:1 17646:1 17723:1 17742:1 17748:1 17758:1 17760:1 17763:1 17836:1 17848:1 17863:2 17934:1 17940:1 17948:1 17957:1 17959:1 17961:1 18010:4 18016:1 18017:1 18035:1 18067:1 18114:1 18168:1 18177:1 18251:2 18292:2 18397:1 18399:1 18406:1 18414:1 18436:1 18451:2 18454:1 18457:1 18530:1 18599:1 18620:2 18634:1 18655:1 18683:1 18696:1 18831:1 18865:8 18909:1 18933:1 18942:1 19012:3 19016:1 19045:2 19079:2 19138:1 19190:8 19198:1 19252:1 19255:1 19263:1 19264:2 19278:1 19281:1 19289:2 19290:1 19329:1 19333:1 19363:1 19366:1 19400:1 19453:1 19549:1 19553:2 19561:1 19567:1 19609:1 19612:11 19622:1 19648:1 19650:1 19693:1 19700:1 19714:1 19766:3 19778:1 19838:1 19849:1 19854:1 19860:1 19864:3 19883:2 19953:1 19991:1 19998:1 20045:1 20049:19 20093:4 20126:2 20166:1 20183:1 20226:1 20235:1 20236:1 20246:1 20256:2 20279:1 20287:1 20289:1 20321:1 20322:1 20331:1 20360:1 20399:1 20454:1 20466:1 20530:1 20603:1 20604:1 20641:1 20655:1 20688:1 20702:1 20748:2 20749:1 20765:1 20767:1 20775:1 20783:1 20810:1 20889:1 20899:2 20900:1 20953:1 20984:1 21003:1 21010:1 21038:1 21085:1 21106:1 21148:1 21151:3 21153:1 21217:2 21272:1 21319:4 21344:1 21346:1 21463:5 21495:1 21504:1 21555:1 21563:1 21570:1 21571:1 21581:1 21640:2 21655:4 21680:2 21700:1 21747:1 21774:1 21786:1 21798:1 21836:1 21838:4 21847:1 21860:1 21889:4 21907:2 21960:1 22002:1 22017:1 22043:1 22052:2 22105:1 22119:1 22128:1 22160:1 22215:1 22249:2 22253:1 22264:1 22270:1 22284:1 22336:1 22355:2 22393:1 22403:1 22406:1 22407:2 22409:1 22410:1 22420:1 22442:1 22454:1 22495:1 22503:2 22558:1 22581:1 22597:2 22620:1 22680:1 22691:1 22696:13 22730:2 22756:1 22774:1 22829:2 22848:2 22875:1 22946:14 22984:1 23011:1 23015:1 23018:1 23024:1 23036:1 23134:2 23137:2 23145:2 23254:1 23256:1 23272:2 23366:1 23426:2 23455:1 23466:3 23489:1 23622:1 23643:1 23657:1 23697:1 23712:1 23832:2 23878:1 23911:2 23941:1 24009:2 24018:1 24021:1 24067:1 24068:1 24069:1 24105:1 24130:3 24184:4 24185:1 24186:1 24191:1 24192:1 24195:1 24242:1 24257:1 24270:1 24290:1 24303:1 24343:2 24373:13 24381:1 24439:2 24504:1 24514:1 24520:1 24526:1 24556:5 24559:2 24573:1 24622:1 24640:2 24682:4 24687:1 24701:1 24702:1 24716:1 24797:1 24839:2 24843:1 24883:1 24885:1 24928:1 24934:2 24974:1 25055:2 25074:1 25099:5 25107:1 25129:1 25154:1 25288:1 25300:1 25320:2 25350:2 25387:1 25397:1 25402:1 25407:1 25408:13 25436:1 25452:14 25464:1 25476:3 25536:4 25552:2 25556:1 25579:1 25592:1 25621:2 25640:1 25662:1 25668:1 25796:1 25853:1 25867:1 25878:3 25916:1 25937:1 25967:1 26000:1 26004:1 26027:1 26031:1 26036:1 26113:1 26126:14
13 28:1 36:1 44:1 83:1 149:2 162:1 200:1 229:1 251:3 263:2 297:1 321:1 334:1 345:1 346:1 349:1 357:1 386:1 387:1 446:1 525:1 605:1 618:2 721:1 722:2 725:1 736:1 744:1 768:1 784:1 788:1 791:1 795:2 796:2 820:1 822:1 824:1 837:1 849:1 875:1 878:2 914:1 1053:3 1089:1 1193:1 1351:1 1395:4 1399:4 1412:1 1465:1 1471:1 1472:1 1473:1 1498:6 1611:3 1652:1 1670:1 1803:1 1805:1 1919:1 1951:1 1981:1 1991:1 1993:1 2003:1 2022:1 2026:1 2028:1 2034:1 2061:1 2069:1 2073:1 2129:1 2130:1 2151:1 2169:1 2171:1 2188:1 2192:2 2210:1 2223:1 2243:1 2259:2 2284:1 2287:3 2294:1 2302:3 2310:1 2322:1 2343:1 2373:1 2428:1 2448:2 2466:1 2475:3 2494:1 2515:1 2527:1 2531:3 2534:1 2554:1 2562:1 2568:2 2594:1 2641:3 2642:1 2686:2 2725:2 2792:1 2817:1 2925:1 3005:1 3009:1 3070:1 3087:1 3109:1 3131:2 3172:1 3199:1 3206:3 3227:2 3246:2 3293:1 3313:1 3320:1 3337:1 3346:1 3351:3 3355:1 3363:1 3385:2 3386:4 3424:1 3452:1 3454:1 3460:1 3512:1 3517:1 3526:1 3536:1 3538:2 3572:1 3584:1 3604:1 3614:1 3674:2 3679:1 3752:1 3801:1 3827:1 3839:3 3864:1 3880:1 3891:1 3914:1 3949:1 3972:3 3980:1 4025:1 4039:1 4048:4 4052:1 4055:3 4068:2 4087:1 4089:2 4119:1 4125:1 4147:2 4165:1 4167:1 4234:1 4251:2 4276:3 4318:2 4323:1 4349:1 4391:1 4392:2 4399:1 4402:1 4407:1 4408:1 4409:2 4414:1 4488:1 4509:1 4546:1 4580:1 4600:1 4604:1 4650:1 4652:1 4655:2 4712:15 4729:1 4740:1 4743:1 4766:1 4833:1 4841:1 4895:1 4920:1 4996:2 5016:2 5023:1 5040:1 5065:1 5076:1 5095:1 5109:1 5124:1 5170:2 5172:2 5306:1 5326:1 5382:1 5409:1 5410:2 5487:1 5514:3 5556:1 5572:1 5609:1 5638:1 5704:1 5721:1 5735:1 5753:1 5865:1 5964:1 5970:2 5971:2 6006:15 6097:2 6138:1 6147:1 6162:1 6197:1 6290:1 6291:1 6305:1 6346:1 6400:1 6413:1 6476:1 6482:3 6531:1 6563:1 6658:1 6666:1 6743:1 6761:5 6786:15 6807:5 6825:3 6877:6 6988:1 6991:1 6999:1 7039:1 7061:1 7096:12 7161:1 7167:1 7182:2 7198:1 7208:1 7334:1 7378:1 7422:2 7435:1 7474:1 7566:1 7567:1 7578:1 7583:1 7588:2 7592:1 7599:1 7637:1 7649:1 7671:1 7678:2 7714:1 7769:1 7856:1 7876:1 7879:1 7880:1 7881:1 7884:1 7886:1 7915:1 7916:1 7925:2 7989:2 8058:2 8070:1 8099:1 8179:1 8190:1 8215:2 8236:1 8245:3 8277:1 8334:1 8338:1 8383:1 8424:1 8486:3 8500:1 8507:5 8520:2 8521:2 8591:3 8605:1 8607:1 8608:2 8633:1 8638:1 8645:1 8660:1 8688:1 8725:3 8740:1 8743:1 8804:2 8808:1 8818:1 8848:1 8898:1 8916:1 8940:1 8959:1 9017:1 9049:1 9080:1 9103:1 9113:2 9136:1 9149:1 9174:1 9177:1 9225:1 9235:1 9241:1 9247:1 9251:5 9255:1 9306:1 9307:1 9339:1 9371:1 9388:1 9394:1 9395:1 9400:4 9456:1 9471:1 9491:1 9494:1 9517:1 9523:1 9546:1 9572:1 9586:2 9595:1 9628:1 9646:15 9690:2 9721:2 9745:1 9843:1 9853:1 9855:1 9858:1 9981:1 9993:3 10042:2 10044:2 10052:1 10112:3 10179:1 10228:1 10229:1 10231:1 10232:1 10244:2 10259:1 10274:2 10280:1 10287:2 10300:1 10304:2 10314:1 10369:1 10502:1 10503:3 10553:2 10598:1 10599:1 10610:3 10637:1 10640:2 10650:2 10656:1 10664:1 10677:1 10698:1 10716:1 10721:2 10750:1 10793:1 10796:1 10818:1 10944:1 10947:1 10978:14 10986:1 11055:1 11061:1 11147:1 11151:1 11158:2 11196:14 11256:1 11481:2 11496:1 11535:1 11552:2 11558:2 11562:1 11600:2 11617:1 11635:1 11658:1 11675:1 11678:1 11695:1 11776:1 11778:1 11786:1 11838:1 11855:14 11901:3 11986:2 12040:2 12096:1 12126:1 12130:1 12263:5 12265:1 12278:1 12342:15 12343:1 12402:1 12452:1 12453:2 12462:1 12466:1 12508:1 12580:1 12585:1 12587:1 12602:1 12638:2 12710:1 12725:1 12742:1 12752:1 12754:1 12776:14 12779:1 12829:3 12871:2 12882:1 12917:1 12920:2 12939:1 12942:1 12969:1 13018:1 13039:1 13061:2 13073:1 13087:6 13100:1 13115:3 13200:1 13223:1 13227:1 13244:1 13266:1 13349:2 13361:1 13379:2 13385:1 13408:1 13472:1 13477:1 13485:1 13571:1 13574:1 13582:1 13598:1 13602:1 13646:2 13661:1 13666:1 13798:1 13805:1 13819:1 13823:1 13826:1 13847:2 13852:1 13856:1 13862:1 13870:1 13877:1 13887:1 13916:1 13952:1 13962:2 13981:1 13999:1 14012:1 14016:3 14022:2 14047:2 14052:1 14080:1 14084:1 14088:1 14098:4 14147:4 14158:2 14170:1 14193:1 14199:1 14200:1 14223:1 14231:1 14257:1 14408:2 14415:1 14418:1 14419:1 14453:1 14489:1 14567:1 14596:1 14612:1 14704:2 14705:2 14725:4 14774:1 14800:1 14805:1 14833:1 14838:1 14846:1 14923:2 14953:2 14977:1 14978:1 14982:1 14999:1 15001:1 15035:2 15041:1 15042:2 15066:1 15133:1 15171:1 15182:1 15198:1 15239:1 15248:2 15249:1 15253:3 15261:3 15269:1 15306:1 15324:1 15384:1 15415:1 15453:1 15472:1 15487:2 15514:1 15521:1 15580:1 15608:1 15612:1 15614:1 15616:1 15645:1 15670:2 15693:1 15718:1 15726:1 15738:1 15745:1 15758:2 15764:1 15788:2 15792:1 15813:1 15841:1 15847:1 15901:1 15911:1 15916:1 15966:3 15968:1 16067:2 16082:1 16084:1 16130:14 16170:1 16194:2 16205:1 16313:1 16326:2 16333:1 16359:1 16373:2 16393:1028 16476:1 16493:1 16505:1 16610:1 16653:1 16675:3 16706:1 16742:1 16750:1 16765:1 16771:1 16829:1 16834:1 16853:1 16939:1 16952:4 16973:1 17018:2 17038:2 17073:1 17076:2 17079:1 17080:1 17087:1 17100:1 17103:5 17111:1 17114:1 17118:1 17175:1 17199:1 17218:2 17256:1 17296:1 17344:1 17349:2 17387:1 17394:1 17429:1 17439:8 17460:1 17526:1 17572:1 17623:1 17646:1 17723:1 17742:1 17748:1 17758:1 17760:1 17763:1 17836:1 17848:1 17863:2 17934:1 17940:1 17948:1 17957:1 17959:1 17961:1 18010:4 18016:1 18017:1 18035:1 18067:1 18114:1 18168:1 18177:1 18251:2 18292:2 18397:1 18399:1 18406:1 18414:1 18436:1 18451:2 18454:1 18457:1 18530:1 18599:1 18620:2 18634:1 18655:1 18683:1 18696:1 18831:1 18865:8 18909:1 18933:1 18942:1 19012:3 19016:1 19045:2 19079:2 19138:1 19190:8 19192:1 19198:1 19252:1 19255:1 19263:1 19264:2 19278:1 19281:1 19289:2 19290:1 19329:1 19333:1 19363:1 19366:1 19400:1 19453:1 19549:1 19553:2 19561:1 19567:1 19609:1 19612:12 19622:1 19648:1 19650:1 19693:1 19700:1 19714:1 19758:1 19766:3 19778:1 19838:1 19849:1 19854:1 19860:1 19864:3 19883:2 19953:1 19991:1 19998:1 20045:1 20049:20 20093:4 20126:2 20166:1 20183:1 20210:1 20226:1 20235:1 20236:1 20246:1 20256:2 20279:1 20287:1 20289:1 20321:1 20322:1 20331:1 20360:1 20399:1 20454:1 20466:1 20530:1 20603:1 20604:1 20641:1 20655:1 20688:1 20702:1 20748:2 20749:1 20765:1 20767:1 20775:1 20783:1 20810:1 20889:1 20899:2 20900:1 20953:1 20984:1 21003:1 21010:1 21038:1 21085:1 21106:1 21148:1 21151:3 21153:1 21217:2 21272:1 21319:4 21344:1 21346:1 21463:5 21495:1 21497:1 21504:1 21553:1 21555:1 21563:1 21570:1 21571:1 21581:1 21640:2 21655:4 21680:2 21700:1 21747:1 21774:1 21786:1 21798:1 21836:1 21838:4 21847:1 21860:1 21889:4 21907:2 21960:1 22002:1 22017:1 22043:1 22052:2 22105:1 22119:1 22128:1 22160:1 22215:1 22249:2 22253:1 22264:1 22270:1 22284:1 22336:1 22355:2 22393:1 22403:1 22406:1 22407:2 22409:1 22410:1 22420:1 22442:1 22454:1 22495:1 22503:2 22558:1 22581:1 22597:2 22620:1 22680:1 22691:1 22696:14 22730:2 22756:1 22774:1 22829:2 22848:2 22875:1 22946:15 22984:1 23011:1 23015:1 23018:1 23024:1 23036:1 23134:3 23137:2 23145:2 23254:1 23256:1 23272:2 23366:1 23426:2 23455:1 23466:3 23489:1 23622:1 23643:1 23657:1 23697:1 23712:1 23768:1 23832:2 23878:1 23911:2 23941:1 24009:2 24018:1 24021:1 24067:1 24068:1 24069:1 24105:1 24130:3 24184:4 24185:1 24186:1 24187:1 24191:1 24192:1 24195:1 24242:1 24257:1 24270:1 24290:1 24303:1 24343:2 24373:14 24381:1 24439:2 24504:1 24514:1 24520:1 24526:1 24556:6 24559:2 24573:1 24622:1 24640:2 24682:4 24687:1 24701:1 24702:1 24716:1 24776:1 24797:1 24839:2 24843:1 24883:1 24885:1 24928:1 24934:2 24974:1 25055:2 25074:1 25099:5 25107:1 25129:1 25154:1 25288:1 25300:1 25320:2 25350:2 25387:1 25397:1 25402:1 25407:1 25408:14 25436:1 25452:15 25464:1 25476:3 25536:4 25552:2 25556:1 25579:1 25592:1 25621:2 25640:1 25662:1 25668:1 25796:1 25853:1 25867:1 25878:3 25916:1 25937:1 25967:1 26000:1 26004:1 26027:1 26031:1 26036:1 26113:1 26126:15
13 28:1 36:1 44:1 83:1 149:2 162:1 200:1 229:1 251:3 263:2 297:1 321:1 334:1 345:1 346:1 349:1 357:1 386:1 387:1 446:1 525:1 605:1 618:2 721:1 722:2 725:1 736:1 744:1 768:1 784:1 788:1 791:1 795:2 796:2 820:1 822:1 824:1 837:1 849:1 875:1 878:2 914:1 1053:3 1089:1 1193:1 1351:1 1395:4 1399:4 1412:1 1465:1 1471:1 1472:1 1473:1 1498:6 1611:3 1652:1 1670:1 1803:1 1805:1 1919:1 1951:1 1981:1 1991:1 1993:1 2003:1 2022:1 2026:1 2028:1 2034:2 2061:1 2069:1 2073:1 2129:1 2130:1 2151:1 2169:1 2171:1 2188:1 2192:2 2210:1 2223:1 2243:1 2259:2 2284:1 2287:3 2294:1 2302:3 2310:1 2322:1 2343:1 2373:1 2428:1 2448:2 2466:1 2475:3 2494:1 2515:1 2527:1 2531:3 2534:1 2554:1 2562:1 2568:2 2594:1 2641:3 2642:1 2686:2 2725:2 2792:1 2817:1 2925:1 3005:1 3009:1 3070:1 3087:1 3109:1 3131:2 3172:1 3199:1 3206:3 3227:2 3246:2 3293:1 3313:1 3320:1 3337:1 3346:2 3351:3 3355:1 3363:1 3385:2 3386:4 3424:1 3452:1 3454:1 3460:1 3512:1 3517:1 3526:1 3536:1 3538:2 3572:1 3584:1 3604:1 3614:1 3674:2 3679:1 3752:1 3801:1 3827:1 3839:3 3864:1 3880:1 3891:1 3914:1 3949:1 3972:3 3980:1 4025:1 4039:1 4048:4 4052:1 4055:3 4068:2 4087:1 4089:2 4119:1 4125:1 4147:2 4165:1 4167:1 4234:1 4251:2 4276:3 4318:2 4323:1 4349:1 4391:1 4392:2 4399:1 4402:1 4407:1 4408:1 4409:2 4414:1 4488:1 4509:1 4546:1 4580:1 4600:1 4604:1 4650:1 4652:1 4655:2 4712:16 4729:1 4740:1 4743:1 4766:1 4833:1 4841:1 4870:1 4895:1 4920:1 4996:2 5016:2 5023:1 5040:1 5065:1 5076:1 5095:1 5109:1 5124:1 5170:2 5172:2 5306:1 5326:1 5382:1 5409:1 5410:2 5487:1 5514:3 5556:1 5572:1 5609:1 5638:1 5704:1 5721:1 5735:1 5753:1 5865:1 5964:1 5970:2 5971:2 6006:16 6097:2 6138:1 6147:1 6162:1 6197:1 6290:1 6291:1 6305:1 6346:1 6400:1 6413:1 6476:1 6482:3 6531:1 6563:1 6658:1 6666:1 6743:1 6761:5 6786:16 6807:5 6825:3 6877:7 6988:1 6991:1 6999:1 7039:1 7061:1 7096:13 7161:1 7167:1 7182:2 7198:1 7208:1 7334:1 7378:1 7422:2 7435:1 7474:1 7566:1 7567:1 7578:1 7583:1 7588:2 7592:1 7599:1 7637:1 7649:1 7671:1 7678:2 7714:1 7769:1 7856:1 7876:1 7879:1 7880:2 7881:1 7884:1 7886:1 7915:1 7916:1 7925:2 7989:2 8058:2 8070:1 8099:1 8179:1 8190:1 8215:2 8236:1 8245:3 8277:1 8334:1 8338:1 8383:1 8424:1 8486:3 8500:1 8507:5 8520:2 8521:2 8591:3 8605:1 8607:1 8608:2 8633:1 8638:1 8645:1 8660:1 8688:1 8725:3 8740:1 8743:1 8804:2 8808:1 8818:1 8848:1 8898:1 8916:1 8940:1 8959:1 9017:1 9049:1 9080:1 9103:1 9113:2 9136:1 9149:1 9174:1 9177:1 9225:1 9235:1 9241:1 9247:1 9251:5 9255:1 9306:1 9307:1 9339:1 9371:1 9388:1 9394:1 9395:1 9400:5 9456:1 9471:1 9491:1 9494:1 9517:1 9523:1 9546:1 9572:1 9586:2 9595:1 9628:1 9646:16 9690:2 9721:2 9745:1 9843:1 9853:1 9855:1 9858:1 9981:1 9993:3 10042:2 10044:2 10052:1 10112:3 10179:1 10228:1 10229:1 10231:1 10232:1 10244:2 10259:1 10274:2 10280:1 10287:2 10300:1 10304:2 10314:1 10369:1 10502:1 10503:3 10553:2 10598:1 10599:1 10610:3 10637:1 10640:2 10650:2 10656:1 10664:1 10677:1 10698:1 10716:1 10721:2 10750:1 10793:1 10796:1 10818:1 10944:1 10947:1 10978:15 10986:1 11055:1 11061:1 11147:1 11151:1 11158:2 11196:15 11256:1 11481:2 11484:1 11496:1 11535:1 11552:2 11558:2 11562:1 11600:2 11617:1 11635:1 11658:1 11662:1 11675:1 11678:1 11695:1 11776:1 11778:1 11786:1 11838:1 11855:15 11901:3 11986:2 12040:2 12096:1 12126:1 12130:1 12263:5 12265:1 12278:1 12342:16 12343:1 12402:1 12452:1 12453:2 12462:1 12466:1 12508:1 12580:1 12585:1 12587:1 12602:1 12638:2 12710:1 12725:1 12742:1 12752:1 12754:1 12776:15 12779:1 12829:3 12871:2 12882:1 12917:1 12920:2 12939:1 12942:1 12969:1 13018:1 13039:1 13061:2 13073:1 13087:6 13100:1 13115:3 13200:1 13223:1 13227:1 13244:1 13266:1 13349:2 13361:1 13379:2 13385:1 13408:1 13472:1 13477:1 13485:1 13571:1 13574:1 13582:1 13598:1 13602:1 13646:2 13661:1 13666:1 13798:1 13805:1 13819:1 13823:1 13826:1 13847:2 13852:1 13856:1 13862:1 13870:1 13877:1 13887:1 13916:1 13952:1 13962:2 13981:1 13999:1 14012:1 14016:3 14022:2 14047:2 14052:1 14080:1 14084:1 14088:1 14098:4 14147:4 14158:2 14170:1 14193:1 14199:1 14200:1 14210:1 14223:1 14231:1 14257:2 14408:2 14415:1 14418:1 14419:1 14453:1 14489:1 14567:1 14596:1 14612:1 14704:2 14705:2 14725:4 14774:1 14800:1 14805:1 14833:1 14838:1 14846:1 14923:2 14953:2 14977:1 14978:1 14982:1 14999:1 15001:1 15035:2 15041:1 15042:2 15066:1 15133:1 15171:1 15182:1 15198:1 15239:1 15248:2 15249:1 15253:3 15261:4 15269:1 15306:1 15324:1 15384:1 15415:1 15453:1 15472:1 15487:2 15514:1 15521:1 15580:1 15608:1 15612:1 15614:1 15616:1 15645:1 15670:2 15693:1 15718:1 15726:1 15738:1 15745:1 15758:2 15764:2 15788:2 15792:1 15813:1 15841:1 15847:1 15901:1 15911:1 15916:1 15966:3 15968:1 16067:2 16082:1 16084:1 16130:15 16170:1 16194:2 16205:1 16313:1 16326:2 16333:1 16359:1 16373:2 16393:1041 16476:1 16493:1 16505:1 16610:1 16653:1 16675:3 16704:1 16706:1 16742:1 16750:1 16765:1 16771:1 16829:1 16834:1 16853:1 16939:1 16952:4 16973:1 17018:2 17038:2 17073:1 17076:3 17079:1 17080:1 17087:1 17100:1 17103:5 17111:1 17114:1 17118:1 17175:1 17199:1 17218:2 17256:1 17296:1 17298:1 17344:1 17349:2 17387:1 17394:1 17429:1 17439:9 17460:1 17526:1 17572:1 17623:1 17646:1 17723:1 17742:1 17748:2 17758:1 17760:1 17763:1 17836:1 17848:1 17863:2 17934:1 17940:1 17948:1 17957:1 17959:1 17961:1 18010:4 18016:1 18017:1 18035:1 18067:1 18114:1 18168:1 18177:1 18251:2 18292:2 18397:1 18399:1 18406:1 18414:1 18436:1 18451:2 18454:1 18457:1 18530:1 18545:1 18599:1 18620:2 18634:1 18655:1 18683:1 18696:1 18831:1 18865:9 18909:1 18933:1 18942:1 19012:3 19016:1 19045:3 19079:2 19138:1 19190:9 19192:1 19198:1 19252:1 19255:1 19263:1 19264:2 19278:1 19281:1 19289:2 19290:1 19329:1 19333:1 19363:1 19366:1 19400:1 19453:1 19549:1 19553:2 19561:1 19567:1 19609:1 19612:12 19622:1 19648:1 19650:1 19693:1 19700:1 19714:1 19758:1 19766:3 19778:1 19838:1 19849:1 19854:1 19860:1 19864:3 19877:1 19883:2 19953:1 19991:2 19998:1 20045:1 20049:21 20093:4 20126:2 20166:1 20183:1 20210:1 20226:1 20235:1 20236:1 20246:1 20256:2 20279:1 20287:1 20289:1 20321:1 20322:1 20331:1 20360:1 20399:1 20454:1 20466:1 20530:1 20603:1 20604:1 20641:1 20655:1 20688:1 20702:1 20748:3 20749:1 20765:1 20767:1 20775:1 20783:1 20810:1 20889:1 20899:2 20900:1 20953:1 20984:1 21003:1 21010:1 21038:1 21085:1 21106:1 21148:1 21151:3 21153:1 21217:2 21272:1 21319:4 21344:1 21346:1 21463:5 21495:1 21497:1 21504:1 21553:1 21555:1 21563:1 21570:1 21571:1 21581:1 21640:2 21655:4 21680:2 21700:1 21747:1 21774:1 21786:1 21798:1 21836:2 21838:4 21847:1 21860:1 21889:4 21907:2 21960:1 22002:1 22017:1 22043:1 22052:2 22076:1 22105:1 22119:1 22128:1 22160:1 22215:1 22249:2 22253:1 22264:1 22270:1 22284:1 22336:1 22355:2 22393:1 22403:1 22406:1 22407:2 22409:1 22410:1 22420:1 22442:1 22454:1 22495:1 22503:2 22558:1 22581:1 22597:2 22620:1 22680:1 22691:1 22696:15 22730:2 22756:1 22774:1 22829:3 22848:3 22875:1 22946:16 22984:1 23011:1 23015:1 23018:1 23024:1 23036:1 23134:3 23137:2 23145:2 23254:1 23256:1 23272:2 23366:1 23426:2 23455:1 23466:3 23489:1 23622:1 23643:1 23657:1 23697:1 23712:1 23768:1 23832:2 23878:1 23911:2 23941:1 24009:2 24018:1 24021:1 24067:1 24068:1 24069:1 24105:1 24130:3 24184:4 24185:1 24186:1 24187:1 24191:1 24192:1 24195:1 24242:1 24257:1 24270:1 24290:1 24303:1 24343:2 24373:15 24381:1 24439:2 24504:1 24514:1 24520:1 24526:1 24556:6 24559:2 24573:1 24622:1 24640:2 24682:4 24687:1 24701:1 24702:1 24716:1 24776:1 24797:1 24839:2 24843:1 24883:1 24885:1 24928:1 24934:2 24974:1 25055:2 25074:1 25099:5 25107:1 25129:1 25154:1 25288:1 25300:1 25320:2 25350:2 25387:1 25397:1 25402:1 25407:1 25408:15 25436:1 25452:16 25464:1 25476:3 25536:4 25552:2 25556:1 25579:1 25592:1 25621:2 25640:1 25662:1 25668:1 25796:1 25853:1 25867:1 25878:3 25916:1 25937:1 25967:1 26000:1 26004:1 26027:1 26031:1 26036:1 26113:1 26126:16
13 28:1 36:1 44:2 83:1 149:2 162:1 200:1 229:1 251:3 263:2 297:1 321:1 334:1 345:1 346:1 349:1 357:1 386:1 387:1 446:1 525:2 605:1 618:2 721:1 722:2 725:1 736:1 744:1 768:1 784:1 788:1 791:1 795:2 796:2 820:1 822:1 824:1 837:1 849:1 875:1 878:2 914:1 1053:3 1089:1 1193:1 1351:1 1395:4 1399:4 1412:1 1452:1 1465:1 1471:1 1472:1 1473:1 1498:7 1611:3 1652:1 1670:1 1803:1 1805:1 1919:1 1951:1 1981:1 1991:1 1993:1 2003:1 2022:1 2026:1 2028:1 2034:2 2061:1 2069:1 2073:1 2129:1 2130:1 2151:1 2169:1 2171:1 2188:1 2192:2 2210:1 2223:1 2243:1 2259:2 2284:1 2287:3 2294:1 2302:3 2310:1 2322:1 2343:1 2373:1 2428:1 2448:2 2466:1 2475:4 2494:1 2515:1 2527:1 2531:3 2534:1 2554:1 2562:1 2568:2 2594:1 2641:3 2642:1 2686:2 2725:2 2759:1 2792:1 2817:1 2925:1 2976:1 3005:1 3009:1 3070:1 3087:1 3109:1 3131:2 3172:1 3199:1 3206:3 3227:2 3246:2 3293:1 3313:2 3320:1 3337:1 3346:3 3351:3 3355:1 3363:1 3385:2 3386:4 3424:1 3452:1 3454:1 3460:1 3512:1 3517:1 3526:1 3536:1 3538:2 3572:1 3584:1 3604:1 3614:1 3674:2 3679:1 3752:1 3801:1 3827:1 3839:3 3864:1 3880:1 3891:1 3914:1 3949:1 3972:3 3980:1 4025:1 4039:1 4048:4 4052:1 4055:3 4068:2 4087:1 4089:2 4119:1 4125:1 4147:2 4165:1 4167:1 4234:1 4251:2 4276:3 4318:2 4323:1 4349:1 4391:1 4392:2 4399:1 4402:1 4407:1 4408:1 4409:2 4414:1 4488:1 4509:1 4546:1 4580:1 4600:1 4604:1 4650:1 4652:1 4655:2 4712:17 4729:1 4740:1 4743:1 4749:1 4766:1 4833:1 4841:1 4870:1 4895:1 4920:1 4996:2 5016:2 5023:1 5040:1 5065:1 5076:1 5095:1 5109:1 5124:1 5170:2 5172:2 5306:1 5326:1 5382:1 5409:1 5410:2 5487:1 5514:4 5556:1 5572:1 5609:1 5638:1 5704:1 5721:1 5735:1 5753:1 5865:1 5964:1 5970:3 5971:2 6006:17 6097:2 6138:1 6147:1 6162:1 6197:1 6290:1 6291:1 6305:1 6346:1 6400:1 6413:1 6476:1 6482:3 6531:1 6563:1 6658:1 6666:1 6743:1 6761:5 6786:17 6807:5 6825:3 6877:8 6988:1 6991:1 6999:1 7039:1 7061:1 7096:14 7161:1 7167:1 7182:2 7198:2 7208:1 7334:1 7378:1 7422:2 7435:1 7474:1 7566:1 7567:1 7578:1 7583:1 7588:2 7592:1 7599:1 7637:1 7649:1 7671:1 7678:2 7714:1 7769:1 7856:1 7876:1 7879:1 7880:3 7881:1 7884:1 7886:1 7915:1 7916:1 7925:2 7989:2 8058:2 8070:1 8099:1 8179:1 8190:1 8215:2 8236:1 8245:3 8277:1 8334:1 8338:1 8383:1 8424:1 8486:3 8500:1 8507:5 8520:2 8521:2 8591:3 8605:1 8607:1 8608:2 8633:1 8638:1 8645:1 8660:1 8688:1 8725:3 8740:1 8743:1 8804:2 8808:1 8818:1 8848:1 8898:1 8916:1 8940:1 8959:1 9017:1 9049:1 9080:1 9103:1 9113:2 9136:1 9149:1 9174:1 9177:1 9225:1 9235:1 9241:1 9247:1 9251:5 9255:1 9306:1 9307:1 9339:1 9371:1 9387:1 9388:1 9394:1 9395:1 9400:6 9456:1 9471:1 9491:1 9494:1 9517:1 9523:1 9546:1 9572:1 9586:2 9595:1 9628:1 9646:17 9690:2 9721:2 9745:1 9843:1 9853:1 9855:1 9858:1 9981:1 9993:3 10042:2 10044:2 10052:1 10112:3 10179:1 10228:1 10229:1 10231:1 10232:1 10244:2 10259:1 10274:2 10280:1 10287:2 10300:1 10304:2 10314:1 10369:1 10502:1 10503:3 10553:2 10598:1 10599:1 10610:3 10637:1 10640:2 10650:2 10656:1 10664:1 10677:1 10698:1 10716:1 10721:2 10750:1 10793:1 10796:1 10818:1 10944:1 10947:1 10978:16 10986:1 11055:1 11061:1 11147:1 11151:1 11158:2 11196:16 11256:1 11481:2 11484:1 11496:1 11535:1 11552:2 11558:2 11562:1 11600:2 11617:1 11635:1 11658:1 11662:1 11675:1 11678:1 11695:1 11776:1 11778:1 11786:1 11838:1 11855:16 11901:3 11986:2 12040:2 12096:1 12126:1 12130:1 12263:6 12265:1 12278:1 12342:17 12343:1 12402:1 12452:1 12453:2 12462:1 12466:1 12508:1 12580:1 12585:1 12587:1 12602:1 12638:2 12710:1 12725:1 12742:1 12752:1 12754:1 12776:16 12779:1 12829:3 12871:2 12882:1 12917:1 12920:2 12939:1 12942:1 12969:1 13018:1 13039:1 13061:2 13073:1 13087:6 13100:1 13115:3 13200:1 13223:1 13227:1 13244:1 13266:1 13349:2 13361:2 13379:2 13385:1 13408:1 13472:1 13477:1 13485:1 13487:1 13571:1 13574:1 13582:1 13598:1 13602:1 13646:2 13661:1 13666:1 13798:1 13805:1 13819:1 13823:1 13826:1 13847:2 13852:1 13856:1 13862:1 13870:1 13877:1 13887:1 13916:1 13952:1 13962:2 13981:1 13999:1 14012:1 14016:3 14022:2 14047:2 14052:1 14080:1 14084:1 14088:1 14098:4 14147:4 14158:2 14170:1 14193:2 14199:1 14200:1 14210:1 14223:1 14231:1 14257:2 14408:2 14415:1 14418:1 14419:1 14421:1 14453:1 14489:1 14549:1 14567:1 14596:1 14612:1 14704:2 14705:2 14725:4 14774:1 14800:1 14805:1 14833:1 14838:1 14846:1 14923:2 14932:1 14953:2 14977:1 14978:1 14982:1 14999:1 15001:1 15035:2 15041:1 15042:2 15066:1 15133:1 15171:1 15182:1 15198:1 15239:1 15248:2 15249:1 15253:3 15261:5 15269:1 15306:1 15324:1 15384:1 15415:1 15453:1 15472:1 15487:2 15514:1 15521:1 15580:1 15608:1 15612:1 15614:1 15616:1 15645:1 15670:2 15693:1 15718:1 15726:1 15738:1 15745:1 15758:2 15764:2 15765:1 15788:2 15792:1 15813:1 15841:1 15847:1 15901:1 15911:1 15916:1 15966:3 15968:1 16067:2 16082:1 16084:1 16130:16 16170:1 16194:2 16205:1 16313:1 16326:2 16333:1 16359:1 16373:2 16393:1065 16476:1 16493:1 16505:1 16610:1 16653:1 16675:3 16704:1 16706:1 16742:1 16750:1 16765:1 16771:1 16829:1 16834:1 16853:1 16908:1 16939:1 16952:4 16973:1 17018:2 17038:2 17073:1 17076:4 17079:1 17080:1 17087:1 17100:1 17103:5 17111:1 17114:1 17116:1 17118:1 17175:1 17199:1 17218:2 17256:1 17296:1 17298:1 17344:1 17349:2 17387:1 17394:1 17429:1 17439:10 17460:1 17526:1 17572:1 17623:1 17646:1 17723:1 17742:1 17748:3 17758:1 17760:1 17763:1 17836:1 17848:1 17863:2 17934:1 17940:1 17948:1 17957:1 17959:1 17961:1 18010:4 18016:1 18017:1 18035:1 18067:1 18114:1 18168:1 18177:1 18251:2 18292:2 18397:1 18399:1 18406:1 18414:1 18436:1 18451:2 18454:1 18457:1 18530:1 18545:1 18599:1 18620:2 18634:1 18655:1 18683:1 18696:1 18747:1 18831:1 18865:10 18909:1 18933:1 18942:1 19012:3 19016:1 19042:1 19045:3 19079:2 19138:1 19190:10 19192:1 19198:1 19252:1 19255:1 19263:1 19264:2 19278:1 19281:1 19289:2 19290:1 19329:1 19333:1 19363:1 19366:1 19400:1 19453:1 19549:1 19553:2 19561:1 19567:1 19609:1 19612:12 19622:1 19648:1 19650:1 19693:1 19700:2 19714:1 19758:1 19766:3 19778:1 19838:1 19849:1 19854:1 19860:1 19864:3 19877:1 19883:2 19953:1 19991:2 19998:1 20045:1 20049:22 20093:4 20126:2 20166:1 20183:1 20210:1 20226:2 20235:1 20236:1 20246:1 20256:2 20279:1 20287:1 20289:1 20321:1 20322:1 20331:1 20360:1 20399:1 20454:1 20466:1 20530:1 20603:1 20604:1 20641:1 20655:1 20683:1 20688:1 20702:1 20748:3 20749:1 20765:1 20767:1 20775:1 20783:1 20810:1 20889:1 20899:2 20900:1 20953:1 20984:1 21003:1 21010:1 21038:1 21085:1 21106:1 21148:1 21151:3 21153:1 21217:2 21272:1 21319:4 21344:1 21346:1 21463:5 21495:1 21497:1 21504:1 21553:1 21555:1 21563:1 21570:1 21571:1 21581:1 21640:2 21655:4 21680:2 21700:1 21747:1 21774:1 21786:1 21798:1 21836:3 21838:4 21847:1 21860:1 21889:4 21907:2 21960:1 22002:1 22017:1 22043:1 22052:2 22076:1 22105:1 22119:1 22128:1 22160:1 22215:1 22249:2 22253:1 22264:1 22270:1 22284:1 22336:1 22355:2 22393:1 22403:1 22406:1 22407:2 22409:1 22410:1 22420:1 22442:1 22454:1 22495:1 22503:2 22558:1 22581:1 22597:2 22620:1 22680:1 22691:1 22696:16 22730:2 22756:1 22774:1 22829:3 22848:4 22875:1 22946:17 22984:1 22989:1 23011:1 23015:1 23018:1 23024:1 23036:1 23112:1 23134:3 23137:2 23145:2 23254:1 23256:1 23272:2 23366:1 23426:2 23455:1 23466:3 23489:1 23622:1 23643:1 23657:1 23697:1 23712:1 23768:1 23832:3 23878:1 23911:2 23941:1 24009:2 24018:1 24021:1 24067:1 24068:1 24069:1 24105:1 24130:3 24184:4 24185:1 24186:1 24187:1 24191:1 24192:1 24195:1 24242:1 24257:1 24270:1 24290:1 24303:1 24343:2 24373:16 24381:1 24439:2 24504:1 24514:1 24520:1 24526:1 24556:6 24559:2 24573:1 24622:1 24640:2 24682:4 24687:1 24701:1 24702:1 24716:1 24776:1 24797:1 24839:2 24843:1 24883:1 24885:1 24928:1 24934:2 24974:1 25055:2 25074:1 25099:5 25107:1 25129:1 25154:1 25288:1 25300:1 25320:2 25350:2 25387:1 25397:1 25402:1 25407:1 25408:16 25436:1 25452:17 25464:1 25476:3 25501:1 25536:4 25552:2 25556:1 25579:1 25592:1 25621:2 25640:1 25662:1 25668:1 25796:1 25853:1 25867:1 25878:3 25916:1 25937:1 25967:1 26000:1 26004:1 26027:1 26031:1 26036:1 26113:1 26126:17
13 28:1 36:1 44:2 83:1 149:2 162:1 200:1 229:1 251:3 263:2 297:1 321:1 334:1 345:1 346:1 349:1 357:1 386:1 387:1 446:1 525:2 605:1 618:2 721:1 722:2 725:1 736:1 744:1 768:1 784:1 788:1 791:1 795:2 796:2 820:1 822:1 824:1 837:1 849:1 875:1 878:2 911:1 914:1 1053:3 1089:1 1193:1 1351:1 1395:4 1399:4 1412:1 1452:1 1465:1 1471:1 1472:1 1473:1 1498:7 1611:3 1652:1 1670:1 1803:1 1805:1 1917:1 1919:1 1951:1 1981:1 1991:1 1993:1 2003:1 2022:1 2026:1 2028:1 2034:2 2061:1 2069:1 2073:1 2082:1 2129:1 2130:1 2151:1 2169:1 2171:1 2188:1 2192:2 2210:1 2223:1 2243:1 2259:2 2284:1 2287:3 2294:1 2302:3 2310:1 2322:1 2343:1 2373:1 2428:1 2448:2 2466:1 2475:4 2494:1 2515:1 2527:1 2531:3 2534:1 2554:1 2562:1 2568:2 2594:1 2641:3 2642:1 2686:2 2725:2 2759:1 2792:1 2817:1 2925:1 2976:1 3005:1 3009:1 3070:1 3087:1 3109:1 3131:2 3172:1 3199:1 3206:3 3227:2 3246:2 3293:1 3313:2 3320:1 3337:1 3346:3 3351:3 3355:1 3363:1 3385:2 3386:4 3424:1 3452:1 3454:2 3460:1 3512:1 3517:1 3526:1 3536:1 3538:2 3572:1 3584:1 3604:1 3614:1 3674:2 3679:1 3752:1 3801:1 3827:1 3839:3 3864:1 3880:1 3891:1 3914:1 3949:1 3972:3 3980:1 4025:1 4039:1 4048:4 4052:1 4055:3 4068:2 4087:1 4089:2 4119:1 4125:1 4147:2 4165:1 4167:1 4234:1 4251:2 4276:3 4318:2 4323:1 4349:1 4391:1 4392:2 4399:1 4402:1 4407:1 4408:1 4409:2 4414:1 4461:1 4488:1 4509:1 4546:1 4580:1 4600:1 4604:1 4650:1 4652:1 4655:2 4712:18 4729:1 4740:1 4743:1 4749:1 4766:1 4833:1 4841:1 4870:1 4895:1 4920:1 4996:2 5016:2 5023:1 5040:1 5065:1 5076:1 5095:1 5109:1 5124:1 5170:2 5172:2 5306:1 5326:1 5382:1 5409:1 5410:2 5459:1 5487:1 5514:4 5556:1 5572:1 5609:1 5638:1 5704:1 5721:1 5735:1 5753:1 5865:1 5964:1 5965:1 5970:3 5971:2 6006:18 6097:2 6138:1 6147:1 6162:1 6197:1 6290:1 6291:1 6305:1 6346:1 6400:1 6413:1 6476:1 6482:3 6531:1 6563:1 6658:1 6666:1 6743:1 6761:5 6776:1 6786:18 6807:5 6825:3 6877:9 6988:1 6991:1 6999:1 7039:1 7061:1 7096:14 7161:1 7167:1 7182:2 7198:2 7208:1 7334:1 7378:1 7422:2 7435:1 7474:1 7492:1 7566:1 7567:1 7578:1 7583:1 7588:2 7592:1 7599:1 7637:1 7649:1 7671:1 7678:2 7714:1 7769:1 7856:1 7876:1 7879:1 7880:3 7881:1 7884:1 7886:1 7915:1 7916:1 7925:2 7989:2 8058:3 8070:1 8099:1 8179:1 8190:1 8215:2 8236:1 8245:3 8277:1 8334:1 8338:1 8383:1 8424:1 8486:3 8500:1 8507:5 8520:2 8521:2 8591:3 8605:1 8607:1 8608:2 8633:1 8638:1 8645:1 8660:1 8688:1 8725:3 8740:1 8743:1 8804:2 8808:1 8818:1 8848:1 8898:1 8916:1 8940:1 8959:1 9017:1 9049:1 9080:1 9103:1 9113:2 9136:1 9149:1 9174:1 9177:1 9225:1 9235:1 9241:1 9247:1 9251:5 9255:1 9297:1 9306:1 9307:1 9339:1 9371:1 9387:1 9388:1 9394:1 9395:1 9400:6 9456:1 9471:1 9491:1 9494:1 9517:1 9523:1 9546:1 9572:1 9586:2 9595:1 9628:1 9646:18 9690:2 9721:2 9745:1 9843:1 9853:1 9855:1 9858:1 9981:1 9993:3 10042:2 10044:2 10052:1 10112:3 10179:1 10228:1 10229:1 10231:1 10232:1 10244:2 10259:1 10274:2 10280:1 10287:2 10300:1 10304:2 10314:1 10369:1 10502:1 10503:3 10553:2 10598:1 10599:1 10610:3 10637:1 10640:3 10650:2 10656:1 10664:1 10677:1 10698:1 10716:1 10721:2 10750:1 10793:1 10796:1 10818:1 10944:1 10947:1 10978:17 10986:1 11055:1 11061:1 11147:1 11151:1 11158:2 11196:17 11256:1 11481:2 11484:1 11496:1 11535:1 11552:2 11558:2 11562:1 11600:2 11617:1 11635:1 11658:1 11662:1 11675:1 11678:1 11695:1 11776:1 11778:1 11786:1 11829:1 11838:1 11855:17 11901:3 11986:2 12040:2 12096:1 12126:1 12130:1 12263:6 12265:1 12278:1 12342:18 12343:1 12402:1 12452:1 12453:2 12462:1 12466:1 12508:1 12580:1 12585:1 12587:1 12602:1 12638:2 12710:1 12725:1 12742:1 12752:1 12754:1 12776:17 12779:1 12829:3 12871:2 12882:1 12917:1 12920:2 12939:1 12942:1 12969:1 13018:1 13039:1 13061:3 13073:1 13087:6 13100:1 13115:3 13200:1 13223:1 13227:1 13244:1 13266:1 13349:2 13361:2 13379:2 13385:1 13408:1 13472:1 13477:1 13485:1 13487:1 13571:1 13574:1 13582:1 13598:1 13602:1 13646:2 13661:1 13666:1 13798:1 13805:1 13819:1 13823:1 13826:1 13847:2 13852:1 13856:1 13862:1 13870:1 13877:1 13887:1 13916:1 13952:1 13962:2 13981:1 13999:1 14012:1 14016:3 14022:2 14047:2 14052:1 14080:1 14084:1 14088:1 14098:4 14147:4 14158:2 14170:1 14193:2 14199:1 14200:1 14210:1 14223:1 14231:2 14257:2 14408:2 14415:1 14418:1 14419:1 14421:1 14453:1 14489:1 14549:1 14567:1 14596:1 14612:1 14704:2 14705:2 14725:4 14774:1 14800:1 14805:1 14833:1 14838:1 14846:1 14923:2 14932:1 14953:2 14977:1 14978:1 14982:1 14999:1 15001:1 15035:2 15041:1 15042:2 15066:1 15133:1 15171:1 15182:1 15198:1 15239:1 15248:2 15249:1 15253:4 15261:5 15269:1 15306:2 15324:1 15380:1 15384:1 15415:1 15453:1 15472:1 15487:2 15514:1 15521:1 15580:1 15608:1 15612:1 15614:1 15616:1 15645:1 15670:2 15693:1 15718:1 15726:1 15738:1 15745:1 15758:2 15764:2 15765:1 15788:2 15792:1 15813:1 15841:1 15847:1 15901:1 15911:1 15916:1 15966:3 15968:1 16067:2 16082:1 16084:1 16130:17 16170:1 16194:3 16205:1 16313:1 16326:2 16333:1 16359:1 16373:2 16393:1112 16476:1 16493:1 16505:1 16610:1 16653:1 16675:3 16704:1 16706:1 16742:1 16750:1 16765:1 16771:1 16829:1 16834:1 16853:1 16908:1 16939:1 16951:1 16952:4 16973:1 17018:2 17038:2 17073:1 17076:4 17079:1 17080:1 17087:1 17100:1 17103:5 17111:1 17114:1 17116:1 17118:1 17175:1 17199:1 17218:2 17256:1 17296:1 17298:1 17344:1 17349:2 17387:1 17394:1 17429:1 17439:10 17460:1 17526:1 17572:1 17623:1 17646:1 17723:1 17742:1 17748:3 17758:1 17760:1 17763:1 17836:1 17848:1 17863:2 17934:1 17940:1 17948:1 17957:1 17959:1 17961:1 18010:4 18016:1 18017:1 18035:1 18067:1 18114:1 18168:1 18177:1 18251:2 18292:2 18397:1 18399:1 18406:1 18414:1 18436:1 18451:2 18454:1 18457:1 18530:1 18545:1 18599:1 18620:2 18634:1 18655:1 18683:1 18696:1 18747:1 18831:1 18865:10 18909:1 18933:1 18942:1 19012:3 19016:1 19042:1 19045:3 19079:2 19138:1 19190:10 19192:1 19198:1 19252:1 19255:1 19263:1 19264:2 19278:1 19281:1 19289:2 19290:1 19329:1 19333:1 19363:1 19366:1 19400:1 19453:1 19549:1 19553:2 19561:1 19567:1 19609:1 19612:13 19622:1 19648:1 19650:1 19693:2 19700:2 19714:1 19758:1 19766:3 19778:1 19838:1 19849:1 19854:1 19860:1 19864:3 19877:1 19883:2 19953:1 19991:2 19998:1 20045:1 20049:23 20093:4 20126:2 20166:1 20183:1 20210:1 20226:2 20235:1 20236:1 20246:2 20256:2 20279:1 20287:1 20289:1 20321:1 20322:1 20331:1 20360:1 20399:1 20454:1 20466:1 20530:1 20603:1 20604:1 20641:1 20655:1 20683:1 20688:1 20702:1 20748:3 20749:1 20765:1 20767:1 20775:1 20783:1 20810:1 20889:1 20899:2 20900:1 20953:1 20984:1 21003:1 21010:1 21038:1 21085:1 21106:1 21148:1 21151:3 21153:1 21217:2 21272:1 21319:4 21324:1 21344:1 21346:1 21463:5 21495:1 21497:1 21504:1 21553:1 21555:1 21563:1 21570:1 21571:1 21581:1 21640:2 21647:1 21655:4 21680:2 21700:1 21747:1 21774:1 21786:1 21798:1 21836:3 21838:4 21847:1 21860:1 21889:4 21907:3 21960:1 22002:1 22017:1 22043:1 22052:2 22076:1 22105:1 22119:1 22125:1 22128:1 22160:1 22215:1 22249:2 22253:2 22264:1 22270:1 22284:1 22336:1 22355:2 22393:1 22403:1 22406:1 22407:2 22409:1 22410:2 22420:1 22442:1 22454:1 22495:1 22503:2 22558:1 22581:1 22597:2 22620:1 22680:1 22691:1 22696:17 22730:2 22756:1 22774:1 22829:3 22848:4 22875:1 22946:18 22984:1 22989:1 23011:1 23015:1 23018:1 23024:1 23036:1 23112:1 23134:3 23137:2 23145:3 23254:1 23256:1 23272:2 23366:1 23426:2 23455:1 23466:3 23489:1 23622:1 23643:1 23657:1 23697:1 23712:1 23768:1 23832:3 23878:1 23911:2 23941:1 24009:2 24018:1 24021:1 24067:1 24068:1 24069:1 24105:1 24130:3 24184:4 24185:1 24186:1 24187:1 24191:1 24192:1 24195:1 24242:1 24257:1 24270:1 24290:1 24303:1 24343:2 24373:17 24381:1 24439:2 24504:1 24514:1 24520:1 24526:1 24556:6 24559:2 24573:1 24622:1 24640:2 24682:4 24687:1 24701:1 24702:1 24716:1 24776:1 24797:1 24839:2 24843:1 24883:1 24885:1 24928:1 24934:2 24974:1 25055:2 25074:1 25099:5 25107:1 25129:1 25154:1 25288:1 25300:1 25320:2 25350:2 25387:1 25397:1 25402:1 25407:1 25408:17 25436:1 25452:18 25464:1 25476:3 25501:1 25536:4 25552:2 25556:1 25579:1 25592:1 25621:2 25640:1 25662:1 25668:1 25796:1 25853:1 25867:1 25878:3 25916:1 25937:1 25967:1 26000:1 26004:1 26027:1 26031:1 26036:1 26113:1 26126:18
13 28:1 36:1 44:2 83:1 149:2 162:1 200:1 229:1 251:3 263:2 297:1 321:1 334:1 345:1 346:2 349:1 357:1 386:1 387:1 446:1 525:2 605:1 618:2 721:1 722:2 725:1 736:1 744:1 768:1 784:1 788:1 791:1 795:2 796:2 820:1 822:1 824:1 837:1 849:1 875:1 878:2 911:1 914:1 1053:3 1089:1 1193:1 1267:1 1351:1 1395:4 1399:4 1412:1 1452:1 1465:1 1471:1 1472:1 1473:1 1498:7 1611:4 1652:1 1670:1 1803:1 1805:1 1812:1 1917:1 1919:1 1951:1 1981:1 1991:1 1993:1 2003:1 2022:1 2026:1 2028:1 2030:1 2034:2 2061:1 2069:1 2073:1 2082:1 2129:1 2130:1 2151:1 2169:1 2171:1 2188:1 2192:2 2210:1 2223:1 2243:1 2259:2 2284:1 2287:3 2294:1 2302:3 2310:1 2322:1 2343:1 2373:1 2428:1 2448:2 2466:1 2475:4 2494:1 2515:1 2527:1 2531:3 2534:1 2537:1 2554:1 2562:1 2568:2 2594:1 2641:3 2642:1 2686:2 2725:2 2759:1 2792:1 2817:1 2829:2 2925:1 2976:1 3005:1 3009:1 3070:1 3073:1 3087:1 3109:1 3131:2 3172:1 3199:1 3206:3 3227:2 3246:2 3293:1 3313:2 3320:1 3337:1 3346:3 3351:3 3355:1 3363:1 3385:2 3386:4 3424:1 3452:1 3454:2 3460:1 3512:1 3517:1 3526:1 3536:1 3538:2 3572:1 3584:1 3604:1 3614:1 3674:2 3679:1 3752:1 3801:1 3827:1 3839:3 3864:1 3880:1 3891:1 3914:1 3949:1 3972:3 3980:1 4025:1 4039:1 4048:4 4052:1 4055:3 4068:2 4087:1 4089:2 4119:1 4125:1 4147:2 4165:1 4167:1 4234:1 4251:2 4276:3 4318:2 4323:1 4349:1 4391:1 4392:2 4399:1 4402:1 4407:1 4408:1 4409:2 4414:1 4461:1 4488:1 4509:1 4546:1 4580:1 4600:2 4604:1 4650:1 4652:1 4655:2 4712:18 4729:1 4740:1 4743:1 4749:1 4766:1 4833:1 4841:1 4870:1 4885:1 4895:1 4920:1 4996:2 5016:2 5023:1 5040:1 5065:1 5076:1 5095:1 5109:1 5124:1 5170:2 5172:2 5306:1 5326:1 5382:1 5409:1 5410:2 5459:1 5487:1 5514:4 5556:1 5572:1 5609:1 5638:1 5704:1 5721:1 5735:1 5753:1 5865:1 5964:1 5965:1 5970:3 5971:2 6006:18 6097:2 6138:1 6147:1 6162:1 6197:1 6290:1 6291:1 6305:1 6346:1 6400:1 6413:1 6432:1 6476:1 6482:3 6531:1 6563:1 6658:1 6666:1 6743:1 6761:6 6776:1 6786:18 6807:6 6825:3 6877:9 6983:1 6988:1 6991:1 6999:1 7039:1 7061:1 7096:16 7161:1 7167:1 7182:2 7198:2 7208:1 7334:1 7346:1 7378:1 7380:1 7422:2 7435:1 7474:1 7492:1 7566:1 7567:1 7578:1 7583:1 7588:2 7592:1 7599:1 7637:1 7649:1 7671:1 7677:1 7678:2 7714:1 7769:1 7856:1 7876:1 7879:1 7880:3 7881:1 7884:1 7886:1 7915:1 7916:1 7925:2 7989:2 8058:3 8070:1 8099:1 8179:1 8190:1 8215:2 8236:1 8245:3 8277:1 8334:1 8338:1 8383:1 8395:2 8424:1 8486:3 8500:1 8507:5 8520:2 8521:2 8591:3 8605:1 8607:1 8608:2 8633:1 8638:1 8645:1 8660:1 8688:1 8725:3 8740:1 8743:1 8804:2 8808:1 8818:1 8848:1 8898:1 8916:1 8940:1 8959:1 9017:1 9049:1 9080:1 9103:1 9113:2 9136:1 9149:1 9174:1 9177:1 9225:1 9235:1 9241:1 9247:1 9251:5 9255:1 9297:1 9306:1 9307:1 9339:1 9371:1 9387:1 9388:1 9394:1 9395:1 9400:6 9456:1 9471:1 9491:1 9494:1 9517:1 9523:1 9546:1 9572:1 9586:2 9595:1 9628:1 9646:18 9690:2 9721:2 9745:1 9843:1 9853:1 9855:1 9858:1 9981:1 9993:3 10042:2 10044:2 10052:1 10112:3 10179:1 10228:1 10229:1 10231:1 10232:1 10244:2 10259:1 10274:2 10280:1 10287:2 10300:1 10304:2 10314:1 10369:1 10502:1 10503:3 10553:2 10598:1 10599:5 10610:3 10637:1 10640:3 10650:2 10656:1 10664:1 10677:1 10698:1 10716:1 10721:2 10750:1 10793:1 10796:1 10818:1 10944:1 10947:1 10978:18 10986:1 11038:1 11055:1 11061:1 11147:1 11151:1 11158:2 11196:17 11256:1 11481:2 11484:1 11496:1 11535:1 11552:2 11558:2 11562:1 11600:2 11617:1 11635:1 11658:1 11662:1 11675:1 11678:1 11695:1 11776:1 11778:1 11786:1 11829:1 11838:1 11855:18 11901:3 11982:2 11986:2 12040:2 12086:1 12096:1 12126:1 12130:1 12247:1 12263:6 12265:1 12278:1 12342:18 12343:1 12402:5 12452:1 12453:2 12462:1 12466:1 12508:1 12580:1 12585:1 12587:1 12602:1 12638:2 12710:1 12725:1 12742:1 12752:2 12754:1 12776:18 12779:1 12829:3 12871:2 12882:1 12917:1 12920:2 12939:1 12940:1 12942:1 12969:1 13018:1 13039:1 13061:3 13073:1 13087:6 13100:1 13115:3 13200:1 13223:1 13227:1 13244:1 13266:1 13349:2 13361:2 13379:2 13385:2 13408:1 13472:1 13477:1 13485:1 13487:1 13571:1 13574:1 13582:1 13598:1 13602:1 13646:2 13661:1 13666:1 13798:1 13805:1 13819:1 13823:1 13826:1 13847:2 13852:1 13856:1 13862:1 13870:1 13877:1 13887:1 13916:1 13952:1 13962:3 13981:1 13999:1 14012:1 14016:3 14022:2 14047:2 14052:1 14080:1 14084:1 14088:1 14098:4 14147:4 14158:2 14170:1 14193:2 14199:1 14200:1 14210:1 14223:1 14231:2 14257:2 14408:2 14415:1 14418:1 14419:1 14421:1 14453:1 14489:1 14549:1 14567:1 14596:1 14612:1 14704:2 14705:2 14725:4 14774:1 14800:1 14805:1 14833:1 14838:1 14846:1 14923:2 14932:1 14953:2 14977:1 14978:1 14982:1 14999:1 15001:1 15035:2 15041:1 15042:2 15066:1 15121:1 15133:1 15171:1 15182:1 15198:1 15239:1 15248:2 15249:1 15253:4 15261:5 15269:1 15306:2 15324:1 15344:1 15380:1 15384:1 15415:1 15453:1 15472:1 15487:2 15514:1 15521:1 15580:1 15608:1 15612:1 15614:1 15616:1 15645:1 15670:2 15693:1 15718:1 15726:1 15732:1 15738:1 15745:1 15758:2 15764:2 15765:1 15788:2 15792:1 15813:1 15841:1 15847:1 15889:1 15901:1 15911:1 15916:1 15966:3 15968:1 16067:2 16082:1 16084:1 16130:18 16156:1 16170:1 16194:3 16205:1 16301:1 16313:1 16326:2 16333:1 16359:1 16373:2 16393:1195 16476:1 16493:1 16505:1 16610:3 16653:1 16675:3 16704:1 16706:1 16742:1 16750:1 16765:1 16771:1 16829:1 16834:1 16853:1 16908:1 16939:1 16951:1 16952:4 16973:1 17018:2 17038:2 17073:1 17076:4 17079:1 17080:1 17087:1 17100:1 17103:5 17111:1 17114:1 17116:1 17118:1 17175:1 17199:1 17218:2 17256:1 17296:1 17298:1 17344:1 17349:2 17387:1 17394:1 17429:1 17439:10 17460:1 17526:1 17572:1 17623:1 17646:1 17723:1 17742:1 17748:3 17758:1 17760:1 17763:1 17836:1 17848:1 17863:2 17934:1 17940:1 17948:1 17957:1 17959:1 17961:1 18010:4 18016:1 18017:1 18035:1 18067:1 18114:1 18168:1 18177:1 18251:2 18292:2 18397:1 18399:1 18406:1 18414:1 18436:1 18451:2 18454:1 18457:1 18530:1 18535:1 18545:1 18599:1 18620:2 18634:1 18655:1 18683:1 18696:1 18747:1 18831:1 18865:10 18909:1 18933:1 18942:1 18972:1 19012:3 19016:1 19042:1 19045:3 19079:2 19138:1 19190:10 19192:1 19198:1 19252:1 19255:1 19263:1 19264:2 19278:1 19281:1 19289:2 19290:1 19329:1 19333:1 19363:1 19366:1 19400:1 19453:1 19549:1 19553:3 19561:1 19567:1 19609:1 19612:13 19622:1 19648:1 19650:1 19693:2 19700:2 19714:1 19758:1 19766:3 19778:1 19780:1 19838:1 19849:1 19854:1 19860:1 19864:3 19877:1 19883:2 19953:1 19991:2 19998:1 20045:1 20049:24 20093:4 20107:1 20126:2 20166:1 20183:1 20210:1 20226:2 20235:1 20236:1 20246:2 20256:2 20279:1 20287:1 20289:1 20321:1 20322:1 20331:1 20360:1 20399:1 20454:1 20466:1 20530:1 20603:1 20604:1 20641:1 20655:1 20683:1 20688:1 20702:1 20748:3 20749:1 20765:1 20767:1 20775:1 20783:1 20810:1 20889:1 20899:2 20900:1 20909:1 20953:1 20984:1 21003:1 21010:1 21038:1 21085:1 21106:1 21148:1 21151:3 21153:1 21217:2 21272:1 21319:4 21324:1 21344:1 21346:1 21463:5 21495:1 21497:1 21504:1 21553:1 21555:1 21563:1 21570:1 21571:1 21581:1 21640:2 21647:1 21655:4 21680:2 21700:1 21747:1 21774:1 21786:1 21798:1 21836:3 21838:4 21847:1 21860:1 21889:4 21907:3 21925:1 21960:1 22002:1 22017:1 22043:1 22052:2 22076:1 22105:1 22119:1 22125:1 22128:1 22160:1 22215:1 22249:2 22253:2 22264:1 22270:1 22274:1 22284:1 22336:1 22355:2 22393:1 22403:1 22406:1 22407:2 22409:1 22410:2 22420:1 22442:1 22454:1 22495:1 22503:2 22558:1 22581:1 22597:2 22620:1 22680:1 22691:1 22696:17 22730:2 22756:1 22774:1 22829:3 22848:4 22875:1 22921:1 22946:18 22984:1 22989:1 23000:1 23011:1 23015:1 23018:1 23024:1 23036:1 23112:1 23134:3 23137:2 23145:3 23254:1 23256:1 23272:2 23366:1 23426:2 23455:1 23466:3 23489:1 23622:1 23643:1 23657:1 23697:1 23712:1 23768:1 23832:3 23878:1 23911:2 23941:1 24009:2 24018:1 24021:1 24033:1 24067:2 24068:1 24069:1 24105:2 24130:3 24184:4 24185:1 24186:1 24187:1 24191:1 24192:1 24195:1 24242:1 24257:1 24270:1 24290:1 24303:1 24334:1 24343:2 24373:18 24381:1 24439:3 24504:1 24514:1 24520:1 24522:1 24526:1 24556:6 24559:2 24573:1 24622:1 24640:2 24682:4 24687:1 24701:1 24702:1 24716:1 24776:1 24797:1 24839:2 24843:1 24883:1 24885:1 24928:1 24934:2 24974:1 25055:2 25074:1 25099:6 25107:1 25129:1 25154:1 25288:1 25300:1 25320:2 25350:2 25387:1 25397:1 25402:1 25407:1 25408:18 25436:1 25452:18 25464:1 25476:3 25501:1 25536:4 25552:2 25556:1 25579:1 25592:1 25621:2 25640:1 25662:1 25668:1 25796:1 25853:1 25867:1 25878:3 25916:1 25937:1 25967:1 26000:1 26004:1 26027:1 26031:1 26036:1 26113:1 26126:18
13 28:1 36:1 44:2 83:1 149:2 162:1 200:1 229:1 251:3 263:2 297:1 302:1 321:1 334:1 345:1 346:2 349:1 357:1 386:1 387:1 430:1 446:1 525:2 605:1 618:2 650:1 721:1 722:2 725:1 736:1 744:1 768:1 784:1 788:1 791:1 795:2 796:2 820:1 822:1 824:1 837:1 849:1 875:1 878:2 911:2 914:1 998:1 1011:1 1053:3 1089:1 1193:1 1267:1 1351:1 1395:4 1399:4 1412:1 1452:1 1465:1 1471:1 1472:1 1473:1 1498:7 1500:1 1611:4 1652:1 1670:1 1697:1 1803:1 1805:1 1812:1 1917:1 1919:1 1951:1 1981:1 1991:1 1993:1 2003:1 2022:1 2026:1 2028:1 2030:1 2034:2 2036:1 2061:1 2069:1 2073:1 2082:1 2129:1 2130:1 2151:1 2169:1 2171:1 2188:1 2192:2 2206:1 2210:1 2223:1 2243:1 2259:2 2284:1 2287:3 2294:1 2302:3 2310:1 2322:1 2343:1 2373:1 2428:1 2448:2 2466:1 2475:4 2494:1 2515:1 2527:1 2531:4 2534:1 2537:1 2554:1 2562:1 2568:2 2594:1 2641:3 2642:1 2686:2 2725:2 2759:1 2782:1 2792:1 2817:1 2829:2 2873:1 2892:1 2925:1 2976:1 3005:1 3009:1 3052:1 3070:1 3073:1 3087:1 3109:1 3131:3 3172:1 3199:1 3206:3 3227:2 3246:2 3293:1 3313:2 3320:1 3337:1 3346:3 3351:3 3355:1 3363:1 3385:2 3386:4 3424:1 3452:1 3454:2 3460:1 3512:1 3517:1 3526:1 3536:1 3538:2 3572:1 3584:1 3604:1 3614:1 3635:1 3674:2 3679:1 3752:1 3801:1 3827:1 3839:3 3864:1 3880:1 3891:1 3914:1 3949:1 3972:3 3980:1 4025:1 4039:1 4048:4 4052:1 4055:3 4068:2 4087:1 4089:2 4119:1 4125:1 4141:1 4147:2 4165:1 4167:1 4234:1 4251:2 4276:3 4318:2 4323:1 4349:1 4391:1 4392:2 4399:1 4402:1 4407:1 4408:1 4409:2 4414:1 4461:2 4488:1 4509:1 4546:1 4580:1 4600:2 4604:1 4619:1 4650:1 4652:1 4655:2 4712:18 4729:1 4740:1 4743:1 4749:1 4766:1 4833:1 4841:1 4870:1 4872:1 4885:1 4895:1 4920:1 4996:2 5016:2 5023:1 5040:1 5065:1 5073:1 5076:1 5095:1 5109:1 5124:1 5170:2 5172:2 5306:1 5326:1 5382:1 5409:1 5410:2 5459:1 5487:1 5489:1 5514:4 5556:1 5572:1 5609:1 5610:1 5638:1 5704:1 5721:1 5735:1 5753:1 5865:1 5964:1 5965:1 5970:3 5971:2 5978:1 6006:18 6097:2 6138:1 6147:1 6162:1 6197:1 6227:1 6290:1 6291:1 6305:1 6346:1 6400:1 6413:1 6432:1 6476:1 6482:3 6531:1 6560:1 6563:1 6658:1 6666:1 6743:1 6761:7 6776:2 6786:18 6807:7 6825:4 6877:9 6963:1 6983:1 6988:1 6991:1 6999:1 7039:1 7061:1 7096:16 7161:1 7167:1 7182:2 7198:2 7208:1 7334:1 7346:1 7378:1 7380:1 7422:2 7435:1 7474:1 7492:1 7566:1 7567:1 7578:1 7583:1 7588:2 7592:1 7599:1 7637:1 7649:1 7671:1 7677:1 7678:3 7714:1 7769:1 7856:1 7876:1 7879:1 7880:3 7881:1 7884:1 7886:1 7915:1 7916:1 7925:2 7989:2 8058:3 8070:1 8099:1 8179:1 8190:1 8215:2 8236:1 8245:3 8277:1 8334:1 8338:1 8383:1 8395:2 8424:1 8486:3 8500:1 8507:5 8520:2 8521:2 8591:3 8605:1 8607:1 8608:2 8633:1 8638:1 8645:1 8660:1 8688:1 8725:3 8740:1 8743:1 8783:1 8804:2 8808:1 8818:1 8848:1 8898:1 8916:1 8940:1 8959:1 9017:1 9049:1 9080:1 9103:1 9113:2 9136:1 9149:1 9174:1 9177:1 9225:1 9235:1 9241:1 9247:1 9251:5 9255:1 9297:1 9306:1 9307:1 9339:1 9371:1 9387:1 9388:1 9394:1 9395:1 9400:7 9456:1 9471:1 9491:2 9494:1 9517:1 9523:1 9546:1 9572:1 9586:2 9595:1 9598:1 9628:1 9646:18 9690:2 9721:2 9745:1 9843:1 9853:1 9855:1 9858:1 9918:1 9932:1 9981:1 9993:3 10042:2 10044:2 10052:1 10112:3 10179:1 10228:1 10229:1 10231:1 10232:1 10244:2 10259:1 10274:2 10280:1 10287:2 10300:1 10304:2 10314:1 10369:1 10502:1 10503:3 10553:2 10598:1 10599:5 10610:3 10615:1 10637:1 10640:4 10650:2 10654:1 10656:1 10664:1 10677:1 10698:1 10716:1 10721:2 10750:1 10793:1 10796:1 10818:1 10944:1 10947:1 10978:18 10986:1 11038:1 11055:1 11061:1 11094:1 11147:1 11151:2 11158:2 11196:17 11256:1 11481:2 11484:1 11496:1 11535:1 11552:2 11558:2 11562:1 11600:2 11617:1 11635:1 11658:1 11662:1 11675:1 11678:1 11695:1 11776:1 11778:1 11786:1 11829:2 11838:1 11855:18 11901:3 11982:2 11986:2 12040:2 12086:1 12096:1 12126:1 12130:1 12169:1 12247:1 12263:6 12265:1 12278:1 12342:18 12343:1 12402:5 12452:1 12453:2 12462:1 12466:1 12508:1 12580:1 12585:1 12587:1 12602:1 12638:2 12710:1 12725:1 12742:1 12752:2 12754:1 12776:18 12779:1 12829:3 12871:2 12882:1 12917:1 12920:2 12939:1 12940:1 12942:1 12969:1 13018:1 13039:1 13061:4 13073:1 13087:6 13100:1 13115:3 13200:1 13223:1 13227:1 13244:1 13266:1 13349:2 13361:2 13379:2 13385:2 13408:1 13472:1 13477:1 13485:1 13487:1 13571:1 13574:1 13582:1 13598:1 13602:1 13646:2 13661:1 13666:1 13798:1 13805:1 13819:1 13823:1 13826:1 13847:2 13852:1 13856:1 13862:1 13870:1 13877:1 13887:1 13916:1 13952:1 13962:4 13981:1 13999:1 14012:1 14016:3 14022:2 14047:2 14052:1 14080:1 14084:1 14088:1 14098:4 14147:4 14158:2 14170:1 14193:2 14199:1 14200:1 14210:1 14223:1 14231:3 14257:2 14408:2 14415:1 14418:1 14419:1 14421:1 14453:1 14489:1 14548:1 14549:1 14567:1 14596:1 14612:1 14656:1 14704:2 14705:2 14725:5 14774:1 14800:1 14805:1 14833:1 14838:1 14846:1 14876:1 14923:2 14930:1 14932:1 14953:2 14977:1 14978:1 14982:1 14999:1 15001:1 15035:2 15041:1 15042:2 15066:1 15121:1 15123:1 15133:1 15171:1 15182:1 15198:1 15239:1 15248:2 15249:1 15253:4 15261:5 15269:1 15306:2 15324:1 15344:1 15380:1 15384:1 15415:1 15453:1 15472:1 15484:1 15487:2 15514:1 15521:1 15580:1 15588:1 15608:1 15612:1 15614:1 15616:1 15645:1 15670:2 15693:1 15718:1 15726:1 15732:1 15738:1 15745:1 15758:2 15764:2 15765:1 15788:2 15792:1 15813:1 15841:1 15847:1 15889:1 15901:1 15911:1 15916:1 15966:3 15968:1 16067:2 16082:1 16084:1 16130:18 16156:1 16170:1 16180:1 16194:3 16205:1 16208:1 16301:1 16306:1 16313:1 16326:2 16333:1 16359:1 16373:2 16393:1264 16476:1 16493:1 16505:1 16610:3 16653:1 16675:3 16704:1 16706:1 16742:1 16750:1 16765:1 16771:1 16829:1 16834:1 16853:1 16908:1 16939:1 16951:1 16952:4 16973:1 17018:2 17038:2 17073:1 17076:4 17079:1 17080:1 17087:1 17100:1 17103:5 17111:1 17114:1 17116:1 17118:1 17175:1 17199:1 17218:2 17256:1 17296:1 17298:1 17344:1 17349:2 17387:1 17394:1 17429:1 17439:10 17460:1 17526:1 17572:1 17623:1 17646:1 17723:1 17742:1 17748:3 17758:1 17760:1 17763:1 17836:1 17848:1 17863:2 17934:1 17940:1 17948:1 17957:1 17959:1 17961:1 18010:4 18016:1 18017:1 18035:1 18067:1 18114:1 18168:1 18177:1 18251:2 18292:2 18397:1 18399:1 18406:1 18414:1 18436:1 18451:2 18454:1 18457:1 18530:1 18535:1 18545:1 18599:1 18620:2 18634:1 18655:1 18683:1 18696:1 18747:1 18756:1 18831:1 18865:10 18909:1 18933:1 18942:1 18972:1 19012:3 19016:1 19042:1 19045:4 19079:2 19138:1 19144:1 19190:10 19192:1 19198:1 19252:1 19255:1 19263:1 19264:2 19276:1 19278:1 19281:1 19289:2 19290:1 19329:1 19333:1 19363:1 19366:1 19400:1 19453:1 19549:1 19553:3 19561:1 19567:1 19609:1 19612:13 19622:1 19648:1 19650:1 19693:3 19700:2 19714:1 19758:1 19766:3 19778:1 19780:1 19819:1 19838:1 19849:1 19854:1 19860:1 19864:3 19877:1 19883:2 19953:1 19991:2 19998:1 20045:1 20049:24 20093:4 20107:1 20126:2 20166:1 20177:1 20183:1 20210:1 20226:2 20235:1 20236:1 20246:2 20256:2 20279:1 20287:1 20289:1 20321:1 20322:1 20331:1 20360:1 20399:1 20454:1 20466:1 20530:1 20603:1 20604:1 20641:1 20655:1 20683:1 20688:1 20702:1 20748:3 20749:1 20765:1 20767:1 20775:1 20783:1 20810:1 20889:1 20899:2 20900:1 20909:1 20953:1 20984:1 21003:1 21010:1 21038:1 21085:1 21106:1 21148:1 21151:3 21153:1 21217:2 21272:1 21319:4 21324:1 21344:1 21346:1 21463:7 21495:1 21497:1 21504:1 21553:1 21555:1 21563:1 21570:1 21571:1 21578:1 21581:1 21619:1 21640:2 21647:1 21655:4 21680:2 21700:1 21747:1 21774:1 21786:1 21798:1 21836:3 21838:4 21847:1 21860:1 21889:4 21907:3 21925:1 21960:1 22002:1 22017:1 22043:1 22052:2 22076:1 22105:1 22118:1 22119:1 22125:1 22128:1 22160:1 22215:1 22249:2 22253:2 22264:1 22270:1 22274:1 22284:1 22336:1 22355:2 22393:1 22403:1 22406:1 22407:2 22408:1 22409:1 22410:3 22420:1 22442:1 22454:1 22495:1 22503:2 22558:1 22581:1 22597:2 22620:1 22680:1 22691:1 22696:17 22730:2 22756:1 22765:1 22774:1 22829:3 22848:4 22875:1 22921:1 22946:18 22984:1 22989:1 23000:1 23011:1 23015:1 23018:1 23024:1 23036:1 23112:1 23134:3 23137:2 23145:3 23166:1 23254:1 23256:1 23272:2 23366:1 23426:2 23455:1 23466:3 23489:1 23622:1 23643:1 23657:1 23697:1 23712:1 23768:1 23832:3 23878:1 23911:2 23941:1 24009:2 24018:1 24021:1 24033:1 24067:2 24068:1 24069:1 24105:2 24130:3 24184:4 24185:1 24186:1 24187:1 24191:1 24192:1 24195:1 24235:1 24242:1 24257:1 24270:1 24290:1 24303:1 24334:1 24343:2 24373:18 24381:1 24439:3 24504:1 24514:1 24520:1 24522:1 24526:1 24556:6 24559:2 24573:1 24622:1 24640:2 24682:4 24687:1 24701:1 24702:1 24716:1 24776:1 24797:1 24839:2 24843:1 24883:1 24885:1 24928:1 24934:2 24974:1 25055:2 25064:1 25074:1 25099:7 25107:1 25126:1 25129:1 25154:1 25175:1 25239:1 25288:1 25300:1 25320:2 25350:2 25387:1 25397:1 25402:1 25407:1 25408:18 25436:1 25452:18 25464:1 25476:3 25501:1 25536:4 25552:2 25556:1 25579:1 25592:1 25621:2 25640:1 25662:1 25668:1 25796:1 25815:1 25853:1 25867:1 25878:3 25916:1 25934:1 25937:1 25967:1 26000:1 26004:1 26027:1 26031:1 26036:1 26113:1 26126:18
13 28:1 36:1 44:2 83:1 149:2 162:1 200:1 229:1 251:3 263:2 297:1 302:1 321:1 334:1 345:1 346:2 349:1 357:1 386:1 387:1 430:1 446:1 525:2 553:1 605:1 618:2 650:1 721:1 722:2 725:1 736:1 744:1 746:1 768:1 784:1 788:1 791:1 795:2 796:2 820:1 822:1 824:1 837:1 849:1 875:1 878:2 911:2 914:1 998:1 1011:1 1053:3 1065:1 1089:1 1193:1 1267:1 1351:1 1395:4 1399:5 1412:1 1452:1 1465:1 1471:1 1472:1 1473:1 1498:7 1500:1 1611:4 1652:1 1670:1 1697:1 1713:1 1803:1 1805:1 1812:1 1917:1 1919:1 1951:1 1981:1 1991:1 1993:1 2003:1 2022:1 2026:1 2028:1 2030:1 2034:2 2036:1 2055:1 2061:1 2069:1 2073:1 2082:1 2129:1 2130:1 2151:1 2155:1 2169:1 2171:1 2188:1 2192:2 2206:1 2210:1 2223:1 2243:1 2259:2 2284:1 2287:3 2294:1 2302:3 2310:1 2322:1 2343:1 2373:1 2412:1 2428:1 2448:2 2466:1 2475:5 2494:1 2515:1 2527:1 2528:1 2531:4 2534:1 2537:1 2554:1 2562:1 2568:2 2594:1 2641:3 2642:1 2686:2 2725:2 2759:1 2782:1 2792:1 2817:1 2829:2 2873:1 2892:1 2925:1 2976:1 3005:1 3009:1 3052:1 3070:1 3073:1 3087:1 3109:1 3131:3 3172:1 3199:1 3206:3 3227:2 3246:2 3293:1 3313:2 3320:1 3337:1 3346:3 3351:3 3355:1 3363:1 3385:2 3386:4 3424:1 3452:1 3454:2 3460:1 3512:1 3517:1 3526:1 3536:1 3538:2 3572:1 3584:1 3604:1 3614:1 3635:1 3674:2 3679:1 3752:1 3801:1 3827:1 3839:3 3864:1 3880:1 3891:1 3914:1 3949:1 3972:3 3980:1 4025:1 4039:1 4048:4 4052:1 4055:3 4068:2 4087:1 4089:2 4119:1 4125:1 4141:1 4147:2 4165:1 4167:1 4234:1 4251:2 4276:3 4318:2 4323:1 4349:1 4391:1 4392:2 4399:1 4402:1 4407:1 4408:1 4409:2 4414:1 4461:2 4488:1 4509:1 4546:1 4580:1 4600:2 4604:1 4619:1 4650:1 4652:1 4655:2 4712:18 4729:1 4740:1 4743:1 4749:1 4766:1 4833:1 4841:1 4870:1 4872:1 4885:1 4895:1 4920:1 4996:2 5016:2 5023:1 5040:1 5065:1 5073:1 5076:1 5095:1 5109:1 5124:1 5170:2 5172:2 5306:1 5326:1 5356:1 5382:1 5406:1 5409:1 5410:2 5459:2 5487:1 5489:1 5514:4 5556:1 5572:1 5609:1 5610:1 5638:1 5704:1 5721:1 5735:1 5753:1 5865:1 5964:1 5965:2 5970:3 5971:2 5978:1 6006:18 6097:2 6138:1 6147:1 6162:1 6197:1 6227:1 6290:1 6291:2 6305:1 6346:1 6400:1 6413:1 6432:1 6476:1 6482:3 6531:1 6560:1 6563:1 6658:1 6666:1 6743:1 6761:7 6776:2 6786:18 6807:8 6825:4 6877:9 6963:1 6983:1 6988:1 6991:1 6999:1 7039:1 7061:1 7096:16 7161:1 7167:2 7182:2 7198:2 7208:1 7334:1 7346:1 7378:1 7380:1 7422:2 7435:1 7474:1 7492:1 7509:1 7566:1 7567:1 7578:1 7583:1 7588:2 7592:1 7599:1 7637:1 7649:1 7671:1 7677:1 7678:3 7714:1 7769:1 7856:1 7876:1 7879:1 7880:3 7881:1 7884:1 7886:1 7915:1 7916:1 7925:2 7989:2 7990:1 8053:1 8058:3 8070:1 8099:1 8106:1 8114:1 8179:1 8190:1 8215:2 8236:1 8245:3 8277:1 8334:1 8338:1 8383:1 8395:2 8424:1 8486:3 8500:1 8507:5 8520:2 8521:2 8591:3 8605:1 8607:1 8608:2 8633:1 8638:1 8645:1 8660:1 8688:1 8725:3 8740:1 8743:1 8783:1 8804:2 8808:1 8818:1 8848:1 8898:1 8916:1 8940:1 8959:1 9017:1 9049:1 9080:1 9103:1 9113:2 9136:1 9149:1 9174:1 9177:1 9206:1 9225:1 9231:1 9235:1 9241:1 9247:1 9251:5 9255:1 9297:2 9306:1 9307:1 9339:1 9371:1 9374:1 9387:1 9388:1 9394:1 9395:1 9400:7 9401:1 9456:1 9471:1 9491:2 9494:1 9517:1 9523:1 9546:2 9572:1 9586:2 9595:1 9598:1 9628:1 9646:18 9690:2 9721:2 9745:1 9843:1 9853:1 9855:1 9858:1 9918:1 9932:1 9981:1 9993:3 10042:2 10044:2 10052:1 10112:3 10179:1 10228:1 10229:1 10231:1 10232:1 10244:2 10259:1 10274:2 10280:1 10287:2 10300:1 10304:2 10314:1 10369:1 10502:1 10503:3 10553:2 10598:1 10599:5 10610:3 10615:1 10637:1 10640:4 10650:2 10654:1 10656:1 10664:1 10677:1 10698:1 10716:1 10721:2 10750:1 10793:1 10796:1 10818:1 10944:1 10947:1 10971:1 10978:18 10986:1 11038:1 11055:1 11061:1 11094:1 11132:1 11147:1 11149:1 11151:2 11158:2 11196:17 11256:1 11267:1 11481:2 11484:1 11496:1 11535:1 11552:2 11558:2 11562:1 11600:2 11617:1 11635:1 11658:1 11662:1 11675:1 11678:1 11695:1 11776:1 11778:1 11786:1 11829:2 11838:1 11855:18 11901:3 11982:2 11986:2 12040:2 12086:1 12096:1 12126:1 12130:1 12169:1 12227:1 12247:1 12263:6 12265:1 12278:1 12342:18 12343:1 12402:5 12452:1 12453:2 12462:1 12466:1 12508:1 12580:1 12585:1 12587:1 12602:1 12638:2 12678:1 12697:1 12710:1 12725:1 12742:1 12752:2 12754:1 12776:18 12779:1 12829:3 12871:2 12882:1 12917:1 12920:2 12939:1 12940:1 12942:1 12969:1 13018:1 13039:1 13061:4 13073:1 13087:7 13100:1 13115:3 13178:1 13200:1 13223:1 13227:1 13244:1 13266:1 13349:2 13361:2 13379:2 13385:2 13408:1 13472:1 13477:1 13485:1 13487:1 13571:1 13574:1 13582:1 13598:1 13602:1 13646:2 13661:1 13666:1 13798:1 13805:1 13819:1 13823:1 13826:1 13847:2 13852:1 13856:1 13862:1 13870:1 13877:1 13887:1 13916:1 13952:1 13962:4 13981:1 13999:1 14012:2 14016:3 14022:2 14047:2 14052:1 14080:1 14084:1 14088:1 14098:4 14147:4 14158:2 14170:1 14193:3 14199:1 14200:1 14210:1 14223:1 14231:3 14257:2 14408:2 14415:1 14418:1 14419:1 14421:1 14453:1 14489:1 14548:1 14549:1 14567:1 14596:1 14612:1 14656:1 14704:2 14705:2 14725:5 14774:1 14800:1 14805:1 14833:1 14838:1 14846:1 14876:1 14923:2 14930:1 14932:1 14948:1 14953:2 14977:1 14978:1 14982:1 14999:1 15001:1 15035:2 15041:1 15042:2 15066:1 15121:1 15123:1 15133:1 15171:1 15182:1 15198:1 15239:1 15248:2 15249:1 15253:4 15261:5 15269:1 15306:2 15324:1 15344:1 15380:1 15384:1 15415:1 15453:1 15472:1 15484:1 15487:2 15514:1 15521:1 15580:1 15588:1 15608:1 15612:1 15614:1 15616:1 15645:1 15670:2 15693:1 15718:1 15726:1 15732:1 15738:1 15745:1 15758:2 15764:2 15765:1 15788:2 15792:1 15813:1 15841:1 15847:1 15889:1 15901:1 15911:1 15916:1 15966:3 15968:1 16067:2 16082:1 16084:1 16130:18 16156:1 16170:1 16180:1 16194:3 16205:1 16208:1 16301:1 16306:1 16313:1 16326:2 16333:1 16359:1 16373:2 16393:1336 16413:1 16476:1 16493:1 16505:1 16610:3 16653:1 16675:3 16704:1 16706:1 16742:1 16750:1 16765:1 16771:1 16829:1 16834:1 16853:1 16908:1 16939:1 16951:1 16952:4 16973:1 17018:2 17038:2 17073:1 17076:4 17079:1 17080:1 17087:1 17100:1 17103:5 17111:1 17114:1 17116:1 17118:1 17164:1 17175:1 17199:1 17218:2 17256:1 17296:1 17298:1 17344:1 17349:2 17387:1 17394:1 17429:1 17439:10 17460:1 17466:1 17526:1 17572:1 17623:1 17646:1 17723:1 17738:1 17742:1 17748:3 17758:1 17760:1 17763:1 17836:1 17848:1 17863:2 17934:1 17940:1 17948:1 17957:1 17959:1 17961:1 18010:4 18012:1 18016:1 18017:1 18035:1 18067:1 18114:1 18168:1 18177:1 18251:2 18292:2 18397:1 18399:1 18406:1 18414:1 18436:1 18451:2 18454:1 18457:1 18530:1 18535:1 18545:1 18599:1 18620:3 18634:1 18647:1 18655:1 18671:1 18683:1 18696:1 18747:1 18756:1 18831:1 18865:10 18909:1 18933:1 18942:1 18963:1 18972:1 19012:3 19016:1 19021:1 19042:1 19045:5 19079:2 19138:1 19144:1 19190:10 19192:1 19198:1 19252:1 19255:1 19263:1 19264:2 19276:1 19278:1 19281:1 19289:2 19290:1 19329:1 19333:1 19363:1 19366:1 19400:1 19453:1 19549:1 19553:3 19561:1 19567:1 19609:1 19612:13 19622:1 19648:1 19650:1 19693:3 19700:3 19714:1 19758:1 19766:3 19778:1 19780:1 19819:1 19838:1 19849:1 19854:1 19860:1 19864:3 19877:1 19883:2 19934:1 19953:1 19991:2 19998:1 20045:1 20049:25 20093:4 20107:1 20126:2 20166:1 20177:1 20183:1 20210:1 20226:2 20235:1 20236:1 20246:2 20256:2 20279:1 20287:1 20289:1 20321:1 20322:1 20331:1 20353:1 20360:1 20399:1 20437:1 20454:1 20466:1 20530:1 20603:1 20604:1 20641:1 20655:1 20683:1 20688:1 20702:1 20748:3 20749:1 20765:1 20767:1 20775:1 20783:1 20810:1 20889:1 20899:2 20900:1 20909:1 20953:2 20984:1 21003:1 21010:1 21038:1 21085:1 21106:1 21130:1 21148:1 21151:3 21153:1 21217:2 21272:1 21319:5 21324:2 21341:1 21344:1 21346:1 21463:7 21495:1 21497:1 21504:1 21553:1 21555:1 21563:1 21570:1 21571:1 21578:1 21581:1 21619:1 21640:2 21647:1 21655:4 21680:2 21700:1 21747:1 21774:1 21786:1 21798:1 21836:3 21838:4 21847:1 21860:1 21889:4 21907:3 21925:1 21960:1 22002:1 22017:1 22043:1 22052:2 22076:1 22105:1 22118:1 22119:1 22125:2 22128:1 22160:1 22215:1 22249:2 22253:2 22264:1 22270:1 22274:1 22284:1 22336:1 22355:2 22393:1 22403:1 22406:1 22407:2 22408:1 22409:1 22410:3 22420:1 22442:1 22454:1 22495:1 22503:2 22514:1 22527:1 22558:1 22581:1 22597:2 22620:1 22680:1 22691:1 22696:17 22730:2 22756:1 22765:1 22774:1 22829:3 22848:4 22875:1 22921:1 22946:18 22984:1 22989:1 23000:1 23011:1 23015:1 23018:1 23024:1 23036:1 23041:1 23112:1 23134:3 23137:2 23145:3 23166:1 23254:1 23256:1 23272:2 23366:1 23426:2 23455:1 23456:1 23466:3 23489:1 23622:1 23643:1 23657:1 23697:1 23712:1 23768:1 23832:3 23878:2 23911:2 23941:1 24009:2 24018:1 24021:1 24033:1 24067:2 24068:1 24069:1 24105:2 24108:1 24130:3 24157:1 24184:4 24185:1 24186:1 24187:1 24191:1 24192:1 24195:1 24235:1 24242:1 24257:1 24270:1 24290:1 24303:1 24312:1 24334:1 24343:2 24373:18 24381:1 24439:3 24504:1 24514:1 24520:1 24522:1 24526:1 24556:6 24559:2 24573:1 24622:1 24640:2 24682:4 24687:1 24701:2 24702:1 24716:1 24756:1 24776:1 24797:1 24839:2 24843:1 24883:1 24885:1 24928:1 24934:2 24974:1 25055:2 25064:1 25074:1 25099:7 25107:1 25126:1 25129:1 25154:1 25175:1 25239:1 25288:1 25300:1 25320:2 25350:2 25387:1 25397:1 25402:1 25407:1 25408:18 25436:1 25452:18 25464:1 25476:3 25501:1 25536:5 25552:2 25556:1 25579:1 25592:1 25621:2 25640:1 25662:1 25668:1 25796:1 25803:1 25815:1 25847:1 25853:1 25867:1 25878:3 25916:1 25934:1 25937:1 25967:1 26000:1 26004:1 26027:1 26031:1 26036:1 26113:1 26126:18
13 28:1 36:1 44:2 83:1 149:4 162:1 200:1 229:1 251:3 263:2 297:1 302:1 321:1 334:1 345:1 346:2 349:1 357:1 382:1 386:1 387:1 430:1 446:1 525:2 553:1 605:1 618:4 650:1 721:1 722:2 725:1 736:1 744:1 746:1 768:1 784:1 788:1 791:1 795:2 796:2 820:1 822:1 824:1 837:1 849:1 875:1 878:2 911:2 914:1 998:1 1011:1 1053:3 1065:1 1089:1 1193:1 1229:1 1267:1 1351:1 1395:4 1399:5 1408:1 1412:1 1452:1 1465:1 1471:1 1472:1 1473:1 1498:8 1500:1 1611:4 1652:1 1670:1 1697:1 1713:1 1803:1 1805:1 1812:1 1917:1 1919:1 1951:1 1981:1 1991:1 1993:1 2003:1 2022:1 2026:1 2028:1 2030:1 2034:2 2036:1 2055:1 2061:1 2069:1 2073:1 2082:1 2129:1 2130:1 2151:1 2155:1 2169:1 2171:1 2188:1 2192:2 2206:1 2210:1 2223:1 2243:1 2259:2 2284:1 2287:3 2294:1 2302:3 2310:1 2322:1 2343:1 2373:1 2412:1 2428:1 2448:3 2466:2 2475:5 2494:1 2515:1 2527:1 2528:1 2531:4 2534:1 2537:1 2554:1 2562:1 2568:2 2594:1 2641:3 2642:1 2686:2 2725:2 2759:1 2782:1 2792:1 2817:1 2829:2 2873:1 2892:1 2925:1 2976:1 2985:1 3005:1 3009:1 3052:1 3070:1 3073:1 3087:1 3109:1 3131:3 3172:1 3199:1 3206:3 3227:2 3246:2 3265:1 3293:1 3313:2 3320:1 3337:1 3346:3 3351:3 3355:1 3363:1 3385:2 3386:4 3424:1 3452:1 3454:2 3460:1 3512:1 3517:1 3526:1 3536:1 3538:2 3572:1 3584:1 3604:1 3614:1 3635:1 3674:2 3679:1 3709:1 3752:1 3801:1 3827:1 3839:3 3864:1 3880:1 3891:1 3914:1 3949:1 3972:3 3980:1 4025:1 4039:1 4048:4 4052:1 4055:3 4068:2 4087:1 4089:2 4119:1 4125:1 4141:1 4147:2 4165:1 4167:1 4234:1 4251:2 4276:3 4318:3 4323:1 4349:1 4376:2 4391:1 4392:2 4399:1 4402:1 4407:1 4408:1 4409:2 4414:1 4461:2 4488:1 4509:1 4546:1 4580:1 4600:2 4604:2 4619:1 4650:1 4652:1 4655:2 4712:18 4729:1 4740:1 4743:1 4749:1 4766:1 4833:1 4841:1 4870:1 4872:1 4885:1 4895:1 4920:1 4996:2 5016:2 5023:1 5040:1 5065:1 5073:1 5076:1 5095:1 5109:1 5124:1 5170:2 5172:2 5306:1 5326:1 5356:1 5382:1 5406:1 5409:1 5410:2 5459:2 5487:1 5489:1 5514:4 5556:1 5572:1 5609:1 5610:1 5638:1 5704:1 5721:1 5735:1 5753:1 5865:1 5964:1 5965:2 5970:3 5971:2 5978:1 6006:18 6097:2 6138:1 6147:1 6162:1 6197:1 6227:1 6290:1 6291:2 6305:1 6346:1 6400:1 6413:1 6432:1 6476:1 6482:3 6531:1 6560:1 6563:1 6658:1 6666:1 6734:1 6743:1 6761:7 6776:2 6786:18 6807:8 6825:4 6877:9 6963:1 6966:1 6983:1 6988:1 6991:1 6999:1 7039:1 7061:1 7096:16 7161:1 7167:2 7182:2 7198:2 7208:1 7334:1 7346:1 7378:1 7380:1 7422:2 7435:1 7474:1 7492:1 7509:1 7566:1 7567:1 7578:1 7583:1 7588:2 7592:1 7599:1 7637:1 7649:1 7671:1 7677:1 7678:3 7714:1 7729:1 7769:1 7856:1 7876:1 7878:1 7879:1 7880:3 7881:1 7884:1 7886:1 7915:1 7916:1 7925:2 7989:2 7990:1 8053:1 8058:3 8070:1 8099:1 8106:1 8114:1 8179:1 8190:1 8215:2 8236:1 8245:3 8271:1 8277:1 8334:1 8338:1 8383:1 8395:2 8424:1 8486:3 8500:1 8507:6 8520:2 8521:3 8591:3 8605:1 8607:1 8608:2 8633:1 8638:1 8645:1 8660:1 8688:1 8725:3 8740:1 8743:1 8783:1 8804:2 8808:2 8818:2 8848:1 8898:1 8916:1 8940:1 8959:1 9017:1 9049:1 9080:1 9103:1 9113:2 9136:1 9149:1 9174:1 9177:1 9206:1 9225:1 9231:1 9235:1 9241:1 9247:1 9251:5 9255:1 9297:2 9306:1 9307:1 9339:1 9371:1 9374:1 9387:1 9388:1 9394:1 9395:1 9400:7 9401:1 9456:1 9471:1 9491:2 9494:1 9517:1 9523:1 9546:2 9572:1 9586:2 9595:1 9598:1 9628:1 9646:18 9690:2 9721:2 9745:1 9843:1 9853:1 9855:1 9858:1 9918:1 9932:1 9981:1 9993:3 10042:2 10044:2 10052:1 10112:3 10124:2 10179:1 10228:1 10229:1 10231:1 10232:1 10244:2 10259:2 10274:2 10280:1 10287:2 10300:1 10304:2 10314:1 10369:1 10502:1 10503:3 10553:2 10598:1 10599:5 10610:3 10615:1 10637:1 10640:4 10650:2 10654:1 10656:1 10664:1 10677:1 10698:1 10716:1 10721:2 10750:1 10793:1 10796:1 10818:1 10944:1 10947:1 10971:1 10978:18 10986:1 11038:1 11055:1 11061:1 11094:1 11132:1 11147:1 11149:1 11151:2 11158:2 11196:17 11256:1 11267:1 11481:2 11484:1 11496:1 11535:1 11552:2 11558:2 11562:1 11600:2 11617:1 11635:1 11658:1 11662:1 11675:1 11678:1 11687:1 11695:1 11776:1 11778:1 11786:1 11829:2 11838:1 11855:18 11901:3 11982:2 11986:2 12035:1 12040:3 12086:1 12096:1 12126:1 12130:1 12169:1 12227:1 12235:2 12247:1 12263:7 12265:1 12278:1 12342:18 12343:1 12402:5 12452:1 12453:2 12462:1 12466:1 12508:1 12580:1 12585:1 12587:1 12602:1 12638:2 12678:1 12697:1 12710:1 12725:1 12742:1 12752:2 12754:1 12761:1 12776:18 12779:1 12829:3 12871:2 12882:1 12917:1 12920:2 12939:1 12940:1 12942:1 12969:1 13018:1 13039:1 13061:4 13073:1 13087:8 13100:1 13115:3 13178:1 13200:1 13223:1 13227:1 13244:1 13266:1 13349:2 13361:2 13379:2 13385:2 13408:1 13472:1 13477:1 13485:1 13487:1 13571:2 13574:1 13582:1 13598:1 13602:1 13646:2 13661:1 13666:1 13798:1 13801:1 13805:1 13819:1 13823:1 13826:1 13847:2 13852:1 13856:1 13862:1 13870:1 13877:1 13887:1 13916:1 13952:1 13962:4 13981:1 13999:1 14012:2 14016:3 14022:2 14044:1 14047:2 14052:1 14080:1 14084:1 14088:1 14098:4 14147:4 14158:3 14170:1 14193:3 14199:1 14200:1 14210:1 14223:1 14231:3 14257:2 14408:2 14415:1 14416:1 14418:1 14419:1 14421:1 14453:1 14489:1 14548:1 14549:1 14567:1 14596:1 14612:1 14656:1 14704:2 14705:2 14708:1 14725:5 14774:1 14800:1 14805:1 14833:2 14838:1 14846:1 14876:1 14923:2 14930:1 14932:1 14948:1 14953:2 14977:1 14978:1 14982:1 14999:1 15001:1 15035:2 15041:1 15042:2 15066:1 15121:1 15123:1 15133:1 15171:1 15182:1 15198:1 15239:1 15248:2 15249:1 15253:4 15261:5 15269:1 15306:2 15324:1 15344:1 15380:1 15384:1 15415:1 15453:1 15472:1 15484:1 15487:2 15514:1 15521:1 15580:1 15588:1 15608:1 15612:1 15614:1 15616:1 15645:1 15670:2 15693:1 15718:1 15726:1 15732:1 15738:1 15745:1 15758:2 15764:2 15765:1 15788:2 15792:1 15813:1 15841:1 15847:1 15889:1 15901:1 15911:1 15916:1 15966:3 15968:1 16067:2 16082:1 16084:1 16130:18 16156:1 16170:1 16180:1 16194:3 16205:1 16208:1 16301:1 16306:1 16313:1 16326:4 16333:1 16359:1 16373:2 16393:1377 16413:1 16476:1 16493:1 16505:1 16610:3 16653:1 16675:3 16704:1 16706:1 16742:1 16750:1 16765:1 16771:1 16829:1 16834:1 16853:1 16908:1 16910:2 16939:1 16951:1 16952:4 16973:1 17018:2 17024:1 17038:2 17042:1 17073:1 17076:4 17079:1 17080:1 17087:1 17100:1 17103:5 17111:1 17114:1 17116:1 17118:1 17164:1 17175:1 17199:1 17218:2 17256:1 17296:1 17298:1 17344:1 17349:2 17387:1 17394:1 17429:1 17439:10 17460:1 17466:1 17526:1 17572:1 17623:1 17646:1 17723:1 17738:1 17742:1 17748:3 17758:1 17760:1 17763:1 17836:1 17848:1 17863:2 17934:1 17940:1 17948:1 17957:1 17959:1 17961:1 18010:4 18012:1 18016:1 18017:1 18035:1 18067:1 18114:1 18168:1 18177:1 18251:2 18292:2 18397:1 18399:1 18406:1 18414:1 18436:1 18451:2 18454:1 18457:1 18530:1 18535:1 18545:1 18548:1 18599:1 18620:3 18634:1 18647:1 18655:1 18671:1 18683:1 18696:1 18747:1 18756:1 18817:1 18831:1 18865:10 18909:1 18933:1 18942:1 18963:1 18972:1 19012:3 19016:1 19021:1 19042:1 19045:5 19079:2 19138:1 19144:1 19151:1 19190:10 19192:1 19198:1 19252:1 19255:1 19263:1 19264:2 19276:1 19278:1 19281:1 19289:2 19290:1 19325:1 19329:1 19333:1 19363:1 19366:1 19400:1 19453:1 19549:1 19553:3 19561:1 19567:1 19609:1 19612:13 19622:1 19648:1 19650:1 19693:3 19700:3 19714:1 19758:1 19766:3 19778:1 19780:1 19819:1 19838:1 19849:1 19854:1 19860:1 19864:3 19877:1 19883:2 19934:1 19953:1 19991:2 19998:1 20045:1 20049:26 20093:4 20107:1 20126:2 20166:1 20177:1 20183:1 20210:1 20226:2 20235:1 20236:1 20246:2 20256:2 20279:1 20287:1 20289:1 20321:1 20322:1 20331:1 20353:1 20360:1 20399:1 20437:1 20454:1 20466:1 20530:1 20603:1 20604:1 20641:1 20655:1 20683:1 20688:1 20702:1 20748:3 20749:1 20765:1 20767:1 20775:1 20783:1 20810:1 20889:1 20899:2 20900:1 20909:1 20953:2 20984:1 21003:1 21010:1 21038:1 21085:1 21106:1 21130:1 21148:1 21151:3 21153:1 21216:1 21217:2 21272:1 21319:5 21324:2 21341:1 21344:1 21346:1 21463:7 21495:1 21497:1 21504:1 21553:1 21555:1 21563:1 21570:1 21571:1 21578:1 21581:1 21619:1 21640:2 21647:1 21655:4 21680:2 21700:1 21747:1 21774:1 21786:1 21798:1 21836:3 21838:4 21847:1 21860:1 21889:4 21907:3 21925:1 21960:1 22002:1 22017:1 22043:1 22052:2 22076:1 22105:1 22118:1 22119:1 22125:2 22128:1 22139:2 22160:1 22215:1 22249:2 22253:2 22264:1 22270:1 22274:1 22284:1 22336:1 22355:2 22393:1 22403:1 22406:1 22407:2 22408:1 22409:1 22410:3 22420:1 22442:1 22454:1 22495:1 22503:2 22514:1 22527:1 22558:1 22581:1 22597:2 22620:1 22680:1 22691:1 22696:17 22730:2 22756:1 22765:1 22774:1 22829:3 22848:4 22875:1 22921:1 22941:1 22946:18 22984:1 22989:1 23000:1 23011:1 23015:1 23018:1 23024:1 23036:1 23041:1 23112:1 23134:3 23137:2 23145:3 23166:1 23254:1 23256:1 23272:2 23366:1 23426:2 23455:1 23456:1 23466:3 23489:1 23622:1 23643:1 23657:1 23697:1 23712:1 23768:1 23832:3 23878:2 23911:2 23941:1 24009:2 24018:1 24021:1 24033:1 24067:2 24068:1 24069:1 24105:2 24108:1 24119:1 24130:3 24157:1 24184:4 24185:1 24186:1 24187:1 24191:1 24192:1 24195:1 24216:1 24235:1 24242:1 24257:1 24270:1 24290:1 24303:1 24312:1 24334:1 24343:2 24373:18 24381:1 24439:3 24504:1 24514:1 24520:1 24522:1 24526:1 24556:6 24559:2 24573:1 24622:1 24640:2 24682:4 24687:1 24701:2 24702:1 24716:1 24756:1 24776:1 24797:1 24839:2 24843:1 24883:1 24885:1 24928:1 24934:2 24974:1 25055:2 25064:1 25074:1 25099:7 25107:1 25126:1 25129:1 25154:1 25175:1 25239:1 25288:1 25300:1 25320:2 25350:2 25387:1 25397:1 25402:2 25407:1 25408:18 25436:1 25452:18 25464:1 25476:3 25501:1 25536:5 25537:1 25552:2 25556:1 25566:1 25579:1 25592:1 25621:2 25640:1 25662:1 25668:1 25796:1 25803:1 25815:1 25847:1 25853:1 25867:1 25878:3 25916:1 25934:1 25937:1 25967:1 26000:1 26004:1 26027:1 26031:1 26036:1 26038:1 26113:1 26126:18
13 28:1 36:1 44:2 83:1 149:4 162:1 200:1 229:1 251:3 263:2 297:1 302:1 321:1 334:1 345:1 346:2 349:1 357:1 382:1 386:1 387:1 430:1 446:1 525:2 553:1 571:1 605:1 618:4 650:1 668:1 721:1 722:2 725:1 736:1 739:1 744:1 746:1 767:1 768:1 784:1 788:1 791:1 795:2 796:2 820:1 822:1 824:1 837:1 849:1 875:1 878:2 911:2 914:1 932:1 998:1 1011:1 1053:3 1065:1 1089:1 1193:1 1229:2 1267:1 1351:1 1373:1 1395:4 1399:6 1408:1 1412:1 1452:1 1465:1 1471:1 1472:1 1473:1 1498:8 1500:1 1611:4 1652:1 1670:1 1697:1 1713:1 1743:1 1803:1 1805:1 1812:1 1917:1 1919:2 1943:1 1951:1 1981:1 1991:1 1993:1 2003:1 2022:1 2026:1 2028:1 2030:1 2034:2 2036:1 2045:2 2055:1 2061:1 2069:1 2073:1 2082:1 2129:1 2130:1 2151:1 2155:1 2169:1 2171:1 2188:1 2192:2 2206:1 2210:1 2223:1 2243:1 2259:2 2284:1 2287:3 2294:1 2302:3 2310:1 2322:1 2343:1 2373:1 2412:1 2414:1 2423:1 2428:1 2448:3 2466:2 2475:5 2483:1 2494:1 2515:1 2527:1 2528:1 2531:4 2534:1 2537:1 2554:1 2562:1 2568:2 2594:1 2641:3 2642:1 2686:3 2725:2 2759:1 2782:1 2792:1 2795:1 2817:1 2822:1 2829:2 2873:1 2892:1 2925:1 2976:1 2985:1 3005:1 3009:1 3052:1 3070:1 3073:1 3087:1 3109:1 3131:3 3172:1 3199:1 3206:3 3227:2 3246:2 3265:1 3293:1 3313:2 3320:1 3337:1 3346:3 3351:3 3355:1 3363:1 3385:2 3386:4 3424:1 3452:1 3454:2 3460:1 3512:1 3517:1 3526:1 3536:1 3538:2 3558:2 3572:1 3584:1 3604:1 3614:1 3635:1 3667:1 3674:2 3679:1 3709:1 3710:1 3752:1 3801:1 3827:1 3839:3 3864:1 3880:1 3891:1 3914:1 3949:2 3972:3 3980:1 4025:2 4039:1 4048:4 4052:1 4055:3 4068:2 4087:1 4089:2 4119:1 4125:1 4141:1 4147:2 4165:1 4167:1 4234:1 4251:2 4276:3 4318:3 4323:1 4344:1 4349:1 4376:2 4391:1 4392:2 4399:1 4402:1 4407:1 4408:1 4409:2 4411:1 4414:1 4461:2 4488:1 4509:1 4546:1 4580:1 4600:2 4604:2 4619:1 4650:1 4652:1 4655:2 4712:18 4729:1 4740:1 4743:1 4749:1 4766:1 4833:1 4841:1 4870:1 4872:1 4885:1 4895:1 4920:1 4996:2 5016:3 5023:1 5040:1 5065:1 5073:1 5076:1 5095:1 5109:1 5124:1 5170:2 5172:2 5306:1 5326:1 5356:1 5382:1 5406:1 5409:1 5410:2 5459:2 5487:1 5489:1 5514:4 5556:1 5572:1 5609:1 5610:1 5638:1 5704:1 5721:1 5735:1 5753:1 5865:1 5947:1 5964:1 5965:2 5970:3 5971:2 5978:1 6006:18 6097:2 6138:1 6147:1 6162:1 6197:1 6227:1 6290:1 6291:2 6305:1 6311:1 6346:1 6400:1 6413:1 6432:1 6476:1 6482:3 6531:1 6560:1 6563:1 6658:1 6666:1 6734:1 6743:1 6761:7 6776:2 6786:18 6807:10 6825:4 6877:9 6963:1 6966:1 6983:1 6988:1 6991:1 6999:1 7039:1 7061:1 7091:1 7095:1 7096:16 7161:1 7167:2 7182:2 7198:2 7208:1 7334:1 7346:1 7378:1 7380:1 7422:2 7435:1 7474:1 7492:1 7509:1 7566:1 7567:1 7578:1 7583:1 7588:2 7592:1 7599:1 7637:1 7649:1 7671:1 7677:1 7678:3 7714:1 7729:1 7769:1 7847:1 7856:1 7867:1 7876:1 7878:1 7879:1 7880:3 7881:1 7884:1 7886:1 7915:1 7916:1 7925:2 7989:2 7990:1 8053:1 8058:3 8070:1 8099:1 8106:1 8114:1 8179:1 8187:1 8190:1 8215:2 8236:1 8245:3 8271:1 8277:1 8334:1 8338:1 8383:1 8395:2 8424:1 8486:3 8500:1 8507:6 8508:1 8520:2 8521:3 8591:3 8605:1 8607:1 8608:2 8633:1 8638:1 8645:1 8660:1 8688:1 8725:3 8740:1 8743:1 8783:1 8804:2 8808:2 8818:2 8848:1 8898:1 8907:1 8916:1 8940:1 8959:1 9017:1 9049:1 9080:1 9103:1 9113:2 9136:1 9149:1 9174:1 9177:1 9206:1 9225:1 9231:1 9235:1 9241:1 9247:1 9251:5 9255:1 9297:2 9306:1 9307:1 9339:1 9371:1 9374:1 9387:1 9388:1 9394:1 9395:1 9400:7 9401:1 9456:1 9465:1 9471:1 9491:2 9494:1 9503:1 9517:1 9523:1 9546:2 9572:1 9586:2 9595:1 9598:1 9628:1 9646:18 9690:2 9721:2 9745:1 9843:1 9853:1 9855:1 9858:1 9918:1 9932:1 9981:1 9993:4 10042:2 10044:2 10052:1 10112:3 10124:2 10179:1 10228:1 10229:1 10231:1 10232:1 10244:2 10259:2 10274:2 10280:1 10287:2 10300:1 10304:2 10314:1 10369:1 10502:1 10503:3 10553:2 10598:1 10599:5 10610:3 10615:1 10637:1 10640:5 10650:2 10654:1 10656:1 10664:1 10677:1 10698:1 10716:1 10721:2 10750:1 10793:1 10796:1 10818:1 10944:1 10947:1 10971:1 10978:18 10986:1 11038:1 11055:1 11061:1 11094:1 11132:1 11147:1 11149:1 11151:2 11158:2 11178:1 11196:17 11256:1 11267:1 11368:1 11481:2 11484:1 11496:1 11535:1 11552:2 11558:2 11562:1 11600:3 11617:1 11635:1 11658:1 11662:1 11675:1 11678:1 11687:1 11695:1 11776:1 11778:1 11786:1 11829:2 11838:1 11855:18 11901:3 11982:2 11986:2 12035:1 12040:3 12086:1 12096:1 12126:1 12130:1 12168:1 12169:2 12227:1 12235:2 12247:2 12263:7 12265:1 12278:1 12342:18 12343:1 12402:5 12452:1 12453:2 12462:1 12466:1 12508:1 12580:1 12585:1 12587:1 12602:1 12638:2 12659:1 12678:1 12697:1 12710:1 12725:1 12742:1 12752:2 12754:1 12761:1 12776:18 12779:1 12829:3 12871:2 12882:1 12917:1 12920:2 12939:1 12940:1 12942:1 12969:1 13018:1 13039:1 13061:5 13073:1 13087:8 13100:1 13115:3 13178:1 13200:1 13223:1 13227:1 13244:1 13266:1 13349:2 13361:2 13379:2 13385:2 13408:1 13472:1 13477:1 13485:1 13487:1 13571:2 13574:1 13582:1 13598:1 13602:1 13646:2 13661:1 13666:1 13798:1 13801:1 13805:2 13819:1 13823:1 13826:1 13847:3 13852:1 13856:1 13862:1 13870:1 13877:1 13887:1 13916:1 13952:1 13962:4 13981:1 13999:1 14012:2 14016:3 14022:2 14044:1 14047:2 14052:1 14080:1 14084:1 14088:1 14098:4 14147:4 14158:3 14170:1 14193:3 14199:1 14200:1 14210:1 14223:1 14231:3 14257:2 14327:1 14408:2 14415:1 14416:1 14418:1 14419:1 14421:1 14453:1 14489:1 14548:1 14549:1 14567:1 14596:1 14612:1 14622:1 14656:1 14704:2 14705:2 14708:1 14725:5 14774:1 14800:1 14805:1 14833:2 14838:1 14846:1 14876:1 14923:2 14930:2 14932:1 14948:1 14953:2 14977:1 14978:2 14982:1 14999:1 15001:1 15035:2 15041:1 15042:3 15066:1 15121:1 15123:1 15133:1 15171:1 15182:1 15198:1 15239:1 15248:2 15249:1 15253:4 15261:5 15269:1 15306:2 15315:1 15324:1 15344:1 15380:1 15384:1 15415:1 15453:1 15472:1 15484:1 15487:2 15514:1 15521:1 15580:1 15588:1 15593:1 15608:1 15612:1 15614:1 15616:1 15645:1 15670:2 15693:1 15718:1 15726:1 15732:1 15738:1 15745:1 15758:2 15764:2 15765:1 15788:2 15792:1 15813:1 15841:1 15847:1 15870:1 15889:1 15901:1 15911:1 15916:1 15966:3 15968:1 16067:2 16082:1 16084:1 16130:18 16156:1 16170:1 16180:1 16194:3 16205:1 16208:1 16301:1 16306:1 16313:1 16326:4 16333:2 16359:1 16373:2 16393:1462 16413:1 16476:1 16479:1 16493:1 16505:1 16610:3 16653:1 16675:3 16704:2 16706:1 16742:1 16750:1 16763:1 16765:1 16771:1 16829:1 16834:1 16839:1 16853:1 16908:1 16910:2 16939:1 16951:1 16952:4 16973:1 17012:1 17018:2 17024:1 17038:2 17042:1 17073:1 17076:5 17079:1 17080:1 17087:1 17100:1 17103:6 17111:1 17114:1 17116:1 17118:1 17164:1 17175:1 17199:1 17218:3 17256:1 17296:1 17298:1 17344:1 17349:2 17387:1 17394:1 17429:2 17439:10 17460:1 17466:1 17526:1 17572:1 17623:1 17646:1 17723:1 17738:1 17742:1 17748:3 17758:1 17760:1 17763:1 17836:1 17848:1 17863:2 17934:1 17940:1 17948:1 17957:1 17959:1 17961:1 18010:4 18012:1 18016:1 18017:1 18035:1 18067:1 18114:1 18168:1 18177:1 18251:2 18292:2 18397:1 18399:1 18406:1 18414:1 18436:1 18451:2 18454:1 18457:1 18530:1 18533:1 18535:1 18545:1 18548:1 18599:1 18620:3 18631:1 18634:1 18647:1 18655:1 18671:1 18683:1 18696:1 18747:1 18756:1 18817:2 18831:1 18832:1 18865:10 18909:1 18933:1 18942:1 18963:1 18972:1 19012:3 19016:1 19021:1 19042:1 19045:6 19079:2 19138:1 19144:1 19151:1 19183:1 19190:10 19192:1 19198:1 19252:1 19255:1 19263:1 19264:2 19276:1 19278:1 19281:1 19289:2 19290:1 19325:2 19329:1 19333:1 19362:1 19363:1 19366:1 19400:1 19453:1 19489:1 19549:1 19553:3 19561:1 19567:1 19609:1 19612:13 19622:1 19648:1 19650:1 19693:3 19700:3 19714:2 19758:1 19766:3 19777:1 19778:1 19780:1 19819:1 19838:1 19849:1 19854:1 19860:1 19864:3 19877:1 19883:2 19934:1 19953:1 19991:2 19998:1 20045:1 20049:26 20093:4 20107:1 20126:2 20166:1 20177:1 20183:1 20210:1 20226:2 20235:1 20236:1 20246:2 20256:2 20279:1 20287:1 20289:1 20321:1 20322:1 20331:1 20353:1 20360:1 20399:1 20437:1 20454:1 20466:1 20530:1 20603:1 20604:1 20641:1 20655:1 20683:1 20688:1 20702:1 20748:3 20749:1 20765:1 20767:1 20775:1 20783:1 20810:1 20827:1 20889:1 20899:2 20900:1 20909:1 20953:2 20984:1 21003:1 21010:1 21038:1 21085:1 21106:1 21130:1 21148:1 21151:3 21153:1 21216:1 21217:2 21272:1 21316:1 21319:6 21324:2 21341:1 21344:1 21346:1 21463:7 21495:1 21497:1 21504:1 21553:1 21555:1 21563:1 21570:1 21571:1 21578:1 21581:1 21619:1 21640:2 21647:2 21655:4 21680:2 21700:1 21723:1 21747:1 21765:1 21774:1 21786:1 21798:1 21836:3 21838:4 21847:1 21860:1 21864:1 21889:4 21907:3 21925:1 21960:1 22002:1 22017:1 22043:1 22052:2 22076:1 22105:1 22118:1 22119:1 22125:2 22128:1 22139:2 22160:1 22215:1 22249:2 22253:2 22264:1 22270:1 22274:1 22284:1 22336:1 22355:2 22393:1 22403:1 22406:1 22407:2 22408:1 22409:1 22410:3 22420:1 22442:1 22454:1 22495:1 22503:2 22514:1 22527:1 22558:1 22581:1 22597:2 22620:1 22680:1 22691:1 22696:17 22730:2 22756:1 22765:1 22774:1 22829:3 22848:5 22875:1 22921:1 22941:1 22946:18 22984:1 22989:1 23000:1 23011:1 23015:1 23018:1 23024:1 23036:1 23041:1 23112:1 23129:1 23134:3 23137:2 23145:3 23166:1 23254:1 23256:1 23272:3 23366:1 23426:2 23455:1 23456:1 23466:3 23489:1 23622:1 23643:1 23657:1 23697:1 23712:1 23768:1 23832:3 23878:2 23911:2 23941:1 24009:2 24018:1 24021:1 24033:1 24067:2 24068:1 24069:1 24105:2 24108:1 24119:1 24130:3 24157:1 24183:1 24184:4 24185:1 24186:1 24187:1 24191:1 24192:1 24195:1 24216:1 24235:1 24242:1 24257:1 24270:1 24290:1 24303:1 24312:1 24334:1 24343:2 24373:18 24381:1 24439:3 24498:1 24504:1 24514:1 24520:1 24522:1 24526:1 24556:7 24559:2 24573:1 24622:1 24640:2 24682:4 24687:1 24701:2 24702:1 24716:1 24756:1 24776:1 24797:1 24839:2 24843:1 24883:1 24885:1 24928:1 24934:2 24958:1 24974:1 25055:2 25064:1 25074:1 25099:7 25107:1 25126:1 25129:1 25154:1 25175:1 25239:1 25288:1 25300:1 25320:2 25350:2 25387:1 25397:1 25402:2 25407:1 25408:18 25436:1 25452:18 25464:1 25476:3 25501:1 25536:5 25537:1 25552:2 25556:1 25566:1 25579:1 25592:1 25621:2 25640:1 25662:1 25668:1 25796:1 25803:1 25815:1 25847:1 25853:1 25867:1 25878:3 25916:1 25934:1 25937:1 25967:1 26000:1 26004:1 26027:1 26031:1 26036:1 26038:1 26113:1 26126:18
13 28:1 36:1 44:2 83:1 96:1 149:4 162:1 200:1 229:1 251:3 263:2 297:1 302:1 321:1 334:1 345:1 346:2 349:1 357:1 382:1 386:1 387:1 430:1 446:1 516:1 525:2 553:1 571:1 605:1 618:4 650:1 668:1 721:1 722:2 725:1 736:1 739:1 744:1 746:1 767:1 768:1 784:1 788:1 791:1 795:2 796:2 820:2 822:1 824:1 837:1 849:1 875:1 878:2 911:2 914:1 932:1 998:1 1011:1 1053:3 1065:1 1089:1 1193:1 1229:2 1267:1 1351:1 1373:1 1395:4 1399:6 1408:1 1412:1 1452:1 1465:1 1471:1 1472:1 1473:1 1498:8 1500:1 1611:4 1652:1 1670:1 1697:1 1713:1 1743:1 1803:1 1805:1 1812:1 1817:1 1917:1 1919:2 1943:1 1951:1 1981:1 1991:1 1993:1 2003:1 2022:1 2026:1 2028:1 2030:2 2034:2 2036:1 2045:2 2055:1 2061:1 2069:1 2073:1 2082:1 2129:1 2130:1 2134:1 2151:1 2155:1 2169:1 2171:1 2188:1 2192:2 2206:1 2210:1 2223:1 2243:1 2259:2 2284:1 2287:3 2294:1 2302:3 2310:1 2322:1 2343:1 2373:1 2412:1 2414:1 2423:1 2428:1 2448:3 2466:2 2475:5 2483:1 2494:1 2515:1 2527:1 2528:1 2531:4 2534:1 2537:1 2554:1 2562:1 2568:2 2594:1 2641:3 2642:1 2686:3 2725:2 2759:1 2782:1 2792:1 2795:1 2817:1 2822:1 2829:2 2873:1 2892:1 2925:1 2976:1 2985:1 3005:1 3009:1 3052:1 3070:1 3073:1 3087:1 3109:1 3131:3 3172:1 3199:1 3206:3 3227:2 3246:2 3265:1 3293:1 3313:2 3320:1 3337:1 3346:3 3351:3 3355:1 3363:1 3385:2 3386:4 3424:1 3452:1 3454:2 3460:1 3512:1 3517:1 3526:1 3536:1 3538:2 3558:2 3572:1 3584:1 3604:1 3614:1 3635:1 3667:1 3674:2 3679:1 3709:1 3710:1 3752:1 3801:1 3827:1 3839:3 3864:1 3880:1 3891:1 3914:1 3949:2 3972:3 3980:1 4025:2 4039:1 4048:4 4052:1 4055:3 4068:2 4087:1 4089:2 4119:1 4125:1 4141:1 4147:2 4165:1 4167:1 4234:1 4244:1 4251:2 4276:3 4318:3 4323:1 4344:1 4349:1 4376:2 4391:2 4392:2 4399:1 4402:1 4407:1 4408:1 4409:2 4411:1 4414:1 4461:2 4488:1 4509:1 4546:1 4580:1 4600:2 4604:3 4619:1 4650:1 4652:1 4655:2 4712:18 4729:1 4740:1 4743:1 4749:1 4766:1 4833:1 4841:1 4870:1 4872:1 4874:1 4885:1 4895:1 4920:1 4996:2 5016:3 5023:1 5040:1 5065:1 5073:1 5076:1 5095:1 5109:1 5124:1 5170:2 5172:2 5306:1 5326:1 5356:1 5382:1 5406:1 5409:1 5410:2 5459:2 5487:1 5489:1 5514:4 5556:1 5572:1 5609:1 5610:1 5638:1 5704:1 5721:1 5735:1 5753:1 5865:1 5947:1 5964:1 5965:2 5970:3 5971:2 5978:2 6006:18 6097:2 6138:1 6147:1 6162:1 6197:1 6227:1 6290:1 6291:2 6305:1 6311:1 6340:1 6346:1 6400:1 6413:1 6432:1 6476:1 6482:3 6531:1 6560:1 6563:1 6658:1 6666:1 6734:1 6743:1 6761:8 6776:2 6786:18 6807:11 6825:4 6877:9 6963:1 6966:1 6983:1 6988:1 6991:1 6999:1 7039:1 7061:1 7091:1 7095:1 7096:16 7161:1 7167:2 7182:2 7198:2 7208:1 7334:1 7346:1 7378:1 7380:1 7422:2 7435:1 7474:1 7492:1 7509:1 7566:1 7567:1 7578:1 7583:1 7588:2 7592:1 7599:1 7637:1 7649:1 7671:1 7677:1 7678:3 7714:1 7729:1 7769:1 7847:1 7856:1 7867:1 7876:1 7878:1 7879:1 7880:3 7881:1 7884:1 7886:1 7915:1 7916:1 7925:2 7989:2 7990:1 8053:1 8058:3 8070:1 8099:1 8106:1 8114:1 8179:1 8187:1 8190:1 8215:2 8236:1 8245:3 8271:1 8277:1 8334:1 8338:1 8383:1 8395:2 8424:1 8486:3 8500:1 8507:6 8508:1 8520:2 8521:3 8591:3 8605:1 8607:1 8608:2 8633:1 8638:1 8645:1 8660:1 8688:1 8725:3 8735:1 8740:1 8743:1 8783:1 8804:2 8808:2 8818:3 8848:1 8898:1 8907:1 8915:1 8916:1 8940:1 8959:1 9017:1 9049:1 9080:1 9103:1 9113:2 9136:1 9149:1 9174:1 9177:1 9206:1 9225:1 9231:1 9235:1 9241:1 9247:1 9251:5 9255:1 9297:2 9306:1 9307:1 9339:1 9371:1 9374:1 9387:1 9388:1 9394:1 9395:1 9400:7 9401:1 9456:1 9465:1 9471:1 9491:2 9494:1 9503:1 9517:1 9523:1 9546:2 9572:1 9586:2 9595:1 9598:1 9628:1 9646:18 9690:2 9721:2 9739:1 9745:1 9843:1 9853:1 9855:1 9858:1 9918:1 9932:1 9981:1 9993:4 10042:2 10044:2 10052:1 10112:3 10124:2 10179:1 10228:1 10229:1 10231:1 10232:1 10238:1 10244:2 10259:2 10274:2 10280:1 10287:2 10300:1 10304:2 10314:1 10352:1 10369:1 10502:1 10503:3 10553:2 10598:1 10599:5 10610:3 10615:1 10637:1 10640:5 10650:2 10654:1 10656:1 10664:1 10677:1 10698:1 10716:1 10721:2 10750:1 10793:1 10796:1 10818:1 10944:1 10947:1 10971:1 10978:18 10986:1 11038:1 11055:1 11061:1 11094:1 11132:1 11147:1 11149:1 11151:2 11158:2 11178:1 11196:17 11256:1 11267:1 11368:1 11481:2 11484:1 11496:1 11535:1 11552:2 11558:2 11562:1 11600:3 11617:1 11635:1 11658:1 11662:1 11675:1 11678:1 11687:1 11695:1 11776:1 11778:1 11786:1 11829:2 11838:1 11855:18 11901:3 11982:2 11986:2 12035:1 12040:3 12086:1 12096:1 12126:1 12130:1 12168:1 12169:2 12227:1 12235:2 12247:2 12263:7 12265:1 12278:1 12342:18 12343:1 12402:5 12452:1 12453:2 12462:1 12466:1 12508:1 12580:1 12585:1 12587:1 12602:1 12638:2 12659:1 12678:1 12697:1 12710:1 12725:1 12742:1 12752:2 12754:1 12761:1 12776:18 12779:1 12790:1 12829:3 12871:2 12882:1 12917:1 12920:2 12939:1 12940:1 12942:1 12969:1 13018:1 13039:1 13061:5 13073:1 13087:9 13100:1 13115:3 13178:1 13200:1 13223:1 13227:1 13244:1 13266:1 13349:2 13361:2 13379:2 13385:2 13408:1 13472:1 13477:1 13485:1 13487:1 13571:2 13574:1 13582:1 13598:1 13602:1 13646:2 13661:1 13666:1 13785:1 13791:1 13798:1 13801:1 13805:2 13819:1 13823:1 13826:1 13847:3 13852:1 13856:1 13862:1 13870:1 13877:1 13887:1 13916:1 13952:1 13962:4 13981:1 13999:1 14012:2 14016:3 14022:2 14044:1 14047:2 14052:1 14080:1 14084:1 14088:1 14098:4 14147:4 14158:3 14170:1 14193:3 14199:1 14200:1 14210:1 14223:1 14231:3 14257:2 14327:1 14408:2 14415:1 14416:1 14418:1 14419:1 14421:1 14453:1 14489:1 14519:1 14548:2 14549:1 14567:1 14596:1 14612:1 14622:1 14656:1 14704:2 14705:2 14708:1 14725:5 14774:1 14800:1 14805:1 14833:3 14838:1 14846:1 14876:1 14923:2 14930:2 14932:1 14948:1 14953:2 14977:1 14978:2 14982:1 14999:1 15001:1 15035:2 15041:1 15042:3 15066:1 15121:1 15123:1 15133:1 15171:1 15182:1 15198:1 15239:1 15248:2 15249:1 15253:4 15261:5 15269:1 15306:2 15315:1 15324:1 15344:1 15380:1 15384:1 15415:1 15453:1 15472:1 15484:1 15487:2 15514:1 15521:1 15580:1 15588:1 15593:1 15608:1 15612:1 15614:1 15616:1 15645:1 15670:2 15693:1 15718:1 15726:1 15732:1 15738:1 15745:1 15758:2 15764:2 15765:1 15788:2 15792:1 15812:1 15813:1 15841:1 15847:2 15870:1 15889:1 15901:1 15911:1 15916:1 15966:3 15968:1 16067:2 16082:1 16084:1 16130:18 16156:1 16170:1 16180:2 16194:3 16205:1 16208:1 16217:1 16301:1 16306:1 16313:1 16326:4 16333:2 16359:1 16373:2 16393:1490 16413:1 16476:1 16479:1 16493:1 16505:1 16610:3 16653:1 16675:3 16704:2 16706:1 16742:1 16750:1 16763:1 16765:1 16771:1 16829:1 16834:1 16839:1 16853:1 16908:1 16910:2 16939:1 16951:1 16952:4 16973:1 17012:1 17018:2 17024:1 17038:2 17042:1 17073:1 17076:5 17079:1 17080:1 17087:1 17100:1 17103:6 17111:2 17114:1 17116:1 17118:1 17164:1 17175:1 17199:1 17218:3 17256:1 17296:1 17298:1 17344:1 17349:2 17387:1 17394:1 17429:2 17439:10 17460:1 17466:1 17526:1 17572:1 17623:1 17646:1 17723:1 17738:1 17742:1 17748:3 17758:1 17760:1 17763:1 17836:1 17848:1 17863:2 17934:1 17940:1 17948:1 17957:1 17959:1 17961:1 18010:4 18012:1 18016:1 18017:1 18035:1 18067:1 18114:1 18168:1 18177:1 18251:2 18292:2 18397:1 18399:1 18406:1 18414:1 18436:1 18451:2 18454:1 18457:1 18530:1 18533:1 18535:1 18545:1 18548:1 18599:1 18620:3 18631:1 18634:1 18647:1 18655:1 18671:1 18681:1 18683:1 18696:1 18747:1 18756:1 18817:2 18831:1 18832:1 18865:10 18909:1 18933:1 18942:1 18963:1 18972:1 19012:3 19016:1 19021:1 19023:1 19042:1 19045:6 19079:2 19138:1 19144:1 19151:1 19183:1 19190:10 19192:1 19198:1 19252:1 19255:1 19263:1 19264:2 19276:1 19278:1 19281:1 19289:2 19290:1 19296:1 19325:2 19329:1 19333:1 19362:1 19363:1 19366:1 19400:1 19453:1 19489:1 19549:1 19553:3 19561:1 19567:1 19609:1 19612:13 19622:1 19648:1 19650:1 19693:3 19700:3 19714:2 19758:1 19766:3 19777:1 19778:1 19780:1 19813:1 19819:1 19838:1 19849:1 19854:1 19860:1 19864:3 19877:1 19883:2 19934:1 19953:1 19991:2 19998:1 20045:1 20049:27 20093:4 20107:1 20126:2 20166:1 20177:1 20183:1 20210:1 20226:2 20235:1 20236:1 20246:2 20256:2 20279:1 20287:1 20289:1 20321:1 20322:1 20331:1 20353:1 20360:1 20399:1 20437:1 20454:1 20466:1 20530:1 20603:1 20604:1 20641:1 20655:1 20683:1 20688:1 20702:1 20748:3 20749:1 20765:1 20767:1 20775:1 20783:1 20810:1 20827:1 20889:1 20899:2 20900:1 20909:1 20953:2 20984:1 21003:1 21010:1 21038:1 21085:1 21106:1 21130:1 21148:1 21151:3 21153:2 21154:1 21216:1 21217:2 21272:1 21316:1 21319:6 21324:2 21341:1 21344:1 21346:1 21463:7 21495:1 21497:1 21504:1 21553:1 21555:1 21563:1 21570:1 21571:1 21578:1 21581:1 21619:1 21640:2 21647:2 21655:4 21680:2 21700:1 21723:1 21747:1 21765:1 21774:1 21786:1 21798:1 21836:3 21838:4 21847:1 21860:1 21864:1 21889:4 21907:3 21925:1 21960:1 22002:1 22017:1 22043:1 22052:2 22076:1 22105:1 22118:1 22119:1 22125:2 22128:1 22139:2 22160:1 22215:1 22249:2 22253:2 22264:1 22270:1 22274:1 22284:1 22336:1 22355:2 22393:1 22403:1 22406:2 22407:2 22408:1 22409:1 22410:3 22420:1 22442:1 22454:1 22481:1 22495:1 22503:2 22514:1 22527:1 22558:1 22581:1 22597:2 22620:1 22680:1 22691:1 22696:17 22730:2 22756:1 22765:1 22774:1 22829:3 22848:5 22875:1 22921:1 22941:1 22946:18 22984:1 22989:1 23000:1 23011:1 23015:1 23018:1 23024:1 23036:1 23041:1 23112:1 23129:1 23134:3 23137:2 23145:4 23166:1 23254:1 23256:1 23272:3 23366:1 23426:2 23455:1 23456:1 23466:3 23489:1 23622:1 23643:1 23657:1 23697:1 23712:1 23768:1 23832:3 23878:2 23911:2 23941:1 24009:2 24018:1 24021:1 24033:1 24067:2 24068:1 24069:1 24105:2 24108:1 24119:1 24130:3 24157:1 24183:1 24184:4 24185:1 24186:1 24187:1 24191:1 24192:1 24195:1 24216:1 24235:1 24242:1 24257:1 24270:1 24290:1 24303:1 24312:1 24334:1 24343:2 24360:1 24373:18 24381:1 24439:3 24498:1 24504:1 24514:1 24520:1 24522:1 24526:1 24556:7 24559:2 24573:1 24622:1 24640:2 24682:4 24687:1 24701:2 24702:1 24716:1 24756:1 24776:1 24797:1 24839:2 24843:1 24883:1 24885:1 24928:1 24934:2 24958:1 24974:1 25055:2 25064:1 25074:1 25087:1 25099:8 25107:1 25126:1 25129:1 25154:1 25175:1 25239:1 25288:1 25300:1 25320:2 25350:2 25387:1 25397:1 25402:3 25407:1 25408:18 25436:1 25452:18 25464:1 25476:3 25501:1 25536:5 25537:1 25552:2 25556:1 25566:1 25579:1 25589:1 25592:1 25621:2 25640:1 25662:1 25668:1 25796:1 25803:1 25815:1 25847:1 25853:1 25867:1 25878:3 25916:1 25934:1 25937:1 25967:1 26000:1 26004:1 26027:1 26031:1 26036:1 26038:1 26113:1 26126:18
13 28:1 36:1 44:2 83:1 96:1 149:4 162:1 200:1 229:1 251:3 263:2 297:1 302:1 321:1 334:1 345:1 346:2 349:1 357:1 382:1 386:1 387:1 402:1 430:1 446:1 516:1 525:2 553:1 571:1 605:1 618:4 650:1 668:1 721:1 722:2 725:1 736:1 739:1 744:1 746:1 767:1 768:1 784:1 788:1 791:1 795:2 796:2 820:2 822:1 824:1 837:1 849:2 875:1 878:2 911:2 914:1 931:1 932:1 998:1 1011:1 1053:3 1065:1 1089:1 1193:1 1229:2 1267:1 1288:1 1351:1 1373:1 1395:4 1399:6 1408:1 1412:1 1452:1 1465:1 1471:1 1472:1 1473:1 1496:1 1498:8 1500:1 1611:4 1652:1 1670:1 1697:1 1713:1 1743:1 1803:1 1805:1 1812:1 1817:1 1917:1 1919:2 1943:1 1951:1 1981:1 1991:1 1993:1 2003:1 2022:1 2026:1 2028:1 2030:2 2034:2 2036:1 2045:2 2055:1 2061:1 2069:1 2073:1 2082:1 2129:1 2130:1 2134:1 2151:1 2155:1 2169:1 2171:1 2188:1 2192:2 2206:1 2210:1 2223:1 2243:1 2252:1 2259:3 2284:1 2287:3 2292:1 2294:1 2302:3 2310:1 2322:1 2343:1 2373:1 2412:1 2414:1 2423:1 2428:1 2448:3 2466:2 2475:5 2483:1 2494:1 2515:1 2527:1 2528:1 2531:4 2534:1 2537:1 2539:1 2554:1 2562:1 2568:2 2594:1 2641:3 2642:1 2686:3 2725:2 2759:1 2782:1 2792:1 2795:1 2817:1 2822:1 2829:2 2873:1 2892:1 2922:1 2925:1 2976:1 2977:1 2985:1 3005:1 3009:1 3052:1 3064:1 3070:1 3073:1 3087:1 3109:1 3131:3 3172:1 3199:1 3206:3 3227:2 3246:2 3265:1 3293:1 3313:2 3320:1 3337:1 3346:3 3351:3 3355:1 3363:1 3385:2 3386:4 3393:1 3424:1 3452:1 3454:2 3460:1 3512:1 3517:1 3526:1 3536:1 3538:2 3558:2 3572:1 3584:1 3604:1 3614:1 3635:1 3667:1 3674:2 3679:1 3709:1 3710:1 3752:1 3801:1 3827:1 3839:3 3861:1 3864:1 3880:1 3891:1 3914:1 3949:2 3972:3 3980:1 3986:1 4025:2 4039:1 4048:4 4052:1 4055:3 4068:2 4087:1 4089:2 4119:1 4125:1 4141:1 4147:2 4165:1 4167:1 4234:1 4244:1 4251:2 4276:4 4318:3 4323:1 4344:1 4349:1 4376:2 4378:1 4391:2 4392:2 4399:1 4402:1 4407:1 4408:1 4409:2 4411:1 4414:1 4461:2 4488:1 4509:1 4546:1 4580:1 4600:2 4604:3 4619:1 4650:1 4652:1 4655:2 4712:18 4729:1 4740:1 4743:1 4749:1 4766:1 4833:1 4841:1 4870:1 4872:1 4874:1 4885:1 4895:1 4920:1 4996:2 5016:3 5023:1 5040:1 5065:1 5073:1 5076:1 5095:1 5109:1 5124:1 5170:2 5172:2 5306:1 5322:1 5326:1 5356:1 5382:1 5406:1 5409:1 5410:2 5459:2 5487:1 5489:1 5514:4 5556:1 5572:1 5575:1 5601:1 5609:1 5610:1 5638:1 5704:1 5721:1 5735:1 5753:1 5865:1 5947:1 5964:1 5965:2 5970:3 5971:2 5978:2 6006:18 6097:2 6138:1 6147:1 6162:1 6197:1 6203:1 6227:1 6290:1 6291:2 6305:1 6311:1 6340:1 6346:1 6393:1 6400:1 6413:1 6432:1 6476:1 6482:3 6531:1 6560:1 6563:1 6658:1 6666:1 6734:1 6743:1 6761:8 6776:2 6786:18 6807:11 6825:4 6877:9 6882:1 6963:1 6966:1 6983:1 6988:1 6991:1 6999:1 7039:1 7061:1 7091:1 7095:1 7096:16 7161:1 7167:2 7182:2 7198:2 7208:1 7334:1 7346:1 7378:1 7380:1 7422:2 7435:1 7474:1 7492:1 7509:1 7566:1 7567:1 7578:1 7583:1 7588:2 7592:1 7599:1 7637:1 7649:1 7671:1 7677:1 7678:3 7714:1 7729:1 7769:1 7847:1 7856:1 7867:1 7876:1 7878:1 7879:1 7880:3 7881:1 7884:1 7886:1 7915:1 7916:1 7925:2 7937:1 7976:1 7989:2 7990:1 8053:1 8058:3 8070:1 8099:1 8106:1 8114:1 8179:1 8187:1 8190:1 8215:2 8222:1 8236:1 8245:3 8271:1 8277:1 8334:1 8338:1 8383:1 8395:2 8397:1 8424:1 8486:3 8500:1 8507:6 8508:1 8520:2 8521:3 8530:1 8591:3 8605:1 8607:1 8608:2 8633:1 8638:1 8645:1 8660:1 8688:1 8725:4 8735:1 8740:1 8743:1 8783:1 8804:2 8808:2 8818:3 8848:1 8898:1 8907:1 8915:1 8916:1 8940:1 8959:1 9017:1 9049:1 9080:1 9103:1 9113:2 9126:1 9136:1 9149:1 9174:1 9177:1 9206:1 9225:1 9231:1 9235:1 9241:1 9247:1 9251:5 9255:1 9297:2 9306:1 9307:1 9339:1 9371:1 9374:1 9387:1 9388:1 9394:1 9395:1 9400:7 9401:1 9456:1 9465:1 9471:1 9491:2 9494:1 9503:1 9517:1 9523:1 9546:2 9572:1 9586:2 9595:2 9598:1 9602:1 9605:1 9609:1 9628:1 9646:18 9690:2 9721:2 9739:1 9745:1 9843:1 9853:1 9855:1 9858:1 9918:1 9932:1 9933:1 9981:1 9993:5 10042:2 10044:2 10052:1 10112:3 10124:2 10179:1 10222:1 10228:1 10229:1 10231:1 10232:1 10238:1 10244:2 10245:1 10259:2 10274:2 10280:1 10287:2 10300:1 10304:2 10314:1 10352:1 10369:1 10502:1 10503:3 10553:2 10598:1 10599:5 10610:3 10615:1 10637:1 10640:5 10650:2 10654:1 10656:1 10664:1 10677:1 10698:1 10716:1 10721:2 10750:1 10793:1 10796:1 10818:1 10944:1 10947:1 10971:1 10978:18 10986:1 11038:1 11055:1 11061:1 11094:1 11132:1 11147:1 11149:1 11151:2 11158:2 11178:1 11196:17 11256:1 11257:1 11267:1 11368:1 11465:1 11481:2 11484:1 11496:1 11535:1 11552:2 11558:2 11562:1 11600:3 11617:1 11627:1 11635:1 11658:1 11662:1 11675:1 11678:2 11687:1 11695:1 11776:1 11778:1 11786:1 11829:2 11838:1 11855:18 11901:3 11977:1 11982:2 11986:2 12035:1 12040:3 12086:2 12096:1 12126:1 12130:1 12168:1 12169:2 12227:1 12235:2 12247:2 12263:7 12265:1 12278:1 12342:18 12343:1 12402:5 12434:1 12452:1 12453:3 12462:1 12466:1 12508:1 12580:1 12585:1 12587:1 12602:1 12638:2 12659:1 12678:1 12697:1 12710:1 12725:1 12742:1 12752:2 12754:1 12761:1 12776:18 12779:1 12790:1 12829:3 12871:2 12882:1 12917:1 12920:2 12939:1 12940:1 12942:1 12969:1 13018:1 13039:1 13061:5 13073:1 13087:9 13100:1 13115:3 13178:1 13200:1 13223:1 13227:1 13244:1 13266:1 13349:2 13361:2 13379:2 13385:2 13408:1 13472:1 13477:1 13485:1 13487:1 13571:2 13574:1 13582:1 13598:1 13602:1 13646:2 13661:1 13666:1 13785:1 13791:1 13798:1 13801:1 13805:2 13819:1 13823:1 13826:1 13847:3 13852:1 13856:1 13862:1 13870:1 13877:1 13887:1 13916:1 13952:1 13962:4 13981:1 13999:1 14012:2 14016:3 14022:2 14044:1 14047:2 14052:1 14080:1 14084:1 14088:1 14098:4 14147:4 14158:3 14170:1 14193:3 14199:1 14200:1 14210:1 14223:1 14231:3 14257:2 14327:1 14408:2 14415:1 14416:1 14418:1 14419:1 14421:1 14453:1 14489:1 14519:1 14548:2 14549:1 14567:1 14596:1 14612:1 14622:1 14656:1 14704:2 14705:2 14708:1 14725:5 14774:1 14800:1 14805:1 14833:3 14838:1 14846:1 14876:1 14923:2 14930:2 14932:1 14948:1 14953:2 14977:1 14978:2 14982:1 14999:1 15001:1 15035:2 15041:1 15042:3 15066:1 15121:1 15123:1 15133:1 15171:1 15182:1 15198:1 15229:1 15239:1 15248:2 15249:1 15253:4 15261:5 15269:1 15306:2 15315:1 15324:1 15344:1 15380:1 15384:1 15415:1 15453:1 15472:1 15484:1 15487:2 15514:1 15521:1 15580:1 15588:1 15593:1 15608:1 15612:1 15614:1 15616:1 15645:1 15670:2 15693:1 15718:1 15726:1 15732:1 15738:1 15745:1 15758:2 15764:2 15765:1 15788:2 15792:1 15812:1 15813:1 15841:1 15847:2 15870:1 15889:1 15901:1 15911:1 15916:1 15966:3 15968:1 16067:2 16082:1 16084:1 16130:18 16156:1 16170:1 16180:2 16194:3 16205:2 16208:1 16217:1 16301:1 16306:1 16313:1 16326:4 16333:2 16359:1 16373:2 16393:1540 16413:1 16446:1 16476:1 16479:1 16493:1 16505:1 16610:3 16653:1 16675:3 16692:1 16704:2 16706:1 16742:1 16750:1 16763:1 16765:1 16771:1 16829:1 16834:1 16839:1 16853:1 16908:1 16910:2 16939:1 16951:1 16952:4 16973:1 17012:1 17018:2 17024:1 17038:2 17042:1 17073:1 17076:5 17079:1 17080:1 17087:1 17100:1 17103:6 17111:2 17114:1 17116:1 17118:1 17164:1 17175:1 17199:1 17218:3 17256:1 17296:1 17298:1 17344:1 17349:2 17387:1 17394:1 17429:2 17439:10 17460:1 17466:1 17473:1 17482:1 17526:1 17572:1 17597:1 17623:1 17646:1 17723:1 17738:1 17742:1 17748:3 17758:1 17760:1 17763:1 17836:1 17848:1 17863:2 17934:1 17940:1 17948:1 17957:1 17959:1 17961:1 18010:4 18012:1 18016:1 18017:1 18035:1 18067:1 18114:1 18168:1 18177:1 18251:2 18292:2 18387:1 18397:1 18399:1 18406:1 18414:1 18436:1 18451:2 18454:1 18457:1 18530:1 18533:1 18535:2 18545:1 18548:1 18599:1 18620:3 18631:1 18634:1 18647:1 18655:1 18671:1 18681:1 18683:1 18696:1 18747:1 18756:1 18787:1 18817:2 18831:1 18832:1 18865:10 18909:1 18933:1 18942:1 18963:1 18972:1 19012:3 19016:1 19021:1 19023:1 19030:1 19042:1 19045:6 19079:2 19138:1 19144:1 19151:1 19183:1 19190:10 19192:1 19198:1 19252:1 19255:1 19263:1 19264:2 19276:1 19278:1 19281:1 19289:2 19290:1 19296:1 19325:2 19329:1 19333:1 19362:1 19363:1 19366:1 19400:1 19453:1 19489:1 19549:1 19553:3 19561:1 19567:1 19570:1 19609:1 19612:13 19622:1 19648:1 19650:1 19693:3 19700:3 19714:2 19758:1 19766:3 19777:1 19778:1 19780:1 19813:1 19819:1 19838:1 19849:1 19854:1 19860:1 19864:3 19874:1 19877:1 19883:2 19887:1 19904:1 19934:1 19953:1 19991:2 19998:1 20045:1 20049:27 20093:4 20107:1 20126:2 20166:1 20177:1 20183:2 20210:1 20226:2 20235:1 20236:1 20246:2 20256:2 20279:1 20287:1 20289:1 20321:1 20322:1 20331:1 20353:1 20360:1 20399:1 20437:1 20454:1 20466:1 20499:1 20530:1 20603:1 20604:1 20641:1 20655:1 20683:1 20688:1 20702:1 20748:3 20749:1 20765:1 20767:1 20775:1 20783:1 20810:1 20827:1 20889:1 20899:2 20900:1 20909:1 20953:2 20984:1 21003:1 21010:1 21038:1 21085:1 21106:1 21130:1 21148:1 21151:3 21153:2 21154:1 21216:1 21217:2 21272:1 21316:1 21319:6 21324:2 21341:1 21344:1 21346:1 21450:1 21463:7 21495:1 21497:1 21504:1 21553:1 21555:1 21557:1 21563:1 21569:1 21570:1 21571:1 21578:1 21581:1 21619:1 21640:2 21647:2 21655:4 21680:2 21700:1 21723:1 21747:1 21765:1 21774:1 21786:1 21797:1 21798:1 21836:3 21838:4 21847:1 21860:1 21864:1 21871:1 21889:4 21907:3 21925:1 21960:1 22002:1 22017:1 22043:1 22052:2 22076:1 22105:1 22118:1 22119:1 22125:2 22128:1 22139:2 22140:1 22160:1 22215:1 22249:2 22253:2 22264:1 22270:1 22274:1 22284:1 22336:1 22355:2 22393:1 22403:1 22406:2 22407:2 22408:1 22409:1 22410:3 22420:1 22442:1 22454:1 22481:1 22495:1 22503:2 22514:1 22527:1 22558:1 22581:1 22597:2 22620:1 22680:1 22691:1 22696:17 22712:1 22730:2 22756:1 22765:1 22774:1 22829:3 22848:5 22875:1 22921:1 22941:1 22946:18 22984:1 22989:1 23000:1 23011:1 23015:1 23018:1 23024:1 23036:1 23041:1 23112:1 23129:1 23134:3 23137:2 23145:4 23166:1 23171:1 23254:1 23256:1 23272:3 23366:1 23426:2 23455:1 23456:1 23466:3 23489:1 23543:1 23622:1 23643:1 23657:1 23697:1 23712:1 23768:1 23832:3 23878:2 23911:2 23926:1 23941:1 24009:2 24018:1 24021:1 24033:1 24067:2 24068:1 24069:1 24105:2 24108:1 24119:1 24122:1 24130:3 24157:1 24183:1 24184:4 24185:1 24186:1 24187:1 24191:1 24192:1 24195:1 24216:1 24235:1 24242:1 24244:1 24257:1 24270:1 24290:1 24303:1 24312:1 24334:1 24343:2 24360:1 24373:18 24381:1 24439:3 24498:1 24504:1 24514:1 24520:1 24522:1 24526:1 24556:7 24559:2 24573:1 24622:1 24640:2 24682:4 24687:1 24690:1 24701:2 24702:1 24716:1 24756:1 24776:1 24797:1 24839:2 24843:1 24883:1 24885:1 24928:1 24934:2 24958:1 24974:1 25055:2 25064:1 25074:1 25087:1 25099:8 25107:1 25126:1 25129:1 25154:1 25175:1 25239:1 25288:1 25300:1 25320:2 25350:2 25387:1 25397:1 25402:3 25407:1 25408:18 25436:1 25452:18 25464:1 25476:3 25501:1 25536:5 25537:1 25552:2 25556:2 25566:1 25579:1 25589:1 25592:1 25595:1 25621:2 25640:1 25662:1 25668:1 25796:1 25803:1 25811:1 25815:1 25847:1 25853:1 25867:1 25878:3 25916:1 25934:1 25937:1 25967:1 26000:1 26004:1 26027:1 26031:1 26036:1 26038:1 26093:1 26113:1 26126:18
13 28:1 36:1 44:2 48:1 83:1 96:1 149:4 162:1 200:1 229:1 251:3 263:2 297:1 301:1 302:1 321:1 334:1 345:1 346:2 349:1 357:1 382:1 386:1 387:1 402:2 430:1 446:1 457:1 516:1 525:2 553:1 571:1 605:1 618:4 650:1 668:1 721:1 722:2 725:1 736:2 739:1 744:1 746:1 767:1 768:1 784:1 788:1 791:1 795:2 796:2 820:2 822:1 824:1 837:1 849:2 875:1 878:2 893:1 911:2 914:1 931:1 932:1 998:1 1011:1 1053:4 1065:1 1089:1 1193:1 1229:2 1267:1 1288:1 1351:1 1373:1 1395:4 1399:6 1408:1 1412:1 1452:1 1465:1 1471:1 1472:1 1473:1 1496:1 1498:8 1500:1 1587:1 1611:4 1652:1 1670:1 1690:1 1697:1 1704:1 1713:1 1743:1 1803:1 1805:1 1812:1 1817:1 1917:1 1919:2 1943:1 1951:1 1981:1 1991:1 1993:1 2003:1 2022:1 2026:1 2028:1 2030:2 2034:2 2036:2 2037:1 2045:3 2055:1 2061:1 2069:1 2073:1 2082:1 2129:1 2130:1 2134:1 2151:1 2155:1 2169:1 2171:1 2188:1 2192:2 2206:1 2210:1 2223:1 2243:1 2252:1 2259:3 2284:1 2287:3 2292:1 2294:1 2302:3 2310:1 2322:1 2343:1 2373:1 2412:1 2414:1 2416:1 2423:1 2428:1 2448:3 2466:2 2475:5 2483:1 2494:2 2515:1 2527:1 2528:1 2531:4 2534:1 2537:1 2539:2 2554:1 2562:1 2568:2 2594:1 2641:3 2642:1 2686:3 2725:2 2759:1 2782:1 2792:2 2795:1 2817:1 2822:1 2829:2 2873:2 2892:1 2922:1 2925:1 2976:1 2977:1 2985:1 3005:1 3009:1 3052:1 3064:1 3070:1 3073:1 3087:1 3109:1 3131:3 3172:1 3199:1 3206:3 3227:2 3246:2 3265:1 3293:1 3313:2 3320:1 3337:1 3346:3 3351:3 3355:1 3363:1 3372:1 3385:2 3386:5 3393:1 3424:1 3452:1 3454:2 3460:1 3512:1 3517:1 3526:1 3536:1 3538:2 3558:2 3572:1 3584:1 3604:1 3614:1 3635:1 3667:1 3674:2 3679:1 3709:1 3710:1 3752:1 3801:1 3827:1 3839:3 3861:1 3864:1 3880:1 3891:1 3914:1 3949:2 3972:4 3980:1 3986:1 4025:2 4039:1 4048:4 4052:1 4055:3 4068:2 4087:1 4089:2 4119:1 4125:1 4141:1 4147:2 4165:1 4167:1 4234:1 4244:1 4251:2 4276:4 4318:3 4323:1 4344:1 4349:1 4376:2 4378:1 4391:2 4392:2 4399:1 4402:1 4407:1 4408:1 4409:2 4411:1 4414:1 4461:2 4488:1 4509:1 4546:1 4580:1 4600:2 4604:3 4619:1 4650:1 4652:1 4655:2 4712:18 4729:1 4740:1 4743:1 4749:1 4766:1 4833:1 4841:1 4870:1 4872:1 4874:1 4885:1 4895:1 4920:1 4944:1 4996:2 5016:3 5023:1 5040:1 5065:1 5073:1 5076:1 5095:1 5109:1 5124:1 5168:1 5170:2 5172:2 5306:1 5322:2 5326:1 5356:1 5382:1 5406:1 5409:1 5410:2 5459:2 5487:1 5489:1 5514:4 5556:1 5572:1 5575:1 5601:1 5609:1 5610:1 5638:1 5704:1 5721:1 5735:1 5753:1 5865:1 5947:1 5964:1 5965:2 5970:3 5971:2 5978:2 6006:18 6097:2 6138:1 6147:1 6162:1 6197:1 6203:1 6227:1 6290:1 6291:2 6305:1 6311:1 6340:1 6346:1 6393:1 6400:1 6413:1 6432:1 6476:1 6482:3 6531:1 6560:1 6563:1 6658:1 6662:1 6666:1 6734:1 6743:1 6761:8 6776:2 6786:18 6807:14 6825:4 6877:9 6882:1 6963:1 6966:1 6983:1 6988:1 6991:1 6999:1 7039:1 7061:1 7091:1 7095:1 7096:16 7161:1 7167:2 7182:2 7198:2 7208:1 7334:1 7346:1 7378:1 7380:1 7422:2 7435:1 7474:1 7492:1 7509:1 7566:1 7567:1 7578:1 7583:1 7588:2 7592:1 7599:1 7637:1 7649:1 7671:1 7677:1 7678:3 7714:1 7729:1 7769:1 7847:1 7856:1 7867:1 7876:1 7878:1 7879:1 7880:3 7881:1 7884:1 7886:1 7915:1 7916:1 7925:2 7937:1 7976:2 7986:1 7989:2 7990:1 8053:1 8058:3 8070:1 8099:1 8106:1 8114:1 8179:1 8187:1 8190:1 8215:2 8222:1 8236:1 8245:4 8246:1 8271:1 8277:1 8319:1 8334:1 8338:1 8383:1 8395:2 8397:1 8424:1 8486:3 8500:1 8507:6 8508:1 8511:1 8520:2 8521:3 8530:2 8591:3 8605:1 8607:1 8608:2 8633:1 8638:1 8645:1 8660:1 8688:1 8725:5 8735:1 8740:1 8743:1 8783:1 8804:2 8808:2 8818:3 8848:1 8898:1 8907:1 8915:1 8916:1 8940:1 8959:1 8978:1 9017:1 9049:1 9080:1 9103:1 9113:2 9126:1 9136:1 9149:1 9174:1 9177:1 9206:1 9225:1 9231:1 9235:1 9241:1 9247:1 9251:5 9255:1 9297:2 9306:1 9307:1 9339:1 9371:1 9374:1 9387:1 9388:1 9394:1 9395:1 9400:7 9401:1 9456:1 9465:1 9471:1 9491:2 9494:1 9503:1 9517:1 9523:1 9546:2 9572:1 9586:2 9595:3 9598:2 9602:1 9605:1 9609:1 9628:1 9646:18 9690:2 9721:2 9739:1 9745:1 9753:1 9843:1 9853:1 9855:1 9858:2 9918:1 9932:1 9933:1 9981:1 9993:5 10042:2 10044:2 10052:1 10112:3 10124:2 10179:1 10222:1 10228:1 10229:1 10231:1 10232:1 10238:1 10244:2 10245:1 10259:2 10274:2 10280:1 10287:2 10300:1 10304:2 10314:1 10352:1 10369:1 10502:1 10503:3 10553:2 10598:1 10599:5 10610:4 10615:1 10636:1 10637:1 10640:5 10650:2 10654:1 10656:1 10664:1 10677:1 10698:1 10716:1 10721:2 10750:1 10793:1 10796:1 10818:1 10944:1 10947:1 10971:1 10978:18 10986:1 11038:1 11055:1 11061:1 11094:1 11116:1 11132:1 11147:1 11149:1 11151:2 11158:2 11178:1 11196:17 11256:1 11257:1 11267:1 11368:1 11465:1 11481:2 11484:1 11496:1 11535:1 11552:2 11558:2 11562:1 11600:3 11617:1 11627:2 11635:1 11658:1 11662:1 11675:1 11678:2 11687:1 11695:1 11776:1 11778:1 11786:1 11829:2 11838:1 11855:18 11901:3 11977:2 11982:2 11986:2 12035:1 12040:3 12086:3 12096:1 12126:1 12130:1 12168:1 12169:2 12227:1 12235:2 12247:2 12263:7 12265:1 12278:1 12342:18 12343:2 12402:5 12434:1 12452:1 12453:3 12462:1 12466:2 12508:1 12580:1 12585:1 12587:1 12602:1 12638:2 12659:1 12678:1 12697:1 12710:1 12725:1 12742:1 12752:2 12754:1 12761:1 12776:18 12779:1 12790:1 12829:3 12871:2 12882:1 12887:1 12917:1 12920:2 12939:1 12940:1 12942:1 12969:1 13018:1 13039:1 13061:5 13073:1 13087:9 13100:1 13115:3 13178:1 13200:1 13223:1 13227:1 13244:1 13256:1 13266:1 13349:2 13361:2 13379:2 13385:2 13408:1 13472:1 13477:1 13485:1 13487:1 13571:2 13574:1 13582:1 13598:1 13602:1 13646:2 13661:1 13666:1 13785:1 13791:1 13798:1 13801:1 13805:2 13819:1 13823:1 13826:1 13847:3 13852:1 13856:1 13862:1 13870:1 13877:1 13887:1 13916:1 13952:1 13962:4 13981:1 13999:1 14012:2 14016:3 14022:2 14044:1 14047:2 14052:1 14080:1 14084:1 14088:1 14098:4 14147:4 14158:3 14170:1 14193:3 14199:1 14200:1 14210:1 14223:1 14231:3 14257:2 14327:1 14350:1 14408:2 14415:1 14416:1 14418:1 14419:1 14421:1 14453:1 14489:1 14519:1 14548:2 14549:1 14567:1 14596:1 14612:1 14622:1 14656:1 14704:2 14705:2 14708:1 14713:1 14725:5 14774:1 14800:1 14805:1 14833:3 14838:1 14846:1 14876:1 14923:2 14930:2 14932:1 14948:1 14953:2 14977:1 14978:2 14982:1 14999:1 15001:1 15035:2 15041:1 15042:3 15066:1 15121:1 15123:1 15133:1 15171:1 15182:1 15198:1 15229:1 15239:1 15248:2 15249:1 15253:4 15261:5 15269:1 15306:2 15315:1 15324:1 15344:1 15380:1 15384:1 15415:1 15453:1 15472:1 15484:1 15487:2 15514:1 15521:1 15580:1 15588:1 15593:1 15608:1 15612:1 15614:1 15616:1 15628:1 15645:1 15670:2 15693:1 15711:1 15718:1 15726:1 15732:1 15738:1 15745:1 15758:2 15764:2 15765:1 15788:2 15792:1 15812:1 15813:1 15841:1 15847:2 15870:1 15889:1 15901:2 15911:1 15916:1 15966:4 15968:1 16067:2 16082:1 16084:1 16130:18 16156:1 16170:1 16180:2 16194:3 16205:2 16208:1 16217:1 16301:1 16306:1 16313:1 16326:4 16333:2 16359:1 16373:2 16393:1614 16413:1 16446:1 16476:1 16479:1 16493:1 16505:1 16610:3 16653:1 16675:3 16692:1 16704:2 16706:1 16742:1 16750:1 16763:1 16765:1 16771:1 16829:1 16834:1 16839:1 16853:1 16908:1 16910:2 16918:1 16939:1 16951:1 16952:4 16973:1 17012:1 17018:2 17024:1 17038:2 17042:1 17056:1 17073:1 17076:5 17079:1 17080:1 17087:1 17100:1 17103:6 17111:2 17114:1 17116:1 17118:1 17164:1 17175:1 17199:1 17218:3 17256:1 17296:1 17298:1 17344:1 17349:2 17387:1 17394:1 17429:2 17439:10 17460:1 17466:1 17473:1 17482:1 17526:1 17572:1 17597:1 17623:1 17646:1 17723:1 17738:1 17742:1 17748:3 17758:1 17760:1 17763:1 17829:1 17836:1 17848:1 17863:2 17934:1 17940:1 17948:1 17957:1 17959:1 17961:1 18010:4 18012:1 18016:1 18017:1 18035:1 18067:1 18114:1 18168:1 18177:1 18251:2 18292:2 18387:1 18397:1 18399:1 18406:1 18414:1 18436:1 18451:2 18454:1 18457:1 18530:1 18533:1 18535:3 18545:1 18548:1 18599:1 18620:3 18631:1 18634:1 18647:1 18655:1 18671:1 18681:1 18683:1 18696:1 18747:1 18756:1 18787:1 18817:2 18831:1 18832:1 18865:10 18909:1 18933:1 18942:1 18963:1 18972:1 19012:4 19016:1 19021:1 19023:1 19030:1 19042:1 19045:6 19079:3 19138:1 19144:1 19151:1 19183:1 19190:10 19192:2 19198:1 19252:1 19255:1 19263:2 19264:2 19276:1 19278:1 19281:1 19289:2 19290:1 19296:1 19325:2 19329:1 19333:1 19362:1 19363:1 19366:1 19400:1 19453:1 19489:1 19549:1 19553:3 19561:1 19567:1 19570:1 19609:1 19612:13 19622:1 19648:1 19650:1 19693:3 19700:3 19714:2 19758:2 19766:3 19777:1 19778:1 19780:1 19813:1 19819:1 19838:1 19849:1 19854:1 19860:1 19864:3 19874:1 19877:1 19883:2 19887:1 19904:2 19934:1 19953:1 19991:2 19998:1 20045:1 20049:27 20093:5 20107:1 20126:3 20166:1 20177:1 20183:2 20210:1 20226:2 20235:1 20236:1 20246:2 20256:2 20279:1 20287:1 20289:1 20321:1 20322:1 20331:1 20353:1 20360:1 20399:1 20437:1 20454:1 20466:1 20499:1 20530:1 20603:1 20604:1 20641:1 20648:1 20655:1 20664:1 20683:1 20688:1 20702:1 20748:3 20749:1 20765:1 20767:1 20775:1 20783:1 20810:1 20817:1 20827:1 20889:1 20899:2 20900:1 20909:1 20953:2 20984:1 21003:1 21010:1 21038:1 21085:1 21106:1 21130:1 21148:2 21151:3 21153:2 21154:1 21216:1 21217:2 21272:1 21316:1 21319:6 21324:2 21341:1 21344:1 21346:1 21450:1 21463:7 21495:1 21497:1 21504:1 21553:1 21555:1 21557:1 21563:1 21569:2 21570:1 21571:2 21578:1 21581:1 21619:1 21640:2 21647:2 21655:4 21680:2 21700:1 21723:1 21747:1 21765:1 21774:1 21786:1 21797:1 21798:1 21836:3 21838:4 21847:1 21860:1 21864:1 21871:1 21889:5 21907:5 21925:1 21960:1 21995:1 22002:1 22017:1 22019:1 22043:2 22052:2 22076:1 22105:1 22118:1 22119:1 22125:2 22128:1 22139:2 22140:1 22160:1 22215:1 22249:4 22253:2 22264:1 22270:1 22274:1 22284:1 22326:1 22336:1 22355:2 22370:1 22393:1 22403:1 22406:2 22407:2 22408:1 22409:1 22410:3 22420:1 22442:1 22454:1 22481:1 22495:1 22503:2 22506:1 22514:1 22527:1 22558:1 22581:1 22597:2 22620:1 22680:1 22691:1 22696:17 22712:1 22730:2 22756:1 22765:1 22774:1 22829:3 22848:5 22875:1 22921:1 22941:1 22942:1 22946:18 22950:1 22984:1 22989:1 22997:1 23000:1 23011:1 23015:1 23018:1 23024:1 23036:1 23041:1 23112:1 23129:1 23134:3 23137:2 23145:4 23166:1 23171:1 23224:1 23254:1 23256:1 23272:3 23317:1 23366:1 23426:2 23455:1 23456:1 23466:3 23489:1 23543:2 23622:1 23643:1 23657:1 23697:1 23712:1 23768:2 23832:3 23846:1 23878:2 23911:2 23926:1 23941:1 24009:2 24018:1 24021:1 24033:1 24067:2 24068:1 24069:1 24105:2 24108:1 24119:2 24122:1 24130:3 24157:1 24183:1 24184:4 24185:1 24186:1 24187:1 24191:1 24192:1 24195:1 24216:1 24235:1 24242:1 24244:1 24257:1 24270:1 24290:1 24301:1 24303:1 24312:1 24334:1 24343:2 24360:1 24373:18 24381:1 24439:3 24498:1 24504:1 24514:1 24520:1 24522:1 24526:1 24537:1 24556:9 24559:2 24573:1 24622:1 24640:2 24682:5 24687:1 24690:1 24701:2 24702:1 24716:1 24756:1 24776:1 24797:1 24826:1 24839:2 24843:1 24883:1 24885:1 24928:1 24934:2 24958:1 24974:1 25055:2 25064:1 25074:1 25087:1 25099:8 25107:1 25126:1 25129:1 25154:1 25175:1 25237:1 25239:1 25288:1 25300:1 25320:2 25321:1 25350:2 25387:1 25397:1 25402:3 25407:1 25408:18 25436:1 25452:18 25464:1 25476:3 25501:1 25536:5 25537:1 25552:2 25556:2 25566:1 25579:1 25589:1 25592:1 25595:2 25621:2 25640:1 25662:1 25668:2 25796:1 25803:1 25811:1 25815:1 25847:1 25853:1 25867:1 25878:3 25916:1 25934:1 25937:1 25967:1 26000:1 26004:1 26027:1 26031:1 26036:1 26038:1 26093:1 26113:1 26126:18
13 28:1 36:1 44:2 48:1 83:1 96:1 149:5 162:1 200:1 229:1 251:3 263:2 297:1 301:1 302:1 321:1 334:1 345:1 346:2 349:1 357:1 382:1 386:1 387:1 402:2 430:1 446:1 457:1 516:1 525:2 553:1 571:1 605:1 618:5 650:1 668:1 701:1 721:1 722:2 725:1 736:2 739:1 744:1 746:1 767:1 768:1 784:1 788:1 791:1 795:2 796:2 820:2 822:1 824:1 837:1 849:2 875:1 878:2 893:1 911:2 914:1 931:1 932:1 998:1 1011:1 1053:5 1065:1 1089:1 1193:1 1229:2 1267:1 1288:1 1351:1 1373:1 1395:4 1399:6 1408:1 1412:1 1452:1 1465:1 1471:1 1472:1 1473:1 1496:1 1498:8 1500:1 1587:1 1611:4 1652:1 1670:1 1690:1 1697:1 1704:1 1713:1 1743:1 1803:1 1805:1 1812:1 1817:1 1917:1 1919:2 1943:1 1951:1 1981:1 1991:1 1993:1 2003:1 2022:1 2026:1 2028:1 2030:2 2034:2 2036:2 2037:1 2045:3 2055:1 2061:1 2069:1 2073:1 2082:1 2129:1 2130:1 2134:1 2151:1 2155:1 2169:1 2171:1 2188:1 2192:2 2206:1 2210:1 2223:1 2243:1 2252:1 2259:3 2284:1 2287:3 2292:1 2294:1 2302:3 2310:1 2322:1 2343:1 2373:1 2412:1 2414:1 2416:1 2423:1 2428:1 2448:3 2466:2 2475:5 2483:1 2494:2 2515:1 2527:1 2528:1 2531:4 2534:1 2537:1 2539:2 2554:1 2562:1 2568:2 2594:1 2641:3 2642:1 2686:3 2725:2 2759:1 2782:1 2792:2 2795:1 2817:1 2822:1 2829:2 2873:2 2892:1 2922:1 2925:1 2976:1 2977:1 2985:1 3005:1 3009:1 3052:1 3064:1 3070:1 3073:1 3087:1 3109:1 3131:3 3172:1 3199:1 3206:3 3227:3 3246:2 3265:1 3293:1 3313:2 3320:1 3337:1 3346:3 3351:3 3355:1 3363:1 3372:1 3385:2 3386:5 3393:1 3424:1 3452:1 3454:2 3460:1 3512:1 3517:1 3526:1 3536:1 3538:2 3558:2 3572:1 3584:1 3604:1 3614:1 3635:1 3667:1 3674:2 3679:1 3709:1 3710:1 3752:1 3801:1 3827:1 3839:3 3861:1 3864:1 3880:1 3891:1 3914:1 3949:2 3972:5 3980:1 3986:1 4025:2 4039:1 4048:4 4052:1 4055:3 4068:2 4087:1 4089:3 4119:1 4125:2 4141:1 4147:3 4165:1 4167:1 4234:1 4244:1 4251:2 4276:4 4318:4 4323:1 4344:1 4349:1 4376:2 4378:1 4391:2 4392:2 4399:1 4402:1 4407:1 4408:1 4409:2 4411:1 4414:1 4461:2 4488:1 4509:1 4546:1 4580:1 4600:2 4604:3 4619:1 4650:1 4652:1 4655:2 4712:18 4729:1 4740:1 4743:1 4749:1 4766:1 4833:1 4841:2 4870:1 4872:1 4874:1 4885:1 4895:1 4920:1 4944:1 4996:2 5016:3 5023:1 5040:1 5065:1 5073:1 5076:1 5095:1 5109:1 5124:1 5168:1 5170:2 5172:2 5306:1 5322:2 5326:1 5356:1 5382:1 5406:1 5409:1 5410:2 5459:2 5487:1 5489:1 5514:4 5556:1 5572:1 5575:1 5601:1 5609:1 5610:1 5638:1 5704:1 5721:1 5735:1 5753:1 5865:1 5947:1 5964:1 5965:2 5970:3 5971:2 5978:2 6006:18 6097:2 6138:1 6147:1 6162:1 6197:1 6203:1 6227:1 6290:2 6291:2 6305:1 6311:1 6340:1 6346:1 6393:1 6400:1 6413:1 6432:1 6476:1 6482:3 6531:1 6560:1 6563:1 6658:1 6662:1 6666:1 6734:1 6743:1 6761:8 6776:2 6786:18 6807:14 6825:4 6877:9 6882:1 6963:1 6966:1 6983:1 6988:1 6991:1 6999:1 7039:1 7061:1 7091:1 7095:1 7096:17 7161:1 7167:2 7182:3 7198:2 7208:1 7334:1 7346:1 7378:1 7380:1 7422:2 7435:1 7474:1 7492:1 7509:1 7566:1 7567:1 7578:1 7583:1 7588:3 7592:1 7599:2 7637:1 7649:1 7671:1 7677:1 7678:3 7714:1 7729:1 7769:1 7847:1 7856:1 7867:1 7876:1 7878:1 7879:1 7880:3 7881:1 7884:1 7886:1 7915:1 7916:1 7925:3 7937:1 7976:2 7986:1 7989:2 7990:1 8053:1 8058:3 8070:1 8099:1 8106:1 8114:1 8179:1 8187:1 8190:1 8215:2 8222:1 8236:1 8245:4 8246:1 8262:1 8271:1 8277:1 8319:1 8334:1 8338:1 8383:1 8395:2 8397:1 8424:1 8486:3 8500:1 8507:6 8508:1 8511:1 8520:2 8521:3 8530:2 8591:3 8605:1 8607:1 8608:2 8633:1 8638:1 8645:1 8660:1 8688:1 8725:6 8735:1 8740:1 8743:1 8783:1 8804:2 8808:2 8818:3 8848:1 8898:1 8907:1 8915:1 8916:1 8933:1 8940:1 8959:1 8978:1 9017:1 9049:1 9080:1 9103:1 9113:2 9126:1 9136:1 9149:1 9174:1 9177:1 9206:1 9225:1 9231:1 9235:1 9241:1 9247:1 9251:5 9255:1 9297:2 9306:1 9307:1 9339:1 9371:1 9374:1 9387:1 9388:1 9394:2 9395:1 9400:7 9401:1 9456:1 9465:1 9471:1 9491:2 9494:1 9503:1 9517:1 9523:1 9546:2 9572:1 9586:2 9595:4 9598:2 9602:1 9605:1 9609:1 9628:1 9646:18 9690:2 9721:2 9739:1 9745:1 9753:1 9843:1 9853:1 9855:1 9858:2 9918:1 9932:1 9933:1 9981:1 9993:5 10042:2 10044:2 10052:1 10112:3 10124:2 10179:1 10222:1 10228:1 10229:1 10231:1 10232:1 10238:1 10244:2 10245:1 10259:2 10274:2 10280:1 10287:2 10300:1 10304:2 10314:1 10352:1 10369:1 10502:1 10503:3 10553:2 10598:1 10599:5 10610:4 10615:1 10636:1 10637:1 10640:5 10650:3 10654:1 10656:1 10664:1 10677:1 10698:1 10716:1 10721:3 10750:1 10793:1 10796:1 10818:1 10944:1 10947:1 10971:1 10978:19 10986:1 11038:1 11055:1 11061:1 11094:1 11116:1 11132:1 11147:1 11149:1 11151:2 11158:2 11178:1 11196:17 11256:1 11257:1 11267:1 11368:1 11465:1 11481:2 11484:1 11496:1 11535:1 11552:3 11558:2 11562:1 11600:3 11617:1 11627:3 11635:1 11658:1 11662:1 11675:1 11678:2 11687:1 11695:1 11776:1 11778:1 11786:1 11829:2 11838:1 11855:19 11901:3 11977:2 11982:2 11986:2 12035:1 12040:3 12086:4 12096:1 12126:1 12130:1 12168:1 12169:2 12227:1 12235:2 12247:2 12263:7 12265:1 12278:1 12342:18 12343:2 12356:1 12402:5 12434:1 12452:1 12453:3 12462:1 12466:2 12508:1 12580:1 12585:1 12587:1 12602:1 12638:3 12659:1 12678:1 12697:1 12710:1 12725:1 12742:1 12752:2 12754:1 12761:1 12776:19 12779:1 12790:1 12829:3 12871:2 12882:1 12887:1 12917:1 12920:3 12939:1 12940:1 12942:1 12969:1 13018:1 13039:1 13061:5 13073:1 13087:9 13100:1 13115:3 13178:1 13200:1 13223:1 13227:1 13244:1 13256:1 13266:1 13349:2 13361:2 13379:2 13385:2 13408:1 13472:1 13477:1 13485:1 13487:1 13571:2 13574:1 13582:1 13598:1 13602:1 13627:1 13646:2 13661:1 13666:2 13785:1 13791:1 13798:1 13801:1 13805:2 13819:2 13823:1 13826:1 13847:3 13852:1 13856:1 13862:1 13870:1 13877:1 13887:1 13916:1 13952:1 13962:5 13981:1 13999:1 14012:2 14016:3 14022:2 14044:1 14047:2 14052:1 14080:1 14084:1 14088:1 14098:4 14147:4 14158:4 14170:1 14193:3 14199:1 14200:1 14210:1 14223:1 14231:3 14257:2 14327:1 14350:1 14408:2 14415:1 14416:1 14418:1 14419:1 14421:1 14453:1 14489:1 14519:1 14548:2 14549:1 14567:1 14596:1 14612:1 14622:1 14656:1 14704:3 14705:3 14708:1 14713:1 14725:5 14774:1 14800:1 14805:1 14833:3 14838:1 14846:1 14876:1 14923:2 14930:2 14932:1 14948:1 14953:3 14977:1 14978:2 14982:1 14999:1 15001:1 15035:2 15041:1 15042:3 15066:1 15121:1 15123:1 15133:1 15171:1 15182:1 15198:1 15229:1 15239:1 15248:2 15249:1 15253:4 15261:5 15269:1 15306:2 15315:1 15324:1 15344:1 15380:1 15384:1 15415:1 15453:1 15472:1 15484:1 15487:3 15514:1 15521:1 15580:1 15588:1 15593:1 15608:1 15612:1 15614:1 15616:1 15628:1 15645:1 15670:2 15693:1 15711:1 15718:1 15726:1 15732:1 15738:1 15745:1 15758:3 15764:2 15765:1 15779:1 15788:2 15792:1 15812:1 15813:1 15841:1 15847:2 15870:1 15889:1 15901:2 15911:1 15916:1 15966:5 15968:1 16067:2 16082:1 16084:1 16109:1 16130:19 16156:1 16170:1 16180:2 16194:3 16205:2 16208:1 16217:1 16301:1 16306:1 16313:1 16326:5 16333:2 16359:1 16373:2 16393:1633 16413:1 16446:1 16476:1 16479:1 16493:2 16505:1 16610:3 16653:1 16675:3 16692:1 16704:2 16706:1 16742:1 16750:1 16763:1 16765:1 16771:1 16799:1 16829:1 16834:1 16839:1 16853:1 16908:1 16910:2 16918:1 16938:1 16939:1 16951:1 16952:4 16973:1 17012:1 17018:2 17024:1 17038:2 17042:1 17056:1 17073:1 17076:5 17079:1 17080:1 17087:1 17100:1 17103:6 17111:2 17114:1 17116:1 17118:1 17164:1 17175:1 17199:1 17218:3 17256:1 17296:1 17298:1 17344:1 17349:2 17387:1 17394:1 17429:2 17439:10 17460:1 17466:1 17473:1 17482:1 17526:1 17572:1 17597:1 17623:1 17646:1 17723:1 17738:1 17742:1 17748:3 17758:1 17760:1 17763:1 17829:2 17836:1 17848:1 17863:2 17934:1 17940:1 17948:1 17957:1 17959:1 17961:1 18010:6 18012:1 18016:1 18017:1 18035:1 18067:1 18114:1 18168:1 18177:1 18251:2 18292:2 18387:1 18397:1 18399:1 18406:1 18414:1 18436:1 18451:3 18454:1 18457:1 18530:1 18533:1 18535:4 18545:1 18548:1 18599:1 18620:3 18631:1 18634:1 18647:1 18655:1 18671:1 18681:1 18683:1 18696:1 18747:1 18756:1 18787:1 18817:2 18831:1 18832:1 18865:10 18909:1 18933:1 18942:1 18963:1 18972:1 19012:5 19016:1 19021:1 19023:1 19030:1 19042:1 19045:6 19079:3 19138:1 19144:1 19151:1 19183:1 19190:10 19192:2 19198:1 19252:1 19255:1 19263:2 19264:2 19276:1 19278:1 19281:1 19289:2 19290:1 19296:1 19325:2 19329:1 19333:1 19362:1 19363:1 19366:1 19400:1 19453:1 19489:1 19549:1 19553:3 19561:1 19567:1 19570:1 19609:1 19612:13 19622:1 19648:1 19650:1 19693:3 19700:3 19714:2 19758:2 19766:3 19777:1 19778:1 19780:1 19813:1 19819:1 19838:1 19849:1 19854:1 19860:1 19864:3 19874:1 19877:1 19883:2 19887:1 19904:2 19934:1 19953:1 19991:2 19998:1 20045:1 20049:28 20093:5 20107:1 20126:3 20166:1 20177:1 20183:2 20210:1 20226:2 20235:1 20236:1 20246:2 20256:3 20279:1 20287:1 20289:1 20321:1 20322:1 20331:1 20353:1 20360:1 20399:1 20437:1 20454:1 20466:1 20499:1 20530:1 20603:1 20604:1 20641:1 20648:1 20655:1 20664:1 20683:1 20688:1 20702:1 20748:3 20749:1 20765:1 20767:1 20775:1 20783:1 20810:1 20817:1 20827:1 20889:1 20899:2 20900:1 20909:1 20953:2 20984:1 21003:1 21010:1 21038:1 21085:1 21091:1 21106:1 21130:1 21148:2 21151:3 21153:2 21154:1 21216:2 21217:2 21272:1 21316:1 21319:6 21324:2 21341:1 21344:1 21346:1 21450:1 21463:7 21495:1 21497:1 21504:1 21553:1 21555:1 21557:1 21563:1 21569:2 21570:1 21571:2 21578:1 21581:1 21619:1 21640:2 21647:2 21655:4 21680:2 21700:1 21723:1 21747:1 21765:1 21774:1 21786:1 21797:1 21798:1 21836:3 21838:4 21847:1 21860:1 21864:1 21871:1 21889:6 21907:5 21925:1 21960:1 21995:1 22002:1 22017:1 22019:1 22043:2 22052:3 22076:1 22105:1 22118:1 22119:1 22125:2 22128:1 22139:2 22140:1 22160:1 22215:1 22249:4 22253:2 22264:1 22270:1 22274:1 22284:1 22326:1 22336:1 22355:2 22370:1 22393:1 22403:1 22406:2 22407:2 22408:1 22409:1 22410:3 22420:1 22442:1 22454:1 22481:1 22495:1 22503:2 22506:1 22514:1 22527:1 22558:1 22581:1 22597:2 22620:1 22680:1 22691:1 22696:17 22712:1 22730:3 22756:1 22765:1 22774:1 22829:3 22848:5 22875:1 22921:1 22941:1 22942:1 22946:18 22950:1 22984:1 22989:1 22997:1 23000:1 23011:1 23015:1 23018:1 23024:1 23036:1 23041:1 23112:1 23129:1 23134:3 23137:2 23145:4 23166:1 23171:1 23224:1 23254:1 23256:1 23272:3 23317:1 23366:1 23426:2 23455:1 23456:1 23466:3 23489:1 23543:2 23622:1 23643:1 23657:1 23697:1 23712:1 23768:2 23832:3 23846:1 23878:2 23911:2 23926:1 23941:1 24009:2 24018:1 24021:2 24033:1 24067:2 24068:1 24069:1 24105:2 24108:1 24119:2 24122:1 24130:3 24157:1 24183:1 24184:4 24185:1 24186:1 24187:1 24191:1 24192:1 24195:1 24216:1 24235:1 24242:1 24244:1 24257:1 24270:1 24290:1 24301:1 24303:1 24312:1 24334:1 24343:2 24360:1 24373:19 24381:1 24439:3 24498:1 24504:1 24514:1 24520:1 24522:1 24526:1 24537:1 24556:9 24559:2 24573:1 24622:1 24640:2 24682:5 24687:1 24690:1 24701:2 24702:1 24716:1 24756:1 24776:1 24797:1 24826:1 24839:2 24843:1 24883:1 24885:1 24928:1 24934:3 24958:1 24974:1 25055:2 25064:1 25074:1 25087:1 25099:8 25107:1 25126:1 25129:1 25154:1 25175:1 25237:1 25239:1 25288:1 25300:1 25320:2 25321:1 25350:2 25387:1 25397:1 25402:3 25407:1 25408:19 25436:1 25452:18 25464:1 25476:3 25501:1 25536:5 25537:1 25552:2 25556:2 25566:1 25579:1 25589:1 25592:1 25595:2 25621:2 25640:1 25662:1 25668:2 25796:1 25803:1 25811:1 25815:1 25847:1 25853:1 25867:1 25878:3 25916:1 25934:1 25937:1 25967:1 26000:1 26004:1 26027:1 26031:1 26036:1 26038:1 26093:1 26113:1 26126:18
13 28:1 36:1 44:2 48:1 83:1 96:1 111:1 149:5 162:1 200:1 229:1 251:3 263:2 297:1 301:1 302:1 321:1 334:1 338:1 345:1 346:2 349:1 357:1 382:1 386:1 387:1 402:2 430:1 446:1 457:1 516:1 525:3 553:1 571:1 605:1 618:5 650:1 668:1 701:1 721:1 722:2 725:1 736:2 739:1 744:1 746:1 767:1 768:1 784:1 788:1 791:1 795:2 796:2 820:2 822:1 824:1 837:1 849:2 875:1 878:2 893:1 911:2 914:1 931:1 932:1 998:1 1011:1 1053:5 1065:1 1089:1 1193:1 1206:1 1229:2 1267:1 1288:1 1351:1 1373:1 1395:4 1399:6 1408:1 1412:1 1452:1 1465:1 1471:1 1472:1 1473:1 1496:1 1498:8 1500:1 1587:1 1611:4 1652:1 1670:1 1690:1 1697:1 1704:1 1713:1 1743:1 1803:1 1805:1 1812:1 1817:1 1917:1 1919:2 1943:1 1951:1 1981:1 1991:1 1993:1 2003:1 2022:1 2026:1 2028:1 2030:2 2034:2 2036:2 2037:1 2045:3 2055:1 2061:1 2069:1 2073:1 2082:1 2129:1 2130:1 2134:1 2151:1 2155:1 2169:1 2171:1 2187:1 2188:1 2192:2 2206:1 2210:1 2223:1 2243:1 2252:1 2259:3 2284:1 2287:3 2292:1 2294:1 2302:3 2310:1 2322:1 2343:1 2373:1 2412:1 2414:1 2416:1 2423:1 2428:1 2448:3 2466:3 2475:5 2483:1 2494:2 2515:1 2527:1 2528:1 2531:4 2534:1 2537:1 2539:2 2554:1 2562:1 2568:2 2594:1 2641:3 2642:1 2686:3 2725:2 2759:1 2782:1 2792:2 2795:1 2817:1 2822:1 2829:2 2873:2 2892:1 2922:1 2925:1 2976:1 2977:1 2985:1 3005:1 3009:1 3052:1 3064:1 3070:1 3073:1 3087:1 3109:1 3131:3 3172:1 3199:1 3206:3 3227:3 3246:2 3265:1 3293:1 3313:2 3320:1 3337:1 3346:3 3351:3 3355:1 3363:1 3372:1 3385:2 3386:5 3393:1 3424:1 3452:1 3454:2 3460:1 3512:1 3517:1 3526:1 3536:1 3538:2 3558:2 3572:1 3584:1 3604:1 3614:1 3635:1 3667:1 3674:2 3679:1 3709:1 3710:1 3752:1 3801:1 3827:1 3839:3 3861:1 3864:1 3880:1 3891:1 3914:1 3949:2 3972:5 3980:1 3986:1 4025:2 4039:1 4048:4 4052:1 4055:3 4068:2 4087:1 4089:3 4119:1 4125:2 4141:1 4147:3 4165:1 4167:1 4234:1 4244:1 4251:2 4276:5 4318:4 4323:1 4344:1 4349:1 4376:2 4378:1 4391:2 4392:2 4399:1 4402:1 4407:1 4408:1 4409:2 4411:1 4414:1 4461:2 4477:1 4488:1 4509:1 4546:1 4580:1 4600:2 4604:3 4619:1 4650:1 4652:1 4655:2 4712:18 4729:1 4740:1 4743:1 4749:1 4766:1 4833:1 4841:2 4870:1 4872:1 4874:1 4885:1 4895:1 4920:1 4944:1 4996:2 5016:3 5023:1 5040:1 5065:1 5073:1 5076:1 5095:1 5109:1 5124:1 5168:1 5170:2 5172:2 5306:1 5322:2 5326:1 5356:1 5382:1 5406:1 5409:1 5410:2 5459:2 5487:1 5489:1 5514:4 5547:1 5556:1 5572:1 5575:1 5601:1 5609:1 5610:1 5638:1 5704:1 5721:1 5735:1 5753:1 5865:1 5947:1 5964:1 5965:2 5970:3 5971:2 5978:2 6006:18 6097:2 6138:1 6147:1 6162:1 6197:1 6203:1 6227:1 6290:2 6291:2 6305:1 6311:1 6340:1 6346:1 6393:1 6400:1 6413:1 6432:1 6476:1 6482:3 6531:1 6560:1 6563:1 6658:1 6662:2 6666:1 6734:1 6743:1 6761:8 6776:2 6786:18 6801:1 6807:14 6825:4 6877:9 6882:1 6963:1 6966:1 6983:1 6988:1 6991:2 6999:1 7039:2 7061:1 7091:1 7095:1 7096:17 7161:1 7167:2 7182:3 7198:2 7208:1 7334:1 7346:1 7378:1 7380:1 7422:2 7435:1 7474:1 7489:1 7492:1 7509:1 7566:1 7567:1 7578:1 7583:1 7588:3 7592:1 7599:2 7637:1 7649:1 7671:1 7677:1 7678:3 7706:1 7714:1 7729:1 7769:1 7847:1 7856:1 7867:1 7876:1 7878:1 7879:1 7880:3 7881:1 7884:1 7886:1 7915:1 7916:1 7925:3 7937:1 7976:2 7986:1 7989:2 7990:1 8053:1 8058:3 8070:1 8099:1 8106:1 8114:1 8179:1 8187:1 8190:1 8214:1 8215:2 8222:1 8236:1 8245:4 8246:1 8253:1 8262:1 8271:1 8277:1 8319:1 8334:1 8338:1 8383:1 8395:2 8397:1 8424:1 8486:3 8500:1 8507:6 8508:1 8511:1 8520:2 8521:3 8530:2 8591:3 8605:1 8607:1 8608:2 8633:1 8638:1 8645:1 8660:1 8688:1 8705:1 8725:6 8735:1 8740:1 8743:1 8783:1 8804:2 8808:2 8818:3 8848:1 8898:1 8907:1 8915:1 8916:1 8933:1 8940:1 8959:1 8978:1 9017:1 9049:1 9080:1 9103:1 9113:2 9126:1 9136:1 9149:1 9174:1 9177:1 9206:1 9225:1 9231:1 9235:1 9241:1 9247:1 9251:5 9255:1 9297:2 9306:1 9307:1 9339:1 9371:1 9374:1 9387:1 9388:1 9394:2 9395:1 9400:7 9401:1 9456:1 9465:1 9471:1 9491:2 9494:1 9503:1 9517:1 9523:1 9546:2 9572:1 9586:2 9595:4 9598:2 9602:1 9605:1 9609:1 9628:1 9646:18 9690:2 9721:2 9739:1 9745:1 9753:1 9843:1 9853:1 9855:1 9858:2 9918:1 9932:1 9933:1 9981:1 9993:5 10042:2 10044:2 10052:1 10112:3 10124:2 10179:1 10222:1 10228:1 10229:1 10231:2 10232:1 10238:2 10244:2 10245:1 10259:3 10274:2 10280:1 10287:2 10300:1 10304:2 10314:1 10352:1 10369:1 10502:1 10503:3 10553:2 10598:1 10599:5 10610:5 10615:1 10636:1 10637:1 10640:5 10650:3 10654:1 10656:1 10664:1 10677:1 10698:1 10716:1 10721:3 10750:1 10793:1 10796:1 10818:1 10944:1 10947:1 10971:1 10978:19 10986:1 11038:1 11055:1 11061:1 11094:1 11116:1 11132:1 11147:1 11149:1 11151:2 11158:2 11178:1 11196:17 11207:1 11256:1 11257:1 11267:1 11368:1 11371:1 11465:1 11481:2 11484:1 11496:1 11535:1 11552:3 11558:2 11562:1 11600:3 11617:1 11627:3 11635:1 11658:1 11662:1 11675:1 11678:2 11687:1 11695:1 11776:1 11778:1 11786:1 11829:2 11838:1 11855:19 11901:3 11977:2 11982:2 11986:2 12035:1 12040:3 12086:4 12096:1 12126:1 12130:1 12131:1 12168:1 12169:2 12227:1 12235:2 12247:2 12263:7 12265:1 12278:1 12342:18 12343:3 12356:1 12402:5 12434:1 12452:1 12453:3 12462:1 12466:2 12508:1 12580:1 12585:1 12587:1 12602:1 12638:3 12659:1 12678:1 12697:1 12710:1 12725:1 12742:1 12752:2 12754:1 12761:2 12776:19 12779:1 12790:1 12829:3 12871:2 12882:1 12887:1 12917:1 12920:3 12939:1 12940:1 12942:1 12969:1 13018:1 13039:1 13061:5 13073:1 13087:9 13100:1 13115:3 13178:1 13200:1 13223:1 13227:1 13244:1 13256:1 13266:1 13349:2 13361:2 13379:2 13385:2 13408:1 13472:1 13477:1 13485:1 13487:1 13571:2 13574:1 13582:1 13598:1 13602:1 13627:1 13646:2 13661:1 13666:2 13785:1 13791:1 13798:1 13801:1 13805:2 13819:2 13823:1 13826:1 13847:3 13852:1 13856:1 13862:1 13870:1 13877:1 13887:1 13916:1 13952:1 13962:5 13981:1 13999:1 14012:2 14016:3 14022:2 14044:1 14047:2 14052:1 14080:1 14084:1 14088:1 14098:4 14145:1 14147:4 14158:4 14170:1 14193:3 14199:1 14200:1 14210:1 14223:1 14231:3 14257:2 14327:1 14350:2 14408:2 14415:1 14416:1 14418:1 14419:1 14421:1 14453:1 14489:1 14519:1 14548:2 14549:1 14567:1 14596:1 14612:1 14622:1 14656:1 14704:3 14705:3 14708:1 14713:2 14725:5 14774:1 14800:1 14805:1 14833:3 14838:1 14846:1 14876:1 14923:2 14930:2 14932:1 14948:1 14953:3 14977:1 14978:2 14982:1 14999:1 15001:1 15009:1 15035:2 15041:1 15042:3 15066:1 15121:1 15123:1 15133:1 15171:1 15182:1 15198:1 15229:1 15239:1 15248:2 15249:1 15253:4 15261:5 15269:1 15279:1 15306:2 15315:1 15324:1 15344:1 15380:1 15384:1 15415:1 15453:1 15472:1 15484:1 15487:3 15498:1 15514:1 15521:1 15580:1 15588:1 15593:1 15608:1 15612:1 15614:1 15616:1 15628:1 15645:1 15670:2 15693:1 15711:1 15718:1 15726:1 15732:1 15738:1 15745:1 15758:3 15764:2 15765:1 15779:1 15788:2 15792:1 15812:1 15813:1 15841:1 15847:2 15870:1 15889:1 15901:3 15911:1 15916:1 15966:5 15968:1 15978:1 16067:2 16082:1 16084:1 16109:1 16130:19 16156:1 16170:1 16180:2 16194:3 16205:2 16208:1 16217:1 16301:1 16306:1 16313:1 16326:5 16333:2 16359:1 16373:2 16393:1673 16413:1 16446:1 16476:1 16479:1 16493:2 16505:1 16610:3 16653:1 16675:3 16692:1 16704:2 16706:1 16742:1 16750:1 16763:1 16765:1 16771:1 16799:1 16829:1 16834:1 16839:1 16853:1 16908:1 16910:2 16918:1 16938:1 16939:1 16951:1 16952:4 16973:1 17012:1 17018:2 17024:1 17038:2 17042:1 17056:1 17073:1 17076:5 17079:1 17080:1 17087:1 17100:1 17103:6 17111:2 17114:1 17116:1 17118:1 17164:1 17175:1 17199:1 17218:3 17256:1 17296:1 17298:1 17344:1 17349:2 17387:1 17394:1 17429:2 17439:10 17460:1 17466:1 17473:1 17482:1 17526:1 17572:1 17597:1 17623:1 17646:1 17723:1 17738:1 17742:1 17748:3 17758:1 17760:1 17763:1 17829:3 17836:1 17848:1 17863:2 17934:1 17940:1 17948:1 17957:1 17959:1 17961:1 18010:6 18012:1 18016:1 18017:1 18035:1 18067:1 18114:1 18168:1 18177:1 18251:2 18268:1 18292:2 18387:1 18397:1 18399:1 18406:1 18414:1 18436:1 18445:1 18451:3 18454:1 18457:1 18530:1 18533:1 18535:4 18545:1 18548:1 18599:1 18620:3 18631:1 18634:1 18647:1 18655:1 18671:1 18681:1 18683:1 18696:1 18747:1 18756:1 18787:1 18817:2 18831:1 18832:1 18865:10 18909:1 18933:1 18942:1 18963:1 18972:1 19012:5 19016:1 19021:1 19023:1 19030:1 19042:1 19045:6 19079:4 19138:1 19144:1 19151:1 19183:1 19190:10 19192:2 19198:1 19252:1 19255:1 19263:2 19264:2 19276:1 19278:1 19281:1 19289:2 19290:1 19296:1 19325:2 19329:1 19333:1 19362:1 19363:1 19366:1 19400:1 19453:1 19489:1 19549:1 19553:3 19561:1 19567:1 19570:1 19609:1 19612:13 19622:1 19648:1 19650:1 19681:1 19693:3 19700:3 19714:2 19758:2 19766:3 19777:1 19778:1 19780:1 19813:1 19819:1 19838:1 19849:1 19854:1 19860:1 19864:3 19874:1 19877:1 19883:2 19887:1 19904:2 19934:1 19953:1 19991:2 19998:1 20045:1 20049:28 20093:6 20107:1 20126:3 20166:1 20177:1 20183:2 20210:1 20226:2 20235:1 20236:1 20246:2 20256:3 20279:1 20287:1 20289:1 20321:1 20322:1 20331:1 20353:1 20360:1 20399:1 20437:1 20454:1 20466:1 20499:1 20530:1 20603:1 20604:1 20641:1 20648:1 20655:1 20664:1 20683:1 20688:1 20702:1 20748:3 20749:1 20765:1 20767:1 20775:1 20783:1 20810:1 20817:1 20827:1 20889:1 20899:2 20900:1 20909:1 20953:2 20984:1 21003:1 21010:1 21038:1 21085:1 21091:1 21106:1 21130:1 21148:3 21151:3 21153:2 21154:1 21216:2 21217:2 21272:1 21316:1 21319:6 21324:2 21341:1 21344:1 21346:1 21407:1 21450:1 21463:7 21495:1 21497:1 21504:1 21553:1 21555:1 21557:1 21563:1 21569:2 21570:1 21571:3 21578:1 21581:1 21619:1 21640:2 21647:2 21655:4 21680:2 21700:1 21715:1 21723:1 21747:1 21765:1 21774:1 21786:1 21797:1 21798:1 21836:3 21838:4 21847:1 21860:1 21864:1 21871:1 21889:6 21907:5 21925:1 21960:1 21995:1 22002:1 22017:1 22019:1 22043:3 22052:3 22076:1 22105:1 22118:1 22119:1 22125:2 22128:1 22139:2 22140:1 22160:1 22215:1 22249:4 22253:2 22264:1 22270:1 22274:1 22284:1 22326:1 22336:1 22355:2 22370:1 22393:1 22403:1 22406:2 22407:2 22408:1 22409:1 22410:3 22420:1 22442:1 22454:1 22481:1 22495:2 22503:2 22506:1 22514:1 22527:1 22558:1 22581:1 22597:2 22620:1 22680:1 22691:1 22696:17 22712:1 22730:3 22756:1 22765:1 22774:1 22829:3 22848:5 22875:1 22921:1 22941:1 22942:1 22946:18 22950:1 22984:1 22989:1 22997:1 23000:1 23011:1 23015:1 23018:1 23024:1 23036:1 23041:1 23112:1 23129:1 23134:3 23137:2 23145:4 23166:1 23171:1 23224:1 23254:1 23256:1 23272:3 23317:2 23366:1 23426:2 23455:1 23456:1 23466:3 23489:1 23543:2 23580:1 23622:1 23643:1 23657:1 23697:1 23712:1 23768:2 23832:3 23846:1 23878:2 23911:2 23926:1 23941:1 24009:2 24018:1 24021:2 24033:1 24067:2 24068:1 24069:1 24105:2 24108:1 24119:2 24122:1 24130:3 24157:1 24183:1 24184:4 24185:1 24186:1 24187:1 24191:1 24192:1 24195:1 24216:1 24235:1 24242:1 24244:1 24257:1 24270:1 24290:1 24291:1 24301:1 24303:1 24312:1 24334:1 24343:2 24360:1 24373:19 24381:1 24439:3 24498:1 24504:1 24514:1 24520:1 24522:1 24526:1 24537:1 24556:10 24559:2 24573:1 24622:1 24640:2 24682:6 24687:1 24690:1 24701:2 24702:1 24716:1 24756:1 24776:1 24797:1 24826:1 24839:2 24843:1 24883:1 24885:1 24928:1 24934:3 24958:1 24974:1 25055:2 25064:1 25074:1 25087:1 25099:8 25107:1 25126:1 25129:1 25154:1 25175:1 25237:1 25239:1 25288:1 25300:1 25320:2 25321:1 25350:2 25387:1 25397:1 25402:3 25407:1 25408:19 25436:1 25452:18 25464:1 25471:1 25476:3 25501:1 25536:5 25537:1 25552:2 25556:2 25566:1 25579:1 25589:1 25592:1 25595:2 25621:2 25640:1 25662:1 25668:3 25796:1 25803:1 25811:1 25815:1 25847:1 25853:1 25867:1 25878:3 25916:1 25934:1 25937:1 25967:1 26000:1 26004:1 26027:1 26031:1 26036:1 26038:1 26093:1 26113:1 26126:18
13 28:1 36:1 44:2 48:1 83:1 96:1 111:1 149:5 162:1 200:1 229:1 251:3 263:2 297:1 301:1 302:1 321:1 334:1 338:1 345:1 346:2 349:1 357:1 382:1 386:2 387:1 402:2 430:1 446:1 457:1 516:1 525:3 553:1 571:1 605:1 618:5 650:1 668:1 701:1 721:1 722:2 725:1 736:2 739:1 744:1 746:1 767:1 768:1 784:1 788:1 791:2 795:3 796:2 820:2 822:1 824:1 837:1 849:2 875:1 878:2 893:1 911:2 914:1 931:1 932:1 998:1 1003:1 1011:1 1053:5 1065:1 1089:1 1193:1 1206:1 1229:2 1267:1 1288:1 1351:1 1373:1 1395:4 1399:6 1408:1 1412:1 1452:1 1465:1 1471:1 1472:1 1473:2 1496:1 1498:8 1500:1 1587:1 1611:4 1652:1 1670:1 1690:1 1697:1 1704:1 1713:1 1743:1 1803:1 1805:1 1812:1 1817:1 1917:1 1919:2 1943:1 1951:1 1981:1 1991:1 1993:1 2003:1 2022:1 2026:1 2028:1 2030:2 2034:2 2036:2 2037:1 2045:3 2055:1 2061:1 2069:1 2073:1 2082:1 2129:1 2130:1 2134:1 2151:1 2155:1 2169:1 2171:1 2187:1 2188:1 2192:2 2206:1 2210:1 2223:1 2243:1 2252:1 2259:3 2284:1 2287:3 2292:1 2294:1 2302:3 2310:1 2322:1 2343:1 2373:1 2412:1 2414:1 2416:1 2423:1 2428:1 2448:3 2466:3 2475:5 2483:1 2494:2 2515:1 2527:1 2528:1 2531:4 2534:1 2537:1 2539:2 2554:1 2562:1 2568:2 2594:1 2641:3 2642:1 2686:3 2725:2 2759:1 2782:1 2792:2 2795:1 2817:1 2822:1 2829:2 2873:2 2892:1 2922:1 2925:1 2976:1 2977:1 2985:1 2990:1 3005:1 3009:1 3052:1 3064:1 3070:1 3073:1 3087:1 3109:1 3131:3 3172:1 3199:1 3206:3 3227:3 3246:2 3265:1 3293:1 3313:2 3320:1 3337:1 3346:3 3351:4 3355:1 3363:1 3372:1 3385:2 3386:5 3393:1 3424:1 3452:1 3454:2 3460:1 3512:1 3517:1 3526:1 3536:1 3538:2 3558:2 3572:1 3584:1 3604:1 3614:1 3635:1 3667:1 3674:2 3679:1 3709:1 3710:1 3752:1 3801:1 3827:1 3839:3 3861:1 3864:1 3880:1 3891:1 3914:1 3949:2 3972:5 3980:1 3986:1 4025:2 4039:1 4048:4 4052:1 4055:3 4068:2 4087:1 4089:3 4119:1 4125:2 4141:1 4147:3 4165:1 4167:1 4234:1 4244:1 4251:2 4276:5 4318:4 4323:1 4344:1 4349:1 4376:3 4378:1 4391:2 4392:2 4399:1 4402:1 4407:1 4408:1 4409:3 4411:1 4414:1 4461:2 4477:1 4488:1 4509:1 4546:1 4580:1 4600:2 4604:3 4619:1 4650:1 4652:1 4655:2 4712:18 4729:1 4740:1 4743:1 4749:1 4766:1 4833:1 4841:2 4870:1 4872:1 4874:1 4885:1 4895:1 4920:2 4944:1 4996:2 5016:3 5023:1 5040:1 5065:1 5073:1 5076:1 5095:1 5109:1 5124:1 5168:1 5170:2 5172:2 5306:1 5322:2 5326:1 5356:1 5382:1 5406:1 5409:1 5410:2 5459:2 5487:1 5489:1 5514:4 5547:1 5556:1 5572:2 5575:1 5601:1 5609:1 5610:1 5638:1 5704:1 5721:1 5735:1 5753:1 5865:1 5947:1 5964:1 5965:2 5970:3 5971:2 5978:2 6006:18 6097:2 6138:1 6147:1 6162:1 6197:1 6203:1 6227:1 6290:2 6291:2 6305:1 6311:1 6340:1 6346:2 6393:1 6400:1 6413:1 6432:1 6476:1 6482:3 6531:1 6560:1 6563:1 6658:2 6662:2 6666:1 6734:1 6743:1 6761:9 6776:2 6786:18 6801:1 6807:14 6825:4 6877:9 6882:1 6963:1 6966:1 6983:1 6988:1 6991:2 6999:1 7039:2 7061:1 7091:1 7095:1 7096:17 7161:1 7167:2 7182:3 7198:2 7208:1 7334:1 7346:1 7378:1 7380:1 7422:2 7435:2 7474:1 7489:1 7492:1 7509:1 7566:1 7567:1 7578:1 7583:1 7588:3 7592:1 7599:2 7637:1 7649:1 7671:1 7677:1 7678:3 7706:1 7714:1 7729:1 7769:1 7847:1 7856:1 7867:1 7876:1 7878:1 7879:1 7880:3 7881:1 7884:1 7886:1 7915:1 7916:1 7925:3 7937:1 7976:2 7986:1 7989:2 7990:1 8053:1 8058:3 8070:1 8099:1 8106:1 8114:1 8179:1 8187:1 8190:1 8214:1 8215:2 8222:1 8236:1 8245:4 8246:1 8253:1 8262:1 8271:1 8277:1 8319:1 8334:1 8338:1 8383:1 8395:2 8397:1 8424:1 8486:3 8500:1 8507:6 8508:1 8511:1 8520:2 8521:3 8530:2 8591:3 8605:1 8607:2 8608:3 8633:1 8638:1 8645:1 8660:1 8688:1 8705:1 8725:6 8735:1 8740:1 8743:1 8783:1 8804:2 8808:2 8818:3 8848:1 8898:1 8907:1 8915:1 8916:1 8933:1 8940:1 8959:1 8978:1 9017:1 9049:1 9080:1 9103:1 9113:3 9126:1 9136:1 9149:1 9174:1 9177:1 9206:1 9225:1 9231:1 9235:1 9241:1 9247:1 9251:6 9255:1 9297:2 9306:1 9307:1 9339:1 9371:1 9374:1 9387:1 9388:1 9394:2 9395:1 9400:7 9401:1 9456:1 9465:1 9471:1 9491:2 9494:1 9503:1 9517:1 9523:1 9546:2 9572:1 9586:3 9595:4 9598:2 9602:1 9605:1 9609:1 9628:1 9646:18 9690:2 9721:2 9739:1 9745:1 9753:1 9843:1 9853:1 9855:1 9858:2 9918:1 9932:1 9933:1 9981:1 9993:5 10042:2 10044:2 10052:1 10112:3 10124:3 10179:1 10222:1 10228:1 10229:1 10231:2 10232:1 10238:2 10244:2 10245:1 10259:3 10274:2 10280:1 10287:2 10300:1 10304:2 10314:1 10352:1 10369:2 10502:1 10503:3 10553:2 10598:1 10599:5 10610:6 10615:1 10636:1 10637:1 10640:5 10650:3 10654:1 10656:1 10664:1 10677:1 10698:1 10716:1 10721:3 10750:2 10793:1 10796:1 10818:1 10944:1 10947:1 10971:1 10978:19 10986:1 11038:1 11055:1 11061:1 11094:1 11116:1 11132:1 11147:1 11149:1 11151:2 11158:2 11178:1 11196:17 11207:1 11256:1 11257:1 11267:1 11368:1 11371:1 11465:1 11481:2 11484:1 11496:1 11535:1 11552:3 11558:2 11562:1 11600:3 11617:1 11627:3 11635:1 11658:1 11662:1 11675:1 11678:2 11687:1 11695:2 11776:1 11778:1 11786:1 11829:2 11838:1 11855:19 11901:3 11977:2 11982:2 11986:2 12035:1 12040:3 12086:4 12096:1 12126:1 12130:1 12131:1 12168:1 12169:2 12227:1 12235:3 12247:2 12263:7 12265:1 12278:1 12342:18 12343:3 12356:1 12402:5 12434:1 12452:1 12453:3 12462:1 12466:2 12508:1 12580:1 12585:1 12587:1 12602:1 12638:3 12659:1 12678:1 12697:1 12710:1 12725:1 12742:1 12752:2 12754:1 12761:2 12776:19 12779:1 12790:1 12829:3 12871:2 12882:1 12887:1 12917:1 12920:3 12939:1 12940:1 12942:1 12969:1 13018:1 13039:1 13061:5 13073:1 13087:9 13100:1 13115:3 13178:1 13200:1 13223:1 13227:1 13244:1 13256:1 13266:2 13349:2 13361:2 13379:2 13385:2 13408:1 13472:1 13477:1 13485:1 13487:1 13571:2 13574:1 13582:1 13598:1 13602:1 13627:1 13646:2 13661:1 13666:2 13785:1 13791:1 13798:1 13801:1 13805:2 13819:2 13823:1 13826:1 13844:1 13847:3 13852:1 13856:1 13862:1 13870:1 13877:1 13887:1 13916:1 13952:1 13962:5 13981:1 13999:1 14012:2 14016:4 14022:3 14044:1 14047:2 14052:1 14080:1 14084:2 14088:1 14098:4 14145:1 14147:4 14158:4 14170:1 14193:3 14199:1 14200:2 14210:1 14223:1 14231:3 14257:2 14327:1 14350:2 14408:2 14415:1 14416:1 14418:1 14419:1 14421:1 14453:1 14489:1 14519:1 14548:2 14549:1 14567:1 14596:1 14612:1 14622:1 14656:1 14704:3 14705:3 14708:2 14713:2 14725:5 14774:1 14783:1 14800:1 14805:1 14833:3 14838:1 14846:1 14876:1 14923:2 14930:2 14932:1 14948:1 14953:3 14977:1 14978:2 14982:1 14999:1 15001:1 15009:1 15035:2 15041:1 15042:3 15066:1 15121:1 15123:1 15133:1 15171:2 15182:1 15198:1 15229:1 15239:1 15248:2 15249:1 15253:4 15261:5 15269:1 15279:1 15306:2 15315:1 15324:1 15344:1 15380:1 15384:1 15415:1 15453:1 15472:1 15484:1 15487:3 15498:1 15514:1 15521:1 15580:1 15588:1 15593:1 15608:2 15612:1 15614:1 15616:1 15628:1 15645:1 15670:3 15693:1 15711:1 15717:1 15718:1 15726:1 15732:1 15738:1 15745:1 15758:3 15764:2 15765:1 15779:1 15788:2 15792:1 15812:1 15813:1 15841:1 15847:2 15870:1 15889:1 15901:3 15911:1 15916:1 15966:5 15968:1 15978:1 16067:2 16082:1 16084:1 16109:1 16130:19 16156:1 16170:1 16180:2 16194:3 16205:2 16208:1 16217:1 16301:1 16306:1 16313:1 16326:5 16333:2 16359:1 16373:2 16393:1712 16413:1 16446:1 16476:1 16479:1 16493:2 16505:1 16610:3 16653:1 16675:3 16692:1 16704:2 16706:1 16742:1 16750:1 16763:1 16765:1 16771:1 16799:1 16829:1 16834:1 16839:1 16853:1 16908:1 16910:3 16918:1 16938:1 16939:1 16951:1 16952:4 16973:1 17012:1 17018:2 17024:1 17038:2 17042:1 17056:1 17073:1 17076:5 17079:1 17080:1 17087:1 17100:1 17103:7 17111:2 17114:1 17116:1 17118:1 17164:1 17175:1 17199:1 17218:3 17256:1 17296:1 17298:1 17344:1 17349:2 17387:1 17394:1 17429:2 17439:10 17460:1 17466:1 17473:1 17482:1 17526:1 17572:1 17597:1 17623:1 17646:1 17723:1 17738:1 17742:1 17748:3 17758:1 17760:1 17763:1 17829:3 17836:1 17848:1 17863:2 17934:1 17940:1 17948:1 17957:1 17959:1 17961:1 18010:6 18012:1 18016:1 18017:1 18035:1 18067:1 18114:1 18168:1 18177:1 18251:2 18268:1 18292:2 18387:1 18397:1 18399:1 18406:1 18414:1 18436:1 18445:1 18451:3 18454:1 18457:1 18530:1 18533:1 18535:4 18545:1 18548:1 18599:1 18620:3 18631:1 18634:1 18647:1 18655:1 18671:1 18681:1 18683:1 18696:1 18747:1 18756:1 18787:1 18817:2 18831:2 18832:1 18865:10 18909:1 18933:1 18942:1 18963:1 18972:1 19012:5 19016:1 19021:1 19023:1 19030:1 19042:1 19045:6 19079:4 19138:1 19144:1 19151:1 19183:1 19190:10 19192:2 19198:1 19252:1 19255:1 19263:2 19264:2 19276:1 19278:1 19281:1 19289:2 19290:1 19296:1 19325:2 19329:1 19333:1 19362:1 19363:1 19366:1 19400:1 19453:1 19489:1 19549:1 19553:3 19561:1 19567:1 19570:1 19609:1 19612:13 19622:1 19648:1 19650:1 19681:1 19693:3 19700:3 19714:2 19758:2 19766:3 19777:1 19778:1 19780:1 19813:1 19819:1 19838:1 19849:1 19854:1 19860:1 19864:3 19874:1 19877:1 19883:2 19887:1 19904:2 19934:1 19953:1 19991:2 19998:2 20045:1 20049:28 20093:7 20107:1 20126:3 20166:1 20177:1 20183:2 20210:1 20226:2 20235:1 20236:1 20246:2 20256:3 20279:1 20287:1 20289:1 20321:1 20322:1 20331:1 20353:1 20360:1 20399:1 20437:1 20454:1 20466:1 20499:1 20530:1 20603:1 20604:1 20641:1 20648:1 20655:1 20664:1 20683:1 20688:1 20702:1 20748:3 20749:1 20765:1 20767:1 20775:1 20783:1 20810:1 20817:1 20827:1 20889:1 20899:2 20900:1 20909:1 20953:2 20984:1 21003:1 21010:1 21038:1 21085:1 21091:1 21106:1 21130:1 21148:3 21151:3 21153:2 21154:1 21216:2 21217:2 21272:1 21316:1 21319:6 21324:2 21341:1 21344:1 21346:1 21407:1 21450:1 21463:7 21495:1 21497:1 21504:1 21553:1 21555:1 21557:1 21563:1 21569:2 21570:1 21571:3 21578:1 21581:1 21619:1 21640:2 21647:2 21655:4 21680:2 21700:1 21715:1 21723:1 21747:1 21765:1 21774:1 21786:1 21797:1 21798:1 21836:3 21838:4 21847:1 21860:1 21864:1 21871:1 21889:6 21907:5 21925:1 21960:1 21995:1 22002:1 22017:1 22019:1 22043:3 22052:3 22076:1 22105:1 22118:1 22119:1 22125:2 22128:1 22139:3 22140:1 22160:1 22215:1 22249:4 22253:2 22264:1 22270:1 22274:1 22284:1 22326:1 22336:1 22355:2 22370:1 22393:1 22403:2 22406:2 22407:2 22408:1 22409:1 22410:3 22420:1 22442:1 22454:1 22481:1 22495:2 22503:2 22506:1 22514:1 22527:1 22558:1 22581:1 22597:3 22620:1 22680:1 22691:1 22696:17 22712:1 22730:3 22756:1 22765:1 22774:1 22829:3 22848:5 22875:1 22921:1 22941:1 22942:1 22946:18 22950:1 22984:1 22989:1 22997:1 23000:1 23011:1 23015:1 23018:1 23024:1 23036:1 23041:1 23112:1 23129:1 23134:3 23137:2 23145:4 23166:1 23171:1 23224:1 23254:1 23256:1 23272:3 23317:2 23366:1 23426:2 23455:1 23456:1 23466:3 23489:2 23543:2 23580:1 23622:1 23643:1 23657:1 23697:1 23712:1 23768:2 23832:3 23846:1 23878:2 23911:3 23926:1 23941:1 24009:2 24018:1 24021:2 24033:1 24067:2 24068:1 24069:1 24105:2 24108:1 24119:2 24122:1 24130:3 24157:1 24183:1 24184:5 24185:1 24186:1 24187:1 24191:1 24192:1 24195:1 24216:1 24235:1 24242:1 24244:1 24257:1 24270:1 24290:1 24291:1 24301:1 24303:1 24312:1 24334:1 24343:2 24360:1 24373:19 24381:1 24439:3 24498:1 24504:1 24514:1 24520:1 24522:1 24526:1 24537:1 24556:10 24559:2 24573:1 24622:2 24640:2 24682:7 24687:1 24690:1 24701:2 24702:1 24716:1 24756:1 24776:1 24797:1 24826:1 24839:2 24843:1 24883:1 24885:1 24928:1 24934:3 24958:1 24974:1 25055:2 25064:1 25074:2 25087:1 25099:9 25107:1 25126:1 25129:1 25154:1 25175:1 25237:1 25239:1 25288:1 25300:1 25320:2 25321:1 25350:2 25387:1 25397:1 25402:3 25407:1 25408:19 25436:1 25452:18 25464:1 25471:1 25476:3 25501:1 25536:5 25537:1 25552:2 25556:2 25566:1 25579:1 25589:1 25592:2 25595:2 25621:2 25640:1 25662:1 25668:3 25796:1 25803:1 25811:1 25815:1 25847:1 25853:1 25867:1 25878:3 25916:1 25934:1 25937:1 25967:1 26000:1 26004:1 26027:1 26031:1 26036:1 26038:1 26093:1 26113:1 26126:18
13 28:1 36:1 44:2 48:1 83:1 96:1 111:1 149:6 162:1 200:1 229:1 251:3 263:2 297:1 301:1 302:1 321:1 334:1 338:1 345:1 346:2 349:1 357:1 382:1 386:2 387:1 402:2 430:1 446:1 457:1 516:1 525:3 553:1 571:1 605:1 618:6 650:1 668:1 701:1 721:1 722:2 725:1 736:2 739:1 744:1 746:1 767:1 768:1 784:1 788:1 791:2 795:3 796:2 820:2 822:1 824:1 837:1 849:2 875:1 878:2 893:1 911:2 914:1 931:1 932:1 998:1 1003:1 1011:1 1050:1 1053:5 1065:1 1077:1 1089:1 1176:1 1193:1 1206:1 1229:2 1267:1 1288:1 1351:1 1373:1 1395:4 1399:6 1408:1 1412:1 1452:1 1465:1 1471:1 1472:1 1473:2 1496:1 1498:8 1500:1 1587:1 1611:4 1652:1 1670:1 1690:1 1697:1 1704:1 1713:1 1743:1 1803:1 1805:1 1812:1 1817:1 1917:1 1919:3 1943:1 1951:1 1981:1 1991:1 1993:1 2003:1 2022:1 2026:1 2028:1 2030:2 2034:2 2036:2 2037:1 2045:3 2055:1 2061:1 2069:1 2073:1 2082:2 2129:1 2130:1 2134:1 2151:1 2155:1 2169:1 2171:1 2187:1 2188:1 2192:2 2206:1 2210:1 2223:1 2243:1 2252:1 2259:3 2284:1 2287:3 2292:1 2294:1 2302:3 2310:1 2322:1 2343:1 2373:1 2412:1 2414:1 2416:1 2423:1 2428:1 2448:3 2466:3 2467:1 2475:5 2483:1 2494:2 2515:1 2527:1 2528:1 2531:4 2534:1 2537:1 2539:2 2554:1 2562:1 2568:2 2594:1 2641:3 2642:1 2686:3 2725:2 2759:1 2782:1 2792:2 2795:1 2817:1 2822:1 2829:3 2873:2 2892:1 2922:1 2925:1 2976:1 2977:1 2985:1 2990:1 3005:1 3009:1 3052:1 3064:1 3070:1 3073:1 3087:1 3109:1 3131:3 3172:1 3199:1 3206:3 3227:3 3246:2 3265:1 3293:1 3313:2 3320:1 3337:1 3346:3 3351:4 3355:1 3363:1 3372:1 3385:2 3386:5 3393:1 3424:1 3452:1 3454:2 3460:1 3512:1 3517:1 3526:1 3536:1 3538:2 3558:2 3572:1 3584:1 3604:1 3614:1 3635:1 3667:1 3674:2 3679:1 3709:1 3710:1 3752:1 3801:1 3827:1 3839:3 3861:1 3864:1 3880:1 3891:1 3914:1 3949:3 3972:5 3980:1 3986:1 4025:2 4039:1 4048:4 4052:1 4055:3 4068:2 4087:1 4089:3 4119:1 4125:2 4141:1 4147:3 4165:1 4167:1 4234:1 4244:1 4251:2 4276:5 4318:5 4323:1 4344:1 4349:1 4376:3 4378:1 4391:2 4392:2 4399:1 4402:1 4407:1 4408:1 4409:4 4411:1 4414:1 4419:1 4461:2 4477:1 4488:1 4509:1 4546:1 4580:1 4600:2 4604:3 4619:1 4650:1 4652:1 4655:2 4712:18 4729:1 4740:1 4743:1 4749:1 4766:1 4833:1 4841:2 4870:1 4872:1 4874:1 4885:2 4895:1 4920:2 4944:1 4996:2 5016:3 5023:1 5040:1 5065:1 5073:1 5076:1 5095:1 5109:1 5124:1 5168:1 5170:2 5172:2 5253:1 5306:1 5322:2 5326:1 5356:1 5382:1 5406:1 5409:1 5410:2 5459:2 5487:1 5489:1 5514:4 5547:1 5556:1 5572:2 5575:1 5601:1 5609:1 5610:1 5638:1 5704:1 5721:1 5735:1 5753:1 5865:1 5947:1 5964:1 5965:2 5970:3 5971:2 5978:2 6006:18 6097:2 6138:1 6147:1 6162:1 6197:1 6203:1 6227:1 6290:2 6291:2 6305:1 6311:1 6340:1 6346:2 6393:1 6400:1 6413:1 6415:1 6432:1 6476:1 6482:3 6531:1 6560:1 6563:1 6658:2 6662:2 6666:1 6734:1 6743:1 6761:10 6776:2 6786:18 6801:1 6807:14 6825:4 6877:9 6882:1 6963:1 6966:1 6983:1 6988:1 6991:2 6999:1 7039:2 7061:1 7091:1 7095:1 7096:17 7161:1 7167:2 7182:3 7198:2 7208:1 7334:1 7346:1 7378:1 7380:1 7422:2 7435:2 7474:1 7489:1 7492:1 7509:1 7566:1 7567:1 7578:1 7583:1 7588:3 7592:1 7599:2 7637:1 7649:1 7671:1 7677:1 7678:3 7706:1 7714:1 7729:1 7769:1 7847:1 7856:1 7867:1 7876:1 7878:1 7879:1 7880:3 7881:1 7884:1 7886:1 7915:1 7916:1 7925:3 7937:1 7976:2 7986:1 7989:2 7990:1 8053:1 8058:3 8070:1 8099:1 8106:1 8114:1 8179:1 8187:1 8190:1 8214:1 8215:3 8222:1 8236:1 8245:4 8246:1 8253:1 8262:1 8271:1 8277:2 8319:1 8334:1 8338:1 8383:1 8395:2 8397:1 8424:1 8467:1 8479:1 8486:3 8500:1 8507:6 8508:1 8511:1 8520:2 8521:3 8530:2 8558:1 8569:1 8591:3 8594:1 8605:1 8607:2 8608:3 8633:1 8638:1 8645:1 8660:1 8688:1 8705:1 8725:6 8735:1 8740:1 8743:1 8783:1 8804:2 8808:2 8818:3 8833:1 8848:1 8898:1 8907:1 8915:1 8916:1 8933:1 8940:1 8959:1 8978:1 9017:1 9049:1 9053:1 9080:1 9103:1 9113:3 9126:1 9136:1 9149:1 9174:1 9177:1 9206:1 9225:1 9231:1 9235:1 9241:2 9247:1 9251:6 9255:1 9260:1 9297:2 9306:1 9307:1 9339:1 9371:1 9374:1 9387:1 9388:1 9394:2 9395:1 9400:7 9401:1 9456:1 9465:1 9471:1 9491:2 9494:1 9503:1 9517:1 9523:1 9546:2 9572:1 9586:3 9595:4 9598:2 9602:1 9605:1 9609:1 9628:1 9646:18 9690:2 9721:3 9739:1 9745:1 9753:1 9843:1 9853:1 9855:1 9858:2 9918:1 9932:1 9933:1 9981:1 9993:6 10042:2 10044:3 10052:1 10107:1 10112:3 10124:3 10179:1 10222:1 10228:1 10229:1 10231:2 10232:1 10238:2 10244:2 10245:1 10259:3 10274:2 10280:1 10287:2 10300:1 10304:2 10314:1 10352:1 10369:2 10502:1 10503:3 10553:2 10598:1 10599:5 10610:6 10615:1 10636:1 10637:1 10640:5 10650:3 10654:1 10656:1 10664:1 10677:1 10698:1 10716:1 10721:3 10746:1 10750:2 10793:1 10796:1 10818:1 10944:1 10947:1 10971:1 10978:19 10986:1 11038:1 11055:1 11061:1 11094:1 11116:1 11131:1 11132:1 11147:1 11149:1 11151:2 11158:2 11178:1 11196:17 11207:1 11256:1 11257:1 11267:1 11368:1 11371:1 11465:1 11481:2 11484:1 11496:1 11516:1 11535:1 11552:3 11558:2 11562:1 11600:3 11617:1 11627:3 11635:1 11658:1 11662:1 11675:1 11678:2 11687:1 11695:2 11776:1 11778:1 11786:1 11829:2 11838:1 11855:19 11901:3 11977:2 11982:2 11986:2 12035:1 12040:3 12086:4 12096:1 12126:1 12130:1 12131:1 12168:1 12169:2 12227:1 12235:3 12247:2 12263:7 12265:1 12278:1 12342:18 12343:3 12356:1 12402:5 12411:1 12434:1 12452:1 12453:3 12462:1 12466:2 12508:1 12580:1 12585:1 12587:1 12602:1 12638:3 12659:1 12678:1 12697:1 12710:1 12725:1 12742:1 12752:2 12754:1 12761:2 12776:19 12779:1 12790:1 12829:3 12871:2 12882:1 12887:1 12917:1 12920:3 12939:1 12940:1 12942:1 12969:1 13018:1 13039:1 13061:5 13073:1 13087:9 13100:1 13115:3 13178:1 13200:1 13223:1 13227:1 13244:1 13256:1 13266:2 13349:2 13361:2 13379:2 13385:2 13408:1 13472:1 13477:1 13485:1 13487:1 13571:2 13574:1 13582:1 13598:1 13602:1 13627:1 13646:2 13661:2 13666:2 13785:1 13791:1 13798:1 13801:1 13805:2 13819:2 13823:1 13826:1 13844:1 13847:3 13852:1 13856:1 13862:1 13867:1 13870:1 13877:1 13887:1 13916:1 13952:1 13962:5 13981:1 13999:1 14012:2 14016:4 14022:3 14044:1 14047:2 14052:1 14080:1 14084:2 14088:1 14098:4 14145:1 14147:4 14158:5 14170:1 14193:3 14199:1 14200:2 14210:1 14223:1 14231:3 14257:2 14308:1 14327:1 14350:2 14408:2 14415:1 14416:1 14418:1 14419:1 14421:1 14453:1 14489:1 14519:1 14548:2 14549:1 14567:1 14596:1 14612:1 14622:1 14656:1 14704:3 14705:3 14708:2 14713:2 14725:5 14774:1 14783:1 14800:1 14805:1 14833:3 14838:1 14846:1 14876:1 14923:2 14930:2 14932:1 14948:1 14953:3 14977:1 14978:2 14982:1 14999:1 15001:1 15009:1 15035:3 15041:1 15042:3 15066:1 15121:1 15123:1 15133:1 15171:2 15182:1 15198:2 15229:1 15239:1 15248:2 15249:1 15253:4 15261:5 15269:1 15279:1 15306:2 15315:1 15324:1 15344:1 15380:2 15384:1 15415:1 15453:1 15472:1 15484:1 15487:3 15498:1 15514:1 15521:1 15580:1 15588:1 15591:1 15593:1 15608:2 15612:1 15614:1 15616:1 15628:1 15645:1 15670:3 15693:1 15711:1 15717:1 15718:1 15726:1 15732:1 15738:1 15745:1 15758:3 15764:2 15765:1 15779:1 15788:2 15792:1 15812:1 15813:1 15841:1 15847:2 15870:1 15889:1 15901:3 15911:1 15916:1 15966:5 15968:1 15978:1 16067:2 16082:1 16084:1 16109:1 16130:19 16156:1 16170:1 16180:2 16194:3 16205:2 16208:1 16217:1 16301:1 16306:1 16313:1 16326:6 16333:3 16359:1 16373:2 16393:1766 16413:1 16446:1 16476:1 16479:1 16493:2 16505:1 16610:3 16653:1 16675:3 16692:1 16704:2 16706:1 16742:1 16750:1 16763:1 16765:1 16771:1 16799:1 16829:1 16834:1 16839:1 16853:1 16908:1 16910:3 16918:1 16938:1 16939:1 16951:1 16952:4 16973:1 17012:1 17018:2 17024:1 17038:2 17042:2 17056:1 17073:1 17076:6 17079:1 17080:1 17087:1 17100:1 17103:7 17111:2 17114:1 17116:1 17118:1 17164:1 17175:1 17199:1 17218:3 17256:1 17296:1 17298:1 17344:1 17349:2 17387:1 17394:1 17429:2 17439:10 17460:1 17466:1 17473:1 17482:1 17526:1 17572:1 17597:1 17623:1 17646:1 17723:1 17738:1 17742:1 17748:3 17758:1 17760:1 17763:1 17829:3 17836:1 17848:1 17863:2 17934:1 17940:1 17948:1 17957:1 17959:1 17961:1 18010:6 18012:1 18016:2 18017:1 18035:1 18065:1 18067:1 18114:1 18168:1 18177:1 18251:2 18268:1 18292:2 18387:1 18397:1 18399:1 18406:1 18414:1 18436:1 18445:1 18451:3 18454:1 18457:1 18530:1 18533:1 18535:4 18545:1 18548:1 18599:1 18620:3 18631:1 18634:1 18647:1 18655:1 18671:1 18681:1 18683:1 18696:1 18747:1 18756:1 18787:1 18817:2 18831:2 18832:1 18865:10 18909:1 18933:1 18942:1 18963:1 18972:1 19012:5 19016:1 19021:1 19023:1 19030:1 19042:1 19045:7 19079:4 19138:1 19144:1 19150:1 19151:1 19183:1 19190:10 19192:2 19198:1 19252:1 19255:1 19263:2 19264:2 19276:1 19278:1 19281:1 19289:2 19290:1 19296:1 19325:2 19329:1 19333:1 19362:1 19363:1 19366:1 19400:1 19453:1 19489:1 19549:1 19553:3 19561:1 19567:1 19570:1 19609:1 19612:14 19622:1 19648:1 19650:1 19681:1 19693:3 19700:3 19714:2 19758:2 19766:3 19777:1 19778:1 19780:1 19813:1 19819:1 19838:1 19849:1 19854:1 19860:1 19864:3 19874:1 19877:1 19883:2 19887:1 19904:2 19934:1 19953:1 19969:1 19991:2 19998:2 20045:1 20049:28 20093:7 20107:1 20126:3 20145:1 20166:1 20177:1 20183:2 20210:1 20226:2 20235:1 20236:1 20246:2 20256:3 20279:1 20287:1 20289:1 20321:1 20322:1 20331:1 20353:1 20360:1 20399:1 20437:1 20454:1 20466:1 20499:1 20530:1 20546:1 20573:1 20592:1 20603:1 20604:1 20641:1 20648:1 20655:1 20664:1 20683:1 20688:1 20702:1 20748:3 20749:1 20765:1 20767:1 20775:1 20783:1 20810:1 20817:1 20827:1 20849:1 20889:1 20899:2 20900:1 20909:1 20953:2 20984:1 21003:1 21010:1 21038:1 21055:1 21085:1 21091:1 21106:1 21130:1 21148:3 21151:3 21153:2 21154:1 21216:2 21217:2 21272:1 21316:1 21319:6 21324:2 21341:1 21344:1 21346:1 21407:1 21450:1 21463:7 21495:1 21497:1 21504:1 21553:1 21555:1 21557:1 21563:1 21565:1 21569:2 21570:1 21571:3 21577:1 21578:1 21581:1 21619:1 21640:2 21647:2 21655:4 21680:2 21700:1 21715:1 21723:1 21747:1 21765:1 21774:1 21786:1 21797:1 21798:1 21836:3 21838:4 21847:1 21860:1 21864:1 21871:1 21889:6 21907:5 21925:1 21960:1 21995:1 22002:1 22017:1 22019:1 22043:3 22052:3 22076:1 22105:1 22114:1 22118:1 22119:1 22125:2 22128:1 22139:3 22140:1 22160:1 22215:1 22249:4 22253:2 22264:1 22270:1 22274:1 22284:1 22326:1 22336:1 22355:2 22370:1 22393:1 22403:2 22406:2 22407:2 22408:1 22409:1 22410:3 22420:1 22438:1 22442:1 22454:1 22481:1 22495:2 22503:2 22506:1 22514:1 22527:1 22558:1 22581:1 22597:3 22620:1 22680:1 22691:1 22696:17 22712:1 22730:3 22756:1 22765:1 22774:1 22829:3 22848:5 22875:1 22921:1 22941:1 22942:1 22946:18 22950:1 22984:1 22989:1 22997:1 23000:1 23011:1 23015:1 23018:1 23024:1 23036:1 23041:1 23112:1 23129:1 23134:3 23137:2 23145:4 23166:1 23171:1 23224:1 23254:1 23256:1 23272:3 23317:2 23366:1 23386:1 23426:2 23455:1 23456:1 23466:3 23489:2 23543:2 23580:1 23622:1 23643:1 23657:1 23697:1 23712:1 23768:2 23832:3 23846:1 23878:2 23911:3 23926:1 23941:1 23963:1 24009:2 24018:1 24021:2 24033:1 24067:2 24068:1 24069:1 24105:2 24108:1 24119:2 24122:1 24130:3 24157:1 24183:1 24184:5 24185:1 24186:1 24187:1 24191:1 24192:1 24195:1 24216:1 24235:1 24242:1 24244:1 24254:1 24257:1 24270:1 24290:1 24291:1 24301:1 24303:1 24312:1 24334:1 24343:2 24344:1 24360:1 24373:19 24381:1 24439:3 24490:1 24498:1 24504:1 24514:1 24520:1 24522:1 24526:1 24537:1 24556:10 24559:2 24573:1 24622:2 24640:2 24682:7 24687:1 24690:1 24701:2 24702:1 24716:1 24756:1 24776:1 24797:1 24826:1 24839:2 24843:1 24883:1 24885:1 24928:1 24934:3 24958:1 24969:1 24974:1 25055:2 25064:1 25074:2 25087:1 25099:10 25107:1 25126:1 25129:1 25154:1 25175:1 25237:1 25239:1 25288:1 25300:1 25320:2 25321:1 25350:2 25387:1 25397:1 25402:3 25407:1 25408:19 25436:1 25452:18 25464:1 25471:1 25476:3 25501:1 25536:5 25537:1 25552:2 25556:2 25566:1 25579:1 25589:1 25592:2 25595:2 25621:2 25640:1 25662:1 25668:3 25713:1 25796:1 25803:1 25811:1 25815:1 25847:1 25853:1 25867:1 25878:3 25888:1 25916:1 25934:1 25937:1 25967:1 26000:1 26004:1 26024:1 26027:1 26031:1 26036:1 26037:1 26038:1 26093:1 26113:1 26126:18
13 28:1 36:1 44:2 48:1 83:1 96:1 111:1 149:6 162:1 200:1 229:1 251:3 263:2 297:1 301:1 302:1 321:1 334:1 338:1 345:1 346:2 349:1 357:1 382:1 386:2 387:1 402:2 430:1 446:1 457:1 516:1 525:3 553:1 571:1 605:1 618:6 650:1 668:1 699:2 701:1 721:1 722:2 725:1 736:2 739:1 744:1 746:1 767:1 768:1 784:1 788:1 791:2 795:3 796:2 820:2 822:1 824:1 837:1 849:2 875:1 878:2 893:1 911:2 914:1 931:1 932:1 998:1 1003:1 1011:1 1050:1 1053:5 1065:1 1077:1 1089:1 1176:1 1193:1 1206:1 1229:2 1267:1 1288:1 1351:1 1373:1 1395:4 1399:7 1408:1 1412:2 1452:1 1465:1 1471:1 1472:1 1473:2 1496:1 1498:8 1500:1 1587:1 1611:4 1652:1 1670:1 1690:1 1697:1 1704:1 1713:1 1743:1 1803:1 1805:1 1812:1 1817:2 1917:1 1919:3 1943:1 1951:1 1981:1 1991:1 1993:1 2003:1 2022:1 2026:1 2028:1 2030:3 2034:2 2036:2 2037:1 2045:3 2055:1 2061:2 2069:1 2073:1 2082:2 2129:1 2130:1 2134:1 2151:1 2155:1 2169:1 2171:1 2187:1 2188:1 2192:2 2206:1 2210:1 2223:1 2243:1 2252:1 2259:3 2284:1 2287:3 2292:1 2294:1 2302:3 2310:1 2322:1 2343:1 2368:1 2373:1 2412:1 2414:1 2416:1 2423:1 2428:1 2448:3 2466:3 2467:1 2475:5 2483:1 2494:2 2515:1 2527:1 2528:1 2531:4 2534:1 2537:1 2539:2 2554:2 2562:1 2568:2 2594:1 2641:3 2642:1 2686:3 2725:2 2759:1 2782:1 2792:2 2795:1 2817:1 2822:1 2829:3 2873:2 2892:1 2922:1 2925:1 2976:1 2977:1 2985:1 2990:1 3005:1 3009:1 3052:1 3064:1 3070:1 3073:1 3087:1 3109:1 3131:3 3172:1 3199:1 3206:3 3227:3 3246:2 3265:1 3293:1 3313:2 3320:1 3337:1 3346:3 3351:4 3355:1 3363:1 3372:1 3385:2 3386:5 3393:1 3424:1 3452:1 3454:2 3460:1 3510:1 3512:1 3517:1 3526:1 3536:1 3538:2 3558:2 3572:1 3584:1 3604:1 3614:1 3635:1 3667:1 3674:2 3679:1 3709:1 3710:1 3752:1 3801:1 3827:1 3839:3 3861:1 3864:1 3880:1 3891:1 3914:1 3949:3 3972:5 3980:1 3986:1 4025:2 4039:1 4048:4 4052:1 4055:3 4068:2 4087:1 4089:3 4119:1 4125:2 4141:1 4147:3 4165:1 4167:1 4234:1 4244:1 4251:2 4276:5 4318:5 4323:1 4344:1 4349:1 4376:3 4378:1 4391:2 4392:2 4399:1 4402:1 4407:1 4408:1 4409:4 4411:1 4414:1 4419:1 4461:2 4477:1 4488:1 4509:1 4546:1 4580:1 4600:2 4604:3 4619:1 4650:1 4652:1 4655:2 4712:18 4729:1 4740:1 4743:1 4749:1 4766:1 4833:1 4841:2 4870:1 4872:1 4874:1 4885:2 4895:1 4920:2 4944:1 4996:2 5016:3 5023:1 5040:1 5065:1 5073:1 5076:1 5095:1 5109:1 5124:1 5168:1 5170:2 5172:2 5253:1 5306:1 5322:2 5326:1 5356:1 5382:1 5404:2 5406:1 5409:1 5410:2 5459:2 5475:1 5487:1 5489:1 5514:4 5547:1 5556:1 5572:2 5575:1 5601:1 5609:1 5610:1 5638:1 5704:1 5721:1 5735:1 5753:1 5865:1 5947:1 5964:1 5965:2 5970:3 5971:2 5978:2 6006:18 6097:2 6138:1 6147:1 6162:1 6197:1 6203:1 6227:1 6290:2 6291:2 6305:1 6311:1 6340:1 6346:2 6393:1 6400:1 6413:1 6415:1 6432:1 6476:1 6482:3 6531:1 6560:1 6563:1 6658:2 6662:2 6666:1 6734:1 6743:1 6761:10 6776:2 6786:18 6801:1 6807:16 6825:4 6877:9 6882:1 6963:1 6966:1 6983:1 6988:1 6991:2 6999:1 7039:2 7061:1 7091:1 7095:1 7096:17 7161:1 7167:2 7182:3 7198:2 7208:1 7334:1 7346:1 7378:1 7380:1 7422:2 7435:2 7474:2 7489:1 7492:1 7509:1 7566:1 7567:1 7578:1 7583:1 7588:3 7592:1 7599:2 7637:1 7649:1 7671:1 7677:1 7678:3 7706:1 7714:1 7729:1 7769:1 7847:1 7856:1 7867:1 7876:1 7878:1 7879:1 7880:3 7881:1 7884:1 7886:1 7915:1 7916:1 7925:3 7937:1 7976:2 7986:1 7989:2 7990:1 8053:1 8058:3 8070:1 8099:1 8106:1 8114:1 8179:1 8187:1 8190:1 8201:1 8214:1 8215:3 8222:1 8236:1 8245:4 8246:1 8253:1 8262:1 8271:1 8277:2 8319:1 8334:1 8338:1 8383:1 8395:2 8397:1 8424:1 8467:1 8479:1 8486:3 8500:1 8507:6 8508:1 8511:1 8520:2 8521:3 8530:2 8558:1 8569:1 8591:3 8594:1 8605:1 8607:2 8608:3 8633:1 8638:1 8645:1 8660:1 8688:1 8705:1 8725:6 8735:1 8740:1 8743:1 8783:1 8804:2 8808:2 8818:3 8833:1 8848:1 8898:1 8907:1 8915:1 8916:1 8933:1 8940:1 8959:1 8978:1 9017:1 9049:1 9053:1 9080:1 9103:1 9113:3 9126:1 9136:1 9149:1 9154:1 9174:1 9177:1 9206:1 9225:1 9231:1 9235:1 9241:2 9247:1 9251:6 9255:1 9260:1 9297:2 9306:1 9307:1 9339:2 9371:1 9374:1 9387:1 9388:1 9394:2 9395:1 9400:7 9401:1 9456:1 9465:1 9471:1 9491:2 9494:1 9503:1 9517:1 9523:1 9546:2 9572:1 9586:3 9595:4 9598:2 9602:1 9605:1 9609:1 9628:1 9646:18 9690:2 9721:3 9739:1 9745:1 9753:1 9843:1 9853:1 9855:1 9858:2 9918:1 9932:1 9933:1 9981:1 9993:6 10042:2 10044:3 10052:1 10107:1 10112:3 10124:3 10179:1 10222:1 10228:1 10229:1 10231:2 10232:1 10238:2 10244:2 10245:1 10259:3 10274:2 10280:1 10287:2 10300:1 10304:2 10314:1 10352:1 10369:2 10502:1 10503:3 10553:2 10598:1 10599:5 10610:6 10615:1 10636:1 10637:1 10640:5 10650:3 10654:1 10656:1 10664:1 10677:1 10698:1 10716:1 10721:3 10746:1 10750:2 10793:1 10796:1 10818:1 10944:1 10947:1 10971:1 10978:19 10986:1 11038:1 11055:1 11061:1 11094:1 11116:1 11131:1 11132:1 11147:1 11149:1 11151:2 11158:2 11178:1 11196:17 11207:1 11256:1 11257:1 11267:1 11368:1 11371:1 11465:1 11481:2 11484:1 11496:1 11508:1 11516:1 11535:1 11552:3 11558:2 11562:1 11600:3 11602:1 11617:1 11627:3 11635:1 11658:1 11662:1 11675:1 11678:2 11687:1 11695:2 11776:1 11778:1 11786:1 11829:2 11838:1 11855:19 11901:3 11977:2 11982:2 11986:2 12009:1 12035:1 12040:3 12086:4 12096:1 12126:1 12130:1 12131:1 12168:1 12169:2 12227:1 12235:3 12247:2 12263:7 12265:1 12278:1 12342:18 12343:3 12356:1 12402:5 12411:1 12434:1 12452:1 12453:3 12462:1 12466:2 12508:1 12580:1 12585:1 12587:1 12602:1 12638:3 12659:1 12678:1 12697:1 12710:1 12725:1 12742:1 12752:2 12754:1 12761:2 12776:19 12779:1 12790:1 12822:1 12829:3 12871:2 12882:1 12887:1 12917:1 12920:3 12939:1 12940:1 12942:1 12969:1 13018:1 13039:1 13061:5 13073:1 13087:9 13095:1 13100:1 13115:3 13178:1 13200:1 13223:1 13227:1 13244:1 13256:1 13266:2 13319:1 13349:2 13361:2 13379:2 13385:2 13408:1 13472:1 13477:1 13485:2 13487:1 13571:2 13574:1 13582:1 13598:1 13602:1 13625:1 13627:1 13646:2 13661:2 13666:2 13785:1 13791:1 13798:1 13801:1 13805:2 13819:2 13823:1 13826:1 13844:1 13847:3 13852:1 13856:1 13862:1 13867:1 13870:1 13877:1 13887:1 13916:1 13952:1 13962:5 13981:1 13999:1 14012:2 14016:4 14022:3 14044:1 14047:2 14052:1 14080:1 14084:2 14088:1 14098:4 14111:1 14145:1 14147:4 14158:5 14167:1 14170:1 14193:3 14199:1 14200:2 14210:1 14223:1 14231:3 14257:2 14308:1 14327:1 14350:2 14408:2 14415:1 14416:1 14418:1 14419:1 14421:1 14453:1 14489:1 14519:1 14548:2 14549:1 14567:1 14596:1 14612:1 14622:1 14656:1 14704:3 14705:3 14708:2 14713:2 14725:5 14774:1 14783:1 14800:1 14805:1 14833:3 14838:1 14840:1 14846:1 14876:1 14923:2 14930:2 14932:1 14948:1 14953:3 14977:1 14978:2 14982:1 14999:1 15001:1 15009:1 15035:3 15041:1 15042:3 15066:1 15121:1 15123:1 15133:1 15171:2 15182:1 15198:2 15229:1 15239:1 15248:2 15249:2 15253:4 15261:5 15269:1 15279:1 15306:2 15315:1 15324:1 15344:1 15380:2 15384:1 15415:1 15453:1 15472:1 15484:1 15487:3 15498:1 15514:1 15521:1 15580:1 15588:1 15591:1 15593:1 15608:2 15612:1 15614:1 15616:1 15628:1 15645:1 15670:3 15693:1 15711:1 15717:1 15718:1 15726:1 15732:1 15738:1 15745:1 15758:3 15764:2 15765:1 15779:1 15788:2 15792:1 15812:1 15813:1 15841:1 15847:2 15870:1 15889:1 15901:3 15911:1 15916:1 15966:5 15968:1 15978:1 16022:1 16067:2 16082:1 16084:1 16109:1 16130:19 16156:1 16170:1 16180:2 16194:3 16205:2 16208:1 16217:1 16301:1 16306:1 16313:1 16326:6 16333:3 16359:1 16373:2 16393:1819 16413:1 16446:1 16476:1 16479:1 16493:2 16505:1 16610:3 16653:1 16675:3 16692:1 16704:2 16706:1 16742:1 16750:1 16763:1 16765:1 16771:1 16799:1 16829:1 16834:1 16839:1 16853:1 16908:1 16910:3 16918:1 16938:1 16939:1 16951:1 16952:4 16973:1 17012:1 17018:2 17024:1 17038:2 17042:2 17056:1 17073:1 17076:6 17079:1 17080:1 17087:1 17100:1 17103:7 17111:2 17114:1 17116:1 17118:1 17164:1 17175:1 17199:1 17218:3 17256:1 17296:1 17298:1 17344:1 17349:2 17387:1 17394:1 17429:2 17439:10 17460:1 17466:1 17473:1 17482:1 17496:1 17526:1 17572:1 17597:1 17623:1 17646:1 17723:1 17738:1 17742:1 17748:3 17758:1 17760:1 17763:1 17829:3 17836:1 17848:1 17863:2 17884:2 17934:1 17940:1 17948:1 17957:1 17959:1 17961:1 18010:6 18012:1 18016:2 18017:1 18035:1 18065:1 18067:1 18114:1 18168:1 18177:1 18251:2 18259:1 18268:1 18292:2 18387:1 18397:1 18399:1 18406:1 18414:1 18436:1 18445:1 18451:3 18454:1 18457:1 18530:1 18533:1 18535:4 18545:1 18548:1 18599:1 18620:3 18631:1 18634:2 18647:1 18655:1 18671:1 18681:1 18683:1 18696:1 18747:1 18756:1 18787:1 18817:2 18831:2 18832:1 18865:10 18909:1 18933:1 18942:1 18963:1 18972:1 19012:5 19016:1 19021:1 19023:1 19030:1 19042:1 19045:7 19079:4 19138:1 19144:1 19150:1 19151:1 19183:1 19190:10 19192:2 19198:1 19252:1 19255:1 19263:2 19264:2 19276:1 19278:1 19281:1 19289:2 19290:1 19296:1 19325:2 19329:1 19333:1 19362:1 19363:1 19366:1 19400:1 19453:1 19489:1 19549:1 19553:3 19561:1 19567:1 19570:1 19609:1 19612:14 19622:1 19648:1 19650:1 19681:1 19693:3 19700:3 19714:2 19733:1 19758:2 19766:3 19777:1 19778:1 19780:1 19813:1 19819:1 19838:1 19849:1 19854:1 19860:1 19864:3 19874:1 19877:1 19883:2 19887:1 19904:2 19934:1 19953:1 19969:1 19991:2 19998:2 20045:1 20049:28 20093:7 20107:1 20126:3 20145:1 20166:1 20177:1 20183:2 20210:1 20226:2 20235:1 20236:1 20246:2 20256:3 20279:1 20287:1 20289:1 20321:1 20322:1 20331:1 20353:1 20360:1 20399:1 20437:1 20454:1 20466:1 20499:1 20530:1 20546:1 20573:1 20592:1 20603:1 20604:1 20641:1 20648:1 20655:1 20664:1 20683:1 20688:1 20702:1 20748:3 20749:1 20765:1 20767:1 20775:1 20783:1 20810:1 20817:1 20827:1 20849:1 20852:1 20870:2 20889:1 20899:2 20900:1 20909:1 20953:2 20984:1 21003:1 21010:1 21038:1 21055:2 21085:1 21091:1 21106:1 21130:1 21148:3 21151:3 21153:2 21154:1 21216:2 21217:2 21237:1 21272:1 21316:1 21319:6 21324:2 21341:1 21344:1 21346:1 21407:1 21450:1 21463:7 21495:1 21497:1 21504:1 21553:1 21555:1 21557:1 21563:1 21565:1 21569:2 21570:1 21571:3 21577:1 21578:1 21581:1 21619:1 21640:2 21647:2 21655:4 21680:2 21700:1 21715:1 21723:1 21747:1 21765:1 21774:1 21786:1 21797:1 21798:1 21836:3 21838:4 21847:1 21860:1 21864:1 21871:1 21889:6 21907:6 21925:1 21960:1 21995:1 22002:1 22017:1 22019:1 22043:3 22052:3 22076:1 22105:1 22114:1 22118:1 22119:1 22125:2 22128:1 22139:3 22140:1 22160:1 22215:1 22249:5 22253:2 22264:1 22270:1 22274:1 22284:1 22326:1 22336:1 22355:2 22370:1 22393:1 22403:2 22406:2 22407:2 22408:1 22409:1 22410:3 22420:1 22438:1 22442:1 22454:1 22481:1 22495:2 22503:2 22506:1 22514:1 22527:1 22558:1 22581:1 22597:3 22620:1 22680:1 22691:1 22696:17 22712:1 22730:3 22756:1 22765:1 22774:1 22829:3 22848:5 22875:1 22921:1 22941:1 22942:1 22946:18 22950:1 22984:1 22989:1 22997:1 23000:1 23011:1 23015:1 23018:1 23024:1 23036:1 23041:1 23112:1 23129:1 23134:3 23137:2 23145:4 23166:1 23171:1 23224:1 23254:1 23256:1 23272:3 23317:2 23366:1 23386:1 23426:2 23455:1 23456:1 23466:3 23489:2 23543:2 23580:1 23622:1 23643:1 23657:1 23697:1 23712:1 23768:2 23832:3 23846:1 23878:2 23911:3 23926:1 23941:1 23963:1 24009:2 24018:1 24021:2 24033:1 24067:2 24068:1 24069:1 24105:2 24108:1 24119:2 24122:1 24130:3 24157:1 24183:1 24184:5 24185:1 24186:1 24187:1 24191:1 24192:1 24195:1 24216:1 24235:1 24242:1 24244:1 24254:1 24257:1 24270:1 24290:1 24291:1 24301:1 24303:1 24312:1 24334:1 24343:2 24344:1 24360:1 24373:19 24381:1 24439:3 24490:1 24498:1 24504:1 24514:1 24520:1 24522:1 24526:1 24537:1 24556:10 24559:2 24573:1 24622:2 24640:2 24682:7 24687:1 24690:1 24701:2 24702:1 24716:1 24756:1 24776:1 24797:1 24826:1 24839:2 24843:1 24883:1 24885:1 24928:1 24934:3 24958:1 24969:1 24974:1 25055:2 25064:1 25074:2 25087:1 25099:10 25107:1 25126:1 25129:1 25154:1 25175:1 25237:1 25239:1 25288:1 25300:1 25320:2 25321:1 25350:2 25387:1 25397:1 25402:3 25407:1 25408:19 25436:1 25452:18 25464:1 25471:1 25476:3 25501:1 25536:5 25537:1 25545:1 25552:2 25556:2 25566:1 25579:1 25589:1 25592:2 25595:2 25621:2 25640:1 25662:1 25668:3 25713:1 25796:1 25803:1 25811:1 25815:1 25847:1 25853:1 25867:1 25878:3 25888:2 25916:1 25934:1 25937:1 25967:1 26000:1 26004:1 26024:1 26027:1 26031:1 26036:1 26037:1 26038:1 26093:1 26113:1 26126:18
|
29a112744cb40b146b294ddbc489030548fea66f | a77a50f3f25853ec6a7b5b8548a13b7a4b4b3980 | /rsc/sceneries/country.sce | d997a9286fe544d21106a391bc6399993b0fb301 | [] | no_license | nidoro/PointlessWars | f051b41cb71df783141e5953d2c03d9cf305150a | 2e8a9c073026ebb07454922cc3caec41d8c68f29 | refs/heads/master | 2021-03-27T13:12:04.182891 | 2016-11-08T15:23:16 | 2016-11-08T15:23:16 | 71,281,107 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,824 | sce | country.sce | %Background
cenario_agricultura.bg
%Music
forest-loop.ogg
% OBJECT-NAME X-RELATIVE Y-RELATIVE X-SCALE Y-SCALE H-FLIP V-FLIP
crow 0.0833 0.1074 1.0000 1.0000 0 0
flagb 0.0952 0.7422 1.0000 1.0000 0 0
crow 0.0998 0.0862 1.0000 1.0000 0 0
crow 0.9087 0.0844 1.0000 1.0000 0 0
flagr 0.8566 0.7528 1.0000 1.0000 0 0
crow 0.9289 0.1074 1.0000 1.0000 0 0
flagb 0.1940 0.7457 1.0000 1.0000 0 0
flagr 0.9554 0.7510 1.0000 1.0000 0 0
house 0.1282 0.9035 1.0000 1.0000 0 0
pig 0.9664 0.9567 1.0000 1.0000 0 0
pig 0.7532 0.9674 1.0000 1.0000 0 0
pig 0.3423 0.8911 1.0000 1.0000 0 0
pig 0.0211 0.9000 1.0000 1.0000 0 0
pig 0.1831 0.9656 1.0000 1.0000 0 0
pig 0.4311 0.8096 1.0000 1.0000 0 0
pig 0.7047 0.8202 1.0000 1.0000 0 0
house 0.8895 0.9106 1.0000 1.0000 0 0
|
2a9f1c0baa4bb68cdc16c13eb046fa58487c4efd | e8bcf3f9ffdfb367940fb9ed498b1c598ce92e65 | /comet.sce | f5d78ff341c641740879eca4bc6b963e65c9418d | [] | no_license | yoddha24/Intro-to-Scilab | 1fe25aee3ebd319bc2c9e2cf7c25d7050b09890e | 4c458c1bea6880839ebae07adfd39dea0eac4e2c | refs/heads/master | 2021-01-20T18:24:05.191473 | 2016-08-08T13:45:16 | 2016-08-08T13:45:16 | 65,207,356 | 1 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 177 | sce | comet.sce | // Program to demonstarte usage of comet
x=linspace(-%pi,%pi,500);
comet(x,%s^5-%s^3+%s+5)
xtitle('Using comet function to animate an equation')
xlabel('x')
ylabel('y')
|
4d0cc470a5bb98f94f096aed998cc9ab047b6976 | 449d555969bfd7befe906877abab098c6e63a0e8 | /821/CH5/EX5.57/5_57.sce | e130c96f7d31bbcecec51803bc8dc5a2f388250a | [] | 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 | 572 | sce | 5_57.sce | T0=373;//temperature in kelvin//
Kb=0.52;//value of Kb in deg per mol//
T1=373.208;//temperature in kelvin//
W2=3.40;//weight of BaCl2 in grams//
W1=100;//weight of water boils in grams//
dTb=T1-T0;//change in temperature//
Mobs=(Kb*1000*W2)/(dTb*W1);//Molecular weight of BaCl2 observed in grams//
printf('Molecular weight of BaCl2 observed=Mobs=%fgrams',Mobs);
Mthr=208.4;//Theoritical Molecular weight of BaCl2 in grams//
i=Mthr/Mobs;
a=0.5*(i-1);//apparent degree of dissociation of BaCl2//
printf('\nApparent degree of dissociation of BaCl2=a=%f',a);
|
09c5129417b69918ca3c617476d0a46f199ad135 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1931/CH11/EX11.13/13.sce | 0e8be01d076f699bd091a9edd58e27b51d6ff404 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 533 | sce | 13.sce | clc
clear
//INPUT DATA
RH=0.0125//Hall coefficient of a sample n-type semiconductor in m^3 C^-1
rh=-0.0125//Hall coefficient of a sample n-type semiconductor in m^3 C^-1
me=0.36//electron mobility in m^2 V^-1 s^-1
EH=100//electric field in V/m
e=1.6*10^-19//charge of electron in coulombs
//CALCULATION
n=(1/(RH*e))//The density of the charge carrier in m^-3
c=(n*e*me)//conductivity of n-type semiconductor in ohm^-1 m^-1
J=(c*EH)//The current density in A/m^2
//OUTPUT
printf('The current density is %i A/m^2',J)
|
a1d77d0db39955a184d386a7fe886c37c3a08685 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2882/CH7/EX7.3/Ex7_3.sce | 4565f5f56ed8df0e9dd10fff851034df29555aa2 | [] | 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 | 618 | sce | Ex7_3.sce | //Tested on Windows 7 Ultimate 32-bit
//Chapter 7 Field Effect Transistors Pg no. 224 and 225
clear;
clc;
//Given Data
IDSS=10D-3;//drain saturation current in amperes
VP=6;//pinch-off voltage in volts
VGS=-3;//gate to source voltage in volts
//Solution
disp("(i)");
ID=IDSS*(1-VGS/(-VP))^2;//drain current for given VGS in amperes
printf("ID = %.1f mA",ID*10^3);
disp("(ii)");
gm0=-2*IDSS/(-VP);//transconductance for VGS=0 Volts in Siemens
printf("gm0 = %.2f mS",gm0*10^3);
disp("(iii)");
gm=gm0*(1-VGS/(-VP));//transconductance for given VGS in Siemens
printf("gm = %.2f mS",gm*10^3);
|
30b155422db47922895004b4d744c16cfc5a99c2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2735/CH16/EX16.4/Ex16_4.sce | 183390c2047e0bd4811447ab98417cd38af36eff | [] | 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 | 644 | sce | Ex16_4.sce | clc
clear
//Initialization of variables
m1=322.3 //Mass of Co2
m2=2 //Mass of SO2
m3=926 //Mass of N2
basis=121.94 //Basis taken
//calculations
m=m1+m2+m3
ratio=m/basis
dh=5777 //Btu/mol
h1=dh*7.364
h2=14037
h3=130501
H=h1+h2+h3
hrat=H/basis
//results
printf("Mass of dry flue gases = %.2f lbm dry flue gas/lbm fuel ash and moisture free",m/100)
printf("\n Mass of dry flue gases = %.2f lbm dry flue gas/lbm fuel as fired ",ratio)
printf("\n Energy carried away = %.1f btu/mol coal as fired which is same as = %.1f Btu/lbm mol coal ",H, hrat)
disp("The answers are a bit different due to rounding off errors in textbook")
|
b9409183b6a60d8f4d8eca210da880518e20cf41 | 91bba043768342a4e23ee3a4ff1aa52fe67f7826 | /cs/142/4/tests/test19.tst | 2534192597aa39646805840f0e5ef69923fb8cde | [] | no_license | MaxNanasy/old-homework | 6beecc3881c953c93b847f1d0d93a64ec991d6de | 48b7997a49a8f111344f30787c178e1661db04bd | refs/heads/master | 2016-09-08T04:37:44.932977 | 2010-03-02T00:48:59 | 2010-03-02T00:48:59 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 157 | tst | test19.tst | type t1 = array 10 of int;
short proc(short a) { return a; }
main()
{
var a : t1;
const c = 11;
a[1] = ::proc(c);
if (a[1] == c) {
ERROR
}
}
|
0dfc0557359fd0c7237182c3d9df04f71c4d9b7f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1184/CH7/EX7.5/Ex7_5.sce | 236d531e28ca3addd42450ebdd6e6b29aeedc593 | [] | 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 | 246 | sce | Ex7_5.sce | //Example 7-5, Page No - 234
clear
clc
Vin = 0.8
Vm =1
mu =255
Vout = (Vm*log(1+mu*(Vin/Vm)))/log(1+mu)
gain =Vout/Vin
printf('The output voltage of the compander %.2f volt',Vout)
printf('\n Gain of the compander is %.1f',gain)
|
5a18df689f003030ff7b6424b199d189246135ef | 31c6b1437c7dc52b977bf6790b1b24eff7f7b5f5 | /FindInterestingPeaks.sci | d77f02eb5990c2911ff7ae519411ef21a3c2ae08 | [] | no_license | RobinEccleston/Scilab-Snippets | 4744c071ef891cc4905cbecc000a1f5bf667a8f7 | 7886058a25ec4821cfeba6d8e148a0a2aced330c | refs/heads/master | 2021-01-26T00:48:02.042794 | 2020-02-26T11:35:49 | 2020-02-26T11:35:49 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,370 | sci | FindInterestingPeaks.sci | ModuleName="FindInterestingPeaks";
Version="0.01";
DateModified="06-Mar-2015";
DateOfCreation="06-Mar-2015";
Author="Rob Eccleston";
Description="When passed a waveform, attempts to find interesting peaks, that is ..
peaks that are higher than the surrounding peaks, and so not just a local peak ..
due to noise.";
mprintf("Loading " + ModuleName + " V" + Version + ", Last Modified: " + DateModified + "\n")
function InterestingPeaks=FindInterestingPeaks(AbsorptionSpectrum)
[Peaks Troughs]=findallpeaks(AbsorptionSpectrum)
//peaks contains a list of the index of all of the peaks in the passed Array
//and troughs contains the index of all the troughs.
PeakSampleLength=3 //how many samples will we average it over?
InterestingPeaks=[] //store all of the peaks that pass the test in this variable.
for i=1:max(size(Peaks)) //loop through all of the peaks that were found
if i==50 then
//pause
end
midpoint=PeakSampleLength/2; //we want to average the same amount of samples on either side.
LowerRange=floor(midpoint); //steps below the sample to check
UpperRange=ceil(midpoint)-1; //and steps above the sample to check
PeakIndex=Peaks(i) //get the index of the current peak
SampleRange=PeakIndex-PeakSampleLength:PeakIndex+PeakSampleLength //generate indexes over the sample range
//that we will look at
for j=1:max(size(SampleRange)) //loop through each of the indexes for the sample range
if SampleRange(j)>MaxSampleNumber then //if it is out of bounds
SampleRange(j)=PeakSampleLength //if it is out of bounds, set it to the index of the value we are
//checking so that it won't have any effect on the output.
end
if SampleRange(j)<1 then //similarly if it is an invalid index do the same
SampleRange(j)=PeakSampleLength
end
end
MaxValue=0 //temporary variable holding the maximum value in this group
MaxIndex=0 //the index of the maximum value
for j=1:max(size(SampleRange))
TestValue=AbsorptionSpectrum(SampleRange(j)) //get the current test value, which is the value with the index
//in "SampleRange"
if TestValue>MaxValue //if it is the largest value we've seen in this group
MaxValue=TestValue //then update the variables to remember this is the max value
MaxIndex=SampleRange(j) //and update the index of it also.
end
end
if MaxIndex==PeakIndex then //if the index of the peak is also the index of the highest neighbouring values then it
//really is a genuine peak and we should add it to our array.
if MaxValue>0 then //set a value if we want to clip the peaks, or set to 0 to allow all.
InterestingPeaks=[InterestingPeaks PeakIndex]
end
end
end
endfunction
|
fa3adb67e84cb5bbd67d734c48db25df02c45a5e | 8b33899f15bd0509e32f6c06319b7b1557c745f5 | /c15.sci | c5b202496a519cd6d8c440c0e7a04017a2175d1b | [] | no_license | c00kiemon5ter/NumericalAnalysis | fd162663f6a9a4cc6c648e41a1412fa71e83a75c | 1ff51ff805017100ebb87a98b5fef7acca3d0692 | refs/heads/master | 2021-01-01T19:15:21.559444 | 2014-06-25T09:39:25 | 2014-06-25T09:39:25 | 8,290,126 | 1 | 1 | null | 2014-06-25T09:39:25 | 2013-02-19T12:51:16 | Scilab | UTF-8 | Scilab | false | false | 2,719 | sci | c15.sci | // Exercise C15
// ------------
// For the function f(x)= sin(x) find the following splines
// 1) linear set by the points (4, f(4) and (6, f(6))
// 2) linear set by the points (4.5, f(4.5) and (5.5, f(5.5))
// 3) cubic set by the points (4, f (4), (4.5, f(4.5),(5.5, f(5.5)) and (6, f(6))
// 4) the hermite polynomial in the points (4, f(4)), (4, f′(4)), (6, f(6)) and (6, f′(6))
// 5) the hermite polynomial in the points (4.5, f(4.5)), (4.5, f′(4.5)), (5.5, f(5.5)) and (5.5, f ′(5.5))
// for each of those calculate the error for x=5 for the space [4.6]
// ---------------------------------------------------------
function y = linearA(x)
y = f(4) + (f(6) - f(4)/(6-4))*(x - 4);
endfunction
// ---------------------------------------------------------
function y = linearB(x)
y = f(4.5) + (f(5.5) - f(4.5)/(5.5-4.5))*(x - 4.5);
endfunction
// ---------------------------------------------------------
function y = f(x)
y = sin(x);
endfunction
// ---------------------------------------------------------
function y = def(x) //the derivative of f
y = cos(x);
endfunction
// ---------------------------------------------------------
function ci=cubicinterpolation(x)
ci= -0.7568025 - 0.4414552*(x-4)+0,47563*((x^2)-8.5*x+18)-0.0443951*((x^3)-14*(x^2)+18*x-52.25);
endfunction
// ---------------------------------------------------------
function hp=hermite1(x)
//p= f(4.5)*(1+2*(x-4.5))*(x^2-9*x+(4.5)^2) + def(4.5)*(x-4.5)*(x^2-9*x+(4.5)^2) + f(5.5)*(1-2*(x-5.5))*(x^2-11*x+(5.5)^2) + def(5.5)*(x-5.5)*(x^2-11*x+(5.5)^2) ;
for i=1:length(x) // for all the spots of the polynomial calculate the result of the hermite polynomial
h01=(1-(x(i)-4))*((x(i)^2 - 8*x(i)+16)/4); //calculate the Hi1 and Hi2
h02=(x(i)-4)*((x(i)^2-8*x(i)+16)/4);
h12=(1-(x(i)-6))*((x(i)^2-12*x(i)+36)/4);
h22=(x(i)-6)*((x(i)^2-12*x(i)+36)/4);
hp(i)=f(4)*h01 + def(4)*h02+ f(6)*h12 + def(6)*h22;
end
endfunction
// ---------------------------------------------------------
function p=hermite2(x)
for i=1:length(x)
h01=(1-2*(x(i)-4.5))*(x(i)^2-9*x(i)+(4.5)^2);
h02=(x(i)-4.5)*(x(i)^2-9*x(i)+(4.5)^2);
h12=(1-2*(x(i)-5.5))*(x(i)^2-11*x(i)+(5.5)^2);
h22=(x(i)-5.5)*(x(i)^2-11*x(i)+(5.5)^2);
p(i)= f(4.5)*h01 + def(4.5)*h02 + f(5.5)*h12 + def(5.5)*h22 ;
end
endfunction
// ---------------------------------------------------------
// Results:
// For each function the error is Q(x)= Sin(x)- P(x) where P(x) is
// the polynomial that approaches it's true value. So the max error is
// calculated from the derivative of Q(x).
// The max errors are:
// 1) 0.2794155
// 2) 0.3567225
// 3) 1.3602974
// 4) 2.0017846
// 5) 8.4472365
|
f799038397220567e26febf07d0fabad0277a3fc | 449d555969bfd7befe906877abab098c6e63a0e8 | /1997/CH9/EX9.12/example12.sce | f598ccf8495b1f04a4384c3960a73f0f412f630e | [] | 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 | 615 | sce | example12.sce | //Chapter-9 example 12
//=============================================================================
clc;
clear;
//input data
F = 4*10^9;//radar operating frequency in hz
Vo = 3*10^8;//velocity of EM wave in m/s
NNBW = 8;//Null to Null beamwidth in degrees
//Calculations
lamda = Vo/F;//wavelength
Da = (140*lamda)/NNBW;
A = (%pi*Da*Da)/4;//Area of antenna
Ac = 0.65*A;//capture area
//Output
mprintf('\n Mouth diameter of parabolic reflector is %3.3f m \n Capture area is %3.2f m^2',Da,Ac);
//=============end of the program==============================================
|
04b918e27c8eb46ff7abb0e3e1d825f6f7e7d3da | 449d555969bfd7befe906877abab098c6e63a0e8 | /2471/CH1/EX1.1/Ex1_1.sce | 1958fb9df51679ab3eb2feb72cd78102434eb859 | [] | 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 | 375 | sce | Ex1_1.sce |
clc;
// Example 1.1
printf('Example 1.1\n\n');
printf(' Page No. 08\n\n');
// Solution
// Given
m1= 40*10^3;// fuel oil in gallons per year
ga= 4.545*10^-3;// m^3
m= m1*ga;// fuel oil in m^3 per year
Cv1= 175*10^3;// Btu per gallons
Bt= .2321*10^6;// J per m^3
Cv= Cv1*Bt;// in J per year per m^3
q=m*Cv;// in J per year
printf(' Heat available is %3.2e J per year\n',q)
|
05e8b255e5edc2ad95963b7804260d27623d8dc5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1895/CH2/EX2.10/EXAMPLE2_10.SCE | d7ad0722c045a41e6f7511cd3675125e894296f1 | [] | 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 | 735 | sce | EXAMPLE2_10.SCE | //ANALOG AND DIGITAL COMMUNICATION
//BY Dr.SANJAY SHARMA
//CHAPTER 2
//AMPLITUDE MODULATION
clear all;
clc;
printf("EXAMPLE 2.10(PAGENO 57)");
//given
m1 = .4//modulation index
I_t1 = 11//initial antenna current in ampers
I_t2 = 12//final antenna current in ampers
//calculations
I_c = (I_t1/(1+(m1^2/2))^.5);// formula for carrier current in ampers
m_t = sqrt(2*((I_t2/I_c)^2 -1));//total modulation index
m2 = sqrt(m_t^2 - m1^2);//modulation index to the second wave
m3 = m2*100;//percentage modulation index to the second wave
//results
printf("\n\n Carrier current = %.2f A",I_c);
printf("\n\nTotal modulation index = %.2f",m_t);
printf("\n\nPercentage modulation index of second wave= %.2f percent",m3);
|
e3b6c6ad085805e487a0be9d91e49c90a9ad00a9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2273/CH9/EX9.10/ex9_10.sce | 19a62be2d21318806e011b0996a50d9757aad7c6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 714 | sce | ex9_10.sce | //find the voltage on the intersheaths
clear;
clc;
//soltion
//given
d=2.5;//cm
d1=3.1;//cm
d2=4.2;//cm
D=6;//cm
V=66*sqrt(2/3);//kV
V1=poly(0,"V1");
V2=poly(0,"V2");
V3=poly(0,"V3");
g1max=V1/((d/2)*log(d1/d));//kV/cm
g2max=V2/((d1/2)*log(d2/d1));//kV/cm
g3max=V3/((d2/2)*log(D/d2));//kV/cm
V2=g1max/2.1244605;
V3=g1max/1.3350825;
V1=roots(V1+V2+V3-V);
V2=V1*1.7542;//after solving g1max=g2max
V3=V1*2.7857;//after solving g1max=g3max
Vf=V-V1;
Vs=V-V1-V2;
printf("Voltage on first intersheath(i.e. near to the core) = %.3f kV\n",Vf);
printf("Voltage on second intersheath= %.3f kV",Vs);
//THERE IS A SLIGHT ERROR DUE TO THE USAGE OF FLOATING POINT
//IN BOOK Vf=44.237 kV & Vs= 27.147kV
|
1e82782a24bb0edd77917423ced993311e69bac9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1994/CH7/EX7.19/Example7_19.sce | 266773bfe27cf3ef098b10bbb96405e09f5901dd | [] | 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 | 632 | sce | Example7_19.sce | //Chapter-7,Example7_19,pg 7-51
I=100*10^-3
Td=0.8*10^-4
dtheta=90*%pi/180//in radians
theta=90//deflection
dM=Td*dtheta/(I^2)
Mo=0.5//original M
M=Mo+dM//total M
//case-1
Vdc=100
R=Vdc/I
w=2*%pi*50
Z=R+(%i*w*M)
Z=abs(Z)
Vac=R*Vdc/Z
dif=Vdc-Vac//difference between readings
//case-2
Vdc1=50
I1=Vdc1/R
theta1=theta*((I1/I)^2)//theta=kI^2
theta1=theta1*%pi/180//in radians
dM1=Td*theta1/(I^2)
M1=dM1+Mo
Z1=R+(%i*w*M1)
Z1=abs(Z1)
Vac1=R*Vdc1/Z1
dif1=Vdc1-Vac1
printf("difference in readings Vdc=100V\n")
printf("dif=%.2f V\n",dif)
printf("difference in readings Vdc=50V\n")
printf("dif1=%.2f V\n",dif1)
|
6d85959986bc08b6502dd61d37070f35569750ef | 449d555969bfd7befe906877abab098c6e63a0e8 | /1583/CH2/EX2.1/SSA_Ex_2_1.sce | 58d561c5dfbae3ee8968409cc5491453cc42b560 | [] | 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 | 312 | sce | SSA_Ex_2_1.sce | clc
//Chapter 2:Small Signal Amplifiers
//example 2.1 page no 17
//given
B=100//current gain
Ic=10^-3//collector bias current
//kT/q=0.026 where as k=Boltzmanns constant T=temperature q=charge on an electron
rpi=(0.026*B)/Ic//base emitter resistance
mprintf('the base emitter resistance is %d ohm',rpi)
|
0c183dd00a671d22fe9d7db3ac739edafd45dd0d | 449d555969bfd7befe906877abab098c6e63a0e8 | /3825/CH6/EX6.14/Ex6_14.sce | 7ee87934454129fe21f6ac15e8ba1b06553677c6 | [] | 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 | 709 | sce | Ex6_14.sce | clc
O2=0.19 //moles of O2
N2a=0.19*3.7619 //moles of N2
CO=0.26 //moles of CO in fuel
H2=0.12 //moles of H2 in fuel
CO2=0.07 //moles of CO2 in fuel
N2b=0.55 //moles of N2 in fuel
mprintf("Theoretical ari-fuel ratio=%f mole air/mole fuel\n",(O2+N2a)/(CO+H2+CO2+N2b))//ans vary due to roundoff error
CO2=0.33 //moles in product after combustion
H2O=0.12//moles in product after combustion
O2=0.038//moles in product after combustion
N2=1.408//moles in product after combustion
//product analysis
sigmaNi=CO2+H2O+O2+N2
a=CO2/sigmaNi //for CO2
b=H2O/sigmaNi //for H2O
c=O2/sigmaNi //for O2
d=N2/sigmaNi //for N2
mprintf("yi=.\n%f\n%f\n%f\n%f",a,b,c,d)//ans may vary due to roundoff error
|
83cd47e47669fb68d13e631c679689d33d776794 | 449d555969bfd7befe906877abab098c6e63a0e8 | /683/CH8/EX8.4/S8_4.sce | 72f99dc4e339d3298b5472c976d5bf3798b6213e | [] | 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 | 807 | sce | S8_4.sce | // sum 8-4
clc;
clear;
Do=25;
// mean coil diameter D=25-d
W=150;
T=800;
G=81000;
// Substituting values in equation T=8*W*D/(%pi*(d^3))
// therefore, the equation becomes d^3 + 0.477*d = 11.936
//consider d=2.2mm, (d can be taken between 2.2-2.3mm)
d=2.337; //(nearest available wire gauge)
C=9.5;
D=22.2;
Do=D+d;
Ks=1+(0.5/C);
Tmax=Ks*8*W*D/(%pi*(d^3));
// check for safety- Tmax<T;
Lo=100;
Ls=40;
//Lo=Ls+delta+0.15*delta
delta=(Lo-Ls)/1.15;
delta=50;
k=150/50;
Na=(G*d^4)/(8*(D^3)*k);
N=Na+2;
Ls=N*d;
Lo=Ls+(1.15*delta);
// printing data in scilab o/p window
printf("d is %0.3fmm ",d);
printf("\n D is %0.2f mm",D);
printf("\n Ls is %0.2f mm",Ls);
printf("\n Lo is %0.2f mm",Lo);
if (Do<=25)
disp ('The diameter is within space constraints');
end |
b27cc3fe3c0cd5bdf07da28aadabce8326f87478 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1703/CH4/EX4.5/4_5.sce | a53d1786aa44a00dab1ebe35907b5de21b0fc629 | [] | 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 | 160 | sce | 4_5.sce |
clc
//initialisation of variables
g= 32.2 //ft/sec^2
//CALCULATIONS
r= g^2/((sqrt(2))^2*g^2)
//RESULTS
printf ('coefficient of contraction = %.1f ',r)
|
fe1ecc16175662add19b3111c16b243db6f1c7bf | 449d555969bfd7befe906877abab098c6e63a0e8 | /564/DEPENDENCIES/25_4data.sci | cbb2e110732aaafebea0584b1322a74521e4e10f | [] | 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 | 61 | sci | 25_4data.sci | a=100;
b=150;
ta=1;
tb=2;
Ez1=60000;
Ez2=20000;
Load=40*10^3; |
213287a0c602b46baca9fd56fd8f0a7d4417f370 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1919/CH6/EX6.17/Ex6_17.sce | c034fbc249c4a2f823b3a56ec91bdc46c15ba285 | [] | 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 | 802 | sce | Ex6_17.sce |
// Theory and Problems of Thermodynamics
// Chapter 6
// Thermodynamic Potentials and Availability
// Example 17
clear ;clc;
//Given data
P1 = 3 // entering pressure of superheated steam in MPa
T1 = 573.15 // entering temperature of superheated steam in K
P2 = 20 // pressure of dry saturated steam in kPa
T0 = 300 // ambient temperature in K
// Steam at 3.0 MPa and 573.15 k
h = 2993.5 // in kJ/kg
s = 6.539 // in kJ/kg K
// Steam at 20 kPa
hg = 2609.7 // in kJ/kg
sg = 7.9085 // in kJ/kg K
// n2 = W/(B1-B2) // second law efficiency of turbine
n2 = (h-hg)/(h-hg-T0*(s-sg))
// Output Results
mprintf('Second law efficiency of turbine = %4.3f' ,n2);
|
8800d13c48f1bd6864257d3287c0fdb098bd3b38 | 449d555969bfd7befe906877abab098c6e63a0e8 | /698/CH8/EX8.5/P5_dunkerley_method.sce | 9b231d6ed3e15659ffc9c20ac97261461a99e198 | [] | 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 | 735 | sce | P5_dunkerley_method.sce | clc
//Example 8.5
// Dunkerley's Method
//------------------------------------------------------------------------------
//Given Data:
W1=1250
a11=6.213e-8
W2=325
a22=10.697e-8
res5= mopen(TMPDIR+'5_dunkerley_method.txt','wt')
w1=sqrt(9.81/(W1*a11))
mfprintf(res5,'w1 = %0.5f rad/s\n',w1)
w2=sqrt(9.81/(W2*a22))
mfprintf(res5,'w2 = %0.5f rad/s\n',w2)
wc=sqrt((w1^2 * w2^2)/(w1^2 + w2^2))
mfprintf(res5,'wc= %0.1f rad/s\n',wc)
Nc=(wc*60)/(2*%pi)
mfprintf(res5,'Nc= %0.1f rad/s',Nc)
mclose(res5);
editor(TMPDIR+'5_dunkerley_method.txt')
//------------------------------------------------------------------------------
//--------------------------------End of program-------------------------------- |
2d47f3521c1a65fa638bb0fe932c7bce022f15f4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3830/CH1/EX1.16/Ex1_16.sce | e11e5ebcdacdb3995a83554442b64983b2ab0cdb | [] | 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,085 | sce | Ex1_16.sce | // Exa 1.16
clc;
clear;
// Given
// Refer Fig.1.74
Rmv = 200; // Voltmeter resistance in Ohms
Vt = 3; // Terminal voltage(V)
S = 1; // Sensitivity in mm/microV
Rmi = 100; // Galvanometer resistance in Ohms
Deflection = 250; // in mm
S1 = 5; // sesitivity of second galvanometer in mm/micro Amp
Ri = 1000; // Internal resistance of 2nd galvanometer
// Solution
Ig = Deflection/S;
printf(' Current through the galvanometer = %d micro Amp \n',Ig);
Rtotal = Rmv+Rmi;
Vrtotal = Rtotal*Ig*10^-6; // in Volts
Ek = Vt - Vrtotal;
printf('The emf of the unknown source = %.3f V \n',Ek);
printf('1 mm correspponds to 1 micro Amp. Therefore, Resolution = %d micro V/mm \n',Rtotal);
printf('For galvanometer A, 1 mm deflection for 300 mV. So, Sa = 1/300 mm/microV \n');
Sa = 1/300; // Sensitivity of galvanometer A in mm/micro V
printf('For galvanometer B, - \n');
Rbtotal = Ri+Rmv;
// A 5mm deflcetion is caused by 1200 micro V
printf('Sb = 5/1200 mm/microV \n'); // mm/microV
printf('Galvanometer B provides the amplified sensitivity i.e, Since, Sb>Sa \n');
|
afec7374dfd3f23bd86eedf289d11de82d032bdd | 449d555969bfd7befe906877abab098c6e63a0e8 | /2780/CH3/EX3.32/Ex3_32.sce | f82252368e5ba15226a2946a06a4c260ccb4c6c9 | [] | 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 | 502 | sce | Ex3_32.sce | clc
//will the telescope be able to observe the wiremesh
a=3 //aperture in cm
lambda=5.5*10^-5 //wavelength of light in cm
//limit of resolution of telescope is given by
theta=1.22*lambda/a
//alpha=spacing of wire-mesh/distance of objective from wire-mesh
alpha=0.2/(80*10^2)
disp("theta="+string(theta)+"radian")
disp("alpha="+string(alpha)+"radian")
disp("if alpha>theta then telescope will be able to observe the wire-mesh")
//value of alpha is given wrong in the book 2.25*10^-5 radian
|
50398900d1c5fd2a119c628bbc5a6baea246a743 | ebd6f68d47e192da7f81c528312358cfe8052c8d | /swig/Examples/test-suite/scilab/abstract_signature_runme.sci | d60acfd76cf9caa8191e0229875ef44b64c35132 | [
"Apache-2.0",
"LicenseRef-scancode-swig",
"GPL-3.0-or-later",
"LicenseRef-scancode-unknown-license-reference",
"GPL-3.0-only"
] | permissive | inishchith/DeepSpeech | 965ad34d69eb4d150ddf996d30d02a1b29c97d25 | dcb7c716bc794d7690d96ed40179ed1996968a41 | refs/heads/master | 2021-01-16T16:16:05.282278 | 2020-05-19T08:00:33 | 2020-05-19T08:00:33 | 243,180,319 | 1 | 0 | Apache-2.0 | 2020-02-26T05:54:51 | 2020-02-26T05:54:50 | null | UTF-8 | Scilab | false | false | 265 | sci | abstract_signature_runme.sci | exec("swigtest.start", -1);
// These calls must fail
ierr = execstr('abstract_foo_meth(1)', 'errcatch');
if ierr == 0 then swigtesterror(); end
ierr = execstr('abstract_bar_meth(1)', 'errcatch');
if ierr == 0 then swigtesterror(); end
exec("swigtest.quit", -1);
|
62dde9374bf6ce44bb4cc3d595f988cb9bbab2b9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2135/CH1/EX1.5/Exa_1_5.sce | 567944b82f4f4bba0f46cd038d08416eca9a8487 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 241 | sce | Exa_1_5.sce | //Exa 1.5
clc;
clear;
close;
format('v',7);
//Given Data :
VGR=57;//KN/m^2
Patm=765;//mm of Hg
//101.325KN/m^2=760 mm of Hg
VGR=VGR*760/101.325;//mm og Hg
Pabs=Patm-VGR;//mm of Hg
disp(Pabs,"Absolute pressure in mm of Hg : ");
|
c179b421ba149c500ad9c5129201f62a436aab30 | 1ef6be9d07c8e75d8d04ffdca88138dc1baf60fe | /Nikolas_ECI_192/ACSO/Quices Circuitos/quiz4.tst | 72596cb249b87cb35d97bd6114e24fc51b7eb176 | [] | no_license | Nikolas2001-13/Universidad | 885bab6b2b645ed07b048e834b3cfff35d0fb8dc | d5a4a95b6c553cbb9fa9602c3c9ebc3efff571be | refs/heads/master | 2023-02-25T08:47:12.614065 | 2021-01-25T02:33:31 | 2021-01-25T02:33:31 | 332,564,414 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 397 | tst | quiz4.tst | load quiz4.hdl,
output-file quiz4.out,
output-list X Y Z S;
set X 0, set Y 0, set Z 0, eval, output;
set X 0, set Y 0, set Z 1, eval, output;
set X 0, set Y 1, set Z 0, eval, output;
set X 0, set Y 1, set Z 1, eval, output;
set X 1, set Y 0, set Z 0, eval, output;
set X 1, set Y 0, set Z 1, eval, output;
set X 1, set Y 1, set Z 0, eval, output;
set X 1, set Y 1, set Z 1, eval, output; |
62f8493f22648f566c0d127265545614903b8915 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1949/CH6/EX6.6/Ex6_6.sce | 461cc44254af518b152314c18cfa613a7b906d2e | [] | 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 | 577 | sce | Ex6_6.sce | //Chapter-6,Example 6_6,Page 6-28
clc()
//Given Values:
u0=4*%pi*10^-7 //Permeability in vacuum
ur=900 //Relative permeability of medium
l=2 //length in meter
A=60*10^-4 //Crosss sectional area of ring in m^2
phi=5.9*10^-3 //flux in weber
n=700 //Number of turns
//Calculations:
//We know, phi=B*A
B=phi/A //Flux density
//But, B=u*H
H=B/(u0*ur) //Magnetic field strength
I=H*l/n //Required current
printf('Current required to produce given flux is =%.2f Ampere \n',I)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.