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
d9f0ef45cf9b6b5f5c8af11e02bddf5c509cf32c
449d555969bfd7befe906877abab098c6e63a0e8
/1793/CH16/EX16.4/16Q4.sce
7c5cdbe964e3fac549b9bcb4b9d367c027950a2b
[]
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
16Q4.sce
clc e=0.1 B=1 X=B-2*e Y=1.5 B1=0.8 L1=1.5 c=30 Df=1 Nq=18.4 Ng=15.668 q=1*18 G=18 Lqs=1+e*(B1/L1)*(tand(45+c/2))^2 Lgs=Lqs Lqd=1+e*(Df/B1)*tand(45+c/2) Lgd=Lqd qu=q*Lqs*Lqd*Nq+Lgs*Lgd*G*B1*Ng/2 Qu=qu*B1*L1 printf('The magnitude of the gross ultimate load = %f kN',Qu)
e51f9441aae26fb28df743f5f9b30ec378c02923
449d555969bfd7befe906877abab098c6e63a0e8
/1163/CH19/EX19.6/example_19_6.sce
4b53b3c9ba90e7c8d203160ac8f3e284637815de
[]
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
924
sce
example_19_6.sce
clear; clc; disp("--------------Example 19.6---------------") //address :- 205.16.37.39/28 n=8; //number of bits i.e 1 byte a3=dec2bin(205,n); // convert decimal numbers to binary numbers a2=dec2bin(16,n); a1=dec2bin(37,n); a0=dec2bin(39,n); disp(" Binary notation of the address is "+a3+" "+a2+" "+a1+" "+a0) mask= 28; num_of_zeros=32-mask; // calculate the number of bits to be set to zero a=a3+a2+a1+a0; p1=strsplit(a,mask); //truncate the binary address p=p1(1); for i= 1:num_of_zeros p=p+'0'; //appending zeros end b=strsplit(p,[8 16 24 ]) //separate the bytes b3=bin2dec(b(1)); // convert binary numbers to decimal numbers b2=bin2dec(b(2)); b1=bin2dec(b(3)); b0=bin2dec(b(4)); disp(" Binary notation of first address:- "+b(1)+" "+b(2)+" "+b(3)+" "+b(4)) printf(" Decimal notation of first address:- %d.%d.%d.%d",b3,b2,b1,b0); //result in decimal notation
e3e2772721363e4001a751958df54c2a443a8f06
449d555969bfd7befe906877abab098c6e63a0e8
/1703/CH6/EX6.7/6_7.sce
895f6bef7437bd5486b365d7a324866324f82814
[]
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
413
sce
6_7.sce
clc //initialisation of variables l1= 19 //ft l2= 1 //ft r1= 0.298 r2= 0.238 r3= 0.359 r4= 0.242 r5= 0.121 d= 6 //in //CALCULATIONS m= -(-r4-sqrt(r4^2-4*(3*r1-r5)*(-(d/2)*r2-r3)))/(2*(3*r1-r5)) v2= sqrt((l1+l2)/(r1*m^2-r2)) v3= m*v2 Q2= %pi*v2/d^2 Q3= %pi*v3/d^2 Q= Q2+Q3 //RESULTS printf ('Q2 = %.3f cusec',Q2) printf ('\n Q3 = %.2f cusec',Q3) printf ('\n Total Quantity = %.3f cusecs',Q)
c644d7ca1d9bdcc8acd88a56067bc859227f36ef
449d555969bfd7befe906877abab098c6e63a0e8
/2339/CH7/EX7.7.1/Ex7_7.sce
51e235dfcd63e83eddc286aebb9c3289f5e9f36c
[]
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
159
sce
Ex7_7.sce
clc clear r=6; G=1.4; Ea=100*[1-(1/(r^(G-1)))]; Ebt=Ea/2; CV=41500; BP=15; Mf=BP/(CV*(Ebt/100)); printf('Mf= %3.2f kg/hr',Mf*3600); printf('\n');
8b2c266f3c3b94da5cc301ad3be561bf96a787b5
449d555969bfd7befe906877abab098c6e63a0e8
/70/CH1/EX1.3.2/1_3_2.sci
90962e4f252b0d4bba05faeec186a108f5ecceb3
[]
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
300
sci
1_3_2.sci
clear ; close ; clc ; a =[1 1 1;2 2 5;4 4 8]; disp(a,'a='); disp('x=[u;v;w]'); disp('R2=R2-2*R1,R3=R3-4*R1'); a(2,:)=a(2,:)-2*a(1,:); a(3,:)=a(3,:)-4*a(1,:); disp(a); disp('No exchange of equations can avoid zero in the second pivot positon ,therefore the equations are unsolvable'); //end
3234aa24a97313e11d767a9d969fd966afe020ce
264ce5fd7f847a0c98e344d52433472013dc0e51
/data_viewer/convert_data.sce
c2a906ecbb571d08ddd2d832af9f7f25f4e8bb07
[]
no_license
JeroenDM/scilab_examples
6c0b47113f3bdf50950960626f616a2557101f99
36bf54c0aa085fd7167910ee5b88a536c1917c5a
refs/heads/master
2021-09-06T04:41:49.779588
2018-02-02T11:56:36
2018-02-02T11:56:36
119,973,817
0
0
null
null
null
null
UTF-8
Scilab
false
false
3,594
sce
convert_data.sce
// The file format of the measured data is converted to a nice format for // scilab. A file constains several measurements / experiments that // are separated by the "start" keyword. These are split into several files. // File structure of measured data of two experiments // start // ### #### #### #### #### // ### #### #### #### #### // ... // ### #### #### #### #### // ### #### #### #### #### // start // ### #### #### #### #### // ### #### #### #### #### // ... // ### #### #### #### #### // ### #### #### #### #### // Data is split in two text files with structure: (Var# = variable name) // Var1 Var2 Var3 Var4 Var5 // ### #### #### #### #### // ### #### #### #### #### // ... // ### #### #### #### #### // ### #### #### #### #### clc; clear; deb = 1; // write some debug messages to the console if 1 // laad fucties in // exec(pwd() + "\voltage_to_value.sce"); // The variable names are hard coded in this script in the variable "header" header = msprintf("Time\tTorque\tCurrent\tVoltage\tCadans\tSpeed"); //----------------------------------------------------------------------------- // Ask for filename and start progressbar // If the progressbar keeps going to long // probably something went wrong, have a look in the scilab console for errors //----------------------------------------------------------------------------- fileName = x_dialog("Filename to read from raw_data folder?", "sample1.txt") progressBar = progressionbar("Data omzetten en opslaan."); // Open file, save data to scilab variable and close it again filePath = pwd() + "\raw_data\" + fileName; fid = mopen(filePath, "r"); if (fid == -1) error("Cannot open file for reading."); end data = mgetl(fid); mclose(fid); //----------------------------------------------------------------------------- // Count the number of measurents / parts //----------------------------------------------------------------------------- partIndex = 0; numMeas = 0; for i=1:size(data,1) if data(i) == 'start' then numMeas = numMeas + 1; partIndex(numMeas, 1) = i; end end if deb then message = msprintf("Found %d different measuremnts.", size(partIndex,1)); disp(message); disp("These are saved in the following locations:"); end //----------------------------------------------------------------------------- // Different measuremnts (called parts) saved in separate files, each with a header // containing variable names // the name consists of the original name of the file + a second part indication // to which measuremnt it belongs, with the format "_part_#.txt" //----------------------------------------------------------------------------- // filePath for output files name = strsubst(fileName, ".txt", ""); path = pwd() + "\converted_data\"; partIndex(numMeas + 1,1) = size(data,1) + 1; rit = 0; for i=1:numMeas // create filename partName = msprintf("_part_%d.txt", i); partName = path + name + partName; // open new file rfid = mopen(partName, "w"); // write variable names mputl(header, rfid); // write data mputl(data( partIndex(i,1)+1 : partIndex(i+1,1)-1 ), rfid); mclose(rfid); if deb then disp(partName); end end close(progressBar);
d37b4945827143cc7772f6583a1e69b91213ef40
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.0/Unix/scilab-2.0/macros/percent/%sxr.sci
e6346eb8b2ff17f74784fffeaf37360664fa97ae
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer", "MIT" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
202
sci
%sxr.sci
//<f>=%sxr(n1,f2) // %sxr(,M,r) calcule le produit element par element de la matrice de //scalaires M par la matrice de fractions rationnelles r . (M.*r) //! f=list(f2(1),n1.*f2(1),f2(3),f2(4)) //end
fa9759831514eac934545fdeee4769537fa946c1
a8592d34f144b71794ebf30f1c2a1b5faf0b053c
/sandbox/scilab/10_mesh.sce
74d864609e69ae8ed9eb759906dd3ca4b2f1477a
[]
no_license
f-fathurrahman/ffr-MetodeNumerik
ee9a6a7153b174b1ba3d714fe61ccbd1cb1dd327
e3a9da224c0fd5b32e671708e890018a3c4104c4
refs/heads/master
2023-07-19T22:29:38.810143
2023-07-07T10:02:34
2023-07-07T10:02:34
107,272,110
2
2
null
null
null
null
UTF-8
Scilab
false
false
171
sce
10_mesh.sce
[X,Y] = meshgrid(-5:0.5:5, -5:0.5:5) Z = sin(X) + cos(Y)*cos(X) clf() mesh( X, Y, Z ) xs2pdf( gcf(), "images/10_mesh_v1.pdf" ) if getscilabmode() ~= "STD" quit() end
38694fc6d530fb1016c40fe2f95ad735b1491e3e
61129043aed87983b640a33b1c260316043fa570
/drawing/primitives/box.sci
ce0f767436656e07048e065972a2ffaf29cdc6d5
[]
no_license
dgerod/gfx4scilab
7643dbb42fcbea772af12017dccf484544da6f79
4aafc59f241a9383de65e4fb25eefef80660bf64
refs/heads/master
2021-01-19T03:35:08.368764
2017-04-08T06:05:33
2017-04-08T06:05:33
61,438,380
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,155
sci
box.sci
// ============================================================================= // gfx4scilab - drawing // dgerod@xyz-lab.org.es // ============================================================================= function [Box] = dw_Box_create(Side, T) // // DESCRIPTION // Create a box primitive, it is described by side length 's' // as a set of points of size 'n'. // // PARAMETERS // s [IN] : Side size. // T [IN] : Homogeneus transformation (4x4). // Box [OUT] : Created box. // Box = 0; if rt_ishomog( T ) == %T then dim = struct("s", Side); Box = struct("dim", dim, "T", T); end return [Box]; endfunction // ----------------------------------------------------------------------------- function [Points] = dw_Box_getPoints(Box) // // DESCRIPTION // Return vertex whose define the box. // // PARAMETERS // Box [IN] : // Points [OUT] : (3xN)Handle // s = Box.dim.s; T = Box.T; box(:,1) = [s/2,s/2,0]'; box(:,2) = [-s/2,s/2,0]'; box(:,3) = [-s/2,-s/2,0]'; box(:,4) = [s/2,-s/2,0]'; box(:,5) = [s/2,s/2,s]'; box(:,6) = [-s/2,s/2,s]'; box(:,7) = [-s/2,-s/2,s]'; box(:,8) = [s/2,-s/2,s]'; box = box'; a = T * [box'; ones(1,size(box',2))]; Points = (a(1:3,:))'; return [Points]; endfunction // ----------------------------------------------------------------------------- function [Handle] = dw_Box_draw(Box) Handle = list(); points = dw_Box_getPoints(Box) face1 = [points(1:4,:); points(1,:)]; face2 = [points(5:8,:); points(5,:)]; X1 = face1(:,1); Y1 = face1(:,2); Z1 = face1(:,3) Handle($+1) = param3d(X1, Y1, Z1); X2 = face2(:,1); Y2 = face2(:,2); Z2 = face2(:,3) Handle($+1) = param3d(X2, Y2, Z2); for i=1:4; edges_x = [X1(i) X2(i)]; edges_y = [Y1(i) Y2(i)]; edges_z = [Z1(i) Z2(i)]; Handle($+1) = param3d(edges_x, edges_y, edges_z); end return [Handle]; endfunction // =============================================================================
8b8bcf1fa8e692a736edddf3909d7dab91be9ed1
449d555969bfd7befe906877abab098c6e63a0e8
/3845/CH16/EX16.8/Ex16_8.sce
a6cdd40d675a21db9a4f109e609bdd34ca08634f
[]
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
237
sce
Ex16_8.sce
//Example 16.8 lambda=10;//Wavelength (m) T=5;//Time period (s) v_w=lambda/T;//Wave velocity (m/s) printf('Wave velocity = %0.2f m/s',v_w) //Openstax - College Physics //Download for free at http://cnx.org/content/col11406/latest
fe611f609e70b99ad9cae40b7cfdb4fb937232ae
449d555969bfd7befe906877abab098c6e63a0e8
/1484/CH7/EX7.6/7_6.sce
88d3cbd82577ed07c772e245a06acfb1eb036b73
[]
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
286
sce
7_6.sce
clc //initialisation of variables Q= 20 //gallons / day i= 50000 //inhabitants p= 10 //percent t= 24 //hrs T= 0.25 //in a= 2000 //acres //CALCULATIONS q= Q*i*p/(100*60*60*6.24) A= T*43560*a/12 Q1= A/(t*60*60) Q2= q+Q1 //RESULTS printf ('total discharge= %.2f cuses',Q2)
be2ae1d2c7cc932931fdd7be8f3f7e25abdb1796
96ddb5c7e26f4c4665fed642bcd3e7492c8b3af9
/randsrc.sci
580d3591fca848595fd97bc1c0a46e2ee75fa21a
[]
no_license
kUser18/comm_scilab
8faa238d1affd5842ae20b8dbc0d59324d12b477
c98d78ba55b73644bf32cf1f901b6c0e45d73bc2
refs/heads/master
2020-03-26T11:00:15.328570
2018-09-30T20:35:50
2018-09-30T20:35:50
144,823,988
0
0
null
null
null
null
UTF-8
Scilab
false
false
8,345
sci
randsrc.sci
function M = randsrc(n,m,alpha,prob,seed) // //Function Description //randsrc: This function generates a matrix of random symbols. // //Calling sequence:- //M = randsrc() //M = randsrc(n) //M = randsrc(n,m) //M = randsrc(n,m,alpha) //M = randsrc(n,m,alpha,prob) //M = randsrc(n,m,alpha,prob,seed) // //Parameters: //n: int - scalar // Number of rows of the output matrix. // Must be positive. //If m is not specified, m=n is assumed. //m: int - scalar // Number of columns of the output matrix. // Must be positive. //If alpha is not specified, it is taken [-1,1]. //alpha: int or float - vector // alpha represents the alphabet to be used. // If alpha has a single row, the elements of that row are treated as alphabets. // Each entry of the output matrix could be any of the alphabets, with equal probability. // If alpha has two rows, the elements of the first row are treated as the alphabets. // The elements of the second row are treated as the probability of the corresponding alphabets in the first row. //prob: probability of each of the symbols in alpha // If not specified, is taken as a vector of the same length as alpha, and each entry 1/length(alpha) // The length of prob must be exactly the same as that of alpha. // The entries in prob must sum to 1, and must lie between [0,1]. //seed: int - scalar // Set the seed of the random number generator to the given value. // Must be a positive value. // The previous seed is saved, and restored before returning from this function. // //Example Usage //n=4 //m=3 //alphabets=[51,56,57] //probabilities=[0.1,0.3,0.6] //seed=8 // //M = randsrc(n) //By specifying only one argument, n, an n x n square matrix is created. //Each entry is -1 or 1 with equal probability. // //M = randsrc(n,m) //By specifying only two arguments, n and m, an n x m matrix is created. //Each entry is -1 or 1 with equal probability. // //M = randsrc(n,m,alphabets) //By specifying alphabets as a vector, an n x m matrix is created. //Each entry is from the vector alphabet, chosen independently with equal probability. // //M = randsrc(n,m,alphabets,probabilities) //By specifying a vector of probabilities for each of the corresponding alphabets. // //M = randsrc(n,m,alphabets,probabilities,seed) //The last argument may be used to specify the seed for random number generation. // //Special case //In case no arguments are given, n=m=1 is chosen. // //Authors //Devdatta Kathale // //Description ends // select(argn(2)) //Select the action according to number of input arguments. case 0 then //Special case: 0 arguments n=1 m=1 alpha=[-1,1] prob=[0.5,0.5] case 1 then //Only one argument specified. //n<ceil(n) if and only if n is not an integer. if n<ceil(n) | n<1 then error('randsrc: The number of rows n must be a positive integer.') end //Output a square matrix, m=n m=n //Defaults: The alphabet is [-1,1], and the probabilities [0.5,0.5]. alpha=[-1,1] prob=[0.5,0.5] case 2 then //Two arguments to specify dimensions of the matrix. //n<ceil(n) if and only if n is not an integer. //m<ceil(m) if and only if m is not an integer. if n<ceil(n) | m<ceil(m) | n<1 | m<1 then error('randsrc: The number of rows n and columns m must be positive integers.') end //Defaults: The alphabet is [-1,1], and the probabilities [0.5,0.5]. alpha=[-1,1] prob=[0.5,0.5] case 3 then //The alphabet is also specified. //n<ceil(n) if and only if n is not an integer. //m<ceil(m) if and only if m is not an integer. if n<ceil(n) | m<ceil(m) | n<1 | m<1 then error('randsrc: The number of rows n and columns m must be positive integers.') end [nr, nc] = size(alpha) if nr>1 then error('randsrc: alpha should be a vector with exactly one row.') end prob = ones(1,nc)/nc case 4 then //The probability is also specified. //n<ceil(n) if and only if n is not an integer. //m<ceil(m) if and only if m is not an integer. if n<ceil(n) | m<ceil(m) | n<1 | m<1 then error('randsrc: The number of rows n and columns m must be positive integers.') end [nr, nc] = size(alpha) if nr>1 then error('randsrc: alpha should be a vector with exactly one row.') end if size(alpha)~=size(prob) then error('randsrc: prob and alpha must have the same size.') end if sum(prob)~=1 then error('randsrc: Entries of prob must sum to 1.') end if or(prob<0) then error('randsrc: Entries of prob must be non-negative.') end case 5 then //The seed is also specified. //n<ceil(n) if and only if n is not an integer. //m<ceil(m) if and only if m is not an integer. if n<ceil(n) | m<ceil(m) | n<1 | m<1 then error('randsrc: The number of rows n and columns m must be positive integers.') end [nr, nc] = size(alpha) if nr>1 then error('randsrc: alpha should be a vector with exactly one row.') end if size(alpha)~=size(prob) then error('randsrc: prob and alpha must have the same size.') end if sum(prob)~=1 then error('randsrc: Entries of prob must sum to 1.') end if or(prob<0) then error('randsrc: Entries of prob must be non-negative.') end if seed<0 | seed<ceil(seed) then //Check the seed value to confirm if it is a positive integer. error('randsrc: Seed should be non-negative integer.') end //Store the old seed. It has to be restored later. oldseed = grand('getsd') grand('setsd',seed) end // //Compute Cumulative Probabilities cumulProb = zeros(prob) for i = 2:length(prob) cumulProb(i)=cumulProb(i-1)+prob(i-1) end cumulProb = [cumulProb,1] //The cumulative probabilites mark the start and end points of the //slabs we have split [0,1) into. //Generate the matrix, and fill in the alphabet G=grand(n*m,1,'def') // //Generate a matrix whose elements are uniformly distributed in [0,1). M=ones(n*m,1)*%nan //M is the output matrix. Initializing it to NaN so that unprocessed entries are easy to detect. for i = 2:length(cumulProb) indices = (G>cumulProb(i-1) & G<=cumulProb(i)) M(indices) = (i-1) //Check in which slab the generated numbers lie. //Assign the alphabet values accordingly. end M = alpha(M) // //Reshape M appropriately. M=matrix(M,n,m) // if argn(2) == 5 then //If seed altered, restore the old one. grand('setsd',oldseed) end // endfunction //Running tests // disp('Running Tests to Check Basic Outputs') // disp('------Test 1') // disp('M = randsrc(4); one input case') // M = randsrc(4); disp(M) // disp('------Test 2') // disp('M = randsrc(4,3); two input case') // M = randsrc(4,3); disp(M) // disp('------Test 3') // disp('M = randsrc(4,3,[51,56,57]); alphabet specified') // M = randsrc(4,3,['a','b','c']); disp(M) // disp('------Test 4') // disp('M = randsrc(4,3,[51,56,57],[0.1,0.3,0.6]); alphabet specified with probabilities') // currSeed = grand('getsd') // M = randsrc(4,3,[51,56,57],[0.1,0.3,0.6]); disp(M) // printf('Resetting the seed to what it was at the beginning of this test.\n') // grand('setsd',currSeed) // disp('This will be useful for Test 5 and Test 6.') // disp('------Test 5') // disp('M = randsrc(4,3,[51,56,57],[0.1,0.3,0.6],8); seed specified') // M = randsrc(4,3,[51,56,57],[0.1,0.3,0.6],8); disp(M) // disp('------Test 6') // disp('Test to see if the seed is being restored.') // disp('The output should be exactly same as the output of Test 4') // disp('M = randsrc(4,3,[51,56,57],[0.1,0.3,0.6]); check for seed restored') // M = randsrc(4,3,[51,56,57],[0.1,0.3,0.6]); disp(M) // disp('------') // disp('Finished Running Tests to Check Basic Outputs') // disp('************') // // disp('Test to check probability') // n=1000 // printf("%d matrices of size 2 x 2 will be generated.',n) // p=0.7 // printf('\n%f Probability of getting 1 at any entry\n',p) // disp('alpha=[1,0;p,1-p]') // M = zeros(2,2) // alpha=[1,0] // prob=[p,1-p] // disp(alpha) // for i = 1:n // M = M + randsrc(2,2,alpha,prob) // end // M = M/n // printf('Averaging over all generated matrices.\n') // printf('The value of all entries in the matrix below should be close to %f.\n',p) // disp(M) // disp('Tests Complete') // // exit
bd0f2ae578f29c4e6d047915bec56fcf23263476
449d555969bfd7befe906877abab098c6e63a0e8
/1754/CH8/EX8.2/Exa8_2.sce
268c4e001ae4f4db9abd0c1f2537b6555f357c29
[]
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
346
sce
Exa8_2.sce
//Exa 8.2 clc; clear; close; //Given data format('v',5); L=100;//in uH L=L*10^-6;//in H f1=500;//in kHz f1=f1*10^3;//in Hz f2=1500;//in kHz f2=f2*10^3;//in Hz //Formula : f=1/(2*%pi*sqrt(L*C)) C1=1/(4*%pi^2*f1^2*L);//in F C2=1/(4*%pi^2*f2^2*L);//in F disp("Range of capacitor : "+string(C2*10^12)+" pF to "+string(C1*10^12)+" pF");
a380687eb021abc91040eff01fd9d392937c523e
23573b967e8324d44226379d70559b8f0ea34905
/code/Symphonymat/Mining.sce
f92b93a1684fd0410fe93615ad3e8ad42e0e902e
[]
no_license
FOSSEE/FOT_Examples
91c8b8e9dc58545604b2c2af41a7e22f702b78f3
75947a7aa5a3955fe5a72e09f55bbdc05e3b8751
refs/heads/master
2020-03-22T09:00:48.306061
2018-07-24T04:49:25
2018-07-24T04:49:25
139,807,736
0
0
null
null
null
null
UTF-8
Scilab
false
false
6,808
sce
Mining.sce
// This is an example of mixed integer linear programming problem. This problem dimension increases significantly with increase in years or mines. //Example: A mining company is going to continue operating in a certain area for the next five years. There are four mines in this area, but it can operate at most three in any one year. Although a mine may not operate in a certain year, it is still necessary to keep it ‘open’, in the sense that royalties are payable, if it be operated in a future year. Clearly, if a mine is not going to be worked again, it can be permanently closed down and no moreroyalties need be paid. The yearly royalties payable on each mine kept ‘open’ are as follows: // ----------------- // Mine 1 £5 million // Mine 2 £4 million // Mine 3 £4 million // Mine 4 £5 million // ------------------ //There is an upper limit to the amount of ore, which can be extracted from each mine in a year. These upper limits are as follows: // --------------------- // Mine 1 2 × 10^6 tons // Mine 2 2.5 × 10^6 tons // Mine 3 1.3 × 10^6 tons // Mine 4 3 × 10^6 tons // --------------------- //The ore from the different mines is of varying quality. This quality is measured on a scale so that blending ores together results in a linear combination of the quality measurements, for example, if equal quantities of two ores were combined, the resultant ore would have a quality measurement half way between that of the ingredient ores. Measured in these units the qualities of the ores from the mines are given as follows: // --------------- // Mine 1 1.0 // Mine 2 0.7 // Mine 3 1.5 // Mine 4 0.5 // --------------- //In each year, it is necessary to combine the total outputs from each mine to produce a blended ore of exactly some stipulated quality. For each year, these qualities are as follows: // ------------------- // Year 1 0.9 // Year 2 0.8 // Year 3 1.2 // Year 4 0.6 // Year 5 1.0 // ------------------- //The final blended ore sells for £10 ton each year. Which mines should be operated each year and how much should they produce? // Copyright (C) 2018 - IIT Bombay - FOSSEE // This file must be used under the terms of the CeCILL. // This source file is licensed as described in the file COPYING, which // you should have received as part of this distribution. The terms // are also available at // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt // Author:Debasis Maharana // Organization: FOSSEE, IIT Bombay // Email: toolbox@scilab.in //================================================================================= clc Nmines = 4; //Royltes = [5e6 4e6 4e6 5e6]; Roylte = [5e6 4e6 4e6 5e6]; ubMines = [2e6 2.5e6 1.3e6 3e6]; Quality = [1 0.7 1.5 0.5]; Quality_blend = [0.9 0.8 1.2 0.6 1]; Nyears = length(Quality_blend); Royltes = Roylte; for i = 1:Nyears-1 Roylte = Roylte*0.9; Royltes = [Royltes Roylte]; end mprintf('Received Data') mprintf('\nNumber of years to operate %d',Nyears) mprintf('\nNumber of mines %d',Nmines); disp(Royltes,'Royalities to be paid for each mine',); disp(ubMines,'Upper limit of ore available from each mine'); disp(Quality,'Quality of ore from each mine'); input('Press enter to proceed') //i - mine , t - year A = zeros(1,3*Nyears*Nmines+Nyears) Aeq_quantity = zeros(Nyears,Nyears*(3*Nmines+1)); Aeq_quality = zeros(Nyears,Nyears*(3*Nmines+1)); A_operation = zeros(Nyears,Nyears*(3*Nmines+1)); Aoutput =[];Aopen=[]; boutput = zeros(Nyears*Nmines,1); bopen = zeros(Nyears*Nmines,1); beq_quantity = zeros(Nyears,1); beq_quality = zeros(Nyears,1); for i = 1:Nyears Aeq_quantity(i,(i-1)*Nmines+1:i*Nmines) = 1; Aeq_quantity(i,Nyears*Nmines+i) = -1; beq_quantity(i) = 0; Aeq_quality(i,(i-1)*Nmines+1:i*Nmines) = Quality ; Aeq_quality(i,Nmines*Nyears+i) = -Quality_blend(i); beq_quality(i) = 0 A_operation(i,Nyears*(Nmines+1)+((i-1)*Nmines+1:i*Nmines)) = 1; B_operation(i) = 3; A_output = zeros(Nmines,Nyears*(3*Nmines+1)); for j = 1:Nmines A_output(j,(i-1)*Nmines+j) = 1; A_output(j,Nyears*(Nmines+1)+(i-1)*Nmines+j) = - ubMines(j); end Aoutput = [Aoutput;A_output]; A_open = zeros(Nmines,Nyears*(3*Nmines+1)); for j = 1:Nmines A_open(j,(Nmines+1)*Nyears+(i-1)*Nmines+j) = 1; A_open(j,(2*Nmines+1)*Nyears+(i-1)*Nmines+j) = -1; end Aopen = [Aopen;A_open]; end Aclose = [];bclose = zeros((Nyears-1)*Nmines,1); for i = 1:Nyears-1 A_close = zeros(Nmines,Nyears*(3*Nmines+1)); for j = 1:Nmines A_close(j,Nyears*(2*Nmines+1)+(i-1)*Nmines+j) = -1; A_close(j,Nyears*(2*Nmines+1)+i*Nmines+j) = 1; end Aclose = [Aclose;A_close]; end A = [Aoutput;A_operation;Aopen;Aclose] Aeq = [Aeq_quantity;Aeq_quality]; b = [boutput;B_operation;bopen;bclose] beq = [beq_quantity;beq_quality]; lb = zeros(1,Nyears*(3*Nmines+1)); ub = [repmat(ubMines,1,Nyears) sum(ubMines)*ones(1,Nyears) ones(1,2*Nmines*Nyears)]; //C = [zeros(1,Nmines*Nyears) [10 9 8 7 6].*ones(1,Nyears) zeros(1,Nyears*Nmines) -repmat(Royltes,1,Nyears)]'; C = [zeros(1,Nmines*Nyears) [10 10*0.9 10*0.9^2 10*0.9^3 10*0.9^4 ].*ones(1,Nyears) zeros(1,Nyears*Nmines) -Royltes]'; // All variables are not integers intcon = [(Nmines+1)*Nyears+1:Nyears*(3*Nmines+1)]; options = list("time_limit", 2500); [xopt,fopt,status,output] = symphonymat(-C,intcon,A,b,Aeq,beq,lb,ub,options); clc select status case 227 then mprintf('Optimal Solution Found') case 228 then mprintf('Maximum CPU Time exceeded') case 229 then mprintf('Maximum Number of Node Limit Exceeded') else mprintf('Maximum Number of Iterations Limit Exceeded') end input('Press enter to view results') for i = 1:Nyears xx(i,:) = xopt((i-1)*Nmines+1:i*Nmines)'; Qt(i) = xopt(Nmines*Nyears+i); end years = string(1:Nyears); Mines = []; mprintf('Total profit %d',-fopt); for i = 1:Nmines Mines = [Mines strcat(['Mine',string(i)])] end table = [['years' Mines];[years' string(xx)]]; disp(table); disp(string(Qt),'Each year produced blended ore')
159387a4eca58069c51afd6b091e3e537433cca5
089894a36ef33cb3d0f697541716c9b6cd8dcc43
/NLP_Project/test/blog/ngram/5.19_6.tst
0480a9b8abf4572ee6456104d291f43c2479f734
[]
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
429,891
tst
5.19_6.tst
19 764:1 1582:1 1600:1 1795:1 2214:1 2505:1 2536:1 4173:1 4340:1 4818:1 5293:1 5436:1 5794:1 5952:1 6348:2 6355:1 6399:1 6588:1 6697:1 6850:1 7537:1 7989:1 8927:1 8971:1 9606:1 10167:1 10236:7 10714:1 11272:1 11767:1 12715:1 13945:1 13974:1 14167:1 15119:1 16467:1 16949:1 17915:1 19190:1 19644:87 19863:1 20072:1 20553:1 20674:1 20919:1 22782:1 23444:1 23641:1 23644:1 24142:2 24614:1 24726:1 24835:1 24886:1 25509:1 25739:1 26855:1 26857:1 27001:1 27917:1 29014:1 29224:1 29593:2 29887:1 30124:2 30436:1 31248:1 19 234:1 643:1 764:1 1389:1 1582:1 1600:1 1795:2 2027:1 2214:1 2505:1 2536:1 3023:1 3889:1 4173:1 4340:2 4450:1 4818:1 4868:1 4905:1 5293:1 5436:1 5794:2 5952:1 6348:3 6355:1 6399:1 6588:2 6697:1 6850:1 7052:1 7537:2 7989:1 8927:1 8971:1 9606:1 10167:1 10236:7 10273:1 10714:1 11272:1 11377:1 11492:1 11767:1 12181:1 12255:1 12373:1 12715:1 13425:1 13493:1 13945:1 13974:2 14114:1 14167:1 15119:1 16402:1 16467:1 16635:1 16949:1 17915:1 19190:1 19644:120 19863:1 20072:1 20216:1 20218:1 20476:1 20553:1 20674:1 20919:1 22782:1 23444:1 23641:1 23644:2 23779:1 24142:2 24614:1 24726:1 24835:2 24886:1 25120:1 25509:1 25739:1 25921:1 26548:1 26855:1 26857:2 27001:2 27917:1 28069:1 28782:1 29014:1 29158:1 29224:1 29249:1 29593:2 29781:1 29825:1 29887:1 30124:2 30436:1 30692:1 31142:1 31246:1 31248:1 31251:1 19 234:1 643:1 671:1 764:1 890:1 928:1 937:1 1080:1 1389:1 1582:1 1600:1 1795:2 2027:1 2105:1 2133:1 2214:1 2267:1 2391:1 2505:1 2536:1 2832:1 2962:1 3005:1 3023:2 3489:1 3548:1 3889:1 4173:1 4340:2 4450:1 4651:1 4818:1 4868:1 4905:1 4927:1 5264:1 5277:1 5293:1 5436:1 5686:1 5710:1 5794:2 5917:1 5952:1 6345:1 6348:3 6355:1 6378:1 6399:1 6488:1 6583:1 6588:2 6692:1 6697:1 6850:1 7052:1 7216:1 7537:2 7540:1 7855:1 7989:1 8172:1 8698:1 8849:1 8892:1 8913:1 8927:1 8971:1 9012:1 9470:1 9595:1 9606:2 9779:1 9874:1 10167:1 10236:7 10272:1 10273:1 10714:1 10901:1 11238:1 11272:1 11377:2 11492:1 11497:1 11632:1 11751:1 11767:1 11932:1 12072:1 12108:1 12181:1 12255:1 12304:1 12373:1 12591:1 12715:1 13251:1 13425:2 13493:1 13531:1 13691:1 13945:1 13974:2 14040:1 14114:1 14167:1 14225:1 14460:1 14864:1 15119:1 15760:1 15785:1 16402:1 16467:1 16502:1 16635:1 16641:1 16733:1 16949:1 17060:1 17211:1 17915:1 17954:1 18060:1 18129:1 18167:1 18434:1 18471:1 19190:1 19419:2 19559:1 19644:149 19863:1 19871:1 20072:1 20216:1 20218:1 20476:1 20547:1 20553:1 20674:1 20919:1 21246:1 21531:1 21627:1 22043:1 22601:1 22659:1 22782:1 23181:1 23332:1 23444:1 23483:1 23641:1 23644:2 23779:1 23831:1 24108:1 24142:2 24614:1 24726:1 24835:2 24886:1 25120:1 25351:1 25509:1 25591:1 25635:1 25739:1 25921:1 25935:1 26456:1 26548:1 26763:1 26855:1 26857:2 27001:2 27648:1 27797:2 27917:1 28069:1 28152:1 28290:1 28342:1 28496:1 28782:1 29014:1 29052:1 29158:1 29224:2 29249:1 29295:1 29340:1 29539:1 29593:2 29689:1 29781:1 29825:1 29887:2 29896:1 30052:1 30124:2 30358:1 30436:1 30692:1 30864:1 30884:1 30907:1 30981:1 30986:1 31142:1 31246:1 31248:1 31250:1 31251:1 19 234:1 643:1 671:1 697:1 764:1 890:1 928:1 937:1 994:1 998:1 1080:1 1389:1 1559:1 1582:1 1600:1 1607:1 1795:2 1923:1 1979:1 2027:1 2105:1 2133:1 2205:1 2214:1 2267:1 2391:1 2402:1 2505:1 2512:1 2536:1 2832:1 2962:1 3005:1 3023:2 3090:1 3489:1 3534:1 3548:1 3889:1 4126:1 4173:1 4340:2 4450:1 4651:1 4682:1 4781:1 4816:1 4818:1 4868:1 4905:1 4927:1 5247:1 5264:1 5277:1 5293:1 5344:1 5436:1 5686:1 5710:1 5794:2 5815:1 5889:1 5917:1 5952:1 6040:1 6345:1 6348:3 6355:1 6378:1 6399:1 6488:1 6567:1 6583:1 6588:2 6610:1 6692:1 6697:1 6850:1 7052:1 7216:1 7221:1 7537:2 7540:1 7855:1 7864:1 7989:1 8104:1 8172:2 8194:1 8698:1 8849:1 8892:1 8913:1 8927:1 8952:1 8971:1 9012:1 9470:1 9595:1 9606:2 9779:1 9874:1 10167:1 10236:7 10272:1 10273:1 10714:1 10901:1 11144:1 11238:1 11256:1 11272:1 11372:1 11377:2 11462:1 11492:1 11497:1 11632:1 11751:1 11767:1 11932:1 12072:1 12108:1 12140:1 12181:1 12255:1 12304:1 12373:1 12591:1 12680:1 12715:1 12857:1 13251:1 13425:3 13448:1 13475:1 13493:1 13497:1 13531:1 13691:1 13945:1 13974:2 14020:1 14040:1 14114:1 14167:1 14225:1 14460:1 14551:1 14864:1 14872:1 15119:1 15415:1 15760:1 15785:1 16402:1 16457:1 16467:1 16502:1 16635:1 16641:1 16733:1 16738:1 16949:1 16962:1 17060:1 17211:1 17691:1 17729:1 17915:1 17954:1 18031:1 18060:1 18129:1 18167:1 18434:1 18471:1 18505:1 18894:1 19190:1 19315:1 19419:2 19559:1 19644:190 19840:1 19863:1 19871:1 19895:1 20072:1 20216:1 20218:1 20393:1 20412:1 20476:1 20547:1 20553:1 20576:1 20674:1 20919:1 21246:1 21531:1 21627:1 22043:1 22059:1 22601:1 22659:1 22711:1 22782:1 23181:1 23332:1 23444:1 23483:1 23641:1 23644:2 23779:2 23831:1 23850:1 24108:1 24142:2 24229:1 24404:1 24614:1 24633:1 24726:1 24835:2 24886:1 25120:1 25351:1 25509:1 25591:1 25635:1 25739:1 25799:1 25850:1 25921:1 25935:1 26456:1 26548:1 26763:1 26855:1 26857:2 26964:1 27001:2 27089:1 27262:1 27648:1 27797:2 27917:1 28004:1 28049:1 28069:1 28152:1 28280:1 28290:1 28342:1 28496:1 28782:1 29014:1 29052:1 29144:1 29158:1 29224:2 29249:1 29295:1 29340:1 29539:1 29593:2 29689:1 29781:1 29825:1 29887:2 29896:1 29910:1 30052:1 30112:1 30124:2 30358:1 30436:1 30692:1 30864:1 30884:1 30907:1 30981:1 30986:1 31003:1 31055:1 31142:1 31246:1 31248:1 31250:1 31251:1 19 234:1 643:2 671:1 697:1 764:1 890:1 907:1 928:1 937:1 938:1 994:1 998:1 1055:1 1080:1 1137:1 1389:1 1527:1 1559:1 1582:1 1600:1 1607:1 1795:2 1923:1 1979:1 2027:1 2105:1 2113:1 2133:1 2205:1 2214:1 2216:1 2267:1 2375:1 2391:1 2402:1 2422:1 2505:1 2512:1 2536:1 2832:1 2859:1 2962:1 2985:1 3005:1 3014:2 3023:2 3090:1 3463:1 3489:1 3534:1 3548:1 3752:1 3788:1 3889:1 4126:1 4173:1 4340:2 4450:1 4651:1 4682:1 4781:1 4816:1 4818:1 4868:1 4905:1 4927:1 5132:1 5247:1 5264:1 5270:1 5277:1 5284:1 5293:1 5344:1 5436:1 5686:1 5710:1 5794:2 5815:1 5889:1 5917:1 5952:1 6040:1 6345:1 6348:3 6355:1 6378:1 6399:1 6446:1 6488:1 6567:1 6583:1 6588:2 6610:1 6692:1 6697:1 6850:1 7052:1 7186:1 7216:1 7221:1 7537:2 7540:1 7594:1 7855:2 7864:1 7943:1 7989:1 8104:1 8172:3 8194:1 8201:2 8267:1 8584:1 8698:2 8849:1 8892:1 8913:1 8927:1 8952:1 8971:1 9012:1 9470:1 9593:1 9595:1 9606:2 9779:1 9874:1 10167:1 10236:7 10272:1 10273:1 10714:1 10901:1 10926:1 11144:1 11238:1 11256:1 11272:1 11372:1 11377:2 11404:1 11405:1 11462:1 11492:1 11497:1 11632:1 11678:1 11751:1 11767:1 11932:1 12072:1 12108:1 12140:1 12151:1 12181:1 12255:1 12304:1 12373:1 12380:1 12449:1 12591:1 12680:1 12715:1 12857:1 13251:1 13425:3 13448:1 13475:1 13493:1 13497:1 13531:1 13691:1 13869:1 13945:1 13974:2 14020:1 14040:1 14114:1 14167:1 14225:1 14460:1 14551:1 14864:1 14872:1 15119:1 15407:1 15415:1 15706:1 15760:1 15785:1 16402:1 16415:1 16457:1 16467:1 16475:1 16502:1 16635:1 16641:1 16649:1 16700:1 16733:1 16738:1 16949:1 16962:1 17060:1 17211:1 17267:1 17340:1 17691:1 17729:1 17915:1 17954:1 18031:1 18060:1 18129:1 18167:1 18434:1 18471:1 18505:1 18894:1 18938:1 19190:1 19306:1 19315:1 19419:2 19559:1 19644:244 19840:1 19863:1 19871:1 19895:1 20072:1 20216:1 20218:1 20303:1 20393:1 20412:1 20476:1 20547:1 20553:1 20576:1 20609:1 20674:1 20919:1 20951:1 21246:2 21286:1 21341:1 21531:1 21627:1 21990:1 22043:1 22056:1 22059:1 22213:1 22322:1 22446:1 22601:1 22659:1 22680:1 22711:1 22782:1 23014:1 23166:1 23180:1 23181:1 23214:1 23282:1 23332:1 23444:1 23483:1 23641:1 23644:2 23731:1 23779:2 23831:1 23850:1 23885:1 23899:1 24108:1 24142:2 24229:1 24404:1 24614:1 24633:1 24726:1 24835:2 24886:1 25120:1 25351:1 25509:1 25591:1 25635:1 25739:1 25799:1 25850:1 25921:1 25935:1 26051:1 26449:1 26456:1 26504:1 26548:1 26566:1 26639:1 26763:1 26855:1 26857:2 26904:1 26964:1 27001:2 27039:1 27089:1 27262:1 27648:1 27710:1 27797:2 27854:1 27917:1 27927:1 28004:1 28049:1 28069:1 28152:1 28280:1 28290:1 28342:1 28496:1 28597:1 28782:1 29014:1 29052:1 29063:1 29088:1 29144:1 29158:1 29160:1 29224:2 29249:1 29253:1 29295:1 29340:1 29539:1 29590:1 29593:2 29689:1 29781:1 29825:2 29851:1 29887:2 29896:1 29910:1 30052:1 30112:1 30124:2 30197:1 30217:1 30289:1 30358:1 30436:2 30692:1 30864:1 30884:1 30907:1 30981:1 30986:1 31003:1 31055:1 31142:1 31208:1 31246:1 31248:1 31250:1 31251:1 19 234:1 643:2 671:1 697:1 764:1 890:1 907:1 928:1 937:1 938:1 994:1 998:1 1055:1 1080:1 1137:1 1389:1 1527:1 1559:1 1582:1 1600:1 1607:1 1795:3 1923:1 1979:1 2027:1 2105:1 2113:1 2133:1 2205:1 2214:1 2216:1 2267:1 2369:1 2375:1 2391:1 2402:1 2422:1 2505:1 2512:1 2536:1 2832:1 2859:1 2962:1 2985:1 3005:1 3014:3 3023:2 3090:1 3463:1 3489:1 3534:1 3548:1 3752:1 3788:1 3794:1 3889:1 4100:1 4126:1 4173:1 4229:1 4340:3 4450:1 4651:1 4682:1 4781:1 4816:1 4817:1 4818:1 4868:1 4876:1 4905:1 4927:1 5132:1 5247:1 5264:1 5270:1 5277:1 5284:1 5293:1 5344:1 5436:1 5508:1 5686:1 5710:1 5794:3 5815:1 5889:1 5917:1 5952:1 6040:1 6345:1 6348:4 6355:1 6362:1 6378:1 6399:1 6446:1 6488:1 6567:1 6583:1 6588:3 6610:1 6692:1 6697:1 6736:1 6850:1 7052:1 7186:1 7216:1 7221:1 7537:3 7540:1 7585:1 7594:1 7855:2 7864:1 7943:1 7989:1 8104:1 8172:3 8194:1 8201:3 8267:1 8584:1 8698:2 8849:1 8892:1 8913:1 8927:1 8952:1 8971:1 9012:1 9470:1 9593:1 9595:1 9606:2 9779:1 9874:1 10167:1 10236:7 10272:1 10273:1 10714:1 10901:1 10926:1 11144:1 11238:1 11256:1 11272:1 11372:1 11377:2 11404:1 11405:1 11462:1 11492:1 11497:1 11632:1 11678:1 11751:1 11767:1 11932:1 12072:1 12108:1 12140:1 12151:1 12181:1 12255:1 12304:1 12373:1 12380:1 12449:2 12501:1 12591:1 12680:1 12715:1 12857:1 13251:1 13425:3 13448:1 13475:2 13493:1 13497:1 13531:1 13691:1 13765:1 13869:1 13945:1 13974:3 14020:1 14040:1 14114:1 14167:1 14225:1 14460:1 14551:1 14864:1 14872:1 14919:1 15119:1 15407:1 15415:1 15706:1 15760:1 15785:1 15861:1 16402:1 16415:1 16457:1 16467:1 16475:1 16502:1 16635:1 16641:1 16649:1 16700:1 16733:1 16738:1 16949:1 16962:1 17060:1 17211:1 17267:1 17340:1 17595:1 17691:1 17729:2 17915:1 17954:1 18031:1 18060:1 18111:1 18129:1 18167:1 18417:1 18434:1 18471:1 18505:1 18747:1 18894:1 18938:1 19190:1 19306:1 19315:1 19419:2 19434:1 19559:1 19644:273 19840:1 19863:1 19871:1 19895:1 20072:1 20095:1 20216:1 20218:1 20303:1 20393:1 20412:1 20476:1 20547:1 20553:1 20576:1 20609:1 20674:1 20919:1 20951:1 21246:2 21286:1 21341:2 21465:1 21531:1 21627:1 21990:1 22027:1 22043:1 22056:1 22059:1 22213:1 22322:1 22446:1 22601:1 22659:1 22680:1 22711:1 22782:1 23014:1 23166:1 23180:2 23181:1 23214:1 23282:1 23332:1 23444:1 23483:1 23641:1 23644:3 23731:1 23779:2 23831:1 23850:1 23885:1 23899:1 24108:1 24142:2 24229:1 24404:1 24614:1 24633:1 24726:1 24835:3 24886:1 25120:1 25351:1 25509:1 25591:1 25635:1 25739:1 25799:2 25850:1 25921:1 25935:1 25970:1 26051:1 26449:1 26456:1 26504:1 26505:1 26548:1 26566:1 26639:1 26763:1 26855:1 26857:3 26904:1 26964:1 27001:3 27039:1 27089:1 27262:1 27584:1 27648:1 27710:1 27748:1 27797:2 27854:1 27917:1 27927:1 28004:1 28049:1 28069:1 28152:1 28280:1 28290:1 28342:1 28496:1 28597:1 28690:1 28782:1 29014:1 29052:1 29054:1 29063:1 29088:1 29092:1 29130:1 29144:1 29158:1 29160:1 29224:2 29249:1 29253:1 29295:1 29340:1 29539:1 29590:1 29593:2 29689:1 29781:1 29825:2 29851:1 29887:2 29896:1 29910:1 30052:1 30112:1 30124:2 30197:1 30199:1 30217:1 30289:1 30358:1 30436:2 30692:1 30864:1 30884:1 30907:1 30981:1 30986:1 31003:1 31055:1 31142:1 31208:1 31246:1 31248:1 31250:1 31251:1 19 234:1 643:2 671:1 697:1 764:1 843:1 890:1 907:1 928:1 937:1 938:1 949:1 967:1 994:1 998:1 1037:1 1055:1 1080:1 1137:1 1213:1 1350:1 1389:1 1527:1 1559:1 1582:1 1586:1 1600:1 1607:1 1795:3 1923:1 1979:1 2027:1 2105:1 2113:1 2133:1 2205:1 2214:1 2216:1 2267:1 2369:1 2375:1 2391:1 2402:1 2422:1 2505:1 2512:1 2536:1 2832:2 2859:1 2962:1 2985:1 3005:1 3014:4 3023:2 3090:1 3463:1 3489:1 3534:1 3548:1 3752:1 3788:1 3794:1 3889:1 4100:1 4126:1 4173:1 4229:1 4340:3 4348:1 4450:1 4454:1 4651:1 4682:1 4781:1 4816:1 4817:1 4818:1 4868:1 4876:1 4905:1 4927:1 5034:1 5065:1 5132:1 5247:1 5264:1 5265:1 5270:1 5277:1 5284:1 5293:1 5344:1 5436:1 5508:1 5686:1 5710:1 5794:3 5815:1 5889:1 5917:1 5952:1 6036:1 6040:1 6345:1 6346:1 6348:4 6355:1 6362:1 6378:1 6399:1 6446:1 6488:1 6567:1 6583:1 6588:3 6610:1 6692:1 6697:1 6709:1 6736:1 6769:1 6850:1 7052:1 7186:2 7216:1 7221:1 7537:3 7540:1 7585:1 7594:1 7855:2 7864:1 7943:1 7989:1 8032:1 8104:1 8105:1 8130:1 8172:3 8194:1 8201:4 8267:1 8400:1 8584:1 8598:1 8698:2 8849:1 8892:1 8913:1 8927:1 8952:1 8971:1 9012:1 9094:1 9470:1 9593:1 9595:1 9606:2 9779:2 9783:1 9874:1 10167:1 10236:7 10272:1 10273:1 10358:1 10394:1 10654:1 10669:1 10714:1 10901:1 10926:1 11144:1 11238:1 11256:1 11272:1 11372:1 11377:2 11404:1 11405:1 11462:1 11492:1 11497:1 11620:1 11632:1 11678:1 11686:1 11751:1 11767:1 11852:1 11932:1 12072:1 12108:1 12140:1 12151:1 12181:1 12255:1 12304:1 12373:1 12380:1 12449:3 12501:1 12517:1 12591:1 12680:1 12715:1 12857:1 13229:1 13251:1 13425:3 13448:1 13475:2 13493:1 13497:1 13531:1 13691:1 13765:1 13869:1 13909:1 13945:1 13974:3 14020:1 14040:1 14067:1 14114:1 14167:1 14225:1 14307:1 14460:1 14551:1 14864:1 14872:1 14919:1 14969:1 15119:1 15401:1 15407:1 15415:1 15706:1 15760:1 15785:1 15861:1 15927:1 16134:1 16313:1 16402:1 16415:1 16457:1 16467:1 16475:1 16502:1 16635:1 16641:1 16649:1 16700:1 16733:1 16738:1 16949:1 16962:1 17060:1 17116:1 17188:1 17211:1 17267:1 17340:1 17595:1 17691:1 17729:2 17915:1 17954:1 18031:1 18060:1 18111:1 18129:1 18167:1 18171:1 18417:1 18429:1 18434:1 18471:1 18505:1 18536:1 18747:1 18894:1 18938:1 19190:1 19306:1 19315:1 19419:2 19434:1 19559:1 19644:308 19840:1 19863:1 19871:1 19895:1 20072:1 20095:1 20216:1 20218:1 20303:1 20393:1 20412:1 20476:1 20547:1 20553:1 20576:1 20609:1 20674:1 20919:1 20951:1 21246:2 21286:1 21341:3 21465:1 21531:1 21627:1 21990:1 22027:1 22043:1 22048:1 22056:2 22059:1 22213:1 22322:1 22327:1 22446:1 22601:1 22659:1 22680:1 22711:1 22782:1 22867:1 23000:1 23008:1 23014:1 23151:1 23166:1 23180:3 23181:1 23214:1 23282:1 23332:1 23444:1 23483:1 23641:1 23644:3 23684:1 23731:1 23779:2 23831:1 23850:1 23885:1 23899:1 23979:1 24108:1 24142:2 24200:1 24229:1 24404:1 24614:1 24633:1 24726:1 24835:3 24886:1 25120:1 25345:1 25351:1 25509:1 25591:1 25635:1 25684:1 25739:1 25799:2 25850:1 25921:1 25932:1 25935:1 25970:1 25989:1 25997:1 26051:1 26449:1 26456:1 26504:1 26505:2 26548:1 26566:1 26639:1 26763:1 26855:1 26857:3 26904:1 26938:1 26964:1 27001:3 27039:1 27089:1 27207:1 27262:1 27269:1 27279:1 27584:1 27648:1 27710:1 27748:1 27797:2 27854:1 27917:1 27927:1 28004:1 28049:1 28069:1 28152:1 28280:1 28290:1 28342:1 28496:1 28597:1 28690:1 28727:1 28782:1 29014:1 29052:1 29054:1 29063:1 29088:1 29092:1 29130:1 29137:1 29144:1 29158:1 29160:1 29224:2 29249:1 29253:1 29295:1 29340:1 29450:1 29539:1 29590:1 29593:2 29689:1 29781:1 29825:2 29851:1 29887:2 29896:1 29910:1 30039:1 30052:1 30078:2 30112:1 30124:2 30197:1 30199:1 30217:1 30289:1 30358:1 30436:2 30510:1 30513:1 30538:1 30692:1 30693:1 30842:1 30864:1 30884:1 30907:1 30981:1 30986:1 31003:1 31055:1 31142:1 31208:1 31246:1 31248:1 31250:1 31251:1 19 234:1 643:2 671:1 697:1 764:1 843:1 890:1 907:1 928:1 937:1 938:1 949:1 967:1 994:1 998:1 1037:1 1055:1 1080:2 1137:1 1213:1 1350:1 1389:1 1527:1 1559:1 1582:1 1586:1 1600:1 1607:1 1795:3 1922:1 1923:1 1979:1 2027:1 2105:1 2113:1 2133:1 2205:1 2214:1 2216:1 2267:1 2369:1 2375:1 2391:1 2402:1 2422:1 2505:1 2512:1 2528:1 2536:1 2655:1 2832:2 2859:1 2962:1 2985:1 3005:1 3014:4 3023:2 3065:1 3090:1 3463:1 3489:1 3534:1 3548:1 3752:1 3788:1 3794:1 3824:1 3889:1 4055:1 4100:1 4126:1 4173:1 4229:1 4340:3 4348:1 4450:1 4454:1 4608:1 4651:1 4682:1 4781:1 4816:1 4817:1 4818:1 4862:1 4868:1 4876:1 4905:1 4927:1 5034:1 5065:1 5132:1 5247:1 5264:1 5265:1 5270:1 5277:1 5284:2 5293:1 5344:1 5436:1 5508:1 5686:1 5710:1 5794:3 5815:1 5889:1 5917:1 5952:1 6036:1 6040:1 6151:1 6345:1 6346:1 6348:4 6355:1 6362:1 6378:1 6399:1 6444:1 6446:1 6488:1 6567:1 6583:1 6588:3 6610:1 6692:1 6697:1 6709:1 6736:1 6769:1 6850:1 7013:1 7052:1 7186:2 7216:1 7221:1 7537:3 7540:1 7585:1 7594:1 7855:2 7864:1 7943:1 7989:1 8032:1 8104:1 8105:1 8130:1 8172:3 8194:1 8201:4 8204:1 8267:1 8400:1 8443:1 8584:1 8598:1 8698:2 8741:1 8849:1 8892:1 8913:1 8927:1 8952:1 8971:1 8976:1 9012:1 9072:1 9094:1 9165:1 9470:1 9593:1 9595:1 9606:2 9779:2 9783:1 9874:1 10167:1 10236:7 10272:1 10273:1 10358:1 10369:1 10394:1 10654:1 10669:1 10714:1 10901:1 10926:1 11144:1 11181:1 11238:1 11256:1 11272:1 11372:1 11377:2 11404:1 11405:1 11462:1 11492:1 11497:1 11620:1 11632:1 11678:1 11686:1 11689:1 11751:1 11767:1 11852:1 11932:1 12072:1 12108:1 12140:1 12151:1 12181:1 12255:1 12304:1 12373:1 12380:1 12449:3 12462:1 12501:1 12517:1 12591:1 12680:1 12715:1 12857:1 13229:1 13251:1 13425:3 13448:1 13475:2 13482:1 13493:1 13497:1 13531:1 13691:1 13765:1 13869:1 13878:1 13909:1 13945:2 13974:4 14020:1 14040:1 14067:1 14103:1 14114:1 14167:1 14225:1 14307:1 14323:1 14460:1 14551:1 14864:1 14872:1 14919:1 14969:1 15119:1 15213:1 15384:1 15401:1 15407:1 15415:1 15548:1 15550:1 15706:1 15760:1 15765:1 15785:1 15826:1 15861:1 15927:1 16134:1 16313:1 16402:1 16415:1 16431:1 16457:1 16467:1 16475:1 16502:1 16635:1 16641:1 16649:1 16700:1 16733:1 16738:1 16805:1 16949:1 16962:1 17060:1 17116:1 17188:1 17211:1 17267:1 17340:1 17419:1 17595:1 17686:1 17691:1 17729:2 17803:1 17915:1 17954:1 18028:1 18031:1 18060:1 18111:1 18126:1 18129:1 18167:1 18171:1 18188:1 18417:1 18429:1 18434:1 18471:1 18505:1 18536:1 18747:1 18894:1 18938:1 18994:1 19190:1 19306:2 19315:1 19419:2 19434:1 19559:1 19644:340 19840:1 19863:1 19871:1 19895:1 20072:1 20095:1 20216:1 20218:1 20303:1 20393:1 20412:1 20476:1 20547:1 20553:1 20576:1 20609:1 20630:1 20674:1 20875:1 20919:1 20951:1 21246:2 21286:1 21302:1 21341:3 21365:1 21465:1 21531:1 21627:1 21990:1 22027:1 22043:2 22048:1 22056:3 22059:1 22213:1 22296:1 22322:1 22327:1 22446:1 22601:1 22659:1 22680:1 22711:1 22782:1 22801:1 22867:1 23000:1 23008:1 23014:1 23151:1 23166:1 23180:3 23181:1 23205:1 23214:1 23221:1 23282:1 23332:1 23444:1 23483:1 23641:1 23644:3 23684:1 23731:1 23779:2 23804:1 23831:1 23850:1 23856:1 23885:1 23899:1 23979:1 24056:1 24108:1 24142:2 24200:1 24229:1 24404:1 24500:1 24614:1 24633:1 24726:1 24835:4 24886:1 25120:1 25345:1 25351:1 25509:1 25591:1 25635:1 25684:1 25739:1 25775:1 25799:2 25850:1 25921:1 25932:1 25935:1 25970:1 25989:1 25997:1 26049:1 26051:1 26449:1 26456:1 26504:2 26505:2 26548:1 26566:1 26639:1 26763:1 26855:2 26857:3 26904:1 26929:1 26938:1 26964:1 27001:3 27039:1 27040:1 27089:1 27207:1 27262:1 27269:1 27279:1 27584:1 27648:1 27710:1 27732:1 27748:1 27797:2 27854:1 27917:1 27927:1 28004:1 28049:1 28069:1 28096:1 28152:1 28280:1 28290:1 28342:1 28379:1 28496:1 28597:1 28690:1 28727:1 28782:1 29014:1 29052:1 29054:1 29063:1 29088:1 29092:1 29130:1 29137:1 29144:1 29158:1 29160:1 29196:1 29224:2 29249:1 29253:1 29295:1 29340:1 29354:1 29450:1 29539:1 29590:1 29593:2 29689:1 29781:1 29825:2 29851:1 29887:3 29896:1 29910:1 29938:1 29946:1 30001:1 30039:1 30052:1 30078:2 30112:1 30118:1 30124:2 30197:1 30199:1 30217:1 30289:1 30358:1 30436:2 30510:1 30513:1 30538:1 30692:1 30693:1 30842:1 30864:1 30884:1 30907:1 30940:1 30981:1 30986:1 31003:1 31055:1 31142:1 31208:1 31246:1 31248:1 31250:1 31251:1 19 234:1 367:1 643:3 671:1 697:1 764:1 843:1 890:1 907:1 928:1 937:1 938:3 949:1 967:1 994:1 998:1 1037:1 1055:1 1080:2 1137:1 1213:1 1350:1 1389:1 1437:1 1527:1 1559:1 1582:1 1586:2 1600:1 1607:1 1690:1 1795:3 1922:1 1923:1 1979:1 2027:1 2105:1 2113:1 2133:1 2205:1 2214:1 2216:1 2267:1 2369:1 2375:1 2391:1 2402:1 2422:1 2505:1 2512:1 2528:1 2536:1 2655:1 2669:1 2832:2 2859:1 2962:1 2985:1 3005:1 3014:5 3023:2 3065:1 3090:1 3336:1 3463:1 3489:1 3534:1 3548:1 3742:1 3752:1 3788:1 3794:1 3824:1 3889:1 3943:1 4055:1 4100:1 4126:1 4173:1 4208:1 4229:1 4340:3 4348:1 4450:1 4454:2 4608:1 4651:1 4682:1 4781:1 4816:1 4817:1 4818:1 4862:1 4868:1 4876:1 4905:1 4906:1 4927:1 5034:1 5062:1 5065:2 5132:1 5247:1 5264:1 5265:1 5270:1 5277:1 5284:2 5293:1 5344:1 5436:1 5508:1 5686:1 5710:1 5777:1 5794:3 5815:1 5889:1 5917:1 5952:1 5954:1 6036:1 6040:1 6151:1 6196:1 6345:1 6346:1 6348:4 6355:1 6362:1 6378:1 6399:1 6444:1 6446:1 6488:1 6567:1 6583:1 6588:3 6610:1 6692:1 6697:1 6709:1 6715:1 6736:1 6769:1 6850:1 6882:1 7013:1 7045:1 7052:1 7151:1 7186:2 7216:1 7221:1 7537:3 7540:1 7585:1 7594:1 7855:2 7864:1 7943:1 7989:1 8032:1 8041:1 8104:1 8105:1 8130:1 8172:3 8194:1 8201:5 8204:1 8213:1 8267:1 8283:1 8400:1 8443:1 8584:1 8598:1 8698:2 8741:1 8849:1 8892:1 8913:1 8927:1 8952:1 8971:1 8976:1 8985:1 8986:1 9012:1 9072:1 9094:1 9165:1 9339:1 9470:1 9593:1 9595:1 9606:2 9779:2 9783:1 9874:1 10046:1 10167:1 10236:7 10272:1 10273:1 10358:1 10369:2 10394:1 10611:1 10654:1 10669:1 10714:1 10901:1 10926:1 11144:1 11181:1 11238:1 11256:1 11272:1 11372:1 11377:2 11404:1 11405:1 11462:1 11492:1 11497:1 11620:1 11632:1 11678:1 11686:1 11689:1 11751:1 11767:1 11852:1 11932:1 12072:1 12108:1 12140:1 12151:1 12181:1 12255:1 12304:1 12322:1 12346:1 12373:1 12380:1 12427:1 12449:5 12462:1 12501:1 12517:1 12591:1 12668:1 12680:1 12715:1 12857:1 13229:1 13251:1 13425:3 13448:1 13475:3 13482:1 13493:1 13497:1 13531:1 13691:1 13765:1 13869:1 13878:2 13909:2 13945:2 13974:4 14020:1 14040:1 14067:1 14077:1 14103:1 14114:1 14167:1 14225:1 14307:1 14323:1 14370:1 14460:1 14551:1 14618:1 14627:1 14864:1 14872:1 14911:1 14919:1 14927:1 14969:1 15119:1 15143:1 15213:1 15384:1 15401:1 15407:1 15415:1 15548:1 15550:1 15642:1 15706:1 15760:1 15765:1 15785:1 15826:1 15853:1 15861:1 15899:1 15927:1 16134:1 16313:1 16402:1 16415:1 16431:1 16457:2 16467:1 16475:3 16502:1 16635:1 16641:1 16649:1 16700:1 16733:1 16738:1 16747:1 16805:1 16949:1 16962:1 17060:1 17116:1 17188:1 17211:1 17267:1 17340:1 17419:1 17595:1 17686:1 17691:1 17729:11 17803:1 17898:1 17915:1 17917:1 17954:1 18028:1 18031:1 18060:1 18111:1 18126:1 18129:1 18167:1 18171:1 18188:1 18417:1 18429:1 18434:1 18471:1 18505:1 18536:1 18747:1 18785:1 18894:1 18938:1 18994:1 19190:1 19306:2 19315:1 19419:2 19434:1 19559:1 19644:391 19840:1 19863:1 19871:1 19895:1 20072:1 20095:1 20216:1 20218:1 20303:1 20393:1 20412:1 20460:1 20464:1 20476:1 20502:1 20547:1 20553:1 20576:1 20609:1 20630:1 20674:1 20875:1 20919:1 20951:1 21079:1 21197:1 21246:2 21286:1 21302:1 21341:5 21365:1 21457:2 21465:1 21531:1 21627:1 21741:1 21990:1 22027:1 22043:2 22048:1 22056:3 22059:1 22213:1 22262:1 22296:1 22322:1 22327:1 22446:1 22601:1 22659:1 22680:1 22711:1 22782:1 22801:1 22860:1 22867:1 22891:1 22943:1 23000:1 23008:1 23014:1 23151:1 23166:1 23180:5 23181:1 23205:1 23214:1 23221:1 23282:1 23332:1 23404:1 23444:1 23483:1 23641:1 23644:3 23684:1 23731:1 23779:2 23804:2 23831:1 23850:1 23856:1 23878:1 23885:1 23899:1 23979:1 24056:1 24108:1 24142:2 24196:1 24200:1 24229:1 24404:1 24500:1 24614:1 24633:1 24704:1 24726:1 24835:4 24886:1 25120:1 25345:1 25351:1 25509:1 25591:1 25635:1 25684:1 25739:1 25775:1 25799:11 25850:2 25921:1 25932:1 25935:1 25949:1 25970:1 25989:2 25996:1 25997:1 26049:1 26051:1 26090:1 26215:1 26449:1 26456:1 26504:2 26505:2 26548:1 26566:1 26639:1 26763:1 26855:2 26857:3 26904:1 26929:1 26938:1 26964:1 27001:3 27039:3 27040:1 27089:1 27201:1 27207:1 27262:1 27269:1 27279:1 27406:1 27584:1 27648:1 27710:1 27732:1 27748:1 27797:2 27854:1 27909:1 27917:1 27927:1 28004:1 28049:1 28069:1 28096:1 28103:1 28152:1 28280:1 28290:1 28342:1 28379:1 28496:1 28597:1 28690:1 28727:1 28782:1 29014:1 29032:1 29052:1 29054:1 29063:1 29088:1 29092:1 29109:1 29130:1 29134:1 29137:1 29144:1 29158:1 29160:1 29196:1 29224:2 29227:1 29249:1 29253:1 29295:1 29340:1 29344:1 29354:1 29450:1 29539:1 29590:1 29593:2 29689:1 29781:1 29825:2 29851:1 29887:3 29896:1 29910:1 29938:2 29946:1 30001:1 30039:2 30052:1 30078:2 30112:1 30118:1 30124:2 30130:1 30197:1 30199:2 30217:1 30289:1 30358:1 30436:2 30510:1 30513:1 30538:1 30692:1 30693:1 30842:1 30864:1 30884:1 30907:1 30940:1 30981:1 30986:1 31003:1 31055:1 31142:1 31208:1 31212:1 31246:1 31248:1 31250:1 31251:1 19 234:1 367:1 643:3 671:1 697:1 764:1 837:1 843:1 890:1 907:1 928:1 937:1 938:3 948:1 949:1 967:1 994:1 998:1 1037:1 1055:1 1080:2 1137:1 1213:1 1350:1 1389:1 1437:1 1527:1 1559:1 1582:1 1586:2 1600:1 1607:1 1690:1 1795:3 1922:1 1923:1 1979:1 2027:1 2105:1 2113:1 2133:1 2205:1 2214:1 2216:1 2251:1 2267:1 2369:1 2375:1 2391:1 2402:1 2422:1 2505:1 2512:1 2528:2 2536:1 2655:1 2669:1 2832:2 2859:1 2962:1 2985:1 3005:1 3014:5 3023:2 3065:2 3090:1 3336:1 3463:1 3489:1 3534:1 3548:1 3742:1 3752:1 3788:1 3794:1 3824:1 3889:1 3943:1 4055:2 4100:1 4126:1 4173:1 4208:1 4229:1 4340:3 4348:1 4450:1 4454:2 4608:1 4651:1 4682:1 4781:1 4816:1 4817:1 4818:1 4862:1 4868:1 4876:1 4905:1 4906:1 4927:1 5034:1 5039:1 5062:1 5065:2 5132:1 5247:1 5264:1 5265:1 5270:1 5277:1 5284:2 5293:1 5344:1 5436:1 5508:1 5686:1 5710:1 5777:1 5794:3 5815:1 5889:1 5917:1 5952:1 5954:1 6036:1 6040:1 6151:1 6196:1 6345:1 6346:1 6348:5 6355:1 6362:1 6378:1 6399:1 6444:1 6446:1 6488:1 6567:1 6583:1 6588:3 6610:1 6692:1 6697:1 6709:1 6715:1 6736:1 6769:1 6850:1 6882:1 7013:2 7045:1 7052:1 7142:1 7151:1 7186:2 7216:1 7221:1 7314:1 7537:3 7540:1 7585:1 7594:1 7855:2 7864:1 7943:1 7989:1 8032:1 8041:1 8104:1 8105:1 8130:2 8172:3 8194:1 8201:5 8204:2 8213:1 8267:1 8283:1 8400:1 8443:1 8584:1 8598:1 8698:2 8741:1 8849:1 8892:1 8913:1 8927:1 8952:1 8971:1 8976:1 8985:1 8986:1 9012:1 9057:1 9072:2 9094:1 9165:1 9339:1 9470:1 9593:1 9595:1 9606:2 9779:2 9783:1 9874:1 9964:2 10046:1 10167:1 10235:1 10236:8 10272:1 10273:1 10358:1 10369:2 10394:1 10611:1 10654:1 10669:1 10714:1 10901:1 10926:1 11144:1 11158:1 11181:1 11238:1 11256:1 11272:1 11372:1 11377:2 11404:1 11405:1 11462:1 11492:1 11493:1 11497:1 11620:1 11632:1 11678:1 11686:1 11689:1 11751:1 11767:1 11842:1 11852:1 11928:1 11932:1 11976:1 12072:1 12108:1 12140:1 12151:1 12181:1 12255:1 12304:1 12322:1 12346:1 12373:1 12380:1 12427:1 12449:5 12462:1 12501:1 12517:1 12591:1 12668:1 12680:1 12715:1 12857:1 13229:1 13251:1 13425:3 13448:1 13475:3 13482:1 13493:1 13497:1 13531:1 13558:1 13691:1 13765:1 13869:1 13878:2 13909:2 13945:2 13974:4 14020:1 14040:1 14067:1 14077:1 14103:1 14114:1 14167:1 14225:1 14307:1 14323:1 14370:1 14372:1 14460:1 14551:1 14618:1 14627:1 14864:1 14872:1 14911:1 14919:1 14927:1 14969:1 15119:1 15143:1 15213:1 15225:1 15384:1 15401:1 15407:1 15415:1 15548:1 15550:2 15642:1 15706:1 15760:1 15765:1 15785:1 15826:2 15853:1 15861:1 15899:1 15927:1 15994:1 16134:1 16313:1 16402:1 16415:1 16431:1 16457:2 16467:1 16475:3 16502:1 16635:1 16641:2 16649:1 16700:1 16733:1 16738:1 16747:1 16805:1 16949:1 16962:1 17060:1 17116:1 17188:1 17211:1 17267:1 17340:1 17419:1 17595:1 17686:1 17691:1 17729:11 17776:1 17803:2 17898:1 17915:1 17917:1 17954:1 18028:1 18031:1 18060:1 18111:1 18126:2 18129:1 18167:1 18171:1 18188:1 18417:1 18429:1 18434:1 18447:1 18471:1 18505:1 18536:1 18747:1 18785:1 18894:1 18938:1 18994:2 19085:1 19190:1 19306:3 19315:1 19419:2 19434:1 19559:1 19594:1 19644:404 19840:1 19863:1 19871:1 19895:1 20072:1 20095:1 20216:1 20218:1 20303:1 20393:1 20412:1 20438:1 20460:1 20464:1 20476:1 20502:1 20547:1 20553:1 20576:1 20597:1 20609:1 20630:1 20674:1 20875:2 20919:1 20951:1 21079:1 21197:1 21246:2 21286:1 21302:1 21341:5 21365:2 21457:2 21465:1 21531:1 21627:1 21629:1 21741:1 21990:1 22027:1 22043:2 22048:1 22056:3 22059:1 22213:1 22262:1 22296:1 22322:1 22327:1 22446:1 22601:1 22659:1 22680:1 22711:1 22782:1 22801:2 22809:1 22860:1 22867:1 22891:1 22943:1 23000:1 23008:1 23014:1 23151:1 23166:1 23180:5 23181:1 23205:1 23214:1 23221:1 23282:1 23332:1 23404:1 23444:1 23483:1 23641:1 23644:3 23651:1 23684:1 23731:1 23779:2 23804:2 23831:1 23850:1 23856:1 23878:1 23885:1 23899:1 23979:1 24056:2 24108:1 24142:2 24196:1 24200:1 24229:1 24404:1 24500:1 24614:1 24633:1 24704:1 24726:1 24835:4 24886:1 25120:1 25345:1 25351:1 25509:1 25591:1 25635:1 25684:1 25739:1 25775:1 25786:1 25799:11 25850:2 25921:1 25932:1 25935:1 25949:1 25970:1 25989:2 25996:1 25997:1 26049:1 26051:1 26055:1 26090:1 26215:1 26449:1 26456:1 26504:3 26505:2 26548:1 26566:1 26639:1 26762:1 26763:1 26855:2 26857:3 26904:1 26929:1 26938:1 26964:1 27001:3 27039:3 27040:1 27089:1 27201:1 27207:1 27262:1 27269:1 27279:1 27406:1 27584:1 27648:1 27710:1 27732:1 27748:1 27797:2 27854:1 27909:1 27917:1 27927:1 28004:1 28049:1 28069:1 28096:1 28103:1 28152:1 28280:1 28290:1 28342:1 28379:1 28496:1 28597:1 28690:1 28727:1 28782:1 29014:1 29032:1 29052:1 29054:1 29063:1 29088:1 29092:1 29109:1 29130:1 29134:1 29137:1 29144:1 29158:1 29160:1 29196:1 29224:2 29227:1 29249:1 29253:1 29295:1 29340:1 29344:1 29354:1 29444:1 29450:1 29539:1 29590:1 29593:2 29689:1 29781:1 29825:2 29851:1 29887:4 29896:1 29910:1 29938:2 29946:1 30001:1 30039:2 30052:1 30078:2 30112:1 30118:1 30124:2 30130:1 30197:1 30199:2 30217:1 30289:1 30358:1 30436:2 30510:1 30513:1 30538:1 30692:1 30693:1 30842:1 30864:1 30884:1 30907:1 30940:1 30981:1 30986:1 31003:1 31055:1 31142:1 31208:1 31212:1 31246:1 31248:1 31250:1 31251:1 19 52:1 91:1 154:1 206:1 234:1 276:1 367:1 643:3 671:1 697:1 764:1 837:1 843:1 890:1 907:1 928:1 937:1 938:3 948:1 949:1 967:1 994:1 998:1 1037:1 1055:1 1080:2 1137:1 1213:1 1350:1 1389:1 1437:1 1527:1 1533:1 1559:1 1582:1 1586:2 1592:1 1600:2 1607:1 1690:1 1795:3 1922:1 1923:1 1979:1 2027:1 2087:1 2105:1 2113:1 2133:1 2190:1 2205:1 2214:1 2216:2 2251:1 2267:3 2352:1 2369:1 2375:1 2391:1 2402:1 2422:1 2505:1 2512:1 2528:2 2536:1 2655:1 2669:1 2689:1 2832:2 2859:1 2962:1 2985:1 3005:1 3014:5 3023:3 3058:1 3065:2 3090:1 3102:1 3336:1 3463:1 3489:1 3534:1 3548:1 3652:1 3666:1 3742:1 3752:1 3788:1 3794:1 3813:1 3824:2 3889:1 3943:1 4055:2 4100:1 4104:1 4126:1 4173:1 4208:1 4228:1 4229:1 4340:3 4348:1 4450:1 4454:2 4608:1 4651:1 4664:1 4682:1 4781:1 4816:1 4817:1 4818:1 4862:1 4868:1 4876:1 4905:1 4906:2 4927:1 5034:1 5039:1 5062:1 5065:2 5132:2 5245:1 5247:1 5264:2 5265:2 5270:1 5271:1 5275:1 5276:1 5277:1 5284:2 5293:1 5344:1 5356:1 5436:1 5508:1 5686:1 5710:1 5777:1 5794:3 5815:1 5889:1 5917:1 5952:1 5954:1 6036:1 6040:1 6061:1 6151:1 6196:1 6345:1 6346:2 6348:5 6349:1 6355:1 6362:1 6378:1 6399:1 6444:1 6446:1 6488:1 6567:1 6583:1 6588:3 6610:1 6692:1 6697:1 6707:1 6709:1 6715:1 6736:1 6769:1 6850:1 6882:1 7013:2 7045:1 7052:1 7142:1 7151:1 7181:1 7186:2 7216:1 7221:1 7314:1 7537:4 7540:1 7585:1 7594:1 7855:2 7864:1 7887:1 7943:1 7975:1 7989:1 8032:1 8041:1 8104:1 8105:1 8130:2 8172:3 8194:1 8201:5 8204:2 8213:1 8267:1 8283:1 8315:1 8400:1 8442:1 8443:1 8584:1 8598:1 8698:3 8741:1 8849:1 8892:1 8913:1 8918:1 8927:2 8952:1 8971:1 8976:1 8985:1 8986:1 9012:1 9057:1 9072:2 9094:1 9165:2 9326:1 9339:1 9470:1 9588:1 9593:1 9595:1 9606:3 9715:1 9779:2 9783:1 9874:1 9964:2 10046:1 10167:1 10172:1 10235:1 10236:8 10272:1 10273:1 10302:1 10358:1 10369:2 10394:1 10439:1 10611:1 10654:2 10669:1 10699:1 10714:1 10901:1 10926:1 11064:1 11144:1 11158:1 11181:2 11238:1 11256:1 11272:1 11372:1 11377:3 11388:1 11404:1 11405:1 11462:1 11492:1 11493:1 11497:1 11620:1 11632:1 11678:1 11686:1 11689:1 11751:1 11767:1 11842:1 11852:1 11871:1 11928:1 11932:1 11976:1 12072:1 12088:1 12108:1 12140:1 12151:1 12181:1 12255:1 12304:1 12322:1 12324:1 12344:1 12346:1 12373:1 12380:1 12427:1 12449:5 12462:1 12467:1 12501:1 12517:1 12591:1 12668:1 12680:1 12715:1 12857:1 12962:1 13124:1 13229:1 13251:1 13425:4 13448:1 13475:3 13482:1 13493:1 13497:1 13531:1 13552:1 13558:1 13572:1 13691:1 13765:1 13869:1 13878:2 13909:2 13945:2 13974:4 14020:1 14040:1 14067:1 14077:2 14103:1 14114:1 14167:1 14222:1 14225:1 14274:1 14307:1 14323:1 14325:1 14370:1 14372:1 14377:1 14460:1 14468:1 14551:1 14618:1 14627:1 14864:1 14872:1 14911:1 14919:1 14927:1 14969:1 15119:1 15143:1 15193:1 15213:1 15225:1 15384:1 15401:1 15407:1 15410:1 15415:2 15438:2 15548:1 15550:2 15642:1 15706:1 15760:1 15765:1 15785:1 15826:2 15853:1 15861:1 15899:1 15927:1 15994:1 16095:1 16134:1 16186:1 16313:1 16363:1 16402:1 16415:1 16431:1 16457:2 16467:1 16475:3 16502:1 16635:1 16641:2 16649:1 16700:1 16733:1 16738:1 16747:1 16805:2 16949:1 16962:1 17060:1 17116:1 17188:1 17211:1 17231:1 17267:1 17340:1 17419:1 17595:1 17686:1 17691:1 17729:11 17776:1 17803:2 17898:1 17915:1 17917:1 17954:1 18028:1 18031:1 18060:1 18111:1 18126:2 18129:1 18167:1 18171:1 18188:1 18308:1 18417:1 18429:1 18434:1 18447:1 18471:1 18505:1 18535:1 18536:1 18747:1 18785:1 18894:1 18938:1 18994:2 19085:1 19129:1 19172:1 19190:2 19306:3 19308:1 19315:1 19419:2 19434:1 19559:1 19594:1 19644:492 19840:1 19863:1 19871:1 19878:1 19893:1 19895:1 20072:1 20095:1 20216:1 20218:1 20303:1 20393:1 20412:1 20438:1 20460:1 20464:1 20476:1 20502:1 20547:1 20553:1 20576:1 20597:1 20609:1 20630:1 20674:1 20778:1 20875:2 20919:1 20951:1 21079:1 21197:1 21246:2 21286:1 21302:1 21341:5 21365:2 21457:2 21465:1 21531:1 21627:2 21629:1 21741:1 21787:1 21900:1 21990:1 22027:1 22043:2 22048:1 22056:3 22059:1 22213:1 22262:1 22296:1 22322:1 22327:1 22446:1 22527:1 22557:1 22601:1 22659:1 22680:1 22711:1 22782:2 22801:2 22809:1 22860:1 22867:1 22891:1 22943:1 22970:1 23000:1 23008:1 23014:1 23151:1 23166:1 23180:5 23181:1 23187:1 23205:1 23214:1 23221:1 23222:1 23282:1 23332:1 23375:1 23395:1 23404:1 23444:1 23469:1 23483:1 23486:1 23513:1 23581:1 23607:1 23641:1 23644:3 23651:1 23684:1 23731:1 23779:2 23804:2 23831:1 23850:1 23856:1 23878:1 23885:1 23899:1 23979:1 24025:1 24056:2 24108:1 24142:2 24196:2 24200:1 24229:1 24404:1 24500:1 24614:2 24631:1 24633:1 24704:1 24726:2 24738:1 24770:1 24772:1 24835:4 24886:2 24964:1 25065:1 25120:1 25345:1 25351:1 25509:1 25591:1 25635:1 25684:1 25712:1 25739:1 25775:1 25786:1 25799:11 25850:2 25921:1 25932:1 25935:1 25949:1 25970:1 25989:2 25996:1 25997:1 26049:1 26051:1 26055:1 26090:1 26215:1 26439:1 26449:1 26456:1 26504:3 26505:2 26548:1 26566:1 26639:1 26762:1 26763:1 26855:2 26857:3 26889:1 26904:1 26929:1 26938:1 26964:1 27001:3 27039:3 27040:1 27089:1 27162:1 27201:1 27207:1 27262:1 27269:1 27279:1 27406:1 27584:1 27648:1 27710:1 27732:1 27748:1 27797:2 27854:1 27858:1 27909:1 27917:1 27927:1 28004:1 28049:1 28069:1 28096:1 28103:1 28152:1 28280:1 28290:1 28342:1 28379:1 28496:1 28597:1 28690:1 28727:1 28782:1 29014:1 29025:1 29032:1 29052:1 29054:1 29063:1 29088:1 29092:1 29109:1 29130:1 29134:1 29137:1 29144:2 29158:1 29160:1 29196:1 29224:3 29227:1 29249:1 29253:1 29284:1 29295:1 29340:1 29344:1 29354:1 29363:1 29444:1 29450:1 29539:1 29579:1 29590:1 29593:2 29610:1 29689:1 29781:1 29789:1 29825:2 29851:1 29860:1 29887:5 29896:1 29910:2 29938:3 29946:1 30001:1 30039:2 30052:1 30078:2 30112:1 30118:1 30124:2 30130:1 30197:1 30199:2 30217:1 30289:2 30358:1 30436:2 30510:1 30513:1 30538:1 30692:1 30693:1 30842:1 30864:1 30884:2 30907:1 30940:1 30981:1 30986:1 31003:2 31055:1 31142:1 31208:1 31212:1 31246:1 31248:1 31250:1 31251:1 19 52:1 91:1 154:1 206:1 234:1 246:1 276:1 367:1 643:3 671:1 697:1 764:1 837:1 843:1 890:1 907:1 928:1 933:1 937:1 938:3 948:1 949:1 951:1 967:1 994:1 998:1 1037:1 1038:1 1055:1 1080:3 1137:1 1213:1 1350:1 1389:1 1437:1 1527:1 1533:1 1559:1 1582:1 1586:2 1592:1 1600:2 1607:1 1690:1 1795:3 1922:1 1923:1 1979:1 2027:1 2087:1 2105:1 2113:1 2133:1 2190:1 2203:1 2205:1 2214:1 2216:2 2251:1 2267:3 2352:1 2369:1 2375:1 2391:1 2402:1 2422:1 2505:1 2512:1 2528:2 2536:1 2655:1 2669:1 2689:1 2832:2 2859:1 2962:2 2985:1 3005:1 3014:5 3023:3 3058:1 3065:2 3074:1 3090:1 3102:1 3307:1 3336:1 3423:2 3463:1 3488:1 3489:1 3534:1 3548:1 3652:1 3666:1 3742:1 3752:1 3788:1 3794:1 3813:1 3824:2 3889:1 3943:3 4055:2 4094:1 4100:1 4104:1 4126:1 4173:1 4208:1 4228:1 4229:2 4340:3 4348:1 4450:1 4454:2 4608:1 4651:1 4664:1 4682:1 4781:1 4816:1 4817:1 4818:1 4862:1 4868:1 4876:1 4905:1 4906:2 4927:1 4977:1 5034:1 5039:1 5062:1 5065:2 5132:2 5245:1 5247:1 5264:2 5265:2 5270:1 5271:1 5275:1 5276:2 5277:1 5284:2 5293:1 5344:1 5356:1 5436:1 5508:1 5678:1 5686:1 5710:1 5777:1 5784:1 5794:3 5815:1 5889:1 5917:1 5952:1 5954:1 6036:1 6040:1 6061:1 6151:1 6196:1 6345:1 6346:2 6348:5 6349:1 6355:1 6362:1 6378:1 6399:1 6444:1 6446:1 6488:1 6567:1 6583:1 6588:3 6610:1 6692:1 6697:1 6707:1 6709:1 6715:1 6736:1 6769:1 6850:1 6882:1 7013:2 7045:1 7052:1 7142:1 7151:1 7181:1 7186:2 7216:1 7221:1 7314:1 7537:4 7540:1 7585:1 7594:1 7855:2 7864:1 7887:1 7943:1 7975:1 7989:1 8032:1 8041:1 8104:1 8105:1 8130:2 8172:3 8194:1 8201:5 8204:2 8213:1 8267:1 8273:1 8283:1 8315:1 8400:1 8442:1 8443:1 8584:1 8598:1 8698:4 8741:1 8849:1 8884:1 8892:1 8913:1 8918:1 8927:2 8952:1 8971:1 8976:1 8985:1 8986:1 9012:1 9057:1 9072:2 9094:1 9146:1 9165:2 9259:1 9326:1 9339:1 9377:1 9470:1 9588:1 9593:1 9595:1 9606:4 9715:1 9779:2 9783:1 9874:1 9964:2 10046:1 10167:1 10172:1 10235:2 10236:16 10272:1 10273:1 10302:1 10358:1 10369:3 10394:1 10439:1 10471:1 10554:1 10611:2 10654:2 10669:1 10699:1 10714:1 10796:1 10901:1 10926:1 11064:1 11144:1 11158:1 11181:2 11238:1 11256:1 11272:1 11372:1 11377:3 11388:1 11404:1 11405:1 11462:1 11492:1 11493:1 11497:1 11586:1 11620:1 11632:1 11678:1 11686:1 11689:1 11751:1 11767:1 11842:1 11852:1 11871:1 11928:1 11932:1 11938:1 11976:1 12009:1 12072:1 12088:1 12108:1 12140:1 12151:1 12181:1 12255:1 12293:1 12304:1 12322:1 12324:1 12344:1 12346:1 12373:1 12380:1 12427:1 12449:5 12456:1 12462:1 12467:1 12501:1 12517:1 12591:1 12640:1 12668:1 12680:1 12715:1 12857:1 12962:1 13124:1 13229:1 13251:1 13425:4 13448:1 13475:3 13480:1 13482:1 13493:1 13497:1 13531:1 13552:1 13558:1 13572:1 13691:1 13707:1 13765:1 13869:1 13878:2 13909:2 13945:2 13974:4 14020:1 14040:1 14067:1 14077:2 14103:1 14114:1 14148:1 14167:1 14222:1 14225:1 14274:1 14307:1 14323:1 14325:1 14370:1 14372:1 14377:1 14460:1 14468:1 14544:1 14551:1 14618:1 14627:1 14864:1 14872:1 14911:1 14919:1 14927:1 14969:1 15119:1 15143:1 15193:1 15213:1 15225:1 15384:1 15401:1 15407:1 15410:1 15415:2 15438:2 15457:1 15548:1 15550:2 15642:1 15706:1 15760:1 15765:1 15785:1 15826:2 15853:1 15861:1 15899:1 15927:1 15994:1 16095:1 16134:1 16186:1 16313:1 16363:1 16402:1 16411:1 16415:1 16431:1 16457:2 16467:1 16475:3 16502:1 16634:1 16635:1 16641:2 16649:1 16700:1 16733:1 16738:1 16747:1 16805:3 16949:1 16962:1 17060:2 17083:2 17116:1 17141:1 17188:1 17211:1 17212:1 17231:1 17267:1 17340:1 17419:1 17595:1 17686:1 17691:1 17729:11 17776:1 17803:2 17898:1 17915:1 17917:1 17954:1 17957:1 18028:1 18031:1 18060:1 18111:1 18126:2 18129:1 18167:2 18171:1 18188:1 18308:1 18417:1 18429:1 18434:1 18447:1 18471:1 18505:1 18535:1 18536:1 18740:1 18747:1 18785:1 18894:1 18938:1 18994:2 19085:1 19091:1 19129:1 19172:1 19190:2 19306:3 19308:1 19315:1 19419:2 19434:1 19559:1 19594:1 19644:545 19709:1 19840:1 19863:1 19871:1 19878:1 19893:1 19895:1 20072:1 20095:1 20216:1 20218:1 20303:1 20393:1 20412:1 20438:1 20460:1 20464:1 20476:1 20502:1 20547:1 20553:1 20576:1 20597:1 20609:1 20630:1 20674:1 20758:1 20778:1 20875:2 20915:1 20919:1 20951:1 21079:1 21197:1 21246:2 21286:1 21302:1 21341:5 21365:2 21457:2 21465:1 21531:1 21627:2 21629:1 21741:1 21787:1 21900:2 21990:1 22027:1 22043:2 22048:1 22056:3 22059:1 22213:1 22262:1 22296:1 22322:1 22327:1 22446:1 22527:1 22557:1 22601:1 22659:1 22680:1 22711:1 22736:1 22782:2 22801:2 22809:1 22860:1 22867:1 22891:1 22943:1 22970:1 23000:1 23008:1 23014:1 23151:1 23166:1 23180:5 23181:1 23187:1 23205:1 23214:1 23221:1 23222:1 23244:1 23282:1 23332:1 23375:1 23395:1 23404:1 23444:1 23469:2 23483:1 23486:1 23513:1 23581:1 23607:1 23641:1 23644:3 23651:1 23684:1 23731:1 23779:2 23804:2 23831:1 23850:1 23856:1 23862:1 23878:1 23885:1 23899:1 23915:1 23979:1 24025:1 24056:2 24108:1 24142:2 24196:2 24200:1 24229:1 24404:1 24500:1 24614:2 24631:1 24633:1 24704:1 24726:2 24738:1 24770:1 24772:1 24835:4 24886:2 24964:1 25065:1 25120:1 25271:1 25345:1 25351:1 25509:1 25572:1 25591:1 25603:1 25635:1 25682:1 25684:1 25712:1 25739:1 25775:1 25786:1 25799:11 25850:2 25921:1 25932:1 25935:1 25949:1 25970:1 25989:2 25996:1 25997:1 26049:1 26051:1 26055:1 26090:1 26215:1 26439:1 26449:1 26456:1 26504:3 26505:2 26548:1 26566:1 26639:1 26703:1 26762:1 26763:1 26855:2 26857:3 26889:1 26904:1 26929:1 26938:1 26964:1 27001:3 27039:3 27040:1 27089:1 27162:1 27201:1 27207:1 27262:1 27269:1 27279:1 27406:1 27584:1 27648:2 27710:1 27732:1 27748:1 27797:2 27854:1 27858:1 27909:1 27917:1 27927:1 28004:1 28049:1 28069:1 28096:1 28100:1 28103:1 28152:1 28280:1 28290:1 28342:1 28360:1 28379:1 28496:1 28597:1 28690:1 28727:1 28782:1 28836:1 29014:1 29025:1 29032:1 29052:1 29054:1 29063:1 29088:1 29092:1 29109:1 29130:1 29134:1 29137:1 29144:2 29158:1 29160:1 29196:1 29224:4 29227:1 29249:1 29253:1 29284:1 29295:1 29340:1 29344:1 29354:1 29363:1 29444:1 29450:1 29539:1 29579:1 29590:1 29593:2 29610:1 29689:1 29781:1 29789:1 29825:2 29851:1 29860:1 29887:5 29896:1 29910:2 29938:4 29946:1 30001:1 30039:2 30052:1 30078:2 30112:1 30118:1 30124:2 30130:1 30197:1 30199:2 30217:1 30289:2 30358:1 30436:2 30510:1 30513:1 30538:1 30541:1 30692:1 30693:1 30842:1 30864:1 30884:2 30907:1 30909:1 30940:1 30981:1 30986:1 31003:2 31055:1 31142:1 31208:1 31212:2 31246:1 31248:1 31250:1 31251:1 19 52:1 91:1 154:1 206:1 232:1 234:1 246:1 276:1 367:1 604:1 643:3 671:1 697:1 764:1 837:1 843:1 890:1 907:1 928:1 933:1 937:1 938:3 948:1 949:1 951:1 967:1 994:1 998:1 1037:2 1038:1 1055:1 1080:3 1083:1 1137:1 1213:1 1350:1 1389:1 1437:1 1527:1 1533:1 1559:1 1582:1 1586:2 1592:1 1600:2 1607:1 1675:1 1690:1 1795:3 1922:1 1923:1 1979:1 2027:1 2087:1 2105:1 2113:1 2133:1 2190:1 2203:1 2205:1 2214:1 2216:2 2251:1 2267:3 2297:1 2352:1 2369:1 2375:1 2391:1 2402:1 2422:1 2425:1 2505:1 2512:1 2528:2 2536:1 2548:1 2616:1 2655:1 2669:1 2689:1 2790:1 2832:2 2859:1 2962:2 2985:1 3005:1 3014:5 3023:3 3058:1 3065:2 3074:1 3090:1 3102:1 3265:1 3307:1 3336:1 3423:2 3463:1 3488:1 3489:1 3534:1 3548:1 3652:1 3666:1 3669:1 3742:1 3752:1 3788:1 3794:1 3813:1 3824:2 3889:1 3895:1 3943:3 4022:1 4055:2 4094:1 4100:1 4104:1 4126:1 4153:1 4173:1 4208:1 4228:1 4229:2 4340:3 4348:1 4450:1 4454:2 4608:1 4651:1 4664:1 4682:1 4748:1 4781:1 4816:1 4817:1 4818:1 4862:1 4868:1 4876:1 4905:1 4906:2 4927:1 4969:1 4977:1 5034:1 5039:1 5062:1 5065:2 5132:2 5245:1 5247:1 5248:1 5264:3 5265:2 5269:1 5270:1 5271:1 5275:1 5276:3 5277:1 5284:2 5293:1 5344:1 5356:1 5436:1 5508:1 5678:1 5686:1 5710:1 5777:1 5784:1 5794:3 5815:1 5889:1 5917:1 5952:1 5954:1 6036:1 6040:1 6061:1 6151:1 6196:1 6345:1 6346:2 6348:5 6349:1 6355:1 6362:1 6378:1 6399:1 6444:1 6446:1 6474:1 6488:1 6567:1 6583:1 6588:3 6610:1 6692:1 6696:1 6697:1 6707:1 6709:1 6715:1 6736:1 6769:1 6850:1 6882:1 7013:2 7045:1 7052:1 7142:1 7151:1 7181:1 7186:2 7216:1 7221:1 7289:1 7314:1 7319:1 7537:5 7540:1 7585:1 7594:1 7855:3 7864:1 7887:1 7943:1 7975:1 7989:1 8032:1 8041:1 8104:1 8105:1 8128:1 8130:2 8172:4 8194:1 8201:5 8204:2 8213:1 8267:1 8273:1 8283:1 8284:1 8315:1 8400:1 8442:1 8443:1 8584:1 8598:1 8698:6 8728:1 8741:1 8849:1 8884:1 8892:1 8913:1 8918:1 8927:2 8948:1 8952:1 8971:1 8976:1 8985:1 8986:1 9012:1 9057:1 9058:1 9072:2 9094:1 9146:1 9165:2 9259:1 9326:1 9339:1 9377:1 9470:1 9563:1 9588:1 9593:1 9595:1 9606:4 9686:1 9715:1 9779:2 9783:1 9874:2 9964:2 10046:1 10112:1 10167:1 10172:1 10235:3 10236:16 10272:1 10273:1 10302:1 10358:1 10369:3 10394:1 10439:1 10471:1 10554:1 10611:2 10654:2 10669:1 10699:1 10714:1 10796:1 10901:1 10926:1 11064:1 11144:1 11158:1 11181:2 11238:1 11256:1 11272:1 11372:1 11377:3 11388:1 11404:1 11405:1 11462:1 11492:1 11493:1 11497:1 11586:1 11620:1 11632:1 11635:1 11678:1 11686:1 11689:1 11751:1 11767:1 11842:1 11852:1 11871:1 11928:1 11932:1 11938:1 11942:1 11976:1 11989:1 12009:1 12072:1 12088:1 12108:2 12140:1 12151:1 12181:1 12255:1 12293:1 12304:1 12322:1 12324:1 12344:1 12346:1 12373:1 12380:1 12427:1 12449:5 12456:1 12462:1 12467:1 12501:1 12517:1 12591:2 12640:1 12668:1 12680:1 12715:1 12764:1 12857:1 12891:1 12962:1 12999:1 13124:1 13135:1 13229:1 13251:1 13425:4 13448:1 13475:3 13480:1 13482:1 13493:1 13497:1 13531:1 13538:1 13552:1 13558:1 13572:1 13597:1 13691:1 13707:1 13765:1 13829:1 13869:1 13878:2 13909:2 13945:2 13963:1 13974:4 14020:1 14040:1 14067:1 14069:1 14077:2 14103:1 14114:1 14148:1 14167:1 14212:1 14222:1 14225:1 14274:1 14307:1 14323:1 14325:2 14370:1 14372:1 14377:1 14460:1 14464:1 14468:1 14544:1 14551:1 14580:1 14618:1 14627:1 14769:1 14864:1 14872:1 14911:1 14919:1 14927:2 14969:1 15119:1 15143:1 15193:1 15213:1 15225:1 15258:1 15368:1 15384:1 15401:1 15407:1 15410:1 15415:2 15438:2 15457:1 15548:1 15550:2 15642:1 15706:1 15760:1 15765:1 15785:1 15826:2 15853:2 15861:1 15894:1 15899:1 15927:1 15934:1 15994:1 16095:1 16134:1 16144:1 16186:1 16313:1 16363:1 16402:1 16411:1 16415:1 16431:1 16457:2 16467:1 16475:3 16502:1 16634:1 16635:1 16641:3 16649:1 16700:1 16723:1 16733:1 16738:1 16747:1 16805:3 16819:1 16949:1 16962:1 17060:2 17083:2 17116:1 17141:1 17188:1 17211:1 17212:1 17231:1 17232:1 17237:1 17267:1 17302:1 17340:1 17419:1 17595:1 17686:1 17691:1 17729:11 17776:1 17803:2 17851:1 17898:1 17915:1 17917:1 17954:1 17957:1 17961:1 18028:1 18031:1 18060:1 18111:1 18126:2 18129:2 18167:2 18171:1 18188:1 18308:1 18385:1 18417:1 18429:1 18434:2 18447:1 18471:1 18505:1 18535:1 18536:1 18700:1 18717:1 18740:1 18747:1 18785:1 18894:1 18938:1 18994:2 19085:1 19091:1 19129:1 19172:1 19190:2 19306:3 19308:1 19315:1 19419:3 19434:1 19559:1 19594:1 19605:1 19644:605 19709:1 19840:1 19863:1 19871:1 19878:1 19893:1 19895:1 20072:1 20095:1 20216:1 20218:1 20303:1 20393:1 20412:1 20438:1 20460:1 20464:1 20476:1 20502:1 20547:1 20553:1 20554:1 20576:1 20597:1 20609:1 20630:1 20674:1 20758:1 20778:1 20841:1 20875:2 20915:1 20919:1 20951:2 21079:1 21197:1 21246:2 21286:1 21302:1 21341:5 21365:2 21457:2 21465:1 21531:1 21627:2 21629:1 21741:1 21787:1 21900:2 21934:1 21990:1 22024:1 22027:1 22043:2 22046:1 22048:1 22056:3 22059:1 22213:1 22255:1 22262:1 22296:1 22322:1 22327:1 22414:1 22446:1 22527:1 22557:1 22601:1 22659:1 22680:1 22711:1 22736:1 22782:2 22801:2 22809:1 22817:1 22831:1 22849:1 22860:1 22867:1 22891:1 22892:1 22935:1 22943:1 22970:1 23000:1 23008:1 23014:1 23109:1 23151:1 23166:1 23180:5 23181:2 23187:1 23205:1 23214:1 23221:1 23222:1 23244:1 23282:1 23332:1 23375:1 23395:1 23404:1 23444:1 23466:1 23469:2 23483:1 23486:1 23513:1 23581:1 23594:1 23607:1 23641:1 23644:3 23651:1 23671:1 23684:2 23731:1 23779:2 23804:2 23831:1 23850:1 23856:1 23862:1 23878:1 23885:1 23893:1 23899:1 23915:1 23979:1 24025:1 24056:2 24068:1 24108:1 24142:2 24196:2 24200:1 24229:1 24404:1 24500:1 24614:2 24631:1 24633:1 24662:1 24704:1 24726:2 24738:2 24770:1 24772:1 24786:1 24835:4 24884:1 24886:2 24964:1 24994:1 25065:1 25120:1 25133:1 25271:1 25345:1 25351:1 25388:1 25509:1 25572:1 25591:1 25603:2 25635:1 25682:1 25684:1 25712:1 25739:1 25775:1 25786:1 25799:11 25850:2 25921:1 25932:1 25935:1 25949:1 25970:1 25989:2 25996:1 25997:1 26049:1 26051:1 26055:1 26090:1 26215:1 26439:1 26449:1 26456:1 26504:3 26505:2 26548:1 26566:1 26639:1 26703:1 26762:1 26763:1 26855:2 26857:3 26889:1 26904:1 26929:1 26938:1 26959:1 26964:1 27001:3 27039:3 27040:1 27089:1 27162:1 27201:1 27207:1 27262:1 27269:1 27279:1 27406:1 27449:1 27580:1 27584:1 27648:2 27710:2 27732:1 27748:1 27797:3 27854:1 27858:1 27896:1 27909:1 27917:1 27927:1 28004:1 28049:1 28069:1 28096:1 28100:1 28103:1 28152:1 28280:1 28290:1 28342:1 28360:1 28379:1 28496:1 28561:1 28576:1 28597:1 28690:1 28727:1 28782:1 28836:1 29014:1 29025:1 29032:1 29052:1 29054:1 29063:1 29088:1 29092:1 29109:1 29130:1 29134:1 29137:1 29144:2 29158:1 29160:1 29196:1 29224:5 29227:1 29249:1 29253:1 29284:1 29295:1 29340:1 29344:1 29354:1 29363:1 29444:1 29450:2 29539:1 29579:1 29590:1 29593:2 29610:1 29689:1 29781:1 29789:1 29825:2 29837:1 29851:1 29860:1 29887:6 29896:1 29910:2 29938:4 29946:1 30001:1 30039:2 30052:1 30078:2 30112:1 30118:1 30124:2 30130:1 30197:1 30199:2 30217:1 30289:2 30358:1 30436:2 30510:1 30513:1 30538:1 30541:1 30692:1 30693:1 30741:1 30842:1 30864:1 30884:2 30907:1 30909:1 30940:1 30981:1 30986:1 31003:2 31055:1 31142:1 31208:1 31212:2 31246:1 31248:1 31250:1 31251:1 31313:1 19 27:1 52:1 56:1 91:1 154:1 206:1 232:1 234:1 246:1 276:1 367:1 428:2 604:1 643:4 671:1 697:1 764:1 837:1 843:1 890:1 907:1 928:1 933:2 937:2 938:3 948:2 949:1 951:1 967:1 994:1 998:1 1021:2 1037:2 1038:1 1055:1 1080:3 1083:1 1137:1 1213:1 1350:1 1389:1 1437:1 1527:1 1533:1 1559:1 1582:1 1584:1 1586:2 1592:1 1600:2 1607:1 1675:1 1690:1 1795:3 1899:1 1922:1 1923:1 1979:1 2027:1 2087:1 2105:1 2113:1 2133:1 2190:1 2203:1 2205:1 2214:1 2216:2 2251:1 2267:3 2297:1 2352:1 2369:1 2375:1 2391:1 2402:1 2422:2 2425:1 2434:1 2505:1 2512:1 2528:2 2536:1 2548:1 2616:1 2655:1 2669:1 2689:1 2790:1 2797:1 2832:3 2859:1 2962:2 2985:1 3005:1 3014:6 3023:3 3058:1 3065:2 3074:1 3090:1 3098:1 3102:2 3265:1 3307:1 3336:1 3410:1 3423:2 3463:1 3488:1 3489:3 3534:1 3548:1 3652:1 3654:1 3666:1 3669:1 3742:1 3752:1 3779:1 3788:1 3793:1 3794:1 3802:1 3813:1 3824:2 3889:1 3895:1 3943:3 3989:1 4022:1 4055:2 4094:1 4100:1 4104:1 4126:1 4153:1 4173:1 4208:1 4228:1 4229:2 4340:3 4348:1 4450:1 4454:2 4608:1 4651:1 4664:1 4682:1 4748:1 4781:1 4816:1 4817:1 4818:1 4862:1 4868:1 4876:1 4905:1 4906:2 4927:1 4969:1 4977:1 5034:1 5039:1 5062:1 5065:2 5132:2 5133:1 5183:1 5245:1 5247:1 5248:2 5264:3 5265:2 5269:1 5270:1 5271:1 5275:1 5276:3 5277:1 5284:2 5291:1 5292:1 5293:1 5344:1 5350:1 5356:1 5436:1 5508:1 5678:1 5686:1 5710:1 5777:1 5784:1 5794:3 5815:1 5889:1 5890:1 5913:1 5917:1 5952:1 5954:1 6036:1 6040:1 6061:1 6093:1 6151:1 6196:1 6301:1 6345:1 6346:2 6348:5 6349:1 6355:1 6362:1 6378:1 6399:1 6444:1 6446:1 6474:1 6479:1 6488:1 6567:1 6583:1 6588:3 6610:1 6645:1 6692:1 6696:3 6697:1 6707:1 6709:2 6715:1 6736:1 6745:1 6769:1 6850:1 6882:1 6886:1 7006:1 7013:2 7045:1 7052:1 7142:1 7151:1 7181:3 7186:2 7216:1 7221:1 7289:1 7314:1 7319:2 7450:1 7537:5 7540:1 7585:1 7594:1 7855:3 7864:1 7886:1 7887:1 7943:1 7975:1 7989:1 8032:1 8041:1 8104:2 8105:1 8128:1 8130:3 8172:5 8194:1 8201:6 8204:2 8213:1 8267:1 8273:1 8283:1 8284:2 8315:1 8333:1 8340:1 8400:1 8442:1 8443:1 8581:1 8584:1 8598:1 8648:1 8669:1 8698:6 8728:1 8741:1 8849:2 8884:1 8892:1 8913:1 8918:1 8927:2 8948:1 8952:1 8971:1 8976:1 8979:1 8985:1 8986:1 9012:1 9057:1 9058:2 9072:2 9094:1 9146:1 9165:2 9259:1 9326:1 9339:1 9377:1 9442:1 9470:1 9563:1 9588:1 9593:1 9595:1 9606:4 9686:1 9715:1 9768:1 9779:3 9783:1 9817:1 9874:2 9921:1 9964:2 10046:1 10112:1 10133:1 10167:1 10172:1 10235:3 10236:16 10272:1 10273:1 10302:1 10358:1 10369:3 10394:1 10439:1 10471:1 10554:1 10578:1 10594:1 10611:2 10654:2 10669:1 10699:1 10714:1 10796:1 10901:1 10926:1 10967:1 11007:1 11037:1 11064:1 11102:1 11144:1 11158:1 11181:3 11238:1 11256:1 11267:1 11272:1 11372:1 11377:3 11388:1 11404:1 11405:1 11462:1 11492:1 11493:1 11497:1 11501:1 11586:1 11620:1 11632:3 11635:1 11678:1 11686:1 11689:1 11737:1 11751:1 11767:1 11830:1 11835:1 11842:1 11852:1 11871:1 11928:1 11932:1 11938:1 11942:1 11976:1 11989:1 12009:1 12067:1 12072:1 12088:1 12108:2 12140:1 12151:1 12170:1 12181:1 12235:1 12255:1 12273:1 12293:1 12304:1 12322:1 12324:1 12344:1 12346:1 12373:1 12380:1 12427:1 12449:5 12456:1 12462:1 12467:1 12480:1 12501:1 12517:1 12591:2 12640:1 12668:1 12680:1 12715:1 12764:1 12771:1 12838:1 12857:1 12891:1 12962:1 12999:1 13124:1 13135:1 13143:1 13198:1 13216:1 13229:1 13251:1 13257:1 13425:4 13448:1 13475:3 13480:1 13482:1 13493:1 13497:1 13531:1 13538:1 13552:1 13558:1 13572:1 13597:1 13691:1 13707:1 13765:1 13788:1 13829:1 13869:1 13871:1 13878:2 13909:2 13945:2 13963:1 13974:4 14020:1 14040:1 14057:1 14067:1 14069:1 14077:2 14103:1 14114:2 14148:1 14167:1 14212:1 14222:1 14225:1 14274:1 14307:1 14323:1 14325:2 14370:1 14372:1 14377:1 14460:1 14464:1 14468:1 14544:1 14551:1 14580:1 14618:1 14627:1 14691:1 14769:1 14864:1 14872:1 14911:1 14919:1 14927:3 14969:1 15119:1 15143:1 15193:1 15202:1 15213:1 15225:1 15258:1 15368:1 15384:1 15401:1 15407:1 15410:1 15415:2 15438:2 15457:1 15548:1 15550:2 15591:1 15642:1 15706:1 15760:1 15764:1 15765:1 15785:1 15826:2 15853:3 15861:1 15894:1 15899:1 15927:1 15934:1 15994:1 16095:1 16134:1 16144:1 16186:1 16313:1 16363:1 16402:1 16411:1 16414:1 16415:1 16431:1 16457:2 16467:2 16475:3 16499:1 16502:1 16634:1 16635:1 16641:3 16649:1 16700:1 16723:1 16733:1 16738:1 16747:1 16805:3 16819:1 16907:1 16949:1 16962:1 16970:1 17060:2 17083:2 17116:1 17141:1 17188:1 17211:1 17212:1 17231:1 17232:1 17237:1 17267:1 17302:1 17340:1 17419:1 17519:1 17595:1 17686:1 17688:1 17691:1 17702:1 17729:11 17776:1 17803:2 17851:1 17898:1 17915:1 17917:1 17954:1 17957:1 17961:1 18028:1 18031:1 18060:1 18111:1 18126:2 18129:2 18167:2 18171:1 18188:1 18308:1 18385:1 18417:1 18429:1 18434:2 18447:1 18471:1 18505:1 18535:1 18536:1 18683:1 18700:1 18717:1 18740:1 18747:1 18785:1 18882:1 18892:1 18894:1 18938:1 18994:2 19085:1 19091:1 19129:1 19172:1 19190:2 19306:3 19308:1 19315:1 19419:3 19434:1 19559:1 19594:1 19605:1 19644:658 19709:1 19840:1 19863:1 19871:1 19878:1 19893:1 19895:1 20072:1 20095:1 20216:1 20218:1 20303:1 20393:1 20412:1 20438:1 20460:1 20464:1 20476:1 20502:1 20547:1 20553:1 20554:1 20576:1 20597:1 20609:1 20630:1 20674:1 20758:1 20778:1 20841:1 20853:1 20875:2 20915:1 20919:1 20951:2 21079:1 21192:1 21197:1 21211:1 21246:2 21286:1 21302:1 21319:1 21341:5 21365:2 21457:2 21465:1 21531:1 21627:2 21629:1 21668:1 21741:1 21787:1 21833:1 21900:2 21934:1 21990:1 22024:1 22027:1 22043:2 22046:1 22048:1 22056:3 22059:1 22197:1 22213:1 22255:1 22262:1 22296:1 22322:1 22327:1 22414:1 22422:1 22446:1 22527:1 22557:1 22601:1 22659:1 22680:1 22711:1 22736:1 22754:1 22770:1 22782:2 22801:2 22809:1 22817:1 22831:1 22832:1 22849:2 22855:1 22860:1 22867:1 22891:1 22892:1 22935:1 22943:1 22970:1 22988:1 23000:1 23008:1 23014:1 23039:1 23095:1 23109:1 23151:1 23166:1 23178:1 23180:5 23181:2 23187:1 23205:1 23214:1 23219:1 23221:1 23222:1 23244:1 23282:1 23332:1 23357:1 23368:1 23375:1 23395:1 23404:1 23408:1 23444:1 23460:1 23466:1 23469:2 23483:1 23486:1 23513:1 23581:1 23594:1 23607:1 23615:1 23641:1 23644:3 23651:1 23671:1 23684:2 23700:1 23731:1 23779:3 23796:2 23804:2 23809:1 23810:1 23831:1 23850:1 23856:1 23862:1 23878:1 23885:1 23893:1 23899:1 23915:1 23979:1 24025:1 24056:2 24068:1 24108:1 24142:2 24196:2 24200:1 24229:1 24286:1 24374:1 24404:1 24447:1 24500:1 24614:2 24631:1 24633:1 24662:1 24682:1 24704:1 24726:2 24738:2 24770:1 24772:1 24786:1 24835:4 24868:1 24884:1 24886:2 24918:1 24964:1 24994:1 25065:1 25120:1 25133:1 25271:1 25310:1 25345:1 25351:1 25388:1 25509:1 25572:1 25591:1 25603:2 25635:2 25682:1 25684:1 25712:1 25739:1 25775:1 25786:1 25799:11 25850:2 25921:1 25932:1 25935:1 25949:1 25970:1 25989:3 25996:1 25997:1 26049:1 26051:1 26055:1 26090:1 26104:1 26215:1 26439:1 26449:1 26456:2 26504:3 26505:2 26548:1 26566:1 26626:1 26639:1 26703:1 26762:1 26763:1 26855:2 26857:3 26889:1 26904:1 26929:1 26938:1 26959:1 26964:1 27001:3 27039:3 27040:1 27089:1 27162:1 27201:1 27207:1 27262:1 27269:1 27279:1 27406:1 27449:1 27580:1 27584:1 27648:2 27710:2 27732:1 27748:1 27797:3 27854:1 27858:1 27896:1 27909:1 27917:1 27927:1 28004:1 28049:1 28069:1 28079:1 28096:1 28100:1 28103:1 28152:1 28207:1 28280:1 28290:2 28342:1 28360:1 28379:1 28486:1 28496:1 28527:1 28561:2 28576:1 28597:1 28690:1 28727:1 28782:1 28836:1 29014:1 29025:1 29032:1 29052:1 29054:1 29063:1 29088:1 29092:1 29109:1 29130:1 29134:1 29137:1 29144:2 29158:1 29160:1 29196:1 29197:1 29224:5 29227:1 29249:1 29253:1 29284:1 29295:1 29340:1 29344:1 29354:1 29363:1 29444:1 29450:2 29539:1 29579:1 29590:1 29593:2 29610:1 29689:1 29723:1 29781:1 29789:1 29825:2 29826:1 29837:1 29851:1 29860:1 29887:7 29896:1 29910:2 29938:4 29946:1 30001:1 30008:1 30039:2 30052:1 30078:3 30112:2 30118:1 30124:2 30130:1 30197:1 30199:2 30217:1 30289:2 30329:1 30350:1 30358:1 30436:2 30510:1 30513:1 30538:1 30541:1 30692:2 30693:1 30741:1 30842:1 30846:1 30864:2 30884:2 30907:1 30909:1 30940:1 30981:1 30986:1 31003:2 31055:1 31093:1 31142:1 31208:1 31212:2 31246:1 31248:1 31250:1 31251:1 31313:1 19 27:1 52:1 56:1 91:1 154:1 206:1 232:1 234:1 246:1 276:1 367:1 428:2 604:1 643:4 649:1 671:1 697:1 764:1 837:1 843:1 890:1 907:2 928:1 933:2 937:2 938:3 948:2 949:1 951:1 967:1 994:1 998:2 1021:2 1037:2 1038:1 1055:1 1080:3 1083:1 1137:1 1195:1 1213:1 1348:1 1350:1 1389:1 1437:1 1527:1 1533:1 1559:1 1582:1 1584:1 1586:2 1592:1 1600:2 1607:1 1675:1 1690:1 1766:1 1795:3 1846:1 1899:1 1922:1 1923:2 1978:1 1979:1 2027:1 2040:1 2087:1 2105:1 2113:1 2133:1 2190:1 2203:1 2205:2 2214:1 2216:2 2251:1 2267:3 2297:1 2352:1 2369:1 2375:1 2391:1 2402:2 2422:2 2425:1 2434:1 2505:1 2512:1 2528:2 2536:1 2548:1 2616:1 2655:1 2669:1 2689:1 2790:1 2797:1 2832:4 2859:1 2962:2 2985:1 3005:1 3014:7 3023:4 3058:1 3065:2 3074:1 3090:1 3098:1 3102:2 3265:1 3296:1 3307:1 3336:1 3410:1 3423:2 3463:1 3488:1 3489:3 3534:1 3542:1 3548:2 3652:1 3653:1 3654:1 3666:1 3669:1 3742:1 3752:1 3779:1 3788:1 3793:1 3794:1 3802:1 3813:1 3824:2 3880:1 3889:1 3895:1 3936:1 3943:3 3989:1 4022:1 4055:2 4094:1 4100:1 4104:1 4126:1 4153:1 4173:1 4208:1 4228:1 4229:2 4340:3 4348:1 4409:1 4450:1 4454:2 4608:1 4651:1 4664:1 4682:1 4748:1 4776:1 4781:1 4816:1 4817:1 4818:1 4862:1 4868:1 4876:1 4905:1 4906:2 4927:1 4969:1 4977:1 4996:1 5028:1 5034:1 5039:1 5062:1 5065:2 5132:2 5133:1 5183:1 5245:1 5247:1 5248:2 5264:3 5265:2 5269:1 5270:1 5271:1 5275:1 5276:3 5277:1 5284:2 5291:1 5292:1 5293:1 5344:1 5350:1 5356:1 5436:1 5508:1 5678:1 5686:1 5710:1 5777:1 5784:1 5794:3 5815:1 5889:2 5890:1 5913:1 5917:1 5952:1 5954:1 6036:1 6040:1 6061:1 6093:1 6151:1 6196:1 6283:1 6301:1 6345:1 6346:2 6348:5 6349:1 6355:1 6362:1 6378:1 6399:1 6444:1 6446:1 6474:1 6479:1 6488:1 6567:1 6568:1 6583:1 6588:3 6610:1 6645:1 6664:1 6692:1 6696:3 6697:1 6704:1 6707:1 6709:2 6715:1 6736:1 6745:1 6769:1 6850:1 6882:1 6886:1 7006:1 7013:2 7045:1 7052:1 7088:1 7128:1 7142:1 7151:1 7181:3 7186:2 7216:1 7221:2 7289:1 7314:1 7319:2 7450:1 7537:5 7540:1 7585:1 7594:1 7855:3 7864:2 7880:1 7886:1 7887:1 7929:1 7943:1 7975:1 7989:1 8032:1 8041:1 8104:2 8105:1 8128:1 8130:3 8172:6 8194:1 8201:7 8204:2 8213:1 8267:1 8273:1 8283:1 8284:2 8315:1 8333:1 8340:1 8400:1 8442:1 8443:1 8581:1 8584:1 8598:1 8622:1 8648:1 8669:1 8698:8 8728:1 8741:1 8849:2 8884:1 8892:1 8913:1 8918:1 8927:2 8948:1 8952:2 8971:1 8976:1 8979:1 8985:1 8986:1 9012:1 9057:1 9058:2 9072:2 9077:1 9094:1 9146:1 9165:2 9259:1 9326:1 9339:1 9377:1 9442:1 9470:1 9563:1 9588:1 9593:1 9595:1 9606:4 9686:1 9715:1 9768:1 9779:4 9783:1 9817:1 9874:2 9894:1 9921:1 9964:2 10046:1 10112:1 10133:1 10167:1 10172:1 10235:4 10236:18 10272:1 10273:1 10302:1 10358:1 10369:3 10394:1 10439:1 10471:1 10554:1 10578:1 10594:1 10611:2 10654:2 10669:1 10699:1 10714:1 10796:1 10901:1 10926:1 10940:1 10967:1 11007:1 11037:1 11064:1 11102:1 11144:1 11158:1 11181:3 11238:1 11256:2 11267:1 11272:1 11372:2 11377:4 11388:1 11404:1 11405:1 11462:1 11492:1 11493:1 11497:1 11501:1 11509:1 11586:1 11614:1 11620:1 11632:3 11635:1 11678:1 11686:1 11689:1 11737:1 11751:1 11767:1 11806:1 11830:1 11835:1 11842:1 11852:1 11871:1 11928:2 11932:1 11938:1 11942:1 11976:1 11989:1 12009:1 12067:1 12072:1 12088:1 12108:2 12140:1 12151:1 12154:1 12170:1 12181:1 12235:1 12255:1 12273:1 12293:1 12304:1 12322:1 12324:1 12344:1 12346:1 12373:1 12380:1 12427:1 12449:5 12456:1 12462:1 12467:1 12480:1 12501:1 12517:1 12546:1 12591:2 12640:1 12668:1 12680:1 12715:1 12764:1 12771:1 12838:1 12857:1 12891:1 12962:1 12999:1 13124:1 13135:1 13143:1 13179:1 13198:1 13216:1 13229:1 13251:1 13257:1 13425:5 13448:1 13475:3 13480:1 13482:1 13493:1 13497:1 13531:1 13538:1 13552:1 13555:1 13558:1 13572:1 13597:1 13623:1 13691:1 13707:1 13765:1 13788:1 13829:1 13853:1 13869:1 13871:1 13878:2 13906:1 13909:2 13945:2 13962:1 13963:1 13974:4 14020:1 14040:1 14051:1 14057:1 14067:1 14069:2 14077:2 14103:1 14114:2 14148:1 14167:1 14212:1 14222:1 14225:1 14274:1 14288:1 14307:1 14318:1 14323:1 14325:2 14337:1 14370:1 14372:1 14377:1 14449:1 14460:1 14464:1 14468:1 14540:1 14544:1 14551:1 14580:2 14618:1 14627:1 14683:1 14691:1 14769:1 14864:1 14872:1 14893:1 14911:1 14919:1 14927:3 14969:1 15119:1 15143:1 15193:1 15202:1 15213:1 15225:1 15258:1 15368:1 15381:1 15384:1 15401:1 15407:1 15410:1 15415:2 15438:2 15457:1 15548:1 15550:2 15591:1 15624:1 15642:1 15706:1 15760:1 15764:1 15765:1 15785:1 15826:2 15853:3 15861:1 15894:1 15899:2 15927:1 15934:1 15994:1 16095:1 16134:1 16144:1 16186:1 16285:1 16313:1 16363:1 16402:1 16411:1 16414:1 16415:1 16431:1 16457:2 16467:2 16475:3 16499:1 16502:1 16634:1 16635:1 16641:3 16649:1 16700:1 16723:1 16733:1 16738:1 16747:1 16805:3 16819:1 16907:1 16949:1 16962:1 16970:1 17060:2 17083:2 17116:1 17141:1 17147:1 17188:1 17211:1 17212:1 17216:1 17217:1 17220:1 17231:1 17232:1 17237:1 17267:1 17302:1 17340:1 17419:1 17519:1 17543:1 17595:1 17686:1 17688:1 17691:1 17702:1 17729:11 17776:1 17803:2 17851:1 17898:1 17915:1 17917:1 17926:1 17954:1 17957:1 17961:1 18028:1 18031:1 18060:1 18111:1 18126:2 18129:2 18167:2 18171:1 18188:1 18308:1 18385:1 18417:1 18429:1 18434:3 18447:1 18471:1 18505:1 18535:1 18536:1 18683:1 18700:1 18717:1 18740:1 18747:1 18785:1 18882:1 18892:1 18894:1 18938:1 18994:2 19085:1 19091:1 19129:1 19172:1 19190:2 19244:1 19306:3 19308:1 19315:1 19413:1 19419:3 19434:1 19559:1 19594:1 19605:1 19611:1 19644:729 19709:1 19805:1 19840:1 19845:1 19863:1 19871:1 19878:1 19893:1 19895:1 20072:1 20095:1 20138:1 20216:1 20218:1 20303:1 20393:1 20396:1 20412:1 20438:1 20460:1 20464:1 20466:1 20476:1 20487:1 20502:1 20547:1 20553:1 20554:1 20576:1 20597:1 20604:1 20609:1 20630:2 20674:1 20758:1 20778:1 20841:1 20853:1 20875:2 20903:1 20915:1 20919:1 20933:1 20951:2 21066:1 21079:1 21192:1 21197:1 21211:1 21212:1 21246:3 21286:1 21302:2 21319:1 21341:5 21365:2 21457:2 21465:1 21484:1 21531:1 21627:2 21629:1 21668:1 21741:1 21787:1 21833:1 21900:2 21934:1 21990:1 22024:1 22027:1 22043:2 22046:1 22048:1 22056:3 22059:1 22149:1 22197:2 22213:1 22255:2 22262:1 22296:1 22322:1 22327:1 22414:1 22422:1 22446:1 22527:1 22557:1 22601:1 22659:1 22680:1 22711:1 22736:1 22749:1 22754:1 22770:1 22782:2 22801:2 22809:1 22817:1 22831:1 22832:1 22849:2 22855:1 22860:1 22867:1 22891:1 22892:1 22935:1 22943:1 22970:1 22988:1 23000:1 23008:1 23014:1 23039:1 23095:1 23109:1 23151:1 23166:1 23170:1 23178:1 23180:5 23181:2 23187:1 23205:1 23214:1 23219:1 23221:1 23222:1 23244:1 23282:1 23332:1 23357:1 23368:1 23375:1 23395:1 23404:1 23408:1 23444:1 23460:1 23466:1 23469:2 23483:1 23486:1 23513:1 23581:1 23594:1 23607:1 23615:1 23641:1 23644:3 23651:1 23671:1 23684:2 23700:1 23731:1 23779:3 23796:2 23802:1 23804:2 23809:1 23810:1 23831:2 23850:1 23856:1 23862:1 23878:1 23885:1 23893:1 23899:1 23903:1 23915:1 23979:1 24025:1 24056:2 24068:1 24108:1 24142:2 24196:2 24200:1 24229:1 24286:1 24374:1 24404:1 24447:1 24498:1 24500:1 24614:2 24631:1 24633:2 24662:1 24682:1 24704:1 24726:2 24738:2 24742:1 24751:1 24770:1 24772:1 24786:1 24835:4 24868:1 24870:1 24884:1 24886:2 24918:1 24964:1 24994:1 25065:1 25120:1 25133:1 25271:1 25310:1 25331:1 25345:1 25351:1 25388:1 25509:1 25522:1 25572:1 25591:1 25603:2 25608:1 25635:3 25682:1 25684:1 25712:1 25739:1 25775:1 25786:1 25799:11 25850:2 25921:1 25932:1 25935:1 25949:1 25970:1 25989:3 25996:1 25997:1 26015:1 26049:1 26051:1 26055:1 26064:1 26090:1 26104:1 26215:1 26278:1 26289:1 26439:1 26449:1 26456:2 26504:4 26505:2 26548:1 26566:1 26626:1 26639:1 26703:2 26762:1 26763:1 26855:2 26857:3 26889:1 26904:1 26929:1 26938:1 26959:1 26964:1 27001:3 27039:3 27040:1 27089:1 27162:1 27201:1 27207:1 27262:1 27269:1 27279:1 27383:1 27406:1 27449:1 27580:1 27584:1 27624:1 27648:2 27710:2 27732:1 27748:1 27760:1 27797:3 27854:1 27858:1 27896:1 27909:1 27917:1 27927:1 28004:1 28049:1 28069:1 28079:1 28096:1 28100:1 28103:1 28152:1 28207:1 28225:1 28280:1 28290:2 28342:1 28360:1 28379:1 28486:1 28496:1 28527:1 28561:2 28576:1 28597:1 28646:1 28690:1 28727:1 28780:1 28782:1 28836:1 29014:1 29025:1 29032:1 29052:1 29054:1 29063:1 29088:1 29092:1 29109:1 29130:1 29133:1 29134:1 29137:2 29144:2 29158:1 29160:1 29196:1 29197:2 29224:5 29227:1 29249:1 29253:1 29284:1 29295:1 29340:1 29344:1 29354:1 29360:1 29363:1 29444:1 29450:2 29539:1 29579:1 29590:1 29593:2 29610:1 29689:1 29723:1 29779:1 29781:1 29789:1 29825:2 29826:1 29837:1 29851:1 29860:1 29887:8 29896:1 29910:2 29938:4 29946:2 30001:1 30008:1 30039:2 30052:1 30078:3 30112:2 30118:1 30124:2 30130:1 30197:1 30199:2 30217:1 30289:2 30329:1 30350:1 30358:1 30436:2 30510:1 30513:1 30538:1 30541:1 30660:1 30692:2 30693:1 30741:1 30842:1 30846:1 30864:2 30884:3 30907:1 30909:1 30940:1 30981:1 30986:1 31003:2 31055:1 31093:1 31142:1 31208:1 31212:2 31246:1 31248:1 31250:1 31251:1 31313:1 19 27:1 52:1 56:1 91:1 154:1 206:1 232:1 234:1 246:1 276:1 367:1 428:2 462:1 604:1 643:4 649:1 671:1 697:1 764:1 837:1 843:1 890:1 899:1 907:2 928:1 933:2 937:2 938:3 948:2 949:1 951:1 967:1 985:1 994:1 998:3 1021:2 1037:2 1038:1 1055:1 1080:3 1083:1 1137:1 1195:1 1213:1 1348:1 1350:1 1389:1 1437:1 1527:1 1533:1 1559:1 1582:1 1584:1 1586:2 1592:1 1600:2 1607:1 1675:2 1690:1 1712:1 1766:1 1795:3 1846:1 1899:1 1922:1 1923:2 1948:1 1978:1 1979:1 2027:1 2040:1 2087:1 2105:1 2113:1 2133:1 2190:1 2203:1 2205:2 2214:1 2216:2 2251:1 2267:3 2297:1 2352:1 2369:1 2375:1 2391:1 2402:2 2410:1 2422:2 2425:1 2434:1 2505:1 2512:1 2528:2 2536:1 2548:1 2616:1 2655:1 2669:1 2689:1 2790:1 2797:1 2832:4 2838:1 2843:1 2859:1 2962:2 2985:1 3005:1 3014:9 3023:4 3058:1 3065:2 3074:1 3090:1 3098:1 3102:2 3265:1 3296:1 3307:1 3336:1 3410:1 3423:2 3463:1 3488:1 3489:3 3534:1 3542:1 3548:2 3652:1 3653:1 3654:1 3666:1 3669:1 3742:1 3752:1 3779:1 3788:1 3793:1 3794:1 3802:1 3813:1 3824:2 3880:1 3889:1 3895:1 3936:1 3943:3 3989:1 4022:1 4055:2 4094:1 4100:1 4104:1 4126:1 4153:1 4173:1 4208:1 4228:1 4229:2 4283:1 4340:3 4348:1 4409:1 4450:1 4454:2 4608:1 4613:2 4651:1 4664:1 4682:1 4736:1 4748:1 4776:1 4781:1 4816:1 4817:1 4818:1 4862:1 4868:1 4876:1 4905:1 4906:2 4919:1 4927:1 4969:1 4977:1 4996:1 5028:1 5034:1 5039:1 5062:1 5065:2 5132:3 5133:1 5183:1 5245:1 5247:1 5248:2 5264:3 5265:2 5269:1 5270:1 5271:1 5275:1 5276:3 5277:1 5284:2 5291:1 5292:1 5293:1 5344:1 5350:1 5356:1 5365:1 5436:1 5508:1 5551:1 5678:1 5686:1 5710:1 5777:1 5784:1 5794:3 5815:1 5822:1 5889:2 5890:1 5913:1 5917:1 5952:1 5954:1 6036:1 6040:1 6061:1 6093:1 6151:1 6196:1 6283:1 6301:1 6345:1 6346:2 6348:5 6349:1 6355:1 6362:1 6378:1 6399:1 6444:1 6446:1 6474:1 6479:1 6488:1 6567:1 6568:1 6583:1 6588:3 6610:1 6645:1 6664:1 6692:2 6696:3 6697:1 6704:1 6707:1 6709:2 6715:1 6736:1 6745:1 6769:1 6850:1 6882:1 6886:1 7006:1 7013:2 7045:1 7052:1 7088:1 7128:1 7142:1 7151:1 7155:1 7181:3 7186:2 7216:1 7221:2 7289:1 7314:1 7319:2 7355:1 7450:1 7489:1 7509:1 7537:6 7540:1 7585:1 7594:1 7855:3 7864:2 7880:1 7886:1 7887:1 7929:1 7943:1 7975:1 7989:1 8032:1 8041:1 8104:2 8105:1 8128:1 8130:3 8172:7 8194:1 8201:9 8204:2 8213:1 8267:1 8273:1 8283:1 8284:2 8315:1 8333:1 8340:1 8400:1 8442:1 8443:1 8455:2 8581:1 8584:1 8598:2 8622:1 8648:1 8669:1 8689:1 8698:8 8728:1 8741:1 8849:2 8884:1 8892:1 8913:1 8918:1 8927:2 8948:1 8952:2 8971:1 8976:1 8979:1 8985:1 8986:1 9012:1 9057:1 9058:2 9061:1 9072:2 9077:1 9094:1 9106:1 9146:1 9165:2 9181:1 9259:1 9326:1 9339:1 9377:1 9405:1 9442:1 9470:1 9563:1 9588:1 9593:1 9595:1 9606:4 9644:1 9686:1 9715:1 9768:1 9779:4 9783:1 9817:1 9874:2 9885:1 9894:1 9921:1 9964:2 9990:1 10046:1 10112:1 10133:1 10167:1 10172:1 10235:4 10236:18 10272:1 10273:1 10302:1 10358:1 10369:3 10394:1 10439:1 10471:1 10554:1 10578:1 10594:1 10611:2 10654:2 10669:1 10699:1 10714:1 10796:1 10901:1 10926:1 10940:1 10967:1 10971:1 11007:1 11037:1 11064:1 11102:1 11144:1 11158:1 11181:3 11238:1 11256:2 11267:1 11272:1 11372:2 11377:4 11388:1 11404:1 11405:1 11462:1 11492:1 11493:1 11497:1 11501:1 11509:1 11586:1 11589:1 11614:1 11620:1 11632:3 11635:1 11678:1 11686:1 11689:1 11697:1 11737:1 11751:1 11767:1 11806:1 11830:1 11835:1 11842:1 11852:1 11863:1 11871:1 11928:2 11932:1 11938:1 11942:1 11976:1 11989:1 12009:1 12021:1 12067:1 12072:1 12088:1 12108:2 12140:1 12151:1 12154:1 12170:1 12181:1 12184:1 12235:1 12255:1 12273:1 12293:1 12304:1 12322:2 12324:1 12344:1 12346:1 12359:1 12373:1 12380:1 12427:1 12449:5 12456:1 12462:1 12467:1 12480:1 12501:1 12517:1 12546:1 12591:2 12640:1 12668:1 12680:1 12690:1 12715:1 12764:1 12771:1 12838:1 12857:1 12891:1 12962:1 12999:1 13050:1 13058:1 13124:1 13135:1 13143:1 13179:1 13198:1 13216:1 13229:1 13251:1 13257:1 13425:5 13446:1 13448:1 13475:3 13480:1 13482:2 13493:1 13497:1 13531:2 13538:1 13552:1 13555:1 13558:1 13572:1 13597:1 13623:1 13691:1 13707:1 13765:1 13788:1 13829:1 13853:1 13869:1 13871:1 13878:2 13906:1 13909:2 13945:2 13962:1 13963:1 13974:4 14020:1 14040:1 14051:1 14057:1 14067:1 14069:2 14075:1 14077:2 14103:1 14114:2 14148:1 14167:2 14191:1 14212:1 14222:1 14225:1 14274:1 14288:1 14307:1 14318:1 14323:1 14325:2 14337:1 14370:1 14372:1 14377:1 14449:1 14460:1 14464:1 14468:1 14498:1 14540:1 14544:1 14551:1 14580:2 14618:1 14627:1 14683:1 14691:1 14769:1 14864:1 14872:1 14893:1 14911:1 14919:1 14927:3 14969:1 15119:1 15143:1 15193:1 15202:1 15213:1 15225:1 15258:1 15368:1 15378:1 15381:1 15384:1 15391:1 15401:1 15407:1 15410:1 15415:2 15438:2 15453:1 15457:1 15505:1 15548:1 15550:2 15591:1 15624:1 15642:1 15706:1 15760:1 15764:1 15765:1 15785:1 15826:2 15853:3 15861:1 15894:1 15899:2 15918:1 15927:1 15934:1 15994:1 16095:1 16134:1 16144:1 16186:1 16285:1 16313:1 16363:1 16402:1 16411:1 16414:1 16415:1 16431:1 16457:2 16467:2 16475:3 16499:1 16502:1 16634:1 16635:1 16641:3 16649:1 16700:1 16723:1 16733:1 16738:1 16747:1 16805:3 16819:1 16907:1 16946:1 16949:2 16962:1 16970:1 17060:2 17083:2 17116:1 17141:1 17147:1 17188:2 17211:1 17212:1 17216:1 17217:1 17220:1 17231:1 17232:1 17237:1 17267:1 17302:1 17340:1 17419:1 17519:1 17543:1 17595:1 17686:1 17688:1 17691:1 17702:1 17729:11 17776:1 17803:2 17851:1 17898:1 17915:1 17917:1 17926:1 17954:1 17957:1 17961:1 18028:1 18031:1 18060:1 18076:3 18111:1 18126:2 18129:2 18167:2 18171:1 18188:1 18308:1 18385:1 18417:1 18429:1 18434:3 18447:1 18471:1 18505:1 18535:1 18536:2 18683:1 18700:1 18717:1 18740:1 18747:1 18785:1 18843:1 18882:3 18892:1 18894:1 18938:1 18994:2 19085:1 19091:1 19129:1 19172:1 19190:2 19244:1 19306:3 19308:1 19315:1 19413:1 19419:3 19434:1 19449:1 19491:1 19497:1 19559:1 19577:1 19594:1 19605:1 19611:1 19633:1 19644:798 19709:1 19805:1 19840:1 19845:1 19863:1 19871:1 19878:1 19893:1 19895:1 19926:1 20072:1 20095:1 20121:1 20138:1 20216:1 20218:1 20303:1 20393:1 20396:1 20412:1 20438:1 20460:1 20464:1 20466:1 20476:1 20487:1 20502:1 20547:1 20553:1 20554:1 20576:1 20597:1 20604:1 20609:1 20630:3 20674:1 20698:1 20758:1 20769:1 20778:1 20841:1 20853:1 20875:2 20903:1 20915:1 20919:1 20933:1 20951:2 21066:1 21079:1 21160:1 21192:1 21197:1 21211:1 21212:1 21246:3 21286:1 21302:3 21319:1 21341:5 21365:2 21457:2 21462:1 21465:1 21484:1 21531:1 21627:2 21629:1 21668:1 21683:2 21741:1 21787:1 21833:1 21900:2 21934:1 21990:1 22024:1 22027:1 22039:1 22043:2 22046:1 22048:1 22056:3 22059:1 22149:1 22175:1 22197:2 22213:1 22255:2 22262:1 22296:1 22322:1 22327:1 22414:1 22422:2 22446:1 22527:1 22557:1 22601:1 22605:1 22659:1 22680:1 22711:1 22736:1 22749:1 22754:1 22764:1 22770:1 22782:2 22801:2 22809:1 22817:1 22831:1 22832:1 22849:2 22855:1 22860:1 22867:1 22891:1 22892:1 22935:1 22943:1 22970:1 22988:1 23000:1 23008:1 23014:1 23039:1 23095:1 23109:1 23112:1 23151:1 23166:1 23167:1 23170:1 23178:1 23180:6 23181:2 23186:1 23187:1 23205:1 23214:1 23219:1 23221:1 23222:1 23244:1 23282:1 23332:1 23357:1 23368:1 23375:1 23395:2 23404:1 23408:1 23444:1 23460:1 23466:1 23469:2 23483:1 23486:1 23513:1 23567:2 23569:1 23581:1 23594:1 23607:1 23615:1 23641:1 23644:3 23651:1 23671:1 23684:2 23690:1 23700:1 23731:1 23779:4 23796:2 23802:1 23804:2 23809:1 23810:1 23831:2 23850:1 23856:1 23862:1 23871:1 23878:1 23885:1 23893:1 23899:1 23903:1 23915:1 23979:1 24025:1 24056:2 24068:1 24108:1 24142:2 24196:2 24200:1 24229:1 24286:1 24374:1 24404:1 24447:1 24498:1 24500:1 24601:1 24614:2 24631:1 24633:2 24662:1 24682:1 24704:1 24726:2 24738:2 24742:1 24751:1 24770:1 24772:1 24786:1 24835:4 24868:1 24870:1 24884:1 24886:2 24918:1 24964:1 24994:1 25065:1 25120:1 25133:1 25271:1 25310:1 25331:1 25345:1 25348:1 25351:1 25388:1 25509:1 25522:1 25572:1 25591:1 25603:3 25608:1 25635:3 25682:1 25684:1 25712:1 25739:1 25775:1 25786:1 25799:11 25850:2 25921:1 25932:1 25935:1 25949:1 25970:1 25989:3 25996:1 25997:1 26015:1 26049:1 26051:1 26055:1 26064:1 26090:1 26094:1 26104:1 26110:1 26165:1 26215:1 26278:1 26289:1 26318:1 26381:1 26439:1 26449:1 26456:2 26504:4 26505:2 26548:1 26566:1 26626:1 26639:1 26703:2 26762:1 26763:1 26855:2 26857:3 26889:1 26904:1 26929:1 26938:1 26959:2 26964:1 27001:3 27039:3 27040:1 27089:1 27162:1 27201:1 27207:1 27262:1 27269:1 27279:1 27282:1 27383:1 27406:1 27449:1 27580:1 27584:1 27624:1 27648:2 27710:2 27732:1 27748:1 27760:1 27797:3 27854:1 27858:1 27896:1 27909:1 27917:2 27927:1 28004:1 28049:1 28069:1 28079:1 28096:1 28100:1 28103:1 28152:1 28207:1 28225:1 28280:1 28290:2 28327:1 28342:1 28360:1 28379:1 28486:1 28496:1 28527:1 28561:2 28576:1 28597:1 28646:1 28690:1 28727:1 28780:1 28782:1 28836:1 29014:1 29025:1 29032:1 29052:1 29054:1 29063:1 29088:1 29092:1 29109:1 29130:1 29133:1 29134:1 29137:2 29144:2 29158:1 29160:1 29196:1 29197:2 29224:5 29227:1 29249:1 29253:1 29284:1 29295:1 29340:1 29344:1 29354:1 29360:1 29363:1 29397:1 29444:1 29450:2 29539:1 29579:1 29590:1 29593:2 29610:1 29689:1 29723:1 29779:1 29781:1 29789:1 29825:2 29826:1 29837:1 29851:1 29860:1 29887:9 29896:1 29910:2 29938:4 29946:3 30001:1 30008:1 30039:2 30052:1 30078:3 30112:2 30118:1 30124:2 30130:1 30197:1 30199:2 30217:1 30243:1 30289:2 30329:1 30350:1 30358:1 30436:3 30510:1 30513:1 30538:1 30541:1 30660:1 30692:2 30693:1 30741:1 30842:1 30846:1 30864:2 30869:2 30884:3 30907:1 30909:1 30940:1 30953:1 30981:1 30986:1 31003:2 31055:1 31093:1 31142:1 31208:1 31212:2 31222:1 31246:1 31248:1 31250:1 31251:1 31299:1 31313:1 19 27:1 52:1 56:1 91:1 108:1 154:1 170:1 206:1 232:1 234:1 246:1 276:1 367:1 428:2 462:1 604:1 643:4 649:1 671:1 697:1 764:1 837:1 843:1 890:1 899:1 907:2 928:1 933:2 937:2 938:3 948:2 949:1 951:1 967:1 985:1 994:1 998:3 1021:2 1022:1 1037:2 1038:1 1055:1 1080:3 1083:1 1137:1 1195:1 1213:1 1348:1 1350:1 1389:1 1395:1 1437:1 1527:1 1533:1 1559:1 1582:1 1584:1 1586:2 1592:2 1600:2 1607:1 1675:2 1690:1 1712:1 1766:1 1795:3 1846:1 1899:1 1922:1 1923:2 1948:1 1978:1 1979:1 2027:1 2040:1 2087:1 2105:1 2113:1 2133:1 2190:1 2203:1 2205:2 2214:1 2216:2 2251:1 2267:3 2297:1 2337:1 2352:1 2369:1 2375:1 2391:1 2402:2 2410:1 2422:2 2425:2 2434:1 2505:1 2512:1 2528:2 2536:1 2548:1 2616:1 2655:1 2669:1 2689:1 2690:1 2779:1 2790:1 2797:1 2811:1 2832:4 2838:1 2843:1 2859:1 2962:2 2985:2 3005:1 3014:9 3023:5 3058:1 3065:3 3074:1 3090:1 3098:1 3102:2 3265:1 3296:1 3307:1 3336:1 3410:1 3423:2 3463:1 3488:1 3489:3 3534:1 3542:1 3548:2 3652:1 3653:1 3654:1 3666:1 3669:1 3700:1 3742:1 3752:1 3779:1 3788:1 3793:1 3794:1 3802:1 3813:1 3824:2 3880:1 3882:1 3889:1 3895:1 3936:1 3943:3 3989:1 4022:1 4055:2 4094:1 4100:1 4104:1 4126:1 4153:1 4173:1 4208:1 4228:1 4229:2 4283:1 4340:3 4348:1 4409:1 4450:1 4454:2 4608:2 4613:2 4651:1 4664:1 4682:1 4736:1 4748:1 4776:1 4781:1 4816:1 4817:1 4818:1 4862:1 4868:1 4876:1 4905:1 4906:2 4919:1 4927:1 4969:1 4977:1 4996:1 5005:1 5028:1 5034:1 5039:1 5062:1 5065:2 5132:5 5133:1 5183:1 5245:2 5247:1 5248:2 5264:3 5265:2 5269:1 5270:1 5271:1 5275:1 5276:3 5277:1 5284:2 5291:1 5292:1 5293:1 5344:1 5350:1 5356:1 5365:1 5436:1 5508:1 5551:1 5639:1 5678:1 5686:1 5710:1 5777:1 5784:1 5794:3 5815:1 5822:1 5889:2 5890:1 5913:1 5917:1 5952:1 5954:1 6036:1 6040:1 6061:1 6093:1 6151:1 6196:1 6283:1 6301:1 6345:1 6346:2 6348:6 6349:1 6355:1 6362:1 6378:1 6399:1 6444:1 6446:1 6473:1 6474:1 6479:1 6488:1 6567:1 6568:1 6583:1 6588:3 6610:1 6645:1 6664:1 6681:1 6692:2 6696:3 6697:1 6704:1 6707:1 6709:2 6715:1 6736:1 6745:1 6769:1 6850:1 6882:1 6886:1 7006:1 7013:3 7045:1 7052:1 7088:1 7128:1 7142:1 7151:1 7155:1 7181:3 7186:2 7216:1 7221:2 7289:1 7314:1 7319:2 7355:1 7450:1 7489:1 7509:1 7537:6 7540:1 7585:1 7594:1 7691:1 7855:3 7864:2 7880:1 7886:1 7887:1 7929:1 7943:1 7975:1 7989:1 8032:1 8041:1 8104:2 8105:1 8128:1 8130:3 8135:1 8172:8 8194:1 8201:10 8204:3 8213:1 8267:1 8273:1 8283:1 8284:2 8315:1 8333:1 8340:1 8370:1 8400:1 8415:1 8442:1 8443:1 8455:2 8581:1 8584:1 8598:2 8622:1 8626:1 8648:1 8669:1 8689:1 8698:8 8728:1 8741:2 8849:2 8884:1 8892:1 8913:1 8918:1 8927:2 8948:1 8952:2 8971:1 8976:1 8979:1 8985:1 8986:1 9012:1 9057:1 9058:2 9061:1 9072:3 9077:1 9094:1 9106:1 9146:1 9165:2 9181:1 9259:2 9326:1 9339:1 9377:1 9405:1 9431:1 9442:1 9470:1 9539:1 9563:1 9588:1 9593:1 9595:1 9606:4 9644:1 9686:1 9715:1 9768:1 9779:4 9783:1 9817:1 9874:2 9885:1 9894:1 9921:1 9964:2 9990:1 10046:1 10112:1 10133:1 10167:1 10172:1 10235:5 10236:23 10253:1 10272:1 10273:1 10302:1 10358:1 10369:3 10394:1 10431:1 10439:1 10471:1 10554:1 10578:1 10594:1 10611:2 10654:2 10669:1 10699:1 10714:1 10736:1 10796:1 10901:1 10926:1 10940:1 10967:1 10971:2 11000:1 11007:1 11037:1 11064:1 11091:1 11102:1 11144:1 11158:1 11181:3 11238:1 11256:2 11267:1 11272:1 11372:2 11377:4 11388:1 11404:1 11405:1 11462:1 11492:1 11493:1 11497:1 11501:1 11509:1 11586:1 11589:1 11614:1 11620:1 11632:3 11635:1 11678:1 11686:1 11689:1 11697:1 11737:1 11751:1 11767:1 11806:1 11830:1 11835:1 11842:1 11852:1 11863:1 11871:1 11928:2 11932:1 11938:1 11942:1 11976:1 11989:1 12009:1 12021:1 12067:1 12072:1 12088:1 12108:2 12140:1 12151:1 12154:1 12170:1 12181:1 12184:1 12235:1 12255:1 12273:1 12293:1 12304:1 12322:3 12324:1 12344:1 12346:1 12359:1 12373:1 12380:1 12383:1 12388:1 12398:1 12427:1 12439:1 12449:5 12456:1 12462:1 12467:1 12480:1 12501:1 12517:1 12546:1 12591:2 12640:1 12668:1 12680:1 12690:1 12715:1 12764:1 12771:1 12838:1 12857:1 12873:1 12891:1 12962:2 12999:1 13050:1 13058:1 13124:1 13135:1 13143:1 13179:1 13198:1 13216:1 13229:1 13251:1 13257:1 13425:5 13446:1 13448:1 13475:3 13480:1 13482:2 13493:1 13497:1 13531:2 13538:1 13552:1 13555:1 13558:1 13572:1 13597:1 13614:1 13623:1 13691:1 13707:1 13765:1 13788:1 13829:1 13853:1 13869:1 13871:1 13878:2 13906:1 13909:2 13945:2 13962:1 13963:1 13974:4 14020:1 14033:1 14040:1 14051:1 14057:1 14067:1 14069:2 14075:1 14077:2 14103:1 14114:2 14148:1 14167:2 14191:1 14212:1 14222:1 14225:1 14274:1 14288:1 14307:1 14318:1 14323:1 14325:2 14337:1 14370:1 14372:1 14377:1 14415:1 14449:1 14460:1 14464:1 14468:1 14479:1 14498:1 14540:1 14544:1 14551:1 14580:2 14618:1 14627:1 14683:1 14691:1 14769:1 14864:1 14872:1 14893:1 14911:1 14919:1 14927:3 14969:1 15119:1 15143:1 15171:1 15193:1 15202:1 15213:1 15225:2 15258:1 15368:1 15378:1 15381:1 15384:1 15391:1 15401:1 15407:1 15410:1 15415:2 15438:2 15453:1 15457:1 15493:1 15505:1 15548:1 15550:2 15591:1 15624:1 15642:1 15695:1 15706:1 15760:1 15764:1 15765:1 15785:1 15826:2 15853:3 15861:1 15894:1 15899:2 15918:1 15927:1 15934:1 15994:1 16028:1 16095:1 16134:1 16144:1 16186:1 16285:1 16313:1 16363:1 16402:1 16411:2 16414:1 16415:1 16431:2 16457:2 16467:2 16475:3 16499:1 16502:1 16627:1 16634:1 16635:1 16641:3 16649:1 16667:1 16669:1 16700:1 16723:1 16733:1 16738:1 16747:1 16805:3 16819:1 16825:1 16907:1 16946:1 16949:2 16962:1 16970:1 17060:2 17083:2 17116:1 17141:1 17147:1 17188:2 17211:1 17212:1 17216:1 17217:1 17220:1 17231:1 17232:1 17237:1 17267:1 17302:1 17340:1 17419:2 17519:1 17543:1 17595:1 17686:1 17688:1 17691:1 17702:1 17729:11 17776:2 17803:3 17851:1 17898:1 17915:1 17917:1 17926:1 17954:1 17957:1 17961:1 18028:2 18031:1 18054:1 18060:1 18076:3 18111:1 18126:2 18129:2 18167:2 18171:1 18188:1 18308:1 18385:1 18417:1 18429:1 18434:3 18447:1 18471:1 18505:1 18535:1 18536:2 18646:1 18683:1 18700:1 18717:1 18740:1 18747:1 18785:1 18843:1 18882:3 18892:1 18894:1 18938:1 18994:2 19085:1 19091:1 19129:1 19172:1 19190:2 19244:1 19306:5 19308:1 19315:1 19413:1 19419:3 19434:1 19449:1 19491:1 19497:1 19559:1 19577:1 19594:1 19605:1 19611:1 19633:1 19644:849 19709:1 19805:1 19807:1 19814:1 19840:1 19845:1 19863:1 19871:1 19878:1 19893:1 19895:1 19926:1 20072:1 20095:1 20121:1 20138:1 20216:1 20218:1 20302:1 20303:1 20393:1 20396:1 20412:1 20438:1 20460:1 20464:1 20466:1 20476:1 20487:1 20502:1 20547:1 20553:1 20554:1 20576:1 20597:1 20604:1 20609:1 20628:1 20630:3 20674:1 20698:1 20758:1 20769:1 20778:1 20841:1 20853:1 20875:3 20903:1 20915:1 20919:1 20933:1 20951:2 20980:1 20986:1 21066:1 21079:1 21160:1 21182:1 21192:1 21197:1 21211:1 21212:1 21246:3 21261:1 21286:1 21302:3 21319:1 21341:5 21365:3 21457:2 21462:1 21465:1 21484:2 21531:1 21545:1 21627:2 21629:1 21668:1 21683:2 21741:1 21787:1 21833:1 21900:2 21934:1 21990:1 22024:1 22027:1 22039:1 22043:2 22046:1 22048:1 22056:4 22059:1 22149:1 22175:1 22197:2 22213:1 22255:2 22262:1 22267:1 22296:1 22322:1 22327:1 22414:1 22422:2 22446:1 22527:1 22552:1 22557:2 22601:1 22605:1 22610:1 22659:1 22680:1 22711:1 22736:1 22749:1 22754:1 22764:1 22770:1 22782:2 22801:2 22809:2 22817:1 22831:1 22832:1 22849:2 22855:1 22860:1 22867:1 22891:1 22892:1 22935:1 22943:1 22970:1 22988:1 23000:1 23008:1 23014:1 23039:1 23095:1 23109:1 23112:1 23151:1 23166:1 23167:1 23170:1 23178:1 23180:6 23181:2 23186:1 23187:1 23193:1 23205:1 23214:1 23219:1 23221:1 23222:1 23244:1 23282:2 23332:1 23357:1 23368:1 23375:1 23395:2 23404:1 23408:1 23444:1 23460:1 23466:1 23469:2 23483:1 23486:1 23513:1 23567:2 23569:1 23581:1 23594:1 23607:1 23615:1 23630:1 23641:1 23644:3 23651:1 23671:1 23684:2 23690:1 23700:1 23731:1 23752:1 23779:5 23796:2 23802:1 23804:2 23809:1 23810:1 23831:2 23850:1 23856:1 23862:1 23871:1 23878:1 23885:1 23893:1 23899:2 23903:1 23915:1 23979:1 24025:1 24056:3 24068:1 24108:1 24142:2 24196:2 24200:1 24229:1 24286:1 24374:1 24404:1 24447:1 24498:1 24500:1 24525:1 24601:1 24614:2 24631:1 24633:2 24662:1 24682:1 24704:1 24726:2 24738:2 24742:1 24751:1 24770:1 24772:1 24786:1 24835:4 24868:1 24870:1 24884:1 24886:2 24918:1 24964:1 24994:1 25065:1 25120:1 25133:1 25271:1 25310:1 25331:1 25345:1 25348:1 25351:1 25388:1 25509:1 25522:1 25572:1 25591:1 25603:3 25608:1 25635:3 25682:1 25684:1 25712:1 25739:1 25775:1 25786:1 25799:11 25850:2 25921:1 25932:1 25935:1 25940:1 25949:1 25970:1 25989:3 25996:1 25997:1 26015:1 26049:3 26051:1 26055:1 26064:1 26090:1 26094:1 26104:1 26110:1 26165:1 26215:1 26278:1 26289:1 26318:1 26327:1 26381:1 26439:1 26449:1 26456:2 26504:6 26505:2 26548:1 26566:1 26626:1 26639:1 26689:1 26703:3 26762:1 26763:1 26855:2 26857:3 26889:1 26904:1 26929:1 26938:1 26959:2 26964:1 27001:4 27039:3 27040:1 27062:1 27089:1 27162:1 27201:1 27207:1 27262:1 27269:1 27279:1 27282:1 27347:1 27383:1 27406:1 27449:1 27580:1 27584:1 27624:1 27648:2 27710:2 27732:1 27748:1 27760:1 27797:3 27854:1 27858:1 27896:1 27909:1 27917:2 27927:1 28004:1 28049:1 28069:1 28079:1 28096:1 28100:1 28103:1 28139:1 28146:1 28152:1 28207:1 28225:1 28280:1 28290:2 28327:1 28342:1 28360:1 28379:1 28486:1 28496:1 28527:1 28561:2 28576:1 28597:1 28646:1 28690:1 28710:1 28727:1 28780:1 28782:1 28818:1 28836:1 28948:1 29014:1 29025:1 29032:1 29052:1 29054:1 29063:1 29088:1 29092:1 29109:1 29130:1 29133:1 29134:1 29137:2 29144:2 29152:1 29154:1 29158:1 29160:1 29196:1 29197:2 29224:5 29227:1 29249:1 29253:1 29284:1 29295:1 29304:1 29340:1 29344:1 29354:1 29360:1 29363:1 29397:1 29444:1 29450:2 29539:1 29579:1 29590:1 29593:2 29610:1 29661:1 29689:1 29723:1 29779:1 29781:2 29789:1 29825:2 29826:1 29837:1 29851:1 29860:1 29887:10 29896:1 29910:2 29938:4 29946:3 30001:1 30008:1 30039:2 30052:1 30078:3 30112:2 30118:1 30124:2 30130:1 30197:1 30199:2 30217:1 30243:1 30289:2 30329:1 30350:1 30358:1 30436:3 30510:1 30513:1 30523:1 30534:1 30538:1 30541:1 30660:1 30692:2 30693:1 30741:1 30842:1 30846:1 30864:2 30869:2 30884:3 30907:1 30909:1 30940:1 30953:1 30981:1 30986:1 31003:2 31055:1 31093:1 31142:1 31208:1 31212:2 31216:1 31222:1 31246:1 31248:1 31250:1 31251:1 31299:1 31313:1 19 27:1 52:1 56:1 57:1 91:1 108:1 154:1 170:1 206:1 232:1 234:1 246:1 276:1 354:1 367:1 428:2 462:2 604:1 643:5 649:1 671:1 697:1 764:1 837:1 843:1 890:1 899:1 907:2 928:1 933:2 937:3 938:3 948:2 949:1 951:1 967:1 985:1 994:1 998:3 1021:2 1022:1 1037:2 1038:1 1055:1 1080:3 1083:1 1137:1 1195:1 1213:1 1337:1 1348:1 1350:1 1389:1 1395:1 1437:1 1527:1 1533:1 1559:1 1582:1 1584:1 1586:2 1592:2 1600:2 1607:1 1675:2 1690:2 1699:1 1712:1 1766:1 1795:3 1846:1 1899:1 1906:1 1922:1 1923:2 1948:1 1978:1 1979:1 2026:1 2027:1 2040:1 2087:1 2105:1 2113:1 2133:2 2190:1 2196:1 2198:1 2203:1 2205:2 2208:1 2214:1 2216:2 2251:1 2267:3 2297:1 2337:1 2352:1 2369:1 2375:1 2384:1 2391:2 2401:1 2402:2 2410:2 2422:2 2425:2 2434:1 2505:1 2512:1 2528:2 2536:1 2548:1 2616:1 2653:1 2655:1 2669:1 2689:1 2690:1 2779:1 2790:1 2797:1 2811:1 2832:4 2838:2 2843:1 2859:1 2962:2 2985:2 3005:1 3014:10 3023:5 3058:1 3065:3 3074:1 3090:1 3098:1 3102:2 3265:1 3296:1 3307:1 3336:1 3410:1 3423:2 3463:1 3488:1 3489:3 3534:1 3542:1 3548:2 3652:1 3653:1 3654:1 3666:1 3669:1 3700:1 3742:1 3752:1 3779:1 3788:1 3793:1 3794:1 3802:1 3813:1 3824:2 3880:1 3882:1 3889:1 3895:1 3936:1 3943:3 3989:1 4022:1 4055:2 4094:1 4100:1 4104:1 4126:1 4153:1 4173:1 4208:1 4228:1 4229:2 4283:1 4294:1 4340:3 4348:1 4409:1 4450:1 4454:2 4558:2 4608:2 4613:2 4651:1 4664:1 4682:1 4736:1 4748:1 4776:1 4781:1 4816:1 4817:1 4818:1 4862:1 4868:1 4876:1 4905:1 4906:2 4919:1 4927:1 4949:1 4969:1 4977:1 4996:1 5005:1 5028:1 5034:1 5039:1 5062:1 5065:2 5132:5 5133:1 5183:1 5245:2 5247:1 5248:3 5264:4 5265:2 5269:1 5270:1 5271:1 5275:1 5276:3 5277:1 5284:2 5291:2 5292:1 5293:1 5344:1 5350:1 5356:1 5365:1 5436:1 5443:1 5508:1 5551:1 5574:1 5639:1 5666:1 5678:1 5686:1 5710:1 5777:1 5784:1 5794:3 5815:1 5822:1 5889:2 5890:2 5913:1 5917:1 5952:1 5954:1 6036:1 6040:1 6061:1 6093:1 6151:1 6196:1 6283:1 6301:1 6345:1 6346:2 6348:6 6349:1 6355:1 6362:1 6378:2 6399:1 6444:1 6446:1 6473:2 6474:1 6479:1 6488:2 6567:1 6568:1 6583:1 6588:3 6610:1 6645:1 6664:1 6681:1 6692:2 6693:1 6696:4 6697:1 6704:1 6707:1 6709:2 6715:1 6736:1 6745:1 6769:1 6850:1 6852:1 6882:1 6886:1 7006:1 7013:3 7045:1 7052:1 7088:1 7127:1 7128:1 7142:1 7151:1 7155:1 7181:3 7186:2 7216:2 7221:2 7289:1 7314:1 7319:2 7355:1 7435:1 7450:1 7489:1 7509:1 7537:6 7540:1 7585:1 7594:1 7640:1 7691:1 7855:3 7864:2 7880:1 7886:1 7887:1 7929:1 7943:1 7975:1 7989:1 8032:1 8041:1 8104:2 8105:1 8128:1 8130:3 8135:1 8172:12 8194:1 8201:11 8204:3 8213:1 8267:1 8273:1 8283:1 8284:2 8315:1 8333:1 8340:1 8357:1 8370:1 8400:1 8415:1 8442:1 8443:1 8455:2 8581:1 8584:1 8598:2 8622:1 8626:1 8648:1 8669:1 8689:1 8698:9 8728:1 8741:2 8837:1 8849:2 8884:1 8892:1 8903:1 8913:1 8918:1 8927:2 8948:1 8952:2 8971:1 8976:1 8979:1 8985:1 8986:1 9012:1 9057:2 9058:2 9061:1 9072:3 9077:1 9094:1 9106:1 9146:1 9165:2 9181:1 9259:2 9326:1 9339:1 9377:1 9405:1 9431:1 9442:1 9470:1 9539:1 9563:1 9588:1 9593:1 9595:1 9602:1 9606:4 9644:1 9667:1 9686:1 9715:1 9768:1 9779:4 9783:1 9817:1 9874:2 9885:1 9894:1 9921:1 9943:1 9964:2 9990:1 10046:1 10091:1 10105:1 10112:2 10133:1 10167:1 10172:1 10235:5 10236:23 10238:1 10253:1 10272:1 10273:1 10302:1 10358:1 10369:3 10394:1 10431:1 10439:1 10471:1 10554:1 10578:1 10594:1 10611:2 10654:2 10669:1 10699:1 10714:1 10728:1 10736:2 10796:1 10871:1 10901:2 10926:1 10940:1 10967:1 10971:2 11000:1 11007:1 11037:1 11064:1 11091:1 11102:1 11144:1 11150:1 11158:1 11181:4 11207:1 11238:2 11256:2 11267:1 11272:1 11333:1 11372:2 11377:4 11388:1 11404:2 11405:1 11462:1 11492:1 11493:1 11497:1 11501:1 11509:1 11586:1 11589:1 11614:1 11620:1 11632:3 11635:1 11653:1 11678:1 11686:1 11689:1 11692:1 11697:1 11737:1 11751:1 11759:1 11767:1 11806:1 11830:1 11835:1 11841:1 11842:1 11852:1 11863:1 11871:1 11906:1 11928:2 11932:1 11938:1 11942:1 11976:1 11989:1 12009:1 12021:1 12041:1 12067:1 12072:1 12088:1 12108:2 12119:1 12140:1 12151:1 12154:1 12170:2 12181:1 12184:1 12235:1 12255:1 12273:1 12293:1 12304:1 12322:3 12324:1 12344:1 12346:1 12359:1 12373:1 12380:1 12383:1 12388:1 12398:1 12427:1 12439:1 12449:5 12456:1 12462:1 12467:1 12480:1 12501:1 12517:1 12546:1 12591:2 12640:1 12668:1 12678:1 12680:1 12690:1 12715:1 12764:1 12771:1 12838:1 12857:1 12873:1 12891:1 12962:2 12999:1 13050:1 13058:1 13124:1 13135:1 13143:1 13179:1 13198:1 13216:1 13229:1 13251:1 13257:1 13425:5 13446:1 13448:1 13475:3 13480:1 13482:2 13493:1 13497:1 13531:2 13538:1 13552:1 13555:1 13558:1 13572:1 13597:1 13614:1 13623:1 13665:1 13691:2 13707:1 13765:1 13788:1 13829:1 13853:1 13869:1 13871:2 13878:2 13906:1 13909:2 13945:2 13962:1 13963:1 13974:4 14020:1 14033:1 14040:1 14051:1 14057:1 14067:1 14069:2 14075:1 14077:2 14103:1 14114:2 14148:1 14167:2 14191:1 14212:1 14222:2 14225:1 14274:1 14288:1 14307:1 14318:1 14323:1 14325:2 14337:1 14370:1 14372:1 14377:1 14415:1 14449:1 14460:1 14464:2 14468:1 14479:1 14489:1 14498:1 14540:1 14544:1 14551:1 14580:2 14618:1 14627:1 14683:1 14691:1 14769:2 14819:1 14832:1 14864:1 14872:1 14893:1 14911:1 14912:1 14919:1 14927:3 14933:1 14969:1 15059:1 15119:1 15143:1 15171:1 15193:1 15196:1 15202:1 15213:1 15225:2 15258:1 15354:1 15368:1 15378:1 15381:1 15384:1 15391:1 15401:1 15407:1 15410:1 15415:2 15438:2 15453:1 15457:1 15493:1 15505:1 15510:1 15525:1 15548:1 15550:2 15591:1 15624:1 15642:1 15695:1 15706:1 15760:1 15764:1 15765:1 15785:2 15826:2 15853:3 15861:1 15894:1 15899:2 15918:1 15927:1 15934:1 15994:1 16028:1 16095:1 16118:1 16134:1 16144:1 16186:1 16285:1 16313:1 16355:1 16363:1 16383:1 16402:1 16411:2 16414:1 16415:1 16431:2 16457:2 16467:2 16475:3 16499:1 16502:1 16555:1 16627:1 16634:1 16635:1 16641:4 16649:1 16667:1 16669:1 16700:1 16723:1 16733:1 16738:1 16747:1 16805:3 16819:1 16825:1 16907:1 16946:1 16949:2 16962:1 16970:1 17060:2 17083:2 17112:1 17116:1 17141:1 17147:1 17188:2 17211:2 17212:1 17216:1 17217:1 17220:1 17231:1 17232:1 17237:1 17267:1 17302:1 17340:1 17419:2 17519:1 17543:1 17595:1 17642:1 17686:1 17688:1 17691:1 17702:1 17729:11 17776:2 17803:3 17851:1 17898:1 17915:1 17917:1 17926:1 17954:1 17957:1 17961:1 18028:2 18031:1 18054:1 18060:1 18076:3 18111:1 18126:2 18129:2 18167:2 18171:1 18188:1 18233:1 18299:1 18308:1 18385:1 18417:1 18429:1 18434:3 18447:1 18471:1 18505:1 18535:1 18536:2 18646:1 18683:1 18700:1 18717:1 18740:1 18747:1 18782:1 18785:1 18836:1 18843:1 18882:3 18892:1 18894:1 18938:1 18994:2 19085:1 19091:1 19129:1 19172:1 19190:2 19244:1 19306:5 19308:1 19315:1 19413:1 19419:3 19434:1 19449:1 19491:1 19497:1 19559:1 19577:1 19594:1 19605:1 19611:1 19633:1 19644:940 19709:1 19805:1 19807:1 19814:1 19840:1 19845:1 19863:1 19871:1 19878:1 19893:1 19895:1 19926:1 19990:1 20072:1 20095:1 20121:1 20138:1 20216:1 20218:1 20302:1 20303:1 20393:1 20396:1 20412:1 20438:1 20460:1 20462:1 20464:1 20466:1 20476:1 20487:1 20502:1 20547:1 20553:1 20554:1 20576:1 20597:1 20604:1 20609:1 20628:1 20630:3 20674:1 20698:1 20758:1 20769:1 20778:1 20841:1 20853:1 20875:3 20884:1 20903:1 20915:1 20919:1 20933:1 20951:2 20980:1 20986:1 21066:1 21079:1 21106:1 21160:1 21182:1 21184:1 21192:1 21197:2 21211:1 21212:1 21246:4 21261:1 21286:1 21302:3 21319:1 21341:5 21365:3 21457:2 21462:1 21465:1 21484:2 21511:1 21531:1 21545:1 21627:2 21629:1 21668:1 21683:2 21741:1 21782:1 21787:1 21833:1 21869:1 21900:2 21934:1 21990:1 22024:1 22027:1 22039:1 22043:2 22046:1 22048:1 22056:4 22059:1 22149:1 22175:1 22197:2 22213:1 22255:2 22262:1 22267:1 22296:1 22322:1 22327:1 22414:1 22422:2 22431:1 22446:1 22527:1 22552:1 22557:2 22601:1 22605:1 22610:1 22613:1 22659:1 22680:1 22711:1 22736:1 22749:1 22754:1 22764:1 22770:1 22782:2 22801:2 22809:2 22817:1 22831:1 22832:1 22844:1 22849:2 22855:1 22860:1 22867:1 22891:1 22892:1 22935:1 22943:1 22970:1 22988:1 23000:1 23008:1 23014:1 23039:1 23095:1 23109:1 23112:1 23142:1 23151:1 23166:1 23167:1 23170:1 23178:1 23180:6 23181:3 23186:1 23187:1 23193:1 23205:1 23214:1 23219:1 23221:1 23222:2 23244:1 23282:2 23332:1 23357:1 23368:1 23375:1 23395:2 23404:1 23408:2 23444:1 23460:1 23466:1 23469:2 23478:1 23483:1 23486:1 23513:1 23567:2 23569:1 23581:1 23594:1 23607:1 23615:1 23630:1 23641:1 23644:3 23651:1 23671:1 23684:2 23690:1 23700:1 23731:1 23752:1 23779:5 23796:2 23802:1 23804:2 23809:1 23810:2 23831:2 23850:1 23856:1 23858:1 23862:1 23871:1 23878:1 23885:1 23893:1 23899:2 23903:1 23915:1 23979:1 24025:1 24056:3 24068:1 24108:1 24142:2 24196:2 24200:1 24229:1 24286:1 24374:2 24404:1 24430:1 24447:1 24498:1 24500:1 24525:1 24601:1 24614:2 24631:1 24633:2 24644:1 24662:1 24682:1 24704:1 24726:2 24738:2 24741:1 24742:1 24751:1 24770:1 24772:1 24786:1 24799:1 24835:4 24868:1 24870:1 24884:1 24886:2 24918:1 24930:1 24964:1 24994:1 25065:1 25089:1 25120:1 25133:1 25271:1 25310:1 25331:1 25345:1 25348:1 25351:1 25369:1 25388:1 25405:1 25406:1 25509:1 25522:1 25572:1 25591:1 25603:3 25608:1 25635:3 25682:1 25684:1 25685:1 25712:1 25739:1 25775:1 25786:1 25799:11 25850:2 25921:1 25932:1 25935:2 25940:1 25949:1 25970:1 25989:3 25996:1 25997:1 26015:1 26049:3 26051:1 26055:1 26064:1 26080:1 26090:1 26094:1 26104:1 26110:1 26165:1 26215:1 26278:1 26289:1 26318:1 26327:1 26381:1 26439:1 26449:1 26453:1 26456:3 26504:6 26505:2 26548:1 26566:1 26607:1 26626:1 26639:1 26689:1 26703:3 26729:1 26762:1 26763:1 26855:2 26857:3 26889:1 26904:1 26929:1 26938:1 26959:2 26964:1 27001:4 27039:3 27040:1 27062:1 27089:1 27162:1 27201:1 27207:1 27262:1 27269:1 27279:1 27282:1 27347:1 27350:1 27383:1 27406:1 27449:1 27580:1 27584:1 27624:1 27648:2 27710:2 27732:1 27748:1 27760:1 27797:3 27818:1 27854:1 27858:1 27881:1 27892:1 27896:2 27909:1 27917:2 27927:1 28004:1 28049:1 28069:1 28079:1 28096:1 28100:1 28103:1 28138:1 28139:1 28146:1 28152:1 28165:2 28207:1 28225:1 28280:1 28290:2 28327:1 28342:1 28360:1 28379:1 28486:1 28496:1 28527:1 28561:2 28576:1 28597:1 28646:1 28690:1 28710:1 28727:1 28780:1 28782:1 28818:1 28836:1 28948:3 29014:1 29025:1 29032:1 29052:1 29054:1 29063:1 29088:1 29092:1 29109:1 29119:1 29130:1 29133:1 29134:1 29137:2 29144:2 29152:1 29154:1 29158:1 29160:1 29188:1 29196:1 29197:2 29224:5 29227:1 29238:1 29249:1 29253:1 29284:1 29295:1 29304:1 29340:1 29344:1 29354:1 29360:1 29363:1 29386:1 29397:1 29444:1 29447:1 29450:2 29539:1 29579:1 29590:1 29593:2 29610:1 29661:1 29689:1 29723:1 29779:1 29781:2 29789:1 29790:1 29825:2 29826:1 29837:1 29851:1 29860:1 29887:11 29896:1 29910:2 29938:4 29946:3 30001:1 30008:1 30039:2 30052:1 30078:3 30112:2 30118:1 30124:2 30130:1 30197:1 30199:2 30217:1 30243:1 30289:2 30329:1 30350:1 30358:1 30382:1 30436:4 30438:1 30510:1 30513:1 30523:1 30534:1 30538:1 30541:1 30660:1 30692:2 30693:1 30741:1 30842:1 30846:1 30864:2 30869:2 30884:3 30907:1 30909:1 30940:1 30953:1 30981:1 30986:1 31003:2 31055:1 31093:1 31142:1 31195:1 31208:1 31212:2 31216:1 31222:1 31238:1 31246:1 31248:1 31250:1 31251:1 31299:1 31313:1 31385:1 19 27:1 52:1 56:1 57:1 91:1 108:1 154:1 170:1 206:1 232:1 234:1 246:1 276:1 354:1 367:1 428:2 462:2 569:1 604:1 643:6 649:1 671:1 697:1 764:1 837:1 843:1 890:1 899:1 907:2 926:1 928:1 933:2 937:3 938:3 948:2 949:1 951:1 967:1 985:1 994:1 998:3 1021:2 1022:1 1037:2 1038:1 1055:1 1080:3 1083:1 1137:1 1195:1 1213:1 1249:1 1277:1 1335:1 1337:1 1348:1 1350:1 1380:1 1389:1 1395:1 1437:1 1527:1 1533:1 1559:1 1582:1 1584:1 1586:2 1592:2 1600:2 1607:2 1669:1 1675:3 1690:2 1699:1 1712:1 1766:1 1795:3 1846:1 1899:1 1906:1 1909:1 1922:1 1923:2 1928:1 1948:1 1950:1 1978:1 1979:1 2026:1 2027:1 2040:1 2087:1 2105:1 2113:1 2133:2 2190:1 2196:1 2198:1 2203:1 2205:2 2208:1 2214:1 2216:2 2251:1 2267:3 2297:1 2337:1 2352:1 2369:1 2375:1 2384:1 2391:2 2401:1 2402:2 2410:2 2422:2 2425:2 2434:1 2505:1 2512:1 2528:3 2536:1 2548:1 2592:1 2616:1 2653:1 2655:1 2669:1 2689:1 2690:1 2760:1 2779:1 2790:1 2797:1 2811:1 2832:5 2838:2 2843:1 2859:1 2890:1 2962:2 2985:2 3005:1 3014:12 3023:5 3058:1 3065:3 3074:1 3090:1 3098:1 3102:2 3265:1 3296:1 3307:1 3336:1 3410:2 3423:2 3463:2 3488:1 3489:3 3534:1 3542:1 3548:2 3652:1 3653:1 3654:1 3666:1 3669:1 3700:1 3742:1 3752:1 3779:1 3788:1 3793:1 3794:1 3802:1 3813:1 3824:2 3844:1 3880:1 3882:1 3889:1 3895:1 3936:1 3943:3 3989:1 4022:1 4055:2 4094:1 4100:1 4104:1 4126:1 4153:1 4173:1 4208:1 4228:1 4229:2 4283:1 4294:1 4340:3 4348:1 4409:1 4432:1 4450:1 4454:2 4498:1 4558:2 4608:2 4613:2 4651:1 4664:1 4682:1 4736:1 4748:1 4776:1 4780:1 4781:1 4816:1 4817:1 4818:1 4862:1 4868:1 4876:1 4905:1 4906:2 4919:1 4927:1 4949:1 4969:1 4977:1 4996:1 5005:1 5028:1 5034:1 5039:1 5062:1 5065:2 5132:5 5133:1 5183:3 5245:2 5247:1 5248:3 5264:4 5265:2 5269:1 5270:1 5271:1 5275:1 5276:3 5277:1 5284:2 5291:2 5292:1 5293:1 5318:1 5344:1 5350:1 5356:1 5365:1 5436:1 5443:1 5508:1 5535:1 5551:1 5574:1 5639:1 5666:1 5678:1 5686:1 5710:1 5777:1 5784:1 5794:3 5815:1 5822:1 5824:1 5889:2 5890:2 5913:1 5917:1 5952:1 5954:1 6036:1 6040:1 6061:1 6093:1 6151:1 6196:1 6283:1 6301:1 6315:1 6345:2 6346:2 6348:8 6349:1 6355:1 6362:1 6378:2 6399:1 6444:1 6446:1 6465:1 6473:3 6474:1 6479:1 6488:2 6567:1 6568:1 6583:1 6588:3 6610:1 6645:1 6664:1 6681:1 6692:2 6693:1 6696:4 6697:1 6704:1 6707:1 6709:2 6715:1 6736:1 6745:1 6769:1 6850:1 6852:1 6882:1 6886:1 6965:1 7006:1 7013:3 7045:1 7052:1 7088:1 7127:1 7128:1 7142:1 7151:1 7155:1 7181:3 7186:2 7216:2 7221:2 7289:1 7314:2 7319:2 7355:1 7381:1 7382:1 7435:1 7450:1 7489:1 7509:1 7537:6 7540:1 7585:1 7594:1 7640:1 7691:1 7855:3 7864:2 7880:2 7886:1 7887:1 7929:1 7943:1 7975:1 7989:1 8032:1 8041:1 8104:2 8105:1 8128:1 8130:3 8135:1 8160:1 8172:12 8194:1 8201:12 8204:3 8213:1 8267:1 8273:1 8283:1 8284:2 8315:1 8333:1 8340:1 8357:1 8370:1 8400:1 8415:1 8442:1 8443:1 8455:2 8581:1 8584:1 8598:2 8604:1 8622:1 8626:1 8648:1 8669:1 8689:1 8698:10 8728:1 8741:2 8837:1 8849:2 8884:1 8892:1 8903:1 8913:1 8918:1 8927:2 8948:1 8952:2 8971:1 8976:1 8979:1 8985:1 8986:1 9012:1 9057:3 9058:2 9061:1 9064:1 9072:3 9077:1 9094:1 9106:1 9130:1 9146:1 9165:2 9181:1 9259:2 9326:1 9339:1 9377:1 9405:1 9431:1 9442:2 9470:1 9539:1 9563:1 9588:1 9593:1 9595:1 9602:2 9606:4 9644:1 9667:1 9686:1 9715:1 9768:1 9779:5 9783:1 9791:1 9817:1 9874:2 9885:1 9894:1 9921:1 9943:1 9964:2 9990:1 10046:1 10091:1 10105:1 10112:2 10114:1 10133:1 10167:1 10172:1 10224:1 10235:5 10236:23 10238:2 10253:1 10272:1 10273:1 10302:1 10358:1 10369:3 10394:1 10431:1 10439:1 10471:1 10554:1 10578:1 10594:1 10611:2 10640:1 10654:2 10669:1 10699:1 10714:1 10728:1 10736:3 10796:1 10871:1 10901:2 10926:1 10940:1 10967:1 10971:3 11000:1 11007:1 11037:1 11064:1 11091:1 11102:1 11144:1 11150:1 11158:1 11181:4 11207:1 11238:2 11256:2 11267:1 11272:1 11333:2 11372:2 11377:4 11388:1 11404:2 11405:1 11406:1 11462:1 11492:1 11493:1 11497:1 11501:1 11509:1 11586:1 11589:1 11614:2 11620:1 11632:3 11635:1 11651:1 11653:1 11678:1 11686:1 11689:1 11692:1 11697:1 11737:1 11751:1 11759:1 11767:1 11806:1 11830:1 11835:1 11841:2 11842:1 11852:1 11863:1 11871:1 11906:1 11928:2 11932:1 11938:1 11942:1 11976:1 11989:1 12004:1 12009:1 12021:1 12041:1 12067:1 12070:1 12072:1 12088:1 12108:2 12119:1 12140:1 12151:1 12154:1 12170:2 12181:1 12184:1 12235:1 12255:1 12273:1 12293:1 12304:1 12322:3 12324:1 12344:1 12346:1 12352:1 12359:1 12373:1 12380:1 12383:1 12388:1 12398:1 12427:1 12439:1 12449:5 12456:1 12462:1 12467:1 12480:1 12501:1 12517:1 12546:1 12591:2 12640:1 12668:1 12678:1 12680:1 12690:1 12715:1 12764:1 12771:1 12838:1 12857:1 12873:1 12891:1 12962:2 12999:1 13009:1 13050:1 13058:1 13124:1 13135:1 13143:1 13179:1 13198:1 13216:1 13229:1 13251:1 13257:1 13425:5 13446:1 13448:1 13475:3 13480:1 13482:2 13493:1 13497:1 13531:2 13538:1 13552:1 13555:1 13558:1 13572:1 13597:1 13614:1 13623:1 13665:1 13691:2 13707:1 13765:1 13788:1 13829:1 13853:1 13869:1 13871:2 13878:2 13894:1 13906:1 13909:2 13945:2 13962:1 13963:1 13974:4 14020:1 14033:1 14040:1 14051:1 14057:2 14067:1 14069:2 14075:1 14077:2 14103:1 14114:2 14148:1 14167:2 14185:1 14191:1 14212:1 14222:2 14225:1 14239:1 14274:1 14288:1 14307:1 14318:1 14323:1 14325:2 14337:1 14370:1 14372:1 14377:1 14415:1 14449:1 14460:1 14464:2 14468:1 14479:1 14489:1 14498:1 14540:1 14544:1 14551:1 14580:2 14618:1 14627:1 14683:1 14691:1 14769:2 14819:1 14832:1 14864:1 14872:1 14893:1 14911:1 14912:1 14919:1 14927:3 14933:1 14969:1 15004:1 15059:1 15119:1 15143:1 15171:1 15193:1 15196:1 15202:1 15213:1 15225:2 15258:1 15354:1 15368:1 15378:1 15381:1 15384:1 15391:1 15401:1 15407:1 15410:1 15415:2 15438:2 15453:1 15457:1 15493:1 15505:1 15510:1 15525:1 15548:1 15550:2 15591:1 15624:1 15642:1 15695:1 15706:1 15760:1 15764:1 15765:1 15785:2 15826:2 15851:1 15853:3 15861:1 15894:1 15899:2 15918:1 15927:1 15934:1 15960:1 15994:1 16028:1 16095:1 16118:1 16134:1 16144:1 16186:1 16285:1 16313:1 16355:1 16363:1 16383:1 16402:1 16411:2 16414:1 16415:1 16431:2 16457:2 16467:2 16475:3 16499:1 16502:1 16555:1 16627:1 16634:1 16635:1 16641:4 16649:1 16667:1 16669:1 16700:1 16723:1 16733:1 16738:1 16747:1 16799:1 16805:3 16819:1 16825:1 16835:1 16907:1 16946:1 16949:2 16962:1 16970:1 17060:2 17083:2 17112:1 17116:1 17141:1 17147:1 17188:2 17211:2 17212:1 17216:1 17217:1 17220:1 17231:2 17232:1 17237:1 17267:1 17302:1 17305:1 17340:1 17419:2 17519:1 17543:1 17595:1 17642:1 17686:2 17688:1 17691:1 17702:1 17729:11 17776:2 17803:3 17851:1 17898:1 17915:1 17917:1 17926:1 17954:1 17957:1 17961:1 18028:2 18031:1 18054:1 18060:1 18076:3 18111:1 18126:2 18129:2 18167:2 18171:1 18188:1 18233:1 18299:1 18308:1 18385:1 18413:1 18417:1 18429:1 18434:3 18447:1 18471:1 18505:1 18535:1 18536:2 18646:1 18683:3 18700:1 18717:1 18740:1 18747:1 18782:2 18785:1 18836:1 18843:1 18874:1 18882:3 18892:1 18894:1 18938:1 18951:1 18994:2 19085:1 19091:1 19129:1 19172:1 19190:2 19191:1 19244:1 19306:5 19308:1 19315:1 19413:1 19419:3 19434:1 19449:1 19491:1 19497:1 19559:1 19577:1 19594:1 19605:1 19611:1 19633:1 19644:1014 19709:1 19805:1 19807:1 19814:1 19840:1 19845:1 19863:1 19871:1 19878:1 19893:1 19895:1 19926:1 19990:1 20072:1 20095:1 20121:1 20138:1 20216:1 20218:1 20302:1 20303:1 20389:1 20393:1 20396:1 20412:1 20438:2 20460:1 20462:1 20464:1 20466:1 20476:1 20487:1 20498:1 20502:1 20547:1 20553:1 20554:1 20576:1 20597:1 20604:1 20609:2 20628:1 20630:3 20643:1 20674:1 20698:1 20758:1 20769:1 20778:1 20786:1 20841:1 20853:1 20875:3 20884:1 20903:1 20915:1 20919:1 20933:1 20943:1 20951:2 20980:1 20986:1 21066:1 21079:1 21106:1 21160:1 21182:1 21184:1 21185:1 21192:1 21197:2 21211:2 21212:1 21246:4 21261:1 21286:1 21302:3 21319:1 21341:5 21355:1 21365:3 21457:2 21462:1 21465:1 21484:2 21511:1 21531:1 21545:1 21570:1 21627:2 21629:1 21668:1 21683:2 21741:1 21782:1 21787:1 21833:1 21869:1 21900:2 21934:1 21990:1 22024:1 22027:1 22039:1 22043:2 22046:1 22048:1 22056:4 22059:1 22107:1 22149:1 22175:1 22197:2 22213:1 22255:2 22262:1 22267:1 22296:1 22322:1 22327:1 22341:1 22414:1 22422:2 22426:1 22431:1 22446:1 22527:1 22552:1 22557:2 22601:1 22605:1 22610:1 22613:1 22659:1 22680:1 22711:2 22736:1 22749:1 22754:1 22764:1 22770:1 22782:2 22801:2 22809:2 22817:1 22831:1 22832:1 22844:1 22849:2 22855:1 22860:1 22867:1 22887:1 22891:1 22892:1 22935:1 22943:1 22970:1 22988:1 23000:1 23008:1 23014:1 23039:1 23095:2 23109:1 23112:1 23142:1 23151:1 23156:1 23166:1 23167:1 23170:1 23178:1 23180:6 23181:3 23185:1 23186:1 23187:1 23193:1 23205:1 23214:1 23219:1 23221:1 23222:2 23244:1 23282:3 23332:1 23357:1 23368:1 23375:1 23386:1 23395:2 23404:1 23408:2 23444:1 23460:1 23466:1 23469:2 23478:1 23483:1 23486:1 23513:1 23567:2 23569:2 23581:1 23594:1 23607:1 23615:1 23625:1 23630:1 23641:1 23643:1 23644:3 23651:1 23671:1 23684:2 23690:1 23700:1 23731:1 23752:1 23779:6 23796:2 23802:1 23804:2 23809:1 23810:3 23831:2 23850:1 23856:1 23858:1 23862:1 23871:1 23878:1 23885:1 23893:1 23899:3 23903:1 23915:1 23979:1 24025:1 24053:1 24056:3 24068:1 24108:1 24142:2 24196:2 24200:1 24229:1 24286:1 24374:2 24404:1 24430:1 24447:1 24498:1 24500:1 24525:1 24601:1 24614:2 24631:1 24633:2 24644:1 24662:1 24682:1 24704:1 24726:2 24738:2 24741:1 24742:1 24751:1 24764:1 24770:1 24772:1 24786:2 24799:1 24835:4 24868:1 24870:1 24884:1 24886:2 24918:1 24930:1 24964:1 24994:1 25065:1 25089:1 25120:1 25133:1 25181:1 25271:1 25310:1 25329:1 25331:1 25345:1 25348:1 25351:1 25369:1 25388:1 25405:1 25406:1 25481:1 25509:1 25522:1 25572:1 25591:1 25603:4 25608:1 25635:4 25680:1 25682:1 25684:1 25685:1 25712:1 25739:1 25775:1 25786:1 25799:11 25850:2 25918:1 25921:1 25932:1 25935:2 25940:1 25949:1 25970:1 25972:1 25989:3 25996:1 25997:1 26015:1 26049:3 26051:1 26055:1 26064:1 26080:1 26090:1 26094:1 26104:1 26110:1 26120:1 26165:1 26215:1 26278:1 26289:1 26318:1 26327:1 26381:1 26439:1 26449:1 26453:2 26456:3 26504:6 26505:2 26548:1 26566:1 26591:2 26607:1 26626:1 26639:1 26689:1 26703:4 26729:1 26762:1 26763:1 26855:2 26857:3 26889:1 26904:1 26929:1 26938:1 26959:2 26964:1 27001:4 27039:3 27040:1 27062:1 27089:1 27162:1 27201:1 27207:1 27262:1 27269:1 27279:1 27282:2 27347:1 27350:1 27383:1 27406:1 27449:1 27498:1 27580:1 27584:1 27624:1 27648:2 27710:2 27732:1 27748:1 27760:1 27797:3 27818:1 27854:1 27858:1 27881:1 27892:1 27896:2 27909:1 27917:2 27927:1 28004:1 28049:1 28069:1 28079:1 28096:1 28100:1 28103:1 28138:1 28139:1 28146:1 28152:1 28165:2 28207:1 28225:1 28280:1 28290:2 28327:1 28342:1 28360:1 28379:1 28486:1 28496:1 28527:1 28561:2 28576:1 28597:1 28646:1 28690:1 28710:1 28727:1 28780:1 28782:1 28818:1 28836:1 28843:1 28948:3 29014:1 29025:1 29032:1 29052:1 29054:1 29063:1 29088:1 29092:1 29109:1 29119:1 29130:1 29133:1 29134:1 29137:2 29144:2 29152:1 29154:1 29158:1 29160:1 29188:1 29196:1 29197:2 29224:5 29227:1 29238:1 29249:1 29253:1 29282:1 29284:1 29295:1 29304:1 29340:1 29344:1 29354:1 29360:1 29363:1 29386:1 29397:1 29415:1 29444:1 29447:2 29450:2 29469:1 29539:1 29579:1 29590:1 29593:2 29610:1 29661:1 29679:1 29689:1 29723:2 29779:1 29781:2 29788:1 29789:1 29790:1 29825:2 29826:1 29837:1 29851:1 29860:1 29887:14 29896:1 29910:2 29938:4 29946:3 30001:1 30008:1 30039:2 30052:1 30078:3 30112:2 30118:1 30124:2 30130:1 30194:1 30197:1 30199:2 30217:1 30243:1 30289:2 30329:1 30350:1 30358:1 30382:1 30436:4 30438:1 30510:1 30513:2 30523:1 30534:1 30537:1 30538:1 30541:1 30660:1 30692:2 30693:1 30694:1 30741:1 30842:1 30846:1 30864:2 30869:2 30884:3 30907:1 30909:1 30925:1 30940:1 30953:1 30981:1 30986:2 31003:2 31055:1 31093:3 31142:1 31195:1 31208:1 31212:2 31216:1 31222:1 31238:1 31246:1 31248:1 31250:1 31251:1 31299:1 31313:1 31385:1 19 27:1 52:1 56:1 57:1 91:1 108:1 154:1 170:2 206:1 232:1 234:1 246:1 276:1 354:1 367:1 428:2 462:2 561:1 569:1 604:1 622:1 643:6 649:1 671:1 697:1 764:1 837:1 843:1 890:1 899:1 907:2 926:1 928:1 933:2 937:3 938:3 948:2 949:1 951:1 967:1 985:1 994:1 998:3 1021:2 1022:1 1037:2 1038:1 1055:1 1080:3 1083:1 1137:1 1195:1 1213:1 1249:1 1277:1 1335:1 1337:1 1348:1 1350:1 1380:1 1389:1 1395:1 1437:1 1458:1 1527:1 1533:1 1559:1 1582:1 1584:1 1586:2 1592:2 1600:2 1607:2 1669:1 1675:3 1690:2 1699:1 1712:1 1766:1 1795:3 1846:1 1899:1 1906:1 1909:1 1922:1 1923:2 1928:1 1948:1 1950:1 1978:1 1979:1 2026:1 2027:1 2040:1 2087:1 2105:1 2113:1 2133:2 2190:1 2196:1 2198:1 2203:1 2205:2 2208:1 2214:1 2216:2 2251:1 2266:1 2267:3 2297:1 2337:1 2345:1 2352:1 2369:1 2375:1 2384:1 2391:2 2401:1 2402:2 2410:2 2422:2 2425:2 2434:1 2505:1 2512:2 2528:3 2536:1 2548:1 2549:1 2592:1 2616:1 2653:1 2655:1 2669:1 2689:1 2690:1 2760:1 2779:1 2790:1 2797:1 2811:1 2832:5 2838:2 2843:1 2859:1 2890:1 2905:1 2962:2 2985:2 3005:1 3014:12 3023:5 3058:1 3065:3 3074:1 3090:1 3098:1 3102:2 3265:1 3294:1 3296:1 3307:1 3336:1 3410:2 3423:2 3463:2 3488:1 3489:3 3534:1 3542:1 3548:2 3652:1 3653:1 3654:1 3666:1 3669:1 3700:1 3742:1 3752:1 3779:1 3788:1 3793:1 3794:1 3802:1 3813:1 3824:2 3844:1 3880:1 3882:1 3889:1 3895:1 3936:1 3943:4 3989:1 4022:1 4055:2 4094:1 4100:1 4104:1 4126:1 4153:1 4173:1 4208:1 4228:1 4229:2 4283:1 4294:1 4340:3 4348:1 4409:1 4432:1 4450:1 4454:2 4498:1 4558:2 4608:2 4613:2 4651:1 4664:1 4682:1 4736:1 4748:1 4776:2 4780:1 4781:1 4816:1 4817:1 4818:1 4862:1 4868:1 4876:1 4885:1 4905:1 4906:2 4919:1 4927:1 4949:1 4969:1 4977:1 4996:1 5005:1 5028:1 5034:1 5039:1 5062:1 5065:2 5127:1 5132:5 5133:1 5183:3 5245:2 5247:1 5248:3 5264:4 5265:2 5269:1 5270:1 5271:1 5275:1 5276:3 5277:1 5284:2 5291:2 5292:1 5293:1 5318:1 5320:1 5344:1 5350:1 5356:1 5365:1 5385:1 5436:1 5443:1 5481:1 5508:1 5535:1 5551:1 5574:1 5639:1 5666:1 5678:1 5686:1 5710:1 5777:1 5784:1 5794:4 5815:1 5822:1 5824:1 5889:2 5890:2 5913:1 5917:1 5952:1 5954:2 6036:1 6040:1 6061:1 6093:1 6151:1 6196:2 6283:1 6301:1 6309:1 6315:1 6345:2 6346:2 6348:9 6349:1 6355:1 6362:1 6378:2 6399:1 6444:1 6446:1 6465:1 6473:3 6474:1 6479:1 6488:2 6567:1 6568:1 6583:1 6588:3 6610:1 6645:1 6664:1 6681:1 6692:2 6693:1 6696:4 6697:1 6704:2 6707:1 6709:2 6715:1 6736:1 6745:1 6769:1 6850:1 6852:1 6882:1 6886:1 6965:1 7006:1 7013:3 7045:1 7052:1 7088:1 7127:1 7128:1 7142:1 7151:1 7155:2 7181:3 7186:2 7216:2 7221:2 7289:1 7314:2 7319:2 7355:1 7381:1 7382:1 7435:1 7436:1 7450:1 7489:1 7509:1 7533:1 7537:7 7540:1 7585:1 7594:1 7640:1 7691:1 7855:3 7864:2 7880:2 7886:1 7887:1 7929:1 7943:1 7975:1 7989:1 8032:1 8041:1 8104:3 8105:2 8128:1 8130:3 8135:1 8160:1 8163:1 8172:12 8194:1 8201:12 8204:3 8213:1 8267:1 8273:1 8283:1 8284:2 8315:1 8333:1 8340:1 8357:1 8370:1 8400:1 8415:1 8442:1 8443:1 8455:2 8581:1 8584:1 8598:2 8604:1 8622:1 8626:1 8648:1 8669:1 8689:1 8698:10 8728:1 8741:2 8837:1 8849:2 8884:1 8892:1 8903:1 8913:1 8918:1 8927:2 8948:1 8952:2 8971:1 8976:1 8979:1 8985:1 8986:1 9012:1 9057:3 9058:2 9061:1 9064:1 9072:3 9077:1 9094:1 9106:1 9130:1 9146:1 9165:2 9181:1 9259:2 9326:1 9339:1 9377:1 9405:1 9431:1 9442:2 9470:1 9539:1 9563:1 9588:1 9593:1 9595:1 9602:2 9606:4 9644:1 9667:1 9686:1 9715:1 9768:1 9779:5 9783:1 9791:1 9817:1 9874:2 9885:1 9894:1 9921:1 9943:1 9964:2 9990:1 10046:1 10091:1 10105:1 10112:2 10114:1 10133:1 10167:1 10172:1 10224:1 10235:5 10236:23 10238:2 10253:1 10272:1 10273:1 10302:1 10358:2 10369:3 10394:1 10431:1 10439:1 10471:1 10554:1 10578:1 10594:1 10611:3 10640:1 10654:2 10669:1 10699:1 10714:1 10727:1 10728:1 10736:3 10796:1 10871:1 10901:2 10926:1 10940:1 10967:1 10971:3 11000:1 11003:1 11007:1 11037:1 11064:1 11091:1 11102:1 11144:1 11150:1 11158:1 11181:4 11207:1 11238:2 11256:2 11267:1 11272:1 11333:2 11372:2 11377:4 11388:1 11404:2 11405:2 11406:1 11462:1 11492:1 11493:1 11497:1 11501:1 11509:1 11586:1 11589:1 11614:2 11620:1 11632:3 11635:1 11651:1 11653:1 11678:1 11686:1 11689:1 11692:1 11697:1 11737:1 11751:1 11757:1 11759:1 11767:1 11806:1 11830:1 11835:1 11841:2 11842:1 11852:1 11863:1 11871:1 11906:1 11928:2 11932:1 11938:1 11942:1 11976:1 11989:1 12004:1 12009:1 12021:1 12041:1 12067:1 12070:1 12072:1 12088:1 12108:2 12119:1 12140:1 12151:1 12154:1 12170:2 12181:1 12184:1 12219:1 12235:1 12255:1 12273:1 12293:1 12304:1 12322:5 12324:1 12344:1 12346:1 12351:1 12352:1 12359:1 12373:1 12380:1 12383:1 12388:1 12398:1 12419:1 12427:1 12439:1 12449:5 12456:1 12462:1 12467:1 12480:1 12501:1 12517:1 12546:1 12591:2 12640:1 12668:1 12678:1 12680:1 12690:1 12715:1 12764:1 12771:1 12838:1 12857:1 12873:1 12891:1 12962:2 12999:1 13009:1 13050:1 13058:1 13124:1 13135:1 13143:1 13179:1 13198:1 13216:1 13229:1 13251:1 13257:1 13425:5 13434:1 13446:1 13448:1 13475:4 13480:1 13482:2 13493:1 13497:1 13531:2 13538:1 13552:1 13555:1 13558:1 13572:1 13597:1 13614:1 13623:1 13665:1 13691:2 13707:1 13765:1 13788:1 13829:1 13853:1 13869:1 13871:2 13878:2 13894:1 13906:1 13909:2 13945:2 13962:1 13963:1 13974:4 14020:1 14033:1 14040:1 14051:1 14057:2 14067:1 14069:2 14075:1 14077:2 14103:1 14114:2 14148:1 14167:2 14185:1 14191:1 14212:1 14222:2 14225:1 14239:1 14274:1 14288:1 14307:1 14318:1 14323:1 14325:2 14337:1 14370:2 14372:1 14377:1 14415:1 14449:1 14460:1 14464:2 14468:1 14479:1 14489:1 14498:1 14540:1 14544:1 14551:1 14580:2 14618:1 14627:1 14683:1 14691:1 14769:2 14819:1 14832:1 14864:1 14872:1 14893:1 14911:1 14912:1 14919:1 14927:3 14933:1 14969:1 15004:1 15059:1 15119:1 15143:1 15171:1 15175:1 15193:1 15196:1 15202:1 15213:1 15225:2 15258:1 15262:1 15354:1 15368:1 15378:1 15381:1 15384:1 15391:1 15396:1 15401:1 15407:1 15410:1 15415:2 15438:2 15453:1 15457:1 15493:1 15505:1 15510:1 15525:1 15548:1 15550:2 15591:1 15624:1 15642:1 15695:1 15706:1 15760:1 15764:1 15765:1 15785:2 15826:2 15851:1 15853:3 15861:1 15894:1 15899:2 15918:1 15927:2 15934:1 15960:1 15994:1 16028:1 16095:1 16118:1 16134:1 16144:1 16186:1 16262:1 16285:1 16313:1 16355:1 16363:1 16383:1 16402:1 16406:1 16411:2 16414:1 16415:1 16431:2 16457:2 16467:2 16475:3 16499:1 16502:1 16555:1 16627:1 16634:1 16635:1 16641:4 16649:1 16667:1 16669:1 16700:1 16723:1 16733:1 16738:1 16747:1 16799:1 16805:3 16819:1 16825:1 16835:1 16907:1 16946:1 16949:2 16962:1 16970:1 17060:2 17083:2 17112:1 17116:2 17141:1 17147:1 17188:2 17211:2 17212:1 17216:1 17217:1 17220:1 17231:2 17232:1 17237:1 17267:1 17302:1 17305:1 17340:1 17419:2 17519:1 17543:1 17595:1 17642:1 17686:2 17688:1 17691:1 17702:1 17729:11 17776:2 17803:3 17851:1 17898:1 17915:1 17917:1 17926:1 17954:1 17957:1 17961:1 18014:1 18028:2 18031:1 18054:1 18060:1 18076:3 18111:1 18126:2 18129:2 18158:1 18167:2 18171:1 18172:1 18188:1 18233:1 18299:1 18308:1 18385:1 18413:1 18417:1 18429:1 18434:3 18447:1 18471:1 18505:1 18535:1 18536:2 18646:1 18683:3 18700:1 18717:1 18740:1 18747:1 18782:2 18785:1 18836:1 18843:1 18874:1 18882:3 18892:1 18894:1 18938:1 18951:1 18994:2 19085:1 19091:1 19093:1 19129:1 19172:1 19190:2 19191:1 19244:1 19306:5 19308:1 19315:1 19413:1 19419:3 19434:1 19449:1 19491:1 19492:1 19497:1 19559:1 19577:1 19594:1 19605:1 19611:1 19633:1 19644:1090 19709:1 19805:1 19807:1 19814:1 19840:1 19845:1 19863:1 19871:1 19878:1 19893:1 19895:1 19926:1 19990:1 20072:1 20095:1 20121:1 20138:1 20216:1 20218:1 20302:1 20303:1 20389:1 20393:1 20396:1 20412:1 20438:2 20460:2 20462:1 20464:1 20466:1 20476:1 20487:1 20498:1 20502:1 20547:1 20553:1 20554:1 20576:1 20597:1 20604:1 20609:2 20628:1 20630:3 20643:1 20674:1 20698:1 20758:1 20769:1 20778:1 20786:1 20841:1 20853:1 20875:3 20884:1 20903:1 20915:1 20919:1 20933:1 20943:1 20951:2 20980:1 20986:1 21052:1 21066:1 21079:1 21106:1 21160:1 21182:1 21184:1 21185:1 21192:1 21197:2 21211:2 21212:1 21224:1 21246:4 21261:1 21286:1 21302:3 21319:1 21341:5 21355:1 21365:3 21457:2 21462:1 21465:1 21484:2 21511:1 21531:1 21545:1 21570:1 21627:2 21629:1 21668:1 21683:2 21741:1 21782:1 21787:1 21833:1 21869:1 21900:2 21927:1 21934:1 21990:1 22024:1 22027:1 22039:1 22043:2 22046:1 22048:1 22056:4 22059:1 22077:1 22107:1 22149:1 22175:1 22197:2 22213:1 22255:2 22262:1 22267:1 22296:1 22322:1 22327:1 22341:1 22414:1 22422:2 22426:1 22431:1 22446:1 22527:1 22552:1 22557:2 22601:1 22605:1 22610:1 22613:1 22659:1 22680:1 22711:2 22736:1 22747:1 22749:1 22754:1 22764:1 22770:1 22782:2 22801:2 22809:2 22817:1 22831:1 22832:1 22844:1 22849:2 22855:1 22860:1 22867:1 22887:1 22891:1 22892:1 22935:1 22943:1 22970:1 22988:1 23000:1 23008:1 23014:1 23039:1 23095:2 23109:1 23112:1 23142:1 23151:1 23156:2 23157:1 23166:1 23167:1 23170:1 23178:1 23180:6 23181:3 23185:1 23186:1 23187:1 23193:1 23205:1 23214:1 23219:1 23221:1 23222:2 23244:1 23282:3 23332:1 23357:1 23368:1 23375:1 23386:1 23395:2 23404:1 23408:2 23444:1 23460:1 23466:1 23469:2 23478:1 23483:1 23486:1 23513:1 23567:2 23569:2 23581:1 23594:1 23607:1 23615:1 23625:1 23630:1 23641:1 23643:1 23644:4 23651:1 23671:1 23684:2 23690:1 23700:1 23731:1 23752:1 23779:6 23796:2 23802:1 23804:2 23809:1 23810:3 23831:2 23850:1 23856:1 23858:1 23862:1 23871:1 23878:1 23885:1 23893:1 23899:3 23903:1 23915:1 23979:1 24025:1 24053:1 24056:3 24068:1 24108:1 24142:2 24196:2 24200:1 24229:1 24286:1 24374:2 24404:1 24430:1 24447:1 24498:1 24500:1 24525:1 24601:1 24614:2 24631:1 24633:2 24644:1 24662:1 24682:1 24704:1 24726:2 24733:1 24738:2 24741:1 24742:1 24751:1 24764:1 24770:1 24772:1 24786:2 24799:1 24835:4 24868:1 24870:1 24884:1 24886:2 24918:1 24930:1 24964:2 24994:1 25065:1 25089:1 25120:1 25133:1 25181:1 25271:1 25310:1 25329:1 25331:1 25345:1 25348:1 25351:1 25369:1 25388:1 25405:1 25406:1 25481:1 25509:1 25522:1 25538:1 25572:1 25591:1 25603:4 25608:1 25635:4 25680:1 25682:1 25684:1 25685:1 25712:1 25724:1 25739:1 25775:1 25786:1 25799:11 25850:3 25918:1 25921:1 25932:1 25935:2 25940:1 25949:1 25970:1 25972:1 25989:3 25996:1 25997:1 26015:1 26049:3 26051:1 26055:1 26064:1 26080:2 26090:1 26094:1 26104:1 26110:1 26120:1 26165:1 26215:1 26278:1 26289:1 26318:1 26327:1 26381:1 26439:1 26449:1 26453:2 26456:3 26504:6 26505:2 26548:1 26566:1 26591:2 26607:1 26626:1 26639:1 26689:1 26703:5 26729:1 26762:1 26763:1 26855:2 26857:3 26889:1 26904:1 26929:1 26938:1 26959:2 26964:2 27001:4 27039:3 27040:1 27062:1 27089:1 27162:1 27201:1 27207:1 27262:1 27269:2 27279:1 27282:2 27347:1 27350:1 27383:1 27406:1 27449:1 27498:1 27580:1 27584:1 27624:1 27648:2 27710:2 27732:1 27748:1 27760:1 27797:3 27818:1 27854:1 27858:1 27881:1 27892:1 27896:2 27909:1 27917:2 27927:1 28004:1 28049:1 28069:1 28079:1 28096:1 28100:1 28103:1 28138:1 28139:1 28146:1 28152:1 28165:2 28207:1 28225:1 28280:1 28290:2 28327:1 28342:1 28360:1 28379:1 28486:1 28496:1 28527:1 28561:2 28576:1 28597:1 28646:1 28690:1 28710:1 28727:1 28736:1 28780:1 28782:1 28818:1 28836:1 28843:1 28948:3 29014:1 29025:1 29032:1 29052:1 29054:1 29063:1 29088:1 29092:1 29109:1 29119:1 29130:1 29133:1 29134:1 29137:2 29144:2 29152:1 29154:1 29158:1 29160:1 29188:1 29196:1 29197:2 29224:5 29227:1 29238:1 29249:1 29253:1 29282:1 29284:1 29295:1 29304:1 29340:1 29344:1 29354:1 29360:1 29363:1 29386:1 29397:1 29415:1 29444:1 29447:2 29450:2 29469:1 29539:1 29579:1 29590:1 29593:2 29610:1 29661:1 29679:1 29689:1 29723:2 29779:1 29781:2 29788:1 29789:1 29790:1 29825:2 29826:1 29837:1 29851:1 29860:1 29887:15 29896:1 29910:2 29938:4 29946:3 30001:1 30008:1 30039:2 30052:1 30069:1 30078:3 30112:3 30118:1 30124:2 30130:1 30159:1 30194:1 30197:1 30199:2 30217:1 30243:1 30289:2 30329:1 30350:1 30358:1 30382:1 30436:4 30438:1 30510:1 30513:2 30523:1 30534:1 30537:1 30538:1 30541:1 30660:1 30678:1 30692:2 30693:1 30694:1 30741:1 30842:1 30846:1 30864:2 30869:2 30884:3 30907:1 30909:1 30925:1 30940:1 30953:1 30981:1 30986:2 31003:2 31055:1 31093:3 31142:1 31195:1 31208:1 31212:2 31216:1 31222:1 31238:1 31246:1 31248:1 31250:1 31251:1 31287:1 31299:1 31313:1 31385:1 19 27:1 52:1 56:1 57:1 91:1 108:1 154:1 170:2 206:1 232:1 234:1 246:1 276:1 354:1 367:1 428:2 462:2 561:1 569:1 604:1 622:1 643:6 649:1 671:1 697:1 764:1 837:1 843:1 890:1 899:1 907:2 926:1 928:1 933:2 937:3 938:3 948:2 949:1 951:1 967:1 985:1 987:1 994:1 998:3 1021:2 1022:1 1037:2 1038:1 1055:1 1080:4 1083:1 1137:1 1195:1 1213:1 1249:1 1277:1 1285:1 1335:1 1337:1 1348:1 1350:1 1380:1 1389:1 1395:1 1437:1 1458:1 1527:1 1533:1 1559:1 1582:1 1584:1 1586:2 1592:2 1600:2 1607:2 1669:1 1675:4 1690:2 1699:1 1712:1 1766:1 1795:3 1846:1 1899:1 1906:1 1909:1 1922:1 1923:2 1928:1 1948:1 1950:1 1978:1 1979:1 2026:1 2027:1 2040:1 2087:1 2105:1 2113:1 2133:2 2190:1 2196:1 2198:1 2203:1 2205:2 2208:1 2214:1 2216:2 2251:1 2266:1 2267:3 2297:1 2337:1 2345:1 2352:1 2369:1 2375:1 2384:1 2391:2 2401:1 2402:2 2410:2 2422:2 2425:2 2434:1 2505:1 2512:2 2528:3 2536:1 2548:1 2549:1 2592:1 2616:1 2626:1 2653:1 2655:1 2669:1 2689:1 2690:1 2760:1 2779:1 2790:1 2797:1 2811:1 2832:5 2838:2 2843:1 2859:1 2890:1 2905:1 2962:2 2985:2 3005:1 3014:12 3023:5 3058:1 3065:3 3074:1 3090:1 3098:1 3102:2 3265:1 3294:1 3296:1 3307:1 3336:1 3410:2 3423:2 3463:2 3488:1 3489:3 3534:1 3542:1 3548:2 3570:1 3652:2 3653:1 3654:1 3666:1 3669:1 3700:1 3742:1 3752:1 3779:1 3788:1 3793:1 3794:1 3802:1 3813:1 3824:2 3844:1 3880:1 3882:1 3889:1 3895:1 3936:1 3943:4 3989:1 4022:1 4055:2 4094:1 4100:1 4104:1 4126:1 4153:1 4173:1 4208:1 4227:1 4228:1 4229:2 4283:1 4294:1 4340:3 4348:1 4401:1 4409:1 4432:1 4450:1 4454:2 4498:1 4558:2 4608:2 4613:2 4651:1 4664:1 4682:1 4736:1 4748:1 4776:2 4780:1 4781:1 4816:1 4817:1 4818:1 4862:1 4868:1 4876:1 4885:1 4905:1 4906:2 4919:1 4927:1 4949:1 4969:1 4977:1 4996:1 5005:1 5028:1 5034:1 5039:1 5062:1 5065:3 5127:1 5132:5 5133:1 5183:3 5245:2 5247:1 5248:3 5264:4 5265:2 5269:1 5270:1 5271:1 5275:1 5276:3 5277:1 5284:2 5291:2 5292:1 5293:1 5318:1 5320:1 5344:1 5350:1 5356:1 5365:1 5385:1 5436:1 5443:1 5481:1 5508:1 5535:1 5551:1 5574:1 5639:1 5666:1 5678:1 5686:1 5710:1 5777:1 5784:1 5794:4 5815:1 5822:1 5824:1 5889:2 5890:2 5913:1 5917:1 5952:1 5954:2 6036:1 6040:1 6061:1 6093:1 6151:1 6196:2 6283:1 6301:1 6309:1 6315:1 6333:1 6345:2 6346:2 6348:9 6349:1 6355:1 6362:1 6378:2 6399:1 6444:1 6446:1 6465:1 6473:3 6474:1 6479:1 6488:2 6567:1 6568:1 6583:1 6588:3 6610:1 6645:1 6664:1 6681:1 6692:2 6693:1 6696:4 6697:1 6704:2 6707:1 6709:2 6715:1 6736:1 6745:1 6769:1 6850:1 6852:1 6882:1 6886:1 6965:1 7006:1 7013:3 7045:1 7052:1 7088:1 7127:1 7128:1 7142:1 7151:1 7155:2 7181:3 7186:2 7216:2 7221:2 7289:1 7314:2 7319:2 7355:1 7381:1 7382:1 7435:1 7436:1 7450:1 7489:1 7509:1 7533:1 7537:7 7540:1 7585:1 7594:2 7640:1 7691:1 7855:3 7864:2 7880:2 7886:1 7887:1 7929:1 7943:1 7975:1 7989:1 8032:1 8041:1 8104:4 8105:2 8128:1 8130:3 8135:1 8160:1 8163:1 8172:12 8194:1 8201:12 8204:3 8213:1 8267:1 8273:1 8283:1 8284:2 8315:1 8333:1 8340:1 8357:1 8370:1 8400:1 8415:1 8442:1 8443:1 8455:2 8581:1 8584:1 8598:2 8604:1 8622:1 8626:1 8648:1 8669:1 8689:1 8698:10 8728:1 8741:2 8837:1 8849:2 8884:1 8892:1 8903:1 8913:1 8918:1 8927:2 8948:1 8952:2 8971:1 8976:1 8979:1 8985:1 8986:1 9012:1 9057:3 9058:2 9061:1 9064:1 9072:3 9077:1 9094:1 9106:1 9130:1 9146:1 9165:2 9181:1 9259:2 9326:1 9339:1 9377:1 9405:1 9431:1 9442:2 9470:1 9539:1 9563:1 9588:1 9593:1 9595:1 9602:2 9606:4 9644:1 9667:1 9686:1 9715:1 9768:1 9779:5 9783:1 9791:1 9817:1 9874:2 9885:1 9894:1 9921:1 9926:1 9943:1 9964:2 9990:1 10046:1 10091:1 10105:1 10112:2 10114:1 10133:1 10167:1 10172:1 10224:1 10235:5 10236:23 10238:2 10253:1 10272:1 10273:1 10302:1 10318:1 10358:2 10369:3 10394:1 10431:1 10439:1 10471:1 10554:1 10578:2 10594:1 10610:1 10611:3 10635:1 10640:1 10654:2 10669:1 10699:1 10714:1 10727:1 10728:1 10736:3 10796:1 10871:1 10901:2 10926:1 10940:1 10967:1 10971:3 11000:1 11003:1 11007:1 11037:1 11064:1 11091:1 11102:1 11144:1 11150:1 11158:1 11181:4 11207:1 11238:2 11256:2 11267:1 11272:1 11333:2 11372:2 11377:4 11388:1 11404:2 11405:2 11406:2 11462:1 11492:1 11493:1 11497:1 11501:1 11509:1 11586:1 11589:1 11614:2 11620:1 11632:3 11635:1 11651:1 11653:1 11678:1 11686:1 11689:1 11692:1 11697:1 11737:1 11751:2 11757:1 11759:1 11767:1 11769:1 11806:1 11830:1 11835:1 11841:2 11842:1 11852:1 11863:1 11871:1 11906:1 11928:2 11932:1 11938:1 11942:1 11976:1 11989:1 12004:1 12009:1 12021:1 12041:1 12067:1 12070:1 12072:1 12088:1 12108:2 12119:1 12140:1 12151:1 12154:1 12170:2 12181:1 12184:1 12219:1 12235:2 12255:1 12273:1 12293:1 12304:1 12322:5 12324:1 12344:1 12346:1 12351:1 12352:1 12359:1 12373:1 12380:1 12383:1 12388:1 12398:1 12419:1 12427:1 12439:1 12449:5 12456:1 12462:1 12467:1 12480:1 12501:1 12517:1 12546:1 12591:2 12640:1 12668:1 12678:1 12680:1 12690:1 12715:1 12764:1 12771:1 12838:1 12857:1 12873:1 12891:1 12962:2 12999:1 13009:1 13050:1 13058:1 13124:1 13135:1 13143:1 13179:1 13198:1 13216:1 13229:1 13251:2 13257:1 13425:5 13434:1 13446:1 13448:1 13475:4 13480:1 13482:2 13493:1 13497:1 13531:3 13538:1 13552:1 13555:1 13558:1 13572:1 13597:1 13614:1 13623:1 13665:1 13691:2 13707:1 13765:1 13788:1 13829:1 13853:1 13869:1 13871:2 13878:2 13894:1 13906:1 13909:2 13945:2 13962:1 13963:1 13974:4 14020:1 14033:1 14040:1 14051:1 14057:2 14067:1 14069:2 14075:1 14077:2 14103:1 14114:2 14148:1 14167:2 14185:1 14191:1 14212:1 14222:2 14225:1 14239:1 14274:1 14282:1 14288:1 14307:1 14318:1 14323:1 14325:2 14337:1 14370:2 14372:1 14377:1 14415:1 14449:1 14460:1 14464:2 14468:1 14479:1 14489:1 14498:1 14540:1 14544:1 14551:1 14580:2 14618:1 14627:1 14683:1 14691:1 14769:2 14819:1 14832:1 14864:1 14872:1 14893:1 14911:1 14912:1 14919:1 14927:3 14933:1 14969:1 15004:1 15059:1 15119:1 15143:1 15171:1 15175:1 15193:1 15196:1 15202:1 15213:1 15225:2 15258:1 15262:1 15354:1 15368:1 15378:1 15381:1 15384:1 15391:1 15396:1 15401:1 15407:1 15410:1 15415:2 15438:2 15453:1 15457:1 15493:1 15505:1 15510:1 15525:1 15548:1 15550:2 15591:1 15624:1 15642:1 15695:1 15706:1 15760:1 15764:1 15765:1 15785:2 15826:2 15851:1 15853:3 15861:1 15894:1 15899:2 15918:1 15927:2 15934:1 15960:1 15994:1 16028:1 16095:1 16118:1 16134:1 16144:1 16186:1 16262:1 16285:1 16313:1 16355:1 16363:1 16383:1 16402:1 16406:1 16411:2 16414:1 16415:1 16431:2 16457:2 16467:2 16475:3 16499:1 16502:1 16555:1 16627:1 16634:1 16635:1 16641:4 16649:1 16667:1 16669:1 16700:1 16723:1 16733:2 16738:1 16747:1 16799:1 16805:3 16819:1 16825:1 16835:1 16907:1 16946:1 16949:2 16962:1 16970:1 17060:2 17083:2 17112:1 17116:2 17141:1 17147:1 17188:2 17211:2 17212:1 17216:1 17217:1 17220:1 17231:2 17232:1 17237:1 17267:1 17302:1 17305:1 17340:1 17419:2 17519:1 17543:1 17595:1 17642:1 17686:2 17688:1 17691:1 17702:1 17729:11 17776:2 17803:3 17851:1 17898:1 17915:1 17917:1 17926:1 17954:1 17957:1 17961:1 18014:1 18028:2 18031:1 18054:4 18060:1 18076:3 18111:1 18126:2 18129:2 18158:1 18167:2 18171:1 18172:1 18188:1 18233:1 18299:1 18308:1 18385:1 18413:1 18417:1 18429:1 18434:3 18447:1 18471:1 18505:1 18535:1 18536:2 18646:1 18683:3 18700:1 18717:1 18740:1 18747:1 18782:2 18785:1 18836:1 18843:2 18874:1 18882:3 18892:1 18894:1 18938:1 18951:1 18994:2 19085:1 19091:1 19093:1 19129:1 19172:1 19190:2 19191:1 19195:1 19244:1 19306:5 19308:1 19315:1 19413:1 19419:3 19434:1 19449:1 19491:1 19492:1 19497:1 19559:1 19577:1 19594:1 19605:1 19611:1 19633:1 19644:1120 19709:1 19805:1 19807:1 19814:1 19840:1 19845:1 19863:1 19871:1 19878:1 19893:1 19895:1 19926:1 19990:1 20072:1 20095:1 20121:1 20138:1 20216:1 20218:1 20302:1 20303:1 20389:1 20393:1 20396:1 20412:1 20438:2 20460:2 20462:1 20464:1 20466:1 20476:1 20487:1 20498:1 20502:1 20547:1 20553:1 20554:1 20576:1 20597:1 20604:1 20609:2 20628:1 20630:3 20643:1 20674:1 20698:1 20758:1 20769:1 20778:1 20786:1 20841:1 20853:1 20875:3 20884:1 20903:1 20906:1 20915:1 20919:1 20933:1 20943:1 20951:2 20980:1 20986:1 20993:1 21052:1 21066:1 21079:1 21106:1 21160:1 21182:1 21184:1 21185:1 21192:1 21197:2 21211:2 21212:1 21224:1 21246:4 21261:1 21286:1 21302:3 21319:1 21341:5 21355:1 21365:3 21457:2 21462:1 21465:1 21484:2 21492:1 21511:1 21531:1 21545:1 21570:1 21627:2 21629:1 21668:1 21683:2 21741:1 21782:1 21787:1 21833:1 21869:1 21900:2 21927:1 21934:1 21990:1 22024:1 22027:1 22039:1 22043:3 22046:1 22048:1 22056:4 22059:1 22077:1 22107:1 22149:1 22175:1 22197:2 22213:1 22255:2 22262:1 22267:1 22296:1 22322:1 22327:1 22341:2 22414:1 22422:2 22426:1 22431:1 22446:1 22527:1 22552:1 22557:2 22601:1 22605:1 22610:1 22613:1 22659:1 22680:1 22689:1 22711:2 22736:1 22747:1 22749:1 22754:1 22764:1 22770:1 22782:2 22801:2 22809:2 22817:1 22831:1 22832:1 22844:1 22849:2 22855:1 22860:1 22867:1 22887:1 22891:1 22892:1 22935:1 22943:1 22970:1 22988:1 23000:1 23008:1 23014:1 23039:1 23095:2 23109:1 23112:1 23142:1 23151:1 23156:2 23157:1 23166:1 23167:1 23170:1 23178:1 23180:6 23181:3 23185:1 23186:1 23187:1 23193:1 23205:1 23214:1 23219:1 23221:1 23222:2 23244:1 23279:1 23282:3 23332:1 23357:1 23368:1 23375:1 23386:1 23395:2 23404:1 23408:2 23444:1 23460:1 23466:1 23469:2 23478:1 23483:1 23486:1 23513:1 23567:2 23569:2 23581:1 23594:1 23607:1 23615:1 23625:1 23630:1 23641:1 23643:1 23644:4 23651:1 23671:1 23684:2 23690:1 23700:1 23731:1 23752:1 23779:6 23796:2 23802:1 23804:2 23809:1 23810:3 23831:2 23850:1 23856:1 23858:1 23862:2 23871:1 23878:1 23885:1 23893:1 23899:3 23903:1 23915:1 23979:1 24025:1 24053:1 24056:3 24068:1 24108:1 24142:2 24196:2 24200:1 24229:1 24286:1 24374:2 24404:1 24430:1 24447:1 24498:1 24500:1 24525:1 24601:1 24614:2 24631:1 24633:2 24644:1 24662:1 24682:1 24704:1 24726:2 24733:1 24738:2 24741:1 24742:1 24751:1 24764:1 24770:1 24772:1 24786:2 24799:1 24835:4 24868:1 24870:1 24884:1 24886:2 24918:1 24930:1 24964:2 24994:1 25065:1 25089:1 25120:1 25133:1 25181:1 25271:1 25310:1 25329:1 25331:1 25345:1 25348:1 25351:1 25355:1 25369:1 25388:1 25405:1 25406:1 25481:1 25509:1 25522:1 25538:1 25572:1 25591:1 25603:5 25608:1 25635:4 25680:1 25682:1 25684:1 25685:1 25712:1 25724:1 25739:1 25775:1 25786:1 25799:11 25850:3 25918:1 25921:1 25932:1 25935:2 25940:2 25949:1 25970:1 25972:1 25989:3 25996:1 25997:1 26015:1 26049:3 26051:1 26055:1 26064:1 26080:2 26090:1 26094:1 26104:1 26110:1 26120:1 26165:1 26215:1 26278:1 26289:1 26318:1 26327:1 26381:2 26439:1 26449:1 26453:2 26456:3 26504:6 26505:2 26548:1 26566:1 26591:2 26607:1 26626:1 26639:1 26689:1 26703:5 26729:1 26762:1 26763:1 26855:2 26857:3 26889:1 26904:2 26929:1 26938:1 26959:2 26964:2 26992:1 27001:4 27039:3 27040:1 27062:1 27089:1 27162:1 27201:1 27207:1 27262:1 27269:2 27279:1 27282:2 27347:1 27350:1 27383:1 27406:1 27449:1 27498:1 27580:1 27584:1 27624:1 27648:2 27710:2 27732:1 27748:1 27760:1 27797:3 27818:1 27854:1 27858:1 27881:1 27892:1 27896:2 27909:1 27917:2 27927:1 28004:1 28049:1 28069:1 28079:1 28096:1 28100:1 28103:1 28138:1 28139:1 28146:1 28152:1 28165:2 28207:1 28225:1 28280:1 28290:2 28327:1 28342:2 28360:1 28379:1 28486:1 28496:1 28527:1 28561:2 28576:1 28597:1 28646:1 28690:1 28710:1 28727:1 28736:1 28780:1 28782:1 28818:1 28836:1 28843:1 28948:3 29014:1 29025:1 29032:1 29052:1 29054:1 29063:1 29088:1 29092:1 29098:1 29109:1 29119:1 29122:1 29130:1 29133:1 29134:1 29137:2 29144:2 29152:1 29154:1 29158:1 29160:1 29188:1 29196:1 29197:2 29224:5 29227:1 29238:1 29249:1 29253:1 29282:1 29284:1 29295:1 29304:1 29340:1 29344:1 29354:1 29360:1 29363:1 29386:1 29397:1 29415:1 29444:1 29447:2 29450:2 29469:1 29539:1 29579:1 29590:1 29593:2 29610:1 29661:1 29679:1 29689:1 29723:2 29779:1 29781:2 29788:1 29789:1 29790:1 29825:2 29826:1 29837:1 29851:1 29860:1 29887:16 29896:1 29910:2 29938:4 29946:3 30001:1 30008:1 30039:2 30052:1 30069:1 30078:3 30112:4 30118:1 30124:2 30130:1 30159:1 30165:1 30194:1 30197:1 30199:2 30217:1 30243:1 30289:2 30329:1 30350:1 30358:1 30382:1 30436:4 30438:1 30510:1 30513:2 30523:1 30534:1 30537:1 30538:1 30541:1 30660:1 30678:1 30692:2 30693:1 30694:1 30741:1 30842:1 30846:1 30864:2 30869:2 30884:3 30907:2 30909:1 30925:1 30940:1 30953:1 30981:1 30986:2 31003:2 31055:1 31093:3 31142:1 31154:1 31195:1 31208:1 31212:2 31216:1 31222:1 31238:1 31246:1 31248:1 31250:1 31251:1 31287:1 31299:1 31313:1 31385:1 19 27:1 30:1 52:1 56:1 57:1 91:1 108:1 154:1 170:2 206:1 232:1 234:1 246:1 276:1 354:1 367:1 428:2 462:2 561:1 569:1 604:1 622:1 643:7 649:1 671:1 697:1 764:1 837:1 843:1 890:1 899:1 907:3 926:1 928:1 933:2 937:3 938:3 948:2 949:1 951:1 967:1 985:1 987:1 993:1 994:1 998:3 1021:2 1022:1 1037:2 1038:1 1055:1 1080:4 1083:1 1137:1 1195:1 1213:1 1249:1 1277:1 1285:1 1335:1 1336:1 1337:1 1348:2 1350:1 1380:1 1389:1 1395:1 1437:1 1458:1 1527:1 1533:1 1559:1 1582:1 1584:1 1586:2 1592:2 1600:2 1607:2 1669:2 1675:4 1690:2 1699:1 1712:1 1766:1 1795:3 1846:2 1855:1 1899:1 1906:1 1909:1 1922:1 1923:2 1928:2 1948:1 1950:1 1956:1 1978:1 1979:1 2018:1 2026:1 2027:1 2040:1 2087:1 2105:1 2113:1 2133:2 2190:1 2196:1 2198:1 2203:1 2205:2 2208:1 2214:1 2216:2 2251:1 2266:1 2267:3 2297:1 2337:1 2345:1 2352:1 2369:1 2375:1 2384:1 2391:2 2401:1 2402:2 2410:2 2422:3 2425:2 2434:1 2505:1 2512:2 2528:4 2536:1 2548:1 2549:1 2592:2 2616:1 2626:1 2653:1 2655:1 2669:1 2689:1 2690:1 2760:1 2779:1 2790:1 2797:1 2811:1 2832:6 2838:2 2843:1 2859:1 2890:1 2905:1 2962:2 2985:2 3005:1 3014:12 3023:5 3058:1 3065:3 3074:1 3090:1 3098:1 3102:3 3265:1 3294:1 3296:1 3307:1 3336:1 3410:2 3423:2 3463:2 3488:1 3489:4 3534:1 3542:1 3548:2 3570:1 3652:3 3653:1 3654:1 3666:1 3669:1 3700:1 3742:1 3752:1 3779:1 3788:1 3793:1 3794:1 3802:1 3813:1 3824:2 3844:1 3880:1 3882:1 3889:1 3895:1 3936:2 3943:4 3989:1 4022:1 4055:2 4094:1 4100:1 4104:1 4126:1 4153:1 4173:1 4208:1 4227:1 4228:1 4229:3 4259:1 4283:1 4294:1 4340:3 4348:1 4401:1 4409:1 4432:1 4450:1 4454:2 4498:1 4558:2 4608:2 4613:2 4651:1 4664:1 4682:1 4736:1 4748:1 4776:2 4780:1 4781:1 4816:1 4817:1 4818:1 4862:1 4868:1 4871:1 4876:1 4885:1 4905:1 4906:2 4919:1 4927:1 4949:1 4969:1 4977:1 4996:1 5005:1 5028:1 5034:1 5039:1 5062:1 5065:3 5127:1 5132:5 5133:1 5183:3 5245:2 5247:1 5248:3 5264:4 5265:2 5269:1 5270:1 5271:1 5275:1 5276:3 5277:1 5284:2 5287:1 5291:3 5292:1 5293:1 5318:1 5320:1 5344:1 5350:1 5356:1 5365:1 5385:1 5436:1 5443:1 5481:1 5508:1 5535:1 5551:1 5574:1 5639:1 5666:1 5678:1 5686:2 5710:1 5712:1 5732:1 5748:1 5777:1 5784:1 5794:4 5815:1 5822:1 5824:1 5889:2 5890:2 5913:1 5917:1 5952:1 5954:2 6036:1 6040:1 6061:1 6093:1 6151:1 6196:2 6283:1 6301:1 6309:1 6315:1 6333:1 6345:2 6346:2 6348:9 6349:1 6355:1 6362:1 6378:2 6399:1 6408:1 6409:2 6444:1 6446:1 6465:1 6473:3 6474:1 6479:1 6488:2 6567:1 6568:1 6583:1 6588:3 6610:1 6645:1 6664:1 6681:1 6692:2 6693:1 6696:4 6697:1 6704:2 6707:1 6709:2 6715:1 6736:1 6745:1 6769:1 6850:1 6852:1 6882:1 6886:1 6926:1 6965:1 7006:1 7013:3 7045:1 7052:1 7088:1 7127:1 7128:2 7142:1 7151:1 7155:2 7181:3 7186:2 7216:2 7221:3 7289:1 7314:2 7319:2 7355:1 7381:1 7382:1 7435:1 7436:1 7450:1 7486:1 7489:1 7509:1 7533:1 7537:7 7540:1 7585:1 7594:2 7640:1 7691:1 7855:3 7864:2 7880:2 7886:1 7887:1 7929:1 7943:1 7975:1 7989:1 8032:1 8041:1 8104:4 8105:2 8128:1 8130:3 8135:1 8160:1 8163:1 8172:13 8194:1 8201:12 8204:3 8213:1 8267:1 8273:1 8283:1 8284:2 8315:1 8332:1 8333:1 8340:1 8357:1 8370:1 8400:1 8415:1 8442:1 8443:1 8455:2 8581:1 8584:1 8598:2 8604:1 8622:1 8626:1 8648:1 8669:1 8689:1 8698:10 8728:1 8741:2 8837:1 8849:2 8884:1 8892:1 8903:1 8913:1 8918:1 8927:2 8948:1 8952:2 8971:2 8976:1 8979:1 8985:1 8986:1 9012:1 9057:3 9058:2 9061:1 9064:1 9072:3 9077:1 9094:1 9106:1 9130:1 9146:1 9165:2 9181:1 9259:2 9326:1 9339:1 9372:1 9377:1 9385:2 9405:1 9431:1 9442:2 9470:1 9539:1 9563:1 9588:1 9593:1 9595:1 9602:2 9606:4 9644:1 9667:1 9686:1 9715:1 9768:1 9779:6 9783:1 9791:1 9817:1 9874:2 9885:1 9894:1 9921:1 9926:1 9943:1 9964:2 9990:1 10046:1 10091:1 10105:1 10112:2 10114:1 10133:1 10167:1 10172:2 10224:1 10235:5 10236:23 10238:2 10253:1 10272:1 10273:1 10289:1 10302:1 10318:1 10358:2 10369:4 10394:1 10431:1 10439:1 10471:1 10543:1 10544:2 10554:1 10578:2 10594:1 10610:1 10611:3 10635:1 10640:1 10654:2 10669:1 10687:1 10699:1 10714:1 10727:1 10728:1 10736:3 10777:1 10796:1 10871:1 10901:2 10926:1 10940:1 10967:1 10971:3 11000:1 11003:1 11007:1 11037:1 11064:1 11091:1 11102:1 11144:1 11150:1 11158:1 11181:5 11207:1 11238:2 11256:2 11266:1 11267:1 11272:1 11333:2 11372:2 11377:4 11385:1 11388:1 11404:2 11405:2 11406:2 11462:1 11492:1 11493:1 11497:1 11501:1 11509:1 11586:1 11589:1 11614:2 11620:1 11632:4 11635:1 11651:1 11653:1 11678:1 11686:1 11689:1 11692:1 11697:1 11737:1 11751:2 11757:1 11759:1 11767:1 11769:1 11806:2 11830:1 11835:1 11841:2 11842:1 11852:1 11863:1 11871:1 11906:1 11928:2 11932:1 11938:1 11942:1 11976:1 11989:1 12004:1 12009:1 12021:1 12041:1 12067:1 12070:1 12072:1 12074:1 12088:1 12108:2 12119:1 12140:1 12151:1 12154:1 12170:2 12181:1 12184:1 12219:1 12235:2 12255:1 12273:1 12289:1 12293:1 12304:1 12322:5 12324:1 12344:1 12346:2 12351:1 12352:1 12359:1 12373:1 12380:1 12383:1 12388:1 12398:1 12419:1 12427:2 12439:1 12449:5 12456:1 12462:1 12467:2 12480:1 12501:1 12517:1 12546:1 12591:2 12610:1 12640:1 12668:1 12678:1 12680:2 12690:1 12715:1 12764:1 12771:1 12775:1 12828:1 12838:1 12857:1 12873:1 12891:1 12962:2 12999:1 13009:1 13050:1 13058:1 13124:1 13135:1 13143:1 13179:1 13198:1 13216:1 13229:1 13251:2 13257:1 13425:5 13434:1 13446:2 13448:1 13475:4 13480:1 13482:2 13493:1 13497:1 13531:3 13536:1 13538:1 13552:1 13555:1 13558:1 13572:1 13597:1 13614:1 13623:1 13665:1 13691:2 13707:1 13765:1 13788:1 13829:1 13853:1 13869:1 13871:2 13878:2 13894:1 13906:1 13909:2 13945:3 13962:1 13963:1 13974:4 14005:1 14020:1 14033:1 14040:1 14051:1 14057:2 14067:1 14069:2 14075:1 14077:2 14103:1 14114:3 14148:1 14167:2 14185:1 14191:1 14212:1 14222:4 14225:1 14239:1 14274:1 14282:1 14288:1 14307:1 14318:1 14323:1 14325:2 14337:1 14370:2 14372:1 14375:1 14377:1 14415:1 14449:1 14460:2 14464:2 14468:2 14479:1 14489:1 14498:1 14540:1 14544:1 14551:1 14580:2 14618:1 14627:1 14683:1 14691:1 14769:2 14819:1 14832:1 14864:1 14872:1 14893:1 14911:1 14912:1 14919:1 14927:3 14933:1 14969:1 15004:1 15059:1 15119:1 15143:1 15171:1 15175:1 15193:1 15196:1 15202:1 15213:1 15225:2 15258:1 15262:1 15316:1 15346:1 15354:1 15368:1 15378:1 15381:1 15384:1 15391:1 15396:1 15401:1 15407:1 15410:1 15415:2 15438:2 15453:1 15457:1 15493:1 15505:1 15510:1 15525:1 15548:1 15550:2 15553:1 15591:1 15624:1 15642:1 15695:1 15706:1 15760:1 15764:1 15765:1 15785:2 15826:2 15851:1 15853:3 15861:1 15894:1 15899:2 15918:1 15927:2 15934:1 15960:1 15994:1 16028:1 16095:1 16118:1 16134:1 16144:1 16186:1 16262:1 16285:1 16313:1 16355:1 16363:1 16383:1 16387:1 16402:1 16406:1 16411:2 16414:1 16415:1 16431:2 16457:2 16467:2 16475:3 16499:1 16502:1 16555:1 16627:1 16634:1 16635:2 16641:4 16649:1 16667:1 16669:1 16671:1 16700:1 16723:1 16733:2 16738:1 16747:1 16799:1 16805:3 16819:1 16825:1 16829:1 16835:1 16907:1 16946:1 16949:2 16962:1 16970:1 17060:2 17083:2 17112:1 17116:2 17141:1 17147:1 17182:1 17188:2 17211:2 17212:1 17216:1 17217:1 17220:1 17231:2 17232:1 17237:1 17267:1 17302:1 17305:2 17340:1 17419:2 17519:1 17536:1 17543:1 17595:1 17642:1 17686:2 17688:1 17691:1 17702:1 17729:11 17776:2 17803:3 17851:2 17898:2 17915:1 17917:1 17926:1 17954:1 17957:1 17961:1 18014:1 18028:2 18031:1 18047:1 18054:4 18060:1 18076:3 18111:1 18126:2 18129:2 18158:1 18167:2 18171:2 18172:1 18188:1 18233:1 18299:1 18308:1 18385:1 18413:1 18417:1 18429:1 18434:3 18447:1 18471:1 18505:1 18535:1 18536:2 18646:1 18682:1 18683:3 18700:1 18717:1 18740:1 18747:1 18782:2 18785:1 18825:1 18836:1 18843:2 18874:1 18882:3 18892:1 18894:1 18938:1 18951:2 18994:2 19085:1 19091:1 19093:1 19129:1 19172:1 19190:2 19191:1 19195:1 19244:1 19306:5 19308:1 19315:1 19413:1 19419:3 19434:1 19449:1 19491:1 19492:1 19497:1 19559:1 19577:1 19594:1 19605:1 19611:1 19633:1 19644:1218 19673:1 19709:1 19805:1 19807:1 19814:1 19840:1 19845:1 19863:1 19871:1 19878:1 19893:1 19895:1 19926:1 19990:1 20072:1 20095:1 20121:1 20138:1 20216:1 20218:1 20239:1 20290:1 20302:1 20303:1 20389:1 20393:1 20396:1 20412:1 20438:2 20460:2 20462:1 20464:1 20466:1 20476:1 20487:1 20498:2 20502:2 20547:1 20553:1 20554:1 20576:1 20597:1 20604:1 20609:2 20622:1 20628:1 20630:3 20643:1 20674:1 20698:1 20758:1 20769:1 20778:1 20786:1 20841:1 20853:1 20875:3 20884:1 20903:1 20906:1 20915:1 20919:1 20933:1 20943:1 20951:2 20980:1 20986:1 20989:1 20993:1 21052:1 21066:1 21079:1 21106:1 21160:1 21182:1 21184:2 21185:1 21192:1 21197:2 21211:2 21212:1 21224:1 21246:4 21261:1 21286:1 21302:3 21316:1 21319:1 21341:5 21355:1 21365:3 21457:2 21462:1 21465:1 21484:2 21492:1 21511:1 21531:1 21545:1 21570:1 21627:2 21629:1 21668:1 21683:2 21741:1 21782:1 21785:1 21787:1 21807:1 21833:1 21869:1 21879:1 21900:2 21927:1 21934:1 21990:1 22024:1 22027:1 22039:1 22043:3 22046:1 22048:1 22056:4 22059:1 22077:1 22107:1 22149:1 22175:1 22197:2 22213:1 22255:2 22262:1 22267:1 22296:1 22322:1 22327:1 22341:2 22414:1 22422:2 22426:1 22431:1 22443:1 22446:1 22527:1 22552:1 22557:2 22601:1 22605:1 22610:1 22613:1 22659:1 22680:2 22689:1 22711:2 22736:1 22747:1 22749:1 22754:1 22764:1 22770:1 22782:2 22801:2 22809:2 22817:2 22831:1 22832:1 22844:1 22849:2 22855:1 22860:1 22867:1 22887:2 22891:1 22892:1 22935:1 22943:1 22970:1 22988:1 23000:1 23008:1 23014:1 23039:1 23095:2 23096:1 23109:1 23112:1 23142:1 23151:1 23156:2 23157:1 23166:1 23167:1 23170:1 23178:1 23180:6 23181:3 23185:1 23186:1 23187:1 23193:1 23205:1 23214:1 23219:1 23221:1 23222:4 23244:1 23251:1 23279:1 23282:3 23332:1 23357:1 23368:1 23375:1 23386:1 23395:2 23399:2 23404:1 23408:3 23444:1 23460:1 23466:1 23469:2 23478:1 23483:1 23486:1 23513:1 23563:2 23567:2 23569:2 23581:1 23594:1 23607:1 23615:1 23625:1 23630:1 23641:1 23643:1 23644:4 23651:1 23671:1 23674:1 23684:2 23690:1 23700:1 23731:1 23752:1 23779:7 23796:2 23802:1 23804:2 23809:1 23810:3 23831:2 23850:1 23856:1 23858:1 23862:2 23871:1 23878:1 23885:1 23893:1 23899:3 23903:1 23915:1 23979:1 24025:1 24053:1 24056:3 24068:1 24108:1 24142:2 24196:2 24200:1 24229:1 24286:1 24374:3 24404:1 24430:1 24447:1 24498:1 24500:1 24525:1 24601:1 24614:2 24631:1 24633:2 24644:1 24662:1 24682:1 24704:1 24726:2 24733:1 24738:2 24741:1 24742:1 24751:1 24764:1 24770:1 24772:1 24786:2 24799:1 24835:4 24868:1 24870:1 24884:1 24886:2 24904:1 24918:1 24930:1 24964:2 24994:1 25035:1 25065:1 25067:1 25089:1 25120:1 25133:1 25181:1 25271:1 25310:1 25329:1 25331:1 25345:1 25348:1 25351:1 25355:1 25369:1 25388:1 25405:1 25406:1 25408:1 25481:1 25509:1 25522:1 25538:1 25572:1 25591:1 25603:5 25608:1 25635:5 25680:1 25682:1 25684:1 25685:1 25712:1 25724:1 25739:1 25775:1 25786:1 25799:11 25850:3 25916:1 25918:1 25921:1 25932:1 25935:2 25940:2 25949:1 25970:1 25972:1 25989:3 25996:1 25997:1 26015:1 26049:3 26051:1 26055:1 26064:1 26080:2 26090:1 26094:1 26104:1 26110:1 26120:1 26165:1 26215:1 26254:1 26278:1 26289:1 26318:1 26327:1 26381:2 26397:1 26439:1 26449:1 26453:2 26456:3 26504:6 26505:2 26548:1 26566:1 26591:2 26607:1 26626:1 26639:1 26689:1 26703:5 26729:2 26762:1 26763:1 26855:2 26857:3 26889:1 26904:2 26929:1 26938:1 26959:2 26964:2 26992:1 27001:4 27039:3 27040:1 27062:1 27089:1 27152:1 27162:1 27201:1 27207:1 27262:1 27269:2 27279:1 27282:2 27347:1 27350:1 27383:1 27406:1 27449:1 27498:1 27537:1 27580:1 27584:1 27614:1 27624:1 27648:2 27710:2 27732:1 27748:1 27760:1 27797:3 27818:1 27854:1 27858:1 27881:1 27892:1 27896:2 27909:1 27917:2 27927:1 28004:1 28049:1 28069:1 28079:1 28096:1 28100:1 28103:2 28138:1 28139:1 28146:1 28152:1 28165:2 28177:1 28207:1 28225:2 28241:1 28280:1 28290:2 28327:1 28342:2 28360:1 28379:1 28482:1 28483:1 28486:1 28496:1 28527:1 28561:2 28576:1 28597:1 28646:1 28690:1 28710:1 28727:1 28736:1 28780:1 28782:1 28818:1 28836:1 28843:1 28924:1 28948:3 29014:1 29025:1 29032:1 29052:1 29054:1 29063:1 29081:1 29088:1 29092:1 29098:1 29109:1 29119:1 29122:1 29128:1 29130:1 29133:1 29134:1 29137:2 29144:2 29152:1 29154:1 29158:1 29160:1 29188:1 29196:1 29197:2 29224:5 29227:1 29238:1 29249:1 29253:1 29282:1 29284:1 29295:1 29304:1 29340:1 29344:1 29354:1 29360:1 29363:1 29386:1 29397:1 29415:1 29444:1 29447:2 29450:2 29469:1 29539:1 29579:1 29590:1 29593:2 29610:1 29661:1 29679:1 29689:1 29723:2 29729:1 29760:1 29779:2 29781:2 29788:1 29789:1 29790:1 29825:2 29826:1 29837:1 29851:1 29860:1 29887:16 29896:1 29910:2 29938:5 29946:3 30001:1 30008:1 30039:2 30052:1 30069:1 30078:3 30112:4 30118:1 30124:2 30130:1 30159:1 30165:1 30194:1 30197:1 30199:2 30217:1 30243:1 30289:2 30329:1 30350:1 30358:2 30382:1 30436:4 30438:1 30510:1 30513:3 30523:1 30534:1 30537:1 30538:1 30541:1 30660:1 30678:1 30692:3 30693:1 30694:1 30741:1 30754:1 30842:1 30846:1 30864:2 30869:2 30884:3 30907:2 30909:1 30925:1 30940:1 30953:1 30981:1 30986:2 31003:2 31055:1 31066:1 31089:1 31093:3 31142:1 31154:1 31195:1 31208:1 31212:2 31216:1 31222:1 31238:1 31243:1 31246:1 31248:1 31250:1 31251:1 31287:1 31299:1 31313:1 31385:1 19 27:1 30:1 52:1 56:1 57:1 91:1 108:1 154:1 170:2 206:1 232:1 234:1 246:1 276:1 354:1 367:1 428:2 462:2 561:1 569:1 604:1 622:1 643:7 649:1 671:1 697:1 764:1 837:1 843:1 890:1 899:1 907:3 926:2 928:1 933:2 937:3 938:3 948:2 949:1 951:1 967:1 985:1 987:1 993:1 994:1 998:4 1021:2 1022:1 1037:2 1038:1 1055:1 1080:4 1083:1 1137:1 1195:1 1213:1 1249:1 1277:1 1285:1 1335:1 1336:1 1337:1 1348:2 1350:1 1380:1 1389:1 1395:1 1437:1 1458:1 1527:1 1533:1 1559:1 1582:1 1584:1 1586:2 1592:2 1600:2 1607:2 1669:2 1670:1 1675:4 1690:2 1699:1 1712:1 1766:1 1795:3 1846:2 1855:1 1899:1 1906:1 1909:1 1922:1 1923:2 1928:2 1940:1 1948:1 1950:1 1956:1 1978:1 1979:1 2013:1 2018:1 2026:1 2027:1 2040:1 2087:1 2105:1 2113:1 2133:2 2190:1 2196:2 2198:2 2203:1 2205:2 2208:1 2214:1 2216:2 2251:1 2266:1 2267:3 2273:1 2297:1 2337:1 2345:1 2352:1 2369:1 2375:1 2384:2 2391:2 2401:1 2402:2 2404:1 2410:2 2422:3 2425:2 2434:1 2505:1 2512:2 2528:4 2536:1 2548:1 2549:1 2592:2 2616:1 2626:1 2653:1 2655:1 2669:1 2689:1 2690:1 2760:1 2779:1 2790:1 2797:1 2811:1 2832:6 2838:2 2843:1 2859:1 2890:1 2905:1 2962:2 2985:2 3005:1 3014:13 3023:6 3058:1 3065:3 3074:1 3090:1 3098:1 3102:3 3265:1 3294:1 3296:1 3307:1 3336:1 3410:2 3423:2 3463:2 3477:1 3488:1 3489:4 3534:1 3542:1 3548:2 3570:1 3652:3 3653:1 3654:1 3666:1 3669:1 3700:1 3742:1 3752:1 3779:1 3788:1 3793:1 3794:1 3802:1 3813:1 3824:2 3844:1 3880:1 3882:1 3889:1 3895:1 3936:2 3943:4 3989:1 4022:1 4055:2 4094:1 4100:1 4104:1 4126:2 4153:1 4173:1 4208:1 4227:1 4228:1 4229:3 4259:1 4283:1 4294:1 4340:3 4348:1 4366:1 4401:1 4409:1 4432:1 4450:1 4454:2 4456:1 4498:1 4558:3 4608:2 4613:2 4651:1 4664:1 4682:1 4736:1 4748:1 4776:2 4780:1 4781:1 4816:1 4817:2 4818:1 4862:1 4868:1 4871:1 4876:1 4885:1 4905:1 4906:2 4919:1 4927:1 4949:1 4969:1 4977:1 4996:1 5005:1 5028:1 5034:1 5039:1 5062:1 5065:3 5127:1 5132:5 5133:1 5183:3 5245:2 5247:1 5248:3 5264:4 5265:2 5269:1 5270:1 5271:1 5275:1 5276:3 5277:1 5284:2 5287:1 5291:3 5292:1 5293:1 5318:1 5320:1 5344:1 5350:1 5356:1 5365:1 5385:1 5436:1 5443:1 5481:1 5508:1 5535:1 5551:1 5574:1 5639:1 5666:1 5678:1 5686:2 5710:1 5712:1 5732:1 5748:1 5777:1 5784:1 5794:5 5815:1 5822:1 5824:1 5839:1 5889:2 5890:2 5913:1 5917:1 5952:1 5954:2 6036:1 6040:1 6061:1 6093:1 6099:1 6151:1 6196:2 6283:1 6301:1 6309:1 6315:1 6333:1 6345:2 6346:2 6348:10 6349:1 6355:1 6362:1 6378:2 6399:1 6408:1 6409:2 6444:1 6446:1 6452:1 6465:1 6473:3 6474:1 6479:1 6488:2 6567:1 6568:1 6583:1 6588:3 6610:2 6645:1 6664:1 6670:1 6681:1 6692:2 6693:1 6696:4 6697:1 6704:2 6707:1 6709:2 6715:1 6736:1 6745:1 6769:1 6827:1 6850:1 6852:1 6882:1 6886:1 6926:1 6965:1 7006:1 7013:3 7045:1 7052:1 7088:1 7113:1 7127:1 7128:2 7142:1 7151:1 7155:2 7181:3 7186:2 7216:2 7221:3 7289:1 7305:1 7312:1 7314:2 7319:2 7353:1 7355:1 7381:1 7382:1 7386:1 7435:1 7436:1 7450:1 7486:1 7489:1 7509:1 7533:1 7537:8 7540:1 7585:1 7594:2 7640:1 7691:1 7845:1 7855:3 7864:2 7880:2 7886:1 7887:1 7929:1 7943:1 7975:1 7989:1 8032:1 8041:1 8104:4 8105:2 8128:1 8130:3 8135:1 8160:1 8163:1 8172:15 8194:1 8201:13 8204:3 8213:1 8267:1 8273:1 8283:1 8284:2 8315:1 8332:1 8333:1 8340:1 8357:1 8370:1 8400:1 8415:1 8442:1 8443:1 8455:2 8581:1 8584:1 8598:2 8604:1 8622:1 8626:1 8648:1 8669:1 8689:1 8698:10 8728:2 8741:2 8837:1 8849:2 8884:1 8892:1 8903:1 8913:1 8918:1 8927:2 8948:1 8952:2 8971:2 8976:1 8977:1 8979:1 8985:1 8986:1 9012:1 9057:4 9058:2 9061:2 9064:1 9072:3 9077:1 9094:1 9106:1 9130:1 9146:1 9148:1 9165:2 9181:1 9192:1 9259:2 9326:1 9339:1 9372:1 9377:1 9385:2 9405:1 9431:1 9442:2 9470:1 9539:1 9563:1 9588:1 9593:1 9595:1 9602:2 9606:4 9644:1 9667:1 9686:1 9715:1 9768:1 9779:6 9783:1 9791:1 9817:1 9855:1 9874:4 9885:1 9894:1 9921:1 9926:1 9943:1 9964:2 9990:1 10046:1 10091:1 10096:1 10105:1 10112:2 10114:1 10133:1 10167:1 10172:3 10224:1 10235:5 10236:23 10238:2 10253:1 10272:1 10273:1 10289:1 10302:1 10318:1 10358:2 10369:4 10394:1 10431:1 10439:1 10471:1 10543:1 10544:2 10554:1 10578:2 10594:1 10610:1 10611:3 10635:1 10640:1 10654:2 10669:1 10687:1 10699:1 10714:1 10727:1 10728:1 10736:3 10777:1 10796:1 10871:1 10901:2 10926:1 10940:1 10967:1 10971:3 11000:1 11003:1 11007:1 11037:1 11064:1 11091:1 11102:1 11144:1 11150:2 11158:1 11181:5 11207:1 11238:2 11256:2 11266:1 11267:1 11272:1 11333:2 11372:2 11377:5 11385:1 11388:1 11404:3 11405:2 11406:2 11462:2 11492:1 11493:1 11497:1 11501:1 11509:1 11586:1 11589:1 11614:2 11620:1 11632:4 11635:1 11651:1 11653:1 11678:1 11686:1 11689:1 11692:1 11697:1 11737:1 11751:2 11757:1 11759:1 11767:1 11769:1 11806:2 11830:1 11835:1 11841:2 11842:1 11852:1 11863:1 11871:1 11906:1 11928:2 11932:1 11938:1 11942:1 11976:1 11989:1 12004:1 12009:1 12021:1 12041:1 12067:1 12070:1 12072:1 12074:1 12088:1 12108:4 12119:1 12140:1 12151:1 12154:1 12165:1 12170:2 12181:1 12184:1 12219:1 12222:1 12235:2 12255:1 12268:1 12273:1 12289:1 12293:1 12304:1 12322:5 12324:1 12344:1 12346:2 12351:1 12352:1 12359:1 12373:1 12380:1 12383:1 12388:1 12398:1 12419:1 12427:2 12439:1 12449:5 12456:1 12462:1 12467:3 12480:1 12501:1 12517:1 12546:1 12591:3 12610:1 12640:1 12668:1 12678:1 12680:2 12690:1 12715:1 12719:1 12764:1 12771:1 12775:1 12828:1 12838:1 12857:1 12873:1 12891:1 12962:2 12999:1 13009:1 13042:1 13048:1 13050:1 13058:1 13124:1 13135:2 13143:1 13179:1 13198:1 13216:1 13229:1 13251:2 13257:1 13425:6 13434:1 13446:2 13448:1 13475:4 13480:1 13482:2 13493:1 13497:1 13531:3 13536:1 13538:1 13552:1 13555:1 13558:1 13572:1 13597:1 13614:1 13623:1 13665:1 13691:2 13707:1 13765:1 13788:1 13829:1 13853:1 13869:1 13871:2 13878:2 13894:1 13906:1 13909:2 13945:3 13962:1 13963:1 13974:4 14005:1 14020:1 14033:1 14040:1 14051:1 14057:2 14067:1 14069:2 14075:1 14077:2 14103:1 14114:3 14148:1 14167:2 14185:1 14191:1 14212:1 14222:4 14225:1 14239:1 14274:1 14282:1 14288:1 14307:1 14318:1 14323:1 14325:2 14337:1 14370:2 14372:1 14375:1 14377:1 14415:1 14449:1 14460:2 14464:2 14468:3 14479:1 14489:1 14498:1 14536:1 14540:1 14544:1 14551:1 14580:2 14618:1 14627:1 14683:1 14691:1 14725:1 14769:2 14819:1 14832:1 14864:1 14872:1 14893:1 14911:1 14912:1 14919:1 14927:3 14933:1 14969:1 15004:1 15059:1 15119:1 15143:1 15171:1 15175:1 15193:1 15196:1 15202:1 15213:1 15225:2 15258:1 15262:1 15298:1 15316:1 15346:1 15354:1 15368:1 15378:1 15381:1 15384:1 15391:1 15396:1 15401:1 15407:1 15410:1 15415:2 15438:2 15453:1 15457:1 15493:1 15505:1 15510:1 15525:1 15548:1 15550:2 15553:1 15591:1 15624:1 15642:1 15695:1 15706:1 15760:1 15764:1 15765:1 15785:2 15826:2 15851:1 15853:3 15861:1 15894:1 15899:2 15918:1 15927:2 15934:1 15960:1 15994:1 16028:1 16095:1 16118:1 16134:1 16144:1 16186:1 16262:1 16285:1 16313:1 16355:1 16363:1 16365:1 16383:1 16387:1 16402:1 16406:1 16411:2 16414:1 16415:1 16431:2 16457:2 16467:2 16475:3 16499:1 16502:1 16555:1 16575:1 16627:1 16634:1 16635:2 16641:4 16649:1 16667:1 16669:1 16671:2 16700:1 16723:1 16733:2 16738:1 16747:1 16799:1 16805:3 16819:2 16825:1 16829:1 16835:1 16907:1 16946:1 16949:2 16962:1 16970:1 17060:2 17077:1 17083:2 17112:1 17116:2 17141:1 17147:1 17182:1 17188:2 17211:2 17212:1 17216:1 17217:1 17220:1 17231:2 17232:1 17237:1 17267:1 17302:1 17305:2 17340:1 17419:2 17519:1 17536:1 17543:1 17595:1 17642:1 17686:2 17688:1 17691:1 17702:1 17729:11 17776:2 17803:3 17851:2 17898:2 17915:1 17917:1 17926:1 17954:1 17957:1 17961:1 18014:1 18028:2 18031:1 18047:1 18054:4 18060:1 18076:3 18111:1 18125:1 18126:2 18129:3 18158:1 18167:2 18171:2 18172:1 18188:1 18233:1 18299:1 18308:1 18385:1 18413:1 18417:1 18429:1 18434:3 18447:1 18471:1 18505:1 18535:1 18536:2 18646:1 18682:1 18683:3 18700:1 18717:1 18740:1 18747:1 18782:2 18785:1 18825:1 18836:1 18843:2 18874:1 18882:3 18892:1 18894:1 18938:1 18951:2 18994:2 19085:1 19091:1 19093:1 19129:1 19160:1 19172:1 19190:2 19191:1 19195:1 19244:1 19306:5 19308:1 19315:1 19413:1 19419:3 19434:1 19449:1 19491:2 19492:1 19497:1 19542:1 19559:1 19573:1 19577:1 19594:1 19605:1 19611:1 19633:1 19644:1277 19673:1 19709:1 19805:1 19807:1 19814:1 19840:2 19845:1 19863:1 19871:1 19878:1 19893:1 19895:1 19915:1 19926:1 19990:1 20072:1 20095:1 20121:1 20138:1 20216:1 20218:1 20239:1 20290:1 20302:1 20303:1 20389:1 20393:1 20396:1 20412:1 20438:2 20460:2 20462:1 20464:1 20466:1 20476:1 20487:1 20498:2 20502:2 20547:1 20553:1 20554:1 20576:1 20597:1 20604:1 20609:3 20622:1 20628:1 20630:3 20643:1 20674:1 20698:1 20758:1 20769:1 20778:1 20786:1 20841:1 20853:1 20875:3 20884:2 20903:1 20906:1 20915:1 20919:1 20933:1 20943:1 20951:2 20980:1 20986:1 20989:2 20993:1 21052:1 21066:1 21079:1 21106:1 21160:1 21182:1 21184:2 21185:1 21192:1 21197:2 21211:2 21212:1 21224:1 21246:4 21261:1 21286:1 21302:3 21316:1 21319:1 21341:5 21355:1 21365:3 21457:2 21462:1 21465:1 21484:2 21492:1 21511:1 21531:1 21545:1 21570:1 21627:2 21629:1 21668:2 21683:2 21741:1 21782:1 21785:1 21787:1 21807:1 21833:1 21869:1 21879:1 21900:2 21927:1 21934:1 21990:1 22024:1 22027:1 22039:1 22043:3 22046:1 22048:1 22056:4 22059:1 22077:1 22107:1 22149:1 22175:1 22197:2 22213:1 22255:2 22262:1 22267:1 22296:1 22322:1 22327:1 22341:2 22414:1 22422:2 22426:1 22431:1 22443:1 22446:1 22527:1 22552:1 22557:2 22601:1 22605:1 22610:1 22613:1 22659:1 22680:2 22689:1 22710:1 22711:2 22736:1 22747:1 22749:1 22754:1 22764:1 22770:1 22782:2 22801:2 22809:2 22817:2 22831:2 22832:1 22844:1 22849:2 22855:1 22860:1 22867:1 22887:2 22891:1 22892:1 22935:1 22943:1 22970:1 22988:1 23000:1 23008:1 23014:1 23039:1 23095:2 23096:1 23109:1 23112:1 23142:1 23151:1 23156:2 23157:1 23166:1 23167:1 23170:1 23178:1 23180:7 23181:3 23185:1 23186:1 23187:1 23193:1 23205:1 23214:1 23219:1 23221:1 23222:4 23244:1 23251:1 23279:1 23282:3 23332:1 23357:1 23368:1 23375:1 23386:1 23395:2 23399:2 23404:1 23408:3 23444:1 23460:1 23466:1 23469:2 23478:1 23483:1 23486:1 23513:1 23563:2 23567:2 23569:2 23581:1 23594:1 23607:1 23615:1 23625:1 23630:1 23641:1 23643:1 23644:5 23651:1 23671:1 23674:1 23684:2 23690:1 23700:1 23731:1 23752:1 23779:7 23796:2 23802:1 23804:2 23809:1 23810:3 23831:2 23850:1 23856:1 23858:1 23862:2 23871:1 23878:1 23885:1 23893:1 23899:3 23903:1 23915:1 23979:1 24025:1 24053:1 24056:3 24068:1 24108:1 24142:2 24196:2 24200:1 24229:1 24286:1 24374:3 24404:1 24430:1 24447:1 24498:1 24500:1 24525:1 24601:1 24614:2 24631:1 24633:2 24644:1 24662:1 24682:1 24704:1 24726:2 24733:1 24738:2 24741:1 24742:1 24751:1 24764:1 24770:1 24772:1 24786:2 24799:1 24835:4 24868:1 24870:1 24884:1 24886:2 24904:1 24918:1 24930:1 24964:2 24994:1 25035:1 25065:1 25067:1 25089:2 25120:1 25133:1 25181:1 25271:1 25310:1 25329:1 25331:1 25345:1 25348:1 25351:1 25355:1 25369:1 25388:1 25405:1 25406:1 25408:1 25481:1 25509:1 25522:1 25538:1 25572:1 25591:1 25603:5 25608:1 25635:5 25680:1 25682:1 25684:1 25685:1 25712:1 25724:1 25739:1 25775:1 25786:1 25799:11 25850:3 25916:1 25918:1 25921:1 25932:1 25935:2 25940:2 25949:1 25970:1 25972:1 25989:3 25996:1 25997:1 26015:1 26049:3 26051:1 26055:1 26064:1 26080:3 26090:1 26094:1 26104:1 26110:1 26120:1 26165:1 26215:1 26254:1 26278:1 26289:1 26314:1 26318:1 26327:1 26381:2 26397:1 26439:1 26449:1 26453:2 26456:3 26504:6 26505:2 26548:1 26566:1 26591:2 26607:1 26626:1 26639:1 26689:1 26703:5 26729:3 26762:1 26763:1 26855:2 26857:3 26889:1 26904:2 26929:1 26938:1 26959:2 26964:2 26992:1 27001:4 27039:3 27040:1 27062:1 27089:1 27152:1 27157:1 27162:1 27201:1 27207:1 27262:1 27269:2 27279:1 27282:2 27324:1 27347:1 27350:1 27383:1 27406:1 27449:1 27498:1 27537:1 27580:1 27584:1 27614:1 27624:1 27648:2 27710:2 27732:1 27748:1 27760:1 27797:3 27818:1 27854:1 27858:1 27881:1 27892:1 27896:2 27909:1 27917:2 27927:1 28004:1 28049:1 28069:1 28079:1 28096:1 28100:1 28103:2 28138:1 28139:1 28146:1 28152:1 28165:3 28177:1 28207:1 28225:2 28241:1 28280:1 28290:2 28327:1 28342:2 28360:1 28379:1 28482:1 28483:1 28486:1 28496:1 28527:1 28561:2 28576:2 28597:1 28646:1 28690:1 28710:1 28727:1 28736:1 28780:1 28782:1 28818:1 28836:1 28843:1 28924:1 28948:3 29014:1 29025:1 29032:1 29052:1 29054:1 29063:1 29081:1 29088:1 29092:1 29098:1 29109:1 29119:1 29122:1 29128:1 29130:1 29133:1 29134:1 29137:2 29144:2 29152:1 29154:1 29158:1 29160:1 29188:1 29196:1 29197:2 29224:5 29227:1 29238:1 29249:1 29253:1 29259:1 29282:1 29284:1 29295:1 29304:1 29340:1 29344:1 29354:1 29360:1 29363:1 29386:1 29397:1 29415:1 29444:1 29447:2 29450:2 29469:1 29539:1 29579:1 29590:1 29593:2 29596:1 29610:1 29661:1 29679:1 29689:1 29723:2 29729:1 29760:1 29778:1 29779:2 29781:2 29788:1 29789:1 29790:1 29825:2 29826:1 29837:1 29851:1 29860:1 29887:19 29896:1 29910:2 29938:5 29946:3 30001:1 30008:1 30039:2 30052:1 30062:1 30069:1 30078:3 30112:4 30118:1 30124:2 30130:1 30159:1 30165:1 30194:1 30197:1 30199:2 30217:1 30243:1 30289:2 30329:1 30331:1 30350:1 30358:2 30382:1 30436:4 30438:1 30476:1 30510:1 30513:3 30523:1 30534:1 30537:1 30538:1 30541:1 30660:1 30678:1 30692:3 30693:2 30694:1 30741:1 30754:1 30801:1 30842:1 30846:1 30864:2 30869:2 30874:1 30884:4 30907:2 30909:1 30925:1 30940:1 30953:1 30981:1 30986:2 31003:2 31055:1 31066:1 31089:1 31093:3 31142:1 31154:1 31195:1 31208:1 31212:2 31216:1 31222:1 31238:1 31243:1 31246:1 31248:1 31250:1 31251:1 31287:1 31299:1 31313:1 31385:1 19 27:1 30:1 52:1 56:1 57:1 91:1 108:1 154:1 170:2 206:1 232:1 234:1 246:1 276:1 308:1 354:1 367:1 428:2 462:2 486:1 561:1 569:1 604:1 622:1 643:7 649:1 671:1 697:1 764:1 837:1 843:1 890:1 899:1 907:3 926:2 928:1 933:2 937:3 938:3 948:2 949:1 951:1 967:1 985:1 987:1 993:1 994:1 998:4 1009:1 1021:2 1022:1 1037:2 1038:1 1055:1 1080:4 1083:1 1137:1 1195:1 1213:1 1249:1 1262:1 1277:1 1285:1 1335:1 1336:1 1337:1 1348:2 1350:1 1366:1 1380:1 1389:1 1390:1 1395:1 1437:1 1458:1 1527:1 1533:1 1559:1 1582:1 1584:1 1586:2 1592:2 1600:2 1607:2 1669:2 1670:1 1675:4 1690:2 1699:1 1712:1 1766:1 1795:3 1846:2 1855:1 1899:1 1906:1 1909:1 1922:1 1923:2 1928:2 1940:1 1948:1 1950:1 1956:1 1978:1 1979:1 2013:1 2018:1 2026:1 2027:1 2040:1 2087:1 2105:1 2113:1 2133:2 2190:1 2196:2 2198:2 2203:1 2205:2 2208:1 2214:1 2216:2 2251:1 2266:1 2267:4 2273:2 2297:1 2337:1 2345:1 2352:1 2369:1 2375:1 2384:2 2391:2 2401:1 2402:2 2404:1 2410:2 2422:3 2425:2 2434:1 2505:1 2512:2 2528:4 2536:1 2548:1 2549:1 2592:2 2616:1 2626:1 2653:1 2655:1 2669:1 2689:1 2690:1 2760:1 2779:1 2790:1 2797:1 2811:1 2832:6 2838:2 2843:1 2859:1 2890:1 2905:1 2962:2 2985:2 3005:1 3014:13 3023:6 3058:1 3065:3 3074:1 3090:1 3098:1 3102:3 3265:1 3294:1 3296:1 3307:1 3336:1 3410:2 3423:2 3463:2 3477:1 3488:1 3489:4 3534:1 3542:1 3548:2 3570:1 3652:3 3653:1 3654:1 3666:1 3669:1 3700:1 3742:1 3752:1 3779:1 3788:1 3793:1 3794:1 3802:1 3813:1 3824:2 3844:1 3880:1 3882:1 3889:1 3895:1 3936:2 3943:4 3989:1 4022:1 4055:2 4094:1 4100:1 4104:1 4126:3 4153:1 4173:1 4208:1 4227:1 4228:1 4229:3 4259:1 4283:1 4294:1 4340:3 4348:1 4366:1 4401:1 4409:1 4432:1 4450:1 4454:2 4456:1 4498:1 4558:3 4608:2 4613:2 4651:1 4664:1 4682:1 4736:1 4748:1 4776:2 4780:1 4781:1 4816:1 4817:3 4818:1 4862:1 4868:1 4871:1 4876:1 4885:1 4888:1 4905:1 4906:2 4919:1 4927:1 4949:1 4969:1 4977:1 4996:1 5005:1 5028:1 5034:1 5039:1 5062:1 5065:3 5127:1 5132:5 5133:1 5183:3 5245:2 5247:1 5248:3 5264:4 5265:3 5269:1 5270:1 5271:1 5275:1 5276:3 5277:1 5284:2 5287:1 5291:3 5292:1 5293:1 5318:1 5320:1 5344:1 5350:1 5356:1 5365:1 5385:1 5436:1 5443:1 5481:1 5508:1 5535:1 5551:1 5574:1 5639:1 5666:1 5678:1 5686:2 5710:1 5712:1 5732:1 5748:1 5777:1 5784:1 5794:5 5815:1 5822:1 5824:1 5839:1 5889:2 5890:2 5913:1 5917:1 5952:1 5954:2 6036:1 6040:1 6061:1 6093:1 6099:1 6151:1 6196:2 6283:1 6301:1 6309:1 6315:1 6333:2 6345:2 6346:2 6348:10 6349:1 6355:2 6362:1 6378:2 6399:1 6408:1 6409:2 6444:1 6446:1 6452:1 6465:1 6473:3 6474:1 6479:1 6488:2 6567:1 6568:1 6583:1 6588:3 6610:2 6645:1 6664:1 6670:1 6681:1 6692:2 6693:1 6696:4 6697:1 6704:2 6707:1 6709:2 6715:1 6736:1 6745:1 6769:1 6827:1 6850:1 6852:1 6882:1 6886:1 6926:1 6965:1 7006:1 7013:3 7045:1 7052:1 7088:1 7113:1 7127:1 7128:2 7142:1 7151:1 7155:2 7181:3 7186:2 7216:2 7221:3 7289:1 7305:1 7312:1 7314:2 7319:2 7346:1 7353:1 7355:1 7381:1 7382:1 7386:1 7435:1 7436:1 7450:1 7486:1 7489:1 7509:1 7533:1 7537:9 7540:1 7585:1 7594:2 7640:1 7658:1 7691:1 7845:2 7855:3 7864:2 7880:2 7886:1 7887:1 7919:1 7929:1 7943:1 7975:1 7989:1 8032:1 8041:1 8104:4 8105:2 8128:1 8130:3 8135:1 8160:1 8163:1 8172:15 8178:1 8194:1 8201:13 8204:3 8213:1 8267:1 8273:1 8283:1 8284:2 8315:1 8332:1 8333:1 8340:1 8357:1 8370:1 8400:1 8415:1 8442:1 8443:1 8455:2 8581:1 8584:1 8598:2 8604:1 8622:1 8626:1 8648:1 8669:1 8689:1 8698:10 8728:3 8741:3 8837:1 8849:2 8884:1 8892:1 8903:1 8913:1 8918:1 8927:2 8948:2 8952:2 8971:3 8976:1 8977:1 8979:1 8984:1 8985:1 8986:1 9012:1 9038:1 9057:4 9058:2 9061:2 9062:1 9064:1 9072:3 9077:1 9094:1 9106:1 9130:1 9146:1 9148:1 9165:2 9177:1 9181:1 9192:1 9259:2 9326:1 9339:1 9372:1 9377:1 9385:2 9405:1 9431:1 9442:2 9470:1 9539:1 9563:1 9588:1 9593:1 9595:1 9602:2 9606:5 9628:1 9644:1 9667:1 9686:1 9715:1 9768:1 9779:6 9783:1 9791:1 9817:1 9855:1 9874:4 9885:1 9894:1 9921:1 9926:1 9931:1 9943:1 9964:2 9990:1 10046:1 10091:1 10096:1 10105:1 10112:2 10114:1 10133:1 10167:1 10172:3 10224:1 10235:5 10236:23 10238:2 10253:1 10272:1 10273:1 10289:1 10302:1 10318:1 10358:2 10369:4 10394:1 10415:1 10431:1 10439:1 10471:1 10543:1 10544:2 10554:1 10578:2 10594:1 10610:1 10611:3 10635:1 10640:1 10654:2 10669:1 10687:1 10699:1 10714:1 10727:1 10728:1 10736:3 10777:1 10796:1 10871:1 10901:2 10926:1 10940:1 10967:1 10971:3 11000:1 11003:1 11007:1 11037:1 11064:1 11091:1 11102:1 11144:1 11150:3 11158:1 11181:5 11207:1 11238:2 11256:2 11266:1 11267:1 11272:1 11333:2 11372:2 11377:5 11385:1 11388:1 11404:3 11405:2 11406:2 11462:3 11492:1 11493:1 11497:1 11501:1 11509:1 11586:1 11589:1 11614:2 11620:1 11632:4 11635:1 11651:1 11653:1 11678:1 11686:1 11689:1 11692:1 11697:1 11737:1 11751:2 11757:1 11759:2 11767:2 11769:1 11806:2 11830:1 11835:1 11841:2 11842:1 11852:1 11863:1 11871:1 11906:1 11928:2 11932:1 11938:1 11942:1 11976:1 11989:1 12004:1 12009:1 12021:1 12041:1 12067:1 12070:1 12072:1 12074:1 12088:1 12108:4 12119:1 12140:1 12151:1 12154:1 12165:1 12170:2 12181:1 12184:1 12219:1 12222:1 12235:2 12255:1 12268:1 12273:1 12289:1 12293:1 12304:1 12322:5 12324:1 12344:1 12346:2 12351:1 12352:1 12359:1 12373:1 12380:1 12383:1 12388:1 12398:1 12419:1 12427:2 12439:1 12449:5 12456:1 12462:1 12467:3 12480:1 12501:1 12517:1 12546:1 12591:3 12595:1 12610:1 12640:1 12668:1 12678:1 12680:2 12690:1 12715:1 12719:1 12764:1 12771:1 12775:1 12828:1 12838:1 12857:1 12873:1 12891:1 12962:2 12999:1 13009:1 13042:1 13048:1 13050:1 13058:1 13124:1 13135:2 13143:1 13179:1 13198:1 13216:1 13229:1 13251:2 13257:1 13425:6 13434:1 13446:2 13448:1 13475:4 13480:1 13482:2 13493:1 13497:1 13531:3 13536:1 13538:1 13552:1 13555:1 13558:1 13572:1 13597:1 13614:1 13623:1 13665:1 13691:2 13707:1 13765:1 13788:1 13829:1 13853:1 13869:1 13871:2 13878:2 13894:1 13906:1 13909:2 13945:3 13962:1 13963:1 13974:4 14005:1 14020:1 14033:2 14040:1 14051:1 14057:2 14067:1 14069:2 14075:1 14077:2 14103:1 14114:4 14148:1 14167:3 14185:1 14191:1 14212:1 14222:4 14225:1 14239:1 14274:1 14282:1 14288:1 14307:1 14318:1 14323:1 14325:2 14337:1 14370:2 14372:1 14375:1 14377:1 14415:1 14449:1 14460:2 14464:2 14468:3 14479:1 14489:1 14498:1 14536:1 14540:1 14544:1 14551:1 14580:2 14618:1 14627:1 14683:1 14691:1 14725:1 14769:2 14819:1 14832:1 14864:1 14872:1 14893:1 14911:1 14912:1 14919:1 14927:3 14933:1 14969:1 15004:1 15059:1 15119:1 15143:1 15171:1 15175:1 15193:1 15196:1 15202:1 15213:1 15225:2 15258:1 15262:1 15298:1 15316:1 15346:1 15354:1 15368:1 15378:1 15381:1 15384:2 15391:1 15396:1 15401:1 15407:1 15410:1 15415:2 15438:2 15453:1 15457:1 15493:1 15505:1 15510:1 15525:1 15548:1 15550:2 15553:1 15591:1 15624:1 15642:1 15695:1 15706:1 15760:1 15764:1 15765:1 15785:2 15826:2 15851:1 15853:3 15861:1 15894:1 15899:2 15918:1 15927:2 15934:1 15960:1 15994:1 16028:1 16095:1 16107:1 16118:1 16134:1 16144:1 16186:1 16262:1 16285:1 16313:1 16355:1 16363:1 16365:1 16383:1 16387:1 16402:1 16406:1 16411:2 16414:1 16415:1 16431:3 16457:2 16467:2 16475:3 16499:1 16502:1 16555:1 16575:1 16627:1 16634:1 16635:2 16641:4 16649:1 16667:1 16669:1 16671:2 16700:1 16723:1 16733:2 16738:1 16747:1 16799:1 16805:3 16819:3 16825:1 16829:1 16835:1 16861:1 16907:1 16946:1 16949:3 16962:1 16970:1 17060:2 17077:1 17083:2 17112:1 17116:2 17141:1 17147:1 17182:1 17188:2 17211:2 17212:1 17216:1 17217:1 17220:1 17223:1 17231:2 17232:1 17237:1 17267:1 17302:1 17305:2 17340:1 17419:2 17519:1 17536:1 17543:1 17595:1 17642:1 17686:2 17688:1 17691:1 17702:1 17729:11 17776:2 17803:3 17851:2 17898:2 17915:1 17917:1 17926:1 17954:1 17957:1 17961:1 18014:1 18028:3 18031:1 18047:1 18054:4 18060:1 18076:3 18111:1 18125:1 18126:2 18129:3 18158:1 18167:2 18171:2 18172:1 18188:1 18233:1 18299:1 18308:1 18385:1 18413:1 18417:1 18429:1 18434:3 18447:1 18471:1 18505:1 18535:1 18536:2 18646:1 18682:1 18683:3 18700:1 18717:1 18740:1 18747:1 18782:2 18785:1 18825:1 18836:1 18843:2 18874:1 18882:3 18892:1 18894:1 18938:1 18951:2 18994:2 19085:1 19091:1 19093:1 19129:1 19160:1 19172:1 19190:2 19191:1 19195:1 19244:1 19306:5 19308:1 19315:1 19413:1 19419:3 19434:1 19449:1 19491:2 19492:1 19497:1 19503:1 19542:1 19559:1 19573:1 19577:1 19594:1 19605:2 19611:1 19633:1 19644:1326 19673:2 19678:1 19690:1 19709:1 19805:1 19807:1 19814:1 19840:2 19845:1 19863:1 19871:1 19878:1 19893:1 19895:1 19915:1 19926:1 19990:1 20072:1 20095:1 20121:1 20138:1 20216:1 20218:1 20239:1 20290:1 20302:1 20303:1 20389:1 20393:1 20396:1 20412:1 20438:2 20460:2 20462:1 20464:1 20466:1 20476:1 20487:1 20498:2 20502:2 20547:1 20553:1 20554:1 20576:1 20597:1 20604:1 20609:3 20622:1 20628:1 20630:3 20643:1 20674:1 20698:1 20703:1 20758:1 20769:1 20778:1 20786:1 20841:1 20853:1 20875:3 20884:2 20903:1 20906:1 20915:1 20919:1 20933:1 20943:1 20951:2 20980:1 20986:1 20989:2 20993:1 21015:1 21052:1 21066:1 21079:1 21106:1 21160:1 21182:1 21184:2 21185:1 21192:1 21197:2 21211:2 21212:1 21224:1 21246:4 21261:1 21286:1 21302:3 21316:1 21319:1 21341:5 21355:1 21365:3 21457:2 21462:1 21465:1 21484:2 21492:1 21511:1 21531:1 21545:1 21570:1 21627:3 21629:1 21668:2 21683:2 21741:1 21782:1 21785:1 21787:1 21807:1 21833:1 21869:1 21879:1 21900:2 21927:1 21934:1 21990:1 22024:1 22027:1 22039:1 22043:3 22046:1 22048:1 22056:4 22059:1 22077:1 22107:1 22149:1 22175:1 22197:2 22213:1 22255:2 22260:1 22262:1 22267:1 22296:1 22322:1 22327:1 22341:2 22414:1 22422:2 22426:1 22431:1 22443:1 22446:1 22527:1 22552:1 22557:2 22601:1 22605:1 22610:1 22613:1 22659:1 22680:2 22689:1 22710:1 22711:2 22736:1 22747:1 22749:1 22754:1 22764:1 22770:1 22782:2 22801:2 22809:2 22817:2 22831:2 22832:1 22844:1 22849:2 22855:1 22860:1 22867:1 22887:2 22891:1 22892:1 22935:1 22943:1 22970:1 22988:1 23000:1 23008:1 23014:1 23039:1 23095:2 23096:1 23109:1 23112:1 23142:1 23145:1 23151:1 23156:2 23157:1 23166:1 23167:1 23170:1 23178:1 23180:7 23181:3 23185:1 23186:1 23187:1 23193:1 23205:1 23214:1 23219:1 23221:1 23222:4 23244:1 23251:1 23279:1 23282:3 23332:1 23357:1 23368:1 23375:1 23386:1 23395:2 23399:2 23404:1 23408:3 23410:1 23444:1 23460:1 23466:1 23469:2 23478:1 23483:1 23486:1 23513:1 23563:2 23567:2 23569:2 23581:1 23594:1 23607:1 23615:1 23625:1 23630:1 23641:1 23643:1 23644:5 23651:1 23671:1 23674:1 23684:2 23690:1 23700:1 23731:1 23752:1 23779:8 23796:2 23802:1 23804:2 23809:1 23810:3 23831:2 23850:1 23856:1 23858:1 23862:2 23871:1 23878:1 23885:1 23893:1 23899:3 23903:1 23915:1 23979:1 24025:1 24053:1 24056:3 24068:1 24108:1 24142:2 24196:2 24200:1 24229:1 24286:1 24374:3 24404:1 24430:1 24447:1 24498:1 24500:1 24525:1 24601:1 24614:2 24631:1 24633:2 24644:1 24662:1 24682:1 24704:1 24726:2 24733:1 24738:2 24741:1 24742:1 24751:1 24764:1 24770:1 24772:1 24786:2 24799:1 24835:4 24868:1 24870:1 24884:1 24886:2 24904:1 24918:1 24930:1 24964:2 24994:1 25035:1 25065:1 25067:1 25080:1 25089:2 25120:1 25133:1 25181:1 25271:1 25310:1 25329:1 25331:1 25345:1 25348:1 25351:1 25355:1 25369:1 25388:1 25405:1 25406:1 25408:1 25481:1 25509:1 25522:1 25538:1 25572:1 25591:1 25603:5 25608:1 25635:5 25680:1 25682:1 25684:1 25685:1 25712:1 25724:1 25739:1 25775:1 25786:1 25799:11 25850:3 25916:1 25918:1 25921:1 25932:1 25935:2 25940:2 25949:1 25970:1 25972:1 25989:3 25996:1 25997:1 26015:1 26049:3 26051:1 26055:1 26064:1 26080:3 26083:1 26090:1 26094:1 26104:1 26110:1 26120:1 26157:1 26165:1 26215:1 26254:1 26278:1 26289:1 26301:1 26314:1 26318:1 26327:1 26381:2 26397:1 26439:1 26449:1 26453:2 26456:3 26504:6 26505:2 26548:1 26566:1 26591:2 26607:1 26626:1 26639:1 26689:1 26703:5 26729:3 26762:1 26763:1 26855:2 26857:3 26889:1 26904:2 26929:1 26938:1 26959:3 26964:2 26992:1 27001:4 27039:3 27040:1 27062:1 27089:1 27152:1 27157:2 27162:1 27201:1 27207:1 27262:1 27269:2 27279:1 27282:2 27324:1 27347:1 27350:1 27383:1 27406:1 27449:1 27498:2 27537:1 27580:1 27584:1 27614:1 27624:1 27648:2 27710:2 27732:1 27748:1 27760:1 27797:3 27818:1 27854:1 27858:1 27881:1 27892:1 27896:2 27909:1 27917:2 27927:1 28004:1 28037:1 28049:1 28069:1 28079:1 28096:1 28100:1 28103:2 28138:1 28139:1 28146:1 28152:1 28165:3 28177:2 28207:1 28225:2 28241:1 28280:1 28290:2 28327:1 28342:2 28360:1 28379:1 28482:1 28483:1 28486:1 28496:1 28527:1 28561:2 28576:3 28597:1 28646:1 28690:1 28710:1 28727:1 28736:1 28780:1 28782:1 28818:1 28836:1 28843:1 28924:1 28948:3 29014:1 29025:1 29032:1 29052:1 29054:1 29063:1 29081:1 29088:1 29092:1 29098:1 29109:1 29119:1 29122:1 29128:1 29130:1 29133:1 29134:1 29137:2 29144:2 29152:1 29154:1 29158:1 29160:1 29188:1 29196:1 29197:2 29224:6 29227:1 29238:1 29249:2 29253:1 29259:1 29282:1 29284:1 29295:1 29304:1 29340:1 29344:1 29354:1 29360:1 29363:2 29386:1 29397:1 29415:1 29444:1 29447:2 29450:2 29469:1 29539:1 29576:1 29579:1 29590:1 29593:2 29596:1 29610:1 29661:1 29679:1 29689:1 29723:2 29729:1 29760:1 29778:1 29779:2 29781:2 29788:1 29789:1 29790:1 29825:2 29826:1 29837:1 29851:1 29860:1 29887:21 29896:1 29910:2 29938:6 29946:3 30001:1 30008:1 30039:2 30052:1 30062:1 30069:1 30078:3 30112:4 30118:1 30124:2 30130:1 30149:1 30159:1 30165:1 30194:1 30197:1 30199:2 30217:1 30243:1 30289:2 30329:1 30331:1 30350:1 30358:2 30382:1 30388:1 30436:4 30438:1 30465:1 30476:1 30510:1 30513:3 30523:1 30534:1 30537:1 30538:1 30541:1 30660:1 30678:1 30692:4 30693:2 30694:1 30741:1 30754:1 30801:1 30842:1 30846:1 30864:2 30869:2 30874:1 30884:4 30907:2 30909:1 30925:1 30940:1 30953:1 30956:1 30981:1 30986:2 31003:2 31055:1 31066:1 31089:1 31093:3 31142:1 31154:1 31195:1 31208:1 31212:2 31216:1 31222:1 31238:1 31243:2 31246:1 31248:1 31250:1 31251:1 31287:1 31299:1 31313:1 31385:1 19 27:1 30:1 52:1 56:1 57:1 91:1 108:1 154:1 170:2 206:1 232:1 234:1 242:1 246:1 276:1 308:1 354:1 367:1 428:2 462:2 486:1 561:1 569:1 604:1 622:1 643:7 649:1 671:1 697:1 764:1 837:1 843:1 870:1 879:1 890:1 899:1 907:3 926:2 928:1 933:2 937:3 938:3 948:2 949:1 951:1 967:1 985:1 987:1 993:1 994:1 998:4 1009:1 1021:2 1022:1 1037:2 1038:1 1055:1 1080:4 1083:1 1137:1 1195:1 1213:1 1249:1 1262:1 1277:1 1285:1 1335:1 1336:1 1337:1 1348:2 1350:1 1366:1 1380:1 1389:1 1390:1 1395:1 1437:1 1458:1 1527:1 1533:1 1543:1 1559:1 1582:1 1584:1 1586:2 1592:2 1600:2 1607:2 1669:2 1670:1 1675:4 1690:2 1699:1 1712:1 1766:1 1795:3 1846:2 1855:1 1899:1 1906:1 1909:1 1922:1 1923:2 1928:2 1940:1 1948:1 1950:2 1956:1 1978:1 1979:1 2013:1 2018:1 2026:1 2027:1 2040:1 2087:1 2105:1 2113:1 2133:2 2190:1 2196:2 2198:2 2203:1 2205:2 2208:1 2214:1 2216:2 2251:1 2266:1 2267:4 2273:2 2297:1 2337:1 2345:1 2352:1 2369:1 2375:1 2384:2 2391:2 2396:1 2401:1 2402:2 2404:1 2410:2 2422:3 2425:2 2434:1 2505:1 2512:2 2528:4 2536:1 2548:1 2549:1 2584:1 2592:2 2616:1 2626:1 2653:1 2655:1 2669:1 2689:1 2690:1 2760:1 2779:1 2790:1 2797:1 2811:1 2832:7 2838:2 2843:1 2859:1 2890:1 2905:1 2909:1 2962:2 2985:2 3005:1 3014:13 3023:7 3058:1 3065:4 3074:1 3090:1 3098:1 3102:3 3265:1 3294:1 3296:1 3307:1 3336:1 3410:2 3423:2 3463:2 3477:1 3488:1 3489:4 3534:1 3542:1 3548:2 3570:1 3652:3 3653:1 3654:1 3666:1 3669:1 3700:1 3742:1 3752:1 3779:1 3788:1 3793:1 3794:1 3802:1 3813:1 3824:2 3844:1 3880:1 3882:1 3889:1 3895:1 3936:2 3943:4 3989:1 4022:1 4031:1 4055:2 4094:1 4100:1 4104:1 4126:3 4153:1 4173:1 4208:1 4227:1 4228:1 4229:3 4259:1 4283:1 4294:1 4340:3 4348:1 4366:1 4401:1 4409:1 4432:1 4450:1 4454:2 4456:1 4498:1 4558:3 4608:2 4613:2 4651:1 4664:1 4682:1 4684:1 4736:1 4748:1 4776:2 4780:1 4781:1 4816:1 4817:3 4818:1 4862:1 4868:1 4871:1 4876:1 4885:1 4888:1 4905:1 4906:2 4919:1 4927:1 4949:1 4969:1 4977:1 4996:1 5005:1 5028:1 5034:1 5039:1 5062:1 5065:3 5127:1 5132:5 5133:1 5183:3 5245:2 5247:1 5248:3 5264:4 5265:4 5269:1 5270:1 5271:1 5275:1 5276:3 5277:1 5284:2 5287:1 5291:3 5292:1 5293:1 5318:1 5320:1 5344:1 5350:1 5356:2 5365:1 5385:1 5436:1 5443:1 5481:1 5508:1 5535:1 5551:1 5574:1 5639:1 5666:1 5678:1 5686:2 5710:1 5712:1 5732:1 5748:1 5777:1 5784:1 5794:5 5815:1 5822:1 5824:1 5839:1 5889:2 5890:2 5913:1 5917:1 5952:1 5954:2 6036:1 6040:1 6061:1 6093:1 6099:1 6151:1 6196:2 6283:1 6301:1 6309:1 6315:2 6333:2 6345:2 6346:2 6348:10 6349:1 6355:3 6362:1 6378:2 6399:1 6408:1 6409:2 6444:1 6446:1 6452:1 6465:1 6468:1 6473:3 6474:1 6479:1 6488:2 6567:1 6568:1 6583:1 6588:3 6610:2 6645:1 6664:1 6670:1 6681:1 6683:1 6692:2 6693:1 6696:4 6697:1 6704:2 6707:1 6709:2 6715:1 6736:1 6745:1 6769:1 6827:1 6850:1 6852:1 6882:1 6886:1 6926:1 6965:1 7006:1 7013:3 7045:1 7052:1 7088:1 7113:1 7127:1 7128:2 7142:1 7151:1 7155:2 7165:1 7181:3 7186:2 7216:2 7221:3 7289:1 7305:1 7312:1 7314:2 7319:2 7346:1 7353:1 7355:1 7381:1 7382:1 7386:1 7435:1 7436:1 7450:1 7486:1 7489:1 7509:1 7533:1 7537:9 7540:1 7585:1 7594:2 7640:1 7658:1 7688:1 7691:1 7781:1 7845:2 7855:3 7864:2 7880:2 7886:1 7887:2 7919:1 7929:1 7943:1 7975:1 7989:1 8032:1 8041:1 8104:4 8105:2 8128:1 8130:3 8135:1 8160:1 8163:1 8172:15 8178:1 8194:1 8201:13 8204:4 8213:1 8267:1 8273:1 8283:1 8284:2 8315:1 8332:1 8333:1 8340:1 8357:1 8370:1 8400:1 8415:1 8416:1 8442:1 8443:1 8455:2 8581:1 8584:1 8598:2 8604:1 8622:1 8626:1 8648:1 8669:1 8689:1 8698:12 8728:3 8741:3 8786:1 8837:1 8849:2 8884:1 8892:1 8903:1 8913:1 8918:1 8927:2 8948:2 8952:2 8971:4 8976:1 8977:1 8979:1 8984:1 8985:1 8986:1 9012:1 9038:1 9057:4 9058:2 9061:2 9062:1 9064:1 9072:3 9077:1 9094:1 9106:1 9115:1 9130:1 9146:1 9148:1 9165:2 9177:1 9181:1 9192:1 9259:2 9326:1 9339:1 9372:1 9377:1 9385:2 9405:1 9431:1 9442:2 9470:1 9539:1 9563:1 9588:1 9593:1 9595:1 9602:2 9606:5 9628:1 9644:1 9667:1 9686:1 9715:1 9768:1 9779:7 9783:1 9791:1 9817:1 9855:1 9874:4 9885:1 9894:1 9921:1 9926:1 9931:1 9943:1 9944:1 9964:2 9990:1 10046:1 10091:1 10096:1 10105:1 10112:2 10114:1 10133:1 10167:1 10172:3 10185:1 10224:1 10235:5 10236:23 10238:2 10253:1 10272:1 10273:1 10289:1 10302:1 10318:1 10358:2 10369:4 10394:1 10415:1 10431:1 10439:1 10471:1 10543:1 10544:2 10554:1 10578:2 10594:1 10610:1 10611:3 10635:1 10640:1 10654:2 10669:1 10687:1 10699:1 10714:1 10727:1 10728:1 10736:3 10777:1 10796:1 10871:1 10901:2 10926:1 10940:1 10967:1 10971:3 11000:1 11003:1 11007:1 11037:1 11064:1 11091:1 11102:1 11144:1 11150:3 11158:1 11181:6 11207:1 11238:2 11256:2 11266:1 11267:1 11272:1 11275:1 11296:1 11333:3 11372:2 11377:6 11385:1 11388:1 11404:3 11405:2 11406:2 11462:3 11492:1 11493:1 11497:1 11501:1 11509:1 11586:1 11589:1 11614:2 11620:1 11632:4 11635:1 11651:1 11653:1 11678:1 11686:1 11689:1 11692:1 11697:1 11737:1 11751:2 11757:1 11759:2 11767:2 11769:1 11806:2 11830:1 11835:1 11841:2 11842:1 11852:1 11863:1 11871:1 11906:1 11928:2 11932:1 11938:1 11942:1 11976:1 11989:1 12004:1 12009:1 12021:1 12041:1 12067:1 12070:1 12072:1 12074:1 12088:1 12108:4 12119:1 12140:1 12151:1 12154:1 12165:1 12170:2 12181:1 12184:1 12219:1 12222:1 12235:2 12255:1 12268:1 12273:1 12289:1 12293:1 12304:1 12322:5 12324:1 12344:1 12346:2 12351:1 12352:1 12359:1 12373:1 12380:1 12383:1 12388:1 12398:1 12419:1 12427:2 12439:1 12449:5 12456:1 12462:1 12467:3 12480:1 12501:1 12517:1 12546:1 12591:3 12595:1 12610:1 12640:1 12668:1 12678:1 12680:2 12690:1 12715:1 12719:1 12764:1 12771:1 12775:1 12828:1 12838:1 12857:1 12873:1 12891:1 12962:2 12999:1 13009:1 13042:1 13048:1 13050:1 13058:1 13124:1 13135:2 13143:2 13179:1 13198:1 13216:1 13229:1 13235:1 13251:2 13257:1 13425:7 13434:1 13446:2 13448:1 13475:4 13480:1 13482:2 13486:1 13493:1 13497:1 13531:3 13536:1 13538:1 13540:1 13552:1 13555:1 13558:1 13572:1 13597:1 13614:1 13623:1 13665:1 13691:2 13707:1 13765:1 13788:1 13829:1 13853:1 13869:1 13871:2 13878:2 13894:1 13906:1 13909:2 13945:3 13962:1 13963:1 13974:4 14005:1 14020:1 14033:2 14040:1 14051:1 14057:2 14067:1 14069:2 14075:1 14077:2 14103:1 14114:4 14148:1 14167:3 14185:1 14191:1 14212:1 14222:4 14225:1 14239:1 14245:1 14274:1 14282:1 14288:1 14307:1 14318:1 14323:1 14325:2 14337:1 14370:2 14372:1 14375:1 14377:1 14415:1 14449:1 14460:2 14464:2 14468:3 14479:1 14489:1 14498:1 14536:1 14540:1 14544:1 14551:1 14580:2 14618:1 14627:1 14683:1 14691:1 14725:1 14769:2 14819:1 14832:1 14864:1 14872:1 14893:1 14911:1 14912:1 14919:1 14927:3 14933:1 14969:1 15004:1 15059:1 15119:1 15143:1 15171:1 15175:1 15193:1 15196:1 15202:1 15213:1 15225:2 15258:1 15262:1 15275:1 15298:1 15316:1 15346:1 15354:1 15368:1 15378:1 15381:1 15384:2 15391:1 15396:1 15401:1 15407:1 15410:2 15415:2 15438:2 15453:1 15457:1 15493:2 15505:1 15510:1 15525:1 15548:1 15550:2 15553:1 15591:1 15624:1 15642:1 15695:1 15706:1 15760:1 15764:1 15765:1 15785:2 15826:2 15851:1 15853:3 15861:1 15894:1 15899:2 15918:1 15927:2 15934:1 15960:1 15994:1 16028:1 16095:1 16107:1 16118:1 16134:1 16144:1 16186:1 16262:1 16285:1 16313:1 16355:1 16363:1 16365:1 16383:1 16387:1 16402:1 16406:1 16411:2 16414:1 16415:1 16431:3 16457:2 16467:2 16475:3 16499:1 16502:1 16555:1 16575:1 16627:1 16634:1 16635:2 16641:4 16649:1 16667:1 16669:1 16671:2 16700:1 16723:1 16733:2 16738:1 16747:1 16799:1 16805:3 16819:3 16825:1 16829:1 16835:1 16854:1 16861:1 16907:1 16923:1 16946:1 16949:3 16962:1 16970:1 17060:2 17077:1 17083:2 17112:1 17116:2 17141:1 17147:1 17182:1 17188:2 17211:2 17212:1 17214:1 17216:1 17217:1 17220:1 17223:1 17231:2 17232:1 17237:1 17242:1 17267:1 17302:1 17305:2 17340:1 17419:2 17519:1 17520:1 17536:1 17543:1 17595:1 17642:1 17686:2 17688:1 17691:1 17702:1 17729:11 17765:1 17776:2 17803:4 17851:2 17898:2 17915:1 17917:1 17926:1 17954:1 17957:1 17961:1 18014:1 18028:3 18031:1 18047:1 18054:4 18060:1 18076:3 18111:1 18112:1 18125:1 18126:2 18129:3 18158:1 18167:2 18171:2 18172:1 18188:1 18233:1 18299:1 18308:1 18313:1 18385:1 18413:1 18417:1 18429:1 18434:3 18447:1 18471:1 18505:1 18535:1 18536:2 18646:1 18682:1 18683:3 18700:1 18717:1 18740:1 18747:1 18782:2 18785:1 18825:1 18836:1 18843:2 18874:1 18882:3 18892:1 18894:1 18938:1 18951:2 18994:2 19085:1 19091:1 19093:1 19129:1 19160:1 19172:2 19190:2 19191:1 19195:1 19244:1 19306:5 19308:1 19315:1 19390:1 19413:1 19419:3 19434:1 19449:1 19480:1 19491:2 19492:1 19497:1 19503:1 19542:1 19559:1 19573:1 19577:1 19594:1 19605:2 19611:1 19633:1 19644:1357 19648:1 19673:3 19678:1 19690:1 19709:1 19805:2 19807:1 19814:1 19840:2 19845:1 19863:1 19871:1 19878:1 19893:1 19895:1 19915:1 19926:1 19990:1 20072:1 20095:1 20121:1 20131:1 20138:1 20216:1 20218:1 20239:1 20290:1 20302:1 20303:1 20389:1 20393:1 20396:1 20412:1 20438:2 20460:2 20462:1 20464:1 20466:1 20476:1 20487:1 20498:2 20502:2 20547:1 20553:1 20554:1 20576:1 20588:1 20597:1 20604:1 20609:4 20622:1 20628:1 20630:3 20643:1 20674:1 20698:1 20703:1 20758:1 20769:1 20778:1 20786:1 20841:1 20853:1 20875:4 20884:2 20903:1 20906:1 20915:1 20919:1 20933:1 20943:1 20951:2 20980:1 20986:1 20989:2 20993:1 21015:1 21052:1 21066:1 21079:1 21106:1 21160:1 21182:1 21184:2 21185:1 21192:1 21197:2 21211:2 21212:1 21224:1 21246:4 21261:1 21286:1 21302:3 21316:1 21319:1 21341:5 21355:1 21365:4 21457:2 21462:1 21465:1 21484:2 21492:1 21511:1 21531:1 21545:1 21570:1 21627:3 21629:1 21668:2 21683:2 21741:1 21782:1 21785:1 21787:1 21807:1 21833:1 21857:1 21869:1 21879:1 21900:2 21927:1 21934:1 21990:1 22024:1 22027:1 22039:1 22043:3 22046:1 22048:1 22056:5 22059:1 22077:1 22102:1 22107:1 22149:1 22175:1 22197:2 22213:1 22255:2 22260:1 22262:1 22267:1 22296:1 22322:1 22327:1 22341:2 22414:1 22422:2 22426:1 22431:1 22443:1 22446:1 22513:1 22527:1 22552:1 22557:2 22601:1 22605:1 22610:1 22613:1 22649:1 22659:1 22680:2 22689:1 22710:1 22711:2 22736:1 22747:1 22749:1 22754:1 22764:1 22770:1 22782:2 22801:2 22809:2 22817:2 22831:2 22832:1 22844:1 22849:2 22855:1 22860:1 22867:1 22887:2 22891:1 22892:1 22935:1 22943:1 22970:1 22988:1 23000:1 23008:1 23014:1 23039:1 23095:2 23096:1 23109:1 23112:1 23142:1 23145:1 23151:1 23156:2 23157:1 23166:1 23167:1 23170:1 23178:1 23180:7 23181:3 23185:1 23186:1 23187:1 23193:1 23205:1 23214:1 23219:1 23221:1 23222:4 23244:1 23251:1 23279:1 23282:3 23332:1 23357:1 23368:1 23375:1 23386:1 23395:2 23399:2 23404:1 23408:3 23410:1 23444:1 23460:1 23466:1 23469:2 23478:1 23483:1 23486:1 23513:1 23563:2 23567:2 23569:2 23581:1 23594:1 23607:2 23615:1 23625:1 23630:1 23641:1 23643:1 23644:5 23651:1 23671:1 23674:1 23684:2 23690:1 23700:1 23731:1 23752:1 23779:8 23796:2 23802:1 23804:2 23809:1 23810:3 23831:2 23850:1 23856:1 23858:1 23862:2 23871:1 23878:1 23885:1 23893:1 23899:3 23903:1 23915:1 23979:1 24025:1 24053:1 24056:4 24068:1 24108:1 24142:2 24196:2 24200:1 24229:1 24286:1 24374:3 24404:1 24430:1 24447:1 24498:1 24500:1 24525:1 24601:1 24614:2 24631:1 24633:2 24644:1 24662:1 24682:1 24704:1 24726:2 24733:1 24738:2 24741:1 24742:1 24751:1 24764:1 24770:1 24772:1 24786:2 24799:1 24835:4 24868:1 24870:1 24884:1 24886:2 24904:1 24918:1 24930:1 24964:2 24994:1 25035:1 25065:1 25067:1 25080:1 25089:2 25120:1 25133:1 25181:1 25271:1 25310:1 25329:1 25331:1 25345:1 25348:1 25351:1 25355:1 25369:1 25388:1 25405:1 25406:1 25408:1 25481:2 25509:1 25522:1 25538:1 25572:1 25591:1 25603:5 25608:1 25635:6 25652:1 25664:1 25680:1 25682:1 25684:1 25685:1 25712:2 25724:1 25739:1 25775:1 25786:1 25799:11 25850:3 25916:1 25918:1 25921:1 25932:1 25935:2 25940:2 25949:1 25970:1 25972:1 25989:4 25996:1 25997:1 26015:1 26049:3 26051:1 26055:1 26064:1 26080:3 26083:1 26090:1 26094:1 26104:1 26110:1 26120:1 26157:1 26165:1 26215:1 26254:1 26278:1 26289:1 26301:1 26314:1 26318:1 26327:1 26381:2 26397:1 26439:1 26449:1 26453:2 26456:3 26504:6 26505:2 26548:1 26566:1 26591:2 26607:1 26626:1 26639:1 26689:1 26703:5 26729:3 26762:1 26763:1 26855:2 26857:3 26883:1 26889:1 26904:2 26929:1 26938:1 26959:3 26964:2 26992:1 27001:4 27039:3 27040:1 27062:1 27089:1 27152:1 27157:2 27162:1 27201:1 27207:1 27243:1 27262:1 27269:2 27279:1 27282:2 27324:1 27347:1 27350:1 27383:1 27406:1 27449:1 27498:2 27537:1 27580:1 27584:1 27603:1 27614:1 27624:1 27648:2 27661:1 27710:2 27732:1 27748:1 27760:1 27797:3 27808:1 27818:1 27854:1 27858:2 27881:1 27892:1 27896:2 27909:1 27917:3 27927:1 28004:1 28037:1 28049:1 28069:1 28079:1 28096:1 28100:1 28103:2 28138:1 28139:1 28146:1 28152:1 28165:3 28177:3 28207:1 28225:2 28241:1 28280:1 28290:2 28327:1 28342:2 28360:1 28379:1 28482:1 28483:1 28486:1 28496:1 28527:1 28561:2 28576:3 28597:1 28646:1 28690:1 28710:1 28727:1 28736:1 28780:1 28782:1 28818:1 28836:1 28843:1 28924:1 28948:3 29014:1 29025:1 29032:1 29052:1 29054:1 29063:1 29081:1 29088:1 29092:1 29098:1 29109:1 29119:1 29122:1 29128:1 29130:1 29133:1 29134:1 29137:2 29144:2 29152:1 29154:1 29158:1 29160:1 29188:1 29196:1 29197:2 29224:6 29227:1 29238:1 29249:2 29253:1 29259:1 29282:1 29284:1 29295:1 29304:1 29340:1 29344:1 29354:1 29360:1 29363:2 29386:1 29397:1 29415:1 29444:1 29447:2 29450:2 29469:1 29539:1 29576:1 29579:1 29590:1 29593:2 29596:1 29610:1 29661:1 29679:1 29689:1 29723:3 29729:1 29760:1 29778:1 29779:2 29781:2 29788:1 29789:1 29790:1 29825:2 29826:1 29837:1 29851:1 29860:1 29887:21 29888:1 29896:1 29910:2 29918:1 29938:6 29946:3 30001:1 30008:1 30039:2 30052:1 30062:1 30069:1 30078:4 30112:4 30118:1 30124:2 30130:1 30149:1 30159:1 30165:1 30194:1 30197:1 30199:2 30217:1 30243:1 30289:2 30329:1 30331:1 30350:1 30358:2 30377:1 30382:1 30388:1 30436:4 30438:1 30465:1 30476:1 30510:1 30513:3 30523:1 30534:1 30537:1 30538:1 30541:1 30660:1 30678:1 30692:4 30693:2 30694:2 30741:1 30754:1 30801:1 30842:1 30846:1 30864:2 30869:2 30874:1 30884:4 30907:2 30909:1 30925:1 30940:1 30953:1 30956:1 30981:1 30986:2 31003:2 31055:1 31066:1 31089:1 31093:3 31142:1 31154:1 31195:1 31208:1 31212:2 31216:1 31222:1 31238:1 31243:2 31246:1 31248:1 31250:1 31251:1 31287:1 31299:1 31313:1 31385:1 19 27:1 30:1 52:1 56:1 57:1 91:1 108:1 154:1 170:3 206:1 208:1 232:1 234:1 242:1 246:1 276:1 308:1 354:1 367:1 428:2 462:2 486:1 561:1 569:1 604:1 622:1 643:7 649:1 671:1 697:1 764:1 837:1 843:1 870:1 879:1 890:1 899:1 907:3 926:2 928:1 933:2 937:3 938:3 948:2 949:1 951:1 967:1 985:1 987:1 993:1 994:1 998:4 1009:1 1021:2 1022:1 1037:2 1038:1 1055:1 1080:4 1083:1 1137:1 1195:1 1213:1 1249:1 1262:1 1277:1 1285:1 1335:1 1336:1 1337:1 1348:2 1350:1 1366:1 1380:1 1389:1 1390:1 1395:1 1437:1 1458:1 1527:1 1533:1 1543:1 1559:1 1582:1 1584:1 1586:2 1592:2 1600:2 1607:2 1669:2 1670:1 1675:4 1690:2 1699:1 1712:1 1766:1 1795:3 1846:2 1855:1 1899:1 1906:1 1909:1 1922:1 1923:2 1928:2 1940:1 1948:1 1950:2 1956:1 1978:1 1979:1 2013:1 2018:1 2026:1 2027:1 2040:1 2087:1 2105:1 2113:1 2133:2 2190:1 2196:2 2198:2 2203:1 2205:2 2208:1 2214:1 2216:2 2251:1 2266:1 2267:4 2273:2 2297:1 2337:1 2345:1 2352:1 2369:1 2375:1 2384:2 2391:2 2396:1 2401:1 2402:2 2404:1 2410:2 2422:3 2425:2 2434:1 2505:1 2512:2 2528:4 2536:1 2548:1 2549:1 2584:1 2592:2 2616:1 2626:1 2653:1 2655:1 2669:1 2689:1 2690:1 2759:1 2760:1 2779:2 2790:1 2797:1 2811:1 2832:7 2838:2 2843:1 2859:1 2890:1 2905:1 2909:1 2962:2 2985:3 3005:1 3014:13 3023:8 3058:1 3065:4 3074:1 3090:1 3098:1 3102:3 3124:1 3265:1 3294:1 3296:1 3307:1 3336:1 3410:2 3423:2 3463:2 3477:1 3488:1 3489:4 3534:1 3542:1 3548:2 3570:1 3652:3 3653:1 3654:1 3666:1 3669:1 3700:1 3742:1 3752:1 3779:1 3788:1 3793:1 3794:1 3802:1 3813:1 3824:2 3844:1 3880:1 3882:1 3889:1 3895:1 3936:2 3943:5 3989:1 4022:1 4031:1 4055:2 4094:1 4100:1 4104:1 4126:3 4153:1 4173:1 4208:1 4227:1 4228:1 4229:3 4259:1 4283:1 4294:1 4340:3 4348:1 4366:1 4401:1 4409:1 4432:1 4450:1 4454:2 4456:1 4498:1 4558:3 4608:2 4613:2 4651:1 4664:1 4682:1 4684:1 4736:1 4748:1 4776:2 4780:1 4781:1 4816:1 4817:3 4818:1 4862:1 4868:1 4871:1 4876:1 4885:1 4888:1 4905:1 4906:2 4919:1 4927:1 4949:1 4969:1 4977:1 4996:1 5005:1 5028:1 5034:1 5039:1 5062:1 5065:3 5127:1 5132:5 5133:1 5183:3 5245:2 5247:1 5248:3 5264:4 5265:4 5269:1 5270:1 5271:1 5275:1 5276:3 5277:1 5284:2 5287:1 5291:3 5292:1 5293:1 5318:1 5320:1 5344:1 5350:1 5356:2 5365:1 5385:1 5436:1 5443:1 5481:1 5508:1 5535:1 5551:1 5574:1 5639:1 5666:1 5678:1 5686:2 5710:1 5712:1 5732:1 5748:1 5777:1 5784:1 5794:5 5815:1 5822:1 5824:1 5839:1 5889:2 5890:2 5913:1 5917:1 5952:1 5954:3 6036:1 6040:1 6061:1 6093:1 6099:1 6151:1 6196:3 6283:1 6301:1 6309:1 6315:2 6333:2 6345:2 6346:2 6348:10 6349:1 6355:3 6362:1 6378:2 6399:1 6408:1 6409:2 6444:1 6446:1 6452:1 6465:1 6468:1 6473:3 6474:1 6479:1 6488:2 6567:1 6568:1 6583:1 6588:3 6610:2 6645:1 6664:1 6670:1 6681:1 6683:1 6692:2 6693:1 6696:4 6697:1 6704:2 6707:1 6709:2 6715:1 6736:1 6745:1 6769:1 6827:1 6850:1 6852:1 6882:1 6886:1 6926:1 6965:1 7006:1 7013:3 7045:1 7052:1 7088:1 7113:1 7127:1 7128:2 7142:1 7151:1 7155:3 7165:1 7181:3 7186:2 7216:2 7221:3 7289:1 7305:1 7312:1 7314:2 7319:2 7346:1 7353:1 7355:1 7381:1 7382:1 7386:1 7435:1 7436:1 7450:1 7486:1 7489:1 7509:1 7533:1 7537:9 7540:1 7585:1 7594:2 7640:1 7658:1 7688:1 7691:1 7781:1 7845:2 7855:3 7864:2 7880:2 7886:1 7887:2 7919:1 7929:1 7943:1 7975:1 7989:1 8032:1 8041:1 8104:4 8105:2 8128:1 8130:3 8135:1 8160:1 8163:1 8172:15 8178:1 8194:1 8201:14 8204:4 8213:1 8267:1 8273:1 8283:1 8284:2 8315:1 8332:1 8333:1 8340:1 8357:1 8370:1 8400:1 8415:1 8416:1 8442:1 8443:1 8455:2 8581:1 8584:1 8598:2 8604:1 8622:1 8626:1 8648:1 8669:1 8689:2 8698:12 8728:3 8741:3 8786:1 8837:1 8849:2 8884:1 8892:1 8903:1 8913:1 8918:1 8927:2 8948:2 8952:2 8971:4 8976:1 8977:1 8979:1 8984:1 8985:1 8986:1 9012:1 9038:1 9057:4 9058:2 9061:2 9062:1 9064:1 9072:3 9077:1 9094:1 9106:1 9115:1 9130:1 9146:1 9148:1 9165:2 9177:1 9181:1 9192:1 9259:2 9326:1 9339:1 9372:1 9377:1 9385:2 9405:1 9431:1 9442:2 9470:1 9539:1 9563:1 9588:1 9593:1 9595:1 9602:2 9606:5 9628:1 9644:1 9667:1 9686:1 9715:1 9768:1 9779:7 9783:1 9791:1 9817:1 9855:1 9874:4 9885:1 9894:1 9921:1 9926:1 9931:1 9943:1 9944:1 9964:2 9990:1 10046:1 10091:1 10096:1 10105:1 10112:2 10114:1 10133:1 10167:1 10172:3 10185:1 10224:1 10235:5 10236:23 10238:2 10253:1 10272:1 10273:1 10289:1 10302:1 10318:1 10358:2 10369:4 10394:1 10415:1 10431:1 10439:1 10471:1 10543:1 10544:2 10554:1 10578:2 10594:1 10610:1 10611:4 10635:1 10640:1 10654:2 10669:1 10687:1 10699:1 10714:1 10727:1 10728:1 10736:3 10777:1 10796:1 10871:1 10901:3 10926:1 10940:1 10967:1 10971:3 11000:2 11003:1 11007:1 11037:1 11064:1 11091:1 11102:1 11144:1 11150:3 11158:1 11181:6 11207:1 11238:2 11256:2 11266:1 11267:1 11272:1 11275:1 11296:1 11333:3 11372:2 11377:7 11385:1 11388:1 11404:3 11405:2 11406:2 11462:3 11492:1 11493:1 11497:1 11501:1 11509:2 11586:1 11589:1 11614:2 11620:1 11632:4 11635:1 11651:1 11653:1 11678:1 11686:1 11689:1 11692:1 11697:1 11737:1 11751:2 11757:1 11759:2 11767:2 11769:1 11806:2 11830:1 11835:1 11841:2 11842:1 11852:1 11863:1 11871:1 11906:1 11928:2 11932:1 11938:1 11942:1 11976:1 11989:1 12004:1 12009:1 12021:1 12041:1 12067:1 12070:1 12072:1 12074:1 12088:1 12108:4 12119:1 12140:1 12151:1 12154:1 12165:1 12170:2 12181:1 12184:1 12219:1 12222:1 12235:2 12255:1 12268:1 12273:1 12289:1 12293:1 12304:1 12322:6 12324:1 12344:1 12346:2 12351:1 12352:1 12359:1 12373:1 12380:1 12383:1 12388:1 12398:1 12419:1 12427:2 12439:1 12449:5 12456:1 12462:1 12467:3 12480:1 12501:1 12517:1 12546:1 12591:3 12595:1 12610:1 12640:1 12668:1 12678:1 12680:2 12690:1 12691:1 12715:1 12719:1 12764:1 12771:1 12775:1 12828:1 12838:1 12857:1 12873:1 12891:1 12962:2 12999:1 13009:1 13042:1 13048:1 13050:1 13058:1 13124:1 13135:2 13143:2 13179:1 13198:1 13216:1 13229:1 13235:1 13251:2 13257:1 13425:8 13434:1 13446:2 13448:1 13475:4 13480:1 13482:2 13486:1 13493:1 13497:1 13531:3 13536:1 13538:1 13540:1 13552:1 13555:1 13558:1 13572:1 13597:1 13614:1 13623:1 13665:1 13691:2 13707:1 13765:1 13788:1 13829:1 13853:1 13869:1 13871:2 13878:2 13894:1 13906:1 13909:2 13945:3 13962:1 13963:1 13974:4 14005:1 14020:1 14033:2 14040:1 14051:1 14057:2 14067:1 14069:2 14075:1 14077:2 14103:1 14114:4 14148:1 14167:3 14185:1 14191:1 14212:1 14222:4 14225:1 14239:1 14245:1 14274:1 14282:1 14288:1 14307:1 14318:1 14323:1 14325:2 14337:1 14370:3 14372:1 14375:1 14377:1 14392:1 14415:1 14449:1 14460:2 14464:2 14468:3 14479:1 14489:1 14498:1 14536:1 14540:2 14544:1 14551:1 14580:2 14618:1 14627:1 14683:1 14691:1 14725:1 14769:2 14819:1 14832:1 14864:1 14872:1 14893:1 14911:1 14912:1 14919:1 14927:3 14933:1 14969:1 15004:1 15059:1 15119:1 15143:1 15171:1 15175:1 15193:1 15196:1 15202:1 15213:1 15225:2 15258:1 15262:1 15275:1 15298:1 15316:1 15346:1 15354:1 15368:1 15378:1 15381:1 15384:2 15391:1 15396:1 15401:1 15407:1 15410:2 15415:2 15438:2 15453:1 15457:1 15493:2 15505:1 15510:1 15525:1 15548:1 15550:2 15553:1 15591:1 15624:2 15642:1 15695:1 15706:1 15760:1 15762:1 15764:1 15765:1 15785:2 15826:2 15851:1 15853:3 15861:1 15894:1 15899:2 15918:1 15927:2 15934:1 15960:1 15994:1 16028:1 16095:1 16107:1 16118:1 16134:1 16144:1 16186:1 16262:1 16285:1 16313:1 16355:1 16363:1 16365:1 16383:1 16387:1 16402:1 16406:1 16411:2 16414:1 16415:1 16431:3 16457:2 16467:2 16475:3 16499:1 16502:1 16555:1 16575:1 16627:1 16634:1 16635:2 16641:4 16649:1 16667:1 16669:1 16671:2 16700:1 16723:1 16733:2 16738:1 16747:1 16799:1 16805:3 16819:3 16825:1 16829:1 16835:1 16854:1 16861:1 16907:1 16923:1 16946:1 16949:3 16962:1 16970:1 17060:2 17077:1 17083:2 17112:1 17116:2 17141:1 17147:1 17182:1 17188:2 17211:2 17212:1 17214:1 17216:1 17217:1 17220:1 17223:1 17231:2 17232:1 17237:1 17242:1 17267:1 17302:1 17305:2 17340:1 17419:2 17519:1 17520:1 17536:1 17543:1 17595:1 17642:1 17686:2 17688:1 17691:1 17702:1 17729:11 17765:1 17776:2 17803:4 17851:2 17898:2 17915:1 17917:1 17926:1 17954:1 17957:1 17961:1 17980:1 18014:1 18028:3 18031:1 18047:1 18054:4 18060:1 18076:3 18111:1 18112:1 18125:1 18126:2 18129:3 18158:1 18167:2 18171:2 18172:1 18188:1 18233:1 18299:1 18308:1 18313:1 18385:1 18413:1 18417:1 18429:1 18434:3 18447:1 18471:1 18505:1 18535:1 18536:2 18646:1 18682:1 18683:3 18700:1 18717:1 18740:1 18747:1 18782:2 18785:1 18825:1 18836:1 18843:2 18874:1 18882:3 18892:1 18894:1 18938:1 18951:2 18994:2 19085:1 19091:1 19093:1 19129:1 19160:1 19172:2 19190:2 19191:1 19195:1 19244:1 19306:5 19308:1 19315:1 19390:1 19413:1 19419:3 19434:1 19449:1 19480:1 19491:2 19492:1 19497:1 19503:1 19542:1 19559:1 19573:1 19577:1 19594:1 19605:2 19611:2 19633:1 19644:1378 19648:1 19673:3 19678:1 19690:1 19709:1 19805:2 19807:1 19814:1 19840:2 19845:1 19863:1 19871:1 19878:1 19880:1 19893:1 19895:1 19915:1 19926:1 19990:1 20072:1 20095:1 20121:1 20131:1 20138:1 20216:1 20218:1 20239:1 20290:1 20302:1 20303:1 20389:1 20393:1 20396:1 20412:1 20438:2 20460:3 20462:1 20464:1 20466:1 20476:1 20487:1 20498:2 20502:2 20547:1 20553:1 20554:1 20576:1 20588:1 20597:1 20604:1 20609:4 20622:1 20628:1 20630:4 20643:1 20674:1 20698:1 20703:1 20758:1 20769:2 20778:1 20786:1 20841:1 20853:1 20875:4 20884:2 20903:1 20906:1 20915:1 20919:1 20933:1 20943:1 20951:2 20980:1 20986:1 20989:2 20993:1 21015:1 21052:1 21066:1 21079:1 21106:1 21160:2 21182:1 21184:2 21185:1 21192:1 21197:2 21211:2 21212:1 21224:1 21246:4 21261:1 21286:1 21302:4 21316:1 21319:1 21341:5 21355:1 21365:4 21457:2 21462:1 21465:1 21484:2 21492:1 21511:1 21531:1 21545:1 21570:1 21627:3 21629:1 21668:2 21683:2 21741:1 21782:1 21785:1 21787:1 21807:1 21833:1 21857:1 21869:1 21879:1 21900:2 21927:1 21934:1 21990:1 22024:1 22027:1 22039:1 22043:3 22046:1 22048:1 22056:5 22059:1 22077:1 22102:1 22107:1 22149:1 22175:1 22197:2 22213:1 22255:2 22260:1 22262:1 22267:1 22296:1 22322:1 22327:1 22341:2 22414:1 22422:2 22426:1 22431:1 22443:1 22446:1 22513:1 22527:1 22552:1 22557:2 22601:1 22605:1 22610:1 22613:1 22649:1 22659:1 22680:2 22689:1 22710:1 22711:2 22736:1 22747:1 22749:1 22754:1 22764:1 22770:1 22782:2 22801:2 22809:2 22817:2 22831:2 22832:1 22844:1 22849:2 22855:1 22860:1 22867:1 22887:2 22891:1 22892:1 22935:1 22943:1 22970:1 22988:1 23000:1 23008:1 23014:1 23039:1 23095:2 23096:1 23109:1 23112:1 23142:1 23145:1 23151:1 23156:2 23157:1 23166:1 23167:2 23170:1 23178:1 23180:7 23181:3 23185:1 23186:1 23187:1 23193:1 23205:1 23214:1 23219:1 23221:1 23222:4 23244:1 23251:1 23279:1 23282:4 23332:1 23357:1 23368:1 23375:1 23386:1 23395:2 23399:2 23404:1 23408:3 23410:1 23444:1 23460:1 23466:1 23469:2 23478:1 23483:1 23486:1 23513:1 23563:2 23567:2 23569:2 23581:1 23594:1 23607:2 23615:1 23625:1 23630:1 23641:1 23643:1 23644:5 23651:1 23671:1 23674:1 23684:2 23690:1 23700:1 23731:1 23752:1 23779:8 23796:2 23802:1 23804:2 23809:1 23810:3 23831:2 23850:1 23856:1 23858:1 23862:2 23871:1 23878:1 23885:1 23893:1 23899:4 23903:1 23915:1 23979:1 24025:1 24053:1 24056:4 24068:1 24108:1 24142:2 24196:2 24200:1 24229:1 24286:1 24374:3 24404:1 24430:1 24447:1 24498:1 24500:1 24525:1 24601:1 24614:2 24631:1 24633:2 24644:1 24662:1 24682:1 24704:1 24726:2 24733:1 24738:2 24741:1 24742:1 24751:1 24764:1 24770:1 24772:1 24786:2 24799:1 24835:4 24868:1 24870:1 24884:1 24886:2 24904:1 24918:1 24930:1 24964:2 24994:1 25035:1 25065:1 25067:1 25080:1 25089:2 25120:1 25133:1 25181:1 25271:1 25310:1 25329:1 25331:1 25345:1 25348:1 25351:1 25355:1 25369:1 25388:1 25405:1 25406:1 25408:1 25481:2 25509:1 25522:1 25538:1 25572:1 25591:1 25603:5 25608:1 25635:6 25652:1 25664:1 25680:1 25682:1 25684:1 25685:1 25712:2 25724:1 25739:1 25775:1 25786:1 25799:11 25850:3 25916:1 25918:1 25921:1 25932:1 25935:2 25940:2 25949:1 25970:1 25972:1 25989:4 25996:1 25997:1 26015:1 26049:3 26051:1 26055:1 26064:1 26080:3 26083:1 26090:1 26094:1 26104:1 26110:1 26120:1 26157:1 26165:1 26215:1 26254:1 26278:1 26289:1 26301:1 26313:1 26314:1 26318:1 26327:1 26381:2 26397:1 26439:1 26449:1 26453:2 26456:3 26504:6 26505:2 26548:1 26566:1 26591:2 26607:1 26626:1 26639:1 26689:1 26703:6 26729:3 26762:1 26763:1 26855:2 26857:3 26883:1 26889:1 26904:2 26929:1 26938:1 26959:3 26964:2 26992:1 27001:4 27039:3 27040:1 27062:1 27089:1 27152:1 27157:2 27162:1 27201:1 27207:1 27243:1 27262:1 27269:2 27279:1 27282:2 27324:1 27347:1 27350:1 27383:1 27406:1 27449:1 27498:2 27537:1 27580:1 27584:1 27603:1 27614:1 27624:1 27648:2 27661:1 27710:2 27732:1 27748:1 27760:1 27797:3 27808:1 27818:1 27854:1 27858:2 27881:1 27892:1 27896:2 27909:1 27917:3 27927:1 28004:1 28037:1 28049:1 28069:1 28079:1 28096:1 28100:1 28103:2 28138:1 28139:1 28146:1 28152:1 28165:3 28177:3 28207:1 28225:2 28241:1 28280:1 28290:2 28327:1 28342:2 28360:1 28379:1 28482:1 28483:1 28486:1 28496:1 28527:1 28561:2 28576:3 28597:1 28646:1 28690:1 28710:1 28727:1 28736:1 28780:1 28782:1 28818:1 28836:1 28843:1 28924:1 28948:3 29014:1 29025:1 29032:1 29052:1 29054:1 29063:1 29081:1 29088:1 29092:1 29098:1 29109:1 29119:1 29122:1 29128:1 29130:1 29133:1 29134:1 29137:2 29144:2 29152:1 29154:1 29158:1 29160:1 29188:1 29196:1 29197:2 29224:6 29227:1 29238:1 29249:2 29253:1 29259:1 29282:1 29284:1 29295:1 29304:1 29340:1 29344:1 29354:1 29360:1 29363:2 29386:1 29397:1 29415:1 29444:1 29447:2 29450:2 29469:1 29539:1 29576:1 29579:1 29590:1 29593:2 29596:1 29610:1 29661:1 29679:1 29689:1 29723:3 29729:1 29760:1 29778:1 29779:2 29781:2 29788:1 29789:1 29790:1 29825:2 29826:1 29837:1 29851:1 29860:1 29887:21 29888:1 29896:1 29910:2 29918:1 29938:6 29946:4 30001:1 30008:1 30039:2 30052:1 30062:1 30069:1 30078:4 30112:4 30118:1 30124:2 30130:1 30149:1 30159:1 30165:1 30194:1 30197:1 30199:3 30217:1 30243:1 30289:2 30329:1 30331:1 30350:1 30358:2 30377:1 30382:1 30388:1 30436:4 30438:1 30465:1 30476:1 30510:1 30513:3 30523:1 30534:2 30537:1 30538:1 30541:1 30660:1 30678:1 30692:4 30693:2 30694:2 30741:1 30754:1 30801:1 30842:1 30846:1 30864:2 30869:2 30874:1 30884:5 30907:2 30909:1 30925:1 30940:1 30953:1 30956:1 30981:1 30986:2 31003:2 31055:1 31066:1 31089:1 31093:3 31142:1 31154:1 31195:1 31208:1 31212:2 31216:1 31222:1 31238:1 31243:2 31246:1 31248:1 31250:1 31251:1 31287:1 31299:1 31313:1 31385:1 19 27:1 30:1 52:1 56:1 57:1 91:1 108:1 154:1 170:3 206:1 208:1 232:1 234:1 242:1 246:1 276:1 308:1 354:1 367:1 428:2 462:2 486:1 561:1 569:1 604:1 616:1 622:1 643:7 649:1 671:1 697:1 764:1 837:1 843:1 870:1 879:1 890:1 899:1 907:3 926:2 928:1 933:2 937:3 938:3 948:2 949:1 951:1 967:1 985:1 987:1 993:1 994:1 998:4 1009:1 1021:2 1022:1 1037:2 1038:1 1055:1 1080:4 1083:1 1137:1 1195:1 1213:1 1249:1 1262:1 1277:1 1285:1 1335:1 1336:1 1337:1 1348:2 1350:1 1366:1 1380:1 1389:1 1390:1 1395:1 1437:1 1458:1 1527:1 1533:1 1543:1 1559:1 1582:1 1584:1 1586:2 1592:2 1600:2 1607:2 1669:2 1670:1 1675:4 1690:2 1699:1 1712:1 1766:1 1795:3 1846:2 1855:1 1899:1 1906:1 1909:1 1922:1 1923:2 1928:2 1940:1 1948:1 1950:2 1956:1 1978:1 1979:1 2013:1 2018:1 2026:1 2027:1 2040:1 2087:1 2105:1 2113:1 2133:2 2190:1 2196:2 2198:2 2203:1 2205:2 2208:1 2214:1 2216:2 2251:1 2266:1 2267:4 2273:2 2297:1 2337:1 2345:1 2352:1 2369:1 2375:1 2384:2 2391:2 2396:1 2401:1 2402:2 2404:1 2410:2 2422:3 2425:2 2434:1 2505:1 2510:1 2512:2 2528:4 2536:1 2548:1 2549:1 2584:1 2592:2 2616:1 2626:1 2653:1 2655:2 2669:1 2689:1 2690:1 2759:1 2760:1 2779:2 2790:1 2797:1 2811:1 2832:7 2838:2 2843:1 2859:1 2890:1 2905:1 2909:1 2943:1 2962:2 2985:3 3005:1 3014:14 3023:8 3058:1 3065:4 3074:1 3090:1 3098:1 3102:3 3124:1 3265:1 3294:1 3296:1 3307:1 3336:1 3410:2 3423:2 3463:2 3477:1 3488:1 3489:4 3534:1 3542:1 3548:2 3570:1 3652:3 3653:1 3654:1 3666:1 3669:1 3700:1 3742:1 3752:1 3779:2 3788:1 3793:1 3794:1 3802:1 3813:1 3824:2 3844:1 3880:1 3882:1 3889:1 3895:1 3936:2 3943:5 3989:1 4022:1 4031:1 4055:2 4094:1 4100:1 4104:1 4110:1 4126:3 4147:1 4153:1 4173:1 4208:1 4227:1 4228:1 4229:3 4259:1 4283:1 4294:1 4340:3 4348:1 4361:1 4366:1 4401:1 4409:1 4432:1 4450:1 4454:2 4456:1 4498:1 4558:3 4608:2 4613:2 4651:1 4664:1 4682:1 4684:1 4736:1 4748:1 4776:2 4780:1 4781:1 4816:1 4817:3 4818:1 4862:1 4868:1 4871:1 4876:1 4885:1 4888:1 4905:1 4906:2 4919:1 4927:1 4949:1 4969:1 4977:1 4996:1 5000:1 5005:1 5028:1 5034:1 5039:1 5062:1 5065:3 5127:1 5132:5 5133:1 5163:1 5183:3 5245:2 5247:1 5248:3 5264:4 5265:4 5269:1 5270:1 5271:1 5275:1 5276:3 5277:1 5284:2 5287:1 5291:3 5292:1 5293:1 5318:1 5320:1 5344:1 5350:1 5356:2 5365:1 5385:1 5436:1 5443:1 5481:1 5508:1 5535:1 5551:1 5574:1 5639:1 5666:1 5678:1 5686:2 5710:1 5712:1 5732:1 5748:1 5777:1 5784:1 5794:5 5815:1 5822:1 5824:1 5839:1 5889:2 5890:2 5913:1 5917:1 5952:1 5954:3 6036:1 6040:1 6061:1 6093:1 6099:1 6151:1 6196:3 6283:1 6301:1 6309:1 6315:2 6333:2 6345:3 6346:2 6348:10 6349:1 6350:1 6355:3 6362:1 6378:2 6399:1 6408:1 6409:2 6444:1 6446:1 6452:1 6465:1 6468:1 6473:3 6474:1 6479:1 6488:2 6567:1 6568:1 6583:1 6588:3 6610:2 6645:1 6664:1 6670:1 6681:1 6683:1 6692:2 6693:1 6696:4 6697:1 6704:2 6707:1 6709:2 6715:1 6736:1 6745:1 6769:1 6827:1 6850:1 6852:1 6882:1 6886:1 6926:1 6965:1 7006:1 7013:3 7045:1 7052:1 7088:1 7113:1 7127:1 7128:2 7142:1 7151:1 7155:3 7165:1 7181:3 7186:3 7216:2 7221:3 7289:1 7305:1 7312:1 7314:2 7319:2 7346:1 7353:1 7355:1 7381:1 7382:1 7386:1 7435:1 7436:1 7450:1 7486:1 7489:1 7509:1 7533:1 7535:1 7537:9 7540:1 7562:1 7585:1 7594:2 7640:1 7658:1 7688:1 7691:1 7781:1 7845:2 7855:3 7864:2 7880:2 7886:1 7887:2 7919:1 7929:1 7943:1 7975:1 7989:1 8032:1 8041:1 8104:4 8105:2 8128:1 8130:3 8135:1 8160:1 8163:1 8172:15 8178:1 8194:1 8201:15 8204:4 8213:1 8267:1 8273:1 8283:1 8284:2 8315:1 8332:1 8333:1 8340:1 8357:1 8370:1 8400:1 8415:1 8416:1 8442:1 8443:1 8455:2 8581:1 8584:1 8598:2 8604:1 8622:1 8626:1 8648:1 8669:1 8689:2 8698:12 8728:3 8741:3 8786:1 8837:1 8849:2 8884:1 8892:1 8903:1 8913:1 8918:1 8927:2 8948:2 8952:2 8971:4 8976:2 8977:1 8979:1 8984:1 8985:1 8986:1 9012:1 9038:1 9057:4 9058:2 9061:2 9062:1 9064:1 9072:3 9077:1 9094:1 9106:1 9115:1 9120:1 9130:1 9146:1 9148:1 9165:2 9177:1 9181:1 9192:1 9259:2 9326:1 9339:1 9372:1 9377:2 9385:2 9405:1 9431:1 9442:2 9470:1 9539:1 9563:1 9588:1 9593:1 9595:1 9602:2 9606:5 9628:1 9644:1 9667:1 9686:1 9715:1 9768:1 9779:7 9783:1 9791:1 9817:1 9855:1 9874:4 9885:1 9894:1 9921:1 9926:1 9931:1 9943:1 9944:1 9964:2 9990:1 10046:1 10091:1 10096:1 10105:1 10112:2 10114:1 10133:1 10167:1 10172:3 10185:1 10224:1 10235:7 10236:27 10238:2 10253:2 10272:1 10273:1 10289:1 10302:1 10318:1 10358:2 10369:4 10382:1 10394:1 10415:1 10431:1 10439:1 10440:1 10471:1 10543:1 10544:2 10554:1 10578:2 10594:1 10610:1 10611:4 10635:1 10640:1 10654:2 10669:1 10687:1 10699:1 10714:1 10727:1 10728:1 10736:4 10777:1 10796:1 10871:1 10901:3 10926:1 10940:1 10967:1 10971:3 11000:2 11003:1 11007:1 11030:1 11037:1 11064:1 11091:1 11102:1 11144:1 11150:3 11158:1 11181:6 11207:1 11238:2 11256:2 11266:1 11267:1 11272:1 11275:1 11296:1 11311:1 11333:3 11372:2 11377:7 11385:1 11388:1 11404:3 11405:2 11406:2 11462:3 11492:1 11493:1 11497:1 11501:1 11509:2 11536:1 11586:1 11589:1 11614:2 11620:1 11632:4 11635:1 11651:1 11653:1 11678:1 11686:1 11689:1 11692:1 11697:1 11737:1 11751:2 11757:1 11759:2 11767:2 11769:1 11806:2 11830:1 11835:1 11841:2 11842:1 11852:1 11863:1 11871:1 11906:1 11914:1 11928:2 11932:1 11938:1 11942:1 11976:1 11989:1 12004:1 12009:1 12021:1 12041:1 12067:1 12070:1 12072:1 12074:1 12088:1 12108:4 12119:1 12140:1 12151:1 12154:1 12165:1 12170:2 12181:1 12184:1 12219:1 12222:1 12235:2 12255:1 12268:1 12273:1 12289:1 12293:1 12304:1 12322:6 12324:1 12344:1 12346:2 12351:1 12352:1 12359:1 12373:1 12380:1 12383:1 12388:1 12398:1 12419:1 12427:2 12439:1 12449:6 12456:1 12462:1 12467:3 12480:1 12501:1 12517:1 12546:1 12591:3 12595:1 12610:1 12640:1 12668:1 12678:1 12680:2 12690:1 12691:1 12715:1 12719:1 12764:1 12771:1 12775:1 12828:1 12838:1 12857:1 12873:1 12891:1 12962:2 12999:1 13009:1 13042:1 13048:1 13050:1 13058:1 13124:1 13135:2 13143:2 13179:1 13198:1 13216:1 13229:1 13235:1 13251:2 13257:1 13425:8 13434:1 13446:2 13448:1 13475:4 13480:1 13482:2 13486:1 13493:1 13497:1 13531:3 13536:1 13538:1 13540:1 13543:1 13552:1 13555:1 13558:1 13572:1 13597:1 13614:1 13623:1 13665:1 13691:2 13707:1 13765:1 13788:1 13829:1 13853:1 13869:1 13871:2 13878:2 13894:1 13906:1 13909:2 13945:3 13962:1 13963:1 13974:4 14005:1 14020:1 14033:2 14040:1 14051:1 14057:2 14067:1 14069:2 14075:1 14077:2 14103:1 14114:4 14148:1 14167:3 14185:1 14191:1 14212:1 14222:4 14225:1 14239:1 14245:1 14274:1 14282:1 14288:1 14307:1 14318:1 14323:1 14325:2 14337:1 14370:3 14372:1 14375:1 14377:1 14392:1 14415:1 14449:1 14460:2 14464:2 14468:3 14479:1 14489:1 14498:1 14536:1 14540:2 14544:1 14551:1 14580:2 14617:1 14618:1 14627:1 14683:1 14691:1 14725:1 14769:2 14819:1 14832:1 14864:1 14872:1 14893:1 14911:1 14912:1 14919:1 14927:3 14933:1 14969:1 15004:1 15059:1 15119:1 15143:1 15171:1 15175:1 15193:1 15196:1 15202:1 15213:1 15225:2 15245:1 15258:1 15262:1 15275:1 15298:1 15316:1 15346:1 15354:1 15368:1 15378:1 15381:1 15384:2 15391:1 15396:1 15401:1 15407:1 15410:2 15415:2 15438:2 15453:1 15457:1 15493:2 15505:1 15510:1 15525:1 15548:1 15550:2 15553:1 15591:1 15624:2 15642:1 15695:1 15706:1 15760:1 15762:1 15764:1 15765:1 15785:2 15826:2 15851:1 15853:3 15861:1 15894:1 15899:2 15918:1 15927:2 15934:1 15960:1 15994:1 16028:1 16095:1 16107:1 16118:1 16134:1 16144:1 16186:1 16262:1 16285:1 16313:1 16355:1 16363:1 16365:1 16383:1 16387:1 16402:1 16406:1 16411:2 16414:1 16415:1 16431:3 16457:2 16467:2 16475:3 16499:1 16502:1 16555:1 16575:1 16627:1 16634:1 16635:2 16641:4 16649:1 16667:1 16669:1 16671:2 16700:1 16723:1 16733:2 16738:1 16747:1 16799:1 16805:3 16819:3 16825:1 16829:1 16835:1 16854:1 16861:1 16907:1 16923:1 16946:1 16949:3 16962:1 16970:1 17060:2 17077:1 17083:2 17112:1 17116:2 17141:1 17147:1 17182:1 17188:2 17211:2 17212:1 17214:1 17216:1 17217:1 17220:1 17223:1 17231:2 17232:1 17237:1 17242:1 17267:1 17302:1 17305:2 17340:1 17419:2 17519:1 17520:1 17536:1 17543:1 17595:1 17642:1 17686:2 17688:1 17691:1 17702:1 17729:11 17765:1 17776:2 17803:4 17851:2 17898:2 17899:1 17915:1 17917:1 17926:1 17954:1 17957:1 17961:1 17980:1 18014:1 18028:3 18031:1 18047:1 18054:4 18060:1 18076:3 18111:1 18112:1 18125:1 18126:2 18129:3 18158:1 18167:2 18171:2 18172:1 18188:1 18233:1 18299:1 18308:1 18313:1 18385:1 18413:1 18417:1 18429:1 18434:3 18447:1 18471:1 18505:1 18535:1 18536:2 18646:1 18682:1 18683:3 18700:1 18717:1 18740:1 18747:1 18782:2 18785:1 18825:1 18836:1 18843:2 18874:1 18882:3 18892:1 18894:1 18938:1 18951:2 18994:2 19085:1 19091:1 19093:1 19129:1 19160:1 19172:2 19190:2 19191:1 19195:1 19244:1 19306:5 19308:1 19315:1 19390:1 19413:1 19419:3 19434:1 19449:1 19480:1 19491:2 19492:1 19497:1 19503:1 19542:1 19559:1 19573:1 19577:1 19594:1 19605:2 19611:2 19633:1 19644:1409 19648:1 19673:3 19678:1 19690:1 19709:1 19805:2 19807:1 19814:1 19840:2 19845:1 19863:1 19871:1 19878:1 19880:1 19893:1 19895:1 19915:1 19926:1 19990:1 20014:1 20072:1 20095:1 20121:1 20131:1 20138:1 20216:1 20218:1 20239:1 20290:1 20302:1 20303:1 20389:1 20393:1 20396:1 20412:1 20438:2 20460:3 20462:1 20464:1 20466:1 20476:1 20487:1 20498:2 20502:2 20547:1 20553:1 20554:1 20576:1 20588:1 20597:1 20604:1 20609:4 20622:1 20628:1 20630:4 20643:1 20674:1 20698:1 20703:1 20758:1 20769:2 20778:1 20786:1 20841:1 20853:1 20875:4 20884:2 20903:1 20906:1 20915:1 20919:1 20933:1 20943:1 20951:2 20955:1 20980:1 20986:1 20989:2 20993:1 20998:1 21001:1 21015:1 21052:1 21066:1 21079:1 21106:1 21160:2 21182:1 21184:2 21185:1 21192:1 21197:2 21211:2 21212:1 21224:1 21246:4 21254:1 21261:1 21286:1 21298:1 21302:4 21316:1 21319:1 21341:6 21355:1 21365:4 21457:2 21462:1 21465:1 21484:2 21492:1 21511:1 21531:1 21545:1 21570:1 21627:3 21629:1 21668:2 21683:2 21741:1 21782:1 21785:1 21787:1 21807:1 21833:1 21857:1 21869:1 21879:1 21900:2 21927:1 21934:1 21990:1 22024:1 22027:1 22039:1 22043:3 22046:1 22048:1 22056:6 22059:1 22077:1 22102:1 22107:1 22113:1 22149:1 22175:1 22197:2 22213:1 22255:2 22260:1 22262:1 22267:1 22296:1 22322:1 22327:1 22341:2 22414:1 22422:2 22426:1 22431:1 22443:1 22446:1 22462:1 22513:1 22527:1 22552:1 22557:2 22601:1 22605:1 22610:1 22613:1 22649:1 22659:1 22680:2 22689:1 22710:1 22711:2 22736:1 22747:1 22749:1 22754:1 22764:1 22770:1 22782:2 22801:2 22809:2 22817:2 22831:2 22832:1 22844:1 22849:2 22855:1 22860:1 22864:1 22867:1 22887:2 22891:1 22892:1 22911:1 22935:1 22943:1 22954:1 22970:1 22988:1 23000:1 23008:1 23014:1 23039:1 23095:2 23096:1 23109:1 23112:1 23142:1 23145:1 23151:1 23156:2 23157:1 23166:1 23167:2 23170:1 23178:1 23180:8 23181:3 23185:1 23186:1 23187:1 23193:1 23205:1 23214:1 23219:1 23221:1 23222:4 23244:1 23251:1 23279:1 23282:4 23332:1 23357:1 23368:1 23375:1 23386:1 23395:2 23399:2 23404:1 23408:3 23410:1 23444:1 23460:1 23466:1 23469:2 23478:1 23483:1 23486:1 23513:1 23563:2 23567:2 23569:2 23581:1 23594:1 23607:2 23615:1 23625:1 23630:1 23641:1 23643:1 23644:5 23651:1 23671:1 23674:1 23684:2 23690:1 23700:1 23731:1 23752:1 23779:8 23796:2 23802:1 23804:2 23807:1 23809:1 23810:3 23831:2 23850:1 23856:1 23858:1 23862:2 23871:1 23878:1 23885:1 23893:1 23899:4 23903:1 23915:1 23979:1 24025:1 24053:1 24056:4 24068:1 24108:1 24142:2 24196:2 24200:1 24229:1 24286:1 24374:3 24404:1 24430:1 24447:1 24498:1 24500:1 24525:1 24601:1 24614:2 24631:1 24633:2 24644:1 24662:1 24682:1 24704:1 24726:2 24733:1 24738:2 24741:1 24742:1 24751:1 24764:1 24770:1 24772:1 24786:2 24799:1 24835:4 24868:1 24870:1 24884:1 24886:2 24904:1 24918:1 24930:1 24964:2 24994:1 25035:1 25065:1 25067:1 25080:1 25089:2 25120:1 25133:1 25181:1 25271:1 25310:1 25329:1 25331:1 25345:1 25348:1 25351:1 25355:1 25369:1 25388:1 25405:1 25406:1 25408:1 25481:2 25509:1 25522:1 25538:1 25572:1 25591:1 25603:5 25608:1 25635:6 25652:1 25664:1 25680:1 25682:1 25684:1 25685:1 25712:2 25724:1 25739:1 25775:1 25786:1 25799:11 25850:3 25916:1 25918:1 25921:1 25932:1 25935:2 25940:2 25949:1 25970:1 25972:1 25989:4 25996:1 25997:1 26015:1 26049:3 26051:1 26055:1 26064:1 26080:3 26083:1 26090:1 26094:1 26104:1 26110:1 26120:1 26157:1 26165:1 26215:1 26254:1 26278:1 26289:1 26301:1 26313:1 26314:1 26318:1 26327:1 26381:2 26397:1 26439:1 26449:1 26453:2 26456:3 26504:6 26505:2 26548:1 26566:1 26591:2 26607:1 26626:1 26639:1 26689:1 26703:6 26729:3 26762:1 26763:1 26855:2 26857:3 26883:1 26889:1 26904:2 26929:1 26930:1 26938:2 26959:3 26964:2 26992:1 27001:4 27039:3 27040:1 27062:1 27089:1 27152:1 27157:2 27162:1 27201:1 27207:1 27243:1 27262:1 27269:2 27279:1 27282:2 27324:1 27347:1 27350:1 27383:1 27406:1 27449:1 27498:2 27537:1 27580:1 27584:1 27603:1 27614:1 27624:1 27648:2 27661:1 27710:2 27732:1 27748:1 27760:1 27797:3 27808:1 27818:1 27854:1 27858:2 27881:1 27892:1 27896:2 27909:1 27917:3 27927:1 28004:1 28037:1 28049:1 28069:1 28079:1 28096:1 28100:1 28103:2 28138:1 28139:1 28146:1 28152:1 28165:3 28177:3 28207:1 28225:2 28241:1 28280:1 28290:2 28327:1 28342:2 28360:1 28379:2 28482:1 28483:1 28486:1 28496:1 28527:1 28561:2 28576:3 28597:1 28646:1 28690:1 28710:1 28727:1 28736:1 28780:1 28782:1 28818:1 28836:1 28843:1 28924:1 28948:3 29010:1 29014:1 29020:1 29025:1 29032:1 29052:1 29054:1 29063:1 29081:1 29088:1 29092:1 29098:1 29109:1 29111:1 29119:1 29122:1 29128:1 29130:1 29133:1 29134:1 29137:2 29144:2 29152:1 29154:1 29158:1 29160:1 29188:1 29196:1 29197:2 29224:6 29227:1 29238:1 29249:2 29253:1 29259:1 29282:1 29284:1 29295:1 29304:1 29340:1 29344:1 29354:1 29360:1 29363:2 29386:1 29397:1 29415:1 29444:1 29447:2 29450:2 29469:1 29539:1 29576:1 29579:1 29590:1 29593:2 29596:1 29610:1 29661:1 29679:1 29689:1 29723:3 29729:1 29760:1 29778:1 29779:2 29781:2 29788:1 29789:1 29790:1 29804:1 29825:2 29826:1 29837:1 29851:1 29860:1 29887:21 29888:1 29893:1 29896:1 29910:2 29918:1 29933:1 29938:6 29946:4 30001:1 30008:1 30039:2 30052:1 30062:1 30069:1 30078:4 30112:4 30118:1 30124:2 30130:1 30149:1 30159:1 30165:1 30194:1 30197:1 30199:3 30217:1 30243:1 30289:2 30329:1 30331:1 30350:1 30358:2 30377:1 30382:1 30388:1 30436:4 30438:1 30465:1 30476:1 30510:1 30513:3 30523:1 30534:2 30537:1 30538:1 30541:1 30660:1 30678:1 30692:4 30693:2 30694:2 30741:1 30754:1 30801:1 30842:1 30846:1 30864:2 30869:2 30874:1 30884:5 30907:2 30909:1 30925:1 30940:1 30953:1 30956:1 30981:1 30986:3 31003:2 31035:1 31055:1 31066:1 31089:1 31093:3 31142:1 31154:1 31195:1 31208:1 31212:2 31216:1 31222:1 31238:1 31243:2 31246:1 31248:1 31250:1 31251:1 31287:1 31299:1 31313:1 31373:1 31385:1 19 1:1 27:1 30:1 52:1 56:1 57:1 91:1 108:1 154:1 170:3 206:1 208:1 232:1 234:1 242:1 246:1 276:1 308:1 354:1 367:1 428:3 462:2 486:1 561:1 569:1 604:1 616:1 622:1 643:7 649:1 671:1 697:1 764:1 837:1 843:1 870:1 879:1 890:1 899:1 907:3 926:2 928:1 932:1 933:2 937:3 938:3 948:2 949:1 951:1 967:1 985:1 987:1 993:1 994:1 998:4 1009:1 1021:2 1022:1 1037:2 1038:1 1055:1 1080:4 1083:1 1137:1 1195:1 1213:1 1249:1 1262:1 1277:1 1285:1 1335:1 1336:1 1337:1 1348:2 1350:1 1366:1 1380:1 1389:1 1390:1 1395:1 1396:1 1437:1 1458:1 1527:1 1533:1 1543:1 1559:1 1582:1 1584:1 1586:3 1592:2 1600:2 1607:2 1669:2 1670:1 1675:4 1690:2 1699:1 1712:1 1766:1 1795:3 1828:1 1846:2 1855:1 1899:1 1906:1 1909:1 1922:1 1923:2 1928:2 1940:1 1948:1 1950:2 1956:1 1978:1 1979:1 2013:1 2018:1 2026:1 2027:1 2040:1 2087:1 2105:1 2113:1 2133:2 2190:1 2196:2 2198:2 2203:1 2205:2 2208:1 2214:1 2216:2 2251:1 2266:1 2267:4 2273:2 2297:1 2337:1 2345:1 2352:1 2369:1 2375:1 2384:2 2391:2 2396:1 2401:1 2402:2 2404:1 2410:2 2422:3 2425:2 2434:1 2505:1 2510:1 2512:2 2528:4 2536:1 2548:1 2549:1 2584:1 2592:2 2616:1 2626:1 2653:1 2655:2 2669:1 2689:1 2690:1 2759:1 2760:1 2779:2 2790:1 2797:1 2811:2 2832:7 2838:2 2843:1 2859:1 2890:1 2905:1 2909:1 2943:1 2962:2 2985:3 2989:1 3005:1 3014:15 3023:9 3058:1 3065:5 3074:1 3090:1 3098:1 3102:3 3124:1 3265:1 3294:1 3296:1 3307:1 3336:1 3410:2 3423:2 3463:2 3477:1 3488:1 3489:4 3534:1 3542:1 3548:2 3570:1 3573:1 3652:3 3653:1 3654:1 3666:1 3669:1 3700:1 3742:1 3752:1 3779:2 3788:1 3793:1 3794:1 3802:1 3813:1 3824:2 3844:1 3879:1 3880:1 3882:1 3889:1 3895:1 3936:2 3943:5 3989:1 4022:1 4031:1 4055:2 4094:1 4100:1 4104:1 4110:1 4126:3 4147:1 4153:1 4173:1 4208:1 4227:1 4228:1 4229:3 4259:1 4283:1 4294:1 4340:3 4348:1 4361:1 4366:1 4389:1 4401:1 4409:1 4432:1 4450:1 4452:1 4454:3 4456:1 4498:1 4558:3 4608:2 4613:2 4651:1 4664:1 4682:1 4683:1 4684:1 4736:1 4748:1 4776:2 4780:1 4781:1 4816:1 4817:3 4818:1 4862:1 4868:1 4871:1 4876:1 4885:1 4888:1 4905:1 4906:2 4919:1 4927:1 4949:1 4969:1 4977:1 4996:1 5000:1 5005:1 5028:1 5034:1 5039:1 5062:1 5065:3 5127:1 5132:6 5133:1 5163:1 5183:3 5245:2 5247:1 5248:3 5264:4 5265:4 5266:1 5269:1 5270:1 5271:1 5275:1 5276:3 5277:1 5284:2 5287:1 5291:3 5292:1 5293:1 5318:1 5320:1 5344:1 5350:1 5356:2 5365:1 5385:1 5436:1 5443:1 5481:1 5508:1 5535:1 5551:1 5574:1 5639:1 5666:1 5678:1 5686:2 5710:1 5712:1 5732:1 5748:1 5777:1 5784:1 5794:5 5815:1 5822:1 5824:1 5839:1 5889:2 5890:2 5913:1 5917:1 5952:1 5954:3 6036:1 6040:1 6061:1 6093:1 6099:1 6151:1 6196:3 6283:1 6301:1 6309:1 6315:2 6333:2 6345:3 6346:2 6348:10 6349:1 6350:1 6355:3 6362:1 6378:2 6399:1 6408:1 6409:2 6444:1 6446:1 6452:1 6465:1 6468:1 6473:3 6474:1 6479:1 6488:2 6567:1 6568:1 6583:1 6588:3 6610:2 6645:1 6664:1 6670:1 6681:1 6683:1 6692:2 6693:1 6696:4 6697:1 6704:2 6707:1 6709:2 6715:1 6736:1 6745:1 6769:1 6827:1 6850:1 6852:1 6882:2 6886:1 6926:1 6965:1 7006:1 7013:3 7033:1 7045:1 7052:1 7088:1 7113:1 7120:1 7127:1 7128:2 7142:1 7151:1 7155:3 7165:1 7181:3 7186:3 7216:2 7221:3 7289:1 7305:1 7312:1 7314:2 7319:2 7332:1 7346:1 7353:1 7355:1 7381:2 7382:1 7386:1 7435:1 7436:1 7450:1 7486:1 7489:1 7509:1 7533:1 7535:1 7537:10 7540:1 7562:1 7585:1 7594:2 7640:1 7658:1 7688:1 7691:1 7781:1 7845:2 7855:3 7864:2 7880:2 7886:1 7887:2 7919:1 7929:1 7943:1 7975:1 7989:1 8032:1 8041:1 8104:4 8105:2 8128:1 8130:3 8135:1 8160:1 8163:1 8172:15 8178:1 8188:1 8194:1 8201:17 8204:5 8213:1 8267:1 8273:1 8283:1 8284:2 8315:1 8332:1 8333:1 8340:1 8357:1 8370:1 8400:1 8415:2 8416:1 8442:1 8443:1 8455:2 8565:1 8581:1 8584:1 8598:2 8604:1 8622:1 8626:1 8648:1 8669:1 8689:2 8698:12 8728:3 8741:3 8786:1 8837:1 8849:2 8884:1 8892:1 8903:1 8913:1 8918:1 8927:2 8948:2 8952:2 8971:4 8976:2 8977:1 8979:1 8984:1 8985:1 8986:1 9012:1 9038:1 9057:4 9058:2 9061:2 9062:1 9064:2 9071:1 9072:3 9077:1 9094:1 9106:1 9115:1 9120:1 9130:1 9146:1 9148:1 9165:2 9177:1 9181:1 9192:1 9259:2 9326:1 9339:1 9372:1 9377:2 9385:2 9405:1 9431:1 9442:2 9470:1 9539:1 9563:1 9588:1 9593:1 9595:1 9602:2 9606:5 9628:1 9644:1 9667:1 9686:1 9715:1 9768:1 9779:7 9783:1 9791:1 9798:1 9817:1 9855:1 9874:4 9885:1 9894:1 9921:1 9926:1 9931:1 9943:1 9944:1 9964:2 9990:1 10046:1 10091:1 10096:1 10105:1 10112:2 10114:1 10133:1 10167:1 10172:3 10185:1 10224:1 10235:7 10236:27 10238:2 10253:2 10272:1 10273:1 10289:1 10293:1 10302:1 10318:1 10358:2 10369:4 10382:1 10394:1 10415:1 10431:1 10439:1 10440:1 10471:1 10543:1 10544:2 10554:1 10578:2 10594:1 10610:1 10611:4 10635:1 10640:1 10654:2 10669:1 10687:1 10699:1 10714:1 10727:1 10728:1 10736:4 10759:1 10777:1 10796:1 10871:1 10901:3 10926:1 10940:1 10943:1 10967:2 10971:4 11000:2 11003:1 11007:1 11030:1 11037:1 11064:1 11091:1 11102:1 11144:1 11150:3 11158:1 11181:6 11207:1 11238:2 11256:2 11266:1 11267:1 11272:1 11275:1 11296:1 11311:1 11333:3 11372:2 11377:7 11385:1 11388:1 11404:3 11405:2 11406:2 11454:1 11462:3 11492:1 11493:1 11497:1 11501:1 11509:2 11530:1 11536:1 11586:1 11589:1 11614:2 11620:1 11632:4 11635:1 11651:1 11653:1 11678:1 11686:1 11689:1 11692:1 11697:1 11737:1 11751:2 11757:1 11759:2 11767:2 11769:1 11806:2 11830:1 11835:1 11841:2 11842:1 11852:1 11863:1 11871:1 11906:1 11914:1 11928:2 11932:1 11938:1 11942:1 11976:1 11989:1 12004:1 12009:1 12021:1 12041:1 12067:1 12070:1 12072:1 12074:1 12088:1 12108:4 12119:1 12140:1 12151:1 12154:1 12165:1 12170:2 12181:2 12184:1 12219:1 12222:1 12235:2 12255:1 12268:1 12273:1 12289:1 12293:1 12304:2 12322:6 12324:1 12330:1 12344:1 12346:2 12351:1 12352:1 12359:1 12373:1 12380:1 12383:1 12388:2 12398:1 12419:1 12427:2 12439:2 12449:6 12456:1 12462:1 12467:3 12480:1 12501:1 12517:1 12546:1 12591:4 12595:1 12610:1 12640:1 12668:1 12678:1 12680:2 12690:1 12691:1 12715:1 12719:1 12752:1 12764:1 12771:1 12775:1 12828:1 12838:1 12846:1 12857:1 12873:1 12891:1 12962:2 12999:1 13009:1 13042:1 13048:1 13050:1 13058:1 13124:1 13135:2 13143:2 13179:1 13198:1 13216:1 13229:1 13235:1 13251:2 13257:1 13425:9 13434:1 13446:2 13448:1 13475:4 13480:1 13482:2 13486:1 13493:1 13497:1 13531:3 13536:1 13538:1 13540:1 13543:1 13552:1 13555:1 13558:1 13572:1 13597:1 13614:1 13623:1 13665:1 13691:2 13707:1 13765:1 13788:1 13829:1 13853:1 13855:1 13869:1 13871:2 13878:2 13894:1 13906:1 13909:3 13945:3 13962:1 13963:1 13974:4 14005:1 14020:1 14033:2 14040:1 14051:1 14057:2 14067:1 14069:2 14075:1 14077:2 14103:1 14114:4 14148:1 14167:3 14185:1 14191:1 14212:1 14222:4 14225:1 14239:1 14245:1 14274:1 14282:1 14288:1 14307:1 14318:1 14323:1 14325:2 14337:1 14370:3 14372:1 14375:1 14377:1 14392:1 14415:1 14449:1 14460:3 14464:2 14468:3 14479:1 14489:1 14498:1 14536:1 14540:2 14544:1 14551:1 14580:2 14617:1 14618:1 14627:1 14641:1 14683:1 14691:1 14725:1 14735:1 14769:2 14795:1 14819:1 14832:1 14864:1 14872:1 14893:1 14911:1 14912:1 14919:1 14927:3 14933:1 14969:1 15004:1 15059:1 15119:1 15143:1 15171:1 15175:1 15193:1 15196:1 15202:1 15213:1 15225:2 15231:1 15244:1 15245:2 15258:1 15262:1 15275:1 15298:1 15316:1 15346:1 15354:1 15368:1 15378:1 15381:1 15384:2 15391:1 15396:1 15401:1 15407:1 15410:2 15415:2 15438:2 15453:1 15457:1 15493:2 15505:1 15510:1 15525:1 15548:1 15550:2 15553:1 15591:1 15624:2 15642:1 15695:1 15706:1 15760:1 15762:1 15764:1 15765:1 15785:2 15826:2 15851:1 15853:3 15861:1 15894:1 15899:2 15918:1 15927:2 15934:1 15960:1 15994:1 16028:1 16095:1 16107:1 16118:1 16134:1 16144:1 16186:1 16262:1 16285:1 16313:1 16355:1 16363:1 16365:1 16383:1 16387:1 16402:1 16406:1 16411:2 16414:1 16415:1 16431:3 16457:2 16467:2 16475:3 16499:1 16502:1 16555:1 16575:1 16627:1 16634:2 16635:2 16641:4 16649:1 16667:1 16669:1 16671:2 16700:1 16723:1 16733:2 16738:1 16747:1 16799:1 16805:3 16819:3 16825:1 16829:1 16835:1 16854:1 16861:1 16907:1 16923:1 16946:1 16949:3 16962:1 16970:1 17060:2 17077:1 17083:2 17112:1 17116:2 17141:1 17147:1 17182:1 17188:2 17211:2 17212:1 17214:1 17216:1 17217:1 17220:1 17223:1 17231:2 17232:1 17237:1 17242:1 17267:1 17302:1 17305:2 17340:1 17419:2 17519:1 17520:1 17536:1 17543:1 17595:1 17629:1 17642:1 17686:2 17688:1 17691:1 17702:1 17729:11 17765:1 17776:2 17803:5 17851:2 17898:2 17899:1 17915:1 17917:1 17926:1 17954:1 17957:1 17961:1 17980:1 18014:1 18028:3 18031:1 18044:1 18047:1 18054:4 18060:1 18076:3 18111:1 18112:1 18125:1 18126:2 18129:3 18158:1 18167:2 18171:2 18172:1 18188:1 18233:1 18248:1 18299:1 18308:1 18313:1 18385:1 18413:1 18417:1 18429:1 18434:3 18447:1 18471:1 18505:1 18535:1 18536:2 18646:1 18682:1 18683:3 18700:1 18717:1 18740:1 18747:1 18782:2 18785:1 18825:1 18836:1 18843:2 18874:1 18882:3 18892:1 18894:1 18938:1 18951:2 18994:2 19085:1 19091:1 19093:1 19129:1 19144:1 19160:1 19172:2 19190:2 19191:1 19195:1 19244:1 19306:5 19308:1 19315:1 19390:1 19413:1 19419:3 19434:1 19449:1 19480:1 19491:2 19492:1 19497:1 19503:1 19542:1 19559:1 19573:1 19577:1 19594:1 19605:2 19611:2 19633:1 19644:1451 19648:1 19673:3 19678:1 19690:1 19709:1 19805:2 19807:1 19814:1 19840:2 19845:1 19863:1 19871:1 19878:2 19880:1 19893:2 19895:1 19915:1 19926:1 19990:1 20014:1 20072:1 20095:1 20121:1 20131:1 20138:1 20216:1 20218:1 20239:1 20290:1 20302:1 20303:1 20389:1 20393:1 20396:1 20412:1 20438:2 20460:3 20462:1 20464:1 20466:1 20476:1 20487:1 20498:2 20502:2 20547:1 20553:1 20554:1 20576:1 20588:1 20597:1 20604:1 20609:4 20622:1 20628:1 20630:4 20643:1 20674:1 20698:1 20703:1 20758:1 20769:2 20778:1 20786:1 20841:1 20853:1 20875:5 20884:2 20903:1 20906:1 20915:1 20919:1 20933:1 20943:1 20951:2 20955:1 20980:1 20986:1 20989:2 20993:1 20998:1 21001:1 21015:1 21034:1 21052:1 21066:1 21079:1 21106:1 21160:2 21182:1 21184:3 21185:1 21192:1 21197:2 21211:2 21212:1 21224:1 21246:5 21254:1 21261:2 21286:1 21298:1 21302:4 21316:1 21319:1 21341:6 21355:1 21365:5 21457:2 21462:1 21465:1 21484:2 21492:1 21511:1 21531:1 21545:1 21570:1 21627:3 21629:1 21668:2 21683:2 21741:1 21782:1 21785:1 21787:1 21807:1 21833:1 21843:1 21857:1 21869:1 21879:1 21900:2 21927:1 21934:1 21951:1 21974:1 21990:1 21994:1 22024:1 22027:1 22039:1 22043:3 22046:1 22048:1 22056:7 22059:1 22077:1 22102:1 22107:1 22113:1 22149:1 22175:1 22197:2 22213:1 22255:2 22260:1 22262:1 22267:1 22296:1 22322:1 22327:1 22341:2 22414:1 22422:2 22426:1 22431:1 22443:1 22446:1 22462:1 22513:1 22527:1 22552:1 22557:2 22601:1 22605:1 22610:1 22613:1 22649:1 22659:1 22680:2 22689:1 22710:1 22711:2 22736:1 22747:1 22749:1 22754:1 22764:1 22770:1 22782:2 22801:2 22809:2 22817:2 22831:2 22832:1 22844:1 22849:2 22853:1 22855:1 22860:1 22864:1 22867:1 22887:2 22891:1 22892:1 22911:1 22919:1 22935:1 22943:1 22954:1 22970:1 22988:1 23000:1 23008:1 23014:1 23039:2 23095:2 23096:1 23109:1 23112:1 23142:1 23145:1 23151:1 23156:2 23157:1 23166:1 23167:2 23170:1 23178:1 23180:8 23181:3 23185:1 23186:1 23187:1 23193:2 23205:1 23214:1 23219:1 23221:1 23222:4 23244:1 23251:1 23279:1 23282:4 23332:1 23338:1 23357:1 23368:1 23375:1 23386:1 23395:2 23399:2 23404:1 23408:3 23410:1 23444:1 23460:1 23466:1 23469:2 23478:1 23483:1 23486:1 23513:1 23563:2 23567:2 23569:2 23581:1 23594:1 23607:2 23615:1 23625:1 23630:1 23633:1 23641:1 23643:1 23644:5 23651:1 23671:1 23674:1 23684:2 23690:1 23700:1 23731:1 23744:1 23752:1 23779:9 23786:1 23796:3 23802:1 23804:2 23807:1 23809:1 23810:3 23831:2 23850:1 23856:1 23858:1 23862:2 23871:1 23878:1 23885:1 23893:1 23899:4 23903:1 23915:1 23979:1 24025:1 24053:1 24056:5 24068:1 24108:1 24142:2 24196:2 24200:1 24229:2 24286:1 24374:3 24404:1 24430:1 24447:1 24498:1 24500:1 24525:1 24601:1 24614:2 24631:1 24633:2 24644:1 24654:1 24662:1 24682:1 24704:1 24726:2 24733:1 24738:2 24741:1 24742:1 24751:1 24764:1 24770:1 24772:1 24786:2 24799:1 24835:4 24868:1 24870:1 24884:1 24886:2 24904:1 24918:1 24930:1 24964:2 24994:1 25035:1 25065:1 25067:1 25080:1 25089:2 25120:1 25133:1 25181:1 25250:1 25271:1 25310:1 25329:1 25331:1 25345:1 25348:1 25351:1 25355:1 25369:1 25388:1 25405:1 25406:1 25408:1 25481:2 25509:1 25522:1 25538:1 25572:1 25591:1 25603:5 25608:1 25635:6 25652:1 25664:1 25680:1 25682:1 25684:1 25685:1 25712:2 25724:1 25739:1 25775:1 25786:1 25799:11 25850:3 25916:1 25918:1 25921:1 25932:1 25935:2 25940:2 25949:1 25963:1 25970:1 25972:1 25989:4 25996:1 25997:1 26015:1 26049:3 26051:1 26055:1 26064:1 26080:3 26083:1 26090:1 26094:1 26104:1 26110:1 26120:1 26157:1 26165:1 26178:1 26215:1 26254:1 26278:1 26289:1 26301:1 26313:1 26314:1 26318:1 26327:1 26381:2 26397:1 26439:1 26449:1 26453:2 26456:3 26504:6 26505:2 26548:1 26566:1 26591:2 26607:1 26626:1 26639:1 26689:1 26703:6 26729:3 26762:1 26763:1 26795:1 26855:2 26857:3 26883:1 26889:1 26904:2 26929:1 26930:1 26938:2 26959:3 26964:2 26992:1 27001:4 27039:3 27040:1 27062:1 27089:1 27152:1 27157:2 27162:1 27201:1 27207:1 27243:1 27262:1 27269:2 27279:1 27282:2 27324:1 27347:1 27350:1 27383:1 27406:1 27449:1 27498:2 27537:1 27580:1 27584:1 27603:1 27614:1 27624:1 27648:2 27661:1 27710:2 27732:1 27748:1 27760:1 27797:3 27808:1 27818:1 27854:1 27858:2 27881:1 27892:1 27896:2 27909:1 27917:3 27927:1 28004:1 28037:1 28049:1 28069:1 28079:1 28096:1 28100:1 28103:2 28138:1 28139:1 28146:1 28152:1 28165:3 28173:1 28177:3 28207:1 28225:2 28241:1 28280:1 28290:2 28327:1 28342:2 28360:1 28379:2 28482:1 28483:1 28486:1 28496:1 28527:1 28561:2 28576:3 28597:1 28646:1 28690:1 28710:1 28726:1 28727:1 28736:1 28780:1 28782:1 28818:1 28836:1 28843:1 28924:1 28948:3 29010:1 29014:1 29020:1 29025:1 29032:1 29052:1 29054:1 29063:1 29081:1 29088:1 29092:1 29098:1 29109:1 29111:1 29119:1 29122:1 29128:1 29130:1 29133:1 29134:1 29137:2 29144:2 29152:1 29154:1 29158:1 29160:1 29188:1 29196:1 29197:2 29224:6 29227:1 29238:1 29249:2 29253:1 29259:1 29282:1 29284:1 29295:1 29304:1 29340:1 29344:1 29354:1 29360:1 29363:2 29386:1 29397:1 29415:1 29444:1 29447:2 29450:2 29469:1 29539:1 29576:1 29579:1 29590:1 29593:2 29596:1 29610:1 29661:1 29679:1 29689:1 29702:1 29723:3 29729:1 29760:1 29778:1 29779:2 29781:2 29788:1 29789:1 29790:1 29804:1 29825:2 29826:1 29837:1 29851:1 29860:1 29887:23 29888:1 29893:1 29896:1 29910:2 29918:1 29933:1 29938:6 29946:4 30001:1 30008:1 30039:3 30052:1 30062:1 30069:1 30078:4 30112:4 30118:1 30124:2 30130:1 30149:1 30159:1 30165:1 30194:1 30197:1 30199:3 30217:1 30243:1 30289:2 30329:1 30331:1 30350:1 30358:2 30377:1 30382:1 30388:1 30436:4 30438:1 30465:1 30476:1 30510:1 30513:3 30523:1 30534:2 30537:1 30538:1 30541:1 30660:1 30678:1 30692:4 30693:2 30694:2 30741:1 30754:1 30801:1 30842:1 30846:1 30864:2 30869:2 30874:1 30884:5 30907:2 30909:1 30925:1 30940:1 30953:1 30956:1 30981:1 30986:3 31003:2 31035:1 31048:1 31055:1 31066:1 31089:1 31093:3 31100:1 31142:1 31154:1 31195:1 31208:1 31212:2 31216:1 31222:1 31238:1 31243:2 31246:1 31248:1 31250:1 31251:1 31287:1 31299:1 31313:1 31373:1 31385:1 19 1:1 27:1 30:1 52:1 56:1 57:1 91:1 108:1 154:1 170:3 206:1 208:1 232:1 234:1 242:1 246:1 276:1 308:1 354:1 367:1 428:4 462:2 486:1 561:1 569:1 604:1 616:1 622:1 643:7 649:1 671:1 697:1 764:1 837:1 843:1 870:1 879:1 890:1 899:1 907:3 926:2 928:1 932:1 933:2 937:3 938:3 948:2 949:1 951:1 967:1 985:1 987:1 993:1 994:1 998:4 1009:1 1021:2 1022:1 1037:2 1038:1 1055:1 1080:4 1083:1 1137:1 1195:1 1213:1 1249:1 1262:1 1277:1 1285:1 1335:1 1336:1 1337:1 1348:2 1350:1 1366:1 1380:1 1389:1 1390:1 1395:1 1396:1 1437:1 1458:1 1527:1 1533:1 1543:1 1559:1 1582:1 1584:1 1586:3 1592:2 1600:2 1607:2 1669:2 1670:1 1675:4 1690:2 1699:1 1712:1 1766:1 1795:3 1828:1 1846:2 1855:1 1899:1 1906:1 1909:1 1922:1 1923:2 1928:2 1940:1 1948:1 1950:2 1956:1 1978:1 1979:1 2013:1 2018:1 2026:1 2027:1 2040:1 2087:1 2105:1 2113:1 2133:2 2190:1 2196:2 2198:2 2203:1 2205:2 2208:1 2214:1 2216:2 2251:1 2266:1 2267:4 2273:3 2297:1 2337:1 2345:1 2352:1 2369:1 2375:1 2384:2 2391:2 2396:1 2401:1 2402:2 2404:1 2410:2 2422:3 2425:2 2434:1 2505:1 2510:1 2512:2 2528:4 2536:1 2548:1 2549:1 2584:1 2592:2 2616:1 2626:1 2653:1 2655:2 2669:1 2689:1 2690:1 2759:1 2760:1 2779:2 2790:1 2797:1 2811:2 2832:7 2838:2 2843:1 2859:1 2890:1 2905:1 2909:1 2943:1 2962:2 2985:3 2989:1 3005:1 3014:15 3023:9 3058:1 3065:5 3074:1 3090:1 3098:1 3102:3 3124:1 3265:1 3294:1 3296:1 3307:1 3336:1 3410:2 3423:2 3463:2 3477:1 3488:1 3489:4 3534:1 3542:1 3548:2 3570:1 3573:1 3652:3 3653:1 3654:1 3666:1 3669:1 3700:1 3742:1 3752:1 3779:2 3788:1 3793:1 3794:1 3802:1 3813:1 3824:2 3844:1 3879:1 3880:1 3882:1 3889:1 3895:1 3936:2 3943:5 3989:1 4022:1 4031:1 4055:2 4094:1 4100:1 4104:1 4110:1 4126:3 4147:1 4153:1 4173:1 4208:1 4227:1 4228:1 4229:3 4259:1 4283:1 4294:1 4340:3 4348:1 4361:1 4366:1 4389:1 4401:1 4409:1 4432:1 4450:1 4452:1 4454:3 4456:1 4498:1 4558:3 4608:2 4613:2 4651:1 4664:1 4682:1 4683:2 4684:1 4736:1 4748:1 4776:2 4780:1 4781:1 4816:1 4817:4 4818:1 4862:1 4868:1 4871:1 4876:1 4885:1 4888:1 4905:1 4906:2 4919:1 4927:1 4949:1 4969:1 4977:1 4996:1 5000:1 5005:1 5028:1 5034:1 5039:1 5062:1 5065:3 5127:1 5132:6 5133:1 5163:1 5183:3 5245:2 5247:1 5248:3 5264:4 5265:4 5266:1 5269:1 5270:1 5271:1 5275:1 5276:3 5277:1 5284:2 5287:1 5291:3 5292:1 5293:1 5318:1 5320:1 5344:1 5350:1 5356:2 5365:1 5385:1 5436:1 5443:1 5481:1 5508:1 5535:1 5551:1 5574:1 5639:1 5666:1 5678:1 5686:2 5710:1 5712:1 5732:1 5748:1 5777:1 5784:1 5794:5 5815:1 5822:1 5824:1 5839:1 5889:2 5890:2 5913:1 5917:1 5952:1 5954:3 6036:1 6040:1 6061:1 6093:1 6099:1 6151:1 6196:3 6283:1 6301:1 6309:1 6315:2 6333:2 6345:3 6346:2 6348:10 6349:1 6350:1 6355:3 6362:1 6378:2 6399:1 6408:1 6409:2 6444:1 6446:1 6452:1 6465:1 6468:1 6473:3 6474:1 6479:1 6488:2 6567:1 6568:1 6583:1 6588:3 6607:1 6610:2 6645:1 6664:1 6670:1 6681:1 6683:1 6692:2 6693:1 6696:4 6697:1 6704:2 6707:1 6709:2 6715:1 6736:1 6745:1 6769:1 6827:1 6850:1 6852:1 6882:2 6886:1 6926:1 6965:1 7006:1 7013:3 7033:1 7035:1 7045:1 7052:1 7088:1 7113:1 7120:2 7127:1 7128:2 7142:1 7151:1 7155:3 7165:1 7181:3 7186:3 7216:2 7221:3 7289:1 7305:1 7312:1 7314:2 7319:2 7332:1 7346:1 7353:1 7355:1 7381:2 7382:1 7386:1 7435:1 7436:1 7450:2 7486:1 7489:1 7509:1 7533:1 7535:1 7537:10 7540:1 7562:1 7585:1 7594:2 7640:1 7658:1 7688:1 7691:1 7781:1 7845:3 7855:3 7864:2 7880:2 7886:1 7887:2 7919:1 7929:1 7943:1 7975:1 7989:1 8032:1 8041:1 8104:4 8105:2 8128:1 8130:3 8135:1 8160:1 8163:1 8172:15 8178:1 8188:1 8194:1 8201:17 8204:5 8213:1 8267:1 8273:1 8283:1 8284:2 8315:1 8332:1 8333:1 8340:1 8347:1 8357:1 8370:1 8400:1 8415:2 8416:1 8442:1 8443:1 8455:2 8565:1 8581:1 8584:1 8598:2 8604:1 8622:1 8626:1 8648:1 8669:1 8689:2 8698:12 8728:3 8741:3 8786:1 8837:1 8849:2 8884:1 8892:1 8903:1 8913:1 8918:1 8927:2 8948:2 8952:2 8971:4 8976:2 8977:1 8979:1 8984:1 8985:1 8986:1 9012:1 9038:1 9057:4 9058:2 9061:2 9062:1 9064:2 9071:2 9072:3 9077:1 9094:1 9106:1 9115:1 9120:1 9130:1 9146:1 9148:1 9165:2 9177:1 9181:1 9192:1 9259:3 9326:1 9339:1 9372:1 9377:2 9385:2 9405:1 9431:1 9442:2 9470:1 9539:1 9563:1 9584:1 9588:1 9593:1 9595:1 9602:2 9606:5 9628:1 9644:1 9667:1 9686:1 9715:1 9768:1 9779:7 9783:1 9791:1 9798:1 9817:1 9855:1 9874:4 9885:1 9894:1 9921:1 9926:1 9931:1 9943:1 9944:1 9964:2 9990:1 10046:1 10091:1 10096:1 10105:1 10112:2 10114:1 10133:1 10167:1 10172:3 10185:1 10224:1 10235:7 10236:27 10238:2 10253:2 10272:1 10273:1 10289:1 10293:1 10302:1 10318:1 10358:2 10369:4 10382:1 10394:1 10415:1 10431:1 10439:1 10440:1 10471:1 10543:1 10544:2 10554:1 10578:2 10594:1 10610:1 10611:4 10635:1 10640:1 10654:2 10669:1 10687:1 10699:1 10714:1 10727:1 10728:1 10736:4 10759:1 10777:1 10796:1 10871:1 10901:3 10926:1 10940:1 10943:1 10967:2 10971:4 11000:2 11003:1 11007:1 11030:1 11037:1 11064:1 11091:1 11102:1 11144:1 11150:4 11158:1 11181:6 11207:1 11238:2 11256:2 11266:1 11267:1 11272:1 11275:1 11296:1 11311:1 11333:3 11372:2 11377:7 11385:1 11388:1 11404:3 11405:2 11406:2 11454:1 11462:3 11492:1 11493:1 11497:1 11501:1 11509:2 11530:1 11536:1 11586:1 11589:1 11614:2 11620:1 11632:4 11635:1 11651:1 11653:1 11678:1 11686:1 11689:1 11692:1 11697:1 11737:1 11751:2 11757:1 11759:2 11767:2 11769:1 11806:2 11830:1 11835:1 11841:2 11842:1 11852:1 11863:1 11871:1 11906:1 11914:1 11928:2 11932:1 11938:1 11942:1 11976:1 11989:1 12004:1 12009:1 12021:1 12041:1 12067:1 12070:1 12072:1 12074:1 12088:1 12108:4 12119:1 12140:1 12151:1 12154:1 12165:1 12170:2 12181:2 12184:1 12219:1 12222:1 12235:2 12255:1 12268:1 12273:1 12289:1 12293:1 12304:2 12322:6 12324:1 12330:1 12344:1 12346:2 12351:1 12352:1 12359:1 12373:1 12380:1 12383:1 12388:2 12398:1 12419:1 12427:2 12439:2 12449:6 12456:1 12462:1 12467:3 12480:1 12501:1 12517:1 12546:1 12591:4 12595:1 12610:1 12640:1 12668:1 12678:1 12680:2 12690:1 12691:1 12715:1 12719:1 12752:1 12764:1 12771:1 12775:1 12828:1 12838:1 12846:1 12857:1 12873:2 12891:1 12962:2 12999:1 13009:1 13042:1 13048:1 13050:1 13058:1 13124:1 13135:2 13143:2 13179:1 13198:1 13216:1 13229:1 13235:1 13251:2 13257:1 13425:9 13434:1 13446:2 13448:1 13475:4 13480:1 13482:2 13486:1 13493:1 13497:1 13531:3 13536:1 13538:1 13540:1 13543:1 13552:1 13555:1 13558:1 13572:1 13597:1 13614:1 13623:1 13665:1 13691:2 13707:1 13765:1 13788:1 13829:1 13853:1 13855:1 13869:1 13871:2 13878:2 13894:1 13906:1 13909:3 13945:3 13962:1 13963:1 13974:4 14005:2 14020:1 14033:2 14040:1 14051:1 14057:2 14067:1 14069:2 14075:1 14077:2 14103:1 14114:4 14120:1 14148:1 14167:3 14185:1 14191:1 14212:1 14222:4 14225:1 14239:1 14242:1 14245:1 14274:1 14282:1 14288:1 14307:1 14318:1 14323:1 14325:2 14337:1 14370:3 14372:1 14375:1 14377:1 14392:1 14415:1 14449:1 14460:3 14464:2 14468:3 14479:1 14489:1 14498:1 14536:1 14540:2 14544:1 14551:1 14580:2 14617:1 14618:1 14627:1 14641:1 14683:1 14691:1 14725:1 14735:1 14769:2 14795:1 14819:1 14832:1 14864:1 14872:1 14893:1 14911:1 14912:1 14919:1 14927:3 14933:1 14969:1 15004:1 15059:1 15119:1 15143:1 15171:1 15175:1 15193:1 15196:1 15202:1 15213:1 15225:2 15231:1 15244:1 15245:2 15258:1 15262:1 15275:1 15298:1 15316:1 15346:1 15354:1 15368:1 15378:1 15381:1 15384:2 15391:1 15396:1 15401:1 15407:1 15410:2 15415:2 15438:2 15453:1 15457:1 15493:2 15505:1 15510:1 15525:1 15548:1 15550:2 15553:1 15591:1 15624:2 15642:1 15695:1 15706:1 15740:1 15760:1 15762:1 15764:1 15765:1 15782:1 15785:2 15826:2 15851:1 15853:3 15861:1 15894:1 15899:2 15918:1 15927:2 15934:1 15960:1 15994:1 16028:1 16095:1 16107:1 16118:1 16134:1 16144:1 16186:1 16262:1 16285:1 16313:1 16355:1 16363:1 16365:1 16383:1 16387:1 16402:1 16406:1 16411:3 16414:1 16415:1 16431:3 16457:2 16467:2 16475:3 16499:1 16502:1 16555:1 16575:1 16627:1 16634:2 16635:2 16641:4 16649:1 16667:1 16669:1 16671:2 16700:1 16723:1 16733:2 16738:1 16747:1 16799:1 16805:3 16819:3 16825:1 16829:1 16835:1 16854:1 16861:1 16907:1 16923:1 16946:1 16949:3 16962:1 16970:1 17060:2 17077:1 17083:2 17112:1 17116:2 17141:1 17147:1 17182:1 17188:2 17211:2 17212:1 17214:1 17216:1 17217:1 17220:1 17223:1 17231:2 17232:1 17237:1 17242:1 17267:1 17302:1 17305:2 17340:1 17419:2 17519:1 17520:1 17536:1 17543:1 17595:1 17629:1 17642:1 17686:2 17688:1 17691:1 17702:1 17729:11 17765:1 17776:2 17803:5 17851:2 17898:3 17899:1 17915:1 17917:1 17926:1 17954:1 17957:1 17961:1 17980:1 18014:1 18028:3 18031:1 18044:1 18047:1 18054:4 18060:1 18076:3 18111:1 18112:1 18125:1 18126:2 18129:3 18158:1 18167:2 18171:2 18172:1 18188:1 18233:1 18248:1 18299:1 18308:1 18313:1 18385:1 18413:1 18417:1 18429:1 18434:3 18447:1 18471:1 18505:1 18535:1 18536:2 18646:1 18682:1 18683:3 18700:1 18717:1 18740:1 18747:1 18782:2 18785:1 18825:1 18836:1 18843:2 18874:1 18882:3 18892:1 18894:1 18938:1 18951:2 18994:2 19085:1 19091:1 19093:1 19129:1 19144:1 19160:1 19172:2 19190:2 19191:1 19195:1 19244:1 19306:5 19308:1 19315:1 19390:1 19413:1 19419:3 19434:1 19449:1 19480:1 19491:2 19492:1 19497:1 19503:1 19542:1 19559:1 19573:1 19577:1 19594:1 19605:2 19611:2 19633:1 19644:1471 19648:1 19673:3 19678:1 19690:1 19709:1 19805:2 19807:1 19814:1 19840:2 19845:1 19863:1 19871:1 19878:2 19880:1 19893:2 19895:1 19915:1 19926:1 19990:1 20014:1 20072:1 20095:1 20121:1 20131:1 20138:1 20200:1 20216:1 20218:1 20239:1 20290:1 20302:1 20303:1 20389:1 20393:1 20396:1 20412:1 20438:2 20460:3 20462:1 20464:2 20466:1 20476:1 20487:1 20498:2 20502:2 20547:1 20553:1 20554:1 20576:1 20588:1 20597:1 20604:1 20609:4 20622:1 20628:1 20630:4 20643:1 20674:1 20698:1 20703:1 20708:1 20758:1 20769:2 20778:1 20786:1 20841:1 20853:1 20875:5 20884:2 20903:1 20906:1 20915:1 20919:1 20933:1 20943:1 20951:2 20955:1 20980:1 20986:1 20989:2 20993:1 20998:1 21001:1 21015:1 21034:1 21052:1 21066:1 21079:1 21106:1 21160:2 21182:1 21184:3 21185:1 21192:1 21197:2 21211:2 21212:1 21224:1 21246:5 21254:1 21261:2 21286:1 21298:1 21302:4 21316:1 21319:1 21341:6 21355:1 21365:5 21457:2 21462:1 21465:1 21484:2 21492:1 21507:1 21511:1 21531:1 21545:1 21570:1 21627:3 21629:1 21668:2 21683:2 21741:1 21782:1 21785:1 21787:1 21807:1 21833:1 21843:1 21857:1 21869:1 21879:1 21900:2 21927:1 21934:1 21951:1 21974:1 21990:1 21991:1 21994:1 22024:1 22027:1 22039:1 22043:3 22046:1 22048:1 22056:7 22059:1 22077:1 22102:1 22107:1 22113:1 22149:1 22175:1 22197:2 22213:1 22255:2 22260:1 22262:1 22267:1 22296:1 22306:1 22322:1 22327:1 22341:2 22414:1 22422:2 22426:1 22431:1 22443:1 22446:1 22462:1 22513:1 22527:1 22552:1 22557:2 22601:1 22605:1 22610:1 22613:1 22649:1 22659:1 22680:2 22689:1 22710:1 22711:2 22736:1 22747:1 22749:1 22754:1 22764:1 22770:1 22782:2 22801:2 22809:2 22817:2 22831:2 22832:1 22844:1 22849:2 22853:1 22855:1 22860:1 22864:1 22867:1 22887:2 22891:1 22892:1 22911:1 22919:1 22935:1 22943:1 22954:1 22970:1 22988:1 23000:1 23008:1 23014:1 23039:2 23095:2 23096:1 23109:1 23112:1 23142:1 23145:1 23151:1 23156:2 23157:1 23166:1 23167:2 23170:1 23178:1 23180:8 23181:3 23185:1 23186:1 23187:1 23193:2 23205:1 23214:1 23219:1 23221:1 23222:4 23238:1 23244:1 23251:1 23279:1 23282:4 23313:1 23332:1 23338:1 23357:1 23368:1 23375:1 23386:1 23395:2 23399:2 23404:1 23408:3 23410:1 23444:1 23460:1 23466:1 23469:2 23478:1 23483:1 23486:1 23513:1 23563:2 23567:2 23569:2 23581:1 23594:1 23607:2 23615:1 23625:1 23630:1 23633:1 23641:1 23643:1 23644:5 23651:1 23671:1 23674:1 23684:2 23690:1 23700:1 23731:1 23744:2 23752:1 23779:9 23786:1 23796:4 23802:1 23804:2 23807:1 23809:1 23810:3 23831:2 23850:1 23856:1 23858:1 23862:2 23871:1 23878:1 23885:1 23893:1 23899:4 23903:1 23915:1 23979:1 24025:1 24053:1 24056:5 24068:1 24108:1 24142:2 24196:2 24200:1 24229:2 24286:1 24374:3 24404:1 24430:1 24447:1 24498:1 24500:1 24525:1 24601:1 24614:2 24631:1 24633:2 24644:1 24654:2 24662:1 24682:1 24704:1 24726:2 24733:1 24738:2 24741:1 24742:1 24751:1 24764:1 24770:1 24772:1 24786:2 24799:1 24835:4 24868:1 24870:1 24884:1 24886:2 24904:1 24918:1 24930:1 24964:2 24994:1 25035:1 25065:1 25067:1 25080:2 25089:2 25120:1 25133:1 25181:1 25250:1 25271:1 25310:1 25329:1 25331:1 25345:1 25348:1 25351:1 25355:1 25369:1 25388:1 25405:1 25406:1 25408:1 25481:2 25509:1 25522:1 25538:1 25572:1 25591:1 25603:5 25608:1 25635:6 25652:1 25664:1 25680:1 25682:1 25684:1 25685:1 25712:2 25724:1 25739:1 25775:1 25786:1 25799:11 25850:3 25916:1 25918:1 25921:1 25930:1 25932:1 25935:2 25940:2 25949:1 25963:1 25970:1 25972:1 25989:4 25996:1 25997:1 26015:1 26049:3 26051:1 26055:1 26064:1 26080:3 26083:1 26090:1 26094:1 26104:1 26110:1 26120:1 26157:1 26165:1 26178:1 26215:1 26254:1 26278:1 26289:1 26301:1 26313:1 26314:1 26318:1 26327:1 26381:2 26397:1 26439:1 26449:1 26453:2 26456:3 26504:6 26505:2 26548:1 26566:1 26591:2 26607:1 26626:1 26639:1 26689:1 26703:6 26729:3 26762:1 26763:1 26795:1 26855:2 26857:3 26883:1 26889:1 26904:2 26929:1 26930:1 26938:2 26959:3 26964:2 26992:1 27001:4 27039:3 27040:1 27062:1 27089:1 27152:1 27157:3 27162:1 27201:1 27207:1 27243:1 27262:1 27269:2 27279:1 27282:2 27324:1 27347:1 27350:1 27383:1 27406:1 27449:1 27498:3 27537:1 27580:1 27584:1 27603:1 27614:1 27624:1 27648:2 27661:1 27710:2 27732:1 27748:1 27760:1 27797:3 27808:1 27818:1 27854:1 27858:2 27881:1 27892:1 27896:2 27909:1 27917:3 27927:1 28004:1 28037:1 28049:1 28069:1 28079:1 28096:1 28100:1 28103:2 28138:1 28139:1 28146:1 28152:1 28165:3 28173:1 28177:3 28205:1 28207:1 28225:2 28241:1 28280:1 28290:2 28327:1 28342:2 28360:1 28379:2 28482:1 28483:1 28486:1 28496:1 28527:1 28561:2 28576:3 28597:1 28646:1 28690:1 28710:1 28726:1 28727:1 28736:1 28780:1 28782:1 28818:1 28836:1 28843:1 28924:1 28948:3 29010:1 29014:1 29020:1 29025:1 29032:1 29052:1 29054:1 29063:1 29081:1 29088:1 29092:1 29098:1 29109:1 29111:1 29119:1 29122:1 29128:1 29130:1 29133:1 29134:1 29137:2 29144:2 29152:1 29154:1 29158:1 29160:1 29188:1 29196:1 29197:2 29224:6 29227:1 29228:1 29238:1 29249:2 29253:1 29259:1 29282:1 29284:1 29295:1 29304:1 29340:1 29344:1 29354:1 29360:1 29363:2 29386:1 29397:1 29415:1 29444:1 29447:2 29450:2 29469:1 29539:1 29576:1 29579:1 29590:1 29593:2 29596:1 29610:1 29661:1 29679:1 29689:1 29702:1 29723:3 29729:1 29760:1 29778:1 29779:2 29781:2 29788:1 29789:1 29790:1 29804:1 29825:2 29826:1 29837:1 29851:1 29860:1 29887:24 29888:1 29893:1 29896:1 29910:2 29918:1 29933:1 29938:6 29946:4 30001:1 30008:1 30039:3 30052:1 30062:1 30069:1 30078:4 30112:4 30118:1 30124:2 30130:1 30149:1 30159:1 30165:1 30194:1 30197:1 30199:3 30217:1 30243:1 30289:2 30329:1 30331:1 30350:1 30358:2 30377:1 30382:1 30388:1 30436:4 30438:1 30457:1 30465:1 30476:1 30510:1 30513:3 30523:1 30534:2 30537:1 30538:1 30541:1 30660:1 30678:1 30692:4 30693:2 30694:2 30741:1 30754:1 30801:1 30842:1 30846:1 30864:2 30869:2 30874:1 30884:5 30907:2 30909:1 30925:1 30940:1 30953:1 30956:1 30981:1 30986:3 31003:2 31035:1 31048:1 31055:1 31066:1 31089:1 31093:3 31100:1 31142:1 31154:1 31195:1 31208:1 31212:2 31216:1 31222:1 31238:1 31243:2 31246:1 31248:1 31250:1 31251:1 31287:1 31299:1 31313:1 31373:1 31385:1 19 1:1 27:1 30:1 52:1 56:1 57:1 91:1 108:1 154:1 170:3 206:1 208:1 232:1 234:1 242:1 246:1 276:1 308:1 354:1 367:1 428:4 462:2 486:1 561:1 569:1 604:1 616:1 622:1 643:7 649:1 671:1 697:1 764:1 837:1 843:1 870:1 879:1 890:1 899:1 907:3 926:2 928:1 932:1 933:2 937:3 938:3 948:2 949:1 951:1 967:1 969:1 985:1 987:1 993:1 994:1 998:4 1009:1 1021:2 1022:1 1037:2 1038:1 1055:1 1080:4 1083:1 1137:1 1195:1 1213:1 1249:1 1262:1 1277:1 1285:1 1335:1 1336:2 1337:1 1348:2 1350:1 1366:1 1380:1 1389:1 1390:1 1395:1 1396:1 1437:1 1458:1 1527:1 1533:1 1543:1 1559:1 1582:1 1584:1 1586:3 1592:2 1600:2 1607:2 1669:2 1670:1 1675:4 1690:2 1699:1 1712:1 1766:1 1795:3 1828:1 1846:2 1855:1 1899:1 1906:1 1909:1 1922:1 1923:2 1928:2 1940:1 1948:1 1950:2 1956:1 1978:1 1979:1 2013:1 2018:1 2026:1 2027:1 2040:1 2087:1 2105:1 2113:1 2133:2 2190:1 2196:2 2198:2 2203:1 2205:2 2208:1 2214:1 2216:2 2251:1 2266:1 2267:4 2273:3 2297:1 2337:1 2345:1 2352:1 2369:1 2375:1 2384:2 2391:2 2396:1 2401:1 2402:2 2404:1 2410:2 2422:3 2425:2 2434:1 2505:1 2510:1 2512:2 2528:4 2536:1 2548:1 2549:1 2584:1 2592:2 2616:1 2626:1 2653:1 2655:2 2669:1 2689:1 2690:1 2759:1 2760:1 2779:2 2790:1 2797:1 2811:2 2832:7 2838:2 2843:1 2859:1 2890:1 2905:1 2909:1 2943:1 2962:2 2985:3 2989:1 3005:1 3014:15 3023:9 3040:1 3058:1 3065:5 3074:1 3090:1 3098:1 3102:4 3124:1 3265:1 3294:1 3296:1 3307:1 3336:1 3410:2 3423:2 3463:2 3477:1 3488:1 3489:4 3534:1 3542:1 3548:2 3570:1 3573:1 3652:4 3653:1 3654:1 3666:1 3669:1 3700:1 3742:1 3752:1 3779:2 3788:1 3793:1 3794:1 3798:1 3802:1 3813:1 3824:2 3844:1 3879:1 3880:1 3882:1 3889:1 3895:1 3936:2 3943:5 3989:1 4022:1 4031:1 4055:2 4094:1 4100:1 4104:1 4110:1 4126:3 4147:1 4153:1 4173:1 4208:1 4227:1 4228:1 4229:3 4259:1 4283:1 4294:1 4340:3 4348:1 4361:1 4366:1 4389:1 4401:1 4409:1 4432:1 4450:1 4452:1 4454:3 4456:1 4498:1 4558:3 4608:2 4613:2 4651:1 4664:1 4682:1 4683:2 4684:1 4736:1 4748:1 4776:2 4780:1 4781:1 4816:1 4817:4 4818:1 4862:1 4868:1 4871:1 4876:1 4885:1 4888:1 4905:1 4906:2 4919:1 4927:1 4949:1 4969:1 4977:1 4996:1 5000:1 5005:1 5028:1 5034:1 5039:1 5062:1 5065:3 5127:1 5132:6 5133:1 5163:1 5183:3 5245:2 5247:1 5248:3 5264:4 5265:4 5266:1 5269:1 5270:1 5271:1 5275:1 5276:3 5277:1 5284:2 5287:1 5291:3 5292:1 5293:1 5318:1 5320:1 5344:1 5350:1 5356:2 5365:1 5385:1 5436:1 5443:1 5481:1 5508:1 5535:1 5551:1 5574:1 5639:1 5666:1 5678:1 5686:2 5710:1 5712:1 5732:1 5748:1 5777:1 5784:1 5794:5 5815:1 5822:1 5824:1 5839:1 5889:2 5890:2 5913:1 5917:1 5952:1 5954:3 6036:1 6040:1 6048:1 6061:1 6093:1 6099:1 6151:1 6196:3 6283:1 6301:1 6309:1 6315:2 6333:2 6345:3 6346:2 6348:10 6349:1 6350:1 6355:3 6362:1 6378:2 6399:1 6408:1 6409:2 6444:1 6446:1 6452:1 6465:1 6468:1 6473:3 6474:1 6479:1 6488:2 6567:1 6568:1 6583:1 6588:3 6607:1 6610:2 6645:1 6664:1 6670:1 6681:1 6683:1 6692:2 6693:1 6696:4 6697:1 6704:2 6707:1 6709:2 6715:1 6736:1 6745:1 6769:1 6827:1 6850:1 6852:1 6882:2 6886:1 6926:1 6965:1 7006:1 7013:3 7028:1 7033:1 7035:1 7045:1 7052:1 7088:1 7113:1 7120:2 7127:1 7128:2 7142:1 7151:1 7155:3 7165:1 7181:3 7186:3 7216:2 7221:3 7289:1 7305:1 7312:1 7314:2 7319:2 7332:1 7346:1 7353:1 7355:1 7381:2 7382:1 7386:1 7435:1 7436:1 7450:2 7486:1 7489:1 7509:1 7533:1 7535:1 7537:10 7540:1 7562:1 7585:1 7594:2 7640:1 7658:1 7688:1 7691:1 7781:1 7804:1 7845:3 7855:3 7864:2 7880:2 7886:1 7887:2 7919:1 7929:1 7943:1 7975:1 7989:1 8032:1 8041:1 8104:6 8105:3 8128:1 8130:3 8135:1 8160:1 8163:1 8172:15 8178:1 8188:1 8194:1 8201:17 8204:6 8213:1 8267:1 8273:1 8283:1 8284:2 8315:1 8332:1 8333:1 8340:1 8347:1 8357:1 8370:1 8400:1 8415:2 8416:1 8442:1 8443:1 8455:2 8565:1 8581:1 8584:1 8598:2 8604:1 8622:1 8626:1 8648:1 8669:1 8689:2 8698:12 8728:3 8741:3 8786:1 8837:1 8849:2 8884:1 8892:1 8903:1 8913:1 8918:1 8927:2 8948:2 8952:2 8971:4 8976:2 8977:1 8979:1 8984:1 8985:1 8986:1 9012:1 9038:1 9057:4 9058:2 9061:2 9062:1 9064:2 9071:3 9072:3 9077:1 9094:1 9106:1 9115:1 9120:1 9130:1 9146:1 9148:1 9165:2 9177:1 9181:1 9192:1 9259:3 9326:1 9339:1 9372:1 9377:2 9385:2 9405:1 9431:1 9442:2 9470:1 9539:1 9563:1 9584:1 9588:1 9593:1 9595:1 9602:2 9606:5 9628:1 9644:1 9667:1 9686:1 9715:1 9768:1 9779:7 9783:1 9791:1 9798:1 9817:1 9855:1 9874:4 9885:1 9894:1 9921:1 9926:1 9931:1 9943:1 9944:1 9964:2 9990:1 10046:1 10091:1 10096:1 10105:1 10112:2 10114:1 10133:1 10167:1 10172:3 10185:1 10224:1 10235:7 10236:27 10238:2 10253:2 10272:1 10273:1 10289:1 10293:1 10302:1 10318:1 10358:2 10369:4 10382:1 10394:1 10415:1 10431:1 10439:1 10440:1 10471:1 10543:1 10544:2 10554:1 10578:2 10594:1 10610:1 10611:4 10635:1 10640:1 10654:2 10669:1 10687:1 10699:1 10714:1 10727:1 10728:1 10736:4 10759:1 10777:1 10796:1 10871:1 10901:3 10926:1 10940:1 10943:1 10967:2 10971:4 11000:2 11003:1 11007:1 11030:1 11037:1 11064:1 11089:1 11091:1 11102:1 11144:1 11150:4 11158:1 11181:6 11207:1 11238:2 11256:2 11266:1 11267:1 11272:1 11275:1 11296:1 11297:1 11311:1 11333:3 11372:2 11377:7 11385:1 11388:1 11404:3 11405:2 11406:2 11454:1 11462:3 11492:1 11493:1 11497:1 11501:1 11509:2 11530:1 11536:1 11586:1 11589:1 11614:2 11620:1 11632:4 11635:1 11651:1 11653:1 11678:1 11686:1 11689:1 11692:1 11697:1 11737:1 11751:2 11757:1 11759:2 11767:2 11769:1 11806:2 11830:1 11835:1 11841:2 11842:1 11852:1 11863:1 11871:1 11906:1 11914:1 11928:2 11932:1 11938:1 11942:1 11976:1 11989:1 12004:1 12009:1 12021:1 12041:1 12067:1 12070:1 12072:1 12074:1 12088:1 12108:4 12119:1 12140:1 12151:1 12154:1 12165:1 12170:2 12181:2 12184:1 12219:1 12222:1 12235:2 12255:1 12268:1 12273:1 12289:1 12293:1 12304:2 12322:6 12324:1 12330:2 12344:1 12346:2 12351:1 12352:2 12359:1 12373:1 12380:1 12383:1 12388:2 12398:1 12419:1 12427:2 12439:2 12449:6 12456:1 12462:1 12464:1 12467:3 12480:1 12501:1 12517:1 12546:1 12591:4 12595:1 12610:1 12640:1 12668:1 12678:1 12680:2 12690:1 12691:1 12715:1 12719:1 12752:1 12764:1 12771:1 12775:1 12828:1 12838:1 12846:1 12857:1 12873:2 12891:1 12962:2 12999:1 13009:1 13042:1 13048:1 13050:1 13058:1 13124:1 13135:2 13143:2 13179:1 13198:1 13216:1 13229:1 13235:1 13251:2 13257:1 13425:9 13434:1 13446:2 13448:1 13475:4 13480:1 13482:2 13486:1 13493:1 13497:1 13531:3 13536:1 13538:1 13540:1 13543:1 13552:1 13555:1 13558:1 13568:1 13572:1 13597:1 13614:1 13623:1 13665:1 13691:2 13707:1 13765:1 13788:1 13829:1 13853:1 13855:1 13869:1 13871:2 13878:2 13894:1 13906:1 13909:3 13945:3 13962:1 13963:1 13974:4 14005:2 14020:1 14033:2 14040:1 14051:1 14057:2 14067:1 14069:2 14075:1 14077:2 14103:1 14114:4 14120:1 14148:1 14167:3 14185:1 14191:1 14212:1 14222:4 14225:1 14239:1 14242:1 14245:1 14274:1 14282:1 14288:1 14307:1 14318:1 14323:1 14325:2 14337:1 14370:3 14372:1 14375:1 14377:1 14392:1 14415:1 14449:1 14460:3 14464:2 14468:3 14479:1 14489:1 14498:1 14536:1 14540:2 14544:1 14551:1 14580:2 14586:1 14617:1 14618:1 14627:1 14641:1 14646:1 14683:1 14691:1 14725:1 14735:1 14769:2 14774:1 14795:1 14819:1 14832:1 14864:1 14872:1 14893:1 14906:1 14911:1 14912:1 14919:1 14927:3 14933:1 14969:1 15004:1 15059:1 15119:1 15143:1 15171:1 15175:1 15193:1 15196:1 15202:1 15213:1 15225:2 15231:1 15244:1 15245:2 15258:1 15262:1 15275:1 15298:1 15316:1 15346:1 15354:1 15368:1 15378:1 15381:1 15384:2 15391:1 15396:1 15401:1 15407:1 15410:2 15415:2 15438:2 15453:1 15457:1 15493:2 15505:1 15510:1 15525:1 15548:1 15550:2 15553:1 15591:1 15624:2 15642:1 15695:1 15706:1 15740:1 15760:1 15762:1 15764:1 15765:1 15782:1 15785:2 15826:2 15851:1 15853:3 15861:1 15894:1 15899:2 15918:1 15927:2 15934:1 15960:1 15994:1 16028:1 16095:1 16107:1 16118:1 16134:1 16144:1 16172:1 16186:1 16262:1 16285:1 16313:1 16355:1 16363:1 16365:1 16383:1 16387:1 16402:1 16406:1 16411:3 16414:1 16415:1 16430:1 16431:3 16457:2 16467:2 16475:3 16499:1 16502:1 16555:1 16575:1 16594:1 16627:1 16634:2 16635:2 16641:4 16649:1 16667:1 16669:1 16671:2 16700:1 16723:1 16733:2 16738:1 16747:1 16799:1 16805:3 16819:3 16825:1 16829:1 16835:1 16854:1 16861:1 16907:1 16923:1 16946:1 16949:3 16962:1 16970:1 17060:2 17077:1 17083:2 17112:1 17116:2 17141:1 17147:1 17182:1 17188:2 17211:2 17212:1 17214:1 17216:1 17217:1 17220:1 17223:1 17231:2 17232:1 17237:1 17242:1 17267:1 17302:1 17305:2 17340:1 17419:2 17519:1 17520:1 17536:1 17543:1 17595:1 17629:1 17642:1 17686:2 17688:1 17691:1 17702:1 17729:11 17765:1 17776:2 17803:5 17851:2 17898:3 17899:1 17915:1 17917:1 17926:1 17954:1 17957:1 17961:1 17980:1 18014:1 18028:3 18031:1 18044:1 18047:1 18054:4 18060:2 18076:3 18111:1 18112:1 18125:1 18126:2 18129:3 18158:1 18167:2 18171:2 18172:1 18188:1 18233:1 18248:1 18299:1 18308:1 18313:1 18385:1 18413:1 18417:1 18429:1 18434:3 18447:1 18471:1 18478:1 18505:1 18535:1 18536:2 18646:1 18682:1 18683:3 18700:1 18717:1 18740:1 18747:1 18782:2 18785:1 18825:1 18836:1 18843:2 18874:1 18882:3 18892:1 18894:1 18938:1 18951:2 18957:1 18994:2 19085:1 19091:1 19093:1 19129:1 19144:1 19160:1 19172:2 19190:2 19191:1 19195:1 19244:1 19306:5 19308:1 19315:1 19390:1 19413:1 19419:4 19434:1 19449:1 19480:1 19491:2 19492:1 19497:1 19503:1 19542:1 19559:1 19573:1 19577:1 19594:1 19602:1 19605:2 19611:2 19633:1 19644:1506 19648:1 19673:3 19678:1 19690:1 19709:1 19805:2 19807:1 19814:1 19840:2 19845:1 19863:1 19871:1 19878:2 19880:1 19893:2 19895:1 19915:1 19926:1 19990:1 20014:1 20072:1 20095:1 20121:1 20131:1 20138:1 20179:1 20200:1 20216:1 20218:1 20239:1 20290:1 20302:1 20303:1 20389:1 20393:1 20396:1 20412:1 20438:2 20460:3 20462:1 20464:2 20466:1 20476:1 20487:1 20498:2 20502:2 20547:1 20553:1 20554:1 20576:1 20588:1 20597:1 20604:1 20609:4 20622:1 20628:1 20630:4 20643:1 20674:1 20698:1 20703:1 20708:1 20758:1 20769:2 20778:1 20786:1 20801:1 20841:1 20853:1 20875:5 20884:2 20903:1 20906:1 20915:1 20919:1 20933:1 20943:1 20951:2 20955:2 20980:1 20986:1 20989:2 20993:1 20998:1 21001:1 21015:1 21034:1 21052:1 21066:1 21079:1 21106:1 21160:2 21182:1 21184:3 21185:1 21192:1 21197:2 21211:2 21212:1 21224:1 21246:5 21254:1 21261:2 21286:1 21298:1 21302:4 21316:1 21319:1 21341:6 21355:1 21365:5 21457:2 21462:1 21465:1 21484:2 21492:1 21507:1 21511:1 21531:1 21545:1 21548:1 21570:1 21627:3 21629:1 21668:2 21683:2 21741:1 21782:1 21785:1 21787:1 21807:1 21833:1 21843:1 21857:1 21869:1 21879:1 21900:2 21927:1 21934:1 21951:1 21974:1 21990:1 21991:1 21994:1 22024:1 22027:1 22039:1 22043:3 22046:1 22048:1 22056:7 22059:1 22077:1 22102:1 22107:1 22113:1 22149:1 22175:1 22197:2 22213:1 22239:1 22255:2 22260:1 22262:1 22267:1 22296:1 22306:1 22322:1 22327:1 22341:2 22414:1 22422:2 22426:1 22431:1 22443:1 22446:1 22462:1 22513:1 22527:1 22552:1 22557:2 22601:1 22605:1 22610:1 22613:1 22649:1 22659:1 22680:2 22689:1 22710:1 22711:2 22736:1 22747:1 22749:1 22754:1 22764:1 22770:1 22782:2 22801:2 22809:2 22817:2 22831:2 22832:1 22844:1 22849:2 22853:1 22855:1 22860:1 22864:1 22867:1 22887:2 22891:1 22892:1 22911:1 22913:1 22919:1 22935:1 22943:1 22954:1 22970:1 22988:1 23000:1 23008:1 23014:1 23039:2 23095:2 23096:1 23109:1 23112:1 23142:1 23145:1 23151:1 23156:2 23157:1 23166:1 23167:2 23170:1 23178:1 23180:8 23181:3 23185:1 23186:1 23187:1 23193:2 23205:1 23214:1 23219:1 23221:1 23222:4 23238:1 23244:1 23251:1 23279:1 23282:5 23313:1 23332:1 23338:1 23357:1 23368:1 23375:1 23386:1 23395:2 23399:2 23404:1 23408:3 23410:1 23433:1 23444:1 23460:1 23466:1 23469:2 23478:1 23483:1 23486:1 23513:1 23563:2 23567:2 23569:2 23581:1 23594:1 23607:2 23615:1 23625:1 23630:1 23633:1 23641:1 23643:1 23644:5 23651:1 23671:1 23674:1 23684:2 23690:1 23700:1 23731:1 23744:2 23752:1 23779:9 23786:1 23796:4 23802:1 23804:2 23807:1 23809:1 23810:3 23831:2 23850:1 23856:1 23858:1 23862:2 23871:1 23878:1 23885:1 23893:1 23899:5 23903:1 23915:1 23979:1 24025:1 24053:1 24056:5 24068:1 24108:1 24142:2 24196:2 24200:1 24224:1 24229:2 24278:1 24286:1 24374:3 24404:1 24430:1 24447:1 24498:1 24500:1 24525:1 24601:1 24614:2 24631:1 24633:2 24644:1 24654:2 24662:1 24682:1 24704:1 24726:2 24733:1 24738:2 24741:1 24742:1 24751:1 24764:1 24770:1 24772:1 24786:2 24799:1 24804:1 24835:4 24868:1 24870:1 24884:1 24886:2 24904:1 24918:1 24930:1 24964:2 24994:1 25035:1 25065:1 25067:1 25080:2 25089:2 25120:1 25133:1 25181:1 25250:1 25271:1 25310:1 25329:1 25331:1 25345:1 25348:1 25351:1 25355:1 25369:1 25388:1 25405:1 25406:1 25408:1 25481:2 25509:1 25522:1 25538:1 25572:1 25591:1 25603:5 25608:1 25635:6 25652:1 25664:1 25680:1 25682:1 25684:1 25685:1 25712:2 25724:2 25739:1 25775:1 25786:1 25799:11 25850:3 25916:1 25918:1 25921:1 25930:1 25932:1 25935:2 25940:2 25949:1 25963:1 25970:1 25972:1 25989:4 25996:1 25997:1 26015:1 26049:3 26051:1 26055:1 26064:1 26080:3 26083:1 26090:1 26094:1 26104:1 26110:1 26120:1 26157:1 26165:1 26178:1 26215:1 26254:1 26278:1 26289:1 26301:1 26313:1 26314:1 26318:1 26327:1 26381:2 26397:2 26439:1 26449:1 26453:2 26456:3 26504:6 26505:2 26548:1 26566:1 26591:2 26607:1 26626:1 26639:1 26689:1 26703:7 26729:3 26762:1 26763:1 26795:1 26855:2 26857:3 26883:1 26889:1 26904:2 26929:1 26930:1 26938:2 26956:1 26959:3 26964:2 26992:1 27001:4 27039:3 27040:1 27062:1 27089:1 27152:1 27157:3 27162:1 27201:1 27207:1 27243:1 27262:1 27269:2 27279:1 27282:2 27324:1 27347:1 27350:1 27383:1 27406:1 27449:1 27498:3 27537:1 27580:1 27584:1 27603:1 27614:1 27624:1 27648:2 27661:1 27710:2 27732:1 27748:1 27760:1 27797:4 27808:1 27818:1 27854:1 27858:2 27881:1 27892:1 27896:2 27909:1 27916:1 27917:3 27927:1 28004:1 28037:1 28049:1 28069:1 28079:1 28096:1 28100:1 28103:2 28138:1 28139:1 28146:1 28152:1 28165:3 28173:1 28177:3 28205:1 28207:1 28225:2 28241:1 28280:1 28290:2 28327:1 28342:2 28360:1 28379:2 28482:1 28483:1 28486:1 28496:1 28527:1 28561:2 28576:3 28597:1 28646:1 28690:1 28710:1 28726:1 28727:1 28736:1 28738:1 28780:1 28782:1 28818:1 28836:1 28843:1 28924:1 28948:3 29010:1 29014:1 29020:1 29025:1 29032:1 29052:1 29054:1 29063:1 29081:1 29088:1 29092:1 29098:1 29109:1 29111:1 29119:1 29122:1 29128:1 29130:1 29133:1 29134:1 29137:2 29144:2 29152:1 29154:1 29158:1 29160:1 29188:1 29196:1 29197:2 29224:6 29227:1 29228:1 29238:1 29249:2 29253:1 29259:1 29282:1 29284:1 29295:1 29304:1 29340:1 29344:1 29354:1 29360:1 29363:2 29386:1 29397:1 29415:1 29444:1 29447:2 29450:2 29469:1 29539:1 29576:1 29579:1 29590:1 29593:2 29596:1 29610:1 29661:1 29679:1 29689:1 29702:1 29723:3 29729:1 29760:1 29778:1 29779:2 29781:2 29788:1 29789:1 29790:1 29804:1 29825:2 29826:1 29837:1 29851:1 29860:1 29887:25 29888:1 29893:1 29896:1 29910:2 29918:1 29933:1 29938:6 29946:4 30001:1 30008:1 30039:3 30052:1 30062:1 30069:2 30078:4 30112:6 30118:1 30124:2 30130:1 30149:1 30159:1 30165:1 30194:1 30197:1 30199:3 30207:1 30217:1 30243:1 30289:2 30329:1 30331:1 30350:1 30358:2 30377:1 30382:1 30388:1 30436:4 30438:1 30457:1 30465:1 30476:1 30510:1 30513:3 30523:1 30534:3 30537:1 30538:1 30541:1 30660:1 30678:1 30692:4 30693:2 30694:2 30720:1 30741:1 30754:1 30801:1 30842:1 30846:1 30864:2 30869:2 30874:1 30884:5 30907:2 30909:1 30925:1 30940:1 30953:1 30956:1 30981:1 30986:3 31003:2 31035:1 31048:1 31055:1 31066:1 31089:1 31093:3 31100:1 31142:1 31154:1 31195:1 31208:1 31212:2 31216:1 31222:1 31238:1 31243:2 31246:1 31248:1 31250:1 31251:1 31287:1 31299:1 31313:1 31373:1 31385:1 19 1:1 27:1 30:1 52:1 56:1 57:1 91:1 108:1 153:1 154:1 170:3 206:2 208:1 232:1 234:1 242:1 246:1 276:1 308:1 338:1 354:1 367:1 428:4 462:2 486:1 561:1 569:1 604:1 616:1 622:1 643:7 649:1 661:1 671:1 697:1 764:1 837:1 843:1 870:1 879:1 890:1 899:1 907:3 926:2 928:1 932:1 933:2 937:3 938:3 948:2 949:1 951:1 967:1 969:1 985:1 987:1 993:1 994:1 998:5 1009:1 1021:2 1022:1 1037:2 1038:1 1055:1 1080:4 1083:1 1137:1 1195:1 1213:1 1249:1 1262:1 1277:1 1285:1 1322:1 1335:1 1336:2 1337:1 1348:2 1350:1 1360:1 1366:1 1380:1 1389:1 1390:1 1395:1 1396:1 1437:1 1458:1 1527:1 1533:1 1543:1 1559:1 1582:1 1584:1 1586:3 1592:2 1600:2 1607:2 1669:2 1670:1 1675:4 1690:2 1699:1 1712:1 1766:1 1795:3 1815:1 1828:1 1846:2 1855:1 1899:1 1906:1 1909:1 1922:1 1923:2 1928:2 1940:1 1948:1 1950:2 1956:1 1978:1 1979:1 2013:1 2018:1 2026:1 2027:1 2040:1 2087:1 2105:1 2113:1 2133:2 2165:1 2190:1 2196:2 2198:2 2203:1 2205:2 2208:1 2214:1 2216:2 2251:1 2266:1 2267:4 2273:3 2297:1 2337:1 2345:1 2352:1 2369:1 2375:1 2384:2 2391:2 2393:1 2396:1 2401:1 2402:2 2404:1 2410:2 2415:1 2422:3 2425:2 2434:1 2505:1 2510:1 2512:2 2528:4 2536:1 2548:1 2549:1 2584:1 2592:4 2616:1 2626:1 2653:1 2655:2 2669:1 2689:1 2690:1 2759:1 2760:1 2779:2 2790:1 2797:1 2811:2 2832:7 2838:2 2843:1 2859:1 2890:1 2905:1 2909:1 2943:1 2962:3 2985:3 2989:1 3005:1 3014:16 3023:9 3040:1 3058:1 3065:5 3074:1 3090:1 3098:1 3102:4 3124:1 3184:1 3265:1 3294:1 3296:1 3307:1 3336:1 3365:1 3410:2 3423:2 3463:2 3477:1 3488:1 3489:4 3534:1 3542:1 3548:2 3570:1 3573:1 3652:4 3653:1 3654:1 3666:1 3669:1 3700:1 3713:1 3742:1 3752:1 3779:2 3788:1 3793:1 3794:1 3798:1 3802:1 3813:1 3824:2 3844:1 3879:1 3880:1 3882:1 3889:1 3895:1 3936:2 3943:5 3989:1 4022:1 4031:1 4055:2 4094:1 4100:1 4104:1 4110:1 4126:3 4147:1 4153:1 4173:1 4208:1 4227:1 4228:1 4229:3 4259:1 4283:1 4294:1 4313:1 4340:3 4348:1 4361:1 4366:1 4389:1 4401:1 4409:1 4425:1 4432:1 4450:1 4452:1 4454:3 4456:1 4498:1 4558:3 4579:1 4608:2 4613:2 4651:1 4664:1 4682:1 4683:2 4684:1 4736:1 4748:1 4776:2 4780:1 4781:1 4816:1 4817:4 4818:1 4862:1 4868:1 4871:1 4876:1 4885:1 4888:1 4905:1 4906:2 4919:1 4927:1 4949:1 4969:1 4977:1 4996:1 5000:1 5005:1 5028:1 5034:1 5039:1 5062:1 5065:3 5127:1 5132:6 5133:1 5163:1 5183:3 5245:2 5247:1 5248:3 5264:4 5265:4 5266:1 5269:1 5270:1 5271:1 5275:1 5276:3 5277:1 5284:2 5287:1 5291:3 5292:1 5293:1 5318:1 5320:1 5344:1 5350:1 5356:2 5365:1 5385:1 5436:1 5443:1 5481:1 5508:1 5535:1 5551:1 5574:1 5639:1 5666:1 5678:1 5686:2 5710:1 5712:1 5732:1 5748:1 5777:1 5784:1 5794:5 5815:1 5822:1 5824:1 5827:1 5839:1 5889:2 5890:2 5913:1 5917:1 5952:1 5954:3 6036:1 6040:1 6048:1 6061:1 6093:1 6099:1 6151:1 6196:3 6283:1 6301:1 6309:1 6315:2 6333:2 6345:3 6346:2 6348:10 6349:1 6350:1 6355:3 6362:1 6378:2 6399:1 6408:1 6409:2 6444:1 6446:1 6452:1 6465:1 6468:1 6473:3 6474:1 6479:1 6488:2 6567:1 6568:1 6583:1 6588:3 6607:1 6608:1 6610:2 6645:1 6664:1 6670:1 6681:1 6683:1 6692:2 6693:2 6696:4 6697:1 6704:2 6707:1 6709:2 6715:1 6736:1 6745:1 6769:1 6827:1 6850:1 6852:1 6882:2 6886:1 6926:1 6965:1 7006:1 7013:3 7028:1 7033:1 7035:1 7045:1 7052:1 7088:1 7113:1 7120:2 7127:1 7128:2 7142:1 7151:1 7155:3 7165:1 7181:4 7186:3 7216:2 7221:3 7289:1 7305:1 7312:1 7314:2 7319:2 7332:1 7346:1 7353:1 7355:1 7381:2 7382:1 7386:1 7435:1 7436:1 7450:2 7486:1 7489:1 7509:1 7533:1 7535:1 7537:10 7540:1 7562:1 7585:1 7594:2 7640:1 7658:1 7688:1 7691:1 7781:1 7804:1 7845:3 7855:3 7862:1 7864:2 7880:2 7886:1 7887:2 7919:1 7929:1 7943:1 7975:1 7989:1 8032:1 8041:1 8104:6 8105:3 8128:1 8130:3 8135:1 8160:1 8163:1 8172:16 8178:1 8188:1 8194:1 8201:18 8204:6 8213:1 8267:1 8273:1 8283:1 8284:2 8315:1 8332:1 8333:1 8340:1 8347:1 8357:1 8370:1 8400:1 8415:2 8416:1 8442:1 8443:1 8455:2 8565:1 8581:1 8584:1 8598:2 8604:3 8622:1 8626:1 8648:1 8661:1 8669:1 8689:2 8698:12 8728:3 8741:3 8786:1 8837:1 8849:2 8884:1 8892:1 8903:1 8913:1 8918:1 8927:2 8948:2 8952:2 8971:4 8976:2 8977:1 8979:1 8984:1 8985:1 8986:1 9012:1 9038:1 9057:4 9058:2 9061:2 9062:1 9064:2 9071:3 9072:3 9077:1 9094:1 9106:1 9115:1 9120:1 9130:1 9146:1 9148:1 9158:1 9165:2 9177:1 9181:1 9192:1 9249:1 9259:3 9269:1 9326:1 9339:1 9372:1 9377:2 9385:2 9405:1 9431:1 9442:2 9470:1 9539:1 9549:1 9563:1 9584:1 9588:1 9593:1 9595:1 9602:2 9606:5 9628:1 9644:1 9667:1 9686:1 9715:1 9768:1 9779:7 9783:1 9791:3 9798:1 9817:1 9855:1 9874:4 9885:1 9894:1 9921:1 9926:1 9931:1 9943:1 9944:1 9964:2 9990:1 10046:1 10091:1 10096:1 10105:1 10112:2 10114:1 10133:1 10167:1 10172:3 10185:1 10224:1 10235:7 10236:27 10238:2 10253:2 10272:1 10273:1 10289:1 10293:1 10302:1 10318:1 10336:1 10358:2 10369:4 10382:1 10394:1 10415:1 10431:1 10439:1 10440:1 10471:1 10543:1 10544:2 10554:1 10578:2 10594:1 10610:1 10611:4 10635:1 10640:1 10654:2 10669:1 10687:1 10699:1 10714:1 10727:1 10728:1 10736:4 10759:1 10777:1 10796:1 10871:1 10901:3 10926:1 10940:1 10943:1 10967:2 10971:4 11000:2 11003:1 11007:1 11030:1 11037:1 11064:1 11089:1 11091:1 11102:1 11144:1 11150:4 11158:1 11181:6 11207:1 11238:2 11256:2 11266:1 11267:1 11272:1 11275:1 11296:1 11297:1 11311:1 11333:3 11372:2 11377:7 11385:1 11388:1 11404:3 11405:2 11406:2 11454:1 11462:3 11492:1 11493:1 11497:1 11501:1 11509:2 11530:1 11536:1 11586:1 11589:1 11614:4 11620:1 11632:4 11635:1 11651:1 11653:1 11678:1 11686:1 11689:1 11692:1 11697:1 11737:1 11751:2 11757:1 11759:2 11767:2 11769:1 11806:2 11830:1 11835:1 11841:2 11842:1 11852:1 11863:1 11871:1 11906:1 11914:1 11928:2 11932:1 11938:1 11942:1 11976:1 11989:1 12004:1 12009:1 12021:1 12041:1 12067:1 12070:1 12072:1 12074:1 12088:1 12108:4 12119:1 12140:1 12151:1 12154:1 12165:1 12170:2 12181:2 12184:1 12219:1 12222:1 12235:2 12255:1 12268:1 12273:1 12289:2 12293:1 12304:2 12322:6 12324:1 12330:2 12344:1 12346:2 12351:1 12352:2 12359:1 12373:1 12380:1 12383:1 12388:2 12398:1 12419:1 12427:2 12439:2 12449:6 12456:1 12462:1 12464:1 12467:3 12480:1 12501:1 12517:1 12520:1 12546:1 12591:4 12595:1 12610:1 12640:1 12668:1 12678:1 12680:2 12685:1 12690:1 12691:1 12715:1 12719:1 12752:1 12764:1 12771:1 12775:1 12828:1 12838:1 12846:1 12857:1 12873:2 12891:1 12962:2 12999:1 13009:1 13042:1 13048:1 13050:1 13058:1 13124:1 13135:2 13143:2 13179:1 13198:1 13216:1 13229:1 13235:1 13251:2 13257:1 13425:9 13434:1 13446:2 13448:1 13475:4 13480:1 13482:2 13486:1 13493:1 13497:1 13531:3 13536:1 13538:1 13540:1 13543:1 13552:1 13555:1 13558:1 13568:1 13572:1 13597:1 13614:1 13623:1 13665:1 13691:2 13707:1 13765:1 13786:1 13788:1 13829:1 13853:1 13855:1 13869:1 13871:3 13878:2 13894:1 13906:1 13909:3 13945:3 13962:1 13963:1 13974:4 14005:2 14020:1 14033:3 14040:1 14051:1 14057:2 14067:1 14069:2 14075:1 14077:2 14103:1 14114:4 14120:1 14148:1 14167:3 14185:1 14191:1 14212:1 14222:4 14225:1 14239:1 14242:1 14245:1 14274:1 14282:1 14288:1 14307:1 14318:1 14323:1 14325:2 14334:1 14337:1 14370:3 14372:1 14375:1 14377:1 14392:1 14401:1 14415:1 14449:1 14460:3 14462:1 14464:2 14468:3 14479:1 14489:1 14498:1 14536:1 14540:2 14544:1 14551:1 14580:2 14586:1 14617:1 14618:1 14627:1 14641:1 14646:1 14671:1 14683:1 14691:1 14725:1 14735:1 14769:2 14774:1 14795:1 14819:1 14832:1 14864:1 14872:1 14893:1 14906:1 14911:1 14912:1 14919:1 14927:3 14933:1 14969:1 15004:1 15015:1 15059:1 15067:1 15119:1 15143:1 15171:1 15175:1 15193:1 15196:1 15202:1 15213:1 15225:2 15231:1 15244:1 15245:2 15258:1 15262:1 15275:1 15298:1 15316:1 15346:1 15354:1 15368:1 15378:1 15381:1 15384:2 15391:1 15396:1 15401:1 15407:1 15410:2 15415:2 15438:2 15453:1 15457:1 15493:2 15505:1 15510:1 15525:1 15548:1 15550:2 15553:1 15591:1 15624:2 15642:1 15695:1 15706:1 15740:1 15760:1 15762:1 15764:1 15765:1 15782:1 15785:2 15826:2 15851:1 15853:3 15861:1 15862:1 15894:1 15899:2 15918:1 15927:2 15934:1 15960:1 15994:1 16028:1 16064:1 16095:1 16107:1 16118:1 16134:1 16144:1 16172:1 16186:1 16262:1 16273:1 16285:1 16313:1 16355:1 16363:1 16365:1 16383:1 16387:1 16402:1 16406:1 16411:3 16414:1 16415:1 16430:1 16431:3 16457:2 16467:2 16475:3 16499:1 16502:1 16555:1 16575:1 16594:1 16627:1 16634:2 16635:2 16641:4 16649:1 16667:1 16669:1 16671:2 16700:1 16723:1 16733:2 16738:1 16747:1 16799:1 16805:4 16819:3 16825:1 16829:1 16835:1 16854:1 16861:1 16889:1 16907:1 16923:1 16946:1 16949:3 16962:1 16970:1 17060:3 17077:1 17083:2 17112:1 17116:2 17141:1 17147:1 17182:1 17188:2 17211:2 17212:1 17214:1 17216:1 17217:1 17220:1 17223:1 17231:2 17232:1 17237:1 17242:1 17267:1 17302:1 17305:2 17340:1 17419:2 17519:1 17520:1 17536:1 17543:1 17595:1 17629:1 17642:2 17656:1 17686:2 17688:2 17691:1 17702:1 17709:1 17729:11 17765:1 17776:2 17803:5 17851:2 17898:3 17899:1 17915:1 17917:1 17926:1 17954:1 17957:1 17961:1 17980:1 18014:1 18028:3 18031:1 18044:1 18047:1 18054:4 18060:2 18076:3 18111:1 18112:1 18125:1 18126:2 18129:3 18158:1 18167:2 18171:2 18172:1 18188:1 18233:1 18248:1 18299:1 18308:1 18313:1 18385:1 18413:1 18417:1 18429:1 18434:3 18447:1 18471:1 18478:1 18505:1 18535:1 18536:2 18646:1 18682:1 18683:3 18700:1 18717:1 18740:1 18747:1 18782:2 18785:1 18825:1 18836:1 18843:2 18874:2 18882:3 18892:1 18894:1 18938:1 18951:4 18957:1 18994:2 19085:1 19091:1 19093:1 19129:1 19144:1 19160:1 19172:2 19190:2 19191:1 19195:1 19244:1 19306:5 19308:1 19315:1 19390:1 19413:1 19419:4 19434:1 19449:1 19480:1 19491:2 19492:1 19497:1 19503:1 19542:1 19559:1 19573:1 19577:1 19594:1 19602:1 19605:2 19611:2 19633:1 19639:1 19644:1556 19648:1 19673:3 19678:1 19690:1 19709:1 19805:2 19807:1 19814:1 19840:2 19845:1 19863:1 19871:1 19878:2 19880:1 19893:2 19895:1 19915:1 19926:1 19962:1 19990:1 20014:1 20072:1 20095:1 20121:1 20131:1 20138:1 20179:1 20200:1 20216:1 20218:1 20239:1 20290:1 20302:1 20303:1 20389:1 20393:1 20396:1 20412:1 20438:2 20460:3 20462:1 20464:2 20466:1 20476:2 20487:1 20497:1 20498:4 20502:2 20547:1 20553:1 20554:1 20576:1 20588:1 20597:1 20604:1 20609:4 20622:1 20628:1 20630:4 20643:1 20674:1 20698:1 20703:1 20708:1 20758:1 20769:2 20778:1 20786:1 20801:1 20841:1 20853:1 20875:5 20884:2 20903:1 20906:1 20915:1 20919:1 20933:1 20943:1 20951:2 20955:2 20980:1 20986:1 20989:2 20993:1 20998:1 21001:1 21015:2 21034:1 21052:1 21066:1 21079:1 21106:1 21160:2 21182:1 21184:3 21185:1 21192:1 21197:2 21211:2 21212:1 21224:1 21246:5 21254:1 21261:2 21286:1 21298:1 21302:4 21316:1 21319:1 21336:1 21341:6 21355:1 21365:5 21393:1 21455:1 21457:2 21462:1 21465:1 21484:2 21492:1 21507:1 21511:1 21531:1 21545:1 21548:1 21570:1 21627:3 21629:1 21668:2 21683:2 21741:1 21782:1 21785:1 21787:1 21807:1 21833:1 21843:1 21857:1 21869:1 21879:1 21900:2 21927:1 21934:1 21951:1 21974:1 21990:1 21991:1 21994:1 22024:1 22027:1 22039:1 22043:3 22046:1 22048:1 22056:7 22059:1 22077:1 22102:1 22107:1 22113:1 22149:1 22175:1 22197:2 22213:1 22239:1 22255:2 22260:1 22262:1 22267:1 22283:1 22296:1 22306:1 22322:1 22327:1 22341:2 22414:1 22422:2 22426:2 22431:1 22443:1 22446:1 22462:1 22513:1 22518:1 22527:1 22552:1 22557:2 22601:1 22605:1 22610:1 22613:2 22649:1 22659:1 22680:2 22689:1 22710:1 22711:2 22736:1 22747:1 22749:1 22754:1 22764:1 22770:1 22782:2 22801:2 22809:2 22817:2 22831:2 22832:1 22844:1 22849:2 22853:1 22855:1 22860:1 22864:1 22867:1 22887:4 22891:1 22892:1 22911:1 22913:1 22919:1 22935:1 22943:1 22954:1 22970:1 22988:1 23000:1 23008:1 23014:1 23039:2 23095:2 23096:1 23107:1 23109:1 23112:1 23142:1 23145:1 23151:1 23156:2 23157:1 23166:1 23167:2 23170:1 23178:1 23180:9 23181:3 23185:1 23186:1 23187:1 23193:2 23205:1 23214:1 23219:1 23221:1 23222:4 23238:1 23244:1 23251:1 23279:1 23282:5 23313:1 23332:1 23338:1 23357:1 23368:1 23375:1 23386:1 23395:2 23399:2 23404:1 23408:3 23410:1 23433:1 23444:1 23460:1 23466:1 23469:2 23478:1 23483:1 23486:1 23513:1 23563:2 23567:2 23569:2 23581:1 23594:1 23607:2 23615:1 23625:1 23630:1 23633:1 23641:1 23643:1 23644:5 23651:1 23671:1 23674:1 23684:2 23690:1 23700:1 23731:1 23744:2 23752:1 23779:9 23786:1 23796:4 23802:1 23804:2 23807:1 23809:1 23810:4 23831:2 23850:1 23856:1 23858:1 23862:2 23871:1 23878:1 23883:1 23885:1 23893:1 23899:5 23903:1 23915:1 23979:1 24025:1 24053:1 24056:5 24068:1 24108:1 24142:2 24196:2 24200:1 24224:1 24229:2 24278:1 24286:1 24374:3 24404:1 24430:1 24447:1 24498:1 24500:1 24525:1 24582:1 24601:1 24614:2 24631:1 24633:2 24644:1 24654:2 24662:1 24666:1 24682:1 24704:1 24726:2 24733:1 24738:2 24741:1 24742:2 24751:1 24764:1 24770:1 24772:1 24786:2 24799:1 24804:1 24835:4 24868:1 24870:1 24884:1 24886:2 24904:1 24918:1 24930:1 24964:2 24994:1 25035:1 25065:1 25067:1 25080:2 25089:2 25120:1 25133:1 25181:1 25250:1 25271:1 25310:1 25329:1 25331:1 25345:1 25348:1 25351:1 25355:1 25369:1 25388:1 25405:1 25406:1 25408:1 25481:2 25509:1 25522:1 25538:1 25572:1 25591:1 25603:5 25608:1 25635:6 25652:1 25664:1 25680:1 25682:1 25684:1 25685:1 25712:2 25724:2 25739:1 25775:1 25786:1 25799:11 25850:3 25916:1 25918:1 25921:1 25930:1 25932:1 25935:2 25940:2 25949:1 25963:1 25970:1 25972:1 25989:4 25996:1 25997:1 26012:1 26015:1 26049:3 26051:1 26055:1 26064:1 26080:3 26083:1 26090:1 26094:1 26099:1 26104:1 26110:1 26120:1 26157:1 26165:1 26178:1 26215:1 26254:1 26278:1 26289:1 26301:1 26313:2 26314:1 26318:1 26327:1 26381:2 26397:2 26413:1 26439:1 26449:1 26453:2 26456:4 26504:6 26505:2 26548:1 26566:1 26591:2 26607:1 26626:1 26639:1 26689:1 26703:7 26729:3 26752:1 26762:1 26763:1 26795:1 26855:2 26857:3 26883:1 26889:1 26904:2 26913:1 26929:1 26930:1 26938:2 26956:1 26959:3 26964:2 26980:1 26992:1 27001:4 27039:3 27040:1 27062:1 27089:1 27152:1 27157:3 27162:1 27201:1 27207:1 27243:1 27262:1 27269:2 27279:1 27282:2 27306:1 27324:1 27347:1 27350:1 27383:1 27406:1 27449:1 27491:1 27498:3 27537:1 27580:1 27584:1 27603:1 27614:1 27619:1 27624:1 27627:1 27648:2 27661:1 27710:2 27732:1 27748:1 27760:1 27797:4 27808:1 27818:1 27854:1 27858:2 27881:1 27892:1 27896:2 27909:1 27916:1 27917:3 27927:1 28004:1 28037:1 28049:1 28069:1 28079:1 28096:1 28100:1 28102:1 28103:2 28138:1 28139:1 28146:1 28152:1 28165:3 28173:1 28177:3 28205:1 28207:1 28225:2 28241:1 28280:1 28290:2 28327:1 28342:2 28360:1 28379:2 28482:1 28483:1 28486:1 28496:1 28527:1 28561:2 28576:3 28597:1 28646:1 28690:1 28710:1 28726:1 28727:1 28736:1 28738:1 28780:1 28782:1 28818:1 28836:1 28843:2 28924:1 28948:3 29010:1 29014:1 29020:1 29025:1 29032:1 29052:1 29054:1 29063:1 29081:1 29088:1 29092:1 29098:1 29109:1 29111:1 29119:1 29122:1 29128:1 29130:1 29133:1 29134:1 29137:2 29144:2 29152:1 29154:1 29158:1 29160:1 29188:1 29196:1 29197:2 29224:6 29225:1 29227:1 29228:1 29238:1 29249:2 29253:1 29259:1 29282:1 29284:1 29295:1 29304:1 29340:1 29344:1 29354:1 29360:1 29363:2 29386:1 29397:1 29415:1 29444:1 29447:2 29450:2 29469:1 29539:1 29576:1 29579:1 29590:1 29593:2 29596:1 29610:1 29661:1 29679:1 29689:1 29702:1 29723:3 29729:1 29760:2 29778:1 29779:2 29781:2 29788:1 29789:1 29790:1 29804:1 29825:2 29826:1 29837:1 29851:1 29860:1 29887:25 29888:1 29893:1 29896:1 29910:2 29918:1 29933:1 29938:6 29946:4 30001:1 30008:1 30039:3 30052:1 30062:1 30069:2 30078:4 30112:6 30118:1 30124:2 30130:1 30149:1 30159:1 30165:1 30194:1 30197:1 30199:3 30207:1 30217:1 30243:1 30289:2 30329:1 30331:1 30350:1 30358:2 30377:1 30382:1 30388:1 30436:4 30438:1 30457:1 30465:1 30476:1 30510:1 30513:5 30523:1 30534:3 30537:1 30538:1 30541:1 30660:1 30678:1 30692:4 30693:2 30694:2 30720:1 30741:1 30754:1 30801:1 30842:1 30844:1 30846:1 30864:2 30869:2 30874:1 30884:5 30907:2 30909:1 30925:1 30940:1 30953:1 30956:1 30981:1 30986:3 31003:2 31035:1 31048:1 31055:1 31066:1 31089:1 31093:3 31100:1 31142:1 31154:1 31195:1 31208:1 31212:2 31216:1 31222:1 31231:1 31238:1 31243:2 31246:1 31248:1 31250:1 31251:1 31287:1 31299:1 31313:1 31373:1 31385:1 19 1:1 27:1 30:1 52:1 56:1 57:1 91:1 108:1 153:1 154:1 170:3 206:3 208:1 232:1 234:1 242:1 246:1 276:1 308:1 338:1 354:1 367:1 428:4 462:2 486:1 561:1 569:1 604:1 615:1 616:1 622:1 643:7 649:1 661:1 671:1 697:1 764:1 778:1 837:1 843:1 852:1 870:1 879:1 890:1 899:1 907:3 926:2 928:1 932:1 933:2 937:3 938:3 948:2 949:1 951:1 967:1 969:1 985:1 987:1 993:1 994:1 998:6 1009:1 1021:2 1022:1 1037:2 1038:1 1055:1 1080:4 1083:1 1137:1 1195:1 1213:1 1249:1 1262:1 1277:1 1285:1 1322:1 1335:1 1336:2 1337:1 1348:2 1350:1 1360:1 1366:1 1380:1 1389:1 1390:1 1395:1 1396:1 1437:1 1458:1 1527:1 1533:1 1543:1 1559:1 1582:1 1584:1 1586:3 1592:2 1600:2 1607:2 1669:2 1670:1 1675:4 1690:2 1699:1 1712:1 1757:1 1766:1 1795:3 1815:1 1828:1 1846:2 1855:1 1887:1 1899:1 1906:1 1909:1 1922:1 1923:2 1928:2 1940:1 1948:1 1950:2 1956:1 1978:1 1979:1 2013:1 2018:1 2026:1 2027:1 2040:1 2087:1 2105:1 2113:1 2133:2 2165:1 2190:1 2196:2 2198:2 2203:1 2205:2 2208:1 2214:1 2216:2 2251:1 2266:1 2267:4 2273:3 2297:1 2321:1 2337:1 2345:2 2352:1 2369:1 2375:1 2384:2 2391:2 2393:2 2396:1 2401:1 2402:2 2404:1 2410:2 2415:1 2422:3 2425:2 2434:1 2505:1 2510:2 2512:2 2528:4 2536:1 2548:1 2549:1 2584:1 2592:4 2616:1 2626:1 2653:1 2655:3 2669:1 2689:1 2690:1 2759:1 2760:1 2779:2 2790:1 2797:1 2811:2 2832:7 2838:2 2843:1 2859:1 2890:2 2905:1 2909:1 2943:1 2962:3 2985:3 2989:1 3005:1 3014:18 3023:9 3040:1 3058:1 3065:5 3074:1 3090:1 3098:1 3102:4 3124:1 3184:1 3265:1 3294:1 3296:1 3307:1 3336:1 3351:1 3365:1 3410:2 3423:2 3463:2 3477:1 3488:1 3489:4 3534:1 3542:1 3548:2 3570:1 3573:1 3652:4 3653:1 3654:1 3666:1 3669:1 3700:1 3713:1 3742:1 3752:1 3779:2 3788:1 3793:1 3794:1 3798:1 3802:1 3813:1 3824:2 3844:1 3879:1 3880:1 3882:1 3889:1 3895:1 3936:2 3943:5 3989:1 4022:1 4031:1 4055:2 4094:1 4100:1 4104:1 4110:1 4126:3 4147:1 4153:1 4173:2 4208:1 4227:1 4228:1 4229:3 4259:1 4283:1 4294:1 4313:1 4340:3 4348:1 4361:1 4366:1 4389:1 4401:1 4409:1 4425:1 4432:1 4450:1 4452:1 4454:3 4456:1 4498:1 4558:3 4579:1 4598:1 4608:2 4613:2 4651:1 4664:1 4682:1 4683:3 4684:1 4736:1 4748:1 4753:1 4776:2 4780:1 4781:1 4816:1 4817:4 4818:1 4862:1 4868:1 4871:1 4876:1 4885:1 4888:1 4905:1 4906:2 4919:1 4927:1 4949:1 4969:1 4977:1 4996:1 5000:1 5005:1 5028:1 5034:1 5039:1 5062:1 5065:3 5127:1 5132:6 5133:1 5163:1 5183:3 5245:2 5247:1 5248:3 5264:4 5265:4 5266:1 5269:1 5270:1 5271:1 5275:1 5276:3 5277:1 5284:2 5287:1 5291:3 5292:1 5293:1 5318:1 5320:1 5344:1 5350:1 5356:2 5365:1 5385:1 5436:1 5443:1 5481:1 5508:1 5535:1 5551:1 5574:1 5639:1 5666:1 5678:1 5686:2 5710:1 5712:1 5732:1 5748:1 5777:1 5784:1 5794:6 5815:1 5822:1 5824:1 5827:1 5839:1 5889:2 5890:2 5913:1 5917:1 5952:1 5954:3 6030:1 6036:2 6040:1 6048:1 6061:1 6093:1 6099:1 6151:1 6196:3 6283:1 6301:1 6309:1 6315:2 6333:2 6345:3 6346:2 6348:10 6349:1 6350:1 6355:3 6362:1 6378:2 6399:1 6408:1 6409:2 6444:1 6446:1 6452:1 6465:1 6468:1 6473:4 6474:1 6479:1 6488:2 6567:1 6568:1 6583:1 6588:3 6591:1 6607:1 6608:1 6610:2 6645:1 6664:1 6670:1 6681:1 6683:1 6692:2 6693:2 6696:4 6697:1 6704:2 6707:1 6709:2 6715:1 6736:1 6745:1 6769:1 6827:1 6850:1 6852:1 6882:2 6886:1 6926:1 6965:1 7006:1 7013:3 7028:1 7033:1 7035:1 7045:1 7052:1 7088:1 7113:1 7120:2 7127:1 7128:2 7142:1 7151:1 7155:3 7165:1 7181:5 7186:3 7216:2 7221:3 7285:1 7289:1 7305:1 7312:1 7314:2 7319:2 7332:1 7346:1 7353:1 7355:1 7381:2 7382:1 7386:1 7435:1 7436:1 7450:2 7486:1 7489:1 7509:1 7533:1 7535:1 7537:11 7540:1 7562:2 7585:1 7594:2 7640:1 7658:1 7688:1 7691:1 7781:1 7804:1 7845:3 7855:3 7862:1 7864:2 7880:2 7886:1 7887:2 7919:1 7929:1 7943:1 7975:1 7989:1 8032:1 8041:1 8104:6 8105:3 8128:1 8130:3 8135:1 8160:1 8163:1 8172:17 8178:1 8188:1 8194:1 8201:20 8204:6 8213:1 8267:1 8273:1 8283:1 8284:2 8315:1 8332:1 8333:1 8340:1 8347:1 8357:1 8370:1 8400:1 8415:2 8416:1 8442:1 8443:1 8455:2 8565:1 8575:1 8581:1 8584:1 8598:2 8604:3 8622:1 8626:1 8648:1 8661:1 8669:1 8689:2 8698:12 8728:3 8741:3 8786:1 8837:1 8849:2 8884:1 8892:1 8903:1 8913:1 8918:1 8927:2 8948:2 8952:2 8971:4 8976:3 8977:1 8979:1 8984:1 8985:1 8986:1 9012:1 9038:1 9057:4 9058:2 9061:2 9062:1 9064:2 9071:3 9072:3 9074:1 9077:1 9094:1 9106:1 9115:1 9120:1 9130:1 9146:1 9148:1 9158:1 9165:2 9177:1 9181:1 9192:1 9249:1 9259:3 9269:1 9326:1 9339:1 9372:2 9377:2 9385:2 9405:1 9431:1 9442:2 9470:1 9539:1 9549:1 9563:1 9584:1 9588:1 9593:1 9595:1 9602:2 9606:5 9628:1 9644:1 9667:1 9686:1 9715:1 9768:1 9779:7 9783:1 9791:3 9798:1 9817:1 9855:1 9874:4 9885:1 9894:1 9921:1 9926:1 9931:1 9943:1 9944:1 9964:2 9990:1 10046:1 10091:1 10096:1 10105:1 10112:2 10114:1 10133:1 10167:1 10172:3 10185:1 10224:1 10235:8 10236:27 10238:2 10253:2 10272:1 10273:1 10289:1 10293:1 10302:1 10318:1 10336:1 10358:2 10369:4 10382:1 10394:1 10396:1 10415:1 10431:1 10439:1 10440:1 10471:1 10543:1 10544:2 10554:1 10578:2 10594:1 10610:1 10611:4 10635:1 10640:1 10654:2 10669:1 10687:1 10699:1 10714:1 10727:1 10728:1 10735:1 10736:5 10746:1 10759:1 10777:1 10796:1 10853:1 10871:1 10901:3 10921:1 10926:1 10940:1 10943:1 10967:2 10971:4 11000:2 11003:1 11007:1 11030:1 11037:1 11064:1 11089:1 11091:1 11102:1 11144:1 11150:4 11158:1 11181:6 11207:1 11238:2 11256:2 11266:1 11267:1 11272:1 11275:1 11296:1 11297:1 11311:1 11333:3 11372:2 11377:7 11385:1 11388:2 11404:3 11405:2 11406:2 11454:1 11462:3 11492:1 11493:1 11497:1 11501:1 11509:2 11530:1 11536:1 11586:1 11589:1 11614:4 11620:1 11632:4 11635:1 11646:1 11651:1 11653:1 11678:1 11686:1 11689:1 11692:1 11697:1 11737:1 11751:2 11757:1 11759:2 11767:2 11769:1 11806:2 11830:1 11835:1 11841:2 11842:1 11852:1 11863:1 11871:1 11906:1 11914:1 11928:2 11932:1 11938:1 11940:1 11942:1 11976:1 11989:1 12004:1 12009:1 12021:1 12041:1 12067:1 12070:1 12072:1 12074:1 12088:1 12108:4 12119:1 12140:1 12151:1 12154:1 12165:1 12170:2 12181:2 12184:1 12219:1 12222:1 12235:2 12255:1 12268:1 12273:1 12289:2 12293:1 12304:2 12322:6 12324:1 12330:2 12344:1 12346:2 12351:1 12352:2 12359:1 12373:1 12380:1 12383:1 12388:2 12398:1 12419:1 12427:2 12439:2 12449:7 12456:1 12462:1 12464:1 12467:3 12480:1 12501:1 12517:1 12520:1 12546:1 12591:4 12595:1 12610:1 12615:1 12640:1 12668:1 12678:1 12680:2 12685:1 12690:1 12691:1 12715:1 12719:1 12752:1 12764:1 12771:1 12775:1 12802:1 12828:1 12838:1 12846:1 12857:1 12873:2 12891:1 12962:2 12999:1 13009:1 13042:1 13048:1 13050:1 13058:1 13124:1 13135:2 13143:2 13148:1 13179:1 13198:1 13216:1 13229:1 13235:1 13251:2 13257:1 13425:9 13434:1 13446:2 13448:1 13475:4 13480:1 13482:2 13486:1 13493:1 13497:1 13531:3 13536:1 13538:1 13540:1 13543:1 13552:1 13555:1 13558:1 13568:1 13572:1 13597:1 13614:1 13623:1 13665:1 13691:2 13707:1 13765:1 13786:1 13788:1 13819:1 13829:1 13853:1 13855:1 13869:1 13871:4 13878:2 13894:1 13906:1 13909:3 13945:3 13962:1 13963:1 13974:4 13975:1 14005:2 14020:1 14030:1 14033:3 14040:1 14051:1 14057:2 14067:1 14069:2 14075:1 14077:2 14103:1 14114:4 14120:1 14148:1 14167:3 14185:1 14191:1 14212:1 14222:4 14225:1 14239:1 14242:1 14245:1 14274:1 14282:1 14288:1 14307:1 14318:1 14323:1 14325:2 14334:1 14337:1 14370:3 14372:1 14375:1 14377:1 14392:1 14401:1 14415:1 14449:1 14460:3 14462:1 14464:2 14468:3 14479:1 14489:1 14498:1 14536:1 14540:2 14544:1 14551:1 14580:2 14586:1 14617:1 14618:1 14627:1 14641:1 14646:1 14671:1 14683:1 14691:1 14725:1 14735:1 14769:2 14774:1 14795:1 14819:1 14832:1 14864:1 14872:1 14893:1 14906:1 14911:1 14912:1 14919:1 14927:3 14933:1 14969:1 15004:1 15015:1 15059:1 15067:1 15119:1 15143:1 15171:1 15175:1 15193:1 15196:1 15202:1 15213:1 15225:2 15231:1 15244:1 15245:2 15258:1 15262:1 15275:1 15298:1 15316:1 15346:1 15354:1 15368:1 15378:1 15381:1 15384:2 15391:1 15396:1 15401:1 15407:1 15410:2 15415:2 15438:2 15453:1 15457:1 15493:2 15505:1 15510:1 15525:1 15548:1 15550:2 15553:1 15591:1 15624:2 15642:1 15695:1 15706:1 15740:1 15760:1 15762:1 15764:1 15765:1 15782:1 15785:2 15826:2 15851:1 15853:3 15861:1 15862:1 15894:1 15899:2 15918:1 15927:2 15934:1 15960:1 15994:1 16028:1 16064:1 16095:1 16107:1 16118:1 16134:1 16144:1 16172:1 16186:1 16262:1 16273:1 16285:1 16313:1 16355:1 16363:1 16365:1 16383:1 16387:1 16402:1 16406:1 16411:3 16414:1 16415:1 16430:1 16431:3 16457:2 16467:2 16475:3 16499:1 16502:1 16555:1 16575:1 16594:1 16627:1 16634:2 16635:2 16641:4 16648:1 16649:1 16667:1 16669:1 16671:2 16700:1 16723:1 16733:2 16738:1 16747:1 16799:1 16805:4 16819:3 16825:1 16829:1 16835:1 16854:1 16861:1 16889:1 16907:1 16923:1 16946:1 16949:3 16962:1 16970:1 17060:3 17077:1 17083:2 17112:1 17116:2 17141:1 17147:1 17182:1 17188:2 17211:2 17212:1 17214:1 17216:1 17217:1 17220:1 17223:1 17231:2 17232:1 17237:1 17242:1 17267:1 17302:1 17305:2 17338:1 17340:1 17419:2 17519:1 17520:1 17536:1 17543:1 17595:1 17629:1 17642:2 17656:1 17686:2 17688:2 17691:1 17702:1 17709:1 17729:11 17765:1 17776:2 17803:5 17847:1 17851:2 17898:3 17899:1 17915:1 17917:1 17926:1 17954:1 17957:1 17961:1 17980:1 18014:1 18028:3 18031:1 18044:1 18047:1 18054:4 18060:2 18076:3 18111:1 18112:1 18125:1 18126:2 18129:3 18158:1 18167:2 18171:3 18172:1 18188:1 18233:1 18248:1 18299:1 18308:1 18313:1 18326:1 18385:1 18413:1 18417:1 18429:1 18434:3 18447:1 18471:1 18478:1 18505:1 18535:1 18536:2 18646:1 18682:1 18683:3 18700:1 18717:1 18740:1 18747:1 18782:2 18785:1 18825:1 18836:1 18843:2 18874:3 18882:3 18892:1 18894:1 18938:1 18951:4 18957:1 18994:2 19085:1 19091:1 19093:1 19129:1 19144:1 19160:1 19172:2 19190:2 19191:1 19195:1 19244:1 19306:5 19308:1 19315:1 19390:1 19413:1 19419:4 19434:1 19449:1 19480:1 19491:2 19492:1 19497:1 19503:1 19542:1 19559:1 19573:1 19577:1 19594:1 19602:1 19605:2 19611:2 19633:1 19639:1 19644:1619 19648:1 19673:3 19678:1 19690:1 19709:1 19727:1 19805:2 19807:1 19814:1 19840:2 19845:1 19863:1 19869:1 19871:1 19878:2 19880:1 19893:2 19895:1 19915:1 19926:1 19962:1 19990:1 20014:1 20032:1 20072:1 20095:1 20121:1 20131:1 20138:1 20179:1 20186:1 20200:1 20216:1 20218:1 20239:1 20290:1 20302:1 20303:1 20389:1 20393:1 20396:1 20412:1 20438:2 20460:3 20462:1 20464:2 20466:1 20476:2 20487:1 20497:1 20498:4 20502:2 20547:1 20553:1 20554:1 20576:1 20588:1 20597:1 20604:1 20609:4 20622:1 20628:1 20630:4 20643:1 20674:1 20698:1 20703:1 20708:1 20758:1 20769:2 20778:1 20786:2 20801:1 20841:1 20853:1 20875:5 20884:2 20903:1 20906:1 20915:1 20919:1 20933:1 20943:1 20951:2 20955:2 20980:1 20986:1 20989:2 20993:1 20998:1 21001:1 21015:2 21034:1 21052:1 21066:1 21079:1 21106:1 21160:2 21182:1 21184:3 21185:1 21192:1 21197:2 21211:2 21212:1 21224:1 21246:5 21254:1 21261:3 21286:1 21298:1 21302:4 21316:1 21319:1 21326:1 21336:1 21341:7 21355:1 21365:5 21393:1 21455:1 21457:2 21462:1 21465:1 21484:2 21492:1 21507:1 21511:1 21531:1 21545:1 21548:1 21570:1 21627:3 21629:1 21668:2 21683:2 21741:1 21782:1 21785:1 21787:1 21807:1 21833:1 21843:1 21855:1 21857:1 21869:1 21879:1 21900:2 21927:1 21934:1 21951:1 21974:1 21989:1 21990:1 21991:1 21994:1 22024:1 22027:1 22039:1 22043:3 22046:1 22048:1 22056:8 22059:1 22077:1 22102:1 22107:2 22113:1 22149:1 22175:1 22197:2 22213:1 22239:1 22255:2 22260:1 22262:1 22267:1 22283:1 22296:1 22306:1 22322:1 22327:1 22341:2 22414:1 22422:2 22426:2 22431:1 22443:1 22446:1 22462:1 22513:1 22518:1 22527:1 22552:1 22557:2 22601:1 22605:1 22610:1 22613:2 22649:1 22659:1 22680:2 22689:1 22710:1 22711:2 22736:1 22747:1 22749:1 22754:1 22764:1 22770:1 22782:2 22801:2 22809:2 22817:2 22819:1 22831:2 22832:1 22844:1 22849:2 22853:1 22855:1 22860:1 22864:1 22867:1 22887:4 22891:1 22892:1 22911:1 22913:1 22919:1 22935:1 22943:1 22954:1 22970:1 22988:1 23000:1 23008:1 23014:1 23039:2 23095:2 23096:1 23107:1 23109:1 23111:1 23112:1 23142:1 23145:1 23151:1 23156:2 23157:1 23166:1 23167:2 23170:1 23178:1 23180:10 23181:3 23185:1 23186:1 23187:1 23193:3 23205:1 23214:1 23219:1 23221:1 23222:4 23238:1 23244:1 23251:1 23279:1 23282:5 23313:1 23332:1 23338:1 23357:1 23368:1 23375:1 23386:1 23395:2 23399:2 23404:1 23408:3 23410:1 23433:1 23444:1 23460:1 23466:1 23469:2 23478:1 23483:1 23486:1 23513:1 23563:2 23567:2 23569:2 23581:1 23594:1 23607:2 23615:1 23625:1 23630:1 23633:1 23641:1 23643:1 23644:5 23651:1 23671:1 23674:1 23684:3 23690:1 23700:1 23731:1 23744:3 23752:1 23779:9 23786:1 23796:4 23802:1 23804:2 23807:1 23809:1 23810:4 23831:2 23850:1 23856:1 23858:1 23862:2 23871:1 23878:1 23883:1 23885:1 23893:1 23899:5 23903:1 23915:1 23979:1 23997:1 24025:1 24047:1 24053:1 24056:5 24068:1 24108:1 24142:2 24196:2 24200:1 24224:1 24229:2 24278:1 24286:1 24374:3 24404:1 24430:1 24447:1 24498:1 24500:1 24525:1 24582:1 24601:1 24614:2 24631:1 24633:2 24639:1 24644:1 24654:3 24662:1 24666:1 24682:1 24704:1 24726:2 24733:1 24738:2 24741:1 24742:2 24751:1 24764:1 24770:1 24772:1 24786:2 24799:1 24804:1 24835:4 24868:1 24870:1 24884:1 24886:2 24904:1 24918:1 24930:1 24964:2 24994:1 25035:1 25065:1 25067:1 25080:2 25089:2 25120:1 25133:1 25181:1 25193:1 25250:1 25271:1 25310:1 25329:2 25331:1 25345:1 25348:1 25351:1 25355:1 25369:1 25388:1 25405:1 25406:1 25408:1 25481:2 25509:1 25522:1 25538:1 25572:1 25591:1 25603:5 25608:1 25635:6 25652:1 25664:1 25680:1 25682:1 25684:1 25685:1 25712:2 25724:2 25739:1 25775:1 25786:1 25799:11 25850:3 25916:2 25918:1 25921:1 25930:1 25932:1 25935:2 25940:2 25949:1 25963:1 25970:1 25972:1 25989:4 25996:1 25997:1 26012:1 26015:1 26049:3 26051:1 26055:1 26058:1 26064:1 26080:3 26083:1 26090:1 26094:1 26099:1 26104:1 26110:1 26120:2 26122:1 26157:1 26165:1 26178:1 26215:1 26254:2 26269:1 26278:1 26289:1 26301:1 26313:2 26314:1 26318:1 26327:1 26381:2 26397:2 26413:1 26439:1 26449:1 26453:2 26456:4 26504:6 26505:2 26548:1 26566:1 26591:2 26607:1 26626:1 26639:1 26689:1 26703:7 26729:3 26752:1 26762:1 26763:1 26795:1 26833:1 26855:2 26857:3 26883:1 26889:1 26904:2 26913:1 26929:1 26930:1 26938:2 26956:1 26959:3 26964:2 26980:1 26992:1 27001:4 27039:3 27040:1 27062:1 27089:1 27152:1 27157:3 27162:1 27201:1 27207:1 27243:1 27262:1 27269:2 27279:1 27282:2 27306:1 27324:1 27347:1 27350:1 27383:1 27406:1 27422:1 27449:1 27491:1 27498:3 27537:1 27580:1 27584:1 27603:1 27614:1 27619:1 27624:1 27627:1 27648:2 27661:1 27710:2 27732:1 27748:1 27760:1 27783:1 27797:4 27808:1 27818:1 27854:1 27858:2 27881:1 27892:1 27896:2 27909:1 27916:1 27917:3 27927:1 28004:1 28037:1 28049:1 28069:1 28079:1 28096:1 28100:1 28102:1 28103:2 28138:1 28139:1 28146:1 28152:1 28165:3 28173:1 28177:3 28205:1 28207:1 28225:2 28241:1 28280:1 28290:2 28327:1 28342:2 28360:1 28379:3 28397:1 28482:1 28483:1 28486:1 28496:1 28527:1 28561:2 28576:3 28597:1 28646:1 28690:1 28710:1 28726:1 28727:1 28736:1 28738:1 28780:1 28782:1 28818:1 28836:1 28843:3 28924:1 28948:3 29010:1 29014:1 29015:1 29020:1 29025:1 29032:1 29052:1 29054:1 29063:1 29078:1 29081:1 29088:1 29092:1 29098:1 29109:1 29111:2 29119:1 29122:1 29128:1 29130:1 29133:1 29134:1 29137:2 29144:2 29152:1 29154:1 29158:1 29160:1 29188:1 29196:1 29197:2 29224:6 29225:1 29227:1 29228:1 29238:1 29249:2 29253:1 29259:1 29282:1 29284:1 29295:1 29304:1 29340:1 29344:1 29354:1 29360:1 29363:2 29386:1 29397:1 29415:1 29444:1 29447:2 29450:2 29469:1 29539:1 29576:1 29579:1 29590:1 29593:2 29596:1 29610:1 29633:1 29661:1 29679:1 29689:1 29702:1 29723:3 29729:1 29760:2 29778:1 29779:2 29781:2 29787:1 29788:1 29789:1 29790:1 29804:1 29825:2 29826:1 29837:1 29851:1 29860:1 29887:26 29888:1 29893:3 29896:1 29910:2 29918:1 29933:1 29938:6 29946:4 30001:1 30008:1 30039:3 30052:1 30062:1 30069:2 30078:4 30112:6 30118:1 30124:2 30130:1 30149:1 30159:1 30165:1 30194:1 30197:1 30199:3 30207:1 30217:1 30243:1 30289:2 30329:1 30331:1 30350:1 30358:2 30377:1 30382:1 30388:1 30436:4 30438:1 30457:1 30465:1 30476:1 30510:1 30513:5 30523:1 30534:3 30537:1 30538:1 30541:1 30556:1 30660:1 30678:1 30692:4 30693:2 30694:2 30720:1 30741:1 30754:1 30801:1 30842:1 30844:1 30846:1 30864:2 30869:3 30874:1 30884:5 30907:2 30909:1 30925:1 30940:1 30953:1 30956:1 30981:1 30986:3 31003:2 31035:1 31048:1 31055:1 31066:1 31089:1 31093:3 31100:1 31142:1 31154:1 31195:1 31208:1 31212:2 31216:1 31222:1 31231:1 31238:1 31243:2 31246:1 31248:1 31250:1 31251:1 31287:1 31299:1 31313:1 31373:1 31385:1 19 1:1 27:1 30:1 52:1 56:1 57:1 91:1 108:1 153:1 154:1 170:3 206:3 208:1 232:1 234:1 242:1 246:1 276:1 308:1 338:1 354:1 367:1 428:5 462:3 482:1 486:1 561:1 569:1 604:1 615:1 616:1 622:1 643:8 649:1 661:1 671:1 697:1 764:1 778:1 837:1 843:1 852:1 870:1 879:1 890:1 899:1 907:3 926:2 928:1 932:1 933:2 937:3 938:3 948:2 949:1 951:1 967:1 969:1 985:1 987:1 993:1 994:2 998:6 1009:1 1021:2 1022:1 1037:2 1038:1 1055:1 1080:4 1083:1 1137:1 1195:1 1213:1 1249:1 1262:1 1277:1 1285:1 1322:1 1335:1 1336:2 1337:1 1348:2 1350:1 1360:1 1366:1 1380:1 1389:1 1390:1 1395:1 1396:1 1437:1 1458:1 1527:1 1533:1 1543:1 1559:1 1582:1 1584:1 1586:3 1592:2 1600:2 1607:2 1669:2 1670:1 1675:4 1690:2 1699:1 1712:1 1757:1 1766:1 1795:3 1815:1 1828:1 1842:1 1846:2 1855:1 1887:1 1899:1 1906:1 1909:1 1922:1 1923:2 1928:2 1940:1 1948:1 1950:2 1956:1 1978:1 1979:1 2013:1 2018:1 2026:1 2027:1 2040:1 2087:1 2105:1 2113:1 2133:2 2165:1 2190:1 2196:2 2198:2 2203:1 2205:2 2206:1 2208:1 2214:1 2216:2 2223:1 2251:1 2266:1 2267:4 2273:3 2297:1 2321:1 2337:1 2345:2 2352:1 2369:1 2375:1 2384:3 2388:1 2391:2 2393:2 2396:1 2401:1 2402:2 2404:1 2410:2 2415:1 2422:3 2425:2 2434:1 2501:1 2505:1 2510:2 2512:2 2521:1 2528:4 2536:1 2548:1 2549:1 2584:1 2592:4 2616:1 2626:1 2647:1 2653:1 2655:3 2669:1 2689:1 2690:1 2759:1 2760:1 2779:2 2784:1 2790:1 2797:1 2811:2 2832:7 2838:2 2843:1 2859:1 2890:2 2905:1 2909:2 2943:1 2962:3 2985:3 2989:1 3005:1 3014:18 3023:11 3040:1 3058:1 3065:5 3074:1 3083:1 3090:1 3098:1 3102:4 3124:1 3171:1 3184:1 3265:1 3294:1 3296:1 3307:1 3336:1 3351:1 3365:1 3410:2 3423:2 3463:2 3477:1 3488:1 3489:4 3534:1 3542:1 3548:2 3567:1 3570:1 3573:1 3652:4 3653:1 3654:1 3666:1 3669:1 3700:1 3713:1 3742:1 3752:1 3779:2 3788:1 3793:1 3794:1 3797:1 3798:1 3802:1 3813:1 3824:2 3844:1 3879:1 3880:1 3882:1 3889:1 3895:1 3936:2 3943:5 3989:1 4022:1 4031:1 4055:2 4094:1 4100:1 4104:1 4110:1 4126:3 4147:1 4153:1 4173:2 4208:1 4227:1 4228:1 4229:3 4259:1 4283:1 4294:1 4313:1 4340:3 4348:1 4361:1 4366:1 4389:1 4401:1 4409:1 4425:1 4432:1 4450:1 4452:1 4454:3 4456:1 4498:1 4558:3 4579:1 4598:1 4608:2 4613:2 4651:1 4664:1 4682:1 4683:3 4684:1 4736:1 4748:1 4753:2 4776:2 4780:1 4781:1 4816:1 4817:4 4818:1 4848:1 4862:1 4868:1 4871:1 4876:1 4885:1 4888:1 4905:1 4906:2 4919:1 4927:1 4949:1 4969:1 4977:1 4996:1 5000:1 5005:1 5028:1 5031:1 5034:1 5039:1 5062:1 5065:3 5127:1 5132:6 5133:1 5163:1 5183:3 5245:2 5247:1 5248:4 5264:4 5265:4 5266:1 5269:1 5270:1 5271:1 5275:1 5276:4 5277:1 5284:2 5287:1 5291:3 5292:1 5293:1 5318:1 5320:1 5344:1 5350:1 5356:3 5365:1 5385:1 5436:1 5443:1 5481:1 5508:1 5535:1 5551:1 5574:1 5639:1 5666:1 5678:1 5686:2 5710:1 5712:1 5732:1 5748:1 5777:1 5784:1 5794:6 5815:1 5822:1 5824:1 5827:1 5839:1 5889:2 5890:2 5913:1 5917:1 5952:1 5954:3 5958:1 6030:1 6036:2 6040:1 6048:1 6061:1 6064:1 6093:1 6099:1 6151:1 6196:3 6283:1 6301:1 6309:1 6315:2 6333:2 6345:3 6346:2 6348:10 6349:1 6350:1 6355:3 6362:1 6378:2 6399:1 6408:1 6409:2 6444:1 6445:1 6446:1 6452:1 6465:1 6468:1 6473:5 6474:1 6479:1 6488:2 6567:1 6568:1 6583:1 6588:3 6591:1 6607:1 6608:1 6610:2 6645:1 6664:1 6670:1 6681:1 6682:1 6683:1 6692:2 6693:2 6696:4 6697:1 6704:2 6707:1 6709:2 6713:1 6715:1 6736:1 6745:1 6769:1 6827:1 6840:1 6850:1 6852:1 6882:2 6886:1 6926:1 6965:1 7006:1 7013:3 7028:1 7033:1 7035:1 7045:1 7052:1 7088:1 7113:1 7120:2 7127:1 7128:2 7142:1 7151:1 7155:3 7165:1 7181:5 7186:3 7215:1 7216:2 7221:3 7285:1 7289:1 7305:1 7312:1 7314:2 7319:2 7332:1 7346:1 7353:1 7355:1 7381:2 7382:1 7386:1 7435:1 7436:1 7450:2 7486:1 7489:1 7509:1 7533:1 7535:1 7537:11 7540:1 7562:2 7585:1 7594:2 7640:1 7658:1 7688:1 7691:1 7781:1 7804:1 7845:3 7855:3 7862:1 7864:2 7880:2 7886:1 7887:2 7919:1 7929:1 7943:1 7975:1 7989:1 8032:1 8041:1 8104:7 8105:3 8128:1 8130:3 8135:1 8160:1 8163:1 8172:19 8178:1 8188:1 8194:1 8201:20 8204:6 8213:1 8267:1 8273:1 8283:1 8284:2 8315:1 8332:1 8333:1 8340:1 8347:1 8357:1 8370:1 8400:1 8415:2 8416:1 8442:1 8443:1 8455:2 8565:1 8575:1 8581:1 8584:1 8598:2 8604:3 8622:1 8626:1 8648:1 8661:1 8669:1 8689:2 8698:14 8728:3 8741:3 8746:1 8786:1 8837:1 8849:2 8884:1 8892:1 8903:1 8913:1 8918:1 8927:2 8948:2 8952:2 8971:4 8976:3 8977:1 8979:1 8984:1 8985:1 8986:1 9012:1 9038:1 9057:4 9058:2 9061:2 9062:1 9064:2 9071:3 9072:3 9074:1 9077:1 9094:1 9106:1 9115:1 9120:1 9130:1 9146:1 9148:1 9158:1 9165:2 9177:1 9181:1 9192:1 9249:1 9259:3 9269:1 9326:1 9339:1 9372:2 9377:2 9385:2 9405:1 9431:1 9442:2 9470:1 9539:1 9549:1 9563:1 9584:1 9588:1 9593:1 9595:1 9602:2 9606:5 9628:1 9644:1 9667:1 9686:1 9715:1 9768:1 9779:7 9783:1 9791:3 9798:1 9817:1 9825:1 9855:1 9874:4 9885:1 9894:1 9921:1 9926:1 9931:1 9943:1 9944:2 9964:2 9990:1 10046:1 10091:1 10096:1 10105:1 10112:3 10114:1 10133:1 10167:1 10172:3 10185:1 10224:1 10235:8 10236:27 10238:2 10253:2 10257:1 10260:1 10272:1 10273:1 10289:1 10293:1 10302:1 10318:1 10336:1 10358:2 10369:5 10382:1 10394:1 10396:1 10415:1 10431:1 10439:1 10440:1 10471:1 10543:1 10544:2 10554:1 10578:2 10594:1 10610:1 10611:4 10635:1 10640:1 10654:2 10669:1 10687:1 10699:1 10714:1 10727:1 10728:1 10735:1 10736:6 10746:1 10759:1 10777:1 10796:1 10853:1 10871:1 10901:3 10921:1 10926:1 10940:1 10943:1 10955:1 10967:3 10971:4 11000:2 11003:1 11007:1 11030:1 11037:1 11064:1 11089:1 11091:1 11102:1 11144:1 11150:4 11158:1 11181:7 11207:2 11238:2 11256:2 11266:1 11267:1 11272:1 11275:1 11296:2 11297:2 11311:1 11333:3 11372:2 11377:8 11385:1 11388:2 11404:3 11405:2 11406:2 11454:1 11462:3 11492:1 11493:1 11497:1 11501:1 11509:2 11530:1 11536:1 11586:1 11589:1 11614:4 11620:1 11632:4 11635:1 11646:1 11651:1 11653:1 11671:1 11678:1 11686:1 11689:1 11692:1 11697:1 11737:1 11751:2 11757:1 11759:2 11767:2 11769:1 11806:2 11830:1 11835:1 11841:2 11842:1 11852:1 11863:1 11871:1 11906:1 11914:1 11928:2 11932:1 11938:1 11940:1 11942:1 11976:1 11989:1 12000:1 12004:1 12009:1 12021:1 12041:1 12067:1 12070:1 12072:1 12074:1 12088:1 12108:4 12119:1 12140:1 12151:1 12154:1 12165:1 12170:2 12181:2 12184:1 12186:1 12219:1 12222:1 12235:2 12255:1 12268:1 12273:1 12289:3 12293:1 12304:2 12309:1 12322:6 12324:1 12330:2 12344:1 12346:2 12351:1 12352:2 12359:1 12373:1 12380:1 12383:1 12388:2 12398:1 12419:1 12427:2 12439:2 12449:7 12456:1 12462:1 12464:1 12467:3 12480:1 12501:1 12517:1 12520:1 12546:1 12591:4 12595:1 12610:1 12615:1 12640:1 12668:1 12678:1 12680:2 12685:1 12690:1 12691:1 12715:1 12719:1 12752:1 12764:1 12771:1 12775:1 12802:1 12828:1 12838:1 12846:1 12857:1 12873:2 12891:1 12957:1 12962:2 12999:1 13009:1 13042:1 13048:1 13050:1 13058:1 13124:1 13135:2 13143:2 13148:1 13179:1 13198:1 13216:1 13229:1 13235:1 13251:2 13257:1 13425:10 13434:1 13446:2 13448:1 13463:1 13475:4 13480:1 13481:1 13482:2 13486:1 13493:1 13497:1 13531:3 13536:1 13538:1 13540:1 13543:1 13552:1 13555:1 13558:1 13568:1 13572:1 13597:1 13614:2 13623:1 13665:1 13691:2 13707:1 13765:1 13786:1 13788:1 13819:1 13829:1 13853:1 13855:2 13869:1 13871:4 13878:2 13894:1 13906:1 13909:3 13945:3 13956:1 13962:1 13963:1 13974:4 13975:1 14005:2 14020:1 14030:1 14033:3 14040:1 14051:1 14057:2 14067:1 14069:2 14075:1 14077:2 14090:1 14103:1 14114:4 14120:1 14148:1 14167:3 14185:1 14191:1 14212:1 14222:4 14225:1 14239:2 14242:1 14245:1 14274:1 14282:1 14288:1 14307:1 14318:1 14323:1 14325:2 14334:1 14337:1 14370:3 14372:1 14375:1 14377:1 14392:1 14401:1 14415:1 14449:1 14460:3 14462:1 14464:3 14468:3 14479:1 14489:1 14498:1 14536:1 14540:2 14544:1 14551:1 14580:2 14586:1 14617:1 14618:1 14627:1 14641:1 14646:1 14671:1 14683:1 14691:1 14725:1 14735:1 14769:3 14774:1 14795:1 14819:1 14832:2 14864:1 14872:1 14893:1 14906:1 14911:1 14912:1 14919:1 14927:3 14933:1 14969:1 15004:1 15015:1 15059:1 15067:1 15119:1 15143:1 15171:1 15175:1 15193:1 15196:1 15202:1 15213:1 15225:2 15231:1 15244:1 15245:2 15258:1 15262:1 15275:1 15298:1 15316:1 15346:1 15354:1 15368:1 15378:1 15381:1 15384:2 15391:1 15396:1 15401:1 15407:1 15410:2 15415:2 15438:2 15453:1 15457:1 15493:2 15505:1 15510:1 15525:1 15548:1 15550:2 15553:1 15591:1 15624:2 15642:1 15695:1 15706:1 15711:1 15740:1 15760:1 15762:1 15764:1 15765:1 15782:1 15785:2 15826:2 15851:1 15853:3 15861:1 15862:1 15894:1 15899:2 15918:1 15927:2 15934:1 15960:1 15994:1 16028:1 16064:1 16095:1 16107:1 16118:1 16134:1 16144:1 16172:1 16186:1 16262:1 16273:1 16285:1 16313:1 16355:1 16363:1 16365:1 16383:1 16387:1 16402:1 16406:1 16409:1 16411:3 16414:1 16415:1 16430:1 16431:3 16457:2 16467:2 16475:3 16499:1 16502:1 16523:1 16555:1 16575:1 16594:1 16627:1 16634:2 16635:3 16641:4 16648:1 16649:1 16667:1 16669:1 16671:2 16700:1 16723:1 16733:2 16738:1 16747:1 16799:1 16805:4 16819:3 16825:1 16829:1 16835:1 16854:1 16861:1 16889:1 16907:1 16923:1 16946:1 16949:3 16962:1 16970:1 17060:3 17077:1 17083:2 17112:1 17116:2 17141:1 17147:1 17182:1 17188:2 17211:2 17212:1 17214:1 17216:1 17217:1 17220:1 17223:1 17231:2 17232:1 17237:1 17239:1 17242:2 17267:1 17302:1 17305:2 17338:1 17340:1 17419:2 17499:1 17519:1 17520:1 17536:1 17543:1 17595:1 17629:1 17642:2 17656:1 17686:2 17688:2 17691:1 17702:1 17709:1 17729:11 17765:1 17776:2 17803:5 17847:1 17851:2 17875:1 17898:3 17899:1 17915:1 17917:1 17926:1 17954:1 17957:1 17961:1 17980:1 18014:1 18028:3 18031:1 18044:1 18047:1 18054:4 18060:2 18076:3 18111:1 18112:1 18125:1 18126:2 18129:3 18158:1 18167:2 18171:3 18172:1 18188:1 18213:1 18233:1 18248:1 18258:1 18284:1 18299:1 18308:1 18313:1 18326:1 18385:1 18413:1 18417:1 18429:1 18434:3 18447:1 18453:1 18471:1 18478:1 18505:1 18535:1 18536:2 18603:1 18646:1 18682:1 18683:3 18700:1 18717:1 18740:1 18747:1 18782:2 18785:1 18825:1 18836:1 18843:2 18874:3 18882:3 18892:1 18894:1 18925:1 18938:1 18951:4 18957:1 18994:2 19085:1 19091:1 19093:1 19129:1 19144:1 19160:1 19172:3 19190:2 19191:1 19195:1 19240:1 19244:1 19306:5 19308:1 19315:1 19390:1 19413:1 19419:5 19434:1 19449:1 19480:1 19491:2 19492:1 19497:1 19503:1 19542:1 19559:1 19573:1 19577:1 19594:1 19602:1 19605:2 19611:2 19633:1 19639:1 19644:1659 19648:1 19673:3 19678:1 19690:1 19709:1 19727:1 19805:2 19807:1 19814:1 19840:2 19845:1 19863:1 19869:1 19871:1 19878:2 19880:1 19890:1 19893:2 19895:1 19915:1 19926:1 19962:1 19990:1 20014:1 20032:1 20072:1 20095:1 20121:1 20131:1 20138:1 20179:1 20186:1 20194:1 20200:1 20216:1 20218:1 20239:1 20290:1 20302:1 20303:1 20370:1 20389:1 20393:1 20396:1 20412:1 20438:2 20457:1 20460:3 20462:2 20464:2 20466:1 20476:2 20487:1 20497:1 20498:4 20502:3 20547:1 20553:1 20554:1 20576:1 20588:1 20597:1 20604:1 20609:4 20622:1 20628:1 20630:4 20643:1 20674:1 20698:1 20703:1 20708:1 20758:1 20769:2 20778:1 20786:2 20801:1 20841:1 20853:1 20875:5 20884:2 20903:1 20906:1 20915:1 20919:1 20933:1 20943:1 20951:3 20955:2 20980:1 20986:2 20989:2 20993:1 20998:1 21001:1 21015:2 21034:1 21052:1 21066:1 21079:1 21106:1 21160:2 21182:1 21184:3 21185:1 21192:1 21197:2 21211:2 21212:1 21224:1 21246:5 21254:1 21261:3 21286:1 21298:1 21302:4 21316:1 21319:1 21326:1 21336:1 21341:7 21355:1 21365:5 21393:1 21455:1 21457:2 21462:1 21465:1 21484:2 21492:1 21507:1 21511:1 21531:1 21545:1 21548:1 21559:1 21570:1 21627:3 21629:1 21668:3 21683:2 21741:1 21782:1 21785:1 21787:1 21807:1 21833:1 21843:1 21855:1 21857:1 21869:1 21870:1 21879:1 21900:2 21927:1 21934:1 21951:1 21974:2 21989:1 21990:1 21991:1 21994:1 22024:1 22027:1 22039:1 22043:3 22046:2 22048:1 22056:8 22059:1 22077:1 22102:1 22107:2 22113:1 22149:1 22175:1 22197:2 22213:1 22239:1 22255:2 22260:1 22262:1 22267:1 22283:1 22296:1 22306:1 22322:1 22327:1 22341:2 22414:1 22422:2 22426:2 22431:1 22443:1 22446:1 22462:1 22513:1 22518:1 22527:1 22552:1 22557:2 22601:1 22605:1 22610:1 22613:2 22626:1 22649:1 22659:1 22680:2 22681:1 22689:1 22710:1 22711:2 22736:1 22747:1 22749:1 22754:1 22764:1 22770:1 22782:2 22801:2 22809:2 22817:2 22819:1 22831:2 22832:1 22844:1 22849:2 22853:1 22855:1 22860:1 22864:1 22867:1 22887:4 22890:1 22891:1 22892:1 22911:1 22913:2 22919:1 22935:1 22943:1 22954:1 22970:1 22988:1 23000:1 23008:1 23014:1 23039:2 23095:2 23096:1 23107:1 23109:1 23111:1 23112:1 23142:1 23145:1 23151:1 23156:2 23157:1 23166:1 23167:2 23170:1 23178:1 23180:10 23181:3 23185:1 23186:1 23187:1 23193:3 23205:1 23214:1 23219:1 23221:1 23222:4 23238:1 23244:1 23251:1 23279:1 23282:5 23313:1 23332:1 23338:1 23357:1 23368:1 23375:1 23386:1 23395:2 23399:2 23404:1 23408:3 23410:1 23433:1 23444:1 23460:1 23466:2 23469:2 23478:1 23483:1 23486:1 23513:1 23563:2 23567:2 23569:3 23581:1 23594:1 23607:3 23615:1 23625:1 23630:1 23633:1 23641:1 23643:1 23644:5 23651:1 23671:1 23674:1 23684:3 23690:1 23700:1 23731:1 23744:3 23752:1 23775:1 23779:9 23786:1 23796:5 23802:1 23803:1 23804:2 23807:1 23809:1 23810:4 23831:2 23850:1 23856:1 23858:1 23862:2 23871:1 23878:1 23883:1 23885:1 23893:1 23899:5 23903:1 23915:1 23979:1 23997:1 24025:1 24047:1 24053:1 24056:5 24068:1 24108:1 24142:2 24196:2 24200:1 24220:1 24224:1 24229:2 24278:1 24286:1 24374:3 24404:1 24430:1 24447:1 24498:1 24500:1 24525:1 24582:1 24601:1 24612:1 24614:2 24631:1 24633:2 24639:1 24644:1 24654:3 24662:1 24666:1 24682:1 24704:1 24726:2 24733:1 24738:2 24741:1 24742:2 24751:1 24764:1 24770:1 24772:1 24786:2 24799:1 24804:1 24835:4 24868:1 24870:1 24884:1 24886:2 24904:1 24918:1 24930:1 24964:2 24994:1 25029:1 25035:1 25065:1 25067:1 25080:2 25089:2 25120:1 25133:1 25181:1 25193:1 25250:2 25271:1 25310:1 25329:2 25331:1 25345:1 25348:1 25351:1 25355:1 25369:1 25388:1 25405:1 25406:1 25408:1 25481:2 25509:1 25522:1 25538:1 25572:1 25591:1 25603:5 25608:1 25635:6 25652:2 25664:1 25680:1 25682:1 25684:1 25685:1 25712:3 25724:2 25729:1 25739:1 25775:1 25786:1 25799:11 25850:3 25916:2 25918:1 25921:1 25930:1 25932:1 25935:2 25940:2 25949:1 25963:1 25970:1 25972:1 25989:4 25996:1 25997:1 26012:1 26015:1 26049:3 26051:1 26055:1 26058:1 26064:1 26080:3 26083:1 26090:1 26094:1 26099:1 26104:1 26110:1 26120:2 26122:1 26157:1 26165:1 26178:1 26215:1 26254:2 26269:1 26278:1 26289:1 26301:1 26308:1 26313:2 26314:1 26318:1 26327:1 26381:2 26397:2 26413:1 26439:1 26449:1 26453:2 26456:4 26504:6 26505:2 26548:1 26566:1 26591:2 26607:1 26626:1 26639:1 26689:1 26703:7 26729:3 26752:1 26762:1 26763:1 26795:1 26833:1 26855:2 26857:3 26883:1 26889:1 26904:2 26913:1 26929:1 26930:1 26938:2 26956:2 26959:3 26964:2 26980:1 26992:1 27001:4 27039:3 27040:1 27062:1 27089:1 27152:1 27157:3 27162:1 27201:1 27207:1 27243:2 27262:1 27269:2 27279:1 27282:3 27306:1 27324:1 27347:1 27350:1 27383:1 27406:1 27422:1 27449:1 27491:1 27498:3 27537:1 27580:1 27584:1 27603:1 27614:1 27619:1 27624:1 27627:1 27648:2 27661:1 27710:2 27732:1 27748:1 27760:1 27783:1 27797:5 27808:1 27818:1 27854:1 27858:2 27881:1 27892:2 27896:2 27909:1 27916:1 27917:3 27927:1 28004:1 28037:1 28049:1 28069:1 28079:1 28096:1 28100:1 28102:1 28103:3 28138:1 28139:1 28146:1 28152:1 28165:3 28173:1 28177:3 28205:1 28207:1 28225:2 28241:1 28280:1 28290:2 28327:1 28338:1 28342:2 28360:1 28379:3 28397:1 28482:1 28483:1 28486:1 28496:1 28527:1 28561:2 28576:3 28597:1 28646:1 28684:1 28690:1 28710:1 28726:2 28727:1 28736:1 28738:1 28780:1 28782:1 28818:1 28836:1 28843:3 28924:1 28948:3 29010:1 29014:1 29015:1 29020:1 29025:1 29032:1 29052:1 29054:1 29063:1 29078:1 29081:1 29088:1 29092:1 29093:1 29098:1 29109:1 29111:2 29119:1 29122:1 29128:1 29130:1 29133:1 29134:1 29137:2 29144:2 29152:1 29154:1 29158:1 29160:1 29188:1 29196:1 29197:2 29224:6 29225:1 29227:1 29228:1 29238:1 29249:2 29253:1 29259:1 29282:1 29284:1 29295:1 29304:1 29340:1 29344:1 29354:1 29360:1 29363:2 29386:1 29397:1 29415:1 29444:1 29447:2 29450:2 29469:1 29539:1 29576:1 29579:1 29590:1 29593:2 29596:1 29610:1 29633:1 29661:1 29679:1 29689:1 29702:1 29723:3 29729:1 29760:2 29778:1 29779:2 29781:2 29787:2 29788:1 29789:1 29790:1 29804:1 29825:2 29826:1 29837:1 29851:1 29860:1 29887:26 29888:1 29893:3 29896:1 29910:2 29918:1 29933:1 29938:7 29946:4 30001:1 30008:1 30039:3 30052:1 30062:1 30069:2 30078:4 30112:7 30118:1 30124:2 30130:1 30149:1 30159:1 30165:1 30194:1 30197:1 30199:3 30207:1 30217:1 30243:1 30289:2 30329:1 30331:1 30350:1 30358:2 30361:1 30377:1 30382:1 30388:1 30436:5 30438:1 30457:1 30465:1 30476:1 30510:1 30513:5 30523:1 30534:3 30537:1 30538:1 30541:1 30556:1 30660:1 30678:1 30692:4 30693:2 30694:3 30720:1 30741:1 30754:1 30801:1 30842:1 30844:1 30846:1 30864:2 30869:3 30874:1 30884:6 30907:2 30909:1 30925:1 30940:1 30953:1 30956:1 30981:1 30986:3 31003:2 31035:1 31048:2 31055:1 31066:1 31089:1 31093:3 31100:1 31142:1 31154:1 31195:1 31208:1 31212:2 31216:1 31222:1 31223:1 31231:1 31238:1 31243:2 31246:1 31248:1 31250:1 31251:1 31287:1 31299:1 31313:1 31373:1 31385:1 19 1:1 26:1 27:1 30:1 52:1 56:1 57:1 91:1 108:1 153:1 154:1 170:3 206:3 208:1 232:1 234:1 242:1 246:1 276:1 308:1 338:1 354:1 367:1 387:1 417:1 428:5 462:3 482:1 486:1 561:1 569:1 604:1 615:1 616:1 622:1 643:8 649:1 661:1 671:1 697:1 764:1 778:1 837:1 843:1 852:1 870:1 879:1 890:1 899:1 907:3 926:2 928:1 932:1 933:2 937:3 938:3 948:2 949:1 951:1 967:1 969:1 985:1 987:1 993:1 994:2 998:6 1009:1 1021:2 1022:1 1037:2 1038:1 1055:1 1080:4 1083:1 1137:1 1195:1 1213:1 1240:1 1249:1 1262:1 1277:1 1285:1 1300:1 1322:1 1335:1 1336:2 1337:1 1348:2 1350:1 1360:1 1366:1 1380:1 1389:1 1390:1 1395:1 1396:1 1437:1 1458:1 1527:1 1533:1 1543:1 1559:1 1582:1 1584:1 1586:3 1592:2 1600:2 1607:2 1669:2 1670:1 1675:4 1690:2 1699:1 1712:1 1757:1 1766:1 1795:3 1815:2 1828:1 1842:1 1846:2 1855:1 1887:1 1899:1 1906:1 1909:1 1911:1 1922:1 1923:2 1928:2 1940:1 1948:1 1950:2 1956:1 1978:1 1979:1 2013:1 2018:1 2026:1 2027:1 2040:2 2087:1 2105:1 2113:1 2133:2 2165:1 2190:1 2196:2 2198:2 2203:1 2205:2 2206:1 2208:1 2214:1 2216:3 2223:1 2251:1 2266:1 2267:4 2273:3 2297:1 2321:1 2337:1 2345:2 2352:1 2369:1 2375:1 2384:3 2388:1 2391:2 2393:2 2396:1 2401:1 2402:3 2404:1 2409:1 2410:2 2414:1 2415:1 2422:3 2425:3 2434:1 2501:1 2505:1 2510:2 2512:2 2521:1 2528:4 2536:1 2548:1 2549:1 2584:1 2590:1 2592:4 2616:1 2626:1 2647:1 2653:1 2655:4 2669:1 2689:1 2690:1 2759:1 2760:1 2779:2 2784:1 2789:1 2790:1 2797:1 2811:2 2832:7 2838:2 2843:1 2859:1 2890:3 2905:1 2909:2 2943:1 2962:4 2985:3 2989:1 3005:1 3014:18 3023:11 3040:1 3058:1 3065:6 3074:1 3083:1 3090:1 3098:1 3102:5 3124:1 3171:1 3184:1 3265:1 3294:1 3296:1 3307:1 3336:1 3351:1 3365:1 3410:2 3423:2 3463:2 3477:1 3488:1 3489:4 3534:1 3542:1 3548:2 3567:1 3570:1 3573:1 3652:4 3653:1 3654:1 3666:1 3669:1 3700:2 3713:1 3742:1 3752:1 3779:2 3788:1 3793:1 3794:1 3797:1 3798:1 3802:1 3813:1 3824:2 3844:1 3879:1 3880:1 3882:1 3889:1 3895:1 3936:2 3943:5 3989:1 4022:1 4031:1 4055:2 4094:1 4100:1 4104:1 4110:1 4126:3 4147:1 4153:1 4173:3 4174:1 4208:1 4227:1 4228:2 4229:3 4259:1 4283:1 4294:1 4313:1 4340:3 4348:1 4361:1 4366:1 4389:1 4401:1 4409:1 4425:2 4432:1 4450:1 4452:1 4454:3 4456:1 4498:1 4558:3 4579:1 4598:1 4608:2 4613:2 4651:1 4664:1 4682:1 4683:3 4684:1 4736:1 4748:1 4753:2 4776:2 4780:1 4781:1 4816:1 4817:4 4818:1 4848:1 4862:1 4868:1 4871:1 4876:1 4885:1 4888:1 4905:1 4906:2 4919:1 4927:1 4949:1 4969:1 4977:1 4996:1 5000:1 5005:1 5026:1 5028:1 5031:1 5034:1 5039:1 5062:1 5065:3 5127:1 5132:7 5133:1 5163:1 5183:3 5245:2 5247:1 5248:4 5264:4 5265:4 5266:1 5269:1 5270:1 5271:1 5275:1 5276:4 5277:1 5284:2 5287:1 5291:3 5292:1 5293:1 5318:1 5320:1 5344:1 5350:1 5356:4 5365:1 5385:1 5436:1 5443:1 5481:1 5508:1 5535:1 5551:1 5574:1 5639:1 5666:1 5678:1 5686:2 5710:1 5712:1 5719:1 5732:1 5748:1 5777:1 5784:1 5794:6 5815:1 5822:1 5824:1 5827:1 5839:1 5889:2 5890:2 5913:1 5917:1 5952:1 5954:3 5958:1 5973:1 6030:1 6036:2 6040:1 6048:1 6061:1 6064:1 6093:1 6099:1 6151:1 6196:3 6283:1 6301:1 6309:1 6315:2 6333:2 6345:3 6346:2 6348:10 6349:1 6350:1 6355:3 6362:1 6378:2 6399:1 6408:1 6409:2 6444:1 6445:1 6446:1 6452:1 6465:1 6468:1 6473:5 6474:1 6479:1 6488:2 6567:1 6568:1 6583:1 6588:3 6591:1 6607:1 6608:1 6610:2 6645:1 6664:1 6670:1 6681:1 6682:1 6683:1 6692:2 6693:2 6696:4 6697:1 6704:2 6707:1 6709:2 6713:1 6715:1 6736:1 6745:1 6769:1 6827:1 6840:1 6850:1 6852:1 6882:2 6886:1 6926:1 6965:1 7006:1 7013:3 7028:1 7033:1 7035:1 7045:1 7052:1 7088:1 7113:1 7120:2 7127:1 7128:2 7142:1 7151:1 7155:3 7165:1 7181:5 7186:3 7215:1 7216:2 7221:3 7285:1 7289:1 7305:1 7312:1 7314:2 7319:2 7332:1 7346:1 7353:1 7355:1 7381:2 7382:1 7386:1 7435:1 7436:1 7450:2 7486:1 7489:1 7509:1 7533:1 7535:1 7537:11 7540:1 7562:2 7585:1 7594:2 7640:1 7658:1 7688:1 7691:1 7781:1 7804:1 7845:3 7855:3 7862:1 7864:2 7880:2 7886:1 7887:2 7919:1 7929:1 7943:1 7975:1 7989:1 8032:1 8041:1 8045:1 8103:1 8104:7 8105:3 8128:1 8130:3 8135:1 8160:1 8163:1 8172:22 8178:1 8188:1 8194:1 8201:20 8204:7 8213:1 8267:1 8273:1 8283:1 8284:2 8315:1 8332:1 8333:1 8340:1 8347:1 8357:1 8370:1 8400:1 8415:3 8416:1 8442:1 8443:1 8455:2 8466:1 8565:1 8575:1 8581:1 8584:1 8598:2 8604:3 8622:1 8626:1 8648:1 8661:1 8669:1 8689:2 8698:14 8728:3 8741:3 8746:1 8786:1 8837:1 8849:2 8884:1 8892:1 8903:1 8913:1 8918:1 8927:2 8948:2 8952:2 8971:4 8976:4 8977:1 8979:1 8984:1 8985:1 8986:1 9012:1 9038:1 9057:4 9058:2 9061:2 9062:1 9064:2 9071:3 9072:3 9074:1 9077:1 9094:1 9106:1 9115:1 9120:1 9130:1 9146:1 9148:1 9158:1 9165:2 9177:1 9181:1 9192:1 9249:1 9259:3 9269:1 9326:1 9339:1 9345:1 9372:2 9377:2 9385:2 9405:1 9431:1 9442:2 9470:1 9539:1 9549:1 9563:1 9584:1 9588:1 9593:1 9595:1 9602:2 9606:5 9628:1 9644:1 9667:1 9686:1 9715:1 9739:1 9768:1 9779:7 9783:1 9791:3 9798:1 9817:1 9825:1 9855:1 9874:4 9885:1 9894:1 9902:1 9921:1 9926:1 9931:1 9943:1 9944:2 9950:1 9964:2 9990:1 10046:1 10076:1 10091:1 10096:1 10105:1 10112:3 10114:1 10133:1 10167:1 10172:3 10185:1 10224:1 10235:8 10236:27 10238:2 10253:2 10257:1 10260:1 10272:1 10273:1 10289:1 10293:1 10302:1 10318:1 10336:1 10358:2 10369:5 10382:1 10394:1 10396:1 10415:1 10431:1 10439:1 10440:1 10471:1 10543:1 10544:2 10554:1 10578:2 10594:1 10610:1 10611:4 10635:1 10640:1 10654:2 10669:1 10687:1 10699:1 10714:1 10727:1 10728:1 10735:1 10736:6 10746:1 10759:1 10777:1 10796:1 10853:1 10871:1 10872:2 10901:3 10921:1 10926:1 10940:1 10943:1 10955:1 10967:3 10971:4 11000:2 11003:1 11007:1 11030:1 11037:1 11064:1 11089:1 11091:1 11102:1 11144:1 11150:4 11158:1 11181:7 11207:2 11238:2 11256:2 11266:1 11267:1 11272:1 11275:1 11296:2 11297:2 11311:1 11333:3 11372:2 11377:8 11385:1 11388:2 11404:3 11405:2 11406:2 11454:1 11462:3 11492:1 11493:1 11497:1 11501:1 11509:2 11530:1 11536:1 11586:1 11589:1 11614:4 11620:1 11632:4 11635:1 11646:1 11651:1 11653:1 11671:1 11678:1 11686:1 11689:1 11692:1 11697:1 11737:1 11751:2 11757:1 11759:2 11767:2 11769:1 11806:2 11830:1 11835:1 11841:2 11842:1 11852:1 11863:1 11871:1 11906:1 11914:1 11928:2 11932:1 11938:1 11940:1 11942:1 11976:1 11989:1 12000:1 12004:1 12009:1 12021:1 12041:1 12067:1 12070:1 12072:1 12074:1 12088:1 12108:5 12119:1 12140:1 12151:1 12154:1 12155:1 12165:1 12170:2 12181:2 12184:1 12186:1 12219:1 12222:1 12235:2 12255:1 12268:1 12273:1 12289:3 12293:1 12304:2 12309:1 12322:6 12324:1 12330:2 12344:1 12346:2 12351:1 12352:2 12359:1 12373:1 12380:1 12383:1 12388:3 12398:2 12419:1 12427:2 12439:2 12449:7 12456:1 12462:1 12464:1 12467:3 12480:1 12501:1 12517:1 12520:1 12546:1 12591:4 12595:1 12610:1 12615:1 12640:1 12668:1 12678:1 12680:2 12685:1 12690:1 12691:1 12715:1 12719:1 12752:1 12764:1 12771:1 12775:1 12802:1 12828:1 12838:1 12846:1 12857:1 12873:2 12891:1 12957:1 12962:2 12999:1 13009:1 13012:1 13042:1 13048:1 13050:1 13058:1 13124:1 13135:2 13143:2 13148:1 13179:1 13198:1 13216:1 13229:1 13235:1 13251:2 13257:1 13425:10 13434:1 13446:2 13448:1 13463:1 13475:4 13480:1 13481:1 13482:2 13486:1 13493:1 13497:1 13531:3 13536:1 13538:1 13540:1 13543:1 13552:1 13555:1 13558:1 13568:1 13572:1 13597:1 13614:2 13623:1 13665:1 13691:2 13707:1 13765:1 13786:1 13788:1 13819:1 13829:1 13853:1 13855:2 13869:1 13871:4 13878:2 13894:1 13906:1 13909:3 13945:3 13956:1 13962:1 13963:1 13974:4 13975:2 14005:2 14020:1 14030:1 14033:3 14040:1 14051:1 14057:2 14067:1 14069:2 14075:1 14077:2 14090:1 14103:1 14114:4 14120:1 14148:1 14167:3 14185:1 14191:1 14212:1 14222:4 14225:1 14239:2 14242:1 14245:1 14274:1 14282:1 14288:1 14307:1 14318:1 14323:1 14325:2 14334:1 14337:1 14370:3 14372:1 14375:1 14377:1 14392:1 14401:1 14415:1 14449:1 14460:3 14462:1 14464:3 14468:3 14479:1 14488:1 14489:3 14498:1 14536:1 14540:2 14544:1 14551:1 14580:2 14586:1 14617:1 14618:1 14627:1 14639:1 14641:1 14646:1 14671:1 14683:1 14691:1 14725:1 14735:1 14769:3 14774:1 14787:1 14795:1 14819:1 14832:2 14864:2 14872:1 14893:1 14906:1 14911:1 14912:1 14919:1 14927:3 14933:1 14969:1 15004:1 15015:1 15059:1 15067:1 15119:1 15143:1 15171:1 15175:1 15193:1 15196:1 15202:1 15213:1 15225:2 15231:1 15244:1 15245:2 15258:1 15262:1 15275:1 15298:1 15316:1 15346:1 15354:1 15368:1 15378:1 15381:1 15384:2 15391:1 15396:1 15401:1 15407:1 15410:2 15415:2 15438:2 15453:1 15457:1 15493:2 15505:1 15510:1 15525:1 15548:1 15550:2 15553:1 15591:1 15624:2 15642:1 15695:1 15706:1 15711:1 15740:1 15760:1 15762:1 15764:1 15765:1 15782:1 15785:2 15826:2 15851:1 15853:3 15861:1 15862:1 15894:1 15899:2 15918:1 15927:2 15934:1 15960:1 15994:1 16028:1 16064:1 16095:1 16107:1 16118:1 16134:1 16144:1 16172:1 16186:1 16262:1 16273:1 16285:1 16313:1 16355:1 16363:1 16365:1 16383:1 16387:1 16402:1 16406:1 16409:1 16411:3 16414:1 16415:1 16430:1 16431:3 16457:2 16467:2 16475:3 16499:1 16502:1 16523:1 16555:1 16575:1 16594:1 16627:1 16634:2 16635:3 16641:4 16648:1 16649:2 16654:1 16667:1 16669:1 16671:2 16700:1 16723:1 16733:2 16738:1 16747:1 16799:1 16805:4 16819:3 16825:1 16829:1 16835:1 16854:1 16861:1 16889:1 16907:1 16923:1 16946:1 16949:3 16962:1 16970:1 17050:1 17060:4 17077:1 17083:2 17112:1 17116:2 17141:1 17147:1 17182:1 17188:2 17211:2 17212:1 17214:1 17216:1 17217:1 17220:1 17223:1 17231:2 17232:1 17237:1 17239:1 17242:2 17267:1 17302:1 17305:2 17338:1 17340:1 17348:1 17419:2 17499:1 17519:1 17520:1 17536:1 17543:1 17595:1 17629:1 17642:2 17656:1 17681:1 17686:2 17688:2 17691:1 17702:1 17709:1 17729:11 17765:1 17776:2 17803:5 17847:1 17851:2 17875:1 17898:3 17899:1 17915:1 17917:1 17926:1 17954:1 17957:1 17961:1 17980:1 18014:1 18028:3 18031:1 18044:1 18047:1 18054:4 18060:2 18076:3 18111:1 18112:1 18125:1 18126:2 18129:3 18158:1 18167:2 18171:3 18172:1 18188:1 18202:1 18213:1 18233:1 18248:1 18258:1 18275:1 18284:1 18299:1 18308:1 18313:1 18326:1 18385:1 18413:1 18417:1 18429:1 18434:3 18447:1 18453:1 18471:1 18478:1 18505:1 18535:1 18536:2 18603:1 18646:1 18682:1 18683:3 18700:1 18717:1 18740:1 18747:1 18782:2 18785:1 18825:1 18836:1 18843:2 18874:3 18882:3 18892:1 18894:1 18925:1 18938:1 18951:4 18957:1 18994:2 19085:1 19091:1 19093:1 19129:1 19144:1 19160:1 19172:4 19190:2 19191:1 19195:1 19240:1 19244:1 19306:5 19308:1 19315:1 19390:1 19413:1 19419:5 19434:1 19437:1 19449:1 19480:1 19491:2 19492:1 19497:1 19503:1 19542:1 19559:1 19573:1 19577:1 19594:1 19602:1 19605:2 19611:2 19620:1 19633:1 19639:1 19644:1698 19648:1 19673:3 19678:1 19690:1 19709:1 19727:1 19805:2 19807:1 19814:1 19840:2 19845:1 19863:1 19869:1 19871:1 19878:2 19880:1 19890:1 19893:2 19895:1 19915:1 19926:1 19962:1 19990:1 20014:1 20032:1 20072:1 20095:1 20121:1 20131:1 20138:1 20179:1 20186:1 20194:1 20200:1 20216:1 20218:1 20239:1 20290:1 20302:1 20303:1 20370:1 20389:1 20393:1 20396:1 20412:1 20438:2 20457:1 20460:3 20462:2 20464:2 20466:1 20476:2 20487:1 20497:1 20498:4 20502:3 20547:1 20553:1 20554:1 20576:1 20588:1 20597:1 20604:1 20609:4 20622:1 20628:1 20630:4 20643:1 20674:1 20698:1 20703:1 20708:1 20758:1 20769:2 20778:1 20786:3 20801:1 20841:1 20853:1 20875:5 20884:2 20903:1 20906:1 20915:1 20919:1 20933:1 20943:1 20951:3 20955:2 20980:1 20986:2 20989:2 20993:1 20998:1 21001:1 21015:2 21034:1 21052:1 21066:1 21079:1 21106:1 21160:2 21182:1 21184:3 21185:1 21192:1 21197:2 21211:2 21212:1 21224:1 21246:5 21254:1 21261:3 21286:1 21298:1 21302:4 21316:1 21319:1 21326:1 21336:1 21341:7 21355:1 21365:5 21393:1 21425:1 21455:1 21457:2 21462:1 21465:1 21484:2 21492:1 21507:1 21511:1 21531:1 21545:1 21548:1 21559:1 21570:1 21627:3 21629:1 21633:2 21668:3 21683:2 21741:1 21782:1 21785:1 21787:1 21807:1 21833:1 21843:1 21855:1 21857:1 21869:1 21870:1 21879:1 21900:2 21927:1 21934:1 21951:1 21974:2 21989:1 21990:1 21991:1 21994:1 22024:1 22027:1 22039:1 22043:3 22046:2 22048:1 22056:9 22059:1 22077:1 22102:1 22107:3 22113:1 22149:1 22175:1 22197:2 22213:1 22239:1 22255:2 22260:1 22262:1 22267:1 22283:1 22296:1 22306:1 22322:1 22327:1 22341:2 22414:1 22422:2 22426:2 22431:1 22443:1 22446:1 22462:1 22513:1 22518:1 22527:1 22552:1 22557:2 22601:1 22605:1 22610:1 22613:2 22626:1 22649:1 22659:1 22680:2 22681:1 22689:1 22710:1 22711:2 22736:1 22747:1 22749:1 22754:1 22764:1 22770:1 22782:2 22801:2 22809:2 22817:2 22819:1 22831:2 22832:1 22844:1 22849:2 22853:1 22855:1 22860:1 22864:1 22867:1 22887:4 22890:1 22891:1 22892:1 22911:1 22913:2 22919:1 22935:1 22943:1 22954:1 22970:1 22988:1 23000:1 23008:1 23014:1 23039:2 23095:2 23096:1 23107:1 23109:1 23111:1 23112:1 23142:1 23145:1 23151:1 23156:2 23157:1 23166:1 23167:2 23170:1 23178:1 23180:10 23181:3 23185:1 23186:1 23187:1 23193:3 23205:1 23214:1 23219:1 23221:1 23222:4 23238:1 23244:2 23251:1 23279:1 23282:5 23313:1 23325:1 23332:2 23338:1 23357:1 23368:1 23375:1 23386:1 23395:2 23399:2 23404:1 23408:3 23410:1 23433:1 23444:1 23460:1 23466:2 23469:2 23478:1 23483:1 23486:1 23513:1 23563:2 23567:2 23569:3 23581:1 23594:1 23607:4 23615:1 23625:1 23630:1 23631:1 23633:1 23641:1 23643:1 23644:5 23651:1 23671:1 23674:1 23684:3 23690:1 23700:1 23731:1 23744:3 23752:1 23775:1 23779:9 23786:1 23796:5 23802:1 23803:1 23804:2 23807:1 23809:1 23810:4 23831:2 23850:1 23856:1 23858:1 23862:2 23871:1 23878:1 23883:1 23885:1 23893:1 23899:5 23903:1 23915:1 23979:1 23997:1 24025:1 24047:1 24053:1 24056:5 24068:1 24108:1 24142:2 24196:2 24200:1 24220:1 24224:1 24229:2 24278:1 24286:1 24322:1 24374:3 24404:1 24430:1 24447:1 24498:1 24500:1 24525:1 24582:1 24601:1 24612:1 24614:2 24631:1 24633:2 24639:1 24644:1 24654:3 24662:1 24666:1 24682:1 24692:1 24704:1 24726:2 24733:1 24738:2 24741:1 24742:2 24751:1 24764:1 24770:1 24772:1 24786:2 24799:1 24804:1 24835:4 24868:1 24870:1 24884:1 24886:2 24904:1 24918:1 24930:1 24964:2 24994:1 24999:1 25029:1 25035:1 25065:1 25067:1 25080:2 25089:2 25120:1 25133:1 25181:1 25185:1 25193:1 25250:2 25271:1 25310:1 25329:2 25331:1 25345:1 25348:1 25351:1 25355:1 25369:1 25388:1 25405:1 25406:1 25408:1 25481:2 25509:1 25522:1 25538:1 25572:1 25591:1 25603:5 25608:1 25635:6 25652:2 25664:1 25680:1 25682:1 25684:1 25685:1 25712:4 25724:2 25729:1 25739:1 25775:1 25786:1 25799:11 25850:3 25916:2 25918:1 25921:1 25930:1 25932:1 25935:2 25940:2 25949:1 25963:1 25970:1 25972:1 25989:4 25996:1 25997:1 26012:1 26015:1 26049:3 26051:1 26055:1 26058:1 26064:1 26080:3 26083:1 26090:1 26094:1 26099:1 26104:1 26110:1 26120:3 26122:1 26157:1 26165:1 26178:1 26215:1 26254:2 26269:1 26278:1 26289:1 26301:1 26308:1 26313:2 26314:1 26318:1 26327:1 26381:2 26397:3 26413:1 26439:1 26449:1 26453:2 26456:4 26504:6 26505:2 26548:1 26566:1 26591:2 26607:1 26626:1 26639:1 26647:1 26689:1 26703:7 26729:3 26752:1 26762:1 26763:1 26795:1 26833:1 26855:2 26857:3 26883:1 26889:1 26904:2 26913:1 26929:1 26930:1 26938:2 26956:2 26959:3 26964:2 26980:1 26992:1 27001:4 27039:3 27040:1 27062:1 27089:1 27152:1 27157:3 27162:1 27201:1 27207:1 27243:2 27262:1 27269:2 27279:1 27282:3 27306:1 27324:1 27347:1 27350:1 27383:1 27406:1 27422:1 27449:1 27491:1 27498:3 27537:1 27580:1 27584:1 27603:1 27614:1 27619:1 27624:1 27627:1 27631:1 27648:2 27653:1 27661:1 27710:2 27732:1 27748:1 27755:1 27760:1 27783:1 27797:5 27808:1 27818:1 27854:1 27858:2 27881:1 27892:2 27896:2 27909:1 27916:1 27917:3 27927:1 28004:1 28037:1 28049:1 28069:1 28079:1 28096:1 28100:1 28102:1 28103:3 28138:1 28139:1 28146:1 28152:1 28165:3 28173:1 28177:3 28205:1 28207:1 28225:2 28241:1 28280:1 28290:2 28305:1 28327:1 28338:1 28342:2 28360:1 28379:4 28397:1 28482:1 28483:1 28486:1 28496:2 28527:1 28561:2 28576:3 28597:1 28646:1 28684:1 28690:1 28710:1 28726:2 28727:1 28736:1 28738:1 28780:1 28782:1 28818:1 28822:1 28836:1 28843:3 28924:1 28948:3 29010:1 29014:1 29015:1 29020:1 29025:1 29032:1 29052:1 29054:1 29063:1 29078:1 29081:1 29088:1 29092:1 29093:1 29098:1 29109:1 29111:2 29119:1 29122:1 29128:1 29130:1 29133:1 29134:1 29137:2 29144:2 29152:1 29154:1 29158:1 29160:1 29188:1 29196:1 29197:2 29224:6 29225:1 29227:1 29228:1 29235:1 29238:1 29249:2 29253:1 29259:1 29282:1 29284:1 29295:1 29304:1 29340:1 29344:1 29354:1 29360:1 29363:2 29386:1 29397:1 29415:1 29444:1 29447:2 29450:2 29469:1 29539:1 29576:1 29579:1 29590:1 29593:2 29596:1 29610:1 29633:1 29661:1 29679:1 29689:1 29702:1 29723:3 29729:1 29760:2 29778:1 29779:2 29781:2 29787:2 29788:1 29789:1 29790:1 29804:1 29825:2 29826:1 29837:1 29851:1 29860:1 29887:26 29888:1 29893:4 29896:1 29910:2 29918:1 29933:1 29938:7 29946:4 30001:1 30008:1 30039:3 30052:1 30062:1 30069:2 30078:4 30112:7 30118:1 30124:2 30130:1 30149:1 30159:1 30165:1 30194:1 30197:1 30199:3 30207:1 30217:1 30243:1 30281:1 30289:2 30329:1 30331:1 30350:1 30358:2 30361:1 30377:1 30382:1 30388:1 30436:5 30438:1 30457:1 30465:1 30476:1 30510:1 30513:5 30523:1 30534:3 30537:1 30538:1 30541:1 30556:1 30660:1 30678:1 30692:4 30693:2 30694:3 30720:2 30741:1 30754:1 30801:1 30842:1 30844:1 30846:1 30864:2 30869:3 30874:1 30884:6 30907:2 30909:1 30925:1 30940:1 30953:1 30956:1 30981:1 30986:3 31003:2 31035:1 31048:2 31055:1 31066:1 31089:1 31093:3 31100:1 31142:1 31154:1 31195:1 31205:1 31208:1 31212:2 31216:1 31222:1 31223:1 31231:1 31238:1 31243:2 31246:1 31248:1 31250:1 31251:1 31287:1 31299:1 31313:1 31373:1 31385:1 19 1:1 26:1 27:1 30:1 52:1 56:1 57:1 91:1 108:1 153:1 154:1 170:3 206:3 208:1 232:1 234:1 242:1 246:1 276:1 308:3 338:1 354:1 367:1 387:1 417:1 428:5 462:3 466:1 482:1 486:1 561:1 569:1 604:1 615:1 616:1 622:1 643:9 649:1 661:1 671:2 697:1 764:1 778:1 837:1 843:1 852:1 870:1 879:1 890:1 899:1 907:3 926:2 928:1 932:1 933:3 937:3 938:3 948:2 949:1 951:1 967:1 969:1 985:1 987:1 993:1 994:2 998:6 1009:1 1021:2 1022:1 1037:2 1038:1 1042:1 1055:1 1080:4 1083:1 1137:1 1195:1 1213:1 1240:1 1249:1 1262:1 1277:1 1285:1 1300:1 1322:1 1335:1 1336:2 1337:1 1348:2 1350:1 1360:1 1366:1 1380:1 1389:1 1390:1 1395:1 1396:1 1437:1 1458:1 1527:1 1533:1 1543:1 1559:1 1582:1 1584:1 1586:3 1592:2 1600:2 1607:2 1669:2 1670:1 1675:4 1690:2 1699:1 1704:1 1712:1 1757:1 1766:1 1795:4 1815:2 1828:1 1842:1 1846:2 1855:1 1887:1 1899:1 1906:1 1909:1 1911:1 1922:1 1923:2 1928:2 1940:1 1948:1 1950:2 1956:1 1978:1 1979:1 2013:1 2018:1 2026:1 2027:1 2040:2 2087:1 2105:1 2113:1 2133:2 2165:1 2190:1 2196:2 2198:2 2203:1 2205:2 2206:1 2208:1 2214:1 2216:3 2223:1 2251:1 2266:1 2267:4 2273:3 2297:1 2321:1 2337:1 2345:2 2352:1 2369:1 2375:1 2384:3 2388:1 2391:2 2393:2 2396:1 2401:1 2402:3 2404:1 2409:1 2410:2 2414:1 2415:1 2422:3 2425:3 2434:1 2501:1 2505:1 2510:2 2512:2 2521:1 2528:4 2536:1 2548:1 2549:1 2584:1 2590:1 2592:4 2616:1 2626:1 2647:1 2653:1 2655:4 2669:1 2689:1 2690:1 2759:1 2760:1 2779:2 2784:1 2789:1 2790:1 2797:1 2811:2 2832:7 2838:2 2843:1 2859:1 2890:3 2905:1 2909:2 2943:1 2962:4 2985:3 2989:1 3005:1 3014:18 3023:12 3040:1 3058:1 3065:7 3074:1 3083:1 3090:1 3098:1 3102:5 3124:1 3171:1 3184:1 3265:1 3294:1 3296:1 3307:1 3336:1 3351:1 3365:1 3410:2 3423:2 3450:1 3463:2 3477:1 3488:1 3489:4 3534:1 3542:1 3548:2 3567:1 3570:1 3573:1 3652:4 3653:1 3654:1 3666:1 3669:1 3700:2 3713:1 3732:1 3742:1 3752:1 3779:2 3788:1 3793:1 3794:1 3797:1 3798:1 3802:1 3813:1 3823:1 3824:2 3844:1 3879:1 3880:1 3882:1 3889:1 3895:1 3936:2 3943:5 3989:2 4022:1 4031:1 4055:2 4094:1 4100:1 4104:1 4110:1 4126:3 4147:1 4153:1 4173:3 4174:1 4208:1 4227:1 4228:2 4229:3 4259:1 4283:1 4294:1 4313:1 4340:3 4348:2 4361:1 4366:1 4389:1 4401:1 4409:1 4425:2 4432:1 4450:1 4452:1 4454:3 4456:1 4498:1 4558:3 4579:1 4598:1 4608:2 4613:2 4651:1 4664:1 4682:1 4683:3 4684:1 4736:1 4748:1 4753:2 4776:2 4780:1 4781:1 4816:1 4817:4 4818:1 4848:1 4862:1 4868:1 4871:1 4876:1 4885:1 4888:1 4905:1 4906:2 4919:1 4927:1 4949:1 4969:1 4977:1 4996:1 5000:1 5005:1 5026:1 5028:1 5031:1 5034:1 5039:1 5062:1 5065:3 5127:1 5132:7 5133:1 5163:1 5183:3 5245:2 5247:1 5248:4 5264:5 5265:4 5266:1 5269:1 5270:1 5271:1 5275:1 5276:4 5277:2 5284:2 5287:1 5291:3 5292:1 5293:1 5318:1 5320:1 5344:1 5350:1 5356:4 5365:1 5385:1 5436:1 5443:1 5481:1 5508:1 5535:1 5551:1 5574:1 5639:1 5666:1 5678:1 5686:2 5710:1 5712:1 5719:1 5732:1 5748:1 5777:1 5784:1 5794:6 5815:1 5822:1 5824:1 5827:1 5839:1 5859:1 5889:2 5890:2 5913:1 5917:1 5952:1 5954:3 5958:1 5973:1 6030:1 6036:2 6040:1 6048:1 6061:1 6064:2 6093:1 6099:1 6151:1 6196:3 6283:1 6301:1 6309:1 6315:2 6333:2 6345:3 6346:2 6348:10 6349:1 6350:1 6355:3 6362:1 6378:2 6399:1 6408:1 6409:2 6444:1 6445:1 6446:1 6452:1 6465:1 6468:1 6473:5 6474:1 6479:1 6488:2 6567:1 6568:1 6583:1 6588:4 6591:1 6607:1 6608:1 6610:2 6645:1 6664:1 6670:1 6681:1 6682:1 6683:1 6692:2 6693:2 6696:4 6697:1 6704:2 6707:1 6709:3 6713:1 6715:1 6736:1 6745:1 6769:1 6795:1 6827:1 6840:1 6850:1 6852:1 6882:2 6886:1 6926:1 6965:1 7006:1 7013:3 7028:1 7033:1 7035:1 7045:1 7052:1 7088:1 7113:1 7120:2 7127:1 7128:2 7142:1 7151:1 7155:4 7165:1 7181:5 7186:3 7215:1 7216:2 7221:3 7285:1 7289:1 7305:1 7312:1 7314:2 7319:2 7332:1 7346:1 7353:1 7355:1 7381:2 7382:1 7386:1 7435:1 7436:1 7450:2 7486:1 7489:1 7509:1 7533:1 7535:1 7537:11 7540:1 7562:2 7585:1 7594:2 7640:1 7658:1 7688:1 7691:1 7781:2 7804:1 7845:3 7855:3 7862:1 7864:2 7880:2 7886:1 7887:2 7919:1 7929:1 7943:1 7975:1 7989:1 8032:1 8041:1 8045:1 8103:1 8104:7 8105:3 8128:2 8130:3 8135:1 8160:1 8163:1 8172:22 8178:2 8188:1 8194:1 8201:20 8204:8 8213:1 8267:1 8273:1 8283:1 8284:2 8315:1 8332:1 8333:1 8340:1 8347:1 8357:1 8370:1 8400:1 8415:3 8416:1 8442:1 8443:1 8445:1 8451:1 8455:2 8466:1 8517:1 8565:1 8575:1 8581:1 8584:1 8598:2 8604:3 8622:1 8626:1 8648:1 8661:1 8669:1 8689:2 8698:16 8728:3 8741:3 8746:1 8786:1 8837:1 8849:2 8884:1 8892:1 8903:1 8913:1 8918:1 8927:2 8948:2 8952:2 8954:1 8971:4 8976:4 8977:1 8979:1 8984:2 8985:2 8986:1 9012:1 9038:1 9057:4 9058:2 9061:2 9062:1 9064:2 9071:3 9072:3 9074:1 9077:1 9094:1 9106:1 9115:2 9120:1 9130:1 9146:1 9148:1 9158:1 9165:2 9177:1 9181:1 9192:1 9249:1 9259:3 9269:1 9326:1 9339:1 9345:1 9372:2 9377:2 9385:2 9405:1 9431:1 9442:2 9470:1 9539:1 9549:1 9563:1 9584:1 9588:1 9593:1 9595:1 9602:2 9606:5 9628:1 9644:1 9667:1 9686:1 9715:1 9739:1 9768:1 9779:7 9783:1 9785:1 9791:3 9798:1 9817:1 9825:1 9855:1 9874:5 9885:1 9894:1 9902:1 9921:1 9926:1 9931:1 9943:1 9944:2 9950:1 9964:2 9982:1 9990:1 10046:1 10076:1 10091:1 10096:1 10105:1 10112:3 10114:1 10133:1 10167:1 10172:4 10185:1 10224:1 10235:8 10236:27 10238:2 10253:2 10257:1 10260:1 10272:1 10273:1 10289:1 10293:1 10302:1 10318:1 10336:1 10358:2 10369:5 10382:1 10394:1 10396:1 10415:1 10426:1 10431:1 10439:1 10440:1 10471:1 10543:1 10544:2 10554:1 10578:2 10594:1 10610:1 10611:4 10621:1 10635:1 10640:1 10654:3 10669:1 10687:1 10699:1 10702:1 10714:1 10727:1 10728:1 10735:1 10736:6 10746:1 10759:1 10777:1 10796:1 10853:1 10871:1 10872:2 10901:3 10921:1 10926:1 10940:1 10943:1 10955:1 10967:3 10971:4 11000:2 11003:1 11007:1 11030:1 11037:1 11064:1 11089:1 11091:1 11102:1 11144:1 11150:4 11158:1 11181:7 11207:2 11238:2 11256:2 11266:1 11267:1 11272:1 11275:1 11296:2 11297:2 11311:1 11333:3 11372:2 11377:8 11385:1 11388:2 11404:3 11405:2 11406:2 11454:1 11462:3 11492:1 11493:1 11497:1 11501:1 11509:2 11530:1 11536:1 11586:1 11589:1 11614:4 11620:1 11632:4 11635:1 11646:1 11651:1 11653:1 11671:1 11678:1 11686:1 11689:1 11692:1 11697:1 11737:1 11751:2 11757:1 11759:2 11767:2 11769:1 11806:2 11830:1 11835:1 11841:2 11842:1 11852:1 11863:1 11871:1 11906:1 11914:1 11928:2 11932:1 11938:1 11940:1 11942:1 11976:1 11989:1 12000:1 12004:1 12009:1 12021:1 12041:1 12067:1 12070:1 12072:1 12074:1 12088:1 12108:6 12119:1 12140:1 12151:1 12154:1 12155:1 12165:1 12170:2 12181:2 12184:1 12186:1 12219:1 12222:1 12235:2 12255:1 12268:1 12273:1 12289:3 12293:1 12304:2 12309:1 12322:6 12324:1 12330:2 12344:1 12346:2 12351:1 12352:2 12359:1 12373:1 12380:1 12383:1 12388:3 12398:2 12419:1 12427:2 12439:2 12449:7 12456:1 12462:1 12464:1 12467:4 12480:1 12501:1 12517:1 12520:1 12546:1 12591:5 12595:1 12610:1 12615:1 12640:1 12659:1 12668:1 12678:1 12680:2 12685:2 12690:1 12691:1 12715:1 12719:1 12752:1 12764:1 12771:1 12775:1 12802:1 12828:1 12838:1 12846:1 12857:1 12873:2 12891:1 12957:1 12962:2 12999:2 13009:1 13012:1 13042:1 13048:1 13050:1 13058:1 13124:1 13135:2 13143:2 13148:1 13179:1 13198:1 13216:1 13229:1 13235:1 13251:2 13257:1 13425:11 13434:1 13441:1 13446:2 13448:1 13463:1 13475:5 13480:1 13481:1 13482:2 13486:1 13493:1 13497:1 13531:3 13536:1 13538:1 13540:1 13543:1 13552:1 13555:1 13558:1 13568:1 13572:1 13597:1 13614:2 13623:1 13665:1 13691:2 13707:1 13765:1 13786:1 13788:1 13819:1 13829:1 13853:1 13855:2 13869:1 13871:4 13878:2 13894:1 13906:1 13909:3 13945:3 13956:1 13962:1 13963:1 13974:4 13975:2 14005:2 14020:1 14030:1 14033:3 14040:1 14051:1 14057:2 14067:1 14069:2 14075:1 14077:2 14090:1 14103:1 14114:4 14120:1 14148:1 14167:3 14185:1 14191:1 14212:1 14222:4 14225:1 14239:2 14242:1 14245:1 14274:1 14282:1 14288:1 14307:2 14318:1 14323:1 14325:2 14334:1 14337:1 14370:3 14372:1 14375:1 14377:1 14392:1 14401:1 14415:1 14449:1 14460:3 14462:1 14464:3 14468:4 14479:1 14488:1 14489:3 14498:1 14536:1 14540:2 14544:1 14551:1 14580:2 14586:1 14617:1 14618:1 14627:1 14639:1 14641:1 14646:1 14671:1 14683:1 14691:1 14725:1 14735:1 14769:3 14774:1 14787:1 14795:1 14819:1 14832:2 14864:2 14872:1 14893:1 14906:1 14911:1 14912:1 14919:1 14927:3 14933:1 14969:1 15004:1 15015:1 15059:1 15067:1 15119:1 15143:1 15171:1 15175:1 15193:1 15196:1 15202:1 15213:1 15225:2 15231:1 15244:1 15245:2 15258:1 15262:1 15275:1 15298:1 15316:1 15346:1 15354:1 15368:1 15378:1 15381:1 15384:2 15391:1 15396:1 15401:1 15407:1 15410:2 15415:2 15438:2 15453:1 15457:1 15493:2 15505:1 15510:1 15525:1 15548:1 15550:2 15553:1 15591:1 15624:2 15642:1 15695:1 15706:1 15711:1 15740:1 15760:1 15762:1 15764:1 15765:1 15782:1 15785:2 15826:2 15851:1 15853:3 15861:1 15862:1 15894:1 15899:2 15916:1 15918:1 15927:2 15934:2 15960:1 15994:1 16028:1 16064:1 16095:1 16107:1 16118:1 16134:1 16144:1 16172:1 16186:1 16262:1 16273:1 16285:1 16313:1 16355:1 16363:1 16365:1 16383:1 16387:1 16402:2 16406:1 16409:1 16411:3 16414:1 16415:1 16430:1 16431:3 16457:3 16467:2 16475:3 16487:1 16499:1 16502:1 16523:1 16555:1 16575:1 16594:1 16627:1 16634:2 16635:3 16641:4 16648:1 16649:2 16654:1 16667:1 16669:1 16671:2 16700:1 16723:1 16733:2 16738:1 16747:1 16799:1 16805:4 16819:3 16825:1 16829:1 16835:1 16854:1 16861:1 16889:1 16907:1 16923:1 16946:1 16949:3 16962:1 16970:1 17050:1 17060:4 17077:1 17083:2 17112:1 17116:2 17141:1 17147:1 17182:1 17188:2 17211:2 17212:1 17214:1 17216:1 17217:1 17220:1 17223:1 17230:1 17231:3 17232:1 17237:1 17239:1 17242:2 17267:1 17302:1 17305:2 17338:1 17340:1 17348:1 17419:2 17499:1 17519:1 17520:1 17536:1 17543:1 17595:1 17629:1 17642:2 17656:1 17681:1 17686:2 17688:2 17691:1 17702:1 17709:1 17729:11 17765:1 17776:2 17803:6 17847:1 17851:2 17875:1 17898:3 17899:1 17915:1 17917:1 17926:1 17954:1 17957:1 17961:1 17980:1 18014:1 18028:3 18031:1 18044:1 18047:1 18054:4 18060:2 18076:3 18077:1 18111:1 18112:1 18125:1 18126:2 18129:4 18158:1 18167:2 18171:3 18172:1 18188:1 18202:1 18210:1 18213:1 18233:1 18248:1 18258:1 18275:1 18284:1 18299:1 18308:1 18313:1 18326:1 18385:1 18413:1 18417:1 18429:1 18434:3 18447:1 18453:1 18471:1 18478:1 18505:1 18535:1 18536:2 18603:1 18646:1 18682:1 18683:3 18700:1 18717:1 18740:1 18747:1 18782:2 18785:1 18825:1 18836:1 18843:2 18874:3 18882:3 18892:1 18894:1 18925:1 18938:1 18951:4 18957:1 18994:2 19085:1 19091:1 19093:1 19129:1 19144:1 19160:1 19172:4 19190:2 19191:1 19195:1 19240:1 19244:1 19298:1 19306:5 19308:1 19315:1 19390:1 19413:1 19419:5 19434:1 19437:1 19449:1 19480:1 19491:2 19492:1 19497:1 19503:1 19542:1 19559:1 19573:1 19577:1 19594:1 19602:1 19605:2 19611:2 19620:1 19633:1 19639:1 19644:1719 19648:1 19673:3 19678:1 19690:1 19709:1 19727:1 19805:2 19807:1 19814:1 19840:2 19845:1 19863:1 19869:1 19871:1 19878:2 19880:1 19890:1 19893:2 19895:2 19915:1 19926:1 19962:1 19990:1 20014:1 20032:1 20072:1 20095:1 20121:1 20131:1 20138:1 20179:1 20186:1 20194:1 20200:1 20216:1 20218:1 20222:1 20239:1 20290:1 20302:1 20303:1 20370:1 20389:1 20393:1 20396:1 20412:1 20418:1 20438:2 20457:1 20460:3 20462:2 20464:2 20466:1 20476:2 20487:1 20497:1 20498:4 20502:3 20547:1 20553:1 20554:1 20576:1 20588:1 20597:1 20604:1 20609:4 20622:1 20628:1 20630:4 20643:1 20674:1 20698:1 20703:1 20708:1 20758:1 20765:1 20769:2 20778:1 20786:3 20801:1 20841:1 20853:1 20875:6 20884:2 20903:1 20906:1 20915:1 20919:1 20933:1 20943:1 20951:3 20955:2 20980:1 20986:2 20989:2 20993:1 20998:1 21001:1 21015:2 21034:1 21052:1 21066:1 21079:1 21106:1 21160:2 21182:1 21184:3 21185:1 21192:1 21197:2 21211:2 21212:1 21224:1 21246:5 21254:1 21261:3 21286:1 21298:1 21302:4 21316:1 21319:1 21326:1 21336:1 21341:7 21355:1 21365:6 21393:1 21425:1 21455:1 21457:2 21462:1 21465:1 21484:2 21492:1 21507:1 21511:1 21528:1 21531:1 21545:1 21548:1 21559:1 21570:1 21627:3 21629:1 21633:2 21668:3 21683:2 21741:1 21782:1 21785:1 21787:1 21807:1 21833:1 21843:1 21855:1 21857:1 21869:1 21870:1 21879:1 21900:2 21927:1 21934:1 21951:1 21974:2 21989:1 21990:1 21991:1 21994:1 22024:1 22027:1 22039:1 22043:3 22046:2 22048:1 22056:9 22059:1 22077:2 22078:1 22102:1 22107:3 22113:1 22149:1 22175:1 22197:2 22213:1 22239:1 22255:2 22260:1 22262:1 22267:1 22283:1 22296:1 22306:1 22322:1 22327:1 22341:2 22414:1 22422:2 22426:2 22431:1 22443:1 22446:1 22462:1 22513:1 22518:1 22527:1 22552:1 22557:2 22601:1 22605:1 22610:1 22613:2 22626:1 22649:1 22659:1 22680:2 22681:1 22689:1 22704:1 22710:1 22711:2 22736:1 22747:1 22749:1 22754:1 22764:1 22770:1 22782:2 22801:2 22809:2 22817:2 22819:1 22831:2 22832:1 22844:1 22849:2 22853:1 22855:1 22860:1 22864:1 22867:1 22887:4 22890:1 22891:1 22892:1 22911:1 22913:2 22919:1 22935:1 22943:1 22954:1 22970:1 22988:1 23000:2 23008:1 23014:1 23039:2 23095:2 23096:1 23107:1 23109:1 23111:1 23112:1 23142:1 23145:1 23151:1 23156:2 23157:1 23166:1 23167:2 23170:1 23178:1 23180:10 23181:3 23185:1 23186:1 23187:1 23193:3 23205:1 23214:1 23219:1 23221:1 23222:4 23238:1 23244:2 23251:1 23279:1 23282:5 23313:1 23325:1 23332:2 23338:1 23357:1 23368:1 23375:1 23386:1 23395:2 23399:2 23404:1 23408:3 23410:1 23433:1 23444:1 23460:1 23466:2 23469:2 23478:1 23483:2 23486:1 23513:1 23546:1 23563:2 23567:2 23569:3 23581:1 23594:1 23607:4 23615:1 23625:1 23630:1 23631:1 23633:1 23641:1 23643:1 23644:5 23651:1 23671:1 23674:1 23684:3 23690:1 23700:1 23731:1 23744:3 23752:1 23775:1 23779:9 23786:1 23796:5 23802:1 23803:1 23804:2 23807:1 23809:1 23810:4 23831:2 23850:1 23856:1 23858:1 23862:2 23871:1 23878:1 23883:1 23885:1 23893:1 23899:5 23903:1 23915:1 23979:1 23997:1 24025:1 24047:1 24053:1 24056:6 24068:1 24108:1 24142:2 24196:2 24200:1 24220:1 24224:1 24229:2 24278:1 24286:1 24308:1 24322:1 24374:3 24404:1 24417:1 24430:1 24447:1 24498:1 24500:1 24525:1 24582:1 24601:1 24612:1 24614:2 24631:1 24633:2 24639:1 24644:1 24654:3 24662:1 24666:1 24682:1 24692:1 24703:1 24704:1 24726:2 24733:1 24738:2 24741:1 24742:2 24751:1 24764:1 24770:1 24772:1 24786:2 24799:1 24804:1 24833:1 24835:4 24868:1 24870:1 24884:1 24886:2 24904:1 24918:1 24930:1 24964:2 24994:1 24999:1 25029:1 25035:1 25065:1 25067:1 25080:2 25089:2 25120:1 25133:1 25181:1 25185:1 25193:1 25250:2 25271:1 25310:1 25329:2 25331:1 25345:1 25348:1 25351:1 25355:1 25369:1 25388:1 25405:1 25406:1 25408:1 25481:2 25509:1 25522:1 25538:1 25572:1 25591:1 25603:5 25608:1 25635:6 25652:2 25664:1 25680:1 25682:1 25684:1 25685:1 25712:4 25724:2 25729:1 25739:1 25775:1 25786:1 25799:11 25850:4 25916:2 25918:1 25921:1 25930:1 25932:1 25935:2 25940:2 25949:1 25963:1 25970:1 25972:1 25989:4 25996:1 25997:1 26012:1 26015:1 26049:3 26051:1 26055:1 26058:1 26064:1 26080:3 26083:1 26090:1 26094:1 26099:1 26104:1 26110:1 26120:3 26122:1 26157:1 26165:1 26178:1 26215:1 26254:2 26269:1 26278:1 26289:1 26301:1 26308:1 26313:2 26314:1 26318:1 26327:1 26381:2 26397:3 26413:1 26439:1 26449:1 26453:2 26456:4 26504:6 26505:2 26548:1 26566:1 26591:2 26607:1 26626:1 26639:1 26647:1 26689:1 26703:7 26729:3 26752:1 26762:1 26763:1 26795:1 26833:1 26855:2 26857:3 26883:1 26889:1 26904:2 26913:1 26929:1 26930:1 26938:2 26956:2 26959:3 26964:2 26980:1 26992:1 27001:4 27023:1 27039:3 27040:1 27062:1 27089:1 27152:1 27157:3 27162:2 27201:1 27207:2 27243:2 27262:1 27269:2 27279:1 27280:1 27282:3 27306:1 27324:1 27347:1 27350:1 27383:1 27406:1 27422:1 27449:1 27482:1 27491:1 27498:3 27537:1 27580:1 27584:1 27603:1 27614:1 27619:1 27624:1 27627:1 27631:1 27648:2 27653:1 27661:1 27710:2 27732:1 27748:1 27755:1 27760:1 27783:1 27797:5 27808:1 27818:1 27854:1 27858:2 27881:1 27892:2 27896:2 27909:1 27916:1 27917:3 27927:1 28004:1 28037:1 28049:1 28069:1 28079:1 28096:1 28100:1 28102:1 28103:3 28138:1 28139:1 28146:1 28152:1 28157:1 28165:4 28173:1 28177:3 28205:1 28207:1 28225:2 28241:1 28280:1 28290:2 28305:1 28327:1 28338:1 28342:2 28360:1 28379:4 28397:1 28482:1 28483:1 28486:1 28496:2 28527:1 28561:2 28576:3 28597:1 28614:1 28646:1 28684:1 28690:1 28710:1 28726:2 28727:1 28736:1 28738:1 28780:1 28782:1 28818:1 28822:1 28836:1 28843:3 28924:1 28948:3 29010:1 29014:1 29015:1 29020:1 29025:1 29032:1 29052:1 29054:1 29063:1 29078:1 29081:1 29088:1 29092:1 29093:1 29098:1 29109:1 29111:2 29119:1 29122:1 29128:1 29130:1 29133:1 29134:1 29137:2 29144:2 29152:1 29154:1 29158:1 29160:1 29188:1 29196:1 29197:2 29224:6 29225:1 29227:1 29228:1 29235:1 29238:1 29249:2 29253:1 29259:1 29282:1 29284:1 29295:1 29304:1 29340:1 29344:1 29354:1 29360:1 29363:2 29386:1 29397:1 29415:1 29444:1 29447:2 29450:2 29469:1 29539:1 29576:1 29579:1 29590:1 29593:2 29596:1 29610:1 29633:1 29661:1 29679:1 29689:1 29702:1 29723:3 29729:1 29760:2 29778:1 29779:2 29781:2 29787:2 29788:1 29789:1 29790:1 29804:1 29825:2 29826:1 29837:1 29851:1 29860:1 29887:26 29888:3 29893:4 29896:1 29910:2 29918:1 29933:1 29938:7 29946:4 30001:1 30008:1 30039:3 30052:1 30062:1 30069:2 30078:4 30112:7 30118:1 30124:2 30130:1 30149:1 30159:1 30165:1 30194:1 30197:1 30199:3 30207:1 30217:1 30243:1 30281:1 30289:2 30329:1 30331:1 30350:1 30358:2 30361:1 30377:1 30382:1 30388:1 30436:5 30438:1 30457:1 30465:1 30476:1 30510:2 30513:6 30523:1 30534:3 30537:1 30538:1 30541:1 30556:1 30660:1 30678:1 30692:4 30693:3 30694:3 30720:2 30741:1 30754:1 30801:1 30842:1 30844:1 30846:1 30858:1 30864:2 30869:3 30874:1 30884:6 30907:2 30909:1 30925:1 30940:1 30953:1 30956:1 30981:1 30986:3 31003:2 31035:1 31048:2 31055:1 31066:1 31089:1 31093:3 31100:1 31142:1 31154:1 31195:1 31205:1 31208:1 31212:2 31216:1 31222:1 31223:1 31231:1 31238:1 31243:2 31246:1 31248:1 31250:1 31251:1 31287:1 31299:1 31313:1 31373:1 31385:1 19 1:1 26:1 27:1 30:1 52:1 56:1 57:1 91:1 108:1 153:1 154:1 170:3 195:1 206:4 208:1 232:1 234:1 242:1 246:1 276:1 308:3 338:1 354:1 359:1 367:1 387:1 417:1 428:5 462:3 466:1 482:1 486:1 561:1 569:1 604:1 615:1 616:1 622:1 643:9 649:1 661:1 671:2 697:1 764:1 778:1 837:1 843:1 852:1 870:2 879:1 890:1 899:1 907:3 926:2 928:1 932:1 933:3 937:3 938:3 948:2 949:1 951:1 967:1 969:1 985:1 987:1 993:1 994:2 998:6 1009:1 1021:2 1022:1 1037:3 1038:1 1042:2 1055:1 1080:4 1083:1 1137:1 1195:1 1213:1 1240:1 1249:1 1262:1 1277:1 1285:1 1300:1 1322:1 1335:1 1336:2 1337:1 1348:2 1350:1 1360:1 1366:1 1380:1 1389:1 1390:1 1395:1 1396:1 1437:1 1458:1 1507:1 1527:1 1533:1 1543:1 1559:1 1582:1 1584:1 1586:3 1592:2 1596:1 1600:2 1607:2 1669:2 1670:1 1675:4 1690:2 1699:1 1704:1 1712:1 1757:1 1766:1 1795:5 1815:2 1828:1 1842:1 1846:2 1855:1 1887:1 1899:1 1906:1 1909:1 1911:1 1922:1 1923:2 1928:2 1940:1 1948:1 1950:2 1956:1 1978:1 1979:1 2013:1 2018:1 2026:1 2027:1 2040:2 2087:1 2105:1 2113:1 2133:2 2165:1 2190:1 2196:2 2198:2 2200:1 2203:1 2205:2 2206:1 2208:1 2214:1 2216:3 2223:1 2251:1 2266:1 2267:4 2273:3 2297:1 2306:1 2321:1 2337:1 2345:2 2352:1 2369:1 2375:1 2384:3 2388:2 2391:2 2393:2 2396:2 2401:1 2402:3 2404:1 2409:1 2410:2 2414:1 2415:1 2422:3 2425:3 2434:1 2501:1 2505:1 2510:2 2512:2 2521:1 2528:4 2536:1 2548:1 2549:1 2584:2 2590:1 2592:4 2616:1 2626:1 2647:1 2653:1 2655:4 2669:1 2689:1 2690:1 2759:1 2760:1 2779:2 2784:1 2789:1 2790:1 2797:1 2811:2 2832:7 2838:2 2843:1 2859:1 2890:3 2905:1 2909:2 2943:1 2962:4 2985:3 2989:1 3005:1 3014:18 3023:12 3040:1 3058:1 3065:7 3074:1 3083:1 3090:1 3098:1 3102:5 3124:1 3148:1 3171:1 3184:1 3194:1 3260:1 3265:1 3294:1 3296:1 3307:1 3336:1 3351:1 3365:1 3410:2 3423:2 3450:1 3463:2 3477:1 3488:1 3489:4 3534:1 3542:1 3548:2 3567:1 3570:1 3573:1 3652:4 3653:1 3654:1 3666:1 3669:1 3700:2 3713:1 3732:1 3742:1 3752:1 3779:2 3781:1 3788:1 3793:1 3794:1 3797:1 3798:1 3802:1 3813:1 3823:1 3824:2 3844:1 3879:1 3880:1 3882:1 3889:1 3895:1 3936:2 3943:5 3989:2 4022:1 4031:2 4055:2 4094:1 4100:1 4104:1 4110:1 4126:3 4147:1 4153:1 4173:3 4174:1 4208:1 4227:1 4228:2 4229:3 4259:1 4283:1 4294:1 4313:1 4340:4 4348:2 4361:1 4366:1 4389:1 4401:1 4409:1 4425:2 4432:1 4450:1 4452:1 4454:3 4456:1 4498:1 4558:3 4579:1 4598:1 4608:2 4613:2 4651:1 4664:1 4682:1 4683:3 4684:1 4736:1 4748:1 4753:2 4776:2 4780:1 4781:1 4816:1 4817:4 4818:1 4848:1 4862:1 4868:1 4871:1 4876:1 4885:1 4888:1 4905:1 4906:2 4919:1 4927:1 4949:2 4969:1 4977:1 4996:1 5000:1 5005:1 5026:1 5028:1 5031:1 5034:1 5039:1 5062:1 5065:3 5127:1 5132:7 5133:1 5163:1 5183:3 5245:2 5247:1 5248:4 5264:5 5265:4 5266:1 5269:1 5270:1 5271:1 5275:1 5276:4 5277:2 5284:2 5287:1 5291:3 5292:1 5293:1 5318:1 5320:1 5344:1 5350:1 5356:4 5365:1 5385:1 5436:1 5443:1 5459:1 5481:1 5508:1 5535:1 5551:1 5574:1 5639:1 5659:1 5666:1 5678:1 5686:2 5710:1 5712:1 5719:1 5732:1 5748:1 5777:1 5784:1 5794:6 5815:1 5822:1 5824:1 5827:1 5839:1 5859:1 5889:2 5890:2 5913:1 5917:1 5952:1 5954:3 5958:1 5973:1 6030:1 6036:2 6040:1 6048:1 6061:1 6064:2 6093:1 6099:1 6151:1 6196:3 6283:1 6301:1 6309:1 6315:2 6333:2 6345:3 6346:2 6348:11 6349:1 6350:1 6355:3 6362:1 6378:2 6399:1 6408:1 6409:2 6444:1 6445:1 6446:1 6452:2 6465:1 6468:1 6473:5 6474:1 6479:1 6488:2 6567:1 6568:1 6583:1 6588:5 6591:1 6593:1 6607:1 6608:1 6610:2 6645:1 6664:1 6670:1 6681:1 6682:1 6683:1 6692:2 6693:2 6696:4 6697:1 6704:2 6707:1 6709:3 6713:1 6715:1 6736:1 6745:1 6769:1 6795:1 6817:1 6827:1 6840:1 6850:1 6852:1 6882:2 6886:1 6926:1 6965:1 7006:1 7013:3 7028:1 7033:1 7035:1 7045:1 7052:1 7088:1 7113:1 7120:2 7127:1 7128:2 7142:1 7151:1 7155:4 7165:1 7181:5 7186:3 7215:1 7216:2 7221:3 7285:1 7289:1 7305:1 7312:1 7314:2 7319:2 7332:1 7346:1 7353:1 7355:1 7381:2 7382:1 7386:1 7435:1 7436:1 7450:2 7486:1 7489:1 7509:1 7533:1 7535:1 7537:11 7540:1 7562:2 7585:1 7594:2 7640:1 7658:1 7688:1 7691:1 7781:2 7804:1 7844:1 7845:3 7855:3 7862:1 7864:2 7878:1 7880:2 7886:1 7887:2 7919:1 7929:1 7943:1 7975:1 7989:1 8032:1 8041:1 8045:1 8103:1 8104:7 8105:3 8128:3 8130:3 8135:1 8157:1 8160:1 8163:1 8172:24 8178:2 8188:1 8194:1 8201:20 8204:8 8213:1 8267:1 8273:1 8283:1 8284:2 8315:1 8332:1 8333:1 8340:1 8347:1 8357:1 8370:1 8400:1 8415:3 8416:1 8442:1 8443:1 8445:1 8451:1 8455:2 8466:1 8517:1 8565:1 8575:1 8581:1 8584:1 8598:2 8604:3 8622:1 8626:1 8648:1 8661:1 8669:1 8689:2 8698:16 8728:3 8741:3 8746:1 8786:2 8837:1 8849:2 8884:1 8892:1 8903:1 8913:1 8918:1 8927:2 8948:2 8952:2 8954:1 8971:4 8976:4 8977:1 8979:1 8984:2 8985:2 8986:1 8991:1 9012:1 9038:1 9057:4 9058:2 9061:2 9062:1 9064:2 9071:3 9072:3 9074:1 9077:1 9094:1 9106:1 9115:2 9120:1 9130:1 9146:1 9148:1 9158:1 9165:2 9177:1 9181:1 9192:1 9249:1 9259:3 9269:1 9326:1 9339:1 9345:1 9372:2 9377:2 9385:2 9405:1 9431:1 9442:2 9470:1 9539:1 9549:1 9563:1 9584:1 9588:1 9593:1 9595:1 9602:2 9606:5 9628:1 9644:1 9667:1 9686:1 9715:1 9739:1 9768:1 9779:7 9783:1 9785:1 9791:3 9798:1 9817:1 9825:1 9855:1 9874:5 9885:1 9894:1 9902:1 9921:1 9926:1 9931:1 9943:1 9944:2 9950:1 9964:2 9982:1 9990:1 10046:1 10076:1 10091:1 10096:1 10105:1 10112:3 10114:1 10133:1 10167:1 10172:4 10185:1 10224:1 10235:8 10236:27 10238:2 10253:2 10257:1 10260:1 10272:1 10273:1 10289:1 10293:1 10302:1 10318:1 10336:1 10358:2 10369:5 10382:1 10394:1 10396:1 10415:1 10426:1 10431:1 10439:1 10440:1 10453:1 10471:1 10543:1 10544:2 10554:1 10578:2 10594:1 10610:1 10611:4 10621:1 10635:1 10640:1 10654:3 10669:1 10687:1 10699:1 10702:1 10714:1 10727:1 10728:1 10735:1 10736:6 10746:1 10759:1 10777:1 10796:1 10853:1 10871:1 10872:2 10901:3 10921:1 10926:1 10940:1 10943:1 10946:1 10955:1 10967:3 10971:4 11000:2 11003:1 11007:1 11030:1 11037:1 11064:1 11089:1 11091:1 11102:1 11144:1 11150:4 11158:1 11181:7 11207:2 11238:2 11256:2 11266:1 11267:1 11272:1 11275:1 11296:2 11297:2 11311:1 11333:3 11372:2 11377:8 11385:1 11388:2 11404:3 11405:2 11406:2 11454:1 11462:3 11492:1 11493:1 11497:1 11501:1 11509:2 11530:1 11536:1 11586:1 11589:1 11614:4 11620:1 11632:4 11635:1 11646:1 11651:1 11653:1 11671:1 11678:1 11686:1 11689:1 11692:1 11697:1 11737:1 11751:2 11757:1 11759:2 11767:2 11769:1 11806:2 11830:1 11835:1 11841:2 11842:1 11852:1 11863:1 11871:1 11906:1 11914:1 11928:2 11932:1 11938:1 11940:1 11942:1 11976:1 11989:1 12000:1 12004:1 12009:1 12021:1 12041:1 12067:1 12070:1 12072:1 12074:1 12088:1 12108:6 12119:1 12140:1 12151:1 12154:1 12155:1 12165:1 12170:2 12181:2 12184:1 12186:1 12219:1 12222:1 12235:2 12255:1 12268:1 12273:1 12289:4 12293:1 12304:2 12309:1 12322:6 12324:1 12330:2 12333:1 12344:1 12346:2 12351:1 12352:2 12359:1 12373:1 12380:1 12383:1 12388:3 12398:2 12419:1 12427:2 12439:2 12449:7 12456:1 12462:1 12464:1 12467:4 12480:1 12501:1 12517:1 12520:1 12546:1 12591:5 12595:1 12610:1 12615:1 12640:1 12659:1 12668:1 12678:1 12680:2 12685:2 12690:1 12691:1 12704:1 12715:1 12719:1 12752:1 12764:1 12771:1 12775:1 12802:1 12828:1 12838:1 12846:1 12857:1 12873:2 12891:1 12957:1 12962:2 12999:2 13009:1 13012:1 13042:1 13048:1 13050:1 13058:1 13124:1 13135:2 13143:2 13148:1 13179:1 13198:1 13216:1 13229:1 13235:1 13251:2 13257:1 13425:11 13434:1 13441:1 13446:2 13448:1 13463:1 13475:5 13480:1 13481:1 13482:2 13486:1 13493:1 13497:1 13531:3 13536:1 13538:1 13540:1 13543:1 13552:1 13555:1 13558:1 13568:1 13572:1 13597:1 13614:2 13623:1 13665:1 13691:2 13707:1 13765:1 13786:1 13788:1 13819:1 13829:1 13853:1 13855:2 13869:2 13871:4 13878:2 13894:1 13906:1 13909:3 13945:3 13956:1 13962:1 13963:1 13974:4 13975:2 14005:2 14020:1 14030:1 14033:3 14040:1 14051:1 14057:2 14067:1 14069:2 14075:1 14077:2 14090:1 14103:1 14114:4 14120:1 14148:1 14167:3 14185:1 14191:1 14212:1 14222:4 14225:1 14239:2 14242:1 14245:1 14274:1 14282:1 14288:1 14307:2 14318:1 14323:1 14325:2 14334:1 14337:1 14370:3 14372:1 14375:1 14377:1 14392:1 14401:1 14415:1 14449:1 14460:3 14462:1 14464:3 14468:4 14479:1 14488:1 14489:3 14498:1 14536:1 14540:2 14544:1 14551:1 14580:2 14586:1 14617:1 14618:1 14627:1 14632:1 14639:1 14641:1 14646:1 14671:1 14683:1 14691:1 14725:1 14735:1 14769:3 14774:1 14787:1 14795:1 14819:1 14832:2 14864:2 14872:1 14893:1 14906:1 14911:1 14912:1 14919:1 14927:3 14933:1 14961:1 14969:1 15004:1 15015:1 15059:1 15067:1 15119:1 15143:1 15169:1 15171:1 15175:1 15193:1 15196:1 15202:1 15213:1 15225:2 15231:1 15244:1 15245:2 15258:1 15262:1 15275:1 15298:1 15316:1 15346:1 15354:1 15368:1 15378:1 15381:1 15384:2 15391:1 15396:1 15401:1 15407:1 15410:2 15415:2 15438:2 15453:1 15457:1 15493:2 15505:1 15510:1 15525:1 15548:1 15550:2 15553:1 15591:1 15608:1 15624:2 15642:1 15695:1 15706:1 15711:1 15740:1 15760:1 15762:1 15764:1 15765:1 15782:1 15785:2 15798:1 15826:2 15851:1 15853:3 15861:1 15862:1 15894:1 15899:2 15916:1 15918:1 15927:2 15934:2 15960:1 15994:1 16028:1 16064:1 16095:1 16107:1 16118:1 16134:1 16144:1 16172:1 16186:1 16262:1 16273:1 16285:2 16313:1 16355:1 16363:1 16365:1 16383:1 16387:1 16402:2 16406:1 16409:1 16411:3 16414:1 16415:1 16430:1 16431:3 16457:3 16467:2 16475:3 16487:1 16499:1 16502:1 16523:1 16555:1 16575:2 16594:1 16627:1 16634:2 16635:3 16641:4 16648:1 16649:2 16654:1 16667:1 16669:1 16671:2 16700:1 16723:1 16733:2 16738:1 16747:1 16749:1 16799:1 16805:4 16819:3 16825:1 16829:1 16835:1 16854:1 16861:1 16889:1 16907:1 16923:2 16946:1 16949:3 16962:1 16970:1 17024:1 17025:1 17050:1 17060:4 17077:1 17083:2 17112:1 17116:2 17141:1 17147:1 17182:1 17188:2 17211:2 17212:1 17214:1 17216:1 17217:1 17220:1 17223:1 17230:1 17231:3 17232:1 17237:1 17239:1 17242:2 17267:1 17302:1 17305:2 17338:1 17340:1 17348:1 17419:2 17499:1 17519:1 17520:1 17536:1 17543:1 17595:1 17629:1 17642:2 17656:1 17681:1 17686:2 17688:2 17691:1 17702:1 17709:1 17729:11 17765:1 17776:2 17803:6 17847:1 17851:2 17875:1 17898:3 17899:1 17915:1 17917:1 17926:1 17954:1 17957:1 17961:1 17980:1 18014:1 18028:3 18031:1 18044:1 18047:1 18054:4 18060:2 18076:3 18077:1 18111:1 18112:1 18125:1 18126:2 18129:4 18158:1 18167:2 18171:3 18172:1 18188:1 18202:1 18210:1 18213:1 18233:1 18239:1 18248:1 18258:1 18275:1 18284:1 18299:1 18308:1 18313:1 18326:1 18385:1 18413:1 18417:1 18429:1 18434:3 18447:1 18453:1 18471:1 18477:1 18478:1 18505:1 18535:1 18536:2 18603:1 18646:1 18682:1 18683:3 18700:1 18717:1 18740:1 18747:1 18782:2 18785:1 18825:1 18836:1 18843:2 18874:3 18882:3 18892:1 18894:1 18925:1 18938:1 18951:4 18957:1 18994:2 19085:1 19091:1 19093:1 19129:1 19144:1 19160:1 19165:1 19172:4 19190:2 19191:1 19195:1 19240:1 19244:1 19298:1 19306:5 19308:1 19315:1 19390:1 19413:1 19419:6 19434:1 19437:1 19449:1 19480:1 19491:2 19492:1 19497:1 19503:1 19542:1 19559:1 19573:1 19577:1 19594:1 19602:1 19605:2 19611:2 19620:1 19633:1 19639:1 19644:1767 19648:1 19673:3 19678:1 19690:1 19709:1 19727:1 19805:2 19807:1 19814:1 19840:2 19845:1 19863:1 19869:1 19871:1 19878:2 19880:1 19890:1 19893:2 19895:2 19915:1 19926:1 19962:1 19990:1 20014:1 20032:1 20072:1 20095:1 20121:1 20131:1 20138:1 20179:1 20186:1 20194:1 20200:1 20216:1 20218:1 20222:1 20239:1 20290:1 20302:1 20303:1 20370:1 20389:1 20393:1 20396:1 20412:1 20418:1 20438:2 20457:1 20460:3 20462:2 20464:2 20466:1 20476:2 20487:2 20497:1 20498:4 20502:3 20547:1 20553:1 20554:1 20576:1 20588:1 20597:1 20604:1 20609:5 20622:1 20628:1 20630:4 20643:1 20674:1 20698:1 20703:1 20708:1 20758:1 20765:1 20769:2 20778:1 20786:3 20801:1 20841:1 20853:1 20857:1 20875:6 20884:2 20903:1 20906:1 20915:1 20919:1 20933:1 20939:1 20943:1 20951:3 20955:2 20980:1 20986:2 20989:2 20993:1 20998:1 21001:1 21015:2 21034:1 21052:1 21066:1 21079:1 21105:1 21106:1 21160:2 21182:1 21184:3 21185:1 21192:1 21197:2 21211:2 21212:1 21224:1 21246:5 21254:1 21261:3 21286:1 21298:1 21302:4 21316:1 21319:1 21326:1 21336:1 21341:7 21355:1 21365:6 21393:1 21425:1 21455:1 21457:2 21462:1 21465:1 21484:2 21492:1 21507:1 21511:1 21528:1 21531:1 21545:1 21548:1 21559:1 21570:1 21627:3 21629:1 21633:2 21668:3 21683:2 21741:1 21782:1 21785:1 21787:1 21807:1 21833:1 21843:1 21855:1 21857:1 21869:1 21870:1 21879:1 21900:2 21927:1 21934:1 21951:1 21974:2 21989:1 21990:1 21991:1 21994:1 22024:1 22027:1 22039:1 22043:3 22046:2 22048:2 22056:9 22059:1 22077:2 22078:1 22102:1 22107:3 22113:1 22149:1 22175:1 22196:1 22197:2 22210:1 22213:1 22239:1 22255:2 22260:1 22262:1 22267:1 22283:1 22296:1 22306:1 22322:1 22327:1 22341:2 22414:1 22422:2 22426:2 22431:1 22443:1 22446:1 22462:1 22513:1 22518:1 22527:1 22552:1 22557:2 22601:1 22605:1 22610:1 22613:2 22626:1 22649:1 22659:1 22680:2 22681:1 22683:1 22689:1 22704:1 22710:1 22711:2 22736:1 22747:1 22749:1 22754:1 22764:1 22770:1 22782:2 22801:2 22809:2 22817:2 22819:1 22831:2 22832:1 22844:1 22849:2 22853:1 22855:1 22860:1 22864:1 22867:1 22885:1 22887:4 22890:1 22891:1 22892:1 22911:1 22913:2 22919:1 22935:1 22943:1 22954:1 22970:1 22988:1 23000:2 23008:1 23014:1 23039:2 23095:2 23096:1 23107:1 23109:1 23111:1 23112:1 23142:1 23145:1 23151:1 23156:2 23157:1 23166:1 23167:2 23170:1 23178:1 23180:10 23181:3 23185:1 23186:1 23187:1 23193:3 23205:1 23214:1 23219:1 23221:1 23222:4 23238:1 23244:2 23251:1 23279:1 23282:5 23313:1 23325:1 23332:2 23338:1 23357:1 23368:1 23375:1 23386:1 23395:2 23399:2 23404:1 23408:3 23410:1 23433:1 23444:1 23460:1 23466:2 23469:2 23478:1 23483:2 23486:1 23513:1 23546:1 23563:2 23567:2 23569:3 23581:1 23594:1 23607:4 23615:1 23625:1 23630:1 23631:1 23633:1 23641:1 23643:1 23644:5 23651:1 23671:1 23674:1 23684:4 23690:1 23700:1 23731:2 23744:3 23752:1 23775:1 23779:9 23786:1 23796:5 23802:1 23803:1 23804:2 23807:1 23809:1 23810:4 23831:2 23850:1 23856:1 23858:1 23862:2 23871:1 23878:1 23883:1 23885:1 23893:1 23899:5 23903:1 23915:1 23979:1 23997:1 24025:1 24047:1 24053:1 24056:6 24068:1 24108:1 24142:2 24196:2 24200:1 24220:1 24224:1 24229:2 24278:1 24286:1 24308:1 24322:1 24374:3 24404:1 24417:1 24430:1 24447:1 24498:1 24500:1 24525:1 24545:1 24582:1 24601:1 24612:1 24614:2 24631:1 24633:2 24639:1 24644:1 24654:3 24662:1 24666:1 24682:1 24692:1 24703:1 24704:1 24726:2 24733:1 24738:2 24741:1 24742:2 24751:1 24764:1 24770:1 24772:1 24786:2 24799:1 24804:1 24833:1 24835:4 24868:1 24870:1 24884:1 24886:2 24904:1 24918:1 24930:1 24964:2 24994:1 24999:1 25029:1 25035:1 25065:1 25067:1 25080:2 25089:2 25120:1 25133:1 25181:1 25185:1 25193:1 25250:2 25271:1 25310:1 25329:2 25331:1 25345:1 25348:1 25351:1 25355:1 25369:1 25388:1 25405:1 25406:1 25408:1 25445:1 25481:2 25509:1 25522:1 25538:1 25549:1 25572:1 25591:1 25603:5 25608:1 25635:6 25652:2 25664:1 25680:1 25682:1 25684:1 25685:1 25712:4 25724:2 25729:1 25739:1 25775:1 25786:1 25799:11 25850:4 25916:2 25918:1 25921:1 25930:1 25932:1 25935:2 25940:2 25949:1 25963:1 25970:1 25972:1 25989:4 25996:1 25997:1 26012:1 26015:1 26049:3 26051:1 26055:1 26058:1 26064:1 26080:3 26083:1 26090:1 26094:1 26099:1 26104:1 26110:1 26120:3 26122:1 26157:1 26165:1 26178:1 26207:1 26215:1 26254:2 26269:1 26278:1 26289:1 26301:1 26308:1 26313:2 26314:1 26318:1 26327:1 26381:2 26397:3 26413:1 26439:1 26449:1 26453:2 26456:4 26504:6 26505:2 26548:1 26566:1 26591:2 26607:1 26626:1 26639:1 26647:1 26689:1 26703:7 26729:4 26752:1 26762:1 26763:1 26769:1 26795:1 26833:1 26848:1 26855:2 26857:3 26883:1 26889:1 26904:2 26913:2 26929:1 26930:1 26938:2 26956:2 26959:3 26964:2 26980:1 26992:1 27001:5 27023:1 27039:3 27040:1 27062:1 27089:1 27152:1 27157:3 27162:2 27201:1 27207:2 27243:2 27262:1 27269:2 27279:1 27280:1 27282:3 27306:1 27324:1 27347:1 27350:1 27383:1 27406:1 27422:1 27449:1 27482:1 27491:1 27498:3 27537:1 27580:1 27584:1 27603:1 27614:1 27619:1 27624:1 27627:1 27631:1 27648:2 27653:1 27661:1 27710:2 27732:1 27748:1 27755:1 27760:1 27783:1 27797:6 27808:1 27818:1 27854:1 27858:2 27881:1 27892:2 27896:2 27909:1 27916:1 27917:3 27927:1 28004:1 28037:1 28049:1 28069:1 28079:1 28096:1 28100:1 28102:1 28103:3 28138:1 28139:1 28146:1 28152:1 28157:1 28165:4 28173:1 28177:3 28205:1 28207:1 28225:2 28241:1 28280:1 28290:2 28305:1 28327:1 28338:1 28342:2 28360:1 28379:4 28397:1 28435:1 28482:1 28483:1 28486:1 28496:2 28527:1 28561:2 28576:3 28597:1 28614:1 28646:1 28684:1 28690:1 28710:1 28726:2 28727:1 28736:1 28738:1 28780:1 28782:1 28818:1 28822:1 28836:1 28843:3 28924:1 28948:3 29010:1 29014:1 29015:1 29020:1 29025:1 29032:1 29052:1 29054:1 29063:1 29078:1 29081:1 29088:1 29092:1 29093:1 29098:1 29109:1 29111:2 29119:1 29122:1 29128:1 29130:1 29133:1 29134:1 29137:2 29144:2 29152:1 29154:1 29158:1 29160:1 29188:1 29196:1 29197:2 29224:6 29225:1 29227:1 29228:1 29235:1 29238:1 29249:2 29253:1 29259:1 29282:1 29284:1 29295:1 29304:1 29340:1 29344:1 29354:1 29360:1 29363:2 29386:1 29397:1 29415:1 29444:1 29447:2 29450:3 29469:1 29539:1 29576:1 29579:1 29590:1 29593:2 29596:1 29610:1 29633:1 29661:1 29679:1 29689:1 29702:1 29723:3 29729:1 29760:2 29778:1 29779:2 29781:2 29787:2 29788:1 29789:1 29790:1 29804:1 29825:2 29826:1 29837:1 29851:1 29860:1 29887:26 29888:3 29893:4 29896:1 29910:2 29918:1 29933:1 29938:7 29946:4 30001:1 30008:1 30039:3 30052:1 30062:1 30069:2 30078:4 30112:7 30118:1 30124:2 30130:1 30149:1 30159:1 30165:1 30194:1 30197:1 30199:3 30207:1 30217:1 30243:1 30281:1 30289:2 30329:1 30331:1 30350:1 30358:2 30361:1 30377:1 30382:1 30388:1 30436:5 30438:1 30457:1 30465:1 30476:1 30510:2 30513:6 30523:1 30534:3 30537:1 30538:1 30541:1 30556:1 30660:1 30678:1 30692:4 30693:3 30694:3 30720:2 30741:1 30754:1 30801:1 30842:1 30844:2 30846:1 30848:1 30858:1 30864:2 30869:3 30874:1 30884:6 30907:2 30909:2 30925:1 30940:1 30953:1 30956:1 30981:1 30986:3 31003:2 31035:1 31048:2 31055:1 31066:1 31089:1 31093:3 31100:1 31118:1 31142:1 31154:1 31195:1 31205:1 31208:1 31212:2 31216:1 31222:1 31223:1 31231:1 31238:2 31243:2 31246:1 31248:1 31250:1 31251:1 31287:1 31299:1 31313:1 31373:1 31385:1 19 1:1 26:1 27:1 30:1 52:1 56:1 57:1 91:1 108:1 153:1 154:1 170:3 191:1 195:1 206:4 208:1 232:1 234:1 242:1 246:1 276:2 308:3 338:1 354:1 359:1 367:1 387:1 417:1 428:5 462:3 466:1 482:1 486:1 561:1 569:1 604:1 615:1 616:1 622:1 643:9 649:1 661:1 671:2 697:1 764:1 778:1 837:1 843:1 852:1 870:2 879:1 890:1 899:1 907:3 926:2 928:1 932:1 933:3 937:4 938:3 948:2 949:1 951:1 967:1 969:1 985:1 987:1 993:1 994:3 998:6 1009:1 1021:2 1022:1 1037:3 1038:1 1042:3 1055:1 1080:4 1083:1 1137:1 1195:1 1213:1 1240:1 1249:1 1262:1 1277:1 1285:1 1300:1 1322:1 1335:1 1336:2 1337:1 1348:2 1350:1 1360:1 1366:1 1380:1 1389:1 1390:1 1395:1 1396:1 1411:1 1437:1 1458:1 1507:1 1527:1 1533:1 1543:1 1559:1 1582:1 1584:1 1586:3 1592:2 1596:1 1600:3 1607:2 1669:2 1670:1 1675:4 1690:2 1699:1 1704:1 1712:1 1757:1 1766:1 1795:5 1815:2 1828:1 1842:1 1846:2 1855:1 1887:1 1899:1 1906:1 1909:1 1911:1 1922:1 1923:2 1928:2 1940:1 1948:1 1950:2 1956:1 1978:1 1979:1 2013:1 2018:1 2026:1 2027:1 2040:2 2087:1 2105:1 2113:1 2133:2 2165:1 2190:1 2196:2 2198:2 2200:1 2203:1 2205:2 2206:2 2208:1 2214:1 2216:3 2223:1 2251:1 2266:1 2267:5 2273:3 2297:1 2306:1 2321:1 2337:1 2345:2 2352:1 2369:1 2375:1 2384:3 2388:2 2391:2 2393:2 2396:2 2401:1 2402:3 2404:1 2409:1 2410:2 2414:1 2415:1 2422:3 2425:3 2434:1 2501:2 2505:1 2510:2 2512:2 2521:1 2528:4 2536:1 2548:1 2549:1 2584:2 2590:1 2592:4 2616:1 2626:1 2647:1 2653:1 2655:4 2669:1 2689:1 2690:1 2759:1 2760:1 2779:2 2784:1 2789:1 2790:1 2797:1 2811:2 2832:7 2838:2 2843:1 2859:1 2890:3 2905:1 2909:2 2943:1 2962:4 2985:3 2989:1 3005:1 3014:19 3023:13 3040:1 3058:1 3065:7 3074:1 3083:2 3090:1 3098:1 3102:5 3124:1 3148:1 3171:1 3184:1 3194:1 3260:1 3265:1 3294:1 3296:1 3307:1 3336:1 3351:1 3365:1 3410:2 3423:2 3439:1 3450:1 3463:2 3477:1 3488:1 3489:4 3534:1 3542:1 3548:2 3567:1 3570:1 3573:1 3649:1 3652:4 3653:1 3654:1 3666:1 3669:1 3700:2 3713:1 3732:1 3742:1 3752:1 3779:2 3781:1 3788:1 3793:1 3794:1 3797:1 3798:1 3800:1 3802:1 3813:1 3823:1 3824:2 3844:1 3879:1 3880:2 3882:1 3889:1 3895:1 3936:2 3943:5 3989:2 4022:1 4031:2 4055:2 4094:1 4100:1 4104:1 4110:1 4126:3 4147:1 4153:1 4173:3 4174:1 4208:1 4227:1 4228:2 4229:3 4259:1 4283:1 4294:1 4313:1 4340:4 4348:2 4361:1 4366:1 4389:1 4401:1 4409:1 4425:2 4432:1 4450:1 4452:1 4454:3 4456:1 4498:1 4558:3 4579:1 4598:1 4608:2 4613:2 4621:1 4651:1 4664:1 4682:1 4683:3 4684:1 4736:1 4748:1 4753:2 4776:2 4780:1 4781:1 4816:1 4817:4 4818:1 4821:1 4848:1 4862:1 4868:1 4871:1 4876:1 4885:1 4888:1 4905:1 4906:2 4919:1 4927:1 4949:2 4969:1 4977:1 4996:1 5000:1 5005:1 5026:1 5028:1 5031:1 5034:1 5039:1 5062:1 5065:3 5127:1 5132:8 5133:1 5163:1 5183:3 5245:3 5247:1 5248:4 5264:5 5265:4 5266:1 5269:1 5270:1 5271:1 5275:1 5276:5 5277:2 5284:2 5287:1 5291:3 5292:1 5293:1 5318:1 5320:1 5344:1 5350:1 5356:4 5365:1 5385:1 5436:1 5443:1 5459:1 5481:1 5508:1 5535:1 5551:1 5574:1 5639:1 5659:1 5666:1 5678:1 5686:2 5710:1 5712:1 5719:1 5732:1 5748:1 5777:1 5784:1 5794:6 5815:1 5822:1 5824:1 5827:1 5839:1 5859:1 5889:2 5890:2 5913:1 5917:1 5952:1 5954:3 5958:1 5973:1 6030:1 6036:2 6040:1 6048:1 6061:1 6064:2 6093:1 6099:1 6112:1 6151:1 6196:3 6283:1 6301:1 6309:1 6315:2 6333:2 6345:3 6346:2 6348:11 6349:1 6350:1 6355:3 6362:1 6378:2 6399:1 6408:1 6409:2 6444:1 6445:2 6446:1 6452:2 6465:1 6468:1 6473:5 6474:1 6479:1 6488:2 6508:1 6567:1 6568:1 6583:1 6588:5 6591:1 6593:1 6607:1 6608:1 6610:2 6645:1 6664:1 6670:1 6681:1 6682:1 6683:1 6692:2 6693:2 6696:4 6697:1 6704:2 6707:1 6709:3 6713:1 6715:1 6736:1 6745:1 6769:1 6795:1 6817:1 6827:1 6840:1 6850:1 6852:1 6882:2 6886:2 6915:1 6926:1 6965:1 7006:1 7013:3 7028:1 7033:1 7035:1 7045:1 7052:1 7088:1 7113:1 7120:2 7127:1 7128:2 7142:1 7151:1 7155:4 7159:1 7165:1 7181:5 7186:3 7215:1 7216:2 7221:3 7285:1 7289:1 7305:1 7312:1 7314:2 7319:2 7332:1 7346:1 7353:1 7355:1 7381:2 7382:1 7386:1 7435:1 7436:1 7450:3 7486:1 7489:1 7509:1 7533:1 7535:1 7537:11 7540:1 7562:2 7585:1 7586:1 7594:2 7640:1 7658:1 7688:1 7691:1 7781:2 7804:1 7844:1 7845:3 7855:3 7862:1 7864:2 7878:1 7880:2 7886:1 7887:2 7919:1 7929:1 7943:1 7975:1 7989:1 8012:1 8032:1 8041:1 8045:1 8090:1 8103:1 8104:8 8105:3 8128:4 8130:3 8135:1 8157:1 8160:1 8163:1 8172:24 8178:2 8188:1 8194:1 8201:20 8204:8 8213:1 8267:1 8273:1 8283:1 8284:2 8315:1 8332:1 8333:1 8340:1 8347:1 8354:1 8357:1 8370:1 8400:1 8415:3 8416:1 8442:1 8443:1 8445:1 8451:1 8455:2 8466:1 8517:1 8565:1 8575:1 8581:1 8584:1 8598:2 8604:3 8622:1 8626:1 8648:1 8661:1 8667:1 8669:1 8689:2 8698:17 8728:3 8741:3 8746:1 8786:2 8837:1 8849:2 8884:1 8892:1 8896:1 8903:1 8913:1 8918:1 8927:3 8948:2 8952:2 8954:1 8971:4 8976:4 8977:1 8979:1 8984:2 8985:2 8986:1 8991:1 9012:1 9038:1 9057:4 9058:2 9061:2 9062:1 9064:2 9071:3 9072:3 9074:1 9077:1 9086:1 9094:1 9101:1 9106:1 9115:2 9120:1 9130:1 9146:1 9148:1 9158:1 9165:2 9166:1 9177:1 9181:1 9192:1 9249:1 9259:3 9269:1 9326:2 9339:1 9345:1 9372:2 9377:2 9385:2 9405:1 9431:1 9442:2 9470:1 9539:1 9549:1 9563:1 9584:1 9588:1 9593:1 9595:1 9602:2 9606:6 9628:1 9644:1 9667:1 9686:1 9715:2 9739:1 9768:1 9779:7 9783:1 9785:1 9791:3 9798:1 9810:1 9817:1 9825:1 9855:1 9874:5 9885:1 9894:1 9902:1 9921:2 9926:1 9931:1 9943:1 9944:2 9950:1 9964:2 9982:1 9990:1 10046:1 10076:1 10091:1 10096:1 10103:1 10105:1 10112:3 10114:1 10133:1 10167:1 10172:4 10185:1 10224:1 10235:8 10236:27 10238:2 10253:2 10257:1 10260:1 10272:1 10273:1 10289:1 10293:1 10302:1 10318:1 10336:1 10358:2 10369:5 10382:1 10394:1 10396:1 10415:1 10426:1 10431:1 10439:1 10440:1 10453:1 10471:1 10543:1 10544:2 10554:1 10578:2 10594:1 10610:1 10611:4 10621:1 10635:1 10640:1 10654:3 10669:1 10687:1 10699:1 10702:1 10714:1 10727:1 10728:1 10735:1 10736:6 10739:1 10746:1 10759:1 10777:1 10796:1 10853:1 10871:1 10872:2 10901:3 10921:1 10926:1 10940:1 10943:1 10946:1 10955:1 10967:3 10971:5 11000:2 11003:1 11007:1 11030:1 11037:2 11064:1 11089:1 11091:1 11102:1 11144:1 11150:4 11158:1 11181:7 11207:2 11238:2 11256:2 11266:1 11267:1 11272:1 11275:1 11296:2 11297:2 11311:1 11333:4 11372:2 11377:9 11385:1 11388:2 11404:3 11405:2 11406:2 11454:1 11462:3 11492:1 11493:1 11497:1 11501:1 11509:2 11530:1 11536:1 11586:1 11589:1 11614:4 11620:1 11632:4 11635:1 11646:1 11651:1 11653:1 11671:1 11678:1 11686:1 11689:1 11692:1 11697:1 11733:1 11737:1 11751:2 11757:1 11759:2 11767:2 11769:1 11806:2 11830:1 11835:1 11841:2 11842:1 11852:1 11863:1 11871:1 11906:1 11914:1 11928:2 11932:1 11938:1 11940:1 11942:1 11960:1 11976:1 11989:1 12000:1 12004:1 12009:1 12021:1 12041:1 12067:1 12070:1 12072:1 12074:1 12088:1 12108:6 12119:1 12140:1 12151:1 12154:1 12155:1 12165:1 12170:2 12181:2 12184:1 12186:1 12219:1 12222:1 12235:2 12255:1 12268:1 12273:1 12289:4 12293:1 12304:2 12309:1 12322:6 12324:2 12330:2 12333:1 12344:1 12346:2 12351:1 12352:2 12359:1 12373:1 12380:1 12383:1 12388:3 12398:2 12419:1 12427:2 12439:2 12449:7 12456:1 12462:1 12464:1 12467:4 12480:1 12501:1 12517:1 12520:1 12546:1 12591:5 12595:1 12610:1 12615:1 12640:1 12659:1 12668:1 12678:1 12680:2 12685:2 12690:1 12691:1 12704:1 12715:1 12719:2 12752:1 12764:1 12771:1 12775:1 12796:1 12802:1 12828:1 12838:1 12846:1 12857:1 12873:2 12891:1 12957:2 12962:3 12999:2 13009:1 13012:1 13042:1 13048:1 13050:1 13058:1 13124:1 13135:2 13143:2 13148:1 13179:1 13189:1 13198:1 13216:1 13229:1 13235:1 13251:2 13257:1 13425:12 13434:1 13441:1 13446:2 13448:1 13463:1 13475:5 13480:1 13481:1 13482:2 13486:1 13493:1 13497:1 13531:3 13536:1 13538:1 13540:1 13543:1 13550:1 13552:1 13555:1 13558:1 13568:1 13572:1 13597:1 13614:2 13623:1 13665:1 13691:2 13707:1 13765:1 13786:1 13788:1 13819:1 13829:1 13853:1 13855:2 13869:2 13871:4 13878:2 13894:1 13906:1 13909:3 13945:3 13956:1 13962:1 13963:1 13974:4 13975:2 14005:2 14020:1 14030:1 14033:3 14040:2 14051:1 14057:2 14067:1 14069:2 14075:1 14077:2 14090:2 14103:1 14114:4 14120:1 14148:1 14167:3 14185:1 14191:1 14212:1 14222:4 14225:1 14231:1 14239:2 14242:1 14245:1 14274:1 14282:1 14288:1 14307:2 14318:1 14323:1 14325:2 14334:1 14337:1 14370:3 14372:1 14375:1 14377:1 14383:1 14392:1 14401:1 14415:1 14449:1 14460:3 14462:1 14464:3 14465:1 14468:4 14479:1 14488:1 14489:3 14498:1 14536:1 14540:2 14544:1 14551:1 14580:2 14586:1 14617:1 14618:1 14627:1 14632:1 14639:1 14641:1 14646:1 14671:1 14683:1 14691:1 14725:1 14735:1 14769:3 14774:1 14787:1 14795:1 14819:1 14832:2 14844:1 14864:2 14872:1 14893:1 14906:1 14911:1 14912:1 14919:1 14927:3 14933:1 14961:1 14969:1 15004:1 15015:1 15059:1 15067:1 15119:1 15143:1 15169:1 15171:1 15175:1 15193:2 15196:1 15202:1 15213:1 15225:2 15231:1 15244:1 15245:2 15258:1 15262:1 15275:1 15298:1 15316:1 15346:1 15354:1 15368:1 15378:1 15381:1 15384:2 15391:1 15396:1 15401:1 15407:1 15410:2 15415:2 15438:2 15453:1 15457:1 15493:2 15505:1 15510:1 15525:1 15548:1 15550:2 15553:1 15591:2 15602:1 15608:1 15624:2 15642:1 15695:1 15706:1 15711:1 15740:1 15760:1 15762:2 15764:1 15765:1 15782:1 15785:2 15798:1 15826:2 15851:1 15853:3 15861:1 15862:1 15894:1 15899:2 15916:1 15918:1 15927:2 15934:2 15960:1 15994:1 16018:1 16028:1 16064:1 16095:1 16107:1 16118:1 16134:1 16144:1 16172:1 16186:1 16262:1 16273:1 16285:2 16313:1 16355:1 16363:2 16365:1 16383:1 16387:1 16402:2 16406:1 16409:1 16411:3 16414:1 16415:1 16430:1 16431:3 16457:3 16467:2 16475:3 16487:1 16499:1 16502:1 16523:1 16555:1 16575:2 16594:1 16627:1 16634:2 16635:3 16641:5 16648:1 16649:2 16653:1 16654:1 16667:1 16669:1 16671:2 16700:1 16723:1 16733:2 16738:1 16747:1 16749:1 16799:1 16805:5 16819:3 16825:1 16829:1 16835:1 16854:1 16861:1 16889:1 16907:1 16923:2 16946:2 16949:3 16962:1 16970:1 17024:1 17025:1 17050:1 17060:4 17077:1 17083:2 17112:1 17116:2 17141:1 17147:1 17182:1 17188:2 17211:2 17212:1 17214:1 17216:1 17217:1 17220:1 17223:1 17230:1 17231:3 17232:1 17235:1 17237:1 17239:1 17242:2 17267:1 17302:1 17305:2 17307:1 17338:1 17340:1 17343:1 17348:1 17419:2 17499:1 17519:1 17520:1 17536:1 17543:1 17595:1 17629:1 17642:2 17656:1 17681:1 17686:2 17688:2 17691:1 17702:1 17709:1 17729:11 17765:1 17776:2 17803:6 17847:1 17851:2 17875:1 17898:3 17899:1 17915:1 17917:1 17926:1 17954:1 17957:1 17961:1 17980:1 18014:1 18028:3 18031:1 18044:1 18047:1 18054:4 18060:2 18076:3 18077:1 18111:1 18112:1 18125:1 18126:2 18129:4 18158:1 18167:2 18171:3 18172:1 18188:1 18202:1 18210:1 18213:1 18233:1 18239:1 18248:1 18258:1 18275:1 18284:1 18299:1 18308:1 18313:1 18326:1 18385:1 18413:1 18417:1 18429:1 18434:3 18447:1 18453:1 18471:1 18477:1 18478:1 18505:1 18535:1 18536:2 18603:1 18646:1 18682:1 18683:3 18700:1 18717:1 18740:1 18741:1 18747:1 18782:2 18785:1 18825:1 18836:1 18843:2 18873:1 18874:3 18882:3 18892:1 18894:1 18925:1 18938:1 18951:4 18957:1 18994:2 19085:1 19091:1 19093:1 19109:1 19129:2 19144:1 19160:1 19165:1 19172:4 19190:3 19191:1 19195:1 19240:1 19244:1 19298:1 19306:5 19308:1 19315:1 19390:1 19413:1 19419:6 19434:1 19437:1 19449:1 19480:1 19491:2 19492:2 19497:1 19503:2 19535:1 19542:1 19559:1 19573:1 19577:1 19594:1 19602:1 19605:2 19611:2 19620:1 19628:1 19633:1 19639:1 19644:1850 19648:1 19673:3 19678:1 19690:1 19709:1 19727:1 19805:2 19807:1 19814:1 19840:2 19845:1 19863:1 19869:1 19871:1 19878:2 19880:1 19890:1 19893:2 19895:3 19900:1 19915:1 19926:1 19962:1 19990:1 20014:1 20032:1 20072:1 20095:1 20121:1 20131:1 20138:1 20179:1 20186:1 20194:1 20200:1 20216:1 20218:1 20222:1 20239:1 20290:1 20302:1 20303:1 20370:1 20389:1 20393:1 20396:1 20412:2 20418:1 20438:2 20457:1 20460:3 20462:2 20464:2 20466:1 20476:2 20487:2 20497:1 20498:4 20502:4 20547:1 20553:1 20554:2 20576:1 20588:1 20597:1 20604:1 20609:5 20622:1 20628:1 20630:4 20643:1 20674:1 20698:1 20703:1 20708:1 20758:1 20765:1 20769:2 20778:1 20786:3 20801:1 20841:1 20853:1 20857:1 20875:6 20884:2 20903:1 20906:1 20915:1 20919:1 20933:1 20939:1 20943:1 20951:3 20955:2 20980:1 20986:2 20989:2 20993:1 20998:1 21001:1 21015:2 21034:1 21052:1 21066:1 21079:1 21105:1 21106:1 21160:2 21182:1 21184:3 21185:1 21192:1 21197:2 21211:2 21212:1 21224:1 21246:5 21254:1 21261:3 21286:1 21298:1 21302:4 21316:1 21319:1 21326:1 21336:1 21341:7 21355:1 21365:6 21393:1 21425:1 21455:1 21457:2 21462:1 21465:1 21484:2 21492:1 21507:1 21511:1 21528:1 21531:1 21545:1 21548:1 21559:1 21570:1 21627:4 21629:1 21633:2 21668:3 21683:2 21741:1 21782:1 21785:2 21787:1 21807:1 21833:1 21843:1 21855:1 21857:1 21869:1 21870:1 21879:1 21900:2 21927:1 21934:1 21944:1 21951:1 21974:2 21989:1 21990:1 21991:1 21994:1 22024:1 22027:1 22039:1 22043:3 22044:1 22046:3 22048:2 22056:9 22059:1 22077:2 22078:1 22102:1 22107:3 22113:1 22149:1 22175:1 22196:1 22197:2 22210:1 22213:1 22239:1 22255:2 22260:1 22262:1 22267:1 22283:1 22296:1 22306:1 22322:1 22327:1 22341:2 22414:1 22422:2 22426:2 22431:1 22443:1 22446:1 22462:1 22513:1 22518:1 22527:1 22552:1 22557:2 22601:1 22605:1 22610:1 22613:2 22626:1 22649:1 22659:1 22680:2 22681:1 22683:1 22689:1 22704:1 22710:1 22711:2 22736:1 22747:1 22749:1 22754:1 22764:1 22770:1 22782:3 22801:2 22809:2 22817:2 22819:1 22831:2 22832:1 22844:1 22849:2 22853:1 22855:1 22860:1 22864:1 22867:1 22885:1 22887:4 22890:1 22891:1 22892:1 22911:1 22913:2 22919:1 22935:1 22943:1 22954:1 22970:1 22988:1 23000:2 23008:1 23014:1 23039:2 23095:2 23096:1 23107:1 23109:1 23111:1 23112:1 23142:1 23145:1 23151:1 23156:2 23157:1 23158:1 23166:1 23167:2 23170:1 23178:1 23180:10 23181:3 23185:1 23186:1 23187:1 23193:3 23205:1 23214:1 23219:1 23221:1 23222:4 23238:1 23244:2 23251:1 23279:1 23282:5 23313:1 23325:1 23332:2 23338:1 23357:1 23368:1 23375:1 23386:1 23395:2 23399:2 23404:1 23408:3 23410:1 23433:1 23444:1 23460:1 23466:3 23469:2 23478:1 23483:2 23486:1 23513:1 23546:1 23563:2 23567:2 23569:3 23581:1 23594:1 23607:4 23615:1 23616:1 23625:1 23630:1 23631:1 23633:1 23641:1 23643:1 23644:5 23651:1 23671:1 23674:1 23684:4 23690:1 23700:1 23731:2 23744:3 23752:1 23765:1 23775:1 23779:10 23786:1 23796:5 23802:1 23803:1 23804:2 23807:1 23809:1 23810:4 23831:2 23850:1 23856:1 23858:1 23862:2 23871:1 23878:1 23883:1 23885:1 23893:1 23899:5 23903:1 23915:1 23979:1 23997:1 24025:1 24047:1 24053:1 24056:6 24068:1 24108:1 24142:2 24196:2 24200:1 24220:1 24224:1 24229:2 24278:1 24286:1 24308:1 24322:1 24374:3 24404:1 24417:1 24430:1 24447:1 24498:1 24500:1 24525:1 24545:1 24582:1 24601:1 24612:1 24614:3 24631:1 24633:2 24639:1 24644:1 24654:3 24662:1 24666:1 24682:1 24692:1 24703:1 24704:1 24724:1 24726:3 24733:1 24738:2 24741:1 24742:2 24751:1 24764:1 24770:1 24772:1 24786:2 24799:1 24804:1 24833:1 24835:4 24868:1 24870:1 24884:1 24886:3 24904:1 24918:2 24930:1 24964:2 24994:1 24999:1 25029:2 25035:1 25065:2 25067:1 25080:2 25089:2 25120:1 25133:1 25181:1 25185:1 25193:1 25250:2 25271:1 25310:1 25329:2 25331:1 25345:1 25348:1 25351:1 25355:1 25369:1 25388:1 25405:1 25406:1 25408:1 25445:1 25481:2 25509:1 25522:1 25538:1 25549:1 25572:1 25591:1 25603:5 25608:1 25635:6 25652:2 25664:1 25680:1 25682:1 25684:1 25685:1 25712:4 25724:2 25729:1 25739:1 25775:1 25786:1 25799:11 25850:4 25916:2 25918:1 25921:1 25930:1 25932:1 25935:2 25940:2 25943:1 25949:1 25963:1 25970:1 25972:1 25989:4 25996:1 25997:1 26012:1 26015:1 26049:3 26051:1 26055:1 26058:1 26064:1 26080:3 26083:1 26090:1 26094:2 26099:1 26104:1 26110:1 26120:3 26122:1 26157:1 26165:1 26178:1 26207:1 26215:1 26254:2 26269:1 26278:1 26289:1 26301:1 26308:1 26313:2 26314:1 26318:1 26327:1 26381:2 26397:3 26413:1 26430:1 26439:1 26449:1 26453:2 26456:4 26504:6 26505:2 26548:1 26566:1 26591:2 26599:1 26607:1 26626:1 26639:1 26647:1 26689:1 26703:7 26729:4 26752:1 26762:1 26763:1 26769:1 26795:1 26833:1 26848:1 26855:2 26857:3 26883:1 26889:1 26904:2 26913:2 26929:1 26930:1 26938:2 26956:3 26959:3 26964:2 26980:1 26992:1 27001:5 27020:1 27023:1 27039:3 27040:1 27062:1 27089:1 27152:1 27157:3 27162:2 27201:1 27207:2 27243:2 27262:1 27269:2 27279:1 27280:1 27282:3 27306:1 27324:1 27347:1 27350:1 27383:1 27406:1 27422:1 27449:1 27482:1 27491:1 27498:3 27537:1 27580:1 27584:1 27603:1 27614:1 27619:1 27624:1 27627:1 27631:1 27648:2 27653:1 27661:1 27710:2 27732:1 27748:1 27755:1 27760:1 27783:1 27797:6 27798:1 27808:1 27818:1 27854:1 27858:2 27881:1 27892:2 27896:2 27901:1 27909:1 27916:1 27917:3 27927:1 28004:1 28037:1 28049:1 28069:1 28079:1 28096:1 28100:1 28102:1 28103:3 28138:1 28139:1 28146:1 28152:1 28157:1 28165:4 28173:1 28176:1 28177:3 28205:1 28207:1 28225:2 28241:1 28280:1 28290:2 28305:1 28327:1 28338:1 28342:2 28360:1 28379:4 28397:1 28435:1 28482:1 28483:1 28486:1 28496:2 28527:1 28561:2 28576:3 28597:1 28614:1 28646:1 28684:1 28690:1 28710:1 28726:2 28727:1 28736:1 28738:1 28780:1 28782:1 28818:1 28822:1 28836:1 28843:3 28924:1 28948:3 29010:1 29014:1 29015:1 29020:1 29025:1 29032:1 29052:1 29054:1 29063:1 29078:1 29081:1 29088:1 29092:1 29093:1 29098:1 29109:1 29111:2 29119:1 29122:1 29128:1 29130:1 29133:1 29134:1 29137:2 29144:2 29152:1 29154:1 29158:1 29160:1 29188:1 29196:1 29197:2 29215:1 29224:7 29225:1 29227:1 29228:1 29235:1 29238:1 29239:1 29249:2 29253:1 29259:1 29282:1 29284:1 29295:1 29304:1 29334:1 29336:1 29340:1 29344:1 29354:1 29360:1 29363:2 29386:1 29397:1 29415:1 29444:1 29447:2 29450:3 29469:1 29534:1 29539:1 29576:1 29579:1 29590:1 29593:2 29596:1 29610:1 29633:1 29661:1 29679:1 29689:1 29702:1 29723:3 29729:1 29760:2 29778:1 29779:2 29781:2 29787:2 29788:1 29789:1 29790:1 29804:1 29825:2 29826:1 29837:1 29851:1 29860:1 29887:26 29888:3 29893:4 29896:1 29910:2 29918:1 29933:1 29938:7 29946:4 30001:1 30008:1 30039:3 30052:1 30062:1 30069:2 30078:4 30112:8 30118:1 30124:2 30130:1 30149:1 30159:1 30165:1 30194:1 30197:1 30199:3 30207:1 30217:1 30243:1 30281:1 30289:2 30329:1 30331:1 30350:1 30358:2 30361:1 30377:1 30382:1 30388:1 30436:6 30438:1 30457:1 30465:1 30476:1 30510:2 30513:7 30523:1 30534:3 30537:1 30538:1 30541:1 30556:1 30660:1 30675:1 30678:1 30692:4 30693:3 30694:3 30697:1 30720:2 30741:1 30754:1 30801:1 30842:1 30844:2 30846:1 30848:1 30858:1 30864:2 30869:3 30874:1 30884:7 30907:2 30909:2 30925:1 30940:1 30953:1 30956:1 30981:1 30986:3 31003:2 31035:1 31048:2 31055:1 31066:1 31089:1 31093:3 31100:1 31118:1 31142:1 31154:1 31195:1 31205:1 31208:1 31212:2 31216:1 31222:1 31223:1 31231:1 31238:2 31243:2 31246:1 31248:1 31250:1 31251:1 31260:1 31287:1 31299:1 31313:1 31373:1 31385:1 19 1:1 26:1 27:1 30:1 52:1 56:1 57:1 91:1 108:1 153:1 154:1 170:3 191:1 195:1 206:4 208:1 232:1 234:1 242:1 246:1 276:2 308:3 338:1 354:1 359:1 367:1 387:1 417:1 428:5 462:3 466:1 482:1 486:1 561:1 569:1 604:1 615:1 616:1 622:1 643:9 649:1 661:1 671:2 697:1 764:1 778:1 837:1 843:1 852:1 870:2 879:1 890:1 899:1 907:3 926:2 928:1 932:1 933:3 937:4 938:3 948:2 949:1 951:1 967:1 969:1 985:1 987:1 993:1 994:3 998:6 1009:1 1021:2 1022:1 1037:3 1038:1 1042:3 1055:1 1080:5 1083:1 1137:1 1195:1 1213:1 1240:1 1249:1 1262:1 1277:1 1285:1 1300:1 1322:1 1335:1 1336:2 1337:1 1348:2 1350:1 1360:1 1366:1 1380:1 1389:1 1390:1 1395:1 1396:1 1411:1 1437:1 1458:1 1507:1 1527:1 1533:1 1543:1 1559:1 1582:1 1584:1 1586:3 1592:2 1596:1 1600:3 1607:2 1669:2 1670:1 1675:4 1690:2 1699:1 1704:1 1712:1 1757:1 1766:1 1795:6 1815:2 1828:1 1842:1 1846:2 1855:1 1887:1 1899:1 1906:1 1909:1 1911:1 1922:1 1923:2 1928:2 1940:1 1948:1 1950:2 1956:1 1978:1 1979:1 2013:1 2018:1 2026:1 2027:1 2040:2 2087:1 2105:1 2113:1 2118:1 2133:2 2165:1 2190:1 2196:2 2198:2 2200:1 2203:1 2205:2 2206:2 2208:1 2214:1 2216:3 2223:1 2227:1 2251:1 2266:1 2267:5 2273:3 2297:1 2306:1 2321:1 2337:1 2345:2 2352:1 2369:1 2375:1 2384:3 2388:2 2391:2 2393:2 2395:1 2396:2 2401:1 2402:3 2404:1 2409:1 2410:2 2414:1 2415:1 2422:3 2425:3 2434:1 2501:2 2505:1 2510:2 2512:2 2521:1 2528:4 2536:1 2548:1 2549:1 2584:2 2590:1 2592:4 2616:1 2626:1 2647:1 2653:1 2655:4 2669:1 2689:1 2690:1 2759:1 2760:1 2779:2 2784:1 2789:1 2790:1 2797:1 2811:2 2832:7 2838:2 2843:1 2859:1 2890:3 2905:1 2909:2 2943:1 2962:4 2985:3 2989:1 3005:1 3014:20 3023:13 3040:1 3058:1 3065:7 3074:1 3083:2 3090:1 3098:1 3102:5 3124:1 3148:1 3171:1 3184:1 3194:1 3260:1 3265:1 3294:1 3296:1 3307:1 3336:1 3351:1 3365:1 3410:2 3423:2 3439:1 3450:1 3460:1 3463:2 3477:1 3488:1 3489:4 3534:1 3542:1 3548:2 3567:1 3570:1 3573:1 3629:1 3649:1 3652:4 3653:1 3654:1 3666:1 3669:1 3700:2 3713:1 3732:1 3742:1 3752:1 3779:2 3781:1 3788:1 3793:1 3794:1 3797:1 3798:1 3800:1 3802:1 3813:1 3823:1 3824:2 3844:1 3879:1 3880:2 3882:1 3889:1 3895:1 3936:2 3943:5 3979:1 3989:2 4022:1 4031:2 4055:2 4080:1 4094:1 4100:1 4104:1 4110:1 4126:3 4147:1 4153:1 4173:3 4174:1 4208:1 4227:1 4228:2 4229:3 4259:1 4283:1 4294:1 4313:1 4340:5 4348:2 4361:1 4366:1 4389:1 4401:1 4409:1 4425:2 4432:1 4450:1 4452:1 4454:3 4456:1 4498:1 4558:3 4579:1 4598:1 4608:2 4613:2 4621:1 4651:1 4664:1 4682:1 4683:3 4684:1 4698:1 4736:1 4748:1 4753:2 4776:2 4780:1 4781:1 4816:1 4817:4 4818:1 4821:1 4848:1 4862:1 4868:1 4871:1 4876:1 4885:1 4888:1 4905:1 4906:2 4919:1 4927:1 4949:2 4969:1 4977:1 4996:1 5000:1 5005:1 5026:1 5028:1 5031:1 5034:1 5039:1 5062:1 5065:3 5127:1 5132:9 5133:1 5163:1 5183:3 5245:3 5247:1 5248:4 5264:5 5265:4 5266:1 5269:1 5270:1 5271:1 5275:1 5276:5 5277:2 5284:2 5287:1 5291:3 5292:1 5293:1 5318:1 5320:1 5344:1 5350:1 5356:4 5365:1 5385:1 5436:1 5443:1 5459:1 5481:1 5508:1 5535:1 5551:1 5574:1 5639:1 5659:1 5666:1 5678:1 5686:2 5710:1 5712:1 5719:1 5732:1 5748:1 5777:1 5784:1 5794:7 5815:1 5822:1 5824:1 5827:1 5839:1 5859:1 5889:2 5890:2 5913:1 5917:1 5952:1 5954:4 5958:1 5973:1 5989:1 6030:1 6036:2 6040:1 6048:1 6061:1 6064:2 6093:1 6099:1 6112:1 6151:1 6196:4 6283:1 6301:1 6309:1 6315:2 6333:2 6345:3 6346:2 6348:13 6349:1 6350:1 6355:3 6362:1 6378:2 6399:1 6408:1 6409:2 6444:1 6445:2 6446:1 6452:2 6465:1 6468:1 6473:5 6474:1 6479:1 6488:2 6508:1 6567:1 6568:2 6583:1 6588:6 6591:1 6593:1 6607:1 6608:1 6610:2 6645:1 6664:1 6670:1 6681:1 6682:1 6683:1 6690:1 6692:2 6693:2 6696:4 6697:1 6704:2 6707:1 6709:3 6713:1 6715:1 6736:1 6745:1 6769:1 6795:1 6817:1 6827:1 6840:1 6850:1 6852:1 6882:2 6886:2 6915:1 6926:1 6965:1 7006:1 7013:3 7028:1 7033:1 7035:1 7045:1 7052:1 7088:1 7113:1 7120:2 7127:1 7128:2 7142:1 7151:1 7155:4 7159:1 7165:1 7181:5 7186:3 7215:1 7216:2 7221:3 7285:1 7289:1 7305:1 7312:1 7314:3 7319:2 7332:1 7346:1 7353:1 7355:1 7381:2 7382:1 7386:1 7435:1 7436:1 7450:3 7486:1 7489:1 7509:1 7533:1 7535:1 7537:12 7540:1 7562:2 7585:1 7586:1 7594:2 7640:1 7658:1 7688:1 7691:1 7746:1 7781:2 7804:1 7844:1 7845:3 7855:3 7862:1 7864:2 7878:1 7880:2 7886:1 7887:2 7919:1 7929:1 7943:1 7975:1 7989:1 8012:1 8032:1 8041:1 8045:1 8090:1 8103:1 8104:8 8105:3 8128:4 8130:3 8135:1 8157:1 8160:1 8163:1 8172:25 8178:2 8188:1 8194:1 8201:21 8204:8 8213:1 8267:1 8273:1 8283:1 8284:2 8315:1 8332:1 8333:1 8340:1 8347:1 8354:1 8357:1 8370:1 8400:1 8415:4 8416:1 8442:1 8443:1 8445:1 8451:1 8455:2 8466:1 8517:1 8548:1 8565:1 8575:1 8581:1 8584:1 8598:2 8604:3 8622:1 8626:1 8648:1 8661:1 8667:1 8669:1 8689:2 8698:18 8728:3 8741:3 8746:1 8786:2 8837:1 8849:2 8884:1 8892:1 8896:1 8903:1 8913:1 8918:1 8927:3 8948:2 8952:2 8954:1 8971:4 8976:4 8977:1 8979:1 8984:2 8985:2 8986:1 8991:1 9012:1 9038:1 9057:5 9058:2 9061:2 9062:1 9064:2 9071:3 9072:3 9074:1 9077:1 9086:1 9094:1 9101:1 9106:1 9114:1 9115:2 9120:1 9130:1 9146:1 9148:1 9158:1 9165:2 9166:1 9177:1 9181:1 9192:1 9249:1 9259:3 9269:1 9326:2 9339:1 9345:1 9372:2 9377:2 9385:2 9405:1 9431:1 9442:2 9470:1 9539:1 9549:1 9563:1 9584:1 9588:1 9593:1 9595:1 9602:2 9606:6 9628:1 9644:1 9667:1 9686:1 9715:2 9739:1 9768:1 9779:7 9783:1 9785:1 9791:3 9798:1 9810:1 9817:1 9825:1 9855:1 9874:5 9885:1 9894:1 9902:1 9921:2 9926:1 9931:1 9943:1 9944:2 9950:1 9964:2 9982:1 9990:1 10046:1 10076:1 10091:1 10096:1 10103:1 10105:1 10112:3 10114:1 10133:1 10167:1 10172:4 10185:1 10224:1 10235:8 10236:28 10238:2 10253:2 10257:1 10260:1 10272:1 10273:1 10289:1 10293:1 10302:1 10318:1 10336:1 10358:2 10369:5 10382:1 10394:1 10396:1 10415:1 10426:1 10431:1 10439:1 10440:1 10453:1 10471:1 10543:1 10544:2 10545:1 10554:1 10578:3 10594:1 10610:1 10611:4 10621:1 10635:1 10640:1 10654:3 10669:1 10687:1 10699:1 10702:1 10714:1 10727:1 10728:1 10735:1 10736:6 10739:1 10746:1 10759:1 10777:1 10796:1 10853:1 10871:1 10872:2 10901:3 10921:1 10926:1 10927:1 10940:1 10943:1 10946:1 10955:1 10967:3 10971:5 11000:2 11003:1 11007:1 11030:1 11037:2 11064:1 11089:1 11091:1 11102:1 11144:1 11150:4 11158:1 11181:7 11207:2 11238:2 11256:2 11266:1 11267:1 11272:1 11275:1 11296:2 11297:2 11311:1 11333:4 11372:2 11377:9 11385:1 11388:2 11404:3 11405:2 11406:2 11454:1 11462:3 11492:1 11493:1 11497:1 11501:1 11509:2 11530:1 11536:1 11586:1 11589:1 11614:4 11620:1 11632:4 11635:1 11646:1 11651:1 11653:1 11671:1 11678:1 11686:1 11689:1 11692:1 11697:1 11733:1 11737:1 11751:3 11757:1 11759:2 11767:2 11769:1 11806:2 11830:1 11835:1 11841:2 11842:1 11852:1 11863:1 11871:1 11906:1 11914:1 11928:2 11932:1 11938:1 11940:1 11942:1 11960:1 11976:1 11989:1 12000:1 12004:1 12009:1 12021:1 12041:1 12067:1 12070:1 12072:1 12074:1 12088:1 12108:6 12119:1 12140:1 12151:1 12154:1 12155:1 12165:1 12170:2 12181:2 12184:1 12186:1 12219:1 12222:1 12235:2 12255:1 12263:1 12268:1 12273:1 12289:4 12293:1 12304:2 12309:1 12322:6 12324:2 12330:2 12333:1 12344:1 12346:2 12351:1 12352:2 12359:1 12373:1 12380:1 12383:1 12388:4 12398:3 12419:1 12427:2 12439:2 12449:7 12456:1 12462:1 12464:1 12467:4 12480:1 12501:1 12517:1 12520:1 12546:1 12591:5 12595:1 12610:1 12615:1 12640:1 12659:1 12668:1 12678:1 12680:2 12685:2 12690:1 12691:1 12704:1 12715:1 12719:2 12752:1 12764:1 12771:1 12775:1 12796:1 12802:1 12828:1 12838:1 12846:1 12857:1 12873:2 12891:1 12957:2 12962:3 12999:2 13009:1 13012:1 13042:1 13048:1 13050:1 13058:1 13124:1 13135:2 13143:2 13148:1 13179:1 13189:1 13198:1 13216:1 13229:1 13235:1 13251:3 13257:1 13425:12 13434:1 13441:1 13446:2 13448:1 13463:1 13474:1 13475:5 13480:1 13481:1 13482:2 13486:1 13493:1 13497:1 13531:3 13536:1 13538:1 13540:1 13543:1 13550:1 13552:1 13555:1 13558:1 13568:1 13572:1 13597:1 13614:2 13623:1 13665:1 13691:2 13707:1 13765:1 13786:1 13788:1 13819:1 13829:1 13853:1 13855:2 13869:2 13871:4 13878:2 13894:1 13906:1 13909:3 13945:3 13956:1 13962:1 13963:1 13974:5 13975:3 14005:2 14020:1 14030:1 14033:3 14040:2 14051:1 14057:2 14067:1 14069:2 14075:1 14077:2 14090:2 14103:1 14114:4 14120:1 14148:1 14167:3 14185:1 14191:1 14212:1 14222:4 14225:1 14231:1 14239:2 14242:1 14245:1 14274:1 14282:1 14288:1 14307:2 14318:1 14323:1 14325:2 14334:1 14337:1 14370:3 14372:1 14375:1 14377:1 14383:1 14392:1 14401:1 14415:1 14449:1 14460:3 14462:1 14464:3 14465:1 14468:4 14479:1 14488:1 14489:3 14498:1 14536:1 14540:2 14544:1 14551:1 14580:2 14586:1 14617:1 14618:1 14627:1 14632:1 14639:1 14641:1 14646:1 14671:1 14683:1 14691:1 14725:1 14735:1 14769:3 14774:1 14787:1 14795:1 14819:1 14832:2 14844:1 14848:1 14864:2 14872:1 14893:1 14906:1 14911:1 14912:1 14919:1 14927:3 14933:1 14945:1 14961:1 14969:1 14983:1 15004:1 15015:1 15059:1 15067:1 15119:1 15143:1 15169:1 15171:1 15175:1 15193:2 15196:1 15202:1 15213:1 15225:2 15231:1 15244:1 15245:2 15258:1 15262:1 15275:1 15298:1 15316:1 15346:1 15354:1 15368:1 15378:1 15381:1 15384:2 15391:1 15396:1 15401:1 15407:1 15410:2 15415:2 15438:2 15453:1 15457:1 15493:2 15505:1 15510:1 15525:1 15548:1 15550:2 15553:1 15591:2 15602:1 15608:1 15624:2 15642:1 15695:1 15706:1 15711:1 15740:1 15760:2 15762:2 15764:1 15765:1 15782:1 15785:2 15798:1 15826:2 15851:1 15853:3 15861:1 15862:1 15894:1 15899:2 15916:1 15918:1 15927:2 15934:2 15960:1 15994:1 16018:1 16028:1 16064:1 16095:1 16107:1 16118:2 16134:1 16144:1 16172:1 16186:1 16261:1 16262:1 16273:1 16285:2 16313:1 16355:1 16363:2 16365:1 16383:1 16387:1 16402:2 16406:1 16409:1 16411:3 16414:1 16415:1 16430:1 16431:3 16457:3 16467:2 16475:3 16487:1 16499:1 16502:1 16523:1 16555:1 16575:2 16594:1 16627:1 16634:2 16635:3 16641:5 16648:1 16649:2 16653:1 16654:1 16667:1 16669:1 16671:2 16700:1 16723:1 16733:3 16738:1 16747:1 16749:1 16799:1 16805:5 16819:3 16825:1 16829:1 16835:1 16854:1 16861:1 16889:1 16907:1 16923:2 16946:2 16949:3 16962:1 16970:1 17024:1 17025:1 17050:1 17060:4 17077:2 17083:2 17112:1 17116:2 17141:1 17147:1 17182:1 17188:2 17211:2 17212:1 17214:1 17216:1 17217:1 17220:1 17223:1 17230:1 17231:3 17232:1 17235:1 17237:1 17239:1 17242:2 17251:1 17267:1 17302:1 17305:2 17307:1 17338:1 17340:1 17343:1 17348:1 17419:2 17499:1 17519:1 17520:1 17536:1 17543:1 17595:1 17629:1 17642:2 17656:1 17681:1 17686:2 17688:2 17691:1 17702:1 17709:1 17729:11 17765:1 17776:2 17803:6 17807:1 17847:1 17851:2 17875:1 17898:3 17899:1 17915:1 17917:1 17926:1 17954:1 17957:1 17961:1 17980:1 18014:1 18028:3 18031:1 18044:1 18047:1 18054:4 18060:2 18076:3 18077:1 18111:1 18112:1 18125:1 18126:2 18129:4 18158:1 18167:2 18171:3 18172:1 18188:1 18202:1 18210:1 18213:1 18233:1 18239:1 18248:1 18258:1 18275:1 18284:1 18299:1 18308:1 18313:1 18326:1 18385:1 18413:1 18417:1 18429:1 18434:3 18447:1 18453:1 18471:1 18477:1 18478:1 18505:1 18535:1 18536:2 18603:1 18646:1 18682:1 18683:3 18700:1 18717:1 18740:1 18741:1 18747:1 18782:2 18785:1 18825:1 18836:1 18843:2 18873:1 18874:3 18882:3 18892:1 18894:1 18925:1 18938:1 18951:4 18957:1 18994:2 19085:1 19091:1 19093:1 19109:1 19129:2 19144:1 19160:1 19165:1 19172:4 19190:3 19191:1 19195:1 19240:1 19244:1 19298:1 19306:5 19308:1 19315:1 19390:1 19413:1 19419:6 19434:1 19437:1 19449:1 19480:1 19491:2 19492:2 19497:1 19503:2 19535:1 19542:1 19559:1 19573:1 19577:1 19594:1 19602:1 19605:2 19611:2 19620:1 19628:1 19633:1 19639:1 19644:1911 19648:1 19673:3 19678:1 19690:1 19709:1 19727:1 19805:2 19807:1 19814:1 19840:2 19845:1 19863:1 19869:1 19871:1 19878:2 19880:1 19890:1 19893:2 19895:3 19900:1 19915:1 19926:1 19962:1 19990:1 20014:1 20032:1 20072:1 20095:1 20121:1 20131:1 20138:1 20179:1 20186:1 20194:2 20200:1 20216:1 20218:1 20222:1 20239:1 20290:1 20302:1 20303:1 20370:1 20389:1 20393:1 20396:1 20412:2 20418:1 20438:3 20457:1 20460:3 20462:2 20464:2 20466:1 20476:2 20487:2 20497:1 20498:4 20502:4 20547:1 20553:1 20554:2 20576:1 20588:1 20597:1 20604:1 20609:5 20622:1 20628:1 20630:4 20643:1 20674:1 20698:1 20703:1 20708:1 20758:1 20765:1 20769:2 20778:1 20786:3 20801:1 20841:1 20853:1 20857:1 20875:6 20884:2 20903:1 20906:1 20915:1 20919:1 20933:1 20939:1 20943:1 20951:3 20955:2 20980:1 20986:2 20989:2 20993:1 20998:1 21001:1 21015:2 21034:1 21052:1 21066:1 21079:1 21105:1 21106:1 21160:2 21182:1 21184:3 21185:1 21192:1 21197:2 21211:2 21212:1 21224:1 21246:5 21254:1 21261:3 21286:1 21298:1 21302:4 21316:1 21318:1 21319:1 21326:1 21336:1 21341:7 21355:1 21365:6 21393:1 21425:1 21455:1 21457:2 21462:1 21465:1 21484:2 21492:1 21507:1 21511:1 21528:1 21531:1 21543:1 21545:1 21548:1 21559:1 21570:1 21627:4 21629:1 21633:2 21668:3 21683:2 21741:1 21782:1 21785:2 21787:1 21807:1 21833:1 21843:1 21855:1 21857:1 21869:1 21870:1 21879:1 21900:2 21927:1 21934:1 21944:1 21951:1 21974:2 21989:1 21990:1 21991:1 21994:1 22024:1 22027:1 22039:1 22043:4 22044:1 22046:3 22048:2 22056:9 22059:1 22077:2 22078:1 22102:1 22107:3 22113:1 22149:1 22175:1 22190:1 22196:1 22197:2 22210:1 22213:1 22239:1 22255:2 22260:1 22262:1 22267:1 22283:1 22296:1 22306:1 22322:1 22327:1 22341:2 22414:1 22422:2 22426:2 22431:1 22443:1 22446:1 22462:1 22513:1 22518:1 22527:1 22552:1 22557:2 22582:1 22601:1 22605:1 22610:1 22613:2 22626:1 22649:1 22659:1 22680:2 22681:1 22683:1 22689:1 22704:1 22710:1 22711:2 22736:1 22747:1 22749:1 22754:1 22764:1 22770:1 22782:3 22801:2 22809:2 22817:2 22819:1 22823:1 22831:2 22832:1 22844:1 22849:2 22853:1 22855:1 22860:1 22864:1 22867:1 22885:1 22887:4 22890:1 22891:1 22892:1 22911:1 22913:2 22919:1 22935:1 22943:1 22954:1 22970:1 22988:1 23000:2 23008:1 23014:1 23039:2 23095:2 23096:1 23107:1 23109:1 23111:1 23112:1 23142:1 23145:1 23151:1 23156:3 23157:1 23158:1 23166:1 23167:2 23170:1 23178:1 23180:10 23181:3 23185:1 23186:1 23187:1 23193:3 23205:1 23214:1 23219:1 23221:1 23222:4 23238:1 23244:2 23251:1 23279:1 23282:5 23313:1 23325:1 23332:2 23338:1 23357:1 23368:1 23375:1 23386:1 23395:2 23399:2 23404:1 23408:3 23410:1 23433:1 23444:1 23460:1 23466:3 23469:2 23478:1 23483:2 23486:1 23513:1 23546:1 23563:2 23567:2 23569:3 23581:1 23594:1 23607:4 23615:1 23616:1 23625:1 23630:1 23631:1 23633:1 23641:1 23643:1 23644:6 23650:1 23651:1 23671:1 23674:1 23684:4 23690:1 23700:1 23731:2 23744:3 23752:1 23765:1 23775:1 23779:10 23786:1 23796:5 23802:1 23803:1 23804:2 23807:1 23809:1 23810:4 23831:2 23850:1 23856:1 23858:1 23862:2 23871:1 23878:1 23883:1 23885:1 23893:1 23899:5 23903:1 23915:1 23979:1 23997:1 24025:1 24047:1 24053:1 24056:6 24068:1 24108:1 24142:2 24196:2 24200:1 24220:1 24224:1 24229:2 24278:1 24286:1 24308:1 24322:1 24374:3 24404:1 24409:1 24417:1 24430:1 24447:1 24498:1 24500:1 24525:1 24545:1 24582:1 24601:1 24612:1 24614:3 24631:1 24633:2 24639:1 24644:1 24654:3 24662:1 24666:1 24682:1 24692:1 24703:1 24704:1 24724:1 24726:3 24733:1 24738:2 24741:1 24742:2 24751:1 24764:1 24770:1 24772:1 24786:2 24799:1 24804:1 24833:1 24835:4 24845:1 24868:1 24870:1 24884:1 24886:3 24904:1 24918:2 24930:1 24964:2 24994:1 24999:1 25029:2 25035:1 25065:2 25067:1 25080:2 25089:2 25120:1 25133:1 25181:1 25185:1 25193:1 25231:1 25250:2 25271:1 25310:1 25329:2 25331:1 25345:1 25348:1 25351:1 25355:1 25369:1 25388:1 25405:1 25406:1 25408:1 25445:1 25481:2 25509:1 25522:1 25536:1 25538:1 25549:1 25572:1 25591:1 25603:5 25608:1 25625:1 25635:6 25652:2 25664:1 25680:1 25682:1 25684:1 25685:1 25712:4 25724:2 25729:1 25739:1 25775:1 25786:1 25799:11 25850:4 25916:2 25918:1 25921:1 25930:1 25932:1 25935:2 25940:2 25943:1 25949:1 25963:1 25970:1 25972:1 25989:4 25994:1 25996:1 25997:1 26012:1 26015:1 26049:3 26051:1 26055:1 26058:1 26064:1 26080:3 26083:1 26090:1 26094:2 26099:1 26104:1 26110:1 26120:3 26122:1 26157:1 26165:1 26178:1 26207:1 26215:1 26254:2 26269:1 26278:1 26289:1 26301:1 26308:1 26313:2 26314:2 26318:1 26327:1 26381:2 26397:3 26413:1 26430:1 26439:1 26449:1 26453:2 26456:4 26504:6 26505:2 26548:1 26566:1 26591:2 26599:1 26607:1 26626:1 26639:1 26647:1 26689:1 26703:7 26729:4 26752:1 26762:1 26763:1 26769:1 26795:1 26828:1 26833:1 26848:1 26855:2 26857:3 26883:1 26889:1 26904:2 26913:2 26929:1 26930:1 26938:2 26956:3 26959:3 26964:2 26980:1 26992:1 27001:6 27020:1 27023:1 27039:3 27040:1 27062:1 27089:1 27152:1 27157:3 27162:2 27201:1 27207:2 27243:2 27262:1 27269:2 27279:1 27280:1 27282:3 27306:1 27324:1 27347:1 27350:1 27383:1 27406:1 27422:1 27449:1 27482:1 27491:1 27498:3 27537:1 27580:1 27584:1 27603:1 27614:1 27619:1 27624:1 27627:1 27631:1 27648:2 27653:1 27661:1 27710:2 27732:1 27748:1 27755:1 27760:1 27783:1 27797:6 27798:1 27808:1 27818:1 27854:1 27858:2 27881:1 27892:2 27896:2 27901:1 27909:1 27916:1 27917:3 27927:1 28004:1 28037:1 28049:1 28069:1 28079:1 28096:1 28100:1 28102:1 28103:3 28138:1 28139:1 28146:1 28152:1 28157:1 28165:4 28173:1 28176:1 28177:3 28205:1 28207:1 28225:2 28241:1 28280:1 28290:2 28305:1 28327:1 28338:1 28342:3 28360:1 28379:4 28397:1 28435:1 28482:1 28483:1 28486:1 28496:2 28527:1 28561:2 28576:3 28597:1 28614:1 28646:1 28684:1 28690:1 28710:1 28726:2 28727:1 28736:1 28738:1 28780:1 28782:1 28818:1 28822:1 28825:1 28836:1 28843:3 28924:1 28948:3 28964:1 29010:1 29014:1 29015:1 29020:1 29025:1 29032:1 29052:1 29054:1 29063:1 29078:1 29081:1 29088:1 29092:1 29093:1 29098:1 29109:1 29111:2 29119:1 29122:1 29128:1 29130:1 29133:1 29134:1 29137:2 29144:2 29152:1 29154:1 29158:1 29160:1 29188:1 29196:1 29197:2 29215:1 29224:7 29225:1 29227:1 29228:1 29235:1 29238:1 29239:1 29249:2 29253:1 29259:1 29282:1 29284:1 29295:1 29304:1 29334:1 29336:1 29340:1 29344:1 29354:1 29360:1 29363:2 29386:1 29397:1 29415:1 29444:1 29447:2 29450:3 29469:1 29534:1 29539:1 29576:1 29579:1 29590:1 29593:2 29596:1 29610:1 29633:1 29661:1 29679:1 29689:1 29702:1 29723:3 29729:1 29735:1 29760:2 29778:1 29779:2 29781:2 29787:2 29788:1 29789:1 29790:1 29804:1 29818:1 29825:2 29826:1 29837:1 29851:1 29860:1 29887:27 29888:4 29893:4 29896:1 29910:2 29918:1 29933:1 29938:7 29946:4 30001:1 30008:1 30039:3 30052:1 30062:1 30069:2 30078:4 30112:8 30118:1 30124:2 30130:1 30149:1 30159:1 30165:1 30194:1 30197:1 30199:3 30207:1 30217:1 30243:1 30281:1 30289:2 30329:1 30331:1 30345:1 30350:1 30358:2 30361:2 30377:1 30382:1 30388:1 30436:6 30438:1 30457:1 30465:1 30476:1 30510:2 30513:7 30523:1 30534:3 30537:1 30538:1 30541:1 30556:1 30660:1 30675:1 30678:1 30692:4 30693:3 30694:3 30697:1 30720:2 30741:1 30754:1 30801:1 30842:1 30844:2 30846:1 30848:1 30858:1 30864:2 30869:3 30874:1 30884:7 30907:3 30909:2 30925:1 30940:1 30953:1 30956:1 30981:1 30986:3 31003:2 31035:1 31048:2 31055:1 31066:1 31089:1 31093:3 31100:1 31118:1 31142:2 31153:1 31154:1 31195:1 31205:1 31208:1 31212:2 31216:1 31222:1 31223:1 31231:1 31235:1 31238:2 31243:2 31246:1 31248:1 31250:1 31251:1 31260:1 31287:1 31299:1 31313:1 31373:1 31385:1 19 1:1 26:1 27:1 30:1 52:1 56:1 57:1 63:1 91:1 108:1 153:1 154:1 170:3 191:1 195:1 206:4 208:1 232:1 234:1 242:1 246:1 276:2 305:1 308:4 338:1 354:1 359:1 367:1 387:1 417:1 424:1 428:5 462:3 466:1 482:1 486:1 561:1 569:1 579:2 604:1 615:1 616:1 622:1 643:11 649:1 661:1 671:2 697:1 764:1 778:1 837:1 843:1 852:1 870:2 879:1 890:1 899:1 907:3 926:2 928:1 932:1 933:3 937:4 938:3 948:2 949:1 951:1 966:1 967:1 969:1 985:1 987:1 988:1 993:1 994:4 998:6 1009:1 1021:2 1022:1 1037:3 1038:1 1042:3 1055:1 1080:5 1083:1 1137:1 1195:1 1213:1 1240:1 1249:3 1262:1 1277:1 1285:1 1300:1 1322:1 1335:1 1336:3 1337:1 1348:2 1350:1 1360:1 1366:1 1380:1 1389:1 1390:1 1395:1 1396:1 1411:1 1437:1 1458:1 1507:1 1527:1 1533:1 1543:1 1559:1 1582:1 1584:1 1586:3 1589:1 1592:3 1596:1 1600:3 1607:2 1669:2 1670:1 1675:4 1690:2 1699:1 1704:1 1712:1 1721:1 1757:1 1766:1 1795:6 1815:2 1828:1 1842:1 1846:2 1852:1 1855:1 1887:1 1899:1 1906:1 1909:1 1911:2 1922:1 1923:2 1928:2 1940:1 1948:1 1950:2 1956:1 1978:1 1979:1 2013:1 2018:1 2026:1 2027:1 2040:2 2087:1 2098:1 2100:1 2105:1 2113:1 2118:1 2133:2 2165:1 2190:1 2196:2 2198:2 2200:1 2203:1 2205:2 2206:2 2208:1 2214:1 2216:3 2223:1 2227:1 2251:1 2266:1 2267:5 2273:3 2297:1 2306:1 2321:1 2337:2 2345:2 2352:1 2369:1 2375:2 2384:3 2388:2 2391:2 2393:2 2395:1 2396:2 2401:1 2402:3 2404:1 2409:1 2410:2 2414:1 2415:1 2422:3 2425:3 2434:1 2501:2 2505:1 2510:2 2512:2 2521:1 2528:4 2536:1 2548:1 2549:1 2584:2 2590:1 2592:4 2616:1 2626:1 2647:1 2653:1 2655:4 2669:1 2689:1 2690:1 2759:1 2760:1 2779:2 2784:1 2789:1 2790:1 2797:1 2811:2 2832:7 2838:2 2843:1 2859:1 2890:3 2905:1 2909:2 2943:1 2962:4 2985:3 2989:1 3005:1 3014:20 3023:14 3040:1 3058:1 3065:7 3074:1 3083:2 3090:1 3098:1 3102:5 3124:1 3148:1 3171:1 3184:1 3194:1 3212:1 3260:1 3265:1 3294:1 3296:1 3297:1 3307:1 3336:1 3351:1 3365:1 3410:2 3423:2 3439:1 3450:1 3460:1 3463:2 3477:1 3488:1 3489:5 3534:1 3542:1 3548:2 3567:1 3570:1 3573:1 3629:1 3649:1 3652:4 3653:1 3654:1 3666:1 3669:1 3700:2 3713:1 3732:1 3742:1 3752:1 3779:2 3781:1 3788:1 3793:1 3794:1 3797:1 3798:1 3800:1 3802:1 3813:1 3823:1 3824:2 3844:1 3870:1 3879:1 3880:2 3882:1 3889:1 3895:1 3936:2 3943:5 3979:1 3989:3 4022:1 4031:2 4055:2 4080:1 4094:1 4100:1 4103:1 4104:1 4110:1 4126:3 4147:1 4153:1 4173:3 4174:1 4208:1 4227:2 4228:2 4229:4 4259:1 4283:1 4294:1 4313:1 4340:5 4348:2 4361:1 4366:1 4389:1 4401:1 4409:1 4425:2 4432:1 4450:1 4452:2 4454:3 4456:1 4459:1 4498:1 4558:3 4579:1 4598:1 4608:2 4613:2 4621:1 4651:1 4664:1 4677:1 4682:1 4683:3 4684:1 4694:1 4698:1 4736:1 4748:1 4753:3 4776:2 4780:1 4781:1 4816:1 4817:4 4818:1 4821:1 4848:1 4862:1 4868:1 4871:1 4876:1 4885:1 4888:1 4905:1 4906:2 4919:1 4927:1 4928:1 4949:2 4969:1 4977:1 4996:1 5000:1 5005:2 5026:1 5028:1 5031:1 5033:1 5034:1 5039:1 5062:1 5065:3 5127:1 5132:9 5133:1 5135:1 5160:1 5163:1 5183:3 5245:3 5247:1 5248:4 5264:5 5265:4 5266:1 5269:1 5270:2 5271:1 5275:1 5276:5 5277:2 5284:2 5287:1 5291:3 5292:1 5293:1 5318:1 5320:1 5344:1 5350:1 5356:4 5365:1 5385:1 5436:1 5443:1 5459:1 5481:1 5508:1 5535:1 5551:1 5574:1 5639:1 5659:1 5666:1 5678:1 5686:2 5710:1 5712:1 5719:1 5732:1 5748:1 5777:1 5784:1 5794:8 5815:1 5822:1 5824:1 5827:1 5839:1 5859:2 5878:1 5889:2 5890:2 5891:1 5913:1 5917:1 5952:1 5954:4 5958:1 5973:1 5980:1 5981:1 5989:1 6030:1 6036:2 6040:1 6048:1 6061:1 6064:2 6093:1 6099:1 6112:1 6151:1 6196:4 6283:1 6301:1 6309:1 6315:2 6333:2 6345:3 6346:2 6348:14 6349:1 6350:1 6355:3 6362:1 6378:2 6399:1 6408:1 6409:3 6444:1 6445:2 6446:1 6452:2 6465:1 6467:1 6468:1 6473:6 6474:1 6479:1 6488:2 6508:1 6567:1 6568:2 6583:1 6588:6 6591:1 6593:1 6607:1 6608:1 6610:2 6645:1 6664:1 6670:1 6681:1 6682:1 6683:1 6690:1 6692:2 6693:2 6696:4 6697:1 6701:1 6704:3 6707:1 6709:4 6713:1 6715:1 6736:1 6745:1 6769:2 6795:1 6817:1 6827:1 6840:1 6850:1 6852:1 6882:2 6886:2 6915:1 6926:1 6965:1 7006:1 7013:3 7028:1 7033:1 7035:1 7045:1 7049:1 7052:1 7069:1 7088:1 7113:1 7120:2 7127:1 7128:2 7137:1 7142:1 7151:1 7155:4 7159:1 7165:1 7181:5 7186:3 7215:1 7216:2 7221:3 7285:1 7289:1 7305:1 7312:1 7314:3 7319:2 7332:1 7346:1 7353:1 7355:1 7381:2 7382:1 7386:1 7435:1 7436:1 7450:4 7486:1 7489:1 7509:1 7533:1 7535:1 7537:13 7540:1 7551:1 7562:2 7585:1 7586:1 7594:2 7640:1 7658:1 7688:2 7691:1 7692:1 7708:1 7746:1 7781:2 7804:1 7844:1 7845:3 7855:3 7862:1 7864:2 7878:1 7880:2 7886:2 7887:2 7919:1 7929:1 7943:1 7975:1 7989:1 8012:1 8032:1 8041:1 8045:1 8090:1 8103:1 8104:10 8105:4 8128:4 8130:3 8135:1 8157:1 8160:1 8163:1 8172:25 8178:2 8188:1 8194:1 8201:21 8204:8 8213:1 8267:1 8273:1 8283:1 8284:2 8315:1 8332:1 8333:1 8340:1 8347:1 8354:1 8357:1 8370:1 8400:1 8415:4 8416:1 8442:1 8443:1 8445:1 8451:1 8455:2 8466:1 8517:1 8523:1 8548:2 8565:1 8575:1 8581:1 8584:1 8598:2 8604:4 8622:1 8626:1 8648:1 8661:1 8667:1 8669:1 8683:1 8689:2 8698:20 8728:3 8741:3 8746:1 8786:2 8837:1 8849:2 8884:1 8892:1 8896:1 8903:1 8913:1 8918:1 8927:3 8948:2 8952:2 8954:1 8971:4 8976:4 8977:1 8979:1 8984:2 8985:2 8986:1 8991:1 9012:1 9038:1 9057:5 9058:2 9061:2 9062:1 9064:2 9071:3 9072:3 9074:2 9077:1 9086:1 9094:1 9101:1 9106:1 9114:1 9115:2 9120:1 9130:1 9146:1 9148:1 9158:1 9165:2 9166:1 9177:1 9181:1 9187:1 9192:1 9249:1 9259:3 9269:1 9308:1 9326:2 9339:1 9345:1 9372:2 9377:2 9385:3 9405:1 9431:1 9442:2 9470:1 9539:1 9549:1 9563:1 9584:1 9588:1 9593:1 9595:1 9602:2 9606:6 9628:1 9629:1 9644:1 9667:1 9686:1 9715:2 9739:1 9768:1 9779:7 9783:1 9785:1 9791:4 9798:1 9810:1 9817:1 9825:1 9855:1 9874:5 9885:1 9894:1 9902:1 9921:2 9926:1 9931:1 9943:1 9944:2 9950:1 9964:2 9965:1 9982:1 9990:1 10046:1 10076:1 10091:1 10096:1 10103:1 10105:1 10112:3 10114:1 10133:1 10167:1 10172:4 10185:1 10224:1 10235:8 10236:28 10238:2 10253:2 10257:1 10260:1 10272:1 10273:1 10289:1 10293:1 10302:1 10318:1 10336:1 10342:1 10358:2 10369:5 10371:1 10382:1 10394:1 10396:1 10415:1 10426:1 10431:1 10439:1 10440:1 10453:1 10471:1 10527:1 10543:1 10544:3 10545:1 10554:1 10578:3 10592:1 10594:1 10610:1 10611:4 10621:1 10635:2 10640:1 10654:3 10669:1 10687:1 10699:1 10702:1 10714:1 10727:1 10728:1 10735:1 10736:7 10739:1 10746:1 10759:1 10777:2 10796:2 10853:1 10871:1 10872:2 10901:3 10921:1 10926:1 10927:1 10940:1 10943:1 10946:1 10955:1 10967:3 10971:5 11000:2 11003:1 11007:1 11030:1 11037:2 11064:1 11089:1 11091:1 11102:1 11144:1 11150:5 11158:1 11181:7 11207:2 11238:2 11256:2 11266:1 11267:1 11272:1 11275:1 11296:2 11297:2 11311:1 11333:4 11335:1 11372:2 11377:10 11385:1 11388:2 11404:3 11405:2 11406:2 11454:1 11462:3 11492:1 11493:1 11497:1 11501:1 11509:2 11530:1 11536:1 11586:1 11589:1 11614:5 11620:1 11628:1 11632:5 11635:1 11646:1 11651:1 11653:1 11671:1 11678:1 11686:1 11689:1 11692:1 11697:1 11733:1 11737:1 11751:3 11757:1 11759:2 11767:2 11769:1 11806:2 11830:1 11835:1 11841:2 11842:1 11852:1 11863:1 11871:1 11906:1 11914:1 11928:2 11932:1 11938:1 11940:1 11942:1 11960:1 11976:1 11989:1 12000:1 12004:1 12009:1 12021:1 12041:1 12067:1 12070:1 12072:1 12074:1 12088:1 12108:6 12119:1 12140:1 12151:1 12154:1 12155:1 12165:1 12170:2 12172:1 12181:2 12184:1 12186:1 12219:1 12222:1 12235:2 12255:1 12263:1 12268:1 12273:1 12289:4 12293:1 12304:2 12309:1 12322:6 12324:2 12330:2 12333:1 12344:1 12346:2 12351:1 12352:2 12359:1 12373:1 12380:1 12383:1 12388:4 12398:3 12419:1 12427:2 12439:2 12449:7 12456:1 12462:1 12464:1 12467:4 12480:1 12501:1 12517:1 12520:1 12546:1 12591:5 12595:1 12610:1 12615:1 12640:1 12659:1 12668:1 12678:1 12680:2 12685:2 12690:1 12691:1 12704:1 12715:1 12719:2 12752:1 12764:1 12771:1 12775:1 12796:1 12802:2 12828:2 12838:1 12846:1 12857:1 12873:2 12891:1 12957:2 12962:3 12999:2 13009:1 13012:1 13035:1 13042:1 13048:1 13050:1 13058:1 13124:1 13135:2 13143:2 13148:1 13179:1 13189:1 13198:1 13216:1 13229:1 13235:1 13251:3 13257:1 13357:1 13425:13 13434:1 13441:1 13446:2 13448:1 13463:1 13474:1 13475:6 13480:1 13481:1 13482:2 13486:1 13493:1 13497:1 13531:3 13536:1 13538:1 13540:1 13543:1 13550:1 13552:1 13555:1 13558:1 13568:1 13572:1 13597:1 13614:2 13623:1 13665:1 13691:2 13707:1 13765:1 13786:1 13788:1 13819:1 13829:1 13853:1 13855:2 13869:2 13871:5 13878:2 13894:1 13906:1 13909:3 13945:3 13956:1 13962:1 13963:1 13974:5 13975:3 14005:2 14020:1 14030:1 14033:3 14040:2 14051:1 14057:2 14067:1 14069:2 14075:1 14077:2 14090:2 14103:1 14114:4 14120:1 14148:1 14167:3 14185:1 14191:1 14212:1 14222:4 14225:1 14231:1 14239:2 14242:1 14245:1 14274:1 14277:1 14282:1 14288:1 14307:2 14318:1 14323:1 14325:3 14334:1 14337:1 14370:3 14372:1 14375:1 14377:1 14383:1 14392:1 14401:1 14415:1 14449:2 14460:3 14462:1 14464:3 14465:1 14468:4 14478:1 14479:1 14488:1 14489:3 14498:1 14536:1 14540:2 14544:1 14551:1 14580:2 14586:1 14617:1 14618:1 14627:1 14632:1 14639:1 14641:1 14646:1 14671:1 14683:1 14691:1 14725:1 14735:1 14769:3 14774:1 14787:1 14795:1 14819:1 14832:2 14835:1 14844:1 14848:1 14864:3 14872:1 14893:1 14906:1 14911:1 14912:1 14919:1 14927:3 14933:1 14945:1 14961:1 14969:1 14983:1 15004:1 15015:1 15059:1 15067:1 15110:1 15119:1 15143:1 15169:1 15171:1 15175:1 15193:2 15196:1 15202:1 15213:1 15225:2 15231:1 15244:1 15245:2 15246:1 15258:1 15262:1 15275:1 15298:1 15316:1 15346:1 15354:1 15355:1 15368:1 15378:1 15381:1 15384:2 15390:1 15391:1 15396:1 15401:1 15407:1 15410:2 15415:2 15438:2 15453:1 15457:1 15493:4 15505:1 15510:1 15519:1 15525:1 15548:1 15550:2 15553:1 15566:1 15591:2 15602:1 15608:1 15624:2 15642:1 15695:1 15706:1 15711:1 15740:1 15760:2 15762:3 15764:1 15765:1 15782:1 15785:2 15798:1 15826:2 15851:1 15853:3 15861:1 15862:1 15894:1 15899:2 15916:1 15918:1 15927:2 15934:2 15960:1 15994:1 16018:1 16019:1 16028:1 16064:1 16095:1 16107:1 16118:2 16134:1 16144:1 16172:1 16186:1 16261:1 16262:1 16273:1 16285:2 16313:1 16355:1 16363:2 16365:1 16383:1 16387:1 16401:1 16402:2 16406:1 16409:1 16410:1 16411:3 16414:1 16415:1 16430:1 16431:3 16457:3 16467:2 16475:3 16487:1 16499:1 16502:1 16523:1 16555:1 16575:2 16594:1 16627:1 16634:2 16635:5 16641:5 16648:1 16649:2 16653:1 16654:1 16667:2 16669:1 16671:2 16672:1 16700:1 16723:1 16733:3 16738:1 16747:1 16749:1 16777:1 16784:1 16799:1 16805:5 16819:3 16825:1 16829:1 16835:1 16854:1 16861:1 16889:1 16891:1 16907:1 16923:2 16946:2 16949:3 16962:1 16970:1 17024:1 17025:1 17050:1 17060:4 17077:2 17083:2 17112:1 17116:2 17141:1 17147:1 17182:1 17188:2 17211:2 17212:1 17213:1 17214:1 17216:1 17217:1 17220:1 17223:1 17230:1 17231:3 17232:1 17235:1 17237:1 17239:1 17242:3 17251:1 17267:1 17302:1 17304:1 17305:2 17307:1 17338:1 17340:1 17343:1 17348:1 17419:2 17499:1 17519:1 17520:1 17536:1 17543:1 17595:1 17629:1 17642:2 17656:1 17671:1 17681:1 17686:2 17688:2 17691:1 17702:1 17709:1 17729:13 17765:1 17776:2 17803:6 17807:1 17847:1 17851:2 17875:1 17898:3 17899:1 17915:1 17917:1 17926:1 17954:1 17957:1 17961:1 17980:1 18014:1 18028:3 18031:1 18044:1 18047:1 18054:4 18060:2 18076:3 18077:1 18111:1 18112:1 18125:1 18126:2 18129:4 18158:1 18167:2 18170:1 18171:3 18172:1 18188:1 18202:1 18210:1 18213:1 18233:1 18239:1 18248:1 18258:1 18262:1 18275:1 18284:1 18299:1 18308:1 18313:1 18326:1 18337:1 18385:1 18413:1 18417:1 18429:1 18434:3 18447:1 18453:1 18471:1 18477:1 18478:1 18505:1 18535:1 18536:2 18603:1 18646:1 18682:1 18683:3 18700:1 18717:1 18740:1 18741:1 18747:1 18749:1 18782:2 18785:1 18825:1 18836:1 18843:2 18873:1 18874:3 18882:3 18892:1 18894:1 18925:1 18938:1 18951:5 18957:1 18994:2 19085:1 19091:1 19093:1 19109:1 19129:2 19144:1 19160:1 19165:1 19172:4 19190:3 19191:1 19195:2 19240:1 19244:1 19298:1 19306:5 19308:1 19315:1 19390:1 19413:1 19419:6 19434:1 19437:1 19449:1 19480:1 19491:2 19492:2 19497:1 19503:2 19535:1 19542:1 19559:1 19573:1 19577:1 19594:1 19602:1 19605:2 19611:2 19620:1 19628:1 19633:1 19639:1 19644:2031 19648:1 19673:3 19678:1 19690:1 19709:1 19727:1 19805:2 19807:1 19814:2 19840:2 19845:1 19863:1 19869:2 19871:1 19878:2 19880:1 19890:1 19893:2 19895:3 19900:1 19915:1 19926:1 19962:1 19990:1 20014:1 20032:1 20072:1 20095:1 20121:1 20131:1 20138:1 20179:1 20186:1 20192:1 20194:2 20200:1 20216:1 20218:1 20222:1 20231:1 20239:1 20290:1 20302:1 20303:1 20370:1 20389:1 20393:1 20396:1 20404:1 20412:2 20418:1 20438:3 20457:1 20460:3 20462:2 20464:2 20466:1 20476:2 20487:2 20497:1 20498:5 20502:4 20547:1 20553:1 20554:2 20576:1 20588:1 20597:1 20604:1 20609:6 20622:1 20628:1 20630:4 20643:1 20674:1 20698:1 20703:1 20708:1 20758:1 20765:1 20769:3 20778:1 20786:3 20801:1 20841:1 20853:1 20857:1 20875:6 20884:2 20903:1 20906:1 20915:1 20919:1 20933:1 20939:1 20943:3 20951:3 20955:2 20980:1 20986:2 20989:2 20993:1 20998:1 21001:1 21009:1 21015:2 21034:1 21052:1 21066:1 21079:1 21105:1 21106:1 21160:2 21182:1 21184:4 21185:1 21192:1 21197:2 21211:2 21212:1 21224:1 21246:5 21254:1 21261:3 21286:1 21298:1 21302:5 21316:1 21318:1 21319:1 21326:1 21336:1 21341:7 21355:1 21365:6 21393:1 21425:1 21455:1 21457:2 21462:1 21465:1 21484:2 21492:1 21507:1 21511:1 21528:1 21531:1 21543:1 21545:1 21548:1 21559:1 21570:1 21627:4 21629:1 21633:2 21668:3 21683:2 21741:1 21782:1 21785:2 21787:1 21807:1 21833:1 21843:1 21855:1 21857:1 21869:1 21870:1 21879:1 21900:2 21927:1 21934:1 21944:1 21951:1 21974:2 21989:1 21990:1 21991:1 21994:1 22024:1 22027:1 22039:1 22043:4 22044:1 22046:3 22048:2 22056:9 22059:1 22077:2 22078:1 22102:1 22107:3 22109:1 22113:1 22149:1 22175:1 22190:1 22196:1 22197:2 22210:1 22213:1 22239:1 22255:2 22260:1 22262:1 22267:1 22270:1 22283:1 22296:1 22306:1 22322:1 22327:1 22341:2 22414:1 22422:2 22426:2 22431:1 22443:1 22446:1 22462:1 22513:1 22518:1 22527:1 22552:1 22557:2 22582:1 22601:1 22605:1 22610:1 22613:2 22626:1 22649:1 22659:1 22680:2 22681:1 22683:1 22689:1 22691:1 22704:1 22709:1 22710:1 22711:2 22736:2 22747:1 22749:2 22754:1 22764:1 22770:1 22782:3 22801:2 22803:1 22809:2 22817:2 22819:1 22823:1 22831:2 22832:1 22834:1 22844:1 22849:2 22853:1 22855:1 22860:1 22864:1 22867:1 22885:1 22887:5 22890:1 22891:1 22892:1 22911:1 22913:2 22919:1 22935:1 22943:1 22954:1 22959:1 22970:1 22988:2 23000:2 23008:1 23014:1 23039:2 23095:2 23096:1 23107:1 23109:1 23111:1 23112:1 23142:1 23145:1 23151:1 23156:3 23157:1 23158:1 23166:1 23167:2 23170:1 23178:1 23180:10 23181:3 23185:1 23186:1 23187:1 23193:3 23205:1 23214:1 23219:1 23221:1 23222:4 23238:1 23244:2 23251:1 23279:2 23282:5 23313:1 23325:1 23332:3 23338:1 23357:1 23368:1 23375:1 23386:1 23395:2 23399:3 23404:1 23408:3 23410:1 23433:1 23444:1 23460:1 23466:3 23469:2 23478:1 23483:2 23486:1 23513:1 23546:1 23563:3 23567:2 23569:3 23581:1 23589:1 23594:1 23607:4 23615:1 23616:1 23625:1 23630:1 23631:1 23633:1 23641:1 23643:1 23644:7 23650:1 23651:1 23671:1 23674:1 23684:4 23690:1 23700:1 23731:2 23744:3 23752:1 23765:1 23775:1 23779:10 23786:1 23796:5 23802:1 23803:1 23804:2 23807:1 23809:1 23810:5 23831:2 23850:1 23856:1 23858:1 23862:2 23871:1 23878:1 23883:1 23885:1 23893:1 23899:5 23903:1 23915:1 23959:1 23979:1 23997:1 24025:1 24047:1 24053:1 24056:6 24068:1 24108:1 24142:2 24196:2 24200:1 24220:1 24224:1 24229:2 24278:1 24286:1 24308:1 24322:1 24374:3 24402:1 24404:1 24409:1 24417:1 24430:1 24447:1 24498:1 24500:1 24525:1 24545:1 24582:1 24601:1 24612:1 24614:3 24631:1 24633:2 24639:1 24644:1 24654:3 24662:1 24666:1 24682:1 24692:1 24703:1 24704:1 24724:1 24726:3 24733:1 24738:2 24741:1 24742:2 24751:1 24764:1 24770:1 24772:1 24785:1 24786:2 24799:1 24804:1 24833:1 24835:4 24845:1 24868:1 24870:1 24884:1 24886:3 24904:1 24918:2 24930:1 24953:1 24964:2 24994:1 24999:2 25029:2 25035:1 25065:2 25067:1 25080:2 25089:2 25120:1 25133:1 25181:1 25185:1 25193:1 25231:1 25250:2 25271:1 25310:1 25329:2 25331:1 25345:1 25348:1 25351:1 25355:1 25369:1 25388:1 25405:1 25406:1 25408:1 25445:1 25481:2 25509:1 25522:1 25536:1 25538:1 25549:1 25572:1 25591:1 25603:5 25608:1 25625:1 25635:6 25652:2 25657:1 25664:1 25672:1 25680:1 25682:1 25684:1 25685:1 25712:4 25724:2 25729:1 25739:1 25775:1 25786:1 25799:13 25850:5 25916:2 25918:1 25921:1 25930:3 25932:1 25935:2 25940:2 25943:1 25949:1 25963:1 25970:1 25972:3 25989:4 25994:1 25996:1 25997:1 26012:1 26015:1 26049:3 26051:1 26055:1 26058:1 26064:1 26080:3 26083:1 26090:1 26094:2 26099:1 26103:1 26104:1 26110:1 26120:3 26122:1 26157:1 26165:1 26178:1 26207:1 26215:1 26254:2 26269:1 26278:1 26289:1 26301:1 26308:1 26313:2 26314:2 26318:1 26327:1 26332:1 26381:2 26397:3 26413:1 26430:1 26439:1 26449:1 26453:2 26456:4 26464:1 26504:6 26505:3 26548:1 26566:1 26591:2 26599:1 26607:1 26626:1 26639:1 26647:1 26689:1 26703:7 26729:4 26752:1 26762:1 26763:1 26769:1 26795:1 26828:1 26833:1 26848:1 26855:2 26857:3 26883:1 26889:1 26904:3 26913:2 26929:1 26930:1 26938:2 26956:3 26959:3 26962:1 26964:2 26980:1 26992:1 27001:6 27020:1 27023:1 27039:3 27040:1 27062:1 27089:1 27152:1 27157:3 27162:2 27175:1 27201:1 27207:2 27243:2 27262:1 27269:2 27279:1 27280:1 27282:3 27306:1 27324:1 27347:1 27350:1 27383:1 27406:1 27422:1 27449:1 27482:1 27491:1 27498:3 27537:1 27580:1 27584:1 27603:1 27614:1 27619:1 27624:1 27627:1 27631:1 27648:2 27653:1 27661:1 27710:3 27732:1 27748:1 27755:1 27760:1 27783:1 27797:6 27798:1 27808:1 27818:1 27854:1 27858:2 27881:1 27892:2 27896:2 27901:1 27909:1 27916:1 27917:3 27927:1 28004:1 28037:1 28049:1 28069:1 28079:1 28096:1 28100:1 28102:1 28103:3 28138:1 28139:1 28146:1 28152:1 28157:1 28165:4 28173:1 28176:1 28177:3 28205:2 28207:1 28225:2 28241:1 28280:1 28290:2 28305:1 28327:1 28338:1 28342:3 28360:1 28379:4 28397:1 28435:1 28469:1 28482:1 28483:1 28486:1 28496:3 28527:1 28561:2 28576:3 28597:1 28614:1 28646:1 28684:1 28688:1 28690:1 28710:1 28726:2 28727:1 28736:1 28738:1 28759:1 28780:1 28782:1 28818:1 28822:1 28825:1 28836:1 28843:3 28924:1 28948:3 28964:1 29010:1 29014:1 29015:1 29020:1 29025:1 29032:1 29052:1 29054:1 29063:1 29078:1 29081:1 29088:1 29092:1 29093:1 29098:2 29109:1 29111:2 29119:1 29122:1 29128:2 29130:1 29133:1 29134:1 29137:2 29144:2 29152:1 29154:1 29158:1 29160:1 29188:1 29196:1 29197:2 29215:1 29224:7 29225:1 29227:1 29228:1 29235:1 29236:2 29238:1 29239:1 29249:2 29253:1 29259:1 29282:1 29284:1 29295:1 29304:1 29334:1 29336:1 29340:1 29344:1 29354:1 29360:1 29363:2 29386:1 29397:1 29415:1 29444:1 29447:2 29450:3 29469:1 29534:1 29539:1 29576:1 29579:1 29590:1 29593:2 29596:1 29610:1 29633:1 29661:1 29679:1 29689:1 29702:1 29723:3 29729:1 29735:1 29760:2 29771:1 29778:1 29779:2 29781:3 29787:2 29788:1 29789:1 29790:1 29804:1 29818:1 29825:2 29826:1 29837:1 29851:1 29860:1 29887:28 29888:4 29893:4 29896:1 29910:2 29918:1 29933:1 29934:1 29938:7 29946:4 30001:1 30008:1 30039:3 30052:1 30062:1 30069:2 30078:4 30112:10 30118:1 30124:2 30130:1 30149:1 30159:1 30164:1 30165:1 30194:1 30197:1 30199:3 30207:1 30217:1 30243:1 30281:1 30289:2 30329:1 30331:1 30341:1 30345:1 30350:1 30358:2 30361:2 30377:1 30382:1 30388:1 30399:1 30401:1 30436:6 30438:1 30457:1 30465:1 30476:1 30510:2 30513:8 30523:1 30534:3 30537:1 30538:1 30541:1 30556:1 30660:1 30675:1 30678:1 30692:4 30693:3 30694:3 30697:1 30720:2 30741:1 30754:1 30801:1 30842:1 30844:2 30846:1 30848:1 30858:1 30864:2 30869:3 30874:1 30877:2 30884:8 30907:3 30909:2 30925:1 30940:1 30953:1 30956:1 30981:1 30986:3 31003:2 31035:1 31048:2 31055:1 31066:1 31089:1 31093:3 31100:1 31118:1 31142:2 31153:1 31154:1 31195:1 31205:1 31208:1 31212:2 31216:2 31222:1 31223:1 31231:1 31235:1 31238:2 31243:2 31246:1 31248:1 31250:1 31251:1 31260:1 31287:1 31299:1 31313:1 31373:1 31385:1 19 1:1 26:1 27:1 30:1 52:1 56:1 57:1 63:1 91:1 108:1 153:1 154:1 170:3 191:1 192:1 195:1 206:4 208:1 232:1 234:1 242:1 246:1 276:2 305:1 308:4 338:1 354:1 359:1 367:1 387:1 417:1 424:1 428:5 462:3 466:1 482:1 486:1 527:1 561:1 569:1 579:2 604:1 615:1 616:1 622:1 643:11 649:1 661:1 671:2 697:1 764:1 778:1 837:1 843:1 852:1 870:2 879:1 890:1 899:1 907:3 926:2 928:1 932:1 933:3 937:4 938:3 948:2 949:1 951:1 966:1 967:1 969:1 985:1 987:1 988:1 993:1 994:4 998:6 1000:1 1009:1 1021:2 1022:1 1037:3 1038:1 1042:3 1055:1 1080:5 1083:1 1137:1 1195:1 1213:1 1240:1 1249:3 1262:1 1277:1 1285:1 1300:1 1322:1 1335:1 1336:3 1337:1 1348:2 1350:1 1360:1 1366:1 1380:1 1389:1 1390:1 1395:1 1396:1 1406:1 1411:1 1437:1 1458:1 1507:1 1527:1 1533:1 1543:1 1559:1 1582:1 1584:1 1586:3 1589:1 1592:3 1596:1 1600:3 1607:2 1669:2 1670:1 1675:4 1690:2 1699:1 1704:1 1712:1 1721:1 1757:1 1766:1 1795:6 1815:2 1828:1 1842:1 1846:2 1852:1 1855:1 1887:1 1899:1 1906:2 1909:1 1911:2 1922:1 1923:2 1928:2 1940:1 1948:1 1950:2 1956:1 1978:1 1979:1 2013:1 2018:1 2026:1 2027:1 2040:2 2087:1 2098:1 2100:1 2105:1 2113:1 2118:1 2133:2 2137:1 2165:1 2190:1 2196:2 2198:2 2200:1 2203:1 2205:2 2206:2 2208:1 2214:1 2216:3 2223:1 2227:1 2251:1 2266:1 2267:5 2273:3 2297:1 2306:1 2321:1 2337:2 2345:2 2352:1 2369:1 2375:2 2384:3 2388:2 2391:3 2393:2 2395:1 2396:2 2401:1 2402:3 2404:1 2409:1 2410:2 2414:1 2415:1 2422:3 2425:4 2434:1 2501:2 2505:1 2510:2 2512:2 2521:1 2528:4 2536:1 2548:1 2549:1 2584:2 2590:1 2592:5 2616:1 2626:1 2647:1 2653:1 2655:4 2669:1 2689:1 2690:1 2691:1 2759:1 2760:1 2779:2 2782:1 2784:1 2789:1 2790:1 2797:1 2811:3 2832:7 2838:2 2843:1 2859:1 2890:4 2905:1 2909:2 2943:1 2962:4 2985:3 2989:1 3005:1 3014:21 3023:14 3040:2 3058:1 3065:8 3074:1 3083:2 3090:1 3098:1 3102:5 3124:1 3148:1 3171:1 3184:1 3194:1 3212:1 3260:1 3265:1 3285:1 3294:1 3296:1 3297:1 3307:1 3336:1 3351:1 3365:1 3410:2 3423:2 3439:1 3450:1 3460:1 3463:2 3477:1 3488:1 3489:5 3534:1 3542:1 3548:2 3567:1 3570:1 3573:1 3629:1 3649:1 3652:5 3653:1 3654:1 3666:1 3669:1 3700:3 3713:1 3732:1 3742:1 3752:1 3779:2 3781:1 3788:1 3793:1 3794:1 3797:1 3798:1 3800:1 3802:1 3813:1 3823:1 3824:2 3843:1 3844:1 3870:1 3879:1 3880:2 3882:1 3889:1 3895:1 3936:2 3943:5 3951:1 3979:1 3989:3 4022:1 4031:2 4055:2 4080:1 4094:1 4100:1 4103:1 4104:1 4110:1 4126:4 4147:1 4153:1 4173:3 4174:1 4208:1 4219:1 4227:2 4228:2 4229:4 4259:2 4283:1 4294:1 4313:1 4340:5 4348:2 4361:1 4366:1 4389:1 4401:1 4409:1 4425:2 4432:1 4450:1 4452:2 4454:3 4456:1 4459:1 4498:1 4556:1 4558:3 4579:1 4598:1 4608:2 4613:2 4621:1 4651:1 4664:1 4677:1 4682:1 4683:3 4684:1 4694:1 4698:1 4736:1 4748:1 4753:3 4776:2 4780:1 4781:1 4816:1 4817:4 4818:1 4821:1 4848:1 4862:1 4868:1 4871:1 4876:1 4885:1 4888:1 4905:1 4906:2 4919:1 4927:1 4928:1 4949:2 4969:1 4977:1 4996:1 5000:1 5005:2 5026:1 5028:1 5031:1 5033:1 5034:1 5039:1 5062:1 5065:3 5123:1 5127:1 5132:11 5133:1 5135:1 5160:1 5163:1 5183:3 5245:3 5247:1 5248:4 5264:7 5265:4 5266:1 5269:1 5270:2 5271:1 5275:1 5276:5 5277:2 5284:2 5287:1 5291:3 5292:1 5293:2 5318:1 5320:1 5344:1 5350:1 5356:4 5365:1 5385:1 5436:1 5443:1 5459:1 5481:1 5494:1 5508:1 5535:1 5551:1 5574:1 5639:1 5659:1 5666:1 5678:1 5686:2 5710:1 5712:1 5719:1 5732:1 5748:1 5777:1 5784:1 5794:8 5815:1 5822:1 5824:1 5827:1 5839:1 5859:2 5878:1 5889:2 5890:2 5891:1 5913:1 5917:1 5952:1 5954:4 5958:1 5973:1 5980:1 5981:1 5989:1 6030:1 6036:2 6040:1 6048:1 6061:1 6064:2 6093:1 6099:1 6112:1 6151:1 6196:4 6283:1 6301:1 6309:1 6315:2 6333:2 6345:3 6346:2 6348:15 6349:1 6350:1 6355:3 6362:1 6378:2 6399:1 6408:1 6409:3 6444:1 6445:2 6446:1 6452:2 6465:1 6467:1 6468:1 6473:6 6474:1 6479:1 6488:2 6508:1 6567:1 6568:2 6583:1 6588:6 6591:1 6593:1 6607:1 6608:1 6610:2 6645:1 6664:1 6670:1 6681:1 6682:1 6683:1 6690:1 6692:2 6693:2 6696:4 6697:1 6701:2 6704:3 6707:1 6709:4 6713:1 6715:1 6736:1 6745:1 6769:2 6795:1 6817:1 6827:1 6840:1 6850:1 6852:1 6882:2 6886:2 6915:1 6926:1 6965:1 7006:1 7013:3 7028:1 7033:2 7035:1 7045:1 7049:1 7052:1 7069:1 7088:1 7113:1 7120:2 7127:1 7128:2 7137:1 7142:1 7151:1 7155:4 7159:1 7165:1 7181:5 7186:3 7215:1 7216:2 7221:3 7285:1 7289:1 7305:1 7312:1 7314:4 7319:2 7332:1 7346:1 7353:1 7355:1 7381:3 7382:1 7386:1 7435:1 7436:1 7450:4 7486:1 7489:1 7509:1 7533:1 7535:1 7537:14 7540:1 7551:1 7562:2 7585:1 7586:1 7594:2 7640:1 7658:1 7688:2 7691:1 7692:1 7708:1 7746:1 7781:2 7803:1 7804:1 7844:1 7845:3 7855:3 7862:1 7864:2 7878:1 7880:3 7886:2 7887:2 7919:1 7929:1 7943:1 7975:1 7978:1 7989:1 8012:1 8032:1 8041:1 8045:1 8090:1 8103:1 8104:10 8105:5 8128:4 8130:3 8135:1 8157:1 8160:1 8163:1 8172:27 8178:2 8188:1 8194:1 8201:22 8204:10 8213:1 8267:1 8269:1 8273:1 8283:1 8284:2 8315:1 8332:1 8333:1 8338:1 8340:1 8347:1 8354:1 8357:1 8370:1 8400:1 8415:5 8416:1 8442:1 8443:1 8445:1 8451:1 8455:2 8466:2 8517:1 8523:2 8548:2 8565:1 8575:1 8581:1 8584:1 8598:2 8604:4 8622:1 8626:1 8648:1 8661:1 8667:1 8669:1 8683:1 8689:2 8698:20 8728:3 8741:3 8746:1 8786:2 8837:1 8849:2 8884:1 8892:1 8896:1 8903:1 8913:1 8918:1 8927:3 8948:2 8952:2 8954:1 8971:4 8976:4 8977:1 8979:1 8984:2 8985:2 8986:1 8991:1 9012:1 9038:1 9057:6 9058:2 9061:2 9062:1 9064:3 9071:4 9072:3 9074:2 9077:1 9086:1 9094:1 9101:1 9106:1 9114:1 9115:2 9120:1 9130:1 9146:1 9148:1 9158:1 9165:2 9166:1 9177:1 9181:1 9187:1 9192:1 9249:1 9259:3 9269:1 9308:1 9326:2 9339:1 9345:1 9372:2 9377:2 9385:3 9405:1 9431:1 9442:2 9470:1 9539:1 9549:1 9563:1 9584:1 9588:1 9593:1 9595:1 9602:3 9606:6 9628:1 9629:1 9644:1 9667:1 9684:1 9686:1 9715:2 9739:1 9768:1 9779:7 9783:1 9785:1 9791:4 9798:1 9810:1 9817:1 9825:1 9855:1 9874:5 9885:1 9894:1 9902:1 9921:2 9926:1 9931:1 9943:1 9944:2 9950:1 9964:2 9965:1 9982:1 9990:1 10046:1 10076:1 10091:1 10096:1 10103:1 10105:1 10112:3 10114:1 10133:1 10167:1 10172:4 10185:1 10223:1 10224:1 10235:8 10236:28 10238:3 10253:2 10257:1 10260:1 10272:1 10273:1 10284:1 10289:1 10293:1 10302:1 10318:1 10336:1 10342:1 10358:2 10369:5 10371:1 10382:1 10394:1 10396:1 10415:1 10426:1 10431:1 10439:1 10440:1 10453:1 10471:1 10527:1 10543:1 10544:3 10545:1 10546:1 10554:1 10578:3 10581:1 10592:1 10594:1 10610:1 10611:4 10621:1 10635:2 10640:1 10654:3 10669:1 10687:1 10699:1 10702:1 10714:1 10727:1 10728:1 10735:1 10736:7 10739:1 10746:1 10759:1 10777:2 10796:2 10853:1 10871:1 10872:2 10901:3 10902:1 10921:1 10926:1 10927:1 10940:1 10943:1 10946:1 10955:1 10967:3 10971:6 10975:1 11000:2 11003:1 11007:1 11030:1 11037:2 11064:1 11089:1 11091:1 11102:1 11144:1 11150:5 11158:1 11181:8 11207:2 11238:2 11251:1 11256:2 11266:1 11267:1 11272:1 11275:1 11296:2 11297:2 11311:1 11333:4 11335:1 11372:2 11377:10 11385:1 11388:2 11404:3 11405:2 11406:2 11454:1 11462:4 11492:1 11493:1 11497:1 11501:1 11509:2 11510:1 11530:1 11536:1 11586:1 11589:1 11614:5 11620:1 11628:1 11632:5 11635:1 11646:1 11651:1 11653:1 11669:1 11671:1 11678:1 11686:1 11689:1 11692:1 11697:1 11733:1 11737:1 11751:3 11757:1 11759:2 11767:2 11769:1 11806:2 11830:1 11835:1 11841:3 11842:1 11852:1 11863:1 11871:1 11906:1 11914:1 11919:1 11928:2 11932:1 11938:1 11940:1 11942:1 11960:1 11976:1 11989:1 12000:1 12004:1 12009:1 12021:1 12041:1 12060:1 12067:1 12070:1 12072:1 12074:1 12088:1 12108:6 12119:1 12140:1 12151:1 12154:1 12155:1 12165:1 12170:2 12172:1 12181:3 12184:1 12186:1 12219:1 12222:1 12235:2 12255:1 12263:1 12268:1 12273:1 12289:4 12293:1 12304:2 12309:1 12322:6 12324:2 12330:2 12333:1 12344:1 12346:2 12351:1 12352:2 12359:1 12373:1 12380:2 12383:1 12388:5 12398:3 12419:1 12427:2 12439:3 12449:7 12456:1 12462:1 12464:1 12467:4 12480:1 12501:1 12517:1 12520:1 12546:1 12591:5 12595:1 12610:1 12615:1 12640:1 12659:1 12668:1 12678:1 12680:2 12685:2 12690:1 12691:1 12704:1 12715:1 12719:2 12752:1 12764:1 12771:1 12775:1 12796:1 12802:2 12828:2 12838:1 12846:1 12857:1 12873:2 12891:1 12957:2 12962:3 12999:2 13009:1 13012:1 13035:1 13042:1 13048:1 13050:1 13058:1 13124:1 13135:2 13143:2 13148:1 13179:1 13189:1 13198:1 13216:1 13229:1 13235:1 13251:3 13257:1 13357:1 13425:13 13434:1 13441:1 13446:2 13448:1 13463:1 13474:1 13475:6 13480:1 13481:1 13482:2 13486:1 13493:1 13497:1 13531:4 13536:1 13538:1 13540:1 13543:1 13550:1 13552:1 13555:1 13558:1 13568:1 13572:1 13597:1 13614:2 13623:1 13665:1 13691:2 13707:1 13765:1 13786:1 13788:1 13819:1 13829:1 13853:1 13855:2 13869:2 13871:5 13878:2 13894:1 13906:1 13909:3 13945:3 13956:1 13962:1 13963:1 13974:5 13975:3 14005:2 14020:1 14030:1 14033:3 14040:2 14051:1 14057:2 14067:1 14069:2 14075:1 14077:2 14090:2 14103:1 14114:4 14120:1 14148:1 14167:3 14185:1 14191:1 14212:1 14222:4 14225:1 14231:1 14239:2 14242:1 14245:1 14274:1 14277:1 14282:1 14288:1 14307:2 14318:1 14323:1 14325:3 14334:1 14337:1 14370:3 14372:1 14375:1 14377:1 14383:1 14392:1 14401:1 14415:1 14449:2 14460:4 14462:1 14464:3 14465:1 14468:4 14478:1 14479:1 14488:1 14489:3 14498:1 14536:1 14540:2 14544:1 14551:1 14580:2 14586:1 14594:1 14617:1 14618:1 14627:1 14632:1 14639:1 14641:1 14646:1 14671:1 14683:1 14691:1 14725:1 14735:1 14769:3 14774:1 14776:1 14787:1 14795:1 14819:1 14832:2 14835:1 14844:1 14848:1 14864:3 14872:1 14893:1 14906:1 14911:1 14912:1 14919:1 14927:3 14933:1 14945:1 14961:1 14969:1 14983:1 15004:1 15007:1 15015:1 15059:1 15067:1 15110:1 15119:1 15143:1 15169:1 15171:1 15175:1 15193:2 15196:1 15202:1 15213:1 15225:2 15231:1 15244:1 15245:2 15246:1 15258:1 15262:1 15275:1 15298:1 15316:1 15346:1 15354:1 15355:1 15368:1 15378:1 15381:1 15384:2 15390:1 15391:1 15396:1 15401:1 15407:1 15410:2 15415:2 15438:2 15453:1 15457:1 15493:4 15505:1 15510:1 15519:1 15525:1 15548:1 15550:2 15553:1 15566:1 15591:2 15602:1 15608:1 15624:2 15642:1 15695:1 15706:1 15711:1 15740:1 15760:2 15762:3 15764:1 15765:1 15782:1 15785:2 15798:1 15826:2 15851:1 15853:3 15861:1 15862:1 15892:1 15894:1 15899:2 15916:1 15918:1 15927:2 15934:2 15960:1 15994:1 16018:1 16019:1 16028:1 16064:1 16095:1 16107:1 16118:2 16134:1 16144:1 16172:1 16176:1 16186:1 16261:1 16262:1 16273:1 16285:2 16313:1 16355:1 16363:2 16365:1 16383:1 16387:1 16401:1 16402:2 16406:1 16409:1 16410:1 16411:3 16414:1 16415:1 16430:1 16431:3 16457:3 16467:2 16475:3 16487:1 16499:1 16502:1 16523:1 16555:1 16575:2 16594:1 16627:1 16634:2 16635:5 16638:1 16641:6 16648:1 16649:2 16653:1 16654:1 16667:2 16669:1 16671:2 16672:1 16700:1 16723:1 16733:3 16738:1 16747:1 16749:1 16765:1 16777:1 16784:1 16799:1 16805:5 16819:3 16825:1 16829:1 16835:1 16854:1 16861:1 16889:1 16891:1 16907:1 16923:2 16946:3 16949:3 16962:1 16970:2 17024:1 17025:1 17050:1 17060:4 17077:2 17083:2 17112:1 17116:2 17141:1 17147:1 17182:1 17188:2 17211:2 17212:1 17213:1 17214:1 17216:1 17217:1 17220:1 17223:1 17230:1 17231:3 17232:1 17235:1 17237:1 17239:1 17242:3 17251:1 17267:1 17302:1 17304:1 17305:2 17307:1 17338:1 17340:1 17343:1 17348:1 17419:2 17499:1 17519:1 17520:1 17536:1 17543:1 17595:1 17629:1 17642:2 17656:1 17671:1 17681:1 17686:2 17688:2 17691:1 17702:1 17709:1 17729:13 17765:1 17776:2 17803:7 17807:1 17847:1 17851:2 17875:1 17898:3 17899:1 17915:1 17917:1 17926:1 17929:1 17954:1 17957:1 17961:1 17980:1 18014:1 18016:1 18028:3 18031:1 18044:1 18047:1 18054:4 18060:2 18076:3 18077:1 18111:1 18112:1 18125:1 18126:2 18129:4 18158:1 18167:2 18170:1 18171:3 18172:1 18188:1 18202:1 18210:1 18213:1 18233:1 18239:1 18248:1 18258:1 18262:1 18275:1 18284:1 18299:2 18308:1 18313:1 18326:1 18337:1 18385:1 18413:1 18417:1 18429:1 18434:3 18447:1 18453:1 18471:1 18477:1 18478:1 18505:1 18535:1 18536:2 18603:1 18646:1 18682:1 18683:3 18700:1 18717:1 18740:1 18741:1 18747:1 18749:1 18782:3 18785:1 18825:1 18836:1 18843:2 18873:1 18874:3 18882:3 18892:1 18894:1 18924:1 18925:1 18938:1 18951:5 18957:1 18994:2 19085:1 19091:1 19093:1 19109:1 19129:2 19144:1 19160:1 19165:1 19172:4 19190:3 19191:1 19195:2 19240:1 19244:1 19298:1 19306:5 19308:1 19315:1 19390:1 19413:1 19419:6 19434:1 19437:1 19449:1 19480:1 19491:2 19492:2 19497:1 19503:2 19535:1 19542:1 19559:1 19573:1 19577:1 19594:1 19602:1 19605:2 19611:2 19620:1 19628:1 19633:1 19639:1 19644:2087 19648:1 19673:3 19678:1 19690:1 19709:1 19727:1 19805:2 19807:1 19814:2 19840:2 19845:1 19863:1 19869:2 19871:1 19877:1 19878:2 19880:1 19890:1 19893:2 19895:3 19900:1 19915:1 19926:1 19962:1 19990:1 20014:1 20032:1 20072:1 20095:1 20121:1 20131:1 20138:1 20179:1 20186:1 20192:1 20194:2 20200:1 20216:1 20218:1 20222:1 20231:1 20239:1 20290:1 20302:1 20303:1 20370:1 20389:1 20393:1 20396:1 20404:1 20412:2 20418:1 20438:4 20457:1 20460:3 20462:2 20464:2 20466:1 20476:2 20487:2 20497:1 20498:5 20502:5 20547:1 20553:1 20554:2 20576:1 20588:1 20597:1 20604:1 20609:6 20622:1 20628:1 20630:4 20643:1 20674:1 20698:1 20703:1 20708:1 20758:1 20765:1 20769:3 20778:1 20786:4 20801:1 20841:1 20853:1 20857:1 20875:7 20884:2 20903:1 20906:1 20915:1 20919:1 20933:1 20939:1 20943:3 20951:3 20955:2 20980:1 20986:2 20989:2 20993:1 20998:1 21001:1 21009:1 21015:2 21034:1 21052:1 21066:1 21079:1 21105:1 21106:1 21154:1 21160:2 21182:1 21184:4 21185:1 21192:1 21197:2 21211:2 21212:1 21224:1 21246:5 21254:1 21261:3 21286:1 21298:1 21302:5 21316:1 21318:1 21319:1 21326:1 21336:1 21341:7 21355:1 21365:7 21391:1 21393:1 21425:1 21455:1 21457:2 21462:1 21465:1 21484:2 21492:1 21507:1 21511:1 21528:1 21531:1 21543:1 21545:1 21548:1 21559:1 21570:1 21627:4 21629:1 21633:2 21668:3 21683:2 21741:1 21782:1 21785:2 21787:1 21807:1 21833:1 21843:1 21855:1 21857:1 21869:1 21870:1 21879:1 21900:2 21927:1 21934:1 21944:1 21951:2 21974:3 21989:1 21990:1 21991:1 21994:1 22024:1 22027:1 22039:1 22043:4 22044:1 22046:3 22048:2 22056:9 22059:1 22077:2 22078:1 22102:1 22107:4 22109:1 22113:1 22149:1 22175:1 22190:1 22196:1 22197:2 22210:1 22213:1 22239:1 22255:2 22260:1 22262:1 22267:1 22270:1 22282:1 22283:1 22296:1 22306:1 22322:1 22327:1 22341:2 22414:1 22422:2 22426:2 22431:1 22443:1 22446:1 22462:1 22513:1 22518:1 22527:1 22552:1 22557:2 22582:1 22601:1 22605:1 22610:1 22613:2 22626:1 22649:1 22659:1 22680:2 22681:1 22683:1 22689:1 22691:1 22704:1 22709:1 22710:1 22711:2 22724:1 22736:2 22747:1 22749:2 22754:1 22764:1 22770:1 22779:1 22782:3 22783:1 22801:2 22803:1 22809:2 22817:2 22819:1 22823:1 22831:2 22832:1 22834:1 22844:1 22849:2 22853:1 22855:1 22860:1 22864:1 22867:1 22885:1 22887:5 22890:1 22891:1 22892:1 22911:1 22913:2 22919:1 22935:1 22943:1 22954:1 22959:1 22970:1 22988:2 23000:2 23008:1 23014:1 23039:3 23095:2 23096:1 23107:1 23109:1 23111:1 23112:1 23142:1 23145:1 23151:1 23156:3 23157:1 23158:1 23166:1 23167:2 23170:1 23171:1 23178:1 23180:10 23181:4 23185:1 23186:1 23187:1 23193:3 23205:1 23214:1 23219:1 23221:1 23222:4 23238:1 23244:2 23251:1 23279:2 23282:5 23313:1 23325:1 23332:3 23338:1 23357:1 23368:1 23375:1 23386:1 23395:2 23399:3 23404:1 23408:3 23410:1 23433:1 23444:1 23448:1 23460:1 23466:3 23469:2 23478:1 23483:2 23486:1 23513:1 23546:1 23563:3 23567:2 23569:3 23581:1 23589:1 23594:1 23607:4 23615:1 23616:1 23625:1 23630:1 23631:1 23633:1 23641:1 23643:1 23644:7 23650:1 23651:1 23671:1 23674:1 23684:4 23690:1 23700:1 23731:2 23744:3 23752:1 23765:1 23775:1 23779:11 23786:2 23796:5 23802:1 23803:1 23804:2 23807:1 23809:1 23810:5 23831:2 23850:1 23856:1 23858:1 23862:2 23871:1 23878:1 23883:1 23885:1 23893:1 23899:5 23903:1 23915:1 23953:1 23959:1 23963:1 23979:1 23997:1 24025:1 24047:1 24053:1 24056:7 24068:1 24108:1 24142:2 24196:2 24200:1 24220:1 24224:1 24229:2 24278:1 24286:1 24308:1 24322:1 24374:3 24402:1 24404:1 24409:1 24417:1 24430:1 24447:1 24498:1 24500:1 24525:1 24545:1 24582:1 24601:1 24612:1 24614:3 24631:1 24633:2 24639:1 24644:1 24654:3 24662:1 24666:1 24682:1 24692:1 24703:1 24704:1 24724:1 24726:3 24733:1 24738:2 24741:1 24742:2 24751:1 24764:1 24770:1 24772:1 24785:1 24786:2 24799:1 24804:1 24833:1 24835:4 24845:1 24868:1 24870:1 24884:1 24886:3 24904:1 24918:2 24930:1 24953:1 24964:2 24994:1 24999:2 25029:2 25035:1 25065:2 25067:1 25080:2 25089:2 25120:1 25133:1 25181:1 25185:1 25193:1 25231:1 25250:2 25271:1 25310:1 25329:2 25331:1 25345:1 25348:1 25351:1 25355:1 25369:1 25371:1 25388:1 25405:1 25406:1 25408:1 25445:1 25481:2 25509:1 25522:1 25536:1 25538:1 25549:1 25572:1 25591:1 25603:5 25608:1 25625:1 25635:6 25652:2 25657:1 25664:1 25672:1 25680:1 25682:1 25684:1 25685:1 25712:4 25724:2 25729:1 25739:1 25775:1 25786:1 25799:13 25850:5 25916:2 25918:1 25921:1 25930:3 25932:1 25935:2 25940:2 25943:1 25949:1 25963:1 25970:1 25972:3 25989:4 25994:1 25996:1 25997:1 26012:1 26015:1 26049:3 26051:1 26055:1 26058:1 26064:1 26080:3 26083:1 26090:1 26094:2 26099:1 26103:1 26104:1 26110:1 26120:4 26122:1 26157:1 26165:1 26178:1 26207:1 26215:1 26254:2 26269:1 26278:1 26289:1 26301:1 26308:1 26313:2 26314:2 26316:1 26318:1 26327:1 26332:1 26381:2 26397:3 26413:1 26430:1 26439:1 26449:1 26453:3 26456:4 26464:1 26504:6 26505:3 26548:2 26566:1 26591:2 26599:1 26607:1 26626:1 26639:1 26647:1 26689:1 26703:7 26729:4 26752:1 26762:1 26763:1 26769:1 26795:1 26828:1 26833:1 26848:1 26855:2 26857:3 26883:1 26889:1 26904:3 26913:2 26929:1 26930:1 26938:2 26956:3 26959:3 26962:1 26964:2 26980:1 26992:1 27001:6 27020:1 27023:1 27039:3 27040:1 27062:1 27089:1 27152:1 27157:3 27162:2 27175:1 27201:1 27207:2 27243:2 27262:1 27269:2 27279:1 27280:1 27282:3 27290:1 27295:1 27306:1 27324:1 27347:1 27350:1 27383:1 27406:1 27422:1 27449:1 27482:1 27491:1 27498:4 27537:1 27580:1 27584:1 27603:1 27614:1 27619:1 27624:1 27627:1 27631:1 27648:2 27653:1 27661:1 27710:3 27732:1 27748:1 27755:1 27760:1 27783:1 27797:6 27798:1 27808:1 27818:1 27854:1 27858:2 27881:1 27892:2 27896:2 27901:1 27909:1 27916:1 27917:4 27927:1 28004:1 28037:1 28049:1 28069:1 28079:1 28096:1 28100:1 28102:1 28103:3 28138:1 28139:1 28146:1 28152:1 28157:1 28165:4 28173:1 28176:1 28177:3 28205:2 28207:1 28225:2 28231:1 28241:1 28280:1 28290:2 28305:1 28327:1 28338:1 28342:3 28360:1 28379:4 28397:1 28435:1 28469:1 28482:1 28483:1 28486:1 28496:3 28527:1 28561:2 28576:3 28589:1 28597:1 28614:1 28646:1 28684:1 28688:1 28690:1 28710:1 28726:3 28727:1 28736:1 28738:1 28759:1 28780:1 28782:1 28818:1 28822:1 28825:1 28836:1 28843:3 28924:1 28948:3 28964:1 29010:1 29014:1 29015:1 29020:1 29025:1 29032:1 29052:1 29054:1 29063:1 29074:1 29078:1 29081:1 29088:1 29092:1 29093:1 29098:2 29109:1 29111:2 29119:1 29122:1 29128:2 29130:1 29133:1 29134:1 29137:2 29144:2 29152:1 29154:1 29158:1 29160:1 29188:1 29189:1 29196:1 29197:2 29215:1 29224:7 29225:1 29227:1 29228:1 29235:1 29236:2 29238:1 29239:1 29249:2 29253:1 29259:1 29282:1 29284:1 29295:1 29304:1 29334:1 29336:1 29340:1 29344:1 29354:1 29360:1 29363:2 29386:1 29397:1 29415:1 29444:1 29447:3 29450:3 29469:1 29534:1 29539:1 29576:1 29579:1 29590:1 29593:2 29596:1 29610:1 29633:1 29661:1 29679:1 29689:1 29702:1 29723:3 29729:1 29735:1 29760:2 29771:1 29778:1 29779:2 29781:3 29787:2 29788:1 29789:1 29790:1 29804:1 29818:1 29825:2 29826:1 29837:1 29851:1 29860:1 29887:31 29888:4 29893:4 29896:1 29910:2 29918:1 29933:1 29934:1 29938:7 29946:4 30001:1 30008:1 30039:3 30052:1 30062:1 30069:3 30078:4 30112:10 30118:1 30124:2 30130:1 30149:1 30159:1 30164:1 30165:1 30194:1 30197:1 30199:3 30207:1 30217:1 30243:1 30281:1 30289:2 30329:1 30331:1 30341:1 30345:1 30350:1 30358:2 30361:2 30377:1 30382:1 30388:1 30399:1 30401:1 30436:7 30438:1 30457:1 30465:1 30476:1 30510:2 30513:8 30523:1 30534:3 30537:1 30538:1 30541:1 30556:1 30660:1 30675:1 30678:1 30692:4 30693:3 30694:3 30697:1 30720:2 30741:1 30754:1 30801:1 30842:1 30844:2 30846:1 30848:1 30858:1 30864:2 30869:3 30874:1 30877:2 30884:8 30907:3 30909:2 30925:1 30940:1 30953:1 30956:1 30981:1 30986:3 31003:2 31035:1 31048:2 31055:1 31066:1 31089:1 31093:3 31100:1 31118:1 31142:2 31153:1 31154:1 31195:1 31205:1 31208:1 31212:2 31216:2 31222:1 31223:1 31231:1 31235:1 31238:2 31243:2 31246:1 31248:1 31250:1 31251:1 31260:1 31287:1 31299:1 31313:1 31373:1 31385:1
a223d33e515955024f2aef90844a1caa5ddfb884
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set5/s_Electrical_And_Electronic_Principles_And_Technology_J._Bird_1529.zip/Electrical_And_Electronic_Principles_And_Technology_J._Bird_1529/CH3/EX3.12/3_12.sce
48e45dd3a4779408d84ba072d4d331a86510ca8b
[]
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
338
sce
3_12.sce
errcatch(-1,"stop");mode(2);//Chapter 3, Problem 12 t=18 //tempreture in celsius R1=200 //resistance in ohm Rt=240 //resistance in ohm tc=0.0039 //tempreture coefficient of resistance t1=((Rt-R1)/(R1*tc))+t printf("Tempreture = %.2f degree celsius",t1) exit();
cba7e15123a4a8548c1051cda24086c04cbd43f5
449d555969bfd7befe906877abab098c6e63a0e8
/3731/CH4/EX4.4/Ex4_4.sce
532a31e96119162d909ec989630cc059aa9a342f
[]
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
656
sce
Ex4_4.sce
//Chapter 4: Selection of Motor Power Rating //Example 4 clc; //Variable Initialization Cr=60 //Heating time constant in minutes Cs=90 //Cooling time constant in minutes P=20 //Full load in kW //Solution //Part-i a=0 tr=10 //Time to deliver in minutes x=exp(-tr/Cr) K=sqrt(1/(1-x)) P1=K*P //Permitted load //Part-ii a=0 tr=10 //Intermittent load period allowed in minutes ts=10 //Shutdown time period in minutes x=exp(-(tr/Cr+ts/Cs)) y=exp(-tr/Cr) K=sqrt((1-x)/(1-y)) P2=K*P //Permitted load mprintf("\ni)Required permitted load:%d kW",P1) mprintf("\nii)Required permitted load:%.2f kW",P2)
85e9603fd7b03799918733ee08a234fbc12ee0a4
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.0/Unix/scilab-2.0/tests/bezout.tst
b96f88a95041023d8855663dc3162773ad421563
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer", "MIT" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
4,518
tst
bezout.tst
//FICHIER_DE_TEST ADD NAME=bezout.tst,SSI=0 mode(5) //test un=poly(1,'s','c'); zer=0*un; s=poly(0,'s'); [p,q]=bezout(un,s); if norm(coeff([un s]*q-[p 0]))>10*%eps then pause,end [p,q]=bezout(s,un); if norm(coeff([s un]*q-[p 0]))>10*%eps then pause,end [p,q]=bezout(un,un); if norm(coeff([un un]*q-[p 0]))>10*%eps then pause,end // [p,q]=bezout(zer,s); if norm(coeff([zer s]*q-[p 0]))>10*%eps then pause,end [p,q]=bezout(s,zer); if norm(coeff([s zer]*q-[p 0]))>10*%eps then pause,end [p,q]=bezout(zer,zer); if norm(coeff([zer zer]*q-[p 0]))>10*%eps then pause,end // [p,q]=bezout(zer,un); if norm(coeff([zer un]*q-[p 0]))>10*%eps then pause,end [p,q]=bezout(un,zer); if norm(coeff([un zer]*q-[p 0]))>10*%eps then pause,end // //simple a=poly([1 2 3],'z'); b=poly([4 1],'z'); [p q]=bezout(a,b); dt=q(1,1)*q(2,2)-q(1,2)*q(2,1);dt0=coeff(dt,0); if norm(coeff(dt/dt0-1))>10*%eps then pause,end qi=[q(2,2) -q(1,2);-q(2,1) q(1,1)]/dt0; if norm(coeff([p 0]*qi-[a b]))>100*%eps then pause,end //more difficult b1=poly([4 1+1000*%eps],'z');del=10*norm(coeff(b1-b)); [p,q]=bezout(a,b1); dt=q(1,1)*q(2,2)-q(1,2)*q(2,1);dt0=coeff(dt,0); if norm(coeff(dt/dt0-1))>del then pause,end qi=[q(2,2) -q(1,2);-q(2,1) q(1,1)]/dt0; if norm(coeff([p 0]*qi-[a b1]))>del then pause,end b1=poly([4 1+.001],'z');del=10*norm(coeff(b1-b)); [p,q]=bezout(a,b1); dt=q(1,1)*q(2,2)-q(1,2)*q(2,1);dt0=coeff(dt,0); if norm(coeff(dt/dt0-1))>100000*%eps then pause,end qi=[q(2,2) -q(1,2);-q(2,1) q(1,1)]/dt0; if norm(coeff([p 0]*qi-[a b1]))>100000*%eps then pause,end b1=poly([4 1+10000*%eps],'z');del=10*norm(coeff(b1-b)); [p,q]=bezout(a,b1); dt=q(1,1)*q(2,2)-q(1,2)*q(2,1);dt0=coeff(dt,0); if norm(coeff(dt/dt0-1))>del then pause,end qi=[q(2,2) -q(1,2);-q(2,1) q(1,1)]/dt0; if norm(coeff([p 0]*qi-[a b1]))>del then pause,end // z=poly(0,'z'); num = 0.99999999999999922+z*(-4.24619123578530730+.. z*(10.0503215227460350+z*(-14.6836461849931740+.. z*(13.924822877119892+z*(-5.63165998008533460+.. z*(-5.63165998008530710+z*(13.9248228771198730+.. z*(-14.683646184993167+z*(10.0503215227460330+.. z*(-4.24619123578530910+z*(0.99999999999999989))))))))))); den = -0.17323463717888873+z*(1.91435457459735380+.. z*(-9.90126732768255560+z*(31.6286096652930410+.. z*(-69.3385546880304280+z*(109.586435800377690+.. z*(-127.516160100808290+z*(109.388684898145950+.. z*(-67.92645394857864+z*(29.1602681026148110+.. z*(-7.8212498781094952+z*(0.99999999999999989))))))))))); // [p,q]=bezout(num,den);del=1.d-4; dt=q(1,1)*q(2,2)-q(1,2)*q(2,1);dt0=coeff(dt,0); if norm(coeff(dt/dt0-1))>del then pause,end qi=[q(2,2) -q(1,2);-q(2,1) q(1,1)]/dt0; // JPC del=3*del if norm(coeff([p 0]*qi-[num den]))>del then pause,end if degree(p)>0 then pause,end // une autre "solution" telle que l'erreur directe est petite mais l'erreur // inverse grande q1=[] q1(1,1)=poly([0.011533588674 , 3.570224012502 , -28.78817740957 ,... 102.9479419903, -210.8258579715 , 266.2028963639 ,... -207.427018299 , 92.74478640319, -18.5259652457],'z','c'); q1(1,2)=poly([0.000270220664 , -0.002465565223 , 0.010039706635 ,... -0.023913827007, 0.036387144032 , -0.036175176058 ,... 0.022954475171 , -0.008514798968, 0.001417382492],'z','c'); q1(2,1)=poly([0.000639302018 , 20.502472606 , -26.66621972106 ,... 39.74001534015, -5.945830824342 , -7.973226036298 ,... 39.84118622788 , -26.51337424414, 18.5259652457],'z','c'); q1(2,2) =poly( [0.001562930385 , -0.003589174974 , 0.005076237479 ,... -0.003483568682, -0.000135940266 , 0.003651509121 ,... -0.005059502869 , 0.003447573440, -0.001417382492],'z','c'); p1 =poly( [0.011422839421 , -0.029264363070 , 0.030070175223 ,... -0.012596066108],'z','c'); // //simplification num =[0.03398330733500143,-0.20716057008572933,0.64660689206696986,... -1.97665462134021790,3.38751027286891300,-3.58940006392108120,... 5.09956159043231680,5.2514918861834694,1.00000000000000020]; den = [0.03398330733500360,-0.20716057008816283,0.64660689204312,... -1.97665462079896660,3.38751027286891300,-3.58940006392108350,... 5.09956159043232040,5.2514918861834712,1]; num=poly(num,'z','c'); den=poly(den,'z','c'); [p,q]=bezout(num,den);del=1.d-8; dt=q(1,1)*q(2,2)-q(1,2)*q(2,1);dt0=coeff(dt,0); if norm(coeff(dt/dt0-1))>del then pause,end qi=[q(2,2) -q(1,2);-q(2,1) q(1,1)]/dt0; if norm(coeff([p 0]*qi-[num den]))>del then pause,end if degree(p)<8 then pause,end
9afb978afeb52e048ff65632b573cc934d11367a
449d555969bfd7befe906877abab098c6e63a0e8
/2090/CH4/EX4.14/Chapter4_Example14.sce
1e45f27c9b78a2fb829d924d01f38bc9dca9e33d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
2,245
sce
Chapter4_Example14.sce
clc clear //Input data r=8;//The compression ratio T1=350;//The given temperature at the start of compression in K p=1;//The given pressure at the start of compression in bar f=0.08;//The exhaust residual fraction cv=44000;//The calorific value in kJ/kg //Calculations W1=150;//Isentropic compression functions for corresponding temp T1 in J/kg air K W2=W1-(292*log(1/r));//Isentropic compression function in J/kg air K T2=682;//The temperature corresponding to isentropic compression function in K V1=(292*T1)/(p*10^5);//The initial volume in m^3/kg air p2=p*(T2/T1)*r;//The pressure at point 2 in atm V2=V1/r;//The volume at point 2 in m^3/kg air us2=350;//The internal energy corresponding to temp T2 in K us1=40;//The internal energy corresponding to temp T1 in K Wc=us2-us1;//Adiabatic compression work in kJ/kg air ufu=-118.5-(2963*f);//The internal energy of formation in kJ/kg air u3=us2+ufu;//The internal energy at point 3 in kJ/kg air V3=V2;//The volume at point 3 in m^3/kg air T3=2825;//The temperature at point 3 corresponding to u3,V3 on the burned gas chart in K p3=7100;//The pressure at point 3 in kN/m^2 s3=9.33;//Entropy at point 3 in kJ/kg air K s4=s3;//Entropy is same in kJ/kg air K V4=V1;//The volume at point 4 in m^3/kg air u4=-1540;//The internal energy at point 4 corresponding to V4,s4 in kJ/kg air p4=570;//The pressure at point 4 in kN/m^2 T4=1840;//The temperature at point 4 in K We=u3-u4;//The expansion work in kJ/kg air Wn=We-Wc;//The net work output in kJ/kg air nth=[(Wn)/((1-f)*0.0662*cv)]*100;//The indicated thermal efficiency in percent imep=((Wn*1000)/(V1-V2))/10^5;//The indicated mean effective pressure in bar nv=[((1-f)*287*298)/(1.013*10^5*(1-0.125))]*100;//The volumetric efficiency in percent //Output printf('(a)At point 2, \n The temperature is %3.0f K \n The pressure is %3.1f atm \n At point 3, \n The temperature is %3.0f K \n The pressure is %3.0f kN/m^2 \n At point 4, \n The temperature is %3.0f K \n The pressure is %3.0f kN/m^2 \n (b)The indicated thermal efficiency is %3.1f percent \n (c)The indicated mean effective pressure is %3.0f bar \n (d)The volumetric efficiency is %3.1f percent',T2,p2,T3,p3,T4,p4,nth,imep,nv)
0046532578473dab6323ad23eb4d7c28d1cbddf7
449d555969bfd7befe906877abab098c6e63a0e8
/1388/CH1/EX1.6/1_6.sce
5082dd0b0a9682b6471e25ad946dc2352f725db4
[]
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
255
sce
1_6.sce
clc //initialisation of variables n= 10 //moles T= 300 //K V= 4.86 //l R= 0.08205 //atml/molK v= 0.1417 //l T1= 305.7 //K //CALCULATIONS b= v/2 a= 2*v*R*T1 P= ((n*R*T)/(V-n*b))*2.71^(-a*n/(V*R*T)) //RESULTS printf (' Pressure = %.1f atm',P)
d725634a7991628a4425ffd432c494766a4aab5c
da5b40d917ec2982828bd9bdf06b18b7bf189f26
/sim/scripts/volumebalance.tst
36cdb64e26146f325ec89abdb442fba3839cab38
[]
no_license
psy007/NNPC-CHEMICAL-SIM-
4bddfc1012e0bc60c5ec6307149174bcd04398f9
8fb4c90180dc96be66f7ca05a30e59a8735fc072
refs/heads/master
2020-04-12T15:37:04.174834
2019-02-06T10:10:20
2019-02-06T10:10:20
162,587,144
1
0
null
null
null
null
UTF-8
Scilab
false
false
2,672
tst
volumebalance.tst
$thermo = VirtualMaterials.Advanced_Peng-Robinson . -> $thermo cd thermo cd $ cd /thermo /thermo + METHANE ETHANE PROPANE n-HEXANE n-HEPTANE n-OCTANE n-NONANE cd / mixer1 = Mixer.Mixer() cd mixer1 NumberStreamsIn = 3 /mixer1.In0.P = 100 /mixer1.In1.P = 110 /mixer1.In2.P = 105 cd /mixer1.In0.Fraction /mixer1.In0.Fraction = 0 0 0 1 1 1 1 cd /mixer1 /mixer1.In0.T = 30 cd /mixer1.In1.Fraction /mixer1.In1.Fraction = 0.0 0.0 0.0 2 3 1 2 cd /mixer1 /mixer1.In1.T = 20 cd /mixer1.In2.Fraction /mixer1.In2.Fraction = 0.0 0.0 0.0 5 6 3 5 cd /mixer1 /mixer1.Out.T = 40 /mixer1.In0.VolumeFlow = 20 /mixer1.In1.VolumeFlow = 40 /mixer1.Out.VolumeFlow = 150 /mixer1.Out.T = #Solve for vol in In2 and composition in Out /mixer1.In2.T = 40 /mixer1.In0 /mixer1.In1 /mixer1.In2 /mixer1.Out #Solve for vol in Out and composition in In2 /mixer1.In2.T = /mixer1.Out.VolumeFlow = cd /mixer1.In2.Fraction /mixer1.In2.Fraction = None cd /mixer1 cd /mixer1.Out.Fraction /mixer1.Out.Fraction = 0.0 0.0 0.0 0.25784 0.32313 0.16119 0.25784 cd /mixer1 /mixer1.In2.VolumeFlow = 90.016371 /mixer1.Out.T = 33.347474 /mixer1.In0 /mixer1.In1 /mixer1.In2 /mixer1.Out #Solve for vol in In1 and composition in In2 /mixer1.In1.VolumeFlow = /mixer1.Out.VolumeFlow = 150 /mixer1.In0 /mixer1.In1 /mixer1.In2 /mixer1.Out #Solve for vol in In0 and composition in In2 /mixer1.In0.VolumeFlow = /mixer1.In1.VolumeFlow = 40 /mixer1.In0 /mixer1.In1 /mixer1.In2 /mixer1.Out #Solve for vol in In0 and composition in In1 /mixer1.In1.VolumeFlow = /mixer1.In1.Fraction = None /mixer1.In2.Fraction = 0.0 0.0 0.0 0.26316 0.31579 0.15789 0.26316 /mixer1.In1.T = /mixer1.In2.T = 40 /mixer1.In0.VolumeFlow = 20 /mixer1.In0.VolumeFlow = /mixer1.In1.VolumeFlow = 40 /mixer1.In0 /mixer1.In1 /mixer1.In2 /mixer1.Out #Solve for vol in In2 and composition in In1 /mixer1.In2.VolumeFlow = /mixer1.In0.VolumeFlow = 20 /mixer1.In0 /mixer1.In1 /mixer1.In2 /mixer1.Out #Now change specs to std vol flow /mixer1.Out.VolumeFlow = /mixer1.Out.StdLiqVolumeFlow = 150 /mixer1.In0 /mixer1.In1 /mixer1.In2 /mixer1.Out /mixer1.In1.VolumeFlow = /mixer1.In1.StdLiqVolumeFlow = 40 /mixer1.In0 /mixer1.In1 /mixer1.In2 /mixer1.Out /mixer1.In0.VolumeFlow = /mixer1.In0.StdLiqVolumeFlow = 20 /mixer1.In0 /mixer1.In1 /mixer1.In2 /mixer1.Out #Deleting temperatures should still be able to balance moles /mixer1.Out.T = /mixer1.In2.T = /mixer1.In0.T = /mixer1.In0 /mixer1.In1 /mixer1.In2 /mixer1.Out #Changing specs should work /mixer1.In0.StdLiqVolumeFlow = /mixer1.In2.StdLiqVolumeFlow = 90 /mixer1.Out.StdLiqVolumeFlow = /mixer1.In0.StdLiqVolumeFlow = 20 /mixer1.In0 /mixer1.In1 /mixer1.In2 /mixer1.Out
f428c37935f8f686b95f61dd5c1e4ed6b93b42b3
9d0ab5efb08cc05ae362e8a981bdf5fa2debd7f6
/02/Add32.tst
5c84da6a6a528d68dbf4af657539e54f195f7c99
[]
no_license
nandha1nks/Nand2Tetris
bca96e324a1ff7ed425e33a37e3b7579d38fd29f
82769b7a4e69b11c0bacd100991dfdf2b36a5f1d
refs/heads/master
2023-01-02T11:57:25.843133
2020-10-29T10:10:27
2020-10-29T10:10:27
295,441,600
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,054
tst
Add32.tst
// This file is part of www.nand2tetris.org // and the book "The Elements of Computing Systems" // by Nisan and Schocken, MIT Press. // File name: projects/02/Add16.tst load Add32.hdl, output-file Add32.out, //compare-to Add32.cmp, output-list a1%B1.16.1 a0%B1.16.1 b1%B1.16.1 b0%B1.16.1 out1%B1.16.1 out0%B1.16.1; set a0 %B0000000000000000, set b0 %B0000000000000000, set a1 %B0000000000000000, set b1 %B0000000000000000, eval, output; set a0 %B0000000000000000, set b0 %B1111111111111111, set b1 %B0000000000000000, set a1 %B1111111111111111, eval, output; set a0 %B1111111111111111, set b0 %B1111111111111111, set a1 %B0000000000000000, set b1 %B1111111111111111, eval, output; set a0 %B1010101010101010, set b0 %B0101010101010101, set b1 %B1010101010101010, set a1 %B0101010101010101, eval, output; set a0 %B0011110011000011, set b0 %B0000111111110000, set a1 %B1010101010101010, set b1 %B0101010101010101, eval, output; set a0 %B0001001000110100, set b0 %B1001100001110110, set a1 %B1010101010101010, set b1 %B0101010101010101, eval, output;
b293770bab39b27d6ce03bfec9bc720d2c984dee
449d555969bfd7befe906877abab098c6e63a0e8
/797/CH5/EX5.7.s/5_07_solution.sce
758558a748a035549cdaa49a7d8dbeca55735cf5
[]
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
855
sce
5_07_solution.sce
//Solution 5-07 WD=get_absolute_file_path('5_07_solution.sce'); datafile=WD+filesep()+'5_07_example.sci'; clc; exec(datafile) P_atm = P_atm * 1000; //conversion from [kPa] to [Pa] D = D / 1000; //conversion from [mm] to [m] V = V / 1000; //conversion from [litres] to [m^3] //(a) V_2 = sqrt(2 * g * z_1); //Toricelli equation A = %pi * D^2 / 4; Vdot = V_2 * A; //continuity equation dt = V / Vdot; printf("\nVelocity of water entering the gas can is %1.2f m/s", V_2); printf("\nArea of cross section of siphon is %1.2e m^2", A); printf("\nVolume flow rate of gasoline is %f L", Vdot * 1000); printf("\nTime needed to siphon 4L of gasoline is %1.2f s", dt); //(b) P_3 = P_atm - rho * g * z_3; //application of Bernoulli equation between 2 and 3 P_3 = P_3 / 1000; //conversion from [Pa] to [kPa] printf("\nPressure at point 3 in siphon is %1.2f kPa", P_3);
a81a8de6140cae0a4fa2cce62e4266d0c24a87ba
449d555969bfd7befe906877abab098c6e63a0e8
/3845/CH33/EX33.2/Ex33_2.sce
55887eda667e0f51de33c0b326ff87bc9e5d1963
[]
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
413
sce
Ex33_2.sce
//Example 33.2 //V_gap=Sum of gap voltages/Number of gaps //Sum of gap voltages=800MV, since to produce a 800MeV proton beam, the proton gains 1eV per volt across each gap it passes through //Number of gaps=2000 V_gap=800*10^6/2000; printf('The average voltage to be applied between the tubes = %d kV',V_gap/1000) //Openstax - College Physics //Download for free at http://cnx.org/content/col11406/latest
13c6c293b6f6fa55788020ddccfa39af5e78b948
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.5/tests/examples/tf2des.man.tst
0ec82a0640896c85b8ac510099af0579290d781b
[ "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
110
tst
tf2des.man.tst
clear;lines(0); s=poly(0,'s'); G=[1/(s-1),s;1,2/s^3]; S1=tf2des(G);des2tf(S1) S2=tf2des(G,"withD");des2tf(S2)
138c985629fbdb3686b884094dd7acc825404abf
fd6e45f66c41ad779a3d47c3bf8ebfa140d3d657
/P4 - Linear equations systems: direct methods/Implementaciones/4- Cholesky.sci
33ce5301e48d798b470ff1591eef3894742ffa5d
[]
no_license
jere1882/Numerical-Analysis-Assignments
7f474e2020d010f9f9c3dceff5e48c03b0d38652
1074f92ca93d0a402259f92a0f61f105f25e5230
refs/heads/master
2021-09-06T20:00:36.411386
2018-02-10T18:04:38
2018-02-10T18:04:38
121,039,769
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,122
sci
4- Cholesky.sci
function [U] = cholesky(A, eps) //En matemáticas, la factorización o descomposición de Cholesky toma su nombre del matemático André-Louis Cholesky, quien encontró que una matriz simétrica definida positiva puede ser descompuesta como el producto de una matriz triangular inferior y la traspuesta de la matriz triangular inferior. La matriz triangular inferior es el triángulo de Cholesky de la matriz original positiva definida. El resultado de Cholesky ha sido extendido a matrices con entradas complejas. Es una manera de resolver sistemas de ecuaciones matriciales y se deriva de la factorización LU con una pequeña variación. n = size(A, 1) U = zeros(n, n) for i = 1:n t=A(i,i) - A(1:i-1,i)' * A(1:i-1,i) A(i,i)=sqrt(t) for j=i+1:n A(i,j)= ( A(i,j) - A(1:i-1 , i)' * A(1:i-1 ,j) )/A(i,i) end end // NO SÉ COMO EXTRAER EL TRIÁNGULO INFERIOR. PREGUNTAR. // HELP EXTTRI for i=1:n for j=i:n U(i,j)=A(i,j) end end endfunction
71319443c4ba9a6d8488faa0bab641a06fa521f6
449d555969bfd7befe906877abab098c6e63a0e8
/1478/CH2/EX2.18.7/2_18_7.sce
6bffb35a33c5c6f66da68926432b79d4f0fd7ec2
[]
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
381
sce
2_18_7.sce
//water and its treatment// //example 2.18.7// clc Hardness_ppm=304//ppm in terms of CaCO3// Cl=0.07*Hardness_ppm//0.07 °Clarke =1 ppm// Fr=0.1*Hardness_ppm//0.1 °French =1 ppm// mgperlit=Hardness_ppm printf("Hardness in terms of °Clarke %.2f °Cl",Cl); printf("\nHardness in terms of °French %.1f °Fr",Fr); printf("\nHardness in terms of mg/lit %.0f mg/l",mgperlit);
b3cf682afae81817f7b1c05d9509ad034819c671
449d555969bfd7befe906877abab098c6e63a0e8
/1241/CH2/EX2.21/exa2_21.sce
ef338d3d4283ebc74a87886e8a9c8805083f3fd2
[]
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
166
sce
exa2_21.sce
//Example 2-21// //Decimal to hexadecimal conversion// a=dec2hex(72905) //hexadecimal equivalent of the decimal number// disp(a) //answer in hexadecimal form//
af1edcbaf4304b90bf13fe3222002dfbefe91d39
449d555969bfd7befe906877abab098c6e63a0e8
/2258/CH5/EX5.3/5_3.sce
704c91bd4a3e84e47b178e4275459e4b002c81d5
[]
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
255
sce
5_3.sce
clc(); clear; // To calculate the penetration depth lamda_T=75; // penetration depth in nm T=3.5; //temperature in K HgTc=4.12; //in K lamda_0=lamda_T*sqrt(1-((T/HgTc)^4)); printf("the pentration depth at 0k is %f nm",lamda_0);
11b20772a239ef717e008076a2158fddf02fe5aa
da80ade9da8af4cacd3e50446f56898e894a1014
/code_fonctions_partie_1.sce
d9cdb5c133ddb3d3968c907029d9b402d0e9f0dd
[]
no_license
RichaMax/TP_MNB_s2
207c1d25418d1f16092b2745d40e0abf1936d42a
de2a59d0691d2f3c684313645e68edddc8050462
refs/heads/master
2021-09-13T17:37:14.520456
2018-05-02T15:57:29
2018-05-02T15:57:29
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,894
sce
code_fonctions_partie_1.sce
//question 3 //creation de la fonction rhs function [F]=rhs(Y) F(1)=Y(3); F(2)=Y(4); F(3)=-max((Y(1)-Y(2)),0).^(3/2); F(4)=max((Y(1)-Y(2)),0).^(3/2); endfunction //fonction caclulant la matrice des solutions par le schéma //d'euler explicite function [sol]=eulerexp(Y,T,h) N = T/h; sol = ones(N+1,4); for i = 1:N+1 sol(i,:) = Y; tmp = rhs(Y) Y = Y + h*tmp'; end endfunction //Question 4 //fonction traçant les differents graphiques demandés function plot_euler_explicite(Y,T,h) N = T/h //definition du vecteur de temps temps = [0:1*h:T]; //defintions des differents vecteurs qui vont contenir la solution numeirque //pour chaque "pas" x1 =zeros(1:N+1); x2 =zeros(1:N+1); v1 =zeros(1:N+1); v2 =zeros(1:N+1); //on remplit les vecteurs solutions for i = 1:N+1 x1(i) = Y(i,1); x2(i) = Y(i,2); v1(i) = Y(i,3); v2(i) = Y(i,4); end //on traces les graphiques clf() subplot(211) plot(temps,x1,temps,x2, 'r') legend("Courbe d évolution de x_1 ","Courbe d évolution de x_2 ") a=get("current_axes"); a.title type(a.title) a.x_label a.y_label xtitle("Evolution des déplacements en fonction du temps", "temps","$x_i(t)$") subplot(212) plot(temps,v1,temps,v2, 'r') legend("Courbe d évolution de v_1 ","Courbe d évolution de v_2 ", opt_args = 3) a=get("current_axes"); a.title type(a.title) a.x_label a.y_label xtitle("Evolution des vitesses en fonction du temps", "temps","$v_i(t)$") xs2jpg(0,"graphe pour h="+string(h)+".jpg",1) endfunction //appel des fonctions et parametres d'appels T = 4 Y = [0,0,1,0] h = [1e-1,1e-2,1e-3] for i = 1:3 //boucle pour les differentes valeurs de h solution = eulerexp(Y,T,h(i)); plot_euler_explicite(solution,T,h(i)); end
3628a95091fa38861619e7ba377129132e97c7db
449d555969bfd7befe906877abab098c6e63a0e8
/1052/CH11/EX11.5/115.sce
a370d96bc42a347bf54341acb74a7f2260bffbf3
[]
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
115.sce
clc //Example 11.5 //Page no. 116 printf("Example 11.5-Page no.1 116\n\n") //given //specific volume(V),temperature(T),pressure(P) V=12.084//ft^3/lb T=70//degree F P=1//atm R=0.73 T=T+460//rankin Mw=(R*T)/(P*V) printf("molecular weight of gas Mw=%f",Mw)
b33ebe97b0fe255c3982f88b43f9f0b1f61ff73e
1ccfcf39e5941044f7809d7bd29f3a001877ffac
/experimento_01/eco.sce
d7a16183d08ee2f770855c83fd4162cc23078663
[]
no_license
victoribeir0/experimentos_pds
9ebe7aa4f678fa7e39942398543217bc2d6807a7
283fcfd16b743ae8cc864e0f5abcac955c8552d0
refs/heads/main
2023-04-30T01:48:48.984254
2021-05-01T09:25:13
2021-05-01T09:25:13
351,879,262
0
0
null
null
null
null
UTF-8
Scilab
false
false
804
sce
eco.sce
/* Eco com filtro comb. x = Sinal de entrada. d = Atraso (em amstras). t = Tempo de decaímento (em amostras). f = Feedback, controla o quanto do sinal atrasado é incluído na efeito. y = Sinal de saída com eco. */ function y = eco(x,d,t,f) N = length(x); // Dimensão do sinal. y = zeros(1,N+t); // Sinal de saida com eco. // Sinal x de entrada 'crescido', para ficar do mesmo tamanho da saída e evitar problemas no laço for. xx = zeros(1,N+t); xx(1:N) = x; // A parte inicial do sinal de saída é igual a entrada, o eco começa a partir de d. y(1:d) = x(1:d); // Filtro comb, indo até o número de amostras de atraso. for n = d:N+t y(n) = xx(n) + f*y(n-(d-1)); end endfunction
3f15588c6f1c789432d4094d378bfc068d3cbbdb
449d555969bfd7befe906877abab098c6e63a0e8
/686/CH4/EX4.1/Ex4_1.sci
713288c360dc6c4ceeb2cb5c71e0e9441209dc8a
[]
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
770
sci
Ex4_1.sci
clc(); clear; // To measure an unsteady state temperature with a thermometer and half value time // Half value time is the time within which the initial difference etween the true and indicated temperature is reduced to half its initial value l = 0.01/2; // Length of cylindrical tube in ft a = 0.178; // Thermal diffusivity in ft^2/hr k = 5; // Thermal conductivity in Btu/hr-ft-F h = 10; // Heat transfer coefficient in Btu/hr-ft^2-F Bi = h*l/k; // Biot number // For half time th = 0.693*l*l*3600/(Bi*a); // Half time in hr printf("The half time for unsteady change temperature change is %d sec",th);
a05a1d513d732bcd51424b039448b7e7243e21b7
78ff3e16a288175ff606f38ee5ee877d4844773e
/12_chapter/12_04_solution.sce
2c12d3f3410fd08e4c17671a05ea6d8d146c8ab8
[]
no_license
rngalvan/fluid-mech-cengel
16c12ed8f71f25c812700be4322328c5663b71cf
ee45f924e73cbb8b5716fac43504dac15ffd1f64
refs/heads/master
2021-05-27T20:52:22.586023
2013-04-17T04:25:37
2013-04-17T04:25:37
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,453
sce
12_04_solution.sce
//Solution 12-4 WD=get_absolute_file_path('12_04_solution.sce'); datafile=WD+filesep()+'12_04_example.sci'; clc; exec(datafile) //unit conversions P_i = P_i * 10**6; //from [MPa] to [Pa] c_p = c_p * 10**3; //from [kJ/kg.K] to [J/kg.K] T_i = T_i + 273; //from [C] to [K] A = A * 10**-4; //from [cm^2] to [m^2] R = R * 10**3; //from [kJ/kg.K] to [J/kg.K] P_b = P_b * 10**6 //from [MPa] to [Pa] T_0i = T_i + V_i**2 / (2 * c_p); //stagnation temperature P_0i = P_i * (T_0i / T_i)**(k / (k-1)); //stagnation pressure //As flow is assumed isentropic T_0 = T_0i; P_0 = P_0i; P_crit = 0.5283; //critical pressure ratio for air from table 12-2 //(a) for i=1:1:2 P_back = P_b(i) / P_0; //back pressure ratio printf("\nFor back pressure of %1.2f Pa\n", P_b(i)); if P_back >= P_crit then P_t = P_b(i); //exit pressure equals back pressure printf("The flow is not chocked\n"); Ma_t = sqrt(((1 / P_back)**((k -1) / k) - 1) * 2 / ( k - 1)); //Mach number T_t = (1 + (k - 1) / 2 * Ma**2)**-1 * T_0; //Temperature at throat of nozzle rho_t = P_t / (R * T_t); //from ideal gas equation V_t = Ma_t * sqrt(k * R * T_t); //air velocity mdot = rho_t * A * V_t; else printf("The flow is chocked\n"); Ma = 1; mdot = A * P_0 * sqrt(k / (R * T_0)) * (2 / (k + 1))**((k+1) / (2*(k - 1))); end printf("The mass flow rate of air through the nozzle is %1.2f kg/s", mdot); end
84b232da9cc2ef3bf6b0bf989df4620011085a2c
449d555969bfd7befe906877abab098c6e63a0e8
/2438/CH4/EX4.3/Ex4_3.sce
0baf633a8d74e08d8e0d2a0f7d4f0e6d09be024f
[]
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
767
sce
Ex4_3.sce
//======================================================================= // chapter 4 example 3 clc; clear; //input data E0 = 300*10^2; //local field in V/m P1 = 3.398*10^-7; //dipole moment Coulomb/m P2 = 2.124*10^-5; //dipole moment Coulomb/m e0 = 8.85*10^-12; //permittivity in F/m //formula //E10Ci=E0-(2*Pi/3*e0) //calculation E10C1 = E0-((2*P1)/(3*e0)); //local field of benzene in V/m E10C2 = E0-((2*P2)/(3*e0)); //local field of water in V/m //result mprintf('local field of benzene=%3.2e.V/m\n',E10C1); mprintf('local field of water=%3.2e.V/m\n',E10C2); //=======================================================================
8dc001256e3f63825cc1b6ca24f73b798cb29e71
91bba043768342a4e23ee3a4ff1aa52fe67f7826
/cs/142/1/tests/test8.tst
6f373fc26cb22b4380921d3e9b656f8411044fda
[]
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
835
tst
test8.tst
CSE 142: Compilers ; Interpreters Fall 2008 School of Information and Computer Science University of California, Irvine ; School of ICS ; Center for Embedded Computing ; Courses ; Contact ; Links ; About Shannon ; Course Policies Information about how our course is structured, course goals, and how course grades will be determined; Course Syllabus Lecture and Exam Schedule; Reading assignments (due before each lecture) for the course will also be posted here; Assignments ; Practice Exams Links to assignments and when applicable, practice exams; Useful Links and Resources Links to resources of interest, and for homework assistance
e89cee3e4564932eed62c298e52e0f8bf55f0e18
449d555969bfd7befe906877abab098c6e63a0e8
/527/CH6/EX6.13/6_13exam.sce
2cc7c42d38a6d6014ef8e83ca478eb1fddcccb41
[]
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
886
sce
6_13exam.sce
//Engineering and Chemical Thermodynamics //Example 6.13 //Page no :287 clear ;clc ; //Given C1 = 1.596 ; C2 = 1.591 ; C3 = -74.40 ; C4 = -0.561 ; A = [ 0 ,0.1 ,0.2 ,0.3 ,0.4 ,0.5 ,0.6 ,0.7 ,0.8 ,0.9 ,1] ; m = (-C1 + C2 + C3 * ( C4 * 0.25)) * 1000 ; disp(" Example: 6.13 Page no : 287") ; for i = 1:11 x_H2O = A(1,i) ; x_H2SO4 = 1- x_H2O ; h = C1 * x_H2SO4 + C2 * x_H2O + C3 * x_H2SO4 * x_H2O *(1 + C4 * x_H2SO4) ; C(1,i) = h * 10^3; end y1 = C(1,6) ; function y = f613(x) , y = -m * (x - 0.5 ) + y1 ; endfunction for i = 1:11 F(1,i) = f613(A(1,i)) ; end plot(A,C); plot(A,F) xtitle("Figure E6.13","x_H2O","h (J/mol)"); printf("\n H_bar_H2SO4 = %d J/mol H_bar_H2O = %d J/mol\n ",F(1,1),F(1,11)) ; disp(" The partial molar property can be obtained by drawing tangent at mole fraction 0.5 .")
f76a52b7fe51fa9484cd04dba48809d5e432c4fe
449d555969bfd7befe906877abab098c6e63a0e8
/1733/CH2/EX2.11/2_11.sce
b865b5850a03cb0bd6d0501cf247565e680c57d2
[]
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
362
sce
2_11.sce
//2.11 clc; Idc=50; Vdc=10*1000/Idc; Vm=200*%pi/2; PIV_central_tap=2*Vm; V_rating_central_tap =2*PIV_central_tap; printf("The rated voltage of full wave central tap transformer rectifier = %.2f V", V_rating_central_tap ) PIV_bridge=Vm; V_rating_bridge=2*PIV_bridge; printf("\nThe rated voltage of full wave bridge rectifier = %.2f V", V_rating_bridge )
dd582507d8c4f48f0dddd5ee2ced601b05c64f29
449d555969bfd7befe906877abab098c6e63a0e8
/32/CH12/EX12.12/12_12.sce
be6b3628e9bbad8d08659bdd0a5c17671d1d8f77
[]
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
905
sce
12_12.sce
//pathname=get_absolute_file_path('12.12.sce') //filename=pathname+filesep()+'12.12-data.sci' //exec(filename) //Pressure at which steam is supplied(in kPa): p1=1.5*10^3 //Pressure at exhaust(in kPa): p4=25 //Power output(in kW): P=250 //Expansion ratio: r=12 //Diameter of LP cylinder(in m): d=0.40 //Stroke length(in m): L=0.60 //Diagram factor: d1=0.75 //Expansion ratio in HP cylinder: r1=2.5 //Area of cylinder(in m^2): A=%pi*d^2/4 //Hypothetical mep(in kPa): mep=p1/r*(1+log(r))-p4 //Actual mep(in kPa): mepa=mep*d1 //Rpm of engine: N=P/(mepa*L*A*2)*60 printf("\n RESULT \n") printf("\nSpeed of engine = %d rpm",N) //Volume of LP cylinder(in m^3): V3=A*L V4=V3 //Cut-off volume in HP cylinder(in m^3): Vc=V4/r //Total volume in HP cylinder(in m^3): Vt=Vc*r1 //Diameter of HP cylinder(in m): D=sqrt(Vt*4/(L*%pi)) printf("\nDiameter of HP cylinder = %f cm",D*100)
60206038dbd986d808989f5d748f47c0808bf2bb
b32474ae2727233775f44c71edfe1f10b6a3430f
/newton.sce
4ff1861b5d2c7756741dcd4029cb906fb3cc8924
[]
no_license
lucaslyon96/scilab
8400b98c25dafa13069dd64bd391c15218323575
8fe45fd3bd27ab21490682874f72f9c20c8717e1
refs/heads/master
2020-03-18T12:25:20.253687
2018-05-24T14:49:08
2018-05-24T14:49:08
134,725,468
0
0
null
null
null
null
UTF-8
Scilab
false
false
216
sce
newton.sce
function [s]=newton(x,y,p) n=length(x) tabdifdiv=difdiv(x,y); s=y(1); for i=2 :n m=1 for j=1 :i-1 m=m*(p-x(j)) end s=s+m*tabdifdiv(1,i) end endfunction
eb0632789c48b5d151c28b4072cd8bed71fa2f8f
449d555969bfd7befe906877abab098c6e63a0e8
/3760/CH4/EX4.71/Ex4_71.sce
eb8bb0baf11c16d7e6b5ad8ce5dcebf565c8c509
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
445
sce
Ex4_71.sce
clc; v=440; // rated voltage of mootor no=2000; // no load speed n1=1000; // speed at full load torque Tl=0.5; // load torque as a fraction of rated torque n2=1050; // increased speed due to redued torque // field current is constant so flux is constant // since torqu gets reduced by half new armature current also gets reduced half i.e ia2=ia1/2; vd=(v*(n2-n1))/(n2-(n1/2)); printf('Armature voltage drop at full load is %d V',vd);
29280663c179c472a12d7371b9f4fc4846eb3ddb
449d555969bfd7befe906877abab098c6e63a0e8
/929/CH7/EX7.7.a/Example7_7_a.sce
1d5dc87b0df6495e13b139cf92eb1ee683fb8b45
[]
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
629
sce
Example7_7_a.sce
//Example 7.7(a) clear; clc; R1=100*10^3; R2=200*10^3; R3=68*10^3; enw=20*10^(-9); fce=200; ft=1*10^6; inw=0.5*10^(-12); fci=2*10^3; Rp=(R1*R2)/(R1+R2); Ano=1+(R2/R1); fB=ft/Ano; fL=0.1; Enoe=Ano*enw*sqrt([{fce*log(fB/fL)}+{1.57*fB}-fL]); Enoi=Ano*[{(R3^2)+(Rp^2)}^(1/2)]*inw*([(fci*log(fB/fL))+(1.57*fB)]^(1/2)); k=1.38*10^(-23); T=25+273;//Room temperature in Kelvin EnoR=Ano*[{(4*k*T)*(R3+Rp)*1.57*fB}^(1/2)]; Eno=sqrt((Enoe^2)+(Enoi^2)+(EnoR^2)); printf("RMS Output Noise Voltage=%.f uV",Eno*10^6); printf("\nPeak to Peak Noise Voltage=%.2f mV",6.6*Eno*10^3);
65c2873a397f1be3b678b912b603f418213d7b9e
449d555969bfd7befe906877abab098c6e63a0e8
/551/CH4/EX4.14/14.sce
c7ad70abd7850a967d800b198b32541e1e62cfbb
[]
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
194
sce
14.sce
clc dT=25; //0C Q=30; //kJ cv=1.2; //kJ/kg.0C m=2.5; //kg dU=m*cv*dT; disp("change in internal energy = ") disp(dU) disp("kJ") W=Q - dU; disp("Work done = ") disp(W) disp("kJ")
9dd34f6c1395a8334016709e2a1cdfc5a83d5ba0
449d555969bfd7befe906877abab098c6e63a0e8
/1247/CH5/EX5.20/example5_20.sce
6b1f9a67c6327892f6e1e2afaf18b6cc0c9c1004
[]
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
435
sce
example5_20.sce
clear; clc; // Stoichiometry // Chapter 5 // Energy Balances // Example 5.20 // Page 247 printf("Example 5.20, Page 247 \n \n"); // solution // basis 200 kg/h of Sulphur firing F = 200/32 // kmol/h O2req = 6.25*1.1 airin = O2req/.21 N2in = airin-O2req T1 = 1144.15 T2 = 463.15 fi = 788852.2 // kJ/h H = 15*4.1868+1945.2 qm = fi*.9/2008 // kg/h printf(" Amount of steam produced = "+string(qm)+" kg/h.")
cc436ff297b2412bc9a458e78af38e1aaa9a4006
5e5d0c8fc622434cd3e215d485ab5df6fdf1b52c
/differentLevelsProjectile.sce
bdf42a9df1965387513cff732707475d3a87de61
[]
no_license
riderstubley1995/EUN223
2908961cd57ca1221aefd43b30a828f23c982743
60d79fa1138254c1d4978f120f9a7391bdf19610
refs/heads/master
2020-09-01T22:44:31.559926
2019-11-03T09:01:09
2019-11-03T09:01:09
219,077,341
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,862
sce
differentLevelsProjectile.sce
function[] = differentLevelsProjectile(velocity,angle,initialheight,finalheight) //takes launch velocity, launch angle, initial height and final height //clears the plotting arrays clear x1; clear y1; //sets up the graph scf(1); title("Projectile Motion of a ball across levels"); //Label the graph with title, xlabel("Distance (m)"); //X-axis and ylabel("Height (m)"); //Y-axis h1 = initialheight; h2 = finalheight; theta = angle; v = velocity; s = h2 - h1; vy = v*sind(theta); vx = v*cosd(theta); g=9.8; td = ((-vy)-sqrt(vy^2 -4*-4.9*-s))/(2*-4.9); //computes the max distance to draw the second level xmax=td*vx + 5; //in every case, the scenario where we check the subtract condition //of the quadratic formula yeilds the correct time t1 = ((-vy)+sqrt(vy^2 -4*-4.9*-s))/(2*-4.9); h= 0.05; x1(1)=0; y1(1)=h1; //draws the two levels counter = 1; for step = 0:0.5:xmax/2 levelx(counter)=step; plot(levelx(counter),h1,"r*"); counter = counter+1; end counter = 1; for step = (xmax/2):0.1:((xmax/2)+1) newlevelx(counter)=step; plot(newlevelx(counter), h1 + s*0.1*counter , "r*"); counter = counter +1; end counter = 1; for step = ((xmax/2)+1):0.5:xmax finallevelx(counter)=step; plot(finallevelx(counter),h2,"r*"); counter = counter+1; end realtimeinit(h); sleep(3000); i=2; for t=0:h:td x1(i)=x1(i-1)+h*vx; //Euler's method for x y1(i)=y1(i-1)+h*(vy-g*t);//Euler's method for y i=i+1; //Increment the array count by 1 realtime(i); plot(x1,y1,"o"); end endfunction
68cc50ae1ba26b1935262165f0df0cb1e9c6dad1
449d555969bfd7befe906877abab098c6e63a0e8
/1511/CH4/EX4.15/ex4_15.sce
328ee24357eaffb19f1b8f141854b87dd321e81c
[]
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
196
sce
ex4_15.sce
// Example 4.15 page no-228 clear clc a=2*10^-4 //cm rho = 10 //Ohm-cm eps=12/(36*%pi*10^11) mup = 500 //cm^2/V-sec ena=1/(rho*mup) vp= (ena*a^2)/(2*eps) printf("Vp = %.2f V",vp)
7dc1a062a40843ca1c34de39483c5dad9f3bb459
449d555969bfd7befe906877abab098c6e63a0e8
/1922/CH5/EX5.5/5_5.sce
1192db8723e3f791b41596ea507011cab4e5df1e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
323
sce
5_5.sce
clc clear //Initialization of variables R=8314.3 b=0.0306 //m^3/kmol a=0.548*10^6 //pa m^6/kmol^6 T=973.1 P=25*10^6 //Pa //calculations Vi= R*T/P x=poly(0,'x') vec=roots(P*x^2 *(x-b) +a*(x-b) - R*T*(x^2)) volume= vec(1) dH=8.0906*10^6 -P*volume +0.548*10^6 /volume //results printf("Change in enthalpy = %.2e J/kmol",dH)
56c6b80326895b29ed5669553b26c6b17171e18c
449d555969bfd7befe906877abab098c6e63a0e8
/1991/CH7/EX7.7/7.sce
1bc46b3cacdf98e10973f5da2cf3a72af292e57a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
236
sce
7.sce
clc clear //input l1=82.3//balance length with switch open l2=75.8//balance length with switch closed R=9//resistance //calculation r=(R*l1/l2)-R//internal resistance //output printf("the internal resistence is %3.3f ohm",r)
e07677cb9d1390c27295c622255c298ed4099f6c
449d555969bfd7befe906877abab098c6e63a0e8
/2240/CH5/EX4.6/EX4_6.sce
017e2f286aa59dead603e7c197cddcdf09d86782
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,048
sce
EX4_6.sce
// Grob's Basic Electronics 11e // Chapter No. 04 // Example No. 4_6 clc; clear; // Assume that the series circuit in Fig. 4–20 has failed. A technician troubleshooting the circuit used a voltmeter to record the following resistor voltage drops. V1=0 V; V2=0 V; V3=24 V; V4=0 V. Based on these voltmeter readings, which component is defective and what type of defect is it? (Assume that only one component is defective.) // Given data R1 = 150; // Resistor 1=150 Ohms R2 = 120; // Resistor 2=120 Ohms R3 = 180; // Resistor 3=180 Ohms R4 = 150; // Resistor 4=150 Ohms Vt = 24; // Applied Voltage=24 Volts Rt = R1+R2+R3+R4; I = Vt/Rt; V1 = I*R1 disp (V1,'The Voltage Drop of Resistor R1 in Volts') V2 = I*R2 disp (V2,'The Voltage Drop of Resistor R2 in Volts') V3 = I*R3 disp (V3,'The Voltage Drop of Resistor R3 in Volts') V4 = I*R4 disp (V4,'The Voltage Drop of Resistor R4 in Volts') disp ('The Resistor R3 is defective since it is open circuit and drops all the voltage arround it')
e11c85e4bc9bd7a990221c479c81ac29deab8aa7
377a111fb7585caf110377625ad0e261a44e93ed
/herbie/lockwood/aim_optimization/Lockwood/BASIC/anthophytaWorkspace/input.tst
ce4fbf27b19c10e890ad59e5a7226ecc59c02bb8
[]
no_license
gasduster99/theses
ba385499ea0a502b9067c243f7100d82ff1ef4ce
9c5f8b5d7564292e2e36547ed8d5563a8639f158
refs/heads/master
2023-08-25T18:14:09.741032
2023-08-22T05:33:06
2023-08-22T05:33:06
217,375,576
0
0
null
null
null
null
UTF-8
Scilab
false
false
56
tst
input.tst
6 1284.301 8471.741 15081.59 5337.953 7425.453 8893.748
ff4d2dc14c5df831e00fb5723cdff3449af8bac6
449d555969bfd7befe906877abab098c6e63a0e8
/542/CH15/EX15.7/Example_15_7.sci
16e63758485ef9867d1f1bb4a5b0f0c3d1e0454d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
262
sci
Example_15_7.sci
clear; clc; printf("\n Example 15.7"); l = poly([0],'l'); l1 = roots(log(780/220)-[l*(463-433)]/[8314*463*433]); printf("\n λv = %d kj/kmol",l1); P = poly([0],'P'); P1 = roots(P-220/exp(70340*(433-393)/(8.314*433*393))); printf("\n P = %d kN/m^2",P1);
69d1b09d0a6cb341331fc697123bb8fe0d4dffa4
449d555969bfd7befe906877abab098c6e63a0e8
/147/CH13/EX13.20/Example13_20.sce
d79f36a79952032107bdbca0b123b3d474e567b2
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
323
sce
Example13_20.sce
//Input voltage Vin, Output voltage Vout, Output current Iout close(); clear; clc; Vin = 220;//V V1 = Vin; Vout = 110; V2 = Vout; Iout = 10;//A I2 = Iout; a = V1/V2; //weight_auto/weight_trans = 'weightr' weightr = 1 - (2/a)/2;//since N1/N2 = I2/I1 = a mprintf('We have %0.0f %% saving in copper',weightr*100);
3ea959fbd908d69fd077def971118038a4f0047b
676ffceabdfe022b6381807def2ea401302430ac
/solvers/CompressibleFlowSolver/Tests/IsentropicVortex16_P3_GAUSS.tst
39604a86ffd445c192d325a0fad4916d68cfe635
[ "MIT" ]
permissive
mathLab/ITHACA-SEM
3adf7a49567040398d758f4ee258276fee80065e
065a269e3f18f2fc9d9f4abd9d47abba14d0933b
refs/heads/master
2022-07-06T23:42:51.869689
2022-06-21T13:27:18
2022-06-21T13:27:18
136,485,665
10
5
MIT
2019-05-15T08:31:40
2018-06-07T14:01:54
Makefile
UTF-8
Scilab
false
false
1,038
tst
IsentropicVortex16_P3_GAUSS.tst
<?xml version="1.0" encoding="utf-8"?> <test> <description>Euler Isentropic Vortex P=3 GAUSS</description> <executable>CompressibleFlowSolver</executable> <parameters>IsentropicVortex16_P3_GAUSS.xml</parameters> <files> <file description="Session File">IsentropicVortex16_P3_GAUSS.xml</file> </files> <metrics> <metric type="L2" id="1"> <value variable="rho" tolerance="1e-12">0.00406259</value> <value variable="rhou" tolerance="1e-12">0.00806001</value> <value variable="rhov" tolerance="1e-12">0.00754235</value> <value variable="E" tolerance="1e-12">0.0224819</value> </metric> <metric type="Linf" id="2"> <value variable="rho" tolerance="1e-12">0.00462404</value> <value variable="rhou" tolerance="1e-12">0.0105546</value> <value variable="rhov" tolerance="1e-12">0.0107409</value> <value variable="E" tolerance="1e-12">0.0346782</value> </metric> </metrics> </test>
b5fb3b5b83bead216628b86dedc1b7d0e41a99b3
5f2ca8e18735204f5995ac7e44a6e301eb23ea0b
/xcos/tests/aerodynamics_model.tst
735345e76d512da850191c78caf8681ba0fd3a78
[]
no_license
Jettanakorn/mcflight
4e7d4e20976e8f3621bf13fec2a8b522ecfc49a9
e6579a11e10c5e9ae9ee558f464a6b88e1ae7a26
refs/heads/master
2023-03-17T10:49:28.906700
2019-10-30T20:20:58
2019-10-30T20:20:58
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,462
tst
aerodynamics_model.tst
//<-- NO CHECK REF --> exec('models/aerodynamics_data.sci'); ref_csv = read_csv('tests/aero_coefs.csv'); nlin = size(ref_csv)(1); for i = 2:nlin alpha_deg = strtod(ref_csv(i,1)); beta_deg = strtod(ref_csv(i,2)); elev_deg = strtod(ref_csv(i,3)); ail_deg = strtod(ref_csv(i,4)); rudder_deg = strtod(ref_csv(i,5)); VT_ftps = strtod(ref_csv(i,6)); p_rps = strtod(ref_csv(i,7)); q_rps = strtod(ref_csv(i,8)); r_rps = strtod(ref_csv(i,9)); xcg_mac = strtod(ref_csv(i,10)); CX_exp = strtod(ref_csv(i,11)); CY_exp = strtod(ref_csv(i,12)); CZ_exp = strtod(ref_csv(i,13)); CL_exp = strtod(ref_csv(i,14)); CM_exp = strtod(ref_csv(i,15)); CN_exp = strtod(ref_csv(i,16)); importXcosDiagram('tests/models/aerodynamics_test.zcos'); scicos_simulate(scs_m); assert_checktrue(abs(CX_exp-CX.values)<=1e-3); assert_checktrue(abs(CY_exp-CY.values)<=1e-3); assert_checktrue(abs(CZ_exp-CZ.values)<=1e-3); assert_checktrue(abs(CL_exp-CL.values)<=1e-3); assert_checktrue(abs(CM_exp-CM.values)<=1e-3); assert_checktrue(abs(CN_exp-CN.values)<=1e-3); mprintf('alpha_deg: %.3f\n',alpha_deg); mprintf('>%.3f,%.3f,%.3f,',CX_exp,CY_exp,CZ_exp); mprintf('%.3f,%.3f,%.3f\n',CL_exp,CM_exp,CN_exp); mprintf('<%.3f,%.3f,%.3f,',CX.values,CY.values,CZ.values); mprintf('%.3f,%.3f,%.3f\n',CL.values,CM.values,CN.values); end disp('All aerodynamics forces and coefficients <= (1e-3).');
bb8e373d4e848972096148c37e714b66aeabcf6b
b513eb49824ff62ddd2289a920c92cfcb362d5f2
/magister/course_1/litvinov/course_project/scilab/plot.sce
7dc99811afbcdf146713bde181637055a0ecc0d8
[]
no_license
kirillin/ifmo
6264ac42ec2031777145b39d4930f2f645e1d316
633919ba09d43814298c3a2145d5d6f72b5b068e
refs/heads/master
2021-01-12T09:32:27.270130
2018-11-18T12:17:46
2018-11-18T12:17:46
76,181,268
3
1
null
null
null
null
UTF-8
Scilab
false
false
222
sce
plot.sce
plot([0,1], [0.95, 0.95], "b--") plot([0,1], [1.05, 1.05], "b--") plot([t_p, t_p], [0, 2], "r--") plot([0,1], [1.1, 1.1], "r--") plot([0,1], [1, 1], "s-") plot(Q.time, Q.values(:,1), "k") plot(Q.time, Q.values(:,4), "b")
918dc196f93a509c431f728b78a9e78d3d0d7c68
449d555969bfd7befe906877abab098c6e63a0e8
/2330/CH6/EX6.3/ex6_3.sce
54300619750b44f10883a9eaa6eebcdc5dbfa3e8
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
358
sce
ex6_3.sce
// Example 6.3 format('v',6) clc; clear; close; // given data R= 10*10^3;// in Ω V_CC= 15;// in V V_BE= 0.7;// in V Vt= 25*10^-3;// in V Vp= 1*10^-3;// in V I= (V_CC-V_BE)/R;// in A r_ac= Vt/I;// in Ω // The total current through diode Ip= Vp/r_ac;// in A Ip= Ip*10^6;// in µA disp(Ip,"The total current through diode in µA is : ")
18bb5ae0d293eb73337d842e467203d76a95c770
99b4e2e61348ee847a78faf6eee6d345fde36028
/Toolbox Test/enbw/enbw13.sce
2ab68b0f2521fbfe78e7241c2e0b8b1c8f680758
[]
no_license
deecube/fosseetesting
ce66f691121021fa2f3474497397cded9d57658c
e353f1c03b0c0ef43abf44873e5e477b6adb6c7e
refs/heads/master
2021-01-20T11:34:43.535019
2016-09-27T05:12:48
2016-09-27T05:12:48
59,456,386
0
0
null
null
null
null
UTF-8
Scilab
false
false
153
sce
enbw13.sce
a=['a' 'b' 'c']; en=enbw(a); //output //!--error 10000 //Input arguments must be double. //at line 24 of function enbw called by : //en=enbw(a);
ddd158afc69ef8c8830e37c51dbd21baa208a323
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.5/tests/examples/equal.man.tst
fe4a841002bc8b89cee940fc4c386331b96b82ec
[ "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
65
tst
equal.man.tst
clear;lines(0); a=sin(3.2) [u,s]=schur(rand(3,3)) [1:10]==4 1~=2
59719138cd76a16ebd5216e2df93ba57ce62df38
449d555969bfd7befe906877abab098c6e63a0e8
/767/CH1/EX1.5.2/Ch1Exa1_5_2.sci
11a6c5168fb30e0548c192115d70f2f7e6326455
[]
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
515
sci
Ch1Exa1_5_2.sci
// Scilab code Exa1.5.2 : Calculation of energy required to break C-12 into 3-alpha particle : Page 37 (2011) amu = 1.49239e-010; // Atomic mass unit, J M_C = 12; // Mass of C-12, amu M_a = 4.0026; // Mass of alpha particle, amu M_3a = 3*M_a; // Mass of 3 alpha particle, amu D = M_C-M_3a; // Difference in two masses, amu E = D*amu; // Required energy,J printf("\nThe energy required to break 3 alpha particles : %4.2e J",E) // Result // The energy required to break 3 alpha particles : -1.16e-012 J
0161aca6e32816a1e52c6889a07ba92b97888c24
449d555969bfd7befe906877abab098c6e63a0e8
/339/CH5/EX5.1/ex5_1.sce
46370b8c075254aea00c3b104e3a552bb8f067e7
[]
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
439
sce
ex5_1.sce
stacksize('max'); C=2*10^-12; L=5*10^-9; R=20; Z0=50; //f=[10^7:10^8:10^11]; //define frequency range f_min=10e6; //lower frequency limit f_max=100e9; // upper frequency limit N=100; // number of points in the graph f=f_min*((f_max/f_min).^((0:N)/N)); // compute frequency points on log scale w=2*%pi.*f; A=(w.*w*L*C-1)/(w*C); S21=2*Z0./(2*Z0+R+%i*A); f0=1./(2*%pi*sqrt(L*C)); disp("Hertz",f0,"Resonance frequency");
6aac91028472ca437baf4aa2178590fa500248f9
449d555969bfd7befe906877abab098c6e63a0e8
/716/CH2/EX2.4.a/Solved_Ex2_4a.sce
fdd84d7d3e087c1992f8982144686fe56a7928b8
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
549
sce
Solved_Ex2_4a.sce
//find power and energy of periodic signal x(t)=exp(-2t)*u(t) clc; //To plot signal*************************// t=-5:0.01:5; x=exp(-2*t).*(t>=0);//given signal plot(t,x); //**************************************// t=-50:0.01:50; x=exp(-2*t).*(t>=0); T=length(t); //To calculate Energy xsq=x.^2;//adds squares of all the 'x' values(integrates 'x^2' terms) v=inttrap(t,xsq); disp('joules',v,'Energy'); //To calculate Power xsq=x.^2; P=1/T*v;//divide by 2T,to take the average rate of energy(gives power) disp('watts',P,'Power=');
e30535f1b3837e3069a73318f75abeee71f769bd
449d555969bfd7befe906877abab098c6e63a0e8
/2021/CH4/EX4.7/EX4_7.sce
c8f469ba84310c4636055a3e5f57d6750d75bf88
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
236
sce
EX4_7.sce
//Finding pf Metacentric Height //Given d=3; h=2; spgr=0.7; h1=h*spgr; pi=3.14; //To Find h2=h/2; h3=h1/2; h4=h2-h3; mh=(pi*d^4)/64; vwd=(pi*d^2*h1)/4; mg=(mh/vwd)-h4; disp("Metacentric Height is ="+string(mg)+" meter");
72cf430f5165aad3b508790e3cd5da17e3c76010
449d555969bfd7befe906877abab098c6e63a0e8
/24/CH7/EX7.6/Example7_6.sce
e82eac701ab97420d56965680c01354102c53288
[]
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
803
sce
Example7_6.sce
//Given that g = 9.8 //in m/s^2 m = 500 //in kg Vi = 4 //in m/s a = g/5 //in m/s d = 12 //in meter //Sample Problem 7-6a printf("**Sample Problem 7-6a**\n") //Using the definition of the work done Wg = m * g * d printf("The work done by the gravity during the fall is %eJ\n", Wg) //Sample Problem 7-6b printf("\n**Sample Problem 7-6b**\n") //from Example7-6_FBD //m*g - T = m*a T = m * (g - a) Wt = - T * d printf("The work done by the tension is %eJ\n", Wt) //Sample Problem 7-6c printf("\n*Sample Problem 7-6c**\n") Wnet = Wt + Wg printf("The net work done is %eJ\n", Wnet) //Sample Problem 7-6d printf("\n**Sample Problem 7-6d**\n") //Using work energy theorem //Kf - Ki = Wnet Kf = Wnet + .5 * m * Vi^2 printf("The final kinetic energy of the cab is %eJ", Kf)
077861cdc1927cbd2326753fb0da6498df12e5d9
449d555969bfd7befe906877abab098c6e63a0e8
/165/CH1/EX1.1.a/ex1_1_a.sce
dfe434e63e7533d563e053b6649c9b5165bc30b8
[]
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
495
sce
ex1_1_a.sce
//Example 1.1(a) clc; Yn=80; //Expected value Xn=79; //Measured value e=Yn-Xn; //Absolute error pe=e*100/Yn; //Percentage error RA=1-(e/Yn); //Relative Accuracy pa=RA*100; //Percentage Accuracy printf('\nExpected value = %.2f V\n',Yn) printf('\nMeasured value = %.2f V\n',Xn) printf('\nAbsolute error = %.2f V\n',e) printf('\nPercentage error = %.2f percent\n',pe) printf('\nRelative accuracy = %.4f\n',RA) printf('\nPercentage accuracy = %.2f percent\n',pa)
f1b2d79b1323d1cdcead2102c023477c53631fa4
c557cd21994aaa23ea4fe68fa779dd8b3aac0381
/test/deleteall.tst
3e98e18a951e221ff624e771b4886e9bbc9d1860
[ "BSD-3-Clause", "BSD-2-Clause" ]
permissive
dougsong/reposurgeon
394001c0da4c3503bc8bae14935808ffd6f45657
ee63ba2b0786fa1b79dd232bf3d4c2fe9c22104b
refs/heads/master
2023-03-09T15:22:45.041046
2023-02-25T08:33:06
2023-02-25T08:33:06
280,299,498
1
0
NOASSERTION
2023-02-25T08:33:08
2020-07-17T01:45:32
Go
UTF-8
Scilab
false
false
164
tst
deleteall.tst
## Test if commands handling tree contents understand deleteall set echo read <deleteall.fi set interactive :13 manifest [/^README/a] resolve [/^README$/a] resolve
204ec481d65c61111a82fa151c279c08caab7cc6
449d555969bfd7befe906877abab098c6e63a0e8
/1628/CH3/EX3.9/Ex3_9.sce
53f90decab6eca7ab1a6d3de3532244d5fa21a15
[]
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
988
sce
Ex3_9.sce
// Examle 3.9 Is=3; // Source current Rs=2; // Source resistance Vs=Rs*Is; // Source voltage Rl=4; // Load resistance R=(Rs*Rl)/(Rs+Rl); // Eqviualent resistance Il1=(Is*Rs)/(Rs+Rl); // Load current in case-1 disp(' Load current in case-1 = '+string(Il1)+' Amp'); Vl1=1*Rl; // Load voltage in case-1 disp(' Load voltage in case-1 = '+string(Vl1)+' Volt'); Ps1=Is^2*R; // Power delivered in case-1 disp(' Power delivered in case-1 = '+string(Ps1)+' Watt'); Il2=Vs/(Rs+Rl); // Load current in case-2 disp(' Load current in case-2 = '+string(Il2)+' Amp'); Vl2=Vs*(Rl/(Rl+Rs)); // Load voltage in case-2 disp(' Load voltage in case-2 = '+string(Vl2)+' Volt'); Ps2=Vs^2/(Rs+Rl); // Power delivered in case-2 disp(' Power delivered in case-2 = '+string(Ps2)+' Watt'); // p 61 3.9
139d7ebbe207d602a5b542c670305e206a91bcd5
449d555969bfd7befe906877abab098c6e63a0e8
/842/CH1/EX1.2/Example1_2.sce
597370f3decd056f6c5c4d1bae4883eab51dd7fe
[]
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
413
sce
Example1_2.sce
//clear// //Example 1.2:Time Scaling //SIGNALS & SYSTEMS, Second Edition //V.OPPENHEIM, S.WILLSKY, S.HAMID NAMWAB //PHI, 2008 Edition //Page 11 clear; clc; close; t3 = 0:1/100:4/3; t4 = 0:1/length(t3):1; Mid =ceil(length(t3)/2); for i = 1:Mid x3(i) = 1 ; end for i = Mid+1:length(t3) x3(i) = 1-t4(i-Mid); end figure a=gca(); plot2d(t3,x3) a.thickness=2; xtitle('Time Scaling x(3t/2)')
420e76405821a95882cb2e2f1c4af434277b6e8b
449d555969bfd7befe906877abab098c6e63a0e8
/431/CH2/EX2.23/EX2_23.sce
663dc4e689de7567517385359557c11635b39300
[]
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
982
sce
EX2_23.sce
//Calculate the speed //Chapter 2 //Example 2.23 //page 127 clear; clc; disp("Example 2.23") V=200; //voltage in volts Ia=20; //armature current in amperes Ra=0.5; //armature resistance in ohms Rse=0.2; //field winding resistance in ohms E=V-(Ia*(Ra+Rse)); printf("In first case,E=%fV",E) //E=k*phi*N N=1000; //speed in rpm Kphi=E/N; //a resistance R is connected in parallel with the series field which is called diverter disp("when resistace R is added and new conditions") I=20; //total current flowing //current is equally devided between series field and diverter Ise2=I/2; //flux at 10A current is 20percent of flux at 20A current p=0.70; //percentage of flux Kpih1=p*Kphi; E1=(V-((Ia*Ra)+(Ise2*Rse))); printf("Induced emf=%fV",E1) //new speed is N1 N1=E1/(p*Kphi) printf("\nN1=%frpm",N1)
6d45c5134c4aad57b55036b574b5447967427a31
9f9364e082d4bc2f7ee5cbd7a489642615821873
/src/testCases/test3-6.tst
52941c8b3ec18006090f212fe5b561a3afb7229c
[]
no_license
abrageddon/DLX-Opt
4602617f83ddf8cb0fea83fecd2faa362849dfcd
20038078f11a7ae67e7ab336e551e23966551290
refs/heads/master
2021-01-01T05:49:33.218016
2013-03-14T06:08:45
2013-03-14T06:08:45
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
186
tst
test3-6.tst
main array[16] f; var i; { let f[0] <- 0; let f[1] <- 1; let i <- 2; while i < 16 do let f[i] <- f[i - 1] + f[i - 2]; call outputnum(f[i]); let i <- i + 1 od }.
33ad6fb5cb6a77259335fc0f63548a98f0156459
449d555969bfd7befe906877abab098c6e63a0e8
/49/CH7/EX7.4/ex4.sce
de5b2e83282021b2857374792de567ab0a7d6131
[]
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,666
sce
ex4.sce
//CHAPTER 7_ Flow Measurement //Caption : Gross volume flow rate(venturi) // Example 4// Page 439 dt=0.15 //('entering the throat diameter=:') dp=0.3 //('entering the upstream diameter=:') Cd=0.95; B=0.5; pm=13600 //('entering the density of manometer fluid=:') At=%pi*dt^2/4; g=9.81; pf=995.8 h=0.2 //('entering the height of mercury column due to flow (in m)=:') q=pf*At*Cd; w=(1-B^4)^(1/2); e=sqrt(2*g*((pm/pf)-1)); mdot_25=q*e*sqrt(h)/w disp("Mass flow is given by :") disp("mdot=pf*At*Cd*(1/(1-B^4)^(1/2))*sqrt(2*g*((pm/pf)-1)*sqrt h)") printf('So the mass flow at 25 deg cent is %fd kg/s\n',mdot_25) pf=999.8 //('entering density of water at 25 deg cent=:') h=0.2 //('entering the height of mercury column due to flow (in m)=:') q=pf*At*Cd; w=(1-B^4)^(1/2); e=sqrt(2*g*((pm/pf)-1)); mdot=q*e*sqrt(h)/w // error is mdot(25 deg cent)-mdot(t deg cent) printf(' The mass flow at 0 deg cent is %fd kg/s\n',mdot) error1=abs(((mdot_25-mdot)/mdot_25)*100); printf(' Change in temperature of water introduces insignificant error in mass flow measurement i.e. %1.2f%% \n',error1) pf=988.8 //('entering density of water at 25 deg cent=:') h=0.2 //('entering the height of mercury column due to flow (in m)=:') q=pf*At*Cd; w=(1-B^4)^(1/2); e=sqrt(2*g*((pm/pf)-1)); mdot=q*e*sqrt(h)/w // error is mdot(25 deg cent)-mdot(t deg cent) printf(' The mass flow at 50 deg cent is %fd kg/s\n',mdot) error2=abs(((mdot_25-mdot)/mdot_25)*100); printf('Therefore, change in temperature of water introduces insignificant error in mass flow measurement i.e. %1.2f%% \n',error2)
c021bf4f73b19f198e8469eb328244cfe025cbc3
449d555969bfd7befe906877abab098c6e63a0e8
/137/CH5/EX5.3a/5_3a.sce
8939bafda99950cc7346b98887ae4617e6a0dd62
[]
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
676
sce
5_3a.sce
clc; //page 222 //problem 5.3.a // refer fig from page no. 212 Fig.5.4a // The values of constsnts Kf and Kp are given as Kf= 2*pi*10^5 and Kp=5*pi . // Here we are assuming the Bandwidth B of m(t) as the frequency of the third harmonic, i.e. 3(10^4/2)Hz= 15kHz B=15;// in kHz // For FM: // Here peak amplitude of m(t) is mp=1 mp=1; // df=kf*mp/2*pi Kf= 2*%pi*10^5; Kp=5*%pi; df= (Kf*mp)/(2*%pi);// in Hz df=df/10^3;// in KHz Bfm=2*(df+B); disp(+'KHz',Bfm,'Bfm in kHz is'); // For PM: //Here peak amplitude of m(t)' is mp=20000 mp=20000; // df=kp*mp/2*pi df= (Kp*mp)/(2*%pi);// in Hz df=df/10^3;// in KHz Bpm=2*(df+B); disp(+'KHz',Bpm,'Bpm in kHz is');
6830166b74b9672734276049a8f0f10761f2ab30
449d555969bfd7befe906877abab098c6e63a0e8
/3647/CH8/EX8.4/ex8_4.sce
cd3d142c75d6aa50e5cdcc4b6518f80a0a380db6
[]
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
399
sce
ex8_4.sce
//Solutions to Problems In applied mechanics //A N Gobby clear all; clc //initialisation of variables h=12//in w=6//in x=375.77//in^4 y=28.28//in^4 p=7//in q=14//in //CALCULATIONS Ix=x+(p*q^3/h)-(p*h^3/h)//in^4 Iy=y+2*(1*p^3/h)//in^4 Zx=x/w//in^3 Zy=Ix/p//in^3 X=(Zy-Zx)/(Zx)*100//percent //RESULTS printf('the percentage increase in strength with respect to neutral=% f percent',X)
4b439ae1f6048ee3c0446fbbcc39173ed804d433
bb44d6eb6adf8f21077f2a49f2eb44d2424b2a5b
/fact.sci
0d514a973fc5c47d710bf78530aa91e7c98f9779
[]
no_license
prasadovhal/Scilab-Codes
c8ccc49feba4243d092d8a1eba7a708eb95dc89e
3af5566d62b1f1b6cf080ec20391c39b9d61897d
refs/heads/master
2020-03-29T16:50:45.738023
2018-09-24T16:05:50
2018-09-24T16:05:50
150,130,310
1
0
null
null
null
null
UTF-8
Scilab
false
false
304
sci
fact.sci
function [fact] = approximate_e(n) if (n ==0 || n==1) fact = 1 else fact = 1 for(i=2:n) fact = fact *i end end //disp(fact) endfunction function [e]=facto(n) e = 0 for(i=0:n) e = e + (1 / approximate_e(i)) end endfunction
81da69bfa85db94a6eb8177e4c70f530e96cce7e
38b89b84da9fe235f5b3a099bff16349b503cb87
/funcoes.sci
c9430c0a3911ec41ce27525f91e5ebd1aa9641de
[ "MIT" ]
permissive
matheussfarias/preditoracoes
744c7d422786a7dc9c52ffee58030b480d9f4e1f
101b917f5193dcd91037f332eb8dce40d867e739
refs/heads/master
2020-08-31T06:37:13.684274
2019-10-30T21:15:12
2019-10-30T21:15:12
218,625,603
1
0
null
null
null
null
UTF-8
Scilab
false
false
824
sci
funcoes.sci
// funcao de correlacao function Rx = comat(x,N) px = xcorr(x,N,'biased'); for i = 1:N+1 Rx(:,i) = px((N+2-i):(2*(N+1)-i)); end endfunction //para fins didaticos, a implementacao pura do LMS function [y,e,wn]=filterLMS(x,d,mi,N) xn=zeros(N+1,1); Wn=zeros(N+1,1); M=length(x); for n=1:M xn=[x(n);xn(1:N)]; y(n)= Wn'*xn; e(n)=d(n)-y(n); Wn = Wn + 2*mi*e(n)*xn; end wn=Wn endfunction //implementacao modificada para o caso do projeto function [y]=LMSpredict(x,l,u,N) xd=[zeros(1,l) x]; xn=zeros(N+1,1) Wn=zeros(N+1,1); M=length(xd); for n=1:M xn=[xd(n);xn(1:N)]; y(n)= Wn'*xn; if(n>M-l) e =0; else e=x(n)-y(n); end Wn = Wn + 2*u*e*xn; end endfunction
b372638fe7a8a045695ed2c1229ccb8685632b71
449d555969bfd7befe906877abab098c6e63a0e8
/1364/CH12/EX12.7.2/12_7_2.sce
443e315eba3c32d3451e25318e565e77852cc2b6
[]
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
206
sce
12_7_2.sce
clc //initialisation of variables u1= 1200 //ft/sec r= 1.4 R= 53.3 //ft lbf/lb K g= 32.2 //ft/sec^2 T= 90 //F //CALCULATIONS M= u1/sqrt(r*R*g*(460+T)) //RESULTS printf ('Match number = %.3f ',M)
57b95210f5a05595a2b7b59af2700e9a4178bc91
c206e3f57b0a6f75bd1feefefecd29398746c358
/scripts/usd.sci
3f6e7de25d22237b1652c29576ea3f3f2bac56c1
[]
no_license
danielfcollier/scilab-image-processing-scripts
e092a7c1a6a0ade906c020218a9571290245e40f
43d78cb06dc6c27ab8663f351e4c172d038280ce
refs/heads/main
2023-04-12T20:05:52.840157
2021-04-27T18:56:06
2021-04-27T18:56:06
362,219,761
0
0
null
null
null
null
UTF-8
Scilab
false
false
234
sci
usd.sci
function [U] = usd(M) // USD_ // usd: up side down the matrix // M: matriz m x n // R: matriz m x n // // Uso: // M = [1:4;5:8;9:12;13:16]; // U = usd(M); // [l, c] = size(M); U = matrix(M((l*c):-1:1),l,c); endfunction
553b71d6dd50e691f92a0431abad4778e076dfe0
99b4e2e61348ee847a78faf6eee6d345fde36028
/Toolbox Test/modulate/modulate1.sce
45f6db2ac1567d55bbabde9d7f1caf8f57d5ddcc
[]
no_license
deecube/fosseetesting
ce66f691121021fa2f3474497397cded9d57658c
e353f1c03b0c0ef43abf44873e5e477b6adb6c7e
refs/heads/master
2021-01-20T11:34:43.535019
2016-09-27T05:12:48
2016-09-27T05:12:48
59,456,386
0
0
null
null
null
null
UTF-8
Scilab
false
false
264
sce
modulate1.sce
//i/p arg x is a vector x=[1 2 3 4 5 7 89 8]; fc=100; fs=500; y = modulate(x,fc,fs,'am'); disp(y); //output // column 1 to 4 // // 1. 0.6180340 - 2.427051 - 3.236068 // // column 5 to 8 // // 1.545085 7. 27.502512 - 6.472136 //
ce4f7d524b89466d18bcb8ed199baea53fab94b9
449d555969bfd7befe906877abab098c6e63a0e8
/1658/CH18/EX18.27/Ex18_27.sce
c58e6d5d5d6e0e1bc6d8c41f031fe303da314d88
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
298
sce
Ex18_27.sce
clc; VCC=12; RC=2*10**3; RE=1*10**3; R1=100*10**3; R2=20*10**3; B=100; VBE=-0.2; VB=-VCC*R2/(R1+R2); disp('V',VB*1,"VB="); VE=VB-VBE; disp('V',VE*1,"VE="); IE=-VE/RE; IC=IE; disp('mA',IC*10**3,"IC="); VC=-(VCC-IC*RC); disp('V',VC*1,"VC="); VCE=VC-(VE); disp('V',VCE*1,"VCE=");
7330e4399f92701a6bd6ce0514baf77d3eadc837
449d555969bfd7befe906877abab098c6e63a0e8
/181/CH1/EX1.22/example1_22.sce
d27ce99f6ba326f5f799412c902797b9cb4d09d6
[]
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
538
sce
example1_22.sce
// Mobility of free electrons in Alluminium // Basic Electronics // By Debashis De // First Edition, 2010 // Dorling Kindersley Pvt. Ltd. India // Example 1-22 in page 50 clear; clc; close; // Data given n_0=18*10^28; // Derived from the given formula in textbook rho=3.44*10^-6; // Resistivity in ohm-cm e=1.6*10^-19; // Charge on an electron in C // Calculation mu=10^2/(n_0*e*rho); printf("Mobility of free electrons is %0.0e m^2/V-s",mu); // Result // Mobility of free electrons in Alluminium is 10^-3 m^2/V-s
cb0496c50088c044d60d93a8791b596a976b7c45
01ecab2f6eeeff384acae2c4861aa9ad1b3f6861
/sci2blif/sci2blif_added_blocks/vmm12x1_wowta.sce
5dc72571b9715b22fcc809fa8828b879a314e734
[]
no_license
jhasler/rasp30
9a7c2431d56c879a18b50c2d43e487d413ceccb0
3612de44eaa10babd7298d2e0a7cddf4a4b761f6
refs/heads/master
2023-05-25T08:21:31.003675
2023-05-11T16:19:59
2023-05-11T16:19:59
62,917,238
3
3
null
null
null
null
UTF-8
Scilab
false
false
2,550
sce
vmm12x1_wowta.sce
//************************* VMM_WTA ************************************ if (blk_name.entries(bl) =='vmm12x1_wowta') then global shift_number_mismatch addvmm = %t; plcvpr=%t k =scs_m.objs(blk_objs(bl)).model.opar(1); m1=scs_m.objs(blk_objs(bl)).model.ipar(2);//row (basically number of WTA) n1=scs_m.objs(blk_objs(bl)).model.ipar(3);//column(basically number of inputs to VMM) tar1=[]; tar2=[]; tar3=[]; for j=1:12 if j == 12 then tar1=tar1+'%1.2e'; else tar1=tar1+'%1.2e,'; end end j = n1; for i=1:m1 tar3='k('+string(i)+',:) '; for n = j+1:12 tar3=tar3+'1e-12 '; end tar2(i,:)=evstr(tar3); end mputl("# VMM12x1",fd_w); vmm12_1 =".subckt vmm12x1_wowta"; for i = 1:n1 vmm12_1 = vmm12_1 + " in["+ string(i-1)+"]=net"+string(blk(blk_objs(bl),2))+"_"+string(i); last_input=i; end if j < 13 then for i = j+1:12 //vmm12_1 = vmm12_1 + " in["+ string(i-1)+"]=net"+string(blk(blk_objs(bl),2))+"_"+string(last_input+1); vmm12_1 = vmm12_1 + " in["+ string(i-1)+"]=unconn"; end end for i = 1:size(k,1) // disp(i) //disp(string(sprintf('%1.2e',scs_m.objs(blk_objs(bl)).model.rpar(i)))) vmm12_1o = vmm12_1 + " out[0]=net"+ string(blk(blk_objs(bl),2+numofip))+"_" + string(i)+" #vmm12x1_wowta_fg =0&vmm12x1_offsetbias ="+string(sprintf('%1.2e',scs_m.objs(blk_objs(bl)).model.rpar(i))); vmm12_1target="&vmm12x1_target =" +string(sprintf(tar1,tar2(i,:))); mputl(vmm12_1o+vmm12_1target,fd_w); mputl(" ",fd_w); vmm12_1target=[]; vmm12_1o=[]; select board_num case 2 then if sftreg_count >0 plcloc=[plcloc;'net'+string(blk(blk_objs(bl),2+numofip))+"_" + string(i),'10 '+string(i+1)+' 0']; else plcloc=[plcloc;'net'+string(blk(blk_objs(bl),2+numofip))+"_" + string(i),'10 '+string(i+1)+' 0']; // plcloc=[plcloc;'net'+string(blk(blk_objs(bl),2+numofip))+"_" + string(i),'10 '+string(shift_number_mismatch)+' 0']; end case 3 then if sftreg_count >0 plcloc=[plcloc;'net'+string(blk(blk_objs(bl),2+numofip))+"_" + string(i),'5 '+string(sftreg_count+i)+' 0']; else plcloc=[plcloc;'net'+string(blk(blk_objs(bl),2+numofip))+"_" + string(i),'5 '+string(i)+' 0']; end end end mputl(" ",fd_w); end
279925e1e9299b75b3b6cb3f1719e2beb9fb0ba2
449d555969bfd7befe906877abab098c6e63a0e8
/3825/CH7/EX7.11/Ex7_11.sce
1d1c9c7ead2489e2c37a7f552b89c0f87e45bcb5
[]
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
182
sce
Ex7_11.sce
clc T1=273 T2=373 hsf=334.92 hfg=2256.94 mprintf("Ssf=%fkJ/kg K\n",hsf/T1)//ans vary due to roundoff error mprintf("Sfg=%fkJ/kg K\n",hfg/T2)//ans vary due to roundoff error
15df02036f48925937f0d469ffbc4fa65238d226
449d555969bfd7befe906877abab098c6e63a0e8
/3886/CH2/EX2.12/Ex2_12.sce
c3f8a027f1971a9a41257e679b2efdaad5ed568b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
228
sce
Ex2_12.sce
//Determine reactions at contact //Refer fig.2.16(b) //applying Lami's Theorem R1=400*sind(180-45)/sind(60+45) //N R2=400*sind(180-60)/sind(60+45) //N printf("The reactions developed are:-\nR1=%.1f N \nR2=%.1f N",R1,R2)
f5e65701aed1b20e5706726faee70026cec2748a
8712e7b4614b1ab648f19bcce8ca17e378876546
/Scilab Com Interface Grafica/Engine/C7c_NEWMARK_ATS_HULBERT.sce
b82712fcb44772beb8157a460fce071c9deffd4a
[]
no_license
Diogo-Rossi/Mestrado-Diogo-Rossi
d0d476d878c729c44778ea8f364c50c5464fc751
d544d3bce094931eb96a6031aaa1ae1a833d2b04
refs/heads/master
2022-08-26T22:28:04.339221
2022-07-11T00:25:21
2022-07-11T00:25:21
236,889,761
0
0
null
null
null
null
UTF-8
Scilab
false
false
5,277
sce
C7c_NEWMARK_ATS_HULBERT.sce
// MÉTODO DE NEWMARK COM AUTOMATIC TIME STEPPING DE HULBERT E JANG Gama = evstr(NewmarkBeta(1).string) Beta = evstr(NewmarkBeta(2).string) if Beta>=Gama/2; Dtmax = evstr(NewmarkBeta(3).string); end T1 = evstr(NewmarkBeta(4).string) Dt(1) = evstr(ATS_Hulbert(1).string) Dt_T_alvo = evstr(ATS_Hulbert(2).string) lb = evstr(ATS_Hulbert(3).string) pinc = evstr(ATS_Hulbert(4).string) pdec = evstr(ATS_Hulbert(5).string) Cd = ((2*%pi)^2)*abs((Beta-1/6)); // Fator multiplicador, eq. XXX tol = Cd*(Dt_T_alvo)^2; // Tolerância no erro, eq. XXX lcount = double(1*int8(1/Dt_T_alvo)); // Limite do contador, eq. XXX count = 0; sclfac(1) = 0; // Valores crítico, máximo e mínimo para o passo de tempo if Beta>=Gama/2 // Método incondicionalmente estável Dtcrit = Dtmax; // Valor crítico livre, escolhido pelo usuário else// Valor crítico conservativo dado pela equação XXX para o menor período Dtcrit = Tj/(%pi*sqrt(2*(Gama-2*Beta))); end Dtmax = Dtcrit; Dtmin = 0; Dt(1) = min(Dt(1),Dtmax); // Primeiro incremento limitado a um valor máximo Dt(1) = max(Dt(1),Dtmin); // Primeiro incremento limitado a um valor mínimo // Instante de tempo inicial e condições iniciais de cargas t(1) = 0; p(:,1) = Carregamento(n,nc,opC,desC,t0,t1,w1,F,t(1)); // Condições iniciais (nulas) das respostas D(:,1) = zeros(n,1); V(:,1) = zeros(n,1); A = zeros(n,1); A(:,1) = M\( p(:,1) - C*V(:,1) - K*D(:,1)); // Matriz de Rigidez efetiva para o passo 1, dada pela equação XXX k_ = K + (1/(Beta*Dt(1)^2))*M + (Gama/(Beta*Dt(1)))*C; // Executa função se o problema tiver condições iniciais quiescentes if norm(p(:,1))==0; exec("Quiescent.sce"); i=4; else i=2; end while t(i-1)<T1 // Atualização do instante de tempo t(i) = t(i-1) + Dt(i-1); // Vetor de Carga efetiva incremental, dado pela equação XXX p(:,i) = Carregamento(n,nc,opC,desC,t0,t1,w1,F,t(i)); Dp = p(:,i) - p(:,i-1); Dp_ = Dp + ... + M*((1/(Beta*Dt(i-1)))*V(:,i-1) + (1/(2*Beta))*A(:,i-1) ) ... + C*((Gama/Beta)*V(:,i-1) + (Gama/(2*Beta)-1)*Dt(i-1)*A(:,i-1)); // Incremento no deslocamento, encontrado ao resolver a equação XXX Du = k_\Dp_; // Incremento na Velocidade, obtido com a equação XXX Dv = (Gama/(Beta*Dt(i-1)))*Du + (1-Gama/(2*Beta))*Dt(i-1)*A(:,i-1) ... -(Gama/Beta)*V(:,i-1); // Deslocamento e velocidade no final do passo, equações XXX e XXX D(:,i) = D(:,i-1) + Du; V(:,i) = V(:,i-1) + Dv; // Aceleração no final do passo, equação XXX A(:,i) = M\( p(:,i) - C*V(:,i) - K*D(:,i)); // Atualização do passo de tempo - algoritmo de Hulbert & Jang Da = A(:,i) - A(:,i-1); // Incremento na Aceleração e(:,i) = (Dt(i-1)^2)*(Beta-1/6)*Da; // Erro local, Eq. XXX sclfac(i) = max(norm(Du),0.9*sclfac(i-1)); // Fator de escala, Eq. XXX RL(i) = norm(e(:,i))/sclfac(i); // Erro local normalizado, Eq. XXX if lb*tol<=RL(i) && RL(i)<=tol // Verificação da condição XXX Dt(i) = Dt(i-1); count = 0; nao_reduziu_Dt = 1; elseif RL(i)<lb*tol count = count + 1; if count > lcount RLmax = max(RL(i-lcount:i)); finc = (tol/RLmax)^(1/pinc); // Fator de amplificação, eq. XXX Dt(i) = finc*Dt(i-1); // Amplificação do incremento, eq. XXX Dt(i) = min(Dt(i),Dtmax); // Dt limitado a um valor máximo count = 0; else Dt(i) = Dt(i-1); end nao_reduziu_Dt = 1; elseif RL(i)>tol if i>2 && Dt(i-1)>Dt(i-2) // Verificação do caso 1 Dt(i-1) = Dt(i-2); // Redução do incremento no caso 1 ocorreu_caso_1 = 1; ocorreu_caso_2 = 0; else fdec = (tol/RL(i))^(1/pdec); // Fator de redução, eq. XXX Dt(i-1) = fdec*Dt(i-1); // Redução do incremento, eq. XXX Dt(i-1) = max(Dt(i-1),Dtmin); // Dt limitado a um valor mínimo count = 0; ocorreu_caso_1 = 0; ocorreu_caso_2 = 1; end nao_reduziu_Dt = 0; end // Matriz de Rigidez efetiva - equação XXX - e atualização do passo if nao_reduziu_Dt if Dt(i) > Dt(i-1) k_anterior = k_; k_ = K + (1/(Beta*Dt(i)^2))*M + (Gama/(Beta*Dt(i)))*C; end i = i+1; elseif ocorreu_caso_1 k_ = k_anterior; elseif ocorreu_caso_2 k_ = K + (1/(Beta*Dt(i-1)^2))*M + (Gama/(Beta*Dt(i-1)))*C; end end // Número de pontos no histórico das cargas e respostas N1 = length(t); // Vetor de deslocamentos globais (deslocamentos livres e restringidos) DJ = zeros(3*nj,N1); DJ(GL,:) = D; // Tranpõe para obter vetor-linha (o padrão do Scilab é vetor-coluna) t=t'; Dt=Dt'; RL=RL'; NormaErro=sqrt(diag(e'*e))' FSnormaErro = max(RL)/max(NormaErro) // fator de escala para mostrar no gráfico NormaErro = NormaErro*FSnormaErro
035e4d31ab10e854cec67d13432b03f1903614dc
f23cac45e0a1e3e9444fd3bb8e11d56a5be97cf8
/mix.sci
4fc6999e674303ca7f33bbcbef00c534411561df
[]
no_license
paulaperdigaoram/YOGURT
4cd805bfb9a06630fba0d990ad7edbbf3786903b
fc95ba5408e085c91bca2a04084fc36b2ea39f95
refs/heads/master
2020-03-22T07:56:53.718648
2018-08-23T17:31:35
2018-08-23T17:31:35
139,734,779
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,526
sci
mix.sci
function o = mix(i) //Datos de entrada ProtIn = i(1) GrasaIn = i(2) LactosaIn = i(3) //Parámetros p = 0.01 // kg leche en polvo / kg leche ProtLP = 0.384 // kg/kg leche en polvo GrasaLP = 0.0113 // kg/kg leche en polvo LactosaLP = 0.5647 // kg/kg leche en polvo //Resolución del modelo ProtOut = ProtIn + p*ProtLP*1000 // g/L GrasaOut = GrasaIn + p*GrasaLP*1000 // g/L LactosaOut = LactosaIn + p*LactosaLP*1000 // g/L //Graficación scf(1); clf(1); ejex = [1 2 3] ejey = [ProtIn, ProtOut ; GrasaIn, GrasaOut; LactosaIn, LactosaOut] bar(ejex, ejey, 0.7) xgrid; xtitle('MIX','PROTEÍNA GRASA LACTOSA ','CONCENTRACIÓN (g/L)'); l=legend("Entrada","Salida",2); l.font_size = 2; a = get("current_axes"); a.axes_visible=["off","on"]; //Elimina el eje x a.y_label.font_size = 2; //Aumento del tamaño de fuente a.x_label.font_size = 2; a.title.font_size = 4; a.y_label.font_style = 8; a.x_label.font_style = 8; a.title.font_style = 4; xset("font",1,2); // modificación del grosor de las líneas xset("wpos",[0,0]); //fija la posición de la ventana en pantalla //Salidas de la función o(1) = ProtOut o(2) = GrasaOut o(3) = LactosaOut o(4) = i(4) o(5) = i(5) o(6) = i(6) o(7) = i(7) endfunction
7ad13a68397fbc611c37f4def2eb8e008d6d1245
449d555969bfd7befe906877abab098c6e63a0e8
/2375/CH9/EX9.3/ex9_3.sce
03c2b970008c78138f34babeb09e03e1918b0a99
[]
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
190
sce
ex9_3.sce
// Exa 9.3 clc; clear; close; format('v',5) // Given data wH= '0.9*wp1'; wp2='wp1*k'; //wH= 1/sqrt(1/wp1^1+1/(k*wp1)^2) k= sqrt(0.9^2/(1-0.9^2)); disp(k,"The value of k is : ")
3139e7986462875574c4c8146dda44c1c124a751
449d555969bfd7befe906877abab098c6e63a0e8
/3760/CH5/EX5.11/Ex5_11.sce
0ff034a65ff8d56f577924849cbca6c1b65751e0
[]
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
601
sce
Ex5_11.sce
clc; v=415; // rated voltage of motor f=50; // frequency of motor ef=520; // line to line excitation emf p=6; // number of poles xs=2; // per phase synchronous reactance t=220; // torque developed vt=v/sqrt(3); // rated per phase voltage eft=ef/sqrt(3); // per phase excitation emf ws=(4*%pi*f)/p; // synchronous speed de=asind((t*ws*xs)/(3*vt*eft)); // load angle ia=(sqrt(vt^2+eft^2-2*eft*vt*cosd(de)))/xs; // from phasor diagram(fig 5.48),armature current pf=(ef*sind(de))/(xs*ia*sqrt(3)); printf('Current drawn from supply is %f A\n',ia); printf('Power factor is %f leading',pf);
1de796000574dc5d11f43437736484449a90398d
449d555969bfd7befe906877abab098c6e63a0e8
/1280/CH5/EX5.5/5_5.sce
cbcaf3459f2fbbffa1dc73778e23818a71608312
[]
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
227
sce
5_5.sce
clc //initialisation of variables P1= 1000 //psi S= 0.85 P2= 350 //psi Hl= 679.41 //ft //CALCULATIONS Ha= P1*2.31/S He= Ha-(P2*2.31/S)-Hl //RESULTS //RESULTS printf ('energy exptracted from the fluid = %.2f ft',He)
d712ab933295131ce87ce1ce10e88a39bf3f65bd
1988df91caa448a35bbf274a6d2698fe434571b1
/tst/eval/simpl1.tst
46c9042cf9165fe5ddf2dfcef7bc591f25b2cfee
[]
no_license
namin/GETFOL
bd60e9a2d9f0905c50ff5c0cff4b6bf57a2049e2
bf42caf61799578eb82e9f17b3342bc2ee638a22
refs/heads/master
2021-10-25T08:08:20.142137
2021-10-22T16:16:40
2021-10-22T16:16:40
204,234,318
4
1
null
2019-08-25T02:05:54
2019-08-25T02:05:54
null
UTF-8
Scilab
false
false
1,485
tst
simpl1.tst
COMMENT | ************************************************************* | COMMENT | * AUTHOR: ? | COMMENT | * | COMMENT | * SUBJECT: SIMPLIFY TEST | COMMENT | * | COMMENT | * GETFOL VERSION: September 199) | COMMENT | * | COMMENT | ************************************************************* | DECLARE FUNCONST + *(NATNUM NATNUM)=NATNUM [INF]; declare indconst o oo ooo [NATNUM]; declare indconst u uu; declare predconst ugu 2; DECREP natnum nat; attach o dar [natnum] 5; attach oo dar [natnum] 10; attach u dar [natnum] 1; attach uu dar [nat] 1; attach + to [natnum,natnum=natnum] PLUS; attach = to [natnum,natnum] EQ; attach ugu to [natnum,natnum] EQ; attach * to [nat,natnum=nat] TIMES; attach * to [natnum,nat=natnum] TIMES; simplify u*uu; simplify uu*u; simplify ugu(uu*u,u*uu); simplify trmif ugu(o,o) then oo else o; simplify trmif ugu(o,oo) then oo else o; simplify trmif ugu(o,ooo) then oo else o+o; simplify uu*u = u*uu; simplify trmif o = o then oo else o; simplify trmif o=oo then oo else o; simplify trmif o=ooo then oo else o+o; simplify trmif ugu(o,o) then trmif ugu(o,oo) then oo else o else o; simplify trmif ugu(o,o) then trmif ugu(o,ooo) then oo else o else o; simplify ugu(o,o) iff ugu(o,o); simplify ugu(o,o) and ugu(o,o); simplify ugu(o,o) or ugu(o,o); simplify ugu(o,o) imp ugu(o,o); simplify not ugu(o,o); simplify not (ugu(o,o) and (ugu(u,uu*u) or ugu(o*u,o)));
c4076c0db0fc1b56060d4768e603ff4c918cdd79
449d555969bfd7befe906877abab098c6e63a0e8
/1418/CH26/EX26.21.c/EX26_21c.sce
e0ee9b33d7ec1cdf24c9671b410158d2d44b59bc
[]
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,817
sce
EX26_21c.sce
//EXAMPLE 26.21(c) //4-POLE DC SHUNT GENERATOR clc; funcprot(0); //Variable Initialisation P=4;.........................//Total number of poles S=80;........................//Total number of slots C=10;.........................//Total number of conductor per slots E1=400;.........................//Generated EMF at No load in Volts N1=1000;........................//Speed of the generator in rpm N2=800;.........................//Dropped speed of the generator in rpm Al=P;.........................//Number of parallel paths in a lap wound generator Z=S*C;........................//Total number of conductors E2=220;.......................//Generated open circuit voltage in Volts //Keeping speed held cnstant while changing the flux per pole printf("(i)Keeping speed held cnstant while changing the flux per pole"); Phi1=(E1*60*Al)*1000/(P*N1*Z);...........//Flux per pole in Mili Webers at 400 Volts disp(Phi1,"Flux per pole in Mili Webers at 400 Volts:"); Phi2=(E2/E1)*Phi1;....................//Flux per pole in Mili Webers at 220 Volts disp(Phi2,"Flux per pole in Mili Webers at 220 Volts:"); if Phi2<Phi1 then printf("By increasing the shunt field circuit resistance with the help of adding external rheostatic,\n"); printf("the current in the field circuit is reduced so as to decrease the flux to %0.1f mWb",Phi2); end //Keeping the same flux per pole while changing the speed printf("\n \n(ii).Keeping the same flux per pole while changing the speed"); N=(E2*60)/((Phi1/1000)*N2);................//Speed of the generator in rpm at 30 Mili Webers disp(N,"Speed of the generator in rpm at 30 Mili Webers:"); printf("Field circuit resistance must be reduced to a new value in order to obtain"); printf("\n %0.1f mWb of flux pole from a voltage of 220 V",Phi);
1331522e6eabc15055c04930c81371d8485b7319
449d555969bfd7befe906877abab098c6e63a0e8
/2207/CH10/EX10.15.2/ex_10_15_2.sce
863aaff288bc5dda230ab3d0202f27928813bab1
[]
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
658
sce
ex_10_15_2.sce
//Example 10.15.2 :Supply voltage per phase,slip,slip frequency ,slip and rotor loss clc; clear; close; //given data : format('v',6) V_rms=240;// in volts F1=50;//in Hz Vs_rms=240/2; disp("part (1)") disp(Vs_rms,"supply voltage (V) = ") disp("part (2)") N=1440;// in rpm P=4;// pole Ns=(120*F1)/4; S=((Ns-N)/Ns); disp("slip is "+string(S)+" or "+string(S*100)+" % ") disp("part (3)") S_frequency=S*F1; disp(S_frequency,"slip frequency(Hz) = ") disp("part (4)") f=2;//Hz f1=25;//Hz s=(f/f1);// disp("slip is "+string(s)+" or "+string(s*100)+" % ") disp("part (5)") F2=25;//in Hz S1=(S_frequency/F2); rotor_loss=S1/(1-S1); disp(rotor_loss ,"Rotor loss(%) = ")
61e6a3c9d9d5e3832517a75164a0ed563ae5ea10
449d555969bfd7befe906877abab098c6e63a0e8
/2081/CH4/EX4.7/Ex4_7.sce
211684f071ff9741918c1f11efcbba8e6572beb1
[]
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
Ex4_7.sce
n=16 N=7 M=12 Ncpc=n*N//no. of channels per cluster TSC=Ncpc*M//system capacity disp(Ncpc,'no. of channels per cluster') disp(TSC,'the system capacity in channels/system')
cbc06becede7f955616024cbab3fa4d5ef5554d8
449d555969bfd7befe906877abab098c6e63a0e8
/1172/CH6/EX6.20/Example6_20.sce
87968755c80f6a18d6ae7d7c320f12eac19a7f0b
[]
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
473
sce
Example6_20.sce
clc //Given that c = 3e8 // speed of light in m/s m = 1 // let m_change = 1 // change in mass in percentage by increasing velocity // sample problem 20 page No. 230 printf("\n \n\n # Problem 20 # \n") printf("\n Standard formula used \n m = m_o* sqrt ( 1- (v/c)^2) ") v = c * sqrt (1 - (m / (m + m_change/100))^2) // calculation of Velocity required to increase mass by one percent printf ( "\n Velocity required to increase mass by one perfect is %e m/s.", v)
94a7bf15dbf2713a4fcc308b5c8fb269f096331e
449d555969bfd7befe906877abab098c6e63a0e8
/2666/CH10/EX10.2/10_2.sce
a8e90caad60be19c1d36b96f2aa07d585c607220
[]
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
10_2.sce
clc //initialisation of variables v1=273//ft v2=319//ft k=2736//ft-lb per lb w=3112//ft lb k1=1600^2/(2*32.2)//ft-lb per lb q=33870//ft lb //CALCULATIONS V=sqrt(v1^2+v2^2)//ft per sec W=q+k+w//ft lb per lb //RESULTS printf('The total work kinetic energy=% f ft lb per lb',W)
9e7481b92725454672fc46d6f06ae7f6e48ecfdd
449d555969bfd7befe906877abab098c6e63a0e8
/1445/CH8/EX8.36/Ex8_36.sce
842d723de5bfa6343829600a86fe939172a37552
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,027
sce
Ex8_36.sce
//CHAPTER 8- DIRECT CURRENT MACHINES //Example 36 clc; disp("CHAPTER 8"); disp("EXAMPLE 36"); //VARIABLE INITIALIZATION v_t=250; //in Volts I_l=150; //in Amperes loss1=1200; //core loss at full load in Watts loss2=800; //mechanical loss in Watts r_b=0.08; //brush resistance in Ohms r_sh=62.5; //shunt field resistance in Ohms r_se=0.03; //series field resistance in Ohms r_ip=0.02; //interpole resistance in Ohms //SOLUTION //solution (a) p_o=v_t*I_l; I_sh=v_t/r_sh; I_a=I_l+I_sh; r_tot=r_b+r_se+r_ip; arm_loss=(I_a^2)*r_tot; //armature circuit copper loss cu_loss=v_t*I_sh; //shunt field copper loss c_loss=cu_loss+loss1+loss2; //constant loss disp(sprintf("(a) The constant loss is %f W",c_loss)); //solution (b) tot_loss=arm_loss+c_loss; //total loss p_i=p_o+tot_loss; eff=(p_o/p_i)*100; disp(sprintf("(b) The full load efficiency is %f %%",eff)); //END
107c9a7e537a30589f3663ea436bf9a47ce80ca3
bce0c755bfdc527c8cc0737e8e1e59467267cff9
/macros/undistortPoints.sci
e690f5875f6e077bab2ea58821d9d947e831a564
[]
no_license
shubham0108/FOSSEE-Image-Processing-Toolbox
bacc26e6c7139383a374ea16f6c62565a7ff0603
68cddb2ca8dabddfe47251ac6647011acb849a2c
refs/heads/master
2021-06-16T02:27:39.886532
2020-05-01T09:23:39
2020-05-01T09:23:39
97,078,162
0
0
null
2017-07-13T03:57:21
2017-07-13T03:57:21
null
UTF-8
Scilab
false
false
2,051
sci
undistortPoints.sci
// Copyright (C) 2015 - IIT Bombay - FOSSEE // // This file must be used under the terms of the CeCILL. // This source file is licensed as described in the file COPYING, which // you should have received as part of this distribution. The terms // are also available at // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt // Author: Deepshika & Nihar Rao // Organization: FOSSEE, IIT Bombay // Email: toolbox@scilab.in function [idealPoints] = undistortPoints(observedPoints, camMat, disCoefMat, rectMat, newCamMat) // Returns the ideal point coordinates from the observed point coordinates // // Calling Sequence // [idealPoints] = undistortPoints(observedPoints, camMat, disCoefMat, rectMat, newCamMat) // // Parameters // observedPoints: 1xN or Nx1 2-channel (CV_32FC2 or CV_64FC2). // camMat: \vecthreethree{f_x}{0}{c_x}{0}{f_y}{c_y}{0}{0}{1} // disCoefMat: Input vector of distortion coefficients (k_1, k_2, p_1, p_2[, k_3[, k_4, k_5, k_6]]) of 4, 5, or 8 elements. If the vector is NULL/empty, the zero distortion coefficients are assumed. // rectMat: Rectification transformation in the object space (3x3 matrix). If the matrix is empty, the identity transformation is used. //newCamMat: New camera matrix (3x3) or new projection matrix (3x4. If the matrix is empty, the identity new camera matrix is used. // idealPoints: ideal point coordinates matrix. If matrix newCamMat is identity or omitted, idealPoints will contain normalized point coordinates. // // Description // Returns the ideal points coordinates from the observed point coordinates after undistortion and reverse perpective transformation. // // Examples // [observedPoints] = [1 2 3 4; 4 3 2 1] // [camMat] = [450 0 231; 0 876.3 87.1; 0 0 1] // [disCoefMat] = [3 2 0 9] // [rectMat] = [1 0 0; 0 1 0; 0 0 1] // [newCamMat] = [] // [idealPoints] = undistortPoints(observedPoints, camMat, disCoefMat, rectMat, newCamMat) output = raw_undistortPoints(observedPoints, camMat, disCoefMat, rectMat, newCamMat) idealPoints=output; endfunction
0daad3690730b6bea461c8dc610b08e6ebb4090c
449d555969bfd7befe906877abab098c6e63a0e8
/1484/CH9/EX9.3/9_3.sce
2389f9ea9d779a785bcf3f4ff09b9df2da019863
[]
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
9_3.sce
clc //initialisation of variables g= 32.2 //ft/sec^2 T= 25 //C dp=8 //lbs/in^2 t= 0.005 //in w= 3 //in l= 1 //ft //CALCULATIONS ut= (0.0179*30.5/(g*453.6))/(1+0.03368*T+0.000221*T^2) Ql= dp*144*(t/12)^3*3600*6.24/(12*ut*4) //RESULTS printf ('Discharge= %.6f gallons per hour ',Ql) //ANSWER GIVEN IN THE TEXTBOOK IS WRONG
faf6c1296f886e048edf34360e05492977555888
449d555969bfd7befe906877abab098c6e63a0e8
/2621/CH3/EX3.2/Ex3_2.sce
5d401db0f196669053813ec14a41caa5ca51c9e5
[]
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
390
sce
Ex3_2.sce
// Example 3.2 clc; clear; close; // Given data format('v',6); R1= 2;// in kΩ Rf_min= 0; Rf_max= 100;// in kΩ // Formula Used : Af= 1+Rf/R1 Af_max= 1+Rf_max/R1;// maximum closed loop voltage gain Af_min= 1+Rf_min/R1;// minimum closed loop voltage gain disp(Af_max,"The maximum closed loop voltage gain is : "); disp(Af_min,"The minimum closed loop voltage gain is : ");
d0db3eb4f2b7fa55c76fd1381a09963c0fa09534
449d555969bfd7befe906877abab098c6e63a0e8
/1373/CH8/EX8.7/Chapter8_Example7.sce
8f243cccfe5035e14d1d1ac5dce02621c4a99992
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
892
sce
Chapter8_Example7.sce
//Chapter-8, Example 8.7, Page 348 //============================================================================= clc clear //INPUT DATA LH=0.08;//Horizantal length in m LV=0.12;//Vertical length in m Ts=50;//Surface temperature in degree C Ta=0;//Temeprature of air in degree C //CALCULATIONS L=(LH*LV)/(LH+LV);//Characteristic length in m Tb=(Ts+Ta)/2;//Film temperature in degree C p=0.707;//Density in kg/m^3 k=0.0263;//Thermal conductivity in W/m.K v1=(15.89*10^-6);//Kinematic viscosity in m^2/s b=(1/300);//Coefficient of thermal expansion in 1/K Pr=0.707;//Prantl number Gr=((9.81*b*L^3*(Ts-Ta))/(v1^2));//Grashof number Nu=0.55*Gr^(0.25);//Nussults number h=(Nu*k)/L;//Heat transfer coefficient in W/m^2.K //OUTPUT mprintf('Heat transfer coefficient is %3.2f W/m^2.K',h) //=================================END OF PROGRAM==============================
b1bb7565a178c2528e248ff755ce32df0a2a587f
449d555969bfd7befe906877abab098c6e63a0e8
/28/CH12/EX12.17/ex12_17.sce
58765bab16d6f947804c8a1a028c4116b3837105
[]
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
516
sce
ex12_17.sce
syms g1 g2 g3 poly(0,"l"); A=[1 2 0;3 -1 1;0 2 0]; C=[0;0;1]; G=[g1;g2;g3]; p=A-G*C; [r c]=size(A); I=eye(r,c); q=lI-p; // lI-(A-G*C) where I is identity matrix r=det(q) // detrminant of lI-(A-G*C) // on equating r=0 we get // characteristic equation l^3+g3*(l)^2+(2*g2-9)l+2+6*g1-2*g2-7*g3=0; printf("desired characteristic equation given is\n") l^3+10*(l)^2+34*l+40=0; // on comparing the coefficients og the two equations // we get g1=25.2 g2=21.5 g3=10 g1=25.2; g2=21.5; g3=10; disp(G)
28f95ccb8a42ef199e6215490182824b9627373b
449d555969bfd7befe906877abab098c6e63a0e8
/3769/CH3/EX3.31/Ex3_31.sce
de4dc543317a3e8cb67fd7ce6142d5fb8c652fd1
[]
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
374
sce
Ex3_31.sce
clear //Given Z=79 e=1.6*10**-19 e0=8.854*10**-12 R=6.2*10**-15 //Calculation // q=Z*e E=q/(4.0*%pi*e0*R**2) b=E/4.0 //Result printf("\n (i) The magnitude of the electric field at the surface of nucleus is %0.0f *10**21 N/C",E*10**-21) printf("\n (ii) The magnitude of the electric field at a distance 2R from the centre of the nucleus is %0.2f *10**21 N/C",b*10**-21)