blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
214
content_id
stringlengths
40
40
detected_licenses
listlengths
0
50
license_type
stringclasses
2 values
repo_name
stringlengths
6
115
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
21 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
141k
586M
star_events_count
int64
0
30.4k
fork_events_count
int64
0
9.67k
gha_license_id
stringclasses
8 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
50 values
src_encoding
stringclasses
23 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
1 class
length_bytes
int64
5
10.4M
extension
stringclasses
29 values
filename
stringlengths
2
96
content
stringlengths
5
10.4M
353d1b1b6cc8f2d6ae33d0c090161a95a08639fa
449d555969bfd7befe906877abab098c6e63a0e8
/3769/CH9/EX9.22/Ex9_22.sce
e667b74d2b55010abfaa75fed451ad2f821da1e0
[]
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
239
sce
Ex9_22.sce
clear //Given r=0.04 //m I1=20 I2=16 l=0.15 r1=0.1 //Calculation // u=4*%pi*10**-7 F1=(u*I1*I2*l)/(2.0*%pi*r) F2=(u*I1*I2*l)/(2.0*%pi*r1) F=F1-F2 //Result printf("\n Net force on the loop is %0.3f *10**-4 N", F*10**4)
98aa8b6ba5b50dca8aa287770f51c6470bcd2f45
cc2d34f24c651a9d4b81fc3ebd32ef5a23c5ef13
/SCILAB5/SCILAB3/dfFilterx.sci
231c002881cdad1ad68dc20ae69cdd9a4705e00c
[]
no_license
b4ss3k/D_DSP
85cfacf4e948109faa33cbc424390b44f53cc197
aabcc12fe0305e29713de6c0538428dd9ef323d3
refs/heads/master
2020-04-06T04:46:40.053395
2015-08-05T01:24:16
2015-08-05T01:24:16
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
367
sci
dfFilterx.sci
xbasc(); //clear graphics windows xselect(); //select new graphics windows mode(1) // select a mode in exec file (1) silent mode [h,hmag,fr]=wfir('lp',33,[.05 0],'hm',[0 0]); plot2d(fr,20*log10(hmag),4) [fil,fimag,fr] =wfir('lp',169,[.05 0],'hm',[0 0]); plot2d(fr,20*log(fimag),2) [ff,ffmag,fr] =wfir('lp',999,[.05 0],'hm',[0 0]); plot2d(fr,20*log10(ffmag),1)
c3a194077270c09979d4441d9eae1be96cf3a002
717ddeb7e700373742c617a95e25a2376565112c
/3044/CH7/EX7.14/Ex7_14.sce
9c46dfe0868b1fcf5504935d96f68c7fe3dd02ed
[]
no_license
appucrossroads/Scilab-TBC-Uploads
b7ce9a8665d6253926fa8cc0989cda3c0db8e63d
1d1c6f68fe7afb15ea12fd38492ec171491f8ce7
refs/heads/master
2021-01-22T04:15:15.512674
2017-09-19T11:51:56
2017-09-19T11:51:56
92,444,732
0
0
null
2017-05-25T21:09:20
2017-05-25T21:09:19
null
UTF-8
Scilab
false
false
479
sce
Ex7_14.sce
// Variable declaration n = 15 // sample size Mean1 = 75.20 // sample mean Mean2 = 77 // sample mean std_dev = 3.6 // standard deviation // Calculation // z(0.05) = 1.645 Z = 1.645 y1 = Z + sqrt(n)*((Mean1-Mean2) / std_dev) // lower limit of range // probability corresponding to Z>y1 is 0.614 p = 0.614 // P(Z > -0.219) = 0.614 prob = 1 - p // Result printf ( "Type-2 error probability: %.3f",prob)
b5f968855e11f335b4c0b2781f83a340b67316e8
449d555969bfd7befe906877abab098c6e63a0e8
/243/CH10/EX10.2/10_02.sce
72fd3e45c65ba47dc383936fa74ef59d4cfd0fc6
[]
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
474
sce
10_02.sce
//Example No. 10_02 //Fitting a Power-Function model to given data //Pg No. 331 clear ;close ;clc ; x = poly(0,'x'); X = 1:5 Y = [ 0.5 2 4.5 8 12.5 ] Xnew = log(X) Ynew = log(Y) n = length(Xnew) b = ( n*sum(Xnew.*Ynew) - sum(Xnew)*sum(Ynew) )/( n*sum(Xnew.*Xnew) - ( sum(Xnew) )^2 ) lna = sum(Ynew)/n - b*sum(Xnew)/n a = exp(lna) disp(b,'b = ') disp(lna,'lna = ') disp(a,'a = ') printf('\n The power function equation obtained is \n y = %.4Gx^%.4G',a,b);
430245525c05809831687d0093de006d33ec67b0
717ddeb7e700373742c617a95e25a2376565112c
/1445/CH2/EX2.44/Ex2_44.sce
b01b90a848feb585d7cf0ff3d93a4fb26a57d326
[]
no_license
appucrossroads/Scilab-TBC-Uploads
b7ce9a8665d6253926fa8cc0989cda3c0db8e63d
1d1c6f68fe7afb15ea12fd38492ec171491f8ce7
refs/heads/master
2021-01-22T04:15:15.512674
2017-09-19T11:51:56
2017-09-19T11:51:56
92,444,732
0
0
null
2017-05-25T21:09:20
2017-05-25T21:09:19
null
UTF-8
Scilab
false
false
541
sce
Ex2_44.sce
//CHAPTER 2- STEADY-STATE ANALYSIS OF SINGLE-PHASE A.C. CIRCUIT //Example 44 disp("CHAPTER 2"); disp("EXAMPLE 44"); //given //current in the resistor is given by i=4+5.sin wt - 3.cos 3.wt //VARIABLE INITIALIZATION r=20; //resistance in Ohms //SOLUTION //Power consumed by the resistor is P=P0+P1+P2 p0=(4^2)*r; p1=((5/sqrt(2))^2)*r; p2=((3/sqrt(2))^2)*r; p=p0+p1+p2; I=sqrt(p/r); disp(sprintf("The power consumed by the resistor is %d W",p)); disp(sprintf("The effective value of current is %.1f A",I)); //END
8610636c873248e8563c9479cd4ea4a65fa41c60
b6b875fb04ec6df2c0fb0d28f36962fa9aebb2bf
/TD1/logistique/logistiqueD.sce
7453df45ef274ead1601cbdd45408222c372f63e
[]
no_license
MFrizzy/Modelisation
51794b2edf421f9d2206cb73972d8d8d7b1e9759
0ca819afbcbe00f58f3bbaa8fc97164ae2c1d3cb
refs/heads/master
2021-08-29T12:02:20.042037
2017-12-13T22:39:21
2017-12-13T22:39:21
106,943,303
0
0
null
null
null
null
UTF-8
Scilab
false
false
266
sce
logistiqueD.sce
clear clf b=0.5; dvect = 0.05:0.05:0.5; ndate = 0:30; alpha = 0.05; for i = 1:10 d=dvect(i); x(1) = 1; for n = 1:30 x(n+1)=x(n)+b*x(n)- (d*x(n)+alpha*x(n)*x(n)); end plot2d(ndate, x, style = -1); plot2d(ndate, x, style = i); end
c1e56f4b2c9987486522ec76b57681cd7e130793
449d555969bfd7befe906877abab098c6e63a0e8
/1187/CH4/EX4.1/1.sce
9a49ced5dc5aea6b099f0d62d12a70c87c77c85a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
376
sce
1.sce
clc rho=1000; // kg/m^3 u1=36; // m/s u2=30; // m/s d=0.05; // m theta=60; // degrees A=%pi/4*d^2; Q=A*u1; F_x=rho*Q*(u2*cosd(theta) - u1); F_y=rho*Q*u2*sind(theta); F=sqrt(F_x^2+F_y^2); phi=atand(F_y/F_x); disp("The Hydrodynamic force on the vane =") disp(F) disp("N") printf("This resultant force acts at angle of %f to the x-direction", phi)
73a9cb5b17b0013aaad514d845bcdba870daed51
449d555969bfd7befe906877abab098c6e63a0e8
/2507/CH9/EX9.6/Ex9_6.sce
4e40bb4570f5582682b8828e44a82016f834c663
[]
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,570
sce
Ex9_6.sce
clc clear printf("Example 9.6 | Page number 268 \n\n"); //Find the final temperature when: //Part(a) V = constant //Part(b) pV = constant //Part(c) pV^y = constant //And P-V diagram //Given Data Cp = 1005 //J/kgK //specific heat at constant pressure Cv = 718 //J/kgK //specific heat at constant volume m = 1 //kg //mass of air T1 = (27+273) //K //initial temperature p1 = 1e5 //Pa //initial pressure p2 = p1/2 //Pa //final pressure //Solution //Part(a) printf("Part(a)\n"); R = Cp-Cv //J/kgK V1_a = m*R*T1/p1 //m^3 //initial volume V2_a = V1_a //m^3 //final volume T2 = p2*V2_a/(m*R) //K //final temperature printf("Final temperature,T2 = %.1f K\n\n",T2) //Part(b) printf("Part(b)\n"); V1_b = m*R*T1/p1 //m^3 //initial volume V2_b = V1_b*(p1/p2) //m^3 //final volume //Isothermal process => T1 = T2 printf("Final temperature,T2 = %.1f K\n\n",T1) //Part(c) printf("Part(c)\n"); R = Cp-Cv //J/kgK y = Cp/Cv V1_c = m*R*T1/p1 //m^3 //initial volume V2_c = V1_c*(p1/p2)^(1/y) //m^3 //final volume T2 = p2*V2_c/(m*R) //K //final temperature printf("Final temperature,T2 = %.1f K\n\n",T2) //P-V diagram P = [p1*1e-5 p2*1e-5] V = [V1_a V1_a] plot(V,P,'b') //plot for part(a) V = linspace(V1_b,V2_b,100) P = (p1*1e-5*V1_b)./V plot(V,P,'g') //plot for part(b) V = linspace(V1_c,V2_c,100) P = (p1*1e-5*V1_c^y)./V.^y plot(V,P,'r') //plot for part(c) xlabel('Volume in m^3') ylabel('Pressure in bar') title('p-V diagram sought in example 9.6') legends(['Part (a)';'Part (b)';'Part (c)'],[2 3 5],opt=1)
fdec7be984048b7a2240c04544f339c44991f7e7
daabc3867b8f4cd1afe9ef0d39701a7d9c4d8acb
/hdf/util/README.TST
beb3062419015f59784f05f46ea11f1a60818c7c
[ "BSD-3-Clause", "LicenseRef-scancode-hdf5" ]
permissive
schwehr/hdf4
142afe72520b32634d84494f51015eb8c7ab0b1f
97ac2954ca6d6c2bba24ade9301b691b98135709
refs/heads/master
2023-03-18T03:48:07.616808
2023-03-09T20:49:55
2023-03-09T20:49:55
581,363,881
0
0
NOASSERTION
2022-12-23T01:17:44
2022-12-23T01:17:44
null
UTF-8
Scilab
false
false
13,853
tst
README.TST
All the input data files needed to test the utilities are in the subdirectory testfiles/. Instructions on testing the HDF utility programs: hdf24to8 -- converts 24-bit raster images to hdf 8-bit images Copy head.r24.Z from the testfiles/ directory to the util/ directory. Type: uncompress head.r24.Z Execute the following in the util/ directory: cp testfiles/head.r24.Z . uncompress head.r24.Z ./hdf24to8 head.r24 head8.hdf View head8.hdf using any visualization tool available (mosaic, collage, etc). Delete head.r24 and head8.hdf when you are done. rm head.r24 head8.hdf hdfed -- hdf file editor Copy the file storm110.hdf from the testfiles/ directory to the util/ directory. Execute the following in the util/ directory: cp testfiles/storm110.hdf . ./hdfed storm110.hdf Running interactively, type the following commands: info -all prev tag = 300 info -long dump -short The latter two commands should result in the following responses: (6) Image Dimensions : (Tag 300) Ref: 110, Offset: 3459, Length: 20 (bytes) 0: 0 57 0 57 106 110 12: 1 0 0 0 Type help and experiment. Most of the information can be verified with hdfls. Be sure to type 'close' then 'quit' when you are finished and delete storm110.hdf when you are done. rm storm110.hdf Copy ntcheck.hdf from the testfiles/ directory to the util/ directory. Execute the following in the util/ directory: cp testfiles/ntcheck.hdf . ./hdfed ntcheck.hdf ntcheck.hdf will be used as an input file to test the dump function. The command: dump -help displays the list of formats supported by hdfed. Commands: prev tag=<tag> ref=<ref> and next tag=<rag> ref=<ref> move you back and forth among the objects. info -all gives the tag and reference numbers for each object. Look at the data in various objects and verify the data type. For example: next tag = 702 ref = 2 You will be past this data object and will receive the message "Reached end of file. Not moved." Repeat the command using prev instead of next. dump -float The first 5 lines of output should read as follows: 0: 0.000000e+00 1.000000e+00 2.000000e+00 3.000000e+00 16: 4.000000e+00 5.000000e+00 6.000000e+00 7.000000e+00 32: 8.000000e+00 9.000000e+00 4.000000e+01 4.100000e+01 48: 4.200000e+01 4.300000e+01 4.400000e+01 4.500000e+01 64: 4.600000e+01 4.700000e+01 4.800000e+01 4.900000e+01 next tag = 702 ref = 6 dump -short The first 5 lines of output should read as follows: 0: 0 1 2 3 4 5 12: 6 7 8 9 6000 6001 24: 6002 6003 6004 6005 6006 6007 36: 6008 6009 12000 12001 12002 12003 48: 12004 12005 12006 12007 12008 12009 The following is a cross reference of ref number and data type if you want to experiment: ref number type 2 DFNT_FLOAT32 3 DFNT_INT8 4 DFNT_UINT8 5 DFNT_INT16 6 DFNT_UINT16 7 DFNT_INT32 8 DFNT_UINT32 Type 'close' and 'quit' when you are finished. Delete ntcheck.hdf. rm ntcheck.hdf ristosds -- converts a series raster image hdf files into a single 3D sds hdf file. Copy the three HDF files storm110.hdf, storm120.hdf, and storm130.hdf from the testfiles/ directory. Execute the following in the util/ directory: cp testfiles/storm110.hdf testfiles/storm120.hdf testfiles/storm130.hdf . ./ristosds storm*.hdf -o storm.hdf Compare storm110.hdf with storm.hdf using the following commands: hdfed storm.hdf prev tag = 702 info -long (*) dump -length 20 -byte close open storm110.hdf prev tag = 302 info -long (**) dump -length 20 -byte close quit * In storm.hdf tag 702's element should be 9747 bytes. ** In storm110.hdf tag 302's element should be 1/3 of 9747, which is 3249. (It is a 57x57 image.) Compare the first few numbers in storm110's image with the first few numbers in storm.hdf's SDS. They should be the same. Remove storm*.hdf from the util/ directory before continuing. rm storm*.hdf hdfpack -- compacts an hdf file Copy the file test.hdf from the testfiles/ directory. Execute the following in the util/ directory: cp testfiles/test.hdf . ./hdfpack test.hdf test.pck ./hdfpack -b test.hdf test.blk Use hdfls to get a listing of test.hdf and test.pck. The only difference between the 2 listings should be that test.pck shouldn't have any special elements and it also shouldn't have any "Linked Block Indicators." ./hdfls test.hdf ./hdfls test.pck The file sizes should be as follows: test.hdf - 11795 test.pck - 6747 test.blk - 7599 Depending on the platform, the file sizes may be one byte off for test.pck and test.blk. Remove test.cdf, test.blk, and test.pck. rm test.hdf test.blk test.pck hdftopal/paltohdf -- converts between a raw palette and an hdf Copy the file palette.raw from the testfiles/ directory. Execute the following in the util/ directory: cp testfiles/palette.raw . ./paltohdf palette.raw palette.hdf ./hdftopal palette.hdf palette.raw.new Use hdfls with the '-l' option to examine palette.hdf. It should have an 'Image Palette-8' and an 'Image Palette,' both with length 768 bytes. They should also have the same reference number. Use the Unix utility 'cmp' or something similar to do a byte-for-byte comparison of palette.raw and palette.raw.new. They should be identical. cmp palette.raw palette.raw.new Remove palette.*. rm palette.* r8tohdf/hdftor8 -- converts between 8-bit raster images and hdf files Copy the files storm*.raw and palette.raw from the testfiles/ directory. Execute the following in the util/ directory: cp testfiles/storm*.raw . ./r8tohdf 57 57 storm.hdf storm*.raw ./r8tohdf 57 57 storm.hdf -p palette.raw -i storm110.raw ./hdftor8 storm.hdf Use hdfls with the '-l' option to examine storm.hdf. It should contain five raster image sets, one of which will be compressed under IMCOMP compression. (If you do not put the '-p' in the second r8tohdf command above, you should get an error message.) The non-compressed raster images should be the same length as the raw raster files. The compressed will be about 25% of that size. Use the Unix utility 'cmp' or something similar to do byte-for-byte comparisons on the raw raster files produced by hdftor8: cmp img001-057.057 storm110.raw cmp img002-057.057 storm120.raw cmp img003-057.057 storm130.raw cmp img004-057.057 storm140.raw There should be one more img* file than you had at the start. One of the img files may not compare exactly with any one of the raw rasters, and the rest will compare with one of the other raw rasters. There is no guarantee about the order of the produced raw rasters, but it is likely they will be produced in the order in which they went into the file, which would be increasing numerical order, with the compressed image last. Remove storm* and img* when you are done. rm storm* img* hdfcomp -- re-compress 8-bit raster hdf file Copy the files storm*.hdf from the testfiles/ directory. Execute: cp testfiles/storm*.hdf . ./hdfcomp allstorms.hdf storm*.hdf ./hdfcomp allcomp.hdf -c storm*.hdf Use hdfls with the '-l' option to examine the two HDF files. The first, allstorms.hdf, should simply hold the raster together in one file, with no compression. You can use hdfls to check the original files. The second file, allcomp.hdf, should hold all the rasters in a compress format. Run-Length Encoding (RLE) compression will result in modest savings - about 10% to 15% for these files. Remove allstorms.hdf and allcomp.hdf. rm storm*.hdf all*.hdf jpeg2hdf/hdf2jpeg Copy the file jpeg_img.jpg from the testfiles/ directory. Execute: cp testfiles/jpeg_img.jpg . ./jpeg2hdf jpeg_img.jpg jpeg.hdf ./hdf2jpeg jpeg.hdf jpeg2.jpg Use hdfls with the '-l' option to examine the HDF file. It should contain one raster image set, which will be compressed with JPEG compression. The JPEG compressed image will be 2922 bytes in size. Use the Unix utility 'cmp' or something similar to do byte-for-byte comparisons on the produced raw raster files by hdf2jpeg. The initial jpeg_img.jpg file should be an exact match for the new jpeg2.jpg file. cmp jpeg_img.jpg jpeg2.jpg Remove jpeg.hdf, jpeg_img.jpg, and jpeg2.jpg. rm jpeg.hdf jpeg_img.jpg jpeg2.jpg fp2hdf -- converts floating point 2D/3D datasets into hdf SDS or RIS. To test this utility you must first create the ASCII and binary test files with the fptest program. Then run fp2hdf on the test files that get created, and analyze the output. Following are the steps to do this: 1. Run fptest to create 2D/3D ASCII/binary test files: ./fptest FILE TYPE DIMENSIONS ---- ---- ---------- ctxtr2 TEXT 3x4 ctxtr3 TEXT 5x3x4 cb32r2 FP32 3x4 cb32r3 FP32 5x3x4 cb64r2 FP64 3x4 cb64r3 FP64 5x3x4 Following are the values of the dimension scales and arrays that get created: row scale values start at 11 and increment by 1 => 11, 12, 13 column scale values start at 21 and increment by 2 => 21, 23, 25, 27 plane scale values start at 51 and increment by 5 => 51, 56, 61, 66, 71 data element value = row scale value + column scale value [+ plane scale value, if rank=3] For an array of [3][4], data values are: 3.200000E+01 3.400000E+01 3.600000E+01 3.800000E+01 3.300000E+01 3.500000E+01 3.700000E+01 3.900000E+01 3.400000E+01 3.600000E+01 3.800000E+01 4.000000E+01 For array of [5][3][4], data values are: 8.300000E+01 8.500000E+01 8.700000E+01 8.900000E+01 8.400000E+01 8.600000E+01 8.800000E+01 9.000000E+01 8.500000E+01 8.700000E+01 8.900000E+01 9.100000E+01 8.800000E+01 9.000000E+01 9.200000E+01 9.400000E+01 8.900000E+01 9.100000E+01 9.300000E+01 9.500000E+01 9.000000E+01 9.200000E+01 9.400000E+01 9.600000E+01 9.300000E+01 9.500000E+01 9.700000E+01 9.900000E+01 9.400000E+01 9.600000E+01 9.800000E+01 1.000000E+02 9.500000E+01 9.700000E+01 9.900000E+01 1.010000E+02 9.800000E+01 1.000000E+02 1.020000E+02 1.040000E+02 9.900000E+01 1.010000E+02 1.030000E+02 1.050000E+02 1.000000E+02 1.020000E+02 1.040000E+02 1.060000E+02 1.030000E+02 1.050000E+02 1.070000E+02 1.090000E+02 1.040000E+02 1.060000E+02 1.080000E+02 1.100000E+02 1.050000E+02 1.070000E+02 1.090000E+02 1.110000E+02 2. Run fp2hdf on the test files that were created: ./fp2hdf ctxtr2 -o ctxtr2.hdf ./fp2hdf ctxtr3 -o ctxtr3.hdf ./fp2hdf cb32r2 -o cb32r2.hdf ./fp2hdf cb32r3 -o cb32r3.hdf ./fp2hdf cb64r2 -o cb64r2.hdf ./fp2hdf cb64r3 -o cb64r3.hdf ./fp2hdf ctxtr2 -o ctxtr2_ris.hdf -raster -e 50 50 ./fp2hdf cb64r2 -o cb64r2_ris.hdf -raster -i 50 50 -f 3. Use hdfls and hdfed to verify the correctness of the output *.hdf files. The rank, dimension size, number type, dimension scale and data values should agree with those listed in item 1 above. You can also use the hdp command. To use hdp from the util/ directory, type: For an SDS: ../../mfhdf/dumper/hdp dumpsds <hdf filename> For a raster image: ../../mfhdf/dumper/hdp dumprig <hdf filename> Collage can also be used to display the *.hdf files. Display the spreadsheet and compare the values to those in Item 1. For the Raster Images, display the image; the values are interpolated, and will not match the values as show in Item 1. ctxtr2.hdf -- 2D SDS, display spreadsheet ctxtr3.hdf -- 3D SDS, display spreadsheet along z axis. cb32r2.hdf -- 2D SDS, display spreadsheet cb32r3.hdf -- 3D SDS, display spreadsheet along z axis cb64r2.hdf -- 2D SDS, display spreadsheet cb64r3.hdf -- 3D SDS, display spreadsheet along z axis ctxtr2_ris.hdf -- RIS, display image cb64r2_ris.hdf -- 2D SDS, display spreadsheet RIS, display image 4. Remove ctxtr* and cb*. rm ctxtr* cb* *.hdf
2b447b1d7e752c0db54f8a0beed8462fa534b7be
f542bc49c4d04b47d19c88e7c89d5db60922e34e
/PresentationFiles_Subjects/CONT/UL68HRM/ATWM1_Working_Memory_MEG_UL68HRM_Session1/ATWM1_Working_Memory_MEG_Salient_Cued_Run1.sce
be1824b6a2f5d11282fc702537020e7b48e1e278
[]
no_license
atwm1/Presentation
65c674180f731f050aad33beefffb9ba0caa6688
9732a004ca091b184b670c56c55f538ff6600c08
refs/heads/master
2020-04-15T14:04:41.900640
2020-02-14T16:10:11
2020-02-14T16:10:11
56,771,016
0
1
null
null
null
null
UTF-8
Scilab
false
false
49,384
sce
ATWM1_Working_Memory_MEG_Salient_Cued_Run1.sce
# ATWM1 MEG Experiment scenario = "ATWM1_Working_Memory_MEG_salient_cued_run1"; #scenario_type = fMRI; # Fuer Scanner #scenario_type = fMRI_emulation; # Zum Testen scenario_type = trials; # for MEG #scan_period = 2000; # TR #pulses_per_scan = 1; #pulse_code = 1; pulse_width=6; default_monitor_sounds = false; active_buttons = 2; response_matching = simple_matching; button_codes = 10, 20; default_font_size = 28; default_font = "Arial"; default_background_color = 0 ,0 ,0 ; write_codes=true; # for MEG only begin; #Picture definitions box { height = 300; width = 300; color = 0, 0, 0;} frame1; box { height = 290; width = 290; color = 255, 255, 255;} frame2; box { height = 30; width = 4; color = 0, 0, 0;} fix1; box { height = 4; width = 30; color = 0, 0, 0;} fix2; box { height = 30; width = 4; color = 255, 0, 0;} fix3; box { height = 4; width = 30; color = 255, 0, 0;} fix4; box { height = 290; width = 290; color = 128, 128, 128;} background; TEMPLATE "StimuliDeclaration.tem" {}; trial { sound sound_incorrect; time = 0; duration = 1; } wrong; trial { sound sound_correct; time = 0; duration = 1; } right; trial { sound sound_no_response; time = 0; duration = 1; } miss; # Start of experiment (MEG only) - sync with CTF software trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; } expStart; time = 0; duration = 1000; code = "ExpStart"; port_code = 80; }; # baselinePre (at the beginning of the session) trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; }default; time = 0; duration = 10000; #mri_pulse = 1; code = "BaselinePre"; port_code = 91; }; TEMPLATE "ATWM1_Working_Memory_MEG.tem" { trigger_encoding trigger_retrieval cue_time preparation_time encoding_time single_stimulus_presentation_time delay_time retrieval_time intertrial_interval alerting_cross stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 trial_code stim_retr1 stim_retr2 stim_retr3 stim_retr4 stim_cue1 stim_cue2 stim_cue3 stim_cue4 fixationcross_cued retr_code the_target_button posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4; 41 61 292 292 399 125 1742 2992 2142 fixation_cross gabor_035 gabor_001 gabor_159 gabor_125 gabor_035 gabor_001_alt gabor_159_alt gabor_125 "1_1_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2150_gabor_patch_orientation_035_001_159_125_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_019_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_1_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_019_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 2042 2992 2542 fixation_cross gabor_133 gabor_058 gabor_026 gabor_164 gabor_133 gabor_058_alt gabor_026 gabor_164_alt "1_2_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_2550_gabor_patch_orientation_133_058_026_164_target_position_2_4_retrieval_position_2" gabor_circ gabor_107_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_2_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_107_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 1842 2992 2042 fixation_cross gabor_028 gabor_081 gabor_140 gabor_113 gabor_028 gabor_081 gabor_140_alt gabor_113_alt "1_3_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2050_gabor_patch_orientation_028_081_140_113_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_159_framed blank blank blank blank fixation_cross_target_position_3_4 "1_3_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_159_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 1792 2992 1942 fixation_cross gabor_085 gabor_019 gabor_148 gabor_058 gabor_085_alt gabor_019 gabor_148 gabor_058_alt "1_4_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_1950_gabor_patch_orientation_085_019_148_058_target_position_1_4_retrieval_position_1" gabor_085_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_4_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_085_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 2242 2992 2142 fixation_cross gabor_090 gabor_157 gabor_174 gabor_069 gabor_090_alt gabor_157_alt gabor_174 gabor_069 "1_5_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_2150_gabor_patch_orientation_090_157_174_069_target_position_1_2_retrieval_position_2" gabor_circ gabor_157_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_5_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_157_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 64 292 292 399 125 1742 2992 2492 fixation_cross gabor_155 gabor_002 gabor_086 gabor_021 gabor_155_alt gabor_002_alt gabor_086 gabor_021 "1_6_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_UncuedRetriev_300_300_399_1750_3000_2500_gabor_patch_orientation_155_002_086_021_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_021_framed blank blank blank blank fixation_cross_target_position_1_2 "1_6_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_021_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 2092 2992 2292 fixation_cross gabor_127 gabor_155 gabor_081 gabor_112 gabor_127 gabor_155_alt gabor_081 gabor_112_alt "1_7_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2300_gabor_patch_orientation_127_155_081_112_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_065_framed blank blank blank blank fixation_cross_target_position_2_4 "1_7_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_065_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 1992 2992 2542 fixation_cross gabor_025 gabor_059 gabor_090 gabor_145 gabor_025_alt gabor_059 gabor_090 gabor_145_alt "1_8_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2550_gabor_patch_orientation_025_059_090_145_target_position_1_4_retrieval_position_1" gabor_025_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_8_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_025_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 1792 2992 2542 fixation_cross gabor_180 gabor_123 gabor_147 gabor_017 gabor_180_alt gabor_123_alt gabor_147 gabor_017 "1_9_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2550_gabor_patch_orientation_180_123_147_017_target_position_1_2_retrieval_position_1" gabor_180_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_9_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_180_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 64 292 292 399 125 2192 2992 2092 fixation_cross gabor_011 gabor_163 gabor_041 gabor_092 gabor_011_alt gabor_163_alt gabor_041 gabor_092 "1_10_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_UncuedRetriev_300_300_399_2200_3000_2100_gabor_patch_orientation_011_163_041_092_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_041_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_10_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_041_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 1792 2992 1942 fixation_cross gabor_039 gabor_081 gabor_060 gabor_147 gabor_039 gabor_081_alt gabor_060_alt gabor_147 "1_11_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_1950_gabor_patch_orientation_039_081_060_147_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_015_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_11_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_015_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 1842 2992 2492 fixation_cross gabor_093 gabor_129 gabor_075 gabor_156 gabor_093_alt gabor_129 gabor_075_alt gabor_156 "1_12_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2500_gabor_patch_orientation_093_129_075_156_target_position_1_3_retrieval_position_1" gabor_045_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_12_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_045_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 1892 2992 2292 fixation_cross gabor_054 gabor_122 gabor_080 gabor_104 gabor_054 gabor_122_alt gabor_080_alt gabor_104 "1_13_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2300_gabor_patch_orientation_054_122_080_104_target_position_2_3_retrieval_position_2" gabor_circ gabor_122_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_13_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_122_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 1742 2992 2042 fixation_cross gabor_024 gabor_131 gabor_147 gabor_063 gabor_024_alt gabor_131_alt gabor_147 gabor_063 "1_14_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2050_gabor_patch_orientation_024_131_147_063_target_position_1_2_retrieval_position_2" gabor_circ gabor_083_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_14_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_083_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 1742 2992 2192 fixation_cross gabor_070 gabor_105 gabor_129 gabor_042 gabor_070 gabor_105_alt gabor_129_alt gabor_042 "1_15_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2200_gabor_patch_orientation_070_105_129_042_target_position_2_3_retrieval_position_2" gabor_circ gabor_105_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_15_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_105_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 2142 2992 2242 fixation_cross gabor_049 gabor_088 gabor_071 gabor_018 gabor_049 gabor_088 gabor_071_alt gabor_018_alt "1_16_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2250_gabor_patch_orientation_049_088_071_018_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_018_framed blank blank blank blank fixation_cross_target_position_3_4 "1_16_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_018_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 63 292 292 399 125 2142 2992 2092 fixation_cross gabor_148 gabor_170 gabor_086 gabor_013 gabor_148 gabor_170 gabor_086_alt gabor_013_alt "1_17_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_UncuedRetriev_300_300_399_2150_3000_2100_gabor_patch_orientation_148_170_086_013_target_position_3_4_retrieval_position_2" gabor_circ gabor_121_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_17_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_121_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 1942 2992 2392 fixation_cross gabor_052 gabor_162 gabor_036 gabor_006 gabor_052 gabor_162_alt gabor_036_alt gabor_006 "1_18_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_2400_gabor_patch_orientation_052_162_036_006_target_position_2_3_retrieval_position_2" gabor_circ gabor_162_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_18_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_162_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 63 292 292 399 125 2042 2992 2042 fixation_cross gabor_150 gabor_168 gabor_039 gabor_090 gabor_150 gabor_168_alt gabor_039_alt gabor_090 "1_19_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_UncuedRetriev_300_300_399_2050_3000_2050_gabor_patch_orientation_150_168_039_090_target_position_2_3_retrieval_position_1" gabor_013_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_19_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_013_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 1842 2992 1942 fixation_cross gabor_035 gabor_151 gabor_177 gabor_087 gabor_035_alt gabor_151_alt gabor_177 gabor_087 "1_20_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_1950_gabor_patch_orientation_035_151_177_087_target_position_1_2_retrieval_position_2" gabor_circ gabor_104_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_20_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_104_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 2192 2992 2042 fixation_cross gabor_132 gabor_063 gabor_117 gabor_043 gabor_132 gabor_063 gabor_117_alt gabor_043_alt "1_21_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2050_gabor_patch_orientation_132_063_117_043_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_043_framed blank blank blank blank fixation_cross_target_position_3_4 "1_21_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_043_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 2192 2992 2442 fixation_cross gabor_048 gabor_157 gabor_095 gabor_077 gabor_048_alt gabor_157 gabor_095 gabor_077_alt "1_22_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2450_gabor_patch_orientation_048_157_095_077_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_077_framed blank blank blank blank fixation_cross_target_position_1_4 "1_22_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_077_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 2042 2992 2392 fixation_cross gabor_005 gabor_139 gabor_177 gabor_050 gabor_005 gabor_139 gabor_177_alt gabor_050_alt "1_23_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2400_gabor_patch_orientation_005_139_177_050_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_050_framed blank blank blank blank fixation_cross_target_position_3_4 "1_23_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_050_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 2042 2992 2192 fixation_cross gabor_153 gabor_013 gabor_124 gabor_178 gabor_153_alt gabor_013 gabor_124 gabor_178_alt "1_24_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_2200_gabor_patch_orientation_153_013_124_178_target_position_1_4_retrieval_position_1" gabor_103_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_24_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_103_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 1792 2992 2342 fixation_cross gabor_003 gabor_175 gabor_044 gabor_155 gabor_003 gabor_175 gabor_044_alt gabor_155_alt "1_25_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2350_gabor_patch_orientation_003_175_044_155_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_044_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_25_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_044_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 64 292 292 399 125 1842 2992 2592 fixation_cross gabor_116 gabor_035 gabor_095 gabor_079 gabor_116 gabor_035_alt gabor_095_alt gabor_079 "1_26_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_UncuedRetriev_300_300_399_1850_3000_2600_gabor_patch_orientation_116_035_095_079_target_position_2_3_retrieval_position_1" gabor_116_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_26_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_116_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 2192 2992 1892 fixation_cross gabor_065 gabor_086 gabor_048 gabor_135 gabor_065_alt gabor_086 gabor_048_alt gabor_135 "1_27_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_1900_gabor_patch_orientation_065_086_048_135_target_position_1_3_retrieval_position_1" gabor_065_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_27_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_065_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 1942 2992 1992 fixation_cross gabor_064 gabor_133 gabor_171 gabor_093 gabor_064_alt gabor_133 gabor_171 gabor_093_alt "1_28_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_2000_gabor_patch_orientation_064_133_171_093_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_093_framed blank blank blank blank fixation_cross_target_position_1_4 "1_28_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_093_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 63 292 292 399 125 1992 2992 2042 fixation_cross gabor_135 gabor_073 gabor_100 gabor_014 gabor_135_alt gabor_073_alt gabor_100 gabor_014 "1_29_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_UncuedRetriev_300_300_399_2000_3000_2050_gabor_patch_orientation_135_073_100_014_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_052_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_29_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_052_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 1742 2992 2242 fixation_cross gabor_015 gabor_087 gabor_059 gabor_035 gabor_015_alt gabor_087 gabor_059_alt gabor_035 "1_30_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2250_gabor_patch_orientation_015_087_059_035_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_104_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_30_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_104_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 2092 2992 1892 fixation_cross gabor_144 gabor_112 gabor_128 gabor_178 gabor_144 gabor_112 gabor_128_alt gabor_178_alt "1_31_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_1900_gabor_patch_orientation_144_112_128_178_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_178_framed blank blank blank blank fixation_cross_target_position_3_4 "1_31_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_178_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 1792 2992 2142 fixation_cross gabor_050 gabor_093 gabor_070 gabor_115 gabor_050 gabor_093_alt gabor_070 gabor_115_alt "1_32_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2150_gabor_patch_orientation_050_093_070_115_target_position_2_4_retrieval_position_2" gabor_circ gabor_138_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_32_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_138_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 1942 2992 2392 fixation_cross gabor_068 gabor_017 gabor_140 gabor_099 gabor_068_alt gabor_017_alt gabor_140 gabor_099 "1_33_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_2400_gabor_patch_orientation_068_017_140_099_target_position_1_2_retrieval_position_2" gabor_circ gabor_017_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_33_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_017_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 63 292 292 399 125 1742 2992 2192 fixation_cross gabor_121 gabor_064 gabor_094 gabor_170 gabor_121 gabor_064 gabor_094_alt gabor_170_alt "1_34_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_UncuedRetriev_300_300_399_1750_3000_2200_gabor_patch_orientation_121_064_094_170_target_position_3_4_retrieval_position_2" gabor_circ gabor_014_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_34_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_014_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 2242 2992 1892 fixation_cross gabor_003 gabor_018 gabor_129 gabor_084 gabor_003 gabor_018_alt gabor_129_alt gabor_084 "1_35_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_1900_gabor_patch_orientation_003_018_129_084_target_position_2_3_retrieval_position_2" gabor_circ gabor_068_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_35_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_068_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 2242 2992 2492 fixation_cross gabor_086 gabor_048 gabor_116 gabor_157 gabor_086 gabor_048_alt gabor_116_alt gabor_157 "1_36_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_2500_gabor_patch_orientation_086_048_116_157_target_position_2_3_retrieval_position_2" gabor_circ gabor_048_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_36_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_048_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 1892 2992 2242 fixation_cross gabor_069 gabor_140 gabor_100 gabor_028 gabor_069 gabor_140 gabor_100_alt gabor_028_alt "1_37_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2250_gabor_patch_orientation_069_140_100_028_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_052_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_37_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_052_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 1992 2992 2292 fixation_cross gabor_091 gabor_051 gabor_020 gabor_072 gabor_091_alt gabor_051_alt gabor_020 gabor_072 "1_38_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2300_gabor_patch_orientation_091_051_020_072_target_position_1_2_retrieval_position_2" gabor_circ gabor_004_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_38_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_004_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 1992 2992 2242 fixation_cross gabor_060 gabor_169 gabor_015 gabor_098 gabor_060 gabor_169 gabor_015_alt gabor_098_alt "1_39_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2250_gabor_patch_orientation_060_169_015_098_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_015_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_39_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_015_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 1792 2992 1992 fixation_cross gabor_008 gabor_076 gabor_146 gabor_125 gabor_008_alt gabor_076 gabor_146 gabor_125_alt "1_40_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2000_gabor_patch_orientation_008_076_146_125_target_position_1_4_retrieval_position_1" gabor_008_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_40_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_008_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 63 292 292 399 125 2042 2992 2492 fixation_cross gabor_131 gabor_162 gabor_096 gabor_041 gabor_131_alt gabor_162 gabor_096_alt gabor_041 "1_41_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_UncuedRetriev_300_300_399_2050_3000_2500_gabor_patch_orientation_131_162_096_041_target_position_1_3_retrieval_position_2" gabor_circ gabor_115_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_41_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_115_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 1942 2992 2092 fixation_cross gabor_092 gabor_175 gabor_040 gabor_066 gabor_092_alt gabor_175_alt gabor_040 gabor_066 "1_42_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2100_gabor_patch_orientation_092_175_040_066_target_position_1_2_retrieval_position_2" gabor_circ gabor_127_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_42_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_127_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 1892 2992 2442 fixation_cross gabor_041 gabor_166 gabor_007 gabor_097 gabor_041_alt gabor_166_alt gabor_007 gabor_097 "1_43_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2450_gabor_patch_orientation_041_166_007_097_target_position_1_2_retrieval_position_2" gabor_circ gabor_117_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_43_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_117_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 2092 2992 2142 fixation_cross gabor_053 gabor_128 gabor_020 gabor_091 gabor_053_alt gabor_128_alt gabor_020 gabor_091 "1_44_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2150_gabor_patch_orientation_053_128_020_091_target_position_1_2_retrieval_position_2" gabor_circ gabor_173_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_44_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_173_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 1892 2992 2342 fixation_cross gabor_071 gabor_021 gabor_039 gabor_086 gabor_071_alt gabor_021_alt gabor_039 gabor_086 "1_45_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2350_gabor_patch_orientation_071_021_039_086_target_position_1_2_retrieval_position_2" gabor_circ gabor_158_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_45_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_158_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 1742 2992 2342 fixation_cross gabor_157 gabor_110 gabor_036 gabor_084 gabor_157 gabor_110_alt gabor_036_alt gabor_084 "1_46_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2350_gabor_patch_orientation_157_110_036_084_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_036_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_46_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_036_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 2142 2992 2242 fixation_cross gabor_091 gabor_107 gabor_134 gabor_069 gabor_091 gabor_107_alt gabor_134 gabor_069_alt "1_47_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_2250_gabor_patch_orientation_091_107_134_069_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_020_framed blank blank blank blank fixation_cross_target_position_2_4 "1_47_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_020_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 64 292 292 399 125 1892 2992 2092 fixation_cross gabor_073 gabor_162 gabor_011 gabor_096 gabor_073_alt gabor_162_alt gabor_011 gabor_096 "1_48_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_UncuedRetriev_300_300_399_1900_3000_2100_gabor_patch_orientation_073_162_011_096_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_096_framed blank blank blank blank fixation_cross_target_position_1_2 "1_48_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_096_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 2092 2992 1992 fixation_cross gabor_166 gabor_029 gabor_145 gabor_108 gabor_166 gabor_029_alt gabor_145 gabor_108_alt "1_49_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2000_gabor_patch_orientation_166_029_145_108_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_058_framed blank blank blank blank fixation_cross_target_position_2_4 "1_49_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_058_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 1992 2992 1992 fixation_cross gabor_014 gabor_137 gabor_153 gabor_083 gabor_014 gabor_137_alt gabor_153_alt gabor_083 "1_50_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2000_gabor_patch_orientation_014_137_153_083_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_103_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_50_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_103_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 2142 2992 2542 fixation_cross gabor_097 gabor_126 gabor_011 gabor_051 gabor_097 gabor_126_alt gabor_011_alt gabor_051 "1_51_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2550_gabor_patch_orientation_097_126_011_051_target_position_2_3_retrieval_position_2" gabor_circ gabor_126_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_51_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_126_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 64 292 292 399 125 2142 2992 2342 fixation_cross gabor_001 gabor_144 gabor_170 gabor_112 gabor_001_alt gabor_144_alt gabor_170 gabor_112 "1_52_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_UncuedRetriev_300_300_399_2150_3000_2350_gabor_patch_orientation_001_144_170_112_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_112_framed blank blank blank blank fixation_cross_target_position_1_2 "1_52_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_112_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 1892 2992 2142 fixation_cross gabor_143 gabor_091 gabor_062 gabor_172 gabor_143 gabor_091_alt gabor_062 gabor_172_alt "1_53_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2150_gabor_patch_orientation_143_091_062_172_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_036_framed blank blank blank blank fixation_cross_target_position_2_4 "1_53_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_036_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 1792 2992 1992 fixation_cross gabor_074 gabor_142 gabor_116 gabor_003 gabor_074 gabor_142_alt gabor_116 gabor_003_alt "1_54_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2000_gabor_patch_orientation_074_142_116_003_target_position_2_4_retrieval_position_2" gabor_circ gabor_092_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_54_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_092_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 2042 2992 2442 fixation_cross gabor_166 gabor_032 gabor_052 gabor_099 gabor_166_alt gabor_032 gabor_052_alt gabor_099 "1_55_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_2450_gabor_patch_orientation_166_032_052_099_target_position_1_3_retrieval_position_1" gabor_116_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_55_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_116_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 63 292 292 399 125 1842 2992 1892 fixation_cross gabor_126 gabor_176 gabor_097 gabor_161 gabor_126_alt gabor_176 gabor_097 gabor_161_alt "1_56_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_UncuedRetriev_300_300_399_1850_3000_1900_gabor_patch_orientation_126_176_097_161_target_position_1_4_retrieval_position_2" gabor_circ gabor_040_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_56_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_040_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 2142 2992 1892 fixation_cross gabor_128 gabor_090 gabor_157 gabor_172 gabor_128 gabor_090_alt gabor_157_alt gabor_172 "1_57_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_1900_gabor_patch_orientation_128_090_157_172_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_021_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_57_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_021_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 1942 2992 2192 fixation_cross gabor_059 gabor_120 gabor_032 gabor_009 gabor_059 gabor_120_alt gabor_032_alt gabor_009 "1_58_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_2200_gabor_patch_orientation_059_120_032_009_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_032_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_58_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_032_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 1992 2992 2592 fixation_cross gabor_129 gabor_079 gabor_103 gabor_146 gabor_129 gabor_079_alt gabor_103_alt gabor_146 "1_59_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2600_gabor_patch_orientation_129_079_103_146_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_103_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_59_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_103_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 63 292 292 399 125 2242 2992 2592 fixation_cross gabor_014 gabor_033 gabor_075 gabor_122 gabor_014 gabor_033_alt gabor_075_alt gabor_122 "1_60_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_UncuedRetriev_300_300_399_2250_3000_2600_gabor_patch_orientation_014_033_075_122_target_position_2_3_retrieval_position_1" gabor_152_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_60_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_152_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 1842 2992 2092 fixation_cross gabor_156 gabor_050 gabor_081 gabor_015 gabor_156_alt gabor_050 gabor_081_alt gabor_015 "1_61_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2100_gabor_patch_orientation_156_050_081_015_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_081_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_61_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_081_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 2192 2992 2442 fixation_cross gabor_173 gabor_067 gabor_043 gabor_156 gabor_173 gabor_067_alt gabor_043_alt gabor_156 "1_62_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2450_gabor_patch_orientation_173_067_043_156_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_043_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_62_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_043_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 1942 2992 2592 fixation_cross gabor_058 gabor_017 gabor_178 gabor_040 gabor_058_alt gabor_017 gabor_178_alt gabor_040 "1_63_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_2600_gabor_patch_orientation_058_017_178_040_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_178_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_63_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_178_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 64 292 292 399 125 1892 2992 2292 fixation_cross gabor_072 gabor_101 gabor_011 gabor_156 gabor_072 gabor_101_alt gabor_011_alt gabor_156 "1_64_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_UncuedRetriev_300_300_399_1900_3000_2300_gabor_patch_orientation_072_101_011_156_target_position_2_3_retrieval_position_1" gabor_072_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_64_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_072_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 2192 2992 1942 fixation_cross gabor_151 gabor_014 gabor_088 gabor_173 gabor_151_alt gabor_014 gabor_088_alt gabor_173 "1_65_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_1950_gabor_patch_orientation_151_014_088_173_target_position_1_3_retrieval_position_1" gabor_151_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_65_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_151_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 2242 2992 2392 fixation_cross gabor_061 gabor_178 gabor_025 gabor_007 gabor_061 gabor_178_alt gabor_025_alt gabor_007 "1_66_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2400_gabor_patch_orientation_061_178_025_007_target_position_2_3_retrieval_position_2" gabor_circ gabor_042_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_66_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_042_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 2092 2992 2342 fixation_cross gabor_047 gabor_089 gabor_020 gabor_131 gabor_047_alt gabor_089 gabor_020 gabor_131_alt "1_67_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2350_gabor_patch_orientation_047_089_020_131_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_131_framed blank blank blank blank fixation_cross_target_position_1_4 "1_67_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_131_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 2242 2992 2192 fixation_cross gabor_131 gabor_089 gabor_057 gabor_025 gabor_131_alt gabor_089_alt gabor_057 gabor_025 "1_68_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2200_gabor_patch_orientation_131_089_057_025_target_position_1_2_retrieval_position_2" gabor_circ gabor_041_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_68_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_041_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 2092 2992 2292 fixation_cross gabor_077 gabor_134 gabor_048 gabor_153 gabor_077 gabor_134 gabor_048_alt gabor_153_alt "1_69_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2300_gabor_patch_orientation_077_134_048_153_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_013_framed blank blank blank blank fixation_cross_target_position_3_4 "1_69_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_013_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 64 292 292 399 125 1842 2992 1942 fixation_cross gabor_092 gabor_164 gabor_002 gabor_058 gabor_092_alt gabor_164 gabor_002_alt gabor_058 "1_70_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_UncuedRetriev_300_300_399_1850_3000_1950_gabor_patch_orientation_092_164_002_058_target_position_1_3_retrieval_position_2" gabor_circ gabor_164_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_70_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_164_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; }; # baselinePost (at the end of the session) trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; }; time = 0; duration = 5000; code = "BaselinePost"; port_code = 92; };
707108dca0a598160d20fca7a67c576f91cf670e
449d555969bfd7befe906877abab098c6e63a0e8
/680/CH10/EX10.02/10_02.sce
c4bb25a60321d24e1740695f72fabdc65ff23a0d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
609
sce
10_02.sce
//Problem 10.02: //initializing the variables: DH0no = 21570; // in cal/gmol DH0h2o = -68317; // in cal/gmol DH0c3h8 = -24820; // in cal/gmol DH0ch4 = -17889; // in cal/gmol DH0c2h4= 12496; // in cal/gmol DH0no2 = 7930; // in cal/gmol DH0hno3 = -41404; // in cal/gmol T = 298; // in K //calculation: DH02981 = 2*DH0no DH02982 = DH0ch4 + DH0c2h4 - DH0c3h8 DH02983 = DH0no + 2*DH0hno3 - 3*DH0no2 - DH0h2o printf("\n\nResult\n\n") printf("\n Standard heat of reaction 1 is %.0fcal/gmol N2 of reaction 2 is %.0f cal/gmol C3H8 and of rection 3 is %.0f cal/gmol H2O ",DH02981, DH02982, DH02983)
e03efb31d3977758a72982bb5f581fc30bab7214
bd4a88a5c028a801cbf0e414d2630de1c1e35449
/scilab/ClusterAnalysis.sce
df7a94d935f597b4a79c56ce7e5f1f1c1adc764d
[]
no_license
edielsonpf/turning-signal-analysis
625783cea26b029c87925f96af4ac14aa38c8ae8
2fd594e79395caa72f5cebc378878367ff0e7f01
refs/heads/master
2021-03-13T00:01:23.673430
2018-12-24T14:44:39
2018-12-24T14:44:39
41,508,152
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,565
sce
ClusterAnalysis.sce
//Limpa qualquer variável criada em outra simulação. clear; //fecha todos os gráficos xdel(winsid()); Debug = 1; SPEC_DATA_FOLDER = 'C:\Users\Edielson\Projects\Research\turning-signal-analysis\results\spectrogram\'; //=========================================================== Ms=[]; MsIndex=1; FileIndex=1; fid1 = mopen('file_list2.txt','rt'); while ~meof(fid1) do FileAux = mgetl(fid1,1); disp(FileAux); FileName = sprintf('%saverage_%s.dat',SPEC_DATA_FOLDER,FileAux); disp(FileName); fid2 = mopen(FileName,'rb'); val = mget(129,'d',fid2); //Save variable Ms(MsIndex,:)=val; mclose(fid2); FileIndex=FileIndex+1; MsIndex=MsIndex+1; end mclose(fid1); //X1=Ms(:,1:15)'; //X1=Ms'; if Debug == 1 then disp(Ms); disp(size(Ms)); end //covariance //[pcaY,scoreY,latentY,tsquareY]=princomp(Ms); //correlation //[pcaY,scoreY,latentY,tsquareY]=princomp(nan_zscore(Ms)); [pcaY,scoreY,latentY,tsquareY]=princomp(wcenter(Ms)); if Debug == 1 then disp(size(pcaY)); disp(size(scoreY)); //disp(cumsum(latentY)./sum(latentY)); //disp(scoreY(:,1:4)); //disp(pcaY); //svwrite('pca.txt',scoreY(:,1)); //[lambda,facpr,comprinc] = pca(Ms); //show_pca(lambda,facpr); end PC1=scoreY(:,1); PC2=scoreY(:,2); PC3=scoreY(:,3); disp(PC1) //======================================================================= load ('MRR.mat','MRR'); load ('ry.mat','Ry'); load ('ra.mat','Ra'); load ('f.mat','f'); load ('vc.mat','vc'); load ('setups.mat','setups'); load ('m1.mat','m1'); load ('m2.mat','m2'); plot(Ry,PC1,'b.','MarkerSize',8) X=[Ry, PC1]; NumCluster=3; if NumCluster == 2 then [model,idx] = nan_kmeans( X, 2 ); else [model,idx] = nan_kmeans( X, 3 ); end //figure; //plot(X(idx==1,1),X(idx==1,2),'r.','MarkerSize',8) //plot(X(idx==2,1),X(idx==2,2),'b.','MarkerSize',8) //if NumCluster == 3 then // plot(X(idx==3,1),X(idx==3,2),'g.','MarkerSize',8) //end //ctrs=model.X; //plot(ctrs(:,1),ctrs(:,2),'ko', 'MarkerSize',8,'LineWidth',2) //plot(ctrs(:,1),ctrs(:,2),'kx', 'MarkerSize',8,'LineWidth',2); //if NumCluster == 2 then // legend('Cluster 1','Cluster 2','Centroids', 'Location','NW') //else // plot(ctrs(:,1),ctrs(:,2),'k*', 'MarkerSize',8,'LineWidth',2); // legend('Cluster 1','Cluster 2','Cluster 3','Centroids', 'Location','NW') //end cluster1 = setups(idx == 1,:); disp('Cluster 1'); disp(cluster1); cluster2 = setups(idx == 2,:); disp('Cluster 2'); disp(cluster2); if NumCluster == 3 then cluster3 = setups(idx == 3,:); disp('Cluster 3'); disp(cluster3); end
97d7099e1ab507672165fa298754082ef5176c79
95268f09d451fab6661431d7f1622007d8b1f2ce
/q4/q4.tst
f9c3e770be4451b5810141beb3e9f080958d21e5
[]
no_license
bharath1729/CS2310-Assignment-1
82c8915f10643f823c7b8d34be721aea10724648
d4750a17c46f3106f112c33dd7120b1db8b8cfa7
refs/heads/master
2023-07-15T21:24:57.610487
2021-08-21T04:38:25
2021-08-21T04:38:25
397,184,561
0
4
null
2021-09-07T13:34:21
2021-08-17T09:09:55
Scilab
UTF-8
Scilab
false
false
250
tst
q4.tst
load q4.hdl; output-file q4.out; output-list x1%B3.1.3 x0%B3.1.3 y0%B3.1.3 y1%B3.1.3 y2%B3.1.3 y3%B3.1.3 ; set x1 0; set x0 0; eval; output; set x1 0; set x0 1; eval; output; set x1 1; set x0 0; eval; output; set x1 1; set x0 1; eval; output;
62fe53ce96428696e2a5e0cd816dab1879898e71
d167200e784b8019615f6b37b5a46b91ec43b98d
/macros/contourArea.sci
f378ba12f7b213d01d641ce52fb222c5118c3432
[]
no_license
AshishMantosh/FOSSEE-Image-Processing-Toolbox
ee9c1a00f97627f372fae1d7d851c4905ac9d83e
e4fbe1891e13e4dc9b62513f0aef2b101638f084
refs/heads/master
2021-01-01T19:05:15.966438
2017-07-27T07:16:11
2017-07-27T07:16:11
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,512
sci
contourArea.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: Priyanka Hiranandani, Ashish Manatosh Barik // Organization: FOSSEE, IIT Bombay // Email: toolbox@scilab.in // function [out] = contourArea(inputArrayContour, booloriented) // This function calculates the contour area. // // Calling Sequence // [out] = contourArea(inputArrayContour, booloriented) // // Parameters // inputArrayContour : The input vector of 2D points. // booloriented : The oriented area flag. If it is true, the function returns a signed area value, depending on the contour orientation (clockwise or counter-clockwise). Using this feature you can determine the orientation of a contour by taking the sign of an area. // out : The output is the calculated area. // // Description // It computes the contour area. Also, the function will most certainly give a wrong results for contours with self-intersections. // // Examples // // a simple example // inputArrayContour = [0 0; 10 0; 10 10; 5 4S]; // booloriented = %t; // b = contourArea(inputArrayContour, booloriented); // // Authors // Priyanka Hiranandani, NIT Surat // Ashish Manatosh Barik, NIT Rourkela out = raw_contourArea(inputArrayContour, booloriented); endfunction
67f6d3cf56e8435449caf43292c056dbeb65d505
449d555969bfd7befe906877abab098c6e63a0e8
/3739/CH2/EX2.7/EX2_7.sce
d4a6d55972aff594e137ee616338c138041d2370
[]
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
640
sce
EX2_7.sce
//Chapter 2, Example 2.7, page 39 clc //Initialisation f=7.5 //frequency in GHz d=40 //link distance in Km Pt=30 //transmitter power in dBm La=15 //additional loss Pth=-78 //RX threshold //Calculation FSL=92.4+(20*log10(f*d)) //FSL RSL=Pt-(0.4*FSL)-La //RSL FM=RSL-Pth //fade margin //Result printf("(1) Received signal level (RSL) = %.1f dBm",RSL) printf("\n(2) Fade margin = %.1f dB",FM)
5cfbc9df4fe5c68017f7b34ca2412eec7252a505
449d555969bfd7befe906877abab098c6e63a0e8
/683/CH11/EX11.7/RJ_7.sce
2eef78cfc4f367e4a1179e5e416e6656cda1a832
[]
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
354
sce
RJ_7.sce
// sum 11-7 clc; clear; t=15; d=6*sqrt(t); d=24; sigta=75; sigba=105; Ta=60; n=4; Pt=n*%pi*d^2*Ta/4; x=d*t*sigta; y=2*t*sigta; p=(Pt+x)/y; p=60; C=4.17; pmax=(C*t)+41.28; Pt1=(y*p)-x; Ps=n*%pi*d^2*Ta/4; Pb=n*d*t*sigba; S=2*p*t*sigta; n=Pt1/S; n=n*100; // printing data in scilab o/p window printf(" n is %0.0f ",n);
fe292d2cfd43051354cf6bba75f3e34f2f5ebca6
36c5f94ce0d09d8d1cc8d0f9d79ecccaa78036bd
/H1Z1 Lead and Bullet Drop (AR-15).sce
0ce04053e65157b41120789ac72a872c2e5ae97e
[]
no_license
Ahmad6543/Scenarios
cef76bf19d46e86249a6099c01928e4e33db5f20
6a4563d241e61a62020f76796762df5ae8817cc8
refs/heads/master
2023-03-18T23:30:49.653812
2020-09-23T06:26:05
2020-09-23T06:26:05
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
12,273
sce
H1Z1 Lead and Bullet Drop (AR-15).sce
Name=H1Z1 Lead and Bullet Drop (AR-15) PlayerCharacters=H1Z1;H1Z1 Bot BotCharacters=H1 Bot.bot IsChallenge=false Timelimit=60.0 PlayerProfile= AddedBots= PlayerMaxLives=0 BotMaxLives= PlayerTeam=0 BotTeams= MapName= MapScale=3.8125 BlockProjectilePredictors=true BlockCheats=true InvinciblePlayer=false InvincibleBots=false Timescale=1.0 BlockHealthbars=false TimeRefilledByKill=0.0 ScoreToWin=1000.0 ScorePerDamage=1.0 ScorePerKill=0.0 ScorePerMidairDirect=0.0 ScorePerAnyDirect=0.0 ScorePerTime=0.0 ScoreLossPerDamageTaken=0.0 ScoreLossPerDeath=0.0 ScoreLossPerMidairDirected=0.0 ScoreLossPerAnyDirected=0.0 ScoreMultAccuracy=false ScoreMultDamageEfficiency=false ScoreMultKillEfficiency=false GameTag=H1Z1 WeaponHeroTag=AR-15 DifficultyTag=2 AuthorsTag=KandiVan BlockHitMarkers=false BlockHitSounds=false BlockMissSounds=true BlockFCT=false Description=Bullet lead and drop practice at ranges from 50m to 300m GameVersion=1.0.6 [Aim Profile] Name=At Feet MinReactionTime=0.3 MaxReactionTime=0.4 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=15.0 TrackSpeed=3.5 TrackError=3.5 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=40.0 ShootFOV=15.0 VerticalAimOffset=-200.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 [Aim Profile] Name=Low Skill MinReactionTime=0.35 MaxReactionTime=0.45 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=20.0 TrackSpeed=3.0 TrackError=5.0 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=60.0 ShootFOV=25.0 VerticalAimOffset=0.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 [Aim Profile] Name=Default MinReactionTime=0.3 MaxReactionTime=0.4 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=15.0 TrackSpeed=3.5 TrackError=3.5 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=40.0 ShootFOV=15.0 VerticalAimOffset=0.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 [Bot Profile] Name=H1 Bot DodgeProfileNames=H1Z1 Strafe DodgeProfileWeights=1.5 DodgeProfileMaxChangeTime=1.25 DodgeProfileMinChangeTime=0.35 WeaponProfileWeights=0.0;0.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=At Feet;At Feet;Low Skill;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=false CharacterProfile=H1Z1 Bot SeeThroughWalls=false [Character Profile] Name=H1Z1 MaxHealth=300.0 WeaponProfileNames=AR-15 (H1);;;;;;; MinRespawnDelay=1.0 MaxRespawnDelay=5.0 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=0.000 HeadshotOnly=false DamageKnockbackFactor=8.0 MovementType=Base MaxSpeed=611.0 MaxCrouchSpeed=90.0 Acceleration=16000.0 AirAcceleration=16000.0 Friction=8.0 BrakingFrictionFactor=2.0 JumpVelocity=800.0 Gravity=3.0 AirControl=0.25 CanCrouch=true CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=255.000 Y=0.000 Z=0.000 EnemyHeadColor=X=255.000 Y=255.000 Z=255.000 TeamBodyColor=X=0.000 Y=0.000 Z=255.000 TeamHeadColor=X=255.000 Y=255.000 Z=255.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=800.0 MainBBType=Cylindrical MainBBHeight=100.0 MainBBRadius=17.0 MainBBHasHead=true MainBBHeadRadius=10.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=100.0 ProjBBRadius=17.0 ProjBBHasHead=true ProjBBHeadRadius=10.1 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=false AerialFriction=0.0 StrafeSpeedMult=0.4655 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.5 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.25 ThirdPersonCamera=true TPSArmLength=175.0 TPSOffset=X=0.000 Y=6.000 Z=15.000 [Character Profile] Name=H1Z1 Bot MaxHealth=300.0 WeaponProfileNames=AR-15 (H1);;;;;;; MinRespawnDelay=1.0 MaxRespawnDelay=5.0 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=1.0 CameraOffset=X=0.000 Y=0.000 Z=0.000 HeadshotOnly=false DamageKnockbackFactor=8.0 MovementType=Base MaxSpeed=611.0 MaxCrouchSpeed=500.0 Acceleration=16000.0 AirAcceleration=16000.0 Friction=8.0 BrakingFrictionFactor=2.0 JumpVelocity=800.0 Gravity=3.0 AirControl=0.25 CanCrouch=true CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=255.000 Y=0.000 Z=0.000 EnemyHeadColor=X=255.000 Y=255.000 Z=255.000 TeamBodyColor=X=0.000 Y=0.000 Z=255.000 TeamHeadColor=X=255.000 Y=255.000 Z=255.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=800.0 MainBBType=Cylindrical MainBBHeight=100.0 MainBBRadius=17.0 MainBBHasHead=true MainBBHeadRadius=10.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=100.0 ProjBBRadius=17.0 ProjBBHasHead=true ProjBBHeadRadius=10.1 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=ADS.abilmov;;; HideWeapon=false AerialFriction=0.0 StrafeSpeedMult=0.4655 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.5 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.25 ThirdPersonCamera=true TPSArmLength=175.0 TPSOffset=X=0.000 Y=6.000 Z=15.000 [Dodge Profile] Name=H1Z1 Strafe MaxTargetDistance=2500.0 MinTargetDistance=750.0 ToggleLeftRight=true ToggleForwardBack=true MinLRTimeChange=3.0 MaxLRTimeChange=3.0 MinFBTimeChange=0.2 MaxFBTimeChange=0.5 DamageReactionChangesDirection=true DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.1 JumpFrequency=0.02 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.0 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.3 MaxCrouchTime=0.6 MinJumpTime=0.3 MaxJumpTime=0.6 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.25 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 [Weapon Profile] Name=AR-15 (H1) Type=Projectile ShotsPerClick=1 DamagePerShot=22.5 KnockbackFactor=0.0 TimeBetweenShots=0.1 Pierces=false Category=SemiAuto BurstShotCount=2 TimeBetweenBursts=0.1 ChargeStartDamage=0.1 ChargeStartVelocity=X=1500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=45000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=45000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=100000.0 GravityScale=3.15 HeadshotCapable=true HeadshotMultiplier=1.5 MagazineMax=30 AmmoPerShot=1 ReloadTimeFromEmpty=1.5 ReloadTimeFromPartial=1.5 DamageFalloffStartDistance=1000000.0 DamageFalloffStopDistance=1000000.0 DamageAtMaxRange=22.5 DelayBeforeShot=0.0 HitscanVisualEffect=Tracer ProjectileGraphic=Ball VisualLifetime=0.02 WallParticleEffect=Gunshot HitParticleEffect=Blood BounceOffWorld=true BounceFactor=0.6 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=0.1 CanAimDownSight=true ADSZoomDelay=0.03 ADSZoomSensFactor=0.53 ADSMoveFactor=0.35 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-40.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.0 RecoilNegatable=false DecalType=1 DecalSize=30.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=10000.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=61.84 ADSFOVScale=Vertical (1:1) ADSAllowUserOverrideFOV=true Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=0.1 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=true DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=true DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=5.0 BlockedByWorld=true SpreadSSA=4.0,15.0,-9.0,2.5 SpreadSCA=4.0,15.0,-9.0,2.5 SpreadMSA=4.0,15.0,-9.0,2.5 SpreadMCA=4.0,15.0,-9.0,2.5 SpreadSSH=0.0,0.1,0.0,0.0 SpreadSCH=2.0,27.0,-9.0,0.0 SpreadMSH=0.0,0.1,0.0,0.0 SpreadMCH=4.0,15.0,-9.0,1.8 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=true TimeToRecoilPeak=0.05 TimeToRecoilReset=0.15 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.1 AAMaxSpeed=5.0 AADeadZone=0.0 AAFOV=10.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=0.1 StickyLock=false HeadLock=true VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=true PSRLoopStartIndex=1 PSRViewRecoilTracking=1.0 PSRCapUp=90.0 PSRCapRight=90.0 PSRCapLeft=90.0 PSRTimeToPeak=0.07 PSRResetDegreesPerSec=3.6 PSR0=0.0,0.95 PSR1=0.0,-0.95 PSR2=0.0,0.95 PSR3=0.0,-0.95 PSR4=0.0,0.95 PSR5=0.0,0.95 PSR6=0.0,-0.95 PSR7=0.0,0.95 PSR8=0.0,-0.95 PSR9=0.0,0.95 PSR10=0.0,-0.95 PSR11=0.0,0.95 PSR12=0.0,-0.95 PSR13=0.0,0.95 PSR14=0.0,-0.95 PSR15=0.0,0.95 PSR16=0.0,-0.95 PSR17=0.0,0.95 PSR18=0.0,-0.95 PSR19=0.0,0.95 PSR20=0.0,-0.95 PSR21=0.0,0.95 PSR22=0.0,-0.95 PSR23=0.0,0.95 PSR24=0.0,-0.95 PSR25=0.0,0.95 PSR26=0.0,-0.95 PSR27=0.0,0.95 PSR28=0.0,-0.95 PSR29=0.0,0.95 PSR30=0.0,-0.95 UsePerBulletSpread=false PBS0=0.0,0.0 [Movement Ability Profile] Name=ADS MaxCharges=1.0 ChargeTimer=0.5 ChargesRefundedOnKill=0.0 DelayAfterUse=3.0 FullyAuto=true AbilityDuration=1.5 LockDirectionForDuration=true NegateGravityForDuration=true MainVelocity=90.0 MainVelocityCanGoVertical=false MainVelocitySetToMovementKeys=true UpVelocity=0.0 EndVelocityFactor=1.0 Hurtbox=false HurtboxRadius=50.0 HurtboxDamage=50.0 HurtboxGroundKnockbackFactor=1.0 HurtboxAirKnockbackFactor=1.0 AbilityBlocksTurning=false AbilityBlocksMovement=false AbilityBlocksAttack=false AttackCancelsAbility=false AbilityReloadsWeapon=false HealthRestore=0.0 AIUseInCombat=true AIUseOutOfCombat=false AIUseOnGround=true AIUseInAir=false AIReuseTimer=1.0 AIMinSelfHealth=0.0 AIMaxSelfHealth=100.0 AIMinTargHealth=0.0 AIMaxTargHealth=100.0 AIMinTargDist=0.0 AIMaxTargDist=500000.0 AIMaxTargFOV=15.0 AIDamageReaction=true AIDamageReactionIgnoreChance=0.0 AIDamageReactionMinDelay=0.125 AIDamageReactionMaxDelay=0.25 AIDamageReactionCooldown=1.0 AIDamageReactionThreshold=0.0 AIDamageReactionResetTimer=0.1 [Map Data]
88633eccb340125d188cf719c3145a1876ef42cf
449d555969bfd7befe906877abab098c6e63a0e8
/1328/CH8/EX8.2/8_2.sce
542173a869b326005bb15f4f0ed0472a1a498eea
[]
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
4,808
sce
8_2.sce
printf("\t example 8.2 \n"); printf("\t approximate values are mentioned in the book \n"); T1=250; // inlet hot fluid,F T2=100; // outlet hot fluid,F t1=90; // inlet cold fluid,F t2=150; // outlet cold fluid,F W=60000; // lb/hr w=168000; // lb/hr printf("\t 1.for heat balance \n"); printf("\t for acetone \n"); c=0.57; // Btu/(lb)*(F) Q=((W)*(c)*(T1-T2)); // Btu/hr printf("\t total heat required for acetone is : %.2e Btu/hr \n",Q); // calculation mistake in problem printf("\t for acetic acid \n"); c=0.51; // Btu/(lb)*(F) Q1=((w)*(c)*(t2-t1)); // Btu/hr printf("\t total heat required for acetic acid is : %.2e Btu/hr \n",Q1); // calculation mistake in problem delt1=T2-t1; //F delt2=T1-t2; // F printf("\t delt1 is : %.0f F \n",delt1); printf("\t delt2 is : %.0f F \n",delt2); LMTD=((delt2-delt1)/((2.3)*(log10(delt2/delt1)))); printf("\t LMTD is :%.1f F \n",LMTD); R=((T1-T2)/(t2-t1)); printf("\t R is : %.1f \n",R); S=((t2-t1)/(T1-t1)); printf("\t S is : %.3f \n",S); printf("\t FT is 0.88 \n"); // from fig 20,for 3-6 exchanger delt=(0.88*LMTD); // F printf("\t delt is : %.1f F \n",delt); Tc=((T2)+(T1))/2; // caloric temperature of hot fluid,F printf("\t caloric temperature of hot fluid is : %.0f F \n",Tc); tc=((t1)+(t2))/2; // caloric temperature of cold fluid,F printf("\t caloric temperature of cold fluid is : %.0f F \n",tc); printf("\t hot fluid:shell side,acetone \n"); ID=21.25; // in C=0.25; // clearance B=5; // baffle spacing,in PT=1; as=((ID*C*B)/(144*PT)); // flow area,ft^2 printf("\t flow area is : %.3f ft^2 \n",as); Gs=(W/as); // mass velocity,lb/(hr)*(ft^2) printf("\t mass velocity is : %.2e lb/(hr)*(ft^2) \n",Gs); mu1=0.20*2.42; // at 175F,lb/(ft)*(hr), from fig.14 De=0.95/12; // from fig.28,ft Res=((De)*(Gs)/mu1); // reynolds number printf("\t reynolds number is : %.2e \n",Res); phys=1; jH=137; // from fig.28 c=0.63; // Btu/(lb)*(F),at 175F,from fig.2 k=0.095; // Btu/(hr)*(ft^2)*(F/ft), from table 4 Pr=((c)*(mu1)/k)^(1/3); // prandelt number raised to power 1/3 printf("\t Pr is : %.3f \n",Pr); ho=((jH)*(k/De)*(Pr)*1); // using eq.6.15b,Btu/(hr)*(ft^2)*(F) printf("\t individual heat transfer coefficient is : %.0f Btu/(hr)*(ft^2)*(F) \n",ho); printf("\t cold fluid:inner tube side,acetic acid \n"); Nt=270; n=2; // number of passes L=16; //ft at1=0.268; // flow area, in^2,from table 10 at=((Nt*at1)/(144*n)); // total area,ft^2,from eq.7.48 printf("\t flow area is : %.3f ft^2 \n",at); Gt=(w/(at)); // mass velocity,lb/(hr)*(ft^2) printf("\t mass velocity is : %.1e lb/(hr)*(ft^2) \n",Gt); mu2=0.85*2.42; // at 120F,lb/(ft)*(hr) D=(0.584/12); // ft Ret=((D)*(Gt)/mu2); // reynolds number printf("\t reynolds number is : %.2e \n",Ret); jH=56; // from fig.24 c=0.51; // Btu/(lb)*(F),at 120F,from fig.2 k=0.098; // Btu/(hr)*(ft^2)*(F/ft), from table 4 phyt=1; Pr=((c)*(mu2)/k)^(1/3); // prandelt number raised to power 1/3 printf("\t Pr is : %.3f \n",Pr); hi=((jH)*(k/D)*(Pr)*(1^0.14)); // using eq.6.15a,Btu/(hr)*(ft^2)*(F) printf("\t hi is : %.0f Btu/(hr)*(ft^2)*(F) \n",hi); ID=0.584; // ft OD=0.75; //ft hio=((hi)*(ID/OD)); //Hio=(hio/phyp), using eq.6.5 printf("\t Correct hi0 to the surface at the OD is : %.0f Btu/(hr)*(ft^2)*(F) \n",hio); Uc=((hio)*(ho)/(hio+ho)); // clean overall coefficient,Btu/(hr)*(ft^2)*(F) printf("\t clean overall coefficient is : %.1f Btu/(hr)*(ft^2)*(F) \n",Uc); A2=0.1963; // actual surface supplied for each tube,ft^2,from table 10 A=3*(Nt*L*A2); // ft^2 printf("\t total surface area is : %.2e ft^2 \n",A); UD=((Q)/((A)*(delt))); printf("\t actual design overall coefficient is : %.1f Btu/(hr)*(ft^2)*(F) \n",UD); Rd=((Uc-UD)/((UD)*(Uc))); // (hr)*(ft^2)*(F)/Btu printf("\t actual Rd is : %.4f (hr)*(ft^2)*(F)/Btu \n",Rd); printf("\t pressure drop for annulus \n"); f=0.00155; // friction factor for reynolds number 52200, using fig.29 s=0.79; // for reynolds number 25300,using table.6 Ds=21.25/12; // ft N=(12*L/B)+1; // number of crosses,using eq.7.43 printf("\t number of crosses are : %.0f \n",N); delPs=((f*(Gs^2)*(Ds)*(3*N))/(5.22*(10^10)*(De)*(s)*(phys))); // using eq.7.44,psi printf("\t delPs is : %.1f psi \n",delPs); printf("\t allowable delPs is 10 psi \n"); printf("\t pressure drop for inner pipe \n"); f=0.00024; // friction factor for reynolds number 158000, using fig.26 s=1.07; D=0.0487; // ft delPt=((f*(Gt^2)*(L)*(n*3))/(5.22*(10^10)*(D)*(s)*(phyt))); // using eq.7.45,psi printf("\t delPt is : %.1f psi \n",delPt); X1=0.063; // X1=((V^2)/(2*g)), for Gt 1060000,using fig.27 delPr=(3)*((4*n*X1)/(s)); // using eq.7.46,psi printf("\t delPr is : %.1f psi \n",delPr); delPT=delPt+delPr; // using eq.7.47,psi printf("\t delPT is : %.1f psi \n",delPT); printf("\t allowable delPT is 10 psi \n"); //end
3a0284c77b7a7a480754598804724ec550fe0fe4
449d555969bfd7befe906877abab098c6e63a0e8
/2102/CH2/EX2.23/exa_2_23.sce
a872c06b5c05dbea2f185862905cadba4d861cbc
[]
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
243
sce
exa_2_23.sce
// Exa 2.23 clc; clear; close; // Given data ni=2.5*10^19;// in /m^3 miu_n= 0.38;// in m^2/v-sec miu_p= 0.18;// in m^2/v-sec q=1.6*10^-19;// in C sigma= q*ni*(miu_n+miu_p);// in (Ωm)^-1 disp(sigma,"Conductivity in (Ωm)^-1 is : ")
efc7c7babeda1495ab7db42a0332aa548c07c27d
449d555969bfd7befe906877abab098c6e63a0e8
/45/CH9/EX9.5/example_9_5.sce
eb86c820c567d5f5c8cb4b8015c51e22eae5fffe
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
263
sce
example_9_5.sce
//example 9.5 clc; clear; close; //c= input('Enter the clock frequency in Mhz :'); c=10; //given clock frequency t= 1000/c; printf('The data must be stable for 30 ns\n'); //displaying results tc = t-30; printf(' The data may be changing in %d ns',tc);
a8f8ae1b74f104f018beff96a8aefd8b2813da05
449d555969bfd7befe906877abab098c6e63a0e8
/3417/CH12/EX12.6.1/Ex12_6_1.sce
c2b0d6a75ff79bd300dab7b02d419054f49578ac
[]
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
Ex12_6_1.sce
//Ex12.6.1.;calculate open circuit voltage and maximum power output B=2;//flux density;unit=Wb/m^2 u=10^3;//average gas velocity;unit=m/second d=0.50;//distance between plates;unit=m E0=B*u*d;//Open ccircuit voltage printf(" Open ccircuit voltage E0=%f Volts",E0); //Generator resistance; Rg=d/sigma*A sigma=10;//Gaseous conductivity;unit=Mho/m A=0.25;//Plate Area;unit=m^2 Rg=d/(sigma*A); printf("\n Generator resistance Rg=%f Ohm",Rg); //Maximum power Maximum_power=(E0^2)/(4*Rg); printf("\n Maximum_power=%f watts",Maximum_power);
a9c2ec1bcbeae16b141e6ff34c9c59f587e232ce
449d555969bfd7befe906877abab098c6e63a0e8
/779/CH8/EX8.10/8_10.sce
8e66595b59406bba9c5932b8c90c0fa562529558
[]
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
168
sce
8_10.sce
m = 3; R = 0.287; T0 = 300; k = 0.10; // k = dP/P1 Sgen = m*R*k; I = Sgen*T0; disp("kW",I,"The rate of energy loss because of the pressure drop due to friction")
9e451a8899ae8d813598028a7edad961efeb44f6
eec3a6e2cd91307fd7a55b7fc83bb86b35f86a6c
/stlfiles/macros/buildmacros.sce
dcef57cb0fcc47ad81405111d48ede99f4b43331
[]
no_license
Matthieu-71/PowerSubsystemSimulation
d1a5171ff763ca42db9d701f893d3ab257a1b882
cdcff61d4a11509f5d9023fb295af6b8092a3c66
refs/heads/master
2020-03-16T23:33:28.836945
2018-05-24T00:10:57
2018-05-24T00:10:57
133,082,402
2
2
null
null
null
null
UTF-8
Scilab
false
false
211
sce
buildmacros.sce
function buildmacros() macros_path = get_absolute_file_path("buildmacros.sce"); tbx_build_macros(TOOLBOX_NAME, macros_path); endfunction buildmacros(); clear buildmacros; // remove buildmacros on stack
3ae5d413d69dc08bf3f6ad55203bdb5bf7d74729
c286e0d134f6b0f1de09157ea8436a9a1ab9fa9f
/balans TmYLF.sci
445e2b24489404d14c7f8551fc1f4ae6678a8971
[]
no_license
john27328/laser_dynamics
210752f865472a2c575d7ddf4a2191895ae23d3b
6233a2a36a8afc1807efd32e1c439ff73d8eecda
refs/heads/master
2020-04-11T23:21:26.880166
2019-03-08T18:57:31
2019-03-08T18:57:31
162,164,283
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,349
sci
balans TmYLF.sci
clear stacksize('max') //n3=y(3) //n2=y(2) //n1=y(1) //q=y(4) N0=4.1e20; //см^-3 K=.87e-17; // см^3*c A31=360; // cm^-1 A32=40; // cm^-1 A21=67; // cm^-1 W32=0*32; // cm^-1 W21=0;// cm^-1 //неизвестно sigmaIzl=.25e-24;//.25e20 //cm^2 sigmaPogl=.04e-24;//.035e20 //cm^2 c=3e8; // м/с L=5;// см //длина резонатора La=2// см //длина активной области v=%pi*0.08^2*L; //cm^3 //объем моды в резонаторе Pnak=80e3; h=6.62e-34; R=Pnak/v/(h*3e8/808e-9)/N0; Va=%pi*0.08^2*La;//под вопросом Z=0*0.001; //внутренние потери T1=0; T2=0.15; rho=-c/L*(log(1-Z) + (log(1-T1)+log(1-T2))/2); Bizl=sigmaIzl*c/v; Bpog=sigmaPogl*c/v; function dy=balans(t,y) dy=zeros(4,1); dy(3)=R*y(1)-N0*K*y(1)*y(3)-(A31+A32)*y(3)-W32*y(3); dy(2)=2*N0*K*y(1)*y(3)+A32*y(3)+W32*y(3)-W21*y(2)-A21*y(2)-y(4)*(Bizl*y(2)-Bpog*y(1)); dy(1)=-N0*K*y(1)*y(3)-R*y(1)+A31*y(3)+W21*y(2)+A21*y(2)+y(4)*(Bizl*y(2)-Bpog*y(1)); dy(4)=N0*Va*(y(4))*(Bizl*y(2)-Bpog*y(1))-y(4)*rho; endfunction x0=[1;0;0;1]; t0=0; t=0:0.0000001:0.06; y=ode(x0,t0,t,balans); y4=1-y(1,:)-y(2,:)-y(3,:); //plot(t,y,leg="n1@n2@n3@q"); clf; xtitle('населенности','t, с', 'n'); plot(t,y);xgrid; legend('n1', 'n2', 'n3', 'q', 'n4') //plot(t,y(2,:)); //n1+n2+n3=1 //R=P_nak/(s*l*h*nu_nak*n1)
b0d80664ef26344d9edea59977e94e741bf1f425
9f9364e082d4bc2f7ee5cbd7a489642615821873
/src/tests/test1.tst
8d2a58d305fea9fa53e05665bbede8a4742409f2
[]
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
147
tst
test1.tst
main var a,b,c,d; a <- 24 + 24; b <- 12 * 12; c <- 3 / 3; d <- 2 - 2; { if a < b then a <- 2412; else a <- 2401; fi } .
feacfc05e87468d19dac3f311b90be9381ee13e9
449d555969bfd7befe906877abab098c6e63a0e8
/1553/CH24/EX24.8/24Ex8.sce
186380d547229ed3d3af3a0d4aab8486d5876210
[]
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
24Ex8.sce
//chapter 24 Ex 8 clc; clear; close; peri1=40; peri2=32; side1=peri1/4; //side=perimeter/number of sides side2=peri2/4; area3=side1^2-side2^2; //given side3=sqrt(area3); peri3=side3*4; mprintf("The perimeter of 3rd square is %d cm",peri3);
51c642bbee541aa3ed0d5edeb749e82747d15248
717ddeb7e700373742c617a95e25a2376565112c
/3165/CH2/EX2.12/Ex2_12.sce
5846adc2c96fc5e4998d1e429695eb0e36fed4e5
[]
no_license
appucrossroads/Scilab-TBC-Uploads
b7ce9a8665d6253926fa8cc0989cda3c0db8e63d
1d1c6f68fe7afb15ea12fd38492ec171491f8ce7
refs/heads/master
2021-01-22T04:15:15.512674
2017-09-19T11:51:56
2017-09-19T11:51:56
92,444,732
0
0
null
2017-05-25T21:09:20
2017-05-25T21:09:19
null
UTF-8
Scilab
false
false
210
sce
Ex2_12.sce
//Example 2 . 1 2 //To f i n d input x ( n ) //X( z ) =1/(2 z ^(􀀀2)+2z ^(􀀀1)+1) ; clc ; z=%z; a =(2+2* z+z ^2) ; b=z^2; h = ldiv (b,a ,6); disp (h," F i r s t s i x v a l u e s o f h ( n )=");
e2bd47ffef94b201efe76e57686190bf56c248ac
63c8bbe209f7a437f8bcc25dc1b7b1e9a100defa
/test/0045.tst
de1ea3e8cf90a467822e90886968e6cea6b56cc3
[]
no_license
fmeci/nfql-testing
e9e7edb03a7222cd4c5f17b9b4d2a8dd58ea547c
6b7d465b32fa50468e3694f63c803e3630c5187d
refs/heads/master
2021-01-11T04:09:48.579127
2013-05-02T13:30:17
2013-05-02T13:30:17
71,239,280
0
0
null
2016-10-18T11:01:57
2016-10-18T11:01:55
Python
UTF-8
Scilab
false
false
316
tst
0045.tst
SPLItter N {} fiLter cq { } fILtER y {YsK rC or nOt D oR nOt Q E Not i Or E or M } r brAnCh f grOUPEr Tj {moduLe g{ } mOduLe k{ } aGGReGate kWQ ,tbTXt ,suM(Q.D) aS u } uNGrOuPEr AHds { } gROUPFIlteR dMM {noT O ( 157.58.123.161, ::C2Ee:c:EDb:cE2:bB4:cEd:6, ) BITANd ( D, ) } MergEr l { export Rw }
b746b7b42681732927b9d70da508f29518416cf3
449d555969bfd7befe906877abab098c6e63a0e8
/50/CH2/EX2.3/ex_3.sce
7add088963e392c874602d960ba58c5040422357
[]
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,261
sce
ex_3.sce
// The equation x^3-5*x+1==0 has real roots. // the graph of this function can be observed here. xset('window',2); x=-2:.01:4; // defining the range of x. deff('[y]=f(x)','y=x^3-5*x+1'); //defining the cunction. y=feval(x,f); a=gca(); a.y_location = "origin"; a.x_location = "origin"; plot(x,y) // instruction to plot the graph title(' y = x^3-5*x+1') // from the above plot we can infre that the function has roots between // the intervals (0,1),(2,3). // since we have been asked for the smallest positive root of the equation, // we are intrested on the interval (0,1) // a=0;b=1, // we call a user-defined function 'bisection' so as to find the approximate // root of the equation with a defined permissible error. bisection(0,1,f) // since in the example 2.3 we have been asked to perform 5 itterations // the approximate root after 5 iterations can be observed. bisection5(0,1,f) // hence the approximate root after 5 iterations is 0.203125 witin the permissible error of 10^-4,
ca135638fa48ef313dd042e3006fd4c4bf020111
3c47dba28e5d43bda9b77dca3b741855c25d4802
/microdaq/macros/udp_recv.sci
bbd3576742f8ca7daa1300d060febb8de186ab29
[ "BSD-3-Clause" ]
permissive
microdaq/Scilab
78dd3b4a891e39ec20ebc4e9b77572fd12c90947
ce0baa6e6a1b56347c2fda5583fb1ccdb120afaf
refs/heads/master
2021-09-29T11:55:21.963637
2019-10-18T09:47:29
2019-10-18T09:47:29
35,049,912
6
3
BSD-3-Clause
2019-10-18T09:47:30
2015-05-04T17:48:48
Scilab
UTF-8
Scilab
false
false
444
sci
udp_recv.sci
function data = udp_recv(vector_size, count) [data result] = call("sci_mlink_udp_recv",.. count * vector_size, 2, 'i',.. 0, 3, 'i',.. "out",.. [vector_size, count], 1, 'd',.. [1, 1], 4, 'i'); if result < 0 then disp("ERROR: Unable to receive data"); data = []; return end data = data(:,1:result/vector_size)' endfunction
35e79dc0bdc2fade5ad9b6a899a64bc7d83acbc8
9224090b07cb3f466fe72819cf90ca0c4dedc901
/Miscellaneous/Dispersion Relation Calculator/Calculator.sce
3b03cf3739749e282b688cadfa20831ceb570721
[]
no_license
MGYBY/advanced_ocean_modelling
8c383b09f4077174559bd7964062625012026fa0
848f0f4d616d472021c31582b64557f04067ce74
refs/heads/main
2023-07-14T14:37:57.714203
2021-08-20T20:13:49
2021-08-20T20:13:49
398,386,684
4
1
null
null
null
null
UTF-8
Scilab
false
false
1,364
sce
Calculator.sce
clear; ans =messagebox("This calculator computes either phase speed ... or period of surface gravity waves from user-specified values of total water depth ... and wavelength. Do you want to continue?", "modal", "info", ["Yes" "No"]); if ans == 1 then k = x_choose_modeless(['Phase speed';'Wave period'],'What do you want to calculate?'); k mode(-1); // silent mode desc = "Enter values of total water depth (m) and wavelength (m)" labls = ["Total water depth, H (m)"; "Wavelength, L (m)"]; typelst = list("vec",1,"vec",1); deflts = ["1000";"100"]; //Call 'getvalue' to load values [ok,H,L] = getvalue(desc,labls,typelst,deflts); if ok then exec("dispersion_relation.sce",-1) // load function c = 0.0; t = 0.0; if L*H > 0; [c,t] = disprel(L,H); end; if k == 1 then Lines = ['For a total water depth of '+ string(H) + ' metres'; ... 'and a wavelength of '+ string(L) + ' metres'; ... 'the phase speed of surface gravity waves is'; ... 'c = ' + string(int(100*c)/100) + ' metres per second']; end; if k == 2 then Lines = ['For a total water depth of '+ string(H) + ' metres'; ... 'and a wavelength of '+ string(L) + ' metres,'; ... 'the period of surface gravity waves is'; ... 'T = ' + string(int(100*t)/100) + ' seconds']; end; messagebox(Lines); else messagebox("No input available") end; end;
581bdaedfc31a21a0e41b5e2978e8dbdc0bde29a
5f4fdac82318f5e872c34c1104dd12d4721229e7
/WebApplication/Examples/Extensions/tst/Extensions.tst
67e56959e47f63d65de5bb70aa0dba13c9a22aa3
[]
no_license
NeVeSpl/NTypewriter.Examples
4698926e843aea863168233ae9abbaf948ca500e
0477a6273318ee7bd69dff4779afd01f6475134f
refs/heads/master
2023-04-26T13:28:51.392199
2021-06-01T08:36:33
2021-06-01T08:38:13
372,547,271
0
0
null
null
null
null
UTF-8
Scilab
false
false
362
tst
Extensions.tst
${ using Typewriter.Extensions.WebApi; } module App { $Classes(:ControllerBase)[ export class $Name { constructor(private $http: ng.IHttpService) { } $Methods[ public $name = ($Parameters[$name: $Type][, ]) => { return this.$http({ url: `$Url`, method: "$HttpMethod", data: $RequestData }); }] }] }
eabf9a4b98d00ed90ee4055de7c3a8eff1ce88b6
717ddeb7e700373742c617a95e25a2376565112c
/3137/CH8/EX8.2/Ex8_2.sce
0b95660484874e061bb6571d02d4854ec6f4780f
[]
no_license
appucrossroads/Scilab-TBC-Uploads
b7ce9a8665d6253926fa8cc0989cda3c0db8e63d
1d1c6f68fe7afb15ea12fd38492ec171491f8ce7
refs/heads/master
2021-01-22T04:15:15.512674
2017-09-19T11:51:56
2017-09-19T11:51:56
92,444,732
0
0
null
2017-05-25T21:09:20
2017-05-25T21:09:19
null
UTF-8
Scilab
false
false
491
sce
Ex8_2.sce
//Initilization of variables //length matrix L1=[0,4,6] //m //Bending moment matrix B=[0,400,0] //N.m //Shear force plotting //Here the left side and right side lengths are considered as close as 4 to keep up with right and left distinctions L=[0,3.999,4,5.99998,6] S=[100,100,-200,-200,0] //Calculations cum Result subplot(221) plot(L1,B) xtitle("Bending Moment Diagram","Span","Bending Moment") subplot(222) plot(L,S,L,0) xtitle("Shear Force Diagram","Span","Shear Force")
4aa1dea1ed3491361287ca818f5b5f6baa9ca9d0
449d555969bfd7befe906877abab098c6e63a0e8
/2510/CH12/EX12.2/Ex12_2.sce
ba8669f3bde2c9f444f52ee350196fe315d8284e
[]
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
Ex12_2.sce
//Variable declaration: C = 1 //Number of constituents P = 1 //Number of phases //Calculation: F = C-P+2 //Number of degrees of freedom //Result: printf("The number of degrees of freedom is : %.2f .",F)
909007f6c10d3c44ad7620d062c47917ec8f26ad
449d555969bfd7befe906877abab098c6e63a0e8
/1946/CH7/EX7.6.b/Ex_7_6_b.sce
64e6b6c7d0585766868c72339532b8c6ea0937c3
[]
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
235
sce
Ex_7_6_b.sce
// Example 7.6.b;//optical power loss clc; clear; close; NA=0.2;//numerical aperture n=1.4;//refractive index nc=(NA)^2;//coupling efficiency Loss=round(-(10*log10(nc)));//optical loss in dB disp(Loss,"optical loss in dB is")
2d09d340cf01431ae6793425a38a46e36a69723b
f5f41d427e165a46b51c8b06f6c2010b4213033a
/Scilab/curveFitting.sce
81fc06e6ac3087347655f0616c33d586e9627f83
[]
no_license
rissuuuu/IT_LAB
a40f6ea5311f5d8012364cfa3d3ad37d83be3afd
8d0f44a2b8b20ed1101c34a5cb263e6229c200cc
refs/heads/master
2021-01-03T05:06:49.877644
2020-02-12T07:42:44
2020-02-12T07:42:44
239,934,733
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,184
sce
curveFitting.sce
function p = polyfit(x, y, n) if length(x) ~= length(y) error('x and y vectors must be the same size') end x = x( : ); y = y( : ); V = ones(length(x), n+1); for j = n : -1 : 1 V(:, j) = x .* V (:, j+1); end [Q, R] = qr(V); QTy = Q' * y; p = R(1 : n+1, 1 : n+1) \ QTy(1 : n+1); p = p.'; endfunction function y = polyval(p, x) y = 0*x; p = mtlb_fliplr(p); for ix = 1 : length(p) y = y + p(ix) * x.^(ix-1); end endfunction // Define (arbitrarily) the number of points to take into account np = 10; // Define the x-vector and two functions, the second function // is a noised version of the first one x = linspace(0, 1, np); y1 = x.^3 - 5*x.^2 - 3*x - 7; y2 = y1 + .1*rand(1, np); // Enter the x and y vectors, and the order of the polynomial // that we want to obtain p = polyfit(x, y2, 3) // Define other x-values and find the original function x = 0 : .4 : 1 y1 = x.^3 - 5*x.^2 - 3*x - 7 // Use polyval to find the equivalent values in the // noised function y = polyval(p, x) // Divide the values just for comparison purposes ratio = y1./y disp(p,"P: ") disp(x,"x: ") disp(y1,"Y1: ") disp(y,"Y: ") disp(ratio,"Ratio: ")
27e5813fe654cda7e78f8fe55f6efde1487244bf
449d555969bfd7befe906877abab098c6e63a0e8
/343/CH3/EX3.4/ex3_4.sce
fa09dd9685a2460acc3e44c20098c015998c0784
[]
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
ex3_4.sce
clc f=50 //assigning values to the parameters xc=200 vph=400 vl=vph zph=14.151-%i*200 [r,t]=polar(zph) iph=vph/zph il=sqrt(3)*iph p=sqrt(3)*vl*il*cos(t) pwr=vph*iph*cos(t) c=1/(2*%pi*f*xc) disp("Watts",polar(pwr),"power consumed in each branch of delta is") disp("Farads",c,"capacitive reactance is")
d550007919dcb3206cb197f36663011f3c7640fd
449d555969bfd7befe906877abab098c6e63a0e8
/48/CH3/EX3.11/eg_3_11.sce
399ff30e78e2dbd51cef3fbfe04374c217abe495
[]
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
557
sce
eg_3_11.sce
clear; clc; disp("x NOR x=(x+x)^"); disp("NOT Gate"); disp("x NOR x=x^x^=x^"); disp("OR Gate"); disp("(x NOR y) NOR (x NOR y) = (x^ NOR y^)^ = x+y"); disp("AND Gate"); disp("(x NOR x) NOR (y NOR y )= x^ NOR y^ = xy"); disp("NAND Gate"); disp(" NOT ((x NOR x) NOR (y NOR y))= NOT (x^ NOR y^) = NOT(xy) = (xy)^"); disp("XOR Gate"); disp("(x^ NOR y^) NOR (x NOR y) = x^y+xy^"); disp("XNOR Gate"); disp("(x^ NOR y) NOR (x NOR y^) = xy+x^y^"); disp("Since every other gate can be implemented using NOR gate it is said to be functionally complete")
2e109a0bcb97c612ba2bc8613fe6541cd19c648f
449d555969bfd7befe906877abab098c6e63a0e8
/3885/CH7/EX7.11/Ex7_11.sci
0ff5845319a74d32805a91f27a67f88b026ca18f
[]
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
297
sci
Ex7_11.sci
//control systems by Nagoor Kani A //Edition 3 //Year of publication 2015 //Scilab version 6.0.0 //operating systems windows 10 // Example 7.11 clc; clear; s=%s p=poly([40 10],'s','coeff') q=poly([0 3 4 1],'s','coeff') sm=cont_frm(p,q) disp(sm,'the state model in matrix form is')
09a15b2dd54fe02eb0d842cebae9562b5ca140c6
449d555969bfd7befe906877abab098c6e63a0e8
/2223/CH18/EX18.51/Ex18_51.sce
eb25b0c622fddf1d9a2e8468a9285a385f792cdd
[]
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,030
sce
Ex18_51.sce
// scilab Code Exa 18.51 Axial pump 360 rpm N=360; // rotor Speed in RPM dh=0.30; // hub diameter of the impeller in m beta2=48; // exit angle of the runner blades(from the tangential direction) cx=5; // axial velocity of water through the impeller in m/s n_h=0.87; // hydraulic efficiency n_o=0.83; // overall Efficiency Q=2.5; // discharge in m3/s rho=1e3; g=9.81; // Gravitational acceleration in m/s^2 //part(a) dt=sqrt((4*Q/(cx*%pi))+(dh^2)); disp("m",dt,"(a)the impeller tip diameter is") // part(b)impeller blade angle at the entry d=0.5*(dt+dh); // mean diameter of the impeller blade in m u=%pi*d*N/60; beta1=atand(cx/u); disp("degree",beta1,"(b)the impeller blade angle at the entry beta1=") // part(c) cy2=u-(cx/tand(beta2)); H=n_h*u*cy2/g; disp("m",H,"(c)the head developed is") //part(d)Power required P=(rho*Q*g*H)/(n_o); disp("kW",P*1e-3,"(d)Power required to drive the pump is") // part(e) omega=%pi*2*N/60; NS=(H^(-3/4))*0.1804*(omega)*sqrt(Q); disp(NS,"(e)the specific speed is")
0c32ce290d6e857a4ff9fa2f38320aea46286294
449d555969bfd7befe906877abab098c6e63a0e8
/3793/CH15/EX15.5/exp_15_5.sce
f4c0847115916a21637ec70151212abdabf0de9b
[]
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
425
sce
exp_15_5.sce
clear; clc; V_0=100; //Six -pulse bridge rectifier voltage; V_1=110;//Line to Line Voltages; w=314; X=25;//Firing Angle in Degrees; I_r=1.2; //Rectifier Current in milli amperes; F=50; V_d0=(3*sqrt(2)*V_1)/%pi; V_o=V_d0*cosd(X);//open circuit Voltage; printf("the open circuuit voltage is = %.7f kv",V_o); L_c=(%pi*(V_o*cosd(X)-V_0))/(3*w*I_r); printf("\nthe inductance of the rectifier is = %.7f mH",L_c*10^3);
b222d579d92cc5376cb7da3bb4f91cdcfa76d765
449d555969bfd7befe906877abab098c6e63a0e8
/48/CH6/EX6.3/eg_6_3.sce
4bcfc1ff6ba18739665ed7b638830726d31d748b
[]
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
969
sce
eg_6_3.sce
clc; clear; //determines the row and column multiplicity of a mtraix //m=input("enter the number of variables in the function="); m=4; for i=1:m for j=1:m x(i,j)=0; end end //k='y'; //disp("Enter the cells index whose values are 1 in the matrix representing your function"); //while(k~='n') // i=input("x index ="); // j=input("y index ="); // x(i,j)=1; // k=input("If you want to enter more enter y(in quotes) else n(in quotes) :"); //end x=[1 0 1 1; 0 0 1 0; 0 1 1 1; 1 1 0 1]; l=0; //checks every row and find the max no of ones in a row. for i=1:m k=0; for j=1:m if(x(i,j)==1) k=k+1; end end if(k>l) l=k; end end disp(l,"Row multiplicity ="); l=0; //checks every column and find the max no of ones in a column. for j=1:m k=0; for i=1:m if(x(i,j)==1) k=k+1; end end if(k>l) l=k; end end disp(l,"Column multiplicity =");
b3621a546a226622025b5971439a69957bd4c87d
449d555969bfd7befe906877abab098c6e63a0e8
/3411/CH10/EX2.5.u2/Ex2_5_u2.sce
7e6d6b207145d26c8aade847cacfb70fbee6ef95
[]
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
742
sce
Ex2_5_u2.sce
//Example 2_5_u2 clc(); clear; //To calculate the no of states for conduction electrons and the average energy interval n=9.11*10^-31 //units in Kg E=5*1.6*10^-19 //units in J v=10^-6 //units in meter^3 h=6.67*10^-34 //units in m^2 kg s^-1 NE=(8*sqrt(2)*%pi*n^1.5*E^0.5*v)/h^3 //units in J^-1 no=NE*0.01*1.6*10^-19 //units in J printf("Available number of energy states is ") disp(no) interval=0.01/no //units in eV printf("Average energy interval is") disp(interval) printf("eV") //Given in text book available no of energy states is 1.52*10^20 but correct answer is 1.490D+20 and for average energy interval is 7*10^-23 eV but correct answer is 6.709D-23 eV
193b1f900133534abefe5803336776d80ac081b2
449d555969bfd7befe906877abab098c6e63a0e8
/1163/CH3/EX3.13/example_3_13.sce
d2c96e2d31e42971d8a4205720e81d26ff69894a
[]
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
345
sce
example_3_13.sce
clear; clc; disp("--------------Example 3.13---------------") printf("An example of a nonperiodic composite signal is the signal propagated by an AM radio station.\nIn the United States, each AM radio station is assigned a 10-kHz band width.\nThe total bandwidth dedicated to AM radio ranges from 530 to 1700 kHz.") // display the example
ff9054f7f44a270481fd4a5de83ff044fc88142c
449d555969bfd7befe906877abab098c6e63a0e8
/3542/CH9/EX9.9/Ex9_9.sce
41c515a1ef7bc5a09ea0ae842e4a3f60a026879a
[]
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,557
sce
Ex9_9.sce
// Example no 9.9 // To determine the maximum number of users using a)omnidirectional base station antenna and no voice activity b)three-sectors at the base station and voice activity detection // Page no. 472 clc; clear all; // Given data W=1.25*10^6; // Total RF bandwidth in Hz R=9600; // Baseband information bit rate in bps EbNo=10; // Minimum acceptable SNR in dB // a)Maximum number of users using omnidirectional base station antenna and no voice activity N1=1+(W/R)/EbNo; // Maximum number of users using omnidirectional // b)Maximum number of users using three-sectors at the base station antenna and voice activity with alpha=3/8 alpha=3/8; // Voice activity factor Ns=1+(1/alpha)*((W/R)/EbNo); // Maximum number of users N2=3*Ns; // Maximum number of users using three-sectors // Displaying the result in command window printf('\n Maximum number of users using omnidirectional base station antenna and no voice activity = %0.0f',N1); printf('\n Maximum number of users using three-sectors at the base station antenna and voice activity (with alpha=3/8) = %0.0f',N2);
d5be2ff75ce4bd25b67ece13b6cc4a05ec2ee1ed
449d555969bfd7befe906877abab098c6e63a0e8
/3856/CH12/EX12.2/Ex12_2.sce
808255981fada7781a4dda163b2f3bc39f60c04e
[]
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
980
sce
Ex12_2.sce
//Calculate the standard molar Enthalpy of activation (delH),standard molar Entropy of activation (delS)and Standard molar Gibbs energy of activation (delG) for the reaction CH3NC(g)=CH3CN(g) //Example 12.2 clc; clear; k=4.0*10^13; //Pre exponential factor in s^-1 KB=1.381*10^-23; //Boltzman constant in J K^-1 h=6.626*10^-34; //Planck's constant in J s R=8.314; //Gas constant in J K^-1 mol^-1 T=300; //Absolute temperature in K e=2.718; //ln constant delS=log((k*h)/(e*KB*T))*R; // Standard molar Entropy in J K^-1 mol^-1 printf("Standard molar Entropy = %.2f J K^-1 mol^-1",delS); Ea=272; //Activation Energy in kJ mol^-1 delH=Ea-(R*T/1000); //Standard molar Enthalpy in kJ mol^-1 printf("\n Standard molar Enthalpy = %.0f kJ mol^-1",delH); delG=delH-(T*delS/1000); //Standard molar Gibbs energy in kJ mol^-1(The answer vary due to round off error) printf("\n Standard molar Gibbs Energy = %.3f kJ mol^-1",delG);
7c5fa3eb8305c3c4d5d97e1ea40a0734a666d46d
449d555969bfd7befe906877abab098c6e63a0e8
/2342/CH4/EX4.21/EX4_21.sce
0a452ca8fee79b900fcbb456f10987e79aa6f6ae
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
615
sce
EX4_21.sce
// Exa 4.21 format('v',6) clc; clear; close; // Given data C_T = 100;// in pF C_T=C_T*10^-12;// in F epsilon_r = 12; epsilon_o = 8.854 * 10^-12;// in F/m epsilon = epsilon_r * epsilon_o; Rho_p = 5;// in ohm-cm Rho_p = Rho_p * 10^-2;// in ohm-m V_j = 0.5;// in V V = -4.5;// in V Mu_p = 500;// in cm^2 Mu_p = Mu_p * 10^-4;// in m^2 Sigma_p = 1/Rho_p;// in per ohm-m qN_A = Sigma_p/ Mu_p; V_B = V_j - V; W = sqrt((V_B * 2 * epsilon)/qN_A);// in m //C_T = (epsilon * A)/W; A = (C_T * W)/ epsilon;// in m D = sqrt(A * (4/%pi));// in m D = D * 10^3;// in mm disp(D,"The diameter in mm is");
4767d8ce1c2814ab1f766069164b7aa5aa24b07b
449d555969bfd7befe906877abab098c6e63a0e8
/1952/CH10/EX10.1/Ex10_1.sce
e14da5a815ad350927f441f2eebe2d06c49f3d83
[]
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
283
sce
Ex10_1.sce
// chapter 10 , Example10 1 , pg 289 Er=1.0000684 //Dielectric constant N=2.7*10^25 //(in atoms/m^3) E0=8.85*10^-12 //permittivity of free space (in F/m) Alpha_e=(E0*(Er-1))/N //electronic polarization printf("Electronic polarization (in F*m^2)\n") disp(Alpha_e)
7c6439bf6e4f63ac4939f61b59e9ecc14b6ae265
449d555969bfd7befe906877abab098c6e63a0e8
/2276/CH9/EX9.1/chapter9_ex1.sce
3ff57d622914d10de7a75098a5147b2a6cc0eba3
[]
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
chapter9_ex1.sce
clc clear //input t1=96;//number turns on the primary side of an ideal transformer v=240;//supply voltage in volts f=50;//supply frequency in hertz v2=660;//secondary pd in volts //calculations vp=v/t1;//primary volts per turn vs=vp;//secondary volts per turn t2=v2/vs;//secondary turns //output mprintf('to produce a p.d. of 660V the secondary coil should have %3.0f turns',t2)
309a6ae1b8ec0825e669489072cfa9a15bf87c22
449d555969bfd7befe906877abab098c6e63a0e8
/2063/CH1/EX1.28/1_28.sce
ec5f57ce390b8090ce21efb1d41ea94a5b10a27d
[]
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,070
sce
1_28.sce
clc clear //Input data P1=1;//Initial pressure of an enfine working on a dual combustion cycle in bar T1=318;//Initial temperature before compression in K r1=14;//Compression ratio r=1.4;//Isentropic index a=2;//Pressure ratio in the compression process rho=2;//Cut off ratio //Calculations T2=T1*r1^(r-1);//Temperature at the end of compression stroke in K T3=T2*a;//Temperature at the end of constant volume heat addition in K T4=rho*T3;//Temperature at the end of constant pressure heat addition in K T5=T4*(rho/r1)^(r-1);//Temperature at the end of isentropic compression in K n=(1-((T5-T1)/(r*(T4-T3)+(T3-T2))))*100;//Efficiency of an engine working on a dual combustion cycle in percent //Output printf('(a)Temperature at the end of compression stroke is %3.0f K\n (b)Temperature at the end of constant volume heat addition is %3.0f K\n (c)Temperature at the end of constant pressure heat addition is %3.0f K\n (d)Temperature at the end of isentropic expansion process is %3.0f K\n (e)Efficiency of the cycle is %3.2f percent',T2,T3,T4,T5,n)
bbf1f14d4ca1eec52a6a7af20c98fb6b89fc911c
449d555969bfd7befe906877abab098c6e63a0e8
/2345/CH15/EX15.20/Ex15_20.sce
10e1de2af8492a63fa4505e15fd22ce1f3742879
[]
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
326
sce
Ex15_20.sce
//Finding current //Example 15.20(pg. 405) clc clear //Let current in XA=I, in XY=I1, in AY=I-40, in YB=I-40+I1-60, in BX=I+I1-150. //By Kirchhoff's second law, in circuit XAYA I-I1=20 // and in circuit XAYBX 25I+15I1=1950 I1=(1950-500)/(15+25)//in Amperes printf('Thus the current in branch XY is I1=%2.2f Amps',I1)
78f5103d7cd3d7aabd27adf72b9692f759ea8a88
449d555969bfd7befe906877abab098c6e63a0e8
/3137/CH1/EX1.10/Ex1_10.sce
e9d745f132f60f982efaed03066a9706764d150b
[]
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
316
sce
Ex1_10.sce
//Initilization of variables x=4 //m y=3 //m z=2 //m F=50 //N //Calculations OP=sqrt(x^2+y^2+z^2) //m thetax=(x/OP) //radians thetay=(y/OP) //Radians thetaz=(z/OP) //radians P_x=F*(thetax) //N P_y=F*(thetay) //N P_z=F*(thetaz) //N //Result clc printf('The vector P is:%fi+%fj+%fk N',P_x,P_y,P_z) //N
dbe4ad99c37975dd8c4aaf9e19d322a5e79a3560
449d555969bfd7befe906877abab098c6e63a0e8
/788/CH14/EX14.7.a/14_7_data.sci
e55a373a053fc08b2d34e7dd11da1d57c4e4cd44
[]
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
401
sci
14_7_data.sci
// Aim:Refer Example 14-7 for Problem Description // Given: // diamter of hydraulic cylinder: D=6; //in // cylinder extension: L=100; //in // duration of cylinder extension: t=10; //s // time between crushing stroke: t_crush=5; //min // gas precharge pressure: p1=1200; //psia // gas charge pressure when pump is turned on: p2=3000; //psia // minimum pressure required to actuate load: p3=1800; //psia
2ed92d7914a465baea4849e5f5f8afadb2ec2dc7
449d555969bfd7befe906877abab098c6e63a0e8
/2441/CH3/EX3.1/Ex3_1.sce
716defe14038175ec49a4772af4aea38ed907e4d
[]
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
753
sce
Ex3_1.sce
//Exa 3.1 clc;clear;close; format('v',6); head=205;//m(Mean Head) A=1000;//km^2(Catchment area) rf=125;//cm(Annual Rainfall) a=80;//%(Available rainfall for power generation) LF=75;//%(Load factor) head_loss=5;//m(Head Loss) Eta_turbine=0.9;//Efficiency of turbine Eta_generator=0.95;//Efficiency of generator //Calculation WaterUsed=A*10^6*rf/100*a/100;//m^3/year(Discharge) WaterUsed=WaterUsed/(365*24*60*60);//m^3/sec Eff_Head=head-head_loss;//m(Effective Head) P=735.5/75*WaterUsed*Eff_Head*Eta_turbine*Eta_generator/1000;//MW(Load of station) Ppeak=P/(LF/100);//MW(Peak Load ) disp(Ppeak,"MW rating of station(MW)"); //type ot turbine if head>200 then disp("Pelton turbine is more suitable because head>200 meter."); end;
91b010defd2d6e728173844e23b6a6d73fb7fccd
449d555969bfd7befe906877abab098c6e63a0e8
/2891/CH6/EX6.13/Ex6_13.sce
e9825de2f79733236ff37f158b4200c730782258
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
453
sce
Ex6_13.sce
//Exa 6.13 clc; clear; close; Lm=poly(0,'Lm') // defining Lm as lambda d=1.5*Lm // diameter of antenna in m a=d/2 // radius of antenna in m // formula : Rr=3720*(a/Lm) Rr=3720*(a/Lm) // radiation resistance of loop antenna in ohm Rr=horner(Rr,1) // formula : D=4.25*(a/Lm) D=4.25*(a/Lm)// Directivity of the loop antenna D=horner(D,1) disp(Rr,"radiation resistance of the loop antenna in ohm:") disp(D,"Directivity of the loop antenna:")
86fd47d7ed21cd734f2a020b2b19bd43094e742b
449d555969bfd7befe906877abab098c6e63a0e8
/1739/CH2/EX2.23/Exa2_23.sce
5376f53e4272ab0b14015b119649a5b6033c5f8b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
260
sce
Exa2_23.sce
//Exa 2.23 clc; clear; close; //Given data : format('v',5); alfa=1.9; //characteristic index profile //Formula : v=2.405*sqrt[(alfa+2)/alfa] v=2.405*sqrt((alfa+2)/alfa);//unitless disp(v,"Value of v : "); //Note : Answer in the book is not accurate.
34b8917f5d368b879f12b7f4a7f9d4137bd15c37
3592fbcb99d08024f46089ba28a6123aeb81ff3c
/src/transformation/homogeneousMatrix.sci
7fad9dd351e44aa9d83172847de3053439728bb2
[]
no_license
clairedune/sciGaitanLib
a29ab61206b726c6f0ac36785ea556adc9ef03b9
7498b0d707a24c170fc390f7413359ad1bfefe9f
refs/heads/master
2020-12-11T01:51:13.640472
2015-01-28T13:52:26
2015-01-28T13:52:26
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
354
sci
homogeneousMatrix.sci
function M = homogeneousMatrix(x,y,z,rx,ry,rz) // fonction scilab pour construire une matrice homogene en partant // d'un vecteur x,y,z,rx,ry,rz // les angles sont donnes en radians Tr = [x;y;z]; // Mouvement de rotation Rot = rotationMatrixFromRxRyRz([rx,ry,rz]); // Matrice homogene correspondante M = [ Rot Tr 0 0 0 1 ]; endfunction
278fbce2caff9369addcf4401ecb436c55e88c83
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.5/Unix-Windows/scilab-2.5/macros/percent/%no_choos.sci
3630c2fb6a6aab570dbf525ab0a68b9c296ba56c
[ "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
687
sci
%no_choos.sci
function [flag]=%no_choos(x) // Utility function for use with schur // (see %choose) // %no_choos=1 (resp 0) <=> %choose=0 (resp 1) // Copyright INRIA ls=x(1);flag=1;s=poly(0,'s'); select ls case 1 then // ASSUME x(3) NOT ZERO (for gev pb. x(3)=0 => eval @ infty) vp=x(2)/x(3);pol=s-vp; //disp(pol); for p=%sel; if almosteq(pol,p,eps) then flag=0;end;end case 2 then pol=s^2-x(2)*s+x(3); //disp(pol); for p=%sel; if almosteq(pol,p,eps) then flag=0;end;end end function trfa=almosteq(pol,p,eps) // returns %T if pol ~ p %F if not if degree(pol)<>degree(p) then trfa=%F;return;end if norm((coeff(p)-coeff(pol)),1)<=eps then trfa=%T;return;end trfa=%F;
81a32e2c728fb400b1f1dc4590525dcd7b08e36d
006a2b1bdbcab37127ae402052015521febc527b
/evaluation.sci
eef384f43c5d30b821bfec878608bb3b3a06d33b
[]
no_license
andrerodrig/GeneticAlgorithms
55f3bdfb8e17f05539136861c1c7af17a59d6262
bc4724584788893b4cd0780d0b2f79b0455940cd
refs/heads/main
2023-03-31T20:02:17.147452
2021-04-03T17:55:48
2021-04-03T17:55:48
354,190,959
1
0
null
2021-04-03T17:55:49
2021-04-03T03:35:48
Scilab
UTF-8
Scilab
false
false
710
sci
evaluation.sci
function evaluated = evaluation(population, eval_function) [rows, cols] = size(population); eval_values = []; for i = 1:rows real_value = binary_to_real(population(i,:), 0, 10); eval_values(i) = eval_function(real_value); end [evaluated] = exp(-eval_values); endfunction function decimal_value = binary_to_decimal(bin) dec = 0 for i = 1:size(bin)(2) dec = dec + sum(bin(size(bin)(2) - (i - 1))*2^(i-1)); end decimal_value = return(dec) endfunction function real_value = binary_to_real(bin, min_val, max_val) N = length(bin) dec = binary_to_decimal(bin) real_value = return((dec * (max_val - min_val))/(2^N - 1) + min_val) endfunction
5802d4d69414c98bf1766da21c0a7b6363e30f3b
449d555969bfd7befe906877abab098c6e63a0e8
/389/CH11/EX11.5/Example11_5.sce
e0dd01e7b58f31467e6e12a3a198025665b2c64e
[]
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,275
sce
Example11_5.sce
clear; clc; // Illustration 11.5 // Page: 606 printf('Illustration 11.5 - Page: 606\n\n'); // Solution //*****Data******// Vl = 1.1*10^(-4);// [cubic m/s] Ss = 0.0012;// [kg/s] Density_p = 1120;// [kg/cubic m] dp = 8*10^(-4);// [m] Ds = 2*10^(-11);// [square m/s] Dl = 7.3*10^(-10);// [square m/s] m = 0.2;// [(kg Cu2+/cubic m soln)/(kg Cu2+/kg resin)] T = 1;// [m] //********************// Z = T;// [m] // The particles will be lifted to the top of the vessel. Z_prime = 0.5;// [m] viscosity_l = 8.94*10^(-4);// [kg/m.s] Density_l = 998;// [kg/cubic m] delta_Density = Density_p-Density_l;// [kg/cubic m] g = 9.80;// [m/square s] // From Eqn. 11.23: Vts = g*dp^2*delta_Density/(18*viscosity_l); Vm = %pi*T^2*Z/4;// [cubic m] Vs = Ss/Density_p;// [cubic m/s] phi_Sm = Vs/(Vs+Vl);// [vol fraction] // From eqn. 11.24: Density_m = (phi_Sm*Density_p)+((1-phi_Sm)*Density_l);// [kg/cubic m] // From Eqn. 11.22: n = 1; di = 0.3;// [m] P = (g*n*Density_m*Vm*Vts)*(phi_Sm^(2/3))*((T/di)^(1/2))*exp((4.35*Z_prime/T)-0.1);// [W] // To estimate the impeller speed: // Assume: Po = 5; N = (P/(Po*Density_m*di^5))^(1/3);// [r/s] Re = di^2*N*Density_m/viscosity_l; // From fig. 6.5: Assumption of Po was correct. printf("Speed of the impeller: %f r/s\n",N); vT = (%pi/4)*T^2*Z;// [cubic m] vL = vT*(1-phi_Sm); // From Eqn. 11.28: Rep = (dp^(4/3))*(P/vL)^(1/3)*(Density_l^(2/3)/viscosity_l); ScL = viscosity_l/(Density_l*Dl); if dp<(2/1000) // From Eqn. 11.29: ShL = 2+(0.47*Rep^0.62*((di/T)^0.17)*ScL^0.36); else // From Eqn. 11.30: ShL = 0.222*Rep^(3/4)*ScL^(1/3); end ShL = 130.3;// Value wrong in book kL = ShL*Dl/dp;// [m/s] // Since the dispersion is uniform throughout the vessel, the residence time for both liquid and solid is same. thetha = vL*(1-phi_Sm)/Vl;// [s] // From Fig. 11.27: abcissa = m*kL*dp/(2*Ds*Density_p); Parameter = 2*m*kL*thetha/(dp*Density_p); co = 100*Density_l/10^6;// [kg/cubic m] EMS = 0.63; Xo = 0; // From Eqn. 11.44: // (1): X1-(EMS/m)*c1 = 0 // Solute balance: // (2): (Ss*X1)+(vL*c1) = (vL*co)+(Xo*Ss) a = [1 -(EMS/m);Ss Vl]; b = [0;((Vl*co)+(Xo*Ss))]; soln = a\b; X1 = soln(1); c1 = soln(2); printf("Effluent Cu2+ conc. %f ppm\n",c1*10^(6)/Density_l);
5a536fafb0d53d90186c83c8f7a0ba730fcfa086
449d555969bfd7befe906877abab098c6e63a0e8
/635/CH2/EX2.3/Ch02Ex3.sci
8addd6cdb2c0ac9f120ca95e473de480a9b6bd58
[]
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
599
sci
Ch02Ex3.sci
// Scilab Code Ex2.3 Potential energy of the system of Na+ and Cl- ions: Page-68 (2010) e = 1.6D-19; // Electronic charge, C ep_0 = 8.854D-12; // Absolute electrical permittivity of free space, coulomb square per newton per metre square Re = 2D-10; // Equilibrium separation between Na+ and Cl- ions, m U = -e/(4*%pi*ep_0*Re); // Potential energy of NaCl molecule at equilibrium separation, electron-volt printf("\nThe potential energy of NaCl molecule at equilibrium separation5 is : %3.1f eV", U); //Result // The potential energy of NaCl molecule at equilibrium separation5 is : -7.2 eV
b0a8c0d488b60c7056996ae82026b56ad6c6492f
449d555969bfd7befe906877abab098c6e63a0e8
/2309/CH5/EX5.15/Ex5_15.sce
70ae2432f39b87656d76f6d10d98860c25d9563c
[]
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
753
sce
Ex5_15.sce
// Chapter 5 Example 15 //============================================================================== clc; clear; // input data a = 0.05; // unit cell edge of an orthorhombic crystal in nm b = 0.05; // unit cell edge of an orthorhombic crystal in nm c = 0.03; // unit cell edge of an orthorhombic crystal in nm Ia = 0.025 // intercept on 'a' in nm Ib = 0.02 // intercept on 'b' in nm Ic = 0.01 // intercept on 'c' in nm //Calculations h = a/Ia; // miller indice h k = b/Ib; // miller indice k l = c/Ic // miller indice l // Output mprintf('Miller indices (h k l) = (%d %d %d)',h,k,l); //==============================================================================
cf7ef4eafb5c7294ef4eb5dd26ef991a2fa2a7ac
449d555969bfd7befe906877abab098c6e63a0e8
/2579/CH3/EX3.10/Ex3_10.sce
d0be34dab565a181930c8e79d04627e78eb3838b
[]
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,757
sce
Ex3_10.sce
//Ex:3.10 clc; clear; close; xnp=35;// beam width in degree xnp1=(xnp/2)*(%pi/180);// half beam width in degree // T(m-1)(x)=0 or T(8-1)(x)=0, or T(7)(x)=0 // cos((m-1)*acos(x))=0 // (8-1)*acos(x)=cos(2k-1)*(%pi/2) // acos(x)=(2k-1)*pi/14 // for first nulls , k=1 // acos(x)=pi/14; x=cos(%pi/14); // but z=x/xo=cos(p/2) // p=Bd*sin(xnp1) // p/2=Bd*sin(xnp1)/2 // x/xo=cos(Bd*sin(xnp1)/2) // and Bd*sin(a)=(2*%pi/y)*(y/2)*(1/2)*sin(xnp1) // and Bd*sin(xnp1)=90*sin(xnp1) xo=x/(cos((90*sin(xnp1)*(%pi/180)))); // aoz+a1(4z^3-3z)+a2(16z^5-20z^3+5z)+a3(64z^7-112z^5+56z^3-7z)=64x^7-112x^5+56x^3-7x, where z=(x/xo) // Then on putting z=(x/xo), we get // ao(x/xo)+a1(4(x/xo)^3-3(x/xo))+a2(16(x/xo)^5-20(x/xo)^3+5(x/xo))+a3(64(x/xo)^7-112(x/xo)^5+56(x/xo)^3-7(x/xo))=64x^7-112x^5+56x^3-7x // on comparing the terms, we get ao=3.339,a1=2.919,a2=2.191,a3=1.886 ao=3.339; a1=2.919; a2=2.191; a3=1.886; a33=a3/a3;// the ratio of the a3 to a3 a23=a2/a3;// the ratio of the a2 to a3 a13=a1/a3;// the ratio of the a1 to a3 ao3=ao/a3;// the ratio of the ao to a3 printf("The value of the parameter xo = %f", xo); printf("\n The value of the amplitude parameter ao= %f", ao); printf("\n The value of the amplitude parameter a1= %f", a1); printf("\n The value of the amplitude parameter a2= %f", a2); printf("\n The value of the amplitude parameter a3= %f", a3); printf("\n The value of the relative amplitude parameter a33= %f", a33); printf("\n The value of the relative amplitude parameter a23= %f", a23); printf("\n The value of the relative amplitude parameter a13= %f", a13); printf("\n The value of the relative amplitude parameter ao3= %f", ao3); printf("\n The five element array is shown in figure in the given textbook")
0b75ea180f62c6b3acda8ead9490e474b14b78a2
b198c5fb5f24c67daa80a383a5a0dadf46603c86
/BrunoReinoso_Simplex.sce
759d6975820cde63a68177cd222b54118dd33abf
[]
no_license
Breinoso2006/Otimizacao
014ca6926b0da7bfa95cf044ad99368257b4426c
a1e845aa6fd1946d895a6861648284cc2accae94
refs/heads/main
2023-05-06T13:20:04.444010
2021-05-26T18:45:35
2021-05-26T18:45:35
371,136,003
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,011
sce
BrunoReinoso_Simplex.sce
clear clc global v; v = [5,7;2,1;1,3]; n = 2; numVertices = n + 1; //Função Analisada function z = f(x) z = (x(1)-2)^4 + (x(1) - 2*x(2))^2; endfunction //Ordena os vértices do melhor para o pior function ordenaV() global v; for(i = 1:n) for(j = i+1:numVertices) if f(v(j,:)) < f(v(i,:)) then temp = v(i,:); v(i,:) = v(j,:); v(j,:) = temp; end end end endfunction //Calcula Centroide function c = centroide() c = [0, 0]; for(i = 1:n) c = c + v(i,:); end c = c/n; endfunction //Reflexão function vr = reflexao(c, vn) vr = c + 1*(c-vn); endfunction function ve = expansao(c, vr) ve = c + 2*(vr-c); endfunction //Expansão function vc = contracao(c, vn) vc = vn + 0.5*(vn-c); endfunction //Contração function contracaoEncolhida(vl) global v; for(i = 2:numVertices) v(i,:) = vl + 0.5*(v(i,:) - vl); end endfunction //Método Simplex function menor = simplex() global v; for (k = 1:100) ordenaV() vl = v(1,:) vs = v(2,:) vn = v(3,:) c = centroide() vr = reflexao(c, vn) if f(vl) <= f(vr) & f(vr) < f(vs) then v(numVertices,:) = vr; else if f(vr) < f(vl) then ve = expansao(c, vr) if(f(ve) < f(vr)) then v(numVertices,:) = ve; else v(numVertices,:) = vr; end else if f(vs) < f(vr) then vc = contracao(c, vn); if f(vc) < f(vn) then v(numVertices,:) = vc; else contracaoEncolhida(vl); end end end end end ordenaV() menor = v(1,:) endfunction //Chamada e display da função disp (simplex())
489c8b20ee7806892fa78689fc7c7c329e63a993
139d4a83f28a14dc04c48d99a492bec7abcc3229
/lab1_v8/1b.sce
97e126fa3625a25fe143be79acfb22c96b96eccc
[ "MIT" ]
permissive
s-kostyuk/labs_alg
0f78d0a5df7b94f9190bc3b45a077fb3e68e74fb
320902e94d9bfde9d7a13a427b315605929dec17
refs/heads/master
2021-01-10T03:54:40.483782
2015-12-03T22:52:39
2015-12-03T22:56:46
44,764,651
0
2
null
2015-12-01T15:07:01
2015-10-22T18:20:28
Scilab
UTF-8
Scilab
false
false
438
sce
1b.sce
mode( -1 ) B( 1:3, 1:3 ) = input(" Введите матрицу B размером 3x3 в формате [ 1, 2, 3; 4, 5, 6; 7, 8, 9 ]: ") Sr = B( 3,1 ) Sr = Sr + B( 3,2 ) Sr = Sr + B( 3,3 ) Scol = B( 1,1 ) Scol = Scol + B( 1,2 ) Scol = Scol + B( 1,3 ) disp( Sr, "Сумма элементов последней строки равна: " ) disp( Scol, "Сумма элементов первого столбца равна: " )
f156ce639cd802c78db0a4dc1070ebac052e6949
449d555969bfd7befe906877abab098c6e63a0e8
/2792/CH2/EX2.13/Ex2_13.sce
db71db98b296dff10c72645a2f5e881104b83251
[]
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
941
sce
Ex2_13.sce
clc n = 10^17 disp("n = "+string(n)+"cm^-3") //initializing value of free density of electron of GaAs kBT=0.026 disp("kBT = "+string(kBT)+"eV") //initializing value of multiplication of boltzmann constant and temperature Nc = 4.45*10^17 disp("Nc = "+string(Nc)+"cm^-3") //initializing value of effective density of electron //(we have assumed the valence band energy Ev=0eV as it is not provided in the book) E1= kBT*((log(n/Nc))) disp("Ef(B)= kBT*((log(n/Nc)))= "+string(E1)+"eV")//calculation E2= kBT*((log(n/Nc))+(1/sqrt(8))*(n/Nc)) disp("E(J)= kBT*((log(n/Nc))+(1/sqrt(8))*(n/Nc))= "+string(E2)+"eV")//calculation //for Boltzmann approximation the carrier concentration and fermi level are related as : Ef = Ec+E1 //for joyce dixon approximation the carrier concentration and fermi level are related as : Ef = Ec+E2 e=E1-E2 disp("The error produced by using boltzmann approx. is e=E1-E2= "+string(e)+"eV")//calculation
b6aa7093adc79d6e5174b823a0aae5a8280d18ad
449d555969bfd7befe906877abab098c6e63a0e8
/3836/CH6/EX6.2/Ex6_2.sce
964f2cc3145060559831687a77ad32e6573b89ce
[]
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
Ex6_2.sce
clear //Initialisation Vo=15.2 //Output Voltage of Amplifier Vi=1.82 //Input Voltage of Amplifier //Calculation Av=Vo/Vi //Voltage gain //Result printf("\n Voltage Gain, Av = %.2f",Av)
86d647f015305698d84ac523fcb888e8db74f3b0
449d555969bfd7befe906877abab098c6e63a0e8
/593/CH15/EX15.5/ex15_5.sce
c83c3fca7606681d630cd517ba32afe07f187585
[]
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
947
sce
ex15_5.sce
clear; //clc(); // Example 15.5 // Page: 403 printf("Example-15.5 Page no.-403\n\n"); //***Data***// // We have been given the reaction // CaCO3(s) = CaO(s) + CO2(g) // The CaCO3 and CaO form separate solid phases, so we have three phases, two solid and one gas. // So P = 3; // This is a two component system, so C = 2; // From the phase rule V = C + 2 - P; // If there is only one degree of freedom, then the system should have a unique P-T curve. // Reference [ 2, page 214 ] as reported in the book, shows the data to draw such a curve, which can be well represented by // log(p/torr) = 23.6193 - 19827/T printf(" The no. of phases present in the system are %0.0f \n",P); printf(" Total no of degrees of freedom is %0.0f \n",V); printf(" Since, there is only one degree of freedom, so the system has a unique P-T curve,\n"); printf(" which can be well represented by \n log(p/torr) = 23.6193 - 19827/T");
57b01f48ae8458d775e4872457afd4515ed9cbd0
727092dff86e9d034d021bbc56565d9336b988aa
/Códigos CN/resolucao_retroativa_e_direta.sci
866942c74a6a35b9ed95f2ff07e02568369db149
[]
no_license
lucasdksan/Numerical-computing
c54b855bd50f2a06b1970086f2da63c28883f287
a5a5863499bdf46003437140e3fa3123fc4960f8
refs/heads/master
2023-06-24T16:13:01.094230
2021-07-29T15:57:00
2021-07-29T15:57:00
278,514,165
0
0
null
null
null
null
UTF-8
Scilab
false
false
478
sci
resolucao_retroativa_e_direta.sci
function x = resoRetro(A,b) [l, c] = size(A); for i = l : -1 : 1 soma = 0; for j = i + 1 : c soma = soma + A(i,j)*x(j); end x(i) = (b(i)-soma)/A(i,i); end endfunction function x = resoDi(A,b) [l, c] = size(A); for i = 1 : 1 : l soma = 0; for j = i - 1: -1 : 1 soma = soma + A(i,j)*x(j); end x(i) = (b(i)-soma)/A(i,i); end endfunction
8ff968ce9124bd76f329ccb4dbc87c77d0f04bc3
f4cfee6e4201b01843e6de00cc439883a49aa4f1
/my scilab files/yogesh2.sce
b697a3b04ab0efd99fc48283c7060385f9190272
[]
no_license
yogeshkhatana/All_programming_language_files
a17bb49ea4d3aef2b667bdbb03f3af5c4224b0d1
bec946abcf8e69a6e6ebc568d14db73c52029170
refs/heads/master
2022-11-19T09:05:08.861581
2020-07-24T17:40:32
2020-07-24T17:40:32
282,181,013
0
0
null
null
null
null
UTF-8
Scilab
false
false
141
sce
yogesh2.sce
x=[10 24 18 38 15] y=[0 0 1 0 1] label=({'cements','telecom','software','air','water'}) pie(x,y,label) title('pie chart with slice & label')
35643ebe1d7eca3bcef2fc7f4109a89d81ff611a
449d555969bfd7befe906877abab098c6e63a0e8
/1739/CH8/EX8.13/Exa8_13.sce
35a9261390752694168f10ccf41be5c8329255a1
[]
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
222
sce
Exa8_13.sce
//Exa 8.13 clc; clear; close; //Given data : C=6;//in pF C=C*10^-12;//in F FH=8;//in MHz FH=FH*10^6;//in Hz //Formula : FH=1/(2*%pi*R*C) R=1/(2*%pi*FH*C);//in Ohm disp(R*10^-3,"Maximum load resistance in Kohm");
b76b23e40f688abf423911f17ed3a2a95ec7f47c
449d555969bfd7befe906877abab098c6e63a0e8
/2165/CH6/EX6.18/6_18.sce
009a08855bced8850f2122d246159947b0dee2a3
[]
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
192
sce
6_18.sce
clc //initialisation of variables p=300//ft/sec W=880//ft/sec a=18//degree C g=32.2//ft //CALCULATIONS Wd=(p*W)/g//ft lb //RESULTS printf('the work done /lb steam sec=% f ft lb',Wd)
a1581c42b854092fa134e5b162bee8fd7f4b67f3
449d555969bfd7befe906877abab098c6e63a0e8
/1004/CH3/EX3.18/Ch03Ex18.sci
f5ca0d9b8f29f5edc05b41c38b333f81e99ecc11
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
422
sci
Ch03Ex18.sci
// Scilab code: Ex3.18 : Lowest energy of two electron system:Pg: 87 (2008) m = 9.1e-031; // Mass of an electron, kg a = 1e-010; // Length of box, m h = 6.624e-034; // Plancks constant, joule second E = 2*h^2/(8*m*a^2); // Energy of two electron system, joule printf("\nThe lowest energy of two electron system = %4.1f, eV", E/1.6e-019); // Result // The lowest energy of two electron system = 75.3, eV
4468113c1b4563eea7ec4016331e729c607e5d5c
449d555969bfd7befe906877abab098c6e63a0e8
/2339/CH3/EX3.4.1/Ex3_4.sce
ce9fd918f4cbf27dcf1f2595ee177f0a57cd51ac
[]
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
574
sce
Ex3_4.sce
clc clear //Inputs //The Values in the program are as follows: //Temperature in Celcius converted to Kelvin(by adding 273) //Pressure in bar converted to kPa (by multiplying 100) //Volume in m^3 //Value of R,Cp and Cv in kJ/kg K m=0.67; P1=14; T1=290+273; R=287; V1=(m*R*T1)/(14*(10^5)); printf('The Volume: %2.3f kJ',V1); printf('\n'); V2=4*V1; printf('The Final Volume: %2.3f kJ',V2); printf('\n'); x=V1/V2; y=x^1.3; P2=P1*y; printf('The Final Pressure: %2.3f bar',P2); printf('\n'); x=V1/V2; y=x^0.3; T2=T1*y; printf('The Final Temperature: %2.3f K',T2); printf('\n');
bc444e4e40d21b035e89de2982d0549819bf4987
089894a36ef33cb3d0f697541716c9b6cd8dcc43
/NLP_Project/test/blog/ngram/5.1_11.tst
62e6121b9d9bb5c7d97745887e53192f4d4781e1
[]
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
722,063
tst
5.1_11.tst
1 72:1 141:1 378:1 438:1 454:2 634:2 693:1 767:1 829:1 871:1 906:1 942:2 1042:1 1328:1 1485:1 1632:1 1696:1 1854:1 2370:1 2897:1 3050:1 3159:1 3608:1 3898:1 4163:1 4226:1 4315:1 4349:1 4422:1 4587:1 4669:1 5138:1 5267:1 5316:1 5433:1 5465:1 5638:1 5807:1 6219:1 6488:1 6624:1 7008:1 7315:1 7504:1 8218:1 8480:1 8541:1 8742:1 8765:1 8768:1 8843:1 9031:1 9038:1 9154:1 9319:1 9449:1 9655:1 9675:1 9719:1 9888:1 9999:1 10201:1 10702:1 10738:1 10907:1 11117:1 11185:1 11303:1 11365:1 11819:1 11986:1 12250:1 12260:1 12324:1 12369:1 13003:1 13133:1 13271:1 13533:1 13552:1 13654:1 13718:1 14010:1 14058:1 14208:1 14245:1 14603:1 14658:1 14894:1 15395:1 15517:1 15880:1 15938:1 16476:1 17008:1 17868:1 17884:1 17985:1 17994:1 18096:1 18191:1 18577:1 18810:1 19102:1 19246:1 19378:1 19651:1 19993:1 20053:119 20651:1 21242:1 21250:1 21281:1 21573:1 21652:1 21756:1 22085:1 22236:1 22390:1 22508:1 22519:1 22750:1 23043:1 23249:1 23337:1 23418:1 23466:1 23497:1 23619:1 23697:1 23862:1 23897:1 23946:1 24030:1 24172:1 24197:1 24290:1 24305:1 24578:1 24598:1 24688:1 24883:1 25018:1 25039:1 25230:1 25273:1 25793:1 26319:1 26495:1 26659:1 27729:1 27786:1 28305:1 28564:1 28594:1 29163:1 29446:1 30203:1 30220:1 30491:1 30646:1 30786:1 31313:1 31677:1 1 72:1 141:1 274:1 328:1 378:1 430:1 438:1 454:2 458:1 634:2 693:1 767:1 829:1 871:1 900:2 906:1 918:1 942:2 993:2 995:1 998:1 1042:1 1095:2 1328:1 1485:1 1632:1 1696:2 1825:1 1835:1 1854:1 1871:1 2030:1 2354:2 2370:1 2478:1 2494:1 2514:2 2515:2 2637:1 2771:1 2897:1 2913:1 2924:1 2937:1 2947:1 2950:2 3050:1 3146:1 3159:1 3269:1 3457:1 3534:1 3608:1 3898:2 4163:1 4226:1 4315:1 4349:2 4395:1 4422:1 4526:1 4587:1 4669:1 4899:1 4910:1 5034:1 5066:1 5138:1 5267:1 5270:1 5279:1 5316:1 5431:1 5433:1 5441:1 5442:1 5453:1 5465:1 5548:2 5638:1 5807:1 6219:2 6237:2 6351:1 6488:1 6571:1 6586:1 6624:2 7008:1 7295:1 7315:1 7362:1 7504:1 7574:1 7853:1 7999:1 8032:1 8168:1 8218:1 8236:2 8303:5 8326:1 8374:1 8480:2 8541:1 8742:1 8765:1 8768:1 8777:1 8788:1 8843:1 9031:1 9038:2 9154:1 9205:1 9209:1 9211:1 9319:1 9436:1 9449:1 9655:1 9675:1 9719:1 9884:1 9888:1 9999:1 10147:1 10156:1 10201:1 10264:1 10330:1 10542:1 10558:1 10657:1 10702:1 10738:1 10907:1 10911:1 11117:1 11136:2 11181:1 11185:1 11303:1 11365:1 11390:1 11597:1 11792:1 11819:1 11834:1 11983:1 11986:1 12156:1 12195:1 12250:1 12260:2 12262:1 12324:1 12369:1 12383:1 12449:1 12450:1 12918:1 13003:1 13133:1 13134:1 13271:1 13533:1 13552:1 13601:1 13654:1 13718:1 13939:2 14010:1 14026:1 14058:1 14208:1 14245:1 14307:1 14603:1 14658:1 14769:1 14894:1 15098:1 15123:1 15163:1 15379:1 15395:1 15517:2 15712:1 15851:1 15880:1 15938:1 15972:1 16032:1 16078:1 16476:1 16913:2 17008:1 17260:1 17344:1 17652:1 17762:1 17868:1 17884:1 17985:1 17994:1 18096:1 18191:1 18443:1 18577:2 18779:1 18796:1 18810:1 18898:1 19102:1 19246:1 19378:1 19515:1 19651:1 19826:3 19993:1 20053:234 20086:1 20308:1 20528:1 20651:1 20724:1 20838:1 20864:1 20871:1 20956:1 21022:1 21239:1 21242:1 21250:1 21254:1 21281:1 21288:1 21379:1 21478:1 21483:1 21523:1 21573:1 21652:1 21727:1 21756:1 22018:1 22066:1 22085:1 22119:1 22185:1 22236:1 22326:1 22390:1 22508:1 22519:1 22602:1 22750:1 22774:1 23043:1 23070:1 23194:1 23249:1 23251:1 23337:1 23418:1 23466:1 23497:1 23500:1 23503:1 23540:1 23576:1 23605:1 23619:1 23645:1 23659:1 23682:1 23697:1 23721:1 23862:1 23897:1 23940:1 23946:1 24002:1 24016:1 24030:1 24044:1 24162:1 24172:1 24197:1 24290:1 24291:2 24305:1 24376:1 24426:1 24558:1 24578:1 24598:1 24688:1 24806:1 24883:1 24996:1 25018:1 25039:1 25056:1 25138:1 25230:1 25273:1 25453:1 25652:1 25729:1 25793:1 26097:1 26157:2 26167:1 26304:1 26319:1 26479:1 26488:1 26495:1 26659:1 26758:1 27088:1 27193:1 27265:1 27729:1 27748:2 27786:1 28228:3 28305:1 28337:1 28502:1 28564:1 28594:1 28596:1 28630:1 28816:1 28921:1 29163:1 29210:1 29322:1 29373:1 29446:2 29804:1 29805:1 30138:1 30146:1 30203:1 30220:1 30238:3 30275:1 30283:1 30377:1 30406:2 30491:1 30604:1 30646:1 30786:2 31028:1 31194:1 31239:1 31313:1 31345:1 31431:1 31519:1 31606:1 31677:2 1 72:1 141:1 156:1 173:1 274:1 278:1 328:1 354:1 371:2 378:2 430:1 438:1 454:3 458:1 634:2 693:1 767:1 829:1 871:1 900:2 906:1 918:1 942:3 993:2 995:2 998:1 1042:1 1044:1 1095:2 1328:1 1389:1 1485:1 1632:1 1694:1 1696:2 1791:1 1804:1 1825:1 1835:1 1854:1 1863:1 1871:1 1965:1 1971:1 1993:1 2027:1 2030:2 2354:3 2361:1 2370:1 2439:1 2464:2 2478:1 2494:2 2495:1 2514:2 2515:2 2637:1 2706:1 2771:1 2813:1 2897:1 2913:1 2924:1 2937:1 2947:1 2950:2 3036:1 3050:1 3146:2 3157:1 3159:1 3269:1 3338:1 3371:1 3383:1 3457:2 3534:1 3608:3 3898:2 4008:1 4038:1 4106:1 4129:1 4149:1 4163:1 4179:1 4215:1 4226:1 4315:1 4348:2 4349:2 4395:1 4422:1 4426:1 4526:1 4587:1 4669:1 4720:1 4779:1 4787:1 4899:1 4910:1 5034:1 5056:1 5066:1 5138:2 5267:2 5270:1 5279:1 5316:1 5429:1 5430:1 5431:2 5433:1 5441:1 5442:1 5453:1 5465:2 5517:1 5548:2 5638:1 5720:1 5801:1 5807:1 5972:1 5988:1 6118:1 6133:1 6188:1 6219:2 6223:1 6237:2 6345:1 6351:1 6387:1 6400:1 6488:1 6502:1 6571:1 6586:2 6624:2 6706:1 6709:1 6823:1 7008:1 7131:1 7253:1 7265:1 7295:1 7315:1 7362:1 7504:1 7574:1 7679:1 7805:1 7853:1 7930:1 7999:1 8032:1 8064:1 8093:1 8168:1 8218:1 8236:2 8257:1 8303:7 8326:3 8374:1 8375:1 8411:1 8433:1 8480:2 8514:1 8541:1 8557:1 8742:1 8765:1 8768:1 8777:1 8788:1 8843:1 8938:1 9031:1 9038:2 9154:1 9205:1 9209:1 9211:1 9239:1 9319:1 9404:1 9436:1 9449:1 9533:1 9577:2 9644:1 9655:1 9675:1 9708:1 9719:1 9884:1 9888:1 9960:1 9999:1 10147:1 10156:1 10201:1 10220:1 10264:1 10330:1 10542:1 10558:1 10657:1 10665:1 10702:1 10738:1 10907:1 10911:2 10919:1 10949:1 11047:2 11117:1 11136:2 11181:1 11185:1 11244:1 11303:1 11365:1 11390:1 11597:1 11792:1 11819:3 11820:1 11827:1 11834:1 11983:1 11986:1 12156:1 12195:1 12250:1 12260:2 12262:1 12324:1 12356:1 12369:1 12383:1 12449:1 12450:1 12464:1 12483:1 12592:1 12604:1 12611:1 12652:1 12918:1 12925:1 13003:1 13118:1 13133:1 13134:1 13155:1 13271:1 13515:1 13533:1 13552:1 13569:1 13601:1 13654:1 13718:1 13939:2 14010:1 14026:1 14058:1 14146:1 14199:1 14208:1 14245:1 14307:1 14416:1 14603:2 14658:1 14769:1 14773:1 14782:1 14818:1 14846:1 14894:1 15010:1 15098:2 15121:1 15123:1 15163:1 15215:1 15353:1 15379:1 15395:1 15468:1 15517:2 15651:1 15712:1 15851:1 15880:1 15938:1 15941:2 15972:1 16032:1 16078:1 16157:1 16168:1 16476:1 16897:1 16913:2 16926:1 17008:1 17052:1 17079:1 17260:1 17344:1 17445:1 17652:1 17762:1 17808:1 17868:1 17884:1 17902:1 17930:1 17985:1 17994:1 18016:1 18096:1 18191:1 18212:1 18225:1 18307:1 18443:1 18577:2 18597:1 18779:1 18796:1 18810:2 18885:1 18898:1 18962:1 18982:1 19102:1 19171:1 19246:1 19378:1 19391:1 19411:1 19515:1 19575:1 19593:1 19651:1 19806:1 19826:3 19832:1 19872:1 19993:1 20053:377 20070:1 20086:1 20308:1 20375:1 20528:2 20651:1 20724:1 20838:1 20864:1 20871:1 20926:1 20956:1 21014:1 21022:1 21219:1 21239:2 21242:1 21250:1 21254:1 21281:1 21288:1 21322:1 21379:1 21478:1 21483:1 21523:1 21524:1 21573:1 21652:1 21699:1 21727:1 21756:1 22018:1 22066:2 22085:1 22119:1 22140:1 22185:1 22236:1 22288:1 22314:1 22326:1 22390:1 22492:1 22508:1 22519:1 22602:1 22621:1 22643:1 22723:1 22724:1 22741:1 22750:1 22774:1 22857:1 23031:1 23043:1 23070:1 23190:1 23194:1 23228:1 23249:1 23251:1 23337:1 23352:1 23418:1 23466:1 23497:1 23500:1 23503:1 23540:1 23576:1 23605:1 23619:1 23625:1 23645:2 23659:1 23682:1 23697:1 23721:1 23862:1 23897:1 23940:1 23946:1 23993:1 23998:1 24002:1 24016:1 24026:1 24030:1 24044:1 24162:1 24172:1 24175:1 24197:1 24250:1 24290:1 24291:2 24305:1 24371:1 24376:1 24426:1 24432:1 24558:1 24578:1 24598:2 24688:1 24706:1 24806:1 24883:1 24969:1 24996:1 25018:1 25039:1 25056:1 25066:1 25138:1 25199:1 25230:1 25273:1 25283:1 25391:1 25453:1 25477:1 25652:1 25729:1 25793:1 26010:1 26022:1 26097:1 26157:2 26167:1 26304:1 26319:1 26356:1 26391:1 26399:1 26479:1 26488:3 26495:1 26512:1 26659:1 26668:1 26703:1 26758:1 26766:1 27088:1 27164:1 27193:1 27265:1 27368:1 27673:1 27729:1 27748:2 27786:1 27854:1 27927:1 27933:1 27970:1 27977:1 28072:1 28228:3 28305:1 28337:1 28502:1 28551:1 28564:1 28573:1 28594:1 28596:1 28627:1 28630:1 28788:1 28816:1 28921:1 29163:1 29210:1 29247:1 29322:1 29373:2 29446:2 29473:1 29482:1 29536:1 29663:1 29804:1 29805:1 29849:1 30110:1 30138:1 30146:1 30152:1 30203:1 30220:1 30238:3 30261:1 30275:1 30283:1 30377:1 30392:1 30406:3 30491:1 30583:1 30604:1 30635:1 30645:1 30646:1 30673:1 30786:2 31028:1 31194:1 31239:1 31313:1 31345:1 31431:1 31443:1 31478:1 31505:1 31519:1 31606:1 31677:2 1 72:1 141:1 156:1 161:1 173:1 274:1 278:1 328:1 354:1 371:2 373:1 378:2 387:1 430:1 438:1 454:3 458:1 620:1 634:2 693:1 767:1 826:1 829:1 871:1 900:3 906:1 918:1 942:3 952:2 993:3 995:2 998:3 1004:1 1042:1 1044:1 1095:2 1277:1 1328:1 1389:1 1485:1 1632:1 1647:1 1686:1 1694:1 1696:2 1791:1 1804:1 1825:1 1835:1 1854:1 1863:1 1871:1 1945:1 1965:1 1971:1 1993:1 2027:1 2030:2 2198:1 2222:1 2354:4 2361:1 2370:1 2376:1 2439:1 2464:2 2478:1 2485:1 2494:2 2495:1 2501:1 2514:3 2515:2 2623:1 2637:1 2706:1 2771:1 2813:1 2835:1 2897:1 2913:1 2924:1 2937:1 2947:1 2950:3 3036:1 3041:1 3050:2 3146:2 3157:1 3159:1 3178:2 3269:1 3338:1 3371:1 3383:1 3457:2 3534:1 3608:3 3861:1 3898:3 4008:1 4021:1 4038:1 4106:1 4129:1 4149:1 4163:1 4179:1 4215:1 4226:1 4253:1 4315:1 4348:2 4349:2 4395:1 4422:1 4426:1 4476:1 4526:1 4587:1 4629:1 4669:1 4720:1 4779:1 4787:1 4869:1 4899:1 4904:1 4910:1 5034:1 5056:1 5066:1 5085:1 5105:1 5138:2 5267:2 5270:1 5279:1 5316:1 5429:1 5430:1 5431:2 5433:1 5441:1 5442:1 5450:1 5453:1 5465:2 5469:1 5517:1 5548:2 5638:1 5720:1 5801:1 5807:1 5972:1 5988:1 6118:1 6133:1 6181:1 6188:1 6219:2 6223:1 6224:1 6237:2 6345:1 6351:1 6387:1 6400:1 6488:1 6502:1 6560:1 6571:1 6582:1 6586:3 6603:1 6624:2 6684:1 6706:1 6709:1 6823:1 7008:1 7131:1 7253:1 7256:1 7265:1 7295:1 7315:1 7348:1 7362:1 7504:1 7529:1 7574:1 7679:1 7695:1 7759:1 7805:1 7853:1 7930:1 7984:1 7999:1 8032:1 8064:1 8093:1 8168:1 8198:1 8218:2 8236:3 8257:2 8262:2 8288:1 8303:10 8326:3 8327:2 8374:1 8375:1 8411:1 8421:1 8433:1 8480:2 8514:1 8541:1 8557:1 8742:1 8765:1 8768:1 8777:1 8788:1 8843:1 8870:1 8938:1 9031:2 9038:2 9154:1 9205:1 9209:1 9211:1 9239:1 9319:1 9404:1 9436:1 9449:1 9485:1 9533:1 9541:1 9577:2 9644:1 9655:1 9675:1 9708:2 9719:1 9732:1 9884:1 9888:2 9960:1 9999:1 10080:1 10147:1 10156:1 10201:1 10220:1 10264:1 10330:1 10517:1 10542:1 10558:1 10606:1 10657:1 10665:1 10690:1 10702:1 10738:1 10861:1 10907:1 10911:3 10919:1 10949:1 10980:1 11047:2 11049:1 11117:1 11136:2 11181:1 11185:1 11187:1 11244:1 11303:1 11365:1 11390:1 11573:2 11597:1 11624:1 11792:1 11819:3 11820:1 11827:1 11834:1 11901:1 11983:1 11986:1 12007:1 12026:1 12156:1 12192:1 12195:1 12241:1 12245:1 12250:1 12260:2 12262:1 12324:1 12356:1 12369:1 12383:1 12391:1 12449:1 12450:1 12464:1 12483:1 12497:1 12528:1 12592:1 12604:1 12611:1 12652:2 12918:1 12925:1 13003:1 13118:1 13133:1 13134:1 13155:2 13195:1 13271:1 13291:1 13515:1 13533:2 13552:1 13569:1 13601:1 13654:1 13718:1 13939:2 14010:1 14026:1 14058:1 14146:1 14199:1 14201:1 14208:1 14245:1 14307:1 14356:1 14416:1 14437:1 14603:2 14658:1 14749:1 14769:1 14773:1 14782:1 14818:1 14846:1 14894:1 15010:1 15013:1 15098:3 15121:1 15123:1 15163:1 15215:1 15236:1 15353:1 15379:1 15395:1 15468:1 15517:2 15518:1 15541:1 15651:1 15712:1 15851:1 15880:1 15938:1 15941:2 15972:1 16032:1 16078:1 16157:1 16168:1 16189:1 16476:1 16511:1 16897:1 16913:2 16926:1 17008:1 17052:1 17079:1 17135:1 17260:1 17344:1 17428:1 17445:1 17598:1 17652:1 17762:1 17808:1 17868:1 17884:1 17902:1 17930:1 17941:1 17985:1 17994:1 18016:1 18071:1 18096:1 18191:1 18212:1 18225:1 18307:1 18341:1 18443:1 18491:1 18577:2 18585:1 18597:1 18755:1 18779:1 18796:1 18810:2 18814:2 18885:1 18898:1 18962:1 18982:1 19004:1 19102:1 19171:1 19246:1 19337:1 19378:1 19391:1 19411:1 19450:1 19514:1 19515:1 19575:1 19593:1 19651:1 19719:1 19806:1 19826:5 19832:1 19846:1 19872:1 19993:1 20053:456 20064:1 20070:1 20086:1 20134:1 20264:1 20294:1 20308:1 20375:1 20420:1 20528:2 20651:1 20702:1 20724:1 20815:1 20838:1 20864:1 20871:1 20884:1 20926:1 20956:1 21014:1 21022:1 21062:1 21219:1 21239:2 21242:1 21250:1 21254:1 21281:1 21288:1 21295:1 21322:1 21379:1 21478:1 21483:1 21523:1 21524:1 21555:1 21573:1 21652:1 21699:1 21711:1 21727:1 21756:1 21990:1 22018:1 22032:1 22066:3 22085:1 22119:1 22140:1 22185:1 22236:1 22288:1 22314:1 22326:1 22337:1 22390:1 22492:1 22508:1 22519:2 22554:1 22602:1 22621:1 22643:2 22723:1 22724:1 22741:1 22750:1 22760:1 22774:1 22857:1 23031:1 23043:1 23070:1 23137:1 23183:1 23190:1 23194:1 23210:1 23228:1 23249:1 23251:1 23271:1 23337:1 23345:1 23352:1 23418:1 23466:1 23497:1 23500:1 23502:1 23503:1 23540:1 23576:1 23605:1 23619:1 23625:1 23645:2 23659:1 23682:1 23697:1 23721:1 23862:1 23887:1 23897:1 23900:1 23940:1 23943:1 23946:1 23993:1 23998:1 24002:1 24016:1 24026:1 24030:1 24044:1 24162:1 24172:1 24175:1 24197:1 24221:1 24250:1 24290:1 24291:2 24305:1 24370:1 24371:1 24376:2 24426:1 24432:1 24502:1 24558:1 24578:1 24598:2 24688:1 24706:1 24806:1 24883:1 24969:1 24996:1 25018:1 25027:1 25036:1 25039:1 25056:1 25066:1 25138:1 25199:1 25230:1 25273:1 25283:1 25391:1 25453:1 25477:1 25652:1 25729:1 25793:1 25900:1 25909:1 26010:1 26022:1 26097:1 26135:1 26157:2 26167:1 26253:1 26304:1 26319:1 26356:1 26374:1 26391:1 26399:1 26420:2 26479:1 26488:3 26495:1 26512:1 26659:1 26668:1 26703:1 26758:1 26766:1 26875:1 26929:2 26986:1 27012:1 27088:1 27164:1 27192:2 27193:1 27265:1 27338:1 27368:1 27387:1 27673:1 27729:1 27748:2 27786:1 27854:1 27927:1 27933:1 27970:1 27977:1 28072:1 28228:5 28305:1 28337:1 28356:1 28371:1 28502:1 28551:1 28564:1 28573:1 28594:1 28596:1 28627:1 28630:1 28788:1 28816:2 28846:1 28857:1 28921:1 29163:1 29210:1 29247:1 29260:1 29322:1 29373:2 29446:2 29473:1 29482:1 29523:1 29530:1 29536:1 29613:1 29641:1 29663:1 29804:1 29805:1 29849:1 30110:1 30134:1 30138:1 30146:1 30152:1 30169:1 30203:1 30220:1 30229:1 30238:3 30261:1 30275:1 30283:1 30377:1 30392:1 30397:1 30406:3 30491:1 30583:1 30604:1 30635:1 30645:1 30646:1 30673:1 30717:1 30786:3 31028:1 31055:1 31082:1 31103:1 31194:1 31239:1 31257:1 31313:2 31345:1 31431:1 31443:1 31478:1 31505:1 31519:1 31606:1 31617:1 31677:2 1 62:1 65:1 72:1 141:1 156:1 161:1 173:1 274:1 278:1 328:1 354:1 371:2 373:1 378:3 387:1 397:1 430:1 438:1 454:4 458:1 527:1 620:1 634:2 693:1 767:1 826:1 829:1 871:1 900:3 906:1 918:1 942:3 943:1 952:2 993:3 995:2 998:3 1004:1 1042:2 1044:2 1055:1 1095:2 1275:1 1277:1 1328:1 1332:1 1389:1 1485:1 1632:1 1647:1 1686:1 1694:2 1696:2 1713:1 1754:1 1786:1 1791:1 1804:1 1820:1 1825:1 1835:1 1854:1 1863:1 1871:1 1945:1 1965:1 1971:1 1993:1 1994:1 2027:1 2030:2 2065:1 2143:1 2198:1 2222:1 2354:4 2361:1 2370:1 2376:1 2439:1 2464:2 2478:1 2485:1 2487:1 2494:2 2495:1 2501:1 2514:3 2515:2 2603:1 2623:1 2637:1 2706:1 2722:1 2771:1 2779:1 2813:1 2814:1 2835:1 2849:1 2857:1 2873:1 2884:1 2897:1 2913:1 2924:1 2937:1 2947:1 2950:3 3036:1 3041:1 3050:2 3146:2 3157:1 3159:2 3178:2 3269:1 3338:1 3352:1 3371:2 3383:1 3457:2 3490:1 3534:1 3608:3 3804:1 3861:1 3868:1 3898:3 3937:1 4000:1 4008:1 4021:1 4038:1 4096:1 4106:1 4129:1 4149:1 4152:1 4163:1 4179:1 4215:1 4226:1 4253:1 4293:1 4315:1 4348:2 4349:2 4356:1 4395:1 4398:1 4422:1 4426:1 4476:1 4526:1 4587:1 4629:1 4669:1 4717:1 4720:1 4779:1 4787:2 4869:1 4899:1 4904:1 4910:1 5034:1 5044:1 5056:1 5066:1 5085:1 5105:1 5138:2 5267:2 5270:1 5279:1 5283:1 5316:1 5429:1 5430:1 5431:2 5433:1 5434:1 5441:1 5442:1 5446:1 5450:1 5453:1 5465:2 5469:1 5517:1 5548:2 5592:1 5638:1 5668:1 5720:1 5801:1 5807:1 5937:1 5972:1 5988:1 6115:1 6118:1 6133:1 6181:1 6188:1 6219:3 6223:1 6224:1 6237:2 6327:1 6345:1 6351:1 6387:1 6400:1 6488:1 6502:1 6560:1 6571:1 6582:1 6586:3 6603:1 6624:2 6684:1 6706:1 6709:3 6823:1 6993:1 7008:1 7131:1 7145:1 7227:1 7253:1 7256:1 7265:1 7295:1 7315:1 7348:1 7362:1 7473:1 7504:1 7529:1 7574:1 7621:1 7679:1 7695:1 7729:1 7759:1 7805:1 7853:1 7930:1 7984:1 7999:1 8032:1 8064:1 8093:1 8168:1 8198:1 8218:2 8235:1 8236:4 8250:1 8257:2 8262:2 8288:1 8303:11 8326:3 8327:2 8331:1 8374:1 8375:1 8405:1 8411:1 8421:1 8433:1 8480:2 8514:1 8541:1 8557:1 8742:1 8765:1 8768:1 8777:1 8788:1 8815:1 8843:1 8865:1 8870:1 8938:1 8974:1 8996:1 9031:2 9038:2 9066:1 9080:1 9088:1 9154:1 9205:1 9209:1 9211:1 9239:1 9312:1 9319:1 9393:1 9404:1 9436:1 9449:1 9485:1 9533:1 9541:1 9577:2 9618:1 9644:1 9655:1 9663:1 9675:1 9708:2 9719:1 9732:1 9872:1 9884:1 9888:2 9960:1 9999:1 10021:1 10080:1 10147:1 10156:1 10201:1 10220:1 10264:1 10330:1 10358:1 10363:1 10517:1 10542:1 10558:1 10587:1 10606:1 10611:1 10612:1 10657:1 10663:1 10665:1 10690:1 10702:1 10707:1 10738:1 10861:1 10907:1 10911:3 10919:1 10949:1 10980:1 11047:2 11049:1 11117:1 11136:2 11181:1 11185:1 11187:1 11224:1 11244:1 11303:1 11365:1 11373:1 11390:1 11485:1 11562:1 11573:2 11597:1 11624:1 11792:1 11819:3 11820:1 11827:1 11834:1 11901:1 11910:1 11983:1 11986:1 12007:1 12026:1 12156:1 12192:1 12195:1 12219:1 12241:1 12245:1 12250:1 12260:2 12262:1 12285:1 12324:1 12356:1 12369:3 12383:1 12391:1 12449:1 12450:1 12464:1 12483:1 12497:1 12528:1 12592:1 12604:1 12611:1 12652:2 12907:1 12918:1 12925:1 13003:1 13118:1 13133:1 13134:1 13149:1 13155:2 13172:1 13195:1 13271:1 13291:1 13310:1 13427:1 13456:1 13515:1 13533:2 13552:1 13569:1 13601:1 13654:1 13718:2 13920:1 13939:2 14010:1 14026:1 14058:1 14146:1 14176:1 14199:1 14201:1 14208:1 14245:1 14284:1 14307:1 14356:1 14381:1 14416:1 14429:1 14437:1 14453:1 14603:3 14658:1 14749:1 14769:1 14773:1 14782:1 14818:1 14846:1 14894:1 15010:1 15013:1 15098:3 15121:1 15123:1 15163:1 15185:1 15215:1 15236:1 15353:1 15379:1 15395:1 15468:1 15517:2 15518:1 15541:1 15581:1 15651:1 15698:1 15712:1 15786:1 15851:1 15880:1 15938:1 15941:2 15972:1 16032:1 16078:1 16157:1 16168:1 16189:1 16476:1 16511:1 16545:1 16627:1 16687:1 16739:1 16897:1 16913:2 16926:1 17008:1 17052:1 17079:1 17089:1 17105:1 17135:2 17239:1 17260:1 17285:1 17344:1 17428:1 17435:1 17445:1 17454:2 17598:1 17652:1 17762:1 17808:1 17868:1 17874:1 17884:1 17902:1 17916:1 17930:3 17941:1 17985:1 17994:1 18016:1 18071:1 18096:1 18171:1 18191:1 18212:1 18225:1 18307:1 18341:1 18361:1 18443:1 18491:1 18533:1 18577:2 18585:1 18597:1 18731:1 18755:1 18779:1 18796:1 18810:3 18814:2 18885:1 18887:1 18898:1 18962:1 18982:1 19004:1 19050:1 19070:1 19102:1 19134:1 19171:1 19236:1 19246:1 19337:1 19378:1 19391:1 19411:1 19450:1 19514:1 19515:1 19575:1 19593:1 19651:1 19656:1 19719:1 19806:1 19826:5 19832:1 19846:1 19872:1 19948:1 19993:1 20023:1 20053:563 20064:1 20070:1 20086:1 20132:1 20134:1 20264:1 20275:1 20294:1 20308:1 20375:1 20420:1 20425:1 20528:2 20618:1 20651:1 20669:1 20701:1 20702:1 20724:1 20732:1 20815:1 20838:1 20864:1 20871:1 20884:1 20926:2 20956:1 21014:1 21022:1 21062:1 21105:1 21219:1 21239:2 21242:1 21250:1 21254:1 21281:1 21288:1 21295:1 21322:1 21376:1 21379:1 21387:1 21478:1 21483:1 21523:1 21524:1 21555:1 21573:1 21587:1 21652:1 21699:1 21711:1 21727:1 21756:1 21860:1 21990:1 22015:1 22018:1 22032:1 22066:3 22085:1 22119:1 22140:1 22185:1 22202:1 22236:1 22288:1 22314:1 22326:1 22337:1 22390:1 22417:1 22492:1 22508:1 22519:3 22554:1 22602:1 22621:1 22643:2 22723:1 22724:1 22741:1 22750:1 22760:1 22774:1 22811:1 22855:1 22857:1 22862:1 22866:1 23031:1 23043:1 23056:1 23070:1 23137:1 23183:1 23190:1 23194:1 23210:1 23228:1 23249:1 23251:1 23271:1 23337:1 23345:1 23347:1 23349:1 23352:1 23418:1 23429:1 23466:1 23468:1 23497:1 23498:1 23500:1 23502:1 23503:1 23540:1 23576:1 23605:1 23619:1 23625:1 23645:2 23659:1 23682:1 23697:1 23721:1 23862:1 23887:1 23897:1 23900:1 23912:1 23940:1 23943:1 23946:1 23993:1 23998:1 24002:1 24016:1 24026:1 24030:2 24044:1 24111:1 24150:1 24162:1 24172:2 24175:1 24197:1 24221:1 24250:2 24290:1 24291:2 24305:1 24370:1 24371:1 24376:2 24426:1 24432:1 24451:1 24502:1 24558:1 24568:1 24578:1 24598:3 24688:1 24706:1 24776:1 24806:1 24883:1 24969:1 24996:1 25008:1 25018:1 25027:1 25036:1 25039:1 25056:1 25066:1 25138:1 25199:2 25230:1 25273:1 25283:1 25320:1 25391:1 25450:1 25453:1 25477:1 25537:1 25549:1 25652:1 25729:1 25739:1 25786:1 25793:1 25861:1 25900:1 25909:1 26010:1 26022:2 26097:1 26135:2 26157:2 26167:1 26253:1 26304:1 26319:1 26356:1 26365:1 26374:1 26391:1 26399:1 26420:2 26479:1 26488:3 26495:1 26512:1 26659:1 26668:1 26703:1 26758:1 26766:1 26857:1 26875:1 26929:2 26986:1 27012:1 27059:1 27088:1 27164:1 27192:2 27193:1 27265:1 27338:1 27368:1 27387:1 27450:1 27514:1 27673:1 27711:1 27729:1 27748:2 27786:1 27854:1 27927:1 27933:1 27970:1 27977:1 28072:1 28228:5 28305:1 28337:1 28356:1 28360:1 28371:1 28410:1 28502:1 28551:1 28564:1 28573:1 28594:1 28596:1 28627:1 28630:1 28637:1 28768:1 28788:1 28816:2 28846:1 28857:1 28921:1 28949:1 28998:1 29034:1 29093:1 29132:1 29158:1 29163:1 29210:1 29247:1 29260:1 29322:1 29373:2 29404:1 29446:2 29460:1 29465:1 29473:1 29482:1 29523:1 29530:1 29536:1 29613:1 29641:1 29663:1 29804:1 29805:1 29849:1 29921:1 30110:1 30134:1 30138:1 30146:1 30152:1 30169:1 30203:1 30220:1 30229:1 30238:3 30251:1 30252:1 30261:1 30275:1 30283:1 30377:1 30392:1 30397:2 30406:3 30438:1 30491:1 30583:1 30604:1 30614:1 30635:1 30645:1 30646:1 30673:1 30717:1 30786:3 31028:1 31055:1 31072:1 31082:1 31103:1 31194:1 31239:1 31257:1 31296:1 31313:2 31345:1 31431:1 31443:1 31478:1 31505:1 31519:1 31580:1 31606:1 31617:1 31677:2 1 62:1 65:1 72:1 141:1 156:1 161:1 173:1 274:1 278:1 328:1 354:1 371:2 373:1 378:3 387:1 397:1 430:1 438:1 454:4 458:1 527:1 620:1 634:2 693:1 767:1 826:1 829:1 871:1 900:3 906:1 918:1 942:3 943:1 952:2 993:3 995:2 998:3 1004:1 1042:2 1044:2 1055:1 1095:2 1275:1 1277:1 1328:1 1332:1 1386:1 1389:1 1485:1 1632:1 1647:1 1686:1 1694:2 1696:2 1713:1 1754:1 1786:1 1791:1 1804:1 1818:1 1820:1 1825:1 1835:1 1854:1 1863:1 1871:1 1945:1 1965:1 1971:1 1993:1 1994:1 2027:1 2030:2 2065:1 2143:1 2198:1 2222:1 2301:1 2354:4 2361:1 2370:1 2376:1 2423:1 2439:1 2464:2 2478:1 2485:1 2487:1 2494:2 2495:1 2501:1 2514:3 2515:2 2603:1 2623:1 2637:1 2706:1 2722:1 2771:1 2779:1 2813:1 2814:1 2835:1 2849:1 2857:1 2873:1 2884:1 2897:1 2913:1 2924:1 2937:1 2947:1 2950:3 3036:1 3041:1 3050:2 3146:2 3157:1 3159:2 3178:2 3269:1 3338:1 3352:1 3371:2 3383:1 3457:2 3490:1 3510:1 3534:1 3608:3 3804:1 3829:1 3861:1 3868:1 3873:1 3898:5 3937:1 4000:1 4008:1 4021:1 4038:1 4096:1 4106:1 4129:1 4149:1 4152:1 4163:1 4179:1 4215:1 4226:1 4253:1 4293:1 4315:1 4348:2 4349:2 4356:1 4395:1 4398:1 4422:1 4426:1 4476:1 4526:1 4587:1 4629:1 4669:1 4717:1 4720:1 4779:1 4787:2 4869:1 4899:1 4904:1 4910:1 5034:1 5044:1 5056:1 5066:1 5085:1 5105:1 5138:2 5267:2 5270:1 5279:1 5283:1 5316:1 5429:1 5430:1 5431:3 5433:1 5434:1 5441:1 5442:1 5446:1 5450:1 5453:1 5465:2 5469:1 5517:1 5548:2 5592:1 5638:1 5668:1 5720:1 5801:1 5807:1 5937:1 5972:1 5988:1 6115:1 6118:1 6133:1 6181:1 6188:1 6219:4 6223:1 6224:1 6237:2 6327:1 6345:1 6351:1 6387:1 6400:1 6488:1 6499:1 6502:1 6560:1 6571:1 6582:1 6586:3 6603:1 6624:2 6655:1 6684:1 6706:1 6709:3 6823:1 6993:1 7008:1 7131:1 7145:1 7227:1 7253:1 7256:1 7265:1 7295:1 7309:1 7315:1 7348:1 7362:1 7473:1 7504:1 7529:1 7574:1 7578:1 7621:1 7679:1 7695:1 7729:1 7759:1 7805:1 7853:1 7930:1 7984:1 7999:1 8032:1 8064:1 8093:1 8108:1 8168:1 8198:1 8218:2 8235:1 8236:5 8250:1 8257:2 8262:2 8288:1 8303:11 8315:1 8326:3 8327:2 8331:1 8374:1 8375:1 8405:1 8411:1 8421:1 8433:1 8480:2 8514:1 8541:1 8557:1 8742:1 8765:1 8768:1 8777:1 8788:1 8815:1 8835:2 8843:1 8865:1 8870:1 8938:1 8974:1 8996:1 9031:2 9038:2 9066:1 9080:1 9088:1 9104:1 9154:1 9205:1 9209:1 9211:1 9239:1 9312:1 9319:1 9393:1 9404:1 9436:1 9449:1 9485:1 9533:1 9541:1 9577:2 9618:1 9644:1 9655:1 9663:1 9675:1 9708:2 9719:1 9732:1 9872:1 9884:1 9888:2 9960:1 9999:1 10021:1 10080:1 10147:1 10156:1 10201:1 10220:1 10264:1 10330:1 10358:1 10363:1 10517:1 10542:1 10558:1 10576:1 10587:1 10606:1 10611:1 10612:1 10657:1 10663:1 10665:1 10690:2 10702:1 10707:1 10738:2 10861:1 10907:1 10911:3 10919:1 10949:1 10980:1 11047:2 11049:1 11117:1 11136:2 11181:1 11185:1 11187:1 11194:1 11207:1 11224:1 11244:1 11303:1 11330:1 11365:1 11373:1 11390:1 11485:1 11562:1 11573:2 11597:1 11624:1 11792:1 11807:1 11819:3 11820:1 11827:1 11834:1 11838:1 11868:1 11901:1 11910:1 11983:1 11986:1 12007:1 12026:1 12156:1 12192:1 12195:1 12219:1 12241:1 12245:1 12250:1 12260:2 12262:1 12285:1 12324:1 12356:1 12369:3 12383:1 12391:1 12429:1 12449:1 12450:1 12464:1 12483:1 12497:1 12528:1 12592:1 12604:1 12611:1 12652:2 12907:1 12918:1 12925:1 13003:1 13118:1 13133:1 13134:1 13149:1 13155:2 13172:1 13195:1 13271:1 13291:1 13310:1 13427:1 13456:1 13515:1 13533:2 13552:1 13569:1 13601:1 13654:1 13718:2 13920:1 13939:2 14010:1 14026:1 14058:1 14110:1 14146:1 14176:1 14199:1 14201:1 14208:2 14245:1 14284:1 14307:1 14356:1 14370:1 14381:1 14403:1 14416:1 14429:1 14437:1 14453:1 14603:3 14658:1 14749:1 14769:1 14773:1 14782:1 14818:1 14846:1 14894:1 15010:1 15013:1 15098:3 15121:1 15123:1 15163:1 15185:1 15215:1 15236:1 15353:1 15379:1 15395:1 15468:1 15517:2 15518:1 15541:1 15550:1 15581:1 15651:1 15698:1 15712:1 15786:1 15851:1 15880:1 15938:1 15941:2 15972:1 16032:1 16078:1 16157:1 16168:1 16189:1 16476:1 16511:1 16545:1 16627:1 16687:1 16739:1 16897:1 16909:1 16913:2 16914:1 16926:1 17008:1 17052:1 17079:1 17089:1 17105:1 17135:2 17239:1 17260:1 17285:1 17344:1 17360:1 17428:1 17435:1 17445:1 17454:2 17519:1 17532:1 17598:1 17652:1 17708:1 17762:1 17808:1 17868:1 17874:1 17884:1 17902:1 17916:1 17930:3 17941:1 17985:1 17994:1 18016:1 18071:1 18096:1 18171:1 18191:1 18212:1 18225:1 18307:1 18341:1 18361:1 18443:1 18491:1 18530:1 18533:1 18577:2 18585:1 18597:1 18731:1 18755:1 18779:1 18796:1 18810:3 18814:2 18885:1 18887:1 18898:1 18962:1 18982:1 19004:1 19050:1 19070:1 19102:1 19134:1 19171:1 19236:1 19246:1 19337:1 19378:1 19391:1 19411:1 19450:1 19514:1 19515:1 19575:1 19593:1 19651:1 19656:1 19719:1 19806:1 19826:5 19832:1 19846:1 19872:1 19948:1 19993:1 20023:1 20053:592 20064:1 20070:1 20086:1 20132:1 20134:1 20264:1 20275:1 20294:1 20308:1 20375:1 20420:1 20425:1 20528:2 20618:1 20651:1 20669:1 20701:1 20702:1 20724:1 20732:1 20815:1 20838:1 20864:1 20871:1 20884:1 20926:2 20933:1 20956:1 21014:1 21022:1 21062:1 21105:1 21149:1 21219:1 21239:2 21242:1 21250:1 21254:1 21281:1 21288:1 21295:1 21322:1 21330:1 21376:1 21379:1 21387:1 21478:1 21483:1 21523:1 21524:1 21555:1 21573:1 21587:1 21652:1 21699:1 21711:1 21727:1 21756:1 21860:1 21990:1 22015:1 22018:1 22032:1 22066:3 22069:1 22085:1 22119:1 22140:1 22185:1 22202:1 22236:1 22288:1 22314:1 22326:1 22337:1 22390:1 22417:1 22492:1 22508:1 22519:3 22554:1 22602:1 22621:1 22643:2 22723:1 22724:1 22741:1 22750:2 22760:1 22774:1 22811:1 22855:1 22857:1 22862:1 22866:1 23031:1 23043:1 23056:1 23070:1 23137:1 23183:1 23190:1 23194:1 23210:1 23228:1 23249:1 23251:2 23271:1 23337:1 23345:1 23347:1 23349:1 23352:1 23418:1 23429:1 23466:1 23468:1 23497:1 23498:1 23500:1 23502:1 23503:1 23540:1 23576:1 23605:1 23619:1 23625:1 23645:3 23659:1 23682:1 23697:1 23721:1 23862:1 23887:1 23897:1 23900:1 23912:1 23940:1 23943:1 23946:1 23993:1 23998:1 24002:1 24016:1 24026:1 24030:2 24044:1 24108:1 24111:1 24150:1 24162:1 24172:2 24175:1 24197:1 24221:1 24250:2 24290:1 24291:2 24305:2 24370:1 24371:1 24376:2 24408:1 24426:1 24432:1 24451:1 24502:1 24558:1 24568:1 24578:1 24598:3 24688:1 24706:1 24762:1 24776:1 24806:1 24883:1 24969:1 24996:1 25008:1 25018:1 25027:1 25036:1 25039:1 25056:1 25066:1 25138:1 25199:2 25230:1 25240:1 25273:1 25283:1 25286:1 25320:1 25391:1 25450:1 25453:1 25477:1 25537:1 25549:1 25652:1 25729:1 25739:1 25786:1 25793:1 25861:1 25900:1 25909:1 25963:1 26010:1 26022:2 26097:1 26135:2 26157:2 26167:1 26253:1 26304:1 26319:1 26356:1 26365:1 26374:1 26391:1 26399:1 26420:2 26479:1 26488:3 26495:1 26512:1 26659:1 26668:1 26703:1 26758:1 26766:1 26857:1 26875:1 26895:1 26929:2 26986:1 27012:1 27059:1 27088:1 27164:1 27192:2 27193:1 27265:1 27338:1 27368:1 27387:1 27450:1 27514:1 27673:1 27711:1 27729:1 27748:2 27786:1 27854:1 27927:1 27933:1 27970:1 27977:1 28072:1 28076:1 28142:1 28228:5 28305:1 28337:1 28356:1 28360:1 28371:1 28410:1 28502:1 28551:1 28564:1 28573:1 28594:1 28596:1 28627:1 28630:1 28637:1 28768:1 28788:1 28816:2 28846:1 28857:1 28921:1 28949:1 28963:1 28998:1 29034:1 29093:1 29132:1 29158:1 29163:1 29210:1 29247:1 29260:1 29322:1 29373:2 29404:1 29446:2 29460:1 29465:1 29473:1 29482:1 29523:1 29530:1 29536:1 29613:1 29641:1 29663:1 29804:1 29805:1 29849:1 29921:1 29952:1 30034:1 30110:1 30134:1 30138:1 30146:1 30152:1 30169:1 30203:1 30220:1 30229:1 30238:3 30251:1 30252:1 30261:1 30275:1 30283:1 30377:1 30392:1 30397:3 30406:3 30438:1 30491:1 30583:1 30604:1 30614:1 30635:1 30645:1 30646:1 30673:1 30717:1 30786:3 31028:1 31055:1 31072:1 31082:1 31103:1 31194:1 31239:1 31257:1 31296:1 31313:2 31345:1 31431:1 31443:1 31478:1 31505:1 31519:1 31580:1 31606:1 31617:1 31677:2 1 13:1 62:1 65:1 72:1 141:1 156:1 161:1 173:1 274:1 278:1 328:1 354:1 371:2 373:1 378:3 387:1 397:1 430:1 438:1 454:5 458:1 527:1 620:1 634:2 693:1 767:1 826:1 829:1 871:1 900:3 906:1 918:1 942:3 943:1 952:2 993:3 995:2 998:3 1004:1 1018:1 1033:1 1042:2 1044:2 1055:1 1095:2 1275:2 1277:1 1328:1 1332:1 1386:1 1389:1 1485:1 1500:1 1632:1 1647:1 1686:1 1694:2 1696:2 1713:1 1754:1 1786:1 1791:1 1804:1 1818:1 1820:1 1825:1 1835:1 1854:1 1863:1 1871:1 1945:1 1965:1 1971:1 1974:1 1979:1 1993:1 1994:2 2027:1 2030:2 2065:1 2128:1 2143:1 2192:1 2198:1 2220:1 2222:1 2272:1 2301:1 2354:4 2361:1 2370:1 2376:1 2423:1 2439:1 2464:2 2478:1 2485:1 2487:1 2494:2 2495:1 2501:1 2509:1 2514:4 2515:2 2595:1 2603:1 2623:1 2637:1 2706:1 2722:1 2771:1 2779:1 2803:1 2808:1 2813:1 2814:1 2835:1 2849:1 2857:1 2873:1 2884:1 2897:1 2913:1 2924:1 2937:1 2947:1 2950:3 2951:1 2982:1 3036:1 3041:1 3050:2 3146:2 3157:1 3159:2 3178:2 3269:1 3338:1 3352:2 3371:2 3383:1 3457:2 3490:1 3510:1 3534:1 3550:1 3608:3 3804:1 3829:1 3861:1 3868:1 3873:1 3898:5 3909:1 3937:1 4000:1 4008:1 4021:1 4038:1 4096:1 4106:1 4129:1 4149:1 4152:1 4163:1 4167:1 4179:1 4200:1 4215:1 4226:1 4229:1 4253:1 4293:1 4315:1 4348:2 4349:2 4356:1 4395:2 4398:1 4422:1 4426:1 4476:1 4526:1 4581:1 4587:1 4629:1 4669:1 4717:1 4720:1 4732:1 4779:1 4787:2 4869:1 4899:1 4904:1 4910:1 5034:1 5044:1 5056:1 5066:1 5085:1 5105:1 5138:2 5267:2 5270:1 5279:1 5283:1 5316:1 5429:1 5430:1 5431:3 5433:1 5434:1 5441:1 5442:1 5446:1 5450:1 5453:1 5465:2 5469:1 5517:1 5548:2 5592:1 5638:1 5668:1 5720:1 5801:1 5807:1 5850:1 5875:1 5915:1 5937:1 5953:1 5972:1 5988:1 5994:1 6115:1 6118:1 6133:1 6181:1 6188:1 6219:4 6223:1 6224:1 6237:2 6327:1 6345:1 6351:1 6387:1 6400:1 6488:1 6495:1 6499:1 6502:1 6560:1 6571:1 6582:1 6586:4 6600:1 6603:1 6624:2 6655:1 6684:1 6706:1 6709:3 6809:1 6816:1 6823:1 6993:1 7008:1 7061:1 7131:1 7145:1 7227:1 7253:1 7256:1 7265:1 7284:1 7295:1 7309:1 7315:1 7348:1 7362:1 7405:1 7473:1 7504:1 7529:1 7574:2 7578:1 7611:1 7621:1 7679:1 7680:1 7695:1 7729:1 7759:1 7805:1 7853:1 7930:1 7984:1 7999:1 8010:1 8032:1 8061:1 8064:1 8093:1 8108:1 8168:1 8198:1 8218:2 8235:1 8236:5 8250:1 8257:2 8262:2 8288:1 8303:12 8315:1 8326:3 8327:2 8331:1 8367:1 8374:1 8375:1 8405:1 8411:1 8421:1 8433:1 8480:2 8514:1 8541:1 8557:1 8588:1 8592:1 8742:1 8765:1 8768:1 8777:1 8788:1 8815:1 8835:3 8843:1 8865:1 8870:1 8935:1 8938:1 8969:1 8974:1 8996:1 9031:2 9038:2 9044:1 9066:1 9080:1 9088:1 9090:1 9104:1 9154:1 9205:1 9209:1 9211:1 9239:1 9312:1 9319:1 9393:1 9404:1 9436:1 9437:1 9449:1 9485:1 9501:1 9533:1 9537:1 9541:1 9577:2 9618:1 9644:1 9655:1 9663:1 9675:1 9708:2 9719:1 9732:1 9794:1 9872:1 9884:1 9888:2 9960:1 9972:1 9999:1 10021:1 10080:1 10089:1 10111:1 10147:1 10156:1 10201:1 10220:2 10264:1 10330:1 10358:1 10363:1 10517:1 10542:1 10558:1 10576:1 10587:1 10606:1 10611:1 10612:1 10657:1 10663:1 10665:1 10674:1 10690:2 10702:2 10707:1 10738:2 10841:1 10861:1 10907:1 10911:4 10919:1 10949:1 10980:1 11047:2 11049:1 11117:1 11136:2 11181:2 11185:1 11187:1 11194:1 11207:1 11224:1 11244:1 11283:1 11303:1 11330:1 11365:1 11373:1 11390:1 11432:1 11485:1 11562:1 11573:2 11597:1 11624:1 11767:1 11791:1 11792:2 11807:1 11817:1 11819:3 11820:1 11827:1 11834:1 11838:1 11868:1 11901:1 11910:1 11937:1 11939:1 11983:1 11986:1 12007:1 12026:1 12156:1 12192:1 12195:1 12219:1 12241:1 12245:1 12250:1 12260:2 12262:1 12285:1 12287:1 12324:2 12356:1 12369:3 12383:1 12391:1 12429:1 12449:2 12450:1 12464:1 12483:1 12497:1 12528:1 12592:1 12604:1 12611:1 12636:1 12652:2 12655:1 12799:1 12863:1 12907:1 12918:1 12925:1 13003:1 13118:1 13133:1 13134:1 13149:1 13155:2 13172:1 13195:1 13271:1 13291:1 13310:1 13427:1 13456:1 13515:1 13533:2 13552:1 13569:1 13601:1 13626:1 13654:1 13718:2 13920:1 13939:2 14010:1 14026:1 14048:1 14058:1 14110:1 14146:1 14176:1 14199:1 14201:1 14208:2 14245:1 14284:1 14307:1 14356:1 14370:1 14381:1 14403:1 14416:1 14429:1 14437:1 14453:2 14532:1 14603:3 14658:1 14749:1 14769:1 14773:1 14782:2 14818:1 14846:1 14894:1 14967:1 15010:1 15013:1 15025:1 15098:4 15121:1 15123:1 15163:1 15185:1 15215:1 15236:1 15353:1 15379:2 15395:1 15468:1 15517:2 15518:1 15540:1 15541:1 15550:1 15581:1 15651:1 15698:1 15712:2 15786:1 15851:1 15880:1 15938:1 15941:2 15972:1 16032:1 16078:1 16157:1 16168:1 16189:1 16464:1 16476:1 16511:1 16545:1 16627:1 16687:1 16701:1 16739:2 16869:1 16897:1 16909:1 16913:2 16914:1 16926:1 17008:1 17052:1 17079:1 17089:1 17105:1 17135:2 17239:2 17260:2 17285:1 17344:1 17349:1 17360:1 17428:1 17435:1 17444:1 17445:1 17454:2 17519:2 17521:1 17529:1 17532:1 17598:1 17652:1 17708:1 17762:1 17808:1 17868:1 17874:1 17884:1 17899:1 17902:1 17916:1 17930:3 17941:1 17972:1 17985:1 17994:1 18008:1 18016:1 18071:1 18096:2 18102:1 18171:1 18191:1 18212:1 18225:1 18307:2 18341:1 18361:1 18425:1 18443:1 18491:1 18530:1 18533:1 18577:2 18585:1 18597:1 18617:1 18731:1 18755:1 18779:1 18796:1 18810:3 18814:2 18885:1 18887:1 18898:1 18962:1 18982:1 19004:1 19050:1 19070:1 19102:1 19134:1 19171:1 19236:1 19246:1 19337:1 19378:1 19391:1 19411:1 19450:1 19514:1 19515:1 19575:1 19593:1 19651:1 19656:1 19719:1 19780:1 19806:1 19826:5 19832:1 19846:1 19872:1 19948:1 19993:1 20016:1 20023:1 20053:643 20064:1 20070:1 20086:1 20132:1 20134:1 20264:1 20275:1 20294:1 20308:1 20375:1 20420:1 20425:1 20528:2 20605:1 20618:1 20651:1 20669:1 20701:1 20702:1 20724:1 20732:1 20759:1 20768:1 20815:1 20838:1 20864:1 20871:1 20884:1 20926:2 20933:1 20956:1 20999:1 21014:1 21022:1 21062:1 21065:1 21105:1 21149:1 21219:1 21239:2 21242:1 21250:1 21254:1 21281:1 21288:1 21295:1 21322:1 21330:1 21376:1 21379:1 21387:1 21478:1 21483:1 21523:1 21524:1 21555:1 21573:1 21587:1 21652:1 21699:1 21711:1 21727:1 21756:1 21853:1 21860:1 21990:1 22015:1 22018:1 22032:1 22066:3 22069:1 22085:1 22119:1 22140:1 22185:1 22202:1 22236:1 22288:1 22314:1 22326:1 22337:1 22390:1 22417:1 22492:1 22508:1 22519:3 22554:1 22567:1 22602:1 22621:1 22643:2 22723:1 22724:1 22741:1 22750:2 22760:1 22774:1 22811:1 22855:1 22857:1 22862:1 22866:1 23031:1 23032:1 23043:1 23056:1 23070:1 23081:1 23131:1 23137:1 23158:1 23183:1 23190:1 23194:1 23199:1 23210:1 23228:2 23229:1 23249:1 23251:2 23271:1 23337:1 23345:1 23347:1 23349:1 23352:1 23418:1 23429:1 23466:1 23468:1 23497:1 23498:1 23500:1 23502:1 23503:1 23540:1 23576:1 23605:2 23619:1 23625:1 23645:3 23659:1 23682:1 23697:1 23721:1 23862:1 23887:1 23897:1 23900:1 23912:1 23940:1 23943:1 23946:1 23993:1 23998:1 24002:1 24016:1 24026:1 24030:2 24044:1 24073:1 24108:2 24111:1 24150:1 24162:1 24172:2 24175:1 24197:1 24221:1 24250:2 24290:1 24291:2 24305:2 24370:1 24371:1 24376:2 24408:1 24426:1 24432:1 24451:1 24502:1 24550:1 24558:1 24568:1 24578:2 24598:3 24624:1 24688:1 24706:1 24762:1 24776:1 24806:1 24808:1 24851:1 24883:1 24969:1 24996:1 25008:1 25018:1 25027:1 25036:1 25039:1 25056:1 25066:1 25138:1 25172:1 25199:2 25230:1 25240:1 25273:1 25283:1 25286:1 25320:1 25391:1 25396:1 25450:1 25453:1 25472:1 25477:1 25537:1 25549:1 25652:1 25729:1 25739:1 25786:1 25793:1 25861:1 25900:1 25909:1 25963:2 26010:1 26022:2 26041:1 26097:1 26135:2 26157:2 26167:1 26253:1 26300:1 26304:1 26319:1 26356:1 26365:1 26374:1 26380:1 26391:1 26399:1 26420:2 26479:1 26488:3 26495:1 26512:1 26659:1 26668:1 26683:1 26703:1 26758:1 26766:1 26803:1 26857:1 26875:1 26895:1 26929:2 26986:1 27012:1 27048:1 27059:1 27088:1 27112:1 27164:1 27192:2 27193:1 27265:1 27338:1 27368:1 27387:1 27450:1 27514:1 27627:1 27673:1 27711:1 27729:1 27748:2 27786:1 27796:1 27854:1 27927:1 27933:1 27970:1 27977:1 28071:1 28072:1 28076:1 28142:1 28228:5 28305:1 28322:1 28337:1 28356:1 28360:2 28371:1 28410:1 28502:1 28551:1 28564:1 28573:2 28594:1 28596:1 28627:1 28630:1 28637:1 28768:1 28788:1 28816:2 28846:1 28857:1 28863:1 28921:1 28931:1 28949:1 28963:1 28998:1 29034:1 29093:1 29132:1 29158:1 29163:1 29187:1 29210:1 29244:1 29247:1 29260:1 29322:1 29373:2 29404:1 29446:2 29460:1 29465:1 29473:1 29482:1 29523:1 29530:1 29536:1 29543:1 29613:1 29641:1 29663:1 29804:1 29805:2 29849:1 29921:1 29952:1 29969:1 30034:1 30110:1 30134:1 30138:1 30146:1 30151:1 30152:1 30169:1 30171:1 30203:1 30220:1 30229:1 30238:3 30251:1 30252:1 30261:1 30275:1 30279:1 30283:1 30377:1 30392:1 30397:3 30406:3 30438:1 30491:1 30583:1 30604:1 30614:1 30635:1 30645:1 30646:1 30673:1 30717:1 30786:3 31028:1 31055:1 31072:1 31082:1 31103:1 31194:1 31239:1 31257:1 31296:1 31301:1 31313:2 31345:1 31431:1 31443:1 31473:1 31478:1 31505:1 31519:1 31580:1 31606:1 31617:1 31677:2 1 13:1 62:1 65:1 72:1 106:1 141:1 156:1 161:1 173:1 207:1 274:1 278:1 328:1 354:1 371:2 373:1 378:3 387:1 397:1 430:1 438:1 454:5 458:1 526:1 527:1 620:1 634:2 693:1 767:1 826:1 829:1 863:1 871:1 900:3 906:1 918:1 942:3 943:1 952:2 993:3 995:2 998:3 1001:1 1004:1 1018:2 1033:1 1042:2 1044:2 1055:1 1095:2 1159:1 1275:3 1277:1 1328:1 1332:1 1386:1 1389:1 1485:1 1500:1 1632:1 1647:1 1686:2 1694:2 1696:2 1713:1 1754:1 1786:1 1791:1 1804:1 1818:1 1820:1 1825:1 1835:1 1854:1 1863:1 1871:1 1945:2 1965:1 1971:1 1974:1 1979:1 1993:1 1994:2 2027:1 2030:2 2065:1 2128:1 2143:2 2192:1 2198:1 2220:1 2222:1 2272:1 2296:1 2301:1 2354:4 2361:1 2370:1 2376:1 2423:1 2436:1 2439:1 2464:2 2478:1 2485:1 2487:1 2494:2 2495:1 2501:1 2509:1 2514:5 2515:2 2595:1 2603:1 2623:1 2637:1 2706:1 2722:1 2771:1 2776:1 2779:1 2803:1 2808:1 2813:1 2814:1 2835:1 2849:1 2851:1 2857:1 2873:1 2884:1 2897:1 2913:1 2924:2 2937:1 2947:1 2950:3 2951:2 2982:1 3036:1 3041:1 3050:2 3146:2 3157:1 3159:2 3178:2 3180:1 3190:1 3249:1 3269:1 3338:1 3352:2 3371:2 3383:1 3457:2 3490:1 3510:1 3534:1 3550:1 3608:4 3804:1 3829:1 3861:1 3868:1 3873:1 3898:7 3909:1 3914:1 3937:1 4000:1 4008:1 4021:1 4038:1 4096:1 4099:1 4106:1 4129:1 4149:1 4152:1 4163:1 4167:1 4179:1 4200:1 4215:1 4226:1 4229:1 4236:1 4253:1 4272:1 4293:2 4315:1 4348:2 4349:2 4356:1 4393:1 4395:2 4398:1 4422:1 4426:1 4476:1 4526:1 4581:1 4587:1 4629:1 4669:4 4717:1 4720:1 4732:1 4779:1 4787:2 4869:1 4899:1 4904:1 4910:1 4938:1 5034:1 5044:1 5056:1 5066:1 5085:1 5105:1 5138:2 5267:2 5270:1 5279:1 5283:1 5316:1 5429:1 5430:1 5431:3 5433:2 5434:1 5441:1 5442:1 5446:1 5449:1 5450:1 5453:1 5456:1 5465:2 5469:1 5517:1 5548:2 5592:1 5638:1 5668:1 5720:1 5801:1 5807:1 5850:1 5875:2 5915:1 5937:1 5953:1 5972:1 5988:1 5994:1 6017:1 6100:1 6115:2 6118:1 6133:1 6139:1 6181:1 6188:2 6219:4 6223:1 6224:1 6237:2 6308:1 6327:1 6345:1 6351:1 6387:1 6400:1 6466:1 6488:1 6495:1 6499:1 6502:1 6560:1 6571:1 6582:1 6586:4 6600:1 6603:1 6624:2 6655:1 6684:1 6706:1 6709:3 6809:1 6816:1 6823:1 6993:1 7008:1 7061:1 7131:1 7145:1 7227:1 7253:1 7256:1 7265:1 7284:2 7295:1 7309:1 7315:1 7326:1 7348:1 7362:1 7405:1 7429:1 7473:1 7504:1 7529:1 7574:3 7578:1 7611:1 7621:1 7636:1 7679:1 7680:1 7695:1 7729:1 7759:1 7805:1 7853:1 7930:1 7984:1 7999:1 8010:1 8032:1 8061:1 8064:1 8093:1 8108:1 8134:1 8168:1 8198:1 8218:2 8235:1 8236:5 8250:1 8257:2 8262:2 8288:1 8303:13 8315:1 8326:3 8327:2 8331:1 8367:1 8374:1 8375:1 8405:1 8411:1 8421:1 8433:1 8480:2 8514:1 8541:1 8557:1 8588:1 8592:1 8742:1 8765:1 8768:1 8777:1 8788:1 8815:1 8835:3 8843:1 8865:1 8870:1 8935:1 8938:1 8969:1 8974:1 8994:1 8996:1 9031:2 9038:2 9044:1 9065:1 9066:1 9080:1 9088:1 9090:1 9104:1 9154:1 9205:1 9209:1 9211:1 9239:1 9267:1 9312:1 9319:1 9393:1 9404:1 9436:1 9437:1 9449:1 9485:1 9501:1 9533:1 9537:1 9541:1 9577:2 9618:1 9644:1 9655:1 9663:1 9668:1 9675:1 9708:2 9719:1 9732:1 9794:2 9872:1 9882:1 9884:1 9888:2 9960:1 9972:1 9999:1 10021:1 10080:1 10089:1 10111:1 10147:1 10156:1 10197:1 10201:1 10220:3 10264:1 10330:1 10358:1 10363:1 10517:1 10542:1 10558:1 10576:1 10587:1 10606:1 10611:1 10612:1 10657:1 10663:1 10665:1 10674:1 10690:2 10702:2 10707:1 10738:2 10841:1 10861:1 10907:1 10911:4 10919:1 10949:1 10980:1 11047:2 11049:1 11117:1 11121:1 11136:2 11181:3 11185:1 11187:1 11194:1 11207:1 11210:1 11224:1 11244:1 11283:1 11303:1 11330:1 11365:1 11373:2 11390:1 11432:1 11485:1 11562:1 11573:2 11597:1 11624:1 11767:1 11791:1 11792:2 11807:1 11817:1 11819:4 11820:1 11827:1 11834:1 11838:1 11868:1 11901:2 11910:1 11935:1 11937:1 11939:1 11983:1 11986:1 12007:1 12026:1 12118:1 12156:1 12192:1 12195:1 12219:1 12241:1 12245:1 12250:1 12260:2 12262:1 12285:2 12287:1 12324:2 12356:1 12369:3 12383:1 12391:1 12429:1 12449:2 12450:1 12464:1 12483:1 12497:1 12528:1 12592:1 12604:1 12611:1 12636:1 12652:2 12655:1 12799:1 12863:1 12883:1 12907:1 12918:1 12925:1 13003:1 13118:1 13133:1 13134:1 13149:1 13155:2 13172:1 13195:1 13237:1 13271:1 13291:1 13310:1 13427:1 13456:1 13515:1 13533:2 13552:1 13569:1 13601:1 13626:1 13654:1 13718:2 13920:1 13939:2 14010:1 14026:1 14048:1 14058:1 14064:1 14110:1 14146:1 14176:1 14199:1 14201:1 14208:2 14245:1 14262:1 14284:1 14307:1 14356:1 14370:1 14381:1 14403:1 14416:1 14429:1 14437:1 14453:2 14503:1 14532:1 14603:3 14658:1 14748:1 14749:1 14769:1 14773:1 14782:3 14818:1 14846:1 14894:1 14967:2 15010:1 15013:1 15025:1 15049:1 15080:1 15098:5 15121:1 15123:1 15163:1 15185:1 15215:1 15236:1 15353:1 15379:3 15395:1 15446:1 15468:1 15517:2 15518:1 15540:1 15541:1 15550:1 15581:1 15651:1 15675:1 15698:1 15712:2 15786:1 15851:1 15880:1 15938:1 15941:2 15972:1 16032:1 16078:1 16157:1 16168:1 16189:1 16464:1 16476:1 16511:1 16516:1 16520:1 16545:1 16627:1 16687:1 16701:1 16739:2 16869:1 16897:1 16909:1 16913:2 16914:1 16926:1 16999:1 17008:1 17052:1 17079:1 17089:1 17105:1 17135:2 17239:2 17260:2 17285:1 17344:1 17349:2 17360:2 17428:1 17435:1 17444:1 17445:1 17454:2 17519:2 17521:1 17529:1 17532:1 17598:1 17652:1 17708:1 17762:1 17808:1 17868:1 17874:1 17884:1 17899:1 17902:1 17915:1 17916:1 17930:3 17941:1 17972:1 17985:1 17994:1 18008:1 18016:1 18071:1 18096:2 18102:1 18171:1 18191:1 18212:1 18225:1 18307:2 18341:1 18361:1 18425:1 18443:1 18491:1 18530:1 18533:1 18577:2 18585:1 18597:1 18617:1 18731:1 18755:1 18779:1 18796:1 18810:3 18814:2 18885:1 18887:1 18898:1 18962:1 18982:1 19004:1 19050:1 19070:1 19102:1 19134:1 19171:1 19226:1 19236:1 19246:1 19337:1 19378:1 19391:1 19411:1 19450:1 19514:1 19515:1 19575:1 19593:1 19651:1 19656:1 19670:1 19719:1 19780:1 19806:1 19826:5 19832:1 19846:1 19872:1 19948:1 19993:1 20016:1 20023:1 20053:665 20064:1 20070:1 20086:1 20132:1 20134:1 20264:1 20275:1 20294:1 20308:1 20375:1 20420:1 20425:1 20528:2 20605:1 20618:1 20651:1 20669:1 20701:1 20702:2 20724:1 20732:1 20759:1 20768:1 20815:1 20838:1 20864:1 20871:1 20884:1 20926:2 20933:1 20935:1 20956:1 20999:1 21014:1 21022:1 21062:1 21065:1 21105:1 21149:1 21157:1 21219:1 21239:2 21242:1 21250:1 21254:1 21281:1 21288:1 21295:1 21322:1 21330:1 21376:1 21379:1 21387:1 21478:1 21483:1 21523:1 21524:1 21555:1 21573:1 21587:1 21591:1 21652:1 21699:1 21711:1 21727:1 21756:1 21853:1 21860:1 21861:1 21990:1 22015:1 22018:1 22032:1 22066:3 22069:1 22085:1 22119:1 22140:1 22185:1 22202:2 22236:1 22288:1 22300:1 22314:1 22326:1 22337:1 22390:1 22417:1 22488:1 22492:1 22508:1 22519:3 22554:1 22567:1 22602:1 22621:1 22643:2 22723:1 22724:1 22741:1 22750:2 22760:1 22774:1 22811:1 22855:1 22857:1 22862:1 22866:1 23027:1 23031:1 23032:1 23043:1 23056:1 23070:1 23081:1 23131:1 23137:1 23158:1 23183:1 23190:1 23194:1 23199:1 23210:1 23228:2 23229:1 23249:1 23251:2 23271:1 23288:1 23337:1 23345:1 23347:1 23349:1 23352:1 23410:1 23418:1 23429:1 23437:1 23466:1 23468:1 23497:1 23498:1 23500:1 23502:1 23503:1 23540:1 23576:1 23605:3 23616:1 23617:1 23619:1 23625:1 23645:3 23659:1 23682:1 23697:1 23721:1 23862:1 23887:1 23897:1 23900:1 23912:1 23922:1 23940:1 23943:1 23946:1 23993:1 23998:1 24001:1 24002:1 24016:1 24026:1 24030:2 24044:1 24073:1 24108:4 24111:1 24150:1 24162:1 24172:2 24175:1 24197:1 24221:1 24250:2 24290:1 24291:2 24305:2 24370:1 24371:1 24376:2 24408:1 24426:1 24432:1 24451:1 24502:1 24550:1 24558:1 24568:1 24578:2 24598:3 24608:1 24624:1 24688:1 24706:1 24762:1 24776:1 24806:1 24808:1 24851:1 24883:1 24969:1 24996:1 25008:1 25018:1 25027:1 25036:1 25039:1 25056:1 25066:1 25138:1 25172:1 25199:2 25230:1 25240:1 25273:1 25283:1 25286:1 25320:1 25366:1 25391:1 25396:1 25450:1 25453:1 25472:2 25477:1 25537:1 25549:1 25652:1 25729:1 25739:1 25786:1 25793:1 25861:1 25900:1 25909:1 25963:2 26010:1 26022:2 26041:1 26097:1 26111:1 26135:2 26157:2 26167:1 26253:1 26300:1 26304:1 26319:1 26356:1 26365:1 26374:1 26380:1 26391:1 26399:1 26420:2 26479:1 26488:3 26495:1 26512:1 26659:1 26668:1 26683:1 26703:1 26758:1 26766:1 26803:1 26857:1 26875:1 26895:1 26929:2 26942:1 26986:1 27012:1 27024:1 27048:1 27051:1 27059:1 27088:1 27112:1 27164:1 27192:2 27193:1 27265:1 27312:1 27338:1 27368:1 27387:1 27450:1 27514:1 27627:1 27673:1 27711:1 27729:1 27748:2 27786:1 27796:1 27854:1 27927:1 27933:1 27970:1 27977:1 28048:1 28071:1 28072:1 28076:1 28142:2 28210:1 28228:5 28305:1 28322:1 28337:1 28356:1 28360:3 28371:1 28410:1 28502:1 28551:1 28564:1 28573:2 28594:4 28596:1 28627:1 28630:1 28637:1 28691:1 28768:1 28788:1 28816:2 28846:1 28857:1 28863:1 28921:1 28931:1 28949:1 28963:1 28998:1 29034:1 29093:1 29132:1 29158:1 29163:1 29187:1 29210:1 29244:1 29247:1 29259:1 29260:1 29322:1 29373:2 29404:1 29446:2 29460:1 29465:1 29473:1 29482:1 29523:1 29530:1 29536:1 29543:1 29556:1 29613:1 29641:1 29663:1 29804:1 29805:2 29849:1 29921:1 29952:1 29969:1 30034:1 30110:1 30134:1 30138:1 30146:1 30151:1 30152:1 30169:1 30171:1 30203:1 30220:1 30229:1 30238:3 30251:1 30252:1 30261:1 30275:1 30279:1 30283:1 30362:1 30377:1 30392:1 30397:3 30406:3 30438:1 30453:1 30491:1 30583:1 30604:1 30614:1 30634:1 30635:1 30645:1 30646:1 30673:1 30717:1 30786:3 31028:1 31055:1 31072:1 31082:1 31103:1 31194:1 31204:1 31239:1 31257:1 31284:1 31296:1 31301:1 31313:2 31345:1 31351:1 31405:1 31431:1 31443:1 31473:1 31478:1 31505:1 31519:1 31580:2 31606:1 31617:1 31677:2 1 13:1 62:1 65:1 72:1 106:1 141:1 156:2 161:1 173:1 207:1 274:1 278:1 307:1 328:1 354:1 371:2 373:1 378:3 387:3 397:1 416:1 430:1 438:1 454:5 458:2 526:1 527:1 620:1 634:2 659:1 693:1 767:1 826:1 829:1 863:1 871:1 900:3 906:1 918:2 942:4 943:1 952:2 975:1 993:3 995:2 998:4 1001:1 1004:2 1018:2 1033:1 1042:2 1044:2 1055:1 1095:2 1159:1 1275:3 1277:1 1298:1 1312:1 1328:1 1332:1 1386:1 1389:1 1470:1 1485:1 1500:1 1530:1 1540:1 1565:1 1632:1 1647:1 1686:2 1694:2 1696:2 1713:1 1754:1 1786:1 1791:1 1804:2 1818:1 1820:1 1825:1 1835:1 1839:1 1854:1 1863:1 1871:1 1945:2 1965:1 1971:1 1974:2 1978:1 1979:1 1993:1 1994:3 2027:1 2030:2 2065:1 2128:1 2129:1 2143:2 2192:1 2198:1 2220:1 2222:1 2272:1 2296:1 2301:1 2323:1 2354:5 2361:1 2370:1 2376:1 2423:1 2436:1 2439:1 2464:2 2478:1 2485:1 2487:1 2494:2 2495:1 2497:1 2501:1 2508:2 2509:1 2514:5 2515:2 2571:1 2595:1 2603:1 2618:1 2623:1 2637:1 2706:1 2722:1 2765:1 2771:1 2776:1 2779:1 2803:1 2808:1 2813:1 2814:1 2835:1 2849:1 2851:1 2857:1 2873:1 2884:1 2897:1 2913:1 2916:2 2924:2 2937:1 2947:1 2950:3 2951:2 2981:1 2982:1 3036:1 3041:1 3050:2 3069:1 3127:1 3146:2 3157:1 3159:2 3178:2 3180:1 3190:1 3249:1 3269:1 3338:1 3352:3 3371:2 3383:1 3438:1 3457:2 3469:1 3490:1 3510:1 3534:1 3550:1 3608:5 3774:1 3788:1 3804:1 3829:1 3861:1 3868:1 3873:1 3898:7 3909:1 3912:1 3914:1 3937:1 4000:1 4008:1 4021:1 4038:1 4096:1 4099:1 4106:1 4113:1 4129:1 4149:1 4152:1 4156:1 4163:1 4167:1 4179:1 4200:1 4215:1 4226:1 4229:1 4236:1 4253:1 4272:1 4293:2 4315:1 4348:2 4349:2 4356:1 4393:1 4395:2 4398:1 4403:1 4422:1 4426:1 4476:1 4500:1 4526:1 4581:1 4587:1 4629:1 4669:4 4717:1 4720:1 4732:1 4779:1 4787:2 4843:1 4869:2 4899:1 4904:1 4910:1 4938:1 5034:1 5044:1 5056:1 5066:1 5085:1 5105:1 5138:2 5267:3 5270:1 5279:1 5283:1 5316:1 5429:1 5430:1 5431:3 5433:2 5434:1 5436:1 5441:1 5442:1 5446:1 5449:1 5450:1 5453:1 5456:1 5465:3 5469:1 5517:1 5548:2 5592:1 5638:1 5668:1 5720:1 5801:1 5807:1 5850:1 5875:2 5915:1 5937:1 5953:1 5972:1 5988:1 5994:1 6017:1 6100:1 6115:2 6118:1 6133:1 6136:1 6139:1 6143:1 6181:1 6188:2 6219:4 6223:1 6224:1 6237:2 6308:1 6327:1 6345:1 6351:1 6387:1 6400:1 6466:1 6488:1 6495:1 6499:1 6502:1 6560:1 6571:1 6581:1 6582:1 6586:5 6600:1 6603:1 6624:2 6655:1 6684:1 6706:1 6709:3 6799:1 6806:1 6809:1 6816:1 6823:1 6990:1 6993:1 6996:1 7008:1 7061:1 7131:1 7145:1 7227:1 7253:1 7256:1 7265:1 7284:2 7292:1 7295:1 7309:1 7315:1 7326:1 7348:1 7362:1 7405:2 7429:1 7473:1 7504:1 7529:1 7535:1 7574:4 7578:1 7611:1 7621:1 7624:1 7636:1 7645:1 7679:1 7680:1 7695:1 7729:1 7759:1 7792:1 7805:1 7812:1 7853:1 7930:1 7984:1 7999:1 8010:1 8032:1 8061:1 8064:2 8081:1 8093:1 8108:1 8134:1 8168:1 8198:1 8218:2 8235:1 8236:5 8250:1 8257:2 8262:2 8287:1 8288:1 8303:15 8315:1 8326:4 8327:2 8331:1 8367:1 8374:1 8375:1 8404:2 8405:1 8411:1 8421:1 8433:1 8461:1 8480:2 8514:1 8541:1 8557:1 8588:1 8592:1 8681:1 8742:1 8765:1 8768:1 8777:1 8788:1 8815:1 8835:4 8843:1 8865:1 8870:1 8935:1 8938:1 8943:1 8969:1 8974:1 8994:2 8996:1 9031:3 9038:2 9044:1 9065:1 9066:1 9080:1 9088:1 9090:1 9104:1 9154:1 9205:1 9209:1 9211:1 9239:1 9255:1 9267:1 9312:1 9319:1 9365:1 9393:1 9404:1 9436:1 9437:1 9449:1 9460:1 9485:1 9486:1 9501:1 9510:1 9533:1 9537:1 9541:1 9577:2 9618:1 9644:1 9655:1 9663:1 9668:1 9670:1 9675:1 9708:2 9719:1 9732:1 9778:1 9794:2 9849:1 9853:1 9872:1 9882:1 9884:1 9888:2 9960:1 9963:1 9972:1 9999:1 10021:1 10080:1 10089:1 10111:1 10147:1 10156:1 10197:1 10201:1 10220:5 10264:1 10330:1 10358:1 10363:1 10517:1 10542:1 10558:1 10576:1 10587:1 10606:1 10611:1 10612:1 10657:1 10663:1 10665:1 10674:1 10690:2 10702:3 10707:1 10738:2 10841:1 10861:2 10907:1 10911:5 10914:1 10919:1 10949:1 10980:1 11047:2 11049:1 11094:1 11112:1 11115:1 11117:1 11121:1 11136:2 11169:1 11181:3 11185:1 11187:1 11194:1 11207:1 11210:1 11224:1 11244:1 11283:1 11300:1 11303:1 11330:1 11365:1 11373:2 11390:2 11432:1 11485:1 11498:1 11562:1 11573:2 11597:1 11624:1 11767:1 11791:1 11792:2 11807:1 11817:1 11819:5 11820:1 11827:1 11834:1 11838:1 11868:1 11901:2 11910:1 11935:1 11937:1 11939:1 11983:1 11986:1 12007:1 12026:1 12118:1 12156:1 12192:1 12195:1 12219:1 12241:1 12245:1 12250:1 12260:2 12262:1 12285:2 12287:1 12293:1 12324:2 12356:1 12369:3 12383:1 12391:1 12429:1 12449:2 12450:1 12464:1 12483:1 12497:1 12528:1 12574:1 12592:1 12604:1 12611:1 12636:1 12652:2 12655:1 12741:2 12799:1 12863:1 12883:1 12907:1 12918:1 12925:1 13003:1 13047:1 13118:1 13133:1 13134:1 13149:1 13155:2 13168:1 13172:1 13195:1 13237:1 13271:1 13291:1 13310:1 13427:1 13456:1 13515:1 13531:1 13533:2 13552:1 13569:1 13601:1 13626:1 13654:1 13718:2 13920:1 13939:2 13975:1 14010:1 14026:1 14048:1 14058:1 14064:1 14110:1 14146:1 14176:1 14199:1 14201:1 14204:1 14208:2 14245:1 14262:1 14284:1 14307:1 14356:1 14370:1 14381:1 14385:1 14403:1 14416:1 14417:1 14429:1 14437:1 14453:4 14503:1 14532:1 14603:3 14658:1 14722:1 14748:1 14749:1 14769:1 14773:1 14782:5 14818:1 14846:1 14894:1 14967:2 15010:1 15013:1 15025:1 15049:1 15080:1 15098:6 15121:1 15123:2 15163:1 15185:1 15202:1 15215:1 15236:1 15265:1 15353:1 15379:3 15395:1 15446:1 15468:1 15517:2 15518:1 15540:1 15541:1 15550:1 15581:1 15651:1 15675:1 15698:1 15712:2 15786:1 15844:1 15851:1 15880:1 15938:1 15941:2 15972:1 15973:1 16032:1 16078:1 16157:1 16168:1 16189:1 16406:1 16464:1 16476:1 16492:1 16511:1 16516:1 16520:1 16545:1 16551:1 16627:1 16687:1 16701:1 16739:2 16810:1 16869:1 16897:1 16909:1 16913:2 16914:1 16926:1 16945:1 16999:1 17008:1 17052:1 17079:2 17089:1 17105:1 17135:2 17230:1 17239:4 17256:1 17260:2 17285:1 17344:1 17349:2 17360:2 17428:1 17435:1 17444:1 17445:1 17454:2 17504:1 17519:2 17521:1 17529:1 17532:1 17537:1 17598:1 17627:1 17652:1 17655:1 17708:1 17762:1 17808:1 17868:1 17874:1 17884:1 17899:1 17902:1 17915:1 17916:1 17930:3 17941:1 17972:1 17985:1 17994:1 18008:1 18016:1 18071:1 18096:3 18102:1 18171:1 18183:1 18191:1 18212:1 18225:1 18307:2 18341:1 18361:1 18425:1 18443:1 18491:1 18530:1 18533:1 18577:2 18585:1 18597:1 18617:1 18662:1 18731:1 18734:1 18755:1 18779:1 18796:1 18810:3 18814:2 18885:1 18887:1 18898:1 18910:1 18962:1 18982:1 19004:1 19050:1 19070:1 19102:1 19134:1 19171:1 19226:1 19236:1 19246:1 19337:1 19378:1 19391:1 19411:1 19450:1 19514:1 19515:1 19538:1 19575:1 19593:1 19651:1 19656:1 19670:1 19719:1 19780:1 19806:1 19826:5 19832:1 19833:1 19846:1 19847:1 19872:1 19948:1 19971:1 19993:1 20016:1 20023:1 20053:748 20064:1 20070:1 20086:1 20132:1 20134:1 20264:1 20275:1 20294:1 20308:1 20375:1 20420:1 20425:1 20528:2 20545:1 20567:1 20605:1 20618:1 20642:1 20651:1 20669:1 20701:1 20702:2 20715:1 20724:1 20732:1 20757:1 20759:1 20768:1 20815:1 20833:1 20838:1 20864:2 20871:1 20884:1 20926:2 20933:1 20935:1 20956:1 20999:1 21014:1 21022:1 21062:1 21065:1 21098:1 21105:1 21149:1 21157:1 21202:1 21219:1 21220:1 21239:2 21242:1 21250:1 21254:1 21281:1 21288:1 21295:1 21322:1 21330:1 21376:1 21379:1 21387:1 21478:1 21482:1 21483:1 21511:1 21523:1 21524:1 21544:2 21555:1 21573:1 21587:1 21591:1 21627:1 21652:1 21654:1 21676:1 21699:1 21711:1 21727:1 21756:1 21828:1 21853:1 21860:1 21861:1 21982:1 21990:1 22015:1 22018:1 22032:1 22066:4 22069:1 22085:1 22119:1 22140:1 22185:1 22202:2 22236:1 22288:1 22300:1 22314:2 22326:1 22337:1 22390:1 22417:1 22452:1 22488:1 22492:1 22508:1 22519:3 22554:1 22567:1 22602:1 22621:1 22643:2 22685:1 22723:1 22724:1 22741:1 22750:2 22760:1 22774:1 22779:1 22811:1 22855:1 22857:1 22862:1 22866:2 22939:1 23027:1 23031:1 23032:1 23043:1 23056:1 23070:1 23081:1 23131:1 23137:1 23158:1 23183:1 23190:1 23194:1 23199:1 23210:1 23228:2 23229:1 23249:1 23251:2 23262:1 23271:1 23288:1 23298:1 23337:1 23345:1 23347:1 23349:1 23352:1 23410:1 23418:1 23429:1 23437:1 23466:1 23468:1 23497:1 23498:1 23500:1 23502:1 23503:1 23540:1 23576:1 23605:3 23616:1 23617:1 23619:1 23625:1 23645:3 23659:1 23682:1 23697:1 23721:1 23796:1 23823:1 23853:1 23862:1 23887:1 23897:1 23900:1 23912:1 23922:1 23940:1 23943:1 23946:1 23993:1 23998:1 24001:1 24002:1 24016:1 24026:1 24030:2 24037:1 24044:1 24073:1 24108:4 24111:1 24126:1 24150:1 24162:1 24172:2 24175:1 24197:1 24221:1 24250:2 24290:1 24291:3 24305:2 24309:1 24370:1 24371:1 24376:2 24408:1 24426:1 24432:1 24451:1 24502:1 24550:1 24558:1 24568:1 24578:2 24598:3 24608:1 24624:1 24688:1 24706:1 24762:1 24776:1 24795:1 24806:1 24808:1 24814:1 24851:1 24883:1 24969:1 24996:1 25008:1 25018:1 25027:1 25036:1 25039:1 25056:1 25066:1 25138:1 25172:1 25199:2 25230:1 25240:1 25246:1 25273:1 25283:1 25286:1 25320:1 25366:1 25371:1 25391:1 25396:1 25450:1 25453:1 25472:2 25477:1 25537:1 25549:1 25652:1 25729:1 25739:1 25786:1 25793:1 25861:1 25900:1 25909:1 25963:2 26010:1 26022:2 26041:1 26097:1 26111:1 26135:2 26157:2 26167:1 26253:1 26300:1 26304:1 26317:1 26319:1 26356:1 26365:1 26374:1 26380:1 26391:1 26399:1 26420:2 26479:1 26488:3 26495:1 26512:1 26659:1 26668:1 26683:1 26703:1 26758:1 26766:1 26803:1 26833:1 26857:1 26875:1 26895:1 26929:2 26942:1 26986:1 27012:1 27024:1 27048:1 27051:1 27059:1 27060:1 27088:1 27112:1 27164:1 27192:2 27193:1 27233:1 27265:1 27312:1 27338:1 27368:1 27387:1 27450:1 27486:1 27514:1 27627:2 27673:1 27711:1 27729:1 27748:2 27786:1 27796:1 27854:1 27927:1 27933:1 27970:1 27977:1 28048:1 28064:1 28071:1 28072:1 28076:1 28142:2 28210:1 28228:5 28305:1 28322:1 28337:1 28356:1 28360:3 28371:1 28373:3 28410:1 28497:1 28502:1 28551:1 28564:1 28569:1 28573:2 28594:4 28596:1 28627:1 28630:1 28637:1 28691:1 28768:1 28788:1 28816:2 28846:1 28857:1 28863:1 28921:1 28931:1 28932:1 28949:1 28963:1 28986:1 28998:1 29034:1 29093:1 29132:1 29158:1 29163:1 29187:1 29210:1 29238:1 29244:1 29247:1 29259:1 29260:1 29322:1 29373:3 29404:1 29446:2 29460:1 29465:1 29473:1 29482:1 29523:1 29530:1 29531:1 29536:1 29543:1 29556:1 29613:1 29641:1 29663:1 29766:1 29804:1 29805:2 29849:1 29921:1 29952:1 29969:1 30019:1 30034:1 30110:1 30134:2 30138:1 30146:1 30151:1 30152:1 30169:1 30171:1 30180:1 30203:1 30220:1 30229:1 30238:3 30251:1 30252:1 30261:1 30275:1 30279:1 30283:1 30362:1 30377:1 30392:1 30397:3 30406:3 30411:1 30438:1 30453:1 30491:1 30571:1 30583:1 30604:1 30614:1 30634:1 30635:1 30645:1 30646:2 30673:1 30711:1 30717:1 30730:1 30786:3 30916:1 31028:1 31053:1 31055:1 31072:1 31082:1 31103:1 31194:1 31204:2 31239:1 31257:1 31284:1 31296:1 31301:1 31313:2 31345:1 31351:1 31405:1 31431:1 31443:1 31473:1 31478:2 31505:1 31519:1 31580:2 31606:1 31617:1 31623:1 31677:2 1 13:1 62:1 65:1 72:1 106:1 141:1 156:2 161:1 173:1 207:2 274:1 278:1 307:1 328:1 354:1 371:2 373:1 378:3 387:3 397:2 416:1 430:1 438:1 454:5 458:2 526:1 527:1 620:1 634:2 659:1 693:1 767:1 826:1 829:1 863:1 871:1 900:3 906:1 918:3 942:4 943:1 952:2 975:1 993:3 995:2 998:4 1001:1 1004:2 1018:2 1033:1 1042:2 1044:2 1055:1 1095:2 1159:1 1275:3 1277:1 1285:1 1298:1 1312:1 1328:1 1332:1 1386:1 1389:1 1470:1 1485:1 1500:1 1530:1 1540:1 1565:1 1632:1 1647:1 1686:2 1694:2 1696:2 1713:1 1754:1 1767:1 1786:1 1791:1 1804:2 1818:1 1820:1 1825:1 1835:1 1839:1 1854:1 1863:1 1871:1 1945:2 1965:1 1971:1 1974:2 1978:1 1979:1 1993:1 1994:4 2027:1 2030:2 2065:1 2128:1 2129:1 2143:2 2192:1 2198:1 2215:1 2220:1 2222:1 2230:1 2243:1 2272:1 2296:1 2301:1 2308:1 2323:1 2354:5 2361:1 2370:1 2376:1 2423:1 2436:1 2439:1 2458:1 2464:2 2478:1 2485:2 2487:1 2494:2 2495:1 2497:1 2501:1 2508:2 2509:1 2514:5 2515:2 2528:1 2571:1 2595:1 2603:1 2618:1 2623:1 2637:1 2695:1 2706:1 2718:1 2722:1 2765:1 2771:1 2776:1 2779:1 2803:2 2808:1 2813:1 2814:1 2827:1 2835:1 2849:1 2851:1 2857:1 2873:1 2884:1 2897:2 2913:1 2916:2 2924:2 2937:1 2947:1 2950:3 2951:2 2981:1 2982:1 3036:1 3041:1 3050:2 3060:1 3069:1 3127:1 3146:2 3157:1 3159:2 3178:2 3180:1 3190:1 3249:1 3269:1 3338:1 3351:1 3352:3 3371:2 3383:1 3438:1 3457:2 3469:1 3490:1 3510:2 3534:1 3550:1 3608:6 3774:1 3788:1 3804:1 3829:1 3861:1 3868:2 3873:1 3898:7 3909:1 3912:1 3914:1 3937:1 4000:1 4008:1 4021:1 4038:1 4096:1 4099:1 4106:1 4113:1 4129:1 4149:1 4152:1 4156:1 4163:1 4167:1 4179:1 4200:1 4215:1 4226:1 4229:1 4236:1 4253:1 4272:1 4293:2 4315:1 4348:2 4349:2 4356:1 4393:1 4395:2 4398:1 4403:1 4422:1 4426:1 4476:1 4500:1 4526:1 4547:1 4581:1 4587:1 4629:1 4669:4 4717:1 4720:1 4732:1 4779:1 4787:2 4808:1 4843:1 4869:2 4899:1 4904:1 4910:1 4938:1 5034:1 5044:1 5056:1 5066:1 5085:1 5105:1 5138:2 5154:1 5216:1 5267:3 5270:1 5279:1 5283:1 5316:1 5429:1 5430:1 5431:3 5433:2 5434:1 5436:1 5441:1 5442:1 5446:1 5449:1 5450:1 5453:1 5456:1 5465:3 5469:1 5517:1 5548:2 5592:1 5638:1 5668:1 5720:1 5801:1 5807:1 5850:1 5875:2 5890:1 5915:1 5937:1 5953:1 5972:1 5988:1 5994:1 6017:1 6100:1 6115:2 6118:1 6133:1 6136:1 6139:1 6143:1 6181:1 6188:2 6219:4 6223:1 6224:1 6237:2 6308:1 6327:1 6345:1 6351:1 6361:1 6387:1 6400:1 6466:1 6488:1 6495:1 6499:1 6502:1 6560:1 6571:1 6581:1 6582:1 6586:5 6600:1 6603:1 6624:2 6655:1 6684:1 6706:1 6709:3 6799:1 6806:1 6809:1 6816:1 6823:1 6931:1 6990:1 6993:2 6996:1 7008:1 7061:1 7131:1 7145:2 7227:1 7253:1 7256:1 7265:1 7284:3 7292:1 7295:1 7309:1 7315:1 7326:1 7348:1 7362:1 7405:2 7429:1 7473:1 7478:1 7504:1 7529:1 7535:1 7561:1 7574:4 7578:1 7611:1 7621:1 7624:1 7636:1 7645:2 7656:1 7679:1 7680:1 7695:1 7729:1 7759:1 7792:1 7805:1 7812:1 7853:1 7930:1 7984:1 7999:1 8006:1 8010:1 8032:1 8061:1 8064:2 8081:1 8093:1 8108:1 8134:1 8168:1 8198:1 8218:2 8235:1 8236:5 8250:1 8257:2 8262:2 8287:1 8288:1 8303:17 8315:1 8326:4 8327:2 8331:2 8367:1 8374:1 8375:1 8404:2 8405:2 8411:1 8421:1 8433:1 8459:1 8461:1 8480:2 8492:1 8514:1 8541:1 8557:1 8558:1 8588:1 8592:1 8681:1 8742:1 8765:1 8768:1 8777:1 8788:1 8815:1 8835:5 8843:1 8865:1 8870:1 8935:1 8938:1 8943:1 8969:1 8974:1 8990:1 8994:2 8996:1 9001:1 9019:1 9031:3 9038:2 9044:1 9065:1 9066:1 9080:1 9088:1 9090:1 9104:1 9154:1 9205:1 9209:1 9211:1 9239:1 9255:1 9267:1 9271:1 9312:1 9319:1 9365:1 9393:1 9404:1 9436:1 9437:1 9449:1 9460:1 9485:1 9486:1 9501:1 9510:1 9533:1 9537:1 9541:1 9577:2 9594:1 9618:1 9644:1 9655:1 9663:1 9668:1 9670:1 9675:1 9708:2 9719:1 9732:1 9778:1 9794:2 9849:1 9853:1 9872:1 9882:1 9884:1 9888:2 9960:1 9963:1 9972:2 9999:1 10021:2 10080:1 10089:1 10111:1 10147:1 10156:1 10159:1 10197:1 10201:1 10220:5 10264:1 10330:1 10358:1 10363:1 10366:1 10437:1 10517:1 10542:1 10558:1 10576:1 10587:1 10606:1 10611:1 10612:1 10657:1 10663:1 10665:1 10674:1 10690:2 10702:3 10707:1 10738:2 10841:1 10861:2 10864:1 10907:1 10911:5 10914:1 10919:1 10949:1 10980:1 11047:2 11049:1 11094:1 11112:1 11115:1 11117:1 11121:1 11136:2 11169:1 11181:3 11185:1 11187:1 11194:1 11207:1 11210:1 11224:2 11244:1 11283:1 11300:1 11303:1 11330:1 11365:1 11373:2 11390:2 11402:1 11432:1 11462:1 11485:1 11498:1 11562:1 11573:2 11597:1 11624:1 11767:1 11791:1 11792:2 11801:2 11807:1 11816:1 11817:1 11819:5 11820:1 11827:1 11834:1 11838:1 11868:1 11901:2 11910:1 11935:1 11937:1 11939:1 11983:1 11986:1 12007:1 12026:1 12118:1 12156:1 12192:1 12195:1 12219:1 12241:1 12245:1 12250:1 12260:2 12262:1 12272:1 12285:2 12287:1 12293:1 12324:3 12356:1 12369:3 12383:1 12391:1 12429:1 12449:2 12450:1 12464:1 12483:1 12497:1 12528:1 12574:1 12587:1 12592:1 12604:1 12611:1 12614:1 12636:1 12652:2 12655:1 12741:2 12799:1 12863:1 12883:1 12907:1 12918:1 12925:1 12955:2 13003:1 13025:1 13047:1 13059:1 13118:1 13133:1 13134:1 13149:1 13155:2 13168:1 13172:1 13195:1 13237:1 13271:1 13291:1 13310:1 13427:1 13456:1 13515:1 13531:1 13533:2 13552:1 13569:1 13601:1 13626:1 13654:1 13669:1 13718:2 13785:1 13920:1 13939:2 13975:1 14010:1 14026:1 14048:1 14058:1 14064:1 14110:1 14146:1 14176:1 14199:1 14201:1 14204:1 14208:4 14224:1 14245:1 14262:1 14284:1 14307:1 14356:1 14370:1 14381:1 14385:1 14403:1 14416:1 14417:1 14429:1 14437:1 14453:4 14503:1 14532:1 14603:3 14658:1 14695:1 14722:1 14748:1 14749:1 14769:1 14773:1 14782:5 14818:1 14846:1 14894:1 14967:2 15010:1 15013:1 15025:1 15032:1 15049:1 15080:1 15098:6 15121:1 15123:2 15163:1 15185:1 15202:1 15215:1 15236:1 15265:1 15353:1 15379:3 15395:1 15401:1 15446:1 15468:1 15517:2 15518:1 15540:1 15541:1 15550:1 15581:1 15592:1 15651:1 15675:1 15698:1 15712:2 15725:1 15786:1 15842:1 15844:1 15851:1 15880:1 15922:1 15938:1 15941:2 15972:1 15973:1 16032:1 16078:1 16157:1 16168:1 16189:1 16406:1 16464:1 16476:1 16492:1 16511:1 16516:1 16520:1 16545:1 16551:1 16627:1 16687:1 16701:1 16739:2 16810:1 16869:1 16897:1 16909:1 16913:2 16914:1 16926:1 16945:1 16999:1 17008:1 17052:1 17079:2 17089:1 17105:1 17135:2 17230:1 17239:4 17256:1 17260:2 17285:1 17344:1 17349:2 17360:2 17428:1 17435:1 17444:1 17445:1 17454:2 17504:1 17519:2 17521:1 17527:1 17529:1 17532:1 17537:1 17598:1 17627:1 17652:1 17655:1 17708:1 17762:1 17808:1 17868:1 17874:1 17884:1 17899:1 17902:1 17915:1 17916:1 17930:3 17941:1 17972:1 17985:1 17994:1 18008:1 18016:1 18071:1 18073:1 18096:3 18102:1 18171:1 18183:1 18191:1 18212:1 18225:1 18233:1 18307:2 18308:1 18341:1 18361:1 18425:1 18443:1 18491:1 18530:1 18533:1 18577:2 18585:1 18597:1 18617:1 18662:1 18731:1 18734:1 18755:1 18779:1 18796:1 18810:3 18814:2 18885:1 18887:1 18898:1 18910:1 18962:1 18982:1 19004:1 19050:1 19070:1 19102:1 19130:1 19134:2 19171:1 19226:1 19236:1 19246:1 19337:1 19378:1 19390:1 19391:1 19411:1 19450:1 19514:1 19515:1 19538:1 19575:1 19593:1 19651:1 19656:1 19670:1 19719:1 19780:1 19806:1 19826:5 19832:1 19833:1 19846:2 19847:1 19872:1 19948:1 19971:1 19993:1 20016:1 20023:1 20053:858 20064:1 20070:1 20086:1 20132:1 20134:1 20160:1 20264:1 20275:1 20294:1 20308:1 20338:1 20375:1 20420:1 20425:1 20528:2 20545:1 20557:1 20567:1 20605:1 20618:1 20642:1 20651:1 20669:1 20701:1 20702:2 20715:1 20724:1 20732:1 20757:1 20759:1 20768:1 20815:1 20833:1 20838:1 20864:2 20871:1 20884:1 20926:2 20933:1 20935:1 20956:1 20999:1 21014:1 21022:1 21062:1 21065:1 21098:1 21105:1 21149:1 21150:1 21157:1 21202:1 21219:1 21220:1 21239:2 21242:1 21250:1 21254:1 21281:1 21288:1 21295:1 21302:1 21322:1 21330:1 21331:1 21376:1 21379:1 21387:2 21478:1 21482:1 21483:1 21511:1 21523:1 21524:1 21544:2 21555:1 21573:1 21587:1 21591:1 21627:1 21652:1 21654:1 21676:1 21699:1 21711:1 21727:1 21756:1 21828:1 21853:1 21860:1 21861:1 21982:1 21990:1 22015:1 22018:1 22032:1 22066:4 22069:1 22085:1 22119:1 22140:1 22185:1 22202:2 22236:1 22288:1 22300:1 22314:2 22326:1 22337:1 22390:1 22417:1 22452:1 22488:1 22492:1 22508:1 22519:3 22554:1 22567:1 22602:1 22621:1 22643:2 22671:2 22685:1 22699:2 22723:1 22724:1 22741:1 22750:2 22760:1 22774:1 22779:1 22811:1 22855:1 22857:1 22862:1 22866:2 22939:1 23027:1 23031:1 23032:1 23043:1 23056:1 23070:1 23081:1 23131:1 23137:1 23158:1 23183:1 23190:1 23194:1 23195:1 23199:1 23210:1 23228:2 23229:1 23249:1 23251:2 23262:1 23271:1 23288:1 23298:1 23337:1 23345:1 23347:1 23349:1 23352:1 23410:1 23418:1 23429:1 23437:1 23466:1 23468:1 23497:1 23498:1 23500:1 23502:1 23503:1 23540:1 23576:1 23605:3 23616:1 23617:1 23619:1 23625:1 23645:3 23659:1 23682:1 23697:1 23721:1 23796:1 23823:1 23853:1 23862:1 23887:1 23897:1 23900:1 23912:1 23922:1 23940:1 23943:1 23946:1 23993:1 23998:1 24001:1 24002:1 24016:1 24026:1 24030:2 24037:1 24044:1 24073:1 24108:4 24111:1 24126:1 24150:1 24162:1 24172:2 24175:1 24197:1 24221:1 24250:2 24290:1 24291:3 24305:3 24309:1 24325:1 24370:1 24371:1 24376:2 24386:1 24408:1 24426:1 24432:1 24451:1 24502:1 24550:1 24558:1 24568:1 24578:2 24598:3 24608:1 24624:1 24688:1 24706:1 24762:1 24776:1 24795:1 24806:1 24808:1 24814:1 24851:1 24883:1 24969:1 24996:1 25008:1 25018:1 25027:1 25036:1 25039:1 25056:1 25066:1 25138:1 25172:1 25199:2 25230:1 25240:1 25246:1 25273:1 25283:1 25286:1 25320:1 25331:1 25366:1 25368:1 25371:1 25391:1 25396:1 25450:2 25453:1 25472:2 25477:1 25537:1 25549:1 25652:1 25729:1 25739:1 25786:1 25793:1 25861:1 25900:1 25909:1 25963:2 25989:1 26010:1 26022:2 26041:1 26097:1 26103:1 26111:1 26135:2 26157:2 26167:1 26253:1 26288:1 26300:1 26304:1 26317:1 26319:1 26356:1 26365:1 26373:1 26374:1 26380:1 26391:1 26399:1 26420:2 26479:1 26488:3 26495:1 26512:1 26616:1 26659:1 26668:1 26683:1 26703:1 26758:1 26766:1 26794:1 26803:1 26833:1 26857:1 26875:1 26895:1 26929:2 26942:1 26964:1 26986:1 27012:1 27024:1 27048:2 27051:1 27059:1 27060:1 27078:1 27088:1 27112:1 27123:1 27164:1 27192:3 27193:1 27230:1 27233:1 27265:1 27312:1 27338:1 27368:1 27387:1 27443:1 27450:1 27486:1 27514:1 27627:2 27633:1 27673:1 27701:1 27711:1 27729:1 27748:2 27786:1 27793:1 27796:1 27854:1 27873:1 27927:1 27933:1 27970:1 27977:1 28048:1 28064:1 28071:1 28072:1 28076:1 28142:2 28200:1 28210:1 28228:5 28305:1 28322:1 28337:1 28356:1 28360:3 28368:1 28371:2 28373:3 28410:1 28497:1 28502:1 28551:1 28564:1 28569:1 28573:2 28594:4 28596:1 28627:1 28630:1 28637:1 28691:1 28768:1 28788:1 28816:2 28846:1 28857:1 28863:1 28921:1 28931:1 28932:1 28945:1 28949:1 28963:1 28986:1 28998:1 29034:1 29093:1 29132:1 29158:1 29163:1 29187:1 29210:1 29238:1 29244:1 29247:1 29259:1 29260:1 29295:1 29318:1 29322:1 29373:3 29377:1 29404:1 29446:2 29460:1 29465:1 29473:1 29482:1 29523:1 29530:1 29531:1 29536:1 29543:2 29556:1 29613:1 29641:1 29663:1 29766:1 29804:1 29805:2 29849:1 29921:1 29952:1 29969:1 30019:1 30034:1 30110:1 30134:2 30138:1 30146:1 30151:1 30152:1 30169:1 30171:1 30180:1 30203:1 30220:1 30228:2 30229:1 30238:3 30251:1 30252:1 30261:1 30275:1 30279:1 30283:1 30362:1 30377:1 30392:1 30397:3 30406:3 30411:1 30438:2 30453:1 30491:1 30571:1 30583:1 30604:1 30614:1 30634:1 30635:1 30645:1 30646:2 30651:1 30673:1 30711:1 30717:2 30730:1 30786:3 30916:1 31028:1 31053:1 31055:1 31072:1 31074:1 31082:1 31103:1 31194:1 31204:2 31239:1 31257:1 31284:1 31296:1 31301:1 31313:2 31345:1 31351:1 31405:1 31431:1 31443:1 31473:1 31478:2 31505:1 31519:1 31542:1 31577:1 31580:2 31606:1 31617:1 31623:1 31677:2 1 13:1 62:1 65:1 72:1 106:1 141:1 156:2 161:1 173:1 207:2 274:1 278:2 297:2 307:1 328:1 354:1 371:2 373:1 378:3 387:3 397:2 416:1 430:1 438:1 454:5 458:2 526:1 527:1 620:1 634:2 659:1 678:1 693:1 767:1 826:1 829:1 863:1 871:1 900:3 906:1 918:3 927:1 942:5 943:1 952:3 975:1 993:3 995:2 998:5 1001:1 1004:2 1018:2 1033:1 1042:2 1044:3 1055:1 1095:2 1159:1 1275:3 1277:1 1285:1 1295:1 1298:1 1312:1 1328:1 1332:1 1356:1 1386:1 1389:1 1433:1 1451:1 1470:1 1485:1 1500:1 1530:1 1540:1 1565:1 1584:1 1632:1 1647:1 1686:2 1694:2 1696:2 1713:1 1754:1 1767:1 1786:1 1791:2 1804:2 1818:1 1820:1 1825:1 1835:1 1839:1 1854:1 1863:1 1871:1 1920:1 1945:2 1965:1 1971:1 1974:2 1978:1 1979:1 1993:1 1994:5 2027:1 2030:2 2065:1 2128:1 2129:1 2143:2 2192:1 2198:1 2215:1 2220:1 2222:1 2230:1 2243:1 2272:1 2283:1 2296:1 2301:1 2308:1 2323:1 2354:5 2361:1 2370:1 2376:1 2423:1 2436:1 2439:1 2458:1 2464:2 2478:1 2485:2 2487:1 2494:2 2495:1 2497:1 2501:1 2508:2 2509:1 2514:5 2515:2 2528:1 2568:1 2571:1 2595:1 2603:1 2618:1 2623:1 2637:1 2639:1 2695:1 2706:1 2718:1 2722:1 2765:1 2771:1 2776:1 2779:1 2803:2 2808:1 2813:1 2814:1 2824:1 2827:1 2835:1 2849:1 2851:1 2857:1 2873:1 2884:1 2897:2 2913:1 2916:2 2924:2 2937:1 2947:1 2950:3 2951:2 2981:1 2982:1 3036:1 3041:1 3050:2 3060:1 3069:1 3127:1 3146:2 3157:1 3159:3 3178:2 3180:1 3186:1 3190:1 3224:1 3249:1 3269:1 3338:1 3351:1 3352:4 3371:2 3383:1 3438:1 3457:2 3469:1 3490:1 3510:2 3534:1 3550:1 3608:6 3774:1 3781:1 3788:1 3804:1 3829:1 3861:1 3868:2 3873:1 3898:8 3909:1 3912:1 3914:1 3937:1 4000:1 4001:1 4008:1 4021:1 4038:1 4096:1 4099:1 4106:1 4113:1 4129:1 4149:1 4152:1 4156:1 4163:1 4167:1 4179:1 4200:2 4215:1 4226:1 4229:1 4236:1 4241:1 4253:2 4272:1 4293:2 4315:1 4348:2 4349:3 4356:1 4393:1 4395:2 4398:1 4403:1 4422:1 4426:1 4464:1 4476:1 4500:1 4526:1 4547:1 4557:1 4563:1 4581:1 4587:1 4610:1 4629:1 4669:4 4717:1 4720:1 4732:1 4779:1 4787:2 4808:1 4843:1 4869:2 4899:1 4902:1 4904:1 4910:1 4922:1 4938:1 5034:1 5044:1 5056:1 5062:1 5066:1 5085:1 5105:1 5131:1 5138:2 5154:1 5216:1 5267:3 5270:1 5279:1 5283:1 5316:1 5429:1 5430:1 5431:3 5433:2 5434:1 5436:1 5441:1 5442:1 5446:1 5449:1 5450:1 5453:1 5456:2 5465:3 5469:1 5517:1 5548:2 5592:1 5638:1 5668:1 5720:1 5801:1 5807:1 5850:1 5875:2 5890:1 5915:1 5937:1 5953:2 5972:1 5988:1 5994:1 6017:1 6100:1 6115:2 6118:1 6133:1 6134:1 6136:1 6139:1 6143:1 6181:1 6188:2 6219:4 6223:1 6224:1 6237:2 6308:1 6327:1 6345:1 6351:1 6361:1 6387:1 6400:1 6466:1 6488:2 6495:1 6499:1 6502:1 6560:1 6571:1 6581:1 6582:1 6586:5 6600:1 6603:1 6624:2 6655:1 6684:1 6706:1 6709:4 6799:1 6806:1 6809:1 6816:1 6823:1 6931:1 6990:1 6993:2 6996:1 7008:1 7052:1 7061:1 7131:1 7145:2 7227:1 7253:1 7256:1 7265:1 7284:3 7292:1 7295:1 7309:1 7315:1 7326:1 7348:1 7362:1 7405:2 7429:1 7454:1 7473:1 7478:1 7504:1 7529:1 7535:1 7561:1 7574:5 7578:2 7611:1 7621:1 7624:1 7636:1 7645:2 7656:1 7679:1 7680:1 7695:1 7729:1 7737:1 7747:1 7759:1 7792:1 7805:1 7812:1 7853:1 7930:1 7984:1 7999:1 8006:1 8010:1 8032:2 8061:1 8064:2 8081:1 8093:1 8108:2 8117:1 8134:1 8168:1 8198:1 8218:2 8235:1 8236:6 8250:1 8257:3 8262:2 8287:2 8288:1 8290:1 8303:17 8315:1 8326:4 8327:2 8331:2 8367:1 8374:1 8375:1 8404:2 8405:2 8411:1 8421:1 8433:1 8459:1 8461:1 8480:2 8492:1 8514:1 8541:1 8557:1 8558:1 8588:1 8592:1 8681:1 8742:1 8765:1 8768:1 8777:1 8788:1 8815:1 8835:8 8843:1 8865:1 8870:1 8935:1 8938:1 8943:1 8969:1 8974:1 8990:1 8994:2 8996:1 9001:1 9019:1 9031:3 9038:2 9044:1 9065:1 9066:1 9080:1 9088:1 9090:1 9104:1 9154:1 9205:1 9209:1 9211:1 9239:1 9255:1 9267:1 9271:1 9312:1 9319:1 9365:1 9393:1 9404:1 9436:1 9437:1 9449:1 9460:1 9485:1 9486:1 9501:1 9510:1 9533:1 9537:1 9541:2 9577:2 9594:1 9613:1 9618:1 9644:1 9655:1 9663:1 9668:1 9670:1 9675:1 9687:1 9708:2 9719:1 9732:1 9769:1 9778:1 9794:2 9849:1 9853:1 9872:1 9878:1 9882:1 9884:1 9888:2 9950:1 9960:1 9963:1 9972:2 9999:1 10021:2 10080:1 10089:1 10111:2 10147:1 10156:1 10159:1 10197:1 10201:1 10220:5 10264:1 10330:1 10358:1 10363:1 10366:1 10369:1 10437:1 10517:1 10542:1 10558:1 10576:1 10587:1 10606:1 10611:1 10612:1 10657:1 10663:1 10665:1 10674:1 10690:2 10702:3 10707:1 10738:2 10841:1 10861:2 10864:1 10907:1 10911:5 10913:1 10914:1 10919:1 10949:1 10980:1 11047:2 11049:1 11094:1 11112:1 11115:1 11117:1 11121:1 11131:1 11136:2 11169:1 11181:4 11185:1 11187:1 11194:1 11207:1 11210:1 11224:2 11244:1 11283:1 11291:1 11300:1 11303:1 11319:1 11330:1 11360:1 11365:1 11373:2 11390:2 11402:1 11432:1 11462:1 11485:1 11486:1 11498:1 11562:1 11573:3 11597:1 11624:2 11744:1 11767:1 11770:1 11791:1 11792:2 11801:2 11807:1 11816:1 11817:1 11819:5 11820:1 11827:1 11834:1 11838:1 11845:1 11868:1 11901:2 11910:1 11935:1 11937:1 11939:1 11983:1 11986:1 12007:1 12023:1 12026:1 12118:1 12156:1 12192:1 12195:1 12219:1 12241:1 12245:1 12250:1 12260:2 12262:1 12272:1 12285:2 12287:1 12293:1 12324:3 12356:1 12369:3 12383:1 12391:1 12429:1 12449:2 12450:1 12464:1 12483:1 12497:1 12528:1 12574:1 12587:1 12592:1 12604:1 12611:1 12614:1 12636:1 12652:2 12655:2 12741:2 12799:1 12808:1 12863:1 12883:1 12907:1 12918:1 12925:1 12955:2 13003:1 13025:1 13047:1 13059:1 13118:1 13133:1 13134:1 13149:1 13155:2 13168:1 13172:1 13195:1 13237:1 13271:1 13291:1 13310:1 13427:1 13456:1 13515:1 13531:1 13533:2 13552:1 13569:1 13601:1 13626:1 13654:1 13669:1 13718:3 13785:1 13838:1 13920:1 13939:2 13975:1 13978:1 13998:1 14010:1 14026:1 14048:1 14058:1 14064:1 14110:1 14146:1 14176:1 14199:1 14201:1 14204:1 14208:4 14224:1 14245:1 14262:1 14284:1 14307:1 14356:1 14369:1 14370:1 14381:1 14385:1 14403:1 14416:1 14417:1 14429:1 14437:1 14453:4 14503:1 14532:1 14603:3 14635:1 14658:1 14695:1 14722:1 14748:1 14749:1 14769:2 14773:1 14778:1 14782:5 14810:1 14818:1 14846:1 14894:1 14967:2 15010:1 15013:1 15025:1 15032:1 15049:1 15080:1 15098:6 15121:1 15123:2 15163:1 15185:1 15202:1 15215:1 15236:1 15265:1 15312:1 15353:1 15379:3 15395:1 15401:1 15446:1 15468:1 15517:2 15518:1 15540:1 15541:1 15550:1 15581:1 15592:1 15651:1 15675:1 15698:1 15712:2 15725:1 15786:1 15842:1 15844:1 15851:1 15880:1 15922:1 15938:1 15941:2 15972:1 15973:1 16032:1 16078:1 16079:1 16157:1 16168:1 16189:1 16231:1 16406:1 16464:1 16476:1 16492:1 16511:1 16516:1 16520:1 16545:1 16551:1 16585:1 16627:1 16687:1 16701:1 16731:1 16739:2 16810:1 16869:1 16897:1 16909:1 16913:2 16914:1 16926:1 16945:1 16980:1 16999:1 17008:1 17052:1 17079:2 17089:1 17104:1 17105:1 17135:2 17230:1 17239:4 17256:1 17260:3 17285:1 17327:1 17344:1 17349:2 17360:2 17380:1 17383:1 17428:1 17435:1 17444:1 17445:1 17454:2 17504:1 17511:1 17516:1 17518:1 17519:2 17521:1 17527:1 17529:1 17531:1 17532:1 17537:1 17598:1 17627:1 17652:1 17655:1 17708:1 17762:1 17808:1 17868:1 17874:1 17884:1 17899:1 17902:1 17915:1 17916:1 17930:3 17941:1 17972:1 17985:1 17994:1 18008:1 18016:1 18071:1 18073:1 18096:3 18102:1 18171:1 18183:1 18191:1 18212:1 18225:1 18233:1 18307:2 18308:1 18341:1 18361:1 18425:1 18443:1 18491:1 18530:1 18533:1 18577:2 18585:1 18597:1 18617:1 18662:1 18731:1 18734:1 18755:1 18760:1 18779:1 18796:1 18810:3 18814:2 18885:1 18887:1 18898:1 18910:1 18962:1 18982:1 19004:1 19050:1 19070:1 19071:1 19101:1 19102:1 19130:1 19134:2 19171:1 19226:1 19236:1 19246:1 19337:1 19378:1 19390:1 19391:1 19411:1 19450:1 19514:1 19515:1 19538:1 19575:1 19593:1 19651:1 19656:1 19670:1 19719:1 19780:1 19806:1 19826:5 19832:1 19833:1 19846:2 19847:1 19872:1 19876:1 19948:1 19971:1 19993:1 20016:1 20023:1 20053:891 20064:1 20070:1 20086:1 20132:1 20134:1 20160:1 20264:1 20274:1 20275:1 20294:1 20308:1 20338:1 20375:1 20420:1 20425:1 20528:2 20545:1 20557:1 20567:1 20605:1 20618:1 20642:1 20651:1 20669:1 20701:1 20702:2 20715:1 20721:1 20724:1 20732:1 20757:1 20759:1 20768:1 20787:1 20815:1 20833:1 20838:1 20864:2 20871:1 20884:1 20926:2 20933:1 20935:1 20956:2 20999:1 21014:1 21022:1 21062:1 21065:1 21098:1 21105:1 21149:1 21150:1 21157:1 21202:1 21219:1 21220:1 21239:2 21242:1 21250:1 21254:1 21277:1 21281:1 21288:1 21295:1 21302:1 21322:1 21330:1 21331:1 21376:1 21379:1 21387:2 21446:1 21478:1 21482:1 21483:1 21501:1 21511:1 21523:1 21524:1 21544:3 21555:1 21573:1 21587:1 21591:1 21627:1 21652:1 21654:1 21676:1 21699:1 21711:2 21712:1 21727:1 21756:1 21828:1 21853:1 21860:1 21861:1 21940:1 21982:1 21990:1 22015:1 22018:1 22032:1 22066:4 22069:1 22085:1 22119:1 22140:1 22185:1 22202:2 22236:1 22288:1 22300:1 22314:2 22326:1 22337:1 22390:1 22417:1 22452:1 22488:1 22492:1 22508:1 22519:3 22554:1 22567:1 22602:1 22621:1 22643:2 22665:1 22671:2 22685:1 22699:2 22723:1 22724:1 22741:1 22750:2 22760:1 22774:1 22779:1 22811:1 22855:1 22857:1 22862:1 22866:2 22939:1 23027:1 23031:1 23032:1 23043:1 23056:1 23070:1 23081:1 23131:1 23137:1 23158:1 23183:1 23190:1 23194:1 23195:2 23199:1 23210:1 23228:2 23229:1 23249:1 23251:2 23262:1 23271:1 23288:1 23298:1 23337:1 23345:1 23347:1 23349:1 23352:1 23410:1 23418:1 23429:1 23437:1 23466:1 23468:1 23497:1 23498:1 23500:1 23502:1 23503:1 23540:1 23576:1 23605:3 23614:1 23616:1 23617:1 23619:1 23625:1 23645:3 23659:1 23682:1 23697:1 23721:1 23796:1 23823:1 23853:1 23862:1 23887:1 23897:1 23900:1 23912:1 23922:1 23940:1 23943:1 23946:1 23993:1 23998:1 24001:1 24002:2 24016:1 24026:1 24030:2 24037:1 24044:1 24073:1 24108:5 24111:1 24126:1 24150:1 24162:1 24172:2 24175:1 24197:1 24221:1 24250:2 24290:1 24291:3 24305:3 24309:1 24325:1 24370:1 24371:1 24376:2 24386:1 24408:1 24426:1 24432:1 24451:1 24502:1 24550:1 24558:1 24568:1 24578:2 24598:3 24608:1 24624:1 24685:1 24688:1 24706:1 24762:1 24776:1 24795:1 24806:1 24808:1 24814:1 24851:2 24883:2 24969:1 24996:2 25000:1 25008:1 25018:1 25027:1 25036:1 25039:1 25056:1 25066:1 25080:1 25138:1 25172:1 25199:2 25230:1 25232:1 25240:1 25246:1 25273:1 25283:1 25286:1 25320:1 25331:1 25366:1 25368:1 25371:1 25391:1 25396:1 25450:2 25453:1 25472:2 25477:1 25478:1 25537:1 25549:1 25652:1 25729:1 25739:1 25786:1 25793:1 25861:1 25898:1 25900:1 25909:1 25963:2 25989:1 26010:1 26022:2 26041:1 26075:1 26086:1 26097:1 26103:1 26111:1 26135:3 26157:2 26167:1 26250:1 26253:1 26288:1 26300:1 26304:2 26317:1 26319:1 26356:1 26365:1 26373:1 26374:1 26380:1 26391:1 26399:1 26420:3 26479:1 26483:1 26488:3 26495:1 26512:1 26616:1 26659:1 26668:1 26683:1 26703:1 26758:1 26766:1 26794:1 26803:1 26833:1 26857:1 26875:1 26895:1 26929:3 26942:1 26964:1 26986:1 27012:1 27024:1 27048:2 27051:1 27059:1 27060:1 27078:1 27083:1 27088:1 27112:1 27123:1 27164:1 27192:3 27193:1 27230:1 27233:1 27265:1 27312:1 27338:1 27368:1 27387:1 27428:1 27443:1 27450:1 27465:1 27486:1 27514:1 27577:1 27627:2 27633:1 27673:1 27701:1 27711:1 27729:1 27748:2 27786:1 27793:1 27796:1 27820:1 27854:1 27873:1 27927:1 27933:1 27947:1 27970:1 27977:1 28048:1 28064:1 28071:1 28072:1 28076:1 28142:2 28200:1 28202:1 28210:2 28228:5 28305:1 28322:1 28337:1 28356:1 28360:3 28368:1 28371:2 28373:3 28410:1 28497:1 28502:1 28551:1 28564:1 28569:1 28573:2 28594:4 28596:1 28627:1 28630:1 28637:1 28691:1 28768:1 28788:1 28816:2 28846:1 28857:1 28863:1 28884:1 28921:1 28931:1 28932:1 28945:1 28949:1 28963:1 28986:1 28988:1 28998:1 29034:1 29093:1 29132:1 29158:1 29163:1 29187:1 29191:1 29210:1 29238:1 29244:1 29247:1 29259:1 29260:1 29281:1 29295:1 29318:1 29322:1 29373:3 29377:1 29404:1 29446:2 29460:1 29465:1 29473:1 29482:1 29523:1 29524:1 29529:1 29530:1 29531:1 29536:1 29543:2 29556:1 29574:1 29613:1 29641:1 29663:1 29766:1 29804:1 29805:2 29849:1 29891:1 29921:1 29952:1 29969:1 30019:1 30034:1 30110:1 30114:1 30134:2 30138:1 30146:1 30151:1 30152:1 30169:1 30171:1 30180:1 30203:1 30220:1 30228:2 30229:1 30238:3 30251:1 30252:1 30261:1 30275:1 30279:1 30283:1 30336:1 30362:1 30377:1 30392:1 30397:4 30406:3 30411:1 30438:2 30453:1 30471:1 30491:1 30571:1 30583:1 30604:1 30614:1 30629:1 30634:1 30635:1 30645:1 30646:2 30651:1 30673:1 30711:1 30717:2 30730:1 30786:3 30916:1 30926:1 31028:1 31053:1 31055:1 31072:1 31074:1 31082:1 31103:1 31152:1 31194:2 31204:2 31239:1 31257:1 31284:1 31296:1 31301:1 31313:2 31345:1 31351:1 31405:1 31431:1 31443:1 31473:1 31478:2 31505:1 31516:1 31519:1 31542:1 31577:1 31580:2 31606:1 31617:1 31618:1 31623:1 31677:2 1 13:1 62:1 65:1 72:1 106:1 141:1 156:2 161:1 173:1 207:2 274:1 278:2 297:2 307:1 328:1 354:1 371:2 373:1 378:3 387:3 397:2 416:1 430:1 438:1 454:5 458:2 526:1 527:1 620:1 634:2 659:1 678:1 693:1 767:1 826:1 829:1 856:1 863:1 871:1 900:3 906:1 918:3 927:1 942:6 943:1 952:3 975:1 993:3 995:2 998:5 1001:1 1004:2 1018:2 1033:1 1042:2 1044:3 1055:1 1095:2 1159:1 1275:3 1277:1 1285:1 1295:1 1298:1 1312:1 1328:1 1332:1 1356:1 1386:1 1389:1 1433:1 1451:1 1470:1 1485:1 1500:1 1530:1 1540:1 1565:1 1584:1 1632:1 1647:1 1686:2 1694:2 1696:2 1713:1 1754:1 1767:1 1786:1 1791:2 1804:2 1818:1 1820:1 1825:1 1835:1 1839:1 1854:1 1863:1 1871:1 1882:1 1897:1 1920:1 1945:2 1965:1 1971:1 1974:2 1978:1 1979:1 1993:1 1994:5 2027:1 2030:2 2065:1 2128:1 2129:1 2143:2 2192:1 2198:1 2215:1 2220:1 2222:1 2230:1 2243:1 2272:1 2283:1 2296:1 2301:1 2308:1 2323:1 2354:5 2361:1 2370:1 2376:1 2423:1 2436:2 2439:1 2458:1 2464:2 2478:1 2485:2 2487:1 2494:2 2495:1 2497:1 2501:1 2508:2 2509:1 2514:5 2515:2 2528:1 2568:1 2571:3 2595:1 2603:1 2618:1 2623:1 2637:1 2639:1 2695:1 2706:1 2718:1 2722:1 2765:1 2771:1 2776:1 2779:1 2803:2 2808:1 2813:1 2814:1 2824:1 2827:1 2835:1 2849:2 2851:1 2857:1 2873:1 2881:1 2884:1 2897:2 2913:1 2916:3 2924:3 2937:1 2947:1 2950:3 2951:2 2981:1 2982:1 3036:1 3041:1 3050:2 3060:2 3069:1 3127:1 3146:2 3157:1 3159:4 3178:2 3180:1 3186:1 3190:1 3224:2 3249:1 3269:1 3338:1 3351:1 3352:4 3371:2 3383:1 3438:1 3457:2 3469:1 3490:1 3510:2 3534:1 3550:1 3608:6 3626:1 3774:1 3781:1 3788:1 3804:1 3829:1 3861:1 3868:2 3873:1 3898:8 3909:1 3912:2 3914:1 3937:1 4000:1 4001:1 4008:1 4021:1 4038:1 4096:1 4099:1 4106:1 4113:1 4129:1 4149:1 4152:1 4156:1 4163:1 4167:1 4179:1 4200:2 4215:1 4226:1 4229:1 4236:1 4241:1 4253:2 4272:1 4293:2 4315:2 4348:2 4349:3 4356:1 4393:1 4395:2 4398:1 4403:1 4422:1 4426:1 4464:1 4476:1 4500:1 4526:1 4547:1 4552:1 4557:1 4563:1 4581:1 4587:1 4594:1 4610:1 4629:1 4669:4 4717:1 4720:1 4732:1 4779:1 4787:2 4808:1 4843:1 4869:2 4893:1 4899:1 4902:1 4904:1 4910:1 4911:1 4922:1 4938:1 4970:1 5034:1 5044:1 5056:1 5062:1 5066:1 5085:1 5105:1 5131:1 5138:2 5154:1 5174:1 5216:1 5267:3 5270:1 5279:1 5283:1 5316:1 5429:1 5430:1 5431:3 5433:2 5434:1 5436:1 5441:1 5442:1 5446:1 5449:2 5450:1 5453:1 5454:1 5456:2 5465:3 5469:1 5517:1 5532:1 5548:2 5592:1 5638:1 5668:1 5720:1 5801:1 5807:1 5850:1 5875:2 5890:1 5915:1 5937:1 5953:2 5972:1 5988:1 5994:1 6017:1 6100:1 6115:2 6118:1 6133:1 6134:1 6136:1 6139:1 6143:1 6181:1 6188:2 6219:4 6223:1 6224:1 6237:2 6308:1 6327:1 6345:1 6351:1 6361:1 6387:1 6400:1 6466:1 6468:1 6488:2 6495:1 6499:1 6502:1 6560:1 6571:1 6581:1 6582:1 6586:7 6600:1 6603:1 6624:2 6655:1 6684:1 6706:1 6709:4 6799:1 6806:1 6809:1 6816:1 6823:1 6931:1 6990:1 6993:2 6996:2 7008:1 7052:1 7061:1 7131:1 7145:2 7227:1 7253:1 7256:1 7265:1 7284:3 7292:1 7295:1 7309:1 7315:1 7326:1 7348:1 7362:1 7405:2 7429:1 7454:1 7473:1 7478:1 7504:1 7529:1 7535:1 7561:1 7574:6 7578:2 7611:1 7621:1 7624:1 7625:1 7636:2 7645:3 7656:1 7679:1 7680:1 7695:1 7701:1 7729:1 7737:1 7747:1 7759:1 7792:1 7805:1 7812:1 7853:1 7930:1 7984:1 7991:1 7999:1 8006:1 8010:1 8032:2 8061:1 8064:2 8081:1 8093:1 8108:2 8117:1 8134:1 8140:1 8168:1 8198:1 8218:2 8235:1 8236:6 8250:1 8257:3 8262:2 8287:2 8288:1 8290:1 8303:17 8306:1 8315:1 8326:4 8327:2 8331:2 8367:1 8374:1 8375:1 8404:2 8405:2 8411:1 8421:1 8433:1 8459:1 8461:1 8480:2 8492:1 8514:1 8541:1 8557:1 8558:1 8588:1 8592:1 8681:1 8742:1 8765:1 8768:1 8777:1 8788:1 8815:1 8835:9 8843:1 8865:2 8870:1 8935:1 8938:1 8943:1 8969:1 8974:1 8990:1 8994:2 8996:1 9001:1 9019:1 9031:3 9038:2 9044:1 9065:1 9066:1 9080:1 9088:1 9090:1 9104:1 9139:1 9142:1 9154:1 9205:1 9209:1 9211:1 9239:1 9255:2 9267:1 9271:1 9312:1 9319:1 9340:1 9365:1 9393:1 9404:1 9436:1 9437:1 9449:1 9460:1 9485:1 9486:1 9501:1 9510:1 9533:1 9537:1 9541:2 9577:2 9594:1 9606:1 9613:1 9618:1 9644:1 9655:1 9663:1 9668:1 9670:1 9675:1 9687:1 9708:2 9719:1 9732:1 9768:1 9769:1 9778:1 9794:2 9849:1 9853:2 9872:1 9878:1 9882:1 9884:1 9888:2 9950:1 9960:1 9963:1 9972:2 9999:1 10021:2 10050:1 10080:1 10089:1 10111:2 10122:1 10147:1 10156:1 10159:1 10197:1 10201:1 10220:5 10226:1 10264:1 10330:1 10358:1 10363:1 10366:1 10369:1 10437:1 10517:1 10530:1 10542:1 10558:1 10576:1 10587:1 10606:1 10611:1 10612:1 10657:1 10663:1 10665:1 10674:1 10690:2 10702:3 10707:1 10738:2 10841:1 10861:2 10864:1 10907:1 10911:7 10913:1 10914:1 10919:1 10949:1 10980:1 11047:2 11049:1 11094:1 11112:1 11115:1 11117:1 11121:1 11129:1 11131:1 11136:2 11169:1 11181:4 11185:1 11187:1 11194:1 11207:1 11210:1 11224:2 11244:1 11283:1 11291:1 11300:1 11303:2 11319:1 11330:1 11348:1 11360:1 11365:1 11373:2 11390:3 11402:1 11432:1 11462:2 11485:1 11486:1 11498:1 11541:1 11562:1 11573:3 11597:1 11609:1 11624:2 11744:1 11767:1 11770:1 11791:1 11792:2 11801:2 11807:1 11816:1 11817:1 11819:5 11820:1 11827:1 11834:1 11838:1 11845:1 11868:1 11901:2 11910:1 11935:1 11937:1 11939:1 11983:1 11986:1 12007:1 12023:1 12026:1 12118:1 12156:1 12192:1 12195:1 12219:1 12241:1 12245:1 12250:1 12260:2 12262:1 12272:1 12285:2 12287:1 12293:1 12324:3 12356:1 12369:3 12383:1 12391:1 12429:1 12442:1 12449:2 12450:1 12464:1 12483:1 12497:1 12528:1 12544:1 12574:1 12587:1 12592:1 12604:1 12611:1 12614:1 12636:1 12652:2 12655:2 12683:1 12741:2 12799:1 12808:1 12829:1 12863:1 12883:1 12907:1 12918:1 12925:1 12955:2 13003:1 13025:1 13047:1 13052:1 13059:1 13118:1 13133:1 13134:1 13149:1 13155:2 13168:1 13172:1 13195:1 13237:1 13271:1 13291:1 13310:1 13427:2 13456:1 13515:1 13531:1 13533:2 13552:1 13569:1 13601:1 13626:1 13654:1 13669:1 13718:4 13777:1 13785:1 13838:1 13920:1 13939:2 13975:1 13978:1 13998:1 14010:1 14026:1 14048:1 14058:1 14064:2 14110:1 14146:1 14176:1 14199:1 14201:1 14204:1 14208:4 14224:1 14245:1 14262:1 14279:1 14284:1 14307:1 14356:1 14369:1 14370:1 14381:1 14385:1 14403:1 14416:1 14417:1 14429:1 14437:1 14453:5 14503:1 14532:1 14603:3 14635:2 14658:1 14695:1 14722:1 14748:1 14749:1 14769:2 14773:1 14778:1 14782:5 14810:1 14818:1 14846:1 14894:1 14967:2 15010:1 15013:1 15025:1 15032:1 15049:1 15080:1 15098:6 15121:1 15123:2 15128:1 15163:1 15185:1 15202:1 15215:1 15236:1 15265:1 15312:1 15353:1 15379:3 15395:1 15401:1 15446:1 15468:1 15517:2 15518:1 15540:1 15541:1 15550:1 15581:1 15592:1 15651:1 15675:1 15698:1 15712:2 15725:2 15786:2 15842:1 15844:1 15851:1 15880:1 15922:1 15938:1 15941:2 15972:1 15973:1 16032:1 16078:2 16079:1 16157:1 16168:1 16189:1 16231:1 16406:1 16464:1 16476:1 16492:1 16511:1 16516:1 16520:1 16545:1 16551:1 16567:1 16585:1 16592:1 16627:1 16687:1 16701:1 16731:1 16739:2 16807:1 16810:1 16869:1 16897:1 16909:1 16913:2 16914:1 16926:1 16945:1 16980:1 16999:1 17008:1 17052:1 17079:2 17089:1 17104:1 17105:2 17135:2 17151:1 17230:1 17239:5 17256:1 17260:3 17285:1 17327:1 17344:1 17349:2 17360:2 17380:1 17383:1 17428:1 17435:1 17444:1 17445:1 17454:2 17504:1 17511:1 17516:1 17518:1 17519:2 17520:1 17521:1 17527:1 17529:1 17531:1 17532:1 17537:1 17598:1 17627:1 17652:1 17655:1 17708:1 17762:1 17808:1 17868:1 17874:1 17884:1 17899:1 17902:1 17915:1 17916:1 17930:3 17941:1 17972:1 17985:1 17994:1 18008:1 18016:1 18071:2 18073:1 18096:3 18102:1 18171:1 18183:2 18191:1 18212:1 18225:1 18233:1 18307:2 18308:1 18341:1 18361:1 18425:1 18443:1 18491:1 18530:1 18533:1 18577:2 18585:1 18597:1 18617:1 18662:1 18731:1 18734:1 18755:1 18760:1 18779:1 18796:1 18801:1 18810:3 18814:2 18825:1 18885:1 18887:1 18898:1 18910:1 18962:1 18982:1 19004:1 19050:1 19070:1 19071:1 19101:1 19102:1 19130:1 19134:2 19171:1 19226:1 19236:1 19246:1 19337:1 19378:1 19390:1 19391:1 19411:1 19450:1 19514:1 19515:1 19538:1 19575:1 19593:1 19651:1 19656:1 19670:1 19719:2 19780:1 19806:1 19826:6 19832:1 19833:1 19846:2 19847:1 19863:1 19872:1 19876:1 19948:1 19971:1 19993:1 20016:1 20023:1 20053:927 20064:1 20070:1 20086:1 20132:1 20134:1 20160:1 20264:1 20267:1 20274:1 20275:1 20294:1 20308:1 20320:1 20338:1 20375:1 20420:1 20425:2 20528:2 20545:1 20557:1 20567:1 20605:1 20618:1 20642:1 20651:1 20660:1 20669:1 20679:1 20701:1 20702:2 20715:2 20721:1 20724:1 20732:1 20757:1 20759:1 20768:1 20781:1 20787:1 20815:1 20833:1 20838:1 20864:2 20871:1 20884:1 20926:2 20933:1 20935:1 20956:3 20999:1 21014:1 21022:1 21062:1 21065:1 21098:1 21105:1 21106:1 21149:1 21150:1 21157:1 21202:1 21219:1 21220:1 21239:2 21242:1 21250:1 21254:1 21277:1 21281:1 21288:1 21295:1 21302:1 21322:1 21330:1 21331:1 21376:1 21379:1 21387:2 21446:1 21478:1 21482:1 21483:1 21501:1 21511:1 21523:1 21524:1 21544:3 21555:1 21573:1 21587:1 21591:1 21627:1 21652:1 21654:1 21676:1 21699:1 21711:2 21712:2 21727:1 21756:1 21828:1 21853:1 21860:1 21861:1 21940:1 21982:2 21990:1 22015:1 22018:1 22032:1 22066:4 22069:1 22085:1 22119:1 22140:1 22185:1 22202:2 22236:1 22244:1 22288:1 22300:1 22314:2 22326:1 22337:1 22390:1 22417:1 22452:1 22488:2 22492:1 22508:1 22519:3 22554:1 22567:1 22602:1 22621:1 22643:2 22665:1 22671:2 22685:1 22699:2 22723:1 22724:1 22741:1 22750:2 22760:1 22774:1 22779:1 22811:1 22855:1 22857:1 22862:1 22866:2 22939:1 23027:1 23031:1 23032:1 23043:1 23056:1 23070:1 23081:1 23131:1 23137:1 23158:1 23183:1 23190:1 23194:1 23195:2 23199:1 23210:1 23228:2 23229:1 23249:1 23251:2 23262:1 23271:2 23288:1 23298:1 23337:1 23345:1 23347:1 23349:1 23352:1 23410:1 23418:1 23429:1 23437:2 23466:1 23468:1 23497:1 23498:1 23500:1 23502:1 23503:1 23540:1 23576:1 23605:3 23614:1 23616:1 23617:1 23619:1 23625:1 23645:3 23659:1 23682:1 23693:1 23697:1 23721:1 23796:1 23823:1 23853:1 23862:1 23887:1 23897:1 23900:1 23912:1 23922:2 23940:1 23943:1 23946:1 23993:1 23998:1 24001:1 24002:3 24016:1 24026:1 24030:2 24037:1 24044:1 24073:1 24108:5 24111:1 24126:1 24150:1 24162:1 24172:2 24175:1 24184:1 24197:1 24221:1 24250:2 24290:1 24291:3 24294:1 24305:3 24309:1 24325:1 24329:1 24370:1 24371:1 24376:2 24386:1 24408:1 24426:1 24432:1 24451:1 24502:1 24549:1 24550:1 24558:1 24568:1 24578:2 24598:3 24608:1 24624:1 24685:1 24688:1 24706:1 24762:1 24776:1 24795:2 24806:1 24808:1 24814:1 24851:2 24883:2 24969:1 24996:2 25000:1 25008:2 25018:2 25027:1 25036:1 25039:1 25056:1 25066:1 25080:1 25138:1 25172:1 25199:2 25230:1 25232:1 25240:1 25246:1 25259:1 25273:1 25283:1 25286:1 25320:1 25331:1 25366:1 25368:1 25371:1 25388:1 25391:1 25396:1 25447:1 25450:2 25453:1 25472:2 25477:1 25478:1 25537:1 25549:1 25652:1 25729:1 25739:1 25786:1 25793:1 25861:1 25898:1 25900:1 25909:1 25940:1 25963:2 25989:1 26010:1 26022:2 26041:1 26075:1 26086:1 26097:1 26103:1 26111:1 26135:3 26157:2 26167:1 26250:1 26253:1 26288:1 26292:1 26300:1 26304:2 26317:1 26319:1 26356:1 26365:1 26373:1 26374:1 26380:1 26391:1 26395:1 26399:1 26420:5 26447:1 26479:1 26483:1 26488:3 26495:1 26512:1 26616:1 26659:1 26668:1 26683:1 26696:1 26703:1 26758:1 26766:1 26794:1 26803:1 26833:1 26857:1 26875:2 26895:1 26929:5 26942:1 26964:1 26973:1 26986:1 27012:1 27024:1 27048:2 27051:1 27059:1 27060:1 27078:1 27083:1 27088:1 27112:1 27123:1 27164:1 27192:3 27193:1 27230:1 27233:1 27265:1 27312:1 27338:1 27341:1 27368:1 27387:1 27428:1 27443:1 27450:1 27465:1 27486:1 27514:1 27577:1 27627:2 27633:1 27673:1 27701:2 27711:1 27729:1 27748:2 27786:1 27793:1 27796:1 27820:1 27854:1 27873:1 27927:1 27933:1 27947:1 27970:1 27977:1 28048:1 28064:1 28071:1 28072:1 28076:1 28142:2 28191:1 28200:1 28202:1 28210:2 28227:1 28228:6 28305:1 28322:1 28337:1 28356:2 28360:3 28368:1 28371:2 28373:3 28410:1 28497:1 28502:1 28551:1 28564:1 28569:1 28573:2 28594:4 28596:1 28627:1 28630:1 28637:1 28691:1 28768:1 28788:1 28816:2 28846:1 28857:1 28863:1 28884:1 28921:1 28931:1 28932:1 28945:1 28949:1 28963:1 28986:1 28988:1 28998:2 29034:1 29093:1 29132:1 29158:1 29163:2 29172:1 29187:1 29191:1 29210:1 29238:1 29244:1 29247:1 29259:1 29260:1 29281:1 29295:1 29318:1 29322:1 29373:3 29377:1 29404:1 29446:2 29453:1 29460:1 29465:1 29473:1 29482:1 29494:1 29523:1 29524:1 29529:1 29530:1 29531:1 29536:1 29543:2 29556:1 29574:1 29613:1 29641:1 29663:1 29766:1 29804:1 29805:2 29849:1 29891:1 29921:1 29952:1 29969:1 30019:1 30034:1 30110:1 30114:1 30133:1 30134:3 30138:1 30146:1 30151:1 30152:1 30169:1 30171:1 30180:1 30203:1 30220:1 30228:2 30229:1 30238:3 30251:1 30252:1 30261:1 30275:1 30279:1 30283:1 30332:1 30336:1 30362:1 30377:1 30392:1 30397:4 30406:3 30411:1 30438:2 30453:1 30471:1 30491:1 30571:1 30574:1 30583:1 30604:1 30614:1 30629:1 30634:1 30635:1 30645:1 30646:2 30651:1 30673:1 30711:1 30717:3 30730:1 30786:3 30916:1 30926:1 31028:1 31043:1 31046:1 31053:2 31055:1 31072:1 31074:1 31082:1 31103:1 31152:1 31194:2 31204:2 31233:1 31239:2 31257:1 31284:1 31296:1 31301:1 31313:2 31345:1 31351:1 31405:1 31431:1 31443:1 31473:1 31478:2 31505:1 31516:1 31519:1 31542:1 31577:1 31580:2 31599:1 31606:1 31617:1 31618:1 31623:1 31677:2 1 13:1 62:1 65:1 72:1 106:1 141:1 156:3 161:1 173:1 207:2 274:1 278:2 297:2 307:1 328:1 354:1 371:2 373:1 378:3 387:3 397:2 416:1 430:1 438:1 454:5 458:2 526:1 527:1 620:1 634:2 659:1 678:1 693:1 767:1 826:1 829:1 856:1 863:1 871:1 900:3 906:1 918:3 927:1 942:7 943:2 952:3 975:1 993:4 995:2 998:5 1001:1 1004:2 1018:2 1033:1 1042:2 1044:3 1055:1 1095:2 1159:1 1275:3 1277:2 1285:1 1295:1 1298:1 1312:1 1328:1 1332:1 1356:1 1386:1 1389:1 1417:1 1433:1 1451:1 1470:1 1485:1 1500:1 1530:1 1540:1 1565:1 1584:1 1632:1 1647:1 1686:3 1694:2 1696:2 1713:1 1754:1 1767:1 1786:1 1791:2 1804:2 1818:1 1820:1 1825:1 1835:1 1839:1 1854:1 1863:1 1871:1 1881:1 1882:1 1897:1 1920:1 1945:3 1965:1 1971:1 1974:2 1978:1 1979:1 1993:1 1994:5 2027:1 2030:2 2065:1 2128:1 2129:1 2143:2 2192:1 2198:1 2215:1 2220:1 2222:1 2226:1 2230:1 2243:1 2272:1 2283:1 2296:1 2301:1 2308:1 2323:1 2354:6 2361:1 2370:1 2376:1 2423:1 2436:2 2439:1 2458:1 2464:2 2478:1 2485:2 2487:1 2494:2 2495:1 2497:1 2501:1 2502:1 2508:2 2509:2 2514:5 2515:2 2528:1 2568:1 2571:3 2595:1 2603:1 2617:1 2618:1 2623:1 2637:1 2639:1 2695:1 2706:1 2718:1 2722:1 2765:1 2771:1 2776:1 2779:1 2803:2 2808:1 2813:1 2814:1 2824:1 2827:1 2835:1 2849:3 2851:1 2857:1 2873:1 2881:1 2884:1 2897:2 2913:1 2916:3 2924:3 2937:1 2947:1 2950:3 2951:2 2981:1 2982:2 3036:1 3041:1 3050:2 3060:2 3069:1 3127:1 3146:2 3157:1 3159:6 3178:2 3180:1 3186:1 3190:1 3224:2 3249:2 3269:1 3338:1 3351:1 3352:4 3371:2 3383:1 3438:1 3440:1 3457:2 3469:1 3490:2 3510:2 3534:1 3550:1 3579:1 3608:6 3626:1 3774:1 3781:1 3788:1 3804:1 3829:1 3861:1 3868:2 3873:1 3898:9 3909:1 3912:2 3914:1 3937:1 4000:1 4001:1 4008:1 4013:1 4021:1 4038:1 4096:1 4099:1 4106:1 4113:1 4129:1 4149:1 4152:1 4156:1 4163:1 4167:1 4179:1 4200:2 4215:1 4221:1 4226:2 4229:1 4236:1 4241:1 4253:2 4272:1 4293:2 4315:2 4348:2 4349:3 4356:1 4393:1 4395:2 4398:1 4403:1 4422:1 4426:1 4464:1 4476:1 4500:1 4526:1 4547:1 4552:1 4557:1 4563:1 4581:1 4587:1 4594:1 4610:1 4629:1 4669:4 4717:1 4720:1 4732:1 4779:1 4787:2 4808:1 4843:1 4869:2 4893:1 4899:1 4902:1 4904:1 4910:1 4911:2 4922:1 4938:1 4970:1 5034:1 5044:1 5056:1 5062:1 5066:1 5085:1 5105:1 5131:1 5138:2 5154:1 5174:1 5216:1 5267:3 5270:1 5279:1 5283:1 5316:1 5429:1 5430:1 5431:3 5433:2 5434:2 5436:1 5440:1 5441:1 5442:1 5446:1 5449:2 5450:1 5453:1 5454:2 5456:2 5465:3 5469:1 5517:1 5532:1 5548:2 5592:1 5638:1 5668:1 5720:1 5765:1 5771:1 5801:1 5807:1 5850:1 5875:2 5890:1 5915:1 5937:1 5953:2 5972:1 5988:1 5994:1 6017:1 6100:1 6115:2 6118:1 6133:1 6134:1 6136:1 6139:1 6143:1 6181:1 6188:2 6219:4 6223:1 6224:1 6237:2 6308:1 6327:1 6345:1 6351:1 6361:1 6387:1 6400:1 6466:1 6468:1 6488:3 6494:1 6495:1 6499:1 6502:1 6560:1 6571:1 6581:1 6582:1 6586:7 6600:1 6603:1 6624:2 6655:1 6684:1 6706:1 6709:4 6775:1 6799:1 6806:1 6809:1 6816:1 6822:1 6823:1 6834:1 6931:1 6949:1 6990:1 6993:3 6996:2 7008:1 7052:1 7061:1 7131:1 7145:2 7227:1 7253:1 7256:1 7265:1 7284:3 7292:1 7295:1 7309:1 7315:1 7326:1 7348:1 7362:1 7405:2 7429:1 7454:1 7465:1 7473:1 7478:1 7504:1 7522:1 7529:1 7535:1 7561:1 7574:6 7578:2 7611:1 7621:1 7624:1 7625:1 7636:2 7645:3 7656:1 7679:1 7680:1 7695:1 7701:1 7729:1 7737:1 7747:1 7759:1 7792:1 7805:1 7812:1 7853:1 7930:1 7984:1 7991:1 7999:1 8006:2 8010:1 8032:2 8036:1 8061:1 8064:2 8081:1 8093:1 8108:2 8117:1 8134:1 8140:1 8168:1 8198:1 8218:2 8235:2 8236:6 8250:1 8257:3 8262:2 8287:2 8288:2 8290:1 8303:18 8306:1 8315:1 8326:4 8327:2 8331:2 8367:1 8374:1 8375:1 8404:2 8405:2 8411:1 8421:1 8433:1 8459:1 8461:1 8480:2 8492:1 8514:1 8541:1 8557:1 8558:2 8588:1 8592:1 8681:1 8742:1 8765:1 8768:1 8777:1 8788:1 8815:1 8835:10 8843:1 8865:2 8870:1 8935:1 8938:1 8943:1 8969:1 8974:1 8990:1 8994:2 8996:1 9001:1 9019:1 9031:3 9038:2 9044:1 9065:1 9066:1 9080:1 9088:1 9090:1 9104:1 9139:1 9142:1 9154:1 9205:1 9209:1 9211:1 9239:1 9255:3 9267:1 9271:1 9312:1 9319:1 9340:1 9345:1 9365:1 9393:1 9404:1 9436:1 9437:1 9449:1 9460:1 9485:1 9486:1 9501:1 9510:1 9533:1 9537:1 9541:2 9577:2 9594:1 9606:1 9613:1 9618:1 9643:1 9644:1 9655:1 9663:1 9668:1 9670:1 9675:1 9687:1 9708:2 9719:1 9732:1 9768:1 9769:1 9778:1 9794:2 9849:1 9853:2 9872:1 9878:1 9882:1 9884:1 9888:2 9898:1 9950:1 9960:1 9963:1 9969:1 9972:2 9999:1 10021:3 10050:1 10080:1 10089:1 10111:2 10122:1 10147:1 10156:1 10159:1 10197:1 10201:1 10220:5 10226:1 10264:1 10302:1 10330:1 10358:1 10363:1 10366:1 10369:1 10408:1 10437:1 10517:1 10530:1 10542:1 10558:1 10576:1 10587:1 10606:1 10611:1 10612:1 10657:1 10663:1 10665:1 10674:2 10690:2 10702:3 10707:1 10738:2 10762:1 10841:1 10861:2 10864:1 10907:1 10911:7 10913:1 10914:1 10919:1 10949:1 10980:1 11047:2 11049:1 11094:1 11109:1 11110:1 11112:1 11115:1 11117:1 11121:1 11129:1 11131:1 11136:2 11169:1 11181:4 11185:1 11187:1 11189:1 11194:1 11207:1 11210:1 11224:3 11244:1 11283:1 11291:1 11300:1 11303:2 11319:1 11330:1 11348:1 11360:1 11365:1 11373:2 11390:3 11402:1 11432:1 11462:2 11485:1 11486:1 11498:1 11541:1 11562:1 11573:3 11597:1 11609:1 11624:2 11744:1 11767:1 11770:1 11791:1 11792:2 11801:2 11807:1 11816:1 11817:2 11819:5 11820:1 11827:1 11834:1 11838:1 11845:1 11849:1 11868:1 11901:2 11910:1 11935:1 11937:1 11939:1 11983:1 11986:1 12007:1 12023:1 12026:1 12118:1 12156:1 12192:1 12195:1 12219:1 12241:1 12245:1 12250:1 12260:2 12262:1 12272:1 12285:2 12287:1 12293:1 12324:5 12356:1 12369:3 12383:2 12391:1 12429:1 12442:1 12449:2 12450:1 12464:1 12483:1 12497:1 12528:1 12544:1 12574:1 12587:1 12592:1 12604:1 12611:1 12614:1 12636:1 12652:2 12655:2 12683:1 12741:2 12799:1 12808:1 12829:1 12863:1 12883:1 12907:1 12918:1 12925:1 12955:2 13003:1 13025:1 13047:1 13052:1 13059:1 13118:1 13133:1 13134:1 13149:1 13155:2 13168:1 13172:1 13195:1 13235:1 13237:1 13264:1 13271:1 13291:1 13310:1 13327:1 13427:2 13456:1 13515:1 13531:1 13533:2 13552:1 13569:1 13601:1 13626:1 13654:1 13669:1 13718:5 13723:1 13777:1 13785:1 13838:1 13920:1 13939:2 13975:1 13978:1 13998:1 14010:1 14026:1 14048:1 14058:1 14064:2 14110:1 14146:1 14176:1 14199:1 14201:1 14204:1 14208:4 14224:1 14245:1 14262:1 14279:1 14284:1 14307:1 14355:1 14356:1 14369:1 14370:1 14381:1 14385:1 14403:1 14416:1 14417:1 14429:1 14437:1 14453:6 14503:1 14532:1 14603:3 14635:3 14658:1 14695:1 14722:1 14734:1 14748:1 14749:1 14769:2 14773:1 14778:1 14782:5 14810:1 14818:1 14846:1 14894:1 14967:2 15010:1 15013:1 15025:1 15032:1 15049:1 15074:1 15080:1 15098:6 15121:1 15123:2 15128:1 15163:1 15185:1 15202:1 15215:1 15236:1 15265:1 15312:1 15353:1 15379:3 15395:1 15401:1 15446:1 15468:1 15517:2 15518:1 15540:1 15541:1 15550:1 15581:1 15592:1 15651:1 15675:1 15698:1 15712:2 15725:3 15729:1 15786:2 15842:1 15844:1 15851:1 15880:1 15922:2 15938:1 15941:2 15972:1 15973:1 16032:1 16078:2 16079:1 16157:1 16160:1 16168:1 16189:1 16231:1 16406:1 16464:1 16476:1 16492:1 16511:1 16516:1 16520:1 16545:1 16551:1 16567:1 16585:1 16592:1 16627:1 16687:1 16701:1 16731:1 16739:2 16807:1 16810:1 16869:1 16897:1 16909:1 16913:2 16914:1 16926:1 16945:1 16980:1 16999:1 17008:1 17052:1 17079:2 17089:1 17104:1 17105:2 17135:2 17151:1 17230:1 17239:6 17256:1 17260:3 17285:1 17327:1 17344:1 17349:2 17360:2 17380:1 17383:1 17428:1 17435:1 17444:1 17445:1 17454:2 17504:1 17511:1 17516:1 17518:1 17519:2 17520:1 17521:1 17527:1 17529:1 17531:1 17532:2 17537:1 17592:1 17598:1 17627:1 17652:1 17655:1 17656:1 17692:1 17708:1 17762:1 17808:1 17868:1 17874:1 17884:1 17899:1 17902:1 17915:1 17916:1 17925:1 17930:3 17941:2 17966:1 17972:1 17985:1 17994:1 18008:1 18016:1 18071:3 18073:1 18096:3 18102:1 18171:1 18183:2 18191:1 18212:1 18225:1 18233:1 18307:2 18308:1 18341:1 18361:1 18425:1 18443:1 18491:1 18494:1 18530:1 18533:1 18565:1 18577:2 18585:1 18597:1 18617:1 18662:1 18670:1 18731:1 18734:1 18755:1 18760:1 18779:1 18796:1 18801:1 18810:3 18814:2 18825:1 18852:1 18885:1 18887:1 18898:1 18909:1 18910:1 18962:1 18982:1 19004:1 19050:1 19070:1 19071:1 19101:1 19102:1 19103:1 19123:1 19130:1 19134:2 19171:1 19226:1 19236:1 19246:1 19337:1 19378:1 19390:1 19391:1 19411:1 19450:1 19514:1 19515:1 19538:1 19575:1 19593:1 19651:1 19656:1 19670:1 19719:3 19780:1 19806:1 19826:6 19832:1 19833:1 19846:2 19847:1 19863:1 19872:1 19876:1 19948:3 19971:1 19993:1 20016:1 20023:1 20041:1 20053:975 20064:1 20070:1 20086:1 20132:1 20134:1 20160:1 20264:1 20267:1 20274:1 20275:2 20294:1 20308:1 20320:1 20338:1 20375:1 20420:1 20425:2 20490:1 20528:2 20545:1 20557:1 20567:1 20605:1 20618:1 20642:1 20651:1 20660:1 20669:1 20679:1 20701:2 20702:2 20715:2 20721:1 20724:1 20732:2 20757:1 20759:1 20768:1 20781:1 20787:2 20815:1 20833:1 20838:1 20864:2 20871:1 20884:1 20917:1 20926:2 20933:1 20935:1 20956:4 20999:1 21014:1 21022:1 21061:1 21062:1 21065:1 21098:1 21105:1 21106:1 21149:1 21150:1 21157:1 21168:1 21202:1 21219:1 21220:1 21239:2 21242:1 21250:1 21254:1 21277:1 21281:1 21288:1 21295:1 21302:1 21322:1 21330:1 21331:1 21376:1 21379:1 21387:2 21446:1 21478:1 21482:1 21483:1 21501:1 21511:1 21523:1 21524:1 21544:3 21555:1 21573:1 21587:1 21591:1 21627:1 21652:1 21654:1 21676:1 21699:1 21711:2 21712:2 21727:2 21756:1 21813:1 21828:1 21853:1 21860:1 21861:1 21940:1 21982:2 21990:1 22015:1 22018:1 22032:1 22066:5 22069:1 22085:1 22119:1 22140:1 22185:1 22202:2 22236:1 22244:1 22288:2 22300:1 22314:2 22326:1 22337:1 22390:1 22417:1 22452:1 22488:2 22492:1 22508:1 22519:3 22554:1 22567:1 22602:1 22621:1 22643:2 22665:1 22671:2 22685:1 22699:2 22723:1 22724:1 22741:1 22750:2 22760:1 22774:1 22779:1 22811:1 22855:1 22857:1 22862:1 22866:2 22939:1 23027:1 23031:1 23032:1 23043:1 23056:1 23070:1 23081:1 23131:1 23137:1 23158:1 23183:1 23190:1 23194:1 23195:2 23199:1 23210:1 23228:2 23229:1 23249:1 23251:2 23262:1 23271:3 23288:1 23298:1 23313:1 23337:1 23345:1 23347:1 23349:1 23352:1 23410:1 23418:1 23429:1 23437:2 23439:1 23466:1 23468:1 23497:1 23498:1 23500:2 23502:1 23503:1 23540:1 23576:1 23605:3 23614:1 23616:1 23617:1 23619:1 23625:1 23628:1 23645:3 23659:1 23682:1 23693:2 23697:1 23721:1 23796:1 23823:1 23853:1 23862:1 23887:1 23897:1 23900:1 23912:1 23922:2 23940:1 23943:1 23946:1 23969:1 23990:1 23993:1 23998:1 24001:1 24002:4 24016:1 24026:1 24030:2 24037:1 24044:1 24053:1 24073:1 24108:5 24111:1 24126:1 24150:1 24162:1 24172:2 24175:1 24184:1 24197:1 24221:1 24250:2 24290:1 24291:3 24294:1 24305:3 24309:1 24325:1 24329:1 24370:1 24371:1 24376:2 24386:1 24408:1 24426:1 24432:1 24451:1 24502:1 24531:1 24549:1 24550:1 24558:1 24568:1 24578:2 24598:3 24608:1 24624:1 24685:1 24688:1 24706:1 24762:1 24776:1 24795:2 24806:1 24808:1 24814:1 24851:2 24883:2 24969:1 24996:2 25000:1 25008:4 25018:2 25027:1 25036:1 25039:1 25056:1 25066:1 25080:1 25138:1 25172:1 25196:1 25199:2 25230:1 25232:1 25240:1 25246:1 25259:1 25273:1 25283:1 25286:1 25318:1 25320:1 25331:1 25366:1 25368:1 25371:1 25388:1 25391:1 25396:1 25447:1 25450:3 25453:1 25472:2 25477:1 25478:1 25537:1 25549:1 25652:1 25729:1 25739:1 25786:1 25793:1 25861:1 25898:1 25900:1 25909:1 25940:1 25963:2 25989:1 26010:1 26022:2 26041:1 26075:1 26086:1 26097:1 26103:1 26111:1 26135:3 26157:2 26167:1 26250:1 26253:1 26288:1 26292:1 26300:1 26304:2 26317:1 26319:1 26356:1 26365:1 26373:1 26374:1 26380:1 26391:1 26395:1 26399:1 26420:6 26445:1 26447:1 26479:1 26483:1 26488:3 26495:1 26512:1 26616:1 26659:1 26668:1 26683:2 26696:1 26703:1 26758:1 26766:1 26794:1 26803:1 26833:1 26857:2 26875:2 26895:1 26929:6 26942:1 26964:1 26973:1 26986:1 27012:1 27024:1 27048:2 27051:1 27059:1 27060:1 27078:1 27083:1 27088:1 27112:1 27123:1 27164:1 27192:3 27193:1 27230:1 27233:1 27265:1 27304:1 27312:1 27338:1 27340:1 27341:1 27368:1 27387:1 27428:1 27443:1 27448:1 27450:1 27465:1 27486:1 27514:1 27577:1 27590:1 27627:2 27633:1 27673:1 27701:2 27711:1 27729:1 27748:2 27786:1 27793:1 27796:1 27820:1 27854:1 27873:1 27927:1 27933:1 27947:1 27970:1 27977:1 28048:1 28064:1 28071:1 28072:1 28076:1 28106:1 28142:2 28191:1 28200:1 28202:1 28210:2 28227:1 28228:6 28291:1 28305:1 28322:1 28337:1 28356:2 28360:3 28368:2 28371:2 28373:3 28410:1 28497:1 28502:1 28551:1 28564:1 28569:1 28573:2 28594:4 28596:1 28627:1 28630:1 28637:1 28691:1 28727:1 28768:1 28788:1 28816:2 28846:1 28857:1 28863:1 28884:1 28921:1 28931:1 28932:1 28945:1 28949:1 28963:1 28986:1 28988:2 28998:2 29014:1 29034:1 29093:1 29132:1 29158:1 29163:2 29172:1 29187:1 29191:1 29210:1 29238:1 29244:1 29247:1 29259:1 29260:1 29281:1 29295:1 29318:1 29322:1 29373:3 29377:1 29404:1 29446:2 29453:1 29460:1 29465:1 29473:1 29482:1 29494:1 29523:1 29524:1 29529:1 29530:1 29531:1 29536:1 29543:2 29556:1 29571:1 29574:1 29613:1 29615:1 29641:1 29663:1 29766:1 29798:1 29804:1 29805:2 29849:1 29891:1 29921:1 29952:1 29969:1 30019:1 30034:1 30110:1 30114:1 30133:1 30134:3 30138:1 30146:1 30151:1 30152:1 30169:1 30171:1 30180:1 30203:1 30220:1 30228:2 30229:1 30238:3 30251:1 30252:1 30261:2 30275:1 30279:1 30283:1 30332:1 30336:1 30362:1 30377:1 30392:1 30397:4 30406:3 30411:1 30438:3 30453:1 30471:1 30491:1 30571:1 30574:1 30583:1 30604:1 30614:1 30629:1 30634:1 30635:1 30645:1 30646:2 30651:1 30673:2 30711:1 30717:4 30730:1 30786:3 30916:1 30926:1 31028:1 31043:1 31046:1 31053:2 31055:1 31072:1 31074:1 31082:1 31103:1 31136:1 31152:1 31194:2 31204:2 31233:1 31239:2 31257:1 31284:1 31296:1 31301:1 31308:1 31313:2 31345:1 31351:1 31405:1 31431:1 31443:1 31473:1 31478:3 31505:1 31516:1 31519:1 31542:1 31577:1 31580:2 31599:1 31600:1 31606:1 31617:1 31618:1 31623:1 31677:2 1 13:1 62:1 65:1 72:1 106:1 141:1 155:1 156:3 161:1 173:1 188:1 190:1 207:2 263:1 274:1 278:2 297:2 307:1 328:1 354:1 371:3 373:2 378:3 387:3 397:2 416:1 430:1 438:1 454:5 458:2 490:1 526:1 527:1 620:1 634:2 659:1 665:1 678:1 693:1 767:1 826:1 829:1 856:1 863:1 871:1 900:3 906:1 918:3 927:1 942:7 943:2 952:3 975:1 993:4 995:2 998:6 1001:1 1004:2 1018:2 1033:1 1042:2 1044:3 1055:1 1095:2 1121:1 1159:1 1275:3 1277:2 1285:1 1295:1 1298:1 1312:1 1328:1 1332:1 1356:1 1386:1 1389:1 1417:1 1433:1 1451:1 1468:1 1470:1 1485:1 1500:1 1530:1 1540:1 1565:1 1584:1 1595:1 1602:1 1613:1 1629:1 1632:1 1647:1 1686:3 1694:3 1696:2 1713:1 1743:1 1754:1 1767:1 1786:1 1791:2 1804:2 1818:1 1820:1 1825:1 1835:1 1839:1 1854:1 1863:1 1871:1 1881:1 1882:1 1897:1 1920:1 1945:3 1965:1 1971:1 1974:2 1978:1 1979:1 1993:2 1994:5 2027:2 2030:2 2065:1 2128:1 2129:1 2143:2 2192:1 2198:1 2214:1 2215:1 2220:1 2222:1 2226:1 2230:1 2243:1 2272:1 2283:1 2296:1 2301:1 2308:1 2323:1 2354:7 2361:1 2370:1 2376:1 2423:1 2436:2 2439:1 2458:1 2464:2 2478:1 2485:2 2487:1 2494:2 2495:2 2497:1 2501:1 2502:1 2508:2 2509:2 2514:5 2515:2 2528:1 2568:1 2571:3 2595:1 2603:1 2617:1 2618:1 2623:1 2637:1 2639:1 2695:1 2706:1 2718:1 2722:1 2765:1 2771:1 2776:1 2779:1 2803:2 2806:1 2808:3 2813:1 2814:1 2824:1 2827:1 2835:1 2849:3 2851:1 2857:1 2873:2 2881:1 2884:1 2897:2 2906:1 2913:1 2916:3 2924:3 2937:1 2947:1 2950:3 2951:2 2981:1 2982:2 3029:1 3035:1 3036:1 3041:1 3050:2 3060:2 3069:1 3127:1 3146:2 3157:1 3159:7 3178:2 3180:1 3186:1 3190:1 3224:3 3249:2 3269:1 3338:1 3351:1 3352:4 3371:2 3383:1 3438:1 3440:1 3457:2 3469:1 3490:2 3510:2 3534:1 3550:1 3579:1 3608:6 3626:1 3774:1 3781:1 3788:1 3804:1 3829:1 3861:1 3868:2 3873:1 3898:9 3909:1 3912:2 3914:1 3937:1 4000:1 4001:1 4008:1 4013:1 4021:1 4038:1 4096:1 4099:1 4106:1 4110:1 4113:1 4129:1 4149:1 4152:1 4156:2 4163:1 4167:1 4179:2 4186:1 4200:2 4215:1 4221:1 4226:2 4229:1 4236:1 4241:1 4253:2 4272:1 4293:2 4315:2 4348:2 4349:3 4356:1 4393:1 4395:2 4398:1 4403:1 4422:1 4426:2 4464:1 4476:1 4500:1 4526:1 4547:1 4552:1 4557:1 4563:1 4567:1 4581:1 4587:1 4594:1 4610:1 4629:1 4669:4 4691:1 4696:1 4717:1 4720:1 4732:1 4749:2 4779:1 4787:2 4808:1 4834:1 4843:1 4869:2 4893:1 4899:1 4902:1 4904:1 4910:1 4911:2 4922:1 4938:1 4970:1 5034:1 5044:2 5056:1 5062:1 5066:1 5085:1 5105:1 5131:1 5138:2 5154:1 5174:1 5216:1 5267:5 5270:1 5279:1 5283:1 5316:1 5429:1 5430:1 5431:3 5433:2 5434:2 5436:1 5440:1 5441:1 5442:1 5446:1 5449:3 5450:1 5453:1 5454:2 5456:2 5465:3 5469:1 5517:1 5532:1 5548:2 5592:1 5638:1 5668:1 5720:1 5765:1 5771:1 5801:1 5807:1 5813:1 5850:1 5875:2 5889:1 5890:1 5915:1 5937:1 5953:2 5972:1 5988:1 5994:1 6017:1 6029:1 6100:1 6110:1 6115:2 6118:1 6133:1 6134:1 6136:2 6139:1 6143:1 6181:1 6188:2 6219:4 6223:1 6224:1 6237:2 6308:1 6327:1 6330:1 6345:1 6351:1 6361:1 6387:1 6400:1 6444:1 6466:1 6468:1 6488:3 6494:1 6495:1 6499:1 6502:1 6560:1 6561:1 6571:1 6581:1 6582:1 6586:7 6600:1 6603:1 6624:2 6655:1 6684:2 6706:1 6709:4 6720:1 6775:1 6799:1 6806:1 6809:1 6816:1 6822:1 6823:1 6834:1 6931:1 6949:1 6990:1 6993:3 6996:2 7008:1 7052:1 7061:1 7071:1 7131:1 7145:2 7227:1 7253:1 7256:1 7265:1 7284:3 7292:1 7295:1 7309:1 7315:1 7326:1 7348:1 7362:1 7405:2 7429:1 7454:1 7465:1 7473:1 7478:1 7504:1 7522:1 7529:1 7535:1 7561:1 7574:6 7578:2 7611:1 7621:1 7624:1 7625:1 7636:2 7640:1 7645:4 7656:1 7679:1 7680:1 7695:1 7701:1 7729:1 7737:1 7747:1 7759:1 7792:1 7805:1 7812:1 7853:1 7930:1 7984:1 7991:1 7999:1 8006:3 8010:1 8032:2 8036:1 8037:1 8061:1 8064:2 8081:1 8093:1 8108:2 8117:1 8134:1 8140:1 8168:1 8198:1 8218:2 8235:3 8236:6 8250:1 8257:3 8262:2 8287:2 8288:2 8290:1 8303:19 8306:1 8315:1 8326:4 8327:3 8331:2 8367:1 8374:1 8375:1 8397:1 8404:2 8405:2 8411:1 8421:1 8433:1 8459:1 8461:1 8480:2 8492:1 8514:1 8541:1 8557:1 8558:3 8588:1 8592:1 8681:1 8742:1 8765:1 8768:1 8777:1 8788:1 8815:1 8835:11 8843:1 8865:2 8870:1 8935:1 8937:1 8938:1 8943:1 8969:1 8974:1 8990:1 8994:2 8996:1 9001:1 9019:1 9031:3 9038:2 9044:1 9065:1 9066:1 9080:1 9088:1 9090:1 9104:1 9139:1 9142:1 9154:1 9205:1 9209:1 9211:1 9239:1 9255:3 9267:1 9271:1 9312:1 9319:1 9340:1 9345:1 9365:1 9393:1 9404:1 9436:1 9437:1 9449:1 9460:1 9485:1 9486:1 9501:1 9510:1 9533:1 9536:1 9537:1 9541:2 9577:2 9594:1 9606:1 9613:1 9618:1 9643:1 9644:1 9655:1 9663:1 9668:1 9670:1 9675:1 9687:1 9708:3 9719:1 9732:1 9768:1 9769:1 9778:1 9784:2 9794:2 9849:1 9853:2 9872:1 9878:1 9882:1 9884:1 9888:2 9898:1 9950:1 9960:1 9963:1 9969:1 9972:3 9999:1 10021:3 10050:1 10080:1 10089:1 10111:2 10122:1 10147:1 10156:1 10159:1 10197:1 10201:1 10220:5 10226:1 10264:1 10302:1 10330:1 10358:1 10363:1 10366:2 10369:1 10408:1 10437:1 10517:1 10530:1 10542:1 10557:1 10558:1 10576:1 10587:1 10606:1 10611:1 10612:1 10657:1 10663:1 10665:1 10674:2 10690:2 10702:3 10707:1 10738:2 10762:1 10764:1 10813:1 10841:1 10854:1 10861:2 10864:1 10901:1 10907:1 10911:7 10913:1 10914:1 10919:1 10949:1 10973:1 10980:1 11047:2 11049:1 11094:1 11109:1 11110:1 11112:1 11115:1 11117:1 11121:1 11129:1 11131:1 11136:2 11169:1 11181:4 11185:1 11187:1 11189:1 11194:1 11207:1 11210:1 11224:3 11244:1 11265:1 11283:1 11291:1 11300:1 11303:2 11319:1 11330:1 11348:1 11360:1 11365:1 11373:2 11390:3 11402:1 11432:1 11462:2 11485:1 11486:1 11498:1 11541:1 11562:1 11573:3 11597:1 11609:1 11624:2 11744:1 11767:1 11770:1 11791:1 11792:2 11801:2 11807:1 11816:1 11817:2 11819:5 11820:1 11827:1 11834:1 11838:1 11845:1 11849:1 11851:1 11868:1 11901:2 11910:1 11935:1 11937:1 11939:1 11983:1 11986:1 12007:1 12023:1 12026:1 12061:1 12118:1 12156:1 12192:1 12195:1 12219:1 12222:1 12241:1 12245:2 12250:1 12260:2 12262:1 12272:1 12285:2 12287:1 12293:1 12324:6 12356:1 12369:3 12383:2 12391:1 12429:1 12442:1 12449:2 12450:1 12464:1 12483:1 12497:1 12528:1 12544:1 12574:3 12587:1 12592:1 12604:1 12611:1 12614:1 12636:1 12652:3 12655:2 12683:1 12741:2 12799:1 12808:1 12829:1 12863:3 12883:1 12907:1 12918:1 12925:1 12931:1 12955:2 13003:1 13025:1 13030:1 13047:1 13052:1 13059:1 13118:1 13127:1 13132:2 13133:1 13134:1 13149:1 13155:2 13168:1 13172:1 13174:1 13182:1 13195:1 13235:1 13237:1 13264:1 13271:1 13291:1 13310:1 13327:1 13427:2 13456:1 13515:1 13531:1 13533:2 13552:1 13569:1 13601:1 13626:1 13654:1 13669:1 13718:5 13723:1 13777:1 13785:1 13838:2 13913:1 13920:1 13939:2 13975:1 13978:1 13998:1 14010:1 14026:1 14048:1 14058:1 14064:2 14110:1 14129:1 14146:1 14176:1 14199:1 14201:1 14204:2 14208:4 14224:1 14245:1 14262:1 14279:1 14284:1 14307:1 14316:1 14352:1 14355:1 14356:1 14369:1 14370:1 14381:2 14385:1 14403:1 14416:1 14417:1 14429:1 14437:1 14453:6 14462:1 14466:1 14503:1 14532:1 14603:3 14635:3 14658:1 14695:1 14722:1 14732:1 14734:1 14748:1 14749:1 14769:2 14773:1 14778:1 14782:5 14810:1 14818:1 14846:1 14894:1 14967:2 15010:1 15013:1 15022:1 15025:1 15032:1 15049:1 15074:1 15080:1 15098:6 15121:1 15123:2 15128:1 15163:1 15185:1 15202:1 15215:1 15236:1 15265:1 15312:1 15353:1 15379:3 15395:1 15401:1 15446:1 15468:1 15517:2 15518:1 15527:1 15540:1 15541:1 15550:1 15581:1 15592:1 15651:1 15675:1 15698:1 15712:2 15725:3 15729:1 15786:2 15842:1 15844:1 15851:1 15880:1 15922:2 15938:1 15941:2 15972:1 15973:1 16032:1 16078:2 16079:1 16157:1 16160:1 16168:1 16189:1 16231:1 16406:1 16435:1 16464:1 16476:1 16492:1 16511:1 16516:1 16520:1 16545:1 16551:1 16567:1 16585:1 16592:1 16627:1 16687:1 16701:1 16731:1 16739:2 16782:1 16807:1 16810:1 16869:1 16883:1 16897:1 16909:1 16913:2 16914:1 16926:1 16941:1 16945:1 16980:1 16999:1 17008:1 17052:1 17079:2 17089:1 17104:1 17105:2 17135:2 17151:1 17230:1 17234:1 17239:6 17256:1 17260:3 17285:1 17327:1 17344:1 17349:2 17360:2 17380:1 17383:1 17428:1 17435:1 17444:1 17445:1 17454:2 17482:1 17504:1 17511:1 17516:1 17518:1 17519:2 17520:2 17521:1 17527:2 17529:1 17531:1 17532:2 17537:1 17538:1 17592:1 17598:1 17627:1 17652:1 17655:1 17656:1 17692:1 17708:1 17762:1 17808:1 17868:1 17874:1 17884:1 17899:1 17902:1 17915:1 17916:1 17925:1 17930:3 17941:2 17966:1 17972:1 17985:1 17994:1 18008:1 18016:1 18071:3 18073:1 18096:3 18102:1 18171:1 18183:2 18191:1 18212:1 18225:1 18233:1 18307:3 18308:1 18341:1 18344:1 18361:1 18423:1 18425:1 18440:1 18443:1 18491:1 18494:1 18530:1 18533:1 18565:1 18577:2 18585:1 18597:1 18617:1 18662:1 18670:1 18731:1 18734:1 18755:1 18760:1 18779:1 18796:1 18801:1 18810:3 18814:2 18825:1 18852:1 18872:1 18885:1 18887:1 18898:1 18909:1 18910:1 18962:1 18982:1 19004:2 19033:1 19050:1 19070:1 19071:1 19101:1 19102:1 19103:1 19123:1 19130:1 19134:2 19171:1 19226:1 19236:1 19246:1 19337:1 19378:1 19390:1 19391:1 19411:2 19450:1 19514:2 19515:1 19538:1 19575:1 19593:1 19631:1 19651:1 19656:1 19670:1 19719:3 19780:1 19806:1 19826:6 19832:1 19833:1 19846:3 19847:1 19863:1 19872:1 19876:1 19897:1 19948:3 19971:1 19988:1 19993:1 20016:1 20023:2 20041:1 20053:1115 20064:1 20070:1 20086:1 20132:1 20134:1 20160:1 20264:1 20267:1 20274:1 20275:2 20294:1 20308:1 20320:1 20338:1 20375:1 20420:1 20425:2 20490:1 20528:2 20545:1 20557:1 20567:1 20605:1 20618:1 20642:1 20651:1 20660:1 20669:1 20679:1 20681:1 20701:2 20702:2 20715:2 20721:1 20724:1 20732:2 20757:1 20759:1 20768:1 20781:1 20787:2 20815:1 20833:1 20838:1 20864:2 20871:1 20884:1 20917:1 20926:3 20933:1 20935:1 20943:1 20956:4 20979:1 20999:1 21014:1 21022:1 21061:1 21062:1 21065:1 21098:1 21105:1 21106:1 21149:1 21150:1 21157:1 21168:1 21202:1 21219:1 21220:1 21239:2 21242:1 21249:1 21250:1 21254:1 21277:1 21281:1 21288:1 21295:1 21302:1 21322:1 21330:1 21331:1 21376:1 21379:1 21387:2 21446:1 21466:1 21478:1 21482:1 21483:1 21486:1 21501:1 21511:1 21523:1 21524:1 21544:3 21555:1 21571:1 21573:1 21587:1 21590:1 21591:1 21614:1 21627:1 21652:1 21654:1 21676:1 21678:1 21699:1 21711:2 21712:3 21727:2 21733:1 21756:1 21813:1 21822:1 21828:1 21853:1 21860:1 21861:1 21897:1 21940:1 21982:2 21990:1 22015:1 22018:1 22032:1 22066:6 22069:1 22085:1 22119:1 22140:1 22185:1 22202:2 22221:1 22231:1 22236:1 22244:1 22288:2 22298:1 22300:1 22314:2 22326:1 22337:1 22370:2 22390:1 22417:1 22452:2 22488:3 22492:1 22508:1 22519:3 22554:1 22567:1 22590:1 22602:1 22621:1 22628:1 22643:2 22665:1 22671:2 22685:1 22699:2 22723:1 22724:1 22741:1 22750:2 22760:1 22774:1 22779:1 22790:1 22811:1 22855:1 22857:1 22862:2 22866:2 22939:1 23017:1 23027:1 23031:1 23032:1 23043:1 23056:1 23070:1 23081:1 23131:1 23137:1 23158:1 23183:1 23190:1 23194:1 23195:2 23199:1 23210:1 23228:2 23229:1 23249:1 23251:2 23262:1 23271:3 23288:1 23298:1 23313:1 23326:1 23337:1 23345:1 23347:1 23349:1 23352:1 23355:1 23410:1 23418:1 23429:1 23437:2 23439:1 23466:1 23468:1 23497:1 23498:1 23500:2 23502:1 23503:1 23540:1 23576:1 23605:3 23614:1 23616:1 23617:1 23619:1 23625:1 23628:1 23645:3 23659:1 23674:1 23682:1 23693:2 23697:1 23721:1 23749:1 23796:1 23823:1 23853:1 23862:1 23887:1 23897:1 23900:1 23912:1 23922:3 23940:1 23943:1 23946:1 23969:1 23990:2 23993:1 23998:1 24001:1 24002:4 24016:1 24026:1 24030:2 24037:1 24044:1 24053:1 24073:1 24108:5 24111:1 24126:1 24150:1 24162:1 24172:2 24175:1 24184:1 24197:1 24221:1 24250:2 24290:1 24291:3 24294:1 24305:3 24309:2 24325:1 24329:1 24346:1 24370:1 24371:1 24376:2 24386:1 24408:1 24426:1 24432:1 24451:1 24502:1 24531:1 24549:1 24550:1 24558:1 24568:1 24578:2 24598:3 24608:1 24624:1 24685:1 24688:1 24706:1 24762:1 24776:1 24795:2 24806:1 24808:1 24814:1 24851:3 24883:2 24969:1 24996:2 25000:1 25008:4 25018:2 25027:1 25033:1 25036:1 25039:1 25056:1 25066:1 25080:1 25138:1 25172:1 25196:1 25199:2 25230:1 25232:1 25240:1 25246:1 25259:1 25273:1 25283:1 25286:1 25318:1 25320:1 25331:1 25343:1 25366:1 25368:1 25371:1 25388:1 25391:1 25396:1 25447:1 25450:3 25453:1 25472:2 25474:1 25477:1 25478:1 25537:1 25549:1 25633:1 25652:1 25727:1 25729:1 25739:1 25786:1 25793:1 25861:1 25898:1 25900:1 25909:1 25940:1 25963:2 25977:1 25989:1 26010:1 26022:3 26041:1 26075:1 26086:1 26097:1 26103:1 26111:1 26135:3 26157:2 26161:1 26167:1 26250:1 26253:1 26288:1 26292:1 26300:1 26304:2 26317:1 26319:1 26356:1 26365:1 26373:1 26374:1 26380:1 26391:1 26395:1 26399:1 26420:6 26445:1 26447:1 26479:1 26483:1 26488:3 26495:1 26512:1 26616:1 26651:1 26659:1 26668:1 26683:2 26696:1 26703:1 26758:1 26766:1 26794:1 26803:1 26833:1 26836:1 26857:2 26862:1 26875:2 26895:1 26929:6 26942:1 26964:1 26973:1 26974:1 26986:1 27012:1 27024:1 27048:2 27051:1 27059:1 27060:1 27078:1 27083:1 27088:1 27092:1 27112:1 27123:1 27164:1 27192:3 27193:1 27230:1 27233:1 27265:1 27272:1 27304:1 27312:1 27338:1 27340:1 27341:1 27368:1 27387:1 27428:1 27443:1 27448:2 27450:1 27465:1 27486:1 27514:1 27577:1 27590:1 27622:1 27627:2 27633:1 27662:1 27673:1 27701:2 27711:1 27729:1 27748:2 27750:1 27784:1 27786:1 27793:1 27796:1 27820:1 27854:1 27873:1 27927:1 27933:1 27947:1 27970:1 27977:1 28048:1 28049:1 28064:1 28071:1 28072:1 28076:1 28106:1 28131:1 28142:2 28153:1 28186:1 28191:1 28200:1 28202:1 28210:2 28227:1 28228:6 28239:1 28291:1 28304:1 28305:1 28322:1 28337:1 28356:2 28360:3 28368:3 28371:2 28373:4 28410:1 28497:1 28502:1 28551:1 28564:1 28568:1 28569:1 28573:2 28594:4 28595:1 28596:1 28627:1 28630:1 28637:1 28667:1 28691:1 28699:1 28727:1 28744:1 28768:1 28788:1 28816:2 28846:1 28857:1 28863:3 28878:1 28884:1 28921:1 28925:1 28931:1 28932:1 28945:1 28949:1 28963:1 28986:1 28988:2 28998:2 29014:1 29034:1 29093:1 29132:1 29158:1 29163:2 29172:1 29187:1 29191:1 29210:1 29227:1 29238:1 29244:1 29247:1 29259:1 29260:1 29281:1 29295:1 29318:1 29322:1 29373:3 29377:1 29404:1 29446:2 29453:1 29460:1 29465:1 29473:1 29482:1 29484:1 29494:1 29523:1 29524:1 29529:1 29530:1 29531:1 29536:1 29543:2 29556:1 29571:1 29574:1 29580:1 29613:1 29615:1 29641:1 29663:1 29766:1 29798:1 29804:1 29805:2 29849:1 29891:1 29921:1 29952:1 29969:1 30009:1 30019:1 30034:1 30110:2 30114:1 30133:1 30134:3 30138:1 30146:1 30151:1 30152:1 30169:1 30171:1 30180:1 30181:2 30203:1 30220:1 30228:2 30229:1 30238:3 30251:1 30252:1 30261:2 30275:1 30279:1 30283:1 30332:1 30336:1 30362:1 30377:1 30392:2 30397:4 30406:3 30411:1 30438:4 30453:1 30471:1 30491:1 30571:1 30574:1 30583:1 30604:1 30614:1 30629:1 30634:1 30635:1 30645:1 30646:2 30651:1 30673:2 30711:1 30717:5 30730:1 30786:3 30882:1 30916:1 30926:1 31028:1 31043:1 31046:1 31053:2 31055:1 31072:1 31074:1 31082:1 31103:1 31136:1 31152:1 31194:2 31204:2 31233:1 31239:2 31257:1 31284:1 31296:1 31301:1 31308:1 31313:2 31345:1 31351:1 31405:1 31431:1 31443:1 31473:1 31478:3 31505:1 31516:1 31519:1 31542:1 31577:1 31580:2 31599:1 31600:1 31606:1 31608:1 31615:1 31617:1 31618:1 31623:1 31677:2 1 13:1 62:1 65:1 72:1 106:1 141:1 155:1 156:3 161:1 173:1 188:1 190:1 207:2 263:1 274:1 278:4 297:2 307:1 328:1 354:1 371:3 373:2 378:3 387:3 397:2 416:1 430:1 438:1 454:5 458:2 471:1 490:1 526:1 527:1 620:1 634:2 659:1 665:1 678:1 693:1 767:1 826:1 829:1 856:1 863:1 871:1 900:3 906:1 918:3 927:1 942:7 943:2 952:3 975:1 993:4 995:2 998:6 1001:1 1004:2 1018:2 1033:1 1042:2 1044:3 1055:1 1095:2 1121:1 1142:1 1159:1 1275:3 1277:2 1285:1 1295:1 1298:1 1312:1 1328:1 1332:1 1356:2 1386:1 1389:1 1417:1 1433:1 1451:1 1468:1 1470:1 1485:1 1500:1 1530:1 1540:1 1565:1 1584:1 1595:1 1602:1 1613:1 1629:1 1632:1 1647:1 1686:3 1694:4 1696:2 1713:1 1743:1 1754:1 1767:1 1786:1 1791:2 1804:2 1818:1 1820:1 1825:1 1835:1 1839:1 1854:1 1863:1 1871:1 1881:1 1882:1 1897:1 1920:2 1945:3 1965:1 1971:1 1974:2 1978:1 1979:1 1993:2 1994:5 2027:2 2030:2 2043:1 2065:2 2128:1 2129:1 2143:2 2192:1 2198:1 2214:1 2215:2 2220:1 2222:1 2226:1 2230:1 2243:1 2272:1 2283:1 2296:1 2301:1 2306:1 2308:1 2323:1 2349:1 2354:7 2361:1 2370:1 2376:1 2423:1 2436:2 2439:1 2458:1 2464:2 2477:1 2478:1 2485:2 2487:1 2494:2 2495:2 2497:1 2501:1 2502:1 2508:3 2509:2 2514:5 2515:2 2517:1 2528:1 2565:1 2568:1 2571:3 2595:1 2603:1 2617:1 2618:1 2623:1 2637:1 2639:1 2657:1 2695:1 2706:1 2718:1 2722:1 2739:1 2765:1 2771:1 2776:1 2779:1 2800:1 2803:2 2806:1 2808:3 2813:1 2814:1 2824:1 2827:1 2835:1 2849:3 2851:1 2857:1 2873:2 2881:1 2884:1 2897:2 2906:1 2913:1 2916:3 2924:3 2937:1 2947:1 2950:3 2951:2 2981:1 2982:2 3029:1 3034:1 3035:1 3036:1 3041:1 3050:2 3056:1 3060:3 3069:1 3127:1 3146:2 3157:1 3159:7 3178:2 3180:1 3186:1 3190:1 3199:1 3224:4 3246:2 3249:2 3269:1 3338:1 3351:1 3352:4 3371:2 3383:1 3438:1 3440:1 3457:2 3469:1 3490:2 3510:2 3524:1 3534:1 3550:1 3579:1 3608:6 3626:1 3774:1 3781:1 3784:1 3788:1 3804:1 3829:1 3861:1 3868:2 3873:1 3898:10 3909:1 3912:2 3914:1 3915:1 3937:1 4000:1 4001:1 4008:1 4013:2 4021:1 4038:1 4096:1 4099:1 4106:1 4110:1 4113:1 4129:1 4149:1 4152:1 4156:2 4163:1 4167:1 4179:2 4186:1 4200:2 4215:1 4221:1 4226:2 4229:1 4236:1 4241:1 4253:2 4272:1 4293:2 4315:2 4348:2 4349:3 4356:1 4393:1 4395:2 4398:1 4403:1 4422:1 4426:2 4464:1 4476:1 4500:1 4526:1 4547:2 4552:1 4557:1 4563:1 4567:1 4581:1 4587:1 4594:1 4610:1 4629:1 4669:4 4691:1 4696:1 4717:1 4720:1 4732:1 4749:2 4779:1 4787:2 4808:2 4834:1 4843:1 4869:2 4893:1 4899:1 4902:1 4904:1 4910:1 4911:2 4922:1 4938:1 4970:1 5001:1 5034:1 5044:2 5056:1 5062:1 5066:1 5085:1 5105:1 5131:1 5138:2 5154:1 5174:1 5216:1 5267:6 5270:1 5279:1 5283:1 5316:1 5329:1 5339:1 5429:1 5430:1 5431:3 5433:2 5434:2 5436:1 5440:1 5441:1 5442:1 5446:1 5449:3 5450:2 5453:1 5454:2 5456:2 5465:3 5469:1 5517:1 5532:1 5548:2 5592:1 5638:1 5668:1 5720:1 5765:1 5771:1 5801:1 5807:1 5813:1 5850:1 5875:2 5889:1 5890:1 5915:1 5937:1 5953:2 5972:1 5988:1 5994:1 6017:1 6029:1 6100:1 6110:1 6115:2 6118:1 6133:2 6134:1 6136:2 6139:1 6143:1 6156:1 6181:1 6188:2 6219:4 6223:1 6224:1 6237:2 6308:1 6327:1 6330:1 6345:1 6351:1 6361:1 6387:1 6400:1 6433:1 6444:1 6466:2 6468:1 6488:3 6494:1 6495:1 6499:1 6502:1 6560:1 6561:1 6571:1 6581:1 6582:1 6586:7 6600:1 6603:1 6624:2 6655:1 6684:2 6706:1 6709:4 6720:1 6775:1 6799:1 6806:1 6809:1 6816:1 6822:1 6823:1 6834:2 6835:1 6931:1 6949:1 6990:1 6993:3 6996:2 7008:1 7052:1 7061:1 7071:1 7097:1 7106:1 7131:1 7145:2 7153:1 7227:1 7253:1 7256:1 7265:1 7284:3 7292:1 7295:1 7309:1 7315:1 7326:1 7348:1 7362:1 7405:2 7429:1 7454:1 7465:1 7473:1 7478:1 7504:1 7522:1 7529:1 7535:1 7561:1 7574:6 7578:2 7611:1 7621:1 7624:1 7625:1 7636:2 7640:1 7645:4 7651:1 7656:1 7679:1 7680:1 7695:1 7701:1 7729:1 7737:1 7747:2 7759:1 7792:1 7805:1 7812:1 7853:1 7930:1 7984:1 7991:1 7999:1 8004:1 8006:3 8010:1 8032:2 8036:2 8037:1 8061:1 8064:2 8081:1 8093:1 8108:2 8117:1 8134:1 8140:1 8168:1 8198:1 8218:2 8235:3 8236:6 8250:1 8257:3 8258:1 8262:2 8263:1 8287:2 8288:2 8290:1 8303:22 8306:1 8315:1 8323:1 8326:4 8327:3 8331:2 8367:1 8374:1 8375:1 8384:1 8397:1 8404:2 8405:2 8411:1 8421:1 8433:1 8459:1 8461:1 8480:2 8486:1 8492:1 8514:1 8541:1 8557:1 8558:3 8588:1 8592:1 8681:1 8742:1 8765:1 8768:1 8777:1 8788:1 8815:1 8835:12 8843:1 8865:2 8870:1 8935:1 8937:1 8938:1 8943:1 8969:1 8974:1 8990:2 8994:2 8996:1 9001:1 9019:1 9031:4 9038:2 9044:1 9065:2 9066:1 9080:1 9088:1 9090:1 9104:1 9129:1 9139:1 9142:1 9154:1 9205:1 9209:1 9211:1 9239:1 9255:3 9267:1 9271:1 9312:1 9319:1 9340:1 9345:1 9365:1 9393:1 9404:1 9436:1 9437:1 9449:1 9460:1 9485:1 9486:1 9501:1 9510:1 9533:1 9536:1 9537:1 9541:2 9577:2 9594:1 9606:1 9613:1 9618:1 9643:1 9644:1 9655:1 9662:1 9663:1 9668:1 9670:1 9675:1 9687:1 9708:3 9719:1 9732:1 9768:1 9769:2 9778:1 9784:2 9794:2 9849:1 9853:2 9872:1 9878:1 9882:1 9884:1 9888:2 9898:1 9950:1 9960:1 9963:1 9969:1 9972:3 9999:1 10021:3 10050:1 10080:1 10089:1 10111:2 10122:1 10147:1 10156:1 10159:1 10197:1 10201:1 10220:6 10226:1 10264:1 10302:1 10330:1 10358:1 10363:1 10366:2 10369:1 10408:1 10437:1 10517:1 10530:1 10542:1 10557:1 10558:1 10576:1 10587:1 10606:1 10611:1 10612:1 10657:1 10663:1 10665:1 10674:2 10690:2 10702:3 10707:1 10738:2 10762:1 10764:1 10813:1 10818:1 10841:1 10854:1 10861:3 10864:1 10901:1 10907:1 10911:7 10913:1 10914:1 10919:1 10949:1 10973:1 10980:1 11040:1 11047:2 11049:1 11094:1 11109:1 11110:1 11112:1 11115:1 11117:1 11121:1 11129:1 11131:1 11136:2 11169:1 11181:4 11185:1 11187:1 11189:1 11194:1 11196:1 11207:1 11210:1 11224:3 11244:1 11265:1 11283:1 11291:1 11300:1 11303:2 11319:1 11330:1 11348:1 11360:1 11365:1 11373:2 11376:1 11389:1 11390:3 11402:1 11419:1 11432:1 11462:3 11463:1 11485:1 11486:1 11498:1 11541:1 11562:1 11573:3 11588:1 11597:1 11609:1 11624:2 11744:1 11767:1 11770:1 11791:1 11792:2 11801:2 11807:1 11816:1 11817:2 11819:5 11820:1 11827:1 11834:1 11838:1 11845:2 11849:1 11851:1 11868:1 11901:2 11910:1 11935:1 11937:1 11939:1 11983:1 11986:1 12007:1 12023:1 12026:1 12061:1 12118:1 12156:1 12192:1 12195:1 12219:1 12222:1 12241:1 12245:2 12250:1 12260:2 12262:1 12264:1 12272:1 12285:2 12287:1 12293:1 12324:6 12356:1 12369:3 12383:2 12391:1 12418:1 12429:1 12442:1 12449:2 12450:1 12464:1 12483:1 12497:1 12528:1 12544:1 12574:3 12579:1 12587:1 12592:1 12604:1 12611:1 12614:1 12624:1 12636:1 12652:3 12655:2 12683:1 12741:2 12799:1 12808:1 12829:1 12863:3 12883:1 12907:1 12918:1 12925:1 12931:1 12955:2 13003:1 13025:1 13030:1 13047:1 13052:1 13059:1 13118:1 13125:1 13127:1 13132:3 13133:1 13134:1 13149:1 13155:2 13168:1 13172:1 13174:1 13182:1 13195:1 13235:1 13237:1 13264:1 13271:1 13291:1 13310:1 13327:1 13427:2 13456:1 13515:1 13531:1 13533:2 13534:1 13552:1 13569:1 13601:1 13626:1 13654:1 13663:1 13669:1 13718:5 13723:1 13777:1 13785:2 13817:1 13838:2 13913:1 13920:1 13939:2 13975:1 13978:1 13998:1 14000:1 14010:1 14026:1 14048:1 14058:1 14064:2 14110:1 14129:1 14146:1 14176:1 14199:1 14201:1 14204:2 14208:4 14224:1 14245:1 14262:1 14279:1 14284:1 14307:1 14314:1 14316:1 14352:1 14355:1 14356:1 14369:2 14370:1 14381:2 14385:1 14403:1 14416:1 14417:1 14429:1 14437:1 14453:6 14462:1 14466:1 14503:1 14504:1 14532:1 14603:3 14635:4 14658:1 14670:1 14695:2 14722:1 14732:1 14734:1 14748:1 14749:1 14769:2 14773:1 14778:1 14782:6 14783:1 14810:1 14818:1 14846:1 14894:1 14967:2 14968:1 15010:1 15013:1 15022:1 15025:1 15032:1 15049:1 15074:1 15080:1 15098:7 15121:1 15123:2 15128:1 15163:1 15185:1 15202:1 15215:1 15236:1 15265:1 15266:1 15312:1 15353:1 15362:1 15379:3 15395:1 15401:1 15446:1 15468:1 15517:2 15518:1 15527:1 15540:1 15541:1 15550:1 15581:1 15592:1 15651:1 15675:1 15698:1 15712:2 15714:1 15725:3 15729:2 15786:2 15842:1 15844:1 15851:1 15880:1 15922:2 15938:1 15941:2 15972:1 15973:1 16032:1 16078:2 16079:1 16157:1 16160:1 16168:1 16189:1 16231:1 16406:1 16435:1 16464:1 16476:1 16479:1 16492:1 16511:1 16516:1 16520:1 16545:1 16551:1 16567:1 16585:1 16592:1 16627:1 16687:1 16701:1 16731:1 16739:2 16752:1 16782:1 16807:1 16810:1 16869:1 16883:1 16897:1 16909:1 16913:2 16914:1 16926:1 16941:1 16945:1 16980:1 16999:1 17008:1 17052:1 17079:2 17089:1 17104:1 17105:2 17135:2 17151:1 17200:1 17230:1 17234:1 17239:6 17256:1 17260:3 17285:1 17327:1 17344:1 17349:2 17360:2 17380:2 17383:1 17428:1 17435:1 17444:1 17445:1 17454:2 17482:1 17504:1 17511:1 17516:1 17518:2 17519:2 17520:2 17521:1 17527:2 17529:1 17531:1 17532:2 17537:1 17538:1 17592:1 17598:1 17627:1 17652:1 17655:1 17656:1 17692:1 17708:1 17709:1 17762:1 17808:1 17827:1 17868:1 17874:1 17884:1 17899:1 17902:1 17915:1 17916:1 17925:1 17930:3 17941:2 17966:1 17972:1 17980:1 17985:1 17994:1 18008:1 18016:1 18071:3 18073:1 18096:3 18102:1 18171:1 18183:2 18191:1 18201:1 18212:1 18225:1 18233:1 18236:1 18307:3 18308:1 18341:1 18344:1 18361:1 18423:1 18425:1 18440:1 18443:1 18491:1 18494:1 18517:1 18530:1 18533:1 18565:1 18577:2 18585:1 18597:1 18617:1 18662:1 18670:1 18731:1 18734:1 18755:1 18760:1 18779:1 18796:1 18801:1 18810:3 18814:2 18819:1 18825:1 18852:1 18872:1 18885:1 18887:1 18898:1 18909:1 18910:1 18962:1 18982:1 18983:1 19004:2 19033:1 19047:1 19050:1 19070:1 19071:1 19101:1 19102:1 19103:1 19123:1 19130:1 19134:2 19171:1 19226:1 19236:1 19246:1 19337:1 19376:1 19378:1 19390:1 19391:1 19411:2 19450:1 19514:2 19515:1 19538:1 19575:1 19593:1 19631:1 19651:1 19656:1 19670:1 19719:3 19780:1 19806:1 19826:7 19832:1 19833:1 19834:1 19846:3 19847:1 19863:1 19872:1 19876:1 19897:1 19948:3 19971:1 19988:1 19993:1 20016:1 20020:1 20023:2 20041:1 20053:1194 20064:1 20070:1 20086:1 20132:1 20134:1 20160:1 20264:1 20267:1 20274:1 20275:2 20294:1 20308:1 20320:1 20338:1 20375:1 20420:1 20425:2 20490:1 20528:2 20545:1 20546:1 20557:1 20567:1 20605:1 20618:1 20642:1 20651:1 20660:1 20669:1 20679:1 20681:1 20701:2 20702:2 20715:2 20721:1 20724:1 20732:2 20757:1 20759:1 20768:1 20781:1 20787:2 20815:1 20833:1 20838:1 20864:2 20871:1 20884:1 20917:1 20926:3 20933:1 20935:1 20943:1 20956:4 20979:1 20999:1 21013:1 21014:1 21022:1 21061:1 21062:1 21065:1 21098:1 21105:1 21106:1 21149:1 21150:1 21157:1 21168:1 21202:1 21219:1 21220:1 21239:2 21242:1 21249:1 21250:1 21254:1 21277:1 21281:1 21288:1 21295:1 21302:1 21322:1 21330:1 21331:1 21376:1 21379:1 21387:2 21446:1 21466:1 21478:1 21482:1 21483:1 21486:1 21501:1 21511:1 21519:1 21523:1 21524:1 21544:3 21555:1 21571:1 21573:1 21587:1 21590:1 21591:1 21614:1 21627:1 21633:1 21652:1 21654:1 21676:1 21678:1 21699:1 21711:2 21712:4 21727:2 21733:1 21756:1 21813:1 21822:1 21828:1 21853:1 21860:1 21861:1 21897:1 21940:2 21982:2 21990:1 22001:1 22015:1 22018:1 22032:1 22066:6 22069:1 22085:1 22119:1 22140:1 22185:1 22202:2 22221:1 22231:1 22236:1 22244:1 22288:3 22298:2 22300:1 22314:2 22326:1 22337:1 22370:2 22390:1 22417:1 22452:2 22488:3 22492:1 22508:2 22519:3 22554:1 22567:1 22590:1 22602:1 22621:1 22628:1 22632:1 22643:2 22665:1 22671:2 22685:1 22699:2 22723:1 22724:1 22726:1 22741:1 22750:2 22760:1 22774:1 22779:1 22790:1 22811:1 22855:1 22857:1 22862:2 22866:2 22939:1 23017:1 23027:1 23031:1 23032:1 23043:1 23056:1 23063:1 23070:2 23071:1 23081:1 23131:1 23137:1 23158:1 23183:1 23190:1 23194:1 23195:2 23199:1 23210:1 23228:2 23229:1 23238:1 23249:1 23251:2 23262:1 23271:3 23288:1 23298:1 23313:1 23326:1 23337:1 23345:1 23347:1 23349:1 23352:1 23355:1 23377:1 23410:1 23418:1 23426:1 23429:1 23437:2 23439:1 23452:1 23466:1 23468:1 23497:1 23498:1 23500:2 23502:1 23503:1 23540:1 23576:1 23605:3 23614:1 23616:1 23617:1 23619:1 23625:1 23628:1 23645:3 23659:1 23674:1 23682:1 23693:2 23697:1 23721:1 23749:1 23796:1 23823:1 23853:1 23862:1 23887:1 23897:1 23900:1 23912:1 23922:3 23940:1 23943:1 23946:1 23969:1 23990:2 23993:1 23998:1 24001:1 24002:4 24010:1 24016:1 24026:1 24030:2 24037:1 24044:1 24053:1 24073:1 24108:6 24111:1 24126:1 24150:1 24162:1 24172:2 24175:1 24184:1 24197:1 24221:1 24248:1 24250:2 24290:1 24291:3 24294:1 24305:3 24309:2 24325:1 24329:1 24346:1 24349:1 24370:1 24371:1 24376:2 24386:1 24408:1 24426:1 24432:1 24451:1 24502:1 24531:1 24549:1 24550:1 24558:1 24568:1 24578:2 24585:1 24598:3 24608:1 24624:1 24685:2 24688:1 24706:1 24762:1 24776:1 24795:2 24806:1 24808:1 24814:1 24851:3 24883:2 24969:1 24996:3 25000:1 25008:4 25018:2 25027:1 25033:1 25036:1 25039:1 25054:1 25056:1 25066:1 25080:2 25138:1 25172:1 25196:1 25199:2 25230:1 25232:1 25240:1 25246:1 25259:1 25273:1 25283:1 25286:1 25318:1 25320:1 25331:1 25343:1 25366:1 25368:1 25371:1 25388:1 25391:1 25396:1 25447:1 25450:3 25453:1 25458:1 25472:2 25474:1 25477:1 25478:1 25481:1 25537:1 25549:1 25633:1 25652:1 25727:1 25729:1 25739:1 25786:1 25793:1 25861:1 25898:1 25900:1 25909:1 25940:1 25963:2 25977:1 25989:1 26010:1 26022:4 26041:1 26075:1 26081:1 26086:1 26097:1 26103:1 26111:1 26135:3 26157:2 26161:1 26167:1 26250:1 26253:1 26288:1 26292:1 26300:1 26304:3 26317:1 26319:1 26356:2 26365:1 26373:1 26374:1 26380:1 26391:1 26395:1 26399:1 26420:6 26445:1 26447:1 26479:1 26483:1 26488:3 26495:1 26512:1 26616:1 26651:1 26659:1 26668:1 26683:2 26696:1 26703:1 26758:1 26766:1 26776:1 26794:1 26803:1 26833:1 26836:1 26857:2 26862:1 26875:2 26895:1 26901:1 26929:6 26942:1 26964:1 26973:1 26974:1 26986:1 27012:1 27024:1 27048:2 27051:1 27059:1 27060:1 27078:1 27083:1 27088:1 27092:1 27112:1 27123:1 27164:1 27192:3 27193:1 27230:1 27233:1 27265:1 27272:1 27304:1 27312:1 27338:1 27340:2 27341:1 27368:1 27387:1 27428:1 27443:1 27448:2 27450:1 27465:1 27486:1 27514:1 27577:1 27590:1 27622:1 27627:2 27633:1 27646:1 27662:1 27673:1 27701:3 27711:1 27729:1 27748:2 27750:1 27784:1 27786:1 27793:1 27796:1 27820:1 27854:1 27873:1 27927:1 27933:1 27947:1 27970:1 27977:1 28048:1 28049:1 28064:1 28071:1 28072:1 28076:1 28106:1 28131:1 28142:2 28153:1 28186:1 28191:1 28200:1 28202:1 28210:2 28227:1 28228:7 28239:1 28291:2 28304:1 28305:1 28322:1 28337:1 28356:2 28360:3 28368:3 28371:2 28373:4 28410:1 28497:1 28502:1 28551:1 28564:1 28568:1 28569:1 28573:2 28594:4 28595:1 28596:1 28627:1 28630:1 28637:1 28667:1 28691:1 28699:1 28727:1 28744:1 28768:1 28788:1 28816:2 28846:1 28857:1 28863:3 28878:1 28884:1 28921:1 28925:1 28931:1 28932:1 28945:1 28949:1 28963:1 28986:1 28988:2 28998:2 29014:1 29034:1 29093:1 29132:1 29158:1 29163:2 29172:1 29187:1 29191:2 29210:1 29227:1 29238:1 29244:1 29247:1 29259:1 29260:1 29281:1 29295:1 29318:1 29322:1 29373:3 29377:1 29404:1 29446:2 29453:1 29460:1 29465:1 29473:1 29482:1 29484:1 29494:1 29523:1 29524:1 29529:1 29530:1 29531:1 29536:1 29543:2 29556:1 29566:1 29571:1 29574:1 29579:1 29580:1 29613:1 29615:1 29641:1 29663:1 29766:1 29798:1 29804:1 29805:2 29849:1 29891:1 29921:1 29952:1 29969:1 30009:1 30019:1 30034:1 30039:1 30110:2 30114:1 30133:1 30134:3 30138:1 30146:1 30151:1 30152:1 30169:1 30171:1 30180:1 30181:3 30203:1 30220:1 30226:1 30228:2 30229:1 30238:3 30251:1 30252:1 30261:3 30275:1 30279:1 30283:1 30332:1 30336:1 30362:1 30377:1 30392:2 30397:4 30406:3 30411:1 30438:4 30453:1 30470:1 30471:1 30491:1 30525:1 30571:1 30574:1 30583:1 30604:1 30614:1 30629:1 30634:1 30635:1 30645:1 30646:2 30651:1 30673:3 30711:1 30717:5 30730:1 30786:3 30882:1 30916:1 30926:1 31028:1 31043:1 31046:1 31053:2 31055:1 31072:1 31074:1 31082:1 31103:1 31136:1 31152:1 31194:3 31204:2 31233:1 31239:2 31257:1 31284:1 31296:1 31301:1 31308:1 31313:2 31345:1 31348:1 31351:2 31405:1 31431:1 31443:1 31473:1 31478:3 31484:1 31505:1 31516:1 31519:1 31542:1 31577:1 31580:2 31599:1 31600:1 31606:1 31608:1 31615:1 31617:1 31618:1 31623:1 31677:2 1 13:1 62:1 65:1 72:1 106:1 141:1 155:1 156:3 161:1 173:1 188:1 190:1 207:3 231:1 263:1 274:1 278:4 297:2 307:1 328:1 354:1 371:3 373:2 378:3 387:3 397:2 416:1 430:1 438:1 454:5 458:2 471:1 490:1 526:1 527:1 620:1 634:2 659:1 665:1 678:1 693:1 767:1 815:1 826:1 829:1 856:1 863:1 871:1 900:3 906:1 911:1 918:3 927:1 942:7 943:2 952:3 975:1 993:4 995:2 998:6 1001:1 1004:2 1018:2 1033:1 1042:3 1044:3 1055:1 1095:2 1121:1 1142:1 1159:1 1178:1 1275:3 1277:2 1285:1 1295:1 1298:1 1312:1 1328:1 1332:1 1356:2 1386:1 1389:1 1417:1 1433:1 1451:1 1468:1 1470:1 1485:1 1500:1 1530:1 1540:1 1565:1 1584:1 1595:1 1602:1 1613:1 1629:1 1632:1 1647:1 1686:3 1694:4 1696:2 1713:1 1743:1 1754:1 1767:1 1783:1 1786:1 1791:2 1804:2 1818:1 1820:1 1825:1 1835:1 1839:1 1854:1 1863:1 1867:1 1871:1 1881:1 1882:1 1886:2 1897:1 1920:2 1945:3 1965:1 1971:1 1974:2 1978:1 1979:1 1993:2 1994:5 2027:2 2030:2 2043:1 2065:2 2074:1 2121:1 2128:1 2129:1 2143:2 2192:1 2198:1 2214:1 2215:2 2220:1 2222:1 2226:1 2230:1 2243:1 2272:1 2283:1 2296:1 2301:1 2306:1 2308:1 2323:1 2349:1 2354:7 2361:1 2370:1 2376:1 2423:2 2436:2 2439:1 2450:1 2458:1 2464:2 2477:1 2478:1 2485:2 2487:1 2491:1 2494:2 2495:2 2497:1 2501:1 2502:1 2508:3 2509:2 2514:5 2515:2 2517:1 2528:1 2565:1 2568:1 2571:3 2595:1 2603:1 2617:1 2618:1 2623:1 2637:1 2639:1 2657:1 2695:1 2706:1 2718:1 2722:1 2739:1 2765:1 2771:1 2776:1 2779:1 2800:1 2803:2 2806:1 2808:4 2813:1 2814:1 2824:1 2827:1 2835:1 2849:4 2851:1 2857:1 2873:2 2881:1 2884:1 2897:2 2906:1 2913:1 2916:4 2924:3 2937:1 2947:1 2950:3 2951:2 2967:1 2981:1 2982:2 3029:1 3034:1 3035:1 3036:2 3041:1 3050:2 3056:1 3060:3 3069:1 3127:1 3146:2 3157:1 3159:9 3178:2 3180:1 3186:1 3190:1 3199:1 3203:1 3224:5 3246:2 3249:2 3269:1 3338:1 3351:1 3352:4 3371:2 3377:1 3383:1 3438:1 3440:1 3457:2 3469:1 3490:2 3510:2 3524:1 3534:1 3550:1 3579:1 3580:1 3608:6 3626:1 3663:1 3774:1 3781:1 3784:1 3788:1 3804:1 3829:1 3861:1 3868:2 3873:1 3898:10 3909:1 3912:2 3914:1 3915:1 3937:1 3942:1 4000:1 4001:1 4008:1 4013:2 4021:1 4038:1 4096:1 4099:1 4106:1 4110:1 4113:1 4129:1 4149:1 4152:1 4156:2 4163:1 4167:1 4179:2 4186:1 4200:2 4215:1 4221:1 4226:2 4229:1 4236:1 4241:1 4253:2 4272:1 4293:2 4315:2 4348:3 4349:3 4356:1 4393:1 4395:2 4398:1 4403:1 4422:1 4426:2 4464:1 4476:1 4500:1 4526:1 4547:2 4552:1 4557:1 4563:1 4567:1 4581:1 4587:1 4594:1 4610:1 4629:1 4669:6 4691:1 4696:1 4712:1 4717:1 4720:1 4732:1 4749:2 4779:1 4787:2 4808:2 4834:1 4843:1 4869:2 4893:1 4899:1 4902:1 4904:1 4910:1 4911:2 4922:1 4938:1 4970:1 5001:1 5034:2 5044:2 5056:1 5062:1 5066:1 5085:1 5105:1 5131:1 5138:2 5154:1 5167:1 5174:1 5216:1 5267:7 5270:1 5279:1 5282:1 5283:1 5316:1 5329:1 5339:1 5429:1 5430:1 5431:3 5433:2 5434:2 5436:1 5440:1 5441:1 5442:1 5446:1 5449:3 5450:2 5453:1 5454:2 5456:2 5465:3 5469:1 5517:1 5532:1 5548:2 5575:1 5592:1 5638:1 5668:1 5720:1 5765:1 5771:1 5801:1 5807:1 5813:1 5850:1 5875:2 5889:1 5890:1 5915:1 5917:1 5937:1 5953:2 5959:1 5972:1 5988:1 5994:1 6017:1 6029:1 6100:1 6110:1 6115:2 6118:1 6133:2 6134:1 6136:2 6139:1 6143:1 6144:1 6156:1 6181:1 6188:2 6219:4 6223:1 6224:1 6237:2 6308:1 6327:1 6330:1 6345:1 6351:1 6361:1 6387:1 6400:1 6433:1 6444:1 6466:2 6468:1 6488:3 6494:1 6495:1 6499:1 6502:1 6560:1 6561:1 6571:1 6581:1 6582:1 6586:8 6600:1 6603:1 6624:2 6655:1 6684:2 6706:1 6709:5 6720:1 6769:1 6775:1 6799:1 6806:1 6809:1 6814:1 6816:1 6822:1 6823:1 6825:1 6834:2 6835:1 6884:1 6931:1 6949:1 6990:1 6993:3 6996:2 7008:1 7040:1 7052:1 7061:1 7071:1 7097:1 7106:1 7131:1 7145:2 7153:1 7182:1 7227:1 7253:1 7256:1 7265:1 7284:4 7292:1 7295:1 7309:1 7315:1 7326:1 7348:1 7362:1 7405:2 7429:1 7454:1 7465:1 7473:1 7478:2 7504:1 7522:1 7529:1 7535:1 7561:1 7574:6 7578:2 7611:1 7621:1 7624:1 7625:1 7636:2 7640:1 7645:4 7651:1 7656:1 7679:1 7680:1 7681:1 7695:1 7701:1 7729:1 7737:1 7747:2 7759:1 7792:1 7805:1 7812:1 7853:1 7930:1 7933:1 7984:1 7991:1 7999:1 8004:1 8006:3 8010:1 8032:4 8036:2 8037:1 8061:1 8064:2 8074:1 8081:1 8093:1 8108:2 8117:1 8134:1 8140:1 8168:1 8198:1 8218:2 8235:3 8236:6 8250:1 8257:3 8258:1 8262:2 8263:1 8287:2 8288:2 8290:1 8303:24 8306:1 8315:1 8323:1 8326:5 8327:3 8331:2 8367:1 8374:1 8375:1 8384:1 8397:1 8404:2 8405:2 8411:1 8421:1 8433:1 8459:1 8461:1 8480:2 8486:1 8492:1 8514:1 8541:1 8557:1 8558:3 8588:1 8592:1 8681:1 8722:1 8742:1 8765:1 8768:1 8777:1 8788:1 8815:1 8835:12 8843:1 8865:2 8870:1 8935:1 8937:1 8938:1 8943:1 8969:1 8974:1 8990:2 8994:2 8996:1 9001:1 9019:1 9031:4 9038:2 9044:1 9065:2 9066:1 9080:1 9088:1 9090:1 9104:1 9129:1 9139:1 9142:1 9154:1 9204:1 9205:1 9209:1 9211:1 9239:1 9255:3 9267:1 9271:1 9312:1 9319:1 9340:1 9345:1 9365:1 9393:1 9404:1 9436:1 9437:1 9449:1 9450:1 9460:1 9485:1 9486:1 9501:1 9510:1 9533:1 9536:1 9537:1 9541:2 9577:2 9586:1 9594:2 9606:1 9613:1 9618:1 9643:1 9644:1 9655:1 9662:2 9663:1 9668:1 9670:1 9675:1 9687:1 9708:3 9719:1 9732:1 9768:1 9769:3 9778:1 9784:2 9794:2 9844:1 9849:1 9853:2 9872:1 9878:1 9882:1 9884:1 9888:2 9898:1 9950:1 9960:1 9963:1 9969:1 9972:3 9996:1 9999:1 10021:3 10050:1 10080:1 10089:1 10111:2 10122:1 10147:1 10156:1 10159:1 10183:1 10197:1 10201:1 10220:6 10226:1 10264:1 10298:1 10302:1 10330:1 10358:1 10363:1 10365:1 10366:2 10369:1 10408:1 10437:1 10439:1 10494:1 10517:1 10530:2 10542:1 10557:1 10558:1 10576:1 10587:1 10606:1 10611:1 10612:1 10657:1 10663:1 10665:1 10674:2 10690:2 10702:3 10707:1 10738:2 10762:1 10764:1 10813:1 10818:1 10841:1 10854:1 10861:3 10864:1 10901:1 10907:1 10911:8 10913:1 10914:1 10919:1 10949:1 10973:1 10980:1 11040:1 11047:2 11049:1 11094:1 11109:1 11110:1 11112:1 11115:1 11117:1 11121:1 11129:1 11131:1 11136:2 11169:1 11181:4 11185:1 11187:1 11189:1 11194:1 11196:1 11207:1 11210:1 11224:3 11244:1 11265:1 11283:1 11291:1 11300:1 11303:2 11319:1 11330:1 11348:1 11360:1 11365:1 11373:2 11376:2 11389:1 11390:3 11402:1 11419:1 11432:1 11462:3 11463:1 11485:1 11486:1 11498:1 11541:1 11550:1 11562:1 11573:3 11588:1 11597:1 11609:1 11624:2 11744:1 11767:1 11770:1 11791:1 11792:2 11796:1 11801:2 11807:1 11816:1 11817:2 11819:5 11820:1 11827:1 11834:1 11838:2 11845:3 11849:1 11851:1 11868:2 11901:2 11910:1 11935:1 11937:1 11939:1 11983:1 11986:1 12007:1 12023:1 12026:1 12061:1 12118:1 12137:1 12151:1 12156:1 12192:1 12195:1 12219:1 12222:1 12241:1 12245:2 12249:1 12250:1 12260:2 12262:1 12264:1 12272:1 12285:2 12287:1 12293:1 12324:7 12356:1 12369:3 12383:2 12391:1 12418:2 12429:2 12430:1 12442:1 12449:2 12450:1 12464:1 12483:1 12497:1 12501:1 12528:1 12544:1 12574:3 12579:1 12584:1 12587:1 12592:1 12597:1 12604:1 12611:1 12614:1 12624:1 12636:1 12652:3 12655:2 12683:1 12718:1 12741:2 12745:1 12799:1 12808:1 12829:1 12863:4 12883:1 12907:1 12918:1 12925:1 12931:1 12955:2 13003:1 13025:1 13030:1 13047:1 13052:1 13059:1 13118:1 13125:1 13127:1 13132:4 13133:1 13134:1 13149:1 13155:2 13168:1 13172:1 13174:1 13182:1 13195:1 13235:1 13237:1 13264:1 13271:1 13291:1 13310:1 13327:1 13427:2 13456:1 13502:1 13515:1 13531:1 13533:2 13534:1 13552:2 13569:1 13601:1 13626:1 13654:1 13663:1 13669:1 13718:6 13723:1 13777:1 13785:2 13817:1 13838:2 13881:1 13900:1 13913:1 13920:1 13939:2 13975:1 13978:1 13998:1 14000:1 14010:1 14026:1 14048:1 14058:1 14064:2 14110:1 14129:1 14146:1 14176:1 14199:1 14201:1 14204:2 14208:4 14224:1 14245:1 14262:1 14279:1 14284:2 14307:1 14314:1 14316:1 14352:1 14355:1 14356:1 14369:2 14370:1 14381:2 14385:1 14403:1 14416:1 14417:1 14429:1 14437:1 14453:7 14462:1 14466:1 14503:1 14504:1 14532:1 14561:1 14603:3 14630:1 14635:4 14658:1 14670:1 14695:2 14722:1 14732:1 14734:1 14746:1 14748:1 14749:1 14762:1 14769:3 14773:1 14778:1 14782:6 14783:1 14810:1 14814:1 14818:1 14846:1 14894:1 14967:2 14968:1 15010:1 15013:1 15022:1 15025:1 15032:1 15049:1 15074:1 15080:1 15098:7 15111:1 15121:1 15123:2 15128:1 15163:1 15185:1 15202:1 15215:1 15236:1 15265:1 15266:1 15312:1 15353:1 15362:1 15379:3 15395:1 15401:1 15446:1 15468:1 15488:1 15514:1 15517:2 15518:1 15527:1 15540:1 15541:1 15550:1 15581:1 15592:2 15651:1 15675:1 15698:1 15712:2 15714:1 15725:3 15729:2 15782:1 15786:2 15842:1 15844:1 15851:1 15880:1 15922:2 15938:1 15941:2 15972:1 15973:1 16032:1 16035:1 16078:2 16079:1 16100:1 16157:1 16160:1 16168:1 16189:1 16231:1 16406:1 16435:1 16464:1 16476:1 16479:1 16492:1 16511:1 16516:1 16520:1 16545:1 16551:1 16567:1 16585:1 16592:1 16627:1 16687:1 16701:1 16731:1 16739:2 16752:1 16782:1 16807:1 16810:1 16869:1 16883:1 16897:2 16909:1 16913:2 16914:1 16926:1 16941:1 16945:1 16948:1 16980:1 16999:1 17008:1 17052:1 17079:2 17089:1 17104:1 17105:2 17135:2 17151:1 17200:1 17230:1 17234:1 17239:7 17256:1 17260:3 17285:1 17327:1 17344:1 17349:2 17360:2 17380:2 17383:1 17428:1 17435:1 17444:1 17445:1 17454:2 17482:1 17504:1 17511:1 17516:1 17518:2 17519:2 17520:2 17521:1 17527:2 17529:1 17531:1 17532:2 17537:1 17538:1 17546:1 17592:1 17598:1 17627:1 17652:1 17655:1 17656:1 17692:1 17708:2 17709:1 17762:1 17808:1 17827:1 17868:1 17874:1 17884:1 17899:1 17902:1 17915:1 17916:1 17925:1 17930:3 17941:2 17966:1 17972:1 17980:1 17985:1 17994:1 18008:1 18016:1 18071:3 18073:1 18096:3 18102:1 18171:1 18183:2 18191:1 18201:2 18212:1 18225:1 18233:1 18236:2 18286:1 18307:3 18308:1 18341:1 18344:1 18361:1 18423:1 18424:1 18425:1 18440:1 18443:1 18491:1 18494:1 18517:1 18530:1 18533:1 18565:1 18577:2 18585:1 18597:1 18617:1 18662:1 18670:1 18731:1 18734:1 18755:1 18760:1 18779:1 18796:1 18801:1 18810:3 18814:2 18819:1 18825:1 18852:1 18872:1 18885:1 18887:1 18898:1 18909:1 18910:1 18962:1 18982:1 18983:1 19004:2 19033:1 19047:1 19050:1 19070:1 19071:1 19101:1 19102:1 19103:1 19123:1 19130:1 19134:2 19171:1 19226:1 19236:1 19246:1 19337:1 19376:1 19378:1 19390:1 19391:1 19411:2 19450:1 19514:2 19515:1 19538:1 19553:1 19575:1 19593:1 19631:1 19651:1 19656:1 19670:1 19719:3 19780:1 19806:1 19826:7 19832:1 19833:1 19834:1 19846:3 19847:1 19863:1 19872:1 19876:1 19897:1 19915:1 19948:4 19971:1 19988:1 19993:1 20016:1 20020:1 20023:2 20041:1 20053:1271 20064:1 20070:1 20086:1 20132:1 20134:1 20160:2 20262:1 20264:1 20267:1 20271:1 20274:1 20275:2 20294:1 20298:1 20308:1 20320:1 20338:1 20375:1 20420:1 20425:2 20490:1 20528:2 20545:1 20546:1 20557:2 20567:1 20587:1 20605:1 20618:1 20642:1 20647:2 20651:1 20660:1 20669:1 20679:1 20681:1 20701:2 20702:2 20715:2 20721:1 20724:1 20732:2 20757:1 20759:1 20768:1 20774:1 20781:2 20787:2 20815:1 20833:1 20838:1 20839:1 20864:2 20871:1 20884:1 20917:1 20926:3 20933:1 20935:1 20943:1 20956:4 20979:1 20999:1 21013:2 21014:1 21022:1 21061:1 21062:1 21065:1 21095:1 21098:1 21105:1 21106:1 21149:1 21150:1 21157:1 21168:1 21202:1 21219:1 21220:1 21239:2 21242:1 21249:1 21250:1 21254:1 21277:1 21281:1 21288:1 21295:1 21302:1 21322:1 21330:1 21331:1 21376:1 21379:1 21387:2 21446:1 21466:1 21475:1 21478:1 21482:1 21483:1 21486:1 21501:1 21511:1 21519:1 21523:1 21524:1 21544:3 21555:1 21571:1 21573:1 21587:1 21590:1 21591:1 21614:1 21627:1 21633:1 21652:1 21654:1 21676:1 21678:1 21699:1 21711:2 21712:5 21719:1 21727:2 21733:1 21756:1 21813:1 21822:1 21828:1 21853:1 21860:1 21861:1 21897:1 21940:2 21982:2 21990:1 22001:1 22015:1 22018:1 22032:1 22066:6 22069:1 22085:1 22119:1 22140:1 22185:1 22202:2 22221:1 22231:1 22235:1 22236:1 22244:1 22288:3 22298:2 22300:1 22314:2 22326:1 22337:1 22370:2 22390:1 22417:1 22452:2 22488:3 22492:1 22508:2 22519:3 22554:1 22567:1 22590:1 22602:1 22621:1 22628:1 22632:1 22643:2 22665:1 22671:2 22685:1 22699:2 22723:1 22724:1 22726:1 22741:1 22750:2 22760:1 22769:1 22774:1 22779:1 22790:1 22811:1 22838:1 22855:1 22857:1 22862:2 22866:2 22939:1 23014:1 23017:1 23027:1 23031:1 23032:1 23043:1 23056:1 23063:1 23070:2 23071:1 23081:1 23131:1 23137:1 23158:1 23181:1 23183:1 23190:1 23194:1 23195:2 23199:1 23210:1 23228:2 23229:1 23238:1 23249:1 23251:2 23262:1 23271:3 23288:2 23298:1 23313:1 23326:1 23337:1 23345:1 23347:1 23349:1 23352:1 23355:1 23377:1 23410:1 23418:1 23426:1 23429:1 23437:2 23439:1 23452:1 23466:1 23468:1 23497:1 23498:1 23500:2 23502:1 23503:1 23540:1 23576:1 23605:3 23614:1 23616:1 23617:1 23619:1 23625:1 23628:1 23632:1 23645:3 23659:1 23674:1 23682:1 23693:2 23697:1 23721:1 23749:1 23796:1 23823:1 23853:1 23862:1 23887:1 23897:1 23900:1 23912:1 23922:3 23940:2 23943:1 23946:1 23969:1 23982:1 23990:2 23993:1 23998:1 24001:1 24002:4 24010:1 24016:1 24026:1 24030:3 24037:1 24044:1 24053:1 24073:1 24108:6 24111:1 24126:1 24150:1 24162:1 24172:3 24175:1 24184:1 24197:1 24221:1 24248:1 24250:2 24290:1 24291:3 24294:1 24305:3 24309:2 24325:1 24329:1 24346:1 24349:1 24370:1 24371:1 24376:2 24386:1 24408:1 24426:1 24432:1 24451:1 24502:1 24531:1 24549:1 24550:1 24558:1 24568:1 24578:2 24585:1 24598:3 24608:1 24624:1 24685:2 24688:1 24706:1 24708:1 24752:1 24762:1 24776:1 24795:2 24806:1 24808:1 24814:1 24851:3 24883:2 24969:1 24996:3 25000:1 25008:5 25018:2 25027:1 25033:1 25036:1 25039:1 25054:1 25056:1 25066:1 25080:2 25138:1 25172:1 25196:1 25199:2 25230:1 25232:1 25240:1 25246:1 25259:1 25273:1 25283:1 25286:1 25318:1 25320:1 25331:1 25343:1 25366:1 25368:1 25371:1 25388:1 25391:1 25396:1 25447:1 25450:3 25453:1 25458:1 25472:2 25474:1 25477:1 25478:1 25481:1 25537:1 25549:1 25633:1 25652:1 25727:1 25729:1 25739:1 25786:1 25793:1 25861:1 25898:1 25900:2 25909:1 25940:1 25963:2 25977:1 25989:1 26010:1 26022:4 26041:1 26048:1 26075:1 26076:1 26081:1 26086:1 26097:1 26103:1 26111:1 26135:3 26157:2 26161:1 26167:1 26250:1 26253:1 26288:1 26292:1 26300:1 26304:3 26317:2 26319:1 26356:3 26365:1 26373:1 26374:1 26380:1 26391:1 26395:1 26399:1 26420:6 26445:1 26447:1 26456:1 26479:1 26483:1 26488:3 26495:1 26512:1 26530:1 26616:1 26651:1 26659:1 26668:1 26674:1 26683:2 26696:1 26703:1 26758:1 26766:1 26776:1 26794:1 26803:1 26833:1 26836:1 26857:2 26862:1 26875:2 26895:1 26901:1 26929:6 26930:1 26942:1 26964:1 26973:1 26974:1 26986:1 27012:1 27024:1 27048:2 27051:1 27059:1 27060:1 27078:1 27083:1 27088:1 27092:1 27112:1 27123:1 27164:1 27192:3 27193:1 27230:1 27233:1 27265:1 27272:1 27304:1 27312:1 27315:1 27338:1 27340:2 27341:1 27368:1 27387:1 27428:1 27443:1 27448:2 27450:1 27465:1 27484:1 27486:1 27514:1 27577:1 27590:1 27622:1 27627:2 27633:1 27646:1 27657:1 27662:1 27673:1 27701:3 27711:1 27713:1 27729:2 27748:2 27750:1 27784:1 27786:1 27793:1 27796:1 27820:1 27854:1 27873:2 27927:1 27933:1 27947:1 27970:1 27977:1 28048:1 28049:1 28064:1 28071:1 28072:1 28076:1 28106:1 28131:1 28142:2 28153:1 28186:1 28191:1 28200:1 28202:1 28210:2 28227:2 28228:7 28239:1 28291:2 28304:1 28305:1 28322:1 28328:1 28337:1 28356:2 28360:3 28368:3 28371:2 28373:4 28410:1 28463:1 28497:1 28502:1 28515:1 28551:1 28564:1 28568:1 28569:1 28572:1 28573:2 28594:5 28595:1 28596:1 28605:1 28627:1 28630:1 28637:1 28667:1 28691:1 28699:1 28727:1 28744:1 28768:1 28788:1 28816:2 28846:1 28857:1 28860:1 28863:4 28878:1 28883:1 28884:1 28921:1 28925:1 28931:1 28932:1 28945:1 28949:1 28963:1 28986:1 28988:2 28998:2 29014:1 29034:1 29093:1 29132:1 29158:1 29163:3 29172:1 29187:1 29191:2 29210:1 29227:2 29238:1 29244:1 29247:1 29259:1 29260:1 29281:1 29295:1 29318:2 29322:1 29373:3 29377:1 29404:1 29446:2 29453:1 29460:1 29465:1 29473:1 29482:1 29484:1 29494:1 29523:1 29524:1 29529:1 29530:1 29531:1 29536:1 29543:2 29556:1 29566:1 29571:1 29574:1 29579:1 29580:1 29613:1 29615:1 29641:1 29663:1 29766:1 29798:1 29804:1 29805:2 29849:1 29855:1 29891:1 29921:1 29952:1 29969:1 30009:1 30019:1 30034:1 30039:1 30110:2 30114:1 30133:1 30134:3 30138:1 30146:2 30151:1 30152:1 30169:1 30171:1 30180:1 30181:4 30203:1 30220:1 30226:2 30228:2 30229:1 30238:4 30251:1 30252:1 30261:3 30275:2 30279:1 30283:1 30309:1 30332:1 30336:1 30362:1 30377:1 30392:2 30397:4 30406:3 30411:1 30438:4 30453:1 30470:1 30471:1 30491:1 30525:1 30571:1 30574:1 30583:1 30604:1 30614:1 30629:1 30634:1 30635:1 30645:1 30646:2 30651:1 30673:3 30711:1 30717:5 30730:1 30786:3 30882:1 30916:1 30926:1 31028:1 31043:1 31046:1 31053:2 31055:1 31072:1 31074:1 31082:1 31092:1 31103:1 31136:1 31152:1 31194:3 31204:2 31233:1 31239:2 31257:1 31284:1 31296:1 31301:1 31308:1 31313:2 31345:1 31348:1 31351:2 31405:1 31431:1 31443:1 31473:1 31478:3 31484:1 31505:1 31516:1 31519:1 31542:1 31577:1 31580:2 31599:1 31600:1 31606:1 31608:1 31615:1 31617:1 31618:1 31623:1 31677:3 1 13:1 40:1 62:1 65:1 72:1 106:1 141:1 155:1 156:3 161:1 173:1 188:1 190:1 207:4 231:1 263:1 274:1 278:4 297:2 307:1 328:1 354:1 371:3 373:2 378:3 387:3 391:1 397:2 416:1 430:1 438:1 454:5 458:2 471:1 490:1 526:1 527:1 620:1 634:2 659:1 665:1 678:1 693:1 767:1 815:1 826:1 829:1 856:1 863:1 871:1 900:4 906:1 911:1 918:3 927:1 942:7 943:2 952:3 975:1 993:4 995:2 998:6 1000:1 1001:1 1004:2 1018:2 1033:1 1042:3 1044:3 1055:1 1095:2 1121:1 1142:1 1159:1 1178:1 1275:3 1277:2 1285:1 1295:1 1298:1 1312:1 1328:1 1332:1 1356:2 1386:2 1389:1 1417:1 1433:1 1451:1 1468:1 1470:1 1485:1 1500:1 1530:1 1540:1 1541:1 1565:1 1584:1 1595:1 1602:1 1613:1 1629:1 1632:1 1647:1 1686:4 1694:5 1696:2 1713:1 1743:1 1754:1 1767:1 1783:1 1786:1 1791:2 1804:2 1818:1 1820:1 1825:1 1835:1 1839:1 1854:1 1863:1 1867:1 1871:1 1881:1 1882:1 1886:2 1897:1 1920:2 1945:4 1965:1 1971:1 1974:2 1978:1 1979:1 1993:2 1994:5 2027:2 2030:2 2043:1 2060:1 2065:2 2074:1 2121:1 2128:1 2129:1 2143:2 2192:1 2198:1 2214:1 2215:2 2220:1 2222:1 2226:1 2230:1 2243:1 2272:1 2283:1 2296:1 2301:1 2306:1 2308:1 2323:1 2349:1 2354:7 2361:1 2370:1 2376:1 2423:2 2436:2 2439:1 2450:1 2458:1 2464:2 2477:1 2478:1 2485:2 2487:1 2491:1 2494:2 2495:2 2497:1 2501:1 2502:1 2508:3 2509:2 2514:5 2515:2 2517:1 2528:1 2565:1 2568:1 2571:3 2595:1 2603:1 2617:1 2618:1 2623:1 2631:1 2637:1 2639:1 2657:1 2695:1 2706:1 2718:1 2722:1 2739:1 2765:1 2771:1 2776:1 2779:1 2800:1 2803:2 2806:1 2808:5 2813:1 2814:1 2824:1 2827:1 2835:1 2849:4 2851:1 2857:1 2873:2 2881:1 2884:1 2897:3 2906:1 2913:1 2916:4 2924:3 2937:1 2947:1 2950:3 2951:2 2967:1 2981:1 2982:2 3029:1 3034:1 3035:1 3036:2 3041:1 3050:2 3056:1 3060:3 3065:1 3069:1 3127:1 3146:2 3157:1 3159:9 3178:2 3180:1 3186:1 3190:1 3199:1 3203:1 3224:6 3246:2 3249:2 3269:1 3338:1 3351:1 3352:4 3371:2 3377:1 3383:1 3438:1 3440:1 3442:1 3447:1 3457:2 3469:1 3490:2 3510:2 3524:1 3534:1 3550:1 3551:1 3579:1 3580:1 3590:1 3608:6 3626:1 3663:1 3774:1 3781:1 3784:1 3788:1 3804:1 3829:1 3861:1 3868:2 3873:1 3898:10 3909:1 3912:2 3914:1 3915:1 3937:1 3942:1 4000:1 4001:1 4008:1 4013:2 4021:1 4038:1 4096:1 4099:1 4106:1 4110:1 4113:1 4117:1 4129:1 4149:1 4152:1 4156:2 4163:1 4167:1 4179:2 4186:1 4200:2 4215:1 4221:1 4226:2 4229:1 4236:1 4241:1 4253:2 4272:1 4293:2 4315:2 4348:3 4349:3 4356:1 4393:1 4395:2 4398:1 4403:1 4422:1 4426:2 4464:1 4476:1 4500:1 4526:1 4547:2 4552:1 4557:1 4563:1 4567:1 4581:1 4587:1 4594:1 4610:1 4629:1 4669:7 4691:2 4696:1 4708:1 4712:1 4717:1 4720:1 4732:1 4749:2 4779:1 4787:2 4808:2 4834:1 4843:1 4869:2 4893:1 4899:1 4902:1 4904:1 4910:1 4911:2 4922:1 4938:1 4970:1 5001:1 5006:1 5034:2 5044:2 5056:1 5062:2 5066:1 5085:1 5105:1 5131:1 5138:2 5154:2 5167:1 5174:1 5216:1 5267:7 5270:1 5279:1 5282:1 5283:1 5316:1 5329:1 5339:1 5429:1 5430:1 5431:3 5433:2 5434:2 5436:1 5440:1 5441:1 5442:1 5446:1 5449:3 5450:3 5453:1 5454:2 5456:2 5465:3 5469:1 5517:1 5532:1 5548:2 5575:1 5580:1 5592:1 5638:1 5668:1 5720:1 5765:1 5771:1 5801:1 5807:1 5813:1 5850:1 5875:2 5889:1 5890:1 5915:1 5917:1 5937:1 5953:2 5959:1 5972:1 5988:1 5994:1 6017:1 6029:1 6100:1 6110:1 6115:2 6118:1 6133:2 6134:1 6136:2 6139:1 6143:1 6144:1 6156:1 6181:1 6188:2 6200:1 6219:4 6223:1 6224:1 6237:2 6308:1 6327:1 6330:1 6345:1 6351:1 6361:1 6387:1 6400:1 6433:1 6444:1 6466:2 6468:1 6488:3 6494:1 6495:1 6499:1 6502:1 6560:1 6561:1 6571:1 6581:1 6582:1 6586:9 6600:1 6603:1 6624:2 6655:1 6668:1 6684:2 6693:1 6706:1 6709:5 6720:1 6769:1 6775:1 6799:1 6806:1 6809:1 6814:1 6816:1 6822:1 6823:1 6825:1 6834:3 6835:1 6884:1 6931:1 6949:1 6990:1 6993:3 6996:2 7008:1 7040:1 7052:1 7061:1 7071:1 7097:1 7106:1 7131:1 7145:2 7153:1 7175:1 7182:1 7227:1 7253:1 7256:1 7265:1 7284:6 7292:1 7295:1 7309:1 7315:1 7326:1 7348:1 7362:1 7405:2 7429:1 7454:1 7465:1 7473:1 7478:2 7504:1 7522:1 7529:1 7535:1 7561:1 7574:6 7578:2 7611:1 7621:1 7624:1 7625:1 7636:2 7638:1 7640:1 7645:4 7648:1 7651:1 7656:1 7679:1 7680:1 7681:1 7695:1 7701:1 7729:1 7737:1 7747:2 7759:1 7792:1 7805:1 7812:1 7853:1 7930:1 7933:1 7984:1 7991:1 7999:1 8004:1 8006:3 8010:1 8032:4 8036:2 8037:1 8061:1 8064:2 8074:1 8081:1 8093:1 8108:2 8117:1 8134:1 8140:1 8168:1 8198:1 8218:2 8235:3 8236:6 8250:1 8257:3 8258:1 8262:2 8263:1 8287:2 8288:2 8290:1 8303:24 8306:1 8315:1 8323:1 8326:5 8327:3 8331:2 8367:1 8374:1 8375:1 8384:1 8397:1 8404:2 8405:2 8411:1 8421:1 8433:1 8459:1 8461:1 8480:2 8486:1 8492:1 8514:1 8541:1 8557:1 8558:3 8588:1 8592:1 8681:1 8722:1 8734:1 8742:1 8765:1 8768:1 8777:1 8788:1 8815:1 8835:14 8843:1 8865:2 8870:1 8935:1 8937:1 8938:1 8943:1 8969:1 8974:1 8990:2 8994:2 8996:1 9001:1 9019:1 9031:4 9038:2 9044:1 9065:2 9066:1 9080:1 9088:1 9090:1 9104:1 9129:1 9139:1 9142:1 9154:1 9204:1 9205:1 9209:1 9211:1 9239:1 9255:3 9267:1 9271:2 9312:1 9319:1 9340:1 9345:1 9365:1 9393:1 9404:1 9436:1 9437:1 9449:1 9450:1 9460:1 9485:1 9486:1 9501:1 9510:1 9533:1 9536:1 9537:1 9541:2 9577:2 9586:1 9594:2 9606:1 9613:1 9618:1 9643:1 9644:1 9655:1 9662:3 9663:1 9668:1 9670:1 9675:1 9687:1 9708:3 9719:1 9732:1 9768:1 9769:4 9778:1 9784:2 9794:2 9844:1 9849:1 9853:2 9872:1 9878:1 9882:1 9884:1 9888:2 9898:1 9950:1 9960:1 9963:1 9969:1 9972:3 9996:1 9999:2 10021:3 10050:1 10080:1 10089:1 10111:2 10122:1 10147:1 10156:1 10159:1 10183:1 10197:1 10201:1 10211:1 10220:6 10226:1 10264:2 10298:1 10302:1 10330:1 10358:1 10363:1 10365:1 10366:2 10369:1 10408:1 10437:1 10439:1 10494:2 10517:1 10530:2 10542:1 10557:1 10558:1 10576:1 10587:1 10603:1 10606:1 10611:1 10612:1 10657:1 10663:1 10665:1 10674:4 10690:2 10702:3 10707:1 10738:2 10762:1 10764:1 10813:1 10818:2 10841:1 10854:1 10861:3 10864:1 10901:1 10907:1 10911:9 10913:1 10914:1 10919:1 10949:1 10973:1 10980:1 11040:1 11047:2 11049:1 11094:1 11109:1 11110:1 11112:1 11115:1 11117:1 11121:1 11129:1 11131:1 11136:2 11169:1 11181:4 11185:1 11187:1 11189:1 11194:1 11196:1 11207:1 11210:1 11224:3 11244:1 11265:1 11283:1 11291:1 11300:1 11303:2 11319:1 11330:1 11348:1 11360:1 11365:1 11373:2 11376:2 11389:1 11390:3 11402:1 11419:1 11432:1 11447:1 11462:3 11463:1 11485:1 11486:1 11498:3 11541:1 11550:2 11562:1 11573:3 11588:1 11597:1 11609:1 11624:2 11744:1 11767:1 11770:1 11791:1 11792:2 11796:1 11801:2 11807:1 11816:1 11817:4 11819:5 11820:1 11827:1 11834:2 11838:2 11845:3 11849:1 11851:1 11868:2 11901:2 11910:1 11935:1 11937:1 11939:1 11983:1 11986:1 12007:1 12023:1 12026:1 12061:1 12118:1 12137:1 12151:1 12156:1 12192:1 12195:1 12219:1 12222:1 12241:1 12245:2 12249:1 12250:1 12260:2 12262:1 12264:1 12272:1 12285:2 12287:1 12293:1 12324:8 12325:1 12356:1 12369:3 12383:2 12391:1 12418:2 12429:2 12430:1 12441:1 12442:1 12449:2 12450:1 12464:1 12483:1 12497:1 12501:1 12528:1 12544:1 12574:3 12579:1 12584:1 12587:1 12592:1 12597:1 12599:1 12604:1 12611:1 12614:1 12624:1 12636:1 12640:1 12652:3 12655:2 12683:1 12718:1 12741:2 12745:1 12799:1 12808:1 12829:1 12863:5 12883:1 12907:1 12918:1 12925:1 12931:1 12955:2 12983:1 13003:1 13025:1 13030:1 13047:1 13052:1 13059:1 13118:1 13125:1 13127:1 13132:4 13133:1 13134:1 13149:1 13155:2 13168:1 13172:1 13174:1 13182:1 13195:1 13235:1 13237:1 13264:1 13271:1 13291:1 13310:1 13327:1 13338:1 13427:2 13456:1 13502:1 13515:1 13531:1 13533:2 13534:1 13552:2 13569:1 13601:1 13626:1 13654:1 13663:1 13669:1 13718:6 13723:1 13737:1 13777:1 13785:2 13817:1 13838:2 13881:1 13900:1 13913:1 13920:1 13939:2 13975:1 13978:1 13998:1 14000:1 14010:1 14026:1 14048:1 14058:1 14064:2 14110:1 14129:1 14146:1 14176:1 14199:1 14201:1 14204:2 14208:4 14224:1 14245:1 14262:2 14279:1 14284:2 14307:1 14314:1 14316:1 14352:1 14355:1 14356:1 14369:3 14370:1 14381:2 14385:1 14403:1 14416:1 14417:1 14429:1 14437:1 14453:7 14462:1 14466:1 14503:1 14504:1 14510:1 14532:1 14550:1 14561:1 14603:3 14630:1 14635:4 14658:1 14670:1 14695:2 14722:1 14732:1 14734:1 14746:1 14748:1 14749:1 14762:1 14769:3 14773:1 14778:1 14782:6 14783:1 14810:1 14814:1 14818:1 14846:1 14894:1 14906:1 14967:2 14968:1 15010:1 15013:1 15022:1 15025:1 15032:1 15033:1 15049:1 15074:1 15080:1 15098:7 15111:1 15121:1 15123:2 15128:1 15163:1 15185:1 15202:1 15215:1 15236:1 15265:1 15266:1 15312:1 15353:1 15362:1 15379:3 15395:1 15401:1 15446:1 15468:1 15488:1 15514:1 15517:2 15518:1 15527:1 15540:1 15541:1 15550:1 15581:1 15592:2 15651:1 15675:1 15698:1 15712:2 15714:1 15725:3 15729:2 15782:1 15786:2 15842:1 15844:1 15851:1 15870:1 15880:1 15922:2 15938:1 15941:2 15972:1 15973:1 16032:1 16035:1 16078:2 16079:1 16100:1 16157:1 16160:1 16168:1 16189:1 16231:1 16314:1 16406:1 16435:1 16464:1 16476:1 16479:1 16492:1 16511:1 16516:1 16520:1 16545:1 16551:1 16567:1 16585:1 16592:1 16627:1 16687:1 16701:1 16731:1 16739:2 16752:1 16782:1 16807:1 16810:1 16869:1 16883:1 16897:2 16909:1 16913:2 16914:1 16926:1 16941:1 16945:1 16948:1 16980:1 16999:1 17008:1 17052:1 17079:2 17089:1 17104:1 17105:2 17135:2 17151:1 17200:1 17230:1 17234:1 17239:7 17256:1 17260:3 17285:1 17327:1 17344:1 17349:2 17360:2 17380:2 17383:1 17392:1 17428:1 17435:1 17444:1 17445:1 17454:2 17482:1 17504:1 17511:1 17516:2 17518:2 17519:2 17520:2 17521:1 17527:2 17529:1 17531:1 17532:2 17537:1 17538:1 17540:1 17546:1 17555:1 17592:1 17598:1 17627:1 17652:1 17655:1 17656:1 17692:1 17708:2 17709:1 17762:1 17774:1 17808:1 17827:1 17868:1 17874:1 17884:1 17899:1 17902:1 17915:1 17916:1 17925:1 17930:3 17941:2 17965:1 17966:1 17972:1 17980:1 17985:1 17994:1 18008:1 18016:1 18071:3 18073:1 18096:3 18102:1 18171:1 18172:1 18183:2 18191:1 18201:2 18212:1 18225:1 18233:1 18236:2 18286:2 18307:3 18308:1 18341:1 18344:1 18361:1 18423:1 18424:1 18425:1 18440:1 18443:1 18453:1 18491:1 18494:1 18517:1 18530:1 18533:1 18565:1 18577:2 18585:1 18597:1 18617:1 18662:1 18670:1 18731:1 18734:1 18755:1 18760:1 18779:1 18796:1 18801:1 18810:3 18814:2 18815:2 18819:1 18825:1 18852:1 18872:1 18880:1 18885:1 18887:1 18898:1 18909:1 18910:1 18962:1 18982:1 18983:1 19004:2 19023:1 19033:1 19047:1 19050:1 19070:1 19071:1 19101:1 19102:1 19103:1 19123:1 19130:1 19134:2 19171:1 19226:1 19236:1 19246:1 19267:1 19337:1 19376:1 19378:1 19390:1 19391:1 19411:2 19450:1 19514:2 19515:1 19538:1 19553:1 19575:1 19593:1 19631:1 19651:1 19656:1 19670:1 19719:3 19780:1 19806:1 19826:9 19832:1 19833:2 19834:1 19846:3 19847:1 19863:1 19872:1 19876:1 19897:1 19915:1 19948:4 19971:1 19988:1 19993:1 20016:1 20020:1 20023:2 20041:1 20053:1326 20064:1 20070:1 20086:1 20132:1 20134:1 20160:2 20262:1 20264:1 20267:1 20271:1 20274:1 20275:2 20294:1 20298:1 20308:1 20320:1 20338:1 20375:1 20420:1 20425:2 20490:1 20528:2 20545:1 20546:1 20557:2 20567:1 20587:1 20605:1 20618:1 20642:1 20647:2 20651:1 20660:1 20669:1 20679:1 20681:1 20701:2 20702:2 20715:2 20721:1 20724:1 20732:2 20757:2 20759:1 20768:1 20774:1 20781:2 20787:2 20815:1 20833:1 20838:1 20839:1 20864:2 20871:1 20884:1 20917:1 20926:3 20933:1 20935:1 20943:1 20956:4 20974:1 20979:1 20999:1 21013:2 21014:1 21022:1 21061:1 21062:1 21065:1 21095:1 21098:1 21105:1 21106:1 21148:1 21149:1 21150:1 21157:1 21168:1 21202:1 21219:1 21220:1 21239:2 21242:1 21249:1 21250:1 21254:1 21277:1 21281:1 21288:1 21295:1 21302:1 21322:1 21330:1 21331:1 21376:1 21379:1 21387:2 21446:1 21466:1 21475:1 21478:1 21482:1 21483:1 21486:1 21501:1 21511:1 21519:2 21523:1 21524:1 21544:4 21555:2 21571:1 21573:1 21587:1 21590:1 21591:1 21614:1 21627:1 21633:1 21652:1 21654:1 21676:1 21678:1 21699:1 21711:2 21712:6 21713:1 21719:1 21727:2 21733:1 21756:1 21813:1 21822:1 21828:1 21853:1 21860:1 21861:1 21881:1 21897:1 21940:2 21960:1 21982:2 21990:1 22001:1 22015:1 22018:1 22032:1 22066:6 22069:1 22085:1 22119:1 22140:1 22185:1 22202:3 22221:1 22225:1 22231:1 22235:1 22236:1 22244:1 22288:3 22298:2 22300:1 22314:2 22326:1 22337:2 22370:2 22390:1 22417:1 22452:2 22488:3 22492:1 22508:2 22519:3 22546:1 22554:1 22567:1 22590:1 22602:1 22621:1 22624:1 22628:1 22632:1 22643:2 22665:1 22671:2 22685:1 22699:2 22715:1 22716:1 22723:1 22724:1 22726:1 22741:1 22750:2 22760:1 22769:1 22774:1 22779:1 22790:1 22811:1 22838:1 22855:1 22857:1 22862:2 22866:2 22939:1 23014:1 23017:1 23027:1 23031:1 23032:1 23043:1 23056:1 23063:1 23070:2 23071:1 23081:1 23131:1 23137:1 23158:1 23181:1 23183:1 23190:1 23194:1 23195:2 23199:1 23210:1 23222:1 23228:2 23229:1 23238:1 23249:1 23251:2 23262:1 23271:3 23288:2 23298:1 23313:1 23326:1 23337:1 23345:1 23347:1 23349:1 23352:1 23355:1 23377:1 23410:1 23418:1 23426:1 23429:1 23437:2 23439:1 23452:2 23466:1 23468:1 23497:1 23498:1 23500:2 23502:1 23503:1 23540:1 23576:1 23605:3 23614:1 23616:1 23617:1 23619:1 23625:1 23628:1 23632:2 23645:3 23659:1 23674:1 23682:1 23693:2 23697:1 23700:1 23721:1 23749:1 23796:1 23811:1 23823:1 23853:1 23862:1 23887:1 23897:1 23900:1 23912:1 23922:3 23939:1 23940:2 23943:2 23946:1 23969:1 23982:1 23990:2 23993:1 23998:1 24001:1 24002:4 24010:1 24016:1 24026:1 24030:3 24037:1 24044:1 24053:1 24073:1 24108:6 24111:1 24126:1 24150:1 24162:1 24172:3 24175:1 24184:1 24197:1 24221:1 24248:1 24250:2 24290:1 24291:3 24294:1 24305:3 24309:2 24325:1 24329:1 24346:1 24349:1 24370:1 24371:1 24376:2 24386:1 24408:1 24426:1 24432:1 24451:1 24502:1 24531:1 24549:1 24550:1 24558:1 24568:1 24578:2 24585:1 24598:3 24608:1 24624:1 24685:2 24688:1 24706:1 24708:1 24750:1 24752:1 24762:1 24776:1 24795:2 24806:1 24808:1 24814:1 24851:3 24883:2 24969:1 24996:3 25000:1 25008:5 25018:2 25027:1 25033:1 25036:2 25039:1 25054:1 25056:1 25066:1 25080:2 25122:1 25138:1 25172:1 25196:1 25199:2 25230:1 25232:1 25240:1 25246:1 25259:1 25273:1 25283:1 25286:1 25318:1 25320:2 25331:1 25343:1 25366:2 25368:1 25371:1 25376:1 25388:1 25391:1 25396:1 25447:1 25450:3 25453:1 25458:1 25472:2 25474:1 25477:1 25478:1 25481:1 25537:1 25549:1 25633:1 25652:1 25727:1 25729:1 25739:1 25786:1 25793:1 25861:1 25898:1 25900:2 25909:1 25940:1 25963:2 25977:1 25989:1 26010:1 26022:5 26041:1 26048:1 26075:1 26076:1 26081:1 26086:2 26097:1 26103:1 26111:1 26135:3 26157:2 26161:1 26167:1 26250:1 26253:1 26288:1 26292:1 26300:1 26304:3 26317:2 26319:1 26356:3 26365:1 26373:1 26374:1 26380:1 26391:1 26395:1 26399:1 26420:6 26445:1 26447:1 26456:1 26479:1 26483:1 26488:3 26495:1 26512:1 26530:1 26616:1 26651:1 26659:1 26668:1 26674:1 26683:2 26690:1 26696:1 26703:1 26758:1 26766:1 26776:1 26794:1 26803:1 26833:1 26836:1 26857:2 26862:1 26875:2 26880:1 26895:1 26901:1 26929:6 26930:1 26942:1 26964:1 26973:1 26974:1 26986:1 27012:1 27024:1 27029:1 27048:2 27051:1 27059:1 27060:1 27078:1 27083:1 27088:1 27092:1 27112:1 27123:1 27164:1 27192:3 27193:1 27230:1 27233:1 27265:1 27272:1 27304:1 27312:2 27315:1 27338:1 27340:2 27341:1 27368:1 27387:1 27428:1 27443:1 27448:2 27450:1 27465:1 27484:1 27486:1 27514:1 27577:1 27590:1 27622:1 27627:2 27633:2 27646:1 27657:1 27662:1 27673:1 27701:3 27711:1 27713:1 27729:2 27748:2 27750:1 27784:1 27786:1 27793:1 27796:1 27820:1 27854:1 27873:2 27889:1 27927:1 27933:1 27947:1 27970:1 27977:1 28038:1 28048:1 28049:1 28064:1 28071:1 28072:1 28076:1 28106:1 28131:1 28142:2 28153:1 28186:1 28191:1 28200:1 28202:1 28210:2 28227:2 28228:9 28239:1 28291:2 28304:1 28305:1 28322:1 28328:1 28337:1 28356:3 28360:3 28368:3 28371:2 28373:4 28410:1 28463:1 28497:1 28501:1 28502:1 28515:1 28551:1 28564:1 28568:1 28569:1 28572:1 28573:2 28594:6 28595:1 28596:1 28605:1 28627:1 28630:1 28637:1 28667:1 28691:1 28699:1 28727:1 28744:1 28768:1 28788:1 28816:2 28846:1 28857:1 28860:1 28863:5 28878:1 28883:1 28884:1 28921:1 28925:1 28931:1 28932:1 28945:1 28949:1 28954:1 28963:1 28986:1 28988:2 28998:2 29014:1 29034:1 29050:1 29093:1 29132:1 29144:1 29158:1 29163:3 29166:1 29171:1 29172:1 29187:1 29191:2 29210:1 29227:2 29238:1 29241:1 29244:1 29247:1 29259:1 29260:1 29281:1 29295:1 29318:2 29322:1 29373:3 29375:1 29377:1 29404:1 29446:2 29453:1 29460:1 29465:1 29473:1 29482:1 29484:1 29494:1 29523:1 29524:1 29529:1 29530:1 29531:1 29536:1 29543:2 29556:1 29566:1 29571:1 29574:1 29579:1 29580:1 29613:1 29615:1 29641:1 29663:1 29766:1 29798:1 29804:1 29805:2 29849:1 29855:1 29891:1 29921:1 29952:1 29969:1 30009:1 30019:1 30034:2 30039:1 30109:1 30110:2 30114:1 30133:1 30134:3 30138:1 30146:2 30150:1 30151:1 30152:1 30169:1 30171:1 30180:1 30181:4 30203:1 30220:1 30226:2 30228:2 30229:1 30235:1 30238:4 30251:1 30252:1 30261:3 30275:3 30279:1 30283:1 30309:1 30332:1 30336:1 30362:1 30377:1 30392:2 30397:4 30406:3 30411:1 30438:4 30453:1 30470:1 30471:1 30491:1 30525:1 30571:1 30574:1 30583:1 30604:1 30614:1 30629:1 30634:1 30635:1 30645:1 30646:2 30651:1 30656:1 30673:3 30711:1 30717:5 30730:1 30786:3 30871:1 30882:1 30916:1 30926:1 31028:1 31043:1 31046:1 31053:2 31055:2 31072:1 31074:1 31082:1 31092:1 31103:1 31136:1 31152:1 31194:3 31204:2 31233:2 31239:2 31257:1 31284:1 31296:1 31301:1 31308:1 31313:2 31345:1 31348:1 31351:2 31382:1 31405:1 31431:1 31443:1 31473:1 31478:3 31484:1 31505:1 31516:1 31519:1 31542:1 31577:1 31580:2 31599:1 31600:1 31606:1 31608:2 31615:1 31617:1 31618:1 31623:1 31632:1 31677:3 1 13:1 40:1 62:1 65:1 72:1 106:1 141:1 155:1 156:3 161:1 173:1 188:1 190:2 207:4 231:1 263:1 274:1 278:5 297:2 307:1 328:1 354:1 371:3 373:2 378:3 387:3 391:1 397:2 416:1 430:1 438:1 454:5 458:2 471:1 490:1 526:1 527:1 596:1 620:1 634:2 645:1 659:1 665:1 667:1 678:1 693:1 767:1 815:1 826:1 829:1 856:2 863:1 871:1 900:4 906:1 911:1 918:3 927:1 942:7 943:2 952:3 975:1 993:4 995:2 998:6 1000:1 1001:1 1004:2 1018:2 1033:1 1042:3 1044:3 1055:1 1095:2 1121:1 1142:1 1159:1 1178:1 1275:3 1277:2 1285:1 1295:1 1298:1 1312:1 1328:1 1332:1 1356:2 1380:1 1386:2 1389:1 1417:1 1433:1 1451:1 1468:1 1470:1 1485:1 1500:1 1530:1 1540:1 1541:1 1565:1 1584:1 1595:1 1602:1 1613:1 1629:1 1632:1 1647:1 1686:4 1694:5 1696:2 1713:1 1743:1 1754:1 1767:1 1783:1 1786:1 1791:2 1804:2 1818:1 1820:1 1825:1 1835:1 1839:1 1854:1 1863:1 1867:1 1871:1 1881:1 1882:1 1886:2 1897:1 1920:2 1945:4 1954:1 1965:1 1971:1 1974:2 1978:1 1979:1 1993:2 1994:5 2027:3 2030:2 2043:1 2060:1 2065:3 2074:1 2121:1 2128:1 2129:1 2143:2 2192:1 2198:1 2214:1 2215:2 2220:1 2222:1 2226:1 2230:2 2243:1 2272:1 2283:1 2296:1 2301:1 2306:2 2308:1 2323:1 2349:1 2354:7 2361:1 2370:1 2376:1 2423:2 2436:3 2439:1 2450:1 2458:1 2464:2 2477:2 2478:1 2485:3 2487:1 2491:1 2494:2 2495:2 2497:1 2501:1 2502:1 2508:3 2509:2 2514:5 2515:2 2517:1 2528:1 2565:1 2568:1 2571:3 2595:1 2603:1 2617:1 2618:1 2623:1 2631:1 2637:1 2639:1 2657:1 2695:1 2706:1 2718:1 2722:1 2739:1 2752:1 2765:1 2771:1 2776:1 2779:1 2800:2 2803:2 2806:1 2808:5 2813:1 2814:1 2824:1 2827:1 2835:1 2849:4 2851:1 2857:1 2873:2 2881:1 2884:1 2897:3 2906:1 2913:1 2916:5 2924:4 2937:1 2947:1 2950:3 2951:2 2967:1 2981:1 2982:2 3029:1 3034:1 3035:1 3036:2 3041:1 3050:2 3056:1 3060:3 3065:1 3069:1 3127:1 3146:2 3157:1 3159:9 3178:2 3180:1 3185:1 3186:1 3190:1 3199:1 3203:2 3224:7 3246:2 3249:2 3269:1 3338:1 3351:1 3352:4 3371:2 3377:1 3383:1 3438:1 3440:1 3442:1 3447:1 3457:2 3469:1 3490:2 3510:2 3524:1 3534:1 3550:1 3551:1 3579:1 3580:1 3590:1 3608:6 3626:1 3643:1 3663:1 3749:1 3774:1 3781:1 3784:1 3788:1 3804:1 3829:1 3844:1 3861:1 3868:2 3873:1 3898:10 3909:1 3912:2 3914:1 3915:1 3937:1 3942:1 4000:1 4001:1 4008:1 4013:2 4021:1 4038:1 4096:1 4099:1 4106:1 4110:1 4113:1 4117:1 4129:1 4149:1 4152:1 4156:2 4163:1 4167:1 4179:2 4186:1 4200:2 4215:1 4221:1 4226:2 4229:1 4236:1 4241:1 4253:2 4272:1 4293:2 4315:2 4340:1 4348:3 4349:3 4356:1 4393:1 4395:2 4398:1 4403:1 4422:1 4426:2 4464:1 4476:1 4500:1 4526:1 4537:1 4547:2 4552:1 4557:1 4563:1 4567:1 4581:1 4587:1 4594:1 4610:1 4629:1 4647:1 4669:7 4691:2 4696:1 4708:1 4712:1 4717:1 4720:1 4732:1 4749:2 4779:1 4787:2 4808:2 4834:1 4843:1 4869:2 4893:1 4899:1 4902:1 4904:1 4910:1 4911:2 4922:1 4938:1 4970:1 5001:1 5006:1 5034:2 5044:2 5056:1 5062:2 5066:1 5085:1 5105:1 5131:1 5135:1 5138:2 5154:2 5167:1 5174:1 5216:1 5267:8 5270:1 5279:1 5282:1 5283:1 5316:1 5329:1 5339:1 5429:1 5430:1 5431:3 5433:4 5434:2 5436:1 5440:1 5441:1 5442:1 5446:1 5449:3 5450:3 5453:1 5454:2 5456:2 5465:3 5469:1 5517:1 5532:1 5548:2 5575:1 5580:1 5592:1 5638:1 5658:1 5668:1 5720:1 5765:1 5771:1 5801:1 5807:1 5813:1 5850:1 5875:2 5889:1 5890:1 5915:1 5917:1 5937:1 5953:2 5959:1 5972:1 5988:1 5994:1 6017:1 6029:1 6100:1 6110:1 6115:2 6118:1 6133:3 6134:1 6136:2 6139:1 6143:1 6144:1 6156:1 6181:1 6188:3 6200:1 6219:5 6223:1 6224:1 6237:2 6308:1 6327:1 6330:1 6345:1 6351:1 6361:1 6387:1 6400:1 6433:1 6444:2 6466:2 6468:1 6488:3 6494:1 6495:1 6499:1 6502:1 6560:1 6561:1 6571:1 6579:1 6581:1 6582:1 6586:9 6600:1 6603:1 6624:2 6655:1 6668:1 6684:2 6693:1 6706:1 6709:5 6720:1 6769:1 6775:1 6799:1 6806:1 6809:1 6814:1 6816:1 6822:1 6823:1 6825:1 6834:3 6835:2 6884:1 6931:1 6949:1 6990:1 6993:3 6996:2 7008:1 7040:1 7052:1 7061:1 7071:1 7097:1 7106:1 7131:1 7145:2 7153:1 7175:1 7182:1 7227:1 7253:1 7256:1 7265:1 7284:6 7292:1 7295:1 7309:1 7315:1 7326:2 7348:1 7362:1 7405:2 7429:1 7454:1 7465:1 7473:1 7478:2 7504:1 7522:1 7529:1 7535:1 7550:1 7561:1 7569:1 7574:6 7578:2 7611:1 7621:1 7624:1 7625:2 7636:3 7638:1 7640:1 7645:4 7648:1 7651:1 7656:1 7679:1 7680:1 7681:1 7695:1 7701:1 7729:1 7737:1 7747:2 7759:1 7792:1 7805:1 7812:1 7853:1 7930:1 7933:1 7984:1 7991:1 7999:1 8004:1 8006:3 8010:1 8032:4 8036:2 8037:1 8061:1 8064:2 8074:1 8081:1 8093:1 8108:2 8117:1 8134:1 8140:1 8168:1 8198:1 8218:2 8235:3 8236:6 8250:1 8257:3 8258:1 8262:2 8263:2 8287:2 8288:2 8290:1 8303:26 8306:1 8315:1 8323:1 8326:5 8327:3 8331:2 8367:1 8374:1 8375:1 8384:1 8397:1 8404:2 8405:2 8411:1 8421:1 8433:1 8459:1 8461:1 8480:2 8486:1 8492:1 8514:1 8541:1 8553:1 8557:1 8558:3 8588:1 8592:1 8609:1 8681:1 8722:1 8734:1 8742:1 8765:1 8768:1 8777:1 8788:1 8815:1 8835:16 8843:1 8865:2 8868:1 8870:1 8935:2 8937:1 8938:1 8943:1 8969:1 8974:1 8990:2 8994:2 8996:1 9001:1 9019:1 9031:4 9038:2 9044:1 9065:2 9066:1 9080:1 9088:1 9090:1 9104:1 9128:1 9129:1 9139:1 9142:1 9154:1 9201:1 9204:1 9205:1 9209:1 9211:1 9239:1 9255:3 9267:1 9271:2 9312:1 9319:1 9340:1 9345:1 9365:1 9393:1 9404:1 9436:1 9437:1 9449:1 9450:1 9460:1 9485:1 9486:1 9501:1 9510:1 9533:1 9536:1 9537:1 9541:2 9577:2 9586:1 9594:2 9606:1 9613:1 9618:1 9643:1 9644:1 9655:1 9662:3 9663:1 9668:1 9670:1 9675:1 9687:1 9708:3 9719:1 9732:1 9768:2 9769:4 9778:1 9784:2 9794:2 9830:1 9844:1 9849:1 9853:2 9872:1 9878:1 9882:1 9884:1 9888:2 9898:1 9950:1 9960:1 9963:1 9969:1 9972:4 9996:1 9999:2 10021:3 10050:1 10080:1 10089:1 10111:2 10122:1 10147:1 10156:1 10159:1 10183:1 10197:1 10201:1 10211:1 10220:6 10226:1 10264:2 10298:1 10302:1 10330:1 10358:1 10363:1 10365:1 10366:2 10369:1 10408:1 10437:1 10439:1 10494:2 10517:1 10530:2 10542:1 10557:1 10558:1 10576:1 10587:1 10603:1 10606:1 10611:1 10612:1 10657:1 10663:1 10665:1 10674:4 10690:2 10702:3 10707:1 10738:2 10762:1 10764:1 10813:1 10818:2 10841:1 10854:1 10861:3 10864:1 10901:1 10907:1 10911:9 10913:1 10914:1 10919:1 10948:1 10949:1 10973:1 10980:1 11040:1 11047:2 11049:1 11094:1 11109:1 11110:1 11112:1 11115:1 11117:1 11121:3 11129:1 11131:1 11136:2 11169:1 11181:4 11185:1 11187:1 11189:1 11194:1 11196:1 11207:1 11210:1 11224:3 11244:1 11265:1 11283:1 11291:1 11300:1 11303:2 11319:1 11330:1 11348:2 11360:1 11365:1 11373:3 11376:2 11389:1 11390:3 11402:1 11419:1 11432:1 11447:1 11462:3 11463:1 11485:1 11486:1 11498:3 11524:1 11541:1 11550:2 11562:1 11573:3 11588:1 11597:1 11609:1 11624:2 11744:1 11767:1 11770:1 11791:1 11792:2 11796:1 11801:2 11807:1 11816:1 11817:4 11819:5 11820:1 11827:1 11834:2 11838:2 11845:3 11849:1 11851:1 11868:2 11901:2 11910:1 11935:1 11937:1 11939:1 11983:1 11986:1 12007:1 12023:1 12026:1 12061:1 12118:1 12137:1 12151:1 12156:1 12192:1 12195:1 12219:1 12222:1 12227:1 12241:1 12245:2 12247:1 12249:1 12250:1 12260:2 12262:1 12264:2 12272:1 12278:1 12285:2 12287:1 12293:1 12324:9 12325:1 12356:1 12369:3 12383:2 12391:1 12418:2 12429:2 12430:1 12441:1 12442:1 12449:2 12450:1 12464:1 12483:1 12497:1 12501:1 12528:1 12544:1 12574:3 12579:1 12584:1 12587:1 12592:2 12597:1 12599:1 12603:1 12604:1 12611:1 12614:1 12624:1 12636:1 12640:1 12641:1 12652:3 12655:2 12683:1 12718:1 12741:2 12745:1 12799:1 12808:1 12818:1 12829:1 12863:5 12883:1 12907:1 12918:1 12925:1 12931:1 12955:2 12983:1 13003:1 13025:1 13030:1 13047:1 13052:1 13059:1 13118:1 13125:1 13127:1 13132:4 13133:1 13134:1 13149:1 13155:2 13168:1 13172:1 13174:1 13182:1 13195:1 13235:1 13237:1 13264:1 13271:1 13291:1 13310:1 13327:1 13338:1 13427:2 13456:1 13502:1 13515:1 13531:1 13533:2 13534:1 13552:2 13569:1 13582:1 13601:1 13626:1 13654:1 13663:1 13669:1 13718:6 13723:1 13737:1 13777:1 13785:2 13817:1 13838:2 13847:1 13881:1 13900:1 13913:1 13920:1 13939:2 13975:1 13978:1 13998:1 14000:1 14010:1 14026:1 14048:1 14058:1 14064:3 14110:1 14129:1 14146:1 14176:1 14199:1 14201:1 14204:2 14208:4 14224:1 14245:1 14262:3 14279:1 14284:2 14307:1 14314:2 14316:1 14352:1 14355:1 14356:1 14369:4 14370:1 14381:2 14385:1 14403:1 14416:1 14417:1 14429:1 14437:1 14453:8 14462:1 14466:1 14503:2 14504:1 14510:1 14532:1 14550:1 14561:1 14603:3 14630:1 14635:5 14658:1 14670:1 14695:2 14722:1 14732:1 14734:1 14746:1 14748:1 14749:1 14762:1 14769:3 14773:1 14778:1 14782:6 14783:1 14810:1 14814:1 14818:1 14846:1 14894:1 14906:1 14967:2 14968:1 15010:1 15013:1 15015:1 15022:1 15025:1 15032:1 15033:1 15049:1 15074:1 15080:1 15098:7 15111:1 15121:1 15123:2 15128:1 15163:1 15185:1 15202:1 15215:1 15236:1 15265:1 15266:1 15312:1 15353:1 15362:1 15379:3 15395:1 15401:1 15446:1 15468:1 15488:1 15514:1 15517:2 15518:1 15527:1 15540:1 15541:1 15550:1 15581:1 15592:2 15651:1 15675:2 15698:1 15705:1 15707:1 15712:2 15714:1 15725:3 15729:2 15782:1 15786:2 15842:1 15844:1 15851:1 15870:1 15880:1 15922:2 15938:1 15941:2 15972:1 15973:1 16032:1 16035:1 16078:2 16079:1 16100:1 16157:1 16160:1 16168:1 16188:1 16189:1 16231:1 16302:1 16314:1 16351:1 16406:1 16435:1 16464:1 16476:1 16479:1 16492:1 16511:1 16516:2 16520:1 16545:1 16551:1 16567:1 16585:1 16592:1 16627:1 16687:1 16701:2 16720:1 16731:1 16739:2 16752:1 16782:1 16807:1 16810:1 16869:1 16883:1 16897:2 16909:1 16913:2 16914:1 16926:1 16941:1 16945:1 16948:1 16980:1 16999:2 17008:1 17052:1 17079:2 17089:1 17104:1 17105:2 17120:1 17135:2 17151:1 17200:1 17230:1 17234:1 17239:7 17256:1 17260:3 17285:1 17327:1 17344:1 17349:2 17360:2 17363:1 17380:2 17383:1 17392:1 17428:1 17435:1 17444:1 17445:1 17454:2 17482:1 17504:1 17511:1 17516:3 17518:2 17519:2 17520:3 17521:1 17527:2 17529:1 17531:1 17532:2 17537:1 17538:1 17540:1 17546:1 17555:1 17592:1 17598:1 17627:1 17652:1 17655:1 17656:1 17692:1 17708:2 17709:1 17762:1 17774:1 17808:1 17827:1 17868:1 17874:1 17884:1 17899:1 17902:1 17915:1 17916:1 17925:1 17930:3 17941:2 17954:1 17965:1 17966:1 17972:2 17980:1 17985:1 17994:2 18008:1 18016:1 18071:4 18073:1 18096:3 18102:1 18171:1 18172:1 18183:2 18191:1 18201:2 18212:1 18225:1 18233:1 18236:2 18286:2 18307:4 18308:1 18340:1 18341:1 18344:1 18361:1 18423:1 18424:1 18425:1 18440:1 18443:1 18453:1 18491:1 18494:1 18517:1 18530:2 18533:1 18565:1 18577:2 18585:1 18597:1 18617:1 18662:1 18670:1 18731:1 18734:1 18755:1 18760:1 18779:1 18796:1 18801:1 18810:3 18814:2 18815:2 18819:1 18825:2 18852:1 18872:1 18880:1 18885:1 18887:1 18898:1 18909:1 18910:1 18962:1 18982:1 18983:1 19004:2 19023:1 19033:1 19047:1 19050:1 19070:1 19071:1 19101:1 19102:1 19103:1 19123:1 19130:1 19134:2 19171:1 19226:2 19236:1 19246:1 19267:1 19337:1 19376:1 19378:1 19390:1 19391:1 19411:2 19450:1 19514:2 19515:1 19538:1 19553:1 19575:1 19593:1 19619:1 19631:1 19651:1 19656:1 19670:1 19719:4 19780:1 19806:1 19826:9 19832:1 19833:2 19834:1 19846:3 19847:1 19863:1 19872:1 19876:1 19897:1 19915:1 19948:4 19971:1 19988:1 19993:1 20016:1 20020:1 20023:2 20041:1 20053:1401 20064:1 20070:1 20086:1 20132:1 20134:1 20160:2 20262:1 20264:1 20267:1 20271:1 20274:1 20275:2 20294:1 20298:1 20308:1 20320:1 20338:1 20375:1 20420:1 20422:1 20425:2 20490:1 20528:2 20545:1 20546:1 20557:2 20567:1 20587:1 20605:2 20618:1 20642:1 20647:2 20651:1 20660:1 20669:1 20679:1 20681:1 20701:2 20702:2 20715:2 20721:1 20724:1 20732:2 20757:2 20759:1 20768:1 20774:1 20781:2 20787:2 20815:1 20833:1 20838:1 20839:1 20864:2 20871:1 20884:1 20917:1 20926:3 20933:1 20935:2 20943:1 20956:4 20974:1 20979:1 20999:1 21005:1 21013:2 21014:1 21022:1 21061:1 21062:1 21065:1 21095:1 21098:1 21105:1 21106:1 21148:1 21149:1 21150:1 21157:1 21168:1 21202:1 21219:1 21220:1 21239:2 21242:1 21249:1 21250:1 21254:1 21277:1 21281:1 21288:1 21295:1 21302:1 21322:1 21330:1 21331:1 21376:1 21379:1 21387:2 21446:1 21466:1 21475:1 21478:1 21482:1 21483:1 21486:1 21501:1 21511:1 21519:2 21523:1 21524:1 21544:4 21555:2 21571:1 21573:1 21587:1 21590:1 21591:3 21614:1 21627:1 21633:1 21652:1 21654:1 21676:1 21678:1 21699:1 21711:2 21712:7 21713:1 21719:1 21727:2 21733:1 21756:1 21813:1 21822:1 21828:1 21853:1 21860:1 21861:1 21881:1 21897:1 21940:3 21960:1 21982:2 21990:1 22001:1 22015:1 22018:1 22032:1 22066:6 22069:1 22085:1 22119:1 22140:1 22185:1 22202:3 22221:1 22225:1 22231:1 22235:1 22236:1 22244:1 22288:3 22298:2 22300:2 22314:2 22326:1 22337:2 22370:3 22390:1 22417:2 22421:1 22432:1 22452:2 22488:3 22492:1 22508:2 22519:3 22546:1 22554:1 22567:1 22590:1 22602:1 22621:1 22624:1 22628:1 22632:1 22643:2 22665:1 22671:2 22685:1 22699:2 22715:1 22716:1 22723:1 22724:1 22726:2 22741:1 22750:2 22760:1 22769:1 22774:1 22779:1 22790:1 22811:1 22838:1 22846:1 22855:1 22857:1 22862:2 22866:2 22939:1 23014:1 23017:1 23027:2 23031:1 23032:1 23043:1 23056:1 23063:1 23070:2 23071:1 23081:1 23131:1 23137:1 23158:1 23181:1 23183:1 23190:1 23194:1 23195:2 23199:1 23210:1 23222:1 23228:2 23229:1 23238:1 23249:1 23251:2 23262:1 23271:4 23288:2 23298:1 23313:1 23326:1 23337:1 23345:1 23347:1 23349:1 23352:1 23355:1 23377:1 23410:1 23418:1 23426:2 23429:1 23437:3 23439:1 23452:2 23466:1 23468:1 23497:1 23498:1 23500:2 23502:1 23503:1 23540:1 23576:1 23605:3 23613:1 23614:1 23616:2 23617:1 23619:1 23625:1 23628:1 23632:2 23645:3 23659:1 23674:1 23682:1 23693:2 23697:1 23700:1 23721:1 23749:1 23796:1 23811:1 23823:1 23853:1 23862:1 23887:1 23897:1 23900:1 23912:1 23922:3 23939:1 23940:2 23943:2 23946:1 23969:1 23982:1 23990:2 23993:1 23998:1 24001:1 24002:4 24010:1 24016:1 24026:1 24030:4 24037:1 24044:1 24053:1 24073:1 24074:1 24108:7 24111:1 24126:1 24150:1 24162:1 24172:3 24175:1 24184:1 24197:1 24221:1 24248:1 24250:2 24290:1 24291:3 24294:1 24305:3 24309:2 24325:1 24329:1 24346:1 24349:2 24370:1 24371:1 24376:2 24386:1 24408:1 24426:1 24432:1 24451:1 24479:1 24500:1 24502:1 24531:1 24549:2 24550:1 24558:1 24568:1 24578:2 24585:2 24598:3 24608:2 24624:1 24685:2 24688:1 24706:1 24708:1 24750:1 24752:1 24762:1 24776:1 24795:2 24799:1 24806:1 24808:1 24814:1 24851:3 24883:2 24969:1 24996:3 25000:1 25008:5 25018:2 25027:1 25033:1 25036:2 25039:1 25054:1 25056:1 25066:1 25080:3 25122:1 25138:1 25172:1 25196:1 25199:2 25230:1 25232:1 25240:1 25246:1 25259:2 25273:1 25283:1 25286:1 25318:1 25320:2 25331:1 25343:1 25366:3 25368:1 25371:1 25376:1 25388:1 25391:1 25396:1 25447:1 25450:3 25453:1 25458:1 25471:1 25472:2 25474:1 25477:1 25478:1 25481:1 25537:1 25549:1 25618:1 25633:1 25652:1 25727:1 25729:1 25739:1 25786:1 25793:1 25840:1 25861:1 25898:1 25900:2 25909:1 25940:1 25963:2 25977:2 25989:1 26010:1 26022:5 26041:1 26048:1 26075:1 26076:1 26081:1 26086:2 26095:1 26097:1 26103:1 26111:1 26135:3 26157:2 26161:1 26167:1 26168:1 26250:1 26253:1 26288:1 26292:1 26300:1 26304:3 26317:2 26319:1 26356:4 26365:1 26373:1 26374:1 26380:1 26391:1 26395:1 26399:1 26420:7 26445:1 26447:1 26456:1 26479:1 26483:1 26488:3 26495:1 26512:1 26530:1 26616:1 26651:1 26659:1 26668:1 26674:1 26683:2 26690:1 26696:1 26703:1 26758:1 26766:1 26776:1 26794:1 26803:1 26833:1 26836:1 26857:2 26862:1 26875:2 26880:1 26895:1 26901:1 26929:7 26930:1 26942:1 26964:1 26973:1 26974:1 26986:1 27012:1 27024:1 27029:1 27048:2 27051:1 27059:1 27060:1 27078:1 27083:1 27088:1 27092:1 27112:1 27123:1 27164:1 27192:3 27193:1 27218:1 27230:1 27233:1 27265:1 27272:1 27304:1 27312:3 27315:1 27338:1 27340:2 27341:1 27368:1 27375:1 27381:1 27387:1 27393:1 27428:1 27443:1 27448:2 27450:1 27465:1 27484:1 27486:1 27514:1 27577:1 27590:1 27622:1 27627:2 27633:2 27646:1 27657:1 27662:1 27673:1 27701:3 27711:1 27713:1 27729:3 27748:2 27750:1 27784:1 27786:1 27793:1 27796:1 27820:1 27854:1 27873:2 27889:1 27927:1 27933:1 27947:1 27970:1 27977:1 28038:1 28048:1 28049:1 28064:1 28071:1 28072:1 28076:1 28106:1 28131:1 28142:2 28153:1 28186:1 28191:1 28200:1 28202:1 28210:2 28227:2 28228:9 28239:1 28291:2 28304:1 28305:1 28322:1 28328:1 28337:1 28356:3 28360:3 28368:3 28371:2 28373:4 28410:1 28463:1 28497:1 28501:1 28502:1 28515:1 28551:1 28564:1 28568:1 28569:1 28572:1 28573:2 28594:6 28595:1 28596:1 28605:1 28627:1 28630:1 28637:1 28667:1 28671:1 28691:1 28699:1 28727:1 28744:1 28768:1 28777:1 28788:1 28814:1 28816:2 28846:1 28857:1 28860:1 28863:5 28878:1 28883:1 28884:1 28921:1 28925:1 28931:1 28932:1 28945:1 28949:1 28954:1 28963:1 28986:1 28988:2 28998:2 29014:1 29034:1 29045:1 29050:1 29078:1 29093:1 29132:1 29144:1 29158:1 29163:3 29166:1 29171:1 29172:1 29187:1 29191:2 29210:1 29227:2 29238:1 29241:1 29244:1 29247:1 29259:2 29260:1 29281:1 29295:1 29318:2 29322:1 29354:1 29373:3 29375:1 29377:1 29401:1 29404:1 29446:2 29453:1 29460:1 29465:1 29473:1 29482:1 29484:1 29494:1 29523:1 29524:1 29529:1 29530:1 29531:1 29536:1 29543:2 29556:1 29566:1 29571:1 29574:1 29579:1 29580:1 29613:1 29615:1 29641:1 29663:1 29766:1 29798:1 29804:1 29805:2 29849:1 29855:1 29883:1 29891:1 29921:1 29952:1 29969:1 30009:1 30019:1 30034:2 30039:1 30109:1 30110:2 30114:1 30133:1 30134:3 30138:1 30146:2 30150:1 30151:1 30152:1 30169:1 30171:1 30180:1 30181:4 30203:1 30220:1 30226:2 30228:2 30229:1 30235:1 30238:4 30244:1 30251:1 30252:1 30261:3 30275:3 30279:1 30283:1 30309:1 30332:1 30336:1 30362:1 30377:1 30392:2 30397:4 30406:3 30411:1 30438:4 30453:1 30470:1 30471:1 30491:1 30525:1 30571:1 30574:1 30583:1 30604:1 30614:1 30629:1 30634:1 30635:1 30645:1 30646:2 30651:1 30656:1 30673:3 30711:1 30717:5 30730:1 30750:1 30786:3 30871:1 30882:1 30916:1 30926:1 31028:1 31043:1 31046:1 31053:2 31055:2 31072:1 31074:1 31082:1 31086:1 31092:1 31103:1 31136:1 31152:1 31194:3 31204:2 31233:2 31239:2 31257:1 31284:1 31296:1 31301:1 31308:1 31309:1 31313:2 31345:1 31348:2 31351:2 31382:1 31405:1 31431:1 31443:1 31473:1 31478:3 31484:1 31505:1 31516:1 31519:1 31542:1 31577:1 31580:2 31599:1 31600:1 31606:1 31608:2 31615:2 31617:1 31618:1 31623:1 31632:1 31677:3 1 13:1 40:1 62:1 65:1 72:1 106:1 141:1 155:1 156:3 161:1 173:1 188:1 190:2 207:5 231:1 263:1 274:1 278:5 297:2 307:1 328:1 354:1 371:3 373:2 378:3 387:3 391:1 397:2 416:1 430:1 438:1 454:5 458:2 471:1 490:1 526:1 527:1 596:1 600:1 620:1 634:2 645:1 659:1 665:1 667:1 678:1 693:1 767:1 815:1 826:1 829:1 856:2 863:1 871:1 900:4 906:1 911:1 918:3 927:1 942:7 943:3 952:3 975:2 993:4 995:2 998:6 1000:1 1001:1 1004:2 1018:2 1033:1 1042:3 1044:3 1055:1 1095:2 1121:1 1142:1 1159:1 1178:1 1275:3 1277:2 1285:1 1295:1 1298:1 1312:1 1328:1 1332:1 1356:2 1380:1 1386:2 1389:1 1417:1 1433:1 1451:1 1468:1 1470:1 1485:1 1500:1 1530:1 1540:1 1541:2 1565:1 1584:1 1595:1 1602:1 1613:1 1629:1 1632:1 1647:1 1686:4 1694:5 1696:2 1713:1 1743:1 1754:1 1763:1 1767:1 1783:1 1786:1 1791:2 1804:2 1818:1 1820:1 1825:1 1835:1 1839:1 1854:1 1863:1 1867:1 1871:1 1881:1 1882:1 1886:2 1897:1 1920:2 1923:1 1945:4 1954:1 1965:1 1971:1 1974:2 1978:1 1979:1 1993:2 1994:5 2027:3 2030:2 2043:1 2060:1 2065:3 2074:1 2113:1 2121:1 2128:1 2129:1 2143:2 2192:1 2198:1 2207:1 2214:1 2215:2 2220:1 2222:1 2226:1 2230:2 2243:1 2272:1 2283:1 2296:1 2301:1 2306:2 2308:1 2323:1 2349:1 2354:7 2361:1 2370:1 2376:1 2423:2 2436:3 2439:1 2450:1 2458:1 2464:2 2477:2 2478:1 2482:1 2485:3 2487:1 2491:1 2494:2 2495:2 2497:1 2501:1 2502:1 2508:4 2509:2 2514:5 2515:3 2517:1 2528:1 2565:1 2568:1 2571:3 2595:1 2603:1 2617:1 2618:1 2623:1 2631:1 2637:1 2639:1 2657:1 2695:1 2706:1 2718:1 2722:1 2739:2 2751:1 2752:1 2765:1 2771:1 2776:1 2779:1 2800:2 2803:2 2806:1 2808:5 2813:1 2814:1 2824:1 2827:1 2835:1 2849:4 2851:1 2857:1 2873:2 2881:1 2884:1 2897:3 2906:1 2913:1 2916:5 2924:4 2937:1 2939:1 2947:1 2950:3 2951:2 2967:1 2981:1 2982:2 2987:1 3029:1 3034:1 3035:2 3036:2 3041:1 3050:2 3056:1 3060:3 3065:1 3069:1 3127:1 3146:2 3157:1 3159:9 3178:2 3180:1 3185:1 3186:1 3190:1 3199:1 3203:2 3224:8 3246:2 3249:2 3269:1 3338:1 3351:1 3352:4 3371:2 3377:1 3383:1 3438:1 3440:1 3442:1 3447:1 3457:2 3469:1 3490:2 3510:2 3524:1 3534:1 3550:1 3551:1 3579:1 3580:1 3590:1 3608:6 3626:1 3643:1 3663:1 3749:1 3774:1 3781:1 3784:1 3788:1 3804:1 3829:1 3844:1 3861:1 3868:2 3873:1 3898:10 3909:1 3912:2 3914:1 3915:1 3937:1 3942:1 4000:1 4001:1 4008:1 4013:2 4021:1 4038:1 4096:1 4099:1 4106:1 4110:1 4113:1 4117:1 4129:1 4149:1 4152:1 4156:2 4163:1 4167:1 4179:2 4186:1 4200:2 4215:1 4220:1 4221:1 4226:2 4229:1 4236:1 4241:1 4253:2 4272:1 4293:2 4315:2 4340:1 4348:3 4349:3 4356:1 4393:1 4395:2 4398:1 4403:1 4422:1 4426:2 4464:1 4476:1 4500:1 4526:1 4537:1 4547:2 4552:1 4557:1 4563:1 4567:1 4581:1 4587:1 4594:1 4610:1 4629:1 4647:1 4669:7 4691:2 4696:1 4708:1 4712:1 4717:1 4720:1 4732:2 4749:2 4779:1 4787:2 4808:2 4834:1 4843:1 4869:2 4893:1 4899:1 4902:1 4904:1 4910:1 4911:2 4922:1 4938:1 4970:1 5001:1 5006:1 5034:3 5044:2 5056:1 5062:2 5066:1 5085:2 5105:1 5131:1 5135:1 5138:2 5154:2 5167:1 5174:1 5216:1 5267:8 5270:1 5279:1 5282:1 5283:1 5297:1 5316:1 5329:1 5339:1 5429:1 5430:1 5431:3 5433:4 5434:2 5436:1 5440:1 5441:1 5442:1 5446:1 5449:3 5450:3 5453:1 5454:2 5456:2 5465:3 5469:1 5517:1 5532:1 5548:2 5557:1 5575:1 5580:1 5592:1 5625:1 5638:1 5658:1 5668:1 5720:1 5765:1 5771:1 5801:2 5807:1 5813:1 5850:1 5875:2 5889:1 5890:1 5915:1 5917:1 5937:1 5953:2 5959:1 5972:1 5980:1 5988:1 5994:1 6017:1 6029:1 6057:1 6100:1 6110:1 6115:2 6118:1 6133:3 6134:1 6136:2 6139:1 6143:1 6144:1 6156:1 6181:1 6188:3 6200:1 6219:5 6223:1 6224:1 6237:2 6308:1 6327:1 6330:1 6345:1 6351:1 6361:1 6387:1 6400:1 6427:1 6433:1 6444:2 6466:2 6468:1 6488:3 6494:1 6495:1 6499:1 6502:1 6560:1 6561:1 6571:1 6579:1 6581:1 6582:1 6586:9 6600:1 6603:1 6624:2 6655:1 6668:1 6684:2 6693:1 6706:1 6709:5 6713:1 6720:1 6769:1 6775:1 6799:1 6806:1 6809:1 6814:1 6816:1 6822:1 6823:1 6825:1 6834:3 6835:2 6884:1 6931:1 6949:1 6990:1 6993:4 6996:2 7008:1 7040:1 7052:1 7061:1 7071:1 7097:1 7106:1 7131:1 7145:2 7153:1 7175:1 7182:1 7227:1 7253:1 7256:1 7265:1 7284:7 7292:1 7295:1 7298:1 7309:1 7315:1 7326:2 7348:1 7362:1 7403:1 7405:2 7429:1 7454:1 7465:1 7473:1 7478:2 7504:1 7522:1 7529:1 7535:1 7550:1 7561:1 7569:1 7574:6 7578:2 7611:1 7621:1 7624:1 7625:2 7636:3 7638:1 7640:1 7645:4 7648:1 7651:1 7656:1 7679:1 7680:1 7681:1 7695:1 7701:1 7729:1 7737:2 7747:2 7759:1 7792:1 7805:1 7812:1 7839:1 7853:1 7869:1 7925:1 7930:1 7933:1 7971:1 7984:1 7991:1 7999:1 8004:1 8006:3 8010:1 8032:4 8036:2 8037:1 8061:1 8064:2 8074:1 8081:1 8093:1 8108:2 8117:1 8134:1 8140:1 8168:1 8198:1 8218:2 8235:3 8236:6 8250:1 8257:3 8258:1 8262:2 8263:2 8287:2 8288:2 8290:1 8303:29 8306:1 8315:1 8323:1 8326:5 8327:3 8331:2 8367:1 8374:1 8375:1 8384:1 8397:1 8404:2 8405:2 8411:1 8421:1 8433:1 8459:1 8461:1 8480:2 8486:1 8492:1 8514:1 8541:1 8553:1 8557:1 8558:3 8588:1 8592:1 8609:1 8681:1 8722:1 8734:1 8742:1 8765:1 8768:1 8777:1 8788:1 8815:1 8835:16 8843:1 8865:2 8868:1 8870:1 8935:2 8937:1 8938:1 8943:1 8969:1 8974:1 8990:2 8994:2 8996:1 9001:1 9019:1 9030:1 9031:4 9038:2 9044:1 9065:2 9066:1 9080:1 9088:1 9090:1 9104:1 9128:1 9129:1 9139:1 9142:1 9154:1 9201:1 9204:1 9205:1 9209:1 9211:1 9239:1 9255:3 9267:1 9271:2 9291:1 9302:1 9312:1 9319:1 9340:1 9345:1 9365:1 9393:1 9404:1 9436:1 9437:1 9449:1 9450:1 9460:1 9485:1 9486:1 9487:1 9501:1 9510:1 9533:1 9536:1 9537:1 9541:3 9577:2 9586:1 9594:2 9606:1 9613:1 9618:1 9643:1 9644:1 9655:1 9662:3 9663:1 9668:1 9670:1 9675:1 9687:1 9708:3 9719:1 9732:1 9768:2 9769:4 9778:1 9784:2 9794:2 9830:1 9844:1 9849:1 9853:2 9872:1 9878:1 9882:1 9884:1 9886:1 9888:2 9898:1 9950:1 9960:1 9963:1 9969:1 9972:4 9996:1 9999:2 10021:4 10050:1 10080:1 10089:1 10111:2 10122:1 10147:1 10156:1 10159:1 10183:1 10197:1 10201:1 10211:1 10220:6 10226:1 10264:2 10298:1 10302:1 10330:1 10358:1 10363:1 10365:1 10366:2 10369:1 10408:1 10437:1 10439:1 10447:1 10494:2 10517:1 10530:2 10542:1 10557:1 10558:1 10576:1 10587:1 10603:1 10606:1 10611:1 10612:1 10657:1 10663:1 10665:1 10674:5 10690:2 10702:3 10707:1 10738:2 10762:1 10764:1 10813:1 10818:2 10835:1 10841:1 10854:1 10861:3 10864:1 10901:1 10907:1 10911:9 10913:1 10914:1 10919:2 10948:1 10949:1 10973:1 10980:1 11040:1 11047:2 11049:1 11094:1 11109:1 11110:1 11112:1 11115:1 11117:1 11121:3 11129:1 11131:1 11136:2 11169:1 11181:4 11185:1 11187:1 11189:1 11194:1 11196:1 11207:1 11210:1 11224:4 11244:1 11265:1 11283:1 11291:1 11300:1 11303:2 11319:1 11330:1 11348:2 11360:1 11365:1 11373:3 11376:2 11389:1 11390:3 11402:1 11419:1 11432:1 11447:2 11462:3 11463:1 11485:1 11486:1 11498:3 11524:1 11541:1 11550:3 11562:1 11573:4 11588:1 11597:1 11609:1 11624:2 11744:1 11767:1 11770:1 11791:1 11792:2 11796:1 11801:2 11807:1 11816:1 11817:5 11819:5 11820:1 11827:1 11834:2 11838:2 11845:3 11849:1 11851:1 11868:2 11901:2 11910:1 11935:1 11937:1 11939:1 11983:1 11986:1 12007:1 12023:1 12026:1 12061:1 12118:1 12137:1 12151:1 12156:1 12192:1 12195:1 12219:1 12222:1 12227:1 12241:1 12245:2 12247:1 12249:1 12250:1 12260:2 12262:1 12264:2 12272:1 12278:1 12285:2 12287:1 12293:1 12324:9 12325:1 12356:1 12369:3 12383:2 12391:1 12418:2 12429:2 12430:1 12441:1 12442:1 12449:2 12450:1 12464:1 12483:1 12497:1 12501:1 12528:1 12544:1 12574:3 12579:1 12584:1 12587:1 12592:2 12597:1 12599:1 12603:1 12604:1 12611:1 12614:1 12624:1 12636:1 12640:1 12641:1 12652:3 12655:2 12683:1 12718:1 12741:2 12745:1 12799:1 12808:1 12818:1 12829:1 12863:5 12883:1 12887:1 12901:1 12907:1 12918:1 12925:1 12931:1 12955:2 12983:1 13003:1 13025:1 13030:1 13043:1 13047:1 13052:1 13059:1 13118:1 13125:1 13127:1 13132:4 13133:1 13134:1 13149:1 13155:2 13168:1 13172:1 13174:1 13182:1 13195:1 13235:1 13237:1 13264:1 13271:1 13291:1 13310:1 13327:1 13338:1 13427:2 13456:1 13502:1 13515:1 13531:1 13533:2 13534:1 13552:2 13569:1 13582:1 13601:1 13626:1 13654:1 13663:1 13669:1 13718:6 13723:1 13737:1 13776:1 13777:1 13785:2 13817:1 13838:2 13847:1 13881:1 13900:1 13913:1 13920:1 13939:2 13975:1 13978:1 13998:1 14000:1 14010:1 14026:1 14048:1 14058:1 14064:3 14084:1 14110:1 14129:1 14146:1 14176:1 14199:1 14201:1 14204:2 14208:4 14224:1 14230:1 14245:1 14262:3 14279:1 14284:2 14307:1 14314:2 14316:1 14352:1 14355:1 14356:1 14369:4 14370:1 14381:2 14385:1 14403:1 14416:1 14417:1 14429:1 14437:1 14453:8 14462:1 14466:1 14503:2 14504:1 14510:1 14532:1 14550:1 14561:1 14603:3 14630:1 14635:5 14658:1 14670:1 14695:2 14722:1 14732:1 14734:1 14746:1 14748:1 14749:1 14762:1 14769:3 14773:1 14775:1 14778:1 14782:6 14783:1 14810:1 14814:1 14818:1 14846:1 14894:1 14906:1 14967:2 14968:1 15010:1 15013:1 15015:1 15022:1 15025:1 15032:1 15033:1 15049:1 15074:1 15080:1 15098:7 15111:1 15121:1 15123:2 15128:1 15163:1 15185:1 15202:1 15215:1 15236:1 15265:1 15266:1 15300:1 15312:1 15353:1 15362:2 15379:3 15395:1 15401:1 15434:1 15446:1 15468:1 15488:1 15514:1 15517:2 15518:1 15527:1 15540:1 15541:1 15550:1 15581:1 15592:2 15651:1 15675:2 15698:1 15705:1 15707:1 15712:2 15714:1 15725:3 15729:2 15782:1 15786:2 15842:1 15844:1 15851:1 15870:1 15880:1 15922:3 15938:1 15941:2 15972:1 15973:1 16032:1 16035:1 16078:2 16079:1 16100:1 16120:1 16157:1 16160:1 16168:1 16188:1 16189:1 16231:1 16302:1 16314:1 16351:1 16406:1 16435:1 16464:1 16476:1 16479:1 16492:1 16511:1 16516:2 16520:1 16545:1 16551:1 16567:1 16585:1 16592:1 16627:1 16687:1 16701:2 16720:1 16731:1 16739:2 16752:1 16782:1 16807:1 16810:1 16869:1 16883:1 16897:2 16909:1 16913:2 16914:1 16926:1 16940:1 16941:1 16945:1 16948:1 16980:1 16999:2 17008:1 17052:1 17079:2 17089:1 17104:1 17105:2 17120:1 17135:2 17151:1 17200:1 17230:1 17234:1 17239:7 17256:1 17260:3 17285:1 17327:1 17344:1 17349:2 17360:2 17363:1 17380:2 17383:1 17392:1 17428:1 17435:1 17444:1 17445:1 17454:2 17482:1 17504:1 17511:1 17516:3 17518:2 17519:2 17520:3 17521:1 17527:2 17529:1 17531:1 17532:2 17537:1 17538:1 17540:1 17546:1 17555:1 17592:1 17598:1 17627:1 17652:1 17655:1 17656:1 17692:1 17708:2 17709:1 17729:1 17762:1 17774:1 17808:1 17827:1 17868:1 17874:1 17884:1 17899:1 17902:2 17915:1 17916:1 17925:1 17930:3 17941:2 17954:1 17965:1 17966:1 17972:2 17980:1 17985:1 17994:2 18008:1 18016:1 18071:4 18073:1 18096:3 18102:1 18171:1 18172:1 18183:2 18191:1 18201:2 18212:1 18225:1 18233:1 18236:2 18286:2 18307:4 18308:1 18340:1 18341:1 18344:1 18361:1 18423:1 18424:1 18425:1 18440:1 18443:1 18453:1 18491:1 18494:1 18517:1 18530:2 18533:1 18565:1 18577:2 18585:1 18597:1 18617:1 18662:1 18670:1 18731:1 18734:1 18755:1 18760:1 18779:1 18796:1 18801:1 18810:3 18814:2 18815:2 18819:1 18825:2 18852:1 18872:1 18880:1 18885:1 18887:1 18898:1 18909:1 18910:1 18962:1 18982:1 18983:1 19004:2 19023:1 19033:1 19047:1 19050:1 19070:1 19071:1 19101:1 19102:1 19103:1 19123:1 19130:1 19134:2 19171:1 19226:2 19236:1 19246:1 19267:1 19337:1 19376:1 19378:1 19390:1 19391:1 19411:2 19450:1 19514:2 19515:1 19525:1 19538:1 19553:1 19575:1 19593:1 19619:1 19631:1 19651:1 19656:1 19670:1 19719:4 19780:1 19806:1 19826:9 19832:1 19833:2 19834:1 19846:3 19847:1 19863:1 19872:1 19876:1 19897:1 19915:1 19948:4 19971:1 19988:1 19993:1 20016:1 20020:1 20023:2 20041:2 20053:1472 20064:1 20070:1 20086:1 20126:1 20132:1 20134:1 20160:2 20218:1 20262:1 20264:1 20267:1 20271:1 20274:1 20275:2 20294:1 20298:1 20308:1 20320:1 20338:1 20375:1 20420:1 20422:1 20425:2 20490:1 20528:2 20545:1 20546:1 20557:2 20567:1 20587:1 20605:2 20618:1 20642:1 20647:2 20651:1 20660:1 20669:1 20679:1 20681:1 20701:2 20702:2 20715:2 20721:1 20724:1 20732:2 20757:2 20759:1 20768:1 20774:1 20781:2 20787:2 20815:1 20833:1 20838:1 20839:1 20864:2 20871:1 20884:1 20917:1 20926:3 20933:1 20935:2 20943:1 20956:4 20974:1 20979:1 20999:1 21005:1 21013:2 21014:1 21022:1 21061:1 21062:1 21065:1 21095:1 21098:1 21105:1 21106:1 21148:1 21149:1 21150:1 21152:1 21157:1 21168:1 21202:1 21219:1 21220:1 21239:2 21242:1 21249:1 21250:1 21254:1 21277:1 21281:1 21288:1 21295:1 21302:1 21320:1 21322:1 21330:1 21331:1 21376:1 21379:2 21387:2 21446:1 21463:1 21466:1 21475:1 21478:1 21482:1 21483:1 21486:1 21501:1 21511:1 21519:2 21523:1 21524:1 21544:4 21555:2 21571:1 21573:1 21587:1 21590:1 21591:3 21614:1 21627:1 21633:1 21652:1 21654:1 21676:1 21678:1 21699:1 21711:3 21712:8 21713:2 21719:1 21727:2 21733:1 21756:1 21813:1 21822:1 21828:1 21853:1 21860:1 21861:1 21881:1 21897:1 21940:3 21960:1 21982:2 21990:1 22001:1 22015:1 22018:1 22032:1 22066:6 22069:1 22085:1 22119:1 22120:1 22140:1 22185:1 22202:3 22221:1 22225:1 22228:1 22231:1 22235:1 22236:1 22244:1 22288:3 22298:2 22300:2 22314:2 22326:1 22337:2 22370:3 22390:1 22398:1 22417:2 22421:1 22432:1 22452:2 22488:3 22492:1 22503:1 22508:2 22519:3 22546:2 22554:1 22567:1 22590:1 22602:1 22621:1 22624:2 22628:1 22632:1 22643:2 22665:1 22671:2 22685:2 22699:2 22715:1 22716:1 22723:1 22724:1 22726:2 22741:1 22750:2 22760:1 22769:1 22774:1 22779:1 22790:1 22811:1 22838:1 22846:1 22855:1 22857:1 22862:2 22866:2 22893:1 22939:1 23014:1 23017:1 23026:1 23027:2 23031:1 23032:1 23043:1 23056:1 23063:1 23070:2 23071:1 23081:1 23131:1 23137:1 23158:1 23181:1 23183:1 23190:1 23194:1 23195:2 23199:1 23210:1 23222:1 23228:2 23229:1 23238:1 23249:1 23251:2 23262:1 23271:4 23288:2 23298:1 23313:1 23326:1 23337:1 23345:1 23347:1 23349:1 23352:1 23355:1 23377:1 23410:1 23418:1 23426:2 23429:1 23437:3 23439:1 23442:1 23452:2 23466:1 23468:1 23497:1 23498:1 23500:2 23502:1 23503:1 23540:1 23576:1 23605:3 23613:1 23614:1 23616:2 23617:1 23619:1 23625:1 23628:1 23632:2 23645:3 23659:1 23674:1 23682:1 23693:2 23697:1 23700:1 23721:1 23749:1 23796:1 23811:1 23823:1 23853:1 23862:1 23887:1 23897:1 23900:1 23912:1 23922:3 23939:1 23940:2 23943:2 23946:1 23969:1 23982:1 23990:2 23993:1 23998:1 24001:1 24002:4 24010:1 24016:1 24026:1 24030:4 24037:1 24044:1 24053:1 24073:1 24074:1 24108:7 24111:1 24126:1 24150:1 24162:1 24172:3 24175:1 24184:1 24197:1 24221:1 24248:1 24250:2 24290:1 24291:3 24294:1 24305:3 24309:2 24325:1 24329:1 24346:1 24349:2 24370:1 24371:1 24376:2 24386:1 24408:1 24426:1 24432:1 24451:1 24479:1 24500:1 24502:1 24531:1 24549:2 24550:1 24558:1 24568:1 24578:2 24585:2 24598:3 24608:2 24624:1 24661:1 24685:2 24688:1 24706:1 24708:1 24750:1 24752:1 24762:1 24776:1 24795:2 24799:1 24806:1 24808:1 24814:1 24851:3 24883:2 24969:1 24996:3 25000:1 25008:5 25018:2 25027:1 25033:1 25036:3 25039:1 25051:1 25054:1 25056:1 25066:1 25080:3 25122:1 25138:1 25172:1 25184:1 25196:1 25199:2 25230:1 25232:1 25240:1 25246:1 25259:2 25273:1 25283:1 25286:1 25318:1 25320:2 25331:1 25343:1 25366:3 25368:1 25371:1 25376:1 25388:1 25391:1 25396:1 25447:1 25450:4 25453:1 25458:1 25471:1 25472:2 25474:1 25477:1 25478:1 25481:1 25537:1 25549:1 25618:1 25633:1 25652:1 25718:2 25727:1 25729:1 25739:1 25776:1 25786:1 25793:1 25840:1 25861:1 25885:1 25898:1 25900:2 25909:1 25940:1 25963:2 25977:2 25989:1 26010:1 26022:5 26041:1 26048:1 26055:1 26075:1 26076:1 26081:1 26086:2 26095:1 26097:1 26098:1 26103:1 26111:1 26135:3 26157:2 26161:1 26167:1 26168:1 26250:1 26253:1 26288:1 26291:1 26292:1 26300:1 26304:3 26313:1 26317:2 26319:1 26356:4 26365:1 26373:1 26374:1 26376:1 26380:1 26391:1 26395:1 26399:1 26420:7 26426:1 26445:1 26447:1 26456:1 26457:1 26479:1 26483:1 26488:3 26495:1 26512:1 26530:1 26536:1 26616:1 26651:1 26659:1 26668:1 26674:1 26683:2 26690:1 26696:1 26698:1 26703:1 26758:1 26766:1 26776:1 26794:1 26803:2 26828:1 26833:1 26836:1 26857:2 26862:1 26875:2 26880:1 26895:1 26901:1 26929:7 26930:1 26942:1 26964:1 26973:1 26974:1 26986:1 27012:1 27024:1 27029:1 27048:2 27051:1 27059:1 27060:1 27078:1 27083:1 27088:1 27092:1 27112:1 27123:1 27164:1 27192:5 27193:1 27218:1 27230:1 27233:1 27265:1 27272:1 27304:1 27312:3 27315:1 27338:1 27340:2 27341:1 27368:1 27375:1 27381:1 27387:1 27393:1 27428:1 27443:1 27448:2 27450:1 27465:2 27484:1 27486:1 27514:1 27577:1 27590:1 27606:1 27622:1 27627:2 27633:2 27646:1 27657:1 27662:1 27673:1 27701:3 27711:1 27713:1 27729:3 27748:2 27750:1 27784:1 27786:1 27793:1 27796:1 27820:1 27854:1 27873:2 27889:1 27927:1 27933:1 27947:1 27970:1 27977:1 28038:2 28048:1 28049:1 28064:1 28071:1 28072:1 28076:1 28106:1 28131:1 28142:2 28153:1 28186:1 28191:1 28200:1 28202:1 28210:2 28227:2 28228:9 28239:1 28268:1 28291:2 28304:1 28305:1 28322:1 28328:1 28337:1 28356:3 28360:3 28368:3 28371:2 28373:4 28410:1 28463:1 28497:1 28501:1 28502:1 28515:1 28531:1 28551:1 28564:1 28568:1 28569:1 28572:1 28573:2 28594:6 28595:1 28596:1 28605:1 28627:1 28630:1 28637:1 28667:1 28671:1 28691:1 28699:1 28727:1 28744:1 28768:1 28777:1 28788:1 28814:1 28816:2 28846:1 28857:1 28860:1 28863:5 28878:1 28883:1 28884:1 28921:1 28925:1 28931:1 28932:1 28945:1 28949:1 28954:1 28963:1 28986:1 28988:2 28998:2 29014:1 29034:1 29043:1 29045:1 29050:2 29078:1 29093:1 29132:1 29144:1 29158:1 29163:3 29166:1 29171:1 29172:1 29187:1 29191:2 29210:1 29227:2 29238:1 29241:1 29244:1 29247:1 29259:2 29260:1 29281:1 29295:1 29314:1 29318:2 29322:1 29354:1 29373:3 29375:1 29377:1 29401:1 29404:1 29446:2 29453:1 29460:1 29465:1 29473:1 29482:1 29484:1 29494:1 29523:1 29524:1 29529:1 29530:1 29531:1 29536:1 29543:2 29556:1 29566:1 29571:1 29574:1 29579:1 29580:1 29613:1 29615:1 29641:1 29663:1 29766:1 29798:1 29804:1 29805:2 29849:1 29855:1 29879:1 29883:1 29891:1 29921:1 29952:1 29969:1 30009:1 30019:2 30034:2 30039:1 30063:1 30109:1 30110:2 30114:1 30133:1 30134:3 30138:1 30146:2 30150:1 30151:1 30152:1 30169:1 30171:1 30180:1 30181:4 30203:1 30220:1 30226:2 30228:2 30229:1 30235:1 30238:4 30244:1 30251:1 30252:1 30261:3 30275:3 30279:1 30283:1 30309:1 30332:1 30336:1 30362:1 30377:1 30392:2 30397:4 30406:3 30411:1 30438:4 30453:1 30470:1 30471:1 30491:1 30525:1 30571:1 30574:1 30583:1 30604:1 30614:1 30629:1 30634:1 30635:1 30645:1 30646:2 30651:1 30656:1 30673:3 30711:1 30717:5 30730:1 30750:1 30786:3 30871:1 30882:1 30916:1 30926:1 31028:1 31043:1 31046:1 31053:2 31055:3 31068:1 31072:1 31074:1 31082:1 31086:1 31092:1 31103:1 31136:1 31152:1 31194:3 31204:2 31233:2 31239:2 31257:1 31284:1 31296:1 31301:1 31308:1 31309:1 31313:2 31345:1 31348:2 31351:2 31382:1 31405:1 31422:1 31431:1 31443:1 31473:1 31478:3 31484:1 31505:1 31516:1 31519:1 31542:1 31577:1 31580:2 31599:1 31600:1 31606:1 31608:2 31615:2 31617:2 31618:1 31623:1 31632:1 31677:4 1 13:1 40:1 46:1 62:1 65:1 72:1 106:1 141:1 155:1 156:3 161:1 173:1 188:1 190:2 207:5 226:1 231:1 263:1 274:1 278:5 297:3 307:1 328:1 354:1 371:3 373:2 378:3 387:3 391:1 397:2 416:1 430:1 438:1 454:5 458:2 471:1 490:1 526:1 527:1 596:1 600:1 620:1 634:2 645:1 659:1 665:1 667:2 678:1 693:1 767:1 815:1 817:1 826:1 829:1 856:2 863:1 871:1 900:4 906:1 911:1 917:1 918:3 927:1 942:9 943:4 952:3 975:2 993:4 995:2 998:6 1000:1 1001:1 1004:2 1018:2 1033:1 1042:3 1044:3 1055:1 1095:2 1121:1 1142:1 1159:1 1178:1 1275:3 1277:2 1285:1 1295:1 1298:1 1312:1 1328:1 1332:1 1356:2 1380:1 1386:2 1389:1 1417:1 1433:1 1451:1 1468:1 1470:1 1485:1 1500:1 1530:1 1540:1 1541:2 1565:1 1584:1 1595:1 1602:1 1613:1 1629:1 1632:1 1647:1 1686:4 1694:5 1696:2 1705:1 1713:1 1743:1 1754:1 1763:1 1767:1 1783:1 1786:1 1791:2 1804:2 1818:1 1820:1 1825:1 1835:1 1839:1 1850:1 1854:1 1863:1 1867:1 1871:1 1881:1 1882:1 1886:2 1897:1 1905:1 1920:2 1923:1 1945:4 1954:1 1965:1 1971:1 1974:2 1978:1 1979:1 1993:2 1994:5 2027:3 2030:2 2043:1 2060:1 2065:3 2074:1 2113:1 2121:1 2128:1 2129:1 2143:2 2192:1 2198:2 2201:1 2207:1 2214:1 2215:2 2220:1 2222:1 2226:1 2230:2 2243:1 2272:1 2283:1 2296:1 2301:1 2306:2 2308:1 2323:1 2349:1 2354:7 2361:1 2370:1 2376:1 2393:1 2423:2 2436:3 2439:1 2450:1 2458:1 2464:2 2477:2 2478:1 2482:2 2485:3 2487:1 2491:1 2494:2 2495:2 2497:1 2501:1 2502:2 2508:4 2509:3 2514:5 2515:4 2517:1 2528:1 2565:1 2568:1 2571:3 2576:1 2595:1 2603:1 2617:1 2618:1 2623:1 2631:1 2637:1 2639:1 2657:1 2695:1 2706:1 2718:1 2722:1 2739:3 2751:1 2752:1 2765:1 2771:1 2776:1 2779:1 2800:2 2803:2 2806:1 2808:5 2812:1 2813:1 2814:1 2824:1 2827:1 2835:1 2849:4 2851:1 2857:1 2873:2 2881:1 2884:1 2897:4 2906:1 2913:1 2916:5 2924:4 2928:1 2937:1 2939:1 2945:1 2947:1 2950:3 2951:2 2967:1 2981:1 2982:2 2987:1 3029:1 3034:1 3035:2 3036:2 3041:1 3050:2 3056:1 3060:3 3065:1 3069:1 3096:1 3127:1 3146:2 3152:1 3157:1 3159:9 3178:2 3180:1 3185:1 3186:1 3190:1 3199:1 3203:2 3224:9 3246:2 3249:2 3269:1 3338:1 3351:1 3352:4 3371:2 3377:1 3383:1 3438:1 3440:1 3442:1 3447:1 3457:2 3469:1 3490:2 3510:2 3524:1 3534:1 3550:1 3551:1 3579:1 3580:1 3590:1 3608:6 3626:1 3643:1 3663:1 3749:1 3774:1 3781:1 3784:1 3788:1 3804:1 3829:1 3844:1 3861:1 3868:2 3873:1 3898:10 3909:1 3912:2 3914:1 3915:1 3937:1 3942:1 4000:1 4001:1 4008:1 4013:2 4021:1 4038:1 4096:1 4099:1 4101:1 4106:2 4110:1 4113:1 4117:1 4129:1 4149:1 4152:1 4156:2 4163:1 4167:1 4179:2 4181:1 4186:1 4200:2 4215:1 4220:1 4221:1 4226:2 4229:1 4236:1 4241:2 4242:1 4253:2 4272:1 4293:2 4315:2 4340:1 4348:3 4349:3 4356:1 4393:1 4395:2 4398:1 4403:1 4422:1 4426:2 4432:1 4464:1 4476:1 4500:1 4526:1 4537:1 4547:2 4552:1 4557:1 4563:1 4567:2 4581:1 4587:1 4594:1 4610:1 4629:1 4647:1 4669:7 4691:2 4696:1 4708:1 4712:1 4717:1 4720:1 4732:2 4749:2 4779:1 4785:1 4787:2 4808:2 4834:1 4843:1 4844:1 4869:2 4893:1 4899:1 4902:1 4904:1 4910:1 4911:2 4922:1 4938:1 4970:1 5001:1 5006:1 5034:3 5044:2 5056:1 5062:2 5066:1 5085:2 5105:1 5131:1 5135:1 5138:2 5154:3 5167:1 5174:1 5216:1 5267:8 5270:1 5279:1 5282:1 5283:1 5297:1 5316:1 5329:1 5339:1 5429:1 5430:1 5431:4 5433:4 5434:2 5436:1 5440:1 5441:1 5442:1 5446:1 5449:4 5450:3 5453:1 5454:2 5456:3 5465:3 5469:1 5517:1 5532:1 5548:2 5557:1 5575:1 5580:1 5592:1 5625:1 5638:1 5658:1 5668:1 5720:1 5765:1 5771:1 5801:2 5807:1 5813:1 5850:1 5875:2 5889:1 5890:1 5915:1 5917:1 5937:1 5953:2 5959:1 5972:1 5980:1 5988:1 5994:1 6017:1 6029:1 6057:1 6100:1 6110:1 6115:2 6118:1 6133:3 6134:1 6136:2 6139:1 6143:1 6144:1 6156:1 6157:1 6181:1 6188:3 6200:1 6219:5 6223:1 6224:1 6237:2 6308:1 6327:1 6330:1 6345:1 6351:1 6361:1 6387:1 6400:1 6427:1 6433:1 6444:2 6466:2 6468:1 6488:3 6494:1 6495:1 6499:1 6502:1 6514:1 6560:1 6561:1 6571:1 6579:1 6581:1 6582:1 6586:9 6600:1 6603:1 6624:2 6655:1 6668:1 6684:2 6693:1 6706:1 6709:5 6713:1 6720:1 6769:1 6775:1 6799:1 6806:1 6809:1 6814:1 6816:1 6822:1 6823:1 6825:1 6834:3 6835:2 6884:1 6931:1 6949:1 6990:1 6993:4 6996:2 7008:1 7040:1 7052:1 7061:1 7071:1 7079:1 7097:1 7106:1 7131:1 7145:2 7153:2 7174:1 7175:1 7182:1 7227:1 7253:1 7256:1 7265:1 7284:7 7292:1 7295:1 7298:1 7309:1 7315:1 7326:2 7348:1 7362:1 7403:1 7405:2 7429:1 7454:1 7465:1 7473:1 7478:2 7504:1 7522:1 7529:1 7535:1 7550:1 7561:1 7569:1 7574:6 7578:2 7611:1 7615:1 7621:1 7624:1 7625:2 7636:3 7638:1 7640:1 7645:4 7648:1 7651:1 7656:1 7679:1 7680:1 7681:1 7695:1 7701:1 7729:1 7737:2 7747:2 7759:1 7792:1 7796:1 7805:1 7812:1 7839:1 7853:1 7869:1 7925:1 7930:1 7933:1 7971:1 7984:1 7986:1 7991:1 7999:1 8004:1 8006:3 8010:1 8032:4 8036:2 8037:1 8061:1 8064:2 8074:1 8081:1 8093:1 8108:2 8117:1 8134:1 8140:1 8152:1 8168:1 8198:1 8218:2 8235:3 8236:6 8250:1 8257:3 8258:1 8262:2 8263:2 8287:2 8288:2 8290:1 8303:32 8306:1 8315:1 8323:1 8326:5 8327:3 8331:2 8367:1 8374:1 8375:1 8384:1 8397:1 8404:2 8405:2 8411:1 8421:1 8433:1 8459:1 8461:1 8480:2 8486:1 8492:1 8514:1 8541:1 8553:1 8557:1 8558:3 8588:1 8592:1 8609:1 8681:1 8722:1 8734:1 8737:1 8742:1 8765:1 8768:1 8777:1 8788:1 8797:1 8815:1 8835:17 8843:1 8865:3 8868:1 8870:1 8935:2 8937:1 8938:1 8943:1 8969:1 8974:1 8990:2 8994:2 8996:1 9001:1 9019:1 9030:1 9031:4 9038:2 9044:1 9065:2 9066:1 9080:1 9088:1 9090:1 9104:1 9128:1 9129:1 9139:1 9142:1 9154:1 9201:1 9204:1 9205:1 9209:1 9211:1 9239:1 9255:4 9267:1 9271:3 9291:1 9302:1 9312:1 9319:1 9340:1 9345:1 9365:1 9393:1 9404:1 9436:1 9437:1 9449:1 9450:1 9460:1 9485:1 9486:1 9487:1 9501:1 9510:1 9533:1 9536:1 9537:1 9541:3 9577:2 9586:1 9594:2 9606:1 9613:1 9618:1 9643:1 9644:1 9655:1 9662:3 9663:1 9668:1 9670:1 9675:1 9687:1 9708:3 9719:1 9732:1 9768:3 9769:4 9778:1 9784:2 9794:2 9830:1 9844:1 9849:1 9853:2 9872:1 9878:1 9882:1 9884:1 9886:1 9888:2 9898:1 9950:1 9960:2 9963:1 9969:1 9972:4 9996:1 9999:2 10021:4 10050:1 10080:1 10089:1 10111:2 10122:1 10142:1 10147:1 10156:1 10159:1 10183:1 10197:1 10201:1 10211:1 10220:6 10226:1 10264:2 10298:1 10302:1 10330:1 10358:1 10363:1 10365:1 10366:2 10369:1 10408:1 10437:1 10439:1 10447:1 10494:2 10517:1 10530:2 10542:1 10557:1 10558:1 10576:1 10587:1 10603:1 10606:1 10611:1 10612:1 10630:1 10657:1 10663:1 10665:1 10674:5 10690:3 10702:3 10707:1 10738:2 10762:1 10764:1 10813:1 10818:2 10835:1 10841:1 10854:1 10861:3 10864:1 10901:1 10907:1 10911:9 10913:1 10914:1 10919:2 10948:1 10949:1 10973:1 10980:1 11040:1 11047:2 11049:1 11094:1 11109:1 11110:1 11112:1 11115:1 11117:1 11121:3 11129:1 11131:1 11136:2 11169:1 11181:4 11185:1 11187:1 11189:1 11194:1 11196:1 11207:1 11210:1 11224:4 11244:1 11265:1 11283:1 11291:1 11300:1 11303:2 11319:1 11330:1 11348:2 11360:1 11365:1 11373:4 11376:2 11389:1 11390:3 11402:1 11419:1 11432:1 11447:2 11462:3 11463:1 11485:1 11486:1 11498:3 11524:1 11541:1 11550:3 11562:1 11573:4 11588:1 11597:1 11605:1 11609:1 11624:2 11744:1 11750:1 11767:1 11770:1 11791:1 11792:2 11796:1 11801:2 11807:1 11816:1 11817:5 11819:5 11820:1 11827:1 11834:2 11838:2 11845:3 11849:1 11851:1 11868:2 11901:2 11910:1 11935:1 11937:1 11939:1 11983:1 11986:1 12007:1 12023:1 12026:1 12061:1 12118:1 12137:1 12151:1 12156:1 12192:1 12195:1 12219:1 12222:1 12227:1 12241:1 12245:2 12247:1 12249:1 12250:1 12260:2 12262:1 12264:2 12272:1 12278:1 12285:2 12287:1 12293:1 12324:9 12325:1 12356:1 12369:3 12383:2 12391:1 12418:2 12429:2 12430:1 12441:1 12442:1 12449:2 12450:1 12464:1 12483:1 12497:1 12501:1 12528:1 12544:1 12574:3 12579:1 12584:1 12587:1 12592:2 12597:1 12599:1 12603:1 12604:1 12611:1 12614:1 12624:1 12636:1 12640:1 12641:1 12652:3 12655:2 12683:1 12718:1 12741:2 12745:1 12799:1 12808:1 12818:1 12829:1 12863:5 12872:1 12883:1 12887:1 12901:1 12907:1 12918:1 12925:1 12931:1 12955:2 12983:1 13003:1 13025:1 13030:1 13043:1 13047:1 13052:1 13059:1 13118:1 13125:1 13127:1 13132:4 13133:1 13134:1 13149:1 13155:2 13168:1 13172:1 13174:1 13182:1 13195:1 13235:1 13237:1 13264:1 13271:1 13291:1 13310:1 13327:1 13338:1 13427:3 13456:1 13502:1 13515:1 13531:1 13533:2 13534:1 13552:2 13566:1 13569:1 13582:1 13601:1 13626:1 13654:1 13663:1 13669:1 13677:1 13718:7 13723:1 13737:1 13776:1 13777:1 13785:2 13817:1 13838:2 13847:1 13881:1 13900:1 13913:1 13920:1 13939:2 13975:1 13978:1 13998:1 14000:1 14010:1 14026:1 14048:1 14058:1 14064:3 14084:1 14110:1 14129:1 14146:1 14176:1 14199:1 14201:1 14204:2 14208:4 14224:1 14230:1 14245:1 14262:3 14279:1 14284:2 14307:1 14314:2 14316:1 14352:1 14355:1 14356:1 14369:4 14370:1 14381:2 14385:1 14403:1 14416:1 14417:1 14429:1 14437:1 14453:10 14462:1 14466:1 14503:2 14504:1 14510:1 14532:1 14550:1 14561:1 14603:3 14630:1 14635:5 14658:1 14670:1 14695:2 14722:1 14732:1 14734:1 14746:1 14748:1 14749:1 14762:1 14769:3 14770:1 14773:1 14775:1 14777:1 14778:1 14782:6 14783:1 14810:1 14814:1 14818:1 14846:1 14873:1 14894:1 14906:1 14967:2 14968:1 15010:1 15013:1 15015:1 15022:1 15025:1 15032:1 15033:1 15049:1 15074:1 15080:1 15098:7 15111:1 15121:1 15123:2 15128:1 15163:1 15185:1 15202:1 15215:1 15236:1 15265:1 15266:1 15293:1 15300:1 15312:1 15353:1 15362:2 15379:3 15395:1 15401:1 15434:1 15446:1 15468:1 15488:1 15514:1 15517:2 15518:2 15527:1 15540:1 15541:1 15544:1 15550:2 15581:1 15592:2 15651:1 15675:2 15698:1 15705:1 15707:1 15712:2 15714:1 15725:3 15729:2 15782:1 15786:2 15790:1 15842:1 15844:1 15851:1 15870:1 15880:1 15922:3 15938:1 15941:2 15972:1 15973:1 16032:1 16035:1 16078:2 16079:1 16081:1 16100:1 16120:1 16157:1 16160:1 16168:1 16188:1 16189:1 16231:1 16302:1 16314:1 16351:1 16406:1 16435:1 16464:1 16476:1 16479:1 16481:1 16492:1 16511:1 16516:2 16520:1 16545:1 16551:1 16567:2 16585:1 16592:1 16627:1 16652:1 16687:1 16701:2 16720:1 16731:1 16739:2 16752:1 16782:1 16807:1 16810:1 16869:1 16883:1 16884:1 16897:2 16909:1 16913:3 16914:1 16918:1 16920:1 16926:1 16940:1 16941:1 16945:1 16948:1 16980:1 16999:2 17008:1 17052:2 17079:2 17089:1 17104:1 17105:3 17120:1 17135:2 17151:1 17200:1 17230:1 17234:1 17239:9 17256:1 17260:3 17285:1 17327:1 17344:1 17349:2 17360:2 17363:1 17380:2 17383:1 17392:1 17428:1 17435:1 17444:1 17445:1 17454:2 17482:1 17504:1 17511:1 17516:3 17518:2 17519:2 17520:3 17521:1 17527:2 17529:1 17531:1 17532:3 17537:1 17538:1 17540:1 17546:1 17555:1 17592:1 17598:1 17627:1 17652:1 17655:1 17656:1 17692:1 17708:2 17709:1 17729:1 17762:1 17774:1 17808:1 17827:1 17868:1 17874:1 17884:1 17899:1 17902:2 17915:1 17916:1 17925:1 17930:3 17941:2 17954:1 17965:1 17966:1 17972:2 17980:1 17985:1 17994:2 18008:1 18016:1 18071:5 18073:1 18096:3 18102:1 18171:1 18172:1 18183:2 18191:1 18201:2 18211:1 18212:1 18225:1 18233:1 18236:2 18286:2 18307:4 18308:1 18340:1 18341:1 18344:1 18361:1 18423:1 18424:1 18425:1 18440:1 18443:1 18453:1 18491:1 18494:1 18517:1 18530:2 18533:1 18565:1 18577:2 18585:1 18597:1 18617:1 18662:1 18670:1 18731:1 18734:1 18755:1 18760:1 18779:1 18796:1 18801:1 18810:3 18814:2 18815:2 18819:1 18825:3 18852:1 18872:1 18880:1 18885:1 18887:1 18892:1 18898:1 18909:1 18910:1 18962:1 18982:1 18983:1 19004:2 19023:1 19033:2 19047:1 19050:1 19054:1 19070:1 19071:1 19101:1 19102:1 19103:1 19123:1 19130:1 19134:2 19171:1 19226:2 19236:1 19246:1 19267:1 19337:1 19376:1 19378:1 19390:1 19391:1 19411:2 19450:1 19514:2 19515:1 19525:1 19538:1 19553:1 19575:1 19593:1 19619:1 19631:1 19651:1 19656:1 19670:1 19719:5 19780:1 19806:1 19826:9 19832:1 19833:2 19834:1 19846:3 19847:1 19863:1 19872:1 19876:1 19897:1 19915:1 19948:4 19971:1 19988:1 19993:1 20016:1 20020:1 20023:2 20041:2 20047:1 20053:1551 20064:1 20070:1 20086:1 20126:1 20132:1 20134:1 20160:2 20218:1 20262:1 20264:1 20267:1 20271:1 20274:2 20275:2 20294:1 20298:1 20308:1 20320:1 20338:1 20373:1 20375:1 20420:1 20422:1 20425:2 20490:1 20528:2 20545:1 20546:1 20557:2 20567:1 20587:1 20605:2 20618:1 20642:1 20647:2 20651:1 20660:1 20669:1 20679:1 20681:1 20701:2 20702:2 20715:2 20721:1 20724:1 20732:2 20757:2 20759:1 20768:1 20774:1 20778:1 20781:2 20787:3 20792:1 20815:1 20833:1 20838:1 20839:1 20864:2 20871:1 20884:1 20917:1 20926:3 20933:1 20935:2 20943:1 20956:4 20974:1 20979:1 20999:1 21005:1 21013:2 21014:1 21022:1 21061:1 21062:1 21065:1 21089:1 21095:1 21098:1 21105:1 21106:1 21148:1 21149:1 21150:1 21152:1 21157:1 21168:1 21202:1 21219:1 21220:1 21237:1 21239:2 21242:1 21249:1 21250:1 21254:1 21277:1 21281:1 21288:1 21295:1 21302:1 21320:1 21322:1 21330:1 21331:1 21376:1 21379:2 21385:1 21387:2 21446:1 21463:1 21466:1 21475:1 21478:1 21482:1 21483:1 21486:1 21501:1 21503:1 21511:2 21519:2 21523:1 21524:1 21544:4 21555:2 21571:1 21573:1 21587:1 21590:1 21591:3 21614:1 21627:1 21628:1 21633:1 21652:1 21654:1 21676:1 21678:1 21699:1 21711:3 21712:9 21713:2 21719:1 21727:3 21733:1 21756:1 21798:1 21813:1 21822:1 21828:1 21853:1 21860:1 21861:1 21881:1 21897:1 21940:3 21960:1 21982:2 21990:1 22001:1 22015:1 22018:1 22032:1 22066:6 22069:1 22085:1 22119:1 22120:1 22140:1 22185:2 22202:3 22221:1 22225:1 22228:1 22231:1 22235:1 22236:1 22244:1 22282:1 22288:3 22298:2 22300:2 22314:2 22326:1 22337:2 22370:3 22390:1 22398:1 22417:2 22421:1 22432:1 22452:2 22488:3 22492:1 22503:1 22508:2 22519:3 22546:2 22554:1 22567:1 22590:1 22591:1 22602:1 22621:2 22624:2 22628:1 22632:1 22643:2 22665:1 22671:2 22685:2 22699:2 22715:1 22716:1 22723:1 22724:1 22726:2 22741:1 22750:2 22760:1 22769:1 22773:1 22774:1 22779:1 22790:1 22811:1 22838:1 22846:1 22855:1 22857:1 22862:2 22866:2 22893:1 22939:1 23014:1 23017:1 23026:1 23027:2 23031:1 23032:1 23043:1 23056:1 23063:1 23070:2 23071:1 23081:1 23121:1 23131:1 23137:1 23158:1 23181:1 23183:1 23190:1 23194:1 23195:2 23199:1 23200:1 23210:1 23222:1 23228:2 23229:1 23238:1 23249:1 23251:2 23262:1 23271:5 23288:2 23298:1 23313:1 23326:1 23337:1 23345:1 23347:1 23349:1 23352:1 23355:1 23377:1 23410:1 23418:1 23426:2 23429:1 23437:3 23439:1 23442:1 23452:2 23466:1 23468:1 23497:1 23498:1 23500:2 23502:1 23503:1 23540:1 23576:1 23605:3 23613:1 23614:1 23616:2 23617:2 23619:1 23625:1 23628:1 23632:2 23645:4 23656:1 23659:1 23674:1 23682:1 23693:2 23697:1 23700:1 23721:1 23749:1 23796:1 23811:1 23823:1 23853:1 23862:1 23887:1 23897:1 23900:1 23912:1 23915:1 23922:3 23939:1 23940:2 23943:2 23946:1 23969:1 23982:1 23990:2 23993:1 23998:1 24001:1 24002:4 24010:2 24016:1 24026:1 24030:4 24037:1 24044:1 24053:1 24073:1 24074:1 24108:7 24111:1 24126:1 24150:1 24162:1 24172:3 24175:1 24184:1 24197:1 24221:1 24248:1 24250:2 24290:1 24291:3 24294:1 24305:3 24309:2 24319:1 24325:1 24329:1 24346:1 24349:2 24361:1 24370:1 24371:1 24376:2 24386:1 24408:1 24426:1 24432:1 24447:1 24451:1 24479:1 24499:1 24500:1 24502:1 24531:1 24549:3 24550:1 24558:1 24568:1 24578:2 24585:2 24598:3 24608:2 24624:1 24661:1 24681:1 24682:1 24685:2 24688:1 24706:1 24708:1 24750:1 24752:1 24762:1 24774:1 24776:1 24795:2 24799:1 24806:1 24808:1 24814:1 24851:3 24883:3 24969:1 24996:3 25000:1 25008:5 25018:2 25027:1 25033:1 25036:3 25039:1 25051:2 25054:1 25056:1 25066:1 25080:3 25122:1 25138:1 25172:1 25184:1 25196:1 25199:2 25230:1 25232:1 25240:1 25246:1 25259:2 25268:1 25273:1 25283:1 25286:1 25298:1 25318:2 25320:2 25331:1 25343:1 25366:3 25368:1 25371:1 25376:1 25388:1 25391:1 25396:1 25447:1 25450:4 25453:1 25458:1 25471:1 25472:2 25474:1 25477:1 25478:1 25481:1 25511:1 25537:1 25549:1 25618:1 25633:1 25652:1 25718:2 25727:1 25729:1 25739:1 25776:1 25786:1 25793:1 25840:1 25861:1 25885:1 25898:1 25900:2 25909:1 25940:1 25963:2 25977:2 25989:1 26010:1 26022:5 26041:1 26048:1 26055:1 26075:1 26076:1 26081:1 26086:2 26095:1 26097:1 26098:1 26103:1 26111:1 26135:3 26157:2 26161:1 26167:1 26168:1 26250:1 26253:1 26288:1 26291:1 26292:1 26300:1 26304:3 26313:1 26317:2 26319:1 26356:4 26365:1 26373:1 26374:1 26376:1 26380:1 26391:1 26395:1 26399:1 26420:8 26426:1 26445:1 26447:1 26456:1 26457:1 26479:1 26483:1 26488:3 26495:1 26512:1 26530:1 26536:1 26616:1 26651:1 26659:1 26668:1 26674:1 26683:2 26690:1 26696:1 26698:1 26703:1 26758:1 26766:1 26776:1 26794:1 26803:2 26828:2 26833:1 26836:1 26847:1 26857:2 26862:1 26875:2 26880:1 26895:1 26901:1 26929:8 26930:1 26942:1 26964:1 26973:1 26974:1 26986:1 27012:1 27024:1 27029:1 27048:2 27051:1 27059:1 27060:1 27078:1 27083:1 27088:1 27092:1 27094:1 27112:1 27123:1 27164:1 27192:5 27193:1 27218:1 27230:1 27233:1 27265:1 27272:1 27304:1 27312:3 27315:1 27338:1 27340:2 27341:1 27368:1 27375:1 27381:1 27387:1 27393:1 27428:1 27443:1 27448:2 27450:1 27465:2 27484:1 27486:1 27514:1 27577:1 27590:1 27606:1 27622:1 27627:2 27633:3 27636:1 27646:1 27657:1 27662:1 27673:1 27701:3 27711:1 27713:1 27729:3 27748:2 27750:1 27784:1 27786:1 27793:1 27796:1 27820:1 27854:1 27873:2 27889:1 27927:1 27933:1 27947:1 27970:1 27977:1 28038:2 28048:1 28049:1 28064:1 28071:1 28072:1 28076:1 28106:1 28131:1 28142:2 28153:1 28186:1 28191:1 28200:2 28202:1 28210:2 28227:2 28228:9 28239:1 28268:1 28291:2 28304:1 28305:1 28322:1 28328:1 28337:1 28356:3 28360:3 28368:3 28371:2 28373:4 28410:1 28463:1 28497:1 28501:1 28502:1 28515:1 28531:2 28551:1 28564:1 28568:1 28569:1 28572:1 28573:2 28594:6 28595:1 28596:1 28605:1 28627:1 28630:1 28637:1 28667:1 28671:1 28691:1 28699:1 28727:1 28744:1 28768:1 28777:1 28788:1 28814:1 28816:2 28817:1 28846:1 28857:1 28860:1 28863:5 28878:1 28883:1 28884:1 28921:1 28925:1 28931:1 28932:1 28945:1 28949:1 28954:1 28963:1 28986:1 28988:2 28998:3 29014:1 29034:1 29043:1 29045:1 29050:2 29078:1 29093:1 29132:1 29144:1 29158:1 29163:3 29166:1 29171:1 29172:1 29187:1 29191:2 29210:1 29227:2 29238:1 29241:1 29244:1 29247:1 29259:2 29260:1 29281:1 29295:1 29314:1 29318:2 29322:1 29354:1 29373:3 29375:1 29377:2 29401:1 29404:1 29446:2 29453:1 29460:1 29465:1 29473:1 29482:1 29484:1 29494:2 29523:1 29524:1 29529:1 29530:1 29531:1 29536:1 29543:2 29556:1 29566:1 29571:1 29574:1 29579:1 29580:1 29613:1 29615:1 29641:1 29663:1 29766:1 29798:1 29804:1 29805:2 29849:1 29855:1 29879:1 29883:1 29891:1 29921:2 29952:1 29969:1 30009:1 30019:2 30034:2 30039:1 30063:1 30109:1 30110:2 30114:1 30133:1 30134:3 30138:1 30146:2 30150:1 30151:1 30152:1 30169:1 30171:1 30180:1 30181:4 30203:1 30220:1 30226:2 30228:2 30229:1 30235:1 30238:4 30244:1 30251:1 30252:1 30261:3 30275:3 30279:1 30283:1 30309:1 30332:1 30336:1 30362:1 30377:1 30392:2 30397:4 30406:3 30411:1 30438:4 30453:1 30470:1 30471:1 30491:1 30525:1 30527:1 30571:1 30574:1 30583:1 30604:1 30614:1 30629:1 30634:1 30635:1 30645:1 30646:2 30651:1 30656:1 30673:3 30711:1 30717:5 30730:1 30750:1 30786:3 30871:1 30882:1 30916:1 30926:1 31028:1 31043:1 31046:1 31053:2 31055:3 31068:1 31072:1 31074:1 31082:1 31086:1 31092:1 31103:1 31136:1 31152:1 31194:3 31204:2 31233:2 31239:2 31257:1 31284:1 31296:1 31301:1 31308:2 31309:1 31313:2 31345:1 31348:2 31351:2 31377:1 31382:1 31405:1 31422:1 31431:1 31443:1 31473:1 31478:3 31484:1 31505:1 31516:1 31519:1 31542:1 31577:1 31580:2 31599:1 31600:1 31606:1 31608:2 31615:2 31617:2 31618:1 31623:1 31632:1 31677:4 1 13:1 40:1 46:1 62:1 65:1 72:1 106:1 141:1 155:1 156:3 161:1 173:1 188:1 190:2 207:5 226:1 231:1 263:1 274:1 278:6 297:3 307:1 328:1 354:1 371:3 373:2 378:3 387:3 391:1 397:2 416:1 430:1 438:1 454:5 458:2 471:1 490:1 526:1 527:1 588:1 596:1 600:1 620:1 634:2 645:1 659:1 665:1 667:2 678:1 693:1 765:1 767:1 815:1 817:1 826:1 829:1 856:2 863:1 871:1 900:5 906:1 911:1 917:1 918:3 927:1 942:9 943:4 952:3 975:2 992:1 993:4 995:2 998:6 1000:1 1001:1 1004:2 1018:2 1033:1 1042:3 1044:3 1055:1 1095:2 1104:1 1121:1 1142:1 1159:1 1178:1 1210:1 1214:1 1275:3 1277:2 1285:1 1295:1 1298:1 1312:1 1328:1 1332:2 1356:2 1380:1 1386:2 1389:1 1417:1 1433:1 1451:1 1468:1 1470:1 1485:1 1500:1 1530:1 1540:1 1541:2 1565:1 1584:1 1595:2 1602:1 1613:1 1629:1 1632:2 1647:1 1686:4 1694:5 1696:2 1705:1 1713:1 1743:2 1754:1 1763:1 1767:1 1783:1 1786:1 1791:2 1804:2 1818:1 1820:1 1825:1 1835:1 1839:1 1850:1 1854:1 1863:1 1867:1 1871:1 1881:1 1882:1 1886:2 1897:1 1905:1 1920:2 1923:1 1945:4 1954:1 1965:1 1971:1 1974:2 1978:1 1979:1 1993:2 1994:5 2027:3 2030:2 2043:1 2060:1 2065:3 2074:1 2113:1 2121:1 2128:1 2129:1 2143:2 2192:1 2198:2 2201:1 2207:1 2214:1 2215:2 2220:1 2222:1 2226:1 2230:2 2243:1 2272:1 2283:1 2296:1 2301:1 2306:2 2308:1 2323:1 2349:1 2354:8 2361:1 2370:1 2376:1 2379:1 2393:1 2423:2 2436:3 2439:1 2450:1 2458:1 2464:2 2477:2 2478:1 2482:2 2485:3 2487:1 2491:1 2494:2 2495:2 2497:1 2501:1 2502:2 2508:4 2509:3 2514:5 2515:4 2517:1 2528:1 2565:1 2568:1 2571:3 2576:1 2595:1 2603:1 2617:1 2618:1 2623:1 2631:1 2637:1 2639:1 2657:1 2695:1 2706:1 2718:1 2722:1 2739:3 2751:1 2752:1 2765:1 2771:1 2776:1 2779:1 2800:2 2803:2 2806:1 2808:5 2812:1 2813:1 2814:1 2824:1 2827:1 2835:1 2849:4 2851:1 2857:1 2873:2 2881:1 2884:1 2897:6 2906:1 2913:1 2916:5 2924:4 2928:1 2937:1 2939:1 2945:1 2947:1 2950:3 2951:2 2967:1 2981:1 2982:2 2987:1 3029:1 3034:1 3035:2 3036:2 3041:1 3050:2 3056:1 3060:3 3065:2 3069:1 3096:1 3127:1 3146:2 3152:1 3157:1 3159:10 3178:2 3180:1 3185:1 3186:1 3190:1 3199:1 3203:2 3224:9 3225:1 3246:2 3249:2 3269:1 3280:1 3317:1 3325:1 3338:1 3351:1 3352:4 3371:3 3377:1 3383:1 3410:1 3438:1 3440:1 3442:1 3447:1 3457:2 3469:1 3490:2 3510:2 3524:1 3534:1 3550:1 3551:1 3579:1 3580:2 3590:1 3608:6 3626:1 3643:1 3663:1 3706:2 3749:1 3751:1 3774:1 3781:1 3784:1 3788:1 3804:1 3829:1 3844:1 3851:1 3861:1 3868:2 3873:1 3897:1 3898:10 3909:1 3912:2 3914:1 3915:1 3937:1 3942:1 3998:1 4000:1 4001:1 4008:1 4013:3 4021:1 4038:1 4096:1 4099:1 4101:1 4106:2 4110:1 4113:1 4117:1 4129:1 4149:1 4152:1 4156:2 4163:1 4167:1 4179:2 4181:1 4186:1 4200:2 4215:1 4220:1 4221:1 4226:4 4229:1 4236:1 4241:2 4242:1 4253:2 4272:1 4289:1 4293:2 4313:1 4315:2 4320:1 4340:1 4348:3 4349:3 4356:2 4393:1 4395:2 4398:1 4403:1 4422:1 4426:2 4432:1 4464:2 4476:1 4500:1 4526:1 4537:1 4547:2 4552:1 4557:1 4563:1 4567:2 4581:1 4587:1 4594:1 4610:1 4629:1 4647:1 4669:7 4691:3 4696:1 4708:1 4712:1 4717:1 4720:1 4732:2 4749:2 4779:1 4785:1 4787:2 4808:2 4834:1 4843:1 4844:1 4869:2 4893:1 4899:1 4902:1 4904:1 4910:1 4911:2 4922:1 4938:1 4970:1 4983:1 5001:1 5006:1 5034:3 5044:2 5056:1 5062:2 5066:1 5085:2 5105:1 5131:1 5135:2 5138:2 5154:3 5167:1 5174:1 5216:1 5249:1 5267:8 5270:1 5279:1 5282:1 5283:1 5297:1 5316:1 5329:1 5339:1 5404:1 5429:1 5430:1 5431:4 5433:4 5434:2 5436:1 5440:1 5441:1 5442:1 5445:1 5446:1 5449:4 5450:3 5453:1 5454:2 5456:4 5465:3 5469:1 5517:1 5532:1 5548:2 5557:1 5575:1 5580:1 5592:1 5625:1 5638:1 5658:1 5668:1 5720:1 5765:1 5771:1 5801:2 5807:2 5813:1 5850:1 5875:3 5889:1 5890:1 5915:1 5917:1 5937:1 5943:1 5953:2 5959:1 5972:1 5980:1 5988:1 5994:1 6017:1 6029:1 6057:1 6100:1 6110:1 6115:2 6118:1 6133:4 6134:1 6136:2 6139:1 6143:1 6144:1 6156:1 6157:1 6181:1 6188:3 6200:1 6202:1 6219:5 6223:1 6224:1 6237:2 6308:1 6327:1 6330:1 6345:1 6351:1 6361:1 6387:1 6400:1 6427:1 6433:1 6444:2 6466:2 6468:1 6488:5 6494:1 6495:1 6499:1 6502:1 6514:1 6556:1 6560:1 6561:1 6571:1 6579:1 6581:1 6582:1 6586:9 6600:1 6603:1 6624:2 6655:1 6668:1 6684:2 6693:1 6706:1 6709:5 6713:1 6720:1 6769:1 6775:1 6799:1 6806:1 6809:1 6814:2 6816:2 6822:1 6823:1 6825:1 6832:2 6834:3 6835:2 6884:1 6931:1 6949:1 6990:1 6993:4 6996:2 7008:1 7040:1 7052:1 7057:1 7061:1 7071:1 7079:1 7097:1 7106:1 7131:1 7145:2 7153:2 7167:1 7174:1 7175:1 7182:1 7227:1 7253:1 7256:1 7265:1 7284:7 7292:2 7295:1 7298:1 7309:1 7315:1 7326:2 7348:1 7362:1 7403:1 7405:2 7429:1 7454:1 7465:1 7473:1 7478:2 7504:1 7522:1 7529:1 7535:1 7550:1 7561:1 7569:1 7574:6 7578:2 7611:1 7615:1 7621:1 7624:1 7625:2 7636:3 7638:1 7640:1 7645:4 7648:1 7651:1 7656:1 7679:1 7680:1 7681:1 7695:1 7701:1 7729:1 7737:2 7747:2 7759:1 7792:1 7796:1 7805:1 7812:1 7839:1 7853:1 7869:1 7925:1 7930:1 7933:1 7971:1 7984:1 7986:1 7991:1 7999:1 8004:1 8006:3 8010:1 8032:4 8036:2 8037:1 8061:1 8064:2 8074:1 8081:1 8093:1 8108:2 8117:1 8134:1 8140:1 8152:1 8168:1 8198:1 8218:2 8235:3 8236:6 8250:1 8257:3 8258:1 8262:2 8263:2 8287:2 8288:2 8290:1 8303:33 8306:1 8315:1 8323:1 8326:5 8327:3 8331:2 8367:1 8374:1 8375:1 8384:1 8397:1 8404:2 8405:2 8411:1 8421:1 8433:1 8459:1 8461:1 8480:2 8486:1 8492:1 8514:1 8541:1 8553:1 8557:1 8558:3 8588:1 8592:1 8605:1 8609:2 8681:1 8722:1 8734:1 8737:1 8742:1 8765:1 8768:1 8775:1 8777:1 8788:1 8797:1 8815:1 8835:18 8843:1 8844:1 8865:3 8868:1 8870:1 8935:2 8937:1 8938:1 8943:1 8969:1 8974:1 8990:2 8994:2 8996:1 9001:1 9019:1 9030:1 9031:4 9038:2 9044:1 9065:2 9066:1 9069:1 9080:1 9088:1 9090:1 9104:1 9128:1 9129:1 9139:1 9142:1 9154:1 9201:1 9204:1 9205:1 9209:1 9211:1 9239:1 9255:4 9267:1 9271:3 9291:1 9302:1 9312:1 9319:2 9323:1 9340:1 9345:1 9365:2 9393:1 9404:1 9436:1 9437:1 9449:1 9450:1 9460:1 9485:1 9486:1 9487:1 9501:1 9510:1 9533:1 9536:1 9537:1 9541:3 9577:2 9586:1 9594:2 9606:1 9613:1 9618:1 9643:1 9644:1 9655:1 9661:1 9662:3 9663:1 9668:1 9670:1 9675:1 9687:1 9708:4 9719:1 9732:1 9768:3 9769:4 9778:1 9784:2 9794:2 9830:1 9844:1 9849:1 9853:2 9872:1 9878:1 9882:1 9884:1 9886:1 9888:2 9898:1 9950:1 9960:2 9963:1 9969:1 9972:4 9996:2 9999:2 10021:4 10050:1 10080:1 10089:1 10111:2 10122:1 10142:1 10147:1 10156:1 10159:1 10183:1 10197:1 10201:1 10211:1 10220:6 10226:1 10264:2 10298:1 10302:1 10330:1 10358:1 10363:1 10365:1 10366:2 10369:2 10408:1 10437:1 10439:1 10447:1 10494:2 10517:1 10530:2 10542:1 10557:1 10558:1 10576:1 10587:1 10603:1 10606:1 10611:1 10612:1 10626:1 10630:1 10657:1 10663:1 10665:1 10674:5 10690:3 10702:3 10707:1 10738:2 10762:1 10764:1 10813:1 10818:2 10835:1 10841:1 10854:1 10861:3 10864:1 10901:1 10907:1 10911:9 10913:1 10914:1 10919:2 10927:1 10948:1 10949:1 10969:1 10973:1 10980:1 11040:1 11047:2 11049:1 11094:1 11109:1 11110:1 11112:1 11115:1 11117:1 11121:3 11129:1 11131:1 11136:2 11169:1 11181:4 11185:1 11187:1 11189:1 11194:1 11196:1 11207:1 11210:1 11224:4 11244:1 11265:1 11283:1 11291:1 11298:1 11300:1 11303:2 11319:2 11330:1 11348:2 11360:1 11365:1 11373:4 11376:2 11389:1 11390:3 11402:1 11419:1 11432:1 11447:2 11462:3 11463:1 11485:1 11486:1 11498:3 11524:1 11541:1 11550:3 11562:1 11573:4 11588:1 11597:1 11605:1 11609:1 11624:2 11744:1 11750:1 11767:1 11770:1 11791:1 11792:2 11796:1 11800:1 11801:2 11807:1 11816:1 11817:5 11819:5 11820:1 11827:1 11834:2 11838:2 11845:3 11849:1 11851:1 11868:2 11901:2 11910:1 11935:1 11937:1 11939:1 11983:1 11986:1 12007:1 12023:1 12026:1 12061:1 12118:1 12137:1 12151:1 12156:1 12192:1 12195:1 12202:1 12219:2 12222:1 12227:1 12241:1 12245:2 12247:1 12249:1 12250:1 12260:2 12262:1 12264:2 12269:1 12272:1 12278:1 12285:2 12287:1 12293:1 12324:10 12325:1 12356:1 12369:3 12383:2 12384:1 12391:1 12418:2 12429:2 12430:1 12441:1 12442:2 12449:2 12450:1 12464:1 12483:1 12497:1 12501:1 12528:1 12544:1 12574:3 12579:1 12584:1 12587:1 12592:2 12597:1 12599:1 12603:1 12604:1 12611:1 12614:1 12624:1 12636:1 12640:1 12641:1 12652:3 12655:2 12683:1 12718:1 12741:2 12745:1 12799:1 12808:1 12818:1 12829:1 12863:5 12872:1 12883:1 12886:1 12887:1 12901:1 12907:1 12918:1 12925:1 12931:1 12955:2 12983:1 13003:1 13025:1 13030:1 13043:1 13047:1 13052:1 13059:1 13118:1 13125:1 13127:1 13132:5 13133:1 13134:1 13149:1 13155:2 13168:1 13172:1 13174:1 13182:1 13195:1 13235:1 13237:1 13264:1 13271:1 13291:1 13310:1 13327:1 13338:1 13427:3 13456:1 13502:1 13515:1 13531:1 13533:2 13534:1 13552:2 13566:1 13569:1 13582:1 13601:1 13626:1 13654:1 13663:1 13666:1 13669:1 13677:1 13718:8 13723:1 13737:1 13776:1 13777:1 13785:2 13811:1 13817:1 13838:2 13839:1 13847:1 13881:1 13900:1 13913:1 13920:1 13927:1 13939:2 13975:1 13978:1 13998:1 14000:1 14010:1 14026:1 14027:1 14048:1 14058:1 14064:3 14084:1 14110:1 14129:1 14146:1 14176:1 14199:1 14201:1 14204:2 14208:4 14224:1 14230:1 14245:1 14262:3 14279:1 14284:2 14307:1 14314:3 14316:1 14352:1 14354:1 14355:1 14356:1 14369:4 14370:1 14381:2 14385:1 14403:1 14416:1 14417:1 14429:1 14437:1 14453:10 14462:1 14466:1 14503:2 14504:1 14510:1 14532:1 14550:1 14561:1 14603:3 14630:1 14635:6 14641:1 14658:1 14670:1 14673:1 14695:2 14722:1 14732:1 14734:1 14746:1 14748:1 14749:1 14762:1 14769:4 14770:1 14773:1 14775:1 14777:2 14778:1 14782:6 14783:1 14810:1 14814:1 14818:1 14846:1 14873:1 14894:1 14906:1 14967:3 14968:1 15010:1 15013:1 15015:1 15022:1 15025:1 15032:1 15033:1 15049:1 15074:2 15080:1 15094:1 15098:7 15111:1 15121:1 15123:2 15128:1 15163:1 15174:1 15185:1 15202:1 15215:1 15236:1 15265:1 15266:1 15293:1 15300:1 15312:1 15353:1 15362:2 15379:3 15395:1 15401:1 15414:1 15434:1 15446:1 15468:1 15488:1 15514:1 15517:2 15518:2 15527:1 15540:1 15541:1 15544:1 15550:2 15552:1 15581:1 15592:2 15625:1 15651:1 15675:2 15698:1 15705:1 15707:1 15712:2 15714:1 15725:3 15729:2 15782:1 15786:2 15790:1 15841:1 15842:1 15844:1 15851:1 15870:1 15880:1 15922:3 15938:1 15941:2 15972:1 15973:1 16032:1 16035:2 16078:2 16079:1 16081:1 16100:1 16120:1 16157:1 16160:2 16168:1 16188:1 16189:1 16231:1 16302:1 16314:1 16351:1 16406:1 16435:1 16464:1 16476:1 16479:1 16481:1 16492:1 16511:1 16516:2 16520:1 16545:1 16551:1 16567:2 16585:1 16592:1 16614:1 16627:1 16641:1 16652:1 16687:1 16701:2 16720:1 16731:1 16739:2 16752:1 16782:1 16790:1 16807:1 16810:1 16815:1 16869:1 16883:1 16884:1 16897:2 16909:1 16913:3 16914:1 16918:1 16920:1 16926:1 16940:2 16941:1 16945:1 16948:1 16980:1 16999:2 17008:1 17052:2 17079:3 17089:1 17104:1 17105:3 17120:1 17135:2 17151:1 17157:1 17200:1 17230:1 17234:1 17239:9 17256:1 17260:3 17285:2 17327:1 17344:1 17349:2 17360:2 17363:1 17380:2 17383:1 17392:1 17428:1 17435:1 17444:1 17445:1 17454:2 17482:1 17504:1 17511:1 17516:3 17518:2 17519:2 17520:4 17521:1 17527:2 17529:1 17531:1 17532:3 17537:1 17538:1 17540:1 17546:1 17555:1 17592:1 17598:1 17627:1 17652:1 17655:1 17656:1 17692:1 17699:1 17708:2 17709:1 17729:1 17762:1 17774:1 17808:1 17827:1 17868:1 17874:1 17884:1 17899:1 17902:2 17915:1 17916:1 17925:1 17930:4 17941:2 17954:1 17965:1 17966:1 17972:2 17980:1 17985:1 17994:3 18008:1 18016:1 18071:6 18073:1 18095:1 18096:3 18102:1 18171:1 18172:1 18183:2 18191:1 18201:2 18211:1 18212:1 18225:1 18233:1 18236:2 18286:2 18307:4 18308:1 18340:1 18341:1 18344:1 18361:1 18423:1 18424:2 18425:1 18440:1 18443:1 18453:1 18491:1 18494:1 18517:1 18530:2 18533:1 18565:1 18577:2 18585:1 18597:1 18617:1 18662:1 18670:1 18731:1 18734:1 18755:1 18760:1 18775:2 18779:1 18791:2 18796:1 18801:1 18810:3 18814:2 18815:2 18819:1 18825:3 18852:1 18872:1 18880:1 18885:1 18887:1 18892:1 18898:1 18909:1 18910:1 18962:1 18982:1 18983:1 19004:2 19023:1 19033:2 19047:1 19050:1 19054:1 19070:1 19071:1 19101:1 19102:1 19103:1 19123:1 19130:1 19134:2 19171:1 19207:1 19226:2 19236:1 19246:1 19267:1 19337:1 19376:1 19378:1 19390:1 19391:1 19411:2 19450:1 19514:2 19515:1 19525:1 19538:1 19553:1 19575:1 19593:1 19619:1 19631:1 19651:1 19656:2 19670:1 19719:6 19780:1 19806:1 19826:11 19832:1 19833:2 19834:1 19846:3 19847:1 19863:1 19872:1 19876:1 19897:1 19915:1 19948:4 19971:1 19988:1 19993:1 20016:1 20020:1 20023:2 20041:2 20047:1 20053:1625 20064:1 20070:1 20086:1 20126:1 20132:1 20134:1 20160:2 20217:1 20218:1 20241:1 20262:1 20264:1 20267:1 20271:2 20274:2 20275:2 20294:1 20298:1 20308:1 20320:1 20338:1 20373:1 20375:1 20420:1 20422:1 20425:2 20431:1 20482:1 20490:1 20528:2 20545:1 20546:1 20557:2 20567:1 20587:1 20605:2 20618:1 20642:1 20647:2 20651:1 20660:1 20669:1 20679:1 20681:1 20701:2 20702:2 20715:2 20721:1 20724:1 20732:2 20757:2 20759:1 20768:1 20774:1 20778:1 20781:2 20787:3 20792:1 20815:1 20833:1 20838:2 20839:1 20864:2 20871:1 20882:1 20884:1 20917:1 20926:4 20933:1 20935:2 20943:1 20956:4 20974:1 20979:1 20999:1 21005:1 21013:2 21014:1 21022:1 21061:1 21062:1 21065:1 21089:1 21095:1 21098:1 21105:1 21106:1 21109:1 21148:1 21149:1 21150:1 21152:1 21157:1 21168:1 21202:1 21219:1 21220:1 21237:1 21239:2 21242:1 21249:1 21250:1 21254:1 21277:1 21281:1 21283:1 21288:1 21295:1 21302:1 21313:1 21320:1 21322:1 21330:1 21331:1 21341:1 21376:1 21379:3 21385:1 21387:2 21446:1 21463:1 21466:1 21475:1 21478:1 21482:2 21483:1 21486:1 21501:1 21503:1 21511:2 21519:2 21523:1 21524:1 21544:4 21555:2 21571:1 21573:1 21587:1 21590:1 21591:3 21614:1 21627:1 21628:1 21633:1 21652:1 21654:1 21676:1 21678:1 21699:1 21711:3 21712:9 21713:2 21719:1 21727:3 21733:1 21756:1 21789:1 21798:1 21813:1 21818:1 21822:1 21828:1 21853:1 21860:1 21861:1 21881:1 21887:1 21897:1 21940:4 21960:1 21982:2 21990:1 22001:1 22015:1 22018:1 22032:2 22066:6 22069:1 22085:1 22119:1 22120:1 22140:1 22185:2 22202:3 22221:1 22225:1 22228:1 22231:1 22235:1 22236:1 22244:1 22247:1 22282:2 22288:3 22298:2 22300:2 22314:2 22319:1 22326:1 22337:2 22370:3 22390:2 22398:1 22417:2 22421:1 22432:1 22452:2 22466:1 22488:3 22492:1 22503:1 22508:2 22519:3 22546:2 22554:1 22567:1 22590:1 22591:1 22592:1 22602:1 22621:2 22624:2 22628:1 22632:1 22643:2 22665:1 22671:2 22685:2 22699:2 22715:1 22716:1 22723:1 22724:1 22726:3 22741:1 22750:2 22758:1 22760:1 22769:1 22773:1 22774:1 22779:1 22790:1 22811:1 22815:1 22838:1 22846:1 22855:1 22857:1 22862:2 22866:2 22893:1 22939:1 23014:2 23017:1 23026:1 23027:2 23031:1 23032:1 23038:1 23043:1 23056:1 23063:1 23070:2 23071:1 23081:1 23121:1 23131:1 23137:1 23158:1 23181:1 23183:1 23185:1 23190:1 23194:1 23195:2 23199:1 23200:1 23210:1 23222:1 23228:2 23229:1 23238:1 23249:1 23251:2 23262:1 23271:6 23281:1 23288:2 23298:1 23313:1 23326:1 23337:1 23345:1 23347:1 23349:1 23352:1 23355:1 23377:1 23410:1 23418:1 23426:2 23429:1 23434:1 23437:3 23439:1 23442:1 23452:2 23466:1 23468:1 23497:1 23498:1 23500:2 23502:2 23503:1 23540:1 23576:1 23605:3 23613:1 23614:2 23616:2 23617:2 23619:1 23625:1 23628:1 23632:2 23645:4 23656:1 23659:1 23674:1 23682:1 23693:2 23697:2 23700:1 23721:1 23749:1 23778:1 23796:1 23811:1 23823:1 23853:1 23862:1 23887:1 23897:1 23900:1 23912:1 23915:1 23922:3 23939:1 23940:2 23943:2 23946:1 23952:1 23969:1 23982:1 23990:2 23993:1 23998:1 24001:1 24002:4 24010:2 24016:1 24026:1 24030:5 24037:1 24044:1 24053:1 24073:1 24074:1 24108:7 24111:1 24126:1 24150:1 24162:1 24172:3 24175:1 24178:1 24184:1 24197:1 24221:1 24248:1 24250:2 24290:1 24291:3 24294:1 24305:3 24309:2 24319:1 24325:1 24329:1 24346:1 24349:2 24361:1 24370:1 24371:1 24376:3 24386:1 24408:1 24426:1 24432:1 24447:1 24451:1 24479:1 24499:1 24500:1 24502:1 24531:2 24549:3 24550:2 24558:1 24568:1 24574:1 24578:2 24585:3 24598:3 24608:2 24624:1 24661:1 24681:1 24682:1 24685:2 24688:1 24706:1 24708:1 24742:1 24750:1 24752:1 24762:1 24774:1 24776:1 24795:2 24799:1 24806:1 24808:1 24814:1 24851:3 24883:3 24969:1 24996:3 25000:1 25008:5 25018:2 25027:1 25033:1 25036:3 25039:1 25051:2 25054:1 25056:1 25066:1 25080:4 25122:1 25138:1 25172:1 25184:1 25196:1 25199:2 25230:1 25232:1 25240:1 25246:1 25259:2 25268:1 25273:1 25283:1 25286:1 25298:1 25318:2 25320:2 25331:1 25343:1 25366:3 25368:1 25371:2 25376:1 25388:1 25391:1 25396:1 25447:1 25450:4 25453:1 25458:1 25471:1 25472:2 25474:1 25477:1 25478:1 25479:1 25481:1 25511:1 25537:1 25549:1 25618:1 25633:1 25652:1 25718:2 25727:1 25729:1 25739:1 25776:1 25786:1 25793:1 25840:1 25861:1 25885:1 25898:1 25900:2 25909:1 25937:1 25940:1 25963:2 25977:2 25989:1 26010:1 26022:5 26041:1 26048:1 26055:1 26075:1 26076:1 26081:1 26086:2 26095:1 26097:1 26098:1 26103:1 26111:1 26135:3 26157:2 26161:1 26167:1 26168:1 26250:1 26253:1 26288:1 26291:1 26292:1 26300:1 26304:3 26305:1 26309:1 26313:1 26317:2 26318:1 26319:1 26356:4 26365:1 26373:1 26374:1 26376:1 26380:1 26391:1 26395:1 26397:1 26399:1 26420:8 26425:1 26426:1 26445:1 26447:1 26456:1 26457:1 26473:1 26479:1 26483:1 26488:3 26495:1 26512:1 26530:1 26536:1 26616:1 26651:1 26659:1 26668:1 26674:2 26683:2 26690:1 26696:2 26698:1 26703:1 26758:1 26766:1 26776:1 26787:1 26794:1 26803:2 26828:2 26833:1 26836:1 26847:1 26857:2 26862:1 26875:2 26880:1 26895:1 26901:1 26929:9 26930:1 26942:1 26964:1 26973:1 26974:1 26986:1 27012:1 27024:1 27029:1 27048:2 27051:1 27059:1 27060:1 27078:1 27083:1 27088:1 27092:1 27094:1 27112:1 27123:1 27164:1 27192:6 27193:1 27218:1 27230:1 27233:1 27265:1 27272:1 27298:1 27304:1 27312:3 27315:1 27338:1 27340:2 27341:1 27368:1 27375:1 27381:2 27387:1 27393:1 27428:1 27443:1 27448:2 27450:1 27465:2 27484:1 27486:1 27514:1 27577:1 27590:1 27606:1 27619:1 27622:1 27627:2 27633:3 27636:1 27646:1 27657:1 27662:1 27673:1 27701:3 27711:1 27713:1 27729:4 27748:2 27750:1 27784:1 27786:1 27793:1 27796:1 27820:1 27854:1 27873:2 27889:1 27927:1 27933:1 27947:1 27970:1 27977:1 28038:2 28048:1 28049:1 28064:1 28071:1 28072:1 28076:1 28106:1 28131:1 28142:3 28153:1 28186:1 28191:1 28200:2 28202:1 28210:2 28227:2 28228:11 28239:1 28268:1 28291:2 28304:1 28305:1 28322:1 28328:1 28337:1 28343:1 28356:3 28360:3 28368:3 28371:2 28373:4 28410:1 28463:1 28497:1 28501:1 28502:1 28515:1 28531:2 28551:1 28564:1 28568:1 28569:1 28572:1 28573:2 28594:6 28595:1 28596:1 28605:1 28627:1 28630:1 28637:1 28667:1 28671:1 28691:1 28699:1 28727:1 28744:1 28768:1 28777:1 28788:1 28814:1 28816:2 28817:1 28846:1 28857:1 28860:1 28863:5 28878:1 28883:1 28884:1 28921:1 28925:1 28931:1 28932:1 28945:1 28949:1 28954:1 28963:1 28986:1 28988:2 28998:3 29014:1 29034:1 29043:1 29045:1 29050:2 29078:1 29093:1 29095:1 29132:1 29144:1 29158:1 29163:3 29166:1 29171:1 29172:1 29182:1 29187:1 29191:2 29210:1 29227:2 29238:1 29241:1 29244:1 29247:1 29259:2 29260:1 29281:1 29295:1 29312:1 29314:1 29318:2 29322:1 29354:1 29373:3 29375:1 29377:2 29401:1 29404:1 29446:2 29453:1 29460:1 29465:1 29473:2 29482:1 29484:1 29494:2 29508:1 29523:1 29524:1 29529:1 29530:1 29531:1 29536:1 29543:2 29556:1 29566:2 29571:1 29574:1 29579:1 29580:1 29613:1 29615:1 29641:2 29663:1 29766:1 29798:1 29804:1 29805:2 29849:1 29855:1 29862:1 29879:1 29883:1 29891:1 29921:2 29952:1 29969:1 30009:1 30019:2 30034:2 30039:1 30063:1 30109:1 30110:2 30114:1 30133:1 30134:3 30138:1 30146:2 30150:1 30151:1 30152:1 30169:1 30171:1 30180:1 30181:5 30203:1 30205:1 30220:1 30226:2 30228:2 30229:1 30231:1 30235:1 30238:4 30244:1 30251:1 30252:1 30261:3 30275:3 30279:1 30283:1 30309:1 30316:1 30332:1 30336:1 30362:1 30377:1 30392:2 30397:4 30406:3 30411:1 30438:4 30453:1 30462:1 30470:1 30471:1 30491:1 30493:1 30525:1 30527:1 30571:1 30574:1 30583:1 30604:1 30614:1 30629:1 30634:1 30635:1 30645:1 30646:2 30651:1 30656:1 30670:1 30673:3 30711:1 30717:5 30730:1 30750:1 30786:3 30871:1 30882:1 30916:1 30926:1 31028:1 31043:1 31046:1 31047:1 31053:2 31055:3 31068:1 31072:1 31074:1 31082:1 31086:1 31092:1 31103:1 31136:1 31152:1 31194:3 31204:2 31233:2 31239:2 31257:1 31284:1 31296:1 31301:1 31308:2 31309:1 31313:2 31345:1 31348:3 31351:2 31377:1 31382:1 31405:1 31422:1 31431:1 31443:1 31473:1 31478:3 31484:1 31505:1 31516:2 31519:1 31542:1 31577:1 31580:2 31599:1 31600:1 31606:1 31608:3 31615:2 31617:2 31618:1 31623:1 31632:1 31677:4 31682:1 1 13:1 40:1 46:1 62:1 65:1 72:1 106:1 141:1 155:1 156:3 161:1 173:1 188:1 190:2 207:5 226:1 231:1 263:1 274:1 278:6 297:3 307:1 328:1 354:1 371:3 373:2 378:3 387:3 391:1 397:2 416:1 430:1 438:1 454:5 458:2 471:1 490:1 526:1 527:1 588:1 596:1 600:2 620:1 634:2 645:1 659:1 665:1 667:2 674:1 678:1 693:1 765:1 767:1 815:1 817:1 826:1 829:1 856:2 863:1 871:1 900:5 906:1 911:1 917:1 918:3 927:1 942:9 943:4 952:3 975:2 984:1 992:1 993:4 995:2 998:6 1000:1 1001:1 1004:2 1018:2 1033:1 1042:3 1044:3 1055:1 1095:2 1104:1 1121:1 1142:1 1159:1 1177:1 1178:1 1210:1 1214:1 1217:1 1275:3 1277:2 1283:1 1285:1 1295:1 1298:1 1312:1 1328:1 1332:2 1356:2 1380:1 1386:2 1389:1 1417:1 1433:1 1451:1 1466:1 1468:1 1470:1 1485:1 1500:1 1530:1 1540:1 1541:2 1565:1 1584:1 1587:1 1595:2 1602:1 1613:1 1629:1 1632:2 1647:1 1674:1 1686:4 1694:5 1696:2 1705:1 1713:1 1743:2 1751:1 1754:1 1763:1 1767:1 1783:1 1786:1 1791:2 1804:2 1818:1 1820:1 1825:1 1835:1 1839:1 1850:1 1854:1 1863:1 1867:1 1871:1 1881:1 1882:1 1886:2 1897:1 1905:1 1920:2 1923:1 1945:4 1954:1 1965:1 1971:1 1974:2 1978:1 1979:1 1993:2 1994:6 2027:3 2030:2 2043:1 2060:1 2065:4 2070:1 2074:1 2113:1 2121:2 2128:1 2129:1 2143:2 2192:1 2198:3 2201:1 2207:1 2210:1 2214:1 2215:2 2220:1 2222:1 2226:1 2230:2 2243:1 2255:1 2272:1 2283:1 2296:1 2301:1 2306:2 2308:1 2323:1 2349:1 2354:8 2361:1 2370:1 2376:1 2379:1 2393:1 2423:2 2436:3 2439:1 2450:1 2458:1 2464:2 2477:2 2478:2 2482:2 2485:3 2487:1 2491:2 2494:2 2495:2 2497:1 2501:1 2502:2 2508:4 2509:3 2514:5 2515:4 2517:1 2528:1 2565:1 2568:1 2571:3 2576:1 2595:1 2603:1 2617:1 2618:1 2623:1 2631:1 2637:1 2639:1 2657:1 2695:1 2706:1 2718:1 2722:1 2739:3 2751:1 2752:1 2765:1 2771:1 2776:1 2779:1 2800:3 2803:2 2806:1 2808:5 2812:1 2813:1 2814:1 2824:1 2827:1 2835:1 2849:4 2851:1 2857:1 2873:2 2881:1 2884:1 2885:1 2897:6 2906:1 2913:1 2916:5 2924:4 2928:1 2937:1 2939:1 2945:1 2947:1 2950:3 2951:2 2967:1 2981:1 2982:2 2987:2 3029:1 3034:1 3035:2 3036:2 3041:1 3050:2 3056:1 3060:3 3065:2 3069:1 3096:1 3127:1 3146:2 3152:1 3157:1 3159:11 3178:2 3180:1 3185:1 3186:1 3190:1 3199:2 3203:2 3224:10 3225:1 3246:2 3249:2 3269:1 3280:1 3317:1 3325:1 3332:1 3338:1 3351:1 3352:5 3371:3 3377:1 3383:1 3410:1 3438:1 3440:1 3442:1 3447:1 3457:2 3469:1 3490:2 3510:2 3524:1 3534:1 3550:1 3551:1 3579:1 3580:2 3581:1 3590:1 3608:6 3626:1 3643:1 3663:1 3706:2 3749:1 3751:1 3753:1 3774:1 3781:1 3784:1 3788:1 3804:1 3829:1 3844:1 3851:1 3861:1 3868:2 3873:1 3897:1 3898:10 3909:1 3912:2 3914:1 3915:1 3937:1 3942:1 3998:1 4000:1 4001:1 4008:1 4013:3 4021:1 4038:1 4096:1 4099:1 4101:1 4106:2 4110:1 4113:1 4117:1 4129:1 4149:1 4152:1 4156:2 4163:1 4167:1 4179:2 4181:1 4186:1 4200:2 4215:1 4220:1 4221:1 4226:4 4229:1 4236:1 4241:2 4242:1 4253:2 4272:1 4289:1 4293:2 4313:1 4315:2 4320:1 4340:1 4348:4 4349:3 4356:2 4393:1 4395:2 4398:1 4403:1 4422:1 4426:2 4432:1 4448:1 4464:2 4476:1 4500:1 4526:1 4537:1 4547:3 4551:1 4552:1 4557:2 4563:1 4567:2 4581:1 4587:1 4594:1 4610:1 4629:1 4647:1 4669:7 4691:3 4696:1 4708:1 4712:1 4717:1 4720:1 4732:2 4749:2 4779:1 4785:1 4787:2 4808:3 4834:1 4843:1 4844:1 4869:2 4893:1 4899:1 4902:1 4904:1 4910:1 4911:2 4922:1 4938:1 4970:1 4983:1 5001:1 5006:1 5034:3 5044:2 5056:1 5062:2 5066:1 5085:3 5105:2 5131:1 5135:2 5138:2 5154:3 5167:1 5174:1 5216:1 5249:1 5267:9 5270:1 5279:1 5282:1 5283:1 5297:1 5316:1 5329:1 5339:1 5404:1 5429:1 5430:1 5431:4 5433:4 5434:2 5436:1 5440:1 5441:1 5442:1 5445:1 5446:1 5449:4 5450:3 5453:1 5454:2 5456:4 5465:3 5469:1 5517:1 5532:1 5548:2 5557:1 5575:1 5580:1 5592:1 5625:1 5638:1 5658:1 5668:1 5720:1 5765:1 5771:1 5801:2 5807:2 5813:1 5850:1 5875:3 5889:1 5890:1 5915:1 5917:1 5937:1 5943:1 5953:2 5959:1 5972:1 5980:1 5988:1 5994:1 6017:1 6029:1 6057:1 6060:1 6100:1 6110:1 6115:2 6118:1 6133:4 6134:1 6136:2 6139:1 6143:1 6144:2 6156:1 6157:1 6181:1 6188:3 6200:1 6202:1 6219:5 6223:1 6224:1 6237:2 6308:1 6320:1 6327:1 6330:1 6345:1 6351:1 6352:1 6361:1 6387:1 6400:1 6427:1 6433:1 6444:2 6466:2 6468:1 6488:5 6494:1 6495:1 6499:1 6502:2 6514:1 6516:1 6556:1 6560:1 6561:1 6571:1 6579:1 6581:1 6582:1 6586:9 6600:1 6603:1 6624:2 6655:1 6668:1 6684:2 6693:1 6706:1 6709:5 6713:1 6720:1 6769:1 6775:1 6799:1 6806:1 6808:1 6809:1 6814:2 6816:3 6822:1 6823:1 6825:1 6832:2 6834:3 6835:2 6884:1 6931:1 6949:1 6990:1 6993:4 6996:2 7008:1 7040:1 7052:1 7057:1 7061:1 7071:1 7079:1 7097:1 7106:1 7131:1 7145:2 7153:2 7167:1 7174:1 7175:1 7182:1 7227:1 7253:1 7256:1 7265:1 7284:7 7292:2 7295:1 7298:1 7309:1 7315:1 7326:2 7348:1 7362:1 7403:1 7405:3 7421:1 7429:1 7435:2 7454:1 7460:1 7465:1 7473:1 7478:2 7504:1 7522:1 7529:1 7535:1 7550:1 7561:1 7569:1 7574:6 7578:2 7611:1 7615:1 7621:1 7624:1 7625:2 7636:3 7638:1 7640:1 7645:5 7648:1 7651:1 7656:1 7679:1 7680:1 7681:1 7695:1 7701:1 7729:1 7737:3 7747:2 7759:1 7792:1 7796:1 7805:1 7812:1 7839:1 7853:1 7869:1 7925:1 7930:1 7933:1 7971:1 7984:1 7985:1 7986:1 7991:1 7999:1 8004:1 8006:3 8010:1 8032:4 8036:2 8037:1 8061:1 8064:2 8074:1 8081:1 8093:1 8108:2 8117:1 8134:1 8140:1 8152:1 8168:1 8198:1 8218:2 8235:3 8236:6 8250:1 8257:3 8258:1 8262:2 8263:3 8287:2 8288:2 8290:1 8303:34 8306:1 8315:1 8323:1 8326:5 8327:3 8331:2 8367:1 8374:1 8375:1 8384:1 8397:1 8404:3 8405:2 8411:1 8421:1 8424:1 8433:1 8459:1 8461:1 8480:2 8486:1 8492:1 8514:1 8541:1 8553:1 8557:1 8558:3 8588:1 8592:1 8593:1 8605:1 8609:2 8663:1 8681:1 8696:1 8722:1 8734:1 8737:1 8742:1 8765:1 8768:1 8775:1 8777:1 8778:1 8788:1 8797:1 8815:1 8835:18 8843:1 8844:1 8865:3 8868:1 8870:1 8935:2 8937:1 8938:1 8943:1 8969:1 8974:1 8990:2 8994:2 8996:1 9001:1 9019:1 9030:1 9031:4 9038:2 9044:1 9065:2 9066:1 9069:1 9080:1 9088:1 9090:1 9104:1 9109:1 9110:1 9128:1 9129:1 9139:1 9142:1 9154:1 9201:1 9204:1 9205:1 9209:1 9211:1 9216:1 9239:1 9242:1 9255:4 9267:1 9271:3 9291:1 9302:1 9312:1 9319:2 9323:1 9340:1 9345:1 9365:2 9393:1 9404:1 9436:1 9437:1 9449:1 9450:1 9460:1 9485:1 9486:1 9487:1 9501:1 9510:1 9533:1 9536:1 9537:1 9541:3 9577:2 9586:1 9594:2 9606:1 9613:1 9618:1 9643:1 9644:1 9655:1 9661:1 9662:3 9663:1 9668:1 9670:1 9675:1 9687:1 9708:4 9719:1 9732:1 9768:3 9769:5 9778:1 9784:2 9794:2 9830:1 9844:1 9849:1 9853:2 9872:1 9878:1 9882:1 9884:1 9886:2 9888:2 9898:1 9950:1 9960:2 9963:1 9969:1 9972:4 9996:2 9999:2 10021:4 10050:1 10080:1 10089:1 10111:2 10122:2 10142:1 10147:1 10156:1 10159:1 10183:1 10197:1 10201:1 10211:1 10220:6 10226:2 10264:2 10298:2 10302:1 10330:1 10358:1 10363:1 10365:2 10366:2 10369:2 10408:1 10437:1 10439:1 10447:1 10494:2 10517:1 10530:2 10542:1 10557:1 10558:1 10576:1 10587:1 10603:1 10606:1 10611:1 10612:1 10626:1 10630:1 10657:1 10663:1 10665:1 10674:5 10690:3 10702:3 10707:1 10717:1 10738:2 10762:1 10764:1 10813:1 10818:2 10835:1 10841:1 10854:1 10861:3 10864:1 10901:1 10907:1 10911:9 10913:1 10914:1 10919:2 10927:1 10948:1 10949:1 10969:1 10973:1 10980:1 11040:1 11047:2 11049:1 11094:1 11109:1 11110:1 11112:1 11115:1 11117:1 11121:3 11129:1 11131:1 11136:2 11169:1 11181:4 11185:1 11187:1 11189:1 11194:1 11196:1 11207:1 11210:1 11224:4 11244:1 11265:1 11283:1 11291:1 11298:1 11300:1 11303:2 11319:2 11330:1 11337:1 11348:2 11360:1 11365:1 11373:4 11376:2 11389:1 11390:3 11402:1 11419:1 11432:1 11447:2 11462:3 11463:1 11485:1 11486:1 11498:3 11524:1 11541:1 11550:3 11562:1 11573:4 11588:1 11597:1 11605:1 11609:1 11624:2 11744:1 11750:1 11767:1 11770:1 11791:1 11792:2 11796:1 11800:1 11801:2 11807:1 11816:1 11817:5 11819:5 11820:1 11827:1 11834:2 11838:2 11845:3 11849:1 11851:1 11868:3 11901:2 11910:1 11935:1 11937:1 11939:1 11983:1 11986:1 12007:1 12021:1 12023:1 12026:1 12061:1 12118:1 12137:2 12151:1 12156:1 12192:1 12195:1 12202:1 12219:2 12222:1 12227:1 12241:1 12245:2 12247:1 12249:1 12250:1 12260:2 12262:1 12264:2 12269:1 12272:1 12278:1 12285:2 12287:1 12293:1 12324:10 12325:1 12356:1 12369:3 12383:2 12384:2 12391:1 12418:2 12429:2 12430:1 12441:1 12442:2 12449:2 12450:1 12464:1 12483:1 12497:1 12501:1 12528:1 12544:1 12574:3 12579:1 12584:1 12587:1 12592:2 12597:2 12599:1 12603:1 12604:1 12611:1 12614:1 12624:1 12636:1 12640:1 12641:1 12652:3 12655:2 12683:1 12718:1 12741:2 12745:1 12799:1 12808:1 12818:1 12829:1 12863:5 12872:1 12883:1 12886:1 12887:2 12901:1 12907:1 12918:1 12925:1 12931:1 12955:2 12983:1 13003:1 13025:1 13030:1 13043:1 13047:1 13052:1 13059:1 13118:1 13125:1 13127:1 13132:5 13133:1 13134:2 13149:1 13155:2 13168:1 13172:1 13174:1 13182:1 13195:1 13235:1 13237:1 13264:1 13271:1 13291:1 13310:1 13327:1 13338:1 13427:3 13456:1 13493:1 13502:1 13515:1 13531:1 13533:2 13534:1 13552:2 13566:1 13569:1 13582:1 13601:1 13626:1 13654:1 13663:1 13666:1 13669:1 13670:1 13677:1 13718:8 13723:2 13737:2 13776:1 13777:1 13785:2 13811:1 13817:1 13838:2 13839:1 13847:1 13881:1 13900:1 13913:1 13920:1 13927:1 13939:2 13975:1 13978:1 13998:1 14000:1 14010:1 14026:1 14027:1 14048:1 14058:1 14064:3 14084:1 14110:1 14129:1 14146:1 14176:1 14199:1 14201:1 14204:2 14208:4 14224:1 14230:2 14240:1 14245:1 14262:3 14279:1 14284:2 14307:1 14314:3 14316:1 14352:1 14354:1 14355:1 14356:1 14369:4 14370:1 14381:2 14385:1 14403:1 14408:1 14416:1 14417:1 14429:1 14437:1 14453:11 14462:1 14466:1 14503:2 14504:1 14510:1 14532:1 14550:1 14561:1 14603:3 14630:1 14635:6 14641:1 14658:1 14670:1 14673:1 14695:2 14722:1 14732:1 14734:1 14746:2 14748:1 14749:1 14762:1 14769:5 14770:1 14773:1 14775:1 14777:2 14778:1 14782:6 14783:1 14810:1 14814:1 14818:1 14846:1 14873:1 14894:1 14906:1 14967:3 14968:1 15010:1 15013:1 15015:1 15022:1 15025:1 15032:1 15033:1 15049:1 15074:2 15080:1 15094:1 15098:7 15111:1 15121:1 15123:2 15128:1 15163:1 15174:1 15185:1 15202:1 15215:1 15236:1 15265:1 15266:1 15283:1 15293:1 15300:1 15312:1 15315:1 15353:1 15362:2 15379:3 15395:1 15401:1 15414:1 15434:1 15446:1 15468:1 15488:1 15514:1 15517:2 15518:2 15527:1 15540:1 15541:1 15544:1 15550:2 15552:1 15581:1 15592:2 15625:1 15651:1 15675:2 15698:1 15705:1 15707:1 15712:2 15714:1 15725:3 15729:2 15782:1 15786:2 15790:1 15841:1 15842:1 15844:1 15851:1 15870:1 15880:1 15922:3 15938:1 15941:2 15972:1 15973:1 16032:1 16035:2 16078:2 16079:1 16081:1 16100:1 16120:1 16157:1 16160:3 16168:1 16188:1 16189:1 16231:1 16302:1 16314:1 16351:1 16406:1 16435:1 16464:1 16476:1 16479:1 16481:1 16492:1 16511:1 16516:2 16520:1 16545:1 16551:1 16567:2 16585:1 16592:1 16614:1 16627:1 16641:1 16652:1 16687:1 16701:2 16720:1 16731:1 16739:2 16752:1 16782:1 16790:1 16807:1 16810:1 16815:1 16869:1 16883:1 16884:1 16897:2 16909:1 16913:3 16914:1 16918:1 16920:1 16926:1 16940:2 16941:1 16945:1 16948:1 16968:1 16980:1 16999:2 17008:1 17052:2 17079:3 17089:1 17104:1 17105:3 17120:1 17135:2 17151:1 17157:1 17200:1 17230:1 17234:1 17239:10 17256:1 17260:3 17285:2 17327:1 17344:1 17349:2 17360:2 17363:1 17380:2 17383:1 17392:1 17401:1 17428:1 17435:1 17444:1 17445:1 17454:2 17482:1 17504:1 17511:1 17516:3 17518:2 17519:2 17520:4 17521:1 17527:2 17529:1 17531:1 17532:3 17537:1 17538:1 17540:1 17546:1 17555:1 17592:1 17598:1 17627:1 17652:1 17655:1 17656:1 17692:1 17699:1 17708:2 17709:1 17729:1 17762:1 17774:1 17808:1 17827:1 17868:1 17874:1 17884:1 17899:1 17902:2 17915:1 17916:1 17925:1 17930:4 17941:2 17954:1 17965:1 17966:1 17972:2 17980:1 17985:1 17994:3 17998:1 18008:1 18016:1 18071:6 18073:1 18095:1 18096:3 18102:1 18171:1 18172:1 18183:2 18191:1 18201:2 18211:1 18212:1 18225:1 18233:1 18236:2 18286:2 18307:4 18308:1 18340:1 18341:1 18344:1 18361:1 18423:2 18424:2 18425:1 18440:1 18443:1 18453:1 18491:1 18494:1 18517:1 18530:2 18533:1 18565:1 18577:2 18585:1 18597:1 18617:1 18662:1 18670:1 18731:1 18734:1 18755:1 18760:1 18775:2 18779:1 18791:2 18796:1 18801:1 18810:3 18814:2 18815:2 18819:1 18825:3 18852:1 18872:1 18880:1 18885:1 18887:1 18892:1 18898:1 18909:1 18910:1 18962:1 18982:1 18983:1 19004:2 19023:1 19033:2 19047:1 19050:1 19054:1 19070:1 19071:1 19101:1 19102:1 19103:1 19123:1 19130:1 19134:2 19171:1 19207:1 19226:2 19236:1 19246:1 19267:1 19337:1 19376:1 19378:1 19390:1 19391:1 19411:2 19450:1 19514:2 19515:1 19525:1 19538:1 19553:1 19575:1 19593:1 19619:1 19631:1 19651:1 19656:2 19670:1 19719:6 19780:1 19806:1 19826:11 19832:1 19833:2 19834:1 19846:3 19847:1 19863:1 19872:1 19876:1 19897:1 19915:1 19948:4 19971:2 19988:1 19993:1 20016:1 20020:1 20023:2 20041:2 20047:1 20053:1678 20064:1 20070:1 20086:1 20126:1 20132:1 20134:1 20160:2 20217:1 20218:1 20241:1 20262:1 20264:1 20267:1 20271:2 20274:2 20275:2 20294:1 20298:1 20308:1 20320:1 20338:1 20373:1 20375:1 20420:1 20422:1 20425:2 20431:1 20482:1 20490:2 20528:2 20545:1 20546:1 20557:2 20567:1 20587:1 20605:2 20618:1 20642:1 20647:2 20651:1 20660:1 20669:1 20679:1 20681:1 20701:2 20702:2 20715:2 20721:1 20724:1 20732:2 20757:2 20759:1 20768:1 20774:1 20778:1 20781:2 20787:3 20792:1 20815:1 20833:1 20838:2 20839:1 20864:2 20871:1 20882:1 20884:1 20917:1 20926:4 20933:1 20935:2 20943:1 20956:4 20974:1 20979:1 20999:1 21005:1 21013:2 21014:1 21022:1 21061:1 21062:1 21065:1 21089:1 21095:1 21098:2 21105:1 21106:1 21109:1 21148:1 21149:1 21150:1 21152:1 21157:1 21168:1 21202:1 21219:1 21220:1 21237:1 21239:2 21241:1 21242:1 21249:1 21250:1 21254:1 21277:1 21281:1 21283:1 21288:1 21295:1 21302:1 21313:1 21320:1 21322:1 21330:1 21331:1 21341:1 21342:1 21376:1 21379:3 21385:1 21387:3 21446:1 21463:1 21466:1 21475:1 21478:1 21482:2 21483:1 21486:1 21501:1 21503:1 21511:2 21518:1 21519:2 21523:2 21524:1 21544:4 21555:2 21571:1 21573:1 21587:1 21590:1 21591:3 21613:1 21614:1 21627:1 21628:1 21633:1 21652:1 21654:1 21676:1 21678:1 21699:1 21711:3 21712:10 21713:2 21719:1 21727:3 21733:1 21756:1 21789:1 21798:1 21813:1 21818:1 21822:1 21828:1 21853:1 21860:1 21861:1 21881:1 21887:1 21897:1 21940:4 21960:1 21982:2 21990:1 22001:1 22015:1 22018:1 22032:2 22066:6 22069:1 22085:1 22119:1 22120:1 22140:1 22185:2 22202:3 22221:1 22225:1 22228:1 22231:1 22235:1 22236:1 22244:1 22247:1 22282:2 22288:3 22298:2 22300:2 22314:2 22319:1 22326:1 22337:2 22370:3 22390:2 22398:1 22417:2 22421:1 22432:1 22452:2 22466:1 22488:3 22492:1 22503:1 22508:2 22519:3 22546:2 22554:1 22567:1 22590:1 22591:1 22592:1 22602:1 22621:2 22624:2 22628:1 22632:1 22635:1 22643:2 22665:1 22671:2 22685:2 22699:2 22715:1 22716:1 22723:1 22724:1 22726:3 22741:1 22750:2 22758:1 22760:1 22769:1 22773:1 22774:1 22779:1 22790:1 22811:1 22815:1 22838:1 22846:1 22855:1 22857:1 22862:2 22866:2 22893:1 22939:1 23014:2 23017:1 23026:2 23027:2 23031:1 23032:1 23038:1 23039:1 23043:1 23056:1 23063:2 23070:2 23071:1 23081:1 23104:1 23121:1 23131:1 23137:1 23158:1 23181:1 23183:1 23185:1 23190:1 23194:1 23195:2 23199:1 23200:1 23210:1 23222:1 23228:2 23229:1 23236:1 23238:1 23249:1 23251:2 23262:1 23271:6 23281:1 23288:2 23298:1 23313:1 23326:1 23337:1 23345:1 23347:1 23349:1 23352:1 23355:1 23377:1 23410:1 23418:1 23426:2 23429:1 23434:1 23437:3 23439:1 23442:1 23452:2 23466:1 23468:1 23475:1 23497:1 23498:1 23500:2 23502:3 23503:1 23540:1 23576:1 23605:3 23613:1 23614:2 23616:2 23617:2 23619:1 23625:1 23628:1 23632:2 23645:4 23656:1 23659:1 23674:1 23682:1 23693:2 23697:2 23700:1 23721:1 23749:1 23778:1 23783:2 23796:1 23811:1 23823:1 23853:1 23858:1 23862:1 23867:1 23887:1 23897:1 23900:1 23912:1 23915:1 23922:3 23929:1 23939:1 23940:3 23943:2 23946:1 23952:1 23969:1 23982:1 23990:2 23993:1 23998:1 24001:1 24002:4 24010:2 24016:1 24026:1 24030:5 24037:1 24044:1 24053:1 24073:1 24074:1 24108:7 24111:1 24126:1 24150:1 24162:1 24172:3 24175:1 24178:1 24184:1 24197:1 24221:1 24248:1 24250:2 24290:1 24291:3 24294:1 24305:3 24309:3 24319:1 24325:1 24329:1 24346:1 24349:3 24361:1 24370:1 24371:1 24376:3 24386:1 24408:1 24426:1 24432:1 24447:1 24451:1 24479:1 24499:1 24500:1 24502:1 24531:2 24549:3 24550:2 24558:1 24568:1 24574:1 24578:2 24585:3 24598:3 24608:2 24624:1 24661:1 24681:1 24682:1 24685:2 24688:1 24706:1 24708:1 24742:1 24750:1 24752:1 24762:1 24774:1 24776:1 24795:2 24799:1 24806:2 24808:1 24814:1 24851:3 24883:3 24969:1 24996:3 25000:1 25008:5 25018:2 25027:1 25033:1 25036:3 25039:1 25051:2 25054:1 25056:1 25066:1 25080:4 25122:1 25138:1 25172:1 25184:1 25196:1 25199:2 25230:1 25232:1 25240:1 25246:1 25259:2 25268:1 25273:1 25283:1 25286:1 25298:1 25318:2 25320:2 25329:1 25331:1 25343:1 25366:3 25368:1 25371:2 25376:1 25388:1 25391:1 25396:1 25447:1 25450:4 25453:1 25458:1 25471:1 25472:2 25474:1 25477:1 25478:1 25479:1 25481:1 25511:1 25535:1 25537:1 25549:1 25618:2 25633:1 25652:2 25718:2 25727:1 25729:1 25739:1 25776:1 25786:1 25793:1 25803:1 25840:1 25861:1 25885:1 25898:1 25900:2 25909:1 25937:1 25940:1 25963:2 25977:2 25989:1 26010:1 26022:5 26041:1 26048:1 26055:2 26075:1 26076:1 26081:1 26086:2 26095:1 26097:1 26098:1 26103:1 26111:1 26135:3 26157:2 26161:1 26167:1 26168:1 26214:1 26250:1 26253:1 26288:1 26291:1 26292:1 26300:1 26304:3 26305:1 26309:1 26313:1 26317:2 26318:1 26319:1 26320:1 26356:5 26365:1 26373:1 26374:1 26376:1 26380:1 26391:1 26395:1 26397:1 26399:1 26420:8 26425:1 26426:1 26445:1 26447:2 26456:1 26457:1 26473:1 26479:1 26483:1 26488:3 26495:1 26512:1 26530:1 26536:1 26616:1 26651:1 26659:1 26668:1 26674:2 26683:2 26690:1 26696:2 26698:1 26703:1 26758:1 26766:1 26776:1 26787:1 26794:1 26803:2 26828:2 26833:1 26836:1 26847:1 26857:2 26862:1 26875:2 26880:1 26895:1 26901:1 26929:9 26930:2 26942:1 26964:1 26973:1 26974:1 26986:1 27012:1 27024:1 27029:1 27048:2 27051:1 27059:1 27060:1 27078:1 27083:1 27088:1 27092:1 27094:1 27112:1 27123:1 27164:1 27192:7 27193:1 27218:1 27230:1 27233:2 27265:1 27272:1 27298:1 27304:1 27312:3 27315:1 27338:1 27340:2 27341:1 27368:1 27375:1 27381:2 27387:1 27393:1 27428:1 27443:1 27448:2 27450:1 27465:2 27484:1 27486:1 27514:1 27577:1 27590:1 27603:1 27606:1 27619:1 27622:1 27627:2 27633:3 27636:1 27645:1 27646:1 27657:1 27662:1 27673:1 27701:3 27711:1 27713:1 27729:4 27746:1 27748:2 27750:1 27784:1 27786:1 27793:1 27796:1 27820:1 27854:1 27873:2 27889:1 27927:1 27933:1 27947:1 27970:1 27977:1 28000:1 28038:2 28048:1 28049:1 28064:1 28071:1 28072:1 28076:1 28106:1 28131:1 28142:3 28153:1 28186:1 28191:1 28200:2 28202:1 28210:2 28227:2 28228:11 28239:1 28265:1 28268:1 28282:1 28291:2 28304:1 28305:1 28322:1 28328:1 28337:1 28343:1 28356:3 28360:3 28368:3 28371:2 28373:4 28375:1 28410:1 28463:1 28497:1 28501:1 28502:1 28515:1 28531:2 28551:1 28564:1 28568:1 28569:1 28572:1 28573:2 28594:6 28595:1 28596:1 28605:1 28627:1 28630:1 28637:1 28667:1 28671:1 28691:1 28699:1 28727:1 28744:1 28768:1 28777:1 28788:1 28814:1 28816:2 28817:1 28846:1 28857:1 28860:1 28863:5 28878:1 28883:1 28884:1 28921:1 28925:1 28931:1 28932:1 28945:1 28949:1 28954:1 28963:1 28986:2 28988:2 28998:3 29014:1 29034:1 29043:1 29045:1 29050:2 29078:1 29093:1 29095:1 29132:1 29144:1 29158:1 29163:3 29166:1 29171:1 29172:1 29182:1 29187:1 29191:2 29210:1 29227:2 29238:1 29241:1 29244:1 29247:1 29259:2 29260:1 29281:1 29295:1 29312:1 29314:1 29318:2 29322:1 29354:1 29373:3 29375:1 29377:2 29401:1 29404:1 29438:1 29446:2 29453:1 29460:1 29465:1 29473:2 29482:1 29484:1 29494:2 29508:1 29523:1 29524:1 29529:1 29530:1 29531:1 29536:1 29543:2 29556:2 29566:2 29571:1 29574:1 29579:1 29580:1 29613:1 29615:1 29641:2 29663:1 29766:1 29798:1 29804:1 29805:2 29831:1 29849:1 29855:1 29862:1 29879:1 29883:1 29891:1 29921:2 29952:1 29969:1 30009:1 30019:2 30034:2 30039:1 30063:1 30082:1 30109:1 30110:2 30114:1 30133:1 30134:3 30138:1 30146:2 30150:1 30151:1 30152:1 30169:1 30171:1 30180:1 30181:5 30203:1 30205:1 30220:1 30226:2 30228:2 30229:1 30231:1 30235:1 30238:5 30244:1 30251:1 30252:1 30261:3 30263:1 30275:3 30279:1 30283:1 30309:1 30316:1 30332:1 30336:1 30356:1 30362:1 30377:1 30392:2 30397:4 30406:4 30411:1 30438:4 30453:1 30462:1 30470:1 30471:1 30484:1 30491:1 30493:1 30525:1 30527:1 30571:1 30574:1 30583:1 30604:1 30614:1 30629:1 30634:1 30635:1 30645:1 30646:2 30651:1 30656:1 30670:1 30673:3 30711:1 30717:5 30730:1 30735:2 30750:1 30786:3 30871:1 30882:1 30916:1 30926:1 31028:1 31043:1 31046:1 31047:1 31053:2 31055:3 31068:1 31072:1 31074:1 31082:1 31086:1 31092:1 31103:1 31136:1 31152:1 31194:3 31204:2 31233:2 31239:2 31257:1 31284:1 31296:1 31301:1 31308:2 31309:1 31313:2 31345:1 31348:3 31351:2 31377:1 31382:1 31405:1 31422:1 31431:1 31443:1 31473:1 31478:3 31484:1 31487:1 31505:1 31516:2 31519:1 31542:1 31577:1 31580:2 31599:1 31600:1 31606:1 31608:3 31615:2 31617:2 31618:1 31623:1 31632:1 31677:4 31682:1 1 13:1 40:1 46:1 62:1 65:1 72:1 106:1 141:1 155:1 156:3 161:1 167:1 173:1 188:1 190:2 207:5 226:1 231:1 263:1 274:1 278:6 297:3 307:1 328:1 354:1 371:3 373:3 378:3 387:3 391:1 397:2 416:2 430:1 438:1 454:5 458:3 471:1 490:1 526:1 527:1 561:1 588:1 596:1 600:2 620:1 634:3 645:1 659:1 665:1 667:2 674:1 678:1 693:2 765:1 767:1 783:1 815:1 817:1 826:1 829:1 856:2 863:1 871:1 900:5 906:1 911:1 917:1 918:3 927:1 942:9 943:4 952:3 975:2 984:1 992:1 993:4 995:2 998:6 1000:1 1001:1 1004:2 1018:2 1033:1 1042:3 1044:3 1055:1 1095:2 1104:1 1121:1 1142:1 1159:1 1177:1 1178:1 1210:2 1214:1 1217:1 1275:3 1277:2 1283:1 1285:1 1295:1 1298:1 1312:1 1315:1 1328:1 1332:2 1356:2 1380:1 1386:2 1389:1 1417:1 1433:1 1451:1 1466:1 1468:1 1470:1 1485:1 1500:1 1530:1 1540:1 1541:2 1565:1 1584:1 1587:1 1595:2 1602:1 1613:1 1629:1 1632:2 1647:1 1674:1 1686:4 1694:7 1696:2 1705:1 1713:1 1743:2 1751:1 1754:1 1763:1 1767:1 1783:1 1786:1 1791:2 1804:2 1818:1 1820:1 1825:1 1835:1 1839:1 1850:1 1854:1 1863:1 1867:1 1871:1 1881:1 1882:1 1886:2 1897:1 1905:1 1920:2 1923:1 1944:1 1945:5 1950:1 1954:1 1965:1 1971:1 1974:2 1978:1 1979:1 1993:2 1994:6 2027:3 2030:2 2043:1 2060:1 2065:4 2070:1 2074:1 2113:1 2121:2 2128:1 2129:1 2143:2 2192:1 2198:4 2201:1 2207:1 2210:1 2214:1 2215:2 2220:1 2222:1 2226:1 2230:2 2243:1 2247:1 2255:1 2272:1 2283:1 2296:1 2301:1 2306:2 2308:1 2323:1 2349:1 2354:8 2361:1 2370:1 2376:1 2379:1 2393:1 2423:2 2436:3 2439:1 2450:1 2458:1 2464:2 2477:2 2478:2 2482:2 2485:4 2487:1 2491:2 2494:2 2495:2 2497:1 2499:1 2501:1 2502:2 2508:4 2509:3 2514:5 2515:4 2517:1 2528:1 2565:1 2568:1 2571:3 2576:1 2595:1 2603:1 2617:1 2618:1 2623:1 2631:1 2637:1 2639:1 2657:1 2695:1 2706:1 2718:1 2722:1 2739:3 2751:1 2752:1 2765:1 2771:1 2776:1 2779:1 2800:3 2803:2 2806:1 2808:5 2812:1 2813:1 2814:1 2824:1 2827:1 2835:1 2849:4 2851:1 2857:1 2873:2 2881:1 2884:1 2885:1 2897:6 2906:1 2913:1 2916:5 2924:4 2928:1 2937:1 2939:1 2945:1 2947:1 2950:3 2951:2 2967:1 2981:1 2982:2 2987:2 2991:1 3029:1 3034:1 3035:2 3036:2 3041:1 3050:2 3056:1 3060:3 3065:2 3069:1 3096:1 3127:1 3146:2 3152:1 3157:1 3159:12 3178:2 3180:1 3185:1 3186:1 3190:1 3199:2 3203:2 3224:12 3225:1 3246:2 3249:2 3269:1 3280:1 3317:1 3325:1 3332:1 3338:1 3351:1 3352:5 3371:3 3377:1 3383:1 3410:1 3438:1 3440:1 3442:1 3447:1 3457:2 3469:1 3490:2 3510:2 3524:1 3534:1 3550:1 3551:1 3579:1 3580:2 3581:1 3590:1 3608:6 3626:1 3643:1 3663:1 3706:2 3749:1 3751:1 3753:1 3774:1 3781:1 3783:1 3784:1 3788:1 3799:1 3804:1 3829:1 3844:1 3851:1 3861:1 3868:2 3873:1 3897:1 3898:10 3900:1 3909:1 3912:2 3914:1 3915:1 3937:1 3942:1 3998:1 4000:1 4001:1 4008:1 4013:3 4021:1 4038:1 4096:1 4099:1 4101:1 4106:2 4110:1 4113:1 4117:1 4129:1 4149:1 4152:1 4156:2 4163:1 4167:1 4179:2 4181:1 4186:1 4200:2 4215:1 4220:1 4221:1 4226:4 4229:1 4236:2 4241:2 4242:1 4253:2 4272:2 4289:1 4293:2 4313:1 4315:2 4320:1 4340:1 4348:6 4349:3 4356:2 4393:1 4395:2 4398:1 4403:1 4422:1 4426:2 4432:1 4448:1 4464:2 4476:1 4500:1 4526:1 4537:1 4547:3 4551:1 4552:1 4557:2 4563:1 4567:2 4581:1 4587:1 4594:1 4610:1 4629:1 4647:1 4669:7 4691:3 4696:1 4708:1 4712:1 4717:1 4720:1 4732:2 4749:2 4759:1 4779:1 4785:1 4787:2 4808:3 4834:1 4843:1 4844:1 4850:1 4869:2 4893:1 4899:1 4902:1 4904:1 4910:1 4911:2 4922:1 4938:1 4970:1 4983:2 5001:1 5006:1 5034:4 5044:2 5056:1 5062:2 5066:1 5085:4 5105:2 5131:1 5135:2 5138:3 5154:3 5167:1 5174:1 5189:1 5216:1 5249:1 5267:10 5270:1 5279:1 5282:1 5283:1 5297:1 5316:1 5329:1 5339:1 5404:2 5429:1 5430:1 5431:4 5433:5 5434:2 5436:1 5440:1 5441:1 5442:1 5445:1 5446:1 5449:4 5450:3 5453:1 5454:2 5456:4 5465:3 5469:1 5517:1 5532:1 5548:2 5557:1 5575:1 5580:1 5592:1 5625:1 5638:1 5658:1 5668:1 5704:1 5720:1 5765:1 5771:1 5801:2 5807:2 5813:1 5850:1 5875:3 5889:1 5890:1 5915:1 5917:1 5937:1 5943:1 5953:2 5959:1 5972:1 5980:1 5988:1 5994:1 6017:1 6029:1 6057:1 6060:1 6100:1 6110:1 6115:2 6118:1 6133:4 6134:1 6136:2 6139:1 6143:1 6144:2 6156:1 6157:1 6181:1 6188:3 6200:1 6202:1 6219:6 6223:1 6224:1 6237:2 6308:1 6320:1 6327:1 6330:1 6345:1 6351:1 6352:1 6361:2 6387:1 6400:1 6427:1 6433:1 6444:2 6466:2 6468:1 6488:5 6494:1 6495:1 6499:1 6502:2 6512:1 6514:1 6516:1 6556:1 6560:1 6561:1 6569:1 6571:1 6579:1 6581:1 6582:1 6586:10 6600:1 6603:1 6624:2 6631:1 6655:1 6668:1 6684:3 6693:1 6706:1 6709:5 6713:1 6720:1 6769:1 6775:1 6799:1 6806:1 6808:1 6809:1 6814:2 6816:3 6822:1 6823:1 6825:2 6832:2 6834:3 6835:2 6884:1 6931:1 6949:1 6990:1 6993:4 6996:2 7008:1 7040:1 7052:1 7057:1 7061:1 7071:1 7079:1 7097:1 7106:1 7131:1 7145:2 7153:2 7167:1 7174:1 7175:1 7182:1 7227:1 7253:1 7256:1 7265:1 7284:7 7292:2 7295:1 7298:1 7309:1 7315:1 7326:2 7348:1 7357:1 7360:1 7362:1 7403:1 7405:3 7421:1 7429:1 7435:2 7454:1 7460:1 7465:1 7473:1 7478:2 7504:1 7522:1 7529:1 7535:1 7550:1 7561:1 7569:1 7574:6 7578:2 7611:1 7615:1 7621:1 7624:1 7625:2 7636:3 7638:1 7640:1 7645:5 7648:1 7651:1 7656:1 7679:1 7680:1 7681:1 7695:1 7701:1 7729:1 7737:3 7747:2 7759:1 7792:2 7796:1 7798:1 7805:1 7812:1 7827:1 7839:1 7846:1 7853:1 7869:1 7925:1 7930:1 7933:1 7971:1 7984:1 7985:2 7986:1 7991:1 7999:1 8004:1 8006:3 8010:1 8032:4 8036:2 8037:1 8061:1 8064:2 8074:1 8081:1 8093:1 8108:2 8117:1 8134:1 8140:1 8152:1 8153:1 8161:1 8168:1 8198:1 8218:2 8235:3 8236:6 8250:1 8257:3 8258:1 8262:2 8263:3 8287:2 8288:2 8290:1 8303:36 8306:1 8315:1 8323:1 8326:5 8327:3 8331:2 8367:1 8374:1 8375:1 8384:1 8397:1 8404:3 8405:2 8411:1 8421:1 8424:1 8433:1 8445:1 8455:1 8459:1 8461:1 8480:2 8486:1 8492:1 8514:1 8541:1 8550:1 8553:1 8557:1 8558:3 8588:1 8591:1 8592:1 8593:1 8605:1 8609:2 8663:1 8681:1 8696:1 8722:1 8723:1 8734:1 8737:1 8742:1 8765:1 8768:1 8775:1 8777:1 8778:2 8788:1 8797:1 8815:1 8835:18 8843:1 8844:1 8865:3 8868:1 8870:1 8935:3 8937:1 8938:1 8943:1 8969:1 8974:1 8990:2 8994:2 8996:1 9001:1 9019:1 9030:1 9031:4 9038:2 9044:1 9065:2 9066:1 9069:1 9076:1 9080:1 9088:1 9090:1 9104:1 9109:1 9110:1 9128:1 9129:1 9139:1 9142:1 9154:1 9201:1 9204:1 9205:1 9209:1 9211:1 9216:1 9239:1 9242:1 9255:4 9267:2 9271:3 9291:1 9302:1 9312:1 9319:2 9323:1 9340:1 9345:1 9365:2 9393:1 9404:1 9436:1 9437:1 9449:1 9450:1 9460:1 9485:1 9486:1 9487:1 9501:1 9510:1 9533:1 9536:1 9537:1 9541:3 9577:2 9586:1 9594:2 9606:1 9613:1 9618:1 9643:1 9644:1 9655:1 9661:1 9662:3 9663:1 9668:1 9670:1 9675:1 9687:1 9697:1 9708:4 9719:1 9732:1 9759:1 9768:5 9769:5 9778:1 9784:2 9794:2 9830:1 9844:1 9849:1 9853:2 9872:1 9878:1 9882:1 9884:1 9886:2 9888:2 9898:1 9928:1 9950:1 9960:2 9963:1 9969:1 9972:4 9974:1 9996:2 9999:2 10021:4 10050:1 10080:1 10089:1 10111:2 10122:2 10128:1 10142:1 10147:1 10156:1 10159:1 10183:1 10197:1 10201:1 10211:1 10220:7 10226:2 10264:3 10298:3 10302:1 10330:1 10358:1 10363:1 10365:3 10366:2 10369:2 10408:1 10437:1 10439:1 10447:1 10494:2 10517:1 10530:2 10542:1 10554:1 10557:1 10558:1 10576:1 10587:1 10603:1 10606:1 10611:1 10612:1 10626:1 10630:1 10657:1 10663:1 10665:1 10670:1 10674:5 10690:3 10702:3 10707:2 10717:1 10738:2 10762:1 10764:1 10813:1 10818:2 10835:1 10841:1 10854:1 10861:3 10864:1 10901:1 10907:1 10911:10 10913:1 10914:1 10919:2 10927:1 10948:1 10949:1 10969:1 10973:1 10980:1 11018:1 11040:1 11047:2 11049:1 11094:1 11109:1 11110:1 11112:1 11115:1 11117:1 11121:3 11129:1 11131:1 11136:2 11169:1 11181:4 11185:1 11187:1 11189:1 11194:1 11196:1 11207:1 11210:1 11224:4 11244:1 11265:1 11283:1 11291:1 11298:1 11300:1 11303:2 11306:1 11319:2 11330:1 11337:1 11348:2 11360:1 11362:1 11365:1 11373:5 11376:2 11389:1 11390:3 11395:1 11402:1 11419:1 11432:1 11447:2 11462:3 11463:1 11485:1 11486:1 11498:3 11524:1 11541:1 11544:1 11550:3 11562:1 11573:4 11588:1 11597:1 11605:1 11609:1 11624:2 11744:1 11750:1 11767:1 11770:1 11791:1 11792:2 11796:1 11800:1 11801:2 11807:1 11816:1 11817:5 11819:5 11820:1 11827:1 11834:2 11838:2 11842:1 11845:3 11849:1 11851:1 11868:3 11872:1 11901:2 11910:1 11935:1 11937:1 11939:2 11983:1 11986:1 12007:1 12021:1 12023:1 12026:1 12061:1 12094:1 12118:1 12137:2 12151:1 12156:1 12179:1 12192:1 12195:1 12202:1 12219:2 12222:1 12227:1 12241:1 12245:2 12247:1 12249:1 12250:1 12260:2 12262:1 12263:1 12264:2 12269:1 12272:1 12278:1 12285:2 12287:1 12293:1 12324:11 12325:1 12356:1 12369:3 12383:2 12384:2 12391:1 12418:2 12429:2 12430:1 12441:1 12442:2 12449:2 12450:1 12464:1 12483:1 12497:1 12501:1 12528:1 12544:1 12566:1 12574:3 12579:1 12584:1 12587:1 12592:2 12597:2 12599:1 12603:1 12604:1 12611:1 12614:1 12624:1 12636:1 12640:1 12641:1 12643:1 12652:3 12655:2 12683:1 12718:1 12741:2 12745:1 12783:1 12799:1 12801:1 12808:1 12818:1 12829:1 12863:5 12872:1 12883:1 12886:1 12887:2 12901:1 12907:1 12918:1 12925:1 12931:1 12955:2 12982:1 12983:1 13003:1 13025:1 13030:1 13043:1 13047:1 13052:1 13059:1 13070:1 13118:1 13125:1 13127:1 13132:5 13133:1 13134:2 13149:1 13155:2 13168:1 13172:1 13174:1 13182:1 13195:1 13235:1 13237:1 13240:1 13264:1 13271:1 13280:1 13291:1 13310:1 13327:1 13332:1 13338:1 13427:3 13456:2 13473:1 13493:1 13502:1 13515:1 13531:1 13533:2 13534:1 13552:2 13566:1 13569:1 13582:1 13601:1 13626:1 13654:1 13663:1 13666:1 13669:1 13670:2 13677:1 13718:8 13723:3 13737:2 13762:1 13776:1 13777:1 13785:2 13805:1 13811:1 13817:1 13838:2 13839:1 13847:1 13881:1 13900:1 13913:1 13920:1 13927:1 13939:2 13975:1 13978:1 13998:1 14000:1 14010:1 14011:1 14026:1 14027:1 14048:1 14058:1 14064:3 14084:1 14110:1 14129:1 14146:1 14176:1 14199:1 14201:1 14204:2 14208:4 14224:1 14230:2 14240:2 14245:1 14262:5 14279:1 14284:2 14307:1 14314:3 14316:1 14352:1 14354:1 14355:1 14356:1 14369:4 14370:1 14381:2 14385:1 14403:1 14408:1 14416:1 14417:1 14429:1 14437:1 14453:11 14462:1 14466:1 14503:2 14504:1 14510:1 14532:1 14550:1 14561:1 14603:3 14630:1 14635:6 14641:1 14658:1 14670:1 14673:1 14695:2 14722:1 14732:1 14734:1 14746:2 14748:1 14749:1 14760:1 14762:1 14769:6 14770:1 14773:1 14775:1 14777:2 14778:1 14782:7 14783:1 14810:1 14811:1 14814:1 14818:1 14846:1 14873:1 14894:1 14906:1 14967:3 14968:1 15010:1 15013:1 15015:1 15022:1 15025:1 15032:1 15033:1 15049:1 15074:2 15080:1 15094:1 15098:7 15111:1 15121:1 15123:2 15128:1 15163:1 15174:1 15175:1 15185:1 15202:1 15213:1 15215:1 15236:1 15265:1 15266:1 15283:1 15293:1 15300:1 15312:1 15315:1 15353:1 15362:2 15379:3 15395:1 15401:1 15414:1 15434:1 15446:1 15468:1 15488:1 15514:1 15517:2 15518:3 15527:1 15540:1 15541:1 15544:1 15550:2 15552:1 15581:1 15592:2 15625:1 15651:1 15675:2 15698:1 15705:1 15707:1 15712:2 15714:1 15725:3 15729:2 15782:1 15786:2 15790:1 15841:1 15842:1 15844:1 15851:1 15870:1 15880:1 15922:3 15928:1 15938:1 15941:2 15972:1 15973:1 15978:1 16032:1 16035:2 16078:2 16079:1 16081:1 16100:1 16120:1 16157:1 16160:3 16168:1 16188:1 16189:1 16231:1 16302:1 16314:2 16351:1 16406:1 16435:1 16442:1 16464:1 16476:1 16479:1 16481:1 16492:1 16511:1 16516:2 16520:1 16545:1 16551:1 16567:2 16585:1 16592:1 16614:1 16627:1 16641:1 16652:1 16687:1 16701:3 16720:1 16731:1 16739:2 16752:1 16782:1 16790:1 16807:1 16810:1 16815:2 16869:1 16883:1 16884:1 16897:2 16909:1 16913:3 16914:1 16918:1 16920:1 16926:1 16940:3 16941:1 16945:1 16948:1 16962:1 16968:1 16980:1 16999:2 17008:1 17052:2 17062:1 17079:3 17089:1 17104:1 17105:3 17120:1 17135:2 17151:1 17157:1 17200:1 17230:1 17234:1 17239:10 17256:1 17260:3 17285:2 17327:1 17344:1 17349:2 17360:2 17363:1 17380:2 17383:1 17392:1 17401:1 17428:1 17435:1 17444:1 17445:1 17454:2 17482:1 17486:1 17504:1 17511:1 17516:3 17518:2 17519:2 17520:4 17521:1 17527:2 17529:1 17531:1 17532:3 17537:1 17538:1 17540:1 17546:1 17555:1 17592:1 17598:1 17627:1 17652:1 17655:1 17656:1 17692:1 17699:1 17708:2 17709:1 17729:1 17762:1 17774:1 17808:1 17827:1 17868:1 17874:1 17884:2 17899:1 17902:2 17915:1 17916:1 17925:1 17930:5 17937:1 17941:2 17954:1 17965:1 17966:1 17972:2 17975:1 17980:1 17985:1 17994:3 17998:2 18008:1 18016:1 18071:7 18073:1 18095:1 18096:3 18102:1 18171:1 18172:1 18183:2 18191:1 18201:2 18211:1 18212:1 18225:1 18233:1 18236:2 18286:2 18307:4 18308:1 18322:1 18340:1 18341:1 18344:1 18361:1 18423:2 18424:2 18425:1 18438:1 18440:1 18443:1 18453:1 18491:1 18494:1 18517:1 18530:2 18533:1 18548:1 18565:1 18577:2 18585:1 18597:1 18617:1 18662:1 18670:1 18731:1 18734:1 18755:1 18760:1 18775:2 18779:1 18791:2 18796:1 18801:1 18810:3 18814:2 18815:2 18819:1 18825:4 18852:1 18872:1 18877:1 18880:1 18885:1 18887:1 18892:1 18898:1 18909:1 18910:1 18962:1 18982:1 18983:1 19004:3 19009:1 19023:1 19033:2 19047:1 19050:1 19054:1 19070:1 19071:1 19101:1 19102:1 19103:1 19123:1 19130:1 19134:2 19166:1 19171:1 19207:1 19226:2 19236:1 19246:1 19267:1 19337:1 19376:1 19378:1 19390:1 19391:1 19411:2 19450:1 19514:2 19515:1 19525:1 19538:1 19553:1 19575:1 19593:1 19619:1 19631:1 19651:1 19656:2 19670:1 19719:7 19750:1 19780:1 19806:1 19826:11 19832:1 19833:2 19834:1 19846:3 19847:1 19863:1 19872:1 19876:1 19897:1 19915:1 19948:4 19971:2 19988:1 19993:1 20016:1 20020:1 20023:2 20041:2 20047:1 20053:1818 20064:1 20070:1 20085:1 20086:1 20126:1 20132:1 20134:1 20160:2 20217:1 20218:1 20229:1 20241:1 20262:1 20264:1 20267:1 20271:2 20274:2 20275:2 20294:1 20298:1 20308:1 20320:1 20338:1 20373:1 20375:1 20420:1 20422:1 20425:2 20431:1 20482:1 20490:3 20528:2 20545:1 20546:1 20557:2 20567:1 20587:1 20605:2 20618:1 20642:1 20647:2 20651:1 20660:1 20669:1 20679:1 20681:1 20701:2 20702:2 20715:2 20721:1 20724:1 20732:2 20757:2 20759:1 20768:1 20774:1 20778:1 20781:2 20787:3 20792:1 20815:1 20833:1 20838:2 20839:1 20848:1 20864:2 20871:1 20882:1 20884:1 20917:1 20926:4 20933:1 20935:2 20943:1 20956:4 20974:1 20979:1 20999:1 21005:2 21013:2 21014:1 21022:1 21061:1 21062:1 21065:1 21075:1 21089:1 21095:1 21098:2 21105:1 21106:1 21109:1 21148:1 21149:1 21150:1 21152:1 21157:1 21168:1 21202:1 21219:1 21220:2 21237:1 21239:2 21241:1 21242:1 21249:1 21250:1 21254:1 21277:1 21281:1 21283:1 21288:1 21295:1 21302:1 21313:1 21320:1 21322:1 21330:1 21331:1 21341:1 21342:1 21376:1 21379:4 21385:1 21387:3 21446:1 21463:1 21466:1 21475:1 21478:1 21482:2 21483:1 21486:1 21501:1 21503:1 21511:2 21518:1 21519:2 21523:2 21524:1 21544:4 21555:2 21571:1 21573:1 21587:1 21590:1 21591:3 21613:1 21614:1 21627:1 21628:1 21633:1 21652:1 21654:1 21673:1 21676:1 21678:1 21699:1 21711:3 21712:12 21713:2 21719:1 21727:3 21733:1 21756:1 21789:1 21798:1 21813:1 21818:1 21822:1 21828:1 21853:1 21860:1 21861:1 21881:1 21887:1 21897:1 21940:4 21960:1 21982:2 21990:1 22001:1 22015:1 22018:1 22032:2 22066:6 22069:1 22085:1 22119:1 22120:1 22140:1 22185:2 22202:3 22221:1 22225:1 22228:1 22231:1 22235:1 22236:1 22244:1 22247:1 22282:2 22288:3 22298:2 22300:2 22314:2 22319:1 22325:1 22326:1 22337:2 22370:3 22390:2 22398:1 22417:2 22421:1 22432:1 22452:2 22466:1 22473:1 22488:3 22492:1 22503:1 22508:2 22519:3 22546:2 22554:1 22567:1 22590:1 22591:1 22592:1 22602:1 22621:2 22624:2 22628:1 22632:1 22635:1 22643:2 22665:1 22671:2 22685:2 22699:2 22715:1 22716:1 22723:1 22724:1 22726:3 22741:1 22750:2 22758:1 22760:1 22769:1 22773:1 22774:1 22779:1 22790:1 22793:1 22811:1 22815:1 22838:1 22846:1 22855:1 22857:1 22862:2 22866:2 22879:1 22893:1 22939:1 23014:2 23017:1 23026:2 23027:2 23031:1 23032:1 23038:1 23039:1 23043:1 23056:1 23063:2 23070:2 23071:1 23081:1 23104:1 23121:1 23131:1 23137:1 23158:1 23159:1 23181:1 23183:1 23184:1 23185:1 23190:1 23194:1 23195:2 23199:1 23200:1 23210:1 23217:1 23222:1 23228:2 23229:1 23236:1 23238:1 23249:1 23251:2 23262:1 23271:7 23281:1 23288:2 23298:1 23313:1 23326:1 23337:1 23345:1 23347:1 23349:1 23352:1 23355:1 23377:1 23410:2 23418:1 23426:2 23429:1 23434:1 23437:3 23439:1 23442:1 23452:2 23466:1 23468:1 23475:1 23497:1 23498:1 23500:2 23502:3 23503:1 23540:1 23576:1 23605:3 23613:1 23614:2 23616:2 23617:2 23619:1 23620:1 23625:1 23628:1 23632:2 23645:4 23656:1 23659:1 23674:1 23682:1 23693:2 23697:2 23700:1 23721:1 23749:1 23778:1 23783:2 23796:1 23811:1 23823:1 23853:1 23858:1 23859:1 23862:1 23867:1 23887:1 23897:1 23900:1 23912:1 23915:1 23922:3 23929:1 23939:1 23940:3 23943:2 23946:1 23952:1 23969:1 23982:1 23990:2 23993:1 23998:1 24001:1 24002:4 24010:2 24016:1 24026:1 24030:5 24037:1 24044:1 24053:1 24073:1 24074:1 24108:7 24111:1 24126:1 24150:1 24162:1 24172:3 24175:1 24178:1 24184:1 24197:1 24221:1 24248:1 24250:2 24290:1 24291:4 24294:1 24305:3 24309:3 24319:1 24325:1 24329:1 24346:1 24349:3 24361:1 24370:1 24371:2 24376:3 24386:1 24408:1 24426:1 24432:1 24447:1 24451:1 24479:1 24495:1 24499:1 24500:1 24502:1 24531:2 24549:4 24550:2 24558:1 24568:1 24574:1 24578:2 24585:3 24598:3 24608:2 24624:1 24661:1 24681:1 24682:1 24685:2 24688:1 24706:1 24708:1 24742:1 24746:1 24750:1 24752:1 24762:1 24774:1 24776:1 24789:1 24795:2 24799:1 24806:2 24808:1 24814:1 24851:3 24883:3 24899:1 24969:1 24996:3 25000:1 25008:5 25018:2 25027:1 25033:1 25036:3 25039:1 25051:2 25054:1 25056:1 25066:1 25080:4 25122:1 25138:1 25172:1 25184:1 25196:1 25199:2 25230:1 25232:1 25240:1 25246:1 25259:2 25268:1 25273:2 25283:1 25286:1 25298:1 25318:2 25320:3 25329:1 25331:1 25343:1 25366:3 25368:1 25371:2 25376:1 25388:1 25391:1 25396:1 25447:1 25450:4 25453:1 25458:1 25471:1 25472:2 25474:1 25477:1 25478:1 25479:1 25481:1 25511:1 25535:1 25537:1 25549:1 25618:2 25633:1 25652:2 25715:1 25718:2 25727:1 25729:1 25739:1 25776:1 25786:1 25793:1 25803:1 25840:1 25861:1 25885:1 25898:1 25900:2 25909:1 25937:1 25940:1 25963:2 25977:2 25989:1 26010:1 26022:7 26041:1 26048:1 26055:2 26075:1 26076:1 26081:1 26086:2 26095:1 26097:1 26098:1 26103:1 26111:1 26135:3 26157:2 26161:1 26167:1 26168:1 26214:1 26250:1 26253:1 26288:1 26291:1 26292:1 26300:1 26304:3 26305:1 26309:1 26313:1 26317:2 26318:1 26319:1 26320:1 26356:5 26365:1 26373:1 26374:1 26376:1 26380:1 26391:1 26395:1 26397:1 26399:1 26420:8 26425:2 26426:1 26445:1 26447:2 26456:1 26457:1 26473:1 26477:1 26479:1 26483:1 26488:3 26495:2 26512:1 26530:1 26536:1 26616:1 26648:1 26651:1 26659:1 26668:1 26674:2 26683:2 26687:1 26690:1 26696:2 26698:2 26703:1 26734:1 26758:1 26766:1 26776:1 26787:1 26794:1 26803:2 26828:2 26833:1 26836:1 26847:1 26857:2 26862:1 26875:2 26880:1 26895:1 26901:1 26929:10 26930:2 26942:1 26964:1 26973:1 26974:1 26986:1 27012:1 27024:1 27029:1 27048:2 27051:1 27059:1 27060:1 27078:1 27083:1 27088:1 27092:1 27094:1 27112:1 27123:1 27164:1 27192:9 27193:1 27218:1 27230:1 27233:2 27265:1 27272:1 27290:1 27298:1 27304:1 27312:5 27315:1 27338:1 27340:2 27341:1 27368:1 27375:1 27381:2 27387:1 27393:1 27428:1 27443:1 27448:2 27450:1 27465:2 27484:1 27486:1 27498:1 27514:1 27577:1 27590:1 27603:1 27606:1 27619:1 27622:1 27627:2 27633:3 27636:1 27643:1 27645:1 27646:1 27657:1 27662:1 27673:1 27701:3 27711:1 27713:1 27729:4 27746:1 27748:2 27750:1 27784:1 27786:1 27793:1 27796:1 27820:1 27854:1 27873:2 27889:1 27927:1 27933:1 27947:1 27970:1 27977:1 28000:1 28038:2 28048:1 28049:1 28064:1 28071:1 28072:1 28076:1 28106:1 28131:1 28142:3 28153:1 28186:1 28191:1 28200:2 28202:1 28210:2 28227:2 28228:11 28239:1 28265:1 28268:1 28282:1 28291:2 28304:1 28305:1 28317:1 28322:1 28326:1 28328:1 28337:1 28343:1 28356:3 28360:3 28368:3 28371:2 28373:4 28375:1 28410:1 28463:1 28497:1 28501:1 28502:1 28515:1 28531:2 28551:1 28564:1 28568:1 28569:1 28572:1 28573:2 28594:6 28595:1 28596:1 28605:1 28627:1 28630:1 28637:1 28667:1 28671:1 28691:1 28699:1 28727:1 28744:1 28768:1 28777:1 28788:2 28814:1 28816:2 28817:1 28846:1 28851:1 28857:1 28860:1 28863:5 28878:1 28883:1 28884:1 28921:1 28925:1 28931:1 28932:1 28945:1 28949:1 28954:1 28963:1 28986:2 28988:2 28998:3 29014:1 29034:1 29043:1 29045:1 29050:2 29078:1 29093:1 29095:1 29132:1 29144:1 29158:1 29163:3 29166:1 29171:1 29172:1 29182:1 29187:1 29191:2 29210:1 29227:2 29238:2 29241:1 29244:1 29247:1 29259:2 29260:1 29281:1 29295:1 29312:1 29314:1 29318:2 29322:1 29354:1 29373:4 29375:1 29377:2 29401:1 29404:1 29438:1 29446:2 29453:1 29460:1 29465:1 29473:2 29482:1 29484:1 29494:2 29508:1 29523:1 29524:1 29529:1 29530:1 29531:1 29536:1 29543:2 29556:2 29566:2 29571:1 29574:1 29579:1 29580:1 29613:1 29615:1 29630:1 29641:2 29663:1 29688:1 29766:1 29798:1 29804:1 29805:2 29831:2 29849:1 29855:1 29862:2 29879:1 29883:1 29891:1 29921:2 29952:1 29969:1 30009:1 30019:2 30034:2 30039:1 30063:1 30082:1 30109:1 30110:2 30114:1 30133:1 30134:3 30138:1 30146:2 30150:1 30151:1 30152:2 30169:1 30171:1 30180:1 30181:5 30203:1 30205:1 30220:1 30226:2 30228:2 30229:1 30231:1 30235:1 30238:5 30244:1 30251:1 30252:1 30261:3 30263:1 30275:3 30279:1 30283:1 30309:1 30316:1 30332:1 30336:1 30356:1 30362:1 30377:1 30392:2 30397:4 30406:4 30411:1 30438:4 30453:1 30457:1 30462:1 30470:1 30471:1 30484:1 30491:1 30493:1 30525:1 30527:2 30571:1 30574:1 30583:1 30604:1 30614:1 30629:1 30634:1 30635:1 30645:1 30646:2 30651:1 30656:1 30670:1 30673:3 30711:1 30717:6 30729:1 30730:1 30735:2 30750:1 30786:3 30865:1 30871:1 30882:1 30916:1 30926:1 31028:1 31043:1 31046:1 31047:1 31053:2 31055:3 31068:1 31072:1 31074:1 31082:1 31086:1 31092:1 31103:1 31136:1 31152:1 31184:1 31194:3 31204:2 31233:2 31239:2 31257:1 31284:1 31296:1 31301:1 31308:2 31309:1 31313:2 31343:1 31345:1 31348:3 31351:2 31377:1 31382:1 31405:1 31422:1 31431:1 31443:1 31473:1 31478:3 31484:1 31487:1 31505:1 31516:2 31519:1 31542:1 31577:1 31580:2 31599:1 31600:1 31606:1 31608:3 31615:2 31617:3 31618:1 31623:1 31632:1 31677:5 31682:1 1 13:1 40:1 46:1 62:1 65:1 72:1 106:1 141:1 155:1 156:3 161:1 167:1 173:1 188:1 190:3 207:5 226:1 231:1 244:1 263:1 274:1 278:6 297:3 307:1 328:1 354:1 371:3 373:3 378:3 387:3 391:1 397:2 416:2 430:1 438:1 454:5 458:3 471:1 490:1 526:1 527:1 561:1 588:1 596:1 600:2 614:1 620:1 634:3 645:1 659:1 665:1 667:2 674:1 678:1 693:2 765:1 767:1 783:1 815:1 817:1 826:1 829:1 856:2 863:1 871:1 900:5 906:1 911:1 917:1 918:4 927:1 942:10 943:4 952:3 975:2 984:1 992:1 993:4 995:2 998:6 1000:1 1001:1 1004:2 1018:2 1033:1 1042:3 1044:4 1055:1 1095:2 1104:1 1121:1 1142:1 1159:1 1177:1 1178:1 1210:2 1214:1 1217:1 1275:3 1277:2 1283:1 1285:1 1295:1 1298:1 1312:1 1315:1 1328:1 1332:2 1351:1 1356:2 1380:1 1386:2 1389:1 1408:1 1417:1 1433:1 1451:1 1466:1 1468:1 1470:1 1485:1 1500:1 1530:1 1540:1 1541:2 1564:1 1565:2 1584:1 1587:1 1595:2 1602:1 1613:1 1629:1 1632:2 1647:1 1674:1 1686:4 1694:7 1696:2 1705:1 1713:1 1743:2 1751:1 1754:1 1763:1 1767:1 1783:1 1786:1 1791:2 1799:1 1804:2 1818:1 1820:1 1825:1 1835:1 1839:2 1850:1 1854:1 1863:1 1867:1 1871:1 1881:1 1882:1 1886:2 1897:1 1905:1 1920:2 1923:1 1944:1 1945:5 1950:1 1954:1 1965:1 1971:1 1974:2 1978:1 1979:1 1993:2 1994:6 2027:4 2030:2 2043:1 2060:2 2065:4 2070:1 2074:1 2113:1 2121:2 2127:2 2128:1 2129:1 2143:2 2192:1 2198:4 2201:1 2207:1 2210:1 2214:1 2215:2 2220:1 2222:1 2226:1 2230:2 2243:1 2247:1 2255:1 2272:1 2283:1 2296:2 2300:1 2301:1 2306:2 2308:1 2323:1 2349:1 2354:9 2361:1 2370:1 2376:1 2379:1 2393:1 2423:2 2436:3 2439:1 2450:1 2458:1 2464:2 2477:2 2478:2 2482:2 2485:4 2487:1 2491:2 2494:2 2495:2 2497:1 2499:1 2501:1 2502:3 2508:4 2509:3 2514:5 2515:5 2517:1 2528:1 2565:1 2568:1 2571:3 2576:1 2595:1 2603:1 2617:1 2618:1 2623:1 2631:1 2637:1 2639:1 2657:1 2695:1 2706:1 2718:1 2722:1 2739:3 2751:1 2752:1 2765:1 2771:1 2776:1 2779:1 2800:3 2803:2 2806:1 2808:5 2812:1 2813:1 2814:1 2824:1 2827:1 2835:1 2849:4 2851:1 2857:1 2873:2 2881:1 2884:1 2885:1 2897:6 2906:1 2913:1 2916:5 2924:4 2928:1 2937:1 2939:1 2945:2 2947:1 2950:3 2951:2 2967:1 2981:1 2982:2 2987:2 2991:1 3029:1 3034:1 3035:2 3036:2 3041:1 3050:2 3056:1 3060:3 3065:2 3069:1 3089:1 3096:1 3127:1 3146:3 3152:1 3157:1 3159:13 3178:2 3180:1 3185:1 3186:1 3190:1 3199:2 3203:2 3224:13 3225:1 3246:2 3249:2 3269:1 3280:1 3317:1 3325:1 3332:1 3338:1 3351:1 3352:5 3371:3 3377:1 3383:1 3410:1 3426:1 3438:1 3440:1 3442:1 3447:1 3457:2 3469:1 3490:2 3510:3 3524:1 3534:1 3550:1 3551:1 3579:1 3580:2 3581:1 3590:1 3608:6 3626:1 3643:1 3663:1 3706:2 3749:1 3751:1 3753:1 3774:1 3781:1 3783:1 3784:1 3788:1 3799:1 3804:1 3829:1 3844:1 3851:1 3861:1 3868:2 3873:1 3897:1 3898:11 3900:1 3909:1 3912:2 3914:1 3915:2 3937:1 3942:1 3998:1 4000:1 4001:1 4008:1 4013:3 4021:1 4038:1 4062:1 4096:1 4099:1 4101:1 4106:2 4110:1 4113:1 4117:1 4129:1 4149:1 4152:1 4156:2 4163:1 4167:1 4179:2 4181:1 4186:1 4195:1 4200:2 4215:1 4220:1 4221:1 4226:4 4229:1 4236:2 4241:2 4242:1 4253:2 4272:2 4289:1 4293:2 4313:1 4315:2 4320:1 4340:1 4348:6 4349:3 4356:2 4393:1 4395:2 4398:1 4403:1 4422:1 4426:2 4432:1 4448:1 4464:2 4476:1 4500:2 4526:1 4537:1 4547:3 4551:1 4552:1 4557:2 4563:1 4567:2 4581:1 4587:1 4594:1 4610:1 4629:1 4647:1 4669:7 4691:3 4696:1 4708:1 4712:1 4717:1 4720:1 4732:2 4749:2 4759:1 4779:1 4785:1 4787:2 4808:3 4834:1 4843:1 4844:1 4850:1 4869:2 4893:1 4899:1 4902:1 4904:1 4910:1 4911:2 4922:1 4938:1 4959:1 4970:1 4983:3 5001:1 5006:1 5034:4 5044:2 5056:1 5062:2 5066:1 5085:4 5105:2 5131:1 5135:2 5138:3 5154:3 5167:1 5174:1 5189:1 5216:1 5249:1 5267:11 5270:1 5279:1 5282:1 5283:1 5297:1 5316:1 5329:1 5339:1 5404:2 5429:1 5430:1 5431:4 5433:5 5434:2 5436:1 5440:1 5441:1 5442:1 5445:1 5446:1 5449:5 5450:4 5453:1 5454:2 5456:5 5464:1 5465:3 5469:1 5517:1 5532:1 5548:2 5557:1 5575:1 5580:1 5592:1 5625:1 5638:1 5658:1 5668:1 5704:1 5720:1 5731:2 5765:1 5771:1 5801:2 5807:2 5813:1 5850:1 5875:3 5889:1 5890:1 5915:1 5917:1 5937:1 5943:1 5953:2 5959:1 5972:1 5980:1 5988:1 5994:1 6017:1 6029:1 6057:1 6060:1 6100:2 6110:1 6115:2 6118:1 6133:4 6134:1 6136:2 6139:1 6143:1 6144:2 6156:1 6157:1 6181:1 6188:3 6200:2 6202:1 6219:6 6223:1 6224:1 6237:2 6308:1 6320:1 6327:1 6330:1 6345:1 6349:1 6351:1 6352:1 6361:2 6387:1 6400:1 6427:1 6433:2 6444:2 6466:2 6468:1 6488:5 6494:1 6495:1 6499:1 6502:2 6512:1 6514:1 6516:1 6556:1 6560:1 6561:1 6569:1 6571:1 6579:1 6581:1 6582:1 6586:10 6600:1 6603:1 6624:2 6631:1 6655:1 6668:1 6684:3 6693:1 6706:1 6709:6 6713:1 6720:1 6769:1 6775:1 6799:1 6806:1 6808:1 6809:1 6814:2 6816:3 6822:1 6823:1 6825:2 6832:2 6834:3 6835:2 6884:1 6931:1 6949:1 6990:1 6993:4 6996:2 7008:1 7040:1 7052:1 7057:1 7061:1 7071:1 7079:1 7097:1 7106:1 7131:1 7145:2 7153:2 7167:1 7174:1 7175:1 7182:1 7227:1 7241:1 7253:1 7256:1 7265:1 7284:7 7292:2 7295:2 7298:1 7309:1 7315:1 7326:2 7348:1 7357:1 7360:1 7362:1 7403:1 7405:3 7421:1 7429:1 7435:2 7454:1 7460:1 7465:1 7473:1 7478:2 7504:1 7522:1 7529:1 7535:1 7550:1 7561:1 7569:1 7574:6 7578:2 7611:1 7615:1 7621:1 7624:1 7625:2 7632:1 7636:3 7638:1 7640:1 7645:5 7648:1 7651:1 7656:1 7679:1 7680:1 7681:1 7695:1 7701:1 7729:1 7737:3 7747:3 7759:1 7792:2 7796:1 7798:1 7805:1 7812:1 7827:1 7839:1 7846:1 7853:1 7869:1 7919:1 7925:1 7930:1 7933:1 7971:1 7984:1 7985:2 7986:1 7991:1 7999:1 8004:1 8006:3 8010:1 8032:4 8034:1 8036:2 8037:1 8061:1 8064:2 8074:1 8081:1 8093:1 8108:2 8110:1 8117:1 8134:1 8140:1 8152:1 8153:1 8161:1 8168:1 8190:1 8198:1 8218:2 8235:3 8236:6 8250:2 8257:4 8258:1 8262:2 8263:3 8287:2 8288:2 8290:1 8303:37 8306:1 8315:1 8323:1 8326:6 8327:3 8331:2 8367:1 8374:1 8375:1 8384:1 8397:1 8404:3 8405:2 8411:1 8421:1 8424:1 8433:1 8445:1 8455:1 8459:1 8461:1 8480:2 8486:1 8492:1 8514:1 8541:1 8550:1 8553:1 8557:1 8558:3 8588:1 8591:1 8592:1 8593:1 8605:2 8609:2 8663:1 8681:1 8696:1 8722:1 8723:1 8734:1 8737:1 8742:1 8765:1 8768:1 8775:1 8777:1 8778:2 8788:1 8797:1 8815:1 8835:19 8843:1 8844:1 8865:3 8868:2 8870:1 8935:3 8937:1 8938:1 8943:1 8969:1 8974:1 8990:2 8994:2 8996:1 9001:1 9019:1 9030:1 9031:4 9038:2 9044:1 9065:2 9066:1 9069:1 9076:1 9080:1 9088:1 9090:1 9104:1 9109:1 9110:1 9128:1 9129:1 9139:1 9142:1 9154:1 9201:1 9204:1 9205:1 9209:1 9211:1 9216:1 9239:1 9242:1 9255:4 9267:2 9271:3 9291:1 9302:1 9312:1 9319:2 9323:1 9340:1 9345:1 9365:2 9393:1 9404:1 9436:1 9437:1 9449:1 9450:1 9460:1 9485:1 9486:1 9487:1 9501:1 9510:1 9533:1 9536:1 9537:1 9541:3 9577:2 9586:1 9594:2 9606:1 9613:1 9618:1 9643:1 9644:1 9655:1 9661:1 9662:3 9663:1 9668:1 9670:1 9675:1 9687:1 9697:1 9708:4 9719:1 9732:1 9759:1 9768:6 9769:5 9778:1 9784:2 9794:2 9830:1 9844:1 9849:1 9853:2 9872:1 9878:1 9882:1 9884:1 9886:2 9888:2 9898:1 9919:1 9928:1 9950:1 9960:2 9963:1 9969:1 9972:5 9974:1 9996:2 9999:2 10006:1 10021:4 10050:1 10080:1 10089:1 10111:2 10122:2 10128:1 10142:1 10147:1 10156:1 10159:1 10183:1 10197:1 10201:1 10211:1 10220:7 10226:2 10264:3 10284:1 10298:3 10302:1 10330:1 10358:1 10363:1 10365:3 10366:3 10369:2 10408:1 10437:1 10439:1 10447:1 10494:2 10517:1 10530:2 10542:1 10554:1 10557:1 10558:1 10576:1 10587:1 10603:1 10606:1 10611:1 10612:1 10626:1 10630:1 10657:1 10663:1 10665:1 10670:1 10674:5 10690:3 10702:3 10707:2 10717:1 10738:2 10762:1 10764:1 10813:1 10818:2 10835:1 10841:1 10854:1 10861:3 10864:1 10901:1 10907:1 10911:10 10913:1 10914:2 10919:2 10927:1 10948:1 10949:1 10969:1 10973:1 10980:1 11018:1 11040:1 11047:2 11049:1 11094:1 11109:1 11110:1 11112:1 11115:1 11117:1 11121:4 11129:1 11131:1 11136:2 11169:1 11181:4 11185:1 11187:1 11189:1 11194:1 11196:1 11207:1 11210:1 11213:1 11224:4 11244:1 11265:1 11283:1 11291:1 11298:1 11300:1 11303:2 11306:1 11319:2 11330:1 11337:1 11348:2 11360:1 11362:1 11365:1 11373:5 11376:2 11389:1 11390:3 11395:1 11402:1 11419:1 11432:1 11447:2 11462:3 11463:2 11485:1 11486:1 11498:3 11524:1 11541:1 11544:1 11550:3 11562:1 11573:4 11588:1 11597:1 11605:1 11609:1 11624:2 11744:1 11750:1 11767:1 11770:1 11791:1 11792:2 11796:1 11800:1 11801:2 11807:1 11816:1 11817:5 11819:5 11820:1 11827:1 11834:2 11838:2 11842:1 11845:3 11849:1 11851:1 11868:3 11872:1 11901:2 11910:1 11935:1 11937:1 11939:2 11983:1 11986:1 12007:1 12021:1 12023:1 12026:1 12061:1 12094:1 12118:1 12133:1 12137:2 12151:1 12156:1 12179:1 12192:1 12195:1 12202:2 12219:2 12222:1 12227:1 12241:1 12245:2 12247:1 12249:1 12250:2 12260:3 12262:1 12263:1 12264:2 12269:1 12272:1 12278:1 12285:2 12287:1 12293:1 12324:13 12325:1 12356:1 12365:1 12369:3 12383:2 12384:2 12391:1 12418:2 12429:2 12430:1 12441:1 12442:2 12449:2 12450:1 12464:1 12483:1 12497:1 12501:1 12528:1 12544:1 12566:1 12574:3 12575:1 12579:1 12584:1 12587:1 12592:2 12597:2 12599:1 12603:1 12604:1 12611:1 12614:1 12624:1 12636:1 12640:1 12641:1 12643:1 12649:2 12652:3 12655:2 12683:1 12718:1 12741:2 12745:1 12783:1 12799:1 12801:1 12808:1 12818:1 12829:1 12863:5 12872:1 12883:1 12886:1 12887:2 12901:1 12907:1 12918:1 12925:2 12931:1 12955:2 12982:1 12983:1 13003:1 13025:2 13030:1 13043:1 13047:1 13052:1 13059:1 13070:1 13118:1 13125:1 13127:1 13132:5 13133:1 13134:2 13149:1 13155:2 13168:1 13172:1 13174:1 13182:1 13195:1 13235:1 13237:1 13240:1 13264:1 13271:1 13280:1 13291:1 13303:1 13310:1 13327:1 13332:1 13338:1 13427:3 13456:2 13473:1 13493:1 13502:1 13515:1 13531:1 13533:2 13534:1 13552:3 13566:1 13569:1 13582:1 13601:1 13626:1 13654:1 13663:1 13666:1 13669:1 13670:2 13677:1 13718:9 13723:3 13737:2 13762:1 13776:1 13777:1 13785:2 13805:1 13811:1 13817:1 13838:2 13839:1 13847:1 13881:1 13900:1 13913:1 13920:1 13927:1 13939:2 13959:1 13975:1 13978:1 13998:1 14000:1 14010:1 14011:1 14020:1 14026:1 14027:1 14048:1 14058:1 14064:3 14084:1 14110:1 14129:1 14146:1 14176:1 14199:1 14201:1 14204:2 14208:4 14224:1 14230:2 14240:2 14245:1 14262:5 14279:1 14284:2 14307:1 14314:3 14316:1 14352:1 14354:1 14355:1 14356:1 14369:4 14370:1 14381:2 14385:1 14403:1 14408:1 14416:1 14417:1 14429:1 14437:1 14453:11 14462:1 14466:1 14503:2 14504:1 14510:2 14532:1 14550:1 14561:1 14603:3 14630:1 14635:6 14641:1 14658:1 14670:1 14673:1 14695:2 14722:1 14732:1 14734:1 14746:2 14748:1 14749:1 14760:1 14762:1 14769:6 14770:1 14773:1 14775:1 14777:2 14778:1 14782:7 14783:2 14810:1 14811:1 14814:1 14818:1 14846:1 14873:1 14894:1 14906:1 14948:1 14967:3 14968:1 15004:1 15010:1 15013:1 15015:1 15022:1 15025:1 15032:1 15033:1 15049:1 15074:2 15080:1 15094:1 15098:7 15111:1 15121:1 15123:2 15128:1 15163:1 15174:1 15175:1 15185:1 15202:1 15213:1 15215:1 15236:1 15265:1 15266:1 15283:1 15293:1 15300:1 15312:1 15315:1 15353:1 15362:2 15379:4 15395:1 15401:1 15414:1 15434:1 15446:1 15468:1 15488:1 15514:1 15517:3 15518:3 15527:1 15540:1 15541:1 15544:1 15550:2 15552:1 15581:1 15592:2 15625:1 15651:1 15675:2 15683:1 15698:1 15705:1 15707:1 15712:2 15714:1 15725:3 15729:2 15782:1 15786:2 15790:1 15841:1 15842:1 15844:1 15851:1 15870:1 15880:1 15883:1 15922:3 15928:1 15938:1 15941:2 15972:1 15973:1 15978:1 16032:1 16035:2 16078:2 16079:1 16081:1 16100:1 16120:1 16157:1 16160:3 16168:1 16188:1 16189:1 16199:1 16231:1 16302:1 16314:2 16351:1 16406:1 16424:1 16435:1 16442:1 16464:1 16476:1 16479:1 16481:1 16492:1 16511:1 16516:2 16520:1 16545:1 16551:1 16567:2 16585:2 16592:1 16614:1 16627:2 16641:1 16652:1 16687:1 16701:3 16720:1 16731:1 16739:2 16752:1 16782:1 16790:1 16807:1 16810:1 16815:2 16869:1 16883:1 16884:1 16897:2 16909:1 16913:3 16914:1 16918:1 16920:1 16926:1 16940:3 16941:1 16945:1 16948:1 16962:1 16968:1 16980:1 16999:2 17008:2 17052:2 17055:1 17062:1 17079:3 17089:1 17104:1 17105:3 17120:1 17135:2 17151:1 17157:1 17200:1 17230:1 17234:1 17239:10 17256:1 17260:3 17285:2 17327:1 17344:1 17349:2 17360:2 17363:1 17380:2 17383:1 17392:1 17401:1 17428:1 17435:1 17444:1 17445:1 17454:2 17482:1 17486:1 17504:1 17511:1 17516:3 17518:2 17519:2 17520:5 17521:1 17527:2 17529:1 17531:1 17532:3 17537:1 17538:1 17540:1 17546:1 17555:1 17592:1 17598:1 17627:1 17652:1 17655:1 17656:1 17692:1 17699:1 17708:2 17709:1 17729:1 17762:1 17774:1 17808:1 17827:1 17868:1 17874:1 17884:2 17899:1 17902:2 17915:1 17916:1 17925:1 17930:5 17937:1 17941:2 17954:1 17965:1 17966:1 17972:2 17975:1 17980:2 17985:1 17994:3 17998:2 18008:1 18016:1 18071:8 18073:1 18095:1 18096:3 18102:1 18171:1 18172:1 18183:2 18191:1 18201:2 18211:1 18212:1 18225:1 18233:1 18236:2 18286:2 18307:5 18308:1 18322:1 18340:1 18341:1 18344:1 18361:1 18423:2 18424:2 18425:1 18438:1 18440:1 18443:1 18453:1 18491:1 18494:1 18517:1 18530:2 18533:1 18548:1 18565:1 18577:2 18585:1 18597:1 18617:1 18662:1 18670:1 18731:1 18734:1 18755:1 18760:1 18775:2 18779:1 18791:2 18796:1 18801:1 18810:3 18814:2 18815:2 18819:2 18825:5 18852:1 18872:1 18877:1 18880:1 18885:1 18887:1 18892:1 18898:1 18909:1 18910:1 18962:1 18982:1 18983:1 19004:3 19009:1 19023:1 19033:2 19047:1 19050:1 19054:1 19070:1 19071:1 19101:1 19102:1 19103:1 19123:1 19130:1 19134:2 19166:1 19171:1 19207:1 19226:2 19236:1 19246:1 19267:1 19299:1 19337:1 19376:1 19378:1 19390:1 19391:1 19411:2 19450:1 19514:2 19515:1 19525:1 19538:1 19543:1 19553:1 19575:1 19593:1 19619:1 19631:1 19651:1 19656:2 19670:1 19719:8 19750:1 19780:1 19806:1 19826:12 19832:1 19833:2 19834:1 19846:5 19847:1 19863:1 19872:1 19876:2 19897:1 19915:1 19948:4 19971:2 19988:1 19993:1 20016:1 20020:1 20023:2 20041:2 20047:1 20053:1966 20064:1 20070:1 20085:1 20086:1 20126:1 20132:1 20134:1 20160:2 20217:1 20218:1 20229:1 20241:1 20262:1 20264:1 20267:1 20271:2 20274:3 20275:2 20294:1 20298:1 20308:1 20320:1 20338:1 20350:1 20373:1 20375:1 20420:1 20422:1 20425:2 20431:1 20469:1 20482:1 20490:3 20528:2 20545:1 20546:1 20557:2 20558:1 20567:1 20587:1 20605:2 20618:1 20642:1 20647:2 20651:1 20660:1 20669:1 20679:1 20681:1 20701:2 20702:2 20715:2 20721:1 20724:1 20732:2 20757:2 20759:1 20768:1 20774:1 20778:1 20781:2 20787:4 20792:1 20815:1 20833:1 20838:2 20839:1 20848:1 20864:3 20871:1 20882:1 20884:1 20917:1 20926:4 20933:1 20935:2 20943:2 20956:4 20974:1 20979:1 20999:1 21005:2 21013:2 21014:1 21022:1 21061:1 21062:2 21065:1 21075:1 21089:1 21095:1 21098:2 21105:1 21106:1 21109:1 21148:1 21149:1 21150:1 21152:1 21157:1 21168:1 21202:1 21219:1 21220:2 21237:1 21239:2 21241:1 21242:1 21249:1 21250:1 21254:1 21277:1 21281:1 21283:1 21288:1 21295:1 21302:1 21313:1 21320:1 21322:1 21330:1 21331:1 21341:1 21342:1 21371:1 21376:1 21379:4 21385:1 21387:3 21446:1 21451:1 21463:1 21466:1 21475:1 21478:1 21482:2 21483:1 21486:2 21501:1 21503:1 21511:2 21518:1 21519:2 21523:2 21524:1 21544:4 21555:2 21571:1 21573:1 21583:1 21587:1 21590:1 21591:4 21613:1 21614:1 21627:1 21628:1 21633:1 21652:1 21654:2 21673:1 21676:1 21678:1 21699:1 21711:3 21712:13 21713:2 21719:1 21727:3 21733:1 21756:1 21789:1 21798:1 21813:1 21818:1 21822:1 21828:1 21853:1 21860:1 21861:1 21881:1 21887:1 21897:1 21940:4 21960:2 21982:2 21990:1 22001:2 22015:1 22018:1 22032:2 22066:6 22069:1 22078:1 22085:1 22119:1 22120:1 22140:1 22174:1 22185:2 22202:3 22221:1 22225:1 22228:1 22231:1 22235:1 22236:1 22244:1 22247:2 22282:2 22288:3 22298:2 22300:2 22314:2 22319:1 22323:1 22325:1 22326:1 22337:2 22370:4 22390:2 22398:1 22417:2 22421:1 22432:1 22452:2 22466:1 22473:1 22478:2 22488:4 22492:1 22503:1 22508:2 22519:3 22546:2 22554:1 22567:1 22590:1 22591:1 22592:1 22602:1 22615:1 22621:2 22624:2 22628:1 22632:1 22635:1 22643:2 22665:1 22671:2 22685:2 22699:2 22715:1 22716:1 22723:1 22724:1 22726:3 22741:1 22750:2 22758:1 22760:1 22768:1 22769:1 22773:2 22774:1 22779:1 22790:1 22793:1 22811:1 22815:1 22838:1 22846:1 22855:1 22857:1 22862:2 22866:2 22879:1 22893:1 22939:1 23014:2 23017:1 23026:2 23027:2 23031:1 23032:1 23038:1 23039:1 23043:1 23056:1 23063:2 23070:3 23071:1 23081:1 23104:1 23121:1 23131:1 23137:1 23158:1 23159:1 23181:1 23183:1 23184:1 23185:1 23190:1 23194:1 23195:2 23199:1 23200:1 23210:1 23217:1 23222:1 23228:2 23229:1 23236:2 23238:1 23249:1 23251:2 23262:1 23271:8 23281:1 23282:2 23288:2 23298:1 23313:1 23326:1 23337:1 23345:1 23347:1 23349:1 23352:1 23355:1 23377:1 23410:2 23418:1 23426:2 23429:1 23434:1 23437:3 23439:1 23442:1 23452:2 23466:1 23468:1 23475:1 23497:1 23498:1 23500:2 23502:3 23503:2 23537:1 23540:1 23576:1 23605:3 23613:1 23614:3 23616:2 23617:2 23619:1 23620:1 23625:1 23628:1 23631:1 23632:2 23645:4 23656:1 23659:1 23674:1 23682:1 23693:2 23697:2 23700:2 23721:1 23749:1 23778:2 23783:2 23796:1 23811:1 23823:1 23850:1 23853:1 23858:1 23859:1 23862:1 23867:1 23887:1 23897:1 23900:1 23912:1 23915:1 23922:4 23929:1 23939:1 23940:3 23943:3 23946:1 23952:1 23969:1 23982:1 23990:2 23993:1 23998:1 24001:1 24002:4 24010:2 24016:1 24026:1 24030:6 24037:1 24044:1 24046:1 24053:1 24073:1 24074:1 24108:7 24111:1 24126:1 24150:1 24162:1 24172:3 24175:1 24178:1 24184:1 24197:1 24221:1 24222:1 24248:1 24250:2 24290:1 24291:4 24294:1 24305:3 24309:3 24319:1 24325:1 24329:1 24346:1 24349:3 24361:1 24370:1 24371:2 24376:3 24386:1 24396:1 24408:1 24426:1 24432:1 24447:1 24451:1 24479:1 24495:1 24499:1 24500:1 24502:1 24517:1 24531:2 24549:5 24550:2 24558:1 24568:1 24574:1 24578:2 24585:3 24598:3 24608:2 24624:1 24661:1 24671:1 24681:1 24682:1 24685:2 24688:1 24706:1 24708:1 24742:1 24746:1 24750:1 24752:1 24762:1 24774:1 24776:1 24789:1 24795:2 24799:1 24806:2 24808:1 24814:1 24851:3 24883:3 24899:1 24969:1 24996:3 25000:2 25008:5 25018:2 25027:1 25033:1 25036:3 25039:1 25051:2 25054:1 25056:1 25066:1 25080:4 25122:1 25138:1 25160:1 25172:1 25184:1 25196:1 25199:2 25230:1 25232:1 25240:1 25246:1 25259:2 25268:1 25273:2 25283:1 25286:1 25298:1 25315:1 25318:2 25320:3 25329:1 25331:1 25343:1 25366:3 25368:2 25371:2 25376:1 25388:1 25391:1 25396:1 25447:1 25450:4 25453:1 25458:1 25462:1 25471:1 25472:2 25474:1 25477:1 25478:1 25479:1 25481:1 25511:1 25535:1 25537:1 25549:1 25618:2 25633:1 25652:2 25715:1 25718:2 25727:1 25729:1 25739:1 25754:1 25776:1 25786:1 25793:1 25803:1 25840:1 25861:1 25885:1 25898:1 25900:2 25909:1 25937:2 25940:1 25963:2 25977:3 25989:1 26010:1 26022:7 26041:1 26048:1 26055:2 26075:1 26076:1 26081:1 26086:2 26095:1 26097:1 26098:1 26103:1 26111:1 26135:3 26157:2 26161:1 26167:1 26168:1 26214:1 26250:1 26253:1 26288:1 26291:1 26292:1 26300:1 26304:3 26305:1 26309:1 26313:1 26317:2 26318:1 26319:1 26320:1 26356:5 26365:1 26373:1 26374:1 26376:1 26380:1 26391:1 26395:1 26397:1 26399:1 26420:8 26425:3 26426:1 26445:1 26447:2 26456:1 26457:1 26473:1 26477:1 26479:1 26483:1 26488:3 26495:2 26512:1 26530:1 26536:1 26616:1 26648:1 26651:1 26659:1 26668:1 26669:1 26674:2 26683:2 26687:1 26690:1 26696:2 26698:2 26703:1 26734:1 26758:1 26766:1 26776:1 26787:1 26794:1 26803:2 26828:2 26833:1 26836:1 26847:1 26857:2 26862:1 26875:2 26880:1 26895:1 26901:1 26929:11 26930:2 26942:1 26964:1 26973:1 26974:1 26986:1 27012:1 27019:2 27024:1 27029:1 27048:2 27051:1 27059:1 27060:1 27078:1 27083:1 27088:1 27092:1 27094:1 27112:1 27123:1 27164:1 27192:9 27193:1 27218:1 27230:1 27233:2 27253:1 27265:1 27272:1 27290:1 27298:1 27304:1 27312:5 27315:1 27338:1 27340:2 27341:1 27368:1 27375:1 27381:2 27387:1 27393:1 27428:1 27443:1 27448:2 27450:1 27465:2 27484:1 27486:1 27498:1 27514:1 27577:1 27579:1 27590:1 27603:1 27606:1 27619:1 27622:1 27627:2 27633:3 27636:1 27643:1 27645:1 27646:1 27657:1 27662:1 27669:1 27673:1 27701:3 27711:1 27713:1 27716:1 27729:4 27746:1 27748:2 27750:1 27765:1 27784:1 27786:1 27793:1 27796:1 27820:1 27854:1 27873:2 27889:1 27927:1 27933:1 27947:1 27970:1 27977:1 28000:1 28038:2 28048:1 28049:1 28064:1 28071:1 28072:1 28076:1 28106:1 28131:1 28142:3 28153:1 28186:1 28191:1 28200:2 28202:1 28210:2 28227:2 28228:12 28239:1 28265:1 28268:1 28282:1 28291:2 28304:1 28305:1 28317:1 28322:1 28326:1 28328:1 28337:1 28343:1 28356:3 28360:3 28368:3 28371:2 28373:4 28375:1 28410:1 28463:1 28481:1 28497:1 28501:1 28502:1 28515:1 28531:2 28551:2 28564:1 28568:1 28569:1 28572:1 28573:2 28594:6 28595:1 28596:1 28605:1 28627:1 28630:1 28637:1 28667:1 28671:1 28691:1 28699:1 28727:1 28744:1 28768:1 28777:1 28788:2 28814:1 28816:2 28817:1 28846:1 28851:1 28857:1 28860:1 28863:5 28878:1 28883:1 28884:1 28921:1 28925:1 28931:1 28932:1 28945:1 28949:1 28954:1 28963:1 28986:2 28988:2 28998:3 29014:1 29034:1 29043:1 29045:1 29050:2 29078:1 29093:1 29095:1 29132:1 29144:2 29158:1 29163:3 29166:1 29171:1 29172:1 29182:1 29187:1 29191:2 29210:1 29227:2 29238:2 29241:1 29244:1 29247:1 29259:2 29260:1 29281:1 29295:1 29312:1 29314:1 29318:2 29322:1 29354:1 29373:5 29375:1 29377:2 29401:1 29404:1 29406:1 29438:1 29446:2 29453:1 29460:1 29465:1 29473:2 29482:1 29484:1 29494:2 29501:1 29508:1 29523:1 29524:1 29529:1 29530:1 29531:1 29536:1 29543:2 29556:2 29566:2 29571:1 29574:1 29579:1 29580:1 29613:1 29615:1 29630:1 29641:2 29663:1 29688:1 29766:2 29798:1 29804:1 29805:2 29831:2 29849:1 29855:1 29862:3 29879:1 29883:1 29891:1 29921:2 29952:1 29969:1 30009:1 30019:2 30034:2 30039:1 30063:1 30082:1 30109:1 30110:2 30114:1 30133:1 30134:3 30138:1 30146:2 30150:1 30151:1 30152:2 30169:1 30171:1 30180:1 30181:5 30203:1 30205:1 30220:1 30226:2 30228:2 30229:1 30231:1 30235:1 30238:5 30244:1 30251:1 30252:1 30261:3 30263:1 30275:3 30279:1 30283:1 30309:1 30316:1 30332:1 30336:1 30356:1 30362:1 30377:1 30392:2 30397:4 30406:4 30411:1 30438:4 30453:1 30457:1 30462:1 30470:1 30471:1 30484:1 30491:1 30493:1 30525:1 30527:2 30571:1 30574:1 30583:1 30604:1 30614:1 30629:1 30634:1 30635:1 30645:1 30646:2 30651:1 30656:1 30670:1 30673:3 30711:1 30717:6 30729:1 30730:1 30735:2 30750:1 30786:4 30865:1 30871:1 30882:1 30916:1 30926:1 31028:1 31043:1 31046:1 31047:1 31048:1 31053:2 31055:3 31068:1 31072:1 31074:1 31082:1 31086:1 31092:1 31103:1 31136:1 31152:1 31184:1 31194:3 31204:2 31233:2 31239:2 31257:1 31284:1 31296:1 31301:1 31308:2 31309:1 31313:2 31343:1 31345:1 31348:3 31351:2 31377:1 31382:1 31405:1 31413:1 31422:1 31431:1 31443:1 31473:1 31478:3 31484:1 31487:1 31505:1 31516:2 31519:1 31542:1 31577:2 31580:2 31599:1 31600:1 31606:1 31608:3 31615:3 31617:3 31618:1 31623:1 31632:1 31677:5 31682:1 1 13:1 40:1 46:1 62:1 65:1 72:1 106:1 141:1 155:1 156:3 161:1 167:2 173:1 188:1 190:3 207:5 226:1 231:1 244:1 263:1 274:1 278:7 287:1 297:3 307:1 328:2 354:1 371:3 373:3 378:3 387:3 391:1 397:2 416:2 430:1 438:1 454:5 458:3 471:1 490:1 526:1 527:1 561:2 588:1 596:1 600:2 614:1 620:1 634:3 645:1 659:1 665:1 667:2 674:1 678:1 693:2 765:1 767:1 783:1 815:1 817:1 826:1 829:2 854:1 856:2 863:1 871:1 900:5 906:1 911:1 917:1 918:4 927:1 942:10 943:4 952:3 975:2 984:1 992:1 993:4 995:2 998:6 1000:1 1001:1 1004:2 1018:2 1033:1 1042:3 1044:4 1055:1 1095:2 1104:1 1121:1 1142:1 1159:1 1177:1 1178:1 1210:2 1214:1 1217:1 1275:3 1277:2 1283:1 1285:1 1295:2 1298:1 1299:1 1312:1 1315:1 1328:1 1332:2 1351:1 1356:2 1380:1 1386:2 1389:1 1408:1 1417:1 1429:1 1432:1 1433:1 1451:1 1466:1 1468:1 1470:1 1485:1 1500:1 1530:1 1540:1 1541:2 1564:1 1565:2 1584:1 1587:1 1595:2 1602:1 1613:1 1629:1 1632:2 1647:1 1674:1 1686:4 1694:7 1696:2 1705:1 1713:1 1743:2 1751:1 1754:1 1763:1 1767:1 1783:1 1786:1 1791:2 1799:1 1804:2 1813:1 1818:1 1820:1 1825:1 1835:1 1839:2 1850:1 1854:1 1863:1 1867:1 1871:1 1881:1 1882:1 1886:2 1897:1 1905:1 1920:2 1923:1 1944:1 1945:5 1950:1 1954:1 1965:1 1971:1 1974:2 1978:1 1979:2 1993:2 1994:6 2027:4 2030:2 2043:1 2055:1 2060:2 2065:4 2070:1 2074:1 2103:1 2113:1 2121:2 2127:2 2128:1 2129:1 2143:2 2192:1 2198:5 2201:1 2207:1 2210:1 2214:1 2215:2 2220:1 2222:1 2226:1 2230:2 2236:1 2243:1 2247:1 2255:1 2272:1 2283:1 2296:2 2300:1 2301:1 2306:2 2308:1 2323:1 2349:1 2354:9 2361:1 2370:1 2376:1 2379:1 2393:1 2423:2 2436:3 2439:1 2450:1 2458:1 2464:2 2477:2 2478:2 2482:2 2485:4 2487:1 2491:2 2494:2 2495:2 2497:1 2499:1 2501:1 2502:4 2508:4 2509:3 2514:5 2515:6 2517:1 2528:1 2562:1 2565:1 2568:1 2571:3 2576:1 2595:1 2603:1 2617:1 2618:1 2623:1 2631:1 2637:1 2639:1 2657:1 2695:1 2706:1 2718:1 2722:1 2739:3 2751:1 2752:1 2765:1 2771:1 2776:1 2779:1 2800:3 2803:2 2806:1 2808:5 2812:1 2813:1 2814:1 2824:1 2827:1 2835:1 2849:4 2851:1 2857:1 2873:2 2881:1 2884:1 2885:1 2897:6 2906:1 2911:1 2913:2 2916:5 2924:4 2928:1 2937:2 2939:1 2945:2 2947:1 2950:3 2951:2 2967:2 2981:1 2982:2 2987:3 2991:1 3029:1 3034:1 3035:2 3036:2 3041:1 3050:3 3056:1 3060:4 3065:2 3069:1 3089:1 3096:1 3127:1 3146:3 3152:1 3157:1 3159:13 3178:2 3180:1 3185:1 3186:1 3190:1 3199:2 3203:2 3224:14 3225:1 3246:2 3249:3 3269:1 3280:1 3317:1 3325:1 3332:1 3338:1 3351:1 3352:5 3371:3 3377:1 3383:1 3410:1 3426:1 3438:1 3440:1 3442:1 3447:1 3457:2 3469:1 3490:2 3510:3 3524:1 3534:1 3550:1 3551:1 3579:1 3580:2 3581:1 3590:1 3608:6 3626:1 3643:1 3663:1 3695:1 3706:2 3749:1 3751:1 3753:1 3774:1 3781:1 3783:1 3784:1 3788:1 3799:1 3804:1 3829:1 3844:1 3851:1 3861:1 3868:2 3873:1 3897:1 3898:12 3900:1 3909:1 3912:2 3914:2 3915:2 3937:1 3942:1 3943:1 3947:1 3998:1 4000:1 4001:1 4008:1 4013:3 4021:1 4038:1 4062:1 4096:1 4099:1 4101:1 4106:2 4110:1 4113:1 4117:1 4129:1 4149:1 4152:1 4156:2 4163:1 4167:1 4179:2 4181:1 4186:1 4195:1 4200:2 4215:1 4220:1 4221:1 4226:4 4229:1 4236:2 4241:2 4242:1 4253:2 4272:2 4289:1 4293:2 4313:1 4315:2 4320:1 4340:1 4348:6 4349:3 4356:2 4393:1 4395:2 4398:1 4403:1 4422:1 4426:2 4432:1 4448:1 4464:2 4470:1 4476:1 4500:2 4526:2 4537:1 4547:3 4551:1 4552:1 4557:2 4563:1 4567:2 4581:1 4587:1 4594:1 4610:1 4624:1 4629:1 4647:1 4649:1 4669:7 4691:3 4696:1 4708:1 4712:1 4717:1 4720:1 4732:2 4749:2 4759:1 4779:1 4785:1 4787:2 4808:3 4834:1 4843:1 4844:1 4850:1 4869:2 4893:1 4899:1 4902:1 4904:1 4910:1 4911:3 4913:1 4922:1 4938:1 4959:1 4970:1 4983:4 5001:1 5006:1 5034:4 5044:2 5056:1 5062:3 5066:1 5085:4 5105:2 5131:1 5135:2 5138:3 5154:3 5167:1 5174:1 5189:2 5200:1 5216:1 5249:1 5267:11 5270:1 5279:1 5282:1 5283:1 5297:1 5316:1 5329:1 5339:1 5350:1 5404:2 5429:1 5430:1 5431:4 5433:5 5434:2 5436:1 5440:1 5441:1 5442:1 5445:1 5446:1 5449:5 5450:4 5453:1 5454:2 5456:6 5464:1 5465:3 5469:1 5517:1 5532:1 5548:2 5557:1 5575:1 5580:1 5592:1 5614:1 5625:1 5638:1 5658:1 5668:1 5704:1 5720:1 5731:2 5765:1 5771:1 5801:2 5807:2 5813:1 5850:1 5875:3 5889:1 5890:1 5915:1 5917:1 5937:1 5943:1 5953:2 5959:1 5972:1 5980:1 5988:1 5994:1 6017:1 6029:1 6057:1 6060:1 6100:2 6110:1 6115:2 6118:1 6133:5 6134:1 6136:2 6139:1 6143:1 6144:2 6156:1 6157:1 6181:1 6188:3 6200:2 6202:1 6204:1 6219:6 6223:1 6224:1 6237:2 6308:1 6320:1 6327:1 6330:1 6345:1 6349:1 6351:1 6352:1 6361:2 6387:1 6400:1 6427:1 6433:2 6444:2 6466:2 6468:1 6488:5 6494:1 6495:1 6499:1 6502:2 6512:1 6514:1 6516:1 6556:1 6560:1 6561:1 6569:1 6571:1 6573:1 6579:1 6581:1 6582:1 6586:12 6600:1 6603:1 6624:3 6631:1 6655:1 6668:1 6684:3 6693:1 6706:1 6709:6 6713:1 6720:1 6769:1 6775:1 6799:1 6806:1 6808:1 6809:1 6814:2 6816:3 6822:1 6823:1 6825:2 6832:2 6834:3 6835:2 6884:1 6931:1 6949:1 6990:1 6993:4 6996:2 7008:1 7040:1 7052:1 7057:1 7061:1 7071:1 7079:1 7097:1 7106:1 7131:1 7145:2 7153:2 7167:1 7174:1 7175:1 7182:1 7227:1 7241:1 7253:1 7256:1 7265:1 7284:7 7292:2 7295:2 7298:1 7309:1 7315:1 7326:2 7348:1 7357:1 7360:1 7362:1 7403:1 7405:3 7421:2 7429:1 7435:2 7454:1 7460:1 7465:1 7473:1 7478:2 7504:1 7522:1 7529:1 7535:1 7550:1 7561:1 7569:1 7574:6 7578:2 7598:1 7611:1 7615:1 7621:1 7624:2 7625:2 7632:1 7636:3 7638:1 7640:1 7645:5 7648:1 7651:1 7656:1 7679:1 7680:1 7681:1 7684:1 7695:1 7701:1 7729:1 7737:4 7747:3 7759:1 7771:1 7792:2 7796:1 7798:1 7805:1 7812:1 7827:1 7839:1 7846:1 7853:1 7869:1 7919:1 7925:1 7930:1 7933:1 7971:1 7984:1 7985:2 7986:2 7991:2 7999:1 8004:1 8006:3 8010:1 8032:4 8034:1 8036:2 8037:1 8061:1 8064:3 8074:1 8081:1 8093:1 8108:2 8110:1 8117:1 8134:1 8140:1 8152:1 8153:1 8161:1 8168:1 8190:1 8198:1 8218:3 8235:3 8236:6 8250:2 8257:4 8258:1 8262:2 8263:3 8278:1 8287:4 8288:2 8290:1 8303:38 8306:2 8315:1 8323:1 8326:6 8327:4 8331:2 8367:1 8374:1 8375:1 8384:1 8397:1 8404:3 8405:2 8411:1 8421:1 8424:1 8433:2 8445:1 8455:1 8459:1 8461:1 8480:2 8486:1 8492:1 8514:1 8541:1 8550:1 8553:1 8557:1 8558:3 8588:1 8591:1 8592:1 8593:1 8605:2 8609:2 8663:1 8681:1 8696:1 8722:1 8723:1 8734:1 8737:1 8742:1 8765:1 8768:1 8775:1 8777:1 8778:2 8788:1 8797:1 8815:1 8816:1 8835:20 8843:1 8844:1 8865:3 8868:2 8870:1 8935:3 8937:1 8938:1 8943:1 8969:1 8974:1 8990:2 8994:2 8996:1 9001:1 9019:1 9030:1 9031:4 9038:3 9044:1 9065:2 9066:1 9069:1 9076:1 9080:1 9088:1 9090:1 9104:1 9109:1 9110:1 9128:1 9129:1 9139:2 9141:1 9142:1 9154:1 9201:1 9204:1 9205:1 9209:1 9211:1 9216:1 9239:1 9242:1 9255:5 9267:2 9271:3 9291:1 9302:1 9312:1 9319:2 9323:1 9324:1 9340:1 9345:1 9365:2 9393:1 9404:1 9436:1 9437:1 9449:1 9450:1 9460:1 9485:1 9486:1 9487:1 9501:1 9510:1 9533:1 9536:1 9537:1 9541:3 9577:2 9586:1 9594:2 9606:1 9613:1 9618:1 9643:1 9644:1 9655:1 9661:1 9662:3 9663:1 9668:1 9670:1 9675:1 9687:1 9697:1 9708:4 9719:1 9732:1 9740:1 9759:1 9768:7 9769:5 9778:1 9784:2 9794:2 9830:1 9844:1 9849:1 9853:2 9872:1 9878:1 9882:2 9884:2 9886:3 9888:2 9898:1 9919:1 9928:1 9950:1 9960:2 9963:1 9969:1 9972:5 9974:1 9996:3 9999:2 10006:1 10021:4 10050:1 10080:1 10089:1 10111:2 10122:3 10128:1 10142:1 10147:1 10156:1 10159:1 10183:1 10197:1 10201:1 10211:1 10220:7 10226:2 10264:3 10283:1 10284:1 10298:3 10302:1 10330:1 10358:1 10363:1 10365:3 10366:3 10369:2 10374:1 10399:1 10408:1 10437:1 10439:1 10447:1 10494:2 10517:1 10530:2 10542:1 10554:1 10557:1 10558:1 10576:1 10587:1 10603:1 10606:1 10611:1 10612:1 10626:1 10630:1 10657:1 10663:1 10665:1 10670:1 10674:5 10690:3 10702:3 10707:2 10717:1 10738:2 10762:2 10764:1 10813:1 10818:2 10835:1 10841:1 10854:1 10861:3 10864:1 10901:1 10907:1 10911:12 10913:1 10914:2 10919:2 10927:1 10948:1 10949:1 10969:1 10973:1 10980:1 11018:1 11040:1 11047:2 11049:1 11094:1 11109:1 11110:1 11112:1 11115:1 11117:1 11121:4 11129:1 11131:1 11136:2 11169:1 11181:4 11185:1 11187:1 11189:1 11194:1 11196:2 11207:1 11210:1 11213:1 11224:4 11244:1 11265:1 11283:1 11284:1 11291:1 11298:1 11300:1 11303:2 11306:1 11319:2 11330:1 11337:1 11348:2 11360:1 11362:1 11365:1 11373:5 11376:2 11389:1 11390:3 11395:1 11402:1 11417:1 11419:1 11432:1 11447:2 11462:4 11463:2 11483:1 11485:1 11486:1 11498:3 11524:1 11541:1 11544:1 11550:3 11562:1 11573:5 11588:1 11597:1 11605:1 11609:1 11624:2 11744:1 11750:1 11767:1 11770:1 11791:1 11792:2 11796:2 11800:1 11801:2 11807:1 11811:1 11815:1 11816:1 11817:5 11819:5 11820:1 11827:1 11834:2 11838:2 11842:1 11845:3 11849:1 11851:1 11868:3 11872:1 11901:2 11910:1 11935:1 11937:1 11939:2 11983:1 11986:1 12007:1 12021:1 12023:1 12026:1 12061:1 12094:1 12102:1 12118:1 12133:1 12137:2 12151:1 12156:1 12179:1 12192:1 12195:1 12202:2 12219:2 12222:2 12227:1 12241:1 12245:2 12247:1 12249:1 12250:2 12260:3 12262:1 12263:1 12264:2 12269:1 12272:1 12278:1 12285:3 12287:2 12293:1 12324:13 12325:1 12356:1 12365:1 12369:3 12383:2 12384:2 12391:1 12418:2 12429:2 12430:1 12441:1 12442:2 12449:2 12450:1 12464:1 12483:1 12497:1 12501:1 12528:1 12544:1 12566:1 12574:3 12575:1 12579:1 12584:1 12587:1 12592:2 12597:2 12599:1 12603:1 12604:1 12611:1 12614:1 12624:1 12636:1 12640:1 12641:1 12643:1 12649:2 12652:3 12655:2 12683:1 12718:1 12741:2 12745:1 12783:1 12799:1 12801:1 12808:1 12818:1 12829:1 12856:1 12863:5 12872:1 12883:2 12886:1 12887:2 12901:1 12907:1 12918:1 12925:2 12931:1 12955:2 12982:1 12983:1 13003:1 13025:2 13030:1 13043:1 13047:1 13052:1 13059:2 13070:1 13094:1 13118:1 13125:1 13127:1 13132:5 13133:2 13134:2 13149:1 13155:2 13168:1 13172:1 13174:1 13182:1 13195:1 13235:1 13237:2 13240:1 13264:1 13271:1 13280:1 13291:1 13303:1 13310:1 13327:1 13332:1 13338:1 13427:3 13456:2 13473:1 13493:1 13502:1 13515:1 13531:1 13533:2 13534:1 13552:3 13566:1 13569:1 13582:1 13601:1 13626:1 13654:1 13663:1 13666:1 13669:1 13670:2 13677:1 13718:10 13723:3 13737:2 13762:1 13776:1 13777:2 13785:2 13805:1 13811:1 13817:1 13838:2 13839:1 13847:1 13881:1 13900:1 13913:1 13920:1 13927:1 13939:2 13959:1 13975:1 13978:1 13998:1 14000:1 14010:2 14011:1 14020:1 14026:1 14027:1 14048:1 14058:1 14064:3 14084:1 14110:1 14129:1 14146:1 14176:1 14199:1 14201:1 14204:2 14208:4 14224:1 14230:2 14240:2 14245:1 14262:6 14279:1 14284:2 14307:1 14314:4 14316:1 14352:1 14354:1 14355:1 14356:1 14369:5 14370:1 14381:2 14385:1 14403:1 14408:1 14416:1 14417:1 14429:1 14437:1 14438:1 14453:12 14462:1 14466:1 14503:2 14504:1 14510:2 14525:1 14532:1 14550:1 14561:1 14603:3 14630:1 14635:6 14641:1 14658:1 14670:1 14673:1 14695:2 14722:1 14732:1 14734:1 14746:2 14748:1 14749:1 14760:1 14762:1 14769:6 14770:1 14773:1 14775:1 14777:2 14778:1 14782:7 14783:2 14810:1 14811:1 14814:1 14818:1 14846:1 14873:1 14894:1 14906:1 14948:1 14967:3 14968:1 15004:1 15010:1 15013:1 15015:1 15022:1 15025:1 15032:1 15033:1 15046:1 15049:1 15074:2 15079:1 15080:1 15094:1 15098:7 15111:1 15121:1 15123:2 15128:1 15163:1 15174:1 15175:1 15185:1 15191:1 15202:1 15210:1 15213:1 15215:1 15236:1 15265:1 15266:1 15283:1 15293:1 15300:1 15312:1 15315:1 15353:1 15362:2 15379:4 15395:1 15401:1 15414:1 15434:1 15446:1 15468:1 15488:1 15514:1 15517:3 15518:3 15527:1 15540:1 15541:1 15544:1 15550:2 15552:1 15573:1 15581:1 15592:2 15625:1 15651:1 15675:2 15680:1 15683:1 15698:1 15705:1 15707:1 15712:2 15714:1 15725:3 15729:2 15782:1 15786:2 15790:1 15841:1 15842:2 15844:1 15851:1 15870:1 15880:1 15883:1 15922:3 15928:1 15938:1 15941:2 15972:1 15973:1 15978:1 16032:1 16035:2 16078:2 16079:1 16081:1 16100:1 16120:1 16157:1 16160:3 16168:1 16188:1 16189:1 16199:1 16231:1 16269:1 16302:1 16314:2 16351:1 16406:1 16424:1 16435:1 16442:1 16464:1 16476:1 16479:1 16481:2 16492:1 16511:2 16516:2 16520:1 16545:1 16551:1 16567:2 16585:2 16592:1 16614:1 16627:2 16641:1 16652:1 16687:1 16701:3 16720:1 16731:1 16739:2 16752:1 16777:1 16782:1 16790:1 16807:1 16810:1 16815:2 16869:1 16883:1 16884:1 16897:2 16909:1 16913:3 16914:1 16918:1 16920:1 16926:1 16940:3 16941:1 16945:1 16948:1 16962:1 16968:1 16980:1 16999:2 17008:2 17052:2 17055:1 17062:1 17079:3 17089:1 17104:1 17105:3 17120:1 17135:2 17151:1 17157:1 17200:1 17230:1 17234:1 17239:11 17256:1 17260:3 17262:1 17285:2 17327:1 17344:1 17349:2 17360:2 17363:1 17380:2 17383:1 17392:1 17401:1 17428:1 17435:1 17442:1 17444:1 17445:1 17454:2 17456:1 17482:1 17486:1 17504:1 17511:1 17516:4 17518:2 17519:2 17520:5 17521:1 17523:1 17527:2 17529:1 17531:2 17532:3 17537:1 17538:1 17540:1 17546:1 17555:1 17592:1 17598:1 17607:1 17627:1 17652:1 17655:1 17656:1 17692:1 17699:1 17708:2 17709:1 17729:1 17762:1 17774:1 17808:1 17827:1 17868:1 17872:1 17874:1 17884:2 17899:1 17902:2 17915:2 17916:1 17925:1 17930:5 17937:1 17941:2 17954:1 17965:1 17966:1 17972:2 17975:1 17980:2 17985:1 17994:3 17998:2 18008:2 18016:1 18026:1 18071:9 18073:1 18095:1 18096:3 18102:1 18171:1 18172:1 18183:2 18191:1 18201:3 18211:1 18212:1 18225:1 18233:1 18236:2 18286:2 18307:5 18308:1 18322:1 18340:1 18341:1 18344:1 18361:1 18423:2 18424:3 18425:1 18438:1 18440:1 18443:1 18453:1 18491:1 18494:1 18517:1 18530:2 18533:1 18548:1 18565:1 18577:2 18585:1 18587:1 18597:1 18617:1 18662:1 18670:1 18712:1 18731:1 18734:1 18755:1 18760:1 18775:2 18779:1 18791:3 18796:1 18801:1 18810:3 18814:2 18815:2 18819:2 18825:6 18852:1 18872:1 18877:1 18880:1 18885:1 18887:1 18892:1 18898:1 18909:1 18910:1 18962:1 18982:1 18983:1 19004:3 19009:1 19023:1 19033:2 19047:1 19050:1 19054:1 19070:1 19071:1 19101:1 19102:1 19103:1 19123:1 19130:1 19134:2 19166:1 19171:1 19202:1 19207:1 19226:2 19233:1 19236:1 19243:1 19246:1 19267:1 19299:1 19337:1 19376:1 19378:1 19390:1 19391:1 19411:2 19450:1 19514:2 19515:1 19525:1 19538:1 19543:1 19553:1 19575:1 19593:1 19600:1 19619:1 19631:1 19651:1 19656:2 19670:1 19719:9 19750:1 19780:1 19806:1 19826:13 19832:1 19833:2 19834:1 19846:5 19847:1 19863:1 19872:1 19876:2 19897:1 19915:1 19948:4 19971:2 19979:1 19988:1 19990:1 19993:1 20016:1 20020:1 20023:2 20041:2 20047:1 20053:2049 20064:1 20070:1 20085:1 20086:1 20126:1 20132:1 20134:1 20160:2 20217:1 20218:1 20229:1 20241:1 20262:1 20264:1 20267:1 20271:2 20274:3 20275:2 20292:1 20294:1 20298:1 20308:1 20320:1 20338:1 20350:1 20373:1 20375:1 20420:1 20422:1 20425:2 20431:1 20469:1 20482:1 20490:3 20528:2 20545:1 20546:1 20557:2 20558:1 20567:1 20587:1 20605:2 20618:1 20630:1 20642:1 20647:2 20651:2 20660:1 20669:1 20679:1 20681:1 20701:2 20702:2 20715:2 20721:1 20724:1 20732:2 20757:2 20759:1 20768:1 20774:1 20778:1 20781:2 20787:4 20792:1 20815:1 20833:1 20838:2 20839:1 20848:1 20864:5 20871:1 20882:1 20884:1 20917:1 20926:4 20933:1 20935:2 20943:2 20956:4 20974:1 20979:1 20999:1 21005:3 21013:2 21014:1 21022:1 21061:1 21062:2 21065:1 21075:1 21089:1 21093:1 21095:1 21098:2 21105:1 21106:1 21109:1 21148:1 21149:1 21150:1 21152:1 21157:1 21168:1 21202:1 21219:1 21220:2 21237:1 21239:2 21241:1 21242:1 21249:1 21250:1 21254:1 21277:1 21281:1 21283:1 21288:1 21295:1 21302:1 21313:1 21320:1 21322:1 21330:1 21331:1 21341:1 21342:1 21371:1 21376:1 21379:4 21385:1 21387:3 21446:1 21451:1 21463:1 21466:1 21475:1 21478:1 21482:2 21483:1 21486:2 21501:1 21503:1 21511:2 21518:1 21519:2 21523:2 21524:1 21544:4 21555:2 21571:1 21573:1 21583:1 21587:1 21590:1 21591:4 21613:1 21614:1 21627:1 21628:1 21633:1 21652:1 21654:2 21673:1 21676:1 21678:1 21699:1 21711:3 21712:14 21713:2 21719:1 21727:3 21733:1 21756:1 21789:1 21798:1 21813:1 21818:1 21822:1 21828:1 21853:1 21860:1 21861:1 21881:1 21887:1 21897:1 21940:4 21960:2 21982:2 21990:1 22001:2 22015:1 22018:1 22032:2 22066:6 22069:1 22071:2 22078:1 22085:1 22119:1 22120:1 22140:1 22174:1 22185:3 22202:3 22221:1 22225:1 22228:1 22231:1 22235:1 22236:1 22244:1 22247:2 22282:2 22288:3 22298:2 22300:2 22314:2 22319:1 22323:1 22325:1 22326:1 22337:2 22370:4 22390:2 22398:1 22417:2 22421:1 22432:1 22452:2 22466:1 22473:1 22478:2 22488:4 22492:1 22503:1 22508:2 22519:3 22546:2 22554:1 22567:1 22590:1 22591:1 22592:1 22602:1 22615:1 22621:2 22624:2 22628:1 22632:2 22635:1 22643:2 22665:1 22671:2 22685:2 22699:2 22715:1 22716:1 22723:1 22724:1 22726:4 22741:1 22750:2 22758:1 22760:1 22768:1 22769:1 22773:2 22774:1 22779:1 22790:1 22793:1 22811:1 22815:1 22838:1 22846:1 22855:1 22857:1 22862:2 22866:2 22879:1 22893:1 22939:1 23014:2 23017:1 23026:2 23027:2 23031:1 23032:1 23038:1 23039:1 23043:1 23056:1 23063:2 23070:3 23071:1 23081:1 23090:1 23104:1 23121:1 23131:1 23137:1 23158:1 23159:1 23181:1 23183:1 23184:1 23185:1 23190:1 23194:1 23195:2 23199:1 23200:1 23210:1 23217:1 23222:1 23228:2 23229:1 23236:2 23238:1 23249:1 23251:2 23262:1 23271:9 23281:1 23282:2 23288:2 23298:1 23313:1 23326:1 23337:1 23345:1 23347:1 23349:1 23352:1 23355:1 23377:1 23410:2 23418:1 23426:2 23429:1 23434:1 23437:3 23439:2 23442:1 23452:2 23466:1 23468:1 23475:1 23497:1 23498:1 23500:2 23502:3 23503:2 23537:1 23540:1 23576:1 23605:3 23613:1 23614:3 23616:2 23617:3 23619:1 23620:1 23625:1 23628:1 23631:1 23632:2 23645:4 23656:1 23659:1 23674:1 23682:1 23693:2 23697:2 23700:2 23721:1 23749:1 23778:2 23783:2 23796:1 23811:1 23823:1 23850:1 23853:1 23858:1 23859:1 23862:1 23867:1 23882:1 23887:1 23897:1 23900:1 23912:1 23915:1 23922:4 23929:1 23939:1 23940:3 23943:3 23946:1 23952:1 23969:1 23982:1 23990:2 23993:1 23998:1 24001:1 24002:4 24010:2 24016:1 24026:1 24030:7 24037:1 24044:1 24046:1 24053:1 24073:1 24074:1 24108:7 24111:1 24126:1 24150:1 24162:1 24172:3 24175:1 24178:1 24184:1 24197:1 24221:1 24222:1 24248:1 24250:2 24290:1 24291:4 24294:1 24305:3 24309:3 24319:1 24325:1 24329:1 24346:1 24349:3 24361:1 24370:1 24371:2 24376:3 24386:1 24396:1 24408:1 24426:1 24432:1 24447:1 24451:1 24479:1 24486:1 24495:1 24499:1 24500:1 24502:1 24517:1 24531:2 24549:6 24550:2 24558:1 24568:2 24574:1 24578:2 24585:4 24598:3 24608:2 24624:1 24661:1 24671:1 24681:1 24682:1 24685:2 24688:2 24706:1 24708:1 24742:1 24744:1 24746:1 24749:1 24750:1 24752:1 24762:1 24774:1 24776:1 24789:1 24795:2 24799:1 24806:2 24808:1 24814:1 24851:3 24883:3 24899:1 24969:1 24996:3 25000:2 25008:5 25018:2 25027:1 25033:1 25036:3 25039:1 25051:2 25054:2 25056:1 25066:1 25080:4 25122:1 25138:1 25160:1 25172:1 25184:1 25196:1 25199:2 25230:1 25232:1 25240:1 25246:1 25259:2 25268:1 25273:2 25283:1 25286:1 25298:1 25304:1 25314:1 25315:1 25318:2 25320:3 25329:1 25331:1 25343:1 25366:3 25368:2 25371:2 25376:1 25388:1 25391:1 25396:1 25447:1 25450:4 25453:1 25458:1 25462:1 25471:1 25472:2 25474:1 25477:1 25478:1 25479:1 25481:1 25511:1 25535:1 25537:1 25549:1 25618:2 25633:1 25652:2 25715:1 25718:2 25727:1 25729:1 25739:1 25754:1 25772:1 25776:1 25786:1 25793:1 25803:1 25840:1 25861:1 25885:1 25898:1 25900:2 25909:1 25937:2 25940:1 25963:2 25977:3 25989:1 26010:1 26022:7 26041:1 26048:1 26055:3 26075:1 26076:1 26081:1 26086:3 26095:1 26097:1 26098:1 26103:1 26111:1 26135:3 26157:2 26161:1 26167:1 26168:1 26214:1 26250:1 26253:1 26288:1 26291:1 26292:1 26300:1 26304:3 26305:1 26309:1 26313:1 26317:2 26318:1 26319:1 26320:1 26356:5 26365:1 26373:1 26374:1 26376:1 26380:1 26391:1 26395:1 26397:1 26399:1 26420:8 26425:4 26426:1 26445:1 26447:2 26456:1 26457:1 26473:1 26477:1 26479:1 26483:1 26488:3 26495:2 26512:1 26530:1 26536:1 26616:1 26648:1 26651:1 26659:1 26668:1 26669:1 26674:2 26683:2 26687:1 26690:1 26696:2 26698:2 26703:1 26734:1 26736:1 26758:2 26766:1 26767:1 26776:1 26787:1 26794:1 26803:3 26828:2 26833:1 26836:1 26847:1 26857:2 26862:1 26875:2 26880:1 26895:1 26901:1 26929:12 26930:2 26942:1 26964:1 26973:1 26974:1 26986:1 27012:1 27019:2 27024:1 27029:1 27048:2 27051:1 27059:1 27060:1 27078:1 27083:1 27088:1 27092:1 27094:1 27112:1 27123:1 27164:1 27192:10 27193:1 27218:1 27230:1 27233:2 27234:1 27253:1 27265:1 27272:1 27290:1 27298:1 27304:1 27312:6 27315:1 27338:1 27340:2 27341:1 27368:1 27375:1 27381:2 27387:1 27393:1 27428:1 27443:1 27448:2 27450:1 27465:2 27484:1 27486:1 27498:1 27514:1 27577:1 27579:1 27590:1 27603:1 27606:1 27619:1 27622:1 27627:2 27633:3 27636:1 27643:1 27645:1 27646:1 27657:1 27662:1 27669:1 27673:1 27701:4 27711:1 27713:1 27716:1 27728:1 27729:5 27746:1 27748:2 27750:1 27765:1 27784:1 27786:1 27793:1 27796:1 27820:1 27854:1 27873:2 27889:1 27927:1 27933:1 27947:1 27970:1 27977:1 28000:1 28038:2 28048:1 28049:1 28064:1 28071:1 28072:1 28076:1 28092:1 28106:1 28131:1 28142:3 28153:1 28186:1 28191:1 28200:2 28202:1 28210:2 28227:2 28228:13 28239:1 28265:1 28268:1 28282:1 28291:2 28303:1 28304:1 28305:1 28317:1 28322:1 28326:1 28328:1 28337:1 28343:1 28356:3 28360:3 28368:3 28371:2 28373:4 28375:1 28403:1 28410:1 28463:1 28481:1 28497:1 28500:1 28501:2 28502:1 28515:1 28531:2 28551:2 28564:1 28568:1 28569:1 28572:1 28573:2 28594:6 28595:1 28596:1 28605:1 28609:1 28618:1 28627:1 28630:1 28637:1 28667:1 28671:1 28691:1 28699:1 28727:1 28744:1 28768:1 28777:1 28788:2 28814:1 28816:2 28817:1 28846:1 28851:1 28857:1 28860:1 28863:5 28878:1 28883:1 28884:1 28921:1 28925:1 28931:1 28932:1 28945:1 28949:1 28954:1 28963:1 28983:1 28986:2 28988:2 28998:3 29014:1 29034:1 29043:1 29045:1 29050:2 29078:1 29086:2 29093:1 29095:1 29132:1 29144:2 29158:1 29163:3 29166:1 29171:1 29172:1 29182:1 29187:1 29191:2 29210:1 29218:1 29227:2 29238:2 29241:1 29244:1 29247:1 29259:2 29260:1 29281:1 29295:1 29312:1 29314:1 29318:2 29322:1 29354:1 29373:5 29375:1 29377:2 29401:1 29404:1 29406:1 29438:1 29446:2 29453:1 29460:1 29465:1 29473:2 29482:1 29484:1 29494:2 29501:1 29508:1 29523:1 29524:1 29529:1 29530:1 29531:1 29536:1 29543:2 29546:1 29556:2 29566:2 29571:1 29574:1 29579:1 29580:1 29613:1 29615:1 29630:1 29641:2 29663:1 29688:1 29766:2 29798:1 29804:1 29805:2 29831:2 29849:1 29853:1 29855:1 29862:4 29879:1 29883:1 29891:1 29921:3 29952:1 29969:1 30009:1 30019:2 30034:2 30039:1 30051:1 30063:1 30082:1 30109:1 30110:2 30114:1 30133:2 30134:3 30135:1 30138:1 30146:2 30150:1 30151:1 30152:2 30169:1 30171:1 30180:1 30181:5 30203:1 30205:1 30220:2 30226:2 30228:2 30229:1 30231:1 30235:1 30238:5 30244:1 30251:1 30252:1 30261:3 30263:1 30275:3 30279:1 30283:1 30309:1 30316:1 30332:1 30336:1 30354:1 30356:1 30362:1 30377:1 30392:2 30397:4 30406:4 30411:1 30438:4 30453:1 30457:1 30462:1 30470:1 30471:1 30484:1 30491:1 30493:1 30525:1 30527:2 30571:1 30574:1 30583:1 30604:1 30614:1 30629:1 30634:1 30635:1 30645:1 30646:2 30651:1 30656:1 30670:1 30673:3 30709:1 30711:1 30717:6 30729:1 30730:1 30735:2 30750:1 30786:5 30865:1 30871:1 30882:1 30916:1 30926:1 31003:1 31028:2 31043:1 31046:1 31047:1 31048:1 31053:2 31055:3 31068:1 31072:1 31074:1 31082:1 31086:1 31092:1 31103:1 31136:1 31143:1 31152:1 31184:1 31194:3 31204:2 31233:2 31239:2 31257:1 31284:1 31296:1 31301:1 31308:3 31309:1 31313:2 31343:1 31345:1 31348:4 31351:2 31377:1 31382:1 31405:1 31413:1 31422:1 31431:1 31443:1 31473:1 31478:3 31484:1 31487:1 31505:1 31516:2 31519:1 31542:1 31577:2 31580:2 31599:1 31600:1 31606:1 31608:3 31615:3 31617:3 31618:1 31623:1 31632:1 31677:5 31682:1 1 13:1 40:1 46:1 62:1 65:1 72:1 106:1 141:1 155:1 156:3 161:1 167:2 173:1 188:1 190:3 207:5 226:1 231:1 244:1 263:1 274:1 278:7 287:1 297:3 307:1 328:2 354:1 371:4 373:3 378:3 387:3 391:1 397:2 416:2 430:1 438:1 454:5 458:3 471:1 490:1 526:1 527:1 561:2 588:1 596:1 600:2 614:1 620:1 634:3 645:1 659:1 665:1 667:2 674:1 678:1 693:2 765:1 767:1 783:1 815:1 817:1 826:1 829:2 854:1 856:2 863:1 871:1 900:5 906:1 911:1 917:1 918:4 927:1 942:13 943:4 952:3 975:3 984:1 992:1 993:4 995:2 998:7 1000:1 1001:1 1004:2 1018:2 1033:1 1042:3 1044:4 1055:1 1095:2 1104:1 1121:1 1142:1 1159:1 1177:1 1178:1 1210:2 1214:1 1217:1 1275:3 1277:2 1283:1 1285:1 1295:2 1298:1 1299:1 1312:1 1315:1 1325:1 1328:1 1332:2 1351:1 1356:2 1380:1 1386:2 1389:1 1408:1 1417:1 1429:1 1432:1 1433:1 1451:1 1466:1 1468:1 1470:1 1485:1 1500:1 1527:1 1530:1 1540:1 1541:2 1564:1 1565:2 1584:1 1587:1 1595:2 1602:1 1613:1 1629:1 1632:2 1647:1 1674:1 1686:4 1694:7 1696:2 1705:1 1713:1 1743:2 1751:1 1754:1 1763:1 1767:1 1783:1 1786:1 1791:2 1799:1 1804:2 1813:1 1818:1 1820:1 1825:1 1835:1 1839:2 1850:1 1854:1 1863:1 1867:1 1871:1 1881:1 1882:1 1886:2 1897:1 1905:1 1920:2 1923:1 1944:1 1945:5 1950:1 1954:1 1965:1 1971:1 1974:2 1978:1 1979:2 1993:2 1994:6 2027:4 2030:2 2043:1 2054:1 2055:1 2060:2 2065:4 2070:1 2071:1 2074:1 2103:1 2113:1 2121:2 2127:2 2128:1 2129:1 2143:2 2192:1 2198:6 2201:1 2207:1 2210:1 2214:1 2215:2 2220:1 2222:1 2226:1 2230:2 2236:1 2243:1 2247:1 2255:1 2272:1 2283:1 2296:2 2300:1 2301:1 2306:2 2308:1 2323:1 2335:1 2349:1 2354:9 2361:1 2370:1 2376:1 2379:1 2393:1 2423:2 2436:3 2439:1 2450:1 2458:1 2464:2 2477:2 2478:2 2482:2 2485:4 2487:1 2489:1 2491:2 2494:2 2495:2 2497:1 2499:1 2501:1 2502:4 2506:1 2508:4 2509:3 2514:5 2515:7 2517:1 2528:1 2562:1 2565:1 2568:1 2571:3 2576:1 2593:1 2595:1 2603:1 2617:1 2618:1 2623:1 2631:1 2637:1 2639:1 2657:1 2695:1 2706:1 2718:1 2722:1 2739:3 2751:1 2752:1 2765:1 2771:1 2776:1 2779:1 2800:3 2803:2 2806:1 2808:6 2812:1 2813:1 2814:1 2824:1 2827:1 2835:1 2849:4 2851:1 2857:1 2873:2 2881:1 2884:1 2885:1 2897:6 2906:1 2911:1 2913:2 2916:5 2924:4 2928:1 2937:2 2939:1 2943:1 2945:2 2947:1 2950:3 2951:2 2967:2 2981:1 2982:2 2987:3 2991:1 3029:1 3034:1 3035:2 3036:2 3041:1 3050:3 3056:1 3060:4 3065:2 3069:1 3089:1 3096:1 3127:2 3146:3 3152:1 3157:1 3159:13 3178:2 3180:1 3185:1 3186:1 3190:1 3199:2 3203:2 3224:15 3225:1 3246:2 3249:3 3269:1 3280:1 3317:1 3325:1 3332:1 3338:1 3351:1 3352:5 3371:3 3377:1 3383:1 3410:1 3426:1 3438:1 3440:1 3442:1 3447:1 3457:2 3469:1 3490:2 3510:3 3524:1 3534:1 3550:1 3551:2 3579:1 3580:2 3581:1 3590:1 3608:6 3626:1 3643:1 3663:1 3695:1 3706:2 3749:1 3751:1 3753:1 3774:1 3781:1 3783:1 3784:1 3788:1 3799:1 3804:1 3829:1 3844:1 3851:1 3861:1 3868:2 3873:1 3897:1 3898:12 3900:1 3909:1 3912:2 3914:2 3915:2 3937:1 3942:1 3943:1 3947:1 3998:1 4000:1 4001:1 4008:1 4013:3 4021:2 4038:1 4062:1 4096:1 4099:1 4101:1 4106:2 4110:1 4113:2 4117:1 4129:1 4149:1 4152:1 4156:2 4163:1 4167:1 4179:2 4181:1 4186:1 4195:1 4200:3 4215:1 4220:1 4221:1 4226:4 4229:1 4236:2 4241:2 4242:1 4253:2 4272:2 4289:1 4293:2 4309:1 4313:1 4315:2 4320:1 4340:1 4348:6 4349:3 4356:2 4393:1 4395:2 4398:1 4403:1 4417:1 4422:1 4426:2 4432:1 4448:1 4464:2 4470:1 4476:1 4500:2 4526:2 4537:1 4547:3 4551:1 4552:1 4557:2 4563:1 4567:2 4581:1 4587:1 4594:1 4610:1 4624:1 4629:1 4647:1 4649:1 4669:7 4691:3 4696:1 4708:1 4712:1 4717:1 4720:2 4732:2 4749:2 4759:1 4779:1 4785:1 4787:2 4808:3 4834:1 4843:1 4844:1 4850:1 4869:2 4893:1 4899:1 4902:1 4904:1 4910:1 4911:3 4913:1 4922:1 4938:1 4959:1 4970:1 4983:5 5001:1 5006:1 5034:4 5044:2 5056:1 5062:3 5066:1 5085:4 5105:2 5131:1 5135:2 5138:3 5154:3 5167:1 5174:1 5189:2 5200:1 5216:1 5249:1 5267:12 5270:1 5279:1 5282:1 5283:1 5297:1 5316:1 5329:1 5339:1 5350:1 5404:2 5429:1 5430:1 5431:4 5433:5 5434:3 5436:1 5440:1 5441:2 5442:1 5445:1 5446:1 5449:6 5450:4 5453:1 5454:2 5456:6 5464:2 5465:3 5469:1 5517:1 5532:1 5548:2 5557:1 5575:1 5580:1 5592:1 5614:1 5625:1 5638:1 5658:1 5668:1 5704:1 5720:1 5731:2 5765:1 5771:1 5801:2 5807:2 5813:1 5850:1 5875:3 5889:1 5890:1 5915:1 5917:1 5937:1 5943:1 5953:2 5959:1 5972:1 5980:1 5988:1 5994:1 6017:1 6029:1 6057:1 6060:1 6100:2 6110:1 6115:2 6118:1 6133:5 6134:1 6136:2 6139:1 6143:1 6144:2 6156:1 6157:1 6181:1 6188:3 6200:2 6202:1 6204:1 6219:6 6223:1 6224:1 6237:2 6308:1 6320:1 6327:1 6330:1 6345:1 6349:1 6351:1 6352:1 6361:2 6366:1 6387:1 6400:1 6427:1 6433:2 6444:2 6455:1 6466:2 6468:1 6488:6 6494:1 6495:1 6499:1 6502:2 6512:1 6514:1 6516:1 6556:1 6560:1 6561:1 6569:1 6571:1 6573:1 6579:1 6581:1 6582:1 6586:12 6600:1 6603:1 6624:3 6631:1 6655:1 6668:1 6684:3 6693:1 6706:1 6709:6 6713:1 6720:1 6769:1 6775:1 6799:1 6806:1 6808:1 6809:1 6814:2 6816:3 6822:1 6823:1 6825:2 6832:2 6834:3 6835:2 6884:1 6931:1 6949:1 6990:1 6993:4 6996:2 7008:1 7040:1 7052:1 7057:1 7061:1 7071:1 7079:1 7097:1 7106:1 7131:1 7145:2 7153:2 7167:1 7174:1 7175:1 7182:1 7227:1 7241:1 7251:2 7253:1 7256:1 7260:1 7265:1 7284:7 7292:2 7295:2 7298:1 7309:1 7315:1 7326:2 7348:1 7357:1 7360:1 7362:1 7403:1 7405:3 7421:2 7429:1 7435:2 7454:1 7460:1 7465:1 7473:1 7478:2 7504:1 7522:1 7529:1 7535:1 7550:1 7561:1 7569:1 7574:6 7578:2 7598:1 7611:1 7615:1 7621:1 7624:2 7625:2 7632:1 7636:3 7638:1 7640:1 7645:5 7648:1 7651:1 7656:1 7679:1 7680:1 7681:1 7684:1 7695:1 7701:1 7729:1 7737:4 7747:3 7759:1 7771:1 7792:2 7796:1 7798:1 7805:1 7812:1 7827:1 7829:1 7839:1 7846:1 7853:1 7869:1 7919:1 7925:1 7930:1 7933:2 7971:1 7984:1 7985:2 7986:3 7991:2 7999:1 8004:1 8006:3 8010:1 8032:4 8034:1 8036:2 8037:1 8061:1 8064:3 8074:1 8081:1 8093:1 8108:2 8110:1 8117:1 8127:1 8131:1 8134:1 8140:1 8152:1 8153:1 8161:1 8168:1 8190:1 8198:1 8218:3 8235:3 8236:6 8250:2 8257:4 8258:1 8262:2 8263:3 8278:1 8287:4 8288:2 8290:1 8303:40 8306:2 8315:1 8323:1 8326:7 8327:4 8331:2 8367:1 8374:1 8375:1 8384:1 8397:1 8404:3 8405:2 8411:1 8421:1 8424:1 8433:2 8445:1 8455:1 8459:1 8461:1 8480:2 8486:1 8492:1 8514:1 8541:1 8550:1 8553:1 8557:1 8558:3 8588:1 8591:1 8592:1 8593:1 8605:2 8609:2 8663:1 8681:1 8696:1 8722:1 8723:1 8734:1 8737:1 8742:1 8765:1 8768:1 8775:1 8777:1 8778:2 8788:1 8797:1 8815:1 8816:1 8835:20 8843:1 8844:1 8865:3 8868:2 8870:1 8935:3 8937:1 8938:1 8943:1 8969:1 8974:1 8990:2 8994:2 8996:1 9001:1 9019:1 9030:1 9031:4 9038:3 9044:1 9065:2 9066:1 9069:1 9076:1 9080:1 9088:1 9090:1 9104:1 9109:1 9110:1 9128:1 9129:1 9139:2 9141:1 9142:1 9154:1 9201:1 9204:1 9205:1 9209:1 9211:1 9216:1 9239:1 9242:1 9255:5 9267:2 9271:3 9291:1 9302:1 9312:1 9319:2 9323:1 9324:1 9340:1 9345:1 9365:2 9393:1 9404:1 9436:1 9437:1 9449:1 9450:1 9460:1 9485:1 9486:1 9487:1 9501:1 9510:1 9533:1 9536:1 9537:1 9541:3 9577:2 9586:1 9594:2 9606:1 9613:1 9618:1 9643:1 9644:1 9655:1 9661:1 9662:3 9663:1 9668:1 9670:1 9675:1 9687:1 9695:1 9697:1 9708:4 9719:1 9732:1 9740:1 9759:1 9768:8 9769:5 9778:1 9784:2 9794:2 9830:1 9844:1 9849:1 9853:2 9872:1 9878:1 9882:2 9884:2 9886:3 9888:2 9898:1 9907:1 9919:1 9928:1 9950:1 9960:2 9963:1 9969:1 9972:5 9974:1 9996:3 9999:2 10006:1 10021:4 10050:1 10080:1 10089:1 10111:3 10122:3 10128:1 10142:1 10147:1 10156:1 10159:1 10183:1 10197:1 10201:1 10211:1 10220:7 10226:2 10264:3 10283:1 10284:1 10298:3 10302:1 10330:1 10358:1 10363:1 10365:3 10366:3 10369:2 10374:1 10399:1 10406:1 10408:1 10437:1 10439:1 10447:1 10458:1 10494:2 10517:1 10530:2 10542:1 10554:1 10557:1 10558:1 10576:1 10587:1 10603:1 10606:1 10611:1 10612:1 10626:1 10630:1 10657:1 10663:1 10665:1 10670:1 10674:5 10690:3 10702:4 10707:2 10717:1 10738:2 10762:2 10764:1 10813:1 10818:2 10835:1 10841:1 10854:1 10861:3 10864:1 10901:1 10907:1 10911:12 10913:1 10914:2 10919:2 10927:1 10948:2 10949:1 10969:1 10973:1 10980:1 10991:1 11018:1 11040:1 11047:2 11049:1 11094:1 11109:1 11110:1 11112:1 11115:1 11117:1 11121:4 11129:1 11131:1 11136:2 11169:1 11181:4 11185:1 11187:1 11189:1 11194:1 11196:2 11207:1 11210:1 11213:1 11224:4 11244:1 11265:1 11277:1 11283:1 11284:1 11291:1 11298:1 11300:1 11303:2 11306:1 11319:2 11330:1 11337:1 11348:2 11360:1 11362:1 11365:1 11373:5 11376:2 11389:2 11390:3 11395:1 11402:1 11417:1 11419:1 11432:1 11447:2 11462:4 11463:2 11483:1 11485:1 11486:1 11498:3 11524:1 11541:1 11544:1 11550:3 11562:1 11573:5 11588:1 11597:1 11605:1 11609:1 11624:2 11744:1 11750:1 11767:1 11770:1 11791:1 11792:2 11796:2 11800:1 11801:2 11807:1 11811:1 11815:1 11816:1 11817:5 11819:5 11820:1 11827:1 11834:2 11838:2 11842:1 11845:3 11849:1 11851:1 11868:3 11872:1 11901:2 11910:1 11935:1 11937:1 11939:2 11983:1 11986:1 12007:1 12021:1 12023:1 12026:1 12061:1 12094:1 12102:1 12118:1 12133:1 12137:2 12151:1 12156:1 12179:1 12192:1 12195:1 12202:2 12219:3 12222:2 12227:1 12241:1 12245:2 12247:1 12249:1 12250:2 12260:3 12262:1 12263:1 12264:2 12269:1 12272:1 12278:1 12285:3 12287:2 12293:1 12324:14 12325:1 12356:1 12365:1 12369:4 12383:2 12384:2 12391:1 12416:1 12418:2 12429:2 12430:1 12441:1 12442:2 12449:2 12450:1 12464:1 12483:1 12497:1 12501:1 12528:1 12544:1 12566:1 12574:3 12575:1 12579:1 12584:1 12587:1 12592:2 12596:1 12597:2 12599:1 12603:1 12604:1 12611:1 12614:1 12624:1 12636:1 12640:1 12641:1 12643:1 12649:2 12652:3 12655:2 12683:1 12718:1 12741:2 12745:1 12783:1 12799:1 12801:1 12808:1 12818:1 12829:1 12855:1 12856:1 12863:5 12872:1 12883:2 12886:1 12887:2 12901:1 12907:1 12918:1 12925:2 12931:1 12955:2 12982:1 12983:1 13003:1 13025:2 13030:1 13043:1 13047:1 13052:1 13059:2 13070:1 13094:1 13118:1 13125:1 13127:1 13132:5 13133:2 13134:2 13149:1 13155:2 13168:1 13172:1 13174:1 13182:1 13195:1 13235:1 13237:2 13240:1 13264:1 13271:1 13280:1 13291:1 13303:1 13310:1 13327:1 13332:1 13338:1 13427:3 13456:2 13473:1 13493:1 13502:1 13515:1 13531:1 13533:2 13534:1 13552:3 13566:1 13569:1 13582:1 13601:1 13626:1 13654:1 13663:1 13666:1 13669:1 13670:2 13677:1 13718:11 13723:3 13737:2 13762:1 13776:1 13777:2 13785:2 13805:1 13811:1 13817:1 13818:1 13828:1 13838:2 13839:1 13847:1 13881:1 13900:1 13913:1 13920:1 13927:1 13939:2 13959:1 13975:1 13978:1 13998:1 14000:1 14010:2 14011:1 14020:1 14026:1 14027:1 14048:1 14058:1 14064:3 14084:1 14110:1 14129:1 14146:1 14176:1 14199:1 14201:1 14204:2 14208:4 14224:1 14230:2 14240:2 14245:1 14262:6 14279:1 14284:2 14307:1 14314:4 14316:1 14352:1 14354:1 14355:1 14356:1 14369:5 14370:1 14381:2 14385:1 14403:1 14408:1 14416:1 14417:1 14429:1 14437:1 14438:1 14453:14 14462:1 14466:1 14503:2 14504:1 14510:2 14525:1 14532:1 14550:1 14561:1 14603:3 14630:1 14635:6 14641:1 14658:1 14670:1 14673:1 14695:2 14722:1 14732:1 14734:1 14746:2 14748:1 14749:1 14760:1 14762:1 14769:6 14770:1 14773:1 14774:1 14775:1 14777:2 14778:1 14782:7 14783:2 14810:1 14811:1 14814:1 14818:1 14846:1 14873:1 14894:1 14906:1 14921:1 14948:1 14967:3 14968:1 15004:1 15010:1 15013:1 15015:1 15022:1 15025:1 15032:1 15033:1 15046:1 15049:1 15074:2 15079:1 15080:1 15094:1 15098:7 15111:1 15121:1 15123:2 15128:1 15163:1 15174:1 15175:1 15185:1 15191:1 15202:1 15210:1 15213:1 15215:1 15236:1 15265:1 15266:1 15283:1 15293:1 15300:1 15312:1 15315:1 15353:1 15362:2 15379:4 15395:1 15401:1 15414:1 15434:1 15446:1 15468:1 15488:1 15514:1 15517:3 15518:3 15527:1 15540:1 15541:2 15544:1 15550:2 15552:1 15573:1 15581:1 15592:2 15625:1 15651:1 15675:2 15680:1 15683:1 15698:1 15705:1 15707:1 15712:2 15714:1 15725:3 15729:2 15782:1 15786:2 15790:1 15841:1 15842:2 15844:1 15851:1 15870:1 15880:1 15883:1 15922:3 15928:1 15938:1 15941:2 15972:1 15973:1 15978:1 16032:1 16035:2 16073:1 16078:2 16079:1 16081:1 16100:1 16120:1 16157:1 16160:3 16168:1 16188:1 16189:1 16199:1 16231:1 16269:1 16302:1 16308:1 16314:2 16351:1 16406:1 16424:2 16435:1 16442:1 16464:1 16476:1 16479:1 16481:2 16492:1 16511:2 16516:2 16520:1 16545:1 16551:1 16567:2 16585:2 16592:1 16614:1 16627:2 16641:1 16652:1 16687:1 16701:3 16720:3 16731:1 16739:2 16752:2 16777:1 16782:1 16790:1 16807:1 16810:1 16815:2 16869:1 16883:1 16884:1 16897:2 16909:1 16913:4 16914:1 16918:1 16920:1 16926:1 16940:3 16941:1 16945:1 16948:1 16962:1 16968:1 16980:1 16999:2 17008:2 17052:2 17055:1 17062:1 17079:3 17089:1 17104:1 17105:3 17120:1 17135:2 17151:1 17157:1 17198:1 17200:1 17230:1 17234:1 17239:13 17241:1 17256:1 17260:3 17262:1 17285:3 17327:1 17344:1 17349:2 17360:2 17363:1 17380:2 17383:1 17392:2 17401:1 17428:1 17435:1 17442:1 17444:1 17445:1 17454:2 17456:1 17482:1 17486:1 17504:1 17511:1 17516:4 17518:2 17519:2 17520:5 17521:1 17523:1 17527:2 17529:1 17531:2 17532:3 17537:1 17538:1 17540:1 17546:1 17555:1 17592:1 17598:1 17607:1 17627:1 17652:1 17655:1 17656:1 17692:2 17699:1 17708:2 17709:1 17729:1 17762:1 17774:1 17804:1 17808:1 17827:1 17868:1 17872:1 17874:1 17884:2 17899:1 17902:2 17915:2 17916:1 17925:1 17930:5 17937:1 17941:2 17954:1 17965:1 17966:1 17972:2 17975:1 17980:2 17985:1 17994:3 17998:2 18008:2 18016:1 18026:1 18071:10 18073:1 18086:1 18088:1 18095:1 18096:4 18102:1 18171:1 18172:1 18183:2 18191:1 18201:3 18211:1 18212:1 18225:1 18233:1 18236:2 18286:2 18307:5 18308:1 18322:1 18340:1 18341:1 18344:1 18361:1 18379:1 18423:2 18424:3 18425:1 18438:1 18440:1 18443:1 18453:1 18491:1 18494:1 18517:1 18530:2 18533:1 18548:1 18565:1 18577:2 18585:1 18587:1 18597:1 18617:1 18662:1 18670:1 18712:1 18731:1 18734:1 18755:1 18760:1 18775:2 18779:1 18791:3 18796:1 18801:1 18810:3 18814:2 18815:2 18819:2 18825:7 18852:1 18872:1 18877:1 18880:1 18885:1 18887:1 18892:1 18898:1 18909:1 18910:1 18962:1 18982:1 18983:1 19004:3 19009:1 19023:1 19033:2 19047:1 19050:1 19054:1 19070:1 19071:1 19101:1 19102:1 19103:1 19123:1 19130:1 19134:2 19166:1 19171:1 19202:1 19207:1 19226:2 19231:1 19233:1 19236:1 19243:1 19246:1 19267:1 19299:1 19337:1 19376:1 19378:1 19390:1 19391:1 19411:2 19450:1 19514:2 19515:1 19525:1 19538:1 19543:1 19553:1 19575:1 19593:1 19600:1 19619:1 19631:1 19651:1 19656:3 19661:1 19670:1 19719:10 19750:1 19780:1 19806:1 19826:13 19832:1 19833:3 19834:1 19846:5 19847:1 19863:1 19872:1 19876:2 19897:1 19915:1 19948:4 19971:2 19979:1 19988:1 19990:1 19993:1 20016:1 20020:1 20023:2 20041:2 20047:1 20053:2071 20064:1 20070:1 20085:1 20086:1 20126:1 20132:1 20134:1 20160:2 20217:1 20218:1 20229:1 20241:1 20262:1 20264:1 20267:1 20271:2 20274:4 20275:2 20292:1 20294:1 20298:1 20308:1 20320:1 20338:1 20350:1 20373:1 20375:1 20420:1 20422:1 20425:2 20431:1 20469:1 20482:1 20490:3 20528:2 20545:1 20546:1 20557:2 20558:1 20567:1 20587:1 20605:2 20618:1 20630:1 20642:1 20647:2 20651:2 20660:1 20669:1 20679:1 20681:1 20701:2 20702:2 20715:2 20721:1 20724:1 20732:2 20757:2 20759:1 20768:1 20774:1 20778:1 20781:2 20787:7 20792:1 20813:1 20815:1 20833:1 20838:2 20839:1 20848:1 20864:5 20871:1 20882:1 20884:1 20917:1 20926:4 20933:1 20935:2 20941:1 20943:2 20956:4 20974:1 20979:1 20999:1 21005:3 21013:2 21014:1 21022:2 21061:3 21062:2 21065:1 21075:1 21089:1 21093:1 21095:1 21098:2 21105:1 21106:1 21109:1 21148:1 21149:1 21150:1 21152:1 21157:1 21168:1 21202:1 21219:1 21220:2 21237:1 21239:2 21241:1 21242:1 21249:1 21250:1 21254:1 21277:1 21281:1 21283:1 21288:1 21295:1 21302:1 21313:1 21320:1 21322:1 21330:1 21331:1 21341:1 21342:1 21371:1 21376:1 21379:4 21385:1 21387:3 21446:1 21451:1 21463:1 21466:1 21475:1 21478:1 21482:2 21483:1 21486:2 21501:1 21503:1 21511:2 21518:1 21519:2 21523:2 21524:1 21544:4 21555:2 21571:1 21573:1 21583:1 21587:1 21590:1 21591:4 21613:1 21614:1 21627:1 21628:1 21633:1 21652:1 21654:2 21673:1 21676:1 21678:1 21699:1 21711:3 21712:15 21713:2 21719:1 21727:4 21733:1 21756:1 21789:1 21798:1 21813:1 21818:1 21822:1 21828:1 21853:1 21860:1 21861:1 21881:1 21887:1 21897:1 21940:4 21960:2 21982:2 21990:1 22001:2 22015:1 22018:1 22032:2 22066:6 22069:1 22071:2 22078:1 22085:1 22119:1 22120:1 22128:1 22140:1 22174:1 22185:3 22202:3 22221:1 22225:1 22228:1 22231:1 22235:1 22236:1 22244:1 22247:2 22282:2 22288:3 22298:2 22300:2 22314:2 22319:1 22323:1 22325:1 22326:1 22337:2 22370:4 22390:2 22398:1 22417:2 22421:1 22432:1 22452:2 22466:1 22473:1 22478:2 22488:5 22492:1 22503:1 22508:2 22519:3 22546:2 22554:1 22567:1 22590:1 22591:1 22592:1 22602:1 22615:2 22621:2 22624:2 22628:1 22632:2 22635:1 22643:2 22665:1 22671:2 22685:2 22699:2 22715:1 22716:1 22723:1 22724:1 22726:4 22741:1 22750:2 22758:1 22760:1 22768:1 22769:1 22773:2 22774:1 22779:1 22790:1 22793:1 22811:1 22815:1 22838:1 22846:1 22855:1 22857:1 22862:2 22866:2 22879:1 22893:1 22939:1 23014:2 23017:1 23026:2 23027:2 23031:1 23032:1 23038:1 23039:1 23043:1 23056:1 23063:2 23070:3 23071:1 23081:1 23090:1 23104:1 23121:1 23131:1 23137:1 23158:1 23159:1 23181:2 23183:1 23184:1 23185:1 23190:1 23194:1 23195:2 23199:1 23200:1 23210:1 23217:1 23222:1 23228:2 23229:1 23236:2 23238:1 23249:1 23251:2 23262:1 23271:10 23281:1 23282:2 23288:2 23298:1 23313:1 23326:1 23337:1 23345:1 23347:1 23349:1 23352:1 23355:1 23377:1 23410:2 23418:1 23426:2 23429:1 23434:1 23437:3 23439:2 23442:1 23452:2 23466:1 23468:1 23475:1 23497:1 23498:1 23500:2 23502:3 23503:2 23537:1 23540:1 23576:1 23605:3 23613:1 23614:3 23616:2 23617:3 23619:1 23620:1 23625:1 23628:2 23631:1 23632:2 23645:5 23656:1 23659:1 23674:1 23682:1 23693:2 23697:2 23700:2 23721:1 23749:1 23778:2 23783:2 23796:1 23801:1 23811:1 23823:1 23850:1 23853:1 23858:1 23859:1 23862:1 23867:1 23882:1 23886:1 23887:1 23897:1 23900:1 23912:1 23915:1 23922:5 23929:1 23939:1 23940:3 23943:3 23946:1 23952:1 23969:1 23982:1 23990:2 23993:1 23997:1 23998:1 24001:1 24002:4 24010:2 24016:1 24026:2 24030:8 24037:1 24044:1 24046:1 24053:1 24073:1 24074:1 24108:7 24111:1 24126:1 24150:1 24162:1 24172:3 24175:1 24178:1 24184:1 24197:1 24221:1 24222:1 24248:1 24250:2 24290:1 24291:4 24294:1 24305:3 24309:3 24319:1 24325:1 24329:1 24332:1 24346:1 24349:3 24361:1 24370:1 24371:2 24376:3 24386:1 24396:1 24408:1 24426:1 24432:1 24447:1 24451:1 24479:1 24486:1 24495:1 24499:1 24500:1 24502:1 24517:1 24531:2 24549:7 24550:2 24558:1 24568:2 24574:1 24578:2 24585:4 24598:3 24608:2 24624:1 24661:1 24671:1 24681:1 24682:1 24685:2 24688:2 24706:1 24708:1 24742:1 24744:1 24746:1 24749:1 24750:1 24752:1 24762:1 24774:1 24776:1 24789:1 24795:2 24799:1 24806:2 24808:1 24814:1 24851:3 24883:3 24899:1 24969:1 24996:3 25000:2 25008:5 25018:2 25027:1 25033:1 25036:3 25039:1 25051:2 25054:2 25056:2 25066:1 25080:4 25122:1 25138:1 25160:1 25172:1 25184:1 25196:1 25199:2 25230:1 25232:1 25240:2 25246:1 25259:2 25268:1 25273:2 25283:1 25286:1 25298:1 25304:1 25314:1 25315:2 25318:2 25320:3 25329:1 25331:1 25343:1 25366:3 25368:2 25371:2 25376:1 25388:1 25391:1 25396:1 25447:1 25450:4 25453:1 25458:1 25462:1 25471:1 25472:2 25474:1 25477:1 25478:1 25479:1 25481:1 25511:1 25535:1 25537:1 25549:1 25618:2 25633:1 25652:2 25715:1 25718:2 25727:1 25729:1 25739:1 25754:1 25772:1 25776:1 25786:1 25793:1 25803:1 25840:1 25861:1 25885:1 25898:1 25900:2 25909:1 25937:2 25940:1 25963:2 25977:3 25989:1 26010:1 26022:7 26041:1 26048:1 26055:3 26075:1 26076:1 26081:1 26086:3 26095:1 26097:1 26098:1 26103:1 26111:1 26135:3 26157:2 26161:1 26167:1 26168:1 26214:1 26250:1 26253:1 26288:1 26291:1 26292:1 26300:1 26304:3 26305:2 26309:1 26313:1 26317:2 26318:1 26319:1 26320:1 26356:5 26365:1 26373:1 26374:1 26376:1 26380:1 26391:1 26395:1 26397:1 26399:1 26420:8 26425:5 26426:1 26445:1 26447:2 26456:1 26457:1 26459:1 26473:1 26477:1 26479:1 26483:1 26488:3 26495:2 26512:1 26530:1 26536:1 26616:1 26648:1 26651:1 26659:1 26668:1 26669:1 26674:2 26683:2 26687:1 26690:1 26696:2 26698:2 26703:1 26734:1 26736:1 26749:1 26758:2 26766:1 26767:1 26776:1 26787:1 26794:1 26803:3 26828:2 26833:1 26836:1 26847:1 26857:2 26862:1 26875:2 26880:1 26895:1 26901:1 26929:13 26930:2 26942:1 26964:1 26973:1 26974:1 26986:1 27012:1 27019:2 27024:1 27029:1 27048:2 27051:1 27059:1 27060:1 27078:1 27083:1 27088:1 27092:1 27094:1 27112:1 27123:1 27164:1 27192:10 27193:1 27218:1 27230:1 27233:2 27234:1 27253:1 27265:1 27272:1 27290:1 27298:1 27304:1 27312:6 27315:1 27338:1 27340:2 27341:1 27368:1 27375:1 27381:2 27387:1 27393:1 27428:1 27443:1 27448:2 27450:1 27465:2 27484:1 27486:1 27498:1 27514:1 27577:1 27579:1 27590:1 27603:1 27606:1 27619:1 27622:1 27627:2 27633:3 27636:1 27643:1 27645:1 27646:1 27657:1 27662:1 27669:1 27673:1 27701:4 27711:1 27713:1 27716:1 27728:1 27729:6 27746:1 27748:2 27750:1 27765:1 27773:1 27784:2 27786:1 27793:1 27796:1 27820:1 27854:1 27873:2 27889:1 27927:1 27933:1 27947:1 27970:1 27977:1 28000:1 28038:2 28048:1 28049:2 28064:1 28071:1 28072:1 28076:1 28092:1 28106:2 28131:1 28142:4 28153:1 28186:1 28191:1 28200:2 28202:1 28210:2 28211:1 28227:2 28228:13 28239:1 28265:1 28268:1 28282:1 28291:2 28303:1 28304:1 28305:1 28317:1 28322:1 28326:1 28328:1 28337:1 28343:1 28356:4 28360:3 28368:3 28371:2 28373:4 28375:1 28403:1 28410:1 28463:1 28481:1 28497:1 28500:1 28501:2 28502:1 28515:1 28531:2 28551:2 28564:1 28568:1 28569:1 28572:1 28573:2 28594:6 28595:1 28596:1 28605:1 28609:1 28618:1 28627:1 28630:1 28637:1 28667:1 28671:1 28673:1 28691:1 28699:1 28727:1 28744:1 28768:1 28777:1 28788:2 28814:1 28816:2 28817:1 28846:1 28851:1 28857:1 28860:1 28863:5 28878:1 28883:1 28884:1 28921:1 28925:1 28931:1 28932:1 28945:1 28949:1 28954:2 28963:1 28983:1 28986:2 28988:2 28998:3 29014:1 29034:1 29043:1 29045:1 29050:2 29078:1 29086:2 29093:1 29095:1 29132:1 29144:2 29158:1 29163:3 29166:1 29171:1 29172:1 29182:1 29187:1 29191:2 29210:1 29218:1 29227:2 29238:2 29241:1 29244:1 29247:1 29259:2 29260:1 29281:1 29295:1 29312:1 29314:1 29318:2 29322:1 29354:1 29373:5 29375:1 29377:2 29401:1 29404:1 29406:1 29438:1 29446:2 29453:1 29460:1 29465:1 29473:2 29482:1 29484:1 29494:2 29501:1 29508:1 29523:1 29524:1 29529:1 29530:1 29531:1 29536:1 29543:2 29546:1 29556:2 29566:2 29571:1 29574:1 29579:1 29580:1 29613:1 29615:1 29630:1 29641:2 29663:1 29688:1 29709:1 29766:2 29798:1 29804:1 29805:2 29831:2 29849:1 29853:1 29855:1 29862:5 29879:1 29883:1 29891:1 29921:4 29952:1 29969:1 30009:1 30019:2 30034:2 30039:1 30051:1 30063:1 30082:1 30109:1 30110:2 30114:1 30133:2 30134:3 30135:1 30138:1 30146:2 30150:1 30151:1 30152:2 30169:1 30171:1 30180:1 30181:5 30203:1 30205:1 30220:2 30226:2 30228:2 30229:1 30231:1 30235:1 30238:5 30244:1 30251:1 30252:1 30261:3 30263:1 30275:3 30279:1 30283:2 30309:1 30316:1 30332:1 30336:1 30354:1 30356:1 30362:1 30377:1 30392:2 30397:4 30406:4 30411:1 30438:4 30453:1 30457:1 30462:1 30470:1 30471:1 30484:1 30491:1 30493:1 30525:1 30527:2 30537:1 30571:1 30574:1 30583:1 30604:1 30614:1 30629:1 30634:1 30635:1 30645:1 30646:2 30651:1 30656:1 30670:1 30673:3 30709:1 30711:1 30717:7 30729:1 30730:1 30735:2 30750:1 30786:5 30865:1 30871:1 30882:1 30916:1 30926:1 31003:1 31028:2 31043:1 31046:1 31047:2 31048:1 31053:2 31055:3 31068:1 31072:1 31074:1 31082:1 31086:1 31092:1 31103:1 31136:1 31143:1 31152:1 31184:1 31194:3 31204:2 31233:2 31239:2 31257:1 31272:1 31284:1 31296:1 31301:1 31308:3 31309:1 31313:2 31343:1 31345:1 31348:4 31351:2 31377:1 31382:1 31405:1 31413:1 31422:1 31431:1 31443:1 31473:1 31478:3 31484:1 31487:1 31505:1 31516:2 31519:1 31542:1 31577:2 31580:2 31599:1 31600:1 31606:1 31608:3 31615:3 31617:3 31618:1 31623:1 31632:1 31677:5 31682:1 1 13:1 40:1 46:1 62:1 65:1 72:1 106:1 141:1 155:1 156:3 161:1 167:2 173:1 188:1 190:3 207:5 226:1 231:1 244:1 263:1 274:1 278:7 287:1 297:3 307:1 328:2 354:1 371:4 373:3 378:3 387:3 391:1 397:2 416:2 430:1 438:1 454:5 458:5 471:1 490:1 526:1 527:1 561:2 588:1 596:1 600:2 614:1 620:1 634:3 645:1 659:1 665:1 667:2 674:1 678:1 693:2 765:1 767:1 783:1 815:1 817:1 826:1 829:2 854:1 856:2 863:1 871:1 900:5 906:1 911:1 917:1 918:4 927:1 942:14 943:4 952:3 975:3 984:1 992:1 993:4 995:2 998:7 1000:1 1001:2 1004:2 1018:2 1033:1 1042:4 1044:4 1055:1 1095:2 1104:1 1121:1 1142:1 1159:1 1177:1 1178:1 1198:1 1210:2 1214:1 1217:1 1275:3 1277:2 1283:1 1285:1 1295:2 1298:1 1299:1 1312:1 1315:1 1325:1 1326:1 1328:1 1332:2 1351:1 1356:2 1380:1 1386:2 1389:1 1408:1 1417:1 1429:1 1432:1 1433:1 1451:1 1466:1 1468:1 1470:1 1485:1 1500:1 1527:1 1530:1 1540:1 1541:2 1564:1 1565:2 1584:1 1587:1 1595:3 1602:1 1613:1 1629:1 1632:2 1647:1 1654:1 1674:1 1686:4 1694:7 1696:2 1705:1 1713:1 1743:2 1751:1 1754:1 1763:1 1767:1 1783:1 1786:1 1791:2 1799:1 1804:2 1813:1 1818:1 1820:1 1825:1 1835:1 1839:2 1850:1 1854:1 1863:1 1867:1 1871:1 1881:1 1882:1 1886:2 1897:1 1905:1 1920:2 1923:1 1944:1 1945:5 1950:1 1954:1 1965:1 1971:1 1974:2 1978:1 1979:2 1993:2 1994:6 2027:4 2030:2 2043:1 2054:1 2055:1 2060:2 2065:4 2070:1 2071:1 2074:1 2103:1 2113:1 2121:2 2127:2 2128:1 2129:1 2143:2 2146:1 2192:1 2198:7 2201:1 2207:1 2210:1 2214:1 2215:2 2220:1 2222:2 2226:1 2230:2 2236:1 2243:1 2247:1 2255:1 2272:1 2283:1 2296:2 2300:1 2301:1 2306:2 2308:1 2323:1 2335:1 2349:1 2354:10 2361:1 2370:1 2376:1 2379:1 2393:1 2423:2 2436:3 2439:1 2450:1 2458:1 2464:2 2477:2 2478:2 2482:2 2485:5 2487:1 2489:1 2491:2 2494:2 2495:2 2497:1 2499:1 2501:1 2502:4 2506:1 2508:4 2509:3 2514:5 2515:7 2517:1 2528:1 2562:1 2565:1 2568:1 2571:3 2576:1 2593:1 2595:1 2603:1 2617:1 2618:1 2623:1 2631:1 2637:1 2639:1 2657:1 2695:1 2706:1 2718:1 2722:1 2739:3 2751:1 2752:1 2765:1 2771:1 2776:1 2779:1 2800:3 2803:2 2806:1 2808:6 2812:1 2813:1 2814:1 2824:1 2827:1 2835:1 2849:4 2851:1 2857:1 2873:2 2881:1 2884:1 2885:1 2897:6 2906:1 2911:1 2913:2 2916:7 2924:4 2928:1 2937:2 2939:1 2943:1 2945:2 2947:1 2950:3 2951:2 2967:2 2981:1 2982:2 2987:3 2991:1 3029:1 3034:1 3035:2 3036:2 3041:1 3050:3 3056:1 3060:4 3065:2 3069:1 3089:1 3096:1 3127:2 3146:3 3152:1 3157:1 3159:14 3178:2 3180:1 3185:1 3186:1 3190:1 3199:2 3203:2 3224:16 3225:1 3246:2 3249:3 3269:1 3280:1 3317:1 3325:1 3332:1 3338:1 3351:1 3352:5 3371:3 3377:1 3383:1 3410:1 3426:1 3438:1 3440:1 3442:1 3447:1 3457:2 3469:1 3490:2 3510:3 3524:1 3534:1 3550:1 3551:2 3579:1 3580:2 3581:1 3590:1 3608:6 3626:1 3643:1 3663:1 3695:1 3706:2 3749:1 3751:1 3753:1 3774:1 3781:1 3783:1 3784:1 3788:1 3799:1 3804:1 3829:1 3844:1 3851:1 3861:1 3868:2 3873:1 3897:1 3898:12 3900:1 3909:1 3912:2 3914:2 3915:2 3937:1 3942:1 3943:1 3947:1 3962:1 3998:1 4000:1 4001:1 4008:1 4013:3 4021:2 4038:1 4062:1 4096:1 4099:1 4101:1 4106:2 4110:1 4113:2 4117:1 4129:1 4149:1 4152:1 4156:2 4163:1 4167:1 4179:2 4181:1 4186:1 4195:1 4200:3 4215:1 4220:1 4221:1 4226:4 4229:1 4236:2 4241:2 4242:1 4253:2 4272:2 4289:1 4293:2 4309:1 4313:1 4315:2 4320:1 4340:1 4348:6 4349:3 4356:2 4393:1 4395:2 4398:1 4403:1 4417:1 4422:1 4426:2 4432:1 4448:1 4464:2 4470:1 4476:1 4500:2 4526:2 4537:1 4547:3 4551:1 4552:1 4557:2 4563:1 4567:2 4581:1 4587:1 4594:1 4610:1 4624:1 4629:1 4647:1 4649:1 4669:7 4691:3 4696:1 4708:1 4712:1 4717:1 4720:2 4732:2 4749:2 4759:1 4779:1 4785:1 4787:2 4808:3 4834:1 4843:1 4844:1 4850:1 4869:2 4893:1 4899:1 4902:1 4904:1 4910:1 4911:3 4913:1 4922:1 4938:1 4959:3 4970:1 4983:5 5001:1 5006:1 5034:4 5044:2 5056:1 5057:1 5062:3 5066:1 5085:4 5105:2 5131:1 5135:2 5138:3 5154:3 5167:1 5174:1 5189:2 5200:1 5216:1 5249:1 5267:13 5270:1 5279:1 5282:1 5283:1 5297:1 5307:1 5316:1 5329:1 5339:1 5350:1 5404:2 5429:1 5430:1 5431:4 5433:6 5434:3 5436:1 5440:2 5441:2 5442:1 5445:1 5446:1 5449:6 5450:4 5453:1 5454:2 5456:7 5464:2 5465:4 5469:1 5517:1 5532:1 5548:2 5557:1 5575:1 5580:1 5592:1 5614:1 5625:1 5638:1 5658:1 5668:1 5704:1 5720:1 5731:2 5765:1 5771:1 5801:2 5807:2 5813:1 5850:1 5875:3 5889:1 5890:1 5915:1 5917:1 5937:1 5943:1 5953:2 5959:1 5972:1 5980:1 5988:1 5994:1 6017:1 6029:1 6057:1 6060:1 6100:2 6110:1 6115:2 6118:1 6121:1 6133:5 6134:1 6136:2 6139:1 6143:1 6144:2 6156:1 6157:1 6181:1 6188:3 6200:2 6202:1 6204:1 6219:6 6223:1 6224:1 6237:2 6289:1 6308:1 6320:1 6327:1 6330:1 6345:1 6349:1 6351:1 6352:1 6361:2 6366:1 6387:1 6400:1 6427:1 6433:2 6444:2 6455:1 6466:2 6468:1 6488:6 6494:1 6495:1 6499:1 6502:2 6512:1 6514:1 6516:1 6556:1 6560:1 6561:1 6569:1 6571:1 6573:1 6579:1 6581:1 6582:1 6586:12 6600:1 6603:1 6624:3 6631:1 6655:1 6668:1 6684:3 6693:1 6706:1 6709:6 6713:1 6720:1 6769:1 6775:1 6799:1 6806:1 6808:1 6809:1 6814:2 6816:3 6822:1 6823:1 6825:2 6832:2 6834:4 6835:3 6884:1 6931:1 6949:1 6990:1 6993:4 6996:2 7008:1 7040:1 7052:1 7057:1 7061:1 7071:1 7079:1 7097:1 7106:1 7131:1 7145:2 7153:2 7167:1 7174:1 7175:1 7182:1 7227:1 7241:1 7251:2 7253:1 7256:1 7260:1 7265:1 7284:7 7292:2 7295:2 7298:1 7309:1 7315:1 7326:2 7348:1 7357:1 7360:1 7362:1 7403:1 7405:3 7421:2 7429:1 7435:2 7454:1 7460:1 7465:1 7473:1 7478:2 7504:1 7522:1 7529:1 7535:1 7550:1 7561:1 7569:1 7574:6 7578:2 7598:1 7611:1 7615:1 7621:1 7624:2 7625:2 7632:1 7636:4 7638:1 7640:1 7645:5 7648:1 7651:1 7656:1 7679:1 7680:1 7681:1 7684:1 7695:1 7701:1 7729:1 7737:4 7747:3 7759:1 7771:1 7792:2 7795:1 7796:1 7798:1 7805:1 7812:1 7827:1 7829:1 7839:1 7846:1 7853:1 7869:1 7919:1 7925:1 7930:1 7933:2 7971:1 7984:1 7985:2 7986:4 7991:2 7999:1 8004:1 8006:3 8010:1 8032:4 8034:1 8036:2 8037:1 8061:1 8064:3 8074:1 8081:1 8093:1 8108:2 8110:1 8117:1 8127:1 8131:1 8134:1 8140:1 8152:1 8153:1 8161:1 8168:1 8190:1 8198:1 8218:3 8235:3 8236:6 8250:2 8257:4 8258:1 8262:2 8263:3 8278:1 8287:4 8288:2 8290:1 8303:41 8306:2 8315:1 8323:1 8326:7 8327:4 8331:2 8367:1 8374:1 8375:1 8384:1 8397:1 8404:3 8405:2 8411:1 8421:1 8424:1 8433:2 8445:3 8455:1 8459:1 8461:1 8480:2 8486:1 8492:1 8514:2 8541:1 8550:1 8553:1 8557:1 8558:3 8588:1 8591:1 8592:1 8593:1 8605:2 8609:2 8653:1 8663:1 8681:1 8696:1 8722:1 8723:1 8734:1 8737:1 8742:1 8765:1 8768:1 8775:1 8777:1 8778:2 8788:1 8797:1 8815:1 8816:1 8835:21 8843:1 8844:1 8865:3 8868:2 8870:1 8935:4 8937:1 8938:1 8943:1 8969:1 8974:1 8990:2 8994:2 8996:1 9001:1 9019:1 9030:1 9031:4 9038:3 9044:1 9065:2 9066:1 9069:1 9076:1 9080:1 9088:1 9090:1 9104:1 9109:1 9110:1 9128:1 9129:1 9139:2 9141:1 9142:1 9154:1 9201:1 9204:1 9205:1 9209:1 9211:1 9216:1 9239:1 9242:1 9255:5 9267:2 9271:3 9291:1 9302:1 9312:1 9319:2 9323:1 9324:1 9340:1 9345:1 9365:2 9393:1 9404:1 9436:1 9437:1 9449:1 9450:1 9460:1 9485:1 9486:1 9487:1 9501:1 9510:1 9533:1 9536:1 9537:1 9541:3 9577:2 9586:1 9594:2 9606:1 9613:1 9618:1 9643:1 9644:1 9655:1 9661:1 9662:5 9663:1 9668:1 9670:1 9675:1 9687:1 9695:1 9697:1 9708:5 9719:1 9732:1 9740:1 9759:1 9768:9 9769:5 9778:1 9784:2 9794:2 9830:3 9844:1 9849:1 9853:2 9872:1 9878:1 9882:2 9884:2 9886:3 9888:2 9898:1 9907:1 9919:1 9928:1 9950:1 9960:2 9963:1 9969:1 9972:5 9974:1 9996:3 9999:2 10006:1 10021:4 10050:1 10064:1 10080:1 10089:1 10111:3 10122:3 10128:1 10142:1 10147:1 10156:1 10159:1 10183:1 10197:1 10201:1 10211:1 10220:7 10226:2 10264:3 10283:1 10284:1 10298:3 10302:1 10330:1 10358:1 10363:1 10365:3 10366:3 10369:2 10374:1 10399:1 10406:1 10408:1 10437:1 10439:1 10447:1 10458:1 10494:2 10517:1 10530:2 10542:1 10554:1 10557:1 10558:1 10576:1 10587:1 10603:1 10606:1 10611:1 10612:1 10626:1 10630:1 10657:1 10663:1 10665:1 10670:1 10674:5 10690:3 10702:4 10707:2 10717:1 10738:2 10762:3 10764:1 10813:1 10818:2 10835:1 10841:1 10854:1 10861:3 10864:1 10901:1 10907:1 10911:12 10913:1 10914:2 10919:2 10927:1 10948:2 10949:1 10969:1 10973:1 10980:1 10991:1 11018:1 11040:1 11047:2 11049:1 11074:1 11094:1 11109:1 11110:1 11112:1 11115:1 11117:1 11121:4 11129:1 11131:1 11136:2 11169:1 11181:4 11185:1 11187:1 11189:1 11194:1 11196:2 11207:1 11210:1 11213:1 11224:4 11244:1 11265:1 11277:1 11283:1 11284:1 11291:1 11298:1 11300:1 11303:2 11306:1 11319:2 11330:1 11337:1 11348:2 11360:1 11362:1 11365:1 11373:7 11376:4 11389:2 11390:3 11395:1 11402:1 11417:1 11419:2 11432:1 11447:2 11462:4 11463:2 11483:1 11485:1 11486:1 11498:3 11524:1 11541:1 11544:1 11550:3 11562:1 11573:5 11588:1 11597:1 11605:1 11609:1 11624:2 11744:1 11750:1 11767:1 11770:1 11791:1 11792:2 11796:2 11800:1 11801:2 11807:1 11811:1 11815:1 11816:1 11817:5 11819:5 11820:1 11827:1 11834:2 11838:2 11842:1 11845:3 11849:1 11851:1 11868:3 11872:1 11877:1 11901:2 11910:1 11935:1 11937:1 11939:2 11983:1 11986:1 12007:1 12021:1 12023:1 12026:1 12061:1 12094:1 12102:1 12118:1 12133:1 12137:2 12151:1 12156:1 12179:1 12192:1 12195:1 12202:2 12219:3 12222:2 12227:1 12241:1 12245:2 12247:1 12249:1 12250:2 12260:3 12262:1 12263:1 12264:2 12269:1 12272:1 12278:1 12285:3 12287:2 12293:1 12324:14 12325:1 12356:1 12365:1 12369:4 12383:2 12384:2 12391:1 12396:1 12416:1 12418:2 12429:2 12430:1 12441:1 12442:2 12449:2 12450:1 12464:1 12483:1 12497:1 12501:1 12528:1 12544:1 12566:1 12574:3 12575:1 12579:1 12584:1 12587:1 12592:3 12596:1 12597:2 12599:1 12603:1 12604:1 12611:1 12614:1 12624:1 12636:1 12640:1 12641:1 12643:1 12649:2 12652:4 12655:2 12683:1 12718:1 12741:2 12745:1 12760:1 12783:1 12799:1 12801:1 12808:1 12818:1 12829:1 12855:1 12856:1 12863:5 12872:1 12883:2 12886:1 12887:2 12901:1 12907:1 12918:1 12925:2 12931:1 12955:2 12982:1 12983:1 13003:1 13025:2 13030:1 13043:1 13047:1 13052:1 13059:2 13070:1 13094:1 13118:1 13125:1 13127:1 13132:5 13133:2 13134:2 13149:1 13155:2 13168:1 13172:1 13174:1 13182:1 13195:1 13235:1 13237:2 13240:1 13264:1 13271:1 13280:1 13291:1 13303:1 13310:1 13327:1 13332:1 13338:1 13427:3 13456:2 13473:1 13493:1 13502:1 13515:1 13531:1 13533:2 13534:1 13552:3 13566:1 13569:1 13582:1 13591:1 13601:1 13626:1 13654:1 13663:1 13666:1 13669:1 13670:2 13677:1 13718:12 13723:3 13737:2 13762:1 13776:1 13777:2 13785:2 13805:1 13811:1 13817:1 13818:1 13828:1 13838:2 13839:1 13847:1 13881:1 13900:1 13906:1 13913:1 13920:2 13927:1 13939:2 13959:1 13975:1 13978:1 13998:1 14000:1 14010:2 14011:1 14020:1 14026:1 14027:1 14048:1 14058:1 14064:3 14084:1 14085:1 14110:1 14129:1 14146:1 14149:1 14176:1 14199:1 14201:1 14204:2 14208:4 14224:1 14230:2 14240:2 14245:1 14262:6 14279:1 14284:2 14307:1 14314:4 14316:1 14330:1 14352:1 14354:1 14355:1 14356:1 14369:5 14370:1 14381:2 14385:1 14403:1 14408:1 14416:1 14417:1 14422:2 14429:1 14437:1 14438:1 14453:15 14462:1 14466:1 14503:2 14504:1 14510:2 14525:1 14532:1 14550:1 14560:1 14561:1 14603:3 14630:1 14635:6 14641:1 14658:1 14670:1 14673:1 14695:2 14722:1 14732:1 14734:1 14746:2 14748:1 14749:1 14760:1 14762:1 14769:6 14770:1 14773:1 14774:1 14775:1 14777:2 14778:1 14782:7 14783:2 14810:1 14811:1 14814:1 14818:1 14846:1 14873:1 14894:1 14906:1 14921:1 14948:1 14967:3 14968:1 15004:1 15010:1 15013:1 15015:1 15022:1 15025:1 15032:1 15033:1 15046:1 15049:1 15074:2 15079:1 15080:1 15094:1 15098:7 15111:1 15121:1 15123:2 15128:1 15163:1 15174:1 15175:1 15185:1 15191:1 15202:1 15210:1 15213:1 15215:1 15236:1 15265:1 15266:1 15278:1 15283:1 15293:1 15300:1 15312:1 15315:1 15353:1 15362:2 15379:4 15395:1 15401:1 15414:1 15434:1 15446:1 15468:1 15488:1 15514:1 15517:3 15518:3 15527:1 15540:1 15541:2 15544:1 15550:2 15552:1 15573:1 15581:1 15592:2 15625:1 15651:1 15675:2 15680:1 15683:1 15698:1 15703:1 15705:1 15707:1 15712:2 15714:1 15725:3 15729:2 15782:1 15786:2 15790:1 15804:1 15841:1 15842:2 15844:1 15851:1 15870:1 15880:1 15883:1 15922:3 15928:1 15938:1 15941:2 15972:1 15973:1 15978:1 16032:1 16035:2 16073:2 16078:2 16079:1 16081:1 16100:1 16120:1 16157:1 16160:3 16168:1 16188:1 16189:1 16199:1 16231:1 16269:1 16302:1 16308:1 16314:2 16351:1 16406:1 16424:2 16435:1 16442:1 16464:1 16476:1 16479:1 16481:2 16492:1 16511:2 16516:3 16520:1 16545:1 16551:1 16553:1 16567:2 16585:2 16592:1 16614:1 16627:2 16641:1 16652:1 16687:1 16701:4 16720:3 16731:1 16739:2 16752:2 16777:1 16782:1 16790:1 16807:1 16810:1 16815:2 16869:1 16883:1 16884:1 16897:2 16905:1 16909:1 16913:4 16914:1 16918:1 16920:1 16926:1 16940:3 16941:1 16945:1 16948:1 16962:1 16968:1 16980:1 16999:2 17008:2 17052:2 17055:1 17062:1 17079:3 17089:1 17104:1 17105:3 17120:1 17135:2 17151:1 17157:1 17198:1 17200:1 17230:1 17234:1 17239:14 17241:1 17256:1 17260:3 17262:1 17285:3 17327:1 17344:1 17349:2 17360:2 17363:1 17380:2 17383:1 17392:2 17401:1 17428:1 17435:1 17442:1 17444:1 17445:1 17454:2 17456:1 17482:1 17486:3 17504:1 17511:1 17516:5 17518:2 17519:2 17520:5 17521:1 17523:1 17527:2 17529:1 17531:2 17532:3 17537:1 17538:1 17540:1 17546:1 17555:1 17592:1 17598:1 17607:1 17627:1 17652:1 17655:1 17656:1 17692:2 17699:1 17708:2 17709:1 17729:1 17762:1 17774:1 17776:1 17804:1 17808:1 17827:1 17868:1 17872:1 17874:1 17884:2 17899:1 17902:2 17915:2 17916:1 17925:1 17930:5 17937:1 17941:2 17954:1 17965:1 17966:1 17972:2 17975:2 17980:2 17985:1 17994:3 17998:2 18008:2 18016:1 18026:1 18071:11 18073:1 18086:1 18088:1 18095:1 18096:4 18102:1 18171:1 18172:1 18183:2 18191:1 18201:3 18211:1 18212:1 18225:1 18233:1 18236:2 18286:2 18307:5 18308:1 18322:1 18340:1 18341:1 18344:1 18361:1 18379:1 18423:2 18424:3 18425:1 18438:1 18440:1 18443:1 18453:1 18491:1 18494:1 18514:1 18517:1 18530:2 18533:1 18548:1 18565:2 18577:2 18585:1 18587:1 18597:1 18617:1 18662:1 18670:1 18712:1 18731:1 18734:1 18755:1 18760:1 18775:2 18779:1 18791:3 18796:1 18801:1 18810:3 18814:2 18815:2 18819:2 18825:8 18852:1 18872:1 18877:2 18880:1 18885:1 18887:1 18892:1 18898:1 18905:1 18909:1 18910:1 18962:1 18982:1 18983:1 19004:3 19009:1 19023:1 19033:2 19047:1 19050:1 19054:1 19061:1 19070:1 19071:1 19101:1 19102:1 19103:1 19123:1 19130:1 19134:2 19166:1 19171:1 19202:1 19207:1 19226:2 19231:1 19233:1 19236:1 19243:1 19246:1 19267:1 19299:1 19337:1 19376:1 19378:1 19390:1 19391:2 19411:2 19450:1 19514:2 19515:1 19525:1 19538:1 19543:1 19553:1 19575:1 19593:1 19600:1 19619:1 19631:1 19651:1 19656:3 19661:1 19670:1 19709:1 19719:11 19750:1 19780:1 19806:1 19826:13 19832:1 19833:3 19834:1 19843:1 19846:5 19847:1 19863:1 19872:1 19876:2 19897:1 19915:2 19948:4 19971:2 19979:1 19988:1 19990:1 19993:1 20016:1 20020:1 20023:2 20041:2 20047:1 20053:2118 20064:1 20070:1 20085:1 20086:1 20126:1 20132:1 20134:1 20160:2 20217:1 20218:1 20229:1 20241:1 20262:1 20264:1 20267:1 20271:2 20274:5 20275:2 20292:1 20294:1 20298:1 20308:1 20320:1 20338:1 20350:1 20373:1 20375:1 20420:1 20422:3 20425:2 20431:1 20469:1 20482:1 20490:3 20528:2 20545:1 20546:1 20557:2 20558:1 20567:1 20587:1 20605:2 20618:1 20630:1 20642:1 20647:2 20651:2 20660:1 20669:1 20679:1 20681:1 20701:2 20702:2 20715:2 20721:1 20724:1 20732:2 20757:2 20759:1 20768:1 20774:1 20778:1 20781:2 20787:8 20792:1 20813:1 20815:1 20833:1 20838:2 20839:1 20848:1 20864:5 20871:1 20882:1 20884:1 20917:1 20926:4 20933:1 20935:2 20941:1 20943:2 20956:4 20974:1 20979:1 20999:1 21005:3 21013:2 21014:1 21022:2 21061:3 21062:2 21065:1 21075:1 21089:1 21093:1 21095:2 21098:2 21105:1 21106:1 21109:1 21148:1 21149:1 21150:1 21152:1 21157:1 21168:1 21202:1 21219:1 21220:2 21237:1 21239:2 21241:1 21242:1 21249:1 21250:1 21254:1 21277:1 21281:1 21283:1 21288:1 21295:1 21302:1 21313:1 21320:1 21322:1 21330:1 21331:1 21341:1 21342:1 21371:1 21376:2 21379:4 21385:1 21387:3 21446:1 21451:1 21453:1 21463:1 21466:1 21475:1 21478:1 21482:2 21483:1 21486:2 21501:1 21503:1 21507:2 21511:2 21518:1 21519:2 21523:2 21524:1 21544:4 21555:2 21571:1 21573:1 21583:1 21587:1 21590:1 21591:4 21613:1 21614:1 21627:1 21628:1 21633:1 21652:1 21654:2 21673:1 21676:1 21678:1 21699:1 21711:3 21712:16 21713:2 21719:1 21727:4 21733:1 21756:1 21759:1 21789:1 21798:1 21813:1 21818:1 21822:1 21828:1 21853:1 21860:1 21861:1 21881:1 21887:1 21897:1 21940:4 21960:2 21982:2 21990:1 22001:2 22015:1 22018:1 22032:2 22066:7 22069:1 22071:2 22078:1 22085:1 22119:1 22120:1 22128:1 22140:1 22174:1 22185:3 22202:3 22221:1 22225:1 22228:1 22231:1 22235:1 22236:1 22244:1 22247:2 22282:2 22288:3 22298:2 22300:2 22314:2 22319:2 22323:1 22325:1 22326:1 22337:2 22370:4 22390:2 22398:1 22417:2 22421:1 22432:1 22452:2 22466:1 22473:1 22478:2 22488:5 22492:1 22503:1 22508:2 22519:3 22546:2 22554:1 22567:1 22590:1 22591:1 22592:1 22602:1 22615:2 22621:2 22624:2 22628:1 22632:2 22635:1 22643:2 22665:1 22671:2 22685:2 22699:2 22715:1 22716:1 22723:1 22724:1 22726:4 22741:1 22750:2 22755:1 22758:1 22760:1 22768:1 22769:1 22773:2 22774:1 22779:1 22790:1 22793:1 22811:1 22815:1 22838:1 22846:1 22855:1 22857:1 22862:2 22866:2 22879:1 22893:1 22939:1 22996:1 23014:2 23017:1 23026:2 23027:2 23031:1 23032:1 23038:1 23039:1 23043:1 23056:1 23063:2 23070:3 23071:1 23081:1 23090:1 23104:1 23121:1 23131:1 23137:1 23158:1 23159:1 23181:2 23183:1 23184:1 23185:1 23190:1 23194:1 23195:2 23199:1 23200:1 23210:1 23217:2 23222:2 23228:2 23229:1 23236:2 23238:1 23249:1 23251:2 23262:1 23271:11 23281:1 23282:2 23288:2 23298:1 23313:1 23326:1 23337:1 23345:1 23347:1 23349:1 23352:1 23355:1 23377:1 23410:2 23418:1 23426:2 23429:1 23434:1 23437:4 23439:3 23442:1 23452:2 23466:1 23468:1 23475:1 23477:1 23497:1 23498:1 23500:2 23502:3 23503:2 23537:1 23540:1 23576:1 23605:3 23613:1 23614:4 23616:3 23617:3 23619:1 23620:1 23625:1 23628:2 23631:1 23632:2 23645:5 23656:1 23659:1 23674:1 23682:1 23693:2 23697:2 23700:2 23721:1 23749:1 23778:2 23783:2 23796:1 23801:1 23811:1 23823:1 23850:1 23853:1 23858:1 23859:1 23862:1 23865:1 23867:1 23882:1 23886:1 23887:1 23897:1 23900:1 23912:1 23915:1 23922:5 23929:1 23939:1 23940:3 23943:3 23946:1 23952:1 23969:1 23977:1 23982:1 23990:2 23993:1 23997:1 23998:1 24001:1 24002:4 24010:2 24016:1 24026:2 24030:8 24033:1 24037:1 24044:1 24046:1 24050:1 24053:1 24073:1 24074:1 24108:7 24111:1 24126:1 24150:1 24162:1 24172:4 24173:1 24175:1 24178:1 24184:1 24197:1 24221:1 24222:1 24248:1 24250:2 24290:1 24291:6 24294:1 24305:3 24309:3 24319:1 24325:1 24329:1 24332:1 24346:1 24349:3 24361:1 24370:1 24371:2 24376:3 24386:1 24396:1 24408:1 24426:1 24432:1 24447:1 24451:1 24479:1 24486:1 24495:1 24499:1 24500:1 24502:1 24517:1 24531:2 24549:8 24550:2 24558:1 24568:2 24574:1 24578:2 24585:4 24598:3 24608:2 24624:1 24661:1 24671:1 24681:1 24682:1 24685:2 24688:2 24706:1 24708:1 24742:1 24744:1 24746:1 24749:1 24750:1 24752:1 24762:1 24774:1 24776:1 24789:1 24795:2 24799:1 24806:2 24808:1 24814:1 24851:3 24883:3 24899:1 24940:1 24969:1 24996:3 25000:2 25008:5 25018:2 25027:1 25033:1 25036:3 25039:1 25051:2 25054:2 25056:2 25066:1 25080:4 25122:1 25138:1 25160:1 25172:1 25184:1 25196:1 25199:2 25230:1 25232:1 25240:2 25246:1 25259:2 25268:1 25273:2 25283:1 25286:1 25298:1 25304:1 25314:1 25315:2 25318:2 25320:3 25329:1 25331:1 25343:1 25366:3 25368:2 25371:2 25376:1 25388:1 25391:1 25396:1 25447:1 25450:4 25453:1 25458:1 25462:1 25469:1 25471:1 25472:2 25474:1 25477:1 25478:1 25479:1 25481:1 25511:1 25535:1 25537:1 25549:1 25618:2 25633:1 25652:2 25715:1 25718:2 25727:1 25729:1 25739:1 25754:1 25772:1 25776:1 25786:1 25793:1 25803:1 25840:1 25851:1 25861:1 25885:1 25898:1 25900:2 25909:1 25937:2 25940:1 25963:2 25977:3 25989:1 26010:1 26021:1 26022:7 26041:1 26048:1 26055:3 26075:1 26076:1 26081:1 26086:4 26095:1 26097:1 26098:1 26103:1 26111:1 26135:3 26157:2 26161:1 26167:1 26168:1 26214:1 26250:1 26253:1 26288:1 26291:1 26292:1 26300:1 26304:3 26305:2 26309:1 26311:1 26313:1 26317:2 26318:1 26319:1 26320:1 26356:5 26365:1 26373:1 26374:1 26376:1 26380:1 26391:1 26395:1 26397:1 26399:1 26420:9 26425:5 26426:1 26445:1 26447:2 26456:1 26457:1 26459:1 26473:1 26477:1 26479:1 26483:1 26488:3 26495:2 26512:1 26530:1 26536:1 26616:1 26648:2 26651:1 26659:1 26668:1 26669:1 26674:2 26683:2 26687:1 26690:1 26696:2 26698:2 26703:1 26734:1 26736:1 26749:1 26756:1 26758:2 26766:1 26767:1 26776:1 26787:1 26794:1 26803:3 26828:2 26833:1 26836:1 26847:1 26857:2 26862:1 26875:2 26880:1 26895:1 26901:1 26929:14 26930:2 26942:1 26964:1 26973:1 26974:1 26986:1 27000:1 27012:1 27019:2 27024:1 27029:1 27048:2 27051:1 27059:1 27060:1 27078:1 27083:1 27088:1 27092:1 27094:1 27112:1 27123:1 27164:1 27192:10 27193:1 27218:1 27230:1 27233:2 27234:1 27253:1 27265:1 27272:1 27290:1 27298:1 27304:1 27312:6 27315:1 27338:1 27340:2 27341:1 27368:1 27375:1 27381:2 27387:1 27393:1 27428:1 27443:1 27448:2 27450:1 27465:2 27484:1 27486:1 27498:1 27514:1 27577:1 27579:1 27590:1 27603:1 27606:1 27619:1 27622:1 27627:2 27633:3 27636:1 27643:1 27645:1 27646:1 27657:1 27662:1 27669:1 27673:1 27701:4 27711:1 27713:1 27716:1 27728:1 27729:6 27746:1 27748:2 27750:1 27765:1 27773:1 27784:2 27786:1 27793:1 27796:1 27820:1 27854:1 27873:2 27889:1 27927:1 27933:1 27947:1 27970:1 27977:1 28000:1 28038:2 28048:1 28049:2 28064:1 28065:1 28071:1 28072:1 28076:1 28092:1 28106:3 28131:1 28142:4 28153:1 28186:1 28191:1 28200:2 28202:1 28210:2 28211:1 28227:2 28228:14 28239:2 28265:1 28268:1 28282:1 28291:2 28303:1 28304:1 28305:1 28317:1 28322:1 28326:1 28328:1 28337:1 28343:1 28356:4 28360:3 28368:3 28371:2 28373:4 28375:1 28403:1 28410:1 28463:1 28481:1 28497:1 28500:1 28501:2 28502:1 28515:1 28531:2 28551:2 28564:1 28568:1 28569:1 28572:1 28573:2 28594:6 28595:1 28596:1 28605:1 28609:1 28618:1 28627:1 28630:1 28637:1 28667:1 28671:1 28673:2 28691:1 28699:1 28727:1 28744:1 28768:1 28777:1 28788:2 28814:1 28816:2 28817:1 28846:1 28851:1 28857:1 28860:1 28863:5 28878:1 28883:1 28884:1 28921:1 28925:1 28931:1 28932:1 28945:1 28949:1 28954:2 28963:1 28983:1 28986:2 28988:2 28998:3 29014:1 29034:1 29043:1 29045:1 29050:2 29078:1 29086:2 29093:1 29095:1 29132:1 29144:2 29158:1 29163:3 29166:1 29171:1 29172:1 29182:1 29187:1 29191:2 29210:1 29218:1 29227:2 29238:2 29241:1 29244:1 29247:1 29259:2 29260:1 29281:1 29295:1 29302:1 29312:1 29314:1 29318:2 29322:1 29354:1 29373:5 29375:1 29377:2 29401:1 29404:1 29406:1 29438:1 29446:2 29453:1 29460:1 29465:2 29473:2 29482:1 29484:1 29494:2 29501:1 29508:1 29514:1 29523:1 29524:1 29529:1 29530:1 29531:1 29536:1 29543:2 29546:1 29556:2 29566:2 29571:1 29574:1 29579:1 29580:1 29613:1 29615:1 29630:1 29641:3 29663:2 29688:1 29709:1 29766:2 29798:1 29804:1 29805:2 29831:2 29849:1 29853:1 29855:2 29862:5 29879:1 29883:1 29891:1 29921:5 29952:1 29969:1 30009:1 30019:2 30034:2 30039:1 30051:1 30063:1 30082:1 30109:1 30110:2 30114:1 30133:2 30134:3 30135:1 30138:1 30146:2 30150:1 30151:1 30152:2 30169:1 30171:1 30180:1 30181:5 30196:1 30203:1 30205:1 30220:2 30226:2 30228:2 30229:1 30231:1 30235:1 30238:5 30244:1 30251:1 30252:1 30261:3 30263:1 30275:3 30279:1 30283:2 30309:1 30316:2 30332:1 30336:1 30354:1 30356:1 30362:1 30377:1 30392:3 30397:4 30406:4 30411:1 30438:4 30453:1 30457:1 30462:1 30470:1 30471:1 30484:1 30491:1 30493:1 30495:1 30525:1 30527:3 30532:1 30537:2 30571:1 30574:1 30583:1 30604:1 30614:1 30629:1 30634:1 30635:1 30645:1 30646:2 30651:1 30656:1 30670:1 30673:3 30709:1 30711:1 30717:7 30729:1 30730:1 30735:2 30750:1 30786:5 30865:1 30871:1 30882:1 30916:1 30926:1 31003:1 31028:2 31043:1 31046:1 31047:2 31048:1 31053:2 31055:3 31068:1 31072:1 31074:1 31082:1 31086:1 31092:1 31103:1 31136:1 31143:1 31152:1 31184:1 31194:3 31204:2 31233:2 31239:2 31257:1 31259:1 31272:1 31284:1 31296:1 31301:1 31308:3 31309:1 31313:2 31343:1 31345:1 31348:4 31351:2 31377:1 31382:1 31405:1 31413:1 31422:1 31431:1 31443:1 31467:1 31473:1 31478:3 31484:1 31487:1 31505:1 31516:2 31519:1 31542:1 31577:2 31580:2 31599:1 31600:1 31606:1 31608:3 31615:3 31617:3 31618:1 31623:1 31632:1 31677:5 31682:1 1 13:1 40:1 46:1 62:1 65:1 72:1 106:1 141:1 155:1 156:3 161:1 167:2 173:1 188:1 190:3 207:5 226:1 231:1 244:1 263:1 274:1 278:7 287:1 297:3 307:1 328:2 354:1 371:4 373:3 378:3 387:3 391:1 397:2 416:2 430:1 438:1 454:5 458:5 471:1 490:1 522:1 526:1 527:1 561:2 588:1 596:1 600:2 614:1 620:1 634:3 645:1 659:1 665:1 667:2 674:1 678:1 693:2 765:1 767:1 783:1 815:1 817:1 826:1 829:2 854:1 856:2 863:1 871:1 900:5 906:1 911:1 917:1 918:4 927:1 942:14 943:4 952:3 975:3 984:1 992:1 993:4 995:2 998:7 1000:1 1001:2 1004:3 1018:2 1033:1 1042:5 1044:4 1055:1 1095:2 1104:1 1121:1 1142:1 1159:1 1177:1 1178:1 1198:1 1210:2 1214:1 1217:1 1275:3 1277:2 1283:1 1285:1 1287:1 1295:2 1298:1 1299:1 1312:1 1315:1 1325:1 1326:1 1328:1 1332:2 1351:1 1356:2 1380:1 1386:2 1389:1 1408:1 1417:1 1429:1 1432:1 1433:1 1451:1 1466:1 1468:1 1470:1 1485:1 1500:1 1527:1 1530:1 1540:1 1541:2 1557:1 1564:1 1565:2 1584:1 1587:1 1595:3 1602:1 1613:1 1629:1 1632:2 1647:1 1654:1 1674:1 1686:4 1694:7 1696:2 1705:1 1713:1 1743:2 1751:1 1754:1 1763:1 1767:1 1783:1 1786:1 1791:2 1799:1 1804:2 1813:1 1818:1 1820:1 1825:1 1835:1 1839:2 1850:1 1854:1 1863:1 1867:1 1871:1 1881:1 1882:1 1886:2 1897:1 1905:1 1914:1 1920:2 1923:1 1944:1 1945:5 1950:1 1954:1 1965:1 1971:1 1974:3 1978:1 1979:2 1993:2 1994:6 2027:4 2030:2 2043:1 2054:1 2055:1 2060:2 2065:4 2070:1 2071:1 2074:1 2103:1 2113:1 2121:2 2127:2 2128:1 2129:1 2143:2 2146:1 2192:1 2198:8 2201:1 2207:1 2210:1 2214:1 2215:2 2220:1 2222:2 2226:1 2230:2 2236:1 2243:1 2247:1 2255:1 2272:1 2283:1 2296:2 2300:1 2301:1 2306:2 2308:1 2323:1 2335:1 2349:1 2354:11 2361:1 2370:1 2376:1 2379:1 2393:1 2423:2 2436:3 2439:1 2450:1 2458:1 2464:2 2477:2 2478:2 2482:2 2485:5 2487:1 2489:1 2491:2 2494:2 2495:2 2497:1 2499:1 2501:1 2502:4 2506:1 2508:4 2509:3 2514:5 2515:7 2517:1 2528:1 2562:1 2565:1 2568:1 2571:3 2576:1 2593:2 2595:1 2603:1 2617:1 2618:1 2623:1 2631:1 2637:1 2639:1 2657:1 2671:1 2695:1 2706:1 2718:1 2722:1 2739:3 2751:2 2752:1 2764:1 2765:1 2771:1 2776:1 2779:1 2800:3 2803:2 2806:1 2808:6 2812:1 2813:1 2814:1 2824:1 2827:1 2835:1 2849:4 2851:1 2852:1 2857:1 2873:2 2881:1 2884:1 2885:1 2897:6 2906:1 2911:1 2913:2 2916:8 2924:4 2928:1 2937:2 2939:1 2943:1 2945:2 2947:1 2950:3 2951:2 2967:2 2981:1 2982:2 2987:3 2991:1 3029:1 3034:1 3035:2 3036:2 3041:1 3050:3 3052:1 3056:1 3060:4 3065:2 3069:1 3085:1 3089:1 3096:1 3127:2 3128:1 3146:3 3152:1 3157:1 3159:14 3178:3 3180:1 3185:1 3186:1 3190:1 3199:2 3203:2 3206:1 3224:17 3225:1 3246:2 3249:3 3269:1 3280:1 3317:1 3325:1 3332:1 3338:1 3351:1 3352:5 3371:3 3377:1 3383:1 3391:1 3410:1 3426:1 3438:1 3440:1 3442:1 3447:1 3457:2 3469:1 3490:2 3510:3 3524:1 3534:1 3550:1 3551:2 3579:1 3580:2 3581:1 3590:1 3608:6 3626:1 3643:1 3663:1 3695:1 3706:2 3719:1 3749:1 3751:1 3753:1 3774:1 3781:1 3783:1 3784:1 3788:1 3799:1 3804:1 3829:1 3844:1 3851:1 3861:1 3868:2 3873:1 3897:1 3898:12 3900:1 3909:1 3912:2 3914:2 3915:2 3937:1 3942:1 3943:1 3947:1 3962:1 3998:1 4000:1 4001:1 4008:1 4013:3 4021:2 4038:1 4062:1 4096:1 4099:1 4101:1 4106:2 4110:1 4113:2 4117:1 4129:1 4149:1 4152:1 4156:2 4163:1 4167:1 4179:2 4181:1 4186:1 4195:1 4200:3 4215:1 4220:1 4221:1 4226:4 4229:1 4236:2 4241:2 4242:1 4253:3 4272:2 4289:1 4293:2 4309:1 4313:2 4315:2 4320:1 4340:1 4348:6 4349:4 4356:2 4393:1 4395:2 4398:1 4403:1 4417:1 4422:1 4426:2 4432:1 4448:1 4464:2 4470:1 4471:1 4476:1 4500:2 4526:2 4537:1 4547:3 4551:1 4552:1 4557:2 4559:1 4563:1 4567:2 4581:1 4587:1 4594:1 4610:1 4624:1 4629:1 4647:1 4649:1 4669:7 4691:3 4696:1 4708:1 4712:1 4717:1 4720:2 4732:2 4749:2 4759:1 4779:1 4785:1 4787:2 4808:3 4834:1 4843:1 4844:1 4850:1 4869:2 4893:1 4899:1 4902:1 4904:1 4910:1 4911:3 4913:1 4922:1 4938:1 4959:3 4970:1 4983:5 5001:1 5006:1 5034:4 5044:2 5056:1 5057:1 5062:3 5066:1 5085:4 5105:2 5131:1 5135:2 5138:3 5154:3 5167:1 5174:1 5187:1 5189:2 5200:1 5216:1 5230:1 5249:1 5267:13 5270:1 5279:1 5282:1 5283:1 5297:1 5307:1 5316:1 5329:1 5339:1 5350:1 5404:2 5429:1 5430:1 5431:4 5433:7 5434:3 5436:1 5440:2 5441:2 5442:1 5445:1 5446:1 5449:6 5450:4 5453:1 5454:2 5456:7 5464:2 5465:4 5468:1 5469:1 5517:1 5532:1 5548:2 5557:1 5575:1 5580:1 5592:1 5614:1 5625:1 5638:1 5658:1 5668:1 5704:1 5720:1 5731:2 5765:1 5771:1 5801:3 5807:2 5813:1 5847:1 5850:1 5875:3 5889:1 5890:1 5915:1 5917:1 5937:1 5943:1 5953:2 5959:1 5972:1 5980:1 5988:1 5994:1 6017:1 6029:1 6057:1 6060:1 6100:2 6110:1 6115:2 6118:1 6121:1 6133:5 6134:1 6136:2 6139:1 6143:1 6144:2 6156:1 6157:1 6181:1 6188:3 6200:2 6202:1 6204:1 6219:6 6223:1 6224:1 6237:2 6289:1 6308:1 6320:1 6327:1 6330:1 6337:1 6345:1 6349:1 6351:1 6352:1 6361:2 6366:1 6387:1 6400:1 6427:1 6433:2 6444:2 6455:1 6466:2 6468:1 6488:6 6494:1 6495:1 6499:1 6502:2 6510:1 6512:1 6514:1 6515:1 6516:1 6556:1 6560:1 6561:1 6569:1 6571:1 6573:1 6579:1 6581:1 6582:1 6586:12 6600:1 6603:1 6624:3 6631:1 6655:1 6668:1 6684:3 6693:1 6706:1 6709:6 6713:1 6720:1 6769:1 6775:1 6799:1 6806:1 6808:1 6809:1 6814:2 6816:3 6817:1 6822:1 6823:1 6825:2 6832:2 6834:4 6835:3 6884:1 6931:1 6949:1 6990:1 6993:4 6996:2 7008:1 7016:1 7040:1 7052:1 7057:1 7061:1 7071:1 7079:1 7097:1 7106:1 7131:1 7145:2 7153:2 7167:1 7174:1 7175:1 7182:1 7227:1 7241:1 7251:2 7253:1 7256:1 7260:1 7265:1 7284:7 7292:2 7295:2 7298:1 7309:1 7315:1 7326:2 7348:1 7357:1 7360:1 7362:1 7403:1 7405:3 7421:2 7429:1 7435:2 7454:1 7460:1 7465:1 7473:1 7478:2 7504:1 7522:1 7529:2 7535:1 7550:1 7561:1 7569:1 7574:6 7578:2 7598:1 7611:1 7615:1 7621:1 7624:3 7625:2 7632:1 7636:4 7638:1 7640:1 7645:5 7648:1 7651:1 7656:1 7679:1 7680:1 7681:1 7684:1 7695:1 7701:1 7726:1 7729:1 7737:4 7747:3 7759:1 7771:1 7792:2 7795:1 7796:1 7798:1 7805:1 7812:1 7827:1 7829:1 7835:1 7839:1 7846:1 7853:1 7869:1 7919:1 7925:1 7930:1 7933:2 7971:1 7984:1 7985:2 7986:5 7991:2 7997:1 7999:1 8004:1 8006:3 8010:1 8032:4 8034:1 8036:2 8037:1 8061:1 8064:3 8074:1 8081:1 8093:1 8108:2 8110:1 8117:1 8127:1 8131:1 8134:1 8140:1 8152:1 8153:1 8160:1 8161:1 8168:1 8175:1 8178:1 8190:1 8198:1 8218:3 8235:3 8236:6 8250:2 8257:4 8258:1 8262:2 8263:3 8278:1 8287:4 8288:2 8290:1 8303:41 8306:2 8315:1 8323:1 8326:7 8327:5 8331:2 8367:1 8374:1 8375:1 8384:1 8397:1 8404:3 8405:2 8411:1 8421:1 8424:1 8433:2 8445:3 8455:1 8459:1 8461:1 8480:2 8486:1 8492:1 8514:2 8541:1 8550:1 8553:1 8557:1 8558:3 8588:1 8591:1 8592:1 8593:1 8605:2 8609:2 8653:1 8663:1 8681:1 8696:1 8722:1 8723:1 8734:1 8737:1 8742:1 8765:1 8768:1 8775:1 8777:1 8778:2 8788:1 8797:1 8815:1 8816:1 8835:22 8843:1 8844:1 8865:3 8868:2 8870:1 8935:5 8937:1 8938:1 8943:1 8969:1 8974:1 8990:2 8994:2 8996:1 9001:1 9019:1 9030:1 9031:4 9038:3 9044:1 9065:2 9066:1 9069:1 9076:1 9080:1 9088:1 9090:1 9104:1 9109:1 9110:1 9128:1 9129:1 9139:2 9141:1 9142:1 9154:2 9201:1 9204:1 9205:1 9209:1 9211:1 9216:1 9239:1 9242:2 9255:5 9267:2 9271:3 9291:1 9302:1 9312:1 9319:2 9323:1 9324:1 9340:1 9345:1 9365:2 9375:1 9393:1 9404:1 9436:1 9437:1 9449:1 9450:1 9460:1 9485:1 9486:1 9487:1 9501:2 9510:1 9533:1 9536:1 9537:1 9541:3 9577:3 9586:1 9594:2 9606:1 9613:1 9618:1 9643:1 9644:1 9655:1 9661:1 9662:6 9663:1 9668:1 9670:1 9675:1 9687:1 9695:1 9697:1 9708:6 9709:1 9719:1 9732:1 9740:1 9759:1 9768:10 9769:5 9778:1 9784:2 9794:2 9830:3 9844:1 9849:1 9853:2 9855:1 9872:1 9878:1 9882:2 9884:2 9886:3 9888:2 9898:1 9907:1 9919:1 9928:1 9950:1 9960:2 9963:1 9969:1 9972:5 9974:1 9996:3 9999:2 10006:1 10021:4 10050:1 10064:1 10080:1 10089:1 10111:3 10122:3 10128:1 10142:1 10147:1 10156:1 10159:1 10183:1 10197:1 10201:1 10211:1 10220:7 10226:2 10264:3 10283:1 10284:1 10298:3 10302:1 10330:1 10358:1 10363:1 10365:3 10366:3 10369:2 10374:1 10399:1 10406:1 10408:1 10437:1 10439:1 10447:1 10458:1 10494:2 10517:1 10530:2 10542:1 10554:1 10557:1 10558:1 10576:1 10587:1 10603:1 10606:1 10611:1 10612:1 10626:1 10630:1 10657:1 10663:1 10665:1 10670:1 10674:5 10690:4 10702:4 10707:2 10717:1 10738:2 10762:3 10764:1 10772:1 10813:1 10818:2 10835:1 10841:1 10854:1 10861:3 10864:1 10901:1 10907:1 10911:12 10913:1 10914:2 10919:2 10927:1 10948:2 10949:1 10969:1 10973:1 10980:1 10991:1 11018:1 11040:1 11047:2 11049:1 11074:1 11094:1 11109:1 11110:1 11112:1 11115:1 11117:1 11121:4 11129:1 11131:1 11136:2 11169:1 11181:4 11185:1 11187:1 11189:1 11194:1 11196:2 11207:1 11210:1 11213:1 11224:4 11244:1 11265:1 11277:1 11283:1 11284:1 11291:1 11298:1 11300:1 11303:2 11306:1 11319:2 11330:1 11336:1 11337:1 11345:1 11348:2 11355:1 11360:1 11362:1 11365:1 11373:7 11376:4 11389:2 11390:3 11395:1 11402:1 11413:1 11417:1 11419:2 11432:1 11447:2 11462:4 11463:2 11483:2 11485:1 11486:1 11498:3 11524:1 11541:1 11544:1 11550:3 11562:1 11573:5 11588:1 11597:1 11605:1 11609:1 11624:3 11664:1 11744:1 11750:1 11767:1 11770:1 11791:1 11792:2 11796:2 11800:1 11801:2 11807:1 11811:1 11815:1 11816:1 11817:5 11819:5 11820:1 11827:1 11834:2 11838:2 11842:1 11845:3 11849:1 11851:1 11868:3 11872:1 11877:1 11901:2 11910:1 11935:1 11937:1 11939:3 11983:1 11986:1 12007:1 12021:1 12023:1 12026:1 12061:1 12094:1 12102:1 12115:1 12118:1 12133:1 12137:2 12151:1 12156:1 12179:1 12192:1 12195:1 12202:2 12219:3 12222:2 12227:1 12241:1 12245:2 12247:1 12249:1 12250:2 12260:3 12262:1 12263:1 12264:2 12269:1 12272:1 12278:1 12285:3 12287:2 12293:1 12324:14 12325:1 12356:1 12365:1 12369:4 12383:2 12384:2 12391:2 12396:1 12416:1 12418:2 12429:2 12430:1 12441:1 12442:2 12449:2 12450:1 12464:1 12483:1 12497:1 12501:1 12528:1 12544:1 12566:1 12574:3 12575:1 12579:1 12584:1 12587:1 12592:3 12596:1 12597:2 12599:1 12603:1 12604:1 12611:1 12614:1 12624:1 12636:1 12640:1 12641:1 12643:1 12649:2 12652:5 12655:2 12683:1 12718:1 12741:2 12745:1 12760:1 12783:1 12799:1 12801:1 12808:1 12818:1 12829:1 12855:1 12856:1 12863:5 12872:1 12883:2 12886:1 12887:2 12901:1 12907:1 12918:1 12925:2 12931:1 12955:2 12971:2 12982:1 12983:2 13003:1 13025:2 13030:1 13043:1 13047:1 13052:1 13059:2 13070:1 13094:1 13118:1 13125:1 13127:1 13132:5 13133:2 13134:2 13149:1 13155:2 13168:1 13172:1 13174:1 13182:1 13195:1 13235:1 13237:2 13240:1 13264:1 13271:1 13280:1 13291:1 13303:1 13310:1 13327:1 13332:1 13338:1 13427:3 13456:2 13473:1 13493:1 13502:1 13515:1 13531:1 13533:2 13534:1 13552:3 13566:1 13569:1 13582:1 13591:1 13601:1 13626:1 13654:1 13663:1 13666:1 13669:1 13670:2 13677:1 13718:13 13723:3 13737:2 13762:1 13776:1 13777:2 13785:2 13805:1 13811:1 13817:1 13818:1 13828:1 13838:2 13839:1 13847:1 13881:1 13900:1 13906:1 13913:1 13920:2 13927:1 13939:2 13957:1 13959:1 13975:1 13978:1 13998:1 14000:1 14010:2 14011:1 14020:1 14026:1 14027:1 14048:1 14058:1 14064:3 14084:1 14085:1 14110:1 14129:1 14146:1 14149:1 14176:1 14199:1 14201:1 14204:2 14208:4 14224:1 14230:2 14240:2 14245:1 14262:6 14279:1 14284:2 14307:1 14314:4 14316:1 14330:1 14352:1 14354:1 14355:1 14356:1 14369:5 14370:1 14381:2 14385:1 14403:1 14408:1 14416:1 14417:1 14422:2 14429:1 14437:1 14438:1 14453:15 14462:1 14466:1 14503:2 14504:1 14510:2 14525:1 14532:1 14550:1 14560:1 14561:1 14603:3 14630:1 14635:6 14641:1 14658:1 14670:1 14673:1 14695:2 14722:1 14732:1 14734:1 14746:2 14748:1 14749:1 14760:1 14762:1 14769:6 14770:1 14773:1 14774:1 14775:1 14777:2 14778:1 14782:7 14783:2 14810:1 14811:1 14814:1 14818:1 14846:1 14873:1 14894:1 14906:1 14921:1 14948:1 14958:1 14967:3 14968:1 15004:1 15010:1 15013:1 15015:1 15022:1 15025:1 15032:1 15033:1 15046:1 15049:1 15074:2 15079:1 15080:1 15091:1 15094:1 15098:7 15111:1 15121:1 15123:2 15128:1 15163:1 15174:1 15175:1 15185:1 15191:1 15202:1 15210:1 15213:1 15215:1 15224:1 15236:1 15265:1 15266:1 15278:1 15283:1 15293:1 15300:1 15312:1 15315:1 15353:1 15362:2 15379:4 15395:1 15401:1 15414:1 15434:1 15446:1 15468:1 15488:1 15514:1 15517:3 15518:4 15527:1 15540:1 15541:2 15544:1 15550:2 15552:1 15570:1 15573:1 15581:1 15592:2 15625:1 15651:1 15675:2 15680:1 15683:1 15698:1 15703:1 15705:1 15707:1 15712:2 15714:1 15725:3 15729:2 15782:1 15786:2 15790:1 15804:1 15841:1 15842:2 15844:1 15851:1 15870:1 15880:1 15883:1 15922:3 15928:1 15938:1 15941:2 15972:1 15973:1 15978:1 16032:1 16035:2 16073:2 16078:2 16079:1 16081:1 16100:1 16120:1 16157:1 16160:3 16168:1 16188:1 16189:1 16192:1 16199:1 16231:1 16269:1 16298:1 16302:1 16308:1 16314:2 16351:1 16406:1 16424:2 16435:1 16442:1 16464:1 16476:1 16479:1 16481:2 16492:1 16511:2 16516:3 16520:1 16545:1 16551:1 16553:1 16567:2 16585:2 16592:1 16614:1 16627:2 16641:1 16652:1 16686:1 16687:1 16701:5 16720:3 16731:1 16739:3 16752:3 16777:1 16782:1 16790:1 16807:1 16810:1 16815:2 16869:1 16883:1 16884:1 16897:2 16905:1 16909:1 16913:4 16914:1 16918:1 16920:1 16926:1 16940:4 16941:1 16945:1 16948:1 16962:1 16968:1 16980:1 16999:2 17008:2 17052:2 17055:1 17062:1 17079:3 17089:1 17101:1 17104:1 17105:3 17120:1 17135:2 17151:1 17157:1 17198:1 17200:1 17230:1 17234:1 17239:14 17241:1 17256:1 17260:3 17262:1 17285:3 17327:1 17344:1 17349:2 17360:2 17363:1 17380:2 17383:1 17392:2 17401:1 17428:1 17435:1 17442:1 17444:1 17445:1 17454:2 17456:1 17482:1 17486:3 17504:1 17511:1 17516:5 17518:2 17519:2 17520:5 17521:1 17523:1 17527:2 17529:1 17531:2 17532:3 17537:1 17538:1 17540:1 17544:1 17546:1 17548:1 17555:1 17592:1 17598:1 17607:1 17627:1 17652:1 17655:1 17656:1 17692:2 17699:1 17708:2 17709:1 17729:1 17762:1 17774:1 17776:1 17804:1 17808:1 17827:1 17868:1 17872:1 17874:1 17884:2 17899:1 17902:2 17915:2 17916:1 17925:1 17930:5 17937:1 17941:2 17954:1 17965:1 17966:1 17972:2 17975:3 17980:2 17985:1 17994:3 17998:2 18008:2 18016:1 18026:1 18071:12 18073:1 18086:1 18088:1 18095:1 18096:4 18102:1 18171:1 18172:1 18183:2 18191:1 18201:4 18211:1 18212:1 18225:1 18233:1 18236:2 18286:2 18307:5 18308:1 18322:1 18340:1 18341:1 18344:1 18361:1 18379:1 18423:2 18424:3 18425:1 18438:1 18440:1 18443:1 18453:1 18491:1 18494:1 18514:1 18517:1 18530:2 18533:1 18548:1 18565:2 18577:2 18585:1 18587:1 18597:1 18617:1 18662:1 18670:1 18712:1 18731:1 18734:1 18755:1 18760:1 18775:2 18779:1 18791:3 18796:1 18801:1 18810:3 18814:2 18815:2 18819:2 18825:9 18852:1 18872:1 18877:2 18880:1 18885:1 18887:1 18892:1 18898:1 18905:1 18909:1 18910:1 18962:1 18982:1 18983:1 19004:3 19009:1 19023:1 19033:2 19047:1 19050:1 19054:1 19061:1 19070:1 19071:1 19101:1 19102:1 19103:1 19123:1 19130:1 19134:2 19166:1 19171:1 19202:1 19207:1 19225:1 19226:2 19231:1 19233:1 19236:1 19243:1 19246:1 19267:1 19299:1 19337:1 19376:1 19378:1 19390:1 19391:2 19411:2 19450:1 19514:2 19515:1 19525:1 19538:1 19543:1 19553:1 19565:1 19575:1 19593:1 19600:1 19619:1 19631:1 19651:1 19656:3 19661:1 19670:1 19709:1 19719:12 19731:1 19750:1 19780:1 19806:1 19826:13 19832:1 19833:3 19834:1 19843:1 19846:5 19847:1 19863:1 19872:1 19876:2 19897:1 19915:2 19948:4 19971:2 19979:1 19988:1 19990:1 19993:1 20016:2 20020:1 20023:2 20041:2 20047:1 20053:2152 20064:1 20070:1 20085:1 20086:1 20126:1 20132:1 20134:1 20160:2 20217:1 20218:1 20229:1 20241:1 20262:1 20264:1 20267:1 20271:2 20274:5 20275:3 20286:1 20292:1 20294:1 20298:1 20308:1 20320:1 20338:1 20350:1 20364:1 20373:1 20375:1 20420:1 20422:3 20425:2 20431:1 20469:1 20482:1 20489:1 20490:3 20528:2 20545:1 20546:1 20557:2 20558:1 20567:1 20587:1 20605:2 20618:1 20630:1 20642:1 20647:2 20651:2 20660:1 20669:1 20679:1 20681:1 20701:2 20702:2 20715:2 20721:1 20724:1 20732:2 20757:2 20759:1 20765:1 20768:1 20769:1 20774:1 20778:1 20781:2 20787:8 20792:1 20813:1 20815:1 20833:1 20838:2 20839:1 20848:1 20864:5 20871:1 20882:1 20884:1 20917:1 20926:4 20933:1 20935:2 20941:1 20943:2 20956:4 20957:1 20968:1 20974:1 20979:1 20999:1 21005:3 21013:2 21014:1 21022:2 21061:3 21062:2 21065:1 21075:1 21089:1 21093:1 21095:2 21098:2 21105:1 21106:1 21109:1 21132:1 21148:1 21149:1 21150:1 21152:1 21157:1 21168:1 21202:1 21219:1 21220:2 21237:1 21239:2 21241:1 21242:1 21249:1 21250:1 21254:1 21277:1 21281:1 21283:1 21288:1 21295:1 21302:1 21313:1 21320:1 21322:1 21330:1 21331:1 21341:1 21342:1 21361:1 21371:1 21376:2 21379:4 21385:1 21387:3 21446:1 21451:1 21453:1 21463:1 21466:2 21475:1 21478:1 21482:2 21483:1 21486:2 21501:1 21503:1 21507:3 21511:2 21518:1 21519:2 21523:2 21524:1 21544:5 21555:2 21571:1 21573:1 21583:1 21587:1 21590:1 21591:4 21613:1 21614:1 21627:1 21628:1 21633:1 21652:1 21654:2 21673:1 21676:1 21678:2 21699:1 21711:3 21712:17 21713:2 21719:1 21727:4 21733:1 21756:1 21759:1 21789:1 21798:1 21813:1 21818:1 21822:1 21828:1 21853:1 21860:1 21861:1 21881:1 21887:1 21897:1 21940:4 21960:2 21982:2 21990:1 22001:2 22015:1 22018:1 22032:2 22066:8 22069:1 22071:2 22078:1 22085:1 22119:1 22120:1 22128:1 22140:1 22174:1 22185:4 22202:3 22221:1 22225:1 22228:1 22231:1 22235:1 22236:1 22244:1 22247:2 22282:2 22288:3 22298:2 22300:2 22314:2 22319:2 22323:1 22325:1 22326:1 22337:2 22370:4 22390:2 22398:1 22417:2 22421:1 22432:1 22452:2 22466:1 22473:1 22478:2 22479:1 22488:5 22492:1 22503:1 22508:2 22519:3 22546:2 22554:1 22567:1 22590:1 22591:1 22592:1 22602:1 22615:2 22621:2 22624:2 22628:1 22632:2 22635:1 22643:2 22665:1 22671:2 22685:2 22699:2 22715:1 22716:1 22723:1 22724:1 22726:4 22741:1 22750:2 22755:1 22758:1 22760:1 22768:1 22769:1 22773:2 22774:1 22779:1 22790:1 22793:1 22811:1 22815:1 22838:1 22846:1 22855:1 22857:1 22862:2 22865:1 22866:2 22879:1 22893:1 22939:1 22996:1 23014:2 23017:1 23026:2 23027:2 23031:1 23032:1 23038:1 23039:1 23043:1 23045:1 23056:1 23063:2 23070:3 23071:1 23081:1 23090:1 23104:1 23121:1 23131:1 23137:1 23158:1 23159:1 23181:2 23183:1 23184:1 23185:1 23190:1 23194:1 23195:2 23199:1 23200:1 23210:1 23217:2 23222:2 23228:2 23229:1 23236:2 23238:1 23249:1 23251:2 23262:1 23271:12 23281:2 23282:2 23288:2 23298:1 23313:1 23326:1 23328:1 23337:1 23345:1 23347:1 23348:1 23349:1 23352:1 23355:1 23377:1 23410:2 23418:1 23426:2 23429:1 23434:1 23437:4 23439:3 23442:1 23452:2 23466:1 23468:1 23475:1 23477:1 23497:1 23498:1 23500:2 23502:4 23503:2 23537:1 23540:1 23576:1 23605:3 23613:1 23614:4 23616:3 23617:3 23619:1 23620:1 23625:1 23628:2 23631:1 23632:2 23645:5 23655:1 23656:1 23659:1 23674:1 23682:1 23693:2 23697:2 23700:2 23721:1 23749:1 23778:2 23783:2 23796:1 23801:1 23811:1 23823:1 23834:1 23850:1 23853:1 23858:1 23859:1 23862:1 23865:1 23867:1 23882:1 23886:1 23887:1 23897:1 23900:1 23912:1 23915:1 23922:5 23929:1 23939:1 23940:3 23943:3 23946:1 23952:1 23969:1 23977:1 23982:1 23990:2 23993:1 23997:1 23998:1 24001:1 24002:4 24010:2 24016:1 24026:2 24030:8 24033:1 24037:1 24044:1 24046:1 24050:1 24053:1 24073:1 24074:1 24108:7 24111:1 24126:1 24150:1 24162:1 24172:5 24173:1 24175:1 24178:1 24184:1 24197:1 24221:1 24222:1 24248:1 24250:2 24289:1 24290:1 24291:6 24294:1 24305:3 24308:1 24309:3 24319:1 24325:1 24329:1 24332:1 24346:1 24349:3 24361:1 24370:1 24371:2 24376:3 24386:1 24396:1 24408:1 24426:1 24432:1 24447:1 24451:1 24479:1 24486:1 24495:1 24499:1 24500:1 24502:1 24517:1 24531:2 24549:9 24550:2 24558:1 24568:2 24574:1 24578:2 24585:4 24594:1 24598:3 24608:2 24624:1 24635:1 24661:1 24671:1 24681:1 24682:1 24685:2 24688:2 24706:1 24708:1 24742:1 24744:1 24746:1 24749:1 24750:1 24752:1 24762:1 24774:1 24776:1 24789:1 24795:2 24799:1 24806:2 24808:1 24814:1 24851:3 24883:3 24899:1 24940:1 24969:1 24996:3 25000:2 25008:5 25018:2 25027:1 25033:1 25036:3 25039:1 25051:2 25054:2 25056:2 25066:1 25080:4 25122:1 25130:1 25138:1 25160:1 25172:1 25184:1 25196:1 25199:2 25230:1 25232:1 25240:2 25246:1 25259:2 25268:1 25273:2 25283:1 25286:1 25298:1 25304:1 25314:1 25315:2 25318:2 25320:3 25329:1 25331:1 25343:1 25352:1 25366:3 25368:2 25371:2 25376:1 25388:1 25391:1 25396:1 25447:1 25450:4 25453:1 25458:1 25462:1 25469:1 25471:1 25472:2 25474:1 25477:1 25478:1 25479:1 25481:1 25511:1 25535:1 25537:1 25549:1 25605:1 25618:2 25633:1 25652:2 25715:1 25718:2 25727:1 25729:1 25739:1 25754:1 25772:1 25776:1 25786:1 25793:1 25803:1 25840:1 25851:1 25861:1 25885:1 25898:1 25900:2 25909:1 25937:2 25940:1 25963:2 25977:3 25989:1 26010:1 26021:1 26022:7 26041:1 26048:1 26055:3 26066:1 26075:1 26076:1 26081:1 26086:4 26095:1 26097:1 26098:1 26103:1 26111:1 26135:3 26157:2 26161:1 26167:1 26168:1 26214:1 26250:1 26253:1 26288:1 26291:1 26292:1 26300:1 26304:3 26305:2 26309:1 26311:1 26313:1 26317:2 26318:1 26319:1 26320:1 26342:1 26356:6 26365:1 26373:1 26374:1 26376:1 26380:1 26391:1 26395:1 26397:1 26399:1 26420:9 26425:6 26426:1 26445:1 26447:2 26456:1 26457:1 26459:1 26473:1 26477:1 26479:1 26483:1 26488:3 26495:2 26512:1 26530:1 26536:1 26616:1 26648:2 26651:1 26659:1 26668:1 26669:1 26674:2 26683:2 26687:1 26690:1 26696:2 26698:2 26703:1 26734:1 26736:1 26749:1 26756:1 26758:2 26766:1 26767:1 26776:1 26787:1 26794:1 26803:3 26828:2 26833:1 26836:1 26847:1 26857:2 26862:1 26872:1 26875:2 26880:1 26895:1 26901:1 26902:1 26929:15 26930:2 26942:1 26964:1 26973:1 26974:1 26986:1 27000:1 27012:1 27019:2 27024:1 27029:1 27048:2 27051:1 27059:1 27060:1 27078:1 27083:1 27088:1 27092:1 27094:1 27112:1 27123:1 27164:1 27192:10 27193:1 27218:1 27230:1 27233:2 27234:1 27253:1 27265:1 27272:1 27290:1 27298:1 27304:1 27312:6 27315:1 27336:1 27338:1 27340:2 27341:1 27368:1 27375:1 27381:2 27387:1 27393:1 27398:1 27428:1 27443:1 27448:2 27450:1 27465:2 27484:1 27486:1 27498:1 27514:1 27577:1 27579:2 27590:1 27603:1 27606:1 27619:1 27622:1 27627:2 27633:5 27636:1 27643:1 27645:1 27646:1 27657:1 27662:1 27669:1 27673:1 27701:4 27711:1 27713:1 27716:1 27728:1 27729:6 27746:1 27748:2 27750:1 27765:1 27773:1 27777:1 27784:2 27786:1 27793:1 27796:1 27820:1 27854:1 27873:2 27889:1 27927:1 27933:1 27947:1 27970:1 27977:1 28000:1 28010:1 28038:2 28048:1 28049:2 28064:1 28065:1 28071:1 28072:1 28076:1 28092:1 28106:3 28108:1 28131:1 28142:4 28153:1 28186:1 28191:1 28200:2 28202:1 28210:2 28211:1 28227:2 28228:14 28239:2 28265:1 28268:1 28282:1 28291:2 28303:1 28304:1 28305:1 28317:1 28322:1 28326:1 28328:2 28337:1 28343:1 28356:4 28360:3 28368:3 28371:2 28373:4 28375:1 28403:1 28410:1 28463:1 28481:1 28497:1 28500:1 28501:2 28502:1 28515:1 28531:2 28551:2 28564:1 28568:1 28569:1 28572:1 28573:2 28594:6 28595:1 28596:1 28605:1 28609:1 28618:1 28627:1 28630:1 28634:1 28637:1 28667:1 28671:1 28673:2 28691:1 28699:1 28727:1 28744:1 28768:1 28777:1 28788:2 28814:1 28816:2 28817:1 28846:1 28851:1 28857:1 28860:1 28863:5 28878:1 28883:1 28884:1 28921:1 28925:1 28931:1 28932:1 28945:1 28949:1 28954:2 28963:1 28983:1 28986:2 28988:2 28998:3 29014:1 29034:1 29043:1 29045:1 29050:2 29078:1 29086:2 29093:1 29095:1 29132:1 29144:2 29158:1 29163:3 29166:1 29171:1 29172:1 29182:1 29187:1 29191:2 29210:1 29218:1 29227:2 29238:2 29241:1 29244:1 29247:1 29259:2 29260:1 29281:1 29295:1 29302:1 29312:1 29314:1 29318:2 29322:1 29354:1 29373:5 29375:3 29377:2 29401:1 29404:1 29406:1 29438:1 29446:2 29453:1 29460:1 29465:2 29473:2 29482:1 29484:1 29494:2 29501:1 29508:1 29514:1 29523:1 29524:1 29529:1 29530:1 29531:1 29536:1 29539:1 29543:2 29546:1 29556:2 29566:2 29571:1 29574:1 29579:1 29580:1 29613:1 29615:1 29630:1 29641:4 29656:1 29663:2 29688:1 29709:1 29766:2 29798:1 29804:1 29805:2 29831:2 29848:1 29849:1 29853:1 29855:3 29862:5 29879:1 29883:1 29891:1 29921:6 29952:1 29969:1 30009:1 30019:2 30034:2 30039:1 30051:1 30063:1 30065:1 30082:1 30109:1 30110:2 30114:1 30133:2 30134:3 30135:1 30138:1 30146:2 30150:1 30151:1 30152:2 30169:1 30171:1 30180:1 30181:5 30196:1 30203:1 30205:1 30220:2 30226:2 30228:2 30229:1 30231:1 30235:1 30238:5 30244:1 30251:1 30252:1 30261:3 30263:1 30275:3 30279:1 30283:2 30309:1 30316:3 30332:1 30336:1 30354:1 30356:1 30362:1 30377:1 30392:3 30397:4 30406:5 30411:1 30438:4 30453:1 30457:1 30462:1 30470:1 30471:1 30484:1 30491:1 30493:1 30495:1 30525:1 30527:4 30532:1 30537:2 30571:1 30574:1 30583:1 30604:1 30614:1 30629:1 30634:1 30635:1 30645:1 30646:2 30651:1 30656:1 30670:1 30673:3 30709:1 30710:1 30711:1 30717:7 30729:1 30730:1 30735:2 30750:1 30786:5 30865:1 30871:1 30882:1 30916:1 30926:1 31003:1 31028:2 31043:1 31046:1 31047:2 31048:1 31053:2 31055:3 31068:1 31072:1 31074:1 31082:1 31086:1 31092:1 31103:1 31136:1 31143:1 31152:1 31184:1 31194:3 31204:2 31233:2 31239:2 31257:1 31259:1 31272:1 31284:1 31296:1 31301:1 31308:3 31309:1 31313:2 31343:1 31345:1 31348:4 31351:2 31377:1 31382:1 31405:1 31413:1 31422:1 31431:1 31443:1 31467:1 31473:1 31478:3 31484:1 31487:1 31505:1 31516:2 31519:1 31542:1 31577:2 31580:2 31599:1 31600:1 31606:1 31608:3 31615:3 31617:3 31618:1 31623:1 31632:1 31677:5 31682:1 1 13:1 40:1 46:1 62:1 65:1 72:1 106:1 141:1 155:1 156:3 161:1 167:2 173:1 188:1 190:3 207:5 226:1 231:1 244:1 263:1 274:1 278:7 287:1 297:3 307:1 328:2 354:1 371:4 373:3 378:3 387:3 391:1 397:2 416:2 430:1 438:2 454:5 458:5 471:1 490:1 522:1 526:1 527:1 561:2 588:1 596:1 600:2 614:1 620:1 634:3 645:1 659:1 665:1 667:3 674:1 678:1 693:2 704:1 765:1 767:1 783:1 810:1 815:1 817:1 826:1 829:2 854:1 856:2 863:1 871:1 900:5 906:1 911:1 917:1 918:4 927:1 942:14 943:4 952:3 975:3 984:1 992:1 993:4 995:2 998:7 1000:1 1001:2 1004:3 1018:2 1033:1 1042:5 1044:4 1055:1 1095:2 1104:1 1121:1 1142:1 1159:1 1177:1 1178:1 1198:1 1210:2 1214:1 1217:1 1275:3 1277:2 1283:1 1285:1 1287:1 1295:2 1298:1 1299:1 1312:1 1315:1 1325:1 1326:1 1328:1 1332:2 1351:1 1356:2 1367:1 1380:1 1386:2 1389:1 1408:1 1417:1 1429:1 1432:1 1433:1 1451:1 1466:1 1468:1 1470:1 1485:1 1500:1 1527:1 1530:1 1540:1 1541:2 1557:1 1564:1 1565:2 1584:1 1587:1 1595:3 1602:1 1613:1 1629:1 1630:1 1632:2 1635:1 1647:1 1654:1 1674:1 1686:4 1694:7 1696:2 1705:1 1713:1 1743:2 1751:1 1754:1 1763:1 1767:1 1783:1 1786:1 1791:2 1799:1 1804:2 1813:1 1818:1 1820:1 1825:1 1835:1 1839:2 1850:1 1854:1 1863:1 1867:1 1871:1 1881:1 1882:1 1886:2 1897:1 1905:1 1914:1 1920:2 1923:1 1944:1 1945:5 1950:1 1954:1 1965:1 1971:1 1974:3 1978:1 1979:2 1993:2 1994:6 2027:4 2030:2 2043:1 2054:1 2055:1 2060:2 2065:4 2070:1 2071:1 2074:1 2103:1 2113:1 2121:2 2127:2 2128:1 2129:1 2143:2 2146:1 2192:1 2198:8 2201:1 2207:1 2210:1 2214:1 2215:3 2220:1 2222:2 2226:1 2230:2 2236:1 2243:1 2247:1 2255:1 2272:1 2283:1 2296:2 2300:1 2301:1 2306:2 2308:1 2323:1 2335:1 2349:1 2354:11 2361:1 2370:1 2376:1 2379:1 2393:1 2402:1 2423:2 2436:3 2439:1 2450:1 2458:1 2464:2 2477:2 2478:2 2482:2 2485:5 2487:1 2489:1 2491:2 2494:2 2495:2 2497:1 2499:1 2501:1 2502:4 2506:1 2508:4 2509:3 2514:5 2515:7 2517:1 2528:1 2562:1 2565:1 2568:1 2571:3 2576:1 2593:2 2595:1 2603:1 2617:1 2618:1 2623:1 2631:1 2637:1 2639:1 2657:1 2671:1 2695:1 2706:2 2718:1 2722:1 2739:3 2751:2 2752:1 2764:1 2765:1 2771:1 2776:1 2779:1 2800:3 2803:2 2806:1 2808:6 2812:1 2813:1 2814:1 2824:1 2827:1 2835:1 2849:4 2851:1 2852:1 2857:1 2873:2 2881:1 2884:1 2885:1 2897:6 2906:2 2911:1 2913:2 2916:8 2924:4 2928:1 2937:2 2939:1 2943:1 2945:2 2947:1 2950:3 2951:2 2967:2 2981:1 2982:2 2987:3 2991:1 3029:1 3034:1 3035:2 3036:2 3041:1 3050:3 3052:1 3056:1 3060:4 3065:2 3069:1 3085:1 3089:1 3096:1 3127:2 3128:1 3146:4 3152:1 3157:1 3159:14 3178:3 3180:1 3185:1 3186:1 3190:1 3199:2 3203:2 3206:1 3224:18 3225:1 3234:1 3246:2 3249:3 3269:1 3280:1 3317:1 3325:1 3332:1 3338:1 3351:1 3352:5 3371:3 3377:1 3383:1 3391:1 3410:1 3426:1 3438:1 3440:1 3442:1 3447:1 3457:2 3469:1 3490:2 3510:3 3524:1 3534:1 3550:1 3551:2 3579:1 3580:2 3581:1 3590:1 3608:6 3626:1 3643:1 3663:1 3695:1 3706:2 3719:1 3749:1 3751:1 3753:1 3774:1 3781:1 3783:1 3784:1 3788:1 3799:1 3804:1 3829:1 3844:1 3851:1 3861:1 3868:2 3873:1 3897:1 3898:12 3900:1 3909:1 3912:2 3914:2 3915:2 3937:1 3942:1 3943:1 3947:1 3962:1 3998:1 4000:2 4001:1 4008:1 4013:3 4021:2 4038:1 4062:1 4096:1 4099:1 4101:1 4106:2 4110:1 4113:2 4117:1 4129:2 4149:1 4152:1 4156:2 4163:1 4167:1 4179:2 4181:1 4186:1 4195:1 4200:3 4215:1 4220:1 4221:1 4226:4 4229:1 4236:2 4240:1 4241:2 4242:1 4253:3 4267:1 4272:2 4289:1 4293:2 4309:1 4313:2 4315:2 4320:1 4340:1 4348:6 4349:4 4356:2 4393:1 4395:2 4398:1 4403:1 4417:1 4422:1 4426:2 4432:1 4448:1 4464:2 4470:1 4471:1 4476:1 4500:2 4526:2 4537:1 4547:3 4551:1 4552:1 4557:2 4559:1 4563:1 4567:2 4581:1 4587:1 4594:1 4610:1 4624:1 4629:1 4647:1 4649:1 4669:7 4691:3 4696:1 4708:1 4712:1 4714:1 4717:1 4720:2 4732:2 4749:2 4759:1 4779:1 4785:1 4787:2 4808:3 4834:1 4843:1 4844:1 4850:1 4869:2 4893:1 4899:1 4902:1 4904:1 4910:1 4911:3 4913:1 4922:1 4938:1 4959:3 4970:1 4983:5 5001:1 5006:1 5034:4 5044:2 5056:1 5057:1 5062:3 5066:1 5085:4 5105:2 5131:1 5135:2 5138:3 5154:3 5167:1 5174:1 5187:1 5189:2 5200:1 5216:1 5230:1 5249:1 5267:13 5270:1 5279:1 5282:1 5283:1 5297:1 5307:1 5316:1 5329:1 5339:1 5350:1 5404:3 5429:1 5430:1 5431:4 5433:7 5434:3 5436:1 5440:2 5441:2 5442:1 5445:1 5446:2 5449:6 5450:4 5453:1 5454:2 5456:7 5464:2 5465:4 5468:1 5469:1 5517:1 5532:1 5548:2 5557:1 5575:1 5580:1 5592:1 5614:1 5625:1 5638:1 5658:1 5668:1 5704:1 5720:1 5731:2 5765:1 5771:1 5801:3 5807:2 5813:1 5847:1 5850:1 5875:3 5889:1 5890:1 5915:1 5917:1 5937:1 5943:1 5953:2 5959:1 5972:1 5980:1 5988:1 5994:1 6017:1 6029:1 6057:1 6060:1 6080:1 6100:2 6110:1 6115:2 6118:1 6121:1 6133:5 6134:1 6136:2 6139:1 6143:1 6144:2 6156:1 6157:1 6181:1 6188:3 6200:2 6202:1 6204:1 6219:6 6223:1 6224:1 6237:2 6289:1 6308:1 6320:1 6327:1 6330:1 6337:1 6345:1 6349:1 6351:1 6352:1 6361:2 6366:1 6387:1 6400:1 6427:1 6433:2 6444:2 6455:1 6466:2 6468:1 6488:6 6494:1 6495:1 6499:1 6502:2 6510:1 6512:1 6514:1 6515:1 6516:1 6556:1 6560:1 6561:1 6569:1 6571:2 6573:1 6579:1 6581:1 6582:1 6586:12 6600:1 6603:1 6624:3 6631:1 6655:1 6668:1 6684:3 6693:1 6706:1 6709:6 6713:1 6720:1 6769:1 6775:1 6799:1 6806:1 6808:1 6809:1 6814:2 6816:3 6817:1 6822:1 6823:1 6825:2 6826:1 6832:2 6834:4 6835:3 6884:1 6931:1 6949:1 6990:1 6993:4 6996:2 7008:1 7016:1 7040:1 7052:1 7057:1 7061:1 7071:1 7079:1 7097:1 7106:1 7131:1 7145:2 7153:2 7167:1 7174:1 7175:1 7182:1 7227:1 7241:1 7251:2 7253:1 7256:1 7260:1 7265:1 7284:7 7292:2 7295:3 7298:1 7309:1 7315:1 7326:2 7348:1 7357:1 7360:1 7362:1 7403:1 7405:3 7421:2 7429:1 7435:2 7454:1 7460:1 7465:1 7473:1 7478:2 7504:1 7522:1 7529:2 7535:1 7550:1 7561:1 7569:1 7574:6 7578:2 7598:1 7611:1 7615:1 7621:1 7624:3 7625:2 7632:1 7636:4 7638:1 7640:1 7645:5 7648:1 7651:1 7656:1 7679:1 7680:1 7681:1 7684:1 7695:1 7701:1 7726:1 7729:1 7737:4 7747:3 7759:1 7771:1 7792:2 7795:1 7796:1 7798:1 7805:1 7812:1 7827:1 7829:1 7835:1 7839:1 7846:1 7853:1 7869:1 7897:1 7919:1 7925:1 7930:1 7933:2 7971:1 7984:1 7985:2 7986:5 7991:3 7997:1 7999:1 8004:1 8006:3 8010:1 8032:4 8034:1 8036:2 8037:1 8061:1 8064:3 8074:1 8081:1 8093:1 8108:2 8110:1 8117:1 8127:1 8131:1 8134:1 8140:1 8152:1 8153:1 8160:1 8161:1 8168:1 8175:1 8178:1 8190:1 8198:1 8218:3 8235:3 8236:6 8250:2 8257:4 8258:1 8262:2 8263:3 8278:1 8287:4 8288:2 8290:1 8303:41 8306:2 8315:1 8323:1 8326:8 8327:5 8331:2 8367:1 8374:1 8375:1 8384:1 8397:1 8404:3 8405:2 8411:1 8421:1 8424:1 8433:2 8445:3 8455:1 8459:1 8461:1 8480:2 8486:1 8492:1 8514:2 8541:1 8550:1 8553:1 8557:1 8558:3 8588:1 8591:1 8592:1 8593:1 8605:2 8609:2 8653:1 8663:1 8681:1 8696:1 8722:1 8723:1 8734:1 8737:1 8742:1 8765:1 8768:1 8775:1 8777:1 8778:2 8788:1 8797:1 8815:1 8816:1 8835:22 8843:1 8844:1 8865:3 8868:2 8870:1 8911:1 8935:6 8937:1 8938:1 8943:1 8969:1 8974:1 8990:3 8994:2 8996:1 9001:1 9019:1 9030:1 9031:4 9038:3 9044:1 9049:1 9065:2 9066:1 9069:1 9076:1 9080:1 9088:1 9090:1 9104:1 9109:1 9110:1 9128:1 9129:1 9139:2 9141:1 9142:1 9154:2 9201:1 9204:1 9205:1 9209:1 9211:1 9216:1 9239:1 9242:2 9255:5 9257:1 9267:2 9271:3 9291:1 9302:1 9312:1 9319:2 9323:1 9324:1 9340:1 9345:1 9365:2 9375:1 9393:1 9404:1 9431:1 9436:1 9437:1 9449:1 9450:1 9460:1 9485:1 9486:1 9487:1 9501:3 9510:1 9533:1 9536:1 9537:1 9541:3 9577:3 9586:1 9594:2 9606:1 9613:1 9618:1 9643:1 9644:1 9655:1 9661:1 9662:6 9663:1 9668:1 9670:1 9675:1 9687:1 9695:1 9697:1 9708:6 9709:1 9719:1 9732:1 9740:1 9759:1 9768:11 9769:5 9778:1 9784:2 9794:2 9830:3 9837:1 9844:1 9849:1 9853:2 9855:1 9872:1 9878:1 9882:2 9884:2 9886:3 9888:2 9898:1 9907:1 9919:1 9928:1 9950:1 9960:2 9963:1 9969:1 9972:5 9974:1 9996:3 9999:2 10006:1 10021:4 10050:1 10064:1 10080:1 10089:1 10111:3 10118:1 10122:3 10128:1 10142:1 10147:1 10156:1 10159:1 10183:1 10197:1 10201:1 10211:1 10220:7 10226:2 10264:3 10283:1 10284:1 10298:3 10302:1 10330:1 10358:1 10363:1 10365:3 10366:3 10369:2 10374:1 10399:1 10406:1 10408:1 10437:1 10439:1 10447:1 10458:1 10494:2 10517:1 10530:2 10542:1 10554:1 10557:1 10558:1 10576:1 10587:1 10603:1 10606:1 10611:1 10612:1 10626:1 10630:1 10657:1 10663:1 10665:1 10670:1 10674:5 10690:4 10702:4 10707:2 10717:1 10738:2 10762:3 10764:1 10772:1 10813:2 10818:2 10835:1 10841:1 10854:1 10861:4 10864:1 10901:1 10907:1 10911:12 10913:1 10914:2 10919:2 10927:1 10948:2 10949:1 10969:1 10973:1 10980:1 10991:1 11018:1 11040:1 11047:2 11049:1 11074:1 11094:1 11109:1 11110:1 11112:1 11115:1 11117:1 11121:4 11129:1 11131:1 11136:2 11169:1 11181:4 11185:1 11187:1 11189:1 11194:1 11196:2 11207:1 11210:1 11213:1 11224:4 11244:1 11265:1 11277:1 11283:1 11284:1 11291:1 11298:1 11300:2 11303:2 11306:1 11319:2 11330:1 11336:1 11337:1 11345:1 11348:2 11355:1 11360:2 11362:1 11365:1 11373:7 11376:4 11389:2 11390:3 11395:1 11402:1 11413:1 11417:1 11419:2 11432:1 11447:2 11462:4 11463:2 11483:2 11485:1 11486:1 11498:3 11524:1 11541:1 11544:1 11550:3 11562:1 11570:1 11573:5 11588:1 11597:1 11605:1 11609:1 11624:3 11664:1 11677:1 11744:1 11750:1 11767:1 11770:1 11791:1 11792:2 11796:2 11800:1 11801:2 11807:1 11811:1 11815:1 11816:1 11817:5 11819:5 11820:1 11827:1 11834:2 11838:2 11842:1 11845:4 11849:1 11851:1 11868:3 11872:3 11877:1 11901:2 11910:1 11935:1 11937:1 11939:3 11983:1 11986:1 12007:1 12021:1 12023:1 12026:1 12061:1 12094:1 12102:1 12115:1 12118:1 12133:1 12137:2 12151:1 12156:1 12179:1 12192:1 12195:1 12202:2 12219:3 12222:2 12227:1 12241:2 12245:2 12247:1 12249:1 12250:2 12260:3 12262:1 12263:1 12264:2 12269:1 12272:1 12278:1 12285:3 12287:2 12293:1 12324:14 12325:1 12356:1 12365:1 12369:4 12383:2 12384:2 12391:2 12396:1 12416:1 12418:2 12429:2 12430:1 12441:1 12442:2 12449:2 12450:1 12464:1 12483:1 12497:1 12501:1 12528:1 12544:1 12566:1 12574:3 12575:1 12579:1 12584:1 12587:1 12592:3 12596:1 12597:2 12599:1 12603:1 12604:1 12611:1 12614:1 12624:1 12636:1 12640:1 12641:1 12643:1 12649:2 12652:5 12655:2 12683:1 12718:1 12741:2 12745:1 12760:1 12783:1 12799:1 12801:1 12808:1 12818:2 12829:1 12855:1 12856:1 12863:5 12872:1 12883:2 12886:1 12887:2 12901:1 12907:1 12918:1 12925:2 12931:1 12955:2 12971:2 12982:1 12983:2 13003:1 13025:2 13030:1 13043:1 13047:1 13052:1 13059:2 13070:1 13094:1 13118:1 13125:1 13127:1 13132:5 13133:2 13134:2 13149:1 13155:2 13168:1 13172:1 13174:1 13182:1 13195:1 13235:1 13237:2 13240:1 13264:1 13271:1 13280:1 13291:1 13303:1 13310:1 13327:1 13332:1 13338:1 13427:3 13456:2 13473:1 13493:1 13502:1 13515:1 13531:1 13533:2 13534:1 13552:3 13566:1 13569:1 13582:1 13591:1 13601:1 13626:1 13654:1 13663:1 13666:1 13669:1 13670:2 13677:1 13699:1 13718:13 13723:3 13737:2 13762:1 13776:1 13777:2 13785:2 13805:1 13811:1 13817:1 13818:1 13828:1 13838:2 13839:1 13847:1 13881:1 13900:1 13906:1 13913:1 13920:2 13927:1 13939:2 13957:1 13959:1 13975:1 13978:1 13998:1 14000:1 14010:2 14011:1 14020:1 14026:1 14027:1 14048:1 14058:1 14064:3 14084:1 14085:1 14110:1 14129:1 14146:1 14149:1 14176:1 14190:1 14199:1 14201:1 14204:2 14208:4 14224:1 14230:2 14240:2 14245:1 14262:6 14279:1 14284:2 14307:1 14314:4 14316:1 14330:1 14352:1 14354:1 14355:1 14356:1 14369:7 14370:1 14381:2 14385:1 14403:1 14408:1 14416:1 14417:1 14422:2 14429:1 14437:1 14438:1 14453:15 14462:1 14466:1 14488:1 14503:2 14504:1 14510:3 14525:1 14532:1 14550:1 14560:1 14561:1 14603:3 14630:1 14635:6 14641:1 14658:1 14664:1 14670:1 14673:1 14695:3 14722:1 14732:1 14734:1 14737:1 14746:2 14748:1 14749:1 14760:1 14762:1 14769:6 14770:1 14773:1 14774:1 14775:1 14777:2 14778:1 14782:7 14783:2 14810:1 14811:1 14814:1 14818:1 14846:1 14867:1 14873:1 14894:1 14906:2 14921:1 14948:1 14958:1 14967:3 14968:1 15004:1 15010:1 15013:1 15015:1 15022:1 15025:1 15032:1 15033:1 15046:1 15049:1 15074:2 15079:1 15080:1 15091:1 15094:1 15098:7 15111:1 15121:1 15123:2 15128:1 15163:1 15174:1 15175:2 15185:1 15191:1 15202:1 15210:1 15213:1 15215:1 15224:1 15236:1 15265:1 15266:1 15278:1 15283:1 15293:1 15300:1 15304:1 15312:1 15315:1 15353:1 15362:2 15379:4 15395:1 15401:1 15414:1 15434:1 15446:1 15468:1 15488:1 15514:1 15517:3 15518:4 15527:1 15540:2 15541:2 15544:1 15550:2 15552:1 15570:1 15573:1 15581:1 15592:2 15625:1 15651:1 15661:1 15675:2 15680:1 15683:1 15698:1 15703:1 15705:1 15707:1 15712:2 15714:1 15725:3 15729:2 15782:1 15786:2 15790:1 15804:1 15841:1 15842:2 15844:1 15851:1 15870:1 15880:1 15883:1 15922:3 15928:1 15938:1 15941:2 15947:1 15972:1 15973:1 15978:1 16029:1 16032:1 16035:2 16073:2 16078:2 16079:1 16081:1 16100:1 16120:1 16157:1 16160:3 16168:1 16188:1 16189:1 16192:1 16199:1 16231:1 16269:1 16298:1 16302:1 16308:1 16314:2 16351:1 16406:1 16424:2 16435:1 16442:1 16464:1 16476:1 16479:1 16481:2 16492:1 16511:2 16516:3 16520:1 16545:1 16551:1 16553:1 16567:2 16585:2 16592:1 16614:1 16627:2 16641:1 16652:1 16676:1 16686:1 16687:1 16701:6 16720:3 16731:1 16739:3 16752:3 16777:1 16782:1 16790:1 16807:1 16810:1 16815:2 16869:1 16883:2 16884:1 16897:2 16905:1 16909:1 16913:4 16914:1 16918:1 16920:1 16926:1 16940:4 16941:1 16945:1 16948:1 16962:1 16968:1 16980:1 16999:2 17008:2 17052:2 17055:1 17062:1 17079:3 17089:1 17101:1 17104:1 17105:3 17120:1 17135:2 17151:1 17157:1 17198:1 17200:1 17230:1 17234:1 17239:14 17241:1 17256:1 17260:3 17262:1 17285:3 17327:1 17344:1 17349:2 17360:2 17363:1 17380:2 17383:1 17392:2 17401:1 17428:1 17435:1 17442:1 17444:1 17445:1 17454:2 17456:1 17482:1 17486:3 17489:1 17504:1 17511:1 17516:5 17518:2 17519:2 17520:5 17521:1 17523:1 17527:2 17529:1 17531:2 17532:3 17537:1 17538:1 17540:1 17544:1 17546:1 17548:1 17555:1 17590:1 17592:1 17598:1 17607:1 17627:1 17652:1 17655:1 17656:1 17692:2 17699:1 17708:2 17709:1 17729:1 17762:1 17774:1 17776:1 17804:1 17808:1 17827:1 17868:1 17872:1 17874:1 17884:2 17899:1 17902:2 17915:2 17916:1 17925:1 17930:5 17937:1 17941:2 17954:1 17965:1 17966:1 17972:2 17975:4 17980:2 17985:1 17994:3 17998:2 18008:2 18016:1 18026:1 18071:13 18073:1 18086:1 18088:1 18095:1 18096:4 18102:1 18171:1 18172:1 18183:2 18191:1 18201:4 18211:1 18212:1 18225:1 18233:1 18236:2 18286:2 18291:1 18307:5 18308:1 18322:1 18340:1 18341:1 18344:1 18361:1 18379:1 18423:2 18424:3 18425:1 18438:1 18440:1 18443:1 18453:1 18490:1 18491:1 18494:1 18514:1 18517:1 18530:2 18533:1 18548:1 18556:1 18565:2 18577:2 18585:1 18587:2 18593:1 18597:1 18617:1 18662:1 18670:1 18712:1 18731:1 18734:1 18755:1 18760:1 18775:2 18779:1 18791:3 18796:1 18801:1 18810:3 18814:2 18815:2 18819:2 18825:10 18852:1 18872:1 18877:2 18880:1 18885:2 18887:1 18892:1 18898:1 18905:1 18909:1 18910:1 18962:1 18982:1 18983:1 19004:3 19009:1 19023:1 19033:2 19047:1 19050:1 19054:1 19061:1 19070:1 19071:1 19101:1 19102:1 19103:1 19123:1 19130:1 19134:2 19166:1 19171:1 19202:1 19207:1 19225:1 19226:2 19231:1 19233:1 19236:1 19243:1 19246:1 19267:1 19299:1 19337:1 19376:1 19378:1 19390:1 19391:2 19411:2 19450:1 19514:2 19515:1 19525:1 19538:1 19543:1 19553:1 19565:1 19575:1 19593:1 19600:1 19619:1 19631:1 19651:1 19656:3 19661:1 19670:1 19709:1 19719:14 19731:1 19750:1 19780:1 19806:1 19826:13 19832:1 19833:3 19834:1 19843:1 19846:5 19847:1 19863:1 19872:1 19876:2 19897:1 19915:2 19948:4 19971:2 19979:1 19988:1 19990:1 19993:1 20016:3 20020:1 20023:2 20041:2 20047:1 20053:2189 20064:1 20070:1 20085:1 20086:1 20126:1 20132:1 20134:1 20160:2 20181:1 20217:1 20218:1 20229:1 20241:1 20262:1 20264:1 20267:1 20271:2 20274:5 20275:3 20286:1 20292:1 20294:1 20298:1 20308:1 20320:1 20338:1 20350:1 20364:1 20373:1 20375:1 20420:1 20422:3 20425:2 20431:1 20469:1 20482:1 20489:1 20490:3 20528:2 20545:1 20546:1 20557:2 20558:1 20567:1 20584:1 20587:1 20605:2 20618:1 20630:1 20642:1 20647:2 20651:2 20660:1 20669:1 20679:1 20681:1 20701:2 20702:2 20715:2 20721:1 20724:1 20732:2 20757:2 20759:1 20765:1 20768:1 20769:1 20774:1 20778:1 20781:2 20787:8 20792:1 20813:1 20815:1 20833:1 20838:2 20839:1 20848:2 20864:5 20871:1 20882:1 20884:1 20917:1 20926:4 20933:1 20935:2 20941:1 20943:2 20956:4 20957:1 20968:1 20974:1 20979:1 20999:1 21005:3 21013:2 21014:1 21022:3 21061:3 21062:2 21065:1 21075:1 21089:1 21093:1 21095:2 21098:2 21105:1 21106:1 21109:1 21132:1 21148:1 21149:1 21150:1 21152:1 21157:1 21168:1 21202:1 21219:1 21220:2 21237:1 21239:2 21241:1 21242:1 21249:1 21250:1 21254:1 21277:1 21281:1 21283:1 21288:1 21295:1 21302:1 21313:1 21320:1 21322:1 21330:1 21331:1 21341:1 21342:1 21361:1 21371:1 21376:2 21379:4 21385:1 21387:3 21446:1 21451:1 21453:1 21463:1 21466:2 21475:1 21478:1 21482:2 21483:1 21486:2 21501:1 21503:1 21507:3 21511:2 21518:1 21519:2 21523:2 21524:1 21544:5 21555:2 21571:1 21573:1 21583:1 21587:1 21590:2 21591:4 21613:1 21614:1 21627:1 21628:1 21633:1 21652:1 21654:2 21673:1 21676:1 21678:2 21699:1 21711:3 21712:18 21713:2 21719:1 21727:5 21733:1 21756:1 21759:1 21789:1 21798:1 21799:1 21813:1 21818:1 21822:1 21828:1 21853:1 21860:1 21861:1 21881:1 21887:1 21897:1 21940:4 21960:2 21982:2 21990:1 22001:2 22015:1 22018:1 22032:2 22066:8 22069:1 22071:2 22078:1 22085:1 22119:1 22120:1 22128:1 22140:1 22174:1 22177:1 22185:4 22202:3 22221:1 22225:1 22228:1 22231:1 22235:1 22236:1 22244:1 22247:2 22282:2 22288:3 22298:2 22300:2 22314:2 22319:2 22323:1 22325:1 22326:1 22337:2 22343:1 22370:4 22390:2 22398:1 22417:2 22421:1 22432:1 22452:2 22466:1 22473:1 22478:2 22479:1 22488:5 22492:1 22496:2 22503:1 22508:2 22519:3 22546:2 22554:1 22567:1 22590:1 22591:1 22592:1 22602:2 22615:2 22621:2 22624:2 22628:2 22632:2 22635:1 22643:2 22665:1 22671:2 22685:2 22699:2 22715:1 22716:2 22723:1 22724:1 22726:4 22739:1 22741:1 22750:2 22755:1 22758:1 22760:1 22768:1 22769:1 22773:2 22774:1 22779:1 22790:1 22793:1 22811:1 22815:1 22838:1 22846:1 22855:1 22857:1 22862:2 22864:1 22865:1 22866:2 22879:1 22893:1 22939:1 22996:1 23014:2 23017:1 23026:2 23027:2 23031:1 23032:1 23038:1 23039:1 23043:1 23045:1 23056:1 23063:2 23070:3 23071:1 23081:1 23090:1 23104:1 23121:1 23131:1 23137:1 23147:1 23158:1 23159:1 23181:2 23183:1 23184:1 23185:1 23190:1 23194:1 23195:2 23199:1 23200:1 23210:1 23213:1 23217:2 23222:2 23228:2 23229:1 23236:2 23238:1 23249:1 23251:2 23262:1 23271:13 23281:2 23282:2 23288:2 23298:1 23313:1 23326:1 23328:1 23337:1 23345:1 23347:1 23348:1 23349:1 23352:1 23355:1 23377:1 23410:2 23418:1 23426:2 23429:1 23434:1 23437:4 23439:3 23442:1 23452:2 23466:1 23468:1 23475:1 23477:1 23497:1 23498:1 23500:2 23502:4 23503:2 23537:1 23540:1 23576:1 23605:3 23613:1 23614:4 23616:3 23617:3 23619:1 23620:1 23625:1 23628:2 23631:1 23632:2 23644:1 23645:5 23655:1 23656:1 23659:1 23674:1 23682:1 23693:2 23697:2 23700:2 23721:1 23749:1 23778:2 23783:2 23796:1 23801:1 23811:1 23823:1 23834:1 23850:1 23853:1 23858:1 23859:1 23862:1 23865:1 23867:1 23882:1 23886:1 23887:1 23897:1 23900:1 23912:2 23915:1 23922:5 23929:1 23939:1 23940:3 23943:3 23946:1 23952:1 23969:1 23977:1 23982:1 23990:2 23993:1 23997:1 23998:1 24001:1 24002:4 24010:2 24016:1 24026:2 24030:9 24033:1 24037:1 24044:1 24046:1 24050:1 24053:1 24073:1 24074:1 24108:7 24111:1 24126:1 24150:1 24162:1 24172:5 24173:1 24175:1 24178:1 24184:1 24197:1 24221:1 24222:1 24248:1 24250:2 24260:1 24289:1 24290:1 24291:6 24294:1 24305:3 24308:1 24309:3 24319:1 24325:1 24329:1 24332:1 24346:1 24349:3 24361:1 24370:1 24371:2 24376:3 24386:1 24396:1 24408:1 24426:1 24432:1 24447:1 24451:1 24479:1 24486:1 24495:1 24499:1 24500:1 24502:1 24517:1 24531:2 24549:10 24550:3 24558:1 24568:2 24574:1 24578:2 24585:4 24594:1 24598:3 24608:2 24624:1 24635:1 24661:1 24671:1 24681:1 24682:1 24685:2 24688:2 24706:1 24708:1 24742:1 24744:1 24746:1 24749:1 24750:1 24752:1 24762:1 24774:1 24776:1 24789:1 24795:2 24799:1 24806:2 24808:1 24814:1 24851:3 24883:3 24899:1 24940:1 24969:1 24996:3 25000:2 25008:5 25018:2 25027:1 25033:1 25036:3 25039:1 25051:2 25054:2 25056:3 25066:1 25080:4 25122:1 25130:1 25138:1 25160:1 25172:1 25184:1 25196:1 25199:2 25230:1 25232:1 25240:2 25246:1 25259:2 25268:1 25273:2 25283:1 25286:1 25298:1 25304:1 25314:1 25315:2 25318:2 25320:3 25329:1 25331:1 25343:1 25352:1 25366:3 25368:2 25371:2 25376:1 25388:1 25391:1 25396:1 25447:1 25450:4 25453:1 25458:1 25462:1 25469:1 25471:1 25472:2 25474:1 25477:1 25478:1 25479:1 25481:1 25511:1 25535:1 25537:1 25549:1 25605:1 25618:2 25633:1 25652:2 25715:1 25718:2 25727:1 25729:1 25739:1 25754:1 25770:1 25772:1 25776:1 25786:1 25793:1 25803:1 25840:1 25851:1 25861:1 25885:1 25898:1 25900:2 25909:1 25937:2 25940:1 25963:2 25977:3 25989:1 26010:1 26021:1 26022:7 26041:1 26048:1 26055:3 26066:1 26075:1 26076:1 26081:1 26086:4 26095:1 26097:1 26098:1 26103:1 26111:1 26135:3 26157:2 26161:1 26167:1 26168:1 26214:1 26250:1 26253:1 26288:1 26291:1 26292:1 26300:1 26304:3 26305:2 26309:1 26311:1 26313:1 26317:2 26318:1 26319:1 26320:1 26342:1 26356:6 26365:1 26373:1 26374:1 26376:1 26380:1 26391:1 26395:1 26397:1 26399:1 26420:11 26425:6 26426:1 26445:1 26447:2 26456:1 26457:1 26459:1 26473:1 26477:1 26479:1 26483:1 26488:3 26495:2 26512:1 26530:1 26536:1 26588:1 26616:1 26648:2 26651:1 26659:1 26668:1 26669:1 26674:2 26683:2 26687:1 26690:1 26696:2 26698:2 26703:1 26734:1 26736:1 26749:1 26756:1 26758:2 26766:1 26767:1 26776:1 26787:1 26794:1 26803:3 26828:2 26833:1 26836:1 26847:1 26857:2 26862:1 26872:1 26875:2 26880:1 26895:1 26901:1 26902:1 26929:17 26930:2 26942:1 26964:1 26973:1 26974:1 26986:1 27000:1 27012:1 27019:2 27024:1 27029:1 27048:2 27051:1 27059:1 27060:1 27078:1 27083:1 27088:1 27092:1 27094:1 27112:1 27123:1 27164:1 27192:10 27193:1 27218:1 27230:1 27233:2 27234:1 27253:1 27265:1 27272:1 27290:1 27298:1 27304:1 27312:6 27315:1 27336:1 27338:1 27340:2 27341:1 27368:1 27375:1 27381:2 27387:1 27393:1 27398:1 27410:1 27428:1 27443:1 27448:2 27450:1 27465:2 27484:1 27486:1 27498:1 27514:1 27577:1 27579:2 27590:1 27603:1 27606:1 27619:1 27622:1 27627:2 27633:5 27636:1 27643:1 27645:1 27646:1 27657:1 27662:1 27669:1 27673:1 27701:4 27711:1 27713:1 27716:1 27728:1 27729:7 27746:1 27748:2 27750:1 27765:1 27773:1 27777:1 27784:2 27786:1 27793:1 27796:1 27820:1 27854:1 27866:1 27873:2 27889:1 27927:1 27933:1 27947:1 27970:1 27977:1 28000:1 28010:1 28038:2 28048:1 28049:2 28064:1 28065:1 28071:1 28072:1 28076:1 28092:1 28106:3 28108:1 28131:1 28142:4 28153:1 28186:1 28191:1 28200:2 28202:1 28210:2 28211:1 28227:2 28228:14 28239:2 28265:1 28268:1 28282:1 28291:2 28303:1 28304:1 28305:1 28317:1 28322:1 28326:2 28328:2 28337:1 28343:1 28356:4 28360:3 28368:3 28371:2 28373:4 28375:1 28403:1 28410:1 28463:1 28481:1 28497:1 28500:1 28501:2 28502:1 28515:1 28531:2 28551:2 28564:1 28568:2 28569:1 28572:1 28573:2 28594:6 28595:1 28596:1 28605:1 28609:1 28618:1 28627:1 28630:1 28634:1 28637:1 28667:1 28671:1 28673:2 28691:1 28699:1 28727:1 28744:1 28768:1 28777:1 28788:2 28814:1 28816:2 28817:1 28846:1 28851:1 28857:1 28860:1 28863:5 28878:1 28883:1 28884:1 28921:1 28925:1 28931:1 28932:1 28945:1 28949:1 28954:2 28963:1 28983:1 28986:2 28988:2 28998:3 29014:1 29034:1 29043:1 29045:1 29050:2 29078:1 29086:2 29093:1 29095:1 29132:1 29144:2 29158:1 29163:3 29166:1 29171:1 29172:1 29182:1 29187:1 29191:2 29210:1 29218:1 29227:2 29238:2 29241:1 29244:1 29247:1 29259:2 29260:1 29281:1 29295:1 29302:1 29312:1 29314:1 29318:2 29322:1 29354:1 29373:5 29375:3 29377:2 29401:1 29404:1 29406:1 29438:1 29446:2 29453:1 29460:1 29465:2 29473:2 29482:1 29484:1 29494:2 29501:1 29508:1 29514:1 29516:1 29523:1 29524:1 29529:1 29530:1 29531:1 29536:2 29539:1 29543:2 29546:1 29556:2 29566:2 29571:1 29574:1 29579:1 29580:1 29613:1 29615:1 29630:1 29641:4 29656:1 29663:2 29688:1 29709:1 29763:1 29766:2 29798:1 29804:1 29805:2 29831:2 29848:1 29849:1 29853:1 29855:3 29862:5 29879:1 29883:1 29891:1 29921:6 29952:1 29954:1 29969:1 30009:1 30014:1 30019:2 30034:2 30039:1 30051:1 30063:1 30065:1 30082:1 30100:1 30109:1 30110:2 30114:1 30133:2 30134:3 30135:1 30138:1 30146:2 30150:1 30151:1 30152:2 30169:1 30171:1 30180:1 30181:5 30196:1 30203:1 30205:1 30220:2 30226:2 30228:2 30229:1 30231:1 30235:1 30238:5 30244:1 30251:1 30252:1 30261:3 30263:1 30275:3 30279:1 30283:3 30309:1 30316:3 30332:1 30336:1 30354:1 30356:1 30362:1 30377:1 30392:3 30397:4 30406:5 30411:1 30438:4 30453:1 30457:1 30462:1 30470:1 30471:1 30484:1 30491:1 30493:1 30495:1 30525:1 30527:5 30532:1 30537:2 30571:1 30574:1 30583:1 30604:1 30614:1 30629:1 30634:1 30635:1 30645:1 30646:2 30651:1 30656:1 30670:1 30673:3 30709:1 30710:1 30711:1 30717:7 30729:1 30730:1 30735:2 30750:1 30786:5 30865:1 30871:1 30882:1 30916:1 30926:1 31003:1 31028:2 31043:1 31046:1 31047:2 31048:1 31053:2 31055:3 31068:1 31072:1 31074:1 31082:1 31086:1 31092:1 31103:1 31136:1 31143:1 31152:1 31184:1 31194:3 31204:2 31233:2 31239:2 31257:1 31259:1 31272:1 31284:1 31296:1 31301:1 31308:3 31309:1 31313:2 31343:1 31345:1 31348:4 31351:2 31377:1 31382:1 31405:1 31413:1 31422:1 31431:1 31443:1 31467:1 31473:1 31478:3 31484:1 31487:1 31505:1 31516:2 31519:1 31542:1 31577:2 31580:2 31599:1 31600:1 31606:1 31608:3 31615:3 31617:3 31618:1 31623:1 31632:1 31677:5 31682:1 1 13:1 40:1 46:1 62:1 65:1 72:1 106:1 141:1 155:1 156:3 161:1 167:2 173:1 188:1 190:3 207:5 226:1 231:1 244:1 263:1 274:1 278:7 287:1 297:3 307:1 328:2 354:1 371:4 373:3 378:3 387:3 391:1 397:2 416:3 430:1 438:2 454:5 458:5 471:1 485:1 490:1 522:1 526:1 527:1 561:2 588:1 596:1 600:2 614:1 620:1 634:3 645:1 659:1 665:1 667:4 674:1 678:1 693:2 704:1 765:1 767:1 783:1 810:1 815:1 817:1 826:1 829:2 830:1 854:1 856:2 863:1 871:1 900:5 906:1 911:1 917:1 918:4 927:1 942:14 943:4 952:3 975:3 984:1 992:1 993:4 995:2 998:8 1000:1 1001:2 1004:4 1018:2 1033:1 1042:5 1044:4 1055:1 1056:1 1095:2 1104:1 1121:1 1142:1 1159:1 1177:1 1178:1 1198:1 1210:2 1214:1 1217:1 1275:3 1277:2 1283:1 1285:2 1287:1 1295:2 1298:1 1299:1 1312:1 1315:1 1325:1 1326:1 1328:1 1332:2 1351:2 1356:2 1367:1 1380:1 1386:2 1389:1 1408:1 1417:1 1429:1 1432:1 1433:1 1451:1 1466:1 1468:1 1470:1 1485:1 1500:1 1527:1 1530:1 1540:1 1541:2 1557:1 1564:1 1565:2 1584:1 1587:1 1595:3 1602:1 1613:1 1629:1 1630:1 1632:2 1635:1 1647:1 1654:1 1674:1 1686:4 1694:7 1696:2 1705:1 1713:1 1743:2 1751:1 1754:1 1763:1 1767:1 1783:1 1786:1 1788:1 1791:2 1799:1 1804:2 1813:1 1818:1 1820:1 1824:1 1825:2 1835:1 1839:2 1850:1 1854:1 1863:1 1867:1 1871:1 1881:1 1882:1 1886:2 1897:1 1900:1 1905:1 1914:1 1920:2 1923:1 1944:1 1945:5 1950:1 1954:1 1965:1 1971:1 1974:3 1978:1 1979:2 1993:2 1994:6 2027:4 2030:2 2043:1 2054:1 2055:1 2060:2 2065:4 2070:1 2071:1 2074:1 2103:2 2112:1 2113:1 2121:2 2127:2 2128:1 2129:1 2143:2 2146:1 2192:1 2198:8 2201:1 2207:1 2210:1 2214:1 2215:4 2219:1 2220:1 2222:2 2226:1 2230:2 2236:1 2243:1 2247:1 2255:1 2268:1 2272:1 2283:1 2296:2 2300:1 2301:1 2306:2 2308:1 2323:1 2335:1 2349:1 2354:11 2361:1 2370:1 2376:1 2379:1 2393:1 2402:1 2423:2 2436:3 2439:1 2450:1 2458:1 2464:2 2477:2 2478:2 2480:1 2482:3 2485:5 2487:1 2489:1 2491:2 2494:2 2495:2 2497:1 2499:2 2501:1 2502:4 2506:1 2508:5 2509:3 2514:5 2515:7 2517:1 2528:1 2562:1 2565:1 2568:2 2571:3 2576:1 2593:2 2595:1 2603:1 2617:1 2618:1 2623:1 2631:1 2637:1 2639:1 2657:1 2671:1 2695:1 2706:3 2718:1 2722:1 2739:3 2751:2 2752:1 2764:1 2765:1 2771:1 2776:1 2779:1 2800:3 2803:2 2806:1 2808:6 2812:1 2813:1 2814:1 2824:1 2827:1 2835:1 2849:4 2851:1 2852:1 2857:1 2873:2 2881:1 2884:1 2885:1 2897:6 2906:2 2911:1 2913:2 2916:8 2924:4 2928:1 2937:2 2939:1 2943:1 2945:2 2947:1 2950:3 2951:2 2967:2 2981:1 2982:2 2987:3 2991:1 2995:1 3029:1 3034:1 3035:2 3036:2 3041:1 3050:3 3052:1 3056:1 3060:5 3065:2 3069:1 3085:1 3089:1 3096:1 3122:1 3127:2 3128:1 3146:4 3152:1 3157:1 3159:14 3178:3 3180:1 3185:1 3186:1 3190:1 3199:2 3203:2 3206:1 3224:18 3225:1 3234:1 3246:2 3249:3 3269:1 3280:1 3317:1 3325:1 3332:1 3338:1 3351:1 3352:5 3371:3 3377:1 3383:1 3391:1 3410:1 3426:1 3438:1 3440:1 3442:1 3447:1 3457:2 3469:1 3490:2 3504:1 3510:3 3524:1 3534:1 3550:1 3551:2 3579:1 3580:2 3581:1 3590:1 3608:6 3626:1 3643:1 3663:1 3695:1 3706:2 3719:1 3749:1 3751:1 3753:1 3774:1 3781:1 3783:1 3784:1 3788:1 3799:1 3804:1 3805:1 3829:1 3844:1 3851:1 3861:1 3868:2 3873:1 3897:1 3898:13 3900:1 3909:1 3912:2 3914:2 3915:2 3937:1 3942:1 3943:1 3947:1 3962:1 3998:1 4000:2 4001:1 4008:1 4013:3 4021:2 4038:1 4062:1 4096:1 4099:1 4101:1 4106:2 4110:1 4113:2 4117:1 4129:3 4149:1 4152:1 4156:2 4163:1 4167:1 4179:2 4181:1 4186:1 4195:1 4200:3 4201:1 4215:1 4220:1 4221:1 4226:4 4229:1 4236:2 4240:1 4241:2 4242:1 4253:4 4267:1 4272:2 4289:1 4293:2 4309:1 4313:2 4315:2 4320:1 4340:2 4348:6 4349:4 4356:2 4393:1 4395:2 4398:1 4403:1 4417:1 4422:1 4426:2 4432:1 4448:1 4464:2 4470:1 4471:1 4476:1 4500:2 4526:2 4537:1 4547:4 4548:1 4551:1 4552:1 4557:2 4559:1 4563:1 4567:2 4581:1 4587:1 4594:1 4610:1 4624:1 4629:1 4647:1 4649:1 4669:7 4691:3 4696:1 4708:1 4712:1 4714:1 4717:1 4720:2 4732:2 4749:2 4759:1 4779:1 4785:1 4787:2 4808:4 4834:1 4843:1 4844:1 4850:1 4869:2 4893:1 4899:1 4902:1 4904:1 4910:1 4911:3 4913:1 4922:1 4938:1 4959:3 4970:1 4983:5 5001:1 5006:1 5034:4 5044:2 5056:1 5057:1 5062:3 5066:1 5085:4 5105:2 5131:1 5135:2 5138:3 5154:3 5167:1 5174:1 5187:1 5189:2 5198:1 5200:1 5216:1 5217:1 5230:1 5249:1 5267:14 5270:2 5279:1 5282:1 5283:1 5290:1 5297:1 5307:1 5316:1 5329:1 5339:1 5350:1 5404:3 5429:1 5430:1 5431:4 5433:7 5434:3 5436:1 5440:2 5441:2 5442:1 5445:1 5446:2 5449:6 5450:4 5453:1 5454:2 5456:7 5464:2 5465:4 5468:1 5469:1 5517:1 5532:1 5548:2 5557:1 5575:1 5580:1 5592:1 5614:1 5625:1 5638:1 5658:1 5668:1 5704:1 5720:1 5731:2 5765:1 5771:1 5801:3 5807:2 5813:1 5847:1 5850:1 5875:3 5889:1 5890:1 5915:1 5917:1 5937:1 5943:1 5953:2 5959:1 5972:1 5980:1 5988:1 5994:1 6017:1 6029:1 6057:1 6060:1 6080:1 6100:2 6110:1 6115:2 6118:1 6121:1 6133:5 6134:1 6136:2 6139:1 6143:1 6144:2 6156:1 6157:1 6181:1 6188:3 6200:2 6202:1 6204:1 6219:6 6223:1 6224:1 6237:2 6289:1 6308:1 6320:1 6327:1 6330:1 6337:1 6345:1 6349:1 6351:1 6352:1 6361:2 6366:1 6387:1 6400:1 6427:1 6433:2 6444:2 6455:1 6466:2 6468:1 6471:1 6486:1 6488:6 6494:1 6495:1 6499:1 6502:2 6510:1 6512:1 6514:1 6515:1 6516:1 6556:1 6560:1 6561:1 6569:1 6571:2 6573:1 6579:1 6581:1 6582:2 6586:12 6600:1 6603:1 6624:3 6631:1 6655:1 6668:1 6684:3 6693:2 6706:1 6709:6 6713:1 6720:1 6769:1 6775:1 6799:1 6806:1 6808:1 6809:1 6814:2 6816:3 6817:1 6822:1 6823:1 6825:2 6826:1 6832:2 6834:4 6835:3 6884:1 6931:1 6949:1 6990:1 6993:4 6996:2 7008:1 7016:1 7040:1 7052:1 7057:1 7061:1 7071:1 7079:1 7097:1 7106:2 7131:1 7145:2 7153:2 7167:1 7174:1 7175:1 7182:1 7227:1 7241:1 7251:2 7253:1 7256:1 7260:1 7265:1 7284:7 7292:2 7295:3 7298:1 7309:1 7315:1 7326:2 7348:1 7357:1 7360:1 7362:1 7403:1 7405:3 7421:2 7429:1 7435:2 7454:1 7460:1 7465:1 7473:1 7478:2 7479:1 7504:1 7522:1 7529:2 7535:1 7550:1 7561:1 7569:1 7574:6 7578:2 7598:1 7611:1 7615:1 7621:1 7624:3 7625:2 7632:1 7636:4 7638:1 7640:1 7645:5 7648:1 7651:1 7656:1 7679:1 7680:1 7681:1 7684:1 7695:1 7701:1 7726:1 7729:1 7737:4 7747:4 7759:1 7771:1 7792:3 7795:1 7796:1 7798:1 7805:1 7812:1 7818:1 7827:1 7829:1 7835:1 7839:1 7846:1 7853:1 7869:1 7897:1 7919:1 7925:1 7930:1 7933:2 7971:1 7984:1 7985:2 7986:5 7991:3 7997:1 7999:1 8004:1 8006:3 8010:1 8032:6 8034:1 8036:2 8037:1 8061:1 8064:3 8074:1 8081:1 8093:1 8108:2 8110:1 8117:1 8127:1 8131:1 8134:1 8140:1 8152:1 8153:1 8160:1 8161:2 8168:1 8175:1 8178:1 8189:1 8190:1 8198:1 8218:3 8235:4 8236:6 8250:2 8257:4 8258:1 8262:2 8263:3 8265:1 8278:1 8287:4 8288:2 8290:1 8303:45 8306:2 8315:1 8323:1 8326:9 8327:5 8331:2 8367:1 8374:1 8375:1 8384:1 8397:1 8404:3 8405:2 8411:1 8421:1 8424:1 8433:2 8445:3 8455:1 8459:1 8461:1 8480:2 8486:1 8492:1 8512:1 8514:2 8541:1 8550:1 8553:1 8557:1 8558:3 8588:1 8591:1 8592:1 8593:1 8605:2 8609:2 8653:1 8663:1 8681:1 8696:1 8698:1 8722:1 8723:1 8734:1 8737:1 8742:1 8765:1 8768:1 8775:1 8777:1 8778:2 8788:1 8797:1 8815:1 8816:1 8835:22 8843:1 8844:1 8865:3 8868:2 8870:1 8900:1 8911:1 8935:6 8937:1 8938:1 8943:1 8969:1 8974:1 8990:3 8993:1 8994:2 8996:1 9001:1 9019:1 9030:1 9031:4 9038:3 9044:1 9049:1 9065:2 9066:1 9069:1 9076:1 9080:1 9088:1 9090:1 9104:1 9109:1 9110:1 9128:1 9129:1 9139:2 9141:1 9142:1 9154:2 9201:1 9204:1 9205:1 9209:1 9211:1 9216:1 9239:1 9242:2 9255:5 9257:1 9267:2 9271:3 9291:1 9302:1 9312:1 9319:2 9323:1 9324:1 9340:1 9345:1 9365:2 9375:1 9393:1 9404:1 9431:1 9436:1 9437:1 9449:1 9450:1 9460:1 9485:1 9486:1 9487:1 9501:3 9510:1 9533:1 9536:1 9537:1 9541:3 9577:3 9586:1 9594:2 9606:1 9613:1 9618:1 9643:1 9644:1 9655:1 9661:1 9662:6 9663:1 9668:1 9670:1 9675:1 9687:1 9695:1 9697:1 9708:6 9709:1 9719:1 9732:1 9740:1 9759:1 9768:11 9769:5 9778:1 9784:2 9794:2 9830:3 9837:1 9844:1 9849:1 9853:2 9855:1 9872:1 9878:1 9882:2 9884:2 9886:3 9888:2 9898:1 9907:1 9919:1 9928:1 9950:1 9960:2 9963:1 9969:1 9972:5 9974:1 9988:1 9996:3 9999:2 10005:1 10006:1 10021:4 10050:1 10064:1 10080:1 10089:1 10111:3 10118:1 10122:3 10128:1 10142:1 10147:1 10156:1 10159:1 10183:1 10197:1 10201:1 10211:1 10220:7 10226:2 10264:3 10283:1 10284:1 10298:3 10302:1 10330:1 10358:1 10363:1 10365:3 10366:3 10369:2 10374:1 10399:1 10406:1 10408:1 10437:2 10439:1 10447:1 10458:1 10494:2 10511:1 10517:1 10530:2 10542:1 10554:1 10557:1 10558:1 10576:1 10587:1 10603:1 10606:1 10611:1 10612:1 10626:1 10630:1 10657:1 10662:1 10663:1 10665:1 10670:1 10674:5 10690:4 10702:4 10707:2 10717:1 10738:2 10762:3 10764:1 10772:1 10807:1 10813:2 10818:2 10835:1 10841:1 10854:1 10861:4 10864:1 10901:2 10907:1 10911:12 10913:1 10914:2 10919:2 10927:1 10948:2 10949:1 10969:1 10973:1 10980:1 10991:1 11018:1 11040:1 11047:2 11049:1 11074:1 11094:1 11109:1 11110:1 11112:1 11115:1 11117:1 11121:4 11129:1 11131:1 11136:2 11169:1 11181:4 11185:1 11187:1 11189:1 11194:1 11196:3 11207:1 11210:1 11213:1 11224:4 11244:1 11265:1 11277:1 11283:1 11284:1 11291:1 11298:1 11300:2 11303:2 11306:1 11319:2 11330:1 11336:1 11337:1 11345:1 11348:2 11355:1 11360:2 11362:1 11365:1 11373:7 11376:4 11389:2 11390:3 11395:1 11402:1 11413:1 11417:1 11419:2 11432:1 11447:2 11462:5 11463:2 11483:2 11485:1 11486:1 11498:3 11524:1 11541:1 11544:1 11550:3 11562:2 11570:1 11573:6 11588:1 11597:1 11605:1 11609:1 11624:3 11664:1 11677:1 11744:1 11750:1 11767:1 11770:1 11791:1 11792:2 11796:2 11800:1 11801:2 11807:1 11811:1 11815:1 11816:1 11817:5 11819:5 11820:1 11827:1 11834:2 11838:2 11842:1 11845:4 11849:1 11851:1 11853:1 11868:3 11872:3 11877:1 11901:2 11910:1 11935:1 11937:1 11939:3 11983:1 11986:1 12007:1 12021:1 12023:1 12026:1 12061:1 12094:1 12102:1 12115:1 12118:1 12133:1 12137:2 12151:1 12156:1 12179:1 12192:1 12195:1 12202:2 12219:3 12222:2 12227:1 12241:2 12245:2 12247:1 12249:1 12250:2 12252:1 12260:3 12262:1 12263:1 12264:2 12269:1 12272:1 12278:1 12285:3 12287:2 12293:1 12324:15 12325:1 12356:1 12365:1 12369:4 12383:2 12384:2 12391:2 12396:1 12416:1 12418:2 12429:2 12430:1 12441:1 12442:2 12449:2 12450:1 12464:1 12483:1 12497:1 12501:1 12528:1 12544:1 12566:1 12574:3 12575:1 12579:1 12584:1 12587:1 12592:4 12596:1 12597:2 12599:1 12603:1 12604:1 12611:1 12614:1 12624:1 12636:1 12640:1 12641:1 12643:1 12649:2 12652:5 12655:2 12683:1 12718:1 12741:2 12745:1 12760:1 12783:1 12799:1 12801:1 12808:1 12818:2 12829:1 12845:1 12855:1 12856:1 12863:5 12872:1 12883:2 12886:1 12887:2 12901:1 12907:1 12918:1 12925:2 12931:2 12955:2 12971:2 12982:1 12983:2 13003:1 13025:2 13030:1 13043:1 13047:1 13052:1 13059:2 13070:1 13094:1 13118:1 13125:1 13127:1 13132:5 13133:2 13134:2 13149:1 13155:2 13168:1 13172:1 13174:1 13182:1 13195:1 13235:1 13237:2 13240:1 13264:1 13271:1 13280:1 13291:1 13303:1 13310:1 13327:1 13332:1 13338:1 13356:1 13427:3 13456:2 13473:1 13493:1 13502:1 13515:1 13531:1 13533:2 13534:1 13552:3 13566:1 13569:1 13582:1 13591:1 13601:1 13626:1 13654:1 13663:1 13666:1 13669:1 13670:2 13677:1 13699:1 13718:13 13723:3 13737:2 13762:1 13776:1 13777:3 13785:2 13805:1 13811:1 13817:1 13818:1 13828:1 13838:2 13839:1 13847:1 13881:1 13900:1 13906:1 13913:1 13920:2 13927:1 13939:2 13957:1 13959:1 13975:1 13978:1 13998:1 14000:1 14010:2 14011:1 14020:1 14026:1 14027:1 14048:1 14058:1 14064:3 14084:2 14085:1 14110:1 14129:1 14146:1 14149:1 14176:1 14190:1 14199:1 14201:1 14204:2 14208:4 14224:1 14230:2 14240:2 14245:1 14262:6 14279:1 14284:2 14307:1 14314:4 14316:1 14330:1 14352:1 14354:1 14355:1 14356:1 14369:7 14370:1 14381:2 14385:1 14403:1 14408:1 14416:1 14417:1 14422:2 14429:1 14437:1 14438:1 14453:15 14462:1 14466:1 14488:1 14503:2 14504:1 14510:3 14525:1 14532:2 14550:2 14560:1 14561:1 14603:3 14630:1 14635:6 14641:1 14658:1 14664:1 14670:1 14673:1 14695:3 14722:1 14732:1 14734:1 14737:1 14746:2 14748:1 14749:1 14760:1 14762:1 14769:6 14770:1 14773:1 14774:1 14775:1 14777:2 14778:1 14782:7 14783:2 14810:1 14811:1 14814:1 14818:1 14846:1 14867:1 14873:1 14894:1 14906:2 14921:1 14948:1 14958:1 14967:3 14968:1 15004:1 15010:1 15013:1 15015:1 15022:1 15025:1 15032:1 15033:1 15046:1 15049:1 15074:2 15079:1 15080:1 15091:1 15092:1 15094:1 15098:7 15111:1 15121:1 15123:3 15128:1 15163:1 15174:1 15175:2 15185:1 15191:1 15202:1 15210:1 15213:1 15215:1 15224:1 15236:1 15265:1 15266:1 15272:1 15278:1 15283:1 15293:1 15300:1 15304:1 15312:1 15315:1 15353:1 15362:2 15379:4 15395:1 15401:1 15414:1 15434:1 15446:1 15468:1 15488:1 15514:1 15517:3 15518:4 15527:1 15540:2 15541:2 15544:1 15550:2 15552:1 15570:1 15573:1 15581:1 15592:2 15617:1 15625:1 15651:1 15661:1 15675:2 15680:1 15683:1 15698:1 15703:1 15705:1 15707:1 15712:2 15714:1 15725:3 15729:2 15782:1 15786:2 15790:1 15804:2 15841:1 15842:2 15844:1 15851:1 15856:1 15870:1 15880:1 15883:1 15922:3 15928:1 15938:1 15941:2 15947:1 15972:1 15973:1 15978:1 16029:1 16032:1 16035:2 16073:2 16078:2 16079:1 16081:1 16090:1 16100:1 16120:1 16157:1 16160:3 16168:1 16188:1 16189:1 16192:2 16199:1 16231:1 16269:1 16298:1 16302:1 16308:1 16314:2 16351:1 16406:1 16424:2 16435:1 16442:1 16464:1 16476:1 16479:1 16481:2 16492:1 16511:2 16516:3 16520:1 16545:1 16551:1 16553:1 16563:1 16567:2 16585:2 16592:1 16614:1 16616:1 16627:2 16641:1 16652:2 16676:1 16686:1 16687:1 16701:6 16720:3 16731:1 16739:3 16752:3 16777:1 16782:1 16790:1 16807:1 16810:1 16815:2 16869:1 16883:2 16884:1 16897:2 16905:1 16909:1 16913:4 16914:1 16918:1 16920:1 16926:1 16940:4 16941:1 16945:1 16948:1 16962:1 16968:1 16980:1 16999:2 17008:2 17052:2 17055:1 17062:1 17079:3 17089:1 17101:1 17104:1 17105:3 17120:1 17135:3 17150:1 17151:1 17157:1 17198:1 17200:1 17230:1 17234:1 17239:14 17241:1 17256:1 17260:3 17262:1 17285:3 17327:1 17344:1 17349:2 17360:2 17363:1 17380:2 17383:1 17392:2 17401:1 17428:1 17435:1 17442:1 17444:1 17445:1 17454:2 17456:1 17482:1 17486:3 17489:1 17504:1 17511:1 17516:5 17518:2 17519:2 17520:5 17521:1 17523:1 17527:2 17529:1 17531:2 17532:3 17537:1 17538:1 17540:1 17544:1 17546:1 17548:1 17555:1 17590:1 17592:1 17598:1 17607:1 17627:1 17637:1 17652:1 17655:2 17656:1 17692:2 17699:1 17708:2 17709:2 17729:1 17762:1 17774:1 17776:1 17804:1 17808:1 17827:1 17868:1 17872:1 17874:1 17884:2 17899:1 17902:2 17915:2 17916:1 17925:1 17930:5 17937:1 17941:2 17954:1 17965:1 17966:1 17972:2 17975:4 17980:2 17985:1 17994:3 17998:2 18008:3 18016:1 18026:1 18071:13 18073:1 18086:1 18088:1 18095:1 18096:4 18102:1 18171:1 18172:1 18183:2 18191:1 18201:4 18211:1 18212:1 18225:1 18233:1 18236:2 18269:1 18286:2 18291:1 18307:5 18308:1 18322:1 18340:1 18341:1 18344:1 18361:1 18379:1 18423:2 18424:3 18425:1 18438:1 18440:1 18443:1 18453:1 18490:1 18491:1 18494:1 18514:1 18517:1 18530:2 18533:1 18548:1 18556:1 18565:2 18577:2 18585:1 18587:2 18593:1 18597:1 18617:1 18662:1 18670:1 18712:1 18731:1 18734:1 18755:1 18760:1 18775:2 18779:1 18791:3 18796:1 18801:1 18810:3 18814:2 18815:2 18819:2 18824:1 18825:10 18852:1 18872:1 18877:2 18880:1 18885:2 18887:1 18892:1 18898:1 18905:1 18908:1 18909:1 18910:1 18962:1 18982:1 18983:1 19004:3 19009:1 19023:1 19033:2 19047:1 19050:1 19054:1 19061:1 19070:1 19071:1 19101:1 19102:1 19103:1 19123:1 19130:1 19134:2 19147:1 19166:1 19171:1 19202:1 19207:1 19225:1 19226:2 19231:1 19233:1 19236:1 19243:1 19246:1 19267:1 19299:1 19337:1 19376:1 19378:1 19390:1 19391:2 19411:2 19450:1 19514:2 19515:1 19525:1 19538:1 19543:1 19553:1 19565:1 19575:1 19592:1 19593:1 19600:1 19619:1 19631:1 19651:1 19656:3 19661:1 19670:1 19709:1 19719:14 19731:1 19750:1 19780:1 19806:1 19826:13 19832:1 19833:3 19834:1 19843:1 19846:5 19847:1 19863:1 19872:1 19876:2 19897:1 19915:2 19948:4 19971:2 19979:1 19988:2 19990:1 19993:1 20016:3 20020:1 20023:2 20041:2 20047:1 20053:2229 20064:1 20070:1 20085:1 20086:1 20126:1 20132:1 20134:1 20160:2 20181:1 20217:1 20218:1 20229:1 20241:1 20262:1 20264:1 20267:1 20271:2 20274:5 20275:3 20286:1 20292:1 20294:1 20298:1 20308:1 20320:1 20338:1 20350:1 20364:1 20368:1 20373:1 20375:1 20420:1 20422:3 20425:2 20431:1 20469:1 20482:1 20489:1 20490:3 20528:2 20545:1 20546:1 20557:2 20558:1 20567:1 20579:1 20584:1 20587:1 20605:2 20618:1 20630:1 20642:1 20647:2 20651:2 20660:1 20669:1 20679:1 20681:1 20701:2 20702:2 20715:2 20721:1 20724:1 20732:2 20757:2 20759:1 20765:1 20768:1 20769:1 20774:1 20778:1 20781:2 20787:8 20792:1 20813:1 20815:1 20833:1 20838:2 20839:1 20848:2 20864:5 20871:1 20882:1 20884:1 20901:1 20917:1 20926:4 20933:1 20935:2 20941:1 20943:2 20956:4 20957:1 20968:1 20974:1 20979:2 20999:1 21005:4 21013:2 21014:1 21022:3 21061:3 21062:2 21065:1 21075:1 21089:1 21093:1 21095:2 21098:2 21105:1 21106:1 21109:1 21121:1 21132:1 21148:1 21149:1 21150:1 21152:1 21157:1 21168:1 21202:1 21219:1 21220:3 21237:1 21239:2 21241:1 21242:1 21249:1 21250:2 21254:1 21277:1 21281:1 21283:1 21288:1 21295:1 21302:1 21313:1 21320:1 21322:1 21330:1 21331:1 21341:1 21342:1 21361:1 21371:1 21376:2 21379:4 21385:1 21387:3 21446:1 21451:1 21453:1 21463:1 21466:2 21475:1 21478:1 21482:2 21483:2 21486:2 21501:1 21503:1 21507:3 21511:2 21518:1 21519:2 21523:2 21524:1 21544:5 21555:2 21571:1 21573:1 21583:1 21587:1 21590:2 21591:4 21613:1 21614:1 21627:1 21628:1 21633:1 21652:1 21654:2 21673:1 21676:1 21678:2 21699:1 21711:3 21712:18 21713:2 21719:1 21727:5 21733:1 21756:1 21759:1 21789:1 21798:1 21799:1 21813:1 21818:1 21822:1 21828:1 21853:1 21860:1 21861:1 21881:1 21887:1 21897:1 21940:4 21960:2 21982:2 21990:1 22001:2 22015:1 22018:1 22032:2 22066:8 22069:1 22071:2 22078:1 22085:1 22119:1 22120:1 22128:1 22140:1 22174:1 22177:1 22185:4 22202:3 22221:1 22225:1 22228:1 22231:1 22235:1 22236:1 22244:1 22247:2 22282:2 22288:3 22298:2 22300:2 22314:2 22319:2 22323:1 22325:1 22326:1 22337:2 22343:1 22370:4 22390:2 22398:1 22417:2 22421:1 22432:1 22452:2 22466:1 22473:1 22478:2 22479:1 22488:5 22492:1 22496:2 22503:1 22508:2 22519:3 22546:2 22554:1 22567:1 22590:1 22591:1 22592:1 22602:2 22615:2 22621:2 22624:2 22628:2 22632:2 22635:1 22643:2 22665:1 22671:2 22685:2 22699:2 22715:1 22716:2 22723:1 22724:1 22726:4 22739:1 22741:1 22750:2 22755:1 22758:1 22760:1 22768:1 22769:1 22773:2 22774:1 22779:1 22790:1 22793:1 22794:1 22811:1 22815:1 22838:1 22846:1 22855:1 22857:1 22862:2 22864:1 22865:1 22866:2 22879:1 22893:1 22939:1 22996:1 23014:2 23017:1 23026:2 23027:2 23031:1 23032:1 23038:1 23039:1 23043:1 23045:1 23056:1 23063:2 23070:3 23071:1 23081:1 23090:1 23104:1 23121:1 23131:1 23137:1 23147:1 23158:1 23159:1 23181:2 23183:1 23184:1 23185:1 23190:1 23194:1 23195:2 23199:1 23200:1 23210:1 23213:1 23217:2 23222:2 23228:2 23229:1 23236:2 23238:1 23249:1 23251:2 23262:1 23271:13 23281:2 23282:2 23288:2 23298:1 23313:1 23326:1 23328:1 23337:1 23345:1 23347:1 23348:1 23349:1 23352:1 23355:1 23377:1 23410:2 23418:1 23426:2 23429:1 23434:1 23437:4 23439:3 23442:1 23452:2 23466:1 23467:1 23468:1 23475:1 23477:1 23497:1 23498:1 23500:3 23502:4 23503:2 23522:1 23537:1 23540:1 23576:1 23605:3 23613:1 23614:4 23616:3 23617:3 23619:1 23620:1 23625:1 23628:2 23631:1 23632:2 23644:1 23645:5 23655:1 23656:1 23659:1 23674:1 23682:1 23693:2 23697:2 23700:2 23721:1 23749:1 23751:1 23778:2 23783:2 23795:1 23796:1 23801:1 23811:1 23823:1 23834:1 23850:1 23853:1 23858:1 23859:1 23862:1 23865:1 23867:1 23882:1 23886:1 23887:1 23897:1 23900:1 23912:2 23915:1 23922:5 23929:1 23939:1 23940:3 23943:3 23946:1 23952:1 23969:1 23977:1 23982:1 23990:2 23993:1 23997:1 23998:1 24001:1 24002:4 24010:2 24016:1 24026:2 24030:9 24033:1 24037:1 24044:1 24046:1 24050:1 24053:1 24073:1 24074:1 24108:7 24111:1 24126:1 24150:1 24162:1 24172:5 24173:1 24175:1 24178:1 24184:1 24197:1 24199:1 24221:1 24222:1 24248:1 24250:2 24260:1 24289:1 24290:1 24291:6 24294:2 24305:3 24308:1 24309:3 24319:1 24325:1 24329:1 24332:1 24346:1 24349:3 24361:1 24370:1 24371:3 24376:3 24386:1 24396:1 24408:1 24419:1 24426:1 24432:1 24447:1 24451:1 24479:1 24486:1 24495:1 24499:1 24500:1 24502:1 24517:1 24531:2 24549:10 24550:3 24558:1 24568:2 24574:1 24578:2 24585:4 24590:1 24594:1 24598:3 24608:2 24624:1 24635:1 24661:1 24671:1 24681:1 24682:1 24685:2 24688:2 24706:1 24708:1 24711:1 24742:1 24744:1 24746:1 24749:1 24750:1 24752:1 24762:1 24774:1 24776:1 24789:1 24795:2 24799:1 24806:2 24808:1 24814:1 24842:1 24851:3 24883:3 24899:1 24940:1 24969:1 24996:3 25000:2 25008:5 25018:2 25027:1 25033:1 25036:3 25039:1 25051:2 25054:2 25056:3 25066:1 25080:4 25122:1 25130:1 25138:1 25160:1 25172:1 25184:1 25196:1 25199:2 25230:1 25232:1 25240:2 25246:1 25259:2 25268:1 25273:2 25283:1 25286:1 25298:1 25304:1 25314:1 25315:2 25318:2 25320:3 25329:1 25331:1 25343:1 25352:1 25366:3 25368:2 25371:2 25376:1 25388:1 25391:1 25396:1 25447:1 25450:4 25453:1 25458:1 25462:1 25469:1 25471:1 25472:2 25474:1 25477:1 25478:1 25479:1 25481:1 25485:1 25511:1 25535:1 25537:1 25549:1 25605:2 25618:2 25633:1 25652:2 25715:1 25718:2 25727:1 25729:1 25739:1 25754:1 25770:1 25772:1 25776:1 25786:1 25793:2 25803:1 25840:1 25851:1 25861:1 25885:1 25898:1 25900:2 25909:1 25937:2 25940:1 25963:2 25977:3 25989:1 26010:1 26021:1 26022:7 26041:1 26048:1 26055:3 26066:1 26075:1 26076:1 26081:1 26086:4 26095:1 26097:1 26098:1 26103:1 26111:1 26135:3 26157:2 26161:1 26167:1 26168:2 26214:1 26250:1 26253:1 26288:1 26291:1 26292:1 26300:1 26301:1 26304:3 26305:2 26309:1 26311:1 26313:1 26317:2 26318:1 26319:1 26320:1 26342:1 26356:6 26365:1 26373:1 26374:1 26376:1 26380:1 26391:1 26395:1 26397:1 26399:1 26420:11 26425:6 26426:1 26445:1 26447:2 26456:1 26457:1 26459:1 26473:1 26477:1 26479:1 26483:1 26488:3 26495:2 26512:1 26530:1 26536:1 26588:1 26616:1 26632:1 26634:1 26648:2 26651:1 26659:1 26668:1 26669:1 26674:2 26683:2 26687:1 26690:1 26696:2 26698:2 26703:1 26734:1 26736:1 26749:1 26756:1 26758:2 26766:1 26767:1 26776:1 26787:1 26794:1 26803:4 26828:2 26833:1 26836:1 26844:1 26847:1 26857:2 26862:2 26872:1 26875:2 26880:1 26895:1 26901:1 26902:1 26929:17 26930:2 26942:1 26964:1 26973:1 26974:1 26986:1 27000:1 27012:1 27019:2 27024:1 27029:1 27048:2 27051:1 27059:1 27060:1 27078:1 27083:1 27088:1 27092:1 27094:1 27112:1 27123:1 27164:1 27192:10 27193:1 27218:1 27230:1 27233:2 27234:1 27253:1 27265:1 27272:1 27279:1 27290:1 27298:1 27304:1 27312:6 27315:1 27336:1 27338:1 27340:2 27341:1 27368:1 27375:1 27381:2 27387:1 27393:1 27398:1 27410:1 27428:1 27443:2 27448:2 27450:1 27465:2 27484:1 27486:1 27498:1 27514:1 27577:1 27579:2 27590:1 27603:1 27606:1 27619:1 27622:1 27627:2 27633:5 27636:1 27643:1 27645:1 27646:1 27657:1 27662:1 27669:1 27673:1 27701:5 27711:1 27713:1 27716:1 27728:1 27729:7 27746:1 27748:2 27750:1 27765:1 27773:1 27777:1 27784:3 27786:1 27793:1 27796:1 27810:1 27820:1 27854:1 27866:1 27873:2 27889:1 27927:1 27933:1 27947:1 27970:1 27977:1 28000:1 28010:1 28038:2 28048:1 28049:2 28064:1 28065:1 28071:1 28072:1 28076:1 28092:1 28106:3 28108:1 28131:1 28142:4 28153:1 28186:1 28191:1 28200:2 28202:1 28210:2 28211:1 28227:2 28228:14 28239:2 28265:1 28268:1 28282:1 28291:2 28303:1 28304:1 28305:1 28309:1 28317:1 28322:1 28326:2 28328:2 28337:1 28343:1 28356:4 28360:3 28368:3 28371:2 28373:4 28375:1 28403:1 28410:1 28456:1 28463:1 28481:1 28497:1 28500:1 28501:2 28502:1 28515:1 28531:2 28551:2 28564:1 28568:2 28569:1 28572:1 28573:2 28594:6 28595:1 28596:1 28605:1 28609:1 28618:1 28627:1 28630:1 28634:1 28637:1 28667:1 28671:2 28673:2 28691:1 28699:1 28727:1 28744:1 28768:1 28777:1 28788:3 28814:1 28816:2 28817:1 28846:1 28851:1 28857:1 28860:1 28863:5 28878:1 28883:1 28884:1 28921:1 28925:1 28931:1 28932:1 28945:1 28949:1 28954:2 28959:1 28963:1 28983:1 28986:2 28988:2 28998:3 29014:1 29017:1 29034:1 29043:1 29045:1 29050:2 29078:1 29086:2 29093:1 29095:1 29132:1 29144:2 29158:1 29163:3 29166:1 29171:1 29172:1 29182:1 29187:1 29190:1 29191:2 29210:1 29218:1 29227:2 29238:2 29241:1 29244:1 29247:1 29250:1 29259:2 29260:1 29281:1 29295:1 29302:1 29312:1 29314:1 29318:2 29322:1 29354:1 29373:5 29375:3 29377:2 29401:1 29404:1 29406:1 29438:1 29446:2 29453:1 29460:1 29465:2 29473:2 29482:1 29484:1 29487:1 29494:2 29501:1 29508:1 29514:1 29516:1 29523:1 29524:1 29529:2 29530:1 29531:1 29536:3 29539:1 29543:2 29546:1 29556:2 29566:2 29571:1 29574:1 29579:1 29580:1 29613:1 29615:1 29630:1 29641:4 29656:1 29663:2 29688:2 29709:1 29763:1 29766:2 29798:1 29804:1 29805:2 29831:2 29848:1 29849:1 29853:1 29855:3 29862:5 29872:1 29879:1 29883:1 29891:1 29921:6 29952:1 29954:1 29964:1 29969:1 29985:1 30009:1 30014:1 30019:2 30034:2 30039:1 30051:1 30063:1 30065:1 30082:1 30100:1 30109:1 30110:2 30114:1 30133:2 30134:3 30135:1 30138:1 30146:2 30150:1 30151:1 30152:2 30169:1 30171:1 30180:1 30181:5 30196:1 30203:1 30205:1 30220:2 30226:2 30228:2 30229:1 30231:1 30235:1 30238:5 30244:1 30251:1 30252:1 30261:3 30263:1 30275:3 30279:1 30283:3 30309:1 30316:3 30332:1 30336:1 30354:1 30356:1 30362:1 30377:1 30392:3 30397:4 30406:5 30411:1 30438:5 30453:1 30457:1 30462:1 30470:1 30471:1 30484:1 30491:1 30493:1 30495:1 30525:1 30527:5 30532:1 30537:2 30571:1 30574:1 30583:1 30604:1 30614:1 30629:1 30634:1 30635:1 30645:1 30646:2 30651:1 30656:1 30670:1 30673:3 30709:1 30710:1 30711:1 30717:7 30719:1 30729:1 30730:1 30735:2 30750:1 30786:5 30810:1 30865:1 30871:1 30882:1 30916:1 30926:1 31003:1 31028:2 31043:1 31046:1 31047:2 31048:1 31053:2 31055:3 31068:1 31072:1 31074:1 31082:1 31086:1 31092:1 31103:1 31124:1 31136:1 31143:1 31152:1 31184:1 31194:3 31204:2 31233:2 31238:1 31239:2 31257:1 31259:1 31272:1 31284:1 31289:1 31296:1 31301:1 31308:3 31309:1 31313:2 31343:1 31345:1 31348:4 31351:2 31377:1 31382:1 31405:1 31413:1 31422:1 31431:1 31443:1 31467:1 31473:1 31478:3 31484:1 31487:1 31505:1 31516:3 31519:1 31542:1 31577:2 31580:2 31599:1 31600:1 31606:1 31608:3 31615:3 31617:3 31618:1 31623:1 31632:1 31677:5 31682:1 1 13:1 40:1 46:1 53:1 62:1 65:1 72:1 106:1 141:1 155:1 156:3 161:1 167:2 173:1 188:2 190:3 207:6 226:1 231:1 244:1 263:1 274:1 278:7 287:1 297:3 307:1 328:2 354:1 371:4 373:3 378:3 387:3 391:1 397:2 416:3 430:1 438:2 454:5 458:5 471:1 485:1 490:1 522:1 526:1 527:1 561:2 588:1 596:1 600:2 614:1 620:1 634:3 645:1 659:1 665:1 667:4 674:2 678:1 693:2 704:1 765:1 767:1 783:1 810:1 815:1 817:1 826:1 829:2 830:1 854:1 856:2 863:1 871:1 900:6 906:1 911:1 917:1 918:4 922:1 927:1 942:15 943:4 952:3 975:4 984:1 992:1 993:4 995:2 998:8 1000:1 1001:2 1004:4 1018:2 1033:1 1042:5 1044:4 1055:1 1056:1 1095:2 1104:1 1121:1 1142:1 1159:1 1177:1 1178:1 1198:1 1210:2 1214:1 1217:1 1275:3 1277:2 1283:1 1285:2 1287:1 1295:2 1298:1 1299:1 1312:1 1315:1 1325:1 1326:1 1328:1 1332:2 1343:1 1351:2 1356:2 1367:1 1380:1 1386:2 1389:1 1408:1 1417:1 1429:1 1432:1 1433:1 1451:1 1457:1 1466:1 1468:1 1470:1 1485:1 1500:1 1527:1 1530:1 1540:1 1541:2 1557:1 1564:1 1565:2 1584:1 1587:1 1595:3 1602:1 1613:1 1629:1 1630:1 1632:2 1635:1 1647:1 1654:1 1674:1 1686:4 1694:7 1696:2 1705:1 1713:1 1743:2 1751:1 1754:1 1763:1 1767:1 1783:1 1786:1 1788:1 1791:2 1799:1 1804:2 1813:1 1818:1 1820:1 1824:1 1825:2 1835:1 1839:2 1850:1 1854:1 1863:1 1867:1 1871:1 1875:1 1881:1 1882:1 1886:2 1897:1 1900:1 1905:1 1914:1 1920:2 1923:1 1944:1 1945:5 1950:1 1954:1 1965:1 1971:1 1974:3 1978:1 1979:2 1993:2 1994:6 2027:4 2030:2 2043:1 2054:1 2055:1 2060:2 2065:4 2070:1 2071:1 2074:1 2089:1 2103:2 2112:1 2113:1 2121:3 2127:2 2128:1 2129:1 2143:2 2146:1 2192:1 2198:8 2201:1 2207:1 2210:1 2214:1 2215:4 2219:1 2220:1 2222:2 2226:1 2230:2 2236:1 2243:1 2247:1 2255:1 2268:1 2272:1 2283:1 2296:2 2300:1 2301:1 2306:2 2308:1 2323:1 2335:1 2349:1 2354:11 2361:1 2370:1 2376:1 2379:1 2393:1 2402:1 2423:2 2436:3 2439:1 2450:1 2458:1 2464:2 2477:2 2478:2 2480:1 2482:3 2485:5 2487:1 2489:1 2491:2 2494:2 2495:2 2497:1 2499:2 2501:1 2502:4 2506:1 2508:5 2509:3 2514:5 2515:7 2517:1 2528:1 2562:1 2565:1 2568:2 2571:3 2576:1 2593:2 2595:1 2603:1 2617:1 2618:1 2623:1 2631:1 2637:1 2639:1 2657:1 2671:1 2695:1 2706:3 2718:1 2722:1 2739:3 2751:2 2752:1 2764:1 2765:1 2771:1 2776:1 2779:1 2800:3 2803:2 2806:1 2808:6 2812:1 2813:1 2814:1 2824:1 2827:1 2835:1 2849:4 2851:1 2852:1 2857:1 2873:2 2881:1 2884:1 2885:2 2897:6 2906:2 2911:1 2913:2 2916:9 2924:4 2928:1 2937:2 2939:1 2943:1 2945:2 2947:1 2950:3 2951:2 2967:2 2981:1 2982:2 2987:3 2991:1 2995:1 3029:1 3034:1 3035:2 3036:2 3041:1 3050:3 3052:1 3056:1 3060:6 3065:2 3069:1 3085:1 3089:1 3096:1 3122:1 3127:2 3128:1 3146:4 3152:1 3157:1 3159:14 3178:3 3180:1 3185:1 3186:1 3190:1 3199:2 3203:2 3206:1 3224:18 3225:1 3234:1 3246:2 3249:3 3269:1 3280:1 3317:1 3325:1 3332:1 3338:1 3351:1 3352:5 3371:3 3377:1 3383:1 3391:1 3410:1 3426:1 3438:1 3440:1 3442:1 3447:1 3457:2 3469:1 3490:2 3504:1 3510:3 3524:1 3531:1 3534:1 3550:1 3551:2 3579:1 3580:2 3581:1 3590:1 3608:6 3609:1 3626:1 3643:1 3663:1 3695:1 3706:2 3719:1 3749:1 3751:1 3753:1 3774:1 3781:1 3783:1 3784:1 3788:1 3794:1 3799:1 3804:1 3805:1 3829:1 3844:1 3851:1 3861:1 3868:2 3873:1 3897:1 3898:13 3900:1 3909:1 3912:2 3914:2 3915:2 3937:1 3942:1 3943:1 3947:1 3962:1 3998:1 4000:2 4001:1 4008:1 4013:3 4021:2 4038:1 4062:1 4096:1 4099:1 4101:1 4106:2 4110:1 4113:2 4117:1 4129:3 4149:1 4152:1 4156:2 4163:1 4167:1 4179:2 4181:1 4186:1 4195:1 4200:3 4201:1 4215:1 4220:1 4221:1 4226:4 4229:1 4236:2 4240:1 4241:2 4242:1 4253:4 4267:1 4272:2 4289:1 4293:2 4309:1 4313:2 4315:2 4320:1 4340:2 4348:6 4349:4 4356:2 4393:1 4395:2 4398:1 4403:1 4417:1 4422:1 4426:2 4432:1 4448:1 4464:2 4470:1 4471:1 4476:1 4500:2 4526:2 4537:1 4547:4 4548:1 4551:1 4552:1 4557:2 4559:1 4563:1 4567:2 4581:1 4587:1 4594:1 4610:1 4624:1 4629:1 4647:1 4649:1 4669:7 4691:3 4696:1 4708:2 4712:1 4714:1 4717:1 4720:2 4732:2 4749:2 4759:1 4779:1 4785:1 4787:3 4788:1 4808:4 4834:1 4843:1 4844:1 4850:1 4869:2 4876:1 4893:1 4899:1 4902:1 4904:1 4910:1 4911:3 4913:1 4922:1 4938:1 4959:3 4970:1 4983:5 5001:1 5006:1 5034:4 5044:2 5056:1 5057:1 5062:3 5066:1 5085:4 5105:2 5131:1 5135:2 5138:3 5154:3 5167:1 5174:1 5187:1 5189:2 5198:1 5200:1 5216:1 5217:1 5230:1 5249:1 5267:14 5270:2 5279:1 5282:1 5283:1 5290:1 5297:1 5307:1 5316:1 5329:1 5339:1 5350:1 5404:3 5429:1 5430:1 5431:4 5433:7 5434:3 5436:1 5440:2 5441:2 5442:1 5445:1 5446:2 5449:6 5450:4 5453:1 5454:2 5456:7 5464:2 5465:5 5468:1 5469:1 5517:1 5532:1 5548:2 5557:1 5575:1 5580:1 5592:1 5614:1 5625:1 5638:1 5658:1 5668:1 5704:1 5720:1 5731:2 5765:1 5771:1 5801:3 5807:2 5813:1 5847:1 5850:1 5875:4 5889:1 5890:1 5915:1 5917:1 5937:1 5943:1 5953:2 5959:1 5972:1 5980:1 5988:1 5994:1 6017:1 6029:1 6057:1 6060:1 6080:1 6100:2 6110:1 6115:2 6118:1 6121:1 6133:5 6134:1 6136:2 6139:1 6143:1 6144:3 6156:1 6157:1 6181:1 6188:3 6200:2 6202:1 6204:1 6219:6 6223:1 6224:1 6237:2 6289:1 6308:1 6320:1 6327:1 6330:1 6337:1 6345:1 6349:1 6351:1 6352:1 6361:2 6366:1 6387:1 6400:1 6427:1 6433:2 6444:2 6455:1 6466:2 6468:2 6471:2 6486:1 6488:6 6494:1 6495:1 6499:1 6502:2 6510:1 6512:1 6514:1 6515:1 6516:1 6556:1 6559:1 6560:1 6561:1 6569:1 6571:2 6573:1 6579:1 6581:1 6582:2 6586:12 6600:1 6603:1 6624:3 6631:1 6655:1 6668:1 6684:3 6693:2 6706:1 6709:6 6713:1 6720:1 6769:1 6775:1 6799:1 6806:1 6808:1 6809:1 6814:2 6816:3 6817:1 6822:1 6823:1 6825:2 6826:1 6832:2 6834:4 6835:3 6884:1 6931:1 6949:1 6990:1 6993:4 6996:2 7008:1 7016:1 7040:1 7052:1 7057:1 7061:1 7071:1 7076:1 7079:1 7097:1 7106:2 7131:1 7145:2 7153:2 7167:1 7174:1 7175:1 7182:1 7227:1 7241:1 7251:2 7253:1 7256:1 7260:1 7265:1 7284:8 7292:2 7295:3 7298:1 7309:1 7315:1 7326:2 7348:1 7357:1 7360:1 7362:1 7403:1 7405:3 7421:2 7429:1 7435:2 7454:1 7460:1 7465:1 7473:1 7478:2 7479:1 7504:1 7522:1 7529:2 7535:1 7550:1 7561:1 7569:1 7574:6 7578:2 7598:1 7611:1 7615:1 7621:1 7624:3 7625:2 7632:1 7636:4 7638:1 7640:1 7645:5 7648:1 7651:1 7656:1 7679:1 7680:1 7681:1 7684:1 7695:1 7701:1 7726:1 7729:1 7737:4 7747:4 7759:1 7771:1 7792:3 7795:1 7796:1 7798:1 7805:1 7812:1 7818:1 7827:1 7829:1 7835:1 7839:1 7846:1 7853:1 7869:1 7897:1 7919:1 7925:1 7930:1 7933:2 7971:1 7984:1 7985:2 7986:5 7991:3 7997:1 7999:1 8004:1 8006:3 8010:1 8032:6 8034:1 8036:2 8037:1 8061:1 8064:3 8074:1 8081:1 8093:1 8108:2 8110:1 8117:1 8127:1 8131:1 8134:1 8140:1 8152:1 8153:1 8160:1 8161:2 8168:1 8175:1 8178:1 8189:1 8190:1 8198:1 8218:3 8235:4 8236:6 8250:2 8257:4 8258:1 8262:2 8263:3 8265:1 8278:1 8287:4 8288:2 8290:1 8303:45 8306:2 8315:1 8323:1 8326:9 8327:5 8331:2 8367:1 8374:1 8375:1 8384:1 8397:1 8404:3 8405:2 8411:1 8421:1 8424:2 8433:2 8445:3 8455:1 8459:1 8461:1 8480:2 8486:1 8488:1 8492:1 8512:1 8514:2 8541:1 8550:1 8553:1 8557:1 8558:3 8588:1 8591:1 8592:1 8593:1 8605:2 8609:2 8653:1 8663:1 8681:1 8696:1 8698:1 8722:1 8723:1 8734:1 8737:1 8742:1 8765:1 8768:1 8775:1 8777:1 8778:2 8788:1 8797:1 8815:1 8816:1 8835:23 8843:1 8844:1 8865:3 8868:3 8870:1 8900:1 8911:1 8935:6 8937:1 8938:1 8943:1 8969:1 8974:1 8990:3 8993:1 8994:2 8996:1 9001:1 9019:1 9030:1 9031:4 9038:3 9044:1 9049:1 9065:2 9066:1 9069:1 9076:1 9080:1 9088:1 9090:1 9104:1 9109:1 9110:1 9128:1 9129:2 9139:2 9141:1 9142:1 9154:2 9201:1 9204:1 9205:1 9209:1 9211:1 9216:1 9239:1 9242:2 9255:6 9257:1 9267:2 9271:3 9291:1 9302:1 9303:1 9312:1 9319:2 9323:1 9324:1 9333:1 9340:1 9345:1 9365:2 9375:1 9393:1 9404:1 9431:1 9436:1 9437:1 9449:1 9450:1 9460:1 9485:1 9486:1 9487:1 9501:3 9510:1 9533:1 9536:1 9537:1 9541:3 9577:3 9586:1 9594:2 9606:1 9613:1 9618:1 9643:1 9644:1 9651:1 9655:1 9661:1 9662:6 9663:1 9668:1 9670:1 9675:1 9687:1 9695:2 9697:1 9708:6 9709:1 9719:1 9732:1 9740:1 9759:1 9768:11 9769:5 9778:1 9784:2 9794:2 9830:3 9837:1 9844:1 9849:1 9853:3 9855:1 9872:1 9878:1 9882:2 9884:2 9886:3 9888:2 9898:1 9907:1 9919:1 9928:1 9950:1 9960:2 9963:1 9969:1 9972:5 9974:1 9988:1 9996:3 9999:2 10005:1 10006:1 10021:4 10050:1 10064:1 10080:1 10089:1 10108:1 10111:3 10118:1 10122:3 10128:1 10142:1 10147:1 10156:1 10159:1 10183:1 10197:1 10201:1 10211:1 10220:7 10226:2 10264:3 10283:1 10284:1 10298:3 10302:1 10330:1 10352:1 10358:1 10363:1 10365:3 10366:3 10369:2 10374:1 10399:1 10406:2 10408:1 10437:2 10439:1 10447:1 10458:1 10494:2 10511:1 10517:1 10530:2 10542:1 10554:1 10557:1 10558:1 10576:1 10587:1 10603:1 10606:1 10611:1 10612:1 10626:1 10630:1 10657:1 10662:1 10663:1 10665:1 10670:1 10674:5 10690:4 10702:4 10707:2 10717:1 10738:2 10762:3 10764:1 10772:1 10807:1 10813:2 10818:2 10835:1 10841:1 10854:1 10861:4 10864:1 10901:2 10907:1 10911:12 10913:1 10914:2 10919:2 10927:1 10948:2 10949:1 10969:1 10973:1 10980:1 10991:1 11018:1 11040:1 11047:2 11049:1 11074:1 11094:1 11109:1 11110:1 11112:1 11115:1 11117:1 11121:4 11129:1 11131:1 11136:2 11169:1 11181:4 11185:1 11187:1 11189:1 11194:1 11196:3 11207:1 11210:1 11213:1 11224:4 11244:1 11265:1 11277:1 11283:1 11284:1 11291:1 11298:1 11300:2 11303:2 11306:1 11319:2 11330:1 11336:1 11337:1 11345:1 11348:3 11355:1 11360:2 11362:1 11365:1 11373:7 11376:4 11389:2 11390:3 11395:1 11402:1 11413:1 11417:1 11419:2 11432:1 11447:2 11462:6 11463:2 11483:2 11485:1 11486:1 11498:3 11524:1 11541:1 11544:1 11550:3 11562:2 11570:1 11573:6 11588:1 11597:1 11605:1 11609:1 11624:3 11664:1 11677:1 11744:1 11750:1 11767:1 11770:1 11791:1 11792:2 11796:2 11800:1 11801:2 11807:1 11811:1 11815:1 11816:1 11817:5 11819:5 11820:1 11827:1 11834:2 11838:2 11842:1 11845:4 11849:1 11851:1 11853:1 11865:1 11868:3 11872:3 11877:1 11901:2 11910:1 11935:1 11937:1 11939:3 11983:1 11986:1 12007:1 12021:2 12023:1 12026:1 12061:1 12094:1 12102:1 12115:1 12118:1 12133:1 12137:3 12151:1 12156:1 12179:1 12192:1 12195:1 12202:2 12219:3 12222:2 12227:1 12241:2 12245:2 12247:1 12249:1 12250:2 12252:1 12260:3 12262:1 12263:1 12264:2 12269:1 12272:1 12278:1 12285:3 12287:2 12293:1 12324:15 12325:1 12356:1 12365:1 12369:4 12383:2 12384:2 12391:2 12396:1 12416:1 12418:2 12429:2 12430:1 12441:1 12442:2 12449:2 12450:1 12464:1 12483:1 12497:1 12501:1 12528:1 12544:1 12566:1 12574:3 12575:1 12579:1 12584:1 12587:1 12592:4 12596:1 12597:2 12599:1 12603:1 12604:1 12611:1 12614:1 12624:1 12636:1 12640:1 12641:1 12643:1 12649:2 12652:5 12655:2 12683:1 12718:1 12741:2 12745:1 12760:1 12783:1 12799:1 12801:1 12808:1 12818:2 12829:1 12845:1 12855:1 12856:1 12863:5 12872:1 12883:2 12886:1 12887:2 12901:1 12907:1 12918:1 12925:2 12931:2 12955:2 12971:2 12982:1 12983:2 13003:1 13025:2 13030:1 13043:1 13047:1 13049:1 13052:1 13059:2 13070:1 13094:1 13118:1 13125:1 13127:1 13132:5 13133:2 13134:2 13149:1 13155:2 13168:1 13172:1 13174:1 13182:1 13195:1 13235:1 13237:2 13240:1 13264:1 13271:1 13280:1 13291:1 13303:1 13310:1 13327:1 13332:1 13338:1 13356:1 13427:3 13456:2 13473:1 13493:1 13502:1 13515:1 13531:1 13533:2 13534:1 13552:3 13566:1 13569:1 13582:1 13591:1 13601:1 13626:1 13654:1 13663:1 13666:1 13669:1 13670:2 13677:1 13699:1 13718:14 13723:3 13737:2 13762:1 13776:1 13777:3 13785:3 13805:1 13811:1 13817:1 13818:1 13828:1 13838:2 13839:1 13847:1 13881:1 13900:1 13906:1 13913:1 13920:2 13927:1 13939:2 13957:1 13959:1 13975:1 13978:1 13998:1 14000:1 14010:2 14011:1 14020:1 14026:1 14027:1 14048:1 14058:1 14064:3 14084:2 14085:1 14110:1 14129:1 14146:1 14149:1 14176:1 14186:1 14190:1 14199:1 14201:1 14204:2 14208:4 14224:1 14230:2 14240:2 14245:1 14262:6 14279:1 14284:2 14307:1 14314:4 14316:1 14330:1 14347:1 14352:1 14354:1 14355:1 14356:1 14369:8 14370:1 14381:2 14385:1 14403:1 14408:1 14416:1 14417:1 14422:2 14429:1 14437:1 14438:1 14453:16 14462:1 14466:1 14488:1 14503:2 14504:1 14510:3 14525:1 14532:2 14550:2 14560:1 14561:1 14603:3 14630:1 14635:6 14641:1 14658:1 14664:2 14670:1 14673:1 14695:3 14722:1 14732:1 14734:1 14737:1 14746:3 14748:1 14749:1 14760:1 14762:1 14769:6 14770:1 14773:1 14774:2 14775:1 14777:2 14778:1 14782:7 14783:2 14810:1 14811:1 14814:1 14818:1 14846:1 14867:1 14873:1 14894:1 14906:2 14911:1 14921:1 14948:1 14958:1 14967:4 14968:1 15004:1 15010:1 15013:1 15015:1 15022:1 15025:1 15032:1 15033:1 15046:1 15049:1 15074:2 15079:1 15080:1 15091:1 15092:1 15094:1 15098:7 15111:1 15121:1 15123:3 15128:1 15163:1 15174:1 15175:2 15185:1 15191:1 15202:1 15210:1 15213:1 15215:1 15224:1 15236:1 15258:1 15265:1 15266:1 15272:1 15278:1 15283:1 15293:1 15300:1 15304:1 15312:1 15315:1 15353:1 15362:2 15379:5 15395:1 15401:1 15414:1 15434:1 15446:1 15468:1 15488:1 15514:1 15517:3 15518:4 15527:1 15540:2 15541:2 15544:1 15550:2 15552:1 15570:1 15573:1 15581:1 15592:2 15617:1 15625:1 15651:1 15661:1 15675:2 15680:1 15683:1 15698:1 15703:1 15705:1 15707:1 15712:2 15714:1 15725:3 15729:2 15782:1 15786:2 15790:1 15804:2 15841:1 15842:2 15844:1 15851:1 15856:1 15870:1 15880:1 15883:1 15922:3 15928:1 15938:1 15941:2 15947:1 15972:1 15973:1 15978:1 16029:1 16032:1 16035:2 16073:2 16078:2 16079:1 16081:1 16090:1 16100:1 16109:1 16120:1 16157:1 16160:3 16168:1 16188:1 16189:1 16192:2 16199:1 16231:1 16269:1 16298:1 16302:1 16308:1 16314:2 16351:1 16364:1 16406:1 16424:2 16435:1 16442:1 16464:1 16476:1 16479:1 16481:2 16492:1 16511:2 16516:3 16520:1 16545:1 16551:1 16553:1 16563:1 16567:2 16585:2 16592:1 16614:1 16616:1 16627:2 16641:1 16652:2 16676:1 16686:1 16687:1 16701:6 16720:3 16731:1 16739:3 16752:3 16777:1 16782:1 16790:1 16807:1 16810:1 16815:2 16869:1 16883:2 16884:1 16897:2 16905:1 16909:1 16913:4 16914:1 16918:1 16920:1 16926:1 16940:4 16941:1 16945:1 16948:1 16962:1 16968:1 16980:1 16999:2 17008:2 17052:2 17055:1 17062:1 17079:3 17089:2 17101:1 17104:1 17105:3 17120:1 17135:3 17150:1 17151:1 17157:1 17198:1 17200:1 17230:1 17234:1 17239:15 17241:1 17256:1 17258:1 17260:3 17262:1 17285:3 17327:1 17344:1 17349:2 17360:2 17363:1 17380:2 17383:1 17392:2 17401:1 17428:1 17435:1 17442:1 17444:1 17445:1 17454:2 17456:1 17482:1 17486:3 17489:1 17504:1 17511:1 17516:5 17518:2 17519:2 17520:6 17521:1 17523:1 17527:2 17529:1 17531:2 17532:3 17537:1 17538:1 17540:1 17544:1 17546:1 17548:1 17555:1 17581:1 17590:1 17592:1 17598:1 17607:1 17627:1 17637:1 17652:1 17655:2 17656:1 17692:2 17699:1 17708:2 17709:2 17729:1 17762:1 17774:1 17776:1 17804:1 17808:1 17827:1 17868:1 17872:1 17874:1 17884:2 17899:1 17902:2 17915:2 17916:1 17925:1 17930:5 17937:1 17941:2 17954:1 17965:1 17966:1 17972:2 17975:4 17980:2 17985:1 17994:3 17998:2 18008:3 18016:1 18026:1 18071:13 18073:1 18086:1 18088:1 18095:1 18096:4 18102:1 18171:1 18172:1 18183:2 18191:1 18201:4 18211:1 18212:1 18225:1 18233:1 18236:2 18266:1 18269:1 18286:2 18291:1 18307:5 18308:1 18322:1 18340:1 18341:1 18344:1 18361:1 18379:1 18423:2 18424:3 18425:1 18438:1 18440:1 18443:1 18453:1 18490:1 18491:1 18494:1 18514:1 18517:1 18530:2 18533:1 18548:1 18556:1 18565:2 18577:2 18585:1 18587:2 18593:1 18597:1 18617:1 18662:1 18670:1 18712:1 18731:1 18734:1 18755:1 18760:1 18775:2 18779:1 18791:3 18796:1 18800:1 18801:1 18810:3 18814:2 18815:2 18819:2 18824:1 18825:10 18852:1 18872:1 18877:2 18880:1 18885:2 18887:1 18892:1 18898:1 18905:1 18908:1 18909:1 18910:1 18962:1 18982:1 18983:1 19004:3 19009:1 19023:1 19033:2 19047:1 19050:1 19054:1 19061:1 19070:1 19071:1 19101:1 19102:1 19103:1 19123:1 19130:1 19134:2 19147:1 19166:1 19171:1 19202:1 19207:1 19225:1 19226:2 19231:1 19233:1 19236:1 19243:1 19246:1 19267:1 19299:1 19337:1 19376:1 19378:1 19390:1 19391:2 19411:2 19450:1 19514:2 19515:1 19525:1 19538:1 19543:1 19553:1 19565:1 19575:1 19592:1 19593:1 19600:1 19619:1 19631:1 19651:1 19656:3 19661:1 19670:1 19709:1 19719:14 19731:1 19750:1 19780:1 19806:1 19826:14 19832:1 19833:4 19834:1 19843:1 19846:5 19847:1 19863:1 19872:1 19876:2 19897:1 19915:2 19948:4 19971:2 19979:1 19988:2 19990:1 19993:1 20016:3 20020:1 20023:2 20041:2 20047:1 20053:2277 20064:1 20070:1 20085:1 20086:1 20126:1 20132:1 20134:1 20160:2 20181:1 20217:1 20218:1 20229:1 20241:1 20262:1 20264:1 20267:1 20271:2 20274:5 20275:4 20286:1 20292:1 20294:1 20298:1 20308:1 20320:1 20338:1 20350:1 20364:1 20368:1 20373:1 20375:1 20420:1 20422:3 20425:2 20431:1 20469:1 20482:1 20489:1 20490:3 20528:2 20545:1 20546:1 20557:2 20558:1 20567:1 20579:1 20584:1 20587:1 20605:2 20618:1 20630:1 20642:1 20647:2 20651:2 20660:1 20669:1 20679:2 20681:1 20701:2 20702:2 20715:3 20721:1 20724:1 20732:3 20757:3 20759:1 20765:1 20768:1 20769:1 20774:1 20778:1 20781:2 20787:8 20792:1 20813:1 20815:1 20833:1 20838:2 20839:1 20848:2 20864:5 20871:1 20882:1 20884:1 20901:1 20917:1 20926:4 20933:1 20935:2 20941:1 20943:2 20956:4 20957:1 20968:1 20974:1 20979:2 20999:1 21005:4 21013:2 21014:1 21022:3 21061:3 21062:2 21065:1 21075:1 21089:1 21093:1 21095:2 21098:2 21105:1 21106:2 21109:1 21121:1 21132:1 21143:1 21148:1 21149:1 21150:1 21152:1 21157:1 21168:1 21202:1 21219:1 21220:3 21237:1 21239:2 21241:1 21242:1 21249:1 21250:3 21254:1 21277:1 21281:1 21283:1 21288:1 21295:1 21302:1 21313:1 21320:1 21322:1 21330:2 21331:1 21341:1 21342:1 21361:1 21371:1 21376:2 21379:4 21385:1 21387:4 21446:1 21451:1 21453:1 21463:1 21466:2 21475:1 21478:1 21482:2 21483:2 21486:2 21501:1 21503:2 21507:3 21511:3 21518:1 21519:2 21523:2 21524:1 21544:5 21555:2 21571:1 21573:1 21583:1 21587:1 21590:2 21591:4 21613:1 21614:1 21627:1 21628:1 21633:1 21652:1 21654:3 21673:1 21676:1 21678:2 21699:1 21711:3 21712:18 21713:2 21719:1 21727:5 21733:1 21756:1 21759:1 21789:1 21798:1 21799:1 21813:1 21818:1 21822:1 21828:1 21853:1 21860:1 21861:1 21881:1 21887:1 21897:1 21940:4 21960:2 21982:2 21990:1 22001:2 22015:1 22018:1 22032:2 22066:8 22069:1 22071:2 22078:1 22085:1 22119:1 22120:1 22121:1 22128:1 22140:1 22174:1 22177:1 22185:4 22202:3 22221:1 22225:1 22228:1 22231:1 22235:1 22236:1 22244:1 22247:2 22282:2 22288:3 22298:2 22300:2 22314:2 22319:2 22323:1 22325:1 22326:1 22337:2 22343:1 22370:5 22390:2 22391:1 22398:1 22402:1 22417:2 22421:1 22432:1 22452:2 22466:1 22473:1 22478:2 22479:1 22488:5 22492:1 22496:2 22503:1 22508:2 22519:3 22546:2 22554:1 22567:1 22590:1 22591:1 22592:1 22602:2 22615:2 22621:2 22624:2 22628:2 22632:2 22635:1 22643:2 22665:1 22671:2 22685:2 22699:2 22715:1 22716:3 22723:1 22724:1 22726:4 22739:1 22741:1 22750:2 22755:1 22758:1 22760:1 22768:1 22769:1 22773:2 22774:1 22779:1 22790:1 22793:1 22794:1 22811:1 22815:1 22838:1 22846:1 22855:1 22857:1 22862:2 22864:1 22865:1 22866:2 22879:1 22893:1 22939:1 22996:1 23014:2 23017:1 23026:2 23027:2 23031:1 23032:1 23038:1 23039:1 23043:1 23045:1 23056:1 23063:2 23070:3 23071:1 23081:1 23090:1 23104:1 23121:1 23131:1 23137:1 23147:1 23158:1 23159:1 23181:2 23183:1 23184:1 23185:1 23190:1 23194:1 23195:2 23199:1 23200:1 23210:1 23213:1 23217:2 23222:2 23228:2 23229:1 23236:2 23238:1 23249:1 23251:2 23262:1 23271:13 23281:2 23282:2 23288:2 23298:1 23313:1 23326:1 23328:1 23337:1 23345:1 23347:1 23348:1 23349:1 23352:1 23355:1 23377:1 23410:2 23418:1 23426:2 23429:1 23434:1 23437:4 23439:3 23442:1 23452:2 23466:1 23467:1 23468:1 23475:1 23477:1 23497:1 23498:1 23500:3 23502:4 23503:2 23522:1 23537:1 23540:1 23576:1 23605:4 23613:1 23614:4 23616:3 23617:3 23619:1 23620:1 23625:1 23628:2 23631:1 23632:2 23644:1 23645:5 23655:1 23656:1 23659:1 23674:1 23682:1 23693:2 23697:2 23700:2 23721:1 23749:1 23751:1 23778:2 23783:2 23795:1 23796:1 23801:1 23811:1 23823:1 23834:1 23850:1 23853:1 23858:1 23859:1 23862:1 23865:2 23867:1 23882:1 23886:1 23887:1 23897:1 23900:1 23912:2 23915:1 23922:5 23929:1 23939:1 23940:4 23943:3 23946:1 23952:1 23969:1 23977:1 23982:1 23990:2 23993:1 23997:1 23998:1 24001:1 24002:4 24010:2 24016:1 24026:2 24030:9 24033:1 24037:1 24044:1 24046:1 24050:1 24053:1 24073:1 24074:1 24108:7 24111:1 24126:1 24150:1 24162:1 24172:5 24173:1 24175:1 24178:1 24179:1 24184:1 24197:1 24199:1 24221:1 24222:1 24248:1 24250:3 24260:1 24289:1 24290:1 24291:6 24294:2 24305:3 24308:1 24309:3 24319:1 24325:1 24329:1 24332:1 24346:1 24349:4 24361:1 24370:1 24371:3 24376:3 24386:1 24396:1 24408:1 24419:1 24426:1 24432:1 24447:1 24451:1 24479:1 24486:1 24495:1 24499:1 24500:1 24502:1 24517:1 24531:2 24549:10 24550:3 24558:1 24568:2 24574:1 24578:2 24585:4 24590:1 24594:1 24598:3 24608:2 24624:1 24635:1 24661:1 24671:1 24681:1 24682:1 24685:2 24688:2 24706:1 24708:1 24711:1 24742:1 24744:1 24746:1 24749:1 24750:1 24752:1 24762:1 24774:1 24776:1 24789:1 24795:2 24799:1 24806:2 24808:1 24814:1 24842:1 24851:3 24883:3 24899:1 24940:2 24969:1 24996:3 25000:2 25008:5 25018:2 25027:1 25033:1 25036:3 25039:1 25051:2 25054:2 25056:3 25066:1 25080:4 25122:1 25130:1 25138:1 25160:1 25172:1 25184:1 25196:1 25199:3 25230:1 25232:1 25240:2 25246:1 25259:2 25268:1 25273:2 25283:1 25286:1 25298:1 25304:1 25314:1 25315:2 25318:2 25320:3 25329:1 25331:1 25343:1 25352:1 25366:3 25368:2 25371:2 25376:1 25388:1 25391:1 25396:1 25447:1 25450:4 25453:1 25458:1 25462:1 25469:1 25471:1 25472:3 25474:1 25477:1 25478:1 25479:1 25481:1 25485:1 25511:1 25535:2 25537:1 25549:1 25605:2 25618:2 25633:1 25652:2 25715:1 25718:2 25727:2 25729:1 25739:1 25754:1 25770:1 25772:1 25776:1 25786:1 25793:2 25796:1 25803:1 25817:1 25840:1 25851:1 25861:1 25885:1 25898:1 25900:2 25909:1 25937:2 25940:1 25963:2 25977:4 25989:1 26010:1 26021:1 26022:7 26041:1 26048:1 26055:3 26066:1 26075:1 26076:1 26081:1 26086:4 26095:1 26097:1 26098:1 26103:1 26111:1 26135:3 26157:2 26161:1 26167:1 26168:2 26214:1 26250:1 26253:1 26288:1 26291:1 26292:1 26300:1 26301:1 26304:3 26305:2 26309:1 26311:1 26313:1 26317:2 26318:1 26319:1 26320:1 26329:1 26342:1 26356:6 26365:1 26373:1 26374:1 26376:1 26380:1 26391:1 26395:1 26397:1 26399:1 26420:11 26425:6 26426:1 26445:1 26447:2 26456:1 26457:1 26459:1 26473:1 26477:1 26479:1 26483:1 26488:3 26495:2 26512:1 26530:1 26536:1 26588:1 26616:1 26632:1 26634:1 26648:2 26651:1 26659:1 26668:1 26669:1 26674:2 26683:2 26687:1 26690:1 26696:2 26698:2 26703:1 26734:1 26736:1 26749:1 26756:1 26758:2 26766:1 26767:1 26776:1 26787:1 26794:1 26803:4 26828:2 26833:1 26836:1 26844:1 26847:1 26857:2 26862:2 26872:1 26875:2 26880:1 26895:1 26901:1 26902:1 26929:17 26930:2 26942:1 26964:1 26973:1 26974:1 26986:1 27000:1 27012:1 27019:2 27024:1 27029:1 27048:2 27051:1 27059:1 27060:1 27078:1 27083:1 27088:1 27092:1 27094:1 27112:1 27123:1 27164:1 27192:10 27193:1 27218:1 27230:1 27233:2 27234:1 27253:1 27265:1 27272:1 27279:1 27290:1 27298:1 27304:1 27312:6 27315:1 27336:1 27338:1 27340:2 27341:1 27368:1 27375:1 27381:2 27387:1 27393:1 27398:1 27410:1 27428:1 27443:2 27448:2 27450:1 27465:2 27484:1 27486:1 27498:1 27514:1 27577:1 27579:2 27590:1 27603:1 27606:1 27619:1 27622:1 27627:2 27633:5 27636:1 27643:1 27645:1 27646:1 27657:1 27662:1 27669:1 27673:1 27701:6 27711:1 27713:1 27716:1 27728:1 27729:7 27746:2 27748:2 27750:1 27765:1 27773:1 27777:1 27784:3 27786:1 27793:1 27796:1 27810:1 27818:1 27820:1 27854:1 27866:1 27873:2 27889:1 27927:1 27933:1 27947:1 27970:1 27977:1 28000:1 28010:1 28038:2 28048:1 28049:2 28064:1 28065:1 28071:1 28072:1 28076:1 28092:1 28106:3 28108:1 28131:1 28142:4 28153:1 28186:1 28191:1 28200:2 28202:1 28210:2 28211:1 28213:1 28227:2 28228:15 28239:2 28265:1 28268:1 28282:1 28289:1 28291:2 28303:1 28304:1 28305:1 28309:1 28317:1 28322:1 28326:2 28328:2 28337:1 28343:1 28356:4 28360:3 28368:3 28371:2 28373:4 28375:1 28403:1 28410:1 28456:1 28463:1 28481:1 28497:1 28500:1 28501:2 28502:1 28515:1 28531:2 28551:2 28564:1 28568:2 28569:1 28572:1 28573:2 28583:1 28594:6 28595:1 28596:1 28605:1 28608:1 28609:1 28618:1 28627:1 28630:1 28634:1 28637:1 28667:1 28671:2 28673:2 28691:1 28699:1 28727:1 28744:1 28768:1 28777:1 28788:3 28814:1 28816:2 28817:1 28846:1 28851:1 28857:1 28860:1 28863:5 28878:1 28883:1 28884:1 28921:1 28925:1 28931:1 28932:1 28945:1 28949:1 28954:3 28959:1 28963:1 28975:1 28983:1 28986:2 28988:2 28998:3 29014:1 29017:1 29034:1 29043:1 29045:1 29050:2 29078:1 29086:2 29093:1 29095:1 29132:1 29144:2 29158:1 29163:3 29166:1 29171:1 29172:2 29182:1 29187:1 29190:1 29191:2 29210:1 29218:1 29227:2 29238:2 29241:1 29244:1 29247:1 29250:1 29259:2 29260:1 29281:1 29295:1 29302:1 29312:1 29314:1 29318:2 29322:1 29354:1 29373:5 29375:3 29377:2 29401:1 29404:1 29406:1 29438:1 29446:2 29453:1 29460:1 29465:2 29473:2 29482:1 29484:1 29487:1 29494:2 29501:1 29508:1 29514:1 29516:1 29523:1 29524:1 29529:2 29530:1 29531:1 29536:3 29539:1 29543:2 29546:1 29556:2 29566:2 29571:1 29574:1 29579:1 29580:1 29613:1 29615:1 29630:1 29641:4 29656:1 29663:2 29688:2 29709:1 29763:1 29766:2 29798:1 29804:1 29805:2 29831:2 29848:1 29849:1 29853:1 29855:3 29862:5 29872:1 29879:1 29883:1 29891:1 29921:6 29952:1 29954:1 29964:1 29969:1 29985:1 30009:1 30014:1 30019:2 30034:2 30039:1 30051:1 30063:1 30065:1 30082:1 30100:1 30109:1 30110:2 30114:1 30133:2 30134:3 30135:1 30138:1 30146:2 30150:1 30151:1 30152:2 30169:1 30171:1 30180:1 30181:5 30196:1 30203:1 30205:1 30220:2 30226:2 30228:2 30229:1 30231:1 30235:1 30238:5 30244:1 30251:1 30252:1 30261:3 30263:1 30275:3 30279:1 30283:3 30285:1 30309:1 30316:3 30332:1 30336:1 30354:1 30356:1 30362:1 30377:1 30392:3 30397:4 30406:5 30411:1 30438:5 30453:1 30457:1 30462:1 30470:1 30471:1 30484:1 30491:1 30493:1 30495:1 30525:1 30527:6 30532:1 30537:2 30571:1 30574:1 30583:1 30604:1 30614:1 30629:1 30634:1 30635:1 30645:1 30646:2 30651:1 30656:1 30670:1 30673:3 30709:1 30710:1 30711:1 30717:7 30719:1 30729:1 30730:1 30735:2 30750:1 30786:5 30810:1 30865:1 30871:1 30879:1 30882:1 30916:1 30926:1 30971:1 31003:1 31028:2 31043:1 31046:1 31047:2 31048:1 31053:2 31055:3 31068:1 31072:1 31074:1 31082:1 31086:1 31092:1 31103:1 31124:1 31136:1 31143:1 31152:1 31184:1 31194:3 31198:1 31204:2 31233:2 31238:1 31239:2 31257:1 31259:1 31272:1 31284:1 31287:1 31289:1 31296:1 31301:1 31308:3 31309:1 31313:2 31343:1 31345:1 31348:4 31351:2 31377:1 31382:1 31405:1 31413:1 31422:1 31431:1 31443:1 31467:1 31473:1 31478:3 31484:1 31487:1 31505:1 31516:3 31519:1 31542:1 31577:2 31580:2 31599:1 31600:1 31606:1 31608:3 31615:3 31617:3 31618:1 31623:1 31632:1 31677:5 31682:1 1 13:1 40:1 46:1 53:1 62:1 65:1 72:1 106:1 141:1 155:1 156:3 161:1 167:2 173:1 188:2 190:3 202:1 207:6 226:1 231:1 244:1 263:1 274:1 278:7 287:1 297:3 307:1 328:2 354:1 371:4 373:3 378:3 387:3 391:1 397:2 416:3 430:1 438:2 454:5 458:5 471:1 485:1 490:1 522:1 526:1 527:1 561:2 588:1 596:1 600:2 614:1 620:1 634:3 645:1 659:1 665:1 667:4 674:2 678:1 693:2 704:1 765:1 767:1 783:1 810:1 815:1 817:1 826:1 829:2 830:1 854:1 856:2 863:1 871:1 900:6 906:1 911:1 917:1 918:4 922:1 927:1 942:15 943:4 952:3 975:4 984:1 992:1 993:4 995:2 998:8 1000:1 1001:2 1004:4 1018:2 1033:1 1042:5 1044:4 1055:1 1056:1 1095:2 1104:1 1121:1 1142:1 1159:1 1177:1 1178:1 1198:1 1210:2 1214:1 1217:1 1275:3 1277:2 1283:1 1285:2 1287:1 1295:2 1298:1 1299:1 1312:1 1315:1 1325:1 1326:1 1328:1 1332:2 1343:1 1351:2 1356:2 1365:1 1367:1 1380:1 1386:2 1389:1 1408:1 1417:1 1429:1 1432:1 1433:1 1451:1 1457:1 1466:1 1468:1 1470:1 1485:1 1500:1 1527:1 1530:1 1540:1 1541:2 1557:1 1564:1 1565:2 1584:1 1587:1 1595:3 1602:1 1613:1 1629:1 1630:1 1632:2 1635:1 1647:1 1654:1 1674:1 1686:4 1694:7 1696:2 1705:1 1713:1 1743:2 1751:1 1754:1 1763:1 1767:1 1783:1 1786:1 1788:1 1791:2 1799:1 1804:2 1813:1 1818:1 1820:1 1824:1 1825:2 1835:1 1839:2 1850:1 1854:1 1863:1 1867:1 1871:1 1875:1 1881:1 1882:1 1886:2 1897:1 1900:1 1905:1 1914:1 1920:2 1923:1 1944:1 1945:5 1950:1 1954:1 1965:1 1971:1 1974:3 1978:1 1979:2 1993:2 1994:6 2027:4 2030:3 2043:1 2054:1 2055:1 2060:2 2065:4 2070:1 2071:1 2074:1 2089:1 2103:2 2112:1 2113:1 2121:3 2127:2 2128:1 2129:1 2143:2 2146:1 2192:1 2198:8 2201:1 2207:1 2210:2 2214:1 2215:4 2219:1 2220:1 2222:2 2226:1 2230:2 2236:1 2243:1 2247:1 2255:1 2268:1 2272:1 2283:1 2296:2 2300:1 2301:1 2306:2 2308:1 2323:1 2335:1 2349:1 2354:11 2361:1 2370:1 2376:1 2379:1 2393:1 2402:1 2423:2 2436:3 2439:1 2450:1 2458:1 2464:2 2477:2 2478:2 2480:1 2482:3 2485:5 2487:1 2489:1 2491:2 2494:2 2495:2 2497:1 2499:2 2501:1 2502:4 2506:1 2508:5 2509:3 2514:5 2515:7 2517:1 2528:1 2562:1 2565:1 2568:3 2571:3 2576:1 2593:2 2595:1 2603:1 2617:1 2618:1 2623:1 2631:1 2637:1 2639:1 2657:1 2671:1 2695:1 2706:3 2718:1 2722:1 2739:3 2751:2 2752:1 2764:1 2765:1 2771:1 2776:1 2779:1 2800:3 2803:2 2806:1 2808:6 2812:1 2813:1 2814:1 2824:1 2827:1 2835:1 2849:4 2851:1 2852:1 2857:1 2873:2 2881:1 2884:1 2885:2 2897:6 2906:2 2911:1 2913:2 2916:9 2924:4 2928:1 2937:2 2939:1 2943:1 2945:2 2947:1 2950:3 2951:2 2967:2 2981:1 2982:2 2987:3 2991:1 2995:1 3029:1 3034:1 3035:2 3036:2 3041:1 3050:3 3052:1 3056:1 3060:7 3065:2 3069:1 3085:1 3089:1 3096:1 3122:1 3127:3 3128:1 3146:4 3152:1 3157:1 3159:15 3178:3 3180:1 3185:1 3186:1 3190:1 3199:2 3203:3 3206:1 3224:19 3225:2 3234:1 3246:2 3249:3 3269:1 3280:1 3317:1 3325:1 3332:1 3338:1 3351:1 3352:5 3371:3 3377:1 3383:1 3391:1 3410:1 3426:1 3438:1 3440:1 3442:1 3447:1 3457:2 3469:1 3490:2 3504:1 3510:3 3524:1 3531:1 3534:1 3550:1 3551:2 3579:1 3580:2 3581:1 3590:1 3608:6 3609:1 3626:1 3643:1 3663:1 3695:1 3706:2 3719:1 3749:1 3751:1 3753:1 3774:1 3781:1 3783:1 3784:1 3788:1 3794:1 3799:1 3804:1 3805:1 3829:1 3844:1 3851:1 3861:1 3868:2 3873:1 3897:1 3898:13 3900:1 3909:1 3912:2 3914:2 3915:2 3937:1 3942:1 3943:1 3947:1 3962:1 3998:1 4000:2 4001:1 4008:1 4013:3 4021:2 4038:1 4062:1 4096:1 4099:1 4101:1 4106:2 4110:1 4113:2 4117:1 4129:3 4149:1 4152:1 4156:2 4163:1 4167:1 4179:2 4181:1 4186:1 4195:1 4200:3 4201:1 4215:1 4220:2 4221:1 4226:4 4229:1 4236:2 4240:1 4241:2 4242:1 4253:4 4267:1 4272:2 4289:1 4293:2 4309:1 4313:2 4315:2 4320:1 4340:2 4348:6 4349:4 4356:2 4393:1 4395:2 4398:1 4403:1 4417:1 4422:1 4426:2 4432:1 4448:1 4464:2 4470:1 4471:1 4476:1 4500:2 4526:2 4537:1 4547:4 4548:1 4551:1 4552:1 4557:2 4559:1 4563:1 4567:2 4581:1 4587:1 4594:1 4610:1 4624:1 4629:1 4647:1 4649:1 4669:7 4691:3 4696:1 4708:2 4712:1 4714:1 4717:1 4720:2 4732:2 4749:2 4759:1 4779:1 4785:1 4787:3 4788:2 4808:4 4834:1 4843:1 4844:1 4850:1 4869:2 4876:2 4893:1 4899:1 4902:1 4904:1 4910:1 4911:3 4913:1 4922:1 4938:1 4959:3 4970:1 4983:5 5001:1 5006:1 5034:4 5044:2 5056:1 5057:1 5062:4 5066:1 5085:4 5105:2 5131:1 5135:2 5138:3 5154:3 5167:1 5174:1 5187:1 5189:2 5198:1 5200:1 5216:1 5217:1 5230:1 5249:1 5267:14 5270:2 5279:1 5282:1 5283:1 5290:1 5297:1 5307:1 5316:1 5329:1 5339:1 5350:1 5404:3 5429:1 5430:1 5431:4 5433:7 5434:3 5436:1 5440:2 5441:2 5442:1 5445:1 5446:2 5449:6 5450:4 5453:1 5454:2 5456:7 5464:2 5465:5 5468:1 5469:1 5517:1 5532:1 5548:2 5557:1 5575:1 5580:1 5592:1 5614:1 5625:1 5638:1 5658:1 5668:1 5704:1 5720:1 5731:2 5765:1 5771:1 5801:3 5807:2 5813:1 5847:1 5850:1 5875:5 5889:1 5890:1 5915:1 5917:1 5937:1 5943:1 5953:2 5959:1 5972:1 5980:1 5988:1 5994:1 6017:1 6029:1 6057:1 6060:1 6080:1 6100:2 6110:1 6115:2 6118:1 6121:1 6133:5 6134:1 6136:2 6139:1 6143:1 6144:3 6156:1 6157:1 6181:1 6188:3 6200:2 6202:1 6204:1 6219:6 6223:1 6224:1 6237:2 6289:1 6308:1 6320:1 6327:1 6330:1 6337:1 6345:1 6349:1 6351:1 6352:1 6361:2 6366:1 6387:1 6400:1 6427:1 6433:2 6444:2 6455:1 6466:2 6468:2 6471:2 6486:1 6488:6 6494:1 6495:1 6499:1 6502:2 6510:1 6512:1 6514:1 6515:1 6516:1 6556:1 6559:1 6560:1 6561:1 6569:1 6571:2 6573:1 6579:1 6581:1 6582:2 6586:12 6600:1 6603:1 6624:3 6631:1 6655:1 6668:1 6684:3 6693:2 6706:1 6709:6 6713:1 6720:1 6769:1 6775:1 6799:1 6806:1 6808:1 6809:1 6814:2 6816:3 6817:1 6822:1 6823:1 6825:2 6826:1 6832:2 6834:4 6835:3 6884:1 6931:1 6949:1 6979:1 6990:1 6993:4 6996:2 7008:1 7016:1 7040:1 7052:1 7057:1 7061:1 7071:1 7076:1 7079:1 7097:1 7106:2 7131:1 7145:2 7153:2 7167:1 7174:1 7175:1 7182:1 7227:1 7241:1 7251:2 7253:1 7256:1 7260:1 7265:1 7284:8 7290:1 7292:2 7295:3 7298:1 7309:1 7315:1 7326:2 7348:1 7357:1 7360:1 7362:1 7403:1 7405:3 7421:2 7429:1 7435:2 7454:1 7460:1 7465:1 7473:1 7478:2 7479:1 7504:1 7522:1 7529:2 7535:1 7550:1 7561:1 7569:1 7574:6 7578:2 7598:1 7611:1 7615:1 7621:1 7624:3 7625:2 7632:1 7636:4 7638:1 7640:1 7645:5 7648:1 7651:1 7656:1 7679:1 7680:1 7681:1 7684:1 7695:1 7701:1 7726:1 7729:1 7737:4 7747:4 7759:1 7771:1 7792:3 7795:1 7796:1 7798:1 7805:1 7812:1 7818:1 7827:1 7829:1 7835:1 7839:1 7846:1 7853:1 7869:1 7897:1 7919:1 7925:1 7930:1 7933:2 7971:1 7984:1 7985:2 7986:5 7991:3 7997:1 7999:1 8004:1 8006:3 8010:1 8032:6 8034:2 8036:2 8037:1 8061:1 8064:3 8074:1 8081:1 8093:1 8108:2 8110:1 8117:1 8127:1 8131:1 8134:1 8140:1 8152:1 8153:1 8160:1 8161:2 8168:1 8175:1 8178:1 8189:1 8190:1 8198:1 8218:3 8235:4 8236:6 8250:2 8257:4 8258:1 8262:2 8263:3 8265:1 8278:1 8287:4 8288:2 8290:1 8303:45 8306:2 8315:1 8323:1 8326:10 8327:6 8331:2 8367:1 8374:1 8375:1 8384:1 8397:1 8404:3 8405:2 8411:1 8421:1 8424:2 8433:2 8445:3 8455:1 8459:1 8461:1 8480:2 8486:1 8488:1 8492:1 8512:1 8514:2 8541:1 8550:1 8553:1 8557:1 8558:3 8562:1 8588:1 8591:1 8592:1 8593:1 8605:2 8609:2 8653:1 8663:1 8681:1 8696:1 8698:1 8722:1 8723:1 8734:1 8737:1 8742:1 8765:1 8768:1 8775:1 8777:1 8778:2 8788:1 8797:1 8815:1 8816:1 8835:24 8843:1 8844:1 8865:3 8868:3 8870:1 8900:1 8911:1 8935:6 8937:1 8938:1 8943:1 8969:1 8974:1 8990:3 8993:1 8994:2 8996:1 9001:1 9019:1 9030:2 9031:4 9038:3 9044:1 9049:1 9065:2 9066:1 9069:1 9076:1 9080:1 9088:1 9090:1 9104:1 9109:1 9110:1 9128:1 9129:2 9139:2 9141:1 9142:1 9154:2 9201:1 9204:1 9205:1 9209:1 9211:1 9216:1 9239:1 9242:2 9255:6 9257:1 9267:2 9271:3 9291:1 9302:1 9303:1 9312:1 9319:2 9323:1 9324:1 9333:1 9340:1 9345:1 9365:2 9375:1 9393:1 9404:1 9431:1 9436:1 9437:1 9449:1 9450:1 9460:1 9485:1 9486:1 9487:1 9501:3 9510:1 9533:1 9536:1 9537:1 9541:3 9577:3 9586:1 9594:2 9606:1 9613:1 9618:1 9643:1 9644:1 9651:1 9655:1 9661:1 9662:6 9663:1 9668:1 9670:1 9675:1 9687:1 9695:2 9697:1 9708:6 9709:1 9719:1 9732:1 9740:1 9759:1 9768:11 9769:6 9778:1 9784:2 9794:2 9830:3 9837:1 9844:1 9849:1 9853:3 9855:1 9872:1 9878:1 9882:2 9884:2 9886:3 9888:2 9898:1 9907:1 9919:1 9928:1 9950:1 9960:2 9963:1 9969:1 9972:5 9974:1 9988:1 9996:3 9999:2 10005:1 10006:1 10021:4 10050:1 10064:1 10080:1 10089:1 10108:1 10111:3 10118:1 10122:3 10128:1 10142:1 10147:1 10156:1 10159:1 10183:1 10197:1 10201:1 10211:1 10220:7 10226:2 10264:3 10283:1 10284:1 10298:3 10302:1 10330:1 10352:1 10358:1 10363:1 10365:3 10366:3 10369:2 10374:1 10399:1 10406:2 10408:1 10437:2 10439:1 10447:1 10458:1 10494:2 10511:1 10517:1 10530:2 10542:1 10554:1 10557:1 10558:1 10576:1 10587:1 10603:1 10606:1 10611:1 10612:1 10626:1 10630:1 10657:1 10662:1 10663:1 10665:1 10670:1 10674:5 10690:4 10702:4 10707:2 10717:1 10738:2 10751:1 10762:3 10764:1 10772:1 10807:1 10813:2 10818:2 10835:1 10841:1 10854:1 10861:4 10864:1 10901:2 10907:1 10911:12 10913:1 10914:2 10919:2 10927:1 10948:2 10949:1 10969:1 10973:1 10980:1 10991:1 11018:1 11040:1 11047:2 11049:1 11074:1 11094:1 11109:1 11110:1 11112:1 11115:1 11117:1 11121:4 11129:1 11131:1 11136:2 11169:1 11181:4 11185:1 11187:1 11189:1 11194:1 11196:3 11207:1 11210:1 11213:1 11224:4 11244:1 11265:1 11277:1 11283:1 11284:1 11291:1 11298:1 11300:2 11303:2 11306:1 11319:2 11330:1 11336:1 11337:1 11345:1 11348:3 11355:1 11360:2 11362:1 11365:1 11373:7 11376:4 11389:2 11390:3 11395:1 11402:1 11413:1 11417:1 11419:2 11432:1 11447:2 11462:7 11463:2 11483:2 11485:1 11486:1 11498:4 11524:1 11541:1 11544:1 11550:3 11562:2 11570:1 11573:6 11588:1 11597:1 11605:1 11609:1 11624:3 11664:1 11677:1 11744:1 11750:1 11767:1 11770:1 11791:1 11792:2 11796:2 11800:1 11801:2 11807:1 11811:1 11815:1 11816:1 11817:5 11819:5 11820:1 11827:1 11834:2 11838:2 11842:1 11845:4 11849:1 11851:1 11853:1 11865:1 11868:3 11872:3 11877:1 11901:2 11910:1 11935:1 11937:1 11939:3 11983:1 11986:1 12007:1 12021:2 12023:1 12026:1 12061:1 12094:1 12102:1 12115:1 12118:1 12133:1 12137:3 12151:1 12156:1 12179:1 12192:1 12195:1 12202:2 12219:3 12222:2 12227:1 12241:2 12245:2 12247:1 12249:1 12250:2 12252:1 12260:3 12262:1 12263:1 12264:2 12269:1 12272:1 12278:1 12285:3 12287:2 12293:1 12324:15 12325:1 12356:1 12365:1 12369:4 12383:2 12384:2 12391:2 12396:1 12416:1 12418:2 12429:2 12430:1 12441:1 12442:2 12449:2 12450:1 12464:1 12483:1 12497:1 12501:1 12521:1 12528:1 12544:1 12566:1 12574:3 12575:1 12579:1 12584:1 12587:1 12592:4 12596:1 12597:2 12599:1 12603:1 12604:1 12611:1 12614:1 12624:1 12636:1 12640:1 12641:1 12643:1 12649:2 12652:5 12655:3 12683:1 12718:1 12741:2 12745:1 12760:1 12783:1 12799:1 12801:1 12808:1 12818:2 12829:1 12845:1 12855:1 12856:1 12863:5 12872:1 12883:2 12886:1 12887:2 12901:1 12907:1 12918:1 12925:2 12931:2 12955:2 12971:2 12982:1 12983:2 13003:1 13025:2 13030:1 13043:1 13047:1 13049:1 13052:1 13059:2 13070:1 13094:1 13118:1 13125:1 13127:1 13132:5 13133:2 13134:2 13149:1 13155:2 13168:1 13172:1 13174:1 13182:1 13195:1 13235:1 13237:2 13240:1 13264:1 13271:1 13280:1 13291:1 13303:1 13310:1 13327:1 13332:1 13338:1 13356:1 13427:3 13456:2 13473:1 13493:1 13502:1 13515:1 13531:1 13533:2 13534:1 13552:3 13566:1 13569:1 13582:1 13591:1 13601:1 13626:1 13654:1 13663:1 13666:1 13669:1 13670:2 13677:1 13699:1 13718:14 13723:4 13737:2 13762:1 13776:2 13777:3 13785:4 13805:1 13811:1 13817:1 13818:1 13828:1 13838:2 13839:1 13847:1 13881:1 13900:1 13906:1 13913:1 13920:2 13927:1 13939:2 13957:1 13959:1 13975:1 13978:1 13998:1 14000:1 14010:2 14011:1 14020:1 14026:1 14027:1 14048:1 14058:1 14064:3 14084:2 14085:1 14110:1 14129:1 14146:1 14149:1 14176:1 14186:1 14190:1 14199:1 14201:1 14204:2 14208:4 14224:1 14230:2 14240:2 14245:1 14262:6 14279:1 14284:2 14307:1 14314:4 14316:1 14330:1 14347:1 14352:1 14354:1 14355:1 14356:1 14369:9 14370:1 14381:2 14385:1 14403:1 14408:1 14416:1 14417:1 14422:2 14429:1 14437:1 14438:1 14453:16 14462:1 14466:1 14488:1 14503:2 14504:1 14510:3 14525:1 14532:2 14550:2 14560:1 14561:1 14603:3 14630:1 14635:6 14641:1 14658:1 14664:2 14670:1 14673:1 14695:3 14722:1 14732:1 14734:1 14737:1 14746:3 14748:1 14749:1 14760:1 14762:1 14769:6 14770:1 14773:1 14774:2 14775:1 14777:2 14778:1 14782:7 14783:2 14810:1 14811:1 14814:1 14818:1 14846:1 14867:1 14873:1 14894:1 14906:2 14911:2 14921:1 14933:1 14948:1 14958:1 14967:4 14968:1 15004:1 15010:1 15013:1 15015:1 15022:1 15025:1 15032:1 15033:1 15046:1 15049:1 15074:2 15079:1 15080:1 15091:1 15092:1 15094:1 15098:7 15111:1 15121:1 15123:3 15128:1 15163:1 15174:1 15175:2 15185:1 15191:1 15202:1 15210:1 15213:1 15215:1 15224:1 15236:1 15258:1 15265:1 15266:1 15272:1 15278:1 15283:1 15293:1 15300:1 15304:1 15312:1 15315:1 15353:1 15362:2 15379:5 15395:1 15401:1 15414:1 15434:1 15446:1 15468:1 15488:1 15514:1 15517:3 15518:4 15527:1 15540:2 15541:2 15544:1 15550:2 15552:1 15570:1 15573:1 15581:1 15592:2 15617:1 15625:1 15651:1 15661:1 15675:2 15680:1 15683:1 15698:1 15703:1 15705:1 15707:1 15712:2 15714:1 15725:3 15729:2 15782:1 15786:2 15790:1 15804:2 15841:1 15842:2 15844:1 15851:1 15856:1 15870:1 15880:1 15883:1 15906:1 15922:3 15928:1 15938:1 15941:2 15947:1 15972:1 15973:1 15978:1 16029:1 16032:1 16035:2 16073:2 16078:2 16079:1 16081:1 16090:1 16100:1 16109:1 16120:1 16157:1 16160:3 16168:1 16188:1 16189:1 16192:2 16199:1 16231:1 16269:1 16298:1 16302:1 16308:1 16314:2 16351:1 16364:1 16406:1 16424:2 16435:1 16442:1 16464:1 16476:1 16479:1 16481:2 16492:1 16511:2 16516:3 16520:1 16545:1 16551:1 16553:1 16563:1 16567:2 16585:2 16592:1 16614:1 16616:1 16627:2 16641:1 16652:2 16676:1 16686:1 16687:1 16701:6 16720:3 16731:1 16739:3 16752:3 16777:1 16782:1 16790:1 16807:1 16810:1 16815:2 16869:1 16883:2 16884:1 16897:2 16905:1 16909:1 16913:4 16914:1 16918:1 16920:1 16926:1 16940:4 16941:1 16945:1 16948:1 16962:1 16968:1 16980:1 16999:2 17008:2 17052:2 17055:1 17062:1 17079:3 17089:2 17101:1 17104:1 17105:3 17120:1 17135:3 17150:1 17151:1 17157:1 17198:1 17200:1 17230:1 17234:1 17239:15 17241:1 17256:1 17258:1 17260:3 17262:1 17285:3 17327:1 17344:1 17349:2 17360:3 17363:1 17380:2 17383:1 17392:2 17401:1 17428:1 17435:1 17442:1 17444:1 17445:1 17454:2 17456:1 17482:1 17486:3 17489:1 17504:1 17511:1 17516:6 17518:2 17519:2 17520:6 17521:1 17523:1 17527:2 17529:1 17531:2 17532:3 17537:1 17538:1 17540:1 17544:1 17546:1 17548:1 17555:1 17581:1 17590:1 17592:1 17598:1 17607:1 17627:1 17637:1 17652:1 17655:2 17656:1 17692:2 17699:1 17708:2 17709:2 17729:1 17762:1 17774:1 17776:1 17804:1 17808:1 17827:1 17868:1 17872:1 17874:1 17884:2 17899:1 17902:2 17915:2 17916:1 17925:1 17930:5 17937:1 17941:2 17954:1 17965:1 17966:1 17972:2 17975:4 17980:2 17985:1 17994:3 17998:2 18008:3 18016:1 18026:1 18071:14 18073:1 18086:1 18088:1 18095:1 18096:4 18097:1 18102:1 18171:1 18172:1 18183:2 18191:1 18201:4 18211:1 18212:1 18225:1 18233:1 18236:2 18266:1 18269:1 18286:2 18291:1 18307:5 18308:1 18322:1 18340:1 18341:1 18344:1 18361:1 18379:1 18423:2 18424:3 18425:1 18438:1 18440:1 18443:1 18453:1 18490:1 18491:1 18494:1 18514:1 18517:1 18530:2 18533:1 18548:1 18556:1 18565:2 18577:2 18585:1 18587:2 18593:1 18597:1 18617:1 18662:1 18670:1 18712:1 18731:1 18734:1 18755:1 18760:1 18775:2 18779:1 18791:3 18796:1 18800:1 18801:1 18810:3 18814:2 18815:2 18819:2 18824:1 18825:10 18852:1 18872:1 18877:2 18880:1 18885:2 18887:1 18892:1 18898:1 18905:1 18908:1 18909:1 18910:1 18962:1 18982:1 18983:1 19004:3 19009:1 19023:1 19033:2 19047:1 19050:1 19054:1 19061:1 19070:1 19071:1 19101:1 19102:1 19103:1 19123:1 19130:1 19134:2 19147:1 19166:1 19171:1 19202:1 19207:1 19225:1 19226:2 19231:1 19233:1 19236:1 19243:1 19246:1 19267:1 19299:1 19337:1 19376:1 19378:1 19390:1 19391:2 19411:2 19450:1 19514:2 19515:1 19525:1 19538:1 19543:1 19553:1 19565:1 19575:1 19592:1 19593:1 19600:1 19619:1 19631:1 19651:1 19656:3 19661:1 19670:1 19709:1 19719:15 19731:1 19750:1 19780:1 19806:1 19826:14 19832:1 19833:4 19834:1 19843:1 19846:5 19847:1 19863:1 19872:1 19876:2 19897:1 19915:2 19948:4 19971:2 19979:1 19988:2 19990:1 19993:1 20016:3 20020:1 20023:2 20041:2 20047:1 20053:2296 20064:1 20070:1 20085:1 20086:1 20126:1 20132:1 20134:1 20160:2 20181:1 20217:1 20218:1 20229:1 20241:1 20262:1 20264:1 20267:1 20271:2 20274:5 20275:4 20286:1 20292:1 20294:1 20298:1 20308:1 20320:1 20338:1 20350:1 20364:1 20368:1 20373:1 20375:1 20420:1 20422:3 20425:2 20431:1 20469:1 20482:1 20486:1 20489:1 20490:3 20517:1 20528:2 20545:1 20546:1 20557:2 20558:1 20567:1 20579:1 20584:1 20587:1 20605:2 20618:1 20630:1 20642:1 20647:2 20651:2 20660:1 20669:1 20679:2 20681:1 20701:2 20702:2 20715:3 20721:1 20724:1 20732:3 20757:3 20759:1 20765:1 20768:1 20769:1 20774:1 20778:1 20781:2 20787:8 20792:1 20813:1 20815:1 20833:1 20838:2 20839:1 20848:2 20864:5 20871:1 20882:1 20884:1 20901:1 20917:1 20926:4 20933:1 20935:2 20941:1 20943:2 20956:4 20957:1 20968:1 20974:1 20979:2 20999:1 21005:4 21013:2 21014:1 21022:3 21061:3 21062:2 21065:1 21075:1 21089:1 21093:1 21095:2 21098:2 21105:1 21106:2 21109:1 21121:1 21132:1 21143:1 21148:1 21149:1 21150:1 21152:1 21157:1 21168:1 21202:1 21219:1 21220:3 21237:1 21239:2 21241:1 21242:1 21249:1 21250:3 21254:1 21277:1 21281:1 21283:1 21288:1 21295:1 21302:2 21308:1 21313:1 21320:1 21322:1 21330:2 21331:1 21341:1 21342:1 21361:1 21371:1 21376:2 21379:4 21385:1 21387:4 21446:1 21451:1 21453:1 21463:1 21466:2 21475:1 21478:1 21482:2 21483:2 21486:2 21501:1 21503:2 21507:3 21511:3 21518:1 21519:2 21523:2 21524:1 21544:5 21555:2 21571:1 21573:1 21583:1 21587:1 21590:2 21591:4 21613:1 21614:1 21627:1 21628:1 21633:1 21652:1 21654:3 21673:1 21676:1 21678:2 21699:1 21711:3 21712:19 21713:2 21719:1 21727:5 21733:1 21756:1 21759:1 21767:1 21789:2 21798:1 21799:1 21813:1 21818:1 21822:1 21828:1 21853:1 21860:1 21861:1 21881:1 21887:1 21897:1 21940:4 21960:2 21982:2 21990:1 22001:2 22015:1 22018:1 22032:2 22066:8 22069:1 22071:2 22078:1 22085:1 22119:1 22120:1 22121:1 22128:1 22140:1 22174:1 22177:1 22185:4 22202:3 22221:1 22225:1 22228:1 22231:1 22235:1 22236:1 22244:1 22247:2 22282:2 22288:3 22298:2 22300:2 22314:2 22319:2 22323:1 22325:1 22326:1 22337:2 22343:1 22370:5 22390:2 22391:1 22398:1 22402:1 22417:2 22421:1 22432:1 22452:2 22466:1 22473:1 22478:2 22479:1 22488:5 22492:1 22496:2 22501:1 22503:1 22508:2 22519:3 22546:2 22554:1 22567:1 22590:1 22591:1 22592:1 22602:2 22615:2 22621:2 22624:2 22628:2 22632:2 22635:1 22643:2 22665:1 22671:2 22685:2 22699:2 22715:1 22716:4 22723:1 22724:1 22726:4 22739:1 22741:1 22750:2 22755:1 22758:1 22760:1 22768:1 22769:1 22773:2 22774:1 22779:1 22790:1 22793:1 22794:1 22811:1 22815:1 22838:1 22846:1 22855:1 22857:1 22862:2 22864:1 22865:1 22866:2 22879:1 22893:1 22939:1 22996:1 23014:2 23017:1 23026:2 23027:2 23031:1 23032:1 23038:1 23039:1 23043:1 23045:1 23056:1 23063:2 23070:3 23071:1 23081:1 23090:1 23104:1 23121:1 23131:1 23137:1 23147:1 23158:1 23159:1 23181:2 23183:1 23184:1 23185:1 23190:1 23194:1 23195:2 23199:1 23200:1 23210:1 23213:1 23217:2 23222:2 23228:2 23229:1 23230:1 23236:2 23238:1 23249:1 23251:2 23262:1 23271:14 23281:2 23282:2 23288:2 23298:1 23313:1 23326:1 23328:1 23337:1 23345:1 23347:1 23348:1 23349:1 23352:1 23355:1 23377:1 23410:2 23418:1 23426:2 23429:1 23434:1 23437:4 23439:3 23442:1 23452:2 23466:1 23467:1 23468:1 23475:1 23477:1 23497:1 23498:1 23500:3 23502:4 23503:2 23522:1 23537:1 23540:1 23576:1 23605:4 23613:1 23614:4 23616:3 23617:3 23619:1 23620:1 23625:1 23628:2 23631:1 23632:2 23643:1 23644:1 23645:5 23655:1 23656:1 23659:1 23674:1 23682:1 23693:2 23697:2 23700:2 23721:1 23749:1 23751:1 23778:2 23783:2 23795:1 23796:1 23799:1 23801:1 23811:1 23823:1 23834:1 23850:1 23853:1 23858:1 23859:1 23862:1 23865:2 23867:1 23882:1 23886:1 23887:1 23897:1 23900:1 23912:2 23915:1 23922:5 23929:1 23939:1 23940:4 23943:3 23946:1 23952:1 23969:1 23977:1 23982:1 23990:2 23993:1 23997:1 23998:1 24001:1 24002:4 24010:2 24016:1 24026:2 24030:9 24033:1 24037:1 24044:1 24046:1 24050:1 24053:1 24073:1 24074:1 24108:8 24111:1 24126:1 24150:1 24162:1 24172:5 24173:1 24175:1 24178:1 24179:1 24184:1 24197:1 24199:1 24221:1 24222:2 24248:1 24250:3 24260:1 24289:1 24290:1 24291:6 24294:2 24305:3 24308:1 24309:3 24319:1 24325:1 24329:1 24332:1 24346:1 24349:4 24361:1 24370:1 24371:3 24376:3 24386:1 24396:1 24408:1 24419:1 24426:1 24432:1 24447:1 24451:1 24479:1 24486:1 24495:1 24499:1 24500:1 24502:1 24517:1 24531:2 24549:10 24550:3 24558:1 24568:2 24574:1 24578:2 24585:4 24590:1 24594:1 24598:3 24608:2 24624:1 24635:1 24661:1 24671:1 24681:1 24682:1 24685:2 24688:2 24706:1 24708:1 24711:1 24742:1 24744:1 24746:1 24749:1 24750:1 24752:1 24762:1 24774:1 24776:1 24789:1 24795:2 24799:1 24806:2 24808:1 24814:1 24842:1 24851:3 24883:3 24899:1 24940:2 24969:1 24996:3 25000:2 25008:5 25018:2 25027:1 25033:1 25036:3 25039:1 25051:2 25054:2 25056:3 25066:1 25080:4 25122:1 25130:1 25138:1 25160:1 25172:1 25184:1 25196:1 25199:3 25230:1 25232:1 25240:2 25246:1 25259:2 25268:1 25273:2 25283:1 25286:1 25298:1 25304:1 25314:1 25315:2 25318:2 25320:3 25329:1 25331:1 25343:1 25352:1 25366:3 25367:1 25368:2 25371:2 25376:1 25388:1 25391:1 25396:1 25447:1 25450:4 25453:1 25458:1 25462:1 25469:1 25471:1 25472:4 25474:1 25477:1 25478:1 25479:1 25481:1 25485:1 25511:1 25535:2 25537:1 25549:1 25605:2 25618:2 25633:1 25652:2 25715:1 25718:2 25727:2 25729:1 25739:1 25754:1 25770:1 25772:1 25776:1 25786:1 25793:2 25796:1 25803:1 25817:2 25840:1 25851:1 25861:1 25885:1 25898:1 25900:2 25909:1 25937:2 25940:1 25963:2 25977:4 25989:1 26010:1 26021:1 26022:7 26041:1 26048:1 26055:3 26066:1 26075:1 26076:1 26081:1 26086:5 26095:1 26097:1 26098:1 26103:1 26111:1 26135:3 26157:2 26161:1 26167:1 26168:2 26214:1 26250:1 26253:1 26288:1 26291:1 26292:1 26300:1 26301:1 26304:3 26305:3 26309:1 26311:1 26313:1 26317:2 26318:1 26319:1 26320:1 26329:1 26342:1 26356:6 26365:1 26373:1 26374:1 26376:1 26380:1 26391:1 26395:1 26397:1 26399:1 26420:12 26425:6 26426:1 26445:1 26447:2 26456:1 26457:1 26459:1 26473:1 26477:1 26479:1 26483:1 26488:3 26495:2 26512:1 26530:1 26536:1 26588:1 26616:1 26632:1 26634:1 26648:2 26651:1 26659:1 26668:1 26669:1 26674:2 26683:2 26687:1 26690:1 26696:2 26698:2 26703:1 26734:1 26736:1 26749:1 26756:1 26758:2 26766:1 26767:1 26776:1 26787:1 26793:1 26794:1 26803:4 26828:2 26833:1 26836:1 26844:1 26847:1 26857:2 26862:2 26872:1 26875:2 26880:1 26895:1 26901:1 26902:1 26929:18 26930:2 26942:1 26964:1 26973:1 26974:1 26986:1 27000:1 27012:1 27019:2 27024:1 27029:1 27048:2 27051:1 27059:1 27060:1 27078:1 27083:1 27088:1 27092:1 27094:1 27112:1 27123:1 27163:1 27164:1 27192:10 27193:1 27202:1 27218:1 27230:1 27233:2 27234:1 27253:1 27265:1 27272:1 27279:1 27290:1 27298:1 27304:1 27312:6 27315:1 27336:1 27338:1 27340:2 27341:1 27368:1 27375:1 27381:2 27387:1 27393:1 27398:1 27410:1 27428:1 27443:2 27448:2 27450:1 27465:2 27484:1 27486:1 27498:1 27514:1 27577:1 27579:2 27590:1 27603:1 27606:1 27619:1 27622:1 27627:2 27633:5 27636:1 27643:1 27645:1 27646:1 27657:1 27662:1 27669:1 27673:1 27701:7 27711:1 27713:1 27716:1 27728:1 27729:7 27746:2 27748:2 27750:1 27765:1 27773:1 27777:1 27784:3 27786:1 27793:1 27796:1 27810:1 27818:1 27820:1 27854:1 27866:1 27873:2 27889:1 27927:1 27933:1 27947:1 27970:1 27977:1 28000:1 28010:1 28038:2 28041:1 28048:1 28049:2 28064:1 28065:1 28071:1 28072:1 28076:1 28092:1 28106:3 28108:1 28131:1 28142:4 28153:1 28186:1 28191:1 28200:2 28202:1 28210:2 28211:1 28213:1 28227:2 28228:15 28239:2 28265:1 28268:1 28282:1 28289:1 28291:2 28303:1 28304:1 28305:1 28309:1 28317:1 28322:1 28326:2 28328:2 28337:1 28343:1 28356:4 28360:3 28368:3 28371:2 28373:4 28375:1 28403:1 28410:1 28456:1 28463:1 28481:1 28497:1 28500:1 28501:2 28502:1 28515:1 28531:2 28551:2 28564:1 28568:2 28569:1 28572:1 28573:2 28583:1 28594:6 28595:1 28596:1 28605:1 28608:1 28609:1 28618:1 28627:1 28630:1 28634:1 28637:1 28667:1 28671:2 28673:2 28691:1 28699:1 28727:1 28744:1 28768:1 28777:1 28788:3 28814:1 28816:2 28817:1 28846:1 28851:1 28857:1 28860:1 28863:5 28878:1 28883:1 28884:1 28921:1 28925:1 28931:1 28932:1 28945:1 28949:1 28954:3 28959:1 28963:1 28975:1 28983:1 28986:2 28988:2 28998:3 29014:1 29017:1 29034:1 29043:1 29045:1 29050:2 29078:1 29086:2 29093:1 29095:1 29111:1 29132:1 29144:2 29158:1 29163:3 29166:1 29171:1 29172:2 29182:1 29187:1 29190:1 29191:2 29210:1 29218:1 29227:2 29238:2 29241:1 29244:1 29247:1 29250:1 29259:2 29260:1 29281:1 29295:1 29302:1 29312:1 29314:1 29318:2 29322:1 29354:1 29373:5 29375:3 29377:2 29401:1 29404:1 29406:1 29438:1 29446:2 29453:1 29460:1 29465:2 29473:2 29482:1 29484:1 29487:1 29494:2 29501:1 29508:1 29514:1 29516:1 29523:1 29524:1 29529:3 29530:1 29531:1 29536:3 29539:1 29543:2 29546:1 29549:1 29556:2 29566:2 29571:1 29574:1 29579:1 29580:1 29613:1 29615:1 29630:1 29641:4 29656:1 29663:2 29688:2 29709:1 29763:1 29766:2 29798:1 29804:1 29805:2 29831:2 29848:1 29849:1 29853:1 29855:3 29862:5 29872:1 29879:1 29883:1 29891:1 29900:1 29921:6 29952:1 29954:1 29964:1 29969:1 29985:1 30009:1 30014:1 30019:2 30034:2 30039:1 30051:1 30063:1 30065:1 30082:1 30100:1 30109:1 30110:2 30114:1 30133:2 30134:3 30135:1 30138:1 30146:2 30150:1 30151:1 30152:2 30169:1 30171:1 30180:1 30181:5 30196:1 30203:1 30205:1 30220:2 30226:2 30228:2 30229:1 30231:1 30235:1 30238:5 30244:1 30251:1 30252:1 30261:3 30263:1 30275:3 30279:1 30283:3 30285:1 30309:1 30316:3 30332:1 30336:1 30354:1 30356:1 30362:1 30377:1 30392:3 30397:4 30406:5 30411:1 30438:5 30453:1 30457:1 30462:1 30470:1 30471:1 30484:1 30491:1 30493:1 30495:1 30525:1 30527:6 30532:1 30537:2 30571:1 30574:1 30583:1 30604:1 30614:1 30629:1 30634:1 30635:1 30645:1 30646:2 30651:1 30656:1 30670:1 30673:3 30709:1 30710:1 30711:1 30717:7 30719:1 30729:1 30730:1 30735:2 30750:1 30786:5 30810:1 30865:1 30871:1 30879:1 30882:1 30916:1 30926:1 30971:1 31003:1 31028:2 31043:1 31046:1 31047:2 31048:2 31053:2 31055:3 31068:1 31072:1 31074:1 31082:1 31086:1 31092:1 31103:1 31124:1 31136:1 31143:1 31152:1 31184:1 31194:3 31198:1 31204:2 31233:2 31238:1 31239:2 31257:1 31259:1 31272:1 31284:1 31287:1 31289:1 31296:1 31301:1 31308:3 31309:1 31313:2 31343:1 31345:1 31348:4 31351:2 31377:1 31382:1 31405:1 31413:1 31422:1 31431:1 31443:1 31467:1 31473:1 31478:3 31484:1 31487:1 31505:1 31516:3 31519:1 31542:1 31577:2 31580:2 31599:1 31600:1 31606:1 31608:3 31615:3 31617:3 31618:1 31623:1 31632:1 31677:5 31682:1 1 13:1 40:1 46:1 53:1 62:1 65:1 72:1 106:1 141:1 155:1 156:3 161:1 167:2 173:1 188:2 190:3 202:1 207:6 226:1 231:1 244:1 263:1 274:1 278:7 287:1 297:3 307:1 328:2 354:1 371:4 373:3 378:3 387:3 391:1 397:2 416:3 430:1 438:2 454:5 458:5 471:1 485:1 490:1 522:1 526:1 527:1 561:2 588:1 596:1 600:2 614:1 620:1 634:3 645:1 659:1 665:1 667:4 674:2 678:1 693:2 704:1 765:1 767:1 783:1 810:1 815:1 817:1 826:1 829:2 830:1 854:1 856:2 863:1 871:1 900:6 906:1 911:1 917:1 918:4 922:1 927:1 942:16 943:4 952:3 975:4 984:1 992:1 993:4 995:2 998:8 1000:1 1001:2 1004:4 1018:2 1033:1 1042:5 1044:4 1055:1 1056:1 1095:2 1104:1 1121:1 1142:1 1159:1 1177:1 1178:1 1198:1 1210:2 1214:1 1217:1 1275:3 1277:2 1283:1 1285:2 1287:1 1295:2 1298:1 1299:1 1312:1 1315:1 1325:1 1326:1 1328:1 1332:2 1343:1 1351:2 1356:2 1365:1 1367:1 1380:1 1386:2 1389:1 1408:1 1417:1 1429:1 1432:1 1433:1 1451:1 1457:1 1466:1 1468:1 1470:1 1485:1 1500:1 1527:1 1530:1 1540:1 1541:2 1557:1 1564:1 1565:2 1584:1 1587:1 1595:3 1602:1 1613:1 1629:1 1630:1 1632:2 1635:1 1647:1 1654:1 1674:1 1686:4 1694:7 1696:2 1705:1 1713:1 1743:2 1751:1 1754:1 1763:1 1767:2 1783:1 1786:1 1788:1 1791:2 1799:1 1804:2 1813:1 1818:1 1820:1 1824:1 1825:2 1835:1 1839:2 1850:1 1854:1 1863:1 1867:2 1871:1 1875:1 1881:1 1882:1 1886:2 1897:1 1900:1 1905:1 1914:1 1920:2 1923:1 1944:1 1945:5 1950:1 1954:1 1965:1 1971:1 1974:3 1978:1 1979:2 1993:2 1994:6 2027:4 2030:3 2043:1 2054:1 2055:1 2060:2 2065:4 2070:1 2071:1 2074:1 2089:1 2103:2 2112:1 2113:1 2121:3 2127:2 2128:1 2129:1 2143:2 2146:1 2192:1 2198:9 2201:1 2207:1 2210:2 2214:1 2215:4 2219:1 2220:1 2222:2 2226:1 2230:2 2236:1 2243:1 2247:1 2255:1 2268:1 2272:1 2283:1 2296:2 2300:1 2301:1 2306:2 2308:1 2323:1 2335:1 2349:1 2354:11 2361:1 2370:1 2376:1 2379:1 2393:1 2402:1 2423:2 2436:3 2439:1 2450:1 2458:1 2464:2 2477:2 2478:2 2480:1 2482:3 2485:5 2487:1 2489:1 2491:2 2494:2 2495:2 2497:1 2499:3 2501:1 2502:5 2506:1 2508:5 2509:3 2514:5 2515:7 2517:1 2528:1 2562:1 2565:1 2568:3 2571:3 2576:1 2593:2 2595:1 2603:1 2617:1 2618:1 2623:1 2631:1 2637:1 2639:1 2657:1 2671:1 2695:1 2706:3 2718:1 2722:1 2739:3 2751:2 2752:1 2764:1 2765:1 2771:1 2776:1 2779:1 2800:3 2803:2 2806:1 2808:6 2812:1 2813:1 2814:1 2824:1 2827:1 2835:1 2849:4 2851:1 2852:1 2857:1 2873:2 2881:1 2884:1 2885:2 2897:6 2906:2 2911:1 2913:2 2916:9 2924:4 2928:1 2937:2 2939:1 2943:1 2945:2 2947:1 2950:3 2951:2 2967:2 2981:1 2982:2 2987:3 2991:1 2995:1 3001:1 3029:1 3034:1 3035:2 3036:2 3041:1 3050:3 3052:1 3056:1 3060:7 3065:2 3069:1 3085:1 3089:1 3096:1 3122:1 3127:3 3128:1 3146:4 3152:1 3157:1 3159:16 3178:3 3180:1 3185:1 3186:1 3190:1 3199:2 3203:3 3206:1 3224:20 3225:2 3234:1 3246:2 3249:3 3269:2 3280:1 3317:1 3325:1 3332:1 3338:1 3351:1 3352:5 3371:3 3377:1 3383:1 3391:1 3410:1 3426:1 3438:1 3440:1 3442:1 3447:1 3457:2 3469:1 3490:2 3504:1 3510:3 3524:1 3531:1 3534:1 3550:1 3551:2 3579:1 3580:2 3581:1 3590:1 3608:6 3609:1 3626:1 3643:1 3663:1 3695:1 3706:2 3719:1 3749:1 3751:1 3753:1 3774:1 3781:1 3783:1 3784:1 3788:1 3794:1 3799:1 3804:1 3805:1 3829:1 3844:1 3851:1 3861:1 3868:2 3873:1 3897:1 3898:13 3900:1 3909:1 3912:2 3914:2 3915:2 3937:1 3942:1 3943:1 3947:1 3962:1 3998:1 4000:2 4001:1 4008:1 4013:3 4021:2 4038:1 4062:1 4096:1 4099:1 4101:1 4106:2 4110:1 4113:2 4117:1 4129:3 4149:1 4152:1 4156:2 4163:1 4167:1 4179:2 4181:1 4186:1 4195:1 4200:3 4201:1 4215:1 4220:2 4221:1 4226:4 4229:1 4236:2 4240:1 4241:2 4242:1 4253:4 4267:1 4272:2 4289:1 4293:2 4309:1 4313:2 4315:3 4320:1 4340:2 4348:6 4349:4 4356:2 4393:1 4395:2 4398:1 4403:1 4417:1 4422:1 4426:2 4432:1 4448:1 4464:2 4470:1 4471:1 4476:1 4500:2 4526:2 4537:1 4547:4 4548:1 4551:1 4552:1 4557:2 4559:1 4563:1 4567:2 4581:1 4587:1 4594:1 4610:1 4624:1 4629:1 4647:1 4649:1 4669:7 4691:3 4696:1 4708:2 4712:1 4714:1 4717:1 4720:2 4732:2 4749:2 4759:1 4779:1 4785:1 4787:4 4788:2 4808:4 4834:1 4843:1 4844:1 4850:1 4869:2 4876:2 4893:1 4899:1 4902:1 4904:1 4910:1 4911:3 4913:1 4922:1 4938:1 4959:3 4970:1 4983:5 5001:1 5006:1 5034:4 5044:2 5047:1 5056:1 5057:1 5062:4 5066:1 5085:4 5105:2 5131:1 5135:2 5138:3 5154:3 5167:1 5174:1 5187:1 5189:2 5198:1 5200:1 5216:1 5217:1 5230:1 5249:1 5267:15 5270:2 5279:1 5282:1 5283:1 5290:1 5297:1 5307:1 5316:1 5329:1 5339:1 5350:1 5404:3 5429:1 5430:1 5431:4 5433:7 5434:3 5436:1 5440:2 5441:2 5442:1 5445:1 5446:2 5449:6 5450:4 5453:1 5454:2 5456:8 5464:2 5465:5 5468:1 5469:1 5517:1 5532:1 5548:2 5557:1 5575:1 5580:1 5592:1 5614:1 5625:1 5638:1 5658:1 5668:1 5704:1 5720:1 5731:2 5765:1 5771:1 5801:3 5807:2 5813:1 5847:1 5850:1 5875:5 5889:1 5890:1 5915:1 5917:1 5937:1 5943:1 5953:2 5959:1 5972:1 5980:1 5988:1 5994:1 6017:1 6029:1 6057:1 6060:1 6080:1 6100:2 6110:1 6115:2 6118:1 6121:1 6133:5 6134:1 6136:2 6139:1 6143:1 6144:3 6156:1 6157:1 6181:1 6188:3 6200:2 6202:1 6204:1 6219:6 6223:1 6224:1 6237:2 6289:1 6303:1 6308:1 6320:1 6327:1 6330:1 6337:1 6345:1 6349:1 6351:1 6352:1 6361:2 6366:1 6387:1 6400:1 6427:1 6433:2 6444:2 6455:1 6466:2 6468:2 6471:2 6486:1 6488:6 6494:1 6495:1 6499:1 6502:2 6510:1 6512:1 6514:1 6515:1 6516:1 6556:1 6559:1 6560:1 6561:1 6569:1 6571:2 6573:1 6579:1 6581:1 6582:2 6586:12 6600:1 6603:1 6624:3 6631:1 6655:1 6668:1 6684:3 6693:2 6706:1 6709:6 6713:1 6720:1 6769:1 6775:1 6799:1 6806:1 6808:1 6809:1 6814:2 6816:3 6817:1 6822:1 6823:1 6825:2 6826:1 6832:2 6834:4 6835:3 6884:1 6931:1 6949:1 6979:1 6990:1 6993:4 6996:2 7008:1 7016:1 7040:1 7052:1 7057:1 7061:1 7071:1 7076:2 7079:1 7097:1 7106:2 7131:1 7145:2 7153:2 7167:1 7174:1 7175:1 7182:1 7227:1 7241:1 7251:2 7253:1 7256:1 7260:1 7265:1 7284:8 7290:1 7292:2 7295:3 7298:1 7309:1 7315:1 7326:2 7348:1 7357:1 7360:1 7362:1 7403:1 7405:3 7421:2 7429:1 7435:2 7454:1 7460:1 7465:1 7473:1 7478:2 7479:1 7504:1 7522:1 7529:2 7535:1 7550:1 7561:1 7569:1 7574:6 7578:2 7598:1 7611:1 7615:1 7621:1 7624:3 7625:2 7632:1 7636:4 7638:1 7640:1 7645:5 7648:1 7651:1 7656:1 7679:1 7680:1 7681:1 7684:1 7695:1 7701:1 7726:1 7729:1 7737:4 7747:4 7759:1 7771:1 7792:3 7795:1 7796:1 7798:1 7805:1 7812:1 7818:1 7824:1 7827:1 7829:1 7835:1 7839:1 7846:1 7853:1 7869:1 7897:1 7919:1 7925:1 7930:1 7933:2 7971:1 7984:1 7985:2 7986:6 7991:3 7997:1 7999:1 8004:1 8006:3 8010:1 8032:6 8034:2 8036:2 8037:1 8061:1 8064:3 8074:1 8081:1 8093:1 8108:2 8110:1 8117:1 8127:1 8131:1 8134:1 8140:1 8152:1 8153:1 8160:1 8161:2 8168:1 8175:1 8178:1 8189:1 8190:1 8198:1 8218:3 8235:4 8236:6 8250:2 8257:4 8258:1 8262:2 8263:3 8265:1 8278:1 8287:4 8288:2 8290:1 8303:46 8306:2 8315:1 8323:1 8326:10 8327:6 8331:2 8337:1 8367:1 8374:1 8375:1 8384:1 8397:1 8404:3 8405:2 8411:1 8421:1 8424:2 8433:2 8445:3 8455:1 8459:1 8461:1 8480:2 8486:1 8488:1 8492:1 8512:1 8514:2 8541:1 8550:1 8553:1 8557:1 8558:3 8562:1 8588:1 8591:1 8592:1 8593:1 8605:2 8609:2 8653:1 8663:1 8681:1 8696:1 8698:1 8722:1 8723:1 8734:1 8737:1 8742:1 8755:1 8765:1 8768:1 8775:1 8777:1 8778:2 8788:1 8797:1 8815:1 8816:1 8835:25 8843:1 8844:1 8865:3 8868:3 8870:1 8900:1 8911:1 8935:6 8937:1 8938:1 8943:1 8969:1 8974:1 8990:3 8993:1 8994:2 8996:1 9001:1 9019:1 9030:2 9031:4 9038:3 9044:1 9049:1 9065:2 9066:1 9069:1 9076:1 9080:1 9088:1 9090:1 9104:1 9109:1 9110:1 9128:1 9129:2 9139:2 9141:1 9142:1 9154:2 9201:1 9204:1 9205:1 9209:1 9211:1 9216:1 9239:1 9242:2 9255:6 9257:1 9267:2 9271:3 9291:1 9302:1 9303:1 9312:1 9319:2 9323:1 9324:1 9333:1 9340:1 9345:1 9365:2 9375:1 9393:1 9404:1 9431:1 9436:1 9437:1 9449:1 9450:1 9460:1 9485:1 9486:1 9487:1 9501:3 9510:1 9533:1 9536:1 9537:1 9541:3 9577:3 9586:1 9594:2 9606:1 9613:1 9618:1 9643:1 9644:1 9651:1 9655:2 9661:1 9662:6 9663:1 9668:1 9670:1 9675:1 9687:1 9695:2 9697:1 9708:6 9709:1 9719:1 9732:1 9740:1 9759:1 9768:11 9769:6 9778:1 9784:2 9794:2 9830:3 9837:1 9844:1 9849:1 9853:3 9855:1 9872:1 9878:1 9882:2 9884:2 9886:3 9888:2 9898:1 9907:1 9919:1 9928:1 9950:1 9960:2 9963:1 9969:1 9972:5 9974:1 9988:1 9996:3 9999:2 10005:1 10006:1 10021:4 10050:1 10064:1 10080:1 10089:1 10108:1 10111:3 10118:1 10122:3 10128:1 10142:1 10147:1 10156:1 10159:1 10183:1 10197:1 10201:1 10211:1 10220:7 10226:2 10264:3 10283:1 10284:1 10298:3 10302:1 10330:1 10352:1 10358:1 10363:1 10365:3 10366:3 10369:2 10374:1 10399:1 10406:2 10408:2 10437:2 10439:1 10447:1 10458:1 10494:2 10511:1 10517:1 10530:2 10542:2 10554:1 10557:1 10558:1 10576:1 10587:1 10603:1 10606:1 10611:1 10612:1 10626:1 10630:1 10657:1 10662:1 10663:1 10665:1 10670:1 10674:5 10690:4 10702:4 10707:2 10717:1 10738:2 10751:1 10762:3 10764:1 10772:1 10807:1 10813:2 10818:2 10835:1 10841:1 10854:1 10861:4 10864:1 10901:2 10907:1 10911:12 10913:1 10914:2 10919:2 10927:1 10948:2 10949:1 10969:1 10973:1 10980:1 10991:1 11018:1 11040:1 11047:2 11049:1 11074:1 11094:1 11109:1 11110:1 11112:1 11115:1 11117:1 11121:4 11129:1 11131:1 11136:2 11169:1 11181:4 11185:1 11187:1 11189:1 11194:1 11196:3 11207:1 11210:1 11213:1 11224:4 11244:1 11265:1 11277:1 11283:1 11284:1 11291:1 11298:1 11300:2 11303:2 11306:1 11319:2 11330:1 11336:1 11337:1 11345:1 11348:3 11355:1 11360:2 11362:1 11365:1 11373:7 11376:4 11389:2 11390:3 11395:1 11402:1 11413:1 11417:1 11419:2 11432:1 11447:2 11462:7 11463:2 11483:2 11485:1 11486:1 11498:4 11524:1 11541:1 11544:1 11550:3 11562:2 11570:1 11573:6 11588:1 11597:1 11605:1 11609:1 11624:3 11664:1 11677:1 11744:1 11750:1 11767:1 11770:1 11791:1 11792:2 11796:2 11800:1 11801:2 11807:1 11811:1 11815:1 11816:1 11817:5 11819:5 11820:1 11827:1 11834:2 11838:2 11842:1 11845:4 11849:1 11851:1 11853:1 11865:1 11868:3 11872:3 11877:1 11901:2 11910:1 11935:1 11937:1 11939:3 11983:1 11986:1 12007:1 12021:2 12023:1 12026:1 12061:1 12094:1 12102:1 12115:1 12118:1 12133:1 12137:3 12151:1 12156:1 12179:1 12192:1 12195:1 12202:2 12204:1 12219:3 12222:2 12227:1 12241:2 12245:2 12247:1 12249:1 12250:2 12252:1 12260:3 12262:1 12263:1 12264:2 12269:1 12272:1 12278:1 12285:3 12287:2 12293:1 12324:15 12325:1 12356:1 12365:1 12369:4 12383:2 12384:2 12391:2 12396:1 12416:1 12418:2 12429:2 12430:1 12441:1 12442:2 12449:2 12450:1 12464:1 12483:1 12497:1 12501:1 12521:1 12528:1 12544:1 12566:1 12574:3 12575:1 12578:1 12579:1 12584:1 12587:1 12592:4 12596:1 12597:2 12599:1 12603:1 12604:1 12611:1 12614:1 12624:1 12636:1 12640:1 12641:1 12643:1 12649:2 12652:5 12655:3 12683:1 12718:1 12741:2 12745:1 12760:1 12767:1 12783:1 12799:1 12801:1 12808:1 12818:2 12829:1 12845:1 12855:1 12856:1 12863:5 12872:1 12883:2 12886:1 12887:2 12901:1 12907:1 12918:1 12925:2 12931:2 12955:2 12971:2 12982:1 12983:2 13003:1 13025:2 13030:1 13043:1 13047:1 13049:1 13052:1 13059:2 13070:1 13094:1 13118:1 13125:1 13127:1 13132:5 13133:2 13134:2 13149:1 13155:2 13168:1 13172:1 13174:1 13182:1 13195:1 13235:1 13237:2 13240:1 13264:1 13271:1 13276:1 13280:1 13291:1 13303:1 13310:1 13327:1 13332:1 13338:1 13356:1 13427:3 13456:2 13473:1 13493:1 13502:1 13515:1 13531:1 13533:2 13534:1 13552:3 13566:1 13569:1 13582:1 13591:1 13601:1 13626:1 13654:1 13663:1 13666:1 13669:1 13670:2 13677:1 13699:1 13718:15 13723:5 13737:2 13762:1 13776:2 13777:3 13785:4 13805:1 13811:1 13817:1 13818:1 13828:1 13838:2 13839:1 13847:1 13881:1 13900:1 13906:1 13913:1 13920:2 13927:1 13939:2 13957:1 13959:1 13975:1 13978:1 13998:1 14000:1 14010:2 14011:1 14020:1 14026:1 14027:1 14048:1 14058:1 14064:3 14084:2 14085:1 14110:1 14129:1 14146:1 14149:1 14176:1 14186:1 14190:1 14199:1 14201:1 14204:3 14208:4 14224:1 14228:1 14230:2 14240:2 14245:1 14262:6 14279:1 14284:2 14307:1 14314:4 14316:1 14330:1 14347:1 14352:1 14354:1 14355:1 14356:1 14369:9 14370:1 14381:2 14385:1 14403:1 14408:1 14416:1 14417:1 14422:2 14429:1 14437:1 14438:1 14453:16 14462:1 14466:1 14488:1 14503:2 14504:1 14510:3 14525:1 14532:2 14550:2 14560:1 14561:1 14603:3 14630:1 14635:6 14641:1 14658:1 14664:2 14670:1 14673:1 14695:3 14722:1 14732:1 14734:1 14737:1 14746:3 14748:1 14749:1 14760:1 14762:1 14769:6 14770:1 14773:1 14774:2 14775:1 14777:2 14778:1 14782:7 14783:2 14810:1 14811:1 14814:1 14818:1 14846:1 14867:1 14873:1 14894:1 14906:2 14911:2 14921:1 14933:1 14948:1 14958:1 14967:4 14968:1 15004:1 15010:1 15013:1 15015:1 15022:1 15025:1 15032:1 15033:1 15046:1 15049:1 15074:2 15079:1 15080:1 15091:1 15092:1 15094:1 15098:7 15111:1 15121:1 15123:3 15128:1 15163:1 15174:1 15175:2 15185:1 15191:1 15202:1 15210:1 15213:1 15215:1 15224:1 15236:1 15258:1 15265:1 15266:1 15272:1 15278:1 15283:1 15293:1 15300:1 15304:1 15312:1 15315:1 15353:1 15362:2 15379:5 15395:1 15401:1 15414:1 15434:1 15446:1 15468:1 15488:1 15514:1 15517:3 15518:4 15527:1 15540:2 15541:2 15544:1 15550:2 15552:1 15570:1 15573:1 15581:1 15592:2 15617:1 15625:1 15651:1 15661:1 15675:2 15680:1 15683:1 15698:1 15703:1 15705:1 15707:1 15712:2 15714:1 15723:1 15725:3 15729:2 15782:1 15786:2 15790:1 15804:2 15821:2 15841:1 15842:2 15844:1 15851:1 15856:1 15870:1 15880:1 15883:1 15906:1 15922:3 15928:1 15938:1 15941:2 15947:1 15972:1 15973:1 15978:1 16029:1 16032:1 16035:2 16073:2 16078:2 16079:1 16081:1 16090:1 16100:1 16109:1 16120:1 16157:1 16160:3 16168:1 16188:1 16189:1 16192:2 16199:1 16231:1 16269:1 16298:1 16302:1 16308:1 16314:2 16351:1 16364:1 16406:1 16424:2 16435:1 16442:1 16464:1 16476:1 16479:1 16481:2 16492:1 16511:2 16516:3 16520:1 16545:1 16551:1 16553:1 16563:1 16567:2 16585:3 16592:1 16614:1 16616:1 16627:2 16641:1 16652:2 16676:1 16686:1 16687:1 16701:6 16720:3 16731:1 16739:3 16752:3 16777:1 16782:1 16790:1 16807:1 16810:1 16815:2 16869:1 16883:2 16884:1 16897:2 16905:1 16909:1 16913:4 16914:1 16918:1 16920:1 16926:1 16940:4 16941:1 16945:1 16948:1 16962:1 16968:1 16980:1 16999:2 17008:2 17052:2 17055:1 17062:1 17079:3 17089:2 17101:1 17104:1 17105:3 17120:1 17135:3 17150:1 17151:1 17157:1 17198:1 17200:1 17230:1 17234:1 17239:15 17241:1 17256:1 17258:1 17260:3 17262:1 17285:3 17327:1 17344:1 17349:2 17360:3 17363:1 17380:2 17383:1 17392:2 17401:1 17428:1 17435:1 17442:1 17444:1 17445:1 17454:2 17456:1 17482:1 17486:3 17489:1 17504:1 17511:1 17516:6 17518:2 17519:2 17520:6 17521:1 17523:1 17527:2 17529:1 17531:2 17532:4 17537:1 17538:1 17540:1 17544:1 17546:1 17548:1 17555:1 17581:2 17590:1 17592:1 17598:1 17607:1 17627:1 17637:1 17652:1 17655:2 17656:1 17692:2 17699:1 17708:2 17709:2 17729:1 17762:1 17774:1 17776:1 17804:1 17808:1 17827:1 17868:1 17872:1 17874:1 17884:2 17899:1 17902:2 17915:2 17916:1 17925:1 17930:5 17937:1 17941:2 17954:1 17965:1 17966:1 17972:2 17975:4 17980:2 17985:1 17994:3 17998:2 18008:3 18016:1 18026:1 18071:14 18073:1 18086:1 18088:1 18095:1 18096:4 18097:1 18102:1 18171:1 18172:1 18183:2 18191:1 18201:4 18211:1 18212:1 18225:1 18233:2 18236:2 18266:1 18269:1 18286:2 18291:1 18307:5 18308:1 18322:1 18340:1 18341:1 18344:1 18361:1 18379:1 18423:2 18424:3 18425:1 18438:1 18440:1 18443:1 18453:1 18490:1 18491:1 18494:1 18514:1 18517:1 18530:2 18533:1 18548:1 18556:1 18565:2 18577:2 18585:1 18587:2 18593:1 18597:1 18617:1 18662:1 18670:1 18712:1 18731:1 18734:1 18755:1 18760:1 18775:2 18779:1 18791:3 18796:1 18800:1 18801:1 18810:3 18814:2 18815:2 18819:2 18824:1 18825:10 18852:1 18872:1 18877:2 18880:1 18885:2 18887:1 18892:1 18898:1 18905:1 18908:2 18909:1 18910:1 18962:1 18982:1 18983:1 19004:3 19009:1 19023:1 19033:2 19047:1 19050:1 19054:1 19061:1 19070:1 19071:1 19101:1 19102:1 19103:1 19123:1 19130:1 19134:2 19147:1 19166:1 19171:1 19202:1 19207:1 19225:1 19226:2 19231:1 19233:1 19236:1 19243:1 19246:1 19267:1 19299:1 19337:1 19376:1 19378:1 19390:1 19391:2 19411:2 19450:1 19514:2 19515:1 19525:1 19538:1 19543:1 19553:1 19565:1 19575:1 19592:1 19593:1 19600:1 19619:1 19631:1 19651:1 19656:3 19661:1 19670:1 19709:1 19719:15 19731:1 19750:1 19780:1 19806:1 19826:14 19832:1 19833:4 19834:1 19843:1 19846:5 19847:1 19863:1 19872:1 19876:3 19897:1 19915:2 19948:4 19971:2 19979:1 19988:2 19990:1 19993:1 20016:3 20020:1 20023:2 20041:2 20047:1 20053:2322 20064:1 20070:1 20085:1 20086:1 20126:1 20132:1 20134:1 20160:2 20181:1 20217:1 20218:1 20229:1 20241:1 20262:1 20264:1 20267:1 20271:2 20274:6 20275:4 20286:1 20292:1 20294:1 20298:1 20308:1 20320:1 20338:1 20350:1 20364:1 20368:1 20373:1 20375:1 20420:1 20422:3 20425:2 20431:1 20469:1 20482:1 20486:1 20489:1 20490:3 20517:1 20528:2 20545:1 20546:1 20547:1 20557:2 20558:1 20567:1 20579:1 20584:1 20587:1 20605:2 20618:1 20630:1 20642:1 20647:2 20651:2 20660:1 20669:1 20679:2 20681:1 20701:2 20702:2 20715:3 20721:1 20724:1 20732:3 20757:3 20759:1 20765:1 20768:1 20769:1 20774:1 20778:1 20781:2 20787:9 20792:1 20813:1 20815:1 20833:1 20838:2 20839:1 20848:2 20864:5 20871:1 20882:1 20884:1 20901:1 20917:1 20926:4 20933:1 20935:2 20941:1 20943:2 20956:4 20957:1 20968:1 20974:1 20979:2 20999:1 21005:4 21013:2 21014:1 21022:3 21061:3 21062:2 21065:1 21075:1 21089:1 21093:1 21095:2 21098:2 21105:1 21106:2 21109:1 21121:1 21132:1 21143:1 21148:1 21149:1 21150:1 21152:1 21157:1 21168:1 21202:1 21219:1 21220:3 21237:1 21239:2 21241:1 21242:1 21249:1 21250:3 21254:1 21277:1 21281:1 21283:1 21288:1 21295:1 21302:2 21308:1 21313:1 21320:1 21322:1 21330:2 21331:1 21341:1 21342:1 21361:1 21371:1 21376:2 21379:4 21385:1 21387:4 21446:1 21451:1 21453:1 21463:1 21466:2 21475:1 21478:1 21482:2 21483:2 21486:2 21501:1 21503:2 21507:3 21511:3 21518:1 21519:2 21523:2 21524:1 21544:5 21555:2 21571:1 21573:1 21583:1 21587:1 21590:2 21591:4 21613:1 21614:1 21627:1 21628:1 21633:1 21652:1 21654:3 21673:1 21676:1 21678:2 21699:1 21711:3 21712:20 21713:2 21719:1 21727:5 21733:1 21756:1 21759:1 21767:1 21789:2 21798:1 21799:1 21813:1 21818:1 21822:1 21828:1 21853:1 21860:1 21861:1 21881:1 21887:1 21897:1 21940:4 21960:2 21982:2 21990:1 22001:2 22015:1 22018:1 22032:2 22066:8 22069:1 22071:2 22078:1 22085:1 22119:1 22120:1 22121:1 22128:1 22140:1 22174:1 22177:1 22185:4 22202:3 22221:1 22225:1 22228:1 22231:1 22235:1 22236:1 22244:1 22247:2 22282:2 22288:3 22298:2 22300:2 22314:2 22319:2 22323:1 22325:1 22326:1 22337:2 22343:1 22370:5 22390:2 22391:1 22398:1 22402:1 22413:1 22417:2 22421:1 22432:1 22452:2 22466:1 22473:1 22478:2 22479:1 22488:5 22492:1 22496:2 22501:1 22503:1 22508:2 22519:3 22546:2 22554:1 22567:1 22590:1 22591:1 22592:1 22602:2 22615:2 22621:2 22624:2 22628:2 22632:2 22635:1 22643:2 22665:1 22671:2 22685:2 22699:2 22715:1 22716:4 22723:1 22724:1 22726:4 22739:1 22741:1 22750:2 22755:1 22758:1 22760:1 22768:1 22769:1 22773:2 22774:1 22779:1 22790:1 22793:1 22794:1 22811:1 22815:1 22838:1 22846:1 22855:1 22857:1 22862:2 22864:1 22865:1 22866:2 22879:1 22893:1 22939:1 22996:2 23014:2 23017:1 23026:2 23027:2 23031:1 23032:1 23038:1 23039:1 23043:1 23045:1 23056:1 23063:2 23070:3 23071:1 23081:1 23090:1 23104:1 23121:1 23131:1 23137:1 23147:1 23158:1 23159:1 23181:2 23183:1 23184:1 23185:1 23190:1 23194:1 23195:2 23199:1 23200:1 23210:1 23213:1 23217:2 23222:2 23228:2 23229:1 23230:1 23236:2 23237:1 23238:1 23249:1 23251:2 23262:1 23271:14 23281:2 23282:2 23288:2 23298:1 23313:1 23326:1 23328:1 23337:1 23345:1 23347:1 23348:1 23349:1 23352:1 23355:1 23377:1 23410:2 23418:1 23426:2 23429:1 23434:1 23437:4 23439:3 23442:1 23452:2 23466:1 23467:1 23468:1 23475:1 23477:1 23497:1 23498:1 23500:3 23502:4 23503:2 23522:1 23537:1 23540:1 23576:1 23605:4 23613:1 23614:5 23616:3 23617:3 23619:1 23620:1 23625:1 23628:2 23631:1 23632:2 23643:1 23644:1 23645:5 23655:1 23656:1 23659:1 23674:1 23682:1 23693:2 23697:2 23700:2 23721:1 23749:1 23751:1 23778:2 23783:2 23795:1 23796:1 23799:1 23801:1 23811:1 23823:1 23834:1 23850:1 23853:1 23858:1 23859:1 23862:1 23865:2 23867:1 23882:1 23886:1 23887:1 23897:1 23900:1 23912:2 23915:1 23922:5 23929:1 23939:1 23940:4 23943:3 23946:1 23952:1 23969:1 23977:1 23982:1 23990:2 23993:1 23997:1 23998:1 24001:1 24002:4 24010:2 24016:1 24026:2 24030:9 24033:1 24037:1 24044:1 24046:1 24050:1 24053:1 24073:1 24074:1 24108:8 24111:1 24126:1 24150:1 24162:1 24172:6 24173:1 24175:1 24178:1 24179:1 24184:1 24197:1 24199:1 24221:1 24222:3 24248:1 24250:4 24260:1 24289:1 24290:1 24291:6 24294:2 24305:3 24308:1 24309:3 24319:1 24325:1 24329:1 24332:1 24346:1 24349:4 24361:1 24370:1 24371:3 24376:3 24386:1 24396:1 24408:1 24419:1 24426:1 24432:1 24447:1 24451:1 24479:1 24486:1 24495:1 24499:1 24500:1 24502:1 24517:1 24531:2 24549:10 24550:3 24558:1 24568:2 24574:1 24578:2 24585:4 24590:1 24594:1 24598:3 24608:2 24624:1 24635:1 24661:1 24671:1 24681:1 24682:1 24685:2 24688:2 24706:1 24708:1 24711:1 24742:1 24744:1 24746:1 24749:1 24750:1 24752:1 24762:1 24774:1 24776:1 24789:1 24795:2 24799:1 24806:2 24808:1 24814:1 24842:1 24851:3 24883:3 24899:1 24940:2 24969:1 24996:3 25000:3 25008:5 25018:2 25027:1 25033:1 25036:3 25039:1 25051:2 25054:2 25056:3 25066:1 25080:4 25122:1 25130:1 25138:1 25160:1 25172:1 25184:1 25196:1 25199:4 25230:1 25232:1 25240:2 25246:1 25259:2 25268:1 25273:2 25283:1 25286:1 25298:1 25304:1 25314:1 25315:2 25318:3 25320:3 25329:1 25331:1 25343:1 25345:1 25352:1 25366:3 25367:1 25368:2 25371:2 25376:1 25388:1 25391:1 25396:1 25447:1 25450:4 25453:1 25458:1 25462:1 25469:1 25471:1 25472:4 25474:1 25477:1 25478:1 25479:1 25481:1 25485:1 25511:1 25535:3 25537:1 25549:1 25605:2 25618:2 25633:1 25652:2 25703:1 25715:1 25718:2 25727:2 25729:1 25739:1 25754:1 25770:1 25772:1 25776:1 25786:1 25793:2 25796:1 25803:1 25817:2 25840:1 25851:1 25861:1 25885:1 25898:1 25900:2 25909:1 25937:2 25940:1 25963:2 25977:4 25989:1 26010:1 26021:1 26022:7 26041:1 26048:1 26055:3 26066:1 26075:1 26076:1 26081:1 26086:5 26095:1 26097:1 26098:1 26103:1 26111:1 26135:3 26157:2 26161:1 26167:1 26168:2 26214:1 26250:1 26253:1 26288:1 26291:1 26292:1 26300:1 26301:1 26304:3 26305:4 26309:1 26311:1 26313:1 26317:2 26318:1 26319:1 26320:1 26329:1 26342:1 26356:6 26365:1 26373:1 26374:1 26376:1 26380:1 26391:1 26395:1 26397:1 26399:1 26420:12 26425:6 26426:1 26445:1 26447:2 26456:1 26457:1 26459:1 26473:1 26477:1 26479:1 26483:1 26488:3 26495:2 26512:1 26530:1 26536:1 26588:1 26616:1 26632:1 26634:1 26648:2 26651:1 26659:1 26668:1 26669:1 26674:2 26683:2 26687:1 26690:1 26696:2 26698:2 26703:1 26734:1 26736:1 26749:1 26756:1 26758:2 26766:1 26767:1 26776:1 26787:1 26793:1 26794:1 26803:4 26828:2 26833:1 26836:1 26844:1 26847:1 26857:2 26862:2 26872:1 26875:2 26880:1 26895:1 26901:1 26902:1 26929:18 26930:2 26942:1 26962:1 26964:1 26973:1 26974:1 26986:1 27000:1 27012:1 27019:2 27024:1 27029:1 27048:2 27051:1 27059:1 27060:1 27078:1 27083:1 27088:1 27092:1 27094:1 27112:1 27123:1 27163:1 27164:1 27192:10 27193:1 27202:1 27218:1 27230:1 27233:2 27234:1 27253:1 27265:1 27272:1 27279:2 27290:1 27298:1 27304:1 27312:6 27315:1 27336:1 27338:1 27340:2 27341:1 27368:1 27375:1 27381:2 27387:1 27393:1 27398:1 27410:1 27428:1 27443:2 27448:2 27450:1 27465:2 27484:1 27486:1 27498:1 27514:1 27577:1 27579:2 27590:1 27603:1 27606:1 27619:1 27622:1 27627:2 27633:5 27636:1 27643:1 27645:1 27646:1 27657:1 27662:1 27669:1 27673:1 27701:7 27711:1 27713:1 27716:1 27728:1 27729:7 27746:2 27748:2 27750:1 27765:1 27773:1 27777:1 27784:3 27786:1 27793:1 27796:1 27810:1 27818:1 27820:1 27854:1 27866:1 27873:2 27889:1 27927:1 27933:1 27947:1 27970:1 27977:1 28000:1 28010:1 28025:1 28038:2 28041:1 28048:1 28049:2 28064:1 28065:1 28071:1 28072:1 28076:1 28092:1 28106:3 28108:1 28131:1 28142:4 28153:1 28186:1 28191:1 28200:2 28202:1 28210:2 28211:1 28213:1 28227:2 28228:15 28239:2 28265:1 28268:1 28282:1 28289:1 28291:2 28303:1 28304:1 28305:1 28309:1 28317:1 28322:1 28326:2 28328:2 28337:1 28343:1 28356:4 28360:3 28368:3 28371:2 28373:4 28375:1 28403:1 28410:1 28456:1 28463:1 28481:1 28497:1 28500:1 28501:2 28502:1 28515:1 28531:2 28551:2 28564:1 28568:2 28569:1 28572:1 28573:2 28583:1 28594:6 28595:1 28596:1 28605:1 28608:1 28609:1 28618:1 28627:1 28630:1 28634:1 28637:1 28667:1 28671:2 28673:2 28691:1 28699:1 28727:1 28744:1 28768:1 28777:1 28788:3 28814:1 28816:2 28817:1 28846:1 28851:1 28857:1 28860:1 28863:5 28878:1 28883:1 28884:1 28921:1 28925:1 28931:1 28932:1 28945:1 28949:1 28954:3 28959:1 28963:1 28975:1 28983:1 28986:2 28988:2 28998:3 29014:1 29017:1 29034:1 29043:1 29045:1 29050:2 29078:1 29086:2 29093:1 29095:1 29111:1 29132:1 29144:2 29158:1 29163:4 29166:1 29171:1 29172:2 29182:1 29187:1 29190:1 29191:2 29204:1 29210:1 29218:1 29227:2 29238:2 29241:1 29244:1 29247:1 29250:1 29259:2 29260:1 29281:1 29295:1 29302:1 29312:1 29314:1 29318:2 29322:1 29354:1 29373:5 29375:3 29377:2 29401:1 29404:1 29406:1 29438:1 29446:2 29453:1 29460:1 29465:2 29473:2 29482:1 29484:1 29487:1 29494:2 29501:1 29508:1 29514:1 29516:1 29523:1 29524:1 29529:3 29530:1 29531:1 29536:3 29539:1 29543:2 29546:1 29549:1 29556:2 29566:2 29571:1 29574:1 29579:1 29580:1 29613:1 29615:1 29630:1 29641:4 29656:1 29663:2 29688:2 29709:1 29763:1 29766:2 29798:1 29804:1 29805:2 29831:2 29848:1 29849:1 29853:1 29855:3 29862:5 29872:1 29879:1 29883:1 29891:1 29900:1 29921:7 29952:1 29954:1 29964:1 29969:1 29985:1 30006:1 30009:1 30014:1 30019:2 30034:2 30039:1 30051:1 30063:1 30065:1 30082:1 30100:1 30109:1 30110:2 30114:1 30133:2 30134:3 30135:1 30138:1 30146:2 30150:1 30151:1 30152:2 30169:1 30171:1 30180:1 30181:5 30196:1 30203:1 30205:1 30220:2 30226:2 30228:2 30229:1 30231:1 30235:1 30238:5 30244:1 30251:1 30252:1 30261:3 30263:1 30275:3 30279:1 30283:3 30285:1 30309:1 30316:3 30332:1 30336:1 30354:1 30356:1 30362:1 30377:1 30392:3 30397:4 30406:5 30411:1 30438:5 30453:1 30457:1 30462:1 30470:1 30471:1 30484:1 30491:1 30493:1 30495:1 30525:1 30527:6 30532:1 30537:2 30571:1 30574:1 30583:1 30604:1 30614:1 30629:1 30634:1 30635:1 30645:1 30646:2 30651:1 30656:1 30670:1 30673:3 30709:1 30710:1 30711:1 30717:7 30719:1 30729:1 30730:1 30735:2 30750:1 30786:5 30810:1 30865:1 30871:1 30879:1 30882:1 30916:1 30926:1 30955:1 30971:1 31003:1 31028:2 31043:1 31046:1 31047:2 31048:3 31053:2 31055:3 31068:1 31072:1 31074:1 31082:1 31086:1 31092:1 31103:1 31124:1 31136:1 31143:1 31152:1 31184:1 31194:3 31198:1 31204:2 31233:2 31238:1 31239:2 31257:1 31259:1 31272:1 31284:1 31287:1 31289:1 31296:1 31301:1 31308:3 31309:1 31313:2 31343:1 31345:1 31348:4 31351:2 31377:1 31382:1 31405:1 31413:1 31422:1 31431:1 31443:1 31467:1 31473:1 31478:3 31484:1 31487:1 31505:1 31516:3 31519:1 31542:1 31577:2 31580:2 31599:1 31600:1 31606:1 31608:3 31615:3 31617:3 31618:1 31623:1 31632:1 31677:5 31682:1 1 13:1 40:1 46:1 53:1 62:1 65:1 72:1 86:1 106:1 141:1 155:1 156:3 161:1 167:2 173:1 188:2 190:3 202:1 207:6 226:1 231:1 244:1 263:1 274:1 278:7 287:1 297:3 307:1 328:2 354:1 371:4 373:3 378:3 380:1 387:3 391:1 397:2 416:3 430:1 438:2 454:5 458:5 471:1 485:1 490:1 522:1 526:1 527:1 561:2 588:1 596:1 600:2 614:1 620:1 634:3 645:1 659:1 665:1 667:4 674:2 678:1 693:2 704:1 765:1 767:1 783:1 810:1 815:1 817:1 826:1 829:2 830:1 854:1 856:2 863:2 871:1 900:6 906:1 911:1 917:1 918:4 922:1 927:1 942:16 943:4 952:3 975:4 984:1 992:1 993:4 995:2 998:8 1000:1 1001:2 1004:4 1018:2 1033:1 1042:5 1044:4 1055:1 1056:1 1095:2 1104:1 1121:1 1142:1 1159:1 1177:1 1178:1 1198:1 1210:2 1214:1 1217:1 1275:3 1277:3 1283:1 1285:2 1287:1 1295:2 1298:1 1299:1 1312:1 1315:1 1325:1 1326:1 1328:1 1332:2 1343:1 1351:2 1356:2 1365:1 1367:1 1380:1 1386:2 1389:1 1408:1 1414:1 1417:1 1426:1 1429:1 1432:1 1433:1 1451:1 1457:1 1466:1 1468:1 1470:1 1485:1 1500:1 1527:1 1530:1 1540:1 1541:2 1557:1 1564:1 1565:2 1584:1 1587:1 1594:1 1595:3 1602:1 1613:1 1629:1 1630:1 1632:2 1635:1 1647:1 1654:1 1674:1 1686:4 1694:7 1696:2 1705:1 1713:1 1743:2 1751:1 1754:1 1763:1 1767:2 1783:1 1786:1 1788:1 1791:2 1799:1 1804:2 1813:1 1818:1 1820:1 1824:1 1825:2 1835:1 1839:3 1850:1 1854:1 1863:1 1867:2 1871:1 1875:1 1881:1 1882:1 1886:2 1897:1 1900:1 1905:1 1914:1 1920:2 1923:1 1939:1 1944:1 1945:5 1950:1 1954:1 1965:1 1971:1 1974:3 1978:1 1979:2 1993:2 1994:6 2027:4 2030:3 2043:1 2054:1 2055:1 2060:2 2065:4 2070:1 2071:1 2074:1 2089:1 2103:2 2112:1 2113:1 2121:3 2127:2 2128:1 2129:1 2143:2 2146:1 2192:1 2198:9 2201:1 2207:1 2210:2 2214:1 2215:5 2219:1 2220:1 2222:2 2226:1 2230:2 2236:1 2243:1 2247:1 2255:1 2268:1 2272:1 2283:1 2296:2 2300:1 2301:1 2306:2 2308:1 2323:1 2335:1 2349:1 2354:11 2361:1 2370:1 2376:1 2379:1 2393:1 2402:1 2423:2 2436:5 2439:1 2450:1 2458:1 2464:2 2477:2 2478:2 2480:1 2482:3 2485:5 2487:1 2489:1 2491:2 2494:2 2495:2 2497:1 2499:3 2501:1 2502:5 2505:1 2506:1 2508:5 2509:3 2514:5 2515:7 2517:1 2528:1 2562:1 2565:1 2568:3 2571:3 2576:1 2593:2 2595:1 2597:1 2603:1 2617:1 2618:1 2623:1 2631:1 2637:1 2639:1 2657:1 2671:1 2680:1 2695:1 2706:3 2718:1 2722:1 2739:3 2751:2 2752:1 2764:1 2765:1 2771:1 2776:1 2779:1 2800:3 2803:2 2806:1 2808:7 2812:1 2813:1 2814:1 2824:1 2827:1 2835:1 2849:4 2851:1 2852:1 2857:1 2873:2 2881:2 2884:1 2885:2 2897:7 2906:2 2911:1 2913:2 2916:9 2924:6 2928:1 2937:2 2939:1 2943:1 2945:2 2947:1 2950:3 2951:2 2967:2 2981:1 2982:2 2987:3 2991:1 2995:1 3001:1 3029:1 3034:1 3035:2 3036:2 3041:1 3050:3 3052:1 3056:1 3060:7 3065:2 3069:1 3085:1 3089:1 3096:1 3122:1 3127:3 3128:1 3146:4 3152:1 3157:1 3159:16 3178:3 3180:1 3185:1 3186:1 3190:1 3199:2 3203:3 3204:1 3206:1 3224:20 3225:3 3234:1 3246:2 3249:3 3269:2 3280:1 3317:1 3325:1 3332:1 3338:1 3351:1 3352:5 3371:3 3377:1 3383:1 3391:1 3410:1 3426:1 3438:1 3440:1 3442:1 3447:1 3457:2 3469:1 3470:1 3490:2 3504:1 3510:3 3524:1 3531:1 3534:1 3550:1 3551:2 3579:1 3580:2 3581:1 3590:1 3596:1 3608:6 3609:1 3626:1 3643:1 3663:1 3695:1 3706:2 3712:1 3719:1 3748:1 3749:1 3751:1 3753:1 3762:1 3774:1 3781:1 3783:1 3784:1 3788:1 3794:1 3799:1 3804:1 3805:1 3829:1 3844:1 3851:1 3861:1 3868:2 3873:1 3897:1 3898:14 3900:1 3909:1 3912:2 3914:2 3915:2 3937:1 3942:1 3943:1 3947:1 3962:1 3998:1 4000:2 4001:1 4008:1 4013:3 4021:2 4038:1 4062:1 4096:1 4099:1 4101:1 4106:2 4110:1 4113:2 4117:1 4129:3 4133:1 4149:1 4152:1 4156:2 4162:1 4163:1 4167:1 4179:2 4181:1 4186:1 4195:1 4200:3 4201:1 4215:1 4220:2 4221:1 4226:4 4229:1 4236:2 4240:1 4241:2 4242:1 4253:4 4267:1 4272:2 4289:1 4293:2 4309:1 4313:2 4315:3 4320:1 4340:2 4348:6 4349:4 4356:2 4393:1 4395:2 4398:1 4403:1 4417:1 4422:1 4426:2 4432:1 4448:1 4464:2 4470:1 4471:1 4476:1 4500:2 4526:2 4537:1 4547:4 4548:1 4551:2 4552:1 4557:2 4559:1 4563:1 4567:2 4581:1 4587:1 4594:1 4610:1 4624:1 4629:1 4647:1 4649:1 4669:7 4691:3 4696:1 4708:2 4712:1 4714:1 4717:1 4720:2 4732:2 4749:2 4759:1 4779:1 4785:1 4787:4 4788:2 4808:4 4834:1 4843:1 4844:1 4850:1 4869:2 4876:2 4893:1 4899:1 4902:1 4904:1 4910:1 4911:3 4913:1 4922:1 4938:1 4959:3 4970:1 4983:5 5001:1 5006:1 5007:1 5034:4 5044:2 5047:1 5056:1 5057:1 5062:4 5066:1 5085:4 5105:2 5131:1 5135:2 5138:3 5154:3 5167:1 5174:1 5187:1 5189:2 5198:1 5200:1 5216:1 5217:1 5230:1 5249:1 5267:15 5270:2 5279:1 5282:1 5283:1 5290:1 5297:1 5307:1 5316:1 5329:1 5339:1 5350:1 5404:3 5429:1 5430:1 5431:4 5433:7 5434:3 5436:1 5440:2 5441:2 5442:1 5445:1 5446:2 5449:6 5450:4 5453:1 5454:2 5456:8 5464:2 5465:5 5468:1 5469:1 5517:1 5532:1 5548:2 5557:1 5575:1 5580:1 5592:1 5614:1 5625:1 5638:1 5658:1 5668:1 5704:1 5720:1 5731:2 5765:1 5771:1 5801:3 5807:2 5813:1 5847:1 5850:1 5875:5 5882:1 5889:1 5890:1 5915:1 5917:1 5937:1 5943:1 5953:2 5959:1 5972:1 5980:1 5988:1 5994:1 6017:1 6029:1 6043:1 6057:1 6060:1 6080:1 6100:2 6110:1 6115:2 6118:1 6121:1 6133:5 6134:1 6136:2 6139:1 6143:1 6144:3 6156:1 6157:1 6181:1 6188:3 6200:2 6202:1 6204:1 6219:6 6223:1 6224:1 6237:2 6289:1 6303:1 6308:1 6320:1 6327:1 6330:1 6337:1 6345:1 6349:1 6351:1 6352:1 6361:2 6366:1 6387:1 6400:1 6427:1 6433:2 6444:2 6455:1 6459:1 6466:2 6468:2 6471:3 6486:1 6488:6 6494:1 6495:1 6499:1 6502:2 6510:2 6512:1 6514:1 6515:1 6516:1 6525:1 6556:1 6559:1 6560:1 6561:1 6569:1 6571:2 6573:1 6579:1 6581:1 6582:2 6586:12 6600:1 6603:1 6624:3 6631:1 6655:1 6668:1 6684:4 6693:2 6706:1 6709:6 6713:1 6720:1 6769:1 6775:1 6799:1 6806:1 6808:1 6809:1 6814:2 6816:3 6817:1 6822:1 6823:1 6825:2 6826:1 6832:2 6834:4 6835:3 6884:1 6931:1 6949:1 6979:1 6990:1 6993:4 6996:2 7008:1 7016:1 7040:1 7052:1 7057:1 7061:1 7071:2 7076:2 7079:1 7089:1 7097:1 7106:2 7131:1 7145:2 7153:2 7167:1 7174:1 7175:1 7182:1 7227:1 7231:1 7241:1 7251:2 7253:1 7256:1 7260:1 7265:1 7284:8 7290:1 7292:2 7294:1 7295:3 7298:1 7309:1 7315:1 7326:2 7348:1 7357:1 7360:1 7362:1 7403:1 7405:3 7421:2 7429:1 7435:2 7454:1 7460:1 7465:1 7473:1 7478:2 7479:1 7504:1 7522:1 7529:2 7535:1 7550:1 7561:1 7569:1 7574:6 7578:2 7598:1 7611:1 7615:1 7621:1 7624:3 7625:2 7632:1 7636:6 7638:1 7640:1 7645:5 7648:1 7651:1 7656:1 7679:1 7680:1 7681:1 7684:1 7695:1 7701:1 7726:1 7729:1 7737:4 7747:4 7759:1 7771:1 7792:3 7795:1 7796:1 7798:1 7805:1 7812:1 7818:1 7824:1 7827:1 7829:1 7835:1 7839:1 7846:1 7853:1 7869:1 7897:1 7919:1 7925:1 7930:1 7933:2 7971:1 7984:1 7985:2 7986:6 7991:3 7997:1 7999:1 8004:1 8006:3 8010:1 8032:6 8034:2 8036:2 8037:1 8061:1 8064:3 8074:1 8081:1 8093:1 8106:1 8108:2 8110:1 8117:1 8127:1 8131:1 8134:1 8140:1 8152:1 8153:1 8160:1 8161:2 8168:1 8175:1 8178:1 8189:1 8190:1 8198:1 8218:3 8235:4 8236:6 8250:2 8257:4 8258:1 8262:2 8263:3 8265:1 8278:1 8287:4 8288:3 8290:1 8303:46 8306:2 8315:1 8323:1 8326:10 8327:7 8331:2 8337:1 8367:1 8374:1 8375:1 8384:1 8387:1 8397:1 8404:3 8405:2 8411:1 8421:1 8424:2 8433:2 8445:3 8455:1 8459:1 8461:1 8468:1 8480:2 8486:1 8488:1 8492:1 8498:1 8504:1 8512:1 8514:2 8541:1 8550:1 8553:1 8557:1 8558:3 8562:1 8588:1 8591:1 8592:1 8593:1 8605:2 8609:2 8653:1 8663:1 8681:1 8691:1 8696:1 8698:1 8722:1 8723:1 8734:1 8737:1 8742:1 8755:1 8765:1 8768:1 8775:1 8777:1 8778:2 8788:1 8797:1 8815:1 8816:1 8835:26 8843:1 8844:1 8865:3 8868:3 8870:1 8900:1 8911:1 8935:6 8937:1 8938:1 8943:1 8969:1 8974:1 8990:4 8993:1 8994:2 8996:1 9001:1 9002:1 9019:1 9030:2 9031:4 9038:3 9044:1 9049:1 9065:2 9066:1 9069:1 9076:1 9080:1 9088:1 9090:1 9104:1 9109:1 9110:1 9119:1 9128:1 9129:2 9139:2 9141:1 9142:1 9154:2 9201:1 9204:1 9205:1 9209:1 9211:1 9216:1 9239:2 9242:2 9255:6 9257:1 9267:2 9271:3 9291:1 9302:1 9303:1 9312:1 9319:2 9323:1 9324:1 9333:1 9340:1 9345:1 9365:2 9375:1 9393:1 9404:1 9431:1 9436:1 9437:1 9449:1 9450:1 9460:1 9485:1 9486:1 9487:1 9501:3 9510:1 9533:1 9536:2 9537:1 9541:3 9577:3 9586:1 9594:2 9606:1 9613:1 9618:1 9642:1 9643:1 9644:1 9651:1 9655:2 9661:1 9662:6 9663:1 9668:1 9670:1 9675:1 9687:1 9695:2 9697:1 9708:7 9709:1 9719:1 9732:1 9740:1 9759:1 9768:11 9769:6 9778:1 9784:2 9794:2 9830:3 9837:1 9844:1 9849:1 9853:3 9855:1 9872:1 9878:1 9882:2 9884:2 9886:3 9888:2 9898:1 9907:1 9919:1 9928:1 9950:1 9960:2 9963:1 9969:1 9972:5 9974:1 9976:1 9988:1 9995:1 9996:3 9999:2 10005:1 10006:1 10021:4 10050:1 10064:1 10080:1 10089:1 10108:1 10111:3 10118:1 10122:3 10128:1 10142:1 10147:1 10156:1 10159:1 10180:1 10183:1 10197:1 10201:1 10211:1 10220:7 10226:3 10264:3 10268:1 10283:1 10284:1 10298:3 10302:1 10330:1 10352:1 10358:1 10363:1 10365:3 10366:3 10369:2 10374:1 10399:1 10406:2 10408:2 10437:2 10439:1 10447:1 10458:1 10494:2 10511:1 10517:1 10530:2 10535:1 10542:2 10554:1 10557:1 10558:1 10576:1 10587:1 10603:1 10606:1 10611:1 10612:1 10626:1 10630:1 10657:1 10662:1 10663:1 10665:1 10670:1 10674:5 10690:4 10702:4 10707:2 10717:1 10738:2 10751:1 10762:3 10764:1 10772:1 10807:1 10813:2 10818:2 10835:1 10839:1 10841:1 10854:1 10861:4 10864:1 10901:2 10907:1 10911:12 10913:1 10914:2 10919:2 10927:1 10948:2 10949:1 10969:1 10973:1 10980:1 10989:1 10991:1 11018:1 11040:1 11047:2 11049:1 11074:1 11091:1 11094:1 11109:1 11110:1 11112:1 11115:1 11117:1 11121:4 11129:1 11131:1 11136:2 11169:1 11181:4 11185:1 11187:1 11189:1 11194:1 11196:3 11207:1 11210:1 11213:2 11224:4 11244:1 11265:1 11277:1 11283:1 11284:1 11291:1 11298:1 11300:2 11303:2 11306:1 11319:2 11323:1 11330:1 11336:1 11337:1 11345:1 11348:3 11355:1 11360:2 11362:1 11365:1 11373:7 11376:4 11389:2 11390:3 11395:1 11402:1 11413:1 11417:1 11419:2 11432:1 11447:2 11462:7 11463:2 11483:2 11485:1 11486:1 11498:4 11524:1 11541:1 11544:1 11550:3 11562:2 11570:1 11573:6 11588:1 11597:1 11605:1 11609:1 11624:3 11664:1 11677:1 11731:1 11744:1 11750:1 11767:1 11770:1 11791:1 11792:2 11796:2 11800:1 11801:2 11807:1 11811:1 11815:1 11816:1 11817:5 11819:5 11820:1 11827:1 11834:2 11838:2 11842:1 11845:4 11849:1 11851:1 11853:1 11865:1 11867:1 11868:3 11872:3 11877:1 11901:2 11910:1 11935:1 11937:1 11939:4 11983:1 11986:1 12007:1 12021:2 12023:1 12026:1 12061:1 12094:1 12102:1 12115:1 12118:1 12133:1 12137:3 12151:1 12156:1 12179:1 12192:1 12195:1 12202:2 12204:1 12219:3 12222:2 12227:1 12241:2 12245:2 12247:1 12249:1 12250:2 12252:1 12260:3 12262:1 12263:1 12264:2 12269:1 12272:1 12278:1 12285:3 12287:2 12293:1 12324:17 12325:1 12356:1 12365:1 12369:4 12383:2 12384:2 12391:2 12396:1 12416:1 12418:2 12429:2 12430:1 12441:1 12442:2 12449:2 12450:1 12464:1 12483:1 12497:1 12501:1 12521:1 12528:1 12544:1 12566:1 12574:3 12575:1 12578:1 12579:1 12584:1 12587:1 12592:4 12596:1 12597:2 12599:1 12603:2 12604:1 12611:1 12614:1 12624:1 12636:1 12640:1 12641:1 12643:1 12649:2 12652:5 12655:4 12683:1 12718:1 12741:2 12745:1 12760:1 12767:1 12783:1 12799:1 12801:1 12808:1 12818:2 12829:1 12845:1 12853:1 12855:1 12856:1 12863:6 12872:1 12883:2 12886:1 12887:2 12901:1 12907:1 12918:1 12925:2 12931:2 12955:2 12958:1 12971:2 12982:1 12983:2 13003:1 13025:2 13030:1 13043:1 13047:1 13049:1 13052:1 13059:2 13070:1 13094:1 13118:1 13125:1 13127:1 13128:1 13132:5 13133:3 13134:2 13149:1 13155:2 13168:1 13172:1 13174:1 13182:1 13195:1 13235:1 13237:2 13240:1 13264:1 13271:1 13276:1 13280:1 13291:1 13303:1 13310:1 13327:1 13332:1 13338:1 13356:1 13427:3 13456:2 13473:1 13489:1 13493:1 13502:1 13515:1 13531:1 13533:2 13534:1 13552:3 13566:1 13569:1 13582:1 13591:1 13601:1 13626:1 13654:1 13663:1 13666:1 13669:1 13670:2 13677:1 13699:1 13718:15 13723:5 13737:2 13762:1 13776:2 13777:3 13785:4 13805:1 13811:1 13817:1 13818:1 13828:1 13838:2 13839:1 13847:1 13881:1 13900:1 13906:1 13913:1 13920:2 13927:1 13939:2 13957:1 13959:1 13975:1 13978:1 13998:1 14000:1 14010:2 14011:1 14020:1 14026:1 14027:1 14048:1 14058:1 14064:5 14084:2 14085:1 14110:1 14129:1 14146:1 14149:1 14176:1 14186:1 14190:1 14199:1 14201:1 14204:4 14208:4 14223:1 14224:1 14228:1 14230:2 14240:2 14245:1 14262:6 14279:1 14284:2 14307:1 14314:4 14316:1 14330:1 14347:1 14352:2 14354:1 14355:1 14356:1 14369:9 14370:1 14381:2 14385:1 14403:1 14408:1 14416:1 14417:1 14422:2 14429:1 14437:1 14438:1 14453:16 14462:1 14466:1 14488:1 14503:2 14504:1 14510:3 14525:1 14532:2 14550:2 14560:1 14561:1 14603:3 14630:1 14635:6 14641:1 14658:1 14664:2 14670:1 14673:1 14695:4 14722:1 14732:1 14734:1 14737:1 14746:3 14748:1 14749:1 14760:1 14762:1 14769:6 14770:1 14773:1 14774:2 14775:1 14777:2 14778:1 14782:7 14783:3 14803:1 14810:1 14811:1 14814:1 14818:1 14846:1 14867:1 14873:1 14894:1 14906:2 14911:2 14921:1 14933:1 14948:1 14958:1 14967:5 14968:1 15004:1 15010:1 15013:1 15015:1 15022:1 15025:1 15032:1 15033:1 15046:1 15049:1 15074:2 15079:1 15080:1 15091:1 15092:1 15094:1 15098:7 15111:1 15121:1 15123:3 15128:1 15163:1 15174:1 15175:2 15185:1 15191:1 15202:1 15210:1 15213:1 15215:1 15224:1 15236:2 15258:1 15265:1 15266:1 15272:1 15278:1 15283:1 15293:1 15300:1 15304:1 15312:1 15315:1 15353:1 15362:2 15379:5 15395:1 15401:1 15414:1 15434:1 15446:1 15468:1 15488:1 15514:1 15517:3 15518:4 15527:1 15540:2 15541:2 15544:1 15550:2 15552:1 15570:1 15573:1 15581:1 15592:2 15606:1 15617:1 15625:2 15651:1 15661:1 15675:2 15680:1 15683:1 15698:1 15703:1 15705:1 15707:1 15712:2 15714:1 15723:1 15725:3 15729:2 15782:1 15786:2 15790:1 15804:2 15821:2 15841:1 15842:2 15844:1 15851:1 15856:1 15870:1 15880:1 15883:1 15906:1 15922:3 15928:1 15938:1 15941:2 15947:1 15972:1 15973:1 15978:1 16029:1 16032:1 16035:2 16073:2 16078:2 16079:1 16081:1 16090:1 16100:1 16109:1 16120:1 16157:1 16160:3 16168:1 16188:1 16189:1 16192:2 16199:1 16231:1 16269:1 16298:1 16302:1 16308:1 16314:2 16351:1 16364:1 16406:1 16424:2 16435:1 16442:1 16464:1 16476:1 16479:1 16481:2 16492:1 16511:2 16516:3 16520:1 16545:1 16551:1 16553:1 16563:1 16567:2 16585:3 16592:1 16614:1 16616:1 16627:2 16641:1 16652:2 16676:1 16686:1 16687:1 16701:6 16720:3 16731:1 16739:4 16752:3 16777:1 16782:1 16790:1 16807:1 16810:1 16815:2 16869:1 16883:2 16884:1 16897:2 16905:1 16909:1 16913:4 16914:1 16918:1 16920:1 16926:1 16940:4 16941:1 16945:1 16948:1 16962:1 16968:1 16980:1 16999:2 17008:2 17052:2 17055:1 17062:1 17079:3 17089:2 17101:1 17104:1 17105:3 17120:1 17135:3 17150:1 17151:1 17157:1 17198:1 17200:1 17230:1 17234:1 17237:1 17239:15 17241:1 17256:1 17258:1 17260:3 17262:1 17285:3 17327:2 17344:1 17349:2 17360:3 17363:1 17380:2 17383:1 17392:2 17401:1 17428:1 17435:1 17442:1 17444:1 17445:1 17454:2 17456:1 17482:1 17486:3 17489:1 17504:1 17511:1 17516:6 17518:2 17519:2 17520:6 17521:1 17523:1 17527:2 17529:1 17531:2 17532:5 17537:1 17538:1 17540:1 17544:1 17546:2 17548:1 17555:1 17581:2 17590:1 17592:1 17598:1 17607:1 17627:1 17637:1 17652:1 17655:2 17656:1 17692:2 17699:1 17708:2 17709:2 17729:1 17736:1 17762:1 17774:1 17776:1 17804:1 17808:1 17827:1 17868:1 17872:1 17874:1 17884:2 17899:1 17902:2 17915:2 17916:1 17925:1 17930:5 17937:1 17941:2 17954:1 17965:1 17966:1 17972:2 17975:4 17980:2 17985:1 17987:1 17994:3 17998:2 18008:3 18016:1 18026:1 18071:14 18073:1 18086:1 18088:1 18095:2 18096:4 18097:1 18102:1 18171:1 18172:1 18183:2 18191:1 18201:4 18211:1 18212:1 18225:1 18233:2 18236:2 18266:1 18269:1 18286:2 18291:1 18307:5 18308:1 18322:1 18340:1 18341:1 18344:1 18361:1 18379:1 18423:2 18424:3 18425:1 18438:1 18440:1 18443:1 18453:1 18475:1 18490:1 18491:1 18494:1 18514:1 18517:1 18530:2 18533:1 18548:1 18556:1 18565:2 18572:1 18577:2 18585:1 18587:2 18593:1 18597:1 18617:1 18662:1 18670:1 18712:1 18731:1 18734:1 18755:1 18760:1 18775:2 18779:1 18791:3 18796:1 18800:1 18801:1 18810:3 18814:2 18815:2 18819:2 18824:1 18825:10 18852:1 18872:1 18877:2 18880:1 18885:2 18887:1 18892:1 18898:1 18905:1 18908:2 18909:1 18910:1 18962:1 18982:1 18983:1 19004:4 19009:1 19023:1 19033:2 19047:1 19050:1 19054:1 19061:1 19070:1 19071:1 19101:1 19102:1 19103:1 19123:1 19130:1 19134:2 19147:1 19166:1 19171:1 19202:1 19207:1 19220:1 19225:1 19226:2 19231:1 19233:1 19236:1 19243:1 19246:1 19267:1 19299:1 19337:2 19376:1 19378:1 19390:1 19391:2 19411:2 19450:1 19514:2 19515:1 19525:1 19538:1 19543:1 19553:1 19565:1 19575:1 19592:1 19593:1 19600:1 19607:1 19619:1 19631:1 19651:1 19656:3 19661:1 19670:1 19709:1 19719:15 19731:1 19750:1 19780:1 19806:1 19826:14 19832:1 19833:4 19834:1 19843:1 19846:5 19847:1 19863:1 19872:1 19876:3 19897:1 19915:2 19948:6 19971:2 19979:1 19988:2 19990:1 19993:1 20016:3 20020:1 20023:2 20041:2 20047:1 20053:2369 20064:1 20070:1 20083:1 20085:1 20086:1 20126:1 20132:1 20134:1 20160:2 20181:1 20217:1 20218:1 20229:1 20241:1 20262:1 20264:1 20267:1 20271:2 20274:6 20275:4 20286:1 20292:1 20294:1 20298:1 20308:1 20320:1 20338:1 20350:1 20364:1 20368:1 20373:1 20375:1 20420:1 20422:3 20425:2 20431:1 20444:1 20469:1 20482:1 20486:1 20489:1 20490:3 20497:1 20517:1 20528:2 20545:1 20546:1 20547:1 20557:2 20558:1 20567:1 20579:1 20584:1 20587:1 20605:2 20618:1 20630:1 20642:1 20647:2 20651:2 20660:1 20669:1 20679:2 20681:1 20701:2 20702:2 20715:3 20721:1 20724:1 20732:3 20757:3 20759:1 20765:1 20768:1 20769:1 20774:1 20778:1 20781:2 20787:9 20792:1 20813:1 20815:1 20833:1 20838:2 20839:1 20848:2 20864:5 20871:1 20882:1 20884:2 20901:1 20917:1 20926:4 20933:1 20935:2 20941:1 20943:2 20956:4 20957:1 20968:1 20974:1 20979:2 20999:1 21005:4 21013:2 21014:1 21022:3 21061:3 21062:2 21065:1 21075:1 21089:1 21093:1 21095:2 21098:2 21105:1 21106:2 21109:1 21121:1 21132:1 21143:1 21148:1 21149:1 21150:1 21152:1 21157:1 21168:1 21202:1 21219:1 21220:3 21237:1 21239:2 21241:1 21242:1 21249:1 21250:3 21254:1 21273:1 21277:1 21281:1 21283:1 21288:1 21295:1 21302:2 21308:1 21313:2 21320:1 21322:2 21330:2 21331:1 21341:1 21342:1 21361:1 21362:1 21371:1 21376:2 21379:4 21385:1 21387:4 21446:1 21451:1 21453:1 21463:1 21466:2 21475:1 21478:1 21482:2 21483:2 21486:2 21501:1 21503:2 21507:3 21511:3 21518:1 21519:2 21523:2 21524:1 21544:5 21555:2 21571:1 21573:1 21583:1 21587:1 21590:2 21591:4 21613:1 21614:2 21627:1 21628:1 21633:1 21652:1 21654:3 21673:1 21676:2 21678:2 21699:1 21700:1 21711:3 21712:20 21713:2 21719:1 21727:5 21733:1 21756:2 21759:1 21767:1 21789:3 21798:1 21799:1 21813:1 21818:1 21822:1 21828:1 21853:1 21859:1 21860:1 21861:1 21881:1 21887:1 21897:1 21940:4 21960:2 21982:2 21990:1 22001:2 22015:1 22018:1 22032:2 22066:8 22069:1 22071:2 22078:1 22085:1 22119:1 22120:1 22121:1 22128:1 22134:1 22140:1 22174:1 22177:1 22185:4 22202:3 22221:1 22225:1 22228:1 22231:1 22235:1 22236:1 22244:1 22247:2 22282:2 22288:3 22298:2 22300:2 22314:2 22319:2 22323:1 22325:1 22326:1 22337:2 22343:1 22370:5 22390:2 22391:1 22398:1 22402:1 22413:1 22417:2 22421:1 22432:1 22451:1 22452:2 22466:1 22473:1 22478:2 22479:1 22488:5 22492:1 22496:2 22501:1 22503:1 22508:2 22519:3 22546:2 22554:1 22557:1 22567:1 22590:1 22591:1 22592:1 22602:2 22615:2 22621:2 22624:2 22628:2 22632:2 22635:1 22643:2 22663:1 22665:1 22671:2 22685:2 22699:2 22715:1 22716:4 22723:1 22724:1 22726:4 22739:1 22741:1 22750:2 22755:1 22758:1 22760:1 22768:1 22769:1 22773:2 22774:1 22779:1 22790:1 22793:1 22794:1 22811:1 22815:1 22838:1 22846:1 22855:1 22857:1 22862:2 22864:1 22865:1 22866:2 22875:1 22879:1 22893:1 22939:1 22996:2 23014:2 23017:1 23026:2 23027:2 23031:1 23032:1 23038:1 23039:1 23043:1 23045:1 23056:1 23063:2 23070:3 23071:1 23081:1 23090:1 23104:1 23121:1 23131:1 23137:1 23147:1 23158:1 23159:1 23181:2 23183:1 23184:1 23185:1 23190:1 23194:1 23195:2 23199:1 23200:1 23210:1 23213:1 23217:2 23222:2 23228:2 23229:1 23230:1 23236:2 23237:1 23238:1 23249:1 23251:2 23262:1 23271:14 23281:2 23282:2 23288:2 23298:1 23313:1 23326:1 23328:1 23337:1 23345:2 23347:1 23348:1 23349:1 23352:1 23355:1 23377:1 23410:2 23418:1 23426:2 23429:1 23434:1 23437:6 23439:3 23442:1 23452:2 23466:1 23467:1 23468:1 23475:1 23477:1 23496:1 23497:1 23498:1 23500:3 23502:4 23503:2 23522:1 23537:1 23540:1 23576:1 23605:4 23613:1 23614:5 23616:3 23617:3 23619:1 23620:1 23625:1 23628:2 23631:1 23632:2 23643:1 23644:1 23645:5 23655:1 23656:1 23659:1 23661:1 23674:1 23682:1 23693:2 23697:2 23700:2 23721:1 23749:1 23751:1 23778:2 23783:2 23795:1 23796:1 23799:1 23801:1 23811:1 23823:1 23834:1 23850:1 23853:1 23858:1 23859:1 23862:1 23865:2 23867:1 23882:1 23886:1 23887:1 23897:1 23900:1 23912:2 23915:1 23922:5 23929:1 23939:1 23940:4 23943:3 23946:1 23952:1 23969:1 23977:1 23982:1 23990:2 23993:1 23997:1 23998:1 24001:1 24002:4 24010:2 24016:1 24026:2 24030:9 24033:1 24037:1 24044:1 24046:1 24050:1 24053:1 24073:1 24074:1 24108:8 24111:1 24126:1 24150:1 24162:1 24172:6 24173:1 24175:1 24178:1 24179:1 24184:1 24197:1 24199:1 24221:1 24222:3 24238:1 24248:1 24250:4 24260:1 24278:1 24289:1 24290:1 24291:6 24294:2 24305:3 24308:1 24309:4 24319:1 24325:1 24329:1 24332:1 24346:1 24349:4 24361:1 24370:1 24371:3 24373:1 24376:3 24386:1 24396:1 24408:1 24419:1 24426:1 24432:1 24447:1 24451:1 24479:1 24486:1 24495:1 24499:1 24500:1 24502:1 24517:1 24531:2 24549:10 24550:3 24558:1 24568:2 24574:1 24578:2 24585:4 24590:1 24594:1 24598:3 24608:2 24624:1 24635:1 24661:1 24671:1 24681:1 24682:1 24685:2 24688:2 24706:1 24708:1 24711:1 24742:1 24744:1 24746:1 24749:1 24750:1 24752:1 24762:1 24774:1 24776:1 24789:1 24795:2 24799:1 24806:2 24808:1 24814:1 24842:1 24851:3 24883:3 24899:1 24940:2 24969:1 24996:3 25000:3 25008:7 25018:2 25027:1 25033:1 25036:3 25039:1 25051:2 25054:2 25056:3 25066:1 25080:4 25122:1 25130:1 25138:1 25160:1 25172:1 25184:1 25196:1 25199:4 25230:1 25232:1 25240:2 25246:1 25259:2 25268:1 25273:2 25283:1 25286:1 25298:1 25304:1 25314:1 25315:2 25318:4 25320:3 25329:1 25331:1 25343:1 25345:1 25352:1 25366:3 25367:1 25368:2 25371:2 25376:1 25388:1 25391:1 25396:1 25447:1 25450:4 25453:1 25458:1 25462:1 25469:1 25471:1 25472:4 25474:1 25477:1 25478:1 25479:1 25481:1 25485:1 25511:1 25535:3 25537:1 25549:1 25605:2 25618:2 25633:1 25652:2 25703:1 25715:1 25718:2 25727:2 25729:1 25739:1 25754:1 25770:1 25772:1 25776:1 25786:1 25793:2 25796:1 25803:1 25817:2 25840:1 25851:1 25861:1 25885:1 25898:1 25900:2 25909:1 25937:2 25940:1 25963:2 25977:4 25989:1 26010:1 26021:1 26022:7 26041:1 26048:1 26050:1 26055:3 26059:1 26066:1 26075:1 26076:1 26081:1 26086:5 26095:1 26097:1 26098:1 26103:1 26111:1 26135:3 26157:2 26161:1 26167:1 26168:2 26214:1 26250:1 26253:1 26288:1 26291:1 26292:1 26300:1 26301:1 26304:3 26305:4 26309:1 26311:1 26313:1 26317:2 26318:1 26319:1 26320:1 26329:1 26342:1 26356:6 26365:1 26373:1 26374:1 26376:1 26380:1 26391:1 26395:1 26397:1 26399:1 26420:12 26425:6 26426:1 26445:1 26447:2 26450:1 26456:1 26457:1 26459:1 26473:1 26477:1 26479:1 26483:2 26488:3 26495:2 26512:1 26530:1 26536:1 26588:1 26616:1 26632:1 26634:1 26648:2 26651:1 26659:1 26668:1 26669:1 26674:2 26683:2 26687:1 26690:1 26696:2 26698:2 26703:1 26734:1 26736:1 26749:1 26756:1 26758:2 26766:1 26767:1 26776:1 26787:1 26793:1 26794:1 26803:4 26828:2 26833:1 26836:1 26844:1 26847:1 26857:2 26862:2 26872:1 26875:2 26876:1 26880:1 26895:1 26901:1 26902:1 26929:18 26930:2 26942:1 26962:1 26964:1 26973:1 26974:1 26986:1 27000:1 27012:1 27019:2 27024:1 27029:1 27048:2 27051:1 27059:1 27060:1 27078:1 27083:1 27088:1 27092:1 27094:1 27112:1 27123:1 27163:1 27164:1 27192:10 27193:1 27202:1 27218:1 27230:1 27233:2 27234:1 27253:1 27265:1 27272:1 27279:2 27290:1 27298:1 27304:1 27312:6 27315:1 27336:1 27338:1 27340:2 27341:1 27368:1 27375:1 27381:2 27387:1 27393:1 27398:1 27410:1 27428:1 27443:2 27448:2 27450:1 27465:2 27484:1 27486:1 27498:1 27514:1 27577:1 27579:2 27590:1 27603:1 27606:1 27613:1 27619:1 27622:1 27627:2 27633:5 27636:1 27643:1 27645:1 27646:1 27657:1 27662:1 27669:1 27673:1 27701:7 27711:1 27713:1 27716:1 27728:1 27729:7 27746:2 27748:2 27750:1 27765:1 27773:1 27777:1 27784:3 27786:1 27793:1 27796:1 27810:1 27818:1 27820:1 27854:1 27866:1 27873:2 27889:1 27901:1 27927:1 27933:1 27940:1 27947:1 27970:1 27977:1 28000:1 28010:1 28025:1 28026:1 28038:2 28041:1 28048:1 28049:2 28064:1 28065:1 28071:1 28072:1 28076:1 28092:1 28106:3 28108:1 28131:1 28142:4 28153:1 28168:1 28186:1 28191:1 28200:2 28202:1 28210:2 28211:1 28213:1 28227:2 28228:15 28239:2 28265:1 28268:1 28282:1 28289:1 28291:2 28303:1 28304:1 28305:1 28309:1 28317:1 28322:1 28326:2 28328:2 28337:1 28343:1 28356:4 28360:3 28368:3 28371:2 28373:4 28375:1 28403:1 28410:1 28456:1 28462:1 28463:1 28475:1 28481:1 28497:1 28500:1 28501:2 28502:1 28515:1 28531:2 28551:2 28564:1 28568:2 28569:1 28572:1 28573:2 28583:1 28594:6 28595:1 28596:1 28605:1 28608:1 28609:1 28611:1 28618:1 28627:1 28630:1 28634:1 28637:1 28667:1 28671:2 28673:2 28691:1 28699:1 28727:1 28744:1 28768:1 28777:1 28788:3 28814:1 28816:2 28817:1 28846:1 28851:1 28857:1 28860:1 28863:6 28878:1 28883:1 28884:1 28921:1 28925:1 28931:1 28932:1 28945:1 28949:1 28954:3 28959:1 28963:1 28975:1 28983:1 28986:2 28988:2 28998:3 29014:1 29017:1 29034:1 29043:1 29045:1 29050:2 29078:1 29085:1 29086:2 29093:1 29095:1 29111:1 29132:1 29144:2 29158:1 29163:4 29166:1 29171:1 29172:2 29182:1 29187:1 29190:1 29191:2 29204:1 29210:1 29218:1 29227:2 29238:2 29241:1 29244:1 29247:1 29250:1 29259:2 29260:1 29281:1 29295:1 29302:1 29312:1 29314:1 29318:2 29322:1 29354:1 29373:6 29375:3 29377:2 29401:1 29404:1 29406:1 29438:1 29446:2 29453:1 29460:1 29465:2 29473:2 29482:1 29484:1 29487:1 29494:2 29501:1 29508:1 29514:1 29516:1 29523:1 29524:1 29529:3 29530:1 29531:1 29532:1 29536:3 29539:1 29543:2 29546:1 29549:1 29556:2 29566:2 29571:1 29574:1 29579:1 29580:1 29613:1 29615:1 29630:1 29641:5 29656:1 29663:2 29688:2 29709:1 29763:1 29766:2 29798:1 29804:1 29805:2 29824:1 29831:2 29848:1 29849:1 29853:1 29855:3 29862:5 29872:1 29879:1 29883:1 29891:1 29900:1 29921:7 29952:1 29954:1 29964:1 29969:1 29985:1 30006:1 30009:1 30014:1 30019:2 30034:2 30039:1 30051:1 30063:1 30065:1 30082:1 30100:1 30109:1 30110:2 30114:1 30133:2 30134:3 30135:1 30138:1 30140:1 30146:2 30150:1 30151:1 30152:2 30169:1 30171:1 30180:1 30181:5 30196:1 30203:1 30205:1 30220:3 30226:2 30228:2 30229:1 30231:1 30235:1 30238:5 30244:1 30251:1 30252:1 30261:3 30263:1 30275:3 30279:1 30283:3 30285:1 30309:1 30316:3 30332:1 30336:1 30354:1 30356:1 30362:1 30377:1 30392:3 30397:4 30406:5 30411:1 30438:5 30453:1 30457:1 30462:1 30470:1 30471:1 30484:1 30491:1 30493:1 30495:1 30525:1 30527:6 30532:1 30537:2 30571:1 30574:1 30583:1 30604:1 30614:1 30629:1 30634:1 30635:1 30645:1 30646:2 30651:1 30656:1 30670:1 30673:3 30709:1 30710:1 30711:1 30717:7 30719:1 30729:1 30730:1 30735:2 30750:1 30751:1 30786:6 30810:1 30865:1 30871:1 30879:1 30882:1 30916:1 30926:1 30955:1 30971:1 31003:1 31004:1 31028:2 31043:1 31046:1 31047:2 31048:3 31053:2 31055:3 31068:1 31072:1 31074:1 31082:1 31086:1 31092:1 31103:1 31124:1 31136:1 31143:1 31152:1 31184:1 31194:3 31198:1 31204:2 31233:2 31238:1 31239:2 31257:1 31259:1 31272:1 31284:1 31287:1 31289:1 31296:1 31301:1 31308:3 31309:1 31313:2 31343:1 31345:1 31348:4 31351:2 31377:1 31382:1 31405:1 31413:1 31422:1 31431:1 31443:1 31467:1 31473:1 31478:3 31484:1 31487:1 31505:1 31516:3 31519:1 31542:1 31577:2 31580:2 31599:1 31600:1 31606:1 31608:3 31615:3 31617:3 31618:1 31623:1 31632:1 31675:1 31677:5 31682:1 1 13:2 40:1 43:1 46:1 53:1 62:1 65:1 72:1 86:1 106:1 141:1 155:1 156:3 161:1 167:2 173:1 188:2 190:3 202:1 207:6 209:1 226:1 231:1 238:1 244:1 263:1 274:1 278:7 287:1 297:3 307:1 328:2 354:1 371:4 373:3 378:3 380:1 387:3 391:1 397:2 416:3 430:1 438:2 454:6 458:5 471:1 485:2 490:1 522:1 526:2 527:1 561:2 588:1 596:1 600:2 614:1 620:1 630:1 634:3 645:1 659:1 665:1 667:4 674:2 678:1 693:2 704:1 765:1 767:1 783:1 810:1 815:1 817:1 826:1 829:2 830:1 854:1 856:2 860:1 863:2 871:1 900:6 906:1 911:1 917:1 918:4 922:1 927:1 942:16 943:4 952:3 975:4 984:1 992:1 993:4 995:2 998:8 1000:1 1001:3 1004:4 1018:2 1033:1 1042:5 1044:4 1055:1 1056:1 1095:2 1104:1 1121:1 1142:1 1159:1 1177:1 1178:1 1198:1 1210:2 1214:1 1217:1 1275:3 1277:3 1283:1 1285:2 1287:1 1295:2 1298:1 1299:1 1312:1 1315:1 1325:1 1326:1 1328:1 1332:2 1343:1 1351:2 1356:2 1365:1 1367:1 1380:1 1386:2 1389:1 1408:1 1414:1 1417:1 1426:1 1429:1 1432:1 1433:1 1451:1 1457:1 1466:1 1468:1 1470:1 1485:1 1500:1 1527:1 1530:1 1540:1 1541:2 1557:1 1564:1 1565:2 1584:1 1587:1 1594:1 1595:3 1602:1 1613:1 1629:1 1630:1 1632:2 1635:1 1647:1 1654:1 1674:1 1686:4 1694:8 1696:2 1705:1 1713:1 1743:2 1751:1 1754:1 1763:1 1767:3 1783:1 1786:1 1788:1 1791:2 1799:1 1804:2 1813:1 1818:1 1820:1 1824:1 1825:2 1835:1 1839:3 1850:1 1854:1 1863:1 1867:2 1871:1 1875:1 1881:1 1882:1 1886:2 1897:1 1900:1 1905:1 1914:1 1919:1 1920:2 1923:1 1939:1 1944:1 1945:5 1950:1 1954:1 1965:1 1971:1 1974:3 1978:1 1979:2 1993:2 1994:6 2027:4 2030:3 2043:1 2054:1 2055:1 2060:2 2065:4 2070:1 2071:1 2074:1 2089:2 2102:1 2103:2 2112:1 2113:1 2121:3 2127:2 2128:1 2129:1 2143:2 2146:1 2192:1 2198:9 2201:1 2207:1 2210:2 2214:1 2215:6 2219:1 2220:1 2222:2 2226:1 2230:2 2236:1 2243:2 2247:1 2255:1 2266:1 2268:1 2272:1 2283:1 2296:2 2300:2 2301:1 2306:2 2308:1 2323:1 2335:1 2349:1 2354:11 2361:2 2370:1 2376:1 2379:1 2393:1 2402:1 2423:2 2436:5 2439:1 2450:1 2458:1 2464:2 2477:3 2478:2 2480:1 2482:3 2485:5 2487:1 2489:1 2491:2 2494:2 2495:2 2497:1 2499:4 2501:1 2502:5 2505:1 2506:1 2508:5 2509:3 2514:5 2515:7 2517:1 2528:1 2562:1 2565:2 2568:3 2571:3 2576:1 2593:2 2595:1 2597:1 2603:1 2617:1 2618:1 2623:1 2631:1 2637:1 2639:1 2657:1 2671:1 2680:1 2695:1 2706:3 2718:1 2722:1 2734:1 2739:3 2751:2 2752:1 2764:1 2765:1 2771:1 2776:1 2779:1 2800:3 2803:2 2806:1 2808:7 2812:1 2813:1 2814:1 2824:1 2827:1 2835:1 2849:4 2851:1 2852:1 2857:1 2873:2 2881:2 2884:1 2885:2 2897:7 2906:2 2911:1 2913:2 2916:9 2924:6 2928:1 2937:2 2939:1 2943:1 2945:2 2947:1 2950:3 2951:2 2967:2 2981:1 2982:2 2987:3 2991:1 2995:2 3001:1 3029:1 3034:1 3035:2 3036:2 3041:1 3050:3 3052:1 3056:1 3060:7 3065:2 3069:1 3085:1 3089:1 3096:1 3122:1 3127:3 3128:1 3146:4 3152:1 3157:1 3159:16 3169:1 3178:3 3180:1 3185:1 3186:1 3190:1 3199:2 3203:3 3204:1 3206:1 3224:20 3225:3 3234:1 3246:2 3249:3 3269:2 3280:1 3283:1 3317:1 3325:1 3332:1 3338:1 3351:1 3352:5 3371:3 3377:1 3383:1 3391:1 3410:1 3426:1 3438:1 3440:1 3442:1 3447:1 3457:2 3469:1 3470:1 3490:2 3504:1 3510:3 3524:1 3531:1 3534:1 3550:1 3551:2 3579:1 3580:2 3581:1 3590:1 3596:2 3608:7 3609:1 3626:1 3643:1 3663:1 3695:1 3706:3 3712:1 3719:1 3748:1 3749:1 3751:1 3753:1 3762:1 3774:1 3781:1 3783:1 3784:2 3788:1 3794:1 3799:1 3804:1 3805:1 3829:1 3844:1 3851:1 3861:1 3868:2 3873:1 3897:1 3898:16 3900:1 3909:1 3912:2 3914:2 3915:2 3937:1 3942:1 3943:1 3947:1 3962:1 3998:1 4000:2 4001:1 4008:1 4013:3 4021:2 4038:1 4062:1 4096:1 4099:1 4101:1 4106:2 4110:1 4113:2 4117:1 4129:3 4133:1 4149:1 4152:1 4156:2 4162:1 4163:1 4167:1 4179:2 4181:1 4186:1 4195:2 4200:3 4201:1 4215:1 4220:2 4221:1 4226:4 4229:1 4236:2 4240:1 4241:2 4242:1 4253:4 4267:1 4272:2 4289:1 4293:2 4309:1 4313:2 4315:3 4320:1 4340:2 4348:6 4349:4 4356:2 4393:1 4395:2 4398:1 4403:1 4417:1 4422:1 4426:2 4432:1 4448:1 4464:2 4470:1 4471:1 4476:1 4500:2 4526:2 4537:1 4547:4 4548:1 4551:2 4552:1 4557:2 4559:1 4563:1 4567:2 4581:1 4587:1 4594:1 4610:1 4624:1 4629:1 4647:1 4649:1 4669:7 4691:3 4696:1 4708:2 4712:1 4714:1 4717:1 4720:2 4732:2 4749:2 4759:1 4779:1 4785:1 4787:4 4788:2 4808:4 4834:1 4843:1 4844:1 4850:1 4861:1 4869:2 4876:2 4893:1 4899:1 4902:1 4904:1 4910:1 4911:3 4913:1 4922:1 4938:1 4959:3 4970:1 4983:5 5001:1 5006:1 5007:1 5034:4 5044:2 5047:1 5056:1 5057:1 5062:4 5066:2 5085:5 5103:1 5105:2 5131:1 5135:2 5138:3 5154:3 5167:1 5174:1 5187:1 5189:2 5198:1 5200:1 5216:1 5217:1 5230:1 5249:1 5267:15 5270:2 5279:1 5282:1 5283:1 5290:1 5297:1 5307:1 5316:1 5329:1 5339:1 5350:1 5375:1 5404:3 5413:1 5429:1 5430:1 5431:4 5433:7 5434:3 5436:1 5440:2 5441:2 5442:2 5445:1 5446:2 5449:6 5450:4 5453:1 5454:2 5456:8 5464:2 5465:5 5468:1 5469:1 5517:1 5532:1 5548:2 5557:1 5575:1 5580:1 5592:1 5614:1 5625:1 5638:1 5658:1 5668:1 5704:1 5720:1 5731:2 5765:1 5771:1 5801:3 5807:2 5813:1 5847:1 5850:1 5875:5 5882:1 5889:1 5890:1 5902:1 5915:1 5917:1 5937:1 5943:1 5953:2 5959:1 5972:1 5980:1 5988:1 5994:1 6017:1 6029:1 6043:1 6057:1 6060:1 6080:1 6100:2 6107:1 6110:1 6115:2 6118:1 6121:1 6133:5 6134:1 6136:2 6139:1 6143:1 6144:3 6156:1 6157:1 6180:1 6181:1 6188:3 6200:2 6202:1 6204:1 6219:6 6223:1 6224:1 6237:2 6289:1 6303:1 6308:1 6320:1 6327:1 6330:1 6337:1 6345:1 6349:1 6351:1 6352:1 6361:3 6366:1 6387:1 6400:1 6427:1 6433:2 6444:2 6455:1 6459:1 6466:2 6468:2 6471:4 6486:1 6488:6 6494:1 6495:1 6499:1 6502:2 6510:2 6512:1 6514:1 6515:1 6516:1 6525:1 6556:1 6559:1 6560:1 6561:1 6569:1 6571:2 6573:1 6579:1 6581:1 6582:2 6586:12 6600:1 6603:1 6624:3 6631:1 6655:1 6668:1 6684:4 6693:2 6706:1 6709:6 6713:1 6720:1 6769:1 6775:1 6799:1 6806:1 6808:1 6809:1 6814:2 6816:3 6817:1 6822:1 6823:1 6825:2 6826:1 6832:2 6834:4 6835:3 6884:1 6931:1 6949:1 6979:1 6990:1 6993:4 6996:2 7008:1 7016:1 7040:1 7052:1 7057:1 7061:1 7071:2 7076:2 7079:1 7089:1 7097:1 7106:2 7131:1 7145:2 7153:2 7167:1 7174:1 7175:1 7182:1 7227:1 7231:1 7241:1 7251:2 7253:1 7256:1 7260:1 7265:1 7284:8 7285:1 7290:1 7292:2 7294:1 7295:3 7298:1 7309:1 7315:1 7326:2 7343:1 7348:1 7357:1 7360:1 7362:1 7403:1 7405:3 7421:2 7429:1 7435:2 7437:1 7454:1 7460:1 7465:1 7473:1 7478:2 7479:1 7504:1 7522:1 7529:2 7535:1 7550:1 7561:1 7569:1 7574:6 7578:2 7598:1 7611:1 7615:1 7621:1 7624:3 7625:2 7632:1 7636:6 7638:1 7640:1 7645:5 7648:1 7651:1 7656:1 7679:1 7680:1 7681:1 7684:1 7695:1 7701:1 7726:1 7729:1 7737:4 7747:4 7759:1 7771:1 7792:3 7795:1 7796:1 7798:1 7805:1 7812:1 7818:1 7824:1 7827:1 7829:1 7835:1 7839:1 7846:1 7853:1 7869:1 7897:1 7919:1 7925:1 7930:1 7933:2 7971:1 7984:1 7985:2 7986:6 7991:3 7996:1 7997:1 7999:1 8004:1 8006:3 8010:1 8032:6 8034:2 8036:2 8037:1 8061:1 8064:3 8074:1 8081:1 8093:1 8106:1 8108:2 8110:2 8117:1 8127:1 8131:1 8134:1 8140:1 8152:1 8153:1 8160:1 8161:2 8168:1 8175:2 8178:1 8189:1 8190:1 8198:1 8218:3 8235:4 8236:6 8250:2 8257:4 8258:1 8262:2 8263:3 8265:1 8278:1 8287:4 8288:3 8290:1 8303:48 8306:2 8315:1 8323:1 8326:10 8327:7 8331:2 8337:1 8367:1 8374:1 8375:1 8384:1 8387:2 8397:1 8404:3 8405:2 8411:1 8421:1 8424:2 8433:2 8445:3 8455:1 8459:1 8461:1 8468:1 8480:2 8486:1 8488:1 8492:2 8498:1 8504:1 8512:1 8514:2 8541:1 8550:1 8553:1 8557:1 8558:3 8562:1 8588:1 8591:1 8592:1 8593:1 8605:2 8609:2 8653:1 8663:1 8681:1 8691:1 8696:1 8698:1 8722:1 8723:1 8734:1 8737:1 8742:1 8755:1 8765:1 8768:1 8775:1 8777:1 8778:2 8788:1 8797:1 8815:1 8816:1 8835:27 8843:1 8844:1 8865:3 8868:3 8870:1 8900:1 8911:1 8935:6 8937:1 8938:1 8943:1 8969:1 8974:1 8990:4 8993:2 8994:2 8996:1 9001:1 9002:1 9019:1 9030:2 9031:4 9038:3 9044:1 9049:1 9065:2 9066:1 9069:1 9076:1 9080:1 9088:1 9090:1 9104:1 9109:1 9110:1 9119:1 9120:1 9128:1 9129:2 9139:2 9141:1 9142:1 9154:2 9176:1 9201:1 9204:1 9205:1 9209:1 9211:1 9216:1 9239:2 9242:2 9255:6 9257:1 9267:2 9271:3 9291:1 9302:1 9303:1 9312:1 9319:2 9323:1 9324:1 9333:1 9340:1 9345:1 9365:2 9375:1 9393:1 9404:1 9431:1 9436:1 9437:1 9449:1 9450:1 9460:1 9485:1 9486:1 9487:1 9501:3 9510:1 9533:1 9536:2 9537:1 9541:3 9577:3 9586:1 9594:2 9606:1 9613:1 9618:1 9642:1 9643:1 9644:1 9651:1 9655:2 9661:1 9662:7 9663:1 9668:1 9670:1 9675:1 9687:1 9695:2 9697:1 9708:7 9709:1 9719:1 9732:1 9740:1 9759:1 9768:11 9769:6 9778:1 9784:2 9794:3 9806:1 9830:3 9837:1 9844:1 9849:1 9853:3 9855:1 9872:1 9878:1 9882:2 9884:2 9886:3 9888:2 9898:1 9907:1 9919:1 9928:1 9950:1 9960:2 9963:1 9969:1 9972:5 9974:1 9976:1 9988:1 9995:1 9996:3 9999:2 10005:1 10006:1 10021:4 10050:1 10064:1 10080:1 10089:1 10108:1 10111:3 10118:1 10122:3 10128:1 10142:1 10145:1 10147:1 10154:1 10156:1 10159:1 10180:1 10183:1 10197:1 10201:1 10211:1 10220:7 10226:3 10264:3 10268:1 10283:1 10284:1 10298:3 10302:1 10330:1 10352:1 10358:1 10363:1 10365:3 10366:3 10369:2 10374:1 10399:1 10406:2 10408:2 10437:2 10439:1 10447:1 10458:1 10494:2 10511:1 10517:1 10530:2 10535:1 10542:2 10554:1 10557:1 10558:1 10576:1 10587:1 10603:1 10606:1 10611:1 10612:1 10626:1 10630:1 10657:1 10662:1 10663:1 10665:1 10670:1 10674:5 10690:4 10702:4 10707:2 10717:1 10738:2 10751:1 10762:3 10764:1 10772:1 10784:1 10807:1 10813:2 10818:2 10835:1 10839:1 10841:1 10854:1 10861:4 10864:1 10901:2 10907:1 10911:12 10913:1 10914:2 10919:2 10927:1 10948:2 10949:1 10969:1 10973:1 10980:1 10989:1 10991:1 11018:1 11040:1 11047:2 11049:1 11074:1 11091:1 11094:1 11109:1 11110:1 11112:1 11115:1 11117:1 11121:4 11129:1 11131:1 11136:2 11169:1 11177:1 11181:4 11185:1 11187:1 11189:1 11194:1 11196:3 11205:1 11207:1 11210:1 11213:2 11224:4 11244:1 11265:1 11277:1 11283:1 11284:1 11291:1 11298:1 11300:2 11303:2 11306:1 11319:2 11323:1 11330:1 11336:1 11337:1 11345:1 11348:3 11355:1 11360:2 11362:1 11365:1 11371:1 11373:7 11376:4 11389:2 11390:3 11395:1 11402:1 11413:1 11417:1 11419:2 11432:1 11447:2 11462:7 11463:2 11483:2 11485:1 11486:1 11498:4 11524:1 11541:1 11544:1 11550:3 11562:2 11570:1 11573:7 11588:2 11597:1 11605:1 11609:1 11624:3 11664:1 11677:1 11731:1 11744:1 11750:1 11767:1 11770:1 11791:1 11792:2 11796:2 11800:1 11801:2 11807:1 11811:1 11815:1 11816:1 11817:5 11819:5 11820:1 11826:1 11827:1 11834:2 11838:2 11842:1 11845:4 11849:1 11851:1 11853:1 11865:1 11867:1 11868:3 11872:3 11877:1 11901:2 11910:1 11935:1 11937:1 11939:4 11944:1 11983:1 11986:1 12007:1 12021:2 12023:1 12026:1 12061:1 12094:1 12102:1 12113:1 12115:1 12118:1 12133:1 12137:3 12151:1 12156:1 12179:1 12192:1 12195:1 12202:2 12204:1 12219:3 12222:2 12227:1 12241:2 12245:2 12247:1 12249:1 12250:2 12252:1 12260:3 12262:1 12263:1 12264:2 12269:1 12272:1 12278:1 12285:3 12287:2 12293:1 12324:17 12325:1 12356:1 12365:1 12369:4 12383:2 12384:2 12391:2 12396:1 12416:1 12418:2 12429:2 12430:1 12441:1 12442:2 12449:2 12450:1 12464:1 12483:1 12497:1 12501:1 12521:1 12528:1 12544:1 12566:1 12574:3 12575:1 12578:1 12579:1 12584:1 12587:1 12592:4 12596:1 12597:2 12599:1 12603:2 12604:1 12611:1 12614:1 12624:1 12636:1 12640:1 12641:1 12643:1 12649:2 12652:5 12655:4 12683:1 12718:1 12741:2 12745:1 12760:1 12767:1 12783:1 12799:1 12801:1 12808:1 12818:2 12829:1 12845:1 12853:1 12855:1 12856:1 12863:6 12872:1 12883:2 12886:1 12887:2 12901:1 12907:1 12916:1 12918:1 12925:2 12931:2 12955:2 12958:1 12971:2 12982:1 12983:2 13003:1 13025:2 13030:1 13043:1 13047:1 13049:2 13052:1 13059:2 13070:1 13094:1 13118:1 13125:1 13127:1 13128:1 13132:5 13133:3 13134:2 13149:1 13155:2 13168:1 13172:1 13174:1 13182:1 13195:1 13235:1 13237:2 13240:1 13264:1 13271:1 13276:1 13280:1 13291:1 13303:1 13310:1 13327:1 13332:1 13338:1 13356:1 13427:3 13456:2 13473:1 13489:1 13493:1 13502:1 13515:1 13531:1 13533:2 13534:1 13552:3 13566:1 13569:1 13582:1 13591:1 13601:1 13626:1 13654:1 13663:1 13666:1 13669:1 13670:2 13677:1 13699:1 13718:15 13723:5 13737:2 13762:1 13776:2 13777:3 13785:4 13805:1 13811:1 13817:2 13818:1 13828:1 13838:2 13839:1 13847:1 13881:1 13900:1 13906:1 13913:1 13920:2 13927:1 13939:2 13957:1 13959:1 13975:1 13978:1 13998:1 14000:1 14010:2 14011:1 14020:1 14023:1 14026:1 14027:1 14048:1 14058:1 14064:5 14084:2 14085:1 14110:1 14129:1 14146:1 14149:1 14176:1 14186:2 14190:1 14199:1 14201:1 14204:4 14208:4 14223:1 14224:2 14228:1 14230:2 14240:2 14245:1 14262:6 14279:1 14284:2 14307:1 14314:4 14316:1 14330:1 14347:1 14352:2 14354:1 14355:1 14356:2 14369:9 14370:1 14381:2 14385:1 14403:1 14408:1 14416:1 14417:1 14422:2 14429:1 14437:1 14438:1 14453:16 14462:1 14466:1 14488:1 14503:2 14504:2 14510:3 14525:1 14532:2 14550:2 14560:1 14561:1 14603:3 14630:1 14635:6 14641:1 14658:1 14664:2 14670:1 14673:1 14695:4 14722:1 14732:1 14734:1 14737:1 14746:3 14748:1 14749:1 14760:1 14762:1 14769:6 14770:1 14773:1 14774:2 14775:1 14777:2 14778:1 14782:7 14783:3 14803:1 14810:1 14811:1 14814:1 14816:1 14818:1 14846:1 14867:1 14873:1 14894:1 14906:2 14911:2 14921:1 14933:1 14948:1 14958:1 14967:6 14968:1 15004:1 15010:1 15013:1 15015:1 15022:1 15025:1 15032:1 15033:1 15046:2 15049:1 15074:2 15079:1 15080:1 15091:1 15092:1 15094:1 15098:7 15111:1 15121:1 15123:3 15128:1 15163:1 15174:1 15175:2 15185:1 15191:1 15202:1 15210:1 15213:1 15215:1 15224:1 15236:2 15258:1 15265:1 15266:1 15272:1 15278:1 15283:1 15293:1 15300:1 15304:1 15312:1 15315:1 15353:1 15362:2 15379:5 15395:1 15401:1 15414:1 15434:1 15446:1 15468:1 15488:1 15514:1 15517:3 15518:4 15527:1 15540:2 15541:2 15544:1 15550:2 15552:1 15570:1 15573:1 15581:1 15592:2 15606:1 15617:1 15625:2 15651:1 15661:1 15675:2 15680:1 15683:1 15698:1 15703:1 15705:1 15707:1 15712:2 15714:1 15723:2 15725:3 15729:2 15782:1 15786:2 15790:1 15804:2 15821:2 15841:1 15842:2 15844:1 15851:1 15856:2 15870:1 15880:1 15883:1 15906:1 15922:3 15928:1 15938:1 15941:2 15947:1 15972:1 15973:1 15978:1 16029:1 16032:1 16035:2 16073:2 16078:2 16079:1 16081:1 16090:1 16100:1 16109:2 16120:1 16157:1 16160:3 16168:1 16188:1 16189:1 16192:2 16196:1 16199:1 16231:1 16269:1 16298:1 16302:1 16308:1 16314:2 16351:1 16364:1 16406:1 16424:2 16435:1 16442:1 16464:1 16476:1 16479:1 16481:2 16492:1 16511:2 16516:3 16520:1 16545:1 16551:1 16553:1 16563:1 16567:2 16585:3 16592:1 16614:1 16616:1 16627:2 16641:1 16652:2 16676:1 16686:1 16687:1 16701:6 16720:3 16731:1 16739:4 16752:3 16777:1 16782:1 16790:1 16800:1 16807:1 16810:1 16815:2 16869:1 16883:2 16884:1 16897:2 16905:1 16909:1 16913:4 16914:1 16918:1 16920:1 16926:1 16937:2 16940:4 16941:1 16945:1 16948:1 16962:1 16968:1 16980:1 16999:2 17008:2 17052:2 17055:1 17062:1 17079:3 17089:2 17101:1 17104:1 17105:3 17120:1 17135:3 17150:1 17151:1 17157:1 17164:1 17198:1 17200:1 17230:1 17233:1 17234:1 17237:1 17239:15 17241:1 17256:1 17258:1 17260:3 17262:1 17285:3 17327:2 17344:1 17349:2 17360:3 17363:1 17380:2 17383:1 17392:2 17401:1 17428:1 17435:1 17442:1 17444:1 17445:1 17454:2 17456:1 17482:1 17486:3 17489:1 17504:1 17511:1 17516:6 17518:2 17519:2 17520:6 17521:2 17523:1 17527:2 17529:1 17531:2 17532:5 17537:1 17538:1 17540:1 17544:1 17546:2 17548:1 17555:1 17570:1 17581:2 17590:1 17592:1 17598:1 17607:1 17627:1 17637:1 17652:1 17655:2 17656:1 17692:2 17697:1 17699:1 17708:2 17709:2 17729:2 17736:1 17762:1 17774:1 17776:1 17804:1 17808:1 17827:1 17868:1 17872:1 17874:1 17884:2 17899:1 17902:2 17915:2 17916:1 17925:1 17930:5 17937:1 17941:2 17954:1 17965:1 17966:1 17972:2 17975:4 17980:2 17985:1 17987:1 17994:3 17998:2 18008:3 18016:1 18026:1 18071:14 18073:1 18086:1 18088:1 18095:2 18096:4 18097:1 18102:1 18171:1 18172:1 18183:2 18191:1 18201:4 18211:1 18212:1 18225:1 18233:3 18236:2 18266:1 18269:1 18286:2 18291:1 18307:5 18308:1 18322:1 18340:1 18341:1 18344:1 18361:1 18379:1 18423:2 18424:3 18425:1 18438:1 18440:1 18443:1 18453:1 18475:1 18490:1 18491:1 18494:1 18514:1 18517:1 18530:2 18533:1 18548:1 18556:1 18565:2 18572:1 18577:2 18585:1 18587:2 18593:1 18597:1 18617:1 18618:1 18662:1 18670:1 18707:1 18712:1 18731:1 18734:1 18742:1 18755:1 18760:1 18762:1 18775:3 18779:1 18791:3 18796:1 18800:1 18801:1 18810:3 18814:2 18815:2 18819:2 18824:1 18825:10 18852:1 18872:1 18877:2 18880:1 18885:2 18887:1 18892:1 18898:1 18905:1 18908:2 18909:1 18910:1 18962:1 18982:1 18983:1 19004:4 19009:1 19023:1 19033:2 19047:1 19050:1 19054:1 19061:1 19070:1 19071:1 19101:1 19102:1 19103:1 19123:1 19130:1 19134:2 19147:1 19166:1 19171:1 19202:1 19207:1 19220:1 19225:1 19226:3 19231:1 19233:1 19236:1 19243:1 19246:1 19267:1 19299:1 19337:2 19376:1 19378:1 19390:1 19391:2 19411:2 19450:1 19514:2 19515:1 19525:1 19538:1 19543:1 19553:1 19565:1 19575:1 19592:1 19593:1 19600:1 19607:1 19619:1 19631:1 19651:1 19656:3 19661:1 19670:1 19709:1 19719:15 19731:1 19750:1 19780:1 19806:1 19826:14 19832:1 19833:4 19834:2 19843:1 19846:6 19847:1 19863:1 19872:1 19876:3 19897:1 19915:2 19948:6 19971:2 19979:1 19988:2 19990:1 19993:1 20016:3 20020:1 20023:2 20041:2 20047:1 20053:2451 20064:1 20070:1 20083:1 20085:1 20086:1 20098:1 20126:1 20132:1 20134:1 20136:1 20160:2 20181:1 20212:2 20217:1 20218:1 20229:1 20241:1 20262:1 20264:1 20267:1 20271:2 20274:6 20275:4 20286:1 20292:1 20294:1 20298:1 20308:1 20320:1 20338:1 20350:1 20364:1 20368:1 20373:1 20375:1 20420:1 20422:3 20425:2 20431:1 20444:1 20469:1 20482:1 20486:1 20489:1 20490:3 20497:2 20517:1 20528:2 20545:1 20546:2 20547:1 20557:2 20558:1 20567:1 20579:1 20584:1 20587:1 20605:2 20618:1 20630:1 20642:1 20644:1 20647:2 20651:2 20660:1 20669:1 20679:2 20681:1 20701:2 20702:2 20715:3 20721:1 20724:1 20732:3 20757:3 20759:1 20765:1 20768:1 20769:1 20774:1 20778:1 20781:2 20787:9 20792:1 20813:1 20815:1 20833:1 20838:2 20839:1 20848:2 20864:5 20871:1 20882:1 20884:2 20901:1 20917:1 20926:4 20933:1 20935:2 20941:1 20943:2 20956:4 20957:1 20968:1 20974:1 20979:2 20999:1 21004:1 21005:4 21013:2 21014:1 21022:3 21061:3 21062:2 21065:1 21070:1 21075:1 21089:1 21093:1 21095:2 21098:2 21105:1 21106:2 21109:1 21121:1 21132:1 21143:1 21148:1 21149:1 21150:1 21152:1 21157:1 21168:1 21202:1 21219:1 21220:3 21237:1 21239:2 21241:1 21242:1 21249:1 21250:3 21254:1 21273:1 21277:1 21281:1 21283:1 21288:1 21295:1 21302:2 21308:1 21313:2 21320:1 21322:2 21330:2 21331:1 21336:1 21341:1 21342:1 21361:1 21362:1 21371:1 21376:2 21379:4 21385:1 21387:4 21446:1 21451:1 21453:1 21463:1 21466:2 21475:1 21478:1 21482:2 21483:2 21486:2 21501:1 21503:2 21507:3 21511:3 21518:1 21519:2 21523:2 21524:1 21544:5 21555:2 21571:1 21573:1 21583:1 21587:1 21590:2 21591:4 21613:1 21614:2 21627:1 21628:1 21633:1 21652:1 21654:3 21673:1 21676:2 21678:2 21699:1 21700:1 21711:3 21712:20 21713:2 21719:1 21727:5 21733:1 21756:2 21759:1 21767:1 21789:3 21798:1 21799:1 21813:1 21818:1 21822:1 21828:1 21853:1 21859:1 21860:1 21861:1 21881:1 21887:1 21897:1 21926:1 21940:4 21960:2 21982:2 21990:1 22001:2 22015:1 22018:1 22032:2 22066:8 22069:1 22071:2 22078:1 22085:1 22119:1 22120:1 22121:1 22128:1 22134:1 22140:1 22174:1 22177:1 22185:4 22202:3 22221:1 22225:1 22228:1 22231:1 22235:1 22236:1 22244:1 22247:2 22282:2 22288:3 22298:2 22300:2 22314:2 22319:2 22323:1 22325:1 22326:1 22337:2 22343:1 22370:5 22390:2 22391:1 22398:1 22402:1 22413:1 22417:2 22421:1 22432:1 22451:1 22452:2 22466:1 22473:1 22478:2 22479:1 22488:5 22492:1 22496:2 22501:1 22503:1 22508:2 22519:3 22546:2 22554:1 22557:1 22567:2 22590:1 22591:1 22592:1 22602:2 22615:2 22621:2 22624:2 22628:2 22632:2 22635:1 22643:2 22663:1 22665:1 22671:2 22685:2 22699:2 22715:1 22716:4 22723:1 22724:1 22726:4 22739:1 22741:1 22750:2 22755:1 22758:1 22760:1 22768:1 22769:1 22773:2 22774:1 22779:1 22781:1 22790:1 22793:1 22794:1 22804:1 22811:1 22815:1 22838:1 22846:1 22855:1 22857:1 22862:2 22864:1 22865:1 22866:2 22875:1 22879:1 22893:1 22939:1 22996:2 23014:2 23017:1 23026:2 23027:2 23031:1 23032:1 23038:1 23039:1 23043:1 23045:1 23056:1 23063:2 23070:3 23071:1 23081:1 23090:1 23104:1 23121:1 23131:1 23137:1 23147:1 23158:1 23159:1 23181:2 23183:1 23184:1 23185:1 23190:1 23194:1 23195:2 23199:1 23200:1 23210:1 23213:1 23217:2 23222:2 23228:2 23229:1 23230:1 23236:2 23237:1 23238:1 23239:1 23249:1 23251:2 23262:1 23271:14 23281:2 23282:2 23288:2 23298:1 23313:1 23323:1 23326:1 23328:1 23337:1 23345:2 23347:1 23348:1 23349:1 23352:1 23355:1 23377:1 23389:1 23410:2 23418:1 23426:2 23429:1 23434:1 23437:6 23439:3 23442:1 23452:2 23466:1 23467:1 23468:1 23475:1 23477:1 23496:1 23497:1 23498:1 23500:3 23502:4 23503:2 23506:1 23522:1 23537:1 23540:1 23576:1 23605:4 23613:1 23614:5 23616:3 23617:3 23619:1 23620:1 23625:1 23628:2 23631:1 23632:2 23643:1 23644:1 23645:5 23655:1 23656:1 23659:1 23661:1 23674:1 23682:1 23693:2 23697:2 23700:2 23721:1 23738:1 23749:1 23751:1 23778:2 23783:2 23795:1 23796:1 23799:1 23801:1 23811:1 23823:1 23834:1 23850:1 23853:1 23858:1 23859:1 23862:1 23865:2 23867:1 23882:1 23886:1 23887:1 23897:1 23900:1 23912:2 23915:1 23922:5 23929:1 23939:1 23940:4 23943:3 23946:1 23952:1 23969:1 23977:1 23982:1 23986:1 23990:2 23993:1 23997:1 23998:1 24001:1 24002:4 24010:2 24016:1 24026:2 24030:9 24033:1 24037:1 24044:1 24046:1 24050:1 24053:1 24073:1 24074:1 24108:8 24111:1 24126:1 24150:1 24162:1 24172:6 24173:1 24175:1 24178:1 24179:1 24184:1 24197:1 24199:1 24221:1 24222:3 24238:1 24248:1 24250:4 24260:1 24278:1 24289:1 24290:1 24291:6 24294:2 24305:3 24308:1 24309:4 24319:1 24325:1 24329:1 24332:1 24346:1 24349:4 24361:1 24370:1 24371:3 24373:1 24376:3 24386:1 24396:1 24408:1 24419:1 24426:1 24432:1 24447:1 24451:1 24479:1 24486:1 24495:1 24499:1 24500:1 24502:1 24517:1 24531:2 24549:10 24550:3 24558:1 24568:2 24574:1 24578:3 24585:4 24590:1 24594:1 24598:3 24608:2 24611:1 24624:1 24635:1 24661:1 24671:1 24681:1 24682:1 24685:2 24688:2 24706:1 24708:1 24711:1 24742:1 24744:1 24746:1 24749:1 24750:1 24752:1 24762:1 24774:1 24776:1 24784:1 24789:1 24795:2 24799:1 24806:2 24808:1 24814:1 24842:1 24851:3 24883:3 24899:1 24940:2 24969:1 24996:3 25000:3 25008:7 25018:2 25027:1 25033:1 25036:3 25039:1 25051:2 25054:2 25056:3 25066:1 25080:4 25122:1 25130:1 25138:1 25160:1 25172:1 25184:1 25196:1 25199:4 25230:1 25232:1 25240:3 25246:1 25259:2 25268:1 25273:2 25283:1 25286:1 25298:1 25304:1 25314:1 25315:2 25318:4 25320:3 25329:1 25331:1 25343:1 25345:1 25352:1 25366:3 25367:1 25368:2 25371:2 25376:1 25388:1 25391:1 25396:1 25447:1 25450:4 25451:1 25453:1 25458:1 25462:1 25469:1 25471:1 25472:4 25474:1 25477:1 25478:1 25479:1 25481:1 25485:1 25511:1 25535:3 25537:1 25549:1 25605:2 25615:1 25618:2 25633:1 25652:2 25659:1 25703:1 25715:1 25718:2 25727:2 25729:1 25739:1 25754:1 25770:1 25772:1 25776:1 25786:1 25793:2 25796:1 25803:1 25817:2 25840:1 25851:1 25861:1 25885:1 25898:1 25900:2 25909:1 25937:2 25940:1 25963:2 25977:4 25989:1 26010:1 26021:1 26022:8 26030:1 26041:1 26048:1 26050:1 26055:3 26059:1 26066:1 26075:1 26076:1 26081:1 26086:5 26095:1 26097:1 26098:1 26103:1 26111:1 26135:3 26157:2 26161:1 26167:1 26168:2 26214:1 26250:1 26253:1 26255:1 26288:1 26289:1 26291:1 26292:1 26300:1 26301:2 26304:3 26305:4 26308:1 26309:2 26311:1 26313:1 26317:2 26318:1 26319:1 26320:1 26329:1 26342:1 26356:6 26365:1 26373:2 26374:1 26376:1 26380:1 26391:1 26395:1 26397:1 26399:1 26420:12 26425:6 26426:1 26445:1 26447:2 26450:1 26456:1 26457:1 26459:1 26473:1 26477:1 26479:1 26483:2 26488:3 26495:2 26512:1 26530:1 26536:1 26588:1 26616:1 26632:1 26634:1 26648:2 26651:1 26659:1 26668:1 26669:1 26674:2 26683:2 26687:1 26690:1 26696:2 26698:2 26703:1 26734:1 26736:1 26749:1 26756:1 26758:2 26760:1 26766:1 26767:1 26775:1 26776:1 26787:1 26793:1 26794:1 26803:4 26828:2 26833:1 26836:1 26844:1 26847:1 26857:2 26862:2 26872:1 26875:2 26876:1 26880:1 26895:1 26901:1 26902:1 26929:18 26930:2 26942:1 26962:1 26964:1 26973:1 26974:1 26986:1 27000:1 27012:1 27019:2 27024:1 27029:1 27048:2 27051:1 27055:1 27059:1 27060:1 27078:1 27083:1 27088:1 27092:1 27094:1 27112:1 27123:1 27163:1 27164:1 27192:11 27193:1 27202:1 27218:1 27230:1 27233:2 27234:1 27253:1 27265:1 27272:1 27279:2 27290:1 27298:1 27304:1 27312:6 27315:1 27336:1 27338:1 27340:2 27341:1 27368:1 27375:1 27381:2 27387:1 27393:1 27398:1 27410:1 27428:1 27443:2 27448:2 27450:1 27465:2 27484:1 27486:1 27498:1 27514:1 27528:1 27577:1 27579:2 27590:1 27603:1 27606:1 27613:1 27619:1 27622:1 27627:2 27633:5 27636:1 27643:1 27645:1 27646:2 27657:1 27662:1 27669:1 27673:1 27701:7 27711:1 27713:1 27716:1 27728:1 27729:7 27746:2 27748:2 27750:1 27765:1 27773:1 27777:1 27784:3 27786:1 27793:1 27796:1 27810:1 27818:1 27820:1 27854:1 27858:1 27866:1 27873:2 27889:1 27901:1 27927:1 27933:1 27940:2 27947:1 27970:1 27977:1 28000:1 28010:1 28025:1 28026:1 28027:1 28038:2 28041:1 28048:1 28049:3 28064:1 28065:1 28071:1 28072:1 28076:1 28092:1 28098:1 28106:3 28108:1 28131:1 28142:5 28153:1 28168:1 28186:1 28191:1 28200:2 28202:1 28210:2 28211:1 28213:1 28227:2 28228:15 28239:2 28265:1 28268:1 28282:1 28289:1 28291:2 28303:1 28304:1 28305:1 28309:2 28317:1 28322:1 28326:2 28328:2 28337:1 28343:1 28348:1 28356:4 28360:3 28368:3 28371:3 28373:4 28375:1 28403:1 28406:1 28410:1 28456:1 28462:1 28463:1 28475:2 28481:1 28497:1 28500:1 28501:2 28502:1 28515:1 28531:2 28551:2 28564:1 28568:2 28569:1 28572:1 28573:2 28583:2 28594:6 28595:1 28596:1 28605:1 28608:1 28609:1 28611:1 28618:1 28627:1 28630:1 28634:1 28637:1 28667:1 28671:2 28673:2 28691:1 28699:1 28727:1 28744:1 28768:1 28777:1 28788:3 28814:1 28816:2 28817:1 28846:1 28851:1 28857:1 28860:1 28863:6 28878:1 28883:1 28884:1 28921:1 28925:1 28931:1 28932:1 28945:1 28949:1 28954:3 28959:1 28963:1 28975:1 28983:1 28986:2 28988:2 28998:3 29014:1 29017:1 29034:1 29043:1 29045:1 29050:2 29078:1 29085:1 29086:2 29093:1 29095:1 29111:1 29132:1 29144:2 29158:1 29163:4 29166:1 29171:1 29172:2 29182:1 29187:1 29190:1 29191:2 29204:1 29210:1 29218:1 29227:3 29238:2 29241:2 29244:1 29247:1 29250:1 29259:2 29260:1 29281:1 29295:1 29302:1 29312:1 29314:1 29318:2 29322:1 29354:1 29373:6 29375:3 29377:2 29401:1 29404:1 29406:1 29438:1 29446:2 29453:1 29460:1 29465:2 29469:1 29473:2 29482:1 29484:1 29487:1 29494:2 29501:1 29508:1 29514:1 29516:1 29523:1 29524:1 29529:3 29530:1 29531:1 29532:1 29536:3 29539:1 29543:2 29546:1 29549:1 29556:2 29566:2 29571:1 29574:1 29579:1 29580:1 29613:1 29615:1 29630:1 29641:5 29656:1 29663:2 29688:2 29709:1 29763:1 29766:2 29798:1 29804:1 29805:2 29824:1 29831:2 29848:1 29849:1 29853:1 29855:3 29862:5 29872:1 29876:1 29879:1 29883:1 29891:1 29900:1 29921:7 29952:1 29954:1 29964:1 29969:1 29985:1 30006:1 30009:1 30014:1 30019:2 30034:2 30039:1 30051:1 30063:1 30065:1 30082:1 30100:1 30109:1 30110:2 30114:1 30124:2 30133:2 30134:3 30135:1 30138:1 30140:1 30146:2 30150:1 30151:1 30152:2 30169:1 30171:1 30180:1 30181:5 30196:1 30203:1 30205:1 30220:3 30226:2 30228:2 30229:1 30231:1 30235:1 30238:5 30244:1 30251:1 30252:1 30261:3 30263:1 30275:3 30279:1 30283:3 30285:1 30296:1 30309:1 30316:3 30332:1 30336:1 30354:1 30356:1 30362:1 30377:1 30392:3 30397:4 30406:5 30411:1 30438:5 30453:1 30457:1 30462:1 30470:1 30471:1 30484:1 30491:1 30493:1 30495:1 30515:1 30525:1 30527:6 30532:1 30537:2 30571:1 30574:1 30583:1 30604:1 30614:1 30629:1 30634:1 30635:1 30645:1 30646:2 30651:2 30656:1 30670:1 30673:3 30709:1 30710:1 30711:1 30717:7 30719:2 30729:1 30730:1 30735:2 30750:1 30751:1 30786:6 30810:1 30865:1 30871:1 30879:1 30882:1 30916:1 30926:1 30955:1 30971:1 31003:1 31004:1 31028:2 31043:1 31046:1 31047:2 31048:3 31053:2 31055:3 31068:1 31072:1 31074:1 31082:1 31086:1 31092:1 31103:1 31124:1 31136:1 31143:1 31152:1 31168:1 31184:1 31194:3 31198:1 31204:2 31233:2 31238:2 31239:2 31257:1 31259:1 31272:1 31274:1 31284:1 31287:1 31289:1 31296:1 31301:1 31308:3 31309:1 31313:2 31343:1 31345:1 31348:4 31351:2 31377:1 31382:1 31405:1 31413:1 31422:1 31431:1 31443:1 31467:1 31473:1 31478:3 31484:1 31487:1 31505:1 31516:3 31519:1 31542:1 31577:2 31580:2 31599:1 31600:1 31606:1 31608:3 31615:3 31617:4 31618:1 31623:1 31632:1 31675:1 31677:5 31682:1 1 13:2 40:1 43:1 46:1 53:1 62:1 65:1 72:1 84:1 86:1 106:1 141:1 155:1 156:3 161:1 167:2 173:1 188:2 190:3 202:1 207:6 209:1 226:1 231:1 238:1 244:1 263:1 274:1 278:7 287:1 297:3 307:1 328:2 354:1 371:4 373:3 378:3 380:1 387:3 391:1 397:2 416:3 430:1 438:2 454:6 458:5 471:1 485:2 490:1 522:1 526:2 527:1 533:1 561:2 588:1 596:1 600:2 614:1 620:1 630:1 634:3 645:1 659:1 665:1 667:4 674:2 678:1 693:3 704:1 765:1 767:1 783:1 810:1 815:1 817:1 826:1 829:2 830:1 854:1 856:2 860:1 863:2 871:1 900:6 906:1 911:1 917:1 918:4 922:1 927:1 942:16 943:4 952:5 975:4 984:1 992:1 993:4 995:2 998:9 1000:1 1001:3 1004:4 1018:2 1033:1 1042:5 1044:4 1050:1 1055:1 1056:1 1095:2 1104:1 1121:1 1142:1 1159:1 1177:1 1178:1 1198:1 1210:2 1214:1 1217:1 1275:3 1277:3 1283:1 1285:2 1287:1 1295:2 1298:1 1299:2 1312:1 1315:1 1325:1 1326:1 1328:1 1332:2 1343:1 1351:2 1356:2 1365:1 1367:1 1380:1 1386:2 1389:1 1408:1 1414:1 1417:1 1426:1 1429:1 1432:1 1433:1 1451:1 1457:1 1466:1 1468:1 1470:1 1485:1 1500:1 1527:1 1530:1 1540:1 1541:2 1557:1 1564:1 1565:2 1584:1 1587:1 1594:1 1595:3 1602:1 1613:1 1629:1 1630:1 1632:2 1635:1 1647:1 1654:1 1674:1 1686:4 1694:8 1696:2 1705:1 1713:1 1743:2 1751:1 1754:1 1763:1 1767:3 1783:1 1786:1 1788:1 1791:2 1799:1 1804:2 1813:1 1818:1 1820:1 1824:1 1825:2 1835:1 1839:3 1850:1 1854:1 1863:1 1867:2 1871:1 1875:1 1881:1 1882:1 1886:2 1897:1 1900:1 1905:1 1914:1 1919:1 1920:2 1923:1 1939:1 1944:1 1945:5 1950:1 1953:1 1954:1 1965:1 1971:1 1974:3 1978:1 1979:2 1993:2 1994:6 2027:4 2030:3 2043:1 2051:1 2054:1 2055:1 2060:2 2065:4 2070:1 2071:1 2074:1 2089:2 2102:1 2103:3 2112:1 2113:1 2121:3 2127:2 2128:1 2129:1 2143:2 2146:1 2192:1 2198:9 2201:1 2207:1 2210:2 2214:1 2215:6 2219:1 2220:2 2222:2 2226:1 2230:2 2236:1 2243:2 2247:1 2255:1 2266:1 2268:1 2272:1 2283:1 2296:2 2300:2 2301:1 2306:2 2308:2 2323:1 2335:1 2349:1 2354:11 2361:2 2370:1 2376:1 2379:1 2393:1 2402:1 2423:3 2436:5 2439:1 2450:1 2458:1 2464:2 2477:3 2478:2 2480:1 2482:3 2485:5 2487:1 2489:2 2491:2 2494:2 2495:2 2497:1 2499:4 2501:1 2502:5 2505:1 2506:1 2508:5 2509:4 2514:5 2515:7 2517:1 2520:2 2528:1 2562:1 2565:2 2568:3 2571:3 2576:1 2593:2 2595:1 2597:1 2603:1 2617:1 2618:1 2623:1 2631:1 2637:1 2639:1 2657:1 2671:1 2680:1 2695:1 2706:3 2718:1 2722:1 2734:1 2739:3 2751:2 2752:1 2764:1 2765:1 2771:1 2776:1 2779:1 2800:3 2803:2 2806:1 2808:7 2812:1 2813:1 2814:1 2824:1 2827:1 2835:1 2849:4 2851:1 2852:1 2857:2 2873:2 2881:2 2884:1 2885:2 2897:7 2906:2 2911:1 2913:2 2916:9 2924:6 2928:1 2937:2 2939:1 2943:1 2945:2 2947:1 2950:3 2951:2 2967:3 2981:1 2982:3 2987:3 2991:1 2995:2 3001:1 3029:1 3034:1 3035:2 3036:2 3041:1 3050:3 3052:1 3056:1 3060:7 3065:2 3069:1 3085:1 3089:1 3096:1 3122:1 3127:3 3128:1 3146:4 3152:1 3157:1 3159:16 3169:1 3178:3 3180:1 3185:1 3186:1 3190:1 3199:2 3203:3 3204:1 3206:1 3224:21 3225:3 3234:1 3246:2 3249:3 3269:2 3280:1 3283:1 3299:1 3317:1 3325:1 3332:1 3338:1 3351:1 3352:5 3371:3 3377:1 3383:1 3391:1 3410:1 3426:1 3438:1 3440:1 3442:1 3447:1 3457:2 3469:1 3470:1 3490:2 3504:1 3510:3 3524:1 3531:1 3534:1 3550:1 3551:2 3579:1 3580:2 3581:1 3590:1 3596:2 3608:7 3609:1 3626:1 3643:1 3663:1 3695:1 3706:3 3712:1 3719:1 3748:1 3749:1 3751:1 3753:1 3762:1 3774:1 3781:1 3783:1 3784:2 3788:1 3794:1 3799:1 3804:1 3805:1 3829:1 3844:1 3851:1 3861:1 3868:2 3873:1 3897:1 3898:16 3900:1 3909:1 3912:2 3914:2 3915:2 3937:1 3942:1 3943:1 3947:1 3962:1 3998:1 4000:2 4001:1 4008:1 4013:3 4021:2 4038:1 4062:1 4096:1 4099:1 4101:1 4106:2 4110:1 4113:2 4117:1 4129:3 4133:1 4149:1 4152:1 4156:2 4162:1 4163:1 4167:1 4179:2 4181:1 4186:1 4195:2 4200:3 4201:1 4215:1 4220:2 4221:1 4226:4 4229:2 4236:2 4240:1 4241:2 4242:1 4253:4 4267:1 4272:2 4289:1 4293:2 4309:1 4313:2 4315:3 4320:1 4340:2 4348:7 4349:5 4356:2 4393:1 4395:2 4398:1 4403:1 4417:1 4422:1 4426:2 4432:1 4448:1 4464:2 4470:1 4471:1 4476:1 4500:2 4526:2 4537:1 4547:4 4548:1 4551:2 4552:1 4557:2 4559:1 4563:1 4567:2 4581:1 4587:1 4594:1 4610:1 4624:1 4629:1 4640:1 4647:1 4649:1 4669:7 4691:3 4696:1 4708:2 4712:1 4714:1 4717:1 4720:3 4732:2 4749:2 4759:1 4767:1 4779:1 4785:1 4787:4 4788:2 4808:4 4834:1 4843:1 4844:1 4850:1 4861:1 4869:2 4876:2 4893:1 4899:1 4902:1 4904:1 4910:1 4911:3 4913:1 4922:1 4938:1 4959:3 4970:1 4983:5 5001:1 5006:1 5007:1 5034:4 5044:2 5047:1 5056:1 5057:1 5062:4 5066:2 5085:5 5103:1 5105:2 5115:1 5131:1 5135:2 5138:3 5154:3 5167:1 5174:1 5187:1 5189:2 5198:1 5200:1 5216:1 5217:1 5230:1 5249:1 5267:15 5270:2 5279:1 5282:1 5283:1 5290:1 5297:1 5307:1 5316:1 5329:1 5339:1 5350:1 5375:1 5404:3 5413:1 5429:1 5430:1 5431:4 5433:7 5434:3 5436:1 5440:2 5441:2 5442:2 5445:1 5446:2 5449:6 5450:4 5453:1 5454:2 5456:8 5464:2 5465:5 5468:1 5469:1 5517:1 5532:1 5540:1 5548:3 5557:1 5575:1 5580:1 5592:1 5614:1 5625:1 5638:1 5658:1 5668:1 5704:1 5720:1 5731:2 5765:1 5771:1 5801:3 5807:2 5813:1 5847:1 5850:1 5875:6 5882:1 5889:1 5890:1 5902:1 5915:1 5917:1 5937:1 5943:1 5953:2 5959:1 5972:1 5980:1 5988:1 5994:1 6017:1 6029:1 6043:1 6057:1 6060:1 6080:1 6100:2 6107:1 6110:1 6115:2 6118:1 6121:1 6133:5 6134:1 6136:2 6139:1 6143:1 6144:3 6156:1 6157:1 6180:1 6181:1 6188:3 6199:1 6200:2 6202:1 6204:1 6206:1 6219:6 6223:1 6224:1 6237:2 6289:1 6303:1 6308:1 6320:1 6327:1 6330:1 6337:1 6345:1 6349:1 6351:1 6352:1 6361:3 6366:1 6387:1 6400:1 6427:1 6433:2 6444:2 6455:1 6459:1 6466:2 6468:2 6471:4 6486:1 6488:6 6494:1 6495:1 6499:1 6502:2 6510:2 6512:1 6514:1 6515:1 6516:1 6525:1 6556:1 6559:1 6560:1 6561:1 6569:1 6571:2 6573:1 6579:1 6581:1 6582:2 6586:12 6600:1 6603:1 6624:3 6631:1 6655:1 6668:1 6684:4 6693:2 6706:1 6709:6 6713:1 6720:1 6769:1 6775:1 6799:1 6806:1 6808:1 6809:1 6814:2 6816:3 6817:1 6822:1 6823:1 6825:2 6826:1 6832:2 6834:4 6835:3 6884:1 6931:1 6949:1 6978:1 6979:1 6990:1 6993:4 6996:2 7008:1 7016:1 7040:1 7052:1 7057:1 7061:1 7071:2 7076:2 7079:1 7089:1 7097:1 7106:2 7131:1 7145:2 7153:2 7167:1 7174:1 7175:1 7182:1 7227:1 7231:1 7241:1 7251:2 7253:1 7256:1 7260:1 7265:1 7284:8 7285:1 7290:1 7292:2 7294:1 7295:3 7298:1 7309:1 7315:1 7326:2 7343:1 7348:1 7357:1 7360:1 7362:1 7403:1 7405:3 7421:2 7429:1 7435:2 7437:1 7454:1 7460:1 7465:1 7473:1 7478:2 7479:1 7504:1 7522:1 7529:2 7535:1 7550:1 7561:1 7569:1 7574:6 7578:2 7598:1 7611:1 7615:1 7621:1 7624:3 7625:2 7632:1 7636:6 7638:1 7640:1 7642:1 7645:5 7648:1 7651:1 7656:1 7679:1 7680:1 7681:1 7684:1 7695:1 7701:1 7726:1 7729:1 7737:4 7747:4 7759:1 7771:1 7792:3 7795:1 7796:1 7798:1 7805:1 7812:1 7818:1 7824:1 7827:1 7829:1 7835:1 7839:1 7846:1 7853:1 7869:1 7897:1 7919:1 7925:1 7930:1 7933:2 7971:1 7984:1 7985:2 7986:6 7991:3 7996:1 7997:1 7999:1 8004:1 8006:3 8010:1 8032:6 8034:2 8036:2 8037:1 8061:1 8064:3 8074:1 8081:1 8093:1 8106:1 8108:2 8110:2 8117:1 8127:1 8131:1 8134:1 8140:1 8152:1 8153:1 8160:1 8161:2 8168:1 8175:2 8178:1 8189:1 8190:1 8198:1 8218:3 8235:4 8236:8 8250:2 8257:4 8258:1 8262:4 8263:3 8265:1 8278:1 8287:4 8288:3 8290:1 8303:50 8306:2 8315:1 8323:1 8326:10 8327:8 8331:2 8337:1 8367:1 8374:1 8375:1 8384:1 8387:2 8397:1 8404:3 8405:2 8411:1 8421:1 8424:2 8433:2 8445:3 8455:1 8459:1 8461:1 8468:1 8480:2 8486:1 8488:1 8492:2 8498:1 8504:1 8512:1 8514:2 8541:1 8548:1 8550:1 8553:1 8557:1 8558:3 8562:1 8588:1 8591:1 8592:1 8593:1 8605:2 8609:2 8653:1 8663:1 8681:1 8691:1 8696:1 8698:1 8722:1 8723:1 8734:1 8737:1 8742:1 8755:1 8765:1 8768:1 8775:1 8777:1 8778:3 8788:1 8797:1 8815:1 8816:1 8835:27 8843:1 8844:1 8865:3 8868:3 8870:1 8876:1 8900:1 8911:1 8935:6 8937:1 8938:1 8943:1 8969:1 8974:1 8990:4 8993:2 8994:2 8996:1 9001:1 9002:1 9019:1 9030:2 9031:4 9038:3 9044:1 9049:1 9065:2 9066:1 9069:1 9076:1 9080:1 9088:1 9090:1 9104:1 9109:1 9110:1 9119:1 9120:1 9128:1 9129:2 9139:2 9141:1 9142:1 9154:2 9176:1 9201:1 9204:1 9205:1 9209:1 9211:1 9216:1 9239:3 9242:2 9255:7 9257:1 9267:2 9271:3 9291:2 9302:1 9303:1 9312:1 9319:2 9323:1 9324:2 9333:1 9340:1 9345:1 9365:2 9375:1 9393:1 9404:1 9431:1 9436:1 9437:1 9449:1 9450:1 9460:1 9485:1 9486:1 9487:1 9501:3 9510:1 9533:1 9536:2 9537:1 9541:3 9577:3 9586:1 9594:2 9606:1 9613:1 9618:1 9642:1 9643:1 9644:1 9651:1 9655:2 9661:1 9662:7 9663:1 9668:1 9670:1 9675:1 9687:1 9695:2 9697:1 9708:7 9709:1 9719:1 9732:1 9740:1 9755:1 9759:1 9768:11 9769:6 9778:1 9784:2 9794:3 9806:1 9830:3 9837:1 9844:1 9849:1 9853:3 9855:1 9872:1 9878:1 9882:2 9884:2 9886:3 9888:2 9898:1 9907:2 9919:1 9928:1 9950:1 9960:2 9963:1 9969:1 9972:5 9974:2 9976:1 9988:1 9995:1 9996:3 9999:2 10005:1 10006:1 10021:4 10050:1 10064:1 10080:1 10089:1 10108:1 10111:3 10118:1 10122:3 10128:1 10142:1 10145:1 10147:1 10154:1 10156:1 10159:1 10180:1 10183:1 10197:1 10201:1 10211:1 10220:8 10226:3 10264:3 10268:1 10283:1 10284:1 10298:3 10302:1 10330:1 10351:1 10352:1 10358:1 10363:1 10365:3 10366:3 10369:2 10374:1 10399:1 10406:2 10408:2 10437:2 10439:1 10447:1 10458:1 10494:2 10511:1 10517:1 10530:2 10535:1 10542:2 10554:1 10557:1 10558:1 10576:1 10587:1 10603:1 10606:1 10611:2 10612:1 10626:1 10630:1 10657:1 10662:1 10663:1 10665:1 10670:1 10674:5 10690:4 10702:4 10707:2 10717:1 10738:2 10751:1 10762:3 10764:1 10772:1 10784:1 10807:1 10813:2 10818:2 10835:1 10839:1 10841:1 10854:1 10861:4 10864:1 10901:2 10907:1 10911:12 10913:1 10914:2 10919:2 10927:1 10948:2 10949:1 10969:1 10973:1 10980:1 10989:1 10991:1 11018:1 11040:1 11047:2 11049:1 11074:1 11091:1 11094:1 11109:1 11110:1 11112:1 11115:1 11117:1 11121:4 11129:1 11131:1 11136:2 11169:1 11177:1 11181:4 11185:1 11187:1 11189:1 11194:1 11196:3 11205:1 11207:1 11210:1 11213:2 11224:4 11244:1 11265:1 11277:1 11283:1 11284:1 11291:1 11298:1 11300:2 11303:2 11306:1 11319:2 11323:1 11330:1 11336:1 11337:1 11345:1 11348:3 11355:1 11360:2 11362:1 11365:1 11371:1 11373:7 11376:4 11389:2 11390:3 11395:1 11402:1 11413:1 11417:1 11419:2 11432:1 11447:2 11462:7 11463:2 11483:2 11485:1 11486:1 11498:4 11524:1 11541:1 11544:1 11550:3 11562:2 11570:1 11573:7 11588:2 11597:1 11605:1 11609:1 11624:3 11664:1 11677:1 11731:1 11744:1 11750:1 11767:1 11770:1 11791:1 11792:2 11796:2 11800:1 11801:2 11807:1 11811:1 11815:1 11816:1 11817:5 11819:5 11820:1 11826:1 11827:1 11832:1 11834:2 11838:3 11842:1 11845:4 11849:1 11851:1 11853:1 11865:1 11867:1 11868:3 11872:3 11877:1 11901:2 11910:1 11935:1 11937:1 11939:4 11944:1 11983:1 11986:1 12007:1 12021:2 12023:1 12026:2 12061:1 12094:1 12102:1 12107:1 12113:1 12114:1 12115:1 12118:1 12131:1 12133:1 12137:3 12151:1 12156:1 12179:1 12192:1 12195:1 12202:2 12204:1 12219:3 12222:2 12227:1 12241:2 12245:2 12247:1 12249:1 12250:2 12252:1 12260:3 12262:1 12263:1 12264:2 12269:1 12272:1 12278:1 12285:3 12287:2 12293:1 12297:1 12324:19 12325:1 12356:1 12365:1 12369:4 12383:2 12384:2 12391:2 12396:1 12416:1 12418:2 12429:3 12430:1 12441:1 12442:2 12449:2 12450:1 12464:1 12483:1 12497:1 12501:1 12521:1 12528:1 12544:1 12566:1 12568:1 12574:3 12575:1 12578:1 12579:1 12584:1 12587:1 12592:4 12596:1 12597:2 12599:1 12603:2 12604:1 12611:1 12614:1 12624:1 12636:1 12640:1 12641:1 12643:1 12649:2 12652:5 12655:4 12683:1 12718:1 12741:2 12745:1 12760:1 12767:1 12783:1 12799:1 12801:1 12808:1 12818:2 12829:1 12845:1 12853:1 12855:1 12856:1 12863:6 12872:1 12883:2 12886:1 12887:2 12901:1 12907:1 12916:1 12918:1 12925:2 12931:2 12955:2 12958:1 12971:2 12982:1 12983:2 13003:1 13025:2 13030:1 13043:1 13047:1 13049:2 13052:1 13059:2 13070:1 13094:1 13118:1 13125:1 13127:1 13128:1 13132:5 13133:4 13134:2 13149:1 13155:2 13168:1 13172:1 13174:1 13182:1 13195:1 13235:1 13237:2 13240:1 13264:1 13271:1 13276:1 13280:1 13291:1 13303:1 13310:1 13327:1 13332:1 13338:1 13356:1 13427:3 13456:2 13473:1 13489:1 13493:1 13502:1 13515:1 13531:1 13533:2 13534:1 13552:3 13566:1 13569:1 13582:1 13591:1 13601:1 13626:1 13654:1 13663:1 13666:1 13669:1 13670:3 13677:1 13699:1 13718:15 13723:5 13737:2 13762:1 13776:2 13777:3 13785:4 13805:1 13811:1 13817:2 13818:1 13828:1 13838:2 13839:1 13847:1 13881:1 13900:1 13906:1 13913:1 13914:1 13920:2 13927:1 13939:2 13949:1 13957:1 13959:1 13975:1 13978:1 13998:1 14000:1 14010:2 14011:1 14020:1 14023:1 14026:1 14027:1 14048:1 14058:1 14064:5 14084:2 14085:1 14110:1 14129:1 14146:1 14149:1 14176:1 14186:2 14190:1 14199:1 14201:1 14204:4 14208:4 14223:1 14224:2 14228:1 14230:2 14240:3 14245:1 14262:7 14266:1 14279:1 14284:2 14307:1 14314:4 14316:1 14330:1 14347:1 14352:2 14354:1 14355:1 14356:2 14369:9 14370:1 14381:2 14385:1 14403:1 14408:1 14416:1 14417:1 14422:2 14429:1 14437:1 14438:1 14453:17 14462:1 14466:1 14488:1 14503:2 14504:2 14510:3 14525:1 14532:2 14550:2 14560:1 14561:1 14603:3 14630:1 14635:6 14641:1 14658:1 14664:2 14670:1 14673:1 14695:4 14722:1 14732:1 14734:1 14737:1 14746:3 14748:1 14749:2 14760:1 14762:1 14769:6 14770:1 14773:1 14774:2 14775:1 14777:2 14778:1 14782:8 14783:3 14803:1 14806:1 14810:1 14811:1 14814:1 14816:1 14818:1 14846:1 14867:1 14873:1 14894:1 14906:2 14911:2 14921:1 14933:1 14948:1 14958:1 14967:7 14968:1 15004:1 15010:1 15013:1 15015:1 15022:1 15025:1 15032:1 15033:1 15046:2 15049:1 15074:2 15079:1 15080:1 15091:1 15092:1 15094:1 15098:8 15111:1 15121:1 15123:3 15128:1 15142:1 15163:1 15174:1 15175:2 15185:1 15191:1 15202:1 15210:1 15213:1 15215:1 15224:1 15236:2 15258:1 15265:1 15266:1 15272:1 15278:1 15283:1 15293:1 15300:1 15304:1 15312:1 15315:1 15353:1 15362:2 15379:5 15395:1 15401:1 15414:1 15434:1 15446:1 15468:1 15488:1 15514:1 15517:3 15518:4 15527:1 15540:2 15541:2 15544:1 15550:2 15552:1 15570:1 15573:1 15581:1 15592:2 15606:1 15617:1 15625:2 15651:1 15653:1 15661:1 15675:2 15680:1 15683:1 15698:1 15703:1 15705:1 15707:1 15712:2 15714:1 15723:2 15725:3 15729:2 15782:1 15786:2 15790:1 15804:2 15806:1 15821:2 15841:1 15842:2 15844:1 15851:1 15856:2 15870:1 15880:1 15883:1 15902:1 15906:1 15922:3 15928:1 15938:1 15941:2 15947:1 15972:1 15973:1 15978:1 16029:1 16032:1 16035:2 16073:2 16078:2 16079:1 16081:1 16090:1 16100:1 16109:2 16120:1 16157:1 16160:3 16168:1 16188:1 16189:1 16192:2 16196:1 16199:1 16231:1 16269:1 16298:1 16302:1 16308:1 16314:2 16351:1 16364:1 16406:1 16424:2 16435:1 16442:1 16464:1 16476:1 16479:1 16481:2 16492:1 16511:2 16516:3 16520:1 16545:1 16551:1 16553:1 16563:1 16567:2 16585:3 16592:1 16614:1 16616:1 16627:2 16641:1 16652:2 16676:1 16686:1 16687:1 16701:6 16720:3 16731:1 16739:4 16752:3 16777:1 16782:1 16790:1 16800:1 16807:1 16810:1 16815:2 16869:1 16883:2 16884:1 16897:2 16905:1 16909:1 16913:4 16914:1 16918:1 16920:1 16926:1 16937:2 16940:4 16941:1 16945:1 16948:1 16962:1 16968:1 16980:1 16999:2 17008:2 17039:1 17052:2 17055:1 17062:1 17079:3 17089:2 17101:1 17104:1 17105:3 17120:1 17135:3 17150:1 17151:1 17157:1 17164:1 17198:1 17200:1 17224:1 17230:1 17233:1 17234:1 17237:1 17239:16 17241:1 17256:1 17258:1 17260:3 17262:1 17285:3 17327:2 17344:1 17349:2 17360:4 17363:1 17380:2 17383:1 17392:2 17401:1 17428:1 17435:1 17442:1 17444:1 17445:1 17454:2 17456:1 17464:1 17482:1 17486:3 17489:1 17504:1 17511:1 17516:6 17518:2 17519:2 17520:6 17521:2 17523:1 17527:2 17529:1 17531:2 17532:5 17537:1 17538:1 17540:1 17544:1 17546:2 17548:1 17555:1 17570:1 17581:2 17590:1 17592:1 17598:1 17607:1 17627:1 17637:1 17652:1 17655:2 17656:1 17664:1 17692:2 17697:1 17699:1 17708:2 17709:2 17729:2 17736:1 17762:1 17774:1 17776:1 17804:1 17808:1 17827:1 17868:1 17872:1 17874:1 17884:3 17899:1 17902:2 17915:2 17916:1 17925:1 17930:5 17937:1 17941:2 17954:1 17965:1 17966:1 17972:2 17975:4 17980:2 17985:1 17987:1 17994:3 17998:2 18008:4 18016:1 18026:1 18071:14 18073:1 18086:1 18088:1 18095:2 18096:4 18097:1 18102:1 18171:1 18172:1 18183:2 18191:1 18201:4 18211:1 18212:1 18225:1 18233:3 18236:2 18266:1 18269:1 18286:2 18291:1 18307:5 18308:1 18322:1 18340:1 18341:1 18344:1 18361:1 18379:1 18423:2 18424:3 18425:1 18438:1 18440:1 18443:1 18453:1 18475:1 18490:1 18491:1 18494:1 18514:1 18517:1 18530:2 18533:1 18548:1 18556:1 18565:2 18572:1 18577:2 18585:1 18587:2 18593:1 18597:1 18617:1 18618:1 18662:1 18670:1 18707:1 18712:1 18731:1 18734:1 18742:1 18755:1 18760:1 18762:1 18775:3 18779:1 18791:3 18796:1 18800:1 18801:1 18810:3 18814:2 18815:2 18819:2 18824:1 18825:10 18852:1 18872:1 18877:2 18880:1 18885:2 18887:1 18892:1 18898:1 18905:1 18908:2 18909:1 18910:1 18962:1 18982:1 18983:1 19004:4 19009:1 19023:1 19033:2 19047:1 19050:1 19054:1 19061:1 19070:1 19071:1 19101:1 19102:1 19103:1 19104:1 19120:1 19123:1 19130:1 19134:2 19147:1 19166:1 19171:1 19202:1 19207:1 19220:1 19225:1 19226:3 19231:1 19233:1 19236:1 19243:1 19246:1 19267:1 19299:1 19337:2 19376:1 19378:1 19390:1 19391:2 19411:2 19450:1 19514:2 19515:1 19525:1 19538:1 19543:1 19553:1 19565:1 19575:1 19581:1 19592:1 19593:1 19600:1 19607:1 19619:1 19631:1 19651:1 19656:3 19661:1 19670:1 19709:1 19719:15 19731:1 19750:1 19780:1 19806:1 19826:14 19832:1 19833:4 19834:2 19843:1 19846:6 19847:1 19863:1 19872:1 19876:3 19897:1 19915:2 19948:6 19971:2 19979:1 19988:2 19990:1 19993:1 20016:3 20020:1 20023:2 20041:2 20047:1 20053:2532 20064:1 20070:1 20083:1 20085:1 20086:1 20087:1 20098:1 20126:1 20132:1 20134:1 20136:1 20150:1 20160:2 20181:1 20212:2 20217:1 20218:1 20229:1 20241:1 20262:1 20264:1 20267:1 20271:2 20274:6 20275:4 20286:1 20292:1 20294:1 20298:1 20308:1 20315:1 20320:1 20338:1 20350:1 20364:1 20368:1 20373:1 20375:1 20420:1 20422:3 20425:2 20431:1 20444:1 20469:1 20482:1 20486:1 20489:1 20490:3 20497:2 20517:1 20528:2 20545:1 20546:2 20547:1 20557:2 20558:1 20567:1 20579:1 20584:1 20587:1 20605:2 20618:1 20630:1 20642:1 20644:1 20647:2 20649:1 20651:2 20660:1 20669:1 20679:2 20681:1 20701:2 20702:2 20715:3 20721:1 20724:1 20732:3 20757:3 20759:1 20765:1 20768:1 20769:1 20774:1 20778:1 20781:2 20785:1 20787:9 20792:1 20813:1 20815:1 20833:1 20838:2 20839:1 20848:2 20864:5 20871:1 20882:1 20884:2 20901:1 20917:1 20926:4 20933:1 20935:2 20941:1 20943:2 20956:4 20957:1 20968:1 20974:1 20979:2 20999:1 21004:1 21005:4 21013:2 21014:1 21022:3 21061:4 21062:2 21065:1 21070:1 21075:1 21089:1 21093:1 21095:2 21098:2 21105:1 21106:2 21109:1 21121:1 21132:1 21143:1 21148:1 21149:1 21150:1 21152:1 21157:1 21168:1 21202:1 21219:1 21220:3 21237:1 21239:2 21241:1 21242:1 21249:1 21250:3 21254:1 21273:1 21277:1 21281:1 21283:1 21288:1 21295:1 21302:2 21308:1 21313:2 21320:1 21322:2 21330:2 21331:1 21336:1 21341:1 21342:1 21354:1 21361:1 21362:1 21371:1 21376:2 21379:4 21385:1 21387:4 21446:1 21451:1 21453:1 21463:1 21466:3 21475:1 21478:1 21482:2 21483:2 21486:2 21501:1 21503:2 21507:3 21511:3 21518:1 21519:2 21523:2 21524:1 21544:5 21555:2 21571:1 21573:1 21583:1 21586:1 21587:1 21590:2 21591:4 21613:1 21614:2 21627:1 21628:1 21633:1 21652:1 21654:3 21667:1 21673:1 21676:2 21678:3 21699:1 21700:1 21711:3 21712:21 21713:2 21719:1 21727:5 21733:1 21756:2 21759:1 21767:1 21789:3 21798:1 21799:1 21813:1 21818:1 21822:1 21828:1 21853:1 21859:1 21860:1 21861:1 21881:1 21887:1 21897:1 21907:1 21926:1 21940:4 21960:2 21982:2 21990:1 22001:2 22015:1 22018:1 22032:2 22066:8 22069:1 22071:2 22078:1 22085:1 22086:1 22119:1 22120:1 22121:1 22128:1 22134:1 22140:1 22174:1 22177:1 22185:4 22202:3 22221:1 22225:1 22228:1 22231:1 22235:1 22236:1 22244:1 22247:2 22282:2 22288:3 22298:2 22300:3 22314:2 22319:2 22323:1 22325:1 22326:1 22337:2 22343:1 22370:5 22390:2 22391:1 22398:1 22402:1 22413:1 22417:2 22421:1 22432:1 22451:1 22452:2 22466:1 22473:1 22478:2 22479:1 22488:5 22492:1 22496:2 22501:1 22503:1 22508:2 22519:3 22546:2 22554:1 22557:1 22567:2 22590:1 22591:1 22592:1 22602:2 22615:2 22621:2 22624:2 22628:2 22632:2 22635:1 22643:2 22663:1 22665:1 22671:2 22685:2 22699:2 22715:1 22716:4 22723:1 22724:1 22726:4 22739:1 22741:1 22750:2 22755:1 22758:1 22760:1 22768:1 22769:1 22773:2 22774:1 22779:1 22781:1 22790:1 22793:1 22794:1 22804:1 22811:1 22815:1 22838:1 22846:1 22855:1 22857:1 22862:2 22864:1 22865:1 22866:2 22875:1 22879:1 22893:1 22939:1 22996:2 23014:2 23017:1 23026:2 23027:2 23031:1 23032:1 23038:1 23039:1 23043:1 23045:1 23056:1 23063:2 23070:3 23071:1 23081:1 23090:1 23104:1 23121:1 23131:1 23137:1 23147:1 23158:1 23159:1 23181:2 23183:1 23184:1 23185:1 23190:1 23194:1 23195:2 23199:1 23200:1 23210:1 23213:1 23217:2 23222:2 23228:2 23229:1 23230:1 23236:2 23237:1 23238:1 23239:1 23249:1 23251:2 23262:1 23271:14 23281:2 23282:2 23288:2 23298:1 23313:1 23323:1 23326:1 23328:1 23337:1 23340:1 23345:2 23347:1 23348:2 23349:1 23352:1 23355:1 23377:1 23389:1 23410:2 23418:1 23426:2 23429:1 23434:1 23437:6 23439:3 23442:1 23452:2 23466:1 23467:1 23468:1 23475:1 23477:1 23496:1 23497:1 23498:1 23500:3 23502:4 23503:2 23506:1 23522:1 23537:1 23540:1 23576:1 23605:4 23613:1 23614:5 23616:3 23617:3 23619:1 23620:1 23625:1 23628:2 23631:1 23632:2 23643:1 23644:1 23645:5 23655:1 23656:1 23659:1 23661:1 23674:1 23682:1 23693:2 23697:2 23700:2 23721:1 23738:1 23749:1 23751:1 23778:2 23783:2 23795:1 23796:1 23799:1 23801:1 23811:1 23823:1 23834:1 23850:1 23853:1 23858:1 23859:1 23862:1 23865:2 23867:1 23882:1 23886:1 23887:1 23897:1 23900:1 23912:2 23915:1 23922:5 23929:1 23939:1 23940:4 23943:3 23946:1 23952:1 23969:1 23977:1 23982:1 23986:1 23990:2 23993:1 23997:1 23998:1 24001:1 24002:4 24010:2 24016:1 24026:2 24030:9 24033:1 24037:2 24044:1 24046:1 24050:1 24053:1 24073:1 24074:1 24108:9 24111:1 24126:1 24150:1 24162:1 24172:6 24173:1 24175:1 24178:1 24179:1 24184:1 24197:1 24199:1 24221:1 24222:3 24238:1 24248:1 24250:4 24260:1 24278:1 24289:1 24290:1 24291:6 24294:2 24305:3 24308:1 24309:4 24319:1 24325:1 24329:1 24332:1 24346:1 24349:4 24361:1 24370:1 24371:3 24373:1 24376:3 24386:1 24396:1 24408:1 24419:1 24426:1 24432:1 24447:1 24451:1 24479:1 24486:1 24495:1 24499:1 24500:1 24502:1 24517:1 24531:2 24549:10 24550:3 24558:1 24568:2 24574:1 24578:3 24585:4 24590:1 24594:1 24598:3 24608:2 24609:1 24611:1 24624:1 24635:1 24661:1 24671:1 24681:1 24682:1 24685:2 24688:2 24706:1 24708:1 24711:1 24742:1 24744:1 24746:1 24749:1 24750:1 24752:1 24762:1 24774:1 24776:1 24784:1 24789:1 24795:2 24799:1 24806:2 24808:1 24814:1 24842:1 24851:3 24883:3 24899:1 24940:2 24969:1 24996:3 25000:3 25008:7 25018:2 25027:1 25033:1 25036:3 25039:1 25051:2 25054:2 25056:3 25066:1 25080:4 25122:1 25130:1 25138:1 25160:1 25172:1 25184:1 25196:1 25199:4 25230:1 25232:1 25240:3 25246:1 25259:2 25268:1 25273:2 25283:1 25286:1 25298:1 25304:1 25314:1 25315:2 25318:4 25320:3 25329:1 25331:1 25343:1 25345:1 25352:1 25366:3 25367:1 25368:2 25371:2 25376:1 25388:1 25391:1 25396:1 25447:1 25450:4 25451:1 25453:1 25458:1 25462:1 25469:1 25471:1 25472:4 25474:1 25477:1 25478:1 25479:1 25481:1 25485:1 25502:1 25511:1 25535:3 25537:1 25549:1 25605:2 25615:1 25618:2 25633:1 25652:2 25659:1 25674:1 25687:1 25703:1 25715:1 25718:2 25727:2 25729:1 25739:1 25754:1 25770:1 25772:1 25776:1 25786:1 25793:2 25796:1 25803:1 25817:2 25840:1 25851:1 25861:1 25885:1 25898:1 25900:2 25909:1 25937:2 25940:1 25963:2 25977:4 25989:1 26010:1 26021:1 26022:8 26030:1 26041:1 26048:1 26050:1 26055:3 26059:1 26066:1 26075:1 26076:1 26081:1 26086:5 26095:1 26097:1 26098:1 26103:1 26111:1 26135:3 26157:4 26161:2 26167:1 26168:2 26214:1 26250:1 26253:1 26255:1 26288:1 26289:1 26291:1 26292:1 26300:1 26301:2 26304:3 26305:4 26308:1 26309:2 26311:1 26313:1 26317:2 26318:1 26319:1 26320:1 26329:1 26342:1 26356:6 26365:1 26373:2 26374:1 26376:1 26380:1 26391:1 26395:1 26397:1 26399:1 26420:12 26425:6 26426:1 26445:1 26447:2 26450:1 26456:1 26457:1 26459:1 26473:1 26477:1 26479:1 26483:2 26488:3 26495:3 26512:1 26515:1 26530:1 26536:1 26588:1 26593:1 26616:1 26632:1 26634:1 26648:2 26651:1 26659:1 26668:1 26669:1 26674:2 26683:2 26687:1 26690:1 26696:2 26698:2 26703:1 26734:1 26736:1 26749:1 26756:1 26758:2 26760:1 26766:1 26767:1 26775:1 26776:1 26787:1 26793:1 26794:1 26803:5 26828:2 26833:1 26836:1 26844:1 26847:1 26857:2 26862:2 26872:1 26875:3 26876:1 26880:1 26895:1 26901:1 26902:1 26929:18 26930:2 26942:1 26962:1 26964:1 26973:1 26974:1 26986:1 27000:1 27012:1 27019:2 27024:1 27029:1 27048:2 27051:1 27055:1 27059:1 27060:1 27078:1 27083:1 27088:1 27092:1 27094:1 27112:1 27123:1 27134:1 27163:1 27164:1 27192:12 27193:1 27202:1 27218:1 27230:1 27233:2 27234:1 27253:1 27265:1 27272:1 27279:2 27290:1 27298:1 27304:1 27312:7 27315:1 27336:1 27338:1 27340:2 27341:1 27368:1 27375:1 27381:2 27387:1 27393:1 27398:1 27410:1 27428:1 27443:2 27448:2 27450:1 27465:2 27484:1 27486:1 27498:1 27514:1 27519:1 27528:1 27577:1 27579:2 27590:1 27603:1 27606:1 27613:1 27619:1 27622:1 27627:2 27633:5 27636:1 27643:1 27645:1 27646:2 27657:1 27662:1 27669:1 27673:1 27701:7 27711:1 27713:1 27716:1 27728:1 27729:7 27746:2 27748:2 27750:1 27765:1 27773:1 27777:1 27784:3 27786:1 27793:1 27796:1 27810:1 27818:1 27820:1 27854:1 27858:1 27866:1 27873:2 27889:1 27893:1 27901:1 27927:1 27933:1 27940:3 27947:1 27970:1 27977:1 28000:1 28010:1 28025:1 28026:1 28027:1 28038:2 28041:1 28048:1 28049:3 28064:1 28065:1 28071:1 28072:1 28076:2 28092:1 28098:1 28106:3 28108:1 28131:1 28142:5 28153:1 28168:1 28186:1 28191:1 28200:2 28202:1 28210:2 28211:1 28213:1 28227:2 28228:15 28239:2 28265:1 28268:1 28282:1 28289:2 28291:2 28303:1 28304:1 28305:1 28309:2 28317:1 28322:1 28326:2 28328:2 28337:1 28343:1 28348:1 28356:4 28360:3 28368:3 28371:3 28373:4 28375:1 28392:1 28403:1 28406:1 28410:1 28456:1 28462:1 28463:1 28475:2 28481:1 28497:1 28500:1 28501:2 28502:1 28515:1 28531:2 28551:2 28564:1 28568:2 28569:1 28572:1 28573:2 28583:2 28594:6 28595:1 28596:1 28605:1 28608:1 28609:1 28611:1 28618:1 28627:1 28630:1 28634:1 28637:1 28667:1 28671:2 28673:2 28691:1 28699:1 28727:1 28744:1 28768:1 28777:1 28788:3 28814:1 28816:2 28817:1 28846:1 28851:1 28857:1 28860:1 28863:6 28878:1 28883:1 28884:1 28921:1 28925:1 28931:1 28932:1 28945:1 28949:1 28954:3 28959:1 28963:1 28975:1 28983:1 28986:2 28988:2 28998:3 29014:1 29017:1 29034:1 29043:1 29045:1 29050:2 29078:1 29085:1 29086:2 29093:1 29095:1 29111:1 29132:1 29144:2 29158:1 29163:4 29166:1 29171:1 29172:2 29182:1 29187:1 29190:1 29191:2 29204:1 29210:1 29218:1 29227:3 29238:2 29241:2 29244:1 29247:1 29250:1 29259:2 29260:2 29281:1 29295:1 29302:1 29312:1 29314:1 29318:2 29322:1 29354:1 29373:6 29375:3 29377:2 29401:1 29404:1 29406:1 29438:1 29446:2 29453:1 29460:1 29465:2 29469:1 29473:2 29482:1 29484:1 29487:1 29494:2 29501:1 29508:1 29514:1 29516:1 29523:1 29524:1 29529:3 29530:1 29531:1 29532:1 29536:3 29539:1 29543:2 29546:1 29549:1 29556:2 29566:2 29571:1 29574:1 29579:1 29580:1 29613:1 29615:1 29630:1 29641:5 29656:1 29663:2 29688:2 29709:1 29763:1 29766:2 29785:1 29787:1 29798:1 29804:1 29805:2 29824:1 29831:2 29844:1 29848:1 29849:1 29853:1 29855:3 29862:5 29872:1 29876:1 29879:1 29883:1 29891:1 29900:1 29921:7 29952:1 29954:1 29964:1 29969:1 29985:1 29988:1 30006:1 30009:1 30014:1 30019:2 30034:2 30039:1 30051:1 30063:1 30065:1 30082:1 30100:1 30105:1 30109:1 30110:2 30114:1 30124:2 30133:2 30134:3 30135:1 30138:1 30140:1 30146:2 30150:1 30151:1 30152:2 30169:1 30171:2 30180:1 30181:5 30196:1 30203:1 30205:1 30220:3 30226:2 30228:2 30229:1 30231:1 30235:1 30238:5 30244:1 30251:2 30252:1 30261:3 30263:1 30275:3 30279:1 30283:3 30285:1 30296:1 30309:1 30316:3 30332:1 30336:1 30354:1 30356:1 30362:1 30377:1 30392:3 30397:4 30406:7 30411:1 30438:5 30453:1 30457:1 30462:1 30470:1 30471:1 30484:1 30491:1 30493:1 30495:1 30515:1 30525:1 30527:6 30532:1 30537:2 30571:1 30574:1 30583:1 30604:1 30614:1 30629:1 30634:1 30635:1 30645:1 30646:2 30651:2 30656:1 30670:1 30673:3 30709:1 30710:1 30711:1 30717:7 30719:2 30729:1 30730:1 30735:2 30750:1 30751:1 30786:6 30810:1 30865:1 30871:1 30879:1 30882:1 30916:1 30926:1 30952:1 30955:1 30971:1 31003:1 31004:1 31028:2 31043:1 31046:1 31047:2 31048:3 31053:2 31055:3 31068:1 31072:1 31074:1 31082:1 31086:1 31092:1 31103:1 31124:1 31136:1 31143:1 31152:1 31168:1 31184:1 31194:3 31198:1 31204:2 31233:2 31238:2 31239:2 31257:1 31259:1 31272:1 31274:1 31284:1 31287:1 31289:1 31296:1 31301:1 31308:4 31309:1 31313:2 31323:1 31343:1 31345:1 31348:4 31351:2 31377:1 31382:1 31405:1 31413:1 31422:1 31431:1 31443:1 31467:1 31473:1 31478:3 31484:1 31487:1 31505:1 31516:3 31519:1 31542:1 31577:2 31580:2 31599:1 31600:1 31606:1 31608:3 31615:3 31617:4 31618:1 31623:1 31632:1 31675:1 31677:5 31682:1 31686:1 1 13:2 40:1 43:1 46:1 53:1 62:1 65:1 72:1 84:1 86:1 106:1 141:1 155:1 156:3 161:1 167:2 173:1 188:2 190:3 202:1 207:6 209:1 226:1 231:1 238:1 244:1 263:1 274:1 278:7 287:1 297:3 307:1 328:2 354:1 371:4 373:3 378:3 380:1 387:3 391:1 397:2 416:3 430:1 438:2 454:6 458:5 471:1 485:2 490:1 522:1 526:2 527:1 533:1 559:1 561:2 588:1 596:1 600:2 614:1 620:1 630:1 634:3 645:1 659:1 665:1 667:4 674:2 678:1 693:3 704:1 765:1 767:1 783:1 810:1 815:1 817:1 826:1 829:2 830:1 854:1 856:2 860:1 863:2 871:1 900:6 906:1 911:1 917:2 918:4 922:1 927:1 942:16 943:4 952:5 975:4 984:1 992:1 993:4 995:2 998:9 1000:1 1001:3 1004:4 1018:2 1033:1 1042:5 1044:4 1050:1 1055:1 1056:1 1095:2 1104:1 1121:1 1142:1 1159:1 1177:1 1178:1 1198:1 1210:2 1214:1 1217:1 1275:3 1277:3 1283:1 1285:2 1287:1 1295:2 1298:1 1299:2 1312:1 1315:1 1325:1 1326:1 1328:1 1332:2 1343:1 1351:2 1356:2 1365:1 1367:1 1380:1 1386:2 1389:1 1408:1 1414:1 1417:1 1426:1 1429:1 1432:1 1433:1 1451:1 1457:1 1466:1 1468:1 1470:1 1485:1 1500:1 1527:1 1530:1 1540:1 1541:2 1557:1 1564:1 1565:2 1582:1 1584:1 1587:1 1594:1 1595:3 1602:1 1613:1 1629:1 1630:1 1632:2 1635:1 1647:1 1654:1 1674:1 1686:4 1694:8 1696:2 1705:1 1713:1 1732:1 1743:2 1751:1 1754:1 1763:1 1767:3 1783:1 1786:1 1788:1 1791:2 1799:1 1804:2 1813:1 1818:1 1820:1 1824:1 1825:2 1835:1 1839:3 1850:1 1854:1 1863:1 1867:2 1871:1 1875:1 1881:1 1882:1 1886:2 1897:1 1900:1 1905:1 1914:1 1919:1 1920:2 1923:1 1939:1 1944:1 1945:5 1950:1 1953:1 1954:1 1965:1 1971:1 1974:3 1978:1 1979:2 1993:2 1994:6 2027:5 2030:3 2043:1 2051:1 2054:1 2055:1 2060:2 2065:4 2070:1 2071:1 2074:1 2089:2 2102:1 2103:3 2112:1 2113:1 2121:3 2127:2 2128:1 2129:1 2143:2 2146:1 2173:1 2192:2 2198:9 2201:1 2207:1 2210:2 2214:1 2215:7 2219:1 2220:2 2222:2 2226:1 2230:2 2236:1 2243:2 2247:1 2255:1 2266:1 2268:1 2272:1 2283:1 2296:2 2300:2 2301:1 2306:2 2308:2 2323:1 2335:1 2349:1 2354:11 2361:2 2370:1 2376:1 2379:1 2393:1 2402:1 2423:3 2436:5 2438:1 2439:1 2450:1 2458:1 2464:2 2477:3 2478:2 2480:1 2482:3 2485:5 2487:1 2489:2 2491:2 2494:2 2495:2 2497:1 2499:4 2501:1 2502:5 2505:1 2506:1 2508:5 2509:4 2514:5 2515:7 2517:1 2520:2 2528:1 2562:1 2565:2 2568:3 2571:3 2576:1 2593:2 2595:1 2597:1 2603:1 2617:1 2618:1 2623:1 2631:1 2637:1 2639:1 2657:1 2671:1 2680:1 2695:1 2706:3 2718:1 2722:1 2734:1 2739:3 2751:2 2752:1 2764:1 2765:1 2771:1 2776:1 2779:1 2800:3 2803:2 2806:1 2808:7 2812:1 2813:1 2814:1 2824:1 2827:1 2835:1 2849:4 2851:1 2852:1 2857:2 2873:2 2881:2 2883:1 2884:1 2885:2 2897:7 2906:2 2911:1 2913:2 2916:9 2924:6 2928:1 2937:2 2939:1 2943:1 2945:2 2947:1 2950:3 2951:2 2967:3 2981:1 2982:3 2987:3 2991:1 2995:2 3001:1 3029:1 3034:1 3035:2 3036:2 3041:1 3050:4 3052:1 3056:1 3060:7 3065:2 3069:1 3085:1 3089:1 3096:1 3122:1 3127:3 3128:1 3146:4 3152:1 3157:1 3159:16 3169:1 3178:3 3180:1 3185:1 3186:1 3190:1 3199:2 3203:3 3204:1 3206:1 3224:21 3225:3 3234:1 3246:2 3249:3 3269:2 3280:1 3283:1 3299:1 3317:1 3325:1 3332:1 3338:1 3351:1 3352:5 3371:3 3377:1 3383:1 3391:1 3410:1 3426:1 3436:1 3438:1 3440:1 3442:1 3447:1 3457:2 3469:1 3470:1 3490:2 3504:1 3510:3 3524:1 3531:1 3534:1 3550:1 3551:2 3579:1 3580:2 3581:1 3590:1 3596:2 3608:8 3609:1 3626:1 3643:1 3663:1 3695:1 3706:3 3712:1 3719:1 3748:1 3749:1 3751:1 3753:1 3762:1 3774:1 3781:1 3783:1 3784:2 3788:1 3794:1 3799:1 3804:1 3805:1 3829:1 3844:1 3851:1 3861:1 3868:2 3873:1 3897:1 3898:17 3900:1 3909:1 3912:2 3914:2 3915:2 3937:1 3942:1 3943:1 3947:1 3962:1 3998:1 4000:2 4001:1 4008:1 4013:3 4021:2 4038:1 4062:1 4096:1 4099:1 4101:1 4106:2 4110:1 4113:2 4117:1 4129:3 4133:1 4149:1 4152:1 4156:2 4162:1 4163:1 4167:1 4179:2 4181:1 4186:1 4195:2 4200:3 4201:1 4215:1 4220:2 4221:1 4226:5 4229:2 4236:2 4240:1 4241:2 4242:1 4253:4 4267:1 4272:2 4289:1 4293:2 4309:1 4313:2 4315:3 4320:1 4340:2 4348:7 4349:5 4356:2 4393:1 4395:2 4398:1 4403:1 4417:1 4422:1 4426:2 4432:1 4448:1 4464:2 4470:1 4471:1 4476:1 4483:1 4500:2 4526:2 4537:1 4547:4 4548:1 4551:3 4552:1 4557:2 4559:1 4563:1 4567:2 4581:1 4587:1 4594:1 4610:1 4624:1 4629:1 4640:1 4647:1 4649:1 4669:7 4691:3 4696:1 4708:2 4712:1 4714:1 4717:1 4720:3 4732:2 4749:2 4759:1 4767:1 4779:1 4783:1 4785:1 4787:4 4788:2 4808:4 4834:1 4843:1 4844:1 4850:1 4861:1 4869:2 4876:2 4893:1 4899:1 4902:1 4904:1 4910:1 4911:3 4913:1 4922:1 4938:1 4959:3 4970:1 4983:5 5001:1 5006:1 5007:1 5034:4 5044:3 5047:1 5056:1 5057:1 5062:4 5066:2 5085:5 5103:1 5105:2 5115:1 5131:1 5135:2 5138:3 5154:3 5167:1 5174:1 5187:1 5189:2 5198:1 5200:1 5216:1 5217:1 5230:1 5249:1 5267:16 5270:2 5276:1 5279:1 5282:1 5283:1 5290:1 5297:1 5307:1 5316:1 5329:1 5339:1 5350:1 5375:1 5404:3 5413:1 5429:1 5430:1 5431:4 5433:7 5434:3 5436:1 5440:2 5441:2 5442:2 5445:1 5446:2 5449:6 5450:4 5453:1 5454:2 5456:8 5464:2 5465:5 5468:1 5469:1 5517:1 5532:1 5540:1 5548:3 5557:1 5575:1 5580:1 5592:1 5614:1 5625:1 5638:1 5658:1 5668:1 5704:1 5720:1 5731:2 5765:1 5771:1 5801:3 5807:2 5813:1 5847:1 5850:1 5875:6 5882:1 5889:1 5890:1 5902:1 5915:1 5917:1 5937:1 5943:1 5953:2 5959:1 5972:1 5980:1 5988:1 5994:1 6017:1 6029:1 6043:1 6057:1 6060:1 6080:1 6100:2 6107:1 6110:1 6115:2 6118:1 6121:1 6133:5 6134:1 6136:2 6139:1 6143:1 6144:4 6156:1 6157:1 6166:1 6180:1 6181:1 6188:3 6199:1 6200:2 6202:1 6204:1 6206:1 6219:6 6223:1 6224:1 6237:2 6289:1 6303:1 6308:1 6320:1 6327:1 6330:1 6336:1 6337:1 6345:1 6349:1 6351:1 6352:1 6361:3 6366:1 6387:1 6400:1 6427:1 6433:2 6444:2 6455:1 6459:1 6466:2 6468:2 6471:4 6486:1 6488:6 6494:1 6495:1 6499:1 6502:2 6510:2 6512:1 6514:1 6515:1 6516:1 6525:1 6556:1 6559:1 6560:1 6561:1 6569:1 6571:2 6573:1 6579:1 6581:1 6582:2 6586:12 6600:1 6603:1 6624:3 6631:1 6655:1 6668:1 6684:4 6693:2 6706:1 6709:6 6713:1 6720:1 6769:1 6775:1 6799:1 6806:1 6808:1 6809:1 6814:2 6816:3 6817:1 6822:1 6823:1 6825:2 6826:1 6832:2 6834:4 6835:3 6884:1 6931:1 6949:1 6978:1 6979:1 6990:2 6993:4 6996:2 7008:1 7016:1 7040:1 7052:1 7057:1 7061:1 7071:2 7076:2 7079:1 7089:1 7097:1 7106:2 7131:1 7145:2 7153:2 7167:1 7174:1 7175:1 7182:1 7227:1 7231:1 7241:1 7251:2 7253:1 7256:1 7260:1 7265:1 7282:1 7284:8 7285:1 7290:1 7292:2 7294:1 7295:3 7298:1 7309:1 7315:1 7326:2 7343:1 7348:1 7357:1 7360:1 7362:1 7403:1 7405:3 7421:2 7429:1 7435:2 7437:1 7454:1 7460:1 7465:1 7473:1 7478:2 7479:1 7504:1 7522:1 7529:2 7535:1 7550:2 7561:1 7569:1 7574:6 7578:2 7598:1 7611:1 7615:1 7621:1 7624:3 7625:2 7632:1 7636:6 7638:1 7640:1 7642:1 7645:5 7648:1 7651:1 7656:1 7674:1 7679:1 7680:1 7681:1 7684:1 7695:1 7701:1 7726:1 7729:1 7737:4 7747:5 7759:1 7771:1 7792:3 7795:1 7796:1 7798:1 7805:1 7812:1 7818:1 7824:1 7827:1 7829:1 7835:1 7839:1 7846:1 7853:1 7869:1 7897:1 7919:1 7925:1 7930:1 7933:2 7971:1 7984:1 7985:2 7986:6 7991:3 7996:1 7997:1 7999:1 8004:1 8006:3 8010:1 8032:6 8034:2 8036:2 8037:1 8061:1 8064:3 8074:1 8081:1 8093:1 8106:1 8108:2 8110:2 8117:1 8127:1 8131:1 8134:1 8140:1 8152:1 8153:1 8160:1 8161:2 8163:1 8168:1 8175:2 8178:1 8189:1 8190:1 8198:1 8218:4 8235:4 8236:8 8250:2 8257:4 8258:1 8262:4 8263:3 8265:1 8278:1 8287:4 8288:3 8290:1 8303:50 8306:2 8315:1 8323:1 8326:10 8327:8 8331:2 8337:1 8367:1 8374:1 8375:1 8384:1 8387:2 8397:1 8404:3 8405:2 8411:1 8421:1 8424:2 8433:2 8445:3 8455:1 8459:1 8461:1 8468:1 8480:2 8486:1 8488:1 8492:2 8498:1 8504:1 8512:1 8514:2 8541:1 8548:1 8550:1 8553:2 8557:1 8558:3 8562:1 8588:1 8591:1 8592:1 8593:1 8605:2 8609:2 8653:1 8663:1 8681:1 8691:1 8696:2 8698:1 8722:1 8723:1 8734:1 8737:1 8742:1 8755:1 8765:1 8768:1 8775:1 8777:1 8778:3 8788:1 8797:1 8815:1 8816:2 8835:27 8843:1 8844:1 8865:3 8868:3 8870:1 8876:1 8900:1 8911:1 8935:6 8937:1 8938:1 8943:1 8969:1 8974:1 8990:5 8993:2 8994:2 8996:1 9001:1 9002:1 9019:1 9030:2 9031:4 9038:3 9044:1 9049:1 9065:2 9066:1 9069:1 9076:1 9080:1 9088:1 9090:1 9104:1 9109:1 9110:2 9119:1 9120:1 9128:1 9129:2 9139:2 9141:2 9142:1 9154:2 9176:1 9201:1 9204:1 9205:1 9209:1 9211:1 9216:1 9239:3 9242:2 9255:7 9257:1 9267:2 9271:3 9291:2 9302:1 9303:1 9312:1 9319:2 9323:1 9324:2 9333:1 9340:1 9345:1 9365:2 9375:1 9393:1 9404:1 9431:1 9436:1 9437:1 9449:1 9450:1 9460:1 9485:1 9486:1 9487:1 9501:3 9510:1 9533:1 9536:2 9537:1 9541:3 9577:3 9586:1 9594:2 9606:1 9613:1 9618:1 9642:1 9643:1 9644:1 9646:1 9651:1 9655:2 9661:1 9662:8 9663:1 9668:1 9670:1 9675:1 9687:1 9695:2 9697:1 9708:7 9709:1 9719:1 9732:1 9740:1 9755:1 9759:1 9768:11 9769:6 9778:1 9784:2 9794:3 9806:1 9830:3 9837:1 9844:1 9849:1 9853:3 9855:1 9872:1 9878:1 9882:2 9884:2 9886:3 9888:2 9898:1 9907:2 9919:1 9928:1 9950:1 9960:2 9963:1 9969:1 9972:5 9974:2 9976:1 9988:1 9995:1 9996:3 9999:2 10005:1 10006:1 10021:4 10050:1 10064:1 10080:1 10089:1 10108:1 10111:3 10118:1 10122:3 10128:1 10142:1 10145:1 10147:1 10154:1 10156:1 10159:1 10180:1 10183:1 10197:1 10201:1 10211:1 10220:8 10226:3 10264:3 10268:1 10283:1 10284:1 10298:3 10302:1 10330:1 10351:1 10352:1 10358:1 10363:1 10365:3 10366:3 10369:2 10374:1 10399:1 10406:2 10408:2 10437:2 10439:1 10447:1 10458:1 10494:2 10511:1 10517:1 10530:2 10535:1 10542:2 10554:1 10557:1 10558:1 10576:1 10587:1 10603:1 10606:1 10611:2 10612:1 10626:1 10630:1 10657:1 10662:1 10663:1 10665:1 10670:1 10674:5 10690:4 10702:4 10707:2 10717:1 10738:2 10751:1 10762:3 10764:1 10772:1 10784:1 10807:1 10813:2 10818:2 10835:1 10839:1 10841:1 10854:1 10861:4 10864:1 10901:2 10907:1 10911:12 10913:1 10914:2 10919:2 10927:1 10948:2 10949:2 10969:1 10973:1 10980:1 10989:1 10991:1 11018:1 11040:1 11047:2 11049:1 11074:1 11091:1 11094:1 11109:1 11110:1 11112:1 11115:1 11117:1 11121:4 11129:1 11131:1 11136:2 11169:1 11177:1 11181:4 11182:1 11185:1 11187:1 11189:1 11194:1 11196:3 11205:1 11207:1 11210:1 11213:2 11224:4 11244:1 11265:1 11277:1 11283:1 11284:1 11291:1 11298:1 11300:2 11303:2 11306:1 11319:2 11323:1 11330:1 11336:1 11337:1 11345:1 11348:3 11353:1 11355:1 11360:2 11362:1 11365:1 11371:1 11373:7 11376:4 11389:2 11390:3 11395:1 11402:1 11413:1 11417:1 11419:2 11432:1 11447:2 11462:7 11463:2 11483:2 11485:1 11486:1 11498:4 11524:1 11541:1 11544:1 11550:3 11562:2 11570:1 11573:7 11588:2 11597:1 11605:1 11609:1 11624:3 11664:1 11677:1 11731:1 11737:1 11744:1 11750:1 11767:1 11770:1 11791:1 11792:2 11796:2 11800:1 11801:2 11807:1 11811:2 11815:1 11816:1 11817:5 11819:6 11820:1 11826:1 11827:1 11832:1 11834:2 11838:3 11842:1 11845:4 11849:1 11851:1 11853:1 11865:1 11867:1 11868:3 11872:3 11877:1 11901:2 11910:2 11935:1 11937:1 11939:4 11944:1 11983:1 11986:1 12007:1 12021:2 12023:1 12026:2 12061:1 12094:1 12102:1 12107:1 12113:1 12114:1 12115:1 12118:1 12131:1 12133:1 12137:3 12151:1 12156:1 12179:1 12192:1 12195:1 12202:2 12204:1 12219:3 12222:2 12227:1 12241:2 12245:2 12247:1 12249:1 12250:2 12252:1 12260:3 12262:1 12263:1 12264:2 12269:1 12272:1 12278:1 12285:3 12287:2 12293:1 12297:1 12324:19 12325:1 12356:1 12365:1 12369:4 12383:2 12384:2 12387:1 12391:2 12396:1 12416:1 12418:2 12429:3 12430:1 12441:1 12442:2 12449:2 12450:1 12464:1 12483:1 12497:1 12501:1 12521:1 12528:1 12544:1 12566:1 12568:1 12574:3 12575:1 12578:1 12579:1 12584:1 12587:1 12592:5 12596:1 12597:2 12599:1 12603:2 12604:1 12611:1 12614:1 12624:1 12636:1 12640:1 12641:1 12643:1 12649:2 12652:5 12655:4 12683:1 12718:1 12741:2 12745:1 12760:1 12767:1 12783:1 12799:1 12801:1 12808:1 12818:2 12829:1 12845:1 12853:1 12855:1 12856:1 12863:6 12872:1 12883:2 12886:1 12887:2 12901:1 12907:1 12916:1 12918:1 12925:2 12931:2 12955:2 12958:1 12971:2 12982:1 12983:2 13003:1 13025:2 13030:1 13043:1 13047:1 13049:2 13052:1 13059:2 13070:1 13094:1 13118:1 13125:1 13127:1 13128:1 13132:5 13133:4 13134:2 13149:1 13155:2 13168:1 13172:1 13174:1 13182:1 13195:1 13235:1 13237:2 13240:1 13264:1 13271:1 13276:1 13280:1 13291:1 13303:1 13310:1 13327:1 13332:1 13338:1 13356:1 13427:3 13456:2 13473:1 13489:1 13493:1 13502:1 13515:1 13531:1 13533:2 13534:1 13552:3 13566:1 13569:1 13582:1 13591:1 13601:1 13626:1 13654:1 13663:1 13666:1 13669:1 13670:3 13677:1 13699:1 13718:15 13723:5 13737:2 13762:1 13776:2 13777:3 13785:4 13805:1 13811:1 13817:2 13818:1 13828:1 13838:2 13839:1 13847:1 13881:1 13900:1 13906:1 13913:1 13914:1 13920:2 13927:1 13939:2 13949:1 13957:1 13959:1 13975:1 13978:1 13998:1 14000:1 14010:2 14011:1 14020:1 14023:1 14026:1 14027:1 14048:1 14058:1 14064:5 14084:2 14085:1 14110:1 14129:1 14146:1 14149:1 14176:1 14186:2 14190:1 14199:1 14201:1 14204:4 14208:4 14223:1 14224:2 14228:1 14230:2 14240:3 14245:1 14262:7 14266:1 14279:1 14284:2 14307:1 14314:4 14316:1 14330:1 14347:1 14352:2 14354:1 14355:1 14356:2 14369:9 14370:1 14381:3 14385:1 14403:1 14408:1 14416:1 14417:1 14422:2 14429:1 14437:1 14438:1 14453:18 14462:1 14466:1 14488:1 14503:2 14504:2 14510:3 14525:1 14532:2 14550:2 14560:1 14561:1 14603:3 14630:1 14635:6 14641:1 14658:1 14664:2 14670:1 14673:1 14695:5 14722:1 14732:1 14734:1 14737:1 14746:3 14748:1 14749:2 14760:1 14762:1 14769:6 14770:1 14773:1 14774:2 14775:1 14777:2 14778:1 14782:8 14783:3 14803:1 14806:1 14810:1 14811:1 14814:1 14816:1 14818:1 14846:1 14867:1 14873:1 14894:1 14906:2 14911:2 14921:1 14933:1 14948:1 14958:1 14967:7 14968:1 15004:1 15010:1 15013:1 15015:1 15022:1 15025:1 15032:1 15033:1 15046:2 15049:1 15074:2 15079:1 15080:1 15091:1 15092:1 15094:1 15098:8 15111:1 15121:1 15123:3 15128:1 15142:1 15163:1 15174:1 15175:2 15185:1 15191:1 15202:1 15210:1 15213:1 15215:1 15224:1 15236:2 15258:1 15265:1 15266:1 15272:1 15278:1 15283:1 15293:1 15300:1 15304:1 15312:1 15315:1 15353:1 15362:2 15379:5 15395:1 15401:1 15414:1 15434:1 15446:1 15468:1 15488:1 15514:1 15517:3 15518:4 15527:1 15540:2 15541:2 15544:1 15550:2 15552:1 15570:1 15573:1 15581:1 15592:2 15606:1 15617:1 15625:2 15651:1 15653:1 15661:1 15675:2 15680:1 15683:1 15698:1 15703:1 15705:1 15707:1 15712:2 15714:1 15723:2 15725:3 15729:2 15782:1 15786:2 15790:1 15804:2 15806:1 15821:2 15841:1 15842:2 15844:1 15851:1 15856:2 15870:1 15880:1 15883:1 15902:1 15906:1 15922:3 15928:1 15938:1 15941:2 15947:1 15972:1 15973:1 15978:1 16029:1 16032:1 16035:2 16073:2 16078:2 16079:1 16081:1 16090:1 16100:1 16109:2 16120:1 16157:1 16160:3 16168:1 16188:1 16189:1 16192:2 16196:1 16198:1 16199:1 16231:1 16269:1 16298:1 16302:1 16308:1 16314:2 16351:1 16364:1 16406:1 16424:2 16435:1 16442:1 16464:1 16476:1 16479:1 16481:2 16492:1 16511:2 16516:3 16520:1 16545:1 16551:1 16553:1 16563:1 16567:2 16585:3 16592:1 16614:1 16616:1 16627:2 16641:1 16652:2 16676:1 16686:1 16687:1 16701:6 16720:4 16731:1 16739:4 16752:3 16777:1 16782:1 16790:1 16800:1 16807:1 16810:1 16815:2 16869:1 16883:2 16884:1 16897:2 16905:1 16909:1 16913:4 16914:1 16918:1 16920:1 16926:1 16937:2 16940:4 16941:1 16945:1 16948:1 16962:1 16968:1 16980:1 16999:2 17008:2 17039:1 17052:2 17055:1 17062:1 17079:3 17089:2 17101:1 17104:1 17105:3 17120:1 17135:3 17140:1 17150:1 17151:1 17157:1 17164:1 17198:1 17200:1 17224:1 17230:1 17233:1 17234:1 17237:1 17239:17 17241:1 17256:1 17258:1 17260:3 17262:1 17285:3 17327:2 17344:1 17349:2 17360:4 17363:1 17380:2 17383:1 17392:2 17401:1 17428:1 17435:1 17442:1 17444:1 17445:1 17454:2 17456:1 17464:1 17482:1 17486:3 17489:1 17504:1 17511:1 17516:6 17518:2 17519:2 17520:6 17521:2 17523:1 17527:2 17529:1 17531:2 17532:5 17537:1 17538:1 17540:1 17544:1 17546:2 17548:1 17555:1 17570:1 17581:2 17590:1 17592:1 17598:1 17607:1 17627:1 17637:1 17652:1 17655:2 17656:1 17664:1 17692:2 17697:1 17699:1 17708:2 17709:2 17729:2 17736:1 17762:1 17774:1 17776:1 17804:1 17808:1 17827:1 17868:1 17872:1 17874:1 17884:3 17899:1 17902:2 17915:2 17916:1 17925:1 17930:5 17937:1 17941:2 17954:1 17965:1 17966:1 17972:2 17975:4 17980:2 17985:1 17987:1 17994:3 17998:2 18008:4 18016:1 18026:1 18071:14 18073:1 18086:1 18088:1 18095:2 18096:4 18097:1 18102:1 18171:1 18172:1 18183:2 18191:1 18201:4 18211:1 18212:1 18225:1 18233:3 18236:2 18266:1 18269:1 18286:2 18291:1 18307:5 18308:1 18322:1 18340:1 18341:1 18344:1 18361:1 18379:1 18423:2 18424:3 18425:1 18438:1 18440:1 18443:1 18453:1 18475:1 18490:1 18491:1 18494:1 18514:1 18517:1 18530:2 18533:1 18548:1 18556:1 18565:2 18572:1 18577:2 18585:1 18587:2 18593:1 18597:1 18617:1 18618:1 18662:1 18670:1 18707:1 18712:1 18731:1 18734:1 18742:1 18755:1 18760:1 18762:1 18775:3 18779:1 18791:3 18796:1 18800:1 18801:1 18810:3 18814:2 18815:2 18819:2 18824:1 18825:10 18852:1 18872:1 18877:2 18880:1 18885:3 18887:1 18892:1 18898:1 18905:1 18908:2 18909:1 18910:1 18962:1 18982:1 18983:1 19004:4 19009:1 19023:1 19033:2 19047:1 19050:1 19054:1 19061:1 19070:1 19071:1 19101:1 19102:1 19103:1 19104:1 19120:1 19123:1 19130:1 19134:2 19147:1 19166:1 19171:1 19202:1 19207:1 19220:1 19225:1 19226:3 19231:1 19233:1 19236:1 19243:1 19246:1 19267:1 19299:1 19337:2 19376:1 19378:1 19390:1 19391:2 19411:2 19450:1 19514:2 19515:1 19525:1 19538:1 19543:1 19553:1 19565:1 19575:1 19581:1 19592:1 19593:1 19600:1 19607:1 19619:1 19631:1 19651:1 19656:3 19661:1 19670:1 19709:1 19719:15 19731:1 19750:1 19780:1 19805:1 19806:1 19826:14 19832:1 19833:4 19834:2 19843:1 19846:6 19847:1 19863:1 19872:1 19876:3 19897:1 19915:2 19948:6 19971:2 19979:1 19988:2 19990:1 19993:1 20016:3 20020:1 20023:2 20027:1 20041:2 20047:1 20053:2572 20064:1 20070:1 20083:1 20085:1 20086:1 20087:1 20098:1 20126:1 20132:1 20134:1 20136:1 20150:1 20160:2 20181:1 20212:2 20217:1 20218:1 20229:1 20241:1 20262:1 20264:1 20267:1 20271:2 20274:6 20275:4 20286:1 20292:1 20294:1 20298:1 20308:1 20315:1 20320:1 20338:1 20350:1 20364:1 20368:1 20373:1 20375:1 20420:1 20422:3 20425:2 20431:1 20444:1 20469:1 20482:1 20486:1 20489:1 20490:3 20497:2 20517:1 20528:2 20533:1 20545:1 20546:2 20547:1 20557:2 20558:1 20567:1 20579:1 20584:1 20587:1 20605:2 20618:1 20630:2 20642:1 20644:1 20647:2 20649:1 20651:2 20660:1 20669:1 20679:2 20681:1 20701:2 20702:2 20715:3 20721:1 20724:1 20732:3 20757:3 20759:1 20765:1 20768:1 20769:1 20774:1 20778:1 20781:2 20785:1 20787:9 20792:1 20813:1 20815:1 20833:1 20838:2 20839:1 20848:2 20864:5 20871:1 20882:1 20884:2 20901:1 20917:1 20926:4 20933:1 20935:2 20941:1 20943:2 20956:4 20957:1 20968:1 20974:1 20979:2 20999:1 21004:1 21005:4 21013:2 21014:1 21022:3 21061:4 21062:2 21065:1 21070:1 21075:1 21089:1 21093:2 21095:2 21098:2 21105:1 21106:2 21109:1 21121:1 21132:2 21143:1 21148:1 21149:1 21150:1 21152:1 21157:1 21168:1 21202:1 21219:1 21220:3 21237:1 21239:2 21241:1 21242:1 21249:1 21250:3 21254:1 21273:1 21277:1 21281:1 21283:1 21288:1 21295:1 21302:2 21308:1 21313:2 21320:1 21322:2 21330:2 21331:1 21336:1 21341:1 21342:1 21354:1 21361:1 21362:1 21371:1 21376:2 21379:4 21385:1 21387:4 21446:1 21451:1 21453:1 21463:1 21466:3 21475:1 21478:1 21482:2 21483:2 21486:2 21501:1 21503:2 21507:3 21511:3 21518:1 21519:2 21523:2 21524:1 21544:5 21555:2 21571:1 21573:1 21583:1 21586:1 21587:1 21590:2 21591:4 21613:1 21614:2 21627:1 21628:1 21633:1 21652:1 21654:3 21667:1 21673:1 21676:2 21678:3 21699:1 21700:1 21711:3 21712:21 21713:2 21719:1 21727:5 21733:1 21756:2 21759:1 21767:1 21789:3 21798:1 21799:1 21813:1 21818:1 21822:1 21828:1 21853:1 21859:1 21860:1 21861:1 21881:1 21887:1 21897:1 21907:1 21926:1 21940:4 21960:2 21982:2 21990:1 22001:2 22015:1 22018:1 22032:2 22066:8 22069:1 22071:2 22078:1 22085:1 22086:1 22119:1 22120:1 22121:1 22128:1 22134:1 22140:1 22174:1 22177:1 22185:4 22202:4 22221:1 22225:1 22228:1 22231:1 22235:1 22236:1 22244:1 22247:2 22282:2 22288:3 22298:2 22300:3 22314:2 22319:2 22323:1 22325:1 22326:1 22337:2 22343:1 22370:5 22390:2 22391:1 22398:1 22402:1 22413:1 22417:2 22421:2 22432:1 22451:1 22452:2 22466:1 22473:1 22478:2 22479:1 22488:5 22492:1 22496:2 22501:1 22503:1 22508:2 22519:3 22546:2 22554:1 22557:1 22567:2 22590:1 22591:1 22592:1 22602:2 22615:2 22621:2 22624:2 22628:2 22632:2 22635:1 22643:2 22663:1 22665:1 22671:2 22685:2 22699:2 22715:1 22716:4 22723:1 22724:1 22726:4 22739:1 22741:1 22750:2 22755:1 22758:1 22760:1 22768:1 22769:1 22773:2 22774:1 22779:1 22781:1 22790:1 22793:1 22794:1 22804:1 22811:1 22815:1 22838:1 22846:1 22855:1 22857:1 22862:2 22864:1 22865:1 22866:2 22875:1 22879:1 22893:1 22939:1 22996:2 23014:2 23017:1 23026:2 23027:2 23031:1 23032:1 23038:1 23039:1 23043:1 23045:1 23056:1 23063:2 23070:3 23071:1 23081:1 23090:1 23104:1 23121:1 23131:1 23137:1 23147:1 23158:1 23159:1 23181:2 23183:1 23184:1 23185:1 23190:1 23194:1 23195:2 23199:1 23200:1 23210:1 23213:1 23217:2 23222:2 23228:2 23229:1 23230:1 23236:2 23237:1 23238:1 23239:1 23249:1 23251:2 23262:1 23271:14 23281:2 23282:2 23288:2 23298:1 23313:1 23323:1 23326:1 23328:1 23337:1 23340:1 23345:2 23347:1 23348:2 23349:1 23352:1 23355:1 23377:1 23389:1 23410:2 23418:1 23426:2 23429:1 23434:1 23437:6 23439:3 23442:1 23452:2 23466:1 23467:1 23468:1 23475:1 23477:1 23496:1 23497:1 23498:1 23500:3 23502:4 23503:2 23506:1 23522:1 23537:1 23540:1 23576:1 23605:4 23613:1 23614:5 23616:3 23617:3 23619:1 23620:1 23625:1 23628:2 23631:1 23632:2 23643:1 23644:1 23645:5 23655:1 23656:1 23659:1 23661:1 23674:1 23682:1 23693:2 23697:2 23700:2 23721:1 23738:1 23749:1 23751:1 23778:2 23783:2 23795:1 23796:1 23799:1 23801:1 23811:1 23823:1 23834:1 23850:1 23853:1 23858:1 23859:1 23862:1 23865:2 23867:1 23882:2 23886:1 23887:1 23897:1 23900:1 23912:2 23915:1 23922:5 23929:1 23939:1 23940:4 23943:3 23946:1 23952:1 23969:1 23977:1 23982:1 23986:1 23990:2 23993:1 23997:1 23998:1 24001:1 24002:4 24010:2 24016:1 24026:2 24030:9 24033:1 24037:2 24044:1 24046:1 24050:1 24053:1 24073:1 24074:1 24108:9 24111:1 24126:1 24150:1 24162:1 24172:6 24173:1 24175:1 24178:1 24179:1 24184:1 24197:1 24199:1 24221:1 24222:3 24238:1 24248:1 24250:4 24260:1 24278:1 24289:2 24290:1 24291:6 24294:2 24305:3 24308:1 24309:4 24319:1 24325:1 24329:1 24332:1 24346:1 24349:4 24361:1 24370:1 24371:3 24373:1 24376:3 24386:1 24396:1 24408:1 24414:1 24419:1 24426:1 24432:1 24447:1 24451:1 24479:1 24486:1 24495:1 24499:1 24500:1 24502:1 24517:1 24531:2 24549:10 24550:3 24558:1 24568:2 24574:1 24578:3 24585:4 24590:1 24594:1 24598:3 24608:2 24609:1 24611:1 24624:1 24635:1 24661:1 24671:1 24681:1 24682:1 24685:2 24688:2 24706:1 24708:1 24711:1 24742:1 24744:1 24746:1 24749:1 24750:1 24752:1 24762:1 24774:1 24776:2 24784:1 24789:1 24795:2 24799:1 24806:2 24808:1 24814:1 24842:1 24851:3 24883:3 24899:1 24940:2 24969:1 24996:3 25000:3 25008:7 25018:2 25027:1 25033:1 25036:3 25039:1 25051:2 25054:2 25056:3 25066:1 25080:4 25122:1 25130:1 25138:1 25160:1 25172:1 25184:1 25196:1 25199:4 25205:1 25230:1 25232:1 25240:3 25246:1 25259:2 25268:1 25273:2 25283:1 25286:1 25298:1 25304:1 25314:1 25315:2 25318:4 25320:3 25329:1 25331:1 25343:1 25345:1 25352:1 25366:3 25367:1 25368:2 25371:2 25376:1 25388:1 25391:1 25396:1 25447:1 25450:4 25451:1 25453:1 25458:1 25462:1 25469:1 25471:1 25472:4 25474:1 25477:1 25478:1 25479:1 25481:1 25485:1 25502:1 25511:1 25535:3 25537:1 25549:1 25605:2 25615:1 25618:2 25633:1 25652:2 25659:1 25674:1 25687:1 25703:1 25715:1 25718:2 25727:2 25729:1 25739:1 25754:1 25770:1 25772:1 25776:1 25786:1 25793:2 25796:1 25803:1 25817:2 25840:1 25851:1 25861:1 25885:1 25898:1 25900:2 25909:1 25937:2 25940:1 25963:2 25977:4 25989:1 26010:1 26021:1 26022:8 26030:1 26041:1 26048:1 26050:1 26055:3 26059:1 26066:1 26075:1 26076:1 26081:1 26086:5 26095:1 26097:1 26098:1 26103:1 26111:1 26135:3 26157:4 26161:2 26167:1 26168:2 26214:1 26250:1 26253:1 26255:1 26288:1 26289:1 26291:1 26292:1 26300:1 26301:2 26304:3 26305:4 26308:1 26309:2 26311:1 26313:1 26317:2 26318:1 26319:1 26320:1 26329:1 26342:1 26356:6 26365:1 26373:2 26374:1 26376:1 26380:1 26391:1 26395:1 26397:1 26399:1 26420:12 26425:6 26426:1 26445:1 26447:2 26450:1 26456:1 26457:1 26459:1 26473:1 26477:1 26479:1 26483:2 26488:3 26495:3 26512:1 26515:1 26530:1 26536:1 26588:1 26593:1 26616:1 26632:1 26634:1 26648:2 26651:1 26659:1 26668:1 26669:1 26674:2 26683:2 26687:1 26690:1 26696:2 26698:2 26703:1 26734:1 26736:1 26749:1 26756:1 26758:2 26760:1 26766:1 26767:1 26775:1 26776:1 26787:1 26793:1 26794:1 26803:5 26828:2 26833:1 26836:1 26844:1 26847:1 26857:2 26862:2 26872:1 26875:3 26876:1 26880:1 26895:1 26901:1 26902:1 26928:1 26929:18 26930:2 26942:1 26962:1 26964:1 26973:1 26974:1 26986:1 27000:1 27012:1 27019:2 27024:1 27029:1 27048:2 27051:1 27055:1 27059:1 27060:1 27078:1 27083:1 27088:1 27092:1 27094:1 27112:1 27123:1 27134:1 27163:1 27164:1 27192:12 27193:1 27202:1 27218:1 27230:1 27233:2 27234:1 27253:1 27265:1 27272:1 27279:2 27290:1 27298:1 27304:1 27312:7 27315:1 27336:1 27338:1 27340:2 27341:1 27368:1 27375:1 27381:2 27387:1 27393:1 27398:1 27410:1 27428:1 27443:2 27448:2 27450:1 27465:2 27484:1 27486:1 27498:1 27514:1 27519:2 27528:1 27577:1 27579:2 27590:1 27603:1 27606:1 27613:1 27619:1 27622:1 27627:2 27633:5 27636:1 27643:1 27645:1 27646:2 27657:1 27662:1 27669:1 27673:1 27701:7 27711:1 27713:1 27716:1 27728:1 27729:7 27746:2 27748:2 27750:1 27765:1 27773:1 27777:1 27784:3 27786:1 27793:1 27796:1 27810:1 27818:1 27820:1 27854:1 27858:1 27866:1 27873:2 27889:1 27893:1 27901:1 27927:1 27933:1 27940:3 27947:1 27970:1 27977:1 28000:1 28010:1 28025:1 28026:1 28027:1 28038:2 28041:1 28048:1 28049:3 28064:1 28065:1 28071:1 28072:1 28076:2 28092:1 28098:1 28106:3 28108:1 28131:1 28142:5 28153:1 28168:1 28186:1 28191:1 28200:2 28202:1 28210:2 28211:1 28213:1 28227:2 28228:15 28239:2 28265:1 28268:1 28282:1 28289:2 28291:2 28303:1 28304:1 28305:1 28309:2 28317:1 28322:1 28326:2 28328:2 28337:1 28343:1 28348:1 28356:4 28360:3 28368:3 28371:3 28373:4 28375:1 28392:1 28403:1 28406:1 28410:1 28456:1 28462:1 28463:1 28475:2 28481:1 28497:1 28500:1 28501:2 28502:1 28515:1 28531:2 28551:2 28564:1 28568:2 28569:1 28572:1 28573:2 28583:2 28594:6 28595:1 28596:1 28605:1 28608:1 28609:1 28611:1 28618:2 28627:1 28630:1 28634:1 28637:1 28667:1 28671:2 28673:2 28691:1 28699:1 28727:1 28744:1 28768:1 28777:1 28788:3 28814:1 28816:2 28817:1 28846:1 28851:1 28857:1 28860:1 28863:6 28878:1 28883:1 28884:1 28921:1 28925:1 28931:1 28932:1 28945:1 28949:1 28954:3 28959:1 28963:1 28975:1 28983:1 28986:2 28988:2 28998:3 29014:1 29017:1 29034:1 29043:1 29045:1 29050:2 29067:1 29078:1 29085:1 29086:2 29093:1 29095:1 29111:1 29132:1 29144:2 29158:2 29163:4 29166:1 29171:1 29172:2 29182:1 29187:1 29190:1 29191:2 29196:1 29204:1 29210:1 29218:1 29227:3 29238:2 29240:1 29241:2 29244:1 29247:1 29250:1 29259:2 29260:2 29281:1 29295:1 29302:1 29312:1 29314:1 29318:2 29322:1 29354:1 29373:6 29375:3 29377:2 29401:1 29404:1 29406:1 29438:1 29446:2 29453:1 29460:2 29465:2 29469:1 29473:2 29482:1 29484:1 29487:1 29494:2 29501:1 29508:1 29514:1 29516:1 29523:1 29524:1 29529:3 29530:1 29531:1 29532:1 29536:3 29539:1 29543:2 29546:1 29549:1 29556:2 29566:2 29571:1 29574:1 29579:1 29580:1 29613:1 29615:1 29630:1 29641:5 29656:1 29663:2 29688:2 29709:1 29763:1 29766:2 29785:1 29787:1 29798:1 29804:1 29805:2 29824:1 29831:2 29844:1 29848:1 29849:1 29853:1 29855:3 29862:5 29872:1 29876:1 29879:1 29883:1 29891:1 29900:1 29921:7 29952:2 29954:1 29964:1 29969:1 29985:1 29988:1 30006:1 30009:1 30014:1 30019:2 30034:2 30039:1 30051:1 30063:1 30065:1 30082:1 30100:1 30105:1 30109:1 30110:2 30114:1 30124:2 30133:2 30134:3 30135:1 30138:1 30140:1 30146:2 30150:1 30151:1 30152:2 30169:1 30171:2 30180:1 30181:5 30196:1 30203:1 30204:1 30205:1 30220:3 30226:2 30228:2 30229:1 30231:1 30235:1 30238:5 30244:1 30251:3 30252:1 30261:3 30263:1 30275:3 30279:1 30283:3 30285:1 30296:1 30309:1 30316:3 30332:1 30336:1 30354:1 30356:1 30362:1 30377:1 30392:3 30397:4 30406:7 30411:1 30438:5 30453:1 30457:1 30462:1 30470:1 30471:1 30484:1 30491:1 30493:1 30495:1 30515:1 30525:1 30527:6 30532:1 30537:2 30571:1 30574:1 30583:1 30604:1 30614:1 30629:1 30634:1 30635:1 30643:1 30645:1 30646:2 30651:2 30656:1 30670:1 30673:3 30709:1 30710:1 30711:1 30717:7 30719:2 30729:1 30730:1 30735:2 30750:1 30751:1 30786:6 30810:1 30865:1 30871:1 30879:1 30882:1 30886:1 30916:1 30926:1 30952:1 30955:1 30971:1 31003:1 31004:1 31028:2 31043:1 31046:1 31047:2 31048:3 31053:2 31055:3 31068:1 31072:1 31074:1 31082:1 31086:1 31092:1 31103:1 31124:1 31136:1 31143:1 31152:1 31168:1 31184:1 31194:3 31198:1 31204:2 31233:2 31238:2 31239:2 31257:1 31259:1 31272:1 31274:1 31284:1 31287:1 31289:1 31296:1 31301:1 31308:4 31309:1 31313:2 31323:1 31343:1 31345:1 31348:4 31351:2 31377:1 31382:1 31405:1 31413:1 31422:1 31431:1 31443:1 31467:1 31473:1 31478:3 31484:1 31487:1 31505:1 31516:3 31519:1 31542:1 31577:2 31580:2 31599:1 31600:1 31606:1 31608:3 31615:3 31617:4 31618:1 31623:1 31632:1 31675:1 31677:5 31682:1 31686:1 1 13:2 40:1 43:1 46:1 53:1 62:1 65:1 72:1 84:1 86:1 106:2 141:1 155:1 156:4 161:1 167:2 173:1 188:2 190:3 202:1 204:1 207:6 209:1 226:1 231:1 238:1 244:1 263:1 274:1 278:7 287:1 297:3 307:1 328:2 354:1 371:5 373:3 378:3 380:1 387:3 391:1 397:2 416:3 430:1 438:2 454:6 458:6 471:1 485:2 490:1 522:1 526:2 527:1 533:1 559:1 561:2 588:1 596:1 600:2 614:1 620:1 630:1 634:3 645:1 659:1 665:1 667:4 674:2 678:1 693:3 704:1 729:1 765:1 767:1 783:1 785:1 810:1 815:1 817:1 826:1 829:3 830:1 831:1 854:1 856:2 860:1 863:2 871:1 900:7 906:1 911:1 917:2 918:4 922:2 927:1 942:16 943:4 952:5 975:4 984:1 992:1 993:4 995:2 998:9 1000:1 1001:3 1004:4 1018:2 1033:1 1042:5 1044:4 1050:1 1055:1 1056:1 1095:2 1104:1 1121:1 1142:1 1159:1 1177:1 1178:1 1198:1 1210:3 1214:1 1217:2 1275:3 1277:3 1283:1 1285:2 1287:1 1295:2 1298:1 1299:2 1312:1 1315:1 1325:1 1326:1 1328:1 1332:2 1343:1 1351:2 1356:2 1362:1 1365:1 1367:1 1380:1 1386:2 1389:1 1408:1 1414:1 1417:1 1426:1 1429:1 1432:1 1433:1 1451:1 1457:1 1466:1 1468:1 1470:1 1485:1 1500:1 1527:1 1530:1 1540:1 1541:2 1557:1 1564:1 1565:2 1582:1 1584:1 1587:1 1594:1 1595:3 1602:1 1613:1 1629:1 1630:1 1632:2 1635:1 1647:1 1654:1 1674:1 1686:4 1694:8 1696:2 1705:1 1713:1 1732:1 1743:2 1751:1 1754:1 1763:1 1767:4 1783:1 1786:1 1788:1 1791:2 1799:1 1804:3 1813:1 1818:1 1820:1 1824:1 1825:2 1835:2 1839:3 1850:1 1854:1 1857:1 1863:1 1867:2 1871:1 1875:1 1881:1 1882:1 1886:2 1897:1 1900:1 1905:1 1914:1 1919:1 1920:2 1923:1 1939:2 1944:1 1945:5 1950:1 1953:1 1954:1 1965:1 1971:1 1974:3 1978:1 1979:2 1993:2 1994:6 2027:5 2030:3 2043:1 2051:1 2054:1 2055:1 2060:2 2065:4 2070:1 2071:1 2074:1 2089:2 2102:1 2103:3 2112:1 2113:1 2121:3 2127:2 2128:1 2129:1 2143:3 2146:1 2173:1 2192:2 2198:9 2201:1 2207:1 2210:2 2214:1 2215:7 2219:1 2220:2 2222:2 2226:1 2230:2 2236:1 2243:2 2247:1 2255:1 2266:1 2268:1 2272:1 2283:1 2296:2 2300:2 2301:1 2306:2 2308:2 2323:1 2335:1 2349:1 2354:11 2361:2 2370:1 2376:1 2379:1 2393:1 2402:1 2423:3 2436:5 2438:1 2439:1 2450:1 2458:1 2464:2 2477:3 2478:2 2480:1 2482:3 2485:5 2487:1 2489:2 2491:2 2494:2 2495:2 2497:1 2499:4 2501:1 2502:5 2505:1 2506:1 2508:5 2509:4 2514:5 2515:7 2517:1 2520:2 2528:1 2562:1 2565:2 2568:3 2571:3 2576:1 2586:1 2593:2 2595:1 2597:1 2603:1 2617:1 2618:1 2623:1 2631:1 2637:1 2639:1 2657:1 2671:1 2680:1 2695:1 2706:3 2718:1 2722:1 2734:1 2739:3 2751:2 2752:1 2764:1 2765:1 2771:1 2776:1 2779:2 2800:3 2803:2 2806:1 2808:7 2812:1 2813:1 2814:1 2824:1 2827:1 2835:1 2849:4 2851:2 2852:1 2857:2 2873:2 2881:2 2883:1 2884:1 2885:2 2897:7 2906:2 2911:1 2913:2 2916:9 2924:6 2928:1 2937:2 2939:1 2943:1 2945:2 2947:1 2950:3 2951:2 2967:4 2981:1 2982:3 2987:3 2991:1 2995:2 3001:1 3029:1 3034:1 3035:2 3036:2 3041:1 3050:4 3052:1 3056:1 3060:7 3065:2 3066:1 3069:1 3085:1 3089:1 3096:1 3122:1 3127:3 3128:1 3146:5 3152:1 3157:1 3159:17 3169:1 3178:3 3180:1 3185:1 3186:1 3190:1 3199:2 3203:3 3204:1 3206:1 3224:22 3225:3 3234:1 3246:2 3249:3 3269:2 3280:1 3283:2 3299:1 3317:1 3321:1 3325:1 3332:1 3338:1 3351:1 3352:5 3371:3 3377:1 3383:1 3391:1 3410:1 3426:1 3436:1 3438:1 3440:1 3442:1 3447:1 3457:2 3469:1 3470:1 3490:2 3504:1 3510:3 3524:1 3531:1 3534:1 3550:1 3551:2 3579:1 3580:2 3581:1 3590:1 3596:2 3608:8 3609:1 3626:1 3643:1 3663:1 3695:1 3706:3 3712:1 3719:1 3748:1 3749:1 3751:2 3753:1 3762:1 3774:1 3781:1 3783:1 3784:2 3788:1 3794:1 3799:1 3804:1 3805:1 3829:1 3844:1 3851:1 3861:1 3868:2 3873:1 3897:1 3898:17 3900:1 3909:1 3912:2 3914:2 3915:2 3937:1 3942:1 3943:1 3947:1 3962:1 3998:1 4000:2 4001:1 4008:1 4013:3 4021:2 4038:1 4062:1 4096:1 4099:1 4101:1 4106:2 4110:1 4113:2 4117:1 4129:3 4133:1 4149:1 4152:1 4156:2 4162:1 4163:1 4167:1 4179:2 4180:1 4181:2 4186:1 4195:2 4200:3 4201:1 4215:1 4220:2 4221:1 4226:5 4229:2 4236:2 4240:1 4241:2 4242:1 4253:4 4267:1 4272:2 4289:1 4293:2 4309:1 4313:2 4315:4 4320:1 4330:1 4332:1 4340:2 4348:7 4349:5 4356:2 4393:1 4395:2 4398:1 4403:1 4417:1 4422:1 4426:2 4432:1 4448:1 4464:2 4470:1 4471:1 4476:1 4483:1 4500:2 4526:2 4537:2 4547:4 4548:1 4551:3 4552:1 4557:2 4559:1 4563:1 4567:2 4581:1 4587:1 4594:1 4610:1 4624:1 4629:1 4640:1 4647:1 4649:1 4669:7 4691:3 4696:1 4708:2 4712:1 4714:1 4717:1 4720:3 4732:2 4749:2 4759:1 4767:1 4779:1 4783:1 4785:1 4787:4 4788:2 4804:1 4808:4 4834:1 4843:1 4844:1 4850:1 4861:1 4869:2 4876:2 4893:1 4899:1 4902:2 4904:1 4910:1 4911:3 4913:1 4922:1 4938:1 4959:3 4970:1 4983:5 5001:1 5006:1 5007:1 5034:5 5044:3 5047:1 5056:1 5057:1 5062:4 5066:2 5083:1 5085:5 5103:1 5105:2 5115:1 5131:1 5135:3 5138:3 5154:3 5167:1 5174:1 5187:1 5189:2 5198:1 5200:1 5216:1 5217:1 5230:1 5249:1 5267:16 5270:2 5276:1 5279:1 5282:1 5283:1 5290:1 5297:1 5307:1 5316:1 5329:1 5339:1 5350:1 5375:1 5404:3 5413:1 5429:1 5430:1 5431:4 5433:7 5434:3 5436:1 5440:2 5441:2 5442:2 5445:1 5446:2 5449:6 5450:4 5453:1 5454:2 5456:8 5464:2 5465:6 5468:1 5469:1 5517:1 5532:1 5540:1 5548:3 5557:1 5575:1 5580:1 5592:1 5614:1 5625:1 5638:1 5658:1 5668:1 5704:1 5720:1 5731:2 5765:1 5771:1 5801:3 5807:2 5813:1 5847:1 5850:1 5875:6 5882:1 5889:1 5890:1 5902:1 5915:1 5917:1 5937:1 5943:1 5953:2 5959:1 5972:1 5980:1 5988:1 5994:1 6017:1 6029:1 6043:1 6057:1 6060:1 6080:1 6100:2 6107:1 6110:1 6115:2 6118:1 6121:1 6133:5 6134:1 6136:2 6139:1 6143:1 6144:4 6156:2 6157:1 6166:1 6180:1 6181:1 6188:3 6199:1 6200:2 6202:1 6204:1 6206:1 6219:6 6223:1 6224:1 6237:2 6289:1 6303:1 6308:1 6320:1 6327:1 6330:1 6336:1 6337:1 6345:1 6349:1 6351:1 6352:1 6361:3 6366:1 6387:1 6400:1 6427:1 6433:2 6444:2 6455:1 6459:1 6466:2 6468:2 6471:4 6486:1 6488:6 6494:1 6495:1 6499:1 6502:2 6510:2 6512:1 6514:1 6515:1 6516:1 6525:1 6556:1 6559:1 6560:1 6561:1 6569:2 6571:2 6573:1 6579:1 6581:1 6582:2 6586:13 6600:1 6603:1 6624:3 6631:1 6655:1 6668:1 6684:4 6693:2 6706:1 6709:6 6713:1 6720:1 6769:1 6775:1 6799:1 6806:1 6808:1 6809:1 6814:2 6816:3 6817:1 6822:1 6823:1 6825:2 6826:1 6832:2 6834:4 6835:3 6884:1 6931:1 6949:1 6978:1 6979:1 6990:2 6993:4 6996:2 7008:1 7016:1 7040:1 7052:1 7057:1 7061:1 7071:2 7076:2 7079:1 7089:1 7097:1 7106:2 7131:1 7145:2 7153:2 7167:1 7174:1 7175:1 7182:1 7227:1 7231:1 7241:1 7251:2 7253:1 7256:1 7260:1 7265:1 7282:1 7284:9 7285:1 7290:1 7292:2 7294:1 7295:3 7298:1 7309:1 7315:1 7326:2 7343:1 7348:1 7357:1 7360:1 7362:1 7364:1 7403:1 7405:3 7421:2 7429:1 7435:2 7437:1 7454:1 7460:1 7465:1 7473:1 7478:2 7479:1 7504:2 7522:1 7529:2 7535:1 7550:2 7561:1 7569:1 7574:7 7578:2 7598:1 7611:1 7615:1 7621:1 7624:3 7625:2 7632:1 7636:6 7638:1 7640:1 7642:1 7645:5 7648:1 7651:1 7656:1 7674:1 7679:1 7680:1 7681:1 7684:1 7695:1 7701:1 7726:1 7729:1 7737:4 7747:5 7759:1 7771:1 7792:3 7795:1 7796:1 7798:1 7805:1 7812:1 7818:1 7824:1 7827:1 7829:1 7835:1 7839:1 7846:1 7853:1 7869:1 7897:1 7919:1 7925:1 7930:1 7933:2 7971:1 7984:1 7985:2 7986:6 7991:4 7996:1 7997:1 7999:1 8004:1 8006:3 8010:1 8032:6 8034:2 8036:2 8037:1 8061:1 8064:3 8074:1 8081:1 8093:1 8106:1 8108:2 8110:2 8117:1 8127:1 8131:1 8134:1 8140:1 8152:1 8153:1 8160:1 8161:2 8163:1 8168:1 8175:2 8178:1 8189:1 8190:1 8198:1 8218:4 8235:4 8236:9 8250:2 8257:4 8258:1 8262:4 8263:3 8265:1 8278:1 8287:4 8288:3 8290:1 8303:50 8306:2 8315:1 8323:1 8326:11 8327:9 8331:2 8337:1 8367:1 8374:1 8375:1 8384:1 8387:2 8397:1 8404:3 8405:2 8411:1 8421:1 8424:2 8433:2 8445:3 8455:1 8459:1 8461:1 8468:1 8480:2 8486:1 8488:1 8492:2 8498:1 8504:1 8512:1 8514:2 8541:1 8548:1 8550:1 8553:2 8557:1 8558:3 8562:1 8588:1 8591:1 8592:1 8593:1 8605:2 8609:3 8653:1 8663:1 8681:1 8691:1 8696:2 8698:1 8707:1 8722:1 8723:1 8725:1 8734:1 8737:1 8742:1 8755:2 8765:1 8768:1 8775:1 8777:1 8778:3 8788:1 8797:1 8815:1 8816:2 8835:27 8843:1 8844:1 8865:3 8868:3 8870:1 8876:1 8900:1 8911:1 8935:6 8937:1 8938:1 8943:1 8969:1 8974:1 8990:5 8993:2 8994:2 8996:1 9001:1 9002:1 9019:1 9030:2 9031:4 9038:3 9044:1 9049:1 9065:2 9066:1 9069:1 9076:1 9080:1 9088:1 9090:1 9104:1 9109:1 9110:2 9119:1 9120:1 9128:1 9129:2 9139:2 9141:2 9142:1 9154:2 9176:1 9201:1 9204:1 9205:1 9209:1 9211:1 9216:1 9239:3 9242:2 9255:7 9257:1 9267:2 9271:3 9291:2 9302:1 9303:1 9312:1 9319:2 9323:1 9324:2 9333:1 9340:1 9345:1 9365:2 9375:1 9393:2 9404:1 9431:1 9436:1 9437:1 9449:1 9450:1 9460:1 9485:1 9486:1 9487:1 9501:3 9510:1 9533:1 9536:2 9537:1 9541:3 9577:3 9586:1 9594:2 9606:1 9613:1 9618:1 9636:1 9642:1 9643:1 9644:1 9646:1 9651:1 9655:2 9661:1 9662:8 9663:1 9668:1 9670:1 9675:2 9687:1 9695:2 9697:1 9708:7 9709:1 9719:2 9732:1 9740:1 9755:2 9759:1 9768:11 9769:6 9778:1 9784:2 9794:3 9806:1 9830:3 9837:1 9844:1 9849:1 9853:3 9855:1 9872:1 9878:1 9882:2 9884:2 9886:3 9888:2 9898:1 9907:2 9919:1 9928:1 9949:1 9950:1 9960:2 9963:1 9969:1 9972:5 9974:2 9976:1 9981:1 9988:1 9995:1 9996:4 9999:2 10005:1 10006:1 10021:4 10050:1 10064:1 10080:1 10089:1 10108:1 10111:3 10118:1 10122:3 10128:1 10142:1 10145:1 10147:1 10154:1 10156:1 10159:1 10180:1 10183:1 10197:1 10201:1 10211:1 10220:8 10226:3 10264:3 10268:1 10283:1 10284:1 10298:3 10302:1 10330:1 10351:1 10352:2 10358:1 10363:1 10365:3 10366:3 10369:2 10374:1 10399:1 10406:2 10408:2 10437:2 10439:1 10447:1 10458:1 10494:2 10511:1 10517:1 10530:2 10535:1 10537:1 10542:2 10554:1 10557:1 10558:1 10576:1 10587:1 10603:1 10606:1 10611:2 10612:1 10626:1 10627:1 10630:1 10657:1 10662:1 10663:1 10665:1 10670:1 10674:5 10690:4 10702:4 10707:2 10717:1 10738:2 10751:1 10762:3 10764:1 10772:1 10784:2 10807:1 10813:2 10818:2 10835:1 10839:1 10841:1 10850:1 10854:1 10861:4 10864:1 10901:2 10907:1 10911:13 10913:1 10914:2 10919:2 10927:1 10948:2 10949:2 10969:1 10973:1 10980:1 10989:1 10991:1 11018:1 11040:1 11047:2 11049:1 11074:1 11091:1 11094:1 11109:1 11110:1 11112:1 11114:1 11115:1 11117:1 11121:4 11129:1 11131:1 11136:2 11169:1 11177:1 11181:4 11182:1 11185:1 11187:1 11189:1 11194:1 11196:3 11205:1 11207:1 11210:1 11213:2 11224:4 11244:1 11265:1 11277:1 11283:1 11284:1 11287:1 11291:1 11298:1 11299:1 11300:2 11301:1 11303:2 11306:1 11319:2 11323:1 11330:1 11336:1 11337:1 11345:1 11348:3 11353:1 11355:1 11360:2 11362:1 11365:1 11371:1 11373:7 11376:4 11389:2 11390:3 11395:1 11402:1 11413:1 11417:1 11419:2 11432:1 11447:2 11462:7 11463:2 11483:2 11485:1 11486:1 11498:4 11524:1 11541:1 11544:1 11550:3 11562:2 11570:1 11573:7 11588:2 11597:1 11605:1 11609:1 11624:3 11664:1 11677:1 11700:1 11731:1 11737:1 11744:1 11750:1 11767:1 11770:1 11791:1 11792:2 11796:3 11800:1 11801:2 11807:1 11811:2 11815:1 11816:1 11817:5 11819:6 11820:1 11826:1 11827:1 11832:1 11834:2 11838:3 11842:1 11845:4 11849:1 11851:1 11853:1 11865:1 11867:1 11868:3 11872:3 11877:1 11889:1 11901:3 11907:1 11910:2 11935:1 11937:1 11939:4 11944:1 11983:1 11986:1 12007:1 12021:2 12023:1 12026:2 12061:1 12094:1 12102:1 12107:1 12113:1 12114:1 12115:1 12118:1 12131:1 12133:1 12137:3 12151:1 12156:1 12179:1 12192:1 12195:1 12202:2 12204:1 12219:3 12222:2 12227:1 12228:1 12241:2 12245:2 12247:1 12249:1 12250:2 12252:1 12260:3 12262:1 12263:1 12264:2 12269:1 12272:1 12278:1 12285:3 12287:2 12293:1 12297:1 12324:21 12325:1 12356:1 12365:1 12369:5 12383:2 12384:2 12387:1 12391:2 12396:1 12416:1 12418:2 12429:3 12430:1 12441:1 12442:3 12449:2 12450:1 12464:1 12483:1 12497:1 12501:1 12521:1 12528:1 12544:1 12553:1 12566:1 12568:1 12574:3 12575:1 12578:1 12579:1 12584:1 12587:1 12592:5 12596:1 12597:2 12599:1 12603:2 12604:1 12611:1 12614:1 12624:1 12636:1 12640:1 12641:1 12643:1 12649:2 12652:5 12655:5 12683:1 12718:1 12741:2 12745:1 12760:1 12767:2 12783:1 12799:1 12801:1 12808:1 12818:2 12829:1 12845:1 12853:1 12855:1 12856:1 12863:6 12872:1 12883:2 12886:1 12887:2 12901:1 12907:1 12916:1 12918:1 12925:2 12931:2 12955:2 12958:1 12971:2 12982:1 12983:2 13003:1 13025:2 13030:1 13043:1 13047:1 13049:2 13052:1 13059:2 13070:1 13094:1 13118:1 13125:1 13127:1 13128:1 13132:5 13133:4 13134:2 13149:2 13155:2 13168:1 13172:1 13174:1 13182:1 13195:1 13235:1 13237:2 13240:1 13264:1 13271:1 13276:1 13280:1 13291:1 13303:1 13310:1 13327:1 13332:1 13338:1 13356:1 13427:3 13456:2 13473:1 13489:1 13493:1 13495:1 13502:1 13515:1 13531:1 13533:2 13534:1 13552:3 13566:1 13569:1 13582:1 13591:1 13601:1 13626:1 13654:1 13663:1 13666:1 13669:1 13670:3 13677:1 13699:1 13718:15 13723:6 13737:2 13762:1 13776:2 13777:3 13785:4 13805:1 13811:1 13817:2 13818:1 13828:1 13838:2 13839:1 13847:1 13881:1 13900:1 13906:1 13913:1 13914:1 13920:2 13927:1 13939:2 13949:1 13957:1 13959:1 13975:1 13978:1 13998:1 14000:1 14007:1 14010:2 14011:1 14020:1 14023:1 14026:1 14027:1 14048:1 14058:1 14064:5 14084:2 14085:1 14110:1 14129:1 14146:1 14149:1 14176:1 14186:2 14190:1 14199:1 14201:1 14204:4 14208:4 14223:1 14224:2 14228:2 14230:2 14240:3 14245:1 14262:8 14266:1 14279:1 14284:2 14307:1 14314:4 14316:1 14330:1 14347:1 14352:2 14354:1 14355:1 14356:2 14369:9 14370:1 14381:3 14385:1 14403:1 14408:1 14416:1 14417:1 14422:2 14429:1 14437:1 14438:1 14453:20 14462:1 14466:1 14488:1 14503:2 14504:2 14510:3 14525:1 14532:2 14550:2 14560:1 14561:1 14603:3 14630:1 14635:6 14641:1 14658:1 14664:2 14670:1 14673:1 14695:5 14722:1 14732:1 14734:1 14737:1 14746:3 14748:1 14749:2 14756:1 14760:1 14762:1 14769:6 14770:1 14773:1 14774:2 14775:1 14777:2 14778:1 14782:8 14783:3 14803:1 14806:1 14810:1 14811:1 14814:1 14816:1 14818:1 14840:1 14846:1 14867:1 14873:1 14894:1 14906:2 14911:2 14921:1 14933:1 14948:1 14958:1 14967:7 14968:1 15004:1 15010:1 15013:1 15015:1 15022:1 15024:1 15025:1 15032:1 15033:1 15046:2 15049:1 15074:2 15079:1 15080:1 15091:1 15092:1 15094:1 15098:8 15109:1 15111:1 15121:1 15123:3 15128:1 15142:1 15163:1 15174:1 15175:2 15185:2 15191:1 15202:1 15210:1 15213:1 15215:1 15224:1 15236:2 15258:1 15265:1 15266:1 15272:1 15278:1 15283:1 15293:1 15300:1 15304:1 15312:1 15315:1 15353:1 15362:2 15379:5 15395:1 15401:1 15414:1 15434:1 15446:1 15468:1 15488:1 15514:1 15517:3 15518:4 15527:1 15540:2 15541:2 15544:1 15548:1 15550:2 15552:1 15570:1 15573:1 15581:1 15592:2 15606:1 15617:1 15625:2 15651:1 15653:1 15661:1 15675:2 15680:1 15683:1 15698:1 15703:1 15705:1 15707:1 15712:2 15714:1 15723:2 15725:3 15729:2 15782:1 15786:2 15790:1 15804:2 15806:1 15821:2 15841:1 15842:2 15844:1 15851:1 15856:2 15870:1 15880:1 15883:1 15902:1 15906:1 15922:3 15928:1 15938:1 15941:2 15947:1 15972:1 15973:1 15978:1 16029:1 16032:1 16035:3 16073:2 16078:2 16079:1 16081:1 16085:1 16090:1 16100:1 16109:2 16120:1 16157:1 16160:3 16168:1 16188:1 16189:1 16192:2 16196:1 16198:1 16199:1 16231:1 16269:1 16298:1 16302:1 16308:1 16314:2 16351:1 16364:1 16406:1 16424:2 16435:1 16442:1 16464:1 16476:1 16479:1 16481:2 16492:1 16511:2 16516:3 16520:1 16545:1 16551:1 16553:1 16563:1 16567:2 16585:3 16592:1 16614:1 16616:1 16627:2 16641:1 16652:2 16676:1 16686:1 16687:2 16701:6 16720:4 16731:1 16739:5 16752:3 16777:1 16782:1 16790:1 16800:1 16807:2 16810:1 16815:2 16869:1 16883:2 16884:1 16897:2 16905:1 16909:1 16913:4 16914:1 16918:1 16920:1 16926:1 16937:2 16940:4 16941:1 16945:1 16948:1 16962:2 16968:1 16980:1 16999:2 17008:2 17039:1 17052:2 17055:1 17062:1 17079:3 17089:2 17101:1 17104:1 17105:3 17120:1 17135:3 17140:1 17150:1 17151:1 17157:1 17164:1 17198:1 17200:1 17224:1 17230:1 17233:1 17234:1 17237:1 17239:18 17241:1 17255:1 17256:1 17258:1 17260:3 17262:1 17285:3 17327:2 17344:1 17349:2 17360:4 17363:1 17380:2 17383:1 17392:2 17401:1 17428:1 17435:1 17442:1 17444:1 17445:1 17454:2 17456:1 17464:1 17482:1 17486:3 17489:1 17504:1 17511:1 17516:6 17518:2 17519:2 17520:6 17521:2 17523:1 17527:2 17529:1 17531:2 17532:5 17537:1 17538:1 17540:1 17544:1 17546:2 17548:1 17555:1 17570:1 17581:2 17590:1 17592:1 17598:1 17607:1 17627:1 17636:1 17637:1 17652:1 17655:2 17656:1 17657:1 17664:1 17688:1 17692:2 17697:1 17699:1 17708:2 17709:2 17729:2 17736:1 17762:1 17774:1 17776:1 17804:1 17808:1 17816:1 17827:1 17831:1 17868:1 17872:1 17874:1 17884:3 17899:1 17902:2 17915:2 17916:1 17925:1 17930:5 17937:1 17941:2 17954:1 17965:1 17966:1 17972:2 17975:4 17980:2 17981:1 17985:1 17987:1 17994:4 17998:2 18008:4 18016:1 18026:1 18071:14 18073:1 18086:1 18088:1 18095:2 18096:4 18097:2 18102:1 18171:1 18172:1 18183:2 18191:1 18201:4 18211:1 18212:1 18225:1 18233:4 18236:2 18266:1 18269:1 18284:1 18286:2 18291:1 18307:5 18308:1 18322:1 18326:1 18340:1 18341:1 18344:1 18361:1 18379:1 18423:2 18424:4 18425:1 18438:1 18440:1 18443:1 18453:1 18475:1 18490:1 18491:1 18494:1 18514:1 18517:1 18530:2 18533:1 18548:1 18556:1 18565:2 18572:1 18577:2 18585:1 18587:2 18593:1 18597:1 18617:1 18618:1 18662:1 18670:1 18707:1 18712:1 18731:1 18734:1 18742:1 18755:1 18760:1 18762:1 18775:3 18779:1 18791:3 18796:1 18800:1 18801:1 18810:3 18814:2 18815:2 18819:2 18824:1 18825:10 18852:1 18872:1 18877:2 18880:1 18885:3 18887:1 18892:1 18898:3 18905:1 18908:2 18909:1 18910:1 18962:1 18982:1 18983:1 19004:4 19009:1 19023:1 19033:2 19047:1 19050:1 19054:1 19061:1 19070:1 19071:1 19101:1 19102:1 19103:1 19104:1 19120:1 19123:1 19130:1 19134:2 19147:1 19166:1 19171:1 19202:1 19207:1 19220:1 19225:1 19226:3 19231:1 19233:1 19236:1 19243:1 19246:1 19267:1 19299:1 19337:2 19376:1 19378:1 19390:1 19391:2 19411:2 19421:1 19450:1 19514:2 19515:1 19525:1 19538:1 19543:1 19553:1 19565:1 19575:1 19581:1 19592:1 19593:1 19600:1 19607:1 19610:1 19619:1 19631:1 19651:1 19656:3 19661:1 19670:1 19709:1 19719:15 19731:1 19750:1 19780:1 19805:1 19806:1 19826:14 19832:1 19833:4 19834:2 19840:1 19843:1 19846:6 19847:1 19863:1 19872:1 19876:3 19897:1 19915:2 19948:6 19971:2 19979:1 19988:2 19990:1 19993:1 20016:3 20020:1 20023:2 20027:1 20041:2 20047:1 20053:2609 20064:1 20070:1 20083:1 20085:1 20086:1 20087:1 20098:1 20126:1 20132:1 20134:1 20136:1 20150:1 20160:2 20181:1 20185:1 20212:2 20217:1 20218:1 20229:1 20241:1 20262:1 20264:1 20267:1 20271:2 20274:6 20275:4 20286:1 20292:1 20294:1 20298:1 20308:1 20315:1 20320:1 20327:1 20338:1 20350:1 20364:1 20368:1 20373:1 20375:1 20420:1 20422:3 20425:2 20431:1 20444:1 20469:1 20482:1 20486:2 20489:1 20490:3 20497:2 20517:1 20528:2 20533:1 20545:1 20546:2 20547:1 20557:2 20558:1 20567:1 20579:1 20584:1 20587:1 20605:2 20618:1 20630:2 20637:1 20642:1 20644:1 20647:2 20649:2 20651:2 20660:1 20669:1 20679:2 20681:1 20701:2 20702:3 20715:3 20721:1 20724:1 20732:3 20757:3 20759:1 20765:1 20768:1 20769:1 20774:1 20778:1 20781:2 20785:1 20787:9 20792:1 20813:1 20815:1 20833:1 20838:2 20839:1 20848:2 20864:5 20871:1 20882:1 20884:2 20901:1 20917:1 20926:4 20933:1 20935:2 20941:1 20943:2 20956:4 20957:1 20968:1 20974:1 20979:2 20999:1 21004:1 21005:4 21013:2 21014:1 21022:3 21061:4 21062:2 21065:1 21070:1 21075:1 21089:1 21093:2 21095:2 21098:2 21103:1 21105:1 21106:2 21109:1 21121:1 21132:2 21143:1 21148:1 21149:1 21150:1 21152:1 21157:1 21168:1 21202:1 21219:1 21220:3 21237:1 21239:2 21241:1 21242:1 21246:1 21249:1 21250:3 21254:1 21273:1 21277:1 21281:1 21283:1 21288:1 21295:1 21302:2 21308:1 21313:2 21320:1 21322:2 21330:2 21331:1 21336:1 21341:1 21342:1 21354:1 21361:1 21362:1 21371:1 21376:2 21379:4 21385:1 21387:4 21446:1 21451:1 21453:1 21463:1 21466:3 21475:1 21478:1 21482:2 21483:2 21486:2 21501:2 21503:3 21507:3 21511:3 21518:1 21519:3 21523:2 21524:1 21544:5 21555:3 21571:1 21573:1 21583:1 21586:1 21587:1 21590:2 21591:4 21613:1 21614:2 21627:1 21628:1 21633:1 21652:2 21654:3 21667:1 21673:1 21676:2 21678:3 21699:1 21700:1 21711:3 21712:22 21713:2 21719:1 21727:5 21733:1 21756:2 21759:1 21767:1 21789:3 21798:1 21799:1 21813:1 21818:1 21822:1 21828:1 21853:1 21859:1 21860:1 21861:1 21881:1 21887:1 21897:1 21902:1 21907:1 21926:1 21940:4 21960:2 21982:2 21990:1 22001:2 22015:1 22018:1 22027:1 22032:2 22066:8 22069:1 22071:2 22078:1 22085:1 22086:1 22119:1 22120:1 22121:1 22128:1 22134:1 22140:1 22174:1 22177:1 22185:4 22202:4 22221:1 22225:1 22228:1 22231:1 22235:1 22236:1 22244:1 22247:2 22282:2 22288:3 22298:2 22300:3 22314:3 22316:1 22319:2 22323:1 22325:1 22326:1 22337:2 22343:1 22370:5 22390:2 22391:1 22398:1 22402:1 22413:1 22417:2 22421:3 22432:2 22451:1 22452:2 22466:1 22473:1 22478:2 22479:1 22488:5 22492:1 22496:2 22501:1 22503:1 22508:2 22519:3 22546:2 22554:1 22557:1 22567:2 22590:1 22591:1 22592:1 22602:2 22615:2 22621:2 22624:2 22628:2 22632:2 22635:1 22643:2 22663:1 22665:1 22671:2 22685:2 22699:2 22715:1 22716:4 22723:1 22724:1 22726:4 22739:1 22741:1 22750:2 22755:1 22758:1 22760:1 22768:1 22769:1 22773:2 22774:1 22779:1 22781:1 22790:1 22793:1 22794:1 22804:1 22811:1 22815:1 22838:1 22846:2 22855:1 22857:1 22862:2 22864:1 22865:1 22866:3 22872:1 22875:1 22879:1 22893:1 22939:1 22996:2 23014:2 23017:1 23026:2 23027:2 23031:1 23032:1 23038:1 23039:1 23043:1 23045:1 23056:1 23063:2 23070:3 23071:1 23081:1 23090:1 23104:1 23121:1 23131:1 23137:1 23147:1 23158:1 23159:1 23181:2 23183:1 23184:1 23185:1 23190:1 23194:1 23195:2 23199:1 23200:1 23210:1 23213:1 23217:2 23222:2 23228:2 23229:1 23230:1 23236:2 23237:1 23238:1 23239:1 23249:1 23251:2 23262:1 23271:14 23281:2 23282:2 23288:2 23298:1 23313:1 23323:1 23326:1 23328:1 23337:1 23340:1 23345:2 23347:1 23348:2 23349:1 23352:1 23355:1 23377:1 23389:1 23410:2 23418:1 23426:2 23429:1 23434:1 23437:6 23439:3 23442:1 23452:2 23466:1 23467:1 23468:1 23475:1 23477:1 23496:1 23497:1 23498:1 23500:3 23502:4 23503:2 23506:1 23522:1 23537:1 23540:1 23576:1 23605:4 23613:1 23614:5 23616:3 23617:3 23619:1 23620:1 23625:1 23628:2 23631:1 23632:2 23643:1 23644:1 23645:5 23655:1 23656:1 23659:1 23661:1 23662:1 23674:1 23682:1 23693:2 23697:2 23700:2 23721:1 23738:1 23749:1 23751:1 23778:2 23783:2 23795:1 23796:1 23799:1 23801:1 23811:1 23823:1 23834:1 23850:1 23853:1 23858:1 23859:1 23862:1 23865:3 23867:2 23882:2 23886:1 23887:1 23897:1 23900:1 23912:2 23915:1 23922:5 23929:1 23939:1 23940:4 23943:3 23946:1 23952:1 23969:1 23977:1 23982:1 23986:1 23990:2 23993:1 23997:1 23998:1 24001:1 24002:4 24010:2 24016:1 24026:2 24030:10 24033:1 24037:2 24044:1 24046:1 24050:1 24053:1 24073:1 24074:1 24108:9 24111:1 24126:1 24150:1 24162:1 24172:6 24173:1 24175:1 24178:1 24179:1 24184:1 24192:1 24197:1 24199:1 24221:1 24222:3 24238:1 24248:1 24250:4 24260:1 24278:1 24289:2 24290:1 24291:7 24294:2 24305:3 24308:1 24309:4 24319:1 24325:1 24329:1 24332:1 24346:1 24349:5 24361:1 24370:1 24371:3 24373:1 24376:3 24386:1 24396:1 24408:1 24414:1 24419:1 24426:1 24432:1 24447:1 24451:1 24479:1 24486:1 24495:1 24499:1 24500:1 24502:1 24517:1 24531:2 24549:10 24550:3 24558:1 24568:2 24574:1 24578:3 24585:4 24590:1 24594:1 24598:3 24608:2 24609:1 24611:1 24624:1 24635:1 24661:1 24671:1 24681:1 24682:1 24685:2 24688:2 24706:1 24708:1 24711:1 24742:1 24744:1 24746:1 24749:1 24750:1 24752:2 24762:1 24774:1 24776:2 24784:1 24789:1 24795:2 24799:1 24806:2 24808:1 24814:1 24842:1 24851:3 24883:3 24899:1 24940:3 24969:1 24996:3 25000:3 25008:7 25018:2 25027:1 25033:1 25036:3 25039:1 25051:2 25054:2 25056:3 25066:1 25080:4 25122:1 25130:1 25137:1 25138:1 25160:1 25168:1 25172:1 25184:1 25196:1 25199:4 25205:1 25230:1 25232:1 25240:3 25246:1 25259:2 25268:1 25273:2 25283:1 25286:1 25298:1 25304:1 25314:1 25315:2 25318:4 25320:3 25329:1 25331:1 25343:1 25345:1 25352:1 25366:3 25367:1 25368:2 25371:2 25376:1 25384:1 25388:1 25391:1 25396:1 25446:1 25447:1 25450:4 25451:1 25453:1 25458:1 25462:1 25469:1 25471:1 25472:4 25474:1 25477:1 25478:1 25479:1 25481:1 25485:1 25502:1 25511:1 25535:3 25537:1 25549:1 25605:3 25615:1 25618:2 25633:1 25652:2 25659:1 25674:1 25687:1 25703:1 25715:1 25718:2 25727:2 25729:1 25739:1 25754:1 25770:1 25772:1 25776:1 25786:1 25793:2 25796:1 25803:1 25817:2 25840:1 25851:1 25861:1 25885:1 25898:1 25900:2 25909:1 25937:2 25940:1 25963:2 25977:4 25989:1 26010:1 26021:1 26022:8 26030:1 26041:1 26048:1 26050:1 26055:3 26059:1 26066:1 26075:1 26076:1 26081:1 26086:5 26095:1 26097:1 26098:1 26103:1 26111:1 26135:4 26157:4 26161:2 26167:1 26168:2 26214:1 26250:1 26253:1 26255:1 26288:1 26289:1 26291:1 26292:1 26300:1 26301:2 26304:3 26305:4 26308:1 26309:2 26311:1 26313:1 26317:2 26318:1 26319:1 26320:1 26329:1 26342:1 26356:6 26365:1 26373:2 26374:1 26376:1 26380:1 26391:1 26395:1 26397:1 26399:1 26420:12 26425:6 26426:1 26445:1 26447:2 26450:1 26456:1 26457:1 26459:1 26473:1 26477:1 26479:1 26483:2 26488:3 26495:3 26512:1 26515:1 26530:1 26536:1 26588:1 26593:1 26616:1 26632:1 26634:1 26648:3 26651:1 26659:1 26668:1 26669:1 26674:3 26683:2 26687:1 26690:1 26696:3 26698:2 26703:1 26734:1 26736:1 26749:1 26756:1 26758:2 26760:1 26766:1 26767:1 26775:1 26776:1 26787:1 26793:1 26794:1 26803:5 26828:2 26833:1 26836:1 26844:1 26847:1 26857:2 26862:2 26872:1 26875:3 26876:1 26880:1 26895:1 26901:1 26902:1 26928:1 26929:18 26930:2 26942:1 26962:1 26964:1 26973:1 26974:1 26986:1 27000:1 27012:1 27019:2 27024:1 27029:1 27048:2 27051:1 27055:1 27059:1 27060:1 27078:1 27083:1 27088:1 27092:1 27094:1 27112:1 27123:1 27134:1 27163:1 27164:1 27174:1 27192:12 27193:1 27202:1 27218:1 27230:1 27233:2 27234:1 27253:1 27265:1 27271:1 27272:1 27279:3 27290:1 27298:1 27304:1 27312:7 27315:1 27336:1 27338:1 27340:2 27341:1 27368:1 27375:1 27381:3 27387:1 27393:1 27398:1 27410:1 27428:1 27443:2 27448:2 27450:1 27465:2 27484:1 27486:1 27498:1 27514:1 27519:2 27528:1 27577:1 27579:2 27590:1 27603:1 27606:1 27613:1 27619:1 27622:1 27627:3 27633:5 27636:1 27643:1 27645:1 27646:2 27657:1 27662:1 27669:1 27673:1 27701:7 27711:1 27713:1 27716:1 27728:1 27729:8 27746:2 27748:2 27750:1 27765:1 27773:1 27777:1 27784:4 27785:1 27786:1 27793:1 27796:1 27810:1 27818:1 27820:1 27854:1 27858:1 27866:1 27873:2 27889:1 27893:1 27901:1 27927:1 27933:1 27940:3 27947:1 27970:1 27977:1 28000:1 28001:1 28010:1 28025:1 28026:1 28027:1 28038:2 28041:1 28047:1 28048:1 28049:3 28064:1 28065:1 28071:1 28072:1 28076:2 28078:1 28092:1 28098:1 28106:3 28108:1 28131:1 28142:5 28153:1 28168:1 28186:1 28191:1 28200:2 28202:1 28210:2 28211:1 28213:1 28227:2 28228:16 28239:2 28265:1 28268:1 28282:1 28289:4 28291:2 28292:1 28303:1 28304:1 28305:1 28309:2 28317:1 28322:1 28326:2 28328:2 28337:1 28343:1 28348:1 28356:4 28360:3 28368:3 28371:3 28373:4 28375:1 28392:1 28403:1 28406:1 28410:1 28456:1 28462:1 28463:1 28475:2 28481:1 28497:1 28500:1 28501:2 28502:1 28515:1 28531:2 28551:2 28564:1 28568:2 28569:1 28572:1 28573:2 28583:2 28594:6 28595:1 28596:1 28605:1 28608:1 28609:1 28611:1 28618:2 28627:1 28630:1 28634:1 28637:1 28667:1 28671:2 28673:2 28691:2 28699:1 28727:1 28744:1 28768:1 28777:1 28788:3 28814:1 28816:2 28817:1 28846:1 28851:1 28857:1 28860:1 28863:6 28878:1 28883:1 28884:1 28921:1 28925:1 28931:1 28932:1 28945:1 28949:1 28954:3 28959:1 28963:1 28975:1 28983:2 28986:2 28988:2 28990:2 28998:3 29014:1 29017:1 29034:1 29043:1 29045:1 29050:2 29067:1 29078:2 29085:1 29086:2 29093:1 29095:1 29111:1 29132:1 29144:2 29158:2 29163:5 29166:1 29168:1 29171:1 29172:2 29182:1 29184:2 29187:1 29190:1 29191:2 29196:1 29204:1 29210:1 29218:1 29227:3 29238:2 29240:1 29241:2 29244:1 29247:1 29250:1 29259:2 29260:2 29281:1 29295:1 29302:1 29312:1 29314:1 29318:2 29322:1 29354:1 29373:6 29375:3 29377:2 29401:1 29404:1 29406:1 29438:1 29446:2 29453:1 29460:2 29465:2 29469:1 29473:2 29482:1 29484:1 29487:1 29494:2 29501:1 29508:1 29514:1 29516:1 29523:1 29524:1 29529:4 29530:1 29531:1 29532:1 29536:3 29539:1 29543:2 29546:1 29549:1 29556:3 29566:2 29571:1 29574:1 29579:1 29580:1 29613:1 29615:1 29630:1 29641:5 29656:1 29663:2 29688:2 29700:1 29709:1 29763:1 29766:2 29785:1 29787:1 29798:1 29804:1 29805:2 29824:1 29831:2 29844:1 29848:1 29849:1 29853:1 29855:3 29862:5 29872:1 29876:1 29879:1 29883:1 29891:1 29900:1 29921:7 29952:2 29954:1 29964:1 29969:1 29985:1 29988:1 30006:1 30009:1 30014:1 30019:2 30034:2 30039:1 30051:1 30063:1 30065:1 30082:1 30100:1 30105:1 30109:1 30110:2 30114:1 30124:2 30133:2 30134:3 30135:1 30138:1 30140:1 30146:3 30150:1 30151:1 30152:2 30169:1 30171:2 30180:1 30181:5 30196:1 30203:1 30204:1 30205:1 30220:3 30226:2 30228:2 30229:1 30231:1 30235:1 30238:5 30244:1 30251:3 30252:1 30261:3 30263:1 30275:3 30279:1 30283:3 30285:1 30296:1 30309:1 30316:3 30332:1 30336:1 30354:1 30356:1 30362:1 30377:1 30392:3 30397:5 30406:7 30411:1 30428:1 30438:5 30453:1 30457:1 30462:1 30470:1 30471:1 30484:1 30491:1 30493:1 30495:1 30515:1 30525:1 30527:7 30532:1 30537:2 30571:1 30574:1 30583:1 30604:1 30614:1 30629:1 30634:1 30635:1 30643:1 30645:1 30646:2 30651:2 30656:1 30670:1 30673:3 30709:1 30710:1 30711:1 30717:7 30719:2 30729:1 30730:1 30735:2 30750:1 30751:1 30786:6 30810:1 30865:1 30871:1 30879:1 30882:1 30886:1 30916:1 30926:1 30952:1 30955:1 30971:1 31003:1 31004:1 31028:2 31043:1 31046:1 31047:2 31048:3 31053:2 31055:3 31068:1 31072:2 31074:1 31082:1 31086:1 31092:1 31103:1 31124:1 31136:1 31143:1 31152:1 31168:1 31184:1 31194:3 31198:1 31204:2 31233:2 31238:2 31239:2 31257:1 31259:1 31272:1 31274:1 31284:1 31287:1 31289:1 31296:1 31301:1 31308:4 31309:1 31313:2 31315:1 31323:1 31337:1 31343:1 31345:1 31348:4 31351:2 31377:1 31382:1 31405:1 31413:1 31422:1 31431:1 31443:1 31467:1 31473:1 31478:3 31484:1 31487:1 31505:1 31516:3 31519:1 31542:1 31577:2 31580:2 31599:1 31600:1 31606:1 31608:3 31615:3 31617:4 31618:1 31623:1 31632:1 31665:1 31675:1 31677:5 31682:1 31686:1 1 13:2 40:1 43:1 46:1 53:1 62:1 65:1 66:1 72:1 84:1 86:1 106:2 141:1 155:1 156:4 161:1 167:2 173:1 188:2 190:3 202:1 204:1 207:6 209:1 226:1 231:1 238:1 244:1 263:1 264:1 274:1 278:7 287:1 297:3 307:1 328:2 354:1 371:5 373:3 378:3 380:1 387:3 391:1 397:2 416:3 430:1 438:2 454:6 458:6 471:1 485:2 490:1 522:1 526:2 527:1 533:1 559:1 561:2 588:1 596:1 600:2 614:1 620:1 630:1 634:3 645:1 659:1 665:1 667:4 674:2 678:1 693:3 704:1 729:1 765:1 767:1 783:1 785:1 810:1 815:1 817:1 826:1 829:3 830:1 831:1 854:1 856:2 860:1 863:2 871:1 900:7 906:1 911:1 917:2 918:4 922:2 927:1 942:16 943:4 952:5 975:4 984:1 992:1 993:4 995:2 998:11 1000:1 1001:3 1004:4 1018:2 1025:1 1033:1 1042:5 1044:4 1050:1 1055:1 1056:1 1095:2 1104:1 1121:1 1142:1 1159:1 1177:1 1178:1 1198:1 1210:3 1214:1 1217:2 1275:3 1277:3 1283:1 1285:2 1287:1 1295:2 1298:1 1299:2 1312:1 1315:1 1325:1 1326:1 1328:1 1332:2 1343:1 1351:2 1356:2 1362:1 1365:1 1367:1 1380:1 1386:2 1389:1 1408:1 1414:1 1417:1 1426:1 1429:1 1432:1 1433:1 1451:1 1457:1 1466:1 1468:1 1470:1 1485:1 1500:1 1527:1 1530:1 1540:1 1541:2 1557:1 1564:1 1565:2 1582:1 1584:1 1587:2 1594:1 1595:3 1602:1 1613:1 1629:1 1630:1 1632:2 1635:1 1647:1 1654:1 1674:1 1686:4 1694:8 1696:2 1705:1 1713:1 1732:1 1743:2 1751:1 1754:1 1763:1 1767:4 1783:1 1786:1 1788:1 1791:2 1799:1 1804:3 1813:1 1818:1 1820:1 1824:1 1825:2 1835:2 1839:3 1850:1 1854:1 1857:1 1863:1 1867:2 1871:1 1875:1 1881:1 1882:1 1886:2 1897:1 1900:1 1905:1 1914:1 1919:1 1920:2 1923:1 1939:2 1944:1 1945:5 1950:1 1953:1 1954:1 1965:1 1971:1 1974:3 1978:1 1979:2 1993:2 1994:6 2027:5 2030:3 2043:1 2051:1 2054:1 2055:1 2060:2 2065:4 2070:1 2071:1 2074:1 2089:2 2093:1 2102:1 2103:3 2112:1 2113:1 2121:3 2127:2 2128:1 2129:1 2143:3 2146:1 2162:1 2173:1 2189:1 2192:2 2198:9 2201:1 2207:1 2210:2 2214:1 2215:7 2219:1 2220:2 2222:2 2226:1 2230:2 2236:1 2243:2 2247:1 2255:1 2266:1 2268:1 2272:1 2283:1 2296:2 2300:2 2301:1 2306:2 2308:2 2323:1 2335:1 2349:1 2354:11 2361:2 2370:1 2376:1 2379:1 2393:1 2402:1 2423:3 2436:5 2438:1 2439:1 2450:1 2458:1 2464:2 2477:3 2478:2 2480:1 2482:3 2485:5 2487:2 2489:2 2491:2 2494:2 2495:2 2497:1 2499:4 2501:1 2502:5 2505:1 2506:1 2507:1 2508:5 2509:4 2514:5 2515:7 2517:1 2520:2 2528:1 2562:1 2565:2 2568:3 2571:3 2576:1 2586:1 2593:2 2595:1 2597:1 2603:1 2617:1 2618:1 2623:1 2631:1 2637:1 2639:1 2657:1 2671:1 2680:1 2695:1 2706:3 2718:1 2720:1 2722:1 2728:1 2734:1 2739:3 2751:2 2752:1 2764:1 2765:1 2771:1 2776:1 2779:2 2800:3 2803:2 2806:1 2808:7 2812:1 2813:1 2814:1 2824:1 2827:1 2835:1 2849:4 2851:2 2852:1 2857:2 2873:2 2881:2 2883:1 2884:1 2885:2 2897:7 2906:2 2911:1 2913:2 2916:10 2924:6 2928:1 2937:2 2939:1 2943:1 2945:2 2947:1 2950:3 2951:2 2967:4 2981:1 2982:3 2987:4 2991:1 2995:2 3001:1 3029:1 3034:1 3035:2 3036:2 3041:1 3050:4 3052:1 3056:1 3060:7 3065:2 3066:1 3069:1 3085:1 3089:1 3096:1 3122:1 3127:3 3128:1 3146:5 3152:1 3157:1 3159:17 3169:1 3178:3 3180:1 3185:1 3186:1 3190:1 3199:2 3203:3 3204:1 3206:1 3224:23 3225:3 3234:1 3235:1 3246:2 3249:3 3269:2 3280:1 3283:2 3299:1 3317:1 3321:1 3325:1 3332:1 3338:1 3351:1 3352:5 3371:3 3377:2 3383:1 3391:1 3410:1 3426:1 3436:1 3438:1 3440:1 3442:1 3444:1 3447:1 3457:2 3469:1 3470:1 3490:2 3504:1 3510:3 3524:1 3531:1 3534:1 3550:1 3551:2 3579:1 3580:3 3581:1 3590:1 3596:2 3608:8 3609:1 3626:1 3643:1 3663:1 3695:1 3706:3 3712:1 3719:1 3748:1 3749:1 3751:2 3753:1 3762:1 3774:1 3781:1 3783:1 3784:2 3788:1 3794:1 3799:1 3804:1 3805:1 3829:1 3844:1 3851:1 3861:1 3868:2 3873:1 3897:1 3898:17 3900:1 3909:1 3912:2 3914:2 3915:2 3937:1 3942:1 3943:1 3947:1 3962:1 3998:1 4000:2 4001:1 4008:1 4013:3 4021:2 4038:1 4062:1 4096:1 4099:1 4101:1 4106:2 4110:1 4113:2 4117:1 4129:3 4133:1 4149:1 4152:1 4156:2 4162:1 4163:1 4167:1 4179:2 4180:1 4181:2 4186:1 4195:2 4200:3 4201:1 4215:1 4220:2 4221:1 4226:5 4229:2 4236:2 4240:1 4241:2 4242:1 4253:5 4267:1 4272:2 4289:1 4293:2 4309:1 4313:2 4315:4 4320:1 4330:1 4332:1 4340:2 4348:7 4349:5 4356:2 4393:1 4395:2 4398:1 4403:1 4417:1 4422:1 4426:2 4432:1 4448:1 4464:2 4470:1 4471:1 4476:1 4483:1 4500:2 4526:2 4537:2 4547:4 4548:1 4551:3 4552:1 4557:3 4559:1 4563:1 4567:2 4581:1 4587:1 4594:1 4610:1 4624:1 4629:1 4640:1 4647:1 4649:1 4669:7 4691:3 4696:1 4708:2 4712:1 4714:1 4717:1 4720:3 4732:2 4749:2 4759:1 4767:1 4779:1 4783:1 4785:1 4787:4 4788:2 4804:1 4808:4 4834:1 4843:1 4844:1 4850:1 4861:1 4869:2 4876:2 4893:1 4899:1 4902:2 4904:1 4910:1 4911:3 4913:1 4922:1 4938:1 4959:3 4970:1 4983:5 5001:1 5006:1 5007:1 5034:5 5044:3 5047:1 5056:1 5057:1 5062:4 5066:2 5083:1 5085:5 5103:1 5105:2 5115:1 5131:1 5135:3 5138:4 5154:3 5167:1 5174:1 5187:1 5189:2 5198:1 5200:1 5216:1 5217:1 5230:1 5249:1 5267:17 5270:2 5276:1 5279:1 5282:1 5283:1 5290:1 5297:1 5307:1 5316:1 5329:1 5339:1 5350:1 5375:1 5404:4 5413:1 5429:1 5430:1 5431:4 5433:7 5434:3 5436:1 5440:2 5441:2 5442:2 5445:1 5446:2 5449:6 5450:4 5453:1 5454:2 5456:8 5464:2 5465:6 5468:1 5469:1 5517:1 5532:1 5540:1 5548:3 5557:1 5575:1 5580:1 5592:1 5614:1 5625:1 5638:1 5658:1 5668:1 5704:1 5720:1 5731:2 5765:1 5771:1 5801:3 5807:2 5813:1 5847:1 5850:1 5875:6 5882:1 5889:1 5890:1 5902:1 5915:1 5917:1 5937:1 5943:1 5953:2 5959:1 5972:1 5980:1 5988:1 5994:1 6017:1 6029:1 6043:1 6057:1 6060:1 6080:1 6100:2 6107:1 6110:1 6115:2 6118:1 6121:1 6133:5 6134:1 6136:2 6139:1 6143:1 6144:4 6156:2 6157:1 6166:1 6180:1 6181:1 6188:3 6199:1 6200:2 6202:1 6204:1 6206:1 6219:6 6223:1 6224:1 6237:2 6289:1 6303:1 6308:1 6320:1 6327:1 6330:1 6336:1 6337:1 6345:1 6349:1 6351:1 6352:1 6361:3 6366:1 6387:1 6395:1 6400:1 6427:1 6433:2 6444:2 6455:1 6459:1 6466:2 6468:2 6471:5 6486:1 6488:6 6494:1 6495:1 6499:1 6502:2 6510:2 6512:1 6514:1 6515:1 6516:1 6525:1 6556:1 6559:1 6560:1 6561:1 6569:2 6571:2 6573:1 6579:1 6581:1 6582:2 6586:14 6600:1 6603:1 6624:3 6631:1 6655:1 6668:1 6684:4 6693:2 6706:1 6709:6 6713:1 6720:1 6769:1 6775:1 6799:1 6806:1 6808:1 6809:1 6814:3 6816:3 6817:1 6822:1 6823:1 6825:2 6826:1 6832:2 6834:4 6835:3 6860:1 6884:1 6931:1 6949:1 6978:1 6979:1 6990:2 6993:4 6996:2 7008:1 7016:1 7040:1 7052:1 7057:1 7061:1 7071:2 7076:2 7079:1 7089:1 7097:1 7101:1 7106:2 7131:1 7145:2 7153:2 7167:1 7174:1 7175:1 7182:1 7218:1 7227:1 7231:2 7241:1 7251:2 7253:1 7256:1 7260:1 7265:1 7267:1 7282:1 7284:9 7285:1 7290:1 7292:2 7294:1 7295:3 7298:1 7309:1 7315:1 7326:2 7343:1 7348:1 7357:1 7360:1 7362:1 7364:1 7403:1 7405:3 7421:2 7429:1 7435:2 7437:1 7454:1 7460:1 7465:1 7473:1 7478:2 7479:1 7504:2 7522:1 7529:2 7535:1 7550:2 7561:1 7569:1 7574:7 7578:2 7598:1 7611:1 7615:1 7621:1 7624:3 7625:2 7632:1 7636:6 7638:1 7640:1 7642:1 7645:5 7648:1 7651:1 7656:1 7674:1 7679:1 7680:1 7681:1 7684:1 7695:1 7701:1 7706:1 7726:1 7729:1 7737:4 7747:5 7759:1 7771:1 7792:3 7795:1 7796:1 7798:1 7805:1 7812:1 7818:1 7824:1 7827:1 7829:1 7835:1 7839:1 7846:1 7853:1 7869:1 7897:1 7919:1 7925:1 7930:1 7933:2 7971:1 7984:1 7985:2 7986:6 7991:4 7996:1 7997:1 7999:1 8004:1 8006:3 8010:1 8032:6 8034:2 8036:2 8037:1 8061:1 8064:3 8074:1 8081:1 8093:1 8106:1 8108:2 8110:2 8117:1 8127:1 8131:1 8134:1 8140:1 8152:1 8153:1 8160:1 8161:2 8163:1 8168:1 8175:2 8178:1 8189:1 8190:1 8198:1 8218:4 8235:4 8236:9 8250:2 8257:4 8258:1 8262:4 8263:3 8265:1 8275:1 8278:1 8287:4 8288:3 8290:1 8303:52 8306:2 8315:1 8323:1 8326:11 8327:9 8331:2 8337:1 8367:1 8374:1 8375:1 8384:1 8387:2 8397:1 8404:3 8405:2 8411:1 8421:1 8424:2 8433:2 8445:3 8455:1 8459:1 8461:1 8468:1 8480:2 8486:1 8488:1 8492:2 8498:1 8504:1 8512:1 8514:2 8541:1 8548:1 8550:1 8553:2 8557:1 8558:3 8562:1 8588:1 8591:1 8592:1 8593:1 8605:2 8609:3 8653:1 8663:1 8681:1 8691:1 8696:2 8698:1 8707:2 8722:1 8723:1 8725:1 8734:1 8736:1 8737:1 8742:1 8755:2 8765:1 8768:1 8775:1 8777:1 8778:3 8788:1 8797:1 8810:1 8815:1 8816:2 8835:27 8843:1 8844:1 8865:3 8868:3 8870:1 8876:1 8900:1 8911:1 8935:6 8937:1 8938:1 8943:1 8969:1 8974:1 8990:5 8993:2 8994:2 8996:1 9001:1 9002:1 9019:1 9030:2 9031:4 9038:3 9044:1 9049:1 9065:2 9066:1 9069:1 9076:1 9080:1 9088:1 9090:1 9104:1 9109:1 9110:2 9119:1 9120:1 9128:1 9129:2 9139:2 9141:2 9142:1 9154:2 9176:1 9201:1 9204:1 9205:1 9209:1 9211:1 9216:1 9239:3 9242:2 9255:7 9257:1 9267:2 9271:3 9291:2 9302:1 9303:1 9312:1 9319:2 9323:1 9324:2 9333:1 9340:1 9345:1 9365:2 9375:1 9393:2 9404:1 9431:1 9436:1 9437:1 9449:1 9450:1 9460:1 9485:1 9486:1 9487:1 9498:1 9501:3 9510:1 9533:1 9536:2 9537:1 9541:3 9577:3 9586:1 9594:2 9606:1 9613:1 9618:1 9636:1 9642:1 9643:1 9644:1 9646:1 9651:2 9655:2 9661:1 9662:8 9663:1 9668:1 9670:1 9675:2 9687:1 9695:2 9697:1 9708:7 9709:1 9719:2 9732:1 9740:1 9755:2 9759:1 9768:11 9769:7 9778:1 9784:2 9794:3 9806:1 9830:3 9837:2 9844:1 9849:1 9853:4 9855:1 9872:1 9878:1 9882:2 9884:2 9886:4 9888:2 9898:1 9907:2 9919:1 9928:1 9949:1 9950:1 9960:2 9963:1 9969:1 9972:5 9974:2 9976:1 9981:1 9988:1 9995:1 9996:4 9999:2 10005:1 10006:1 10021:4 10050:1 10064:1 10080:1 10089:1 10108:1 10111:3 10118:1 10122:3 10128:1 10142:1 10145:1 10147:1 10154:1 10156:1 10159:1 10180:1 10183:1 10197:1 10201:1 10211:1 10220:8 10226:3 10264:3 10268:1 10283:1 10284:1 10298:3 10302:1 10330:1 10351:1 10352:2 10358:1 10363:1 10365:3 10366:3 10369:2 10374:1 10399:1 10406:2 10408:2 10437:2 10439:1 10447:1 10458:1 10494:2 10511:1 10517:1 10530:2 10535:1 10537:1 10542:2 10554:1 10557:1 10558:1 10576:1 10587:1 10603:1 10606:1 10611:2 10612:1 10626:1 10627:1 10630:1 10657:1 10662:1 10663:1 10665:1 10670:1 10674:5 10690:4 10702:4 10707:2 10717:1 10738:2 10751:1 10762:3 10764:1 10772:1 10784:2 10807:1 10813:2 10818:2 10835:1 10839:1 10841:1 10850:1 10854:1 10857:1 10861:4 10864:1 10901:2 10907:1 10911:14 10913:1 10914:2 10919:2 10927:1 10948:2 10949:2 10969:1 10973:1 10980:1 10989:1 10991:1 11018:1 11040:1 11047:2 11049:1 11074:1 11091:1 11094:1 11109:1 11110:1 11112:1 11114:1 11115:1 11117:1 11121:4 11129:1 11131:1 11136:2 11169:1 11177:1 11181:4 11182:1 11185:1 11187:1 11189:1 11194:1 11196:3 11205:1 11207:1 11210:1 11213:2 11224:4 11244:1 11265:1 11277:1 11283:1 11284:1 11287:1 11291:1 11298:1 11299:1 11300:2 11301:1 11303:2 11306:1 11319:2 11323:1 11330:1 11336:1 11337:1 11345:1 11348:3 11353:1 11355:1 11360:2 11362:1 11365:1 11371:1 11373:7 11376:4 11389:2 11390:3 11395:1 11402:1 11413:1 11417:1 11419:2 11432:1 11447:2 11462:7 11463:2 11483:2 11485:1 11486:1 11498:4 11524:1 11541:1 11544:1 11550:3 11562:2 11570:1 11573:7 11588:2 11597:1 11605:1 11609:1 11624:4 11664:1 11677:1 11700:1 11731:1 11737:1 11744:1 11750:1 11767:1 11770:1 11791:1 11792:2 11796:3 11800:1 11801:2 11807:1 11811:2 11815:1 11816:1 11817:5 11819:6 11820:1 11826:1 11827:1 11832:1 11834:2 11838:3 11842:1 11845:4 11849:1 11851:1 11853:1 11865:1 11867:1 11868:3 11872:3 11877:1 11889:1 11901:3 11907:1 11910:2 11935:1 11937:1 11939:4 11944:1 11983:1 11986:1 12007:1 12021:2 12023:1 12026:2 12061:1 12094:1 12102:1 12107:1 12113:1 12114:1 12115:1 12118:1 12131:1 12133:1 12137:3 12151:1 12156:1 12179:1 12192:1 12195:1 12202:2 12204:1 12219:3 12222:2 12227:1 12228:1 12241:2 12245:2 12247:1 12249:1 12250:2 12252:1 12260:3 12262:1 12263:1 12264:2 12269:1 12272:1 12278:1 12285:3 12287:2 12293:1 12297:1 12324:21 12325:1 12356:1 12365:1 12369:5 12383:2 12384:2 12387:1 12391:2 12396:1 12416:1 12418:2 12429:3 12430:1 12441:1 12442:3 12449:2 12450:1 12464:1 12483:1 12497:1 12501:1 12521:1 12528:1 12544:1 12553:1 12566:2 12568:1 12574:3 12575:1 12578:1 12579:1 12584:1 12587:1 12592:5 12596:1 12597:2 12599:1 12603:2 12604:1 12611:1 12614:1 12624:1 12636:1 12640:1 12641:1 12643:1 12649:2 12652:5 12655:5 12683:1 12718:1 12741:2 12745:1 12760:1 12767:2 12783:1 12799:1 12801:1 12808:1 12818:2 12829:1 12845:1 12853:1 12855:1 12856:1 12863:6 12872:1 12883:2 12886:1 12887:2 12901:1 12907:1 12916:1 12918:1 12925:2 12931:2 12955:2 12958:1 12971:2 12982:1 12983:2 13003:1 13025:2 13030:1 13043:1 13047:1 13049:2 13052:1 13059:2 13070:1 13094:1 13118:1 13125:1 13127:1 13128:1 13132:5 13133:4 13134:2 13149:2 13155:2 13168:1 13172:1 13174:1 13182:1 13195:1 13221:1 13235:1 13237:2 13240:1 13264:1 13271:1 13276:1 13280:1 13291:1 13303:1 13310:1 13327:1 13332:1 13338:1 13356:1 13427:3 13456:2 13473:1 13489:1 13493:1 13495:1 13502:1 13515:1 13531:1 13533:2 13534:1 13552:3 13566:1 13569:1 13582:1 13591:1 13601:1 13626:1 13654:1 13663:1 13666:1 13669:1 13670:3 13677:1 13699:1 13718:15 13723:6 13737:2 13756:1 13762:1 13776:2 13777:3 13785:4 13788:2 13805:1 13811:1 13817:2 13818:1 13828:1 13838:2 13839:1 13847:1 13881:1 13900:1 13906:1 13913:1 13914:1 13920:2 13927:1 13939:2 13949:1 13957:1 13959:1 13975:1 13978:1 13998:1 14000:1 14007:1 14010:2 14011:1 14020:1 14023:1 14026:1 14027:1 14048:1 14058:1 14064:5 14084:2 14085:1 14110:1 14129:1 14146:1 14149:1 14176:1 14186:2 14190:1 14199:1 14201:1 14204:4 14208:4 14223:2 14224:2 14228:2 14230:2 14240:3 14245:1 14262:8 14266:1 14279:1 14284:2 14307:1 14314:4 14316:1 14330:1 14347:1 14352:2 14354:1 14355:1 14356:2 14369:9 14370:1 14381:3 14385:1 14393:1 14403:1 14408:1 14416:1 14417:1 14422:2 14429:1 14437:1 14438:1 14453:22 14462:1 14466:1 14488:1 14503:2 14504:2 14510:3 14525:1 14532:2 14550:2 14560:1 14561:1 14603:3 14630:1 14635:6 14641:1 14658:1 14664:2 14670:1 14673:1 14689:1 14695:5 14722:1 14732:1 14734:1 14737:1 14746:3 14748:1 14749:2 14756:1 14760:1 14762:1 14769:6 14770:1 14773:1 14774:2 14775:1 14777:2 14778:1 14782:8 14783:3 14803:1 14806:1 14810:1 14811:1 14814:1 14816:1 14818:1 14840:1 14846:1 14867:1 14873:1 14894:1 14906:2 14911:2 14921:1 14933:1 14948:1 14958:1 14967:7 14968:1 15004:1 15010:1 15013:1 15015:1 15022:1 15024:1 15025:1 15032:1 15033:1 15046:3 15049:1 15074:2 15079:1 15080:1 15091:1 15092:1 15094:1 15098:8 15109:1 15111:1 15121:1 15123:3 15128:1 15142:1 15163:1 15174:1 15175:2 15185:2 15191:1 15202:1 15210:1 15213:1 15215:1 15224:1 15236:2 15258:1 15265:1 15266:1 15272:1 15278:1 15283:1 15293:1 15300:1 15304:1 15312:1 15315:1 15353:1 15362:2 15379:5 15395:1 15401:1 15414:1 15434:1 15446:1 15468:1 15488:1 15514:1 15517:3 15518:4 15527:1 15540:2 15541:2 15544:1 15548:1 15550:2 15552:1 15570:1 15573:1 15581:1 15592:2 15606:1 15617:1 15625:2 15651:1 15653:1 15661:1 15675:2 15680:1 15683:1 15698:1 15703:1 15705:1 15707:1 15712:2 15714:1 15723:2 15725:4 15729:2 15782:1 15786:2 15790:1 15804:2 15806:1 15821:2 15841:1 15842:2 15844:1 15848:1 15851:1 15856:2 15870:1 15880:1 15883:1 15902:1 15906:1 15922:3 15928:1 15938:1 15941:2 15947:1 15972:1 15973:1 15978:1 16029:1 16032:1 16035:3 16073:2 16078:2 16079:1 16081:1 16085:1 16090:1 16100:1 16109:2 16120:1 16157:1 16160:3 16168:1 16188:1 16189:1 16192:2 16196:1 16198:1 16199:1 16231:1 16269:1 16298:1 16302:1 16308:1 16314:2 16351:1 16364:1 16406:1 16424:2 16435:1 16442:1 16464:1 16476:1 16479:1 16481:2 16492:1 16511:2 16516:3 16520:1 16545:1 16551:1 16553:1 16563:1 16567:2 16585:3 16592:1 16614:1 16616:1 16627:2 16641:1 16652:2 16676:1 16686:1 16687:2 16701:6 16720:4 16731:1 16739:5 16752:3 16777:1 16782:1 16790:1 16800:1 16807:2 16810:1 16815:2 16869:1 16883:2 16884:1 16897:2 16905:1 16909:1 16913:4 16914:1 16918:1 16920:1 16926:1 16937:2 16940:4 16941:1 16945:1 16948:1 16962:2 16968:1 16980:1 16999:2 17008:2 17039:1 17052:2 17055:1 17062:1 17079:3 17089:2 17101:1 17104:1 17105:3 17120:1 17135:3 17140:1 17150:1 17151:1 17157:1 17164:1 17198:1 17200:1 17222:1 17224:1 17230:1 17233:1 17234:1 17237:1 17239:20 17241:1 17255:1 17256:1 17258:1 17260:3 17262:1 17285:3 17327:2 17344:1 17349:2 17360:4 17363:1 17380:2 17383:1 17392:2 17401:1 17428:1 17435:1 17442:1 17444:1 17445:1 17454:2 17456:1 17464:1 17476:1 17482:1 17486:3 17489:1 17504:1 17511:1 17516:6 17518:2 17519:2 17520:6 17521:2 17523:1 17527:2 17529:1 17531:2 17532:5 17537:1 17538:1 17540:1 17544:1 17546:2 17548:1 17555:1 17570:1 17581:2 17590:1 17592:1 17598:1 17607:1 17627:1 17636:1 17637:1 17652:1 17655:2 17656:1 17657:1 17664:1 17688:1 17692:2 17697:1 17699:1 17708:2 17709:2 17729:2 17736:1 17762:1 17774:1 17776:1 17781:1 17788:1 17804:1 17808:1 17816:1 17827:1 17831:1 17868:1 17872:1 17874:1 17884:3 17899:1 17902:2 17915:2 17916:1 17925:1 17930:5 17937:1 17941:2 17954:1 17965:1 17966:1 17972:2 17975:4 17980:2 17981:1 17985:1 17987:1 17994:4 17998:2 18008:4 18016:1 18026:1 18071:14 18073:1 18086:1 18088:1 18095:2 18096:4 18097:2 18102:1 18171:1 18172:1 18183:2 18191:1 18201:4 18211:1 18212:1 18225:1 18233:4 18236:2 18258:1 18266:1 18269:1 18284:1 18286:2 18291:1 18307:5 18308:1 18322:1 18326:1 18340:1 18341:1 18344:1 18361:1 18379:1 18423:2 18424:4 18425:1 18438:1 18440:1 18443:1 18453:1 18475:1 18490:1 18491:1 18494:1 18514:1 18517:1 18530:2 18533:1 18548:1 18556:1 18565:2 18572:1 18577:2 18585:1 18587:2 18589:1 18593:1 18597:1 18617:1 18618:1 18662:1 18670:1 18707:1 18712:1 18731:1 18734:1 18742:1 18755:1 18760:1 18762:1 18775:3 18779:1 18791:3 18796:1 18800:1 18801:1 18810:3 18814:2 18815:2 18819:2 18824:1 18825:10 18852:1 18872:1 18877:2 18880:1 18885:3 18887:1 18892:1 18898:3 18905:1 18908:2 18909:1 18910:1 18962:1 18973:1 18982:1 18983:1 19004:4 19009:1 19023:1 19033:2 19047:1 19050:1 19054:1 19061:1 19070:1 19071:1 19101:1 19102:1 19103:1 19104:1 19120:1 19123:1 19130:1 19134:2 19147:1 19166:1 19171:1 19202:1 19207:1 19220:1 19225:1 19226:3 19231:1 19233:1 19236:1 19243:1 19246:1 19267:1 19299:1 19337:2 19376:1 19378:1 19390:1 19391:2 19411:2 19421:1 19450:1 19514:2 19515:1 19525:1 19538:1 19543:1 19553:1 19565:1 19575:1 19581:1 19592:1 19593:1 19600:1 19607:1 19610:1 19619:1 19631:1 19651:1 19656:3 19661:1 19670:1 19709:1 19719:15 19731:1 19750:1 19780:1 19805:1 19806:1 19826:14 19832:1 19833:4 19834:2 19840:1 19843:1 19846:7 19847:1 19863:1 19872:1 19876:3 19897:1 19915:2 19948:6 19971:2 19979:1 19988:2 19990:1 19993:1 20016:3 20020:1 20023:2 20027:1 20041:2 20047:1 20053:2667 20064:1 20070:1 20083:1 20085:1 20086:1 20087:1 20098:1 20126:1 20132:1 20134:1 20136:1 20150:1 20160:2 20181:1 20185:1 20212:2 20217:1 20218:1 20229:1 20241:1 20262:1 20264:1 20267:1 20271:2 20274:6 20275:4 20286:1 20292:1 20294:1 20298:1 20308:1 20315:1 20320:1 20327:1 20338:1 20350:1 20364:1 20368:1 20373:1 20375:1 20420:1 20422:3 20425:2 20431:1 20444:1 20469:1 20482:1 20486:2 20489:1 20490:3 20497:2 20517:1 20528:2 20533:1 20545:1 20546:2 20547:1 20557:2 20558:1 20567:1 20579:1 20584:1 20587:1 20605:2 20618:1 20630:2 20637:1 20642:1 20644:1 20647:2 20649:2 20651:2 20660:1 20669:1 20679:2 20681:1 20701:2 20702:3 20715:4 20721:1 20724:1 20732:3 20757:3 20759:1 20765:1 20768:1 20769:1 20772:1 20774:1 20778:1 20781:2 20785:2 20787:9 20792:1 20813:1 20815:1 20833:1 20838:2 20839:1 20848:2 20864:5 20871:1 20882:1 20884:2 20901:1 20917:1 20926:4 20933:1 20935:2 20941:1 20943:2 20956:4 20957:1 20968:1 20974:1 20979:2 20999:1 21004:1 21005:4 21013:2 21014:1 21022:3 21061:5 21062:2 21065:2 21070:1 21075:1 21089:1 21093:2 21095:2 21098:2 21103:1 21105:1 21106:2 21109:1 21121:1 21132:2 21143:1 21148:1 21149:1 21150:1 21152:1 21157:1 21168:1 21202:1 21219:1 21220:3 21237:1 21239:2 21241:1 21242:1 21246:1 21249:1 21250:3 21254:1 21273:1 21277:1 21281:1 21283:1 21288:1 21295:1 21302:2 21308:1 21313:2 21320:1 21322:2 21330:2 21331:1 21336:1 21341:1 21342:1 21354:1 21361:1 21362:1 21371:1 21376:2 21379:4 21385:1 21387:4 21446:1 21451:1 21453:1 21463:1 21466:3 21475:1 21478:1 21482:2 21483:2 21486:2 21501:2 21503:3 21507:3 21511:3 21518:1 21519:3 21523:2 21524:1 21544:5 21555:3 21571:1 21573:1 21583:1 21586:1 21587:1 21590:2 21591:4 21606:1 21613:1 21614:2 21627:1 21628:1 21633:1 21652:2 21654:3 21667:1 21673:1 21676:2 21678:3 21699:1 21700:1 21711:3 21712:23 21713:2 21719:1 21727:5 21733:1 21753:1 21756:2 21759:1 21767:1 21789:3 21798:1 21799:1 21813:1 21818:1 21822:1 21828:1 21853:1 21859:2 21860:1 21861:1 21881:1 21887:1 21897:1 21902:1 21907:1 21926:1 21928:1 21940:4 21960:2 21982:2 21990:1 22001:2 22015:1 22018:1 22027:1 22029:1 22032:2 22066:8 22069:1 22071:2 22078:1 22085:1 22086:1 22119:1 22120:1 22121:1 22128:1 22134:1 22140:1 22174:1 22177:1 22185:4 22202:4 22221:1 22225:1 22228:1 22231:1 22235:1 22236:1 22244:1 22247:2 22282:2 22288:3 22298:2 22300:3 22314:3 22316:1 22319:2 22323:1 22325:1 22326:1 22337:2 22343:1 22370:5 22390:2 22391:1 22392:1 22398:1 22402:1 22413:1 22417:2 22419:1 22421:3 22432:2 22451:1 22452:2 22466:1 22473:1 22478:2 22479:1 22488:5 22492:1 22496:2 22501:1 22503:1 22508:2 22519:3 22532:1 22546:2 22554:1 22557:1 22567:2 22590:1 22591:1 22592:1 22602:2 22615:2 22621:2 22624:2 22628:2 22632:2 22635:1 22643:2 22663:1 22665:1 22671:2 22685:2 22699:2 22715:1 22716:4 22723:1 22724:1 22726:4 22739:1 22741:1 22750:2 22755:1 22758:1 22760:1 22768:1 22769:1 22773:2 22774:1 22779:1 22781:1 22790:1 22793:1 22794:1 22804:1 22811:1 22815:1 22838:1 22846:2 22855:1 22857:1 22862:2 22864:1 22865:1 22866:3 22872:1 22875:1 22879:1 22893:1 22939:1 22996:2 23014:3 23017:1 23026:3 23027:2 23031:1 23032:1 23038:1 23039:1 23043:1 23045:1 23056:1 23063:2 23070:3 23071:1 23081:1 23090:1 23104:1 23121:1 23131:1 23137:1 23147:1 23158:1 23159:1 23181:2 23183:1 23184:1 23185:1 23190:1 23194:1 23195:2 23199:1 23200:1 23210:1 23213:1 23217:2 23222:2 23228:2 23229:1 23230:1 23236:2 23237:1 23238:1 23239:1 23249:1 23251:2 23260:1 23262:1 23271:14 23281:2 23282:3 23288:2 23298:1 23313:1 23323:1 23325:1 23326:1 23328:1 23337:1 23340:1 23345:2 23347:1 23348:2 23349:1 23352:1 23355:1 23377:1 23389:1 23410:2 23418:1 23426:2 23429:1 23434:1 23437:6 23439:3 23442:1 23452:2 23466:1 23467:1 23468:1 23475:1 23477:1 23496:1 23497:1 23498:1 23500:3 23502:4 23503:2 23506:1 23522:1 23537:1 23540:1 23576:1 23605:4 23613:1 23614:5 23616:3 23617:3 23619:1 23620:1 23625:1 23628:2 23631:1 23632:2 23643:1 23644:1 23645:5 23655:1 23656:1 23659:1 23661:1 23662:1 23674:1 23682:1 23693:2 23697:2 23700:2 23721:1 23738:1 23749:1 23751:1 23778:2 23783:3 23795:1 23796:1 23799:1 23801:1 23811:1 23823:1 23834:1 23850:1 23853:1 23858:1 23859:1 23862:1 23865:3 23867:2 23882:2 23886:1 23887:1 23897:1 23900:1 23912:2 23915:1 23922:5 23929:1 23939:1 23940:4 23943:3 23946:1 23952:1 23969:1 23977:1 23982:1 23986:1 23990:2 23993:1 23997:1 23998:1 24001:1 24002:4 24010:2 24016:1 24026:2 24030:10 24033:1 24037:2 24044:1 24046:1 24050:1 24053:1 24073:1 24074:1 24108:9 24111:1 24126:1 24150:1 24162:1 24172:6 24173:1 24175:1 24178:1 24179:1 24184:1 24192:1 24197:1 24199:1 24221:1 24222:3 24238:1 24248:1 24250:4 24260:1 24278:1 24289:2 24290:1 24291:7 24294:2 24305:3 24308:1 24309:4 24319:1 24325:1 24329:1 24332:1 24346:1 24349:5 24361:1 24370:1 24371:3 24373:1 24376:3 24386:1 24396:1 24408:1 24414:1 24419:1 24426:1 24429:1 24432:1 24447:1 24451:1 24479:1 24486:1 24495:1 24499:1 24500:1 24502:1 24517:1 24531:2 24549:10 24550:3 24558:1 24568:2 24574:1 24578:3 24585:4 24590:1 24594:1 24598:3 24608:2 24609:1 24611:1 24624:1 24635:1 24661:1 24671:1 24681:1 24682:1 24685:2 24688:2 24706:1 24708:1 24711:1 24742:1 24744:1 24746:1 24749:1 24750:1 24752:2 24762:1 24774:1 24776:2 24784:1 24789:1 24795:2 24799:1 24806:2 24808:1 24814:1 24842:1 24851:3 24856:1 24883:3 24899:1 24940:3 24969:1 24996:3 25000:3 25008:7 25018:2 25027:1 25033:1 25036:3 25039:1 25051:2 25054:2 25056:3 25066:1 25080:4 25122:1 25130:1 25137:1 25138:1 25160:1 25168:1 25172:1 25184:1 25196:1 25199:4 25205:1 25230:1 25232:1 25240:3 25246:1 25259:2 25268:1 25273:2 25283:1 25286:1 25298:1 25304:1 25314:1 25315:2 25318:4 25320:3 25329:1 25331:1 25343:1 25345:1 25352:1 25366:3 25367:1 25368:2 25371:2 25376:1 25384:1 25388:1 25391:1 25396:1 25446:1 25447:1 25450:4 25451:1 25453:1 25458:1 25462:1 25469:1 25471:1 25472:4 25474:1 25477:1 25478:1 25479:1 25481:1 25485:1 25502:1 25511:1 25535:3 25537:1 25549:1 25560:2 25605:3 25615:1 25618:2 25633:1 25652:2 25659:1 25674:1 25687:1 25703:1 25715:1 25718:2 25727:2 25729:1 25739:1 25754:1 25770:1 25772:1 25776:1 25786:1 25793:2 25796:1 25803:1 25817:2 25840:1 25851:1 25861:1 25885:1 25898:1 25900:2 25909:1 25937:2 25940:1 25963:2 25977:4 25989:1 26010:1 26021:1 26022:8 26030:1 26041:1 26048:1 26050:1 26055:4 26059:1 26066:1 26075:1 26076:1 26081:1 26086:5 26095:1 26097:1 26098:1 26103:1 26111:1 26135:4 26157:4 26161:2 26167:1 26168:2 26214:1 26250:1 26253:1 26255:1 26288:1 26289:1 26291:1 26292:1 26300:1 26301:2 26304:3 26305:4 26308:1 26309:2 26311:1 26313:1 26317:2 26318:1 26319:1 26320:2 26329:1 26342:1 26356:6 26365:1 26373:2 26374:1 26376:1 26380:1 26391:1 26395:1 26397:1 26399:1 26420:12 26425:6 26426:1 26445:1 26447:2 26450:1 26456:1 26457:1 26459:1 26473:1 26477:1 26479:1 26482:1 26483:2 26488:3 26495:3 26512:1 26515:1 26530:1 26536:1 26588:1 26593:1 26616:1 26632:1 26634:1 26648:3 26651:2 26659:1 26668:1 26669:1 26674:3 26683:2 26687:1 26690:1 26696:3 26698:2 26703:1 26734:1 26736:1 26749:1 26756:1 26758:2 26760:1 26766:1 26767:1 26775:1 26776:1 26787:1 26793:1 26794:1 26803:5 26828:2 26833:1 26836:1 26844:1 26847:1 26857:2 26862:2 26872:1 26875:3 26876:1 26880:1 26895:1 26901:1 26902:1 26928:1 26929:18 26930:2 26942:1 26962:1 26964:1 26973:1 26974:1 26986:1 27000:1 27012:2 27019:2 27024:1 27029:1 27048:2 27051:1 27055:1 27059:1 27060:1 27078:1 27083:1 27088:1 27092:1 27094:1 27112:1 27123:1 27134:1 27163:1 27164:1 27174:1 27192:12 27193:1 27202:1 27218:1 27230:1 27233:2 27234:1 27253:1 27265:1 27271:1 27272:1 27279:3 27290:1 27298:1 27304:1 27312:7 27315:1 27336:1 27338:1 27340:2 27341:1 27368:1 27375:1 27381:3 27387:1 27393:1 27398:1 27410:1 27418:1 27428:1 27443:2 27448:2 27450:1 27465:2 27481:1 27484:1 27486:1 27498:1 27514:1 27519:2 27528:1 27577:1 27579:2 27590:1 27603:1 27606:1 27613:1 27619:1 27622:1 27627:3 27633:5 27636:1 27643:1 27645:1 27646:2 27657:1 27662:1 27669:1 27673:1 27701:7 27711:1 27713:1 27716:1 27728:1 27729:8 27746:2 27748:2 27750:1 27765:1 27771:1 27773:1 27777:1 27784:4 27785:1 27786:1 27793:1 27796:1 27810:1 27818:1 27820:1 27854:1 27858:1 27866:1 27873:2 27889:1 27893:1 27901:1 27927:1 27933:1 27940:3 27947:1 27970:1 27977:1 28000:1 28001:1 28010:1 28025:1 28026:1 28027:1 28038:2 28041:1 28047:1 28048:1 28049:3 28064:1 28065:1 28071:1 28072:1 28076:2 28078:1 28092:1 28098:1 28100:1 28106:3 28108:1 28131:1 28142:5 28153:1 28168:1 28186:1 28191:1 28200:2 28202:1 28210:2 28211:1 28213:1 28227:2 28228:16 28239:2 28265:1 28268:1 28282:1 28289:4 28291:2 28292:1 28303:1 28304:1 28305:1 28309:2 28317:1 28322:1 28326:2 28328:2 28337:1 28343:1 28348:1 28356:4 28360:3 28368:3 28371:3 28373:4 28375:1 28392:1 28403:1 28406:1 28410:1 28432:1 28456:1 28462:1 28463:1 28475:2 28481:1 28497:1 28500:1 28501:2 28502:1 28515:1 28531:2 28551:2 28564:1 28568:2 28569:1 28572:1 28573:2 28583:2 28594:6 28595:1 28596:1 28605:1 28608:1 28609:1 28611:1 28618:2 28627:1 28630:1 28634:1 28637:1 28667:1 28671:2 28673:2 28691:2 28699:1 28727:1 28744:1 28768:1 28777:1 28788:3 28814:1 28816:2 28817:1 28846:1 28851:1 28857:1 28860:1 28863:6 28878:1 28883:1 28884:1 28921:1 28925:1 28931:1 28932:1 28945:1 28949:1 28954:3 28959:1 28963:1 28975:1 28983:2 28986:2 28988:2 28990:2 28998:3 29014:1 29017:1 29034:1 29043:1 29045:1 29050:2 29067:1 29078:2 29085:1 29086:2 29093:1 29095:1 29111:1 29132:1 29144:2 29158:2 29163:5 29166:1 29168:1 29171:1 29172:2 29182:1 29184:2 29187:1 29190:1 29191:2 29196:1 29204:1 29210:1 29218:1 29227:3 29238:2 29240:1 29241:2 29244:1 29247:1 29250:1 29259:2 29260:2 29281:1 29295:1 29302:1 29312:1 29314:1 29318:2 29322:1 29354:1 29373:6 29375:3 29377:2 29392:1 29401:1 29404:1 29406:1 29438:1 29446:2 29453:1 29460:2 29465:2 29469:1 29473:2 29482:1 29484:1 29487:1 29494:2 29501:1 29508:1 29514:1 29516:1 29523:1 29524:1 29529:4 29530:1 29531:1 29532:1 29536:3 29539:1 29543:2 29546:1 29549:1 29556:3 29566:2 29571:1 29574:1 29579:1 29580:1 29613:1 29615:1 29630:1 29641:5 29656:1 29663:2 29688:2 29700:1 29709:1 29763:1 29766:2 29785:1 29787:1 29798:1 29804:1 29805:2 29824:1 29831:2 29844:1 29848:1 29849:1 29853:1 29855:3 29862:5 29872:1 29876:1 29879:1 29883:1 29891:1 29900:1 29921:7 29952:2 29954:1 29964:1 29969:1 29985:1 29988:1 30006:1 30009:1 30014:1 30019:2 30034:2 30039:1 30051:1 30063:1 30065:1 30077:1 30082:1 30100:1 30105:1 30109:1 30110:2 30114:1 30124:2 30133:2 30134:3 30135:1 30138:1 30140:1 30146:3 30150:1 30151:1 30152:3 30169:1 30171:2 30180:1 30181:5 30185:1 30196:1 30203:1 30204:1 30205:1 30220:3 30226:2 30228:2 30229:1 30231:1 30235:1 30238:5 30244:1 30251:3 30252:1 30261:3 30263:1 30275:3 30279:1 30283:3 30285:1 30296:1 30309:1 30316:3 30332:1 30336:1 30354:1 30356:2 30362:1 30377:1 30392:3 30397:5 30406:7 30411:1 30428:1 30438:5 30453:1 30457:1 30462:1 30470:1 30471:1 30484:2 30491:1 30493:1 30495:1 30515:1 30525:1 30527:7 30532:1 30537:2 30571:1 30574:1 30583:1 30604:1 30614:1 30629:1 30634:1 30635:1 30643:1 30645:1 30646:2 30651:2 30656:1 30670:1 30673:3 30704:1 30709:1 30710:1 30711:1 30717:7 30719:2 30729:1 30730:1 30735:2 30750:1 30751:1 30786:6 30810:1 30865:1 30871:1 30879:1 30882:1 30886:1 30916:1 30924:1 30926:1 30952:1 30955:1 30971:1 31003:1 31004:1 31028:2 31043:1 31046:1 31047:2 31048:3 31053:2 31055:3 31068:1 31072:2 31074:1 31082:1 31086:1 31092:1 31103:1 31124:1 31136:1 31143:1 31152:1 31168:1 31178:1 31184:1 31194:3 31198:1 31204:2 31233:2 31238:2 31239:2 31257:1 31259:1 31272:1 31274:1 31284:1 31287:1 31289:1 31296:1 31301:1 31308:4 31309:1 31313:2 31315:1 31323:1 31337:1 31343:1 31345:1 31348:4 31351:2 31377:1 31382:1 31405:1 31413:1 31422:1 31431:1 31443:1 31467:1 31473:1 31478:3 31484:1 31487:1 31505:1 31516:3 31519:1 31542:1 31577:2 31580:2 31599:1 31600:1 31606:1 31608:3 31615:3 31617:4 31618:1 31623:1 31632:1 31665:1 31675:1 31677:5 31682:1 31686:1 1 13:2 40:1 43:1 46:1 53:1 62:1 65:1 66:1 72:1 84:1 86:1 106:2 141:1 155:1 156:4 161:1 167:2 173:1 188:2 190:3 202:1 204:1 207:6 209:1 226:1 231:1 238:1 244:1 263:1 264:1 274:1 278:7 287:1 297:3 307:1 328:2 354:1 371:6 373:3 378:3 380:1 387:3 391:1 397:2 416:3 430:1 438:2 454:6 458:6 471:1 485:3 490:1 522:1 526:2 527:1 533:1 559:1 561:2 588:1 596:1 600:2 614:1 620:1 630:1 634:3 645:1 659:1 665:1 667:5 674:2 678:1 693:3 704:1 729:1 765:1 767:1 783:1 785:1 810:1 815:1 817:1 826:1 829:3 830:1 831:1 854:1 856:2 860:1 863:2 871:1 900:7 906:1 911:1 917:2 918:4 922:2 927:1 942:16 943:5 952:5 975:4 984:1 992:1 993:4 995:2 998:11 1000:1 1001:3 1004:4 1018:2 1025:1 1033:1 1042:5 1044:4 1050:1 1055:1 1056:1 1095:2 1104:1 1121:1 1142:1 1159:1 1177:1 1178:1 1198:1 1210:3 1214:1 1217:2 1275:3 1277:4 1283:1 1285:2 1287:1 1295:2 1298:1 1299:2 1312:1 1315:1 1325:1 1326:1 1328:1 1332:2 1343:1 1351:2 1356:2 1362:1 1365:1 1367:1 1380:1 1386:2 1389:1 1408:1 1414:1 1417:1 1426:1 1429:1 1432:1 1433:1 1451:1 1457:1 1466:1 1468:1 1470:1 1485:1 1500:1 1527:1 1530:1 1540:1 1541:2 1557:2 1564:1 1565:2 1582:1 1584:1 1587:2 1594:1 1595:3 1602:1 1613:1 1629:1 1630:1 1632:2 1635:1 1647:1 1654:1 1674:1 1686:5 1694:8 1696:2 1705:1 1713:1 1732:1 1743:2 1751:1 1754:1 1763:1 1767:4 1783:1 1786:1 1788:1 1791:2 1799:1 1804:3 1813:1 1818:1 1820:1 1824:1 1825:2 1835:2 1839:3 1850:1 1854:1 1857:1 1863:1 1867:2 1871:1 1875:1 1881:1 1882:1 1886:2 1897:1 1900:1 1905:1 1914:1 1919:1 1920:2 1923:1 1939:2 1944:1 1945:6 1950:1 1953:1 1954:1 1965:1 1971:1 1974:3 1978:1 1979:2 1993:2 1994:7 2027:5 2030:3 2043:1 2051:1 2054:1 2055:1 2060:2 2065:4 2070:1 2071:1 2074:1 2089:2 2093:1 2102:1 2103:3 2112:1 2113:1 2121:3 2127:2 2128:1 2129:1 2143:3 2146:1 2162:1 2173:1 2189:1 2192:2 2198:9 2201:1 2207:1 2210:2 2214:1 2215:7 2219:1 2220:2 2222:2 2226:1 2228:1 2230:2 2236:1 2243:2 2247:1 2255:1 2266:1 2268:2 2272:1 2283:1 2296:2 2300:2 2301:1 2306:2 2308:2 2323:1 2335:1 2349:1 2354:11 2361:2 2370:1 2376:1 2379:1 2393:1 2402:1 2423:3 2436:5 2438:2 2439:1 2450:1 2458:1 2464:2 2477:3 2478:2 2480:2 2482:3 2485:5 2487:2 2489:2 2491:2 2494:2 2495:2 2497:1 2499:4 2501:1 2502:6 2505:1 2506:1 2507:1 2508:5 2509:4 2514:5 2515:7 2517:1 2520:2 2528:1 2562:1 2565:2 2568:3 2570:1 2571:3 2576:1 2586:1 2593:2 2595:1 2597:2 2603:1 2617:1 2618:1 2623:1 2631:1 2637:1 2639:1 2657:1 2671:1 2680:1 2695:1 2706:4 2718:1 2720:1 2722:1 2728:1 2734:1 2739:3 2751:2 2752:1 2764:1 2765:1 2771:1 2776:1 2779:2 2800:3 2803:2 2806:1 2808:7 2812:1 2813:1 2814:1 2824:1 2827:1 2835:1 2849:4 2851:2 2852:1 2857:2 2873:2 2881:2 2883:1 2884:1 2885:2 2897:7 2906:2 2911:1 2913:2 2916:10 2924:6 2928:1 2937:2 2939:1 2943:1 2945:2 2947:1 2950:3 2951:2 2967:4 2981:1 2982:3 2987:5 2991:1 2995:2 3001:1 3029:1 3034:1 3035:2 3036:2 3041:1 3050:4 3052:1 3056:1 3060:7 3065:2 3066:1 3069:1 3085:1 3089:1 3096:1 3122:1 3127:3 3128:1 3146:5 3152:1 3157:1 3159:17 3169:1 3178:3 3180:1 3185:1 3186:1 3190:1 3199:2 3203:3 3204:1 3206:1 3224:23 3225:3 3234:1 3235:1 3246:2 3249:4 3269:2 3280:1 3283:2 3299:1 3317:1 3321:1 3325:1 3332:1 3338:1 3351:1 3352:6 3371:3 3377:2 3383:1 3391:1 3410:1 3426:1 3436:1 3438:1 3440:1 3442:1 3444:1 3447:1 3457:2 3469:1 3470:1 3490:2 3504:1 3510:3 3524:1 3531:1 3534:1 3550:1 3551:2 3579:1 3580:3 3581:1 3590:1 3596:2 3608:9 3609:1 3626:1 3643:1 3663:1 3695:1 3706:3 3712:1 3719:1 3748:1 3749:1 3751:2 3753:1 3762:1 3774:1 3781:1 3783:1 3784:2 3788:1 3794:1 3799:1 3804:1 3805:1 3829:1 3844:1 3851:1 3861:1 3868:2 3873:1 3897:1 3898:19 3900:1 3909:1 3912:2 3914:2 3915:3 3937:1 3942:1 3943:1 3947:1 3962:1 3998:1 4000:2 4001:1 4008:1 4013:3 4021:2 4038:1 4062:1 4096:1 4099:1 4101:1 4106:2 4110:1 4113:2 4117:1 4129:4 4133:1 4149:1 4152:1 4156:2 4162:1 4163:1 4167:1 4179:2 4180:1 4181:2 4186:1 4195:2 4200:3 4201:1 4215:1 4220:2 4221:1 4226:5 4229:2 4236:3 4240:1 4241:2 4242:1 4253:5 4267:1 4272:3 4289:1 4293:2 4309:1 4313:2 4315:4 4320:1 4330:1 4332:1 4340:2 4348:7 4349:5 4356:2 4393:1 4395:2 4398:1 4403:1 4417:1 4422:1 4426:2 4432:1 4448:1 4464:2 4470:1 4471:1 4476:1 4483:1 4500:2 4526:2 4537:2 4547:4 4548:1 4551:3 4552:1 4557:3 4559:1 4563:1 4567:2 4581:1 4587:1 4594:1 4610:1 4624:1 4629:1 4640:1 4647:1 4649:1 4669:7 4691:3 4696:1 4708:2 4712:1 4714:1 4717:1 4720:3 4732:2 4749:2 4759:1 4767:1 4779:1 4783:1 4785:1 4787:4 4788:2 4804:1 4808:4 4834:1 4843:1 4844:1 4850:1 4861:1 4869:2 4876:2 4893:1 4899:1 4902:2 4904:1 4910:1 4911:3 4913:1 4922:1 4938:1 4959:3 4970:1 4983:5 5001:1 5006:1 5007:1 5034:5 5044:3 5047:1 5056:1 5057:1 5062:4 5066:2 5083:1 5085:5 5103:1 5105:2 5115:1 5131:1 5135:3 5138:4 5154:3 5167:1 5174:1 5187:1 5189:2 5198:1 5200:1 5216:1 5217:1 5230:1 5249:1 5267:17 5270:2 5276:1 5279:1 5282:1 5283:1 5290:1 5297:1 5307:1 5316:1 5329:1 5339:1 5350:1 5375:1 5404:4 5413:1 5429:1 5430:1 5431:4 5433:7 5434:3 5436:1 5440:2 5441:2 5442:2 5445:1 5446:2 5449:6 5450:4 5453:1 5454:2 5456:8 5464:2 5465:6 5468:1 5469:1 5517:1 5532:1 5540:1 5548:3 5557:1 5575:1 5580:1 5592:1 5614:1 5625:1 5638:1 5658:1 5668:1 5704:1 5715:1 5720:1 5731:2 5765:1 5771:1 5801:3 5807:2 5813:1 5847:1 5850:1 5875:6 5882:1 5889:1 5890:1 5902:1 5915:1 5917:1 5937:1 5943:1 5953:2 5959:1 5972:1 5980:1 5988:1 5993:1 5994:1 6017:1 6029:1 6043:1 6057:2 6060:1 6080:1 6100:2 6107:1 6110:1 6115:2 6118:1 6121:1 6133:5 6134:1 6136:2 6139:1 6143:1 6144:4 6156:2 6157:1 6166:2 6169:1 6180:1 6181:1 6188:3 6199:1 6200:2 6202:1 6204:1 6206:1 6219:6 6223:1 6224:1 6237:2 6289:1 6303:1 6308:1 6320:1 6327:1 6330:1 6336:1 6337:1 6345:1 6349:1 6351:1 6352:1 6361:3 6366:1 6387:1 6395:1 6400:1 6427:1 6433:2 6444:2 6455:1 6459:1 6466:2 6468:2 6471:6 6486:1 6488:6 6494:1 6495:1 6499:1 6502:2 6510:2 6512:1 6514:1 6515:1 6516:1 6525:1 6556:1 6559:1 6560:1 6561:1 6569:2 6571:2 6573:2 6579:1 6581:1 6582:2 6586:14 6600:1 6603:1 6624:3 6631:1 6655:1 6668:1 6684:4 6693:2 6706:1 6709:6 6713:1 6720:1 6769:1 6775:1 6799:1 6806:1 6808:1 6809:1 6814:3 6816:3 6817:1 6822:1 6823:1 6825:2 6826:1 6832:2 6834:4 6835:3 6860:1 6884:1 6931:1 6949:1 6978:1 6979:1 6990:2 6993:5 6996:2 7008:1 7016:1 7040:1 7052:1 7057:1 7061:1 7071:2 7076:2 7079:1 7089:1 7097:1 7101:1 7106:2 7131:1 7145:2 7153:2 7167:1 7174:1 7175:1 7182:1 7218:1 7227:1 7231:2 7241:1 7251:2 7253:1 7256:1 7260:1 7265:1 7267:1 7282:1 7284:9 7285:1 7290:1 7292:2 7294:1 7295:3 7298:1 7309:1 7315:1 7323:1 7326:2 7343:1 7348:1 7357:1 7360:1 7362:1 7364:1 7403:2 7405:3 7421:2 7429:1 7435:2 7437:1 7454:1 7460:1 7465:1 7467:1 7473:1 7478:2 7479:1 7504:2 7522:1 7529:2 7535:1 7550:2 7561:1 7569:1 7574:7 7578:2 7598:1 7611:1 7615:1 7621:2 7624:3 7625:2 7632:1 7636:6 7638:1 7640:1 7642:1 7645:5 7648:1 7651:1 7656:1 7674:1 7679:1 7680:1 7681:1 7684:2 7695:1 7701:1 7706:1 7726:1 7729:1 7737:4 7747:5 7759:1 7771:1 7792:3 7795:1 7796:1 7798:1 7805:1 7812:1 7818:1 7824:1 7827:1 7829:1 7835:1 7839:1 7846:1 7853:1 7869:1 7897:1 7919:1 7925:1 7930:1 7933:2 7971:1 7984:1 7985:2 7986:6 7991:4 7996:1 7997:1 7999:1 8004:1 8006:4 8010:1 8032:6 8034:2 8036:2 8037:1 8061:1 8064:3 8074:1 8081:1 8093:1 8106:1 8108:2 8110:2 8117:1 8127:1 8131:1 8134:1 8140:1 8152:1 8153:1 8160:1 8161:2 8163:1 8168:1 8175:2 8178:1 8189:1 8190:1 8198:1 8218:4 8235:5 8236:9 8250:2 8257:4 8258:1 8262:4 8263:3 8265:1 8275:1 8278:1 8287:4 8288:3 8290:1 8303:53 8306:2 8315:1 8323:1 8326:11 8327:9 8331:2 8337:1 8367:1 8374:1 8375:1 8384:1 8387:2 8397:1 8404:3 8405:2 8411:1 8421:1 8424:2 8433:2 8445:3 8455:1 8459:1 8461:1 8468:1 8480:2 8486:1 8488:1 8492:2 8498:1 8504:1 8512:1 8514:2 8541:1 8548:1 8550:1 8553:2 8557:1 8558:4 8562:1 8588:1 8591:1 8592:1 8593:1 8605:2 8609:3 8653:1 8663:1 8681:1 8691:1 8696:2 8698:1 8707:2 8722:1 8723:1 8725:1 8734:1 8736:1 8737:1 8742:1 8755:2 8765:1 8768:1 8775:1 8777:1 8778:3 8788:1 8797:1 8810:1 8815:1 8816:2 8835:27 8843:1 8844:1 8865:3 8868:3 8870:1 8876:1 8900:1 8911:1 8935:6 8937:1 8938:1 8943:1 8969:1 8974:1 8990:5 8993:2 8994:2 8996:1 9001:1 9002:1 9019:1 9030:2 9031:4 9038:3 9044:1 9049:1 9065:2 9066:1 9069:1 9076:1 9080:1 9088:1 9090:1 9104:1 9109:1 9110:2 9119:1 9120:1 9128:1 9129:2 9139:2 9141:2 9142:1 9154:2 9176:1 9201:1 9204:1 9205:1 9209:1 9211:1 9216:1 9239:3 9242:2 9255:7 9257:1 9267:3 9271:3 9291:2 9302:1 9303:1 9312:1 9319:2 9323:1 9324:2 9333:1 9340:1 9345:1 9365:3 9375:1 9393:2 9404:1 9431:1 9436:1 9437:1 9449:1 9450:1 9460:1 9485:1 9486:1 9487:1 9498:1 9501:3 9510:1 9533:1 9536:2 9537:1 9541:3 9577:3 9586:1 9594:2 9606:1 9613:1 9618:1 9636:1 9642:1 9643:1 9644:1 9646:1 9651:2 9655:2 9661:1 9662:8 9663:1 9668:1 9670:1 9675:2 9687:1 9689:1 9695:3 9697:1 9708:7 9709:1 9719:2 9732:1 9740:1 9755:2 9759:1 9768:11 9769:7 9778:1 9784:2 9794:3 9806:1 9830:3 9837:2 9844:1 9849:1 9853:4 9855:1 9872:1 9878:1 9882:2 9884:2 9886:5 9888:2 9898:1 9907:2 9919:1 9928:1 9940:1 9949:1 9950:1 9960:2 9963:1 9969:1 9972:5 9974:2 9976:1 9981:1 9988:1 9995:1 9996:4 9999:2 10005:1 10006:1 10021:5 10050:1 10064:1 10080:1 10089:1 10108:1 10111:3 10118:1 10122:3 10128:1 10142:1 10145:1 10147:1 10154:1 10156:1 10159:1 10180:1 10183:1 10197:1 10201:1 10211:1 10220:8 10226:3 10264:3 10268:1 10283:1 10284:1 10298:3 10302:2 10317:1 10330:1 10351:1 10352:2 10358:1 10363:1 10365:3 10366:3 10369:2 10374:1 10399:1 10406:2 10408:2 10437:2 10439:1 10447:1 10458:1 10494:2 10511:1 10517:1 10530:2 10535:1 10537:1 10542:2 10554:1 10557:1 10558:1 10576:1 10587:1 10603:1 10606:1 10611:2 10612:1 10626:1 10627:1 10630:1 10657:1 10662:1 10663:1 10665:1 10670:1 10674:5 10690:4 10702:4 10707:2 10717:1 10738:2 10751:1 10762:3 10764:1 10772:1 10784:2 10807:1 10813:2 10818:2 10835:1 10839:1 10841:1 10850:1 10854:1 10857:1 10861:4 10864:1 10901:2 10907:1 10911:14 10913:1 10914:2 10919:2 10927:1 10948:2 10949:2 10969:1 10973:1 10980:1 10989:1 10991:1 11018:1 11040:1 11047:2 11049:1 11074:1 11091:1 11094:1 11109:1 11110:1 11112:1 11114:1 11115:1 11117:1 11121:4 11129:1 11131:1 11136:2 11169:1 11177:1 11181:4 11182:1 11183:1 11185:1 11187:1 11189:1 11191:1 11194:1 11196:3 11205:1 11207:1 11210:1 11213:2 11224:5 11244:1 11265:1 11277:1 11283:1 11284:1 11287:1 11291:1 11298:1 11299:1 11300:2 11301:1 11303:2 11306:1 11319:2 11323:1 11330:1 11336:2 11337:1 11345:1 11348:3 11353:1 11355:1 11360:2 11362:1 11365:1 11371:1 11373:7 11376:4 11389:2 11390:3 11395:1 11402:1 11413:1 11417:1 11419:2 11432:1 11447:2 11462:7 11463:2 11483:2 11485:1 11486:1 11498:4 11524:1 11541:1 11544:1 11550:3 11562:2 11570:1 11573:7 11588:2 11597:1 11605:1 11609:1 11624:4 11664:1 11677:1 11700:1 11731:1 11737:2 11744:1 11750:1 11767:1 11770:1 11791:1 11792:2 11796:3 11800:1 11801:2 11807:1 11811:2 11815:1 11816:1 11817:5 11819:6 11820:1 11826:1 11827:1 11832:1 11834:2 11838:3 11842:1 11845:4 11849:1 11851:1 11853:1 11865:1 11867:1 11868:3 11872:3 11877:1 11889:1 11901:3 11907:1 11910:2 11935:1 11937:1 11939:5 11944:1 11953:1 11983:1 11986:1 12007:1 12021:2 12023:1 12026:2 12061:1 12094:1 12102:1 12107:1 12113:1 12114:1 12115:1 12118:1 12131:1 12133:1 12137:3 12151:1 12156:1 12179:1 12192:1 12195:1 12202:2 12204:1 12219:3 12222:2 12227:1 12228:1 12241:2 12245:2 12247:1 12249:1 12250:2 12252:1 12260:3 12262:1 12263:1 12264:2 12269:1 12272:1 12278:1 12285:3 12287:2 12293:1 12297:1 12324:21 12325:1 12356:1 12365:1 12369:5 12383:3 12384:2 12387:1 12391:2 12396:1 12416:1 12418:2 12429:3 12430:1 12441:1 12442:3 12449:2 12450:1 12464:1 12483:1 12497:1 12501:1 12521:1 12528:1 12544:1 12553:1 12566:2 12568:1 12574:3 12575:1 12578:1 12579:1 12584:1 12587:1 12592:5 12596:1 12597:2 12599:1 12603:2 12604:1 12611:1 12614:1 12624:1 12636:1 12640:1 12641:1 12643:1 12649:2 12652:5 12655:5 12683:1 12718:1 12741:2 12745:1 12760:1 12767:2 12783:1 12799:1 12801:1 12808:1 12818:2 12829:1 12845:1 12853:1 12855:1 12856:1 12863:6 12872:1 12883:2 12886:1 12887:2 12901:1 12907:1 12916:1 12918:1 12925:2 12931:2 12955:2 12958:1 12971:2 12982:1 12983:2 13003:1 13025:2 13030:1 13043:1 13047:1 13049:2 13052:1 13059:2 13070:1 13094:1 13118:1 13125:1 13127:1 13128:1 13132:5 13133:4 13134:2 13149:2 13155:2 13168:1 13172:1 13174:1 13182:1 13195:1 13221:1 13235:1 13237:2 13240:1 13264:1 13271:1 13276:1 13280:1 13291:1 13303:1 13310:1 13327:1 13332:1 13338:1 13356:1 13427:3 13456:2 13473:1 13489:1 13493:1 13495:1 13502:1 13515:1 13531:1 13533:2 13534:1 13552:3 13566:1 13569:1 13582:1 13591:1 13601:1 13626:1 13654:1 13663:1 13666:1 13669:1 13670:3 13677:1 13699:1 13718:15 13723:6 13737:2 13756:1 13762:1 13776:2 13777:3 13785:4 13788:2 13805:1 13811:1 13817:2 13818:1 13828:1 13838:2 13839:1 13847:1 13881:1 13900:1 13906:1 13913:1 13914:1 13920:2 13927:1 13939:2 13949:1 13957:1 13959:1 13975:1 13978:1 13998:1 14000:1 14007:1 14010:2 14011:1 14020:1 14023:1 14026:1 14027:1 14048:1 14058:1 14064:5 14084:2 14085:1 14110:1 14129:1 14146:1 14149:1 14176:1 14186:2 14190:1 14199:1 14201:1 14204:4 14208:4 14223:2 14224:2 14228:2 14230:2 14240:3 14245:1 14262:8 14266:1 14279:1 14284:2 14307:1 14314:4 14316:1 14330:1 14347:1 14352:2 14354:1 14355:1 14356:2 14369:9 14370:1 14381:3 14385:1 14393:1 14403:1 14408:1 14416:1 14417:1 14422:2 14429:1 14437:1 14438:1 14453:23 14462:1 14466:1 14488:1 14503:2 14504:2 14510:3 14525:1 14532:2 14550:2 14560:1 14561:1 14603:3 14630:1 14635:6 14641:1 14658:1 14664:2 14670:1 14673:1 14689:1 14695:5 14722:1 14732:1 14734:1 14737:1 14746:3 14748:1 14749:2 14756:1 14760:1 14762:1 14769:6 14770:1 14773:1 14774:2 14775:1 14777:2 14778:1 14782:8 14783:3 14803:1 14806:1 14810:1 14811:1 14814:1 14816:1 14818:1 14840:1 14846:1 14867:1 14873:1 14894:1 14906:2 14911:2 14921:1 14933:1 14948:1 14958:1 14967:7 14968:1 15004:1 15010:1 15013:1 15015:1 15022:1 15024:1 15025:1 15032:1 15033:1 15046:3 15049:1 15074:2 15079:1 15080:1 15091:1 15092:1 15094:1 15098:8 15109:1 15111:1 15121:1 15123:3 15128:1 15142:1 15163:1 15174:1 15175:2 15185:2 15191:1 15202:1 15210:1 15213:1 15215:1 15224:1 15236:2 15258:1 15265:1 15266:1 15272:1 15278:1 15283:1 15293:1 15300:1 15304:1 15312:1 15315:1 15353:1 15362:2 15366:1 15379:5 15395:1 15401:1 15414:1 15434:1 15446:1 15468:1 15488:1 15514:1 15517:3 15518:4 15527:1 15540:2 15541:2 15544:1 15548:1 15550:2 15552:1 15570:1 15573:1 15581:1 15592:2 15606:1 15617:1 15625:2 15651:1 15653:1 15661:1 15675:2 15680:1 15683:1 15698:1 15703:1 15705:1 15707:1 15712:2 15714:1 15723:2 15725:4 15729:2 15782:1 15786:2 15790:1 15804:2 15806:1 15821:2 15841:1 15842:2 15844:1 15848:1 15851:1 15856:2 15870:1 15880:1 15883:1 15902:1 15906:1 15922:4 15928:1 15938:1 15941:2 15947:1 15972:1 15973:1 15978:1 16029:1 16032:1 16035:3 16073:2 16078:2 16079:1 16081:1 16085:1 16090:1 16100:1 16109:2 16120:1 16157:1 16160:3 16168:1 16188:1 16189:1 16192:2 16196:1 16198:1 16199:1 16231:1 16269:1 16298:1 16302:1 16308:1 16314:2 16351:1 16364:1 16406:1 16424:2 16435:1 16442:1 16464:1 16476:1 16479:1 16481:2 16492:1 16511:2 16516:3 16520:1 16545:1 16551:1 16553:1 16563:1 16567:2 16585:3 16592:1 16614:1 16616:1 16627:2 16641:1 16652:2 16676:1 16686:1 16687:2 16701:6 16720:4 16731:1 16739:5 16752:3 16777:1 16782:1 16790:1 16800:1 16807:2 16810:1 16815:2 16829:1 16869:1 16883:2 16884:1 16897:2 16905:1 16909:1 16913:4 16914:1 16918:1 16920:1 16926:1 16937:2 16940:5 16941:1 16945:1 16948:1 16962:2 16968:1 16980:1 16999:2 17008:2 17039:1 17052:2 17055:1 17062:1 17079:3 17089:2 17101:1 17104:1 17105:3 17120:1 17135:3 17140:1 17150:1 17151:1 17157:1 17164:1 17198:1 17200:1 17222:1 17224:1 17230:1 17233:1 17234:1 17237:1 17239:21 17241:1 17255:1 17256:1 17258:1 17260:3 17262:1 17285:3 17327:2 17344:1 17349:2 17360:4 17363:1 17380:2 17383:1 17392:2 17401:1 17428:1 17435:1 17442:1 17444:1 17445:1 17454:2 17456:1 17464:1 17476:1 17482:1 17486:3 17489:1 17504:1 17511:1 17516:6 17518:2 17519:2 17520:6 17521:2 17523:1 17527:2 17529:1 17531:2 17532:5 17537:1 17538:1 17540:1 17544:1 17546:2 17548:1 17555:1 17570:1 17581:2 17590:1 17592:1 17598:1 17607:1 17627:1 17636:1 17637:1 17652:1 17655:2 17656:1 17657:1 17664:1 17688:1 17692:2 17697:1 17699:1 17708:2 17709:2 17729:2 17736:1 17762:1 17774:1 17776:1 17781:1 17788:1 17804:1 17808:1 17816:1 17827:1 17831:1 17868:1 17872:1 17874:1 17884:3 17899:1 17902:2 17915:2 17916:1 17925:1 17930:5 17937:1 17941:2 17954:1 17965:1 17966:1 17972:2 17975:4 17978:1 17980:2 17981:1 17985:1 17987:1 17994:4 17998:2 18008:4 18016:1 18026:1 18071:14 18073:1 18086:1 18088:1 18095:2 18096:4 18097:2 18102:1 18171:1 18172:1 18183:2 18191:1 18201:4 18211:1 18212:1 18225:1 18233:4 18236:2 18258:1 18266:1 18269:1 18284:1 18286:2 18291:1 18307:5 18308:1 18322:1 18326:1 18340:1 18341:1 18344:1 18361:1 18379:1 18423:2 18424:4 18425:1 18438:1 18440:1 18443:1 18453:1 18475:1 18490:1 18491:1 18494:1 18514:1 18517:1 18530:2 18533:1 18548:1 18556:1 18565:2 18566:1 18572:1 18577:2 18585:1 18587:2 18589:1 18593:1 18597:1 18617:1 18618:1 18662:1 18670:1 18707:1 18712:1 18731:1 18734:1 18742:1 18755:1 18760:1 18762:1 18775:3 18779:1 18791:3 18796:1 18800:1 18801:1 18810:3 18814:2 18815:2 18819:3 18824:1 18825:10 18852:1 18872:1 18877:2 18880:1 18885:4 18887:1 18892:1 18898:3 18905:1 18908:2 18909:1 18910:1 18962:1 18973:1 18982:1 18983:1 19004:4 19009:1 19023:1 19033:2 19047:1 19050:1 19054:1 19061:1 19070:1 19071:1 19101:1 19102:1 19103:1 19104:1 19120:1 19123:1 19130:1 19134:2 19147:2 19166:1 19171:1 19202:1 19207:1 19220:1 19225:1 19226:3 19231:1 19233:1 19236:1 19243:1 19246:1 19267:1 19299:1 19337:2 19376:1 19378:1 19390:1 19391:2 19411:2 19421:1 19450:1 19514:2 19515:1 19525:1 19538:1 19543:1 19553:1 19565:1 19575:1 19581:1 19592:1 19593:1 19600:1 19607:1 19610:1 19619:1 19631:1 19651:1 19656:3 19661:1 19670:1 19709:1 19719:15 19731:2 19750:1 19780:1 19805:1 19806:1 19826:15 19832:1 19833:4 19834:2 19840:1 19843:1 19846:7 19847:1 19863:1 19872:1 19876:3 19897:1 19915:2 19948:6 19971:2 19979:1 19988:2 19990:1 19993:1 20016:3 20020:1 20023:2 20027:1 20041:3 20046:1 20047:1 20053:2715 20064:1 20070:1 20083:1 20085:1 20086:1 20087:1 20098:1 20126:1 20132:1 20134:1 20136:1 20150:1 20160:2 20181:1 20185:1 20212:2 20217:1 20218:1 20229:1 20241:1 20262:1 20264:1 20267:1 20271:2 20274:6 20275:4 20286:1 20292:1 20294:1 20298:1 20308:1 20315:1 20320:1 20327:1 20338:1 20350:1 20364:1 20368:1 20373:1 20375:1 20420:1 20422:3 20425:2 20431:1 20444:1 20469:1 20482:1 20486:2 20489:1 20490:3 20497:2 20517:1 20528:2 20533:1 20545:1 20546:2 20547:1 20557:2 20558:1 20567:1 20579:1 20584:1 20587:1 20598:1 20605:2 20618:1 20630:2 20637:1 20642:1 20644:1 20647:2 20649:2 20651:2 20660:1 20669:1 20679:2 20681:1 20701:2 20702:3 20715:4 20721:1 20724:1 20732:3 20757:3 20759:1 20765:1 20768:1 20769:1 20772:1 20774:1 20778:1 20781:2 20785:2 20787:9 20792:1 20813:1 20815:1 20833:1 20838:2 20839:1 20848:2 20864:5 20871:1 20882:1 20884:2 20901:1 20917:1 20926:4 20933:1 20935:2 20941:1 20943:2 20956:4 20957:2 20968:1 20974:1 20979:2 20999:1 21004:1 21005:5 21013:2 21014:1 21022:3 21061:5 21062:2 21065:2 21070:1 21075:1 21089:2 21093:2 21095:2 21098:2 21103:1 21105:1 21106:2 21109:1 21121:2 21132:2 21143:1 21148:1 21149:1 21150:1 21152:1 21157:1 21168:1 21202:1 21219:1 21220:3 21237:1 21239:2 21241:1 21242:1 21246:1 21249:1 21250:3 21254:1 21273:1 21277:1 21281:1 21283:1 21288:1 21295:1 21302:2 21308:1 21313:2 21320:1 21322:2 21330:2 21331:1 21336:1 21341:1 21342:1 21354:1 21361:2 21362:1 21371:1 21376:2 21379:4 21385:1 21387:4 21446:1 21451:1 21453:1 21463:1 21466:3 21475:1 21478:1 21482:2 21483:2 21486:2 21501:2 21503:3 21507:3 21511:3 21518:1 21519:3 21523:2 21524:1 21544:5 21555:3 21571:1 21573:1 21583:1 21586:1 21587:1 21590:2 21591:4 21606:1 21613:1 21614:2 21627:1 21628:1 21633:1 21652:2 21654:3 21667:1 21673:1 21676:2 21678:3 21699:1 21700:1 21711:3 21712:23 21713:2 21719:1 21727:5 21733:1 21753:1 21756:2 21759:1 21767:1 21789:3 21798:1 21799:1 21813:1 21818:1 21822:1 21828:1 21853:1 21859:2 21860:1 21861:1 21881:1 21887:1 21897:1 21902:1 21907:1 21926:1 21928:1 21940:4 21960:2 21982:2 21990:1 22001:2 22015:1 22018:1 22027:1 22029:1 22032:2 22066:8 22069:1 22071:3 22078:1 22085:1 22086:1 22119:1 22120:1 22121:1 22128:1 22134:1 22140:1 22174:1 22177:1 22185:4 22202:4 22221:1 22225:1 22228:1 22231:1 22235:1 22236:1 22244:1 22247:2 22282:2 22288:3 22298:2 22300:3 22303:1 22314:3 22316:1 22319:2 22323:1 22325:1 22326:1 22337:2 22343:1 22370:5 22390:2 22391:1 22392:1 22398:1 22402:1 22413:1 22417:2 22419:1 22421:3 22432:2 22451:1 22452:2 22466:1 22473:1 22478:2 22479:1 22488:5 22492:1 22496:2 22501:1 22503:1 22508:2 22519:3 22532:1 22546:2 22554:1 22557:1 22567:2 22590:1 22591:1 22592:1 22602:2 22615:2 22621:2 22624:2 22628:2 22632:2 22635:1 22643:2 22663:1 22665:1 22671:2 22685:2 22699:2 22715:1 22716:4 22723:1 22724:1 22726:4 22739:1 22741:1 22750:2 22755:1 22758:1 22760:1 22768:1 22769:1 22773:2 22774:1 22779:1 22781:1 22790:1 22793:1 22794:1 22804:1 22811:1 22815:1 22838:1 22846:2 22852:1 22855:1 22857:1 22862:2 22864:1 22865:1 22866:3 22872:1 22875:1 22879:1 22893:1 22939:1 22996:2 23014:3 23017:1 23026:4 23027:2 23031:1 23032:1 23038:1 23039:1 23043:1 23045:1 23056:1 23063:2 23070:3 23071:1 23081:1 23090:1 23104:1 23121:1 23131:1 23137:1 23147:1 23158:1 23159:1 23181:2 23183:1 23184:1 23185:1 23190:1 23194:1 23195:2 23199:1 23200:1 23210:1 23213:1 23217:2 23222:2 23228:2 23229:1 23230:1 23236:2 23237:1 23238:1 23239:1 23249:1 23251:2 23260:1 23262:1 23271:14 23281:2 23282:3 23288:2 23298:1 23313:1 23323:1 23325:1 23326:1 23328:1 23337:1 23340:1 23345:2 23347:1 23348:2 23349:1 23352:1 23355:1 23377:1 23389:1 23410:3 23418:1 23426:2 23429:1 23434:1 23437:6 23439:3 23442:1 23452:2 23466:1 23467:1 23468:1 23475:1 23477:1 23496:1 23497:1 23498:1 23500:3 23502:4 23503:2 23506:1 23522:1 23537:1 23540:1 23576:1 23605:4 23613:1 23614:5 23616:3 23617:3 23619:1 23620:1 23625:1 23628:2 23631:1 23632:2 23643:1 23644:1 23645:5 23655:1 23656:1 23659:1 23661:1 23662:1 23674:1 23682:1 23693:2 23697:2 23700:2 23721:1 23738:1 23749:1 23751:1 23778:2 23783:3 23795:1 23796:1 23799:1 23801:1 23811:1 23823:1 23834:1 23850:1 23853:1 23858:1 23859:1 23862:1 23865:3 23867:2 23882:2 23886:1 23887:1 23897:1 23900:1 23912:2 23915:1 23922:5 23929:1 23939:1 23940:4 23943:3 23946:1 23952:1 23969:1 23977:1 23982:1 23986:1 23990:2 23993:1 23997:1 23998:1 24001:1 24002:4 24010:2 24016:1 24026:2 24030:10 24033:1 24037:2 24044:1 24046:1 24050:1 24053:1 24073:1 24074:1 24108:9 24111:1 24126:1 24150:1 24162:1 24172:6 24173:1 24175:1 24177:1 24178:1 24179:1 24184:1 24192:1 24197:1 24199:1 24221:1 24222:3 24238:1 24248:1 24250:4 24260:1 24278:1 24289:2 24290:1 24291:7 24294:2 24305:3 24308:1 24309:4 24319:1 24325:1 24329:1 24332:1 24346:1 24349:5 24361:1 24370:1 24371:4 24373:1 24376:3 24386:1 24396:1 24408:1 24414:1 24419:1 24426:1 24429:1 24432:1 24447:1 24451:1 24479:1 24486:1 24495:1 24499:1 24500:1 24502:1 24517:1 24531:2 24549:10 24550:3 24558:1 24568:2 24574:1 24578:3 24585:4 24590:1 24594:1 24598:3 24608:2 24609:1 24611:1 24624:1 24635:1 24661:1 24671:1 24681:1 24682:1 24685:2 24688:2 24706:1 24708:1 24711:1 24742:1 24744:1 24746:1 24749:1 24750:1 24752:2 24762:1 24774:1 24776:2 24784:1 24789:1 24795:2 24799:1 24806:2 24808:1 24814:1 24842:2 24851:3 24856:1 24883:3 24899:1 24940:3 24969:1 24996:3 25000:3 25008:7 25018:2 25027:1 25033:1 25036:3 25039:1 25051:3 25054:2 25056:3 25066:1 25080:4 25122:1 25130:1 25137:1 25138:2 25160:2 25168:1 25172:1 25184:1 25196:1 25199:4 25205:1 25230:1 25232:1 25240:3 25246:1 25259:2 25268:1 25273:2 25283:1 25286:1 25298:1 25304:1 25314:1 25315:2 25318:4 25320:3 25329:1 25331:1 25343:1 25345:1 25352:1 25366:3 25367:1 25368:2 25371:2 25376:1 25384:1 25388:1 25391:1 25396:1 25446:1 25447:1 25450:5 25451:1 25453:1 25458:1 25462:1 25469:1 25471:1 25472:4 25474:1 25477:1 25478:1 25479:1 25481:1 25485:1 25502:1 25511:1 25535:3 25537:1 25549:1 25560:2 25605:3 25615:1 25618:2 25633:1 25652:2 25659:1 25674:1 25687:1 25703:1 25715:1 25718:2 25727:2 25729:1 25739:1 25754:1 25770:1 25772:1 25776:1 25786:1 25793:2 25796:1 25803:1 25817:2 25840:1 25851:1 25861:1 25885:1 25898:1 25900:2 25909:1 25937:2 25940:1 25963:2 25977:4 25989:1 26010:1 26021:1 26022:8 26030:1 26041:1 26048:1 26050:1 26055:5 26059:1 26066:1 26075:1 26076:1 26081:1 26086:5 26095:1 26097:1 26098:1 26103:1 26111:1 26135:4 26157:4 26161:2 26167:1 26168:2 26214:1 26250:1 26253:1 26255:1 26288:1 26289:1 26291:1 26292:1 26300:1 26301:2 26304:3 26305:4 26308:1 26309:2 26311:1 26313:1 26317:2 26318:1 26319:1 26320:3 26329:1 26342:1 26356:6 26365:1 26373:2 26374:1 26376:1 26380:1 26391:1 26395:1 26397:1 26399:1 26420:12 26425:6 26426:1 26445:1 26447:2 26450:1 26456:1 26457:1 26459:1 26473:1 26477:1 26479:1 26482:1 26483:2 26488:3 26495:3 26512:1 26515:1 26530:1 26536:1 26588:1 26593:1 26616:1 26632:1 26634:1 26648:3 26651:2 26659:1 26668:1 26669:1 26674:3 26683:2 26687:1 26690:1 26696:3 26698:2 26703:1 26734:1 26736:1 26749:1 26756:1 26758:2 26760:1 26766:1 26767:1 26775:1 26776:1 26787:1 26793:1 26794:1 26803:5 26828:3 26833:1 26836:1 26844:1 26847:1 26857:2 26862:2 26872:1 26875:3 26876:1 26880:1 26895:1 26901:1 26902:1 26928:1 26929:18 26930:2 26942:1 26962:1 26964:1 26973:1 26974:1 26986:1 27000:1 27012:2 27019:2 27024:1 27029:1 27048:2 27051:1 27055:1 27059:1 27060:1 27078:1 27083:1 27088:1 27092:1 27094:1 27112:1 27123:1 27134:1 27163:1 27164:1 27174:1 27192:12 27193:1 27202:1 27218:1 27230:1 27233:2 27234:1 27253:1 27265:1 27271:1 27272:1 27279:3 27290:1 27298:1 27304:1 27312:7 27315:1 27336:1 27338:1 27340:2 27341:1 27368:1 27375:1 27381:3 27387:1 27393:1 27398:2 27408:1 27410:1 27418:1 27428:1 27443:2 27448:2 27450:1 27465:2 27481:1 27484:1 27486:1 27498:1 27514:1 27519:2 27528:1 27577:1 27579:2 27590:1 27603:1 27606:1 27613:1 27619:1 27622:1 27627:3 27633:5 27636:1 27643:1 27645:1 27646:2 27657:1 27662:1 27669:1 27673:1 27701:7 27711:1 27713:1 27716:1 27728:1 27729:8 27746:2 27748:2 27750:1 27765:1 27771:1 27773:1 27777:1 27784:4 27785:1 27786:1 27793:1 27796:1 27810:1 27818:1 27820:1 27854:1 27858:1 27866:1 27873:2 27889:1 27893:1 27901:1 27927:1 27933:1 27940:3 27947:1 27970:1 27977:1 28000:1 28001:1 28010:1 28025:1 28026:1 28027:1 28038:2 28041:1 28047:2 28048:1 28049:3 28064:1 28065:1 28071:1 28072:1 28076:2 28078:1 28092:1 28098:1 28100:1 28106:3 28108:1 28131:1 28142:5 28153:1 28168:1 28186:1 28191:1 28200:2 28202:1 28210:2 28211:1 28213:1 28227:2 28228:17 28239:2 28265:1 28268:2 28282:1 28289:4 28291:2 28292:1 28303:1 28304:1 28305:1 28309:2 28317:1 28322:1 28326:2 28328:2 28337:1 28343:1 28348:1 28356:4 28360:3 28368:4 28371:3 28373:4 28375:1 28392:1 28403:1 28406:1 28410:1 28432:1 28456:1 28462:1 28463:1 28475:2 28481:1 28497:1 28500:1 28501:2 28502:1 28515:1 28531:3 28551:2 28564:1 28568:2 28569:1 28572:1 28573:2 28583:2 28594:6 28595:1 28596:1 28605:1 28608:1 28609:1 28611:1 28618:2 28627:1 28630:1 28634:1 28637:1 28667:1 28671:2 28673:2 28691:2 28699:1 28727:1 28744:1 28768:1 28777:1 28788:3 28814:1 28816:2 28817:1 28846:1 28851:1 28857:1 28860:1 28863:6 28878:1 28883:1 28884:1 28921:1 28925:1 28931:1 28932:1 28945:1 28949:1 28954:3 28959:1 28963:1 28975:1 28983:2 28986:2 28988:2 28990:2 28998:3 29014:1 29017:1 29034:1 29043:1 29045:1 29050:2 29067:1 29078:2 29085:1 29086:2 29093:1 29095:1 29111:1 29132:1 29144:2 29158:2 29163:5 29166:1 29168:1 29171:1 29172:2 29182:1 29184:2 29187:1 29190:1 29191:2 29196:2 29204:1 29210:1 29218:1 29227:3 29238:2 29240:1 29241:2 29244:1 29247:1 29250:1 29259:2 29260:2 29281:1 29295:1 29302:1 29312:1 29314:1 29318:2 29322:1 29354:1 29373:6 29375:3 29377:2 29392:1 29401:1 29404:1 29406:1 29438:1 29446:2 29453:1 29460:2 29465:2 29469:1 29473:2 29482:1 29484:1 29487:1 29494:2 29501:1 29508:1 29514:1 29516:1 29523:1 29524:1 29529:4 29530:1 29531:1 29532:1 29536:4 29539:1 29543:2 29546:1 29549:1 29556:3 29566:2 29571:1 29574:1 29579:1 29580:1 29613:1 29615:1 29630:1 29641:5 29656:1 29663:2 29688:2 29700:1 29709:1 29763:1 29766:2 29785:1 29787:1 29798:1 29804:1 29805:2 29824:1 29831:2 29844:1 29848:1 29849:1 29853:1 29855:3 29862:5 29872:1 29876:1 29879:1 29883:1 29891:1 29900:1 29921:7 29952:2 29954:1 29964:1 29969:1 29985:1 29988:1 30006:1 30009:1 30014:1 30019:2 30034:2 30039:1 30051:2 30063:1 30065:1 30077:1 30082:1 30100:1 30105:1 30109:1 30110:2 30114:1 30124:2 30133:2 30134:3 30135:1 30138:1 30140:1 30146:3 30150:1 30151:1 30152:3 30169:1 30171:2 30180:1 30181:5 30185:1 30196:1 30203:1 30204:1 30205:1 30220:3 30226:2 30228:2 30229:1 30231:1 30235:1 30238:5 30244:1 30251:3 30252:1 30261:3 30263:1 30275:3 30279:1 30283:3 30285:1 30296:1 30309:1 30316:3 30332:1 30336:1 30354:1 30356:2 30362:1 30377:1 30392:3 30397:5 30406:7 30411:1 30428:1 30438:6 30453:1 30457:1 30462:1 30470:1 30471:1 30484:3 30491:1 30493:1 30495:1 30515:1 30525:1 30527:7 30532:1 30537:2 30571:1 30574:1 30583:1 30604:1 30614:1 30629:1 30634:1 30635:2 30643:1 30645:1 30646:3 30651:2 30656:1 30670:1 30673:3 30704:1 30709:1 30710:1 30711:1 30717:8 30719:2 30729:1 30730:1 30735:2 30750:1 30751:1 30786:6 30810:1 30865:1 30871:1 30879:1 30882:1 30886:2 30916:1 30924:1 30926:1 30952:1 30955:1 30971:1 31003:1 31004:1 31028:2 31043:1 31046:1 31047:2 31048:3 31053:2 31055:3 31068:1 31072:2 31074:1 31082:1 31086:1 31092:1 31103:1 31124:1 31136:1 31143:1 31152:1 31168:1 31178:1 31184:1 31194:3 31198:1 31204:2 31233:2 31238:2 31239:2 31257:1 31259:1 31272:1 31274:1 31284:1 31287:1 31289:1 31296:1 31301:1 31308:4 31309:1 31313:2 31315:1 31323:1 31337:1 31343:1 31345:2 31348:4 31351:2 31377:1 31382:1 31405:1 31413:1 31422:1 31431:1 31443:1 31467:1 31473:1 31478:3 31484:1 31487:1 31505:1 31516:4 31519:1 31542:1 31577:2 31580:2 31599:1 31600:1 31604:1 31606:1 31608:3 31615:3 31617:4 31618:1 31623:1 31632:1 31665:1 31675:1 31677:5 31682:1 31686:1
ac722966198babf4459c826cbdb1d24b4375e63f
c3280ada260999123d75347caeaad1c7fc9f8266
/MetodeBagiDua.sci
65a680a5be447dd3d5ca5094ad29e40d261457b4
[]
no_license
dikisp/Kuliah-MetNum
3bd01f0573f2a18eb320a716da841ca3ec69930b
7775f5e0251457702fb3e24c88483df0ff37fee7
refs/heads/master
2020-03-23T06:41:49.307866
2018-07-17T03:13:25
2018-07-17T03:13:25
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,944
sci
MetodeBagiDua.sci
function MetodeBagiDua(a,b,toleransi) //inisialisasi c=0; fa=0; fb=0; fc=0; galat=1; //header printf(' ----------------------------------------------------------------------------\n'); printf(' | a | c | b | f(a) | f(c) | f(b) | |f(c)| | ε |\n'); printf(' ----------------------------------------------------------------------------\n'); //penghitungan while (galat > toleransi ) temp = c; c = (a+b)/2; fa = a.^3-9*a.^2+23*a-16; fb = b.^3-9*b.^2+23*b-16; fc = c.^3-9*c.^2+23*c-16; galat = (c - temp)/c; if(galat >= toleransi) //tampilan if (fa < 0) if (fc < 0) printf(' | %.4f | %.4f | %.4f | %.4f | %.4f | %.4f | %.4f | %.4f |\n',a,c,b,fa,fc,fb,abs(fc),galat) else printf(' | %.4f | %.4f | %.4f | %.4f | %.4f | %.4f | %.4f | %.4f |\n',a,c,b,fa,fc,fb,abs(fc),galat) end //endif else // (fa > 0) if (fc < 0) printf(' | %.4f | %.4f | %.4f | %.4f | %.4f | %.4f | %.4f | %.4f |\n',a,c,b,fa,fc,fb,abs(fc),galat) else printf(' | %.4f | %.4f | %.4f | %.4f | %.4f | %.4f | %.4f | %.4f |\n',a,c,b,fa,fc,fb,abs(fc),galat) end; //endif end; //endif end; //endif //pertukaran c dengan a atau b if ((fa*fc) < 0) b = c else a = c end; //endif end; //endwhile printf(' ----------------------------------------------------------------------------\n'); endfunction write(%io(2),'Masukkan nilai a : '); x=read(%io(1),1,1); write(%io(2),'Masukkan nilai b : '); y=read(%io(1),1,1); write(%io(2),'Masukkan nilai toleransi : '); toleransi=read(%io(1),1,1); MetodeBagiDua(x,y,toleransi);
0e9762b44f3fdbdce91eab494e3e3cf110be2ba7
25033eda4e7cd13f945f94c5dc35f15825066b42
/Inria/1 cohort/ifac.sci
1ff76381a07d91ca955480867e1caed39b63f7fb
[]
no_license
julienguegan/Internships
a26cb9efa2f1715832511a7aa94d25bfc675388b
ad51d5845ed8fd41e29259c95e8beff80bac65cf
refs/heads/master
2020-12-20T21:54:29.099157
2020-01-25T19:20:10
2020-01-25T19:20:10
236,217,889
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,861
sci
ifac.sci
clear //clf() //T < +∞ T = 20 t = 0:0.01:T exec('C:\Users\Julien Guégan\Documents\Cours\MAM4\STAGE\1 cohort\Fonctions 1 cohort.sci',-1) Metoile = fsolve(0,eqnM) Uetoile = 1-g(Metoile)./f(Metoile)//theorem 1 disp('M* = '+string(Metoile)) // ∃! τ*>0 such that λ(τ∗,M∗) = 0. τetoile = fsolve(0,list(lambda,Metoile)) disp('τ* = '+string(τetoile)) M = 0:3000 //***************T infini******************************// tolM = 10^-1/* //Preparation du graphique subplot(121) v = 0:20 plot([0,length(v)],[Metoile,Metoile],'r--','LineWidth',2) xstring(length(v), 2300, "M*"); gce().font_size=3 gce().font_color=5 xstring(length(v)/2, 1000, "u(M) = 0"); gce().font_size=3 xstring(length(v)/2, 4000, "u(M) = 1"); gce().font_size=3 xlabel('t - temps') ylabel('M - mycélium') //RESOLUTION ODE ms1 = ode("stiff",[0.1;1],0,v,[tolM tolM], list(syst_dyn,"infini"))// ! attention oscillations ! tolérances ! //ms2 = ode("stiff",[5500;5500],0,v,[tolM tolM], list(syst_dyn,"infini")) ms3 = ode("stiff",[100;100],0,v,[tolM tolM], list(syst_dyn,"infini")) //ms4 = ode("stiff",[3500;3500],0,v,[tolM tolM], list(syst_dyn,"infini")) ms5 = ode("stiff",[0.0001;0.0001],0,v,[tolM tolM], list(syst_dyn,"infini")) plot2d(v,ms1(1,:)) //plot2d(v,ms2(1,:)) plot2d(v,ms3(1,:)) //plot2d(v,ms4(1,:)) plot2d(v,ms5(1,:)) xtitle("Optimal feedback control strategies for n = 10 and T = +∞") */ //***************T fini******************************// //subplot(122) plot([0,T-τetoile],[Metoile,Metoile],'r--','LineWidth',2) plot([T-τetoile,T-τetoile],[0,Metoile],'k:') plot2d([T+0.01,T+0.01],[0,5000],color("green")) xstring(0, Metoile, "M*"); gce().font_size=3 gce().font_color=5 xstring(T, 0, "T"); gce().font_size=3 gce().font_color=3 xstring(T-τetoile/1.5, Metoile/2, "Γ"); gce().font_size=3 gce().font_color=2 xstring(T-τetoile, 0, "T-τ∗"); e = gce() e.font_size=3 xstring(length(t)/4, 1000, "u(M) = 0"); gce().font_size=3 xstring(length(t)/4, 4000, "u(M) = 1"); gce().font_size=3 xlabel('t - temps') ylabel('M - mycélium') xtitle("Optimal feedback control strategies for n = 10 and T = 20") //pour tracer sigma = switching surface xres=[] for i = 1:floor(Metoile) xres = [xres fsolve(0,list(lambda,M(i)))] end plot2d(T-xres,M(1:floor(Metoile)),color('blue')) //RESOLUTION ODE ! attention oscillations ! tolérances ! ms1 = ode("stiff",[1;1],0,t,[tolM tolM], list(syst_dyn,"fini")) ms2 = ode("stiff",[5000;100],0,t,[tolM tolM], list(syst_dyn,"fini")) ms3 = ode("stiff",[100;2000],0,t,[tolM tolM], list(syst_dyn,"fini")) ms4 = ode("stiff",[3500;3500],0,t,[tolM tolM], list(syst_dyn,"fini")) ms5 = ode("stiff",[0.01;0.01],0,t,[tolM tolM], list(syst_dyn,"fini")) ms6 = ode("stiff",[0.0001;0.0001],0,t,[tolM tolM], list(syst_dyn,"fini")) plot2d(t,ms1(1,:)) plot2d(t,ms2(1,:)) plot2d(t,ms3(1,:)) plot2d(t,ms4(1,:)) plot2d(t,ms5(1,:)) plot2d(t,ms6(1,:))
3c8cfadf73a2ae5754b3095a0ed3c5cf6c6499fc
449d555969bfd7befe906877abab098c6e63a0e8
/2378/CH2/EX2.1/Exa_2_1.sce
63015cfa24d69f2ff7b70e6a0c3e6caf908d6190
[]
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,142
sce
Exa_2_1.sce
//Harmonic response of a water tank //Exa_2_1 clc; clear; close; l=300*12; //height of water tank din=8*12; //inner diameter of tubular cross section in. dou=10*12; //outer diameter of tubular cross section in. m=6e5; //weight of tank with water in lb E=4e6; //youngs modulus of reinforced concrete in psi I= %pi / 64 * (dou^4 - din^4); //moment of inertia in in.^4 k=3*E*I/l^3; omegan=sqrt(k/m*386.4); //natural frequency disp(omegan,"Natual frequency of water tank in transverse direction in lb/in. :"); taon=2 * %pi / omegan; //time period disp(taon,"Natural time period of transverse vibration in seconds :") //refer Eqa 2.23 xo=10; Ao=10; //constant in in. phio=%pi / 2; //phase angle //vibration response disp("vibration response"); disp("x(t)=Ao*sin(omegan*t + %pi/2)"); disp("where"); disp(Ao,"Ao="); disp(omegan,"omegan="); xdot_max=Ao*omegan; //maximum velocity disp(xdot_max,"maximum velocity of water tank in in./sec :") xdotdot_max=Ao*omegan^2; //maximum accelaration disp(xdotdot_max,"maximum accelaration of water tank in in./sec^2 :")
38f1f9e9f0cac2b27b5d8954f2359c90d1f53115
66106821c3fd692db68c20ab2934f0ce400c0890
/test/jintgen/unr_am_04.tst
418bc3f79d2957c7652c24f802da7903a7327ed1
[]
no_license
aurelf/avrora
491023f63005b5b61e0a0d088b2f07e152f3a154
c270f2598c4a340981ac4a53e7bd6813e6384546
refs/heads/master
2021-01-19T05:39:01.927906
2008-01-27T22:03:56
2008-01-27T22:03:56
4,779,104
2
0
null
null
null
null
UTF-8
Scilab
false
false
174
tst
unr_am_04.tst
// @Harness: verifier // @Purpose: "Test for unresolved addressing modes" // @Result: "UnresolvedAddrMode @ 6:21" architecture unr_am_01 { instruction "I": AM { } }
ed32caa94c5d0243d9b6ff412d5158cf90fba6ef
28f88c035b368ddbe3efd8f5dbf48f01496d1ad0
/lab2/ShiftLeft.tst
b95708dab0dbd47995825913791eb9219ffb32a5
[]
no_license
sandeepkasimalla/Computer_System_Design_CS4110
46c06acd04c7b0477ff37b76d127c15f005feb9b
79d89db0b19f18b9a337fd8e18926114959c5323
refs/heads/master
2020-07-11T22:45:14.966087
2019-11-21T18:46:33
2019-11-21T18:46:33
204,659,866
0
0
null
null
null
null
UTF-8
Scilab
false
false
347
tst
ShiftLeft.tst
load ShiftLeft.hdl, output-file ShiftLeft.out, compare-to ShiftLeft.cmp, output-list ip1%B1.16.1 out%B1.16.1; set ip1 %B0000000000000000, eval, output; set ip1 %B0001001000110100, eval, output; set ip1 %B1001100001110110, eval, output; set ip1 %B1010101010101010, eval, output; set ip1 %B0101010101010101, eval, output;
cbf35499e98538cfd5a901082c936adc74c88125
449d555969bfd7befe906877abab098c6e63a0e8
/68/CH10/EX10.1/ex1.sce
4dbb60c5c36c3bc8b2af51376518dec12c7cf0f1
[]
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,062
sce
ex1.sce
// Example 10.1 : To determine t_PHL, t_PLH and t_P // Consider CMOS inverter C_ox=6*10^-15; // (F/um^2) uC_n=115*10^-6; //uC_n=u_n*C_ox (A/V^2) uC_p=30*10^-6; //uC_p=u_p*C_ox (A/V^2) V_tn=0.4; // (V) V_tp=-0.4; // (V) V_DD=2.5; // (V) W_n=0.375*10^-6; // W for Q_N L_n=0.25*10^-6; // L for Q_N W_p=1.125*10^-6; // W for Q_P L_p=0.25*10^-6; // L for Q_P C_gd1=0.3*W_n*10^-9; // (F) C_gd2=0.3*W_p*10^-9; // (F) C_db1=10^-15; // (F) C_db2=10^-15; // (F) C_g3= 0.375*0.25*6*10^-15+2*0.3*0.375*10^-15; // (F) C_g4=1.125*0.25*6*10^-15+2*0.3*1.125*10^-15; // (F) C_w=0.2*10^-15; // (F) C=2*C_gd1+2*C_gd2+C_db1+C_db2+C_g3+C_g4+C_w; // (F) i_DN0=uC_n*W_n*(V_DD-V_tn)^2/(2*L_n); // i_DN0 = i_DN(0) (A) i_DNtPHL=uC_n*W_n*((V_DD-V_tn)*V_DD/2-((V_DD/2)^2)/2)/L_n; // i_DNtPHL = i_DN(t_PHL) (A) i_DNav=(i_DN0+i_DNtPHL)/2; // i_DN|av (A) t_PHL=C*(V_DD/2)/i_DNav; disp(t_PHL,"t_PHL (s)") t_PLH=1.3*t_PHL; // Since W_p/W_n=3 and u_n/u_p=3.83 thus t_PLH is greater than t_PHL by 3.83/3 disp(t_PLH,"t_PLH (s)") t_P=(t_PHL+t_PLH)/2; disp(t_P,"t_P (s)")
f42d647b388d84b7e7bf7a5c92ca987ff27329eb
089894a36ef33cb3d0f697541716c9b6cd8dcc43
/NLP_Project/test/blog/bow/bow.5_2.tst
cb4c527f7a0934090f6e7e70940dcb67cad591b9
[]
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
5,860
tst
bow.5_2.tst
5 59:1.0 61:0.2 64:1.0 269:1.0 292:1.0 394:0.3333333333333333 876:0.25 5 12:0.2857142857142857 15:1.0 16:0.014705882352941176 23:0.1 50:0.125 91:2.0 159:1.0 172:0.5 187:1.0 368:2.0 705:1.0 899:1.0 1012:1.0 1074:1.0 1120:1.0 1152:1.0 1438:1.0 1589:1.0 5 12:0.09523809523809523 16:0.014705882352941176 18:1.0 50:0.125 51:1.0 64:1.0 91:1.0 120:0.16666666666666666 164:1.0 676:1.0 787:1.0 860:1.0 1192:1.0 1244:1.0 1362:1.0 5 1:0.09090909090909091 3:0.5 9:1.0 12:0.19047619047619047 15:1.0 16:0.014705882352941176 50:0.125 64:1.0 170:1.0 467:1.0 5 1:0.09090909090909091 9:1.0 11:1.0 12:0.19047619047619047 16:0.029411764705882353 22:1.0 27:0.2 36:1.0 50:0.375 60:1.0 92:1.0 138:1.0 150:0.3333333333333333 152:1.0 155:1.0 265:1.0 324:1.0 472:1.0 787:1.0 1339:1.0 1345:1.0 1518:1.0 1519:1.0 5 1:0.09090909090909091 3:0.5 12:0.19047619047619047 16:0.014705882352941176 42:1.0 70:0.5 108:1.0 138:1.0 141:0.3333333333333333 166:2.0 168:1.0 172:1.0 197:1.0 250:1.0 624:1.0 5 1:0.09090909090909091 16:0.014705882352941176 91:1.0 92:1.0 114:0.125 115:1.0 120:0.16666666666666666 528:1.0 748:1.0 1086:1.0 5 9:1.0 16:0.014705882352941176 64:1.0 77:0.2 168:1.0 289:1.0 5 3:1.0 12:0.47619047619047616 16:0.014705882352941176 50:0.125 91:1.0 92:1.0 120:0.16666666666666666 138:1.0 152:0.5 224:1.0 324:1.0 368:1.0 779:1.0 796:1.0 1198:1.0 5 1:0.09090909090909091 3:0.5 9:1.0 12:0.047619047619047616 16:0.029411764705882353 27:0.2 50:0.125 82:1.0 108:1.0 120:0.16666666666666666 126:1.0 137:1.0 147:0.5 152:0.5 172:0.5 228:1.0 336:0.5 1335:1.0 5 5:0.16666666666666666 16:0.014705882352941176 71:1.0 72:1.0 77:0.2 92:1.0 120:0.16666666666666666 125:1.0 154:0.25 1296:1.0 5 9:2.0 12:0.047619047619047616 50:0.125 120:0.16666666666666666 973:1.0 1149:1.0 1353:1.0 5 1:0.09090909090909091 3:1.0 4:1.0 6:1.0 9:1.0 10:1.0 11:1.0 12:0.14285714285714285 15:1.0 27:0.2 50:0.625 77:0.2 79:1.0 89:0.5 114:0.125 120:0.16666666666666666 126:1.0 154:0.25 188:2.0 269:1.0 283:0.5 302:1.0 343:2.0 369:1.0 577:0.3333333333333333 578:1.0 763:0.5 998:1.0 1039:1.0 1221:1.0 5 9:1.0 13:1.0 50:0.125 79:1.0 114:0.125 343:1.0 5 9:1.0 16:0.014705882352941176 52:0.5 67:1.0 120:0.16666666666666666 132:0.3333333333333333 349:1.0 673:1.0 794:1.0 1339:1.0 5 1:0.09090909090909091 5:0.16666666666666666 9:1.0 16:0.029411764705882353 30:1.0 31:1.0 50:0.125 64:3.0 81:0.25 95:0.5 105:1.0 154:0.25 343:1.0 461:1.0 491:1.0 791:1.0 792:1.0 861:1.0 990:1.0 1335:1.0 5 4:1.0 12:0.047619047619047616 71:1.0 194:1.0 324:1.0 464:1.0 658:1.0 5 9:1.0 12:0.047619047619047616 16:0.014705882352941176 91:1.0 120:0.16666666666666666 154:0.25 392:1.0 757:1.0 794:1.0 909:1.0 1126:1.0 5 12:0.09523809523809523 16:0.014705882352941176 174:1.0 261:1.0 535:1.0 553:1.0 1235:0.2 1382:1.0 5 3:0.5 4:1.0 12:0.09523809523809523 16:0.014705882352941176 23:0.1 52:0.5 69:1.0 71:1.0 84:0.25 114:0.25 120:0.16666666666666666 132:0.3333333333333333 154:0.5 194:1.0 262:0.25 286:1.0 323:0.5 376:1.0 389:1.0 394:0.3333333333333333 669:1.0 756:1.0 1179:1.0 1382:1.0 5 12:0.09523809523809523 16:0.058823529411764705 23:0.1 41:0.14285714285714285 52:1.0 54:0.5 77:0.4 114:0.125 129:1.0 198:0.5 265:1.0 286:1.0 291:2.0 297:1.0 343:1.0 349:4.0 5 1:0.09090909090909091 16:0.014705882352941176 286:1.0 5 12:0.09523809523809523 14:0.2727272727272727 16:0.029411764705882353 27:0.8 50:0.25 77:0.2 88:1.0 91:1.0 132:0.6666666666666666 150:0.3333333333333333 155:0.5 273:3.0 283:0.5 287:1.0 322:0.16666666666666666 324:1.0 341:1.0 822:1.0 934:1.0 5 3:0.5 9:1.0 14:0.09090909090909091 16:0.014705882352941176 71:1.0 81:0.25 120:0.16666666666666666 125:1.0 129:1.0 132:0.3333333333333333 403:1.0 437:0.3333333333333333 500:1.0 584:1.0 898:1.0 1382:1.0 1569:1.0 5 266:1.0 343:1.0 5 3:0.5 9:1.0 12:0.09523809523809523 16:0.014705882352941176 23:0.1 27:0.4 50:1.125 64:1.0 79:1.0 81:0.25 125:1.0 132:0.6666666666666666 349:1.0 369:1.0 748:1.0 911:1.0 954:1.0 1099:1.0 1175:1.0 1196:1.0 1383:1.0 1440:1.0 5 6:1.0 16:0.014705882352941176 27:0.2 39:0.25 61:0.2 77:0.2 120:0.16666666666666666 125:1.0 200:0.5 1110:1.0 5 3:0.5 12:0.09523809523809523 16:0.014705882352941176 63:1.0 125:1.0 152:0.5 165:1.0 170:1.0 172:0.5 291:1.0 293:1.0 343:1.0 467:1.0 561:1.0 1156:1.0 5 1:0.09090909090909091 5:0.16666666666666666 16:0.014705882352941176 120:0.16666666666666666 125:1.0 343:1.0 394:0.3333333333333333 726:1.0 5 3:0.5 12:0.047619047619047616 16:0.014705882352941176 50:0.5 125:1.0 152:0.5 394:0.3333333333333333 624:1.0 996:1.0 5 14:0.09090909090909091 16:0.04411764705882353 50:0.125 64:1.0 125:1.0 283:0.5 323:0.5 394:0.3333333333333333 544:1.0 1156:1.0 5 3:1.0 12:0.047619047619047616 13:1.0 14:0.09090909090909091 16:0.029411764705882353 23:0.1 30:1.0 50:0.375 64:1.0 77:0.2 81:0.25 95:0.5 170:1.0 222:0.5 259:1.0 394:0.6666666666666666 457:2.0 771:1.0 1034:1.0 1305:1.0 1508:1.0 1564:1.0 5 12:0.047619047619047616 16:0.014705882352941176 79:2.0 125:1.0 535:1.0 5 4:1.0 5:0.16666666666666666 7:1.0 11:1.0 12:0.09523809523809523 16:0.014705882352941176 47:1.0 49:1.0 50:0.25 343:1.0 403:1.0 557:1.0 659:2.0 699:1.0 885:1.0 1002:1.0 1126:1.0 5 12:0.047619047619047616 16:0.029411764705882353 50:0.125 71:1.0 125:1.0 283:0.5 392:1.0 394:0.3333333333333333 679:1.0 924:1.0 5 3:0.5 16:0.014705882352941176 23:0.1 50:0.125 76:0.5 77:0.2 120:0.16666666666666666 132:0.3333333333333333 170:1.0 234:1.0 259:1.0 343:1.0 394:0.3333333333333333 861:1.0 909:1.0 1424:1.0 5 3:0.5 9:1.0 14:0.09090909090909091 23:0.1 27:0.2 50:0.125 77:0.2 91:1.0 170:1.0 343:1.0 394:0.3333333333333333 467:1.0 909:1.0 5 9:2.0 16:0.014705882352941176 50:0.25 64:1.0 84:0.25 170:1.0 222:0.5 343:1.0 394:0.3333333333333333 408:1.0 757:1.0 794:1.0 909:1.0 1184:1.0 5 9:1.0 12:0.047619047619047616 23:0.1 92:1.0 114:0.25 120:0.3333333333333333 132:0.3333333333333333 154:0.25 173:1.0 291:1.0 318:0.5 343:1.0 909:2.0 1184:1.0 5 9:1.0 12:0.09523809523809523 50:0.125 142:1.0 270:1.0 1144:1.0
ffff8346f4b331eafd1e63e42a093000fa3eba09
f2068f2734a1b9080ea2db4455a5fc3581ab0a1c
/plus_tau-compensation.sci
60cd3be31fd4c1c306e6fc528414632e3277abc1
[]
no_license
NnataKha/Conflict-models-with-attractive-interaction
5a9bc20603f05cfefa5283db453bc377ff68ff15
afc53eff31d1d16134b76fde0b51698abc4a9c67
refs/heads/master
2020-03-16T18:48:14.182188
2018-05-10T11:17:25
2018-05-10T11:17:25
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,420
sci
plus_tau-compensation.sci
clear; if 1==1 then n=6; for i=1:n T(i)=rand(100); M(i)=rand(100); end end //M=[0.07669220464090441;0.32497903823139684;0.1543080013234991;0.0774208472828813;0.004630362501208455;0.36196954602010994]; //T=[0.038548173413248454;0.04549940240263871;0.2224250336377795;0.23337264019335863;0.28981549496797365;0.17033925538500108]; //M=[1;2;3;4]; //T=[31;45;1;.1]; //n=length(M); m = 150;//number of steps st = sum(T); sm = sum(M); T = T'./st; M = M'./sm; eps=1/(n*n); Omega_plus=list(); Omega_minus=list(); for i=1:n if T(i) > M(i) then Omega_plus($+1)=i; else Omega_minus($+1)=i end end op=length(Omega_plus); om=length(Omega_minus); for k = 1:m time(k)=k; for i=1:op T_plus(k,i)=T(Omega_plus(i)) M_plus(k,i)=M(Omega_plus(i)) end T_v(k,:)=T; M_v(k,:)=M; Theta = sum(sqrt(T.*M)); tau = min(T,M); W = sum(tau); z = 1+Theta+W; T_t = (T.*(1+Theta)+tau)./z; M_t = (M.*(1+Theta)+tau)./z; Tau_plus(k)=0; Tau_minus(k)=0; for i=1:op Tau_plus(k)=Tau_plus(k)+tau(Omega_plus(i)) end for i=1:om Tau_minus(k)=Tau_minus(k)+tau(Omega_minus(i)) end check(k,:)=tau//.*Tau_plus(k)/Tau_minus(k) s=1; h=s; //***************************************************************************** //redistribution for M d=zeros(1,n); for i=1:op // d(Omega_plus(i))=(T(Omega_plus(i))-T_t(Omega_plus(i)))*s; d(Omega_plus(i))=(M_t(Omega_plus(i))-M(Omega_plus(i)))*s; end M_t=M_t+d; //***************************************************************************** //redistribution for T d=zeros(1,n); for i=1:om // d(Omega_minus(i))=(M(Omega_minus(i))-M_t(Omega_minus(i)))*h; d(Omega_minus(i))=(T_t(Omega_minus(i))-T(Omega_minus(i)))*h; end T_t=T_t+d; //***************************************************************************** sm=sum(M_t); st=sum(T_t); M=M_t./sm T=T_t./st; end if 1==1 then //subplot(211) plot(time,check,'.-') plot(time,T_v,'--'); plot(time,M_v); //plot(time,M_plus); //plot(time,T_plus,'--'); //subplot(212) //plot(time,T_v-M_v)//,'.-'); else subplot(211) plot(time,T_v,'.-'); plot(time,M_v,'*-'); subplot(212) plot(time,T_v-M_v,'.-'); end
9235d4bd21d6ae8a96c359ee565322a687f63b57
449d555969bfd7befe906877abab098c6e63a0e8
/1418/CH26/EX26.12/EX26_12.sce
1746aaef220e5aae7be1677144951a09149fa0ac
[]
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
792
sce
EX26_12.sce
//EXAMPLE 26.12 //SEPARATELY EXCITED GENERATOR clc; funcprot(0); //Variable Initialisation N=1000;.................//Speed of the generator in rpm V=125;..................//Terminal voltage in Volts I=200;..................//Load current at 1000 rpm in Amperes N1=800;.................//Speed of the generator dropped in rpm Ra=0.04;...............//Armature resistance in Ohms Vb=1*2;................//Brush drop in Volts R=V/I;.................//Load resistance in Ohms Eg1=V+(I*Ra)+Vb;...........//Generated EMF at 1000 rpm in Volts Eg2=Eg1*(N1/N);............//Generated EMF at 800 rpm in Volts I1=(Eg2-Vb)/(R+Ra);.........//Load current at 800 rpm in Amperes y=round(I1*10)/10;..........//Rounding of decimal places disp(y,"Load current at 800 rpm in Amperes:");
a74d142af576e5206fd808c0d63320cc6eb86dcb
449d555969bfd7befe906877abab098c6e63a0e8
/965/CH2/EX2.43/43.sci
d255f71757f9dc89aac1e85fbba3d6f47413b8a7
[]
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,038
sci
43.sci
clc; clear all; disp("heat loss per meter") r1=150/2;//mm inner radius of a steam pipe r2=160/2;//mm layer 1 radius of a steam pipe r3=r2+30;// mm layer 2 radius of steam pipe r4=r3+50;// mm outer radius of pipe t1=320;// degree C t4=40;// degree C kA=58;//W/(m*C) kB=0.18;//W/(m*C) kC=0.09;//W/(m*C) Q=2*3.1416*(t1-t4)/(log (r2/r1)/kA+log (r3/r2)/kB+log (r4/r3)/kC); disp("W",Q,"heat lost per meter =") //Q=2*3.1416*(t1-t2)/(log (r2/r1)/kA); X=2*3.1416/(log (r2/r1)/kA); t2=t1-Q/X; disp("degree C",t2,"temperature t2 =") //Q=2*3.1416*(t2-t3)/(log (r3/r2)/kB); X=2*3.1416/(log (r3/r2)/kB); t3=t2-Q/X; disp("degree C",t3,"temperature t3 =") hsteam=2703;//kJ/kg total heat pf steam when it is saturated at 320 degree C m=0.32;//kg/min Qsteam=m*hsteam-Q*60/1000;// kJ/min disp("kJ/min",Qsteam,"steam carried by steam per minute after losing heat in the pipe = ") //Qsteam=m*(hf+x*hfg) hf=1463;//kJ/kg hfg=1240;//kJ/kg x=((Qsteam/m)-hf)/hfg; disp(x,"amount of steam coming out of one meter pipe =")
378682964e0f21e745b523a695a75a4137462118
2e8fd638cb86a3b3ea69dddd8a2de255992d1ad0
/3)Power.sce
d0f241974296522807926aab8fc8fb18bb279b8e
[]
no_license
swati-25/SciLab-Assignment4
75ebb446b1f559ed06a264876f9628b943ba9216
073e3cc9dc96976087e0323a19d9ad7b0fe3f454
refs/heads/master
2022-04-13T03:35:12.764191
2020-04-10T14:59:03
2020-04-10T14:59:03
254,661,565
0
0
null
null
null
null
UTF-8
Scilab
false
false
578
sce
3)Power.sce
clc;clear;close; n=3 disp("Enter the elements for matrix A") for i=1:n for j=1:n A(i,j)=input("Enter the element ") end end disp(A,'Given Matrix is') u0=[1 1 1]'; disp(u0,' Initial vector is ') v=A*u0; a=max(u0); disp(a,'The First approximation to eigen value is'); while abs(max(v)-a)>0.002 disp(v,"The current eigen vector is") a=max(v); disp(a,"The current eigen value is") u0=v/max(v); v=A*u0; end format('v',4); disp(max(v),'Largest Eigen Value is :') format('v',5); disp(u0,'Corresponding Eigen Vector is :')
a7a0284138cf303a023a1c52dc5071be8b5de040
449d555969bfd7befe906877abab098c6e63a0e8
/1670/CH5/EX5.38/5_38.sce
3a8ea02579064e880fcf622efa99fa0da5ebb12a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
502
sce
5_38.sce
//Example 5.38 //Lagranges Interpolation Method //Page no. 178 clc;close;clear; x=[1,2,3,4,7] y=[2,4,8,16,128] x0=5 printf('\tx\ty=f(x)\n-----------------------\n') for i=1:5 printf('x%i\t%i\t %i\n',i-1,x(i),y(i)) end p=1;p1=1;i=1; for k=1:5 for j=1:5 if k~=j then p=p*(x0-x(j)) p1=p1*(x(k)-x(j)) end end L(k)=p/p1 p=1;p1=1; end p=0; for i=1:5 printf('\n L%i (x) = %g\n',i-1,L(i)) p=p+L(i)*y(i) end disp(p,"P(5) = ")
fd4c348416c80b9b4c61c2697c39d054a4d6dfda
449d555969bfd7befe906877abab098c6e63a0e8
/555/CH5/EX5.2/2.sce
508d322da27b90e4a1881a35d07922b0c1b90e38
[]
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
689
sce
2.sce
// Implementation of example 5.2 // Basic and Applied Thermodynamics by P.K.Nag clc clear //Work done W, Velocity V, Pressure p, Specific volume v, Height Z W = 135;//kJ/kg Q = - 9;//kJ/kg v1 = 0.37; //m^3/kg p1 = 600;//kPa V1 = 16;//m/s Z1 = 32;//m v2 = 0.62; p2 = 100; V2 = 270; Z2 = 0; g = 9.81;//m/s^2 //First law: //u1 + p1v1 + V1^2/2 + Z1g + dQ/dm = u2+ p2v2 + V2^2/2 + Z2g + dW/dm //Change in specific internal energy 'dU' dU = (p2*v2 - p1*v1) + (V2^2 - V1^2)*10^(-3)/2 + (Z2 - Z1)*g*10^(-3) + W - Q; if(dU>0) printf('Specific internal energy decreases by %0.3f kJ',dU); else printf('Specific internal energy increases by %0.3f kJ',-dU); end // end
c973005fd67f54418764569596acb0b053cff512
449d555969bfd7befe906877abab098c6e63a0e8
/2660/CH14/EX14.10/Ex14_10.sce
c53766dcbd1f6b20bfef0c236d6c469833b9a715
[]
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
980
sce
Ex14_10.sce
clc f = 0.2 // feed in mm/rev. t = 0.2 // uncut chip thickness in mm alpha = 10 // rake angle in degrees fc = 1600 // cutting force in N ft = 850 // thrust force in N tc = 0.39 // chip thickness in mm r = t/tc // chip thickness ratio d = 2 // depth of cut in mm b = 2 // mm alpha2 = alpha*%pi/180 // rake angle in radians phi = atan(r*cos(alpha2)/(1-r*sin(alpha2))) // shear angle in radians phi2 = phi*180/%pi // shear angle in degree fs = fc*cos(phi)-ft*sin(phi) //shear force in N fn = fc*sin(phi)+ft*cos(phi) // normal force in N f = fc*sin(alpha2)+ft*cos(alpha2) // friction force in N mu =((fc*tan(alpha2)+ft)/(fc-ft*tan(alpha2))) //kinetic coefficient of friction s = fc/(b*t) // specific cutting energy in N/mm^2 printf("\n Shear force = %d N\n Normal force = %0.1f N\n Friction force = %0.1f N\n Kinetic coefficient of friction = %0.3f" , fs , fn ,f , mu) printf("\n Specific cutting energy = %d N/mm^2" , s) // 'Answers vary due to round off error'
f0a04250cea26ea0f869d7edca50fe8acf86dbf4
38b89b84da9fe235f5b3a099bff16349b503cb87
/filtragem.sce
64c2be1c62d403164b4ed84c01d564ea8cfff587
[ "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
1,371
sce
filtragem.sce
// dados obtidos da ABEV3 x = [1655 1648 1615 1638 1685 1729 1754 1770 1780 1785 1800 1800 1754 1718 1716 1795 1787 1797 1751 1811 1845 1864 1809 1875 1822 1871 1867 1839 1859 1849 1819 1832 1815 1832 1832 1839 1849 1836 1723 1683 1637 1669 1659 1711 1700 1690 1666 1676 1731 1719 1700 1698 1672 1652 1699 1654 1675 1683 1682 1677 1684 1732 1744 1735 1769 1755 1725 1706 1742 1753 1705 1708 1750 1767 1772 1831 1829 1835 1847 1795 1792 1806 1765 1792 1749 1730 1701 1694 1661 1664 1649 1649 1709 1721 1721 1706 1722 1731 1726 1743 1755 1742 1735 1741 1764 1761 1765 1772 1768 1785 1764 1780 1805 1820 1845 1830 1817 1810 1805 1789 1781 1813 1887 1900 1900 1894 1902 1869 1820 1825 1810 1799 1825 1809 1799 1803 1796 1949 1980 2050 2034 2013 2042 2049 2016 2048 2063 2017 2007 1948 1938 1901 1878 1890 1911 1894 1880 1847 1833 1809 1817 1815 1855 1872 1838 1852 1880 1869 1872 1887 1882 1891 1937 1910 1915 1943 1926 1935]; xnovo = x(1:100) // colocar a pasta dos arquivos getd("/home/matheus/code/scilab"); Rx3 = comat(x,3); Rx4 = comat(x,4); Rx5 = comat(x,5); u = 2^(-30); l=5; N=60; y = LMSpredict(xnovo,l,u,N) xplotar = [x x($)*ones(1,l)]; xd = [xnovo zeros(1,l)]; xideal = [x(1:105)] plot([xd',y, xideal']) //erro = y'(101:105)-xideal(101:105); //media = (xideal(101)+xideal(102)+xideal(103)+xideal(104))/5; //errop = abs(erro/media); //erromedio = sum(errop)/5
0afc1cde962fca6c12b2f84db6663fe27e5eb978
449d555969bfd7befe906877abab098c6e63a0e8
/2318/CH1/EX1.1/ex_1_1.sce
d98884bbdbffa79875fcbba088741177dc727bde
[]
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
869
sce
ex_1_1.sce
//Example 1.1://ARITHEMATIC MEAN,AVERAGE DEVIATION ,STANDARD DEVIATION AND PROBABLE ERROR clc; clear; T=[99.7,99.8,99.9,100,100.1,100.2,100.3];//VOLTS f=[2,8,20,40,21,6,3];//frequency of occurence q=[T(1)*f(1),T(2)*f(2),T(3)*f(3),T(4)*f(4),T(5)*f(5),T(6)*f(6),T(7)*f(7)];// AM=(q(1)+q(2)+q(3)+q(4)+q(5)+q(6)+q(7))/100;//arithematic mean in mm for i= 1:7 qb(i)= T(i)-AM; end Q= [qb(1),qb(2),qb(3),qb(4),qb(5),qb(6),qb(7)];// AV=(-qb(1)*f(1)-qb(2)*f(2)-qb(3)*f(3)-qb(4)*f(4)+qb(5)*f(5)+qb(6)*f(6)+qb(7)*f(7))/100;// SD=sqrt(((qb(1)^2*f(1))+(qb(2)^2*f(2))+(qb(3)^2*f(3))+(qb(4)^2*f(4))+(qb(5)^2*f(5))+(qb(6)^2*f(6))+(qb(7)^2*f(7)))/100);//standard deviation r1= 0.6745*SD;//PROBABLE ERROR OF ONE READING disp(AM,"arithmetic mean is,(V)=") disp(AV,"average deviation is,(V)=") disp(SD,"standard deviation is,(V)=") disp(r1,"probable error is,(V)=")
fe4757c7a955092117fe221a388466801a91a4fd
717ddeb7e700373742c617a95e25a2376565112c
/3428/CH21/EX14.21.18/Ex14_21_18.sce
d8f1e016b42b996b4ec98df3ff967990340d4730
[]
no_license
appucrossroads/Scilab-TBC-Uploads
b7ce9a8665d6253926fa8cc0989cda3c0db8e63d
1d1c6f68fe7afb15ea12fd38492ec171491f8ce7
refs/heads/master
2021-01-22T04:15:15.512674
2017-09-19T11:51:56
2017-09-19T11:51:56
92,444,732
0
0
null
2017-05-25T21:09:20
2017-05-25T21:09:19
null
UTF-8
Scilab
false
false
336
sce
Ex14_21_18.sce
//Section-14,Example-5,Page no.-PC.31 //To calculate volume using Ideal gas equation and vander walls equation clc; n=3 R=0.0821 T=373 P=50 V_1=((n*R*T)/P) disp(V_1,'Volume according to Ideal gas equation(L)') a=1.36 b=0.0318 V_2=((n*R*T)/(P+((a*n^2)/V^2))) disp(V_2,'Volume according to Vanderwall`s gas equation(L)')
3ecfc86b1c17e5e8ef4c43d5f84e4837d2cb6b62
449d555969bfd7befe906877abab098c6e63a0e8
/572/CH7/EX7.2/c7_2.sce
a20526380fe2ff00eee7bbd94f07b6a0c65ddf5d
[]
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,905
sce
c7_2.sce
//(7.2) Refrigerant 134a, initially a saturated vapor at -28C, is contained in a rigid, insulated vessel. The vessel is fitted with a paddle wheel connected to a pulley from which a mass is suspended. As the mass descends a certain distance, the refrigerant is stirred until it attains a state where the pressure is 1.4 bar. The only significant changes of state are experienced by the suspended mass and the refrigerant. The mass of refrigerant is 1.11 kg. Determine (a) the initial exergy, final exergy, and change in exergy of the refrigerant, each in kJ. (b) the change in exergy of the suspended mass, in kJ. (c) the change in exergy of an isolated system of the vessel and pulley–mass assembly, in kJ. Discuss the results obtained, and compare with the respective energy changes. Let T0 = 293 K (20C), p0 = 1 bar. //solution //variable initialization mR = 1.11 //mass of the refrigerant in kg T1 = -28 //initial temperature of the saturated vapor in degree celcius P2 = 1.4 //final pressure of the refrigerant in bar T0 = 293 //in kelvin P0 = 1 //in bar //part (a) //from table A-10 u1 = 211.29 //in kj/kg v1 = .2052 //in m^3/kg s1 = .9411 //in kj/kg.k //from table A-12 u0 = 246.67 //in kj/kg v0 = .23349 //in m^3/kg s0 = 1.0829 //in kj/kg.k E1 = mR*[(u1-u0) + P0*10^5*(v1-v0)*10^(-3)-T0*(s1-s0)] //from table A-12 u2 = 300.16 //in kj/kg s2 = 1.2369 //in kj/kg.k v2 = v1 E2 = mR*[(u2-u0) + P0*10^5*(v2-v0)*10^(-3)-T0*(s2-s0)] printf('part(a)the initial exergy in kj is :\n\t E1 = %f',E1) printf('\nthe final exergy in kj is :\n\t E2 = %f',E2) printf('\nthe change in exergy of the refrigerant in kj is \n\tdeltaE = %f',E2-E1) //part (b) deltaU = mR*(u2-u1) //from energy balance deltaPE = -deltaU //with the assumption::The only significant changes of state are experienced by the refrigerant and the suspended mass. For the refrigerant, there is no change in kinetic or potential energy. For the suspended mass, there is no change in kinetic or internal energy. Elevation is the only intensive property of the suspended mass that changes deltaE = deltaPE printf('\n\n\npart(b)the change in exergy of the suspended mass, in kJ is :\n\t deltaE = %f',deltaE) //part(c) deltaEiso = (E2-E1) + deltaE printf('\n\n\npart(c)the change in exergy of an isolated system of the vessel and pulley–mass assembly, in kJ is :\n\t deltaEiso = %f',deltaEiso)
d50a7bac96b23d689622337f9a81a50bf16bbc77
449d555969bfd7befe906877abab098c6e63a0e8
/3532/CH3/EX3.3.3/Ex3_3.sce
0c30824a71fb29d583601eeacb3da4a3686856e2
[]
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,200
sce
Ex3_3.sce
clc clear mprintf('Mechanical vibrations by G.K.Grover\n Example 3.3.3\n') //given data m=600//mass of gun barrel in Kgs k=294000//stiffness in N/m x=1.3//recoil of gun in meters //calculations E=0.5*k*x^2//energy stored at the end of recoil Vo=sqrt(2*E/m)//velocity of recoil Cc=2*sqrt(k*m)//critical damping in N-sec/m Wn=sqrt(k/m)//natural frequency of undamped vibration in rad/sec T=2*%pi/Wn//time period of undamped vibration in sec Trecoil=(1/4)*T//time period for recoil or outward stroke in sec //x=(1.3+28.8*t)*e^(-22.1*t) from eqn 3.3.24 mprintf('a)the initial recoil velocity of barrel is %f m/s\nb)critical damping co-efficient of the dashpot which is engaged at\nthe end of recoil stroke is %f N-sec/m\n\nsubstituting the value for t in eqn 3.3.24,starting from t=0.1 sec\nwith an increment of 0.01sec we get the following observations\n',Vo,Cc) t=0.1 for i=1:20 x=(1.3 +28.8*t)*exp(-22.1*t) mprintf('x=%f at t=%f\n',x,t) t=t+0.01 end mprintf('As x approaches the value of 0.05m,the value of t=0.22sec') Trec=0.22 Tret=Trecoil+Trec mprintf('\nc)Therefore time required for barrel to return to position 5cm from\n the initial position is %f sec',Tret)
ccbb433c716f687dd9f049af3833926a0bef401f
449d555969bfd7befe906877abab098c6e63a0e8
/3542/CH6/EX6.3/Ex6_3.sce
6fe12f1d4b1c8d5e8775fdedb7f9e0cbeb033039
[]
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
734
sce
Ex6_3.sce
// Example no 6.3 // To determine the IF bandwidth necessary to pass the given signal. // Page no. 267 clc; clear all; // Given data fm=100*10^3; // Modulating frequency in Hz deltaf=500*10^3; // Peak frequency deviation in Hz betaf=deltaf/fm; // Modulation index // The IF bandwidth occupied by FM signal using Carson's rule BT=2*(betaf+1)*fm; // The IF bandwidth necessary to pass the given signal // Displaying the result in command window printf('\n Using Carson rule, the IF bandwidth occupied by FM signal = %0.0f kHz',BT*10^-3);
ca27afa3b5f8466cf624242d63281605b6360039
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.2/macros/elem/toeplitz.sci
a507f226d67e78fce4903449b21358c3dfc51aa9
[ "MIT", "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-public-domain" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
518
sci
toeplitz.sci
function [a]=toeplitz(c,r) //[a]=toeplitz(c,r) returns the Toepliz matrix whose first row //is r and first column is c .( r(1) = c(1) is assumed). // //r and c can be constant, polynomial or character string matrices. //! [lhs,rhs]=argn(0), if rhs=1 then r=c(:);end nr=prod(size(r));r=matrix(r,1,nr) nc=prod(size(c));c=matrix(c,nc,1) if nr*nc=0 then a=[],return,end if r(1)<>c(1) then error('conflicting r(1) and c(1)'),end a(nc,nr)=r(1);k=mini([nr,nc]); for l=1:k,a(l,l:nr)=r(1:nr-l+1),a(l:nc,l)=c(1:nc-l+1),end
1d8f2316637cb963c0e6265b9d222e453d270f42
42fdf741bf64ea2e63d1546bb08356286f994505
/test_0723_shift_registers_currentsum/graph_IOproblemfixed.sce
1069e0b21c81880c8213c92181a2565dc253f3ba
[]
no_license
skim819/RASP_Workspace_sihwan
7e3cd403dc3965b8306ec203007490e3ea911e3b
0799e146586595577c8efa05c647b8cb92b962f4
refs/heads/master
2020-12-24T05:22:25.775823
2017-04-01T22:15:18
2017-04-01T22:15:18
41,511,563
1
0
null
null
null
null
UTF-8
Scilab
false
false
3,203
sce
graph_IOproblemfixed.sce
data_00 = [ // Accumulation (10nA targeted) // How many, Id[A](InDirect)S, Id[A](Direct) Id[A](direct, cascode) 0 9.3E-09 9.8E-09 7.1E-09; 1 13.8E-09 18.5E-09 11.2E-09; 2 29.9E-09 27.0E-09 15.4E-09; 3 46.1E-09 34.8E-09 19.2E-09; 4 61.7E-09 42.8E-09 23.3E-09; 5 79.8E-09 50.9E-09 27.2E-09; 6 83.0E-09 59.1E-09 31.0E-09; 7 94.6E-09 66.8E-09 35.0E-09; 8 101.4E-09 74.3E-09 38.5E-09; ]; data_00(:,2) = data_00(:,2) * 1E+09; data_00(:,3) = data_00(:,3) * 1E+09; data_00(:,4) = data_00(:,4) * 1E+09; scf(1);clf(1); plot2d("nn", data_00(:,1), data_00(:,2));p = get("hdl"); p.children.mark_style = 9; p.children.mark_foreground = 1;p.children.line_mode = 'off'; plot2d("nn", data_00(:,1), data_00(:,3));p = get("hdl"); p.children.mark_style = 9; p.children.mark_foreground = 2;p.children.line_mode = 'off'; plot2d("nn", data_00(:,1), data_00(:,4));p = get("hdl"); p.children.mark_style = 9; p.children.mark_foreground = 3;p.children.line_mode = 'off'; a=gca();a.data_bounds(1,1)=0;a.data_bounds(1,2)=0;a.data_bounds(2,1)=9;a.data_bounds(2,2)=120; //a.auto_ticks = ["off","on","on"]; //drawaxis(x=0:6,dir='d',tics='v'); legend("Indirect FGs","Direct FGs","Direct FGs, Cascode","in_upper_left"); // "in_upper_left" "in_lower_right" xtitle("","# of current source","Current [nA]"); data_00(:,5) = [0;diff(data_00(:,2))]; data_00(:,6) = [0;diff(data_00(:,3))]; data_00(:,7) = [0;diff(data_00(:,4))]; data_01 = [ // each (10nA targeted) // No. Id[A](Indirect)S Id[A](Direct) 1 12.6E-09 18.8E-09 10.9E-09; 2 25.0E-09 18.9E-09 10.9E-09; 3 25.7E-09 18.3E-09 11.0E-09; 4 23.6E-09 18.3E-09 11.1E-09; 5 28.2E-09 18.9E-09 11.1E-09; 6 12.5E-09 18.9E-09 11.0E-09; 7 21.7E-09 18.7E-09 11.1E-09; 8 16.4E-09 18.8E-09 11.0E-09; ]; data_01(:,2) = data_01(:,2) * 1E+09; data_01(:,3) = data_01(:,3) * 1E+09; data_01(:,4) = data_01(:,4) * 1E+09; data_01(:,2) = data_01(:,2) - data_00(1,2); data_01(:,3) = data_01(:,3) - data_00(1,3); data_01(:,4) = data_01(:,4) - data_00(1,4); scf(2);clf(2); plot2d("nn", data_00(:,1), data_00(:,5));p = get("hdl"); p.children.mark_style = 2; p.children.mark_foreground = 1;p.children.line_mode = 'off'; plot2d("nn", data_01(:,1), data_01(:,2));p = get("hdl"); p.children.mark_style = 9; p.children.mark_foreground = 1;p.children.line_mode = 'off'; plot2d("nn", data_00(:,1), data_00(:,6));p = get("hdl"); p.children.mark_style = 2; p.children.mark_foreground = 2;p.children.line_mode = 'off'; plot2d("nn", data_01(:,1), data_01(:,3));p = get("hdl"); p.children.mark_style = 9; p.children.mark_foreground = 2;p.children.line_mode = 'off'; plot2d("nn", data_00(:,1), data_00(:,7));p = get("hdl"); p.children.mark_style = 2; p.children.mark_foreground = 3;p.children.line_mode = 'off'; plot2d("nn", data_01(:,1), data_01(:,4));p = get("hdl"); p.children.mark_style = 9; p.children.mark_foreground = 3;p.children.line_mode = 'off'; a=gca();a.data_bounds(1,1)=0;a.data_bounds(1,2)=0;a.data_bounds(2,1)=9;a.data_bounds(2,2)=20; legend("Indirect FGs","Indirect FGs","Direct FGs","Direct FGs","Direct FGs, Cascode","Direct FGs, Cascode","in_upper_right"); // "in_upper_left" "in_lower_right" xtitle("","Current source number","Current (- offset) [nA]");
a51f53f1e9bed60e2d37ecb9bdfda638c88730b0
584105ff5b87869494a42f632079668e4c3f82de
/sci_gateway_new/cpp/builder_gateway_cpp.sce
f033e39e3b036b4e4aa4f67d93244953671ce806
[]
no_license
kevgeo/FOSSEE-Computer-Vision
0ceb1aafb800580498ea7d79982003714d88fb48
9ca5ceae56d11d81a178a9dafddc809238e412ba
refs/heads/master
2021-01-17T21:11:31.309967
2016-08-01T14:45:40
2016-08-01T14:45:40
63,127,286
6
0
null
null
null
null
UTF-8
Scilab
false
false
11,763
sce
builder_gateway_cpp.sce
// This file is released under the 3-clause BSD license. See COPYING-BSD. names = [ "raw_dctmtx", "dctmtx"; "raw_multithresh", "multithresh"; "raw_applycform", "opencv_applycform"; //"raw_arrowedline", "opencv_arrowedline"; "raw_blur", "opencv_blur"; "raw_boundingRect", "opencv_boundingRect"; "raw_bwconvhull", "opencv_bwconvhull"; "raw_bwdistgeodesic", "opencv_bwdistgeodesic"; "raw_bwlookup", "opencv_bwlookup"; "raw_canny", "opencv_canny"; "raw_circle", "opencv_circle"; "raw_clipline", "opencv_clipline"; "raw_convexhull", "opencv_convexhull"; "raw_convmtx2", "opencv_convmtx2"; "raw_copymakeborder", "opencv_copymakeborder"; "raw_corner", "opencv_corner"; "raw_cornerEigenValsAndVecs", "opencv_cornerEigenValsAndVecs"; "raw_cornerHarris", "opencv_cornerHarris"; "raw_cornerMinEigenVal", "opencv_cornerMinEigenVal"; "raw_cvtColor", "opencv_cvtColor"; "raw_demosaic", "opencv_demosaic"; "raw_dilate", "opencv_dilate"; "raw_ellipse", "opencv_ellipse"; "raw_ellipse2poly", "opencv_ellipse2poly"; "raw_erode", "opencv_erode"; "raw_fftshift", "opencv_fftshift"; "raw_fillconvexpoly", "opencv_fillconvexpoly"; "raw_filter2D", "opencv_filter2D"; "raw_findContours", "opencv_findContours"; "raw_fsamp2", "opencv_fsamp2"; "raw_gabor", "opencv_gabor"; "raw_gaussianblur", "opencv_gaussianblur"; "raw_getStructuringElement", "opencv_getStructuringElement"; "getTextSize", "opencv_getTextSize"; "raw_getgaussiankernel", "opencv_getgaussiankernel"; "raw_getrectsubpix", "opencv_getrectsubpix"; "raw_getrotationmatrix2D", "opencv_getrotationmatrix2D"; "raw_goodfeaturestotrack", "opencv_goodfeaturestotrack"; "raw_houghcircles", "opencv_houghcircles"; "raw_houghlines", "opencv_houghlines"; "raw_houghlinesp", "opencv_houghlinesp"; "raw_ifftshift", "opencv_ifftshift"; "raw_im2double", "opencv_im2double"; "raw_imabsdiff", "opencv_imabsdiff"; "raw_imadd", "opencv_imadd"; "raw_imattributes", "opencv_imattributes"; "raw_imboxfilt3", "opencv_imboxfilt3"; "raw_imcomplement", "opencv_imcomplement"; "raw_imcontour", "opencv_imcontour"; "raw_imcontrast", "opencv_imcontrast"; "raw_imcrop", "opencv_imcrop"; "raw_imdivide", "opencv_imdivide"; "raw_imextendedmax", "opencv_imextendedmax"; "raw_imextendedmin", "opencv_imextendedmin"; "raw_imfill", "opencv_imfill"; "raw_imfindcircles", "opencv_imfindcircles"; "raw_imfuse", "opencv_imfuse"; "raw_imgaborfilt", "opencv_imgaborfilt"; "raw_imgaussfilt3", "opencv_imgaussfilt3"; "raw_imguidedfilter", "opencv_imguidedfilter"; "raw_imhmax", "opencv_imhmax"; "raw_imhmin", "opencv_imhmin"; "raw_imimposemin", "opencv_imimposemin"; "raw_imlincomb", "opencv_imlincomb"; "raw_immultiply", "opencv_immultiply"; "raw_impixel", "opencv_impixel"; "raw_impyramid", "opencv_impyramid"; "raw_imread", "opencv_imread"; "raw_imrect", "opencv_imrect"; "raw_imresize", "opencv_imresize"; "raw_imsharpen", "opencv_imsharpen"; "raw_imshowpair", "opencv_imshowpair"; "raw_imsubtract", "opencv_imsubtract"; "raw_imwarp", "opencv_imwarp"; "raw_imwrite", "opencv_imwrite"; "raw_ind2gray", "opencv_ind2gray"; "raw_ind2rgb", "opencv_ind2rgb"; "raw_lab2double", "opencv_lab2double"; "raw_lab2rgb", "opencv_lab2rgb"; "raw_lab2uint16", "opencv_lab2uint16"; "raw_lab2uint8", "opencv_lab2uint8"; "raw_lab2xyz", "opencv_lab2xyz"; "raw_laplacian", "opencv_laplacian"; "raw_line", "opencv_line"; "raw_medianblur", "opencv_medianblur"; "raw_montage", "opencv_montage"; "raw_morphologyEx", "opencv_morphologyEx"; "raw_ntsc2rgb", "opencv_ntsc2rgb"; "raw_puttext", "opencv_puttext"; "raw_pyrDown", "opencv_pyrDown"; "raw_pyrUp", "opencv_pyrUp"; "raw_rectangle", "opencv_rectangle"; "raw_regionfill", "opencv_regionfill"; "raw_rgb2lab", "opencv_rgb2lab"; "raw_rgb2ntsc", "opencv_rgb2ntsc"; "raw_rgb2xyz", "opencv_rgb2xyz"; "raw_roifill", "opencv_roifill"; "raw_roipoly", "opencv_roipoly"; "raw_scharr", "opencv_scharr"; "raw_sepFilter2D", "opencv_sepFilter2D"; "raw_sobel", "opencv_sobel"; "raw_ssim", "opencv_ssim"; "raw_threshold", "opencv_threshold"; "raw_undistort", "opencv_undistort"; "raw_viscircles", "opencv_viscircles"; "raw_watershed", "opencv_watershed"; "raw_whitepoint", "opencv_whitepoint"; "raw_wiener2", "opencv_wiener2"; "raw_xyz2double", "opencv_xyz2double"; "raw_xyz2lab", "opencv_xyz2lab"; "raw_xyz2rgb", "opencv_xyz2rgb"; "raw_xyz2uint16", "opencv_xyz2uint16"; "deconvlucy", "opencv_deconvlucy"; "imhistmatch", "opencv_imhistmatch"; "graycoprops", "opencv_graycoprops"; "graydiffweight", "opencv_graydiffweight"; "decorrstretch", "opencv_decorrstretch"; "adaptf", "opencv_adapthisteq"; "affine2d", "opencv_affine2d"; "approxpolyDP","approxpolyDP"; "arclenght","arclenght"; "bilateralfilter","bilateralfilter"; "borderInterpolate","borderInterpolate"; "boxfilter","boxfilter"; "contourarea","contourarea"; "boxfilter","boxfilter"; "fitellipse","fitellipse"; "getkerneltype","getkerneltype"; "histeq","histeq"; "imrotate","imrotate"; "mean1","mean1"; "minAreaRect","minAreaRect"; "minimumenclosingcirlce","minimumenclosingcirlce"; "pyrMeanShiftFiltering","pyrMeanShiftFiltering"; "rgb2gray","rgb2gray"; "warpaffine","warpaffine"; ]; files = [ "dctmtx.cpp", "multithresh.cpp", "opencv_applycform.cpp", //"opencv_arrowedline.cpp", "opencv_blur.cpp", "opencv_boundingRect.cpp", "opencv_bwconvhull.cpp", "opencv_bwdistgeodesic.cpp", "opencv_bwlookup.cpp", "opencv_canny.cpp", "opencv_circle.cpp", "opencv_clipline.cpp", "opencv_convexhull.cpp", "opencv_convmtx2.cpp", "opencv_copymakeborder.cpp", "opencv_corner.cpp", "opencv_cornerEigenValsAndVecs.cpp", "opencv_cornerHarris.cpp", "opencv_cornerMinEigenVal.cpp", "opencv_cvtColor.cpp", "opencv_demosaic.cpp", "opencv_dilate.cpp", "opencv_ellipse.cpp", "opencv_ellipse2poly.cpp", "opencv_erode.cpp", "opencv_fftshift.cpp", "opencv_fillconvexpoly.cpp", "opencv_filter2D.cpp", "opencv_findContours.cpp", "opencv_fsamp2.cpp", "opencv_gabor.cpp", "opencv_gaussianblur.cpp", "opencv_getStructuringElement.cpp", "opencv_getTextSize.cpp", "opencv_getgaussiankernel.cpp", "opencv_getrectsubpix.cpp", "opencv_getrotationmatrix2D.cpp", "opencv_goodfeaturestotrack.cpp", "opencv_houghcircles.cpp", "opencv_houghlines.cpp", "opencv_houghlinesp.cpp", "opencv_ifftshift.cpp", "opencv_im2double.cpp", "opencv_imabsdiff.cpp", "opencv_imadd.cpp", "opencv_imattributes.cpp", "opencv_imboxfilt3.cpp", "opencv_imcomplement.cpp", "opencv_imcontour.cpp", "opencv_imcontrast.cpp", "opencv_imcrop.cpp", "opencv_imdivide.cpp", "opencv_imextendedmax.cpp", "opencv_imextendedmin.cpp", "opencv_imfill.cpp", "opencv_imfindcircles.cpp", "opencv_imfuse.cpp", "opencv_imgaborfilt.cpp", "opencv_imgaussfilt3.cpp", "opencv_imguidedfilter.cpp", "opencv_imhmax.cpp", "opencv_imhmin.cpp", "opencv_imimposemin.cpp", "opencv_imlincomb.cpp", "opencv_immultiply.cpp", "opencv_impixel.cpp", "opencv_impyramid.cpp", "opencv_imread.cpp", "opencv_imrect.cpp", "opencv_imresize.cpp", "opencv_imsharpen.cpp", "opencv_imshowpair.cpp", "opencv_imsubtract.cpp", "opencv_imwarp.cpp", "opencv_imwrite.cpp", "opencv_ind2gray.cpp", "opencv_ind2rgb.cpp", "opencv_lab2double.cpp", "opencv_lab2rgb.cpp", "opencv_lab2uint16.cpp", "opencv_lab2uint8.cpp", "opencv_lab2xyz.cpp", "opencv_laplacian.cpp", "opencv_line.cpp", "opencv_medianblur.cpp", "opencv_montage.cpp", "opencv_morphologyEx.cpp", "opencv_ntsc2rgb.cpp", "opencv_puttext.cpp", "opencv_pyrDown.cpp", "opencv_pyrUp.cpp", "opencv_rectangle.cpp", "opencv_regionfill.cpp", "opencv_rgb2lab.cpp", "opencv_rgb2ntsc.cpp", "opencv_rgb2xyz.cpp", "opencv_roifill.cpp", "opencv_roipoly.cpp", "opencv_scharr.cpp", "opencv_sepFilter2D.cpp", "opencv_sobel.cpp", "opencv_ssim.cpp", "opencv_threshold.cpp", "opencv_undistort.cpp", "opencv_viscircles.cpp", "opencv_watershed.cpp", "opencv_whitepoint.cpp", "opencv_wiener2.cpp", "opencv_xyz2double.cpp", "opencv_xyz2lab.cpp", "opencv_xyz2rgb.cpp", "opencv_xyz2uint16.cpp", "opencv_deconvlucy.cpp", "opencv_integralImage.cpp", "opencv_imhistmatch.cpp", "opencv_graycoprops.cpp", "opencv_graydiffweight.cpp", "opencv_decorrstretch.cpp", "opencv_adapthisteq.cpp", "opencv_affine2d.cpp", "rgb2gray.cpp", "warpaffine.cpp", "opencv_pyrMeanShiftFiltering.cpp", "opencv_minimumenclosingcirlce.cpp", "opencv_minAreaRect.cpp", "opencv_mean1.cpp", "opencv_imrotate.cpp", "opencv_getkerneltype.cpp", "opencv_fitellipse.cpp", "opencv_contourarea.cpp", "opencv_boxfilter.cpp", "opencv_borderInterpolate.cpp", "opencv_bilateralfilter.cpp", "opencv_arclength.cpp", "opencv_approxpolyDP.cpp", "opencv_histeq.cpp", ]; function builder_gw_cpp() WITHOUT_AUTO_PUTLHSVAR = %t; copyfile("sci_gateway/cpp/common.h",TMPDIR); copyfile("sci_gateway/cpp/common.cpp",TMPDIR); tbx_build_gateway("skeleton_imageprocessing", .. names, .. files, .. get_absolute_file_path("builder_gateway_cpp.sce"),[],"g++ -ggdb `pkg-config --cflags opencv` -o `basename opencv_imread.cpp .cpp` opencv_imread.cpp `pkg-config --libs opencv`"); endfunction builder_gw_cpp(); clear builder_gw_cpp; // remove builder_gw_cpp on stack
9b5a49de13dbedd7e79e7e0ba805e50ceabdf2e0
ab89c2161afc0845367b8e25f534e4f99bd36759
/LAB5/ex2.sce
5947cc4972c2c78f71850b2e40128f75850180fb
[]
no_license
PhiTruongCE/Digital_Signal_Processing
22446ebfa65765d1dfcd2c420e05c83dc861ec15
bacaf762f31a333a641ac48f6b5cc18f120c65be
refs/heads/main
2023-06-04T03:38:36.140107
2021-06-17T04:04:49
2021-06-17T04:04:49
377,699,926
0
0
null
null
null
null
UTF-8
Scilab
false
false
230
sce
ex2.sce
clc; clf; clear all; wave = "E:\BKUdocument\Digital_Signal_Processing\myrec"; wavread(wave, "size") wavread(wave, "info") y = wavread(wave, 5) y = wavread(wave, [4 7]) [y, Fs, bits] = wavread(wave); plot2d(y(1,:));
42e77ffafd1f23f960e6ff3415af4d66fcfdfe75
449d555969bfd7befe906877abab098c6e63a0e8
/2294/CH2/EX2.3/EX2_3.sce
6df614b7a25fcd146ebc16b07eee1214c73fbe11
[]
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,292
sce
EX2_3.sce
//Example 2.3<v> //Check whether the following signal is linear or not. clear; close; clc; T=20;//length of the signal A=5; B=4; for n=1:T x(n)=n; y(n)=A*x(n)+B; end x1=x; y1=y; for n=1:T x2(n)=2;y2(n)=A*x2(n)+B; end z=y1+y2; for n=1:T y3(n)=A*(x1(n)+x2(n))+B; end if z==y3 then disp('The following signal is linear'); else disp('The following signal is non linear'); end //Example 2.3<vi> //Check whether the following signal is linear or not. clear; close; clc; T=20;//length of the signal x1(1)=1; x2(1)=2; for n=2:T x1(n)=n; x2(n)=2*n; y1(n)=(2*(x1(n)))+(1/x1(n-1)); y2(n)=(2*(x2(n)))+(1/x2(n-1)); end z=y1+y2; for n=2:T y3(n)=(2*(x1(n)+x2(n)))+(1/(x1(n-1)+x2(n-1))); end if z==y3 then disp('The following signal is linear'); else disp('The following signal is non linear'); end //Example 2.3<vii> //Check whether the following signal is linear or not. clear; close; clc; T=20;//length of the signal for n=1:T x(n)=n; y(n)=n*x(n); end x1=x; y1=y; for n=1:T x2(n)=2;y2(n)=n*x2(n); end z=y1+y2; for n=1:T y3(n)=n*(x1(n)+x2(n)); end if z==y3 then disp('The following signal is linear'); else disp('The following signal is non linear'); end