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
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
4ed42c239de422c7b1d4bb41e874582b02a6f396
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3769/CH23/EX23.22/Ex23_22.sce
|
12af3bf648772bd578a0d0a2e84c0fc571d260d5
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 202 |
sce
|
Ex23_22.sce
|
clear
//Given
me=9.11*10**-31 //Kg
lp=1.813*10**-4
vp=3
//Calculation
mp=me/(lp*vp)
//Result
printf("\n The particles mass is %0.3f *10**-27 Kg. The particle is proton",mp*10**27)
|
ff6404f39410861a42c1de534507a34a9fe14514
|
d56141249002a5da7c4a2641dbdfc609809046a8
|
/espresso/qe_k_path_gen.sce
|
520bf279885a52d94e29a9cf34735c63d2348a59
|
[] |
no_license
|
kcbhamu/DFTutilities
|
14a77226c1229ec61563cc08316d6c32814ddb57
|
d6c859407a6b13c8bc5340c08db7a0125d6ed4e6
|
refs/heads/master
| 2021-06-24T15:23:58.675113 | 2017-08-23T20:56:44 | 2017-08-23T20:56:44 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 2,066 |
sce
|
qe_k_path_gen.sce
|
// This code helps you generate k-point for band struncture calculation.
// << Variables >>
// [lat_const]: 1x1, real
// => lattice constant. primitive vectors will all multipile this constant.
// [pri_vect]: 3x3, real
// => primitive vectors in row form
// [k_path_red]: nx3, real
// => k-path divided points in reduced k-basis, i.e. coeff of b
// [k_div]: 1x1, real
// => number of divisions for each unit k
// [k_out_form]: 1x1, string, 'red' or 'cart'
// => form of the output k_point, reduced or cartesian
// [file_format]: 1x1, string, 'ab' or 'qe'
// => for abinit or for quantum-espresso
clear; clc; exec(PiLib);
// Parameters ==========================================================
lat_const=1
pri_vect=..
[
3.07870000 -1.77749000 -5.02750000
3.07870000 5.33246000 0.00000000
24.62960000 -14.21990000 20.10998000
]
k_path_red=..
[
0.50000000 0.00000000 0.00000000
0.50000000 -0.50000000 0.00000000
0.00000000 0.00000000 0.00000000
0.00000000 0.50000000 0.00000000
]
k_div=30
k_label=['X','M','G','Y']
k_out_form='red' // 'cart' or 'red'
// Main ================================================================
b=PIL_recip_vec(lat_const*pri_vect);
k_path=zeros(k_path_red);
for n=1:length(k_path_red(:,1))
for m=1:3
k_path(n,:)=k_path(n,:)+k_path_red(n,m)*b(m,:);
end
end
[k_pt,k_pt_div]=PIL_k_path(k_path,k_div,'unit',lat_const)
select k_out_form
case 'red'
for n=1:length(k_pt(:,1))
k_pt(n,:)=(PIL_linexpan(k_pt(n,:),b'))'
end
case 'cart'
end
printf('\n');
printf('Primitive vectors:\n');
printf('%7.4f %7.4f %7.4f\n', pri_vect);
printf('Reduced k-path:\n');
printf('K_POINTS crystal_b\n');
printf(' %d\n',length(k_path_red(:,1)))
printf('%7.4f %7.4f %7.4f %4d ! %s\n', k_path_red,[k_pt_div;1],k_label');
printf('k-point division numbers:\n')
printf(' %d ',k_pt_div)
printf('\n => total k-point= %d',sum(k_pt_div));
printf('\nk-points:\n')
k_pt=cat(2,k_pt,ones(length(k_pt(:,1)),1));
printf(' %7.4f %7.4f %7.4f %7.4f\n',k_pt)
|
6aee9f5b56aa6360782c6758344b1fb01fbf84be
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/506/CH12/EX12.1.b/Example12_1b.sce
|
bc1ca9852a781661558ac090461faf83bea3292f
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 382 |
sce
|
Example12_1b.sce
|
clear;
clc;
//Caption:Minimum value of coupling capacitance for a given FET
//Given Value
Ry=1;//in K
Rg=1;//in M
Ri=1;//in K
hOE=1/40;//in K^-1
//fL=1/(2*%pi*(ro+ri)*Cb)<=10
//Ro>1/hOE=40K ro=Rc=1K. Rb>Ri=1K then ri=1K
ro=1000;//in ohm
ri=1000;//in ohm
Cb=1/(2*%pi*10*(ro+ri));
disp('pF',Cb*(10^6),'Coupling Capacitance for given transistor=');
//end
|
0f6ff7957874fec903c1130e474e704e98e121be
|
08bfc8a1f8e44adc624d1f1c6250a3d9635f99de
|
/SDKs/swig/Examples/test-suite/scilab/overload_extend2_runme.sci
|
a52275da9b1773dd17665d366c9fbe0a636c0a99
|
[] |
no_license
|
Personwithhat/CE_SDKs
|
cd998a2181fcbc9e3de8c58c7cc7b2156ca21d02
|
7afbd2f7767c9c5e95912a1af42b37c24d57f0d4
|
refs/heads/master
| 2020-04-09T22:14:56.917176 | 2019-07-04T00:19:11 | 2019-07-04T00:19:11 | 160,623,495 | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 128 |
sci
|
overload_extend2_runme.sci
|
version https://git-lfs.github.com/spec/v1
oid sha256:05344c5c766a30085ad3ecc585b26e6c062461e383946be0cf96101e261f00df
size 431
|
c10714ad660ebac28103dbf8bda8e326fbcfad6e
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/374/CH2/EX2.4/24.sci
|
ce79231c49beb21cc17ed98e7c491e74a5ac2514
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 413 |
sci
|
24.sci
|
//chapter2.example.4//
//core refractive index=n1,cut off value of V parameter for single mode operation=Vc,radius=a,cladding refractive index=n2,relative index difference between core and cladding=d,cut off wavelength=lc//
clc
clear
Vc=2.405;
n1=1.46;
d=0.0025;
a=5*(10^-6);//in metres//
h=sqrt(2*d);
x=(2*%pi*a*n1)/Vc;
lc=x*h*(10^6);
printf("\ncut off wavelength of the fibre=%f*(10^-6)mts.\n",lc);
|
d1ce9b995194bdf09b63eccd6d1491965faaa75e
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1241/CH6/EX6.27/exa6_27.sce
|
9a6a5475299868227a71c4e2f2eca0984d8b25da
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 365 |
sce
|
exa6_27.sce
|
//Example 6-27//
//Reduce by Variable Mapping//
clc
//clears the console//
clear
//clears all existing variables//
disp('Z=A''B''CDE+A''BC''DE''+A''BCD+AB''CD''F+ABC''D''+ABCD''')
disp('Converting the 6 variable minterms to 4 variable minterms')
disp('m7-E+E'';m14-F+F''')
disp('Result Z= A''CDE+A''BDE''+ABD''+ACD''F')
//final expression is displayed//
|
9a20dd6472799c394fc270f0a58f3cfde474ff1b
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2495/CH2/EX2.4.1/Ex2_4_1.sce
|
b6928bc912ee51aeb99018367627ceaeccb6b3dd
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 238 |
sce
|
Ex2_4_1.sce
|
clear
clc
T=303;//in K
m2=10;//mass of solute in gm
m1=80;//mass of solute acetone in gm
P1=271;//in torr
P2=283;//in torr
M1=58;//in gm/mol
M2=((m2*M1)/(((P2-P1)/P2)*m1))-((M1*m2)/m1)
printf('M2=%.1f gm/mol',M2)
//page 39
|
6046205dcad6dc357dd8771f03f670bf8530eca4
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3769/CH8/EX8.8/Ex8_8.sce
|
d4861d4e9864e8a3fce0901cf459a6d7e552300c
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 264 |
sce
|
Ex8_8.sce
|
clear
//Given
u=4*3.14*10**-7 //T/A m
n=20
I=12 //A
r=0.1 //m
//Calculation
B=u*n*I/(2*r)
//Result
printf("\n Magnetic field at the centre of coil is %0.1f *10**-3 T",B*10**3)
|
52a31c7080e674cbc4e26ff798d1995c8feb4a07
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1286/CH6/EX6.10/6_10.sce
|
f16a42b1e21e4056a3fed0274e8abc444ecc3ceb
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 172 |
sce
|
6_10.sce
|
clc
//initialisations
r=8.3//j/mol/k
J=4.2//j/cal
T=273
m=2//gm
//CALCULATIONS
ke=(3*r*T/(2*m*J))
//results
printf(' ke of one gm of hydrogen= % 1f calories',ke)
|
379e31486f861c357aa40f25bf96647d472925bb
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2159/CH8/EX8.5/85.sce
|
02fcb6dad18a630fae7da1fdde9063a997a60f8b
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 162 |
sce
|
85.sce
|
// problem 8.5
d=0.05
V=20
y=120
x=180-y
g=9.81
p1=1000
w=g*p1
a=3.142*d*d/4
F=(w*a*V*V*(1+cosd(x)))/(g)
disp(F,"force in N exerted by the water jet")
|
872ea68389738a4d6e9e489977174557349ccaab
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3685/CH20/EX20.7/Ex20_7.sce
|
f3fe571b31500ef25beff48f12c82825db26a4ec
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 374 |
sce
|
Ex20_7.sce
|
clc
// Given that
Bp = 110 // Brake power in kW
n_m = 0.8 // Mechanical efficiency of the engine
m_f = 50 // Fuel required for engine in kg/h
r_f = 5 // Reduced engine friction in kW
printf("\n Example 20.7\n")
Ip = Bp/n_m
Fp = Ip-Bp
Fp_n = Fp-r_f
Ip_new = Bp + Fp_n
m_f_new = Ip_new * m_f/ Ip
s_f = m_f- m_f_new
printf("\nSaving in fuel = %f kg/h",s_f)
|
17d5b107b971d2e39fe8fa55f50041e9dccbf536
|
a62e0da056102916ac0fe63d8475e3c4114f86b1
|
/set14/s_Material_Science_V._Rajendran_1826.zip/Material_Science_V._Rajendran_1826/CH10/EX10.13/ex10_13.sce
|
8449386501e0bb5a796ecf8d1a1ce86ddfcf0fee
|
[] |
no_license
|
hohiroki/Scilab_TBC
|
cb11e171e47a6cf15dad6594726c14443b23d512
|
98e421ab71b2e8be0c70d67cca3ecb53eeef1df6
|
refs/heads/master
| 2021-01-18T02:07:29.200029 | 2016-04-29T07:01:39 | 2016-04-29T07:01:39 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 235 |
sce
|
ex10_13.sce
|
errcatch(-1,"stop");mode(2);// Example 10.13, page no-276
e=1.6*10^-19//C
ni=2.4*10^19 //m^-3
mue=0.39//m^2/V-s
muh=0.19//m^2/V-s
sig=ni*e*(mue+muh)
printf("The conductivity of Ge at 300 K is %.2f per Ohm-m",sig)
exit();
|
41e88bb3ad35bfa4b84b86c81352d5307100f81a
|
1442d47cdfffaf3834bb6afdeffdcc4379687776
|
/PCB/Rotative_base/PCB/vbreport/work/VBPCBP.TST
|
01ec9288e600a685282aaa24daf0c978239e0b35
|
[] |
no_license
|
friendshipismagic/SpiROSE
|
2521f2e5ace24a9d5c18746eb908212c428dcf78
|
dd29069df4bb77493748a66eeb0c41bfdd357108
|
refs/heads/master
| 2022-09-23T12:14:33.241647 | 2020-06-01T16:39:07 | 2020-06-01T16:39:07 | 268,577,424 | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 16,988 |
tst
|
VBPCBP.TST
|
CellID CellName CompType MountType Verified NoPins GlueX GlueY AssemblyX AssemblyY Height TimeStamp History Description
1 PTH12040WAD IC_OTHER THROUGH NO 20 0.000 0.000 0.000 0.000 9.070 12/12/2017 18:46 Cell modified: Dec 12, 2017 @ 06:46 PM by alexis@DESKTOP-D6MOGOB
2 AMP7-188275-4 CONNECTOR MIXED NO 4 0.000 0.000 0.000 0.000 7.000 05/04/2012 23:56 Cell modified: Apr 05, 2012 @ 11:56 PM by Alexis@LUTIN2
3 AMP8-188275-0 CONNECTOR MIXED NO 10 0.000 0.000 0.000 0.000 7.000 30/03/2011 02:22 Cell modified: Mar 30, 2011 @ 02:22 AM by Alexis@LUTIN2
4 AS0B826-S43B-7H CONNECTOR MIXED NO 316 0.000 0.000 0.000 0.000 7.800 11/12/2017 21:29 Cell modified: Dec 11, 2017 @ 09:29 PM by alexis@DESKTOP-D6MOGOB
5 FTS-114-01-F-D CONNECTOR THROUGH NO 28 0.000 0.000 0.000 0.000 6.200 26/12/2017 19:42 Cell modified: Dec 26, 2017 @ 07:42 PM by alexis@DESKTOP-D6MOGOB
6 CHIMIQUE_E12 DISCRETE_CHIP SURFACE NO 2 0.000 0.000 0.000 0.000 11.900 15/12/2017 18:34 Cell modified: Dec 15, 2017 @ 06:34 PM by alexis@DESKTOP-D6MOGOB Chimique dia=8.5, h=11.9
7 C0402 DISCRETE_CHIP SURFACE NO 2 0.000 0.000 0.000 0.000 0.870 02/01/2018 03:42 Cell modified: Jan 02, 2018 @ 03:42 AM by alexis@DESKTOP-D6MOGOB
8 C0603 DISCRETE_CHIP SURFACE NO 2 0.000 0.000 0.000 0.000 0.870 02/01/2018 03:42 Cell modified: Jan 02, 2018 @ 03:42 AM by alexis@DESKTOP-D6MOGOB
9 C1206 DISCRETE_CHIP SURFACE NO 2 0.000 0.000 0.000 0.000 1.750 02/01/2018 03:43 Cell modified: Jan 02, 2018 @ 03:43 AM by alexis@DESKTOP-D6MOGOB
10 C1210 DISCRETE_CHIP SURFACE NO 2 0.000 0.000 0.000 0.000 1.800 25/02/2003 13:01 Cell modified: Feb 25, 2003 @ 01:01 PM by alexis@LUTIN
11 IHLP-2525 DISCRETE_CHIP SURFACE NO 2 0.000 0.000 0.000 0.000 3.000 01/05/2006 18:54 Cell modified: May 01, 2006 @ 06:54 PM by Alexis@SCHTROUMPF2
12 L0603 DISCRETE_CHIP SURFACE NO 2 0.000 0.000 0.000 0.000 1.000 25/02/2003 13:05 Cell modified: Feb 25, 2003 @ 01:05 PM by alexis@LUTIN
13 R0402 DISCRETE_CHIP SURFACE NO 2 0.000 0.000 0.000 0.000 0.870 02/01/2018 03:41 Cell modified: Jan 02, 2018 @ 03:41 AM by alexis@DESKTOP-D6MOGOB
14 R0603 DISCRETE_CHIP SURFACE NO 2 0.000 0.000 0.000 0.000 0.870 02/01/2018 03:40 Cell modified: Jan 02, 2018 @ 03:40 AM by alexis@DESKTOP-D6MOGOB
15 SMB DISCRETE_CHIP SURFACE NO 2 0.000 0.000 0.000 0.000 2.650 25/02/2003 13:07 Cell modified: Feb 25, 2003 @ 01:07 PM by alexis@LUTIN
16 SOD123 DISCRETE_CHIP SURFACE NO 2 0.000 0.000 0.000 0.000 1.350 25/02/2003 13:08 Cell modified: Feb 25, 2003 @ 01:08 PM by alexis@LUTIN
17 SOT23 DISCRETE_CHIP SURFACE NO 3 0.000 0.000 0.000 0.000 1.100 02/01/2018 03:39 Cell modified: Jan 02, 2018 @ 03:39 AM by alexis@DESKTOP-D6MOGOB
18 SOT223 DISCRETE_CHIP SURFACE NO 4 0.000 0.000 0.000 0.000 1.800 21/11/2001 18:26 Cell modified: Nov 21, 2001 @ 06:26 PM by phde@PHDE1
19 SOT553 DISCRETE_CHIP SURFACE NO 6 0.000 0.000 0.000 0.000 0.620 31/03/2012 19:07 Cell modified: Mar 31, 2012 @ 07:07 PM by Alexis@LUTIN2 SOT23-6, 6pins
20 SRN5040 DISCRETE_CHIP SURFACE NO 2 0.000 0.000 0.000 0.000 4.000 15/12/2017 19:56 Cell modified: Dec 15, 2017 @ 07:56 PM by alexis@DESKTOP-D6MOGOB
21 PQFP240_050_3460_3460_380 IC_PLCC SURFACE NO 240 0.000 0.000 0.000 0.000 1.600 29/03/2012 01:55 Cell modified: Mar 29, 2012 @ 01:55 AM by Alexis@LUTIN2
22 ETSSOP028_065_0980_0620_120 IC_SOIC SURFACE NO 29 0.000 0.000 0.000 0.000 2.000 12/12/2017 16:32 Cell modified: Dec 12, 2017 @ 04:32 PM by alexis@DESKTOP-D6MOGOB
23 SOIC016_127_1000_0620_175 IC_SOIC SURFACE NO 16 0.000 0.000 0.000 0.000 1.750 07/10/2003 17:20 Cell modified: Oct 07, 2003 @ 05:20 PM by alexis@LUTIN
24 SOP008_127_0500_0620_175 IC_SOIC SURFACE NO 8 0.000 0.000 0.000 0.000 1.750 21/11/2001 17:54 Cell modified: Nov 21, 2001 @ 05:54 PM by phde@PHDE1 L78L07ACD
25 PTEST_0.90MM TESTPOINT SURFACE NO 1 0.000 0.000 0.000 0.000 0.000 02/01/2018 04:09 Cell modified: Jan 02, 2018 @ 04:09 AM by alexis@DESKTOP-D6MOGOB
26 PTEST_0.90MM_TH TESTPOINT THROUGH NO 1 0.000 0.000 0.000 0.000 0.000 02/01/2018 03:48 Cell modified: Jan 02, 2018 @ 03:48 AM by alexis@DESKTOP-D6MOGOB
27 DXF_SVG battery GENERAL SURFACE NO 0 0.000 0.000 0.000 0.000 0.000 01/09/2016 21:16 Cell created: Sep 01, 2016 @ 09:16 PM by WIN10:root
28 DXF_Spyro GENERAL SURFACE NO 0 0.000 0.000 0.000 0.000 0.000 09/01/2018 13:39 Cell created: Jan 09, 2018 @ 01:39 PM by DESKTOP-D6MOGOB:alexis
29 (_VB_DRILL_SYMBOLS_)Thru GENERAL SURFACE YES 0 0.000 0.000 0.000 0.000 0.000 09/01/2018 14:20 No History Found Drill Symbols
30 (_VB_DRILL_DRAWING_)Thru GENERAL SURFACE YES 0 0.000 0.000 0.000 0.000 0.000 09/01/2018 14:20 No History Found Drill Chart
|
4c7c46f827b839f1fbe25514122b6297563238f8
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3516/CH8/EX8.1/Ex8_1.sce
|
1c90bd47ec16c9034938868444b2605e6e420152
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 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,926 |
sce
|
Ex8_1.sce
|
printf("\t example 8.1 \n");
printf("\t approximate values are mentioned in the book \n");
T1=358; // inlet hot fluid,F
T2=100; // outlet hot fluid,F
t1=90; // inlet cold fluid,F
t2=120; // outlet cold fluid,F
W=49600; // lb/hr
w=233000; // lb/hr
printf("\t 1.for heat balance \n");
printf("\t for oil \n");
c=0.545; // Btu/(lb)*(F)
Q=((W)*(c)*(T1-T2)); // Btu/hr
printf("\t total heat required for oil is : %.2e Btu/hr \n",Q);
printf("\t for water \n");
c=1; // Btu/(lb)*(F)
Q=((w)*(c)*(t2-t1)); // Btu/hr
printf("\t total heat required for water is : %.2e Btu/hr \n",Q);
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 :%.0f 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.93 \n"); // from fig 19 for 2-4 exchanger
delt=(0.93*LMTD); // F
printf("\t delt is : %.1f F \n",delt);
X=((delt1)/(delt2));
printf("\t ratio of two local temperature difference is : %.3f \n",X);
Fc=0.25; // from fig.17
Kc=0.47; // crude oil controlling
Tc=((T2)+((Fc)*(T1-T2))); // caloric temperature of hot fluid,F
printf("\t caloric temperature of hot fluid is : %.0f F \n",Tc);
tc=((t1)+((Fc)*(t2-t1))); // caloric temperature of cold fluid,F
printf("\t caloric temperature of cold fluid is : %.0f F \n",tc);
printf("\t hot fluid:shell side,oil \n");
ID=35; // in
C=0.25; // clearance
B=7; // baffle spacing,in
PT=1.25;
as=((ID*C*B)/(144*PT))/2; // flow area,ft^2,from eq 7.1
printf("\t flow area is : %.2f ft^2 \n",as);
Gs=(W/as); // mass velocity,lb/(hr)*(ft^2),from eq 7.2
printf("\t mass velocity is : %.2e lb/(hr)*(ft^2) \n",Gs);
mu1=1.12*2.42; // at 165F,lb/(ft)*(hr), from fig.14
De=0.99/12; // from fig.28,ft
Res=((De)*(Gs)/mu1); // reynolds number
printf("\t reynolds number is : %.1e \n",Res);
jH=52.5; // from fig.28
Z=0.2; // Z=(k)*(Pr*(1/3)) prandelt number
Ho=((jH)*(1/De)*(Z)); // H0=(h0/phys),using eq.6.15,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,water \n");
Nt=454;
n=6; // number of passes
L=12; //ft
at1=0.455; // flow area, in^2
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 : %.2e lb/(hr)*(ft^2) \n",Gt);
V=(Gt/(3600*62.5)); // fps
printf("\t V is : %.2f fps \n",V);
mu2=0.73*2.42; // at 98F,lb/(ft)*(hr),from fig 14
D=(0.76/12); // ft,from table 10
Ret=((D)*(Gt)/mu2); // reynolds number
printf("\t reynolds number is : %.2e \n",Ret);
hi=1010*0.96; // using fig 25,Btu/(hr)*(ft^2)*(F)
printf("\t hi is : %.0f Btu/(hr)*(ft^2)*(F) \n",hi);
ID=0.76; // ft
OD=1; //ft
hio=((hi)*(ID/OD)); // using eq.6.5
printf("\t Correct hi0 to the surface at the OD is : %.0f Btu/(hr)*(ft^2)*(F) \n",hio);
tw=(tc)+(((Ho)/(hio+Ho))*(Tc-tc)); // from eq.5.31
printf("\t tw is : %.0f F \n",tw);
muw=1.95*2.42; // lb/(ft)*(hr), from fig.14
phys=(mu1/muw)^0.14;
printf("\t phys is : %.2f \n",phys); // from fig.24
ho=(Ho)*(phys); // from eq.6.36
printf("\t Correct h0 to the surface at the OD is : %.0f Btu/(hr)*(ft^2)*(F) \n",ho);
Uc=((hio)*(ho)/(hio+ho)); // clean overall coefficient,Btu/(hr)*(ft^2)*(F)
printf("\t clean overall coefficient is : %.0f Btu/(hr)*(ft^2)*(F) \n",Uc);
A2=0.2618; // actual surface supplied for each tube,ft^2,from table 10
A=(Nt*L*A2); // ft^2
printf("\t total surface area is : %.0f ft^2 \n",A);
Q=6980000; // taking rounded value,Btu/hr
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.00215; // friction factor for reynolds number 8900, using fig.29
s=0.82; // for reynolds number 25300,using fig.6
Ds=35/12; // ft
N=(12*L/B); // number of crosses,using eq.7.43
printf("\t number of crosses are : %.0f \n",N);
delPs=((f*(Gs^2)*(Ds)*(2*N))/(5.22*(10^10)*(De)*(s)*(phys))); // using eq.7.44,psi
printf("\t delPs is : %.0f psi \n",delPs);
printf("\t allowable delPs is 10 psi \n");
printf("\t pressure drop for inner pipe \n");
f=0.000195; // friction factor for reynolds number 34900, using fig.26
s=1;
D=0.0633; //ft
phyt=1;
delPt=((f*(Gt^2)*(L)*(n))/(5.22*(10^10)*(D)*(s)*(phyt))); // using eq.7.45,psi
printf("\t delPt is : %.1f psi \n",delPt);
X1=0.13; // X1=((V^2)/(2*g)), for Gt 1060000,using fig.27
delPr=((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
|
726875843e09415a8726ef691b001ec80ff34552
|
cf99f338f2e97fd7e8ae1ad9b640101832f787ba
|
/case-studies/week-3/week-3-q2.sce
|
b42db4191bbfddeae527d95d8c9641df3c6ab572
|
[] |
no_license
|
vsujeesh/BN5205
|
b8e88324c1c97971ba3d95c3125d05676b6e4996
|
7386a440ed3e954c4aeb490eebd948d35186635d
|
refs/heads/master
| 2022-03-13T01:00:24.783429 | 2019-10-22T03:23:55 | 2019-10-22T03:23:55 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 3,196 |
sce
|
week-3-q2.sce
|
clear;
clf;
// read from file
filename = pwd() + "\case-studies\week-3\exp_data.txt";
data = fscanfMat(filename);
// constant variables
frequency = 0.1; // Hz
omega = 2 * %pi * frequency;
sigma_0 = 6; // MPa
E = 3; // elastic modulus (MPa)
eta = 5; // viscosity (MPa/s)
dt = 0.29; // can reach 0.4 for 4th order Runge-Kutta
function sigma_t = Stress(t)
sigma_t = sigma_0 * sin(omega * t);
endfunction
function elastic_modulus = E_nc(epsilon)
elastic_modulus = E + 46 * epsilon^2;
endfunction
function slope = dedt(t, epsilon)
slope = (-E * epsilon + Stress(t)) / eta;
endfunction
function slope = dedt_nc(t, epsilon)
slope = (-E_nc(epsilon) * epsilon + Stress(t)) / eta;
endfunction
function y = ForwardEuler(t, y_prev, h)
y = y_prev + h * dedt(t, y_prev);
endfunction
function y = HeunsMethod(t, y_prev, h)
y = y_prev + h / 2 * (dedt(t, y_prev) + dedt(t + h, y_prev +...
h * dedt(t, y_prev)));
endfunction
function y = MidpointMethod(t, y_prev, h)
y = y_prev + h * dedt(t + h / 2, y_prev + h / 2 *...
dedt(t, y_prev));
endfunction
function y = RK4(t, y_prev, h)
k1 = dedt(t, y_prev);
k2 = dedt(t + h / 2, y_prev + h / 2 * k1);
k3 = dedt(t + h / 2, y_prev + h / 2 * k2);
k4 = dedt(t + h, y_prev + h * k3);
y = y_prev + h * (k1 + 2 * k2 + 2 * k3 + k4) / 6;
endfunction
function y = ForwardEuler_nc(t, y_prev, h)
y = y_prev + h * dedt_nc(t, y_prev);
endfunction
function y = HeunsMethod_nc(t, y_prev, h)
y = y_prev + h / 2 * (dedt_nc(t, y_prev) + dedt_nc(t + h,...
y_prev + h * dedt_nc(t, y_prev)));
endfunction
function y = MidpointMethod_nc(t, y_prev, h)
y = y_prev + h * dedt_nc(t + h / 2, y_prev + h / 2 *...
dedt_nc(t, y_prev));
endfunction
function y = RK4_nc(t, y_prev, h)
k1 = dedt_nc(t, y_prev);
k2 = dedt_nc(t + h / 2, y_prev + h / 2 * k1);
k3 = dedt_nc(t + h / 2, y_prev + h / 2 * k2);
k4 = dedt_nc(t + h, y_prev + h * k3);
y = y_prev + h * (k1 + 2 * k2 + 2 * k3 + k4) / 6;
endfunction
time = [0:dt:100];
// Finding strain using Forward Euler
fe = zeros(time);
fe_nc = zeros(time);
// Finding strain using Heun's method
hm = zeros(time);
hm_nc = zeros(time);
// Finding strain using Midpoint method
mm = zeros(time);
mm_nc = zeros(time);
// Finding strain using 4th order Runge-Kutta
rk = zeros(time);
rk_nc = zeros(time);
for t = 1:length(time) - 1
fe(t + 1) = ForwardEuler(time(t), fe(t), dt);
hm(t + 1) = HeunsMethod(time(t), hm(t), dt);
mm(t + 1) = MidpointMethod(time(t), mm(t), dt);
rk(t + 1) = RK4(time(t), rk(t), dt);
fe_nc(t + 1) = ForwardEuler_nc(time(t), fe_nc(t), dt);
hm_nc(t + 1) = HeunsMethod_nc(time(t), hm_nc(t), dt);
mm_nc(t + 1) = MidpointMethod_nc(time(t), mm_nc(t), dt);
rk_nc(t + 1) = RK4_nc(time(t), rk_nc(t), dt);
end
plot(data(:,1), data(:,2), 'k.');
//plot(fe, Stress(time));
plot(fe_nc, Stress(time), 'm');
//plot(hm, Stress(time), 'r');
plot(hm_nc, Stress(time), 'r');
//plot(mm, Stress(time), 'c');
plot(mm_nc, Stress(time), 'c');
//plot(rk, Stress(time), 'b');
plot(rk_nc, Stress(time), 'b');
xlabel("$Strain\ \epsilon$", "fontsize", 3)
ylabel("$Stress\ \sigma$", "fontsize", 3);
title("Hysteresis Loop");
legend(["Experiment"; "FE"; "HM"; "MM"; "RK4"], -1);
|
61fae68a9bac8004c9be36e563126385a9c91ed2
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3487/CH3/EX3.1/Ex3_1.sce
|
1577f6649e68b705c16fbaf3376fd0c5b126bc95
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 998 |
sce
|
Ex3_1.sce
|
//Chapter 3,Example 3.1 Page 104
clc
clear
R1 = 75 //ohms
R2 = 2600 //ohms
C1 = 25 // nF
C2 = 2.5 //nF
alpha = (10^9/2)*(1/(R2*C1)+1/(R1*C1)+1/(R1*C2))
beeta = (1/2)*sqrt(4*alpha^2-4*10^18/(R1*R2*C1*C2))
t1 = (1/(2*beeta))*log((alpha+beeta)/(alpha-beeta))
K = 0.7/(t1*(alpha-beeta))+1
t2 = K*t1
printf (" alpha = %e \n ",alpha)
printf (" beta = %e \n ",beeta)
printf (" K = %f \n ",K)
printf (" t1 = %e micro sec \n ",t1*10^6)
printf (" t2 = %f micro sec \n ",t2*10^6)
//Aproximating the circuit and neglecting R2
t1 = 3*((C1*C2*10^-18)/(C1+C2*10^-9))*R1
// C1 and C2 are in parallel and R1 and R2 in series
t2 = 0.7*(R1+R2)*(C1+C2)*10^-9
printf (" t1 = %f micro sec \n ",t1*10^9*10^6)
printf (" t2 = %f micro sec \n ",t2*10^6)
printf ("On comparison with the values obtained through exact formulate it is found that whereas wave tail time is more or less same, \n the wave front time as calculated through approximate formula is quite erroneous.")
// Answers may vary due to round off error
|
138a77265dc1ed60c8fad2cf5bd80e7892ae9b39
|
74c4c6d3c27c7c63edbb333b252ee3d01dbab00e
|
/assignment_1/scenes/planes/planes.sce
|
129e2d264cb9129fb7eacd0e61ec31a2153f49ee
|
[] |
no_license
|
robinmamie/intro_computer_graphics
|
495ba4339da31727608754ea43cc865997197b0c
|
861f218adb61e1d553d5cbc6f3d213a9ebc31670
|
refs/heads/master
| 2022-01-17T08:03:34.603786 | 2019-05-31T07:03:45 | 2019-05-31T07:03:45 | 171,866,665 | 1 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 424 |
sce
|
planes.sce
|
# camera: eye, center, up, fovy, width, height
camera 0 3 8 0 1 0 0 1 0 45 1024 1024
# recursion depth
depth 5
# background color
background 0 0 0
# global ambient light
ambience 0.2 0.2 0.2
# light: position and color
light 20 50 0 0.5 0.5 0.5
light 50 50 50 0.5 0.5 0.5
light -50 50 50 0.5 0.5 0.5
# planes: center, normal, material
plane 0 0 0 0 1 0 0.2 0.2 0.2 0.2 0.2 0.2 0.0 0.0 0.0 100.0 0.1
|
1b3fca25507e7cc1d7a00688d2f775e716057924
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1247/CH3/EX3.5/example3_5.sce
|
8e716c2c309535fd3cade1279d314bdbe279cc4f
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 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
|
example3_5.sce
|
clear;
clc;
// Stoichiometry
// Chapter 3
// Material Balances Without Chemical Reaction
// Example 3.5
// Page 62
printf("Example 3.5, Page 62 \n \n");
// solution
m= 100 //[kg] original mixture (basis)
A = 27.8 //[kg]
B = 72.2 //[kg]
// let x and y be uper and lower layer amounts
// total mixture = (x+y) kg
// balancing A and B
X = [.075 .203;.035 .673]
d = [27.8;72.2]
x = X\d
M = X(1,1)+X(2,1) // [kg] total mixture
Ms = M - m //[kg] mixed solvent
Mr = Ms/m // mixed solvent/original mixture
S1 = x(1,1)*.574+x(2,1)*.028 //[kg] water balance
S2 = x(1,1)*.316+x(2,1)*.096 //[kg] acetic acid balance
Qs = S1+S2
pS1 = (S1*100)/Qs
pS2 = 100-pS1
printf("(a) \n \nUpper layer = "+string(x(1,1))+" kg and Lower layer = "+string(x(2,1))+"\n \n \n(b) \n \nmass ratio of the mixed solvent to the original mixture is "+string(Mr)+" \n \n \n (c) \n \nwater mass percent = "+string(pS1)+" and acetic acid mass percent = "+string(pS2)+".")
|
fa4a1a932d477405fd2a73ccf8a662df32b81430
|
e9d5f5cf984c905c31f197577d633705e835780a
|
/data_reconciliation/nonlinear/scilab/nonlin_rn96_2/nonlin_rn96_2.sce
|
eaddb2932d2c30824cb253c3c57036e63e49bdb9
|
[] |
no_license
|
faiz-hub/dr-ged-benchmarks
|
1ad57a69ed90fe7595c006efdc262d703e22d6c0
|
98b250db9e9f09d42b3413551ce7a346dd99400c
|
refs/heads/master
| 2021-05-18T23:12:18.631904 | 2020-03-30T21:12:16 | 2020-03-30T21:12:16 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 6,266 |
sce
|
nonlin_rn96_2.sce
|
// Data Reconciliation Benchmark Problems From Lietrature Review
// Author: Edson Cordeiro do Valle
// Contact - edsoncv@{gmail.com}{vrtech.com.br}
// Skype: edson.cv
//Rao, R Ramesh, and Shankar Narasimhan. 1996.
//“Comparison of Techniques for Data Reconciliation of Multicomponent Processes.”
//Industrial & Engineering Chemistry Research 35:1362-1368.
//http://dx.doi.org/10.1021/ie940538b.
//Bibtex Citation
//@article{Rao1996,
//author = {Rao, R Ramesh and Narasimhan, Shankar},
//isbn = {0888-5885},
//journal = {Industrial \& Engineering Chemistry Research},
//month = apr,
//number = {4},
//pages = {1362--1368},
//publisher = {American Chemical Society},
//title = {{Comparison of Techniques for Data Reconciliation of Multicomponent Processes}},
//url = {http://dx.doi.org/10.1021/ie940538b},
//volume = {35},
//year = {1996}
//}
// 12 Streams
// 7 Equipments
// 4 Compounds
getd('.');
getd('../functions');
clear tstraoflow_full tstraoflow tstraocomp_full tstraocomp At umeas fixed red lower upper var_lin_type constr_lin_type constr_lhs constr_rhs just_measured observ non_obs spec_cand x_sol f_sol lower upper extra xmfull ncomp var jac nc nv nnzjac nnz_hess sparse_dg sparse_dh lower upper var_lin_type constr_lin_type constr_lhs constr_rhs
// In the original paper, streams 2 to 12 are unmeasured,
//theses values are estimates givem by the paper's original author.
tstrao_flow_full = [691.67, 727.54, 699.36, 687.15, 35.87, 12.51, 27.88 , 23.36, 22.67, 4.79, 4.52, 9.31]
//information of measured/unmeasured(-1)/fixed(-5)
tstrao_flow = [-5, -1, -1, -1, -1, -1, -1 , -1, -1, -1, -1, -1]
tstrao_comp_full = [0.41 0.86 0.32 0.1 9.6 12.4 22 8.1 22.4 23 47.5 34.9;
2.58 2.63 2.88 2.94 3.64 4.1 3.52 4.38 4 4.82 2.56 3.5;
4 4.38 4.5 4.5 11.8 12.8 12.2 13.2 12.4 14.8 10.2 12.2;
93.01 92 92.30 92.46 74.96 70.7 62.28 74.32 66.2 57.38 39.74 49.4]/100
//information of measured/unmeasured(-1)/fixed(-5)
tstrao_comp = [0.41 0.86 0.32 0.1 9.6 12.4 22 8.1 22.4 23 47.5 34.9;
2.58 2.63 2.88 2.94 3.64 4.1 3.52 4.38 4 4.82 2.56 3.5;
4 4.38 4.5 4.5 11.8 12.8 12.2 13.2 12.4 14.8 10.2 12.2;
-100 -100 -100 -100 -100 -100 -100 -100 -100 -100 -100 -100]/100
//The jacobian of the constraints
// 1 2 3 4 5 6 7 8 9 10 11 12
jac = [ 1 -1 0 0 1 0 0 0 0 0 0 0
0 1 -1 0 0 0 -1 0 0 0 0 0
0 0 1 -1 0 -1 0 0 0 0 0 0
0 0 0 0 -1 1 0 1 0 0 0 0
0 0 0 0 0 0 0 -1 1 0 0 -1
0 0 0 0 0 0 1 0 -1 1 0 0
0 0 0 0 0 0 0 0 0 -1 -1 1 ];
// 1 2 3 4 5 6 7 8 9 10 11 12
// organizing the vector for the constraints residuals
xmfull=[tstrao_flow_full(:);matrix(tstrao_comp_full',-1)];
xm=xmfull;
//the variance proposed by the original author
sd = (0.01*xmfull);
//recalculating variance
for i=1: length(sd)
if sd(i) <= 0.0001
sd(i) = 0.0001;
end
end
var = sd.^2;
ncomp=4;
//observability/redundancy tests
[At,umeas, fixed] = jac_compound_residuals(jac,ncomp,tstrao_flow_full,tstrao_comp_full, tstrao_flow, tstrao_comp);
[red, just_measured, observ, non_obs, spec_cand] = qrlinclass(At,umeas)
// reconcile with all measured. To reconcile with only redundant variables, uncomment the "red" assignments
measured = setdiff([1:length(xmfull)], umeas);
// to reconcile with all variables, comment the line above and uncomment bellow
//measured = [1:length(xmfull)];
red=measured;
// to run robust reconciliation,, one must choose between the folowing objective functions to set up the functions path and function parameters:
//WLS = 0
// Absolute sum of squares = 1
//Cauchy = 2
//Contamined Normal = 3
//Fair = 4
//Hampel = 5
//Logistic = 6
//Lorenztian = 7
//Quasi Weighted = 8
// run the configuration functions with the desired objective function type
obj_function_type = 0;
exec ../functions/setup_DR.sce;
// to run robust reconciliation, it is also necessary to choose the function to return the problem structure
// ipopt needs some information about the problem, such as jacobian and hessian structure,
[nc, nv, nnzjac, nnz_hess, sparse_dg, sparse_dh, lower, upper, var_lin_type, constr_lin_type, constr_lhs, constr_rhs] = structure_compound(jac,ncomp, tstrao_flow_full,tstrao_comp_full);
params = init_param();
// We use the given Hessian
params = add_param(params,"hessian_approximation","exact");
// notice that the option bellow must only be set when the Hessians are constant,
// eg: weighted least squares objective function and linear or bilinear Jacobian
//params = add_param(params,"hessian_constant","yes");
params = add_param(params,"derivative_test","first-order");
//params = add_param(params,"derivative_test","second-order");
//params = add_param(params,"derivative_test_print_all","yes");
params = add_param(params,"tol",1e-4);
params = add_param(params,"acceptable_tol",1e-4);
params = add_param(params,"mu_strategy","monotone");
params = add_param(params,"journal_level",5);
params = add_param(params,"fixed_variable_treatment", "relax_bounds");
disp('begore start ipopt')
//according to the original paper, we fix the measured total flow
lower(fixed) = xmfull(fixed);
upper(fixed) = xmfull(fixed);
tic
//xrd=rand(size(xmfull,1),size(xmfull,2));
//[x_sol, f_sol, extra] = ipopt(xrd, objfun, gradf, confun, dg1, sparse_dg, dh, sparse_dh, var_lin_type, constr_lin_type, constr_rhs, constr_lhs, lower, upper, params);
[x_sol, f_sol, extra] = ipopt(xmfull, objfun, gradf, confun, dg1, sparse_dg, dh, sparse_dh, var_lin_type, constr_lin_type, constr_rhs, constr_lhs, lower, upper, params);
toc
mprintf("\n\nSolution: , x\n");
for i = 1 : nv
mprintf("x[%d] = %e\n", i, x_sol(i));
end
mprintf("\n\nObjective value at optimal point\n");
mprintf("f(x*) = %e\n", f_sol);
//printing results
[Aeqp, Astreams] =size(jac)
xx=matrix(x_sol,Astreams,ncomp+1)
TotalFlowMeasured = xx(:,1)'
compoundMeasured = 100*xx(:, 2:$)
|
cfaec3e9eaada5d60a7c82aac985baed5a4ff22c
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1271/CH6/EX6.9/example6_9.sce
|
6f9929966b2b21b95f70f7dffa0ae2067dcf259f
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 285 |
sce
|
example6_9.sce
|
clc
// Given that
E = 100 // strength of electric field in V/m
B = 1e-3 // magnetic field in tesla
// Sample Problem 9 on page no. 6.24
printf("\n # PROBLEM 9 # \n")
v = E / B
printf("\n Standard formula used \n v = E / B. ")
printf("\n The drift of the guiding center = %e m/sec",v)
|
812853a8d69f43288d1422298f35b0111c41ebd8
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1022/CH14/EX14.5/14_5.sce
|
3941e49c343838a64f6145949f8c747366fa8145
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 280 |
sce
|
14_5.sce
|
clc
//initialisation of variables
T= 300 //F
T1= 50 //F
s= 0.17*10^-8 //Btu/hr ft^2 R^4
e1= 0.93
A= 10 //in
F= 1
//CALCULATIONS
A1= 10*(40/(12*10))
q= A1*F*e1*s*((T+460)^4-(T1+460)^4)
//RESULTS
printf ('Heat loss from the conduit by radiation = %.f Btu/hr per ft',q)
|
0b9b683908c3bffbe99673ede6764ef76b84f4e7
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3720/CH3/EX3.12/Ex3_12.sce
|
ad64f4818c6e3b002ee62981dba1952f0204a5c6
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 618 |
sce
|
Ex3_12.sce
|
//Example 3_12
clc;clear;funcprot(0);
// Given values
dV=90-0;//Change in velocity in km/h
dt=10;// s
b_1=2;// m
b_2=0.6// m;
g=9.81;// m/s^2
a_z=0;// m/s^2
// Calculation
a_x=(dV/dt)/3.6;// The acceleration of the truck in m/s^2
theta=atand(a_x/(g+a_z));// degree
// Case 1:
gradZ_s1=(b_1/2)*tand(theta)*100;// cm
printf('Case 1 :The long side is parallel to the direction of motion:Vertical rise,grad_Zs1=%0.1f cm\n' ,gradZ_s1);
// Case 2:
gradZ_s2=(b_2/2)*tand(theta)*100;// cm
printf('Case 2 :The short side is parallel to the direction of motion:Vertical rise,grad_Zs2=%0.1f cm\n',gradZ_s2);
|
2b88c7b7e30ffde230f51e1370ff136cb234f2b9
|
1362c7130b565072410949eb3f4dc8dab09efd98
|
/Project Files/BooksByPublisherStudy.~tst
|
b7237cebe7a3f2737fc2404f914552379ca39b27
|
[] |
no_license
|
YurishoSan/DBMS_5775_5366_5244
|
8670b57c827d9f61bebce85b4ef062ce8bb05ba4
|
58b981ed21eb7473ffa45973c9956a786697b6e4
|
refs/heads/master
| 2021-01-23T12:21:15.199350 | 2015-06-24T18:28:29 | 2015-06-24T18:28:29 | 32,469,186 | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 760 |
BooksByPublisherStudy.~tst
|
PL/SQL Developer Test script 3.0
18
-- Created on 10/06/2015 by YURISHO
declare
-- Local variables here
percent_count number := 0;
cursor cPublisher is
SELECT DISTINCT publisher FROM book;
begin
-- Test statements here
for publisher_rec in cPublisher loop
percent_count := percent_count + Package.BooksByPublisherStudy(publisher_rec.publisher);
dbms_output.put_line('Persent of students who study or being taught from publisher ' ||
publisher_rec.publisher || ' ' ||
Package.BooksByPublisherStudy(publisher_rec.publisher));
end loop;
dbms_output.put_line('--------------------------------------------');
dbms_output.put_line('Sum of all percentages: ' || percent_count);
end;
0
0
|
|
97a373729306f4cc943619c0ae135c5ef6ad52c2
|
8217f7986187902617ad1bf89cb789618a90dd0a
|
/source/2.5/tests/examples/macrovar.man.tst
|
4a5574f3a3aca0501fe2b401880697d231dc6995
|
[
"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 | 74 |
tst
|
macrovar.man.tst
|
clear;lines(0);
deff('y=f(x1,x2)','loc=1;y=a*x1+x2-loc')
vars=macrovar(f)
|
5c38a83eebda7b77865ae94deaf542a8e8bce7cd
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3137/CH8/EX8.2/Ex8_2.sce
|
2a80d8895e56509570a9b7297d2f6ee6117fac45
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 511 |
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)
mtlb_hold on
plot(L, zeros(length(L),1))
xtitle("Shear Force Diagram","Span","Shear Force")
|
6c969663a05fef6ccd00ecaddc2071d14f75f911
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/181/CH1/EX1.17/example1_17.sce
|
0770d41ab3502986d419c29219a5e55cb6a98911
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 479 |
sce
|
example1_17.sce
|
// Equilibrium hole concentration in Si
// Basic Electronics
// By Debashis De
// First Edition, 2010
// Dorling Kindersley Pvt. Ltd. India
// Example 1-17 in page 48
clear; clc; close;
// Data given
n_0=10^17; // Free electron concentration /cm^3
n_i=1.5*10^10; // Constant of calculation
// Calculation
p_0= n_i^2/n_0;
printf("Equilibrium hole concentration is %0.2e cm^-3",p_0);
// Result
// Equilibrium hole concentration in Si sample is 2.25*10^3 cm^-3
|
119ecd0b126e0e3cefc6e850292299d198580d79
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1826/CH7/EX7.2/ex7_2.sce
|
0fb7b00925153a122ef58bcafcdd598ce1f0e2b2
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 217 |
sce
|
ex7_2.sce
|
// Example 7.2, page no-161
clear
clc
r=1.85*10^-10//m
t=3*10^-14//s
m=9.11*10^-31//Kg
e=1.6*10^-19//C
a=r*(4/sqrt(3))
ne=2/a^3
rho=m/(ne*t*e^2)
printf("Resistivity of copper is %.3f*10^-8 Ohm-m",rho*10^8)
|
e8ed60057073a121adec0ce2f839c99681758add
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1670/CH10/EX10.8/10_8.sce
|
3184577608cb95dcfd3e2fde42c3fa8a01d446c2
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 206 |
sce
|
10_8.sce
|
//Example 10.8
//Picard Method
//Page no. 313
clc;clear;close;
deff('y=f(x,y)','y=x^2-y')
y(1)=1;
for i=1:5
y(i+1)=y(1)+integrate('f(x,y(i))','x',0,0.2)
printf('\n y%g = %g\n',i,y(i+1))
end
|
8176dd5f40dbb10f220d55b354bec768936dcd5f
|
8217f7986187902617ad1bf89cb789618a90dd0a
|
/browsable_source/2.3.1/Unix-Windows/scilab-2.3/macros/scicos_blocks/IFTHEL_f.sci
|
b135f6376f12ea931ab50a0169a951a4cfc26394
|
[
"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 | 594 |
sci
|
IFTHEL_f.sci
|
function [x,y,typ]=IFTHEL_f(job,arg1,arg2)
x=[];y=[];typ=[]
select job
case 'plot' then
standard_draw(arg1)
case 'getinputs' then
[x,y,typ]=standard_inputs(arg1)
case 'getoutputs' then
[x,y,typ]=standard_outputs(arg1)
case 'getorigin' then
[x,y]=standard_origin(arg1)
case 'set' then
x=arg1;
x(3)(11)=[-1 -1]
case 'define' then
model=list(list('ifthel',1),1,[],1,[1;1],[],[],[],[],'l',[-1 -1],[%f %f],' ',list())
gr_i=['txt=[''If in>=0'';'' '';'' then else''];';
'xstringb(orig(1),orig(2),txt,sz(1),sz(2),''fill'');']
x=standard_define([3 3],model,[],gr_i)
end
|
b6fd6efd0e6e78e531761031c7b4d498f1ee88f1
|
a45f93853fdb67523e71e3e7fb88c4298eae1ef7
|
/Screens/Join Game Lobby.tst
|
cdb8c2276bb24be42647870e0806e395bdfde835
|
[] |
no_license
|
voarsh/Disney-Treasure-Planet-Battle-at-Procyon
|
68192cbfdf8b823bc8399e3ea1e62d4976b74aed
|
99cbbc70701ef6e8f9d95eba1052635de992910f
|
refs/heads/master
| 2020-04-16T01:44:03.761947 | 2016-06-08T10:25:05 | 2016-06-08T10:25:05 | 38,745,932 | 3 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 3,655 |
tst
|
Join Game Lobby.tst
|
ScreenName String 'Join Game Lobby'
ImplName String 'NULL SCREEN'
ElementChunkArray Int 12
ScreenElementType Int 0
ImplName String 'Game Lobby Backdrop'
TabIndex Int 1
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 0, 0, 800, 600 ) # left,top,right,bottom
ScreenElementType Int 1
ImplName String 'Open Ship Selection Screen'
TabIndex Int 4
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 15, 281, 204, 329 ) # left,top,right,bottom
Font String 'BlackChancery16'
Text String 'IDGS_TPFRONTENDTEXT_SCREENS_ASSEMBLE_FLEET'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Open Previous Screen Button'
TabIndex Int 7
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 15, 506, 204, 554 ) # left,top,right,bottom
Font String 'BlackChancery16'
Text String 'IDGS_TPFRONTENDTEXT_SCREENS_QUIT'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 0
ImplName String 'Lobby Chat Backdrop'
TabIndex Int 11
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 224, 381, 744, 558 ) # left,top,right,bottom
ScreenElementType Int 5
ImplName String 'Lobby Chat Scrollable List'
TabIndex Int 12
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 246, 379, 781, 528 ) # left,top,right,bottom
Font String 'Univers10'
ScreenElementType Int 3
ImplName String 'Lobby Chat Text Entry'
TabIndex Int 13
Selectable Bool True
Enabled Bool True
ReferenceArea Rect( 244, 520, 724, 555 ) # left,top,right,bottom
Font String 'Univers10'
Text String 'IDGS_TPFRONTENDTEXT_SCREENS_NULL'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
ScreenElementType Int 1
ImplName String 'Player Ready Button'
TabIndex Int 13
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 15, 343, 204, 389 ) # left,top,right,bottom
Font String 'BlackChancery16'
Text String 'IDGS_TPFRONTENDTEXT01_IM_READY'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Lobby Information Button'
TabIndex Int 15
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 0, 76, 219, 218 ) # left,top,right,bottom
Font String 'Univers12'
Text String 'IDGS_TPFRONTENDTEXT_BUTTON_ARMS'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Open Map Description Dialog Button'
TabIndex Int 16
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 15, 225, 204, 269 ) # left,top,right,bottom
Font String 'BlackChancery16'
Text String 'IDGS_TPFRONTENDTEXT02_MAP_INFORMATION'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Lobby Player List Button'
TabIndex Int 6
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 233, 78, 795, 368 ) # left,top,right,bottom
Font String 'Univers10'
Text String 'IDGS_TPFRONTENDTEXT_SCREENS_BUTTON'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Center Justify Label'
TabIndex Int 17
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 3, 31, 218, 81 ) # left,top,right,bottom
Font String 'BlackChancery22'
Text String 'IDGS_TPFRONTENDTEXT_SCREENS_GAME_LOBBY'
Color Colour( 0.000000, 0.000000, 0.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Center Justify Label'
TabIndex Int 18
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 0, 36, 217, 74 ) # left,top,right,bottom
Font String 'BlackChancery22'
Text String 'IDGS_TPFRONTENDTEXT_SCREENS_GAME_LOBBY'
Color Colour( 1.000000, 0.796100, 0.000000, 1.000000 )
HotKey Int -1
|
d6c3f980698184ee629a07bf7029220437f43d1b
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/635/CH1/EX1.4/Ch01Ex4.sci
|
0fe424fc6117ad646b1a9b54be6c8566830512ee
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 631 |
sci
|
Ch01Ex4.sci
|
// Scilab Code Ex 1.4 Lattice constant of a unit cell: Page-9 (2010)
M = 58.5; // Atomic weight of NaCl, gram per mole
d = 2180D+03; // Density of rock salt, per metre cube
n = 4; // No. of atoms per unit cell for an fcc lattice of NaCl crystal
N = 6.023D+23; // Avogadro's No.
// Volume of the unit cell is given by
// a^3 = M*n/(N*d)
// Solving for a
a = (n*M/(d*N))^(1/3); // Lattice constant of unit cell of NaCl
disp (a/1D-10, "Lattice constant for the rock salt (NaCl) crystal, in angstrom, is : ");
// Result
// Lattice constant for the rock salt (NaCl) crystal, in angstrom, is :
// 5.6275
|
6174ec5158ae51a00f7499fd525d047d5334bae9
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/569/CH8/EX8.6/8_6.sci
|
3f22bf6755ce0df1c791289ba2c1649faa6edf65
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 161 |
sci
|
8_6.sci
|
// Calculate the difference in two diameters
clc;
x=20/12;
L=50-10;
lem=0.6;
d=(L*lem)/(2*x);
disp(d,'difference in diameters of the rollers(micro-meter)')
|
3f9ef384a7b62342d2ed64e35f947b7015982836
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2375/CH2/EX2.6/ex2_6.sce
|
7908ddb60581d637b106b7bd71c0e4db696beea9
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 759 |
sce
|
ex2_6.sce
|
// Exa 2.6
clc;
clear;
close;
format('v',6)
// Given data
V_BEsat = 0.8;// in V
V_BEact = 0.7;// in V
V_CEsat = 0.2;// in V
V_CC = 10;// in V
Beta = 100;
V = 5;// in V
R_B = 50* 10^3;// in ohm
R_E = 2* 10^3;// in ohm
R_C = 3* 10^3;// in ohm
//Applying KVL to input loop, V = R_B*I_B + V_BEact + I_C*R_E and I_C = Beta*I_B;
I_B = (V-V_BEact)/(R_B+R_E*Beta);// in A
// Applying KVL to collector circuit, V_CC= I_C*R_C+V_CEsat+I_E*R_E and I_E=I_C+I_B
I_C = (V_CC-V_CEsat-I_B*R_E)/(R_C+R_E);// in A
I_Bmin = I_C/Beta;// in A
if I_B < I_Bmin then
disp("Since the value of I_B ( "+string(I_B*10^6)+ " µA) is less than the value of I_Bmin ( "+string(I_Bmin*10^6)+" µA), ")
disp("So the transistor is in the active region.")
end
|
4a41c1b9161c4232b16e2fcc689b7b97873ba65c
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2183/CH8/EX8.15/Ex_8_15.sce
|
0e86d3b7a3875eaa7b102a8989774ca6a7de4ef4
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 338 |
sce
|
Ex_8_15.sce
|
//Example 8.15 //
clc;
clear;
close;
//given data :
B=5*10^6;// in Hz
Ts=10;// in ns
Td=4;// in ns
a=9;// in ns/km
b=2;// in ns/km
l=6;// in km
Tn=a*l;// in ns
Tc=b*l;// in ns
Ts_max=(0.35/B)*10^9;
disp(Ts_max,"T system_maxmum,(ns) = ")
Tsys=1.1*sqrt(Ts^2+Tn^2+Tc^2+Td^2);
disp(Tsys,"T system,(ns) = ")
//answer is wrong in the textbook
|
f1bafa22becdd178c5b401ec792e0a1661cd7fdd
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2459/CH20/EX20.2/Ex20_2.sce
|
3bf880b675528287e154262e89abea91f1d75004
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 211 |
sce
|
Ex20_2.sce
|
//chapter20
//example20.2
//page437
V_NL=30 // V
regulation=1
// since regulation=((V_NL-V_FL)/V_FL)*100, we get V_FL as
V_FL=100*V_NL/(100+regulation)
printf("full load voltage = %.3f V \n",V_FL)
|
5389773f28229151b1f803fdfdedadd6a56fb799
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/343/CH2/EX2.46/ex2_46.sce
|
66a821b85571bb02116fa1951224da41db0197dd
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 280 |
sce
|
ex2_46.sce
|
clc
function vl=f(t), vl=300*sin(1000*t), endfunction; //Defining functions
R=20; //Assigning values to parameters
w=1000;
Z=R/cos(%pi/4);
Xc=sqrt(Z*Z-R*R);
Xl=2*Xc;
L=Xl/w;
C=1/(w*Xc);
disp("Henry",L,"Inductance Value");
disp("Farad",C,"Capacitance Value");
|
0112c859c604b79c52017f0494e8965b242bc72c
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2459/CH14/EX14.18/Ex14_18.sce
|
6c34bbbafaebac7bc07f5d6e363d72b20c2e1b53
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 393 |
sce
|
Ex14_18.sce
|
// chapter14
// example14.18
// page 313
f=200 // Hz
Ro=10d3 // ohm, transistor output impedence
Zi2=2.5d3 // ohm, input impedence of next stage
// since Ro=2*%pi*f*Lp, making Lp as subject we get
Lp=Ro/(2*%pi*f)
// since Zi2=2*%pi*f*Ls, making Ls as subject we get
Ls=Zi2/(2*%pi*f)
printf("primary inductance = %.1f H \n",Lp)
printf("secondary inductance = %.1f H \n",Ls)
|
7e5ec483a269c7af258328a99bca254099c6556f
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/964/CH9/EX9.7/9_7.sce
|
766c8403139ebbdfd6a234fc6f6a29ed03979101
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 279 |
sce
|
9_7.sce
|
clc;
clear;
//part a
a=[3 2;-1 2];
b1=18;
b2=2;
disp(determ(a),"The determinant for part(a)=")
//part b
a=[1 2;1.1 2];
b1=10;
b2=10.4;
disp(determ(a),"The determinant for part(b)=")
//part c
a1=a*10;
b1=100;
b2=104;
disp(determ(a1),"The determinant for part(c)=")
|
ad8455d28349b7228eb6f25e05545fcddd314d0f
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/503/CH8/EX8.13/ch8_13.sci
|
ab3fdbb45a9e177efa4c61de0e04e5e1a5f48763
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 773 |
sci
|
ch8_13.sci
|
//to determine excitation emf, torque angle,stator current, pf, max power, kVAR delivered
clc;
j=sqrt(-1);
P=10000;
V=400;
Ia=P/(sqrt(3)*V);
pf=.8;
phi=acosd(pf);
Iaa=Ia*complex(cosd(-phi),sind(-phi));
Vt=V/sqrt(3);
X=16;
Ef=Vt+j*X*Iaa;
disp(abs(Ef),'excitation emf(V)');
dl=atand(imag(Ef)/real(Ef));
disp(dl,'torque angle');
Pe=P*pf;
Eff=abs(Ef)*1.2;
dl=(Pe/3)*X/(Eff*Vt);
ta=asind(dl);
disp(ta,'torque angle');
Ia=(Eff*complex(cosd(ta),sind(ta))-Vt)/(j*X);
disp(abs(Ia),'stator current(A)');
disp(cosd(-atand(imag(Ia)/real(Ia))),'pf');
Ef=413;
Pemax=Ef*Vt/X;
Ia=(Ef*complex(cosd(90),sind(90))-Vt)/(j*X);
disp(abs(Ia),'stator current(A)');
disp(cosd(-atand(imag(Ia)/real(Ia))),'pf');
Qe=(imag(Ia)/real(Ia))*Pe;disp(Qe,'kVar delivered');
|
678b2e527c189e971bc46678568e982591ccd09d
|
30144e622f4a0c61dce4375c52a5188ec680e578
|
/test/sched/att03.tst
|
4bf1eb4a72a54216ed0a079f935c47792ddb18af
|
[
"MIT"
] |
permissive
|
Mah-D/VICE
|
adc67f9eecbcc566a635b072636bd6e16eb584e9
|
49c654ddb653879837f106653131982100309b60
|
refs/heads/master
| 2021-01-13T01:57:45.368790 | 2015-04-20T18:54:37 | 2015-04-20T18:54:37 | 27,107,980 | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 90 |
tst
|
att03.tst
|
@Harness: scheduler
@$X: a->a+x
@$Y: a->a+y
@$Z: a+x->b
@Input: a
@Output: b
@Result: X,Z
|
aa25b298c716281bba67e8ec57731768dafe4dc1
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2297/CH6/EX6.1/Ex6_1.sce
|
3d2d618399cb62215fc25169136853702056ef17
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 496 |
sce
|
Ex6_1.sce
|
//Example 6.1// Terminal voltage
clc;
clear;
close;
//given data :
format('v',7)
Z=440;// number of lap
N=900;// revolutions in rpm
fi=0.07;//fluxin Wb
P=4;// number of pole
A=4;//constant
Ia=50;// armature current in Amperes
E=462;//voltage in V
E=(P*fi*Z*N)/(60*A);//general voltage in volts
R=0.002;// resistance in ohm
C=110;// conductors
Re=C*R;//resistance of each path in ohm
Ra=Re/A;//armature resistance in ohm
V=E-(Ia*Ra);//terminal voltage in volts
disp(V,"Terminal voltage,(V) = ")
|
682c6049013b22ac453c0942e11c390e35625767
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/830/CH2/EX2.1.6/sample.sce
|
2aed758d86cdd603f48453b03e7651e7bc952947
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 369 |
sce
|
sample.sce
|
//Graphical//
//Implementation of Equation 2.1.6 in Chapter 2
//Digital Signal Processing by Proakis, Third Edition, PHI
//Page 45
clear; clc; close;
L = 4; //Upperlimit
n = -L:L;
x = [zeros(1,L),1,zeros(1,L)];
a=gca();
a.thickness = 2;
a.y_location = "middle";
plot2d3('gnn',n,x)
xtitle('Graphical Representation of Unit Sample Sequence','n','x[n]');
|
ae227e5868a2b05bb22e84157e4832345fac9319
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2276/CH6/EX6.5/chapter6_ex5.sce
|
31eb44ccda62eb10ea12684356665545a274cddd
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 382 |
sce
|
chapter6_ex5.sce
|
clc
clear
//input
r=20;//resistance of an inductor in ohms
x=15;//reactance of an inductor in ohms
v=250;//supply voltage in volts
//calculations
z=((r^2)+(x^2))^0.5;//magnitude of impedance in ohms
phi=(180/%pi)*atan(x/r);//phase angle in degrees
i=v/z;//current magnitude in amperes
//output
mprintf('the current will be %3.0f A lagging by %3.0f degrees',i,phi)
|
9713e883dd26c0a19efefee8b6fb4069b3e5014c
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/965/CH7/EX7.50/50.sci
|
964f2eebaffe0df8192037390a0e1c68394fe352
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 484 |
sci
|
50.sci
|
clc;
clear all;
disp("heat transferred per meter")
ta=15+273;//K air temperature
ts=605+273;//K plate temperature
U=6.5;// m/s velocity of air
x=0.35;//m distance
tf=(ts+ta)/2;// mean film temperature
rho=0.614;//kg/m^3
cp=1046;//J/kg.K
k=0.04593;// W/m.C
mu=29.7*10^(-6);//kg/m.s
Pr=0.675;,
Re=rho*U*x/mu;
Nux=0.332*Pr^(1/3)*Re^0.5*(ts/ta)^0.117;
hx=Nux*k/x;
h=2*hx;
Q=2*h*x*1*(ts-ta);
disp("W",Q,"heat transfer from both sides of the plate, per meter width =")
|
563de0715088d05f24554c81b65dd660d244158c
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3760/CH8/EX8.12/ExA_12.sce
|
2c63042429b9a26e2865f44dd2f121aa63612368
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 870 |
sce
|
ExA_12.sce
|
clc;
disp('case a');
// as per the data taken from Ex 1_3
rlg=24.948*10^5; // air gap reluctance for example 1_3(a)
rlc=12.474*10^5; // iron core reluctance for example 1_3(a)
rl=rlg+rlc; // net reluctance
N=500; // Number of turns
L=(N^2/rl)*1000;
printf('Inductance for case a is %f mH\n',L);
disp('case b');
// as per the data taken from Ex 1_3 part(c)
B=1.254; // calculated flux density
H=3200; // magnetic field intensity obtained from magnetisation curve corresponding to the flux density calculated
uo=4*%pi*10^-7; // free space permeability
ur=B/(H*uo); // relative permeability of iron core
d=2.85*10^-2; // diameter of cross section
A=(%pi*d^2)/4; // area of core
l=0.5; // core length
rlc=l/(ur*uo*A); // reluctance of iron core for part C
rt=rlg+rlc; // net reluctance
L=(N^2/rt)*1000;
printf('Inductance for case b is %f mH\n',L);
|
f9f79b52a989ce5131590b140e13f8d94e8f0223
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1223/CH17/EX17.7/Ex17_7.sce
|
9bc85a6e912e337b78aef411aeb4db0a2874b881
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 509 |
sce
|
Ex17_7.sce
|
clear;
clc;
//Example 17.7
Vcc=1.7;
Re=0.008;//mohm
Rc=0.008;//mohm
Vy=0.4;
Vbe=0.7;
Vor=Vcc//logic 1
Vor=Vcc-Vy//logic 0
Vr=1.5;
iE=(Vr-Vbe)/Re;
printf('\nemitter current=%.2f microA\n',iE)
iR=Vy/Rc;
printf('\nmaximum current in Rc =%.2fmicroA\n',iR)
iD=iE-iR;
printf('\ncurrent through the diode=%.2f microA\n',iD)
P=iE*Vcc;
printf('\npower dissipation=%.2f microW\n',P)
Vv=1.7;
iE=(Vv-Vbe)/Re;
printf('\niE =%.2fmicroA\n',iE)
P=iE*Vcc;
printf('\npower dissipation =%.2fmicroW\n',P)
|
fab4012da6e755b98823e89561ca637fb105de67
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/343/CH3/EX3.8/ex3_8.sce
|
01587bfa69b7166eb5c6f380865b12233be141c0
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 333 |
sce
|
ex3_8.sce
|
clc
f=50 //Assigning values to parameters
vl=440
p=1500
t=acos(0.2)
vph=vl/sqrt(3)
il=p/(sqrt(3)*vl*p*cos(t))
iph=il
zph=vph/iph
zph1=5.17+%i*25.3
[res]=real(zph1)
[xl]=imag(zph1)
l=xl/(2*%pi*f)
disp("ohms",res,"The resistive circuit constant is")
disp("ohms",l,"The inductive circuit constant is")
|
1999214c65c62df04d614d4629c6889732a75be2
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2159/CH7/EX7.9/79.sce
|
b009ced1d0c49f498929c83b2180257c0a357f0d
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 139 |
sce
|
79.sce
|
// problem 7,9
Q=0.3
D=1.5
N=0.02
A=3.142*D*D/(4*2)
p=3.142*D/2
m=A/p
i=((Q*N)/(A*(m^0.6666)))^2
disp(i,"the slope of the sewer")
|
d324d959d6fb3b6bf3bb58aa8834a3dd265cc9ab
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3875/CH4/EX4.16/Ex4_16.sce
|
e4882cfef5be5ac5fd4b4c41da6558d0c93e1dc4
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 274 |
sce
|
Ex4_16.sce
|
clc;
clear;
alpha=0.01 //wedge angle in radian
lambda=6000*10^-10 //wavelength in m
n=10 //the fringe observed
//calculation
x=((2*n-1)*lambda)/(4*alpha)
mprintf("The distance at which the 10th fringe will be obtained from the edge of the wedge is = %1.2e m",x)
|
3bcb7eaa995193d2f911db868c657469a7486168
|
417f69e36190edf7e19a030d2bb6aa4f15bb390c
|
/SMTTests/tests/err_getUnsatCore3.tst
|
6675e6adcdf878d1089e749664f36b4dd33719e4
|
[] |
no_license
|
IETS3/jSMTLIB
|
aeaa7ad19be88117c7454d807a944e8581184a66
|
c724ac63056101bfeeb39cc3f366c8719aa23f7b
|
refs/heads/master
| 2020-12-24T12:41:17.664907 | 2019-01-04T10:47:43 | 2019-01-04T10:47:43 | 76,446,229 | 1 | 0 | null | 2016-12-14T09:46:41 | 2016-12-14T09:46:41 | null |
UTF-8
|
Scilab
| false | false | 156 |
tst
|
err_getUnsatCore3.tst
|
; get-unsat-core after an assertionset command
(set-option :produce-unsat-cores true)
(set-logic QF_UF)
(assert true)
(check-sat)
(push 1)
(get-unsat-core)
|
350706ba2000408a6e5db99c98a6884455d16df8
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2492/CH2/EX2.4/ex2_4.sce
|
792a9e9052b09c1747860dde287fbfc4b74c149f
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 571 |
sce
|
ex2_4.sce
|
// Exa 2.4
format('e',9)
clc;
clear;
close;
// Given data
V = 30;//applied forward voltage in V
R_L = 3;//load resistance in k ohm
R_L = R_L * 10^3;// in ohm
Imax = V/R_L;// maximum diode current in A
Imax = Imax * 10^3;// in mA
slope = -1/R_L;// in mho
plot([V,0],[0,Imax]);
xlabel("V_F in volts");
ylabel("I_F in mA");
title("DC load line");
disp("DC load line shown in figure")
disp(slope,"The slope of the line in mho is");
// Note: There is calculation error to find the value of slope because -1/3kΩ = -3.33*10^-4 mho, not = -3.33*10^-3 mho
|
d7f28059530009fafed881182f1c009fd8f8ec81
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/23/CH7/EX7.6/Example_7_6.sce
|
89e8773631d6febcf85e233037634e2c451e5b45
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 945 |
sce
|
Example_7_6.sce
|
clear;
clc;
//To find Approx Value
function[A]=approx(V,n)
A=round(V*10^n)/10^n;//V-Value n-To what place
funcprot(0)
endfunction
//Example 7.6
//Caption : Program to Find the state of Steam at Discharge & Mass Rate of Flow
//Given Values
P1=8600;//[KPa]
T1=773.15;//[K]
//values of Enthalpy and Entropy from Steam tables
H1=3391.6;//[KJ/Kg]
S1=6.6858;//[KJ/Kg/K]
eta=0.75;
P2=10000;//[KPa]
rW=56400;//[KW] or [KJ/s]
S2i=S1;//Isentropic
S2_liquid=0.6493;
S2_vapor=8.1511;
H2_liquid=191.8;
H2_vapor=2584.8;
x2=(S2i-S2_liquid)/(S2_vapor-S2_liquid);
H2i=H2_liquid+(x2*(H2_vapor-H2_liquid));
del_Hs=H2i-H1;//[KJ/Kg]
del_H=eta*del_Hs;
H2=approx(H1+del_H,0);//[KJ/Kg]
x2=(H2-H2_liquid)/(H2_vapor-H2_liquid);
S2=approx(S2_liquid+(x2*(S2_vapor-S2_liquid)),4);
rm=approx(-rW/(H2-H1),2);//[Kg/s]
disp('KJ/Kg',H2,'Enthalpy')
disp('KJ/Kg/K',S2,'Entropy')
disp('Kg/s',rm,'Rate of mass change')
//End
|
ecd5e1a93eb1f7d3712d54898adbc1290de950e0
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/575/CH7/EX7.7.2/7_7_2.sce
|
0185307138fde0d2811cee5aa41fd50de3696e25
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 350 |
sce
|
7_7_2.sce
|
clc
pathname=get_absolute_file_path('7_7_2.sce')
filename=pathname+filesep()+'772.sci'
exec(filename)
printf(" All the values in the textbook are Approximated hence the values in this code differ from those of Textbook")
u2=sqrt(2*32.174*(-F-g*deltaZ/32.174))
Vdot=u2*%pi*(ID/2)^2 /144
t=V*0.1337/(Vdot*60)
printf("Total time taken=%f min",t)
|
6287e7168b63b529b6274104cfe574a5f5175b09
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2534/CH11/EX11.11/Ex11_11.sce
|
01da3bdc24e2b1bd50d221f5155de2221558c332
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 204 |
sce
|
Ex11_11.sce
|
//Ex11_11
clc
Vop_p = 7//peak to peap output voltage
Vip_p = 100*10^-3//peak to peap input voltage
Av = Vop_p/Vip_p
disp("Av = output voltage/input voltage")
disp(" = "+string(Av))//voltage gain
|
0e8c6f8a06cf9d475516788eb94f8b65c80dd583
|
32869948ce801ed2e69b5fb986fc310cab9a6d4a
|
/demos/demPMSM.dem.sce
|
897ebc038edcd27c5b94ef12fb8225259d4ba6fb
|
[
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-unknown-license-reference"
] |
permissive
|
ierturk/SciPowerLab
|
54ed5755cf4f3854176d7088f893317fe86cc0cf
|
da5d153272bae12564c1ded95241d6b40c8b4a90
|
refs/heads/master
| 2022-07-20T15:29:09.447509 | 2022-07-18T21:10:36 | 2022-07-18T21:10:36 | 94,237,627 | 1 | 1 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 198 |
sce
|
demPMSM.dem.sce
|
// ErturkMe - Copyright 2011 - 2022
// http://erturk.me
// ierturk@ieee.org
// See license.txt
thispath = get_absolute_file_path("demPMSM.dem.sce");
xcos(thispath+"/demPMSM.xcos");
clear thispath;
|
6cb10cc796004fa05a0b59781a76333fad6222d7
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1217/CH6/EX6.13/Exa6_13.sce
|
a5782b70f7845055277299f140e96aa753e4a317
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 1,049 |
sce
|
Exa6_13.sce
|
// Exa 6.13
clc;
clear;
close;
// given data
fL=200;//in Hz
fH=1;//in KHz
AFBP=4;//unitless
//for LP section design
//assume C=0.01 uF
C=0.01;//in uF
R=1/(2*%pi*fH*1000*C*10^-6);//in ohm
disp("For low pass section design component values are :");
disp(R/1000,"Value of R in Kohm is :")
disp(C,"Value of C in uF is :")
//for HP section design
//assume C=0.05 uF
C=0.05;//in uF
R=1/(2*%pi*fL*1000*C*10^-6);//in ohm
disp("For high pass section design component values are :");
disp(R,"Value of R in Kohm is :");
disp(C,"Value of C in uF is :");
disp("We have AFBP=AFHP*AFLP=4");
disp("The gain of HP section as well as LP section could be set equal to 2 to obtain overall gain of 4. This gives equal value for input and feedback resistors for both sections, i.e. ");
disp("R=10 Kohm");
fc=sqrt(fH*fL*1000);//in Hz
BW=fH*1000-fL;//in Hz
Q=fc/BW;//unitless
disp(fc,"Center frequency in Hz is : ");
disp(BW,"BW in Hz is :");
disp(Q,"Selectivity is :")
disp("As Q<10, hence the given filter is wide band pass filter.")
|
0b389866a0be21e40baefc8f111d2bad1ce738b1
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1640/CH2/EX2.7/2_7.sce
|
2e64906fae3020378d61af530e80421d80551338
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 224 |
sce
|
2_7.sce
|
clc
//initialisation of variables
h= 6.8 //in of mercury
sm= 13.6
ssw= 1.026
g= 32.2 //ft/sec^2
//CALCULATIONS
V= sqrt(2*g*h*(sm-ssw)/12)*3600/5280
//RESULTS
printf ('speed of submarine = %.1f miles per hour ',V)
|
0c2eefafea7431edcfcc72d251af45f5589595f2
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2384/CH4/EX4.19/ex4_19.sce
|
1fbcf37b4070b2979f928e168eb877419f17de3a
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 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
|
ex4_19.sce
|
// Exa 4.19
clc;
clear;
close;
format('v',6)
// Given data
R1 = 50;// in ohm
L = 318;// in mH
L = L * 10^-3;// in H
R2 = 75;// in ohm
C = 159;// in µF
C =C * 10^-6;// in F
V = 230;// in V
f = 50;// in Hz
XL= 2*%pi*f*L;// in ohm
Z1= R1+XL*%i;// in ohm
I1= V/Z1;// in A
XC= 1/(2*%pi*f*C);// in ohm
Z2= R2-%i*XC;// in ohm
I2= V/Z2;// in A
I= I1+I2;// in A
phi= atand(imag(I),real(I));// in °
disp("Supply current : ")
disp("Magnitude is : "+string(abs(I))+" A")
disp("Angle : "+string(phi)+" °")
disp("Power factor is : "+string(cosd(phi))+" lag")
|
62ca0baa13f4880e7e52d173e1b091f98270eed5
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3802/CH3/EX3.19/Ex3_19.sce
|
ad6bd435fe0c12f369b8c44efea62a928af15704
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 827 |
sce
|
Ex3_19.sce
|
//Book Name:Fundamentals of Electrical Engineering
//Author:Rajendra Prasad
//Publisher: PHI Learning Private Limited
//Edition:Third ,2014
//Ex3_19.sce
clc;
clear;
//Below values are taken from the given circuit (fig.3.27)
Z1=complex(6,0);
Z2=complex(10,15);
Z3=complex(6,-3);
Zs=(Z1*Z2)/(Z1+Z2)+Z3;
Vs=complex(12,0);
Is=complex(5*cosd(-30),5*sind(-30));
//for loop1 , the coefficient of I2 ,Isc and source is given below
a1=Z1+Z2;
b1=Z1;
c1=Vs;
//for loop2 , the coefficient of I1 ,I2 and source is given below
a2=Z2;
b2=-Z3;
c2=Is*Z3;
del2=det([a1 c1;a2 c2]);
del=det([a1 b1;a2 b2]);
Isc=del2/del;
Ys=1/Zs;
I=(Isc/Ys)/((1/Ys)+3);
I_mag=sqrt(real(I)^2+imag(I)^2);
I_ang=atand(imag(I)/real(I))+180;
printf("\n Current through the 3 ohm resistor= %1.4f angle:%3.2f degree \n",I_mag,I_ang)
|
71e152124f5058278b496231ae29408da147e823
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1859/CH3/EX3.17/exa_3_17.sce
|
99c8e04cea1416943d40852fdfeaf4c3eded5964
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 815 |
sce
|
exa_3_17.sce
|
// Exa 3.17
clc;
clear;
close;
// Given data
E= 1.5;// in V
R1addRm= 10;// addition of R1 and Rm in kohm
Rx= 0;
R=R1addRm+Rx;// in kohm
R=R*10^3;// in ohm
I= E/R;//meter FSD current in amp
// At 0.8 FSD
Im= 0.8*I;// in amp
R= E/Im;// in ohm
R=R*10^-3;// in kohm
Rx= R-R1addRm;//in kohm
disp(Rx,"Unknown resistance at 0.8 FSD in kΩ")
// At 0.5 FSD
Im= 0.5*I;// in amp
R= E/Im;// in ohm
R=R*10^-3;// in kohm
Rx= R-R1addRm;//in kohm
disp(Rx,"Unknown resistance at 0.5 FSD in kΩ")
// At 0.25 FSD
Im= 0.25*I;// in amp
R= E/Im;// in ohm
R=R*10^-3;// in kohm
Rx= R-R1addRm;//in kohm
disp(Rx,"Unknown resistance at 0.25 FSD in kΩ")
// At 0.1 FSD
Im= 0.1*I;// in amp
R= E/Im;// in ohm
R=R*10^-3;// in kohm
Rx= R-R1addRm;//in kohm
disp(Rx,"Unknown resistance at 0.8 FSD in kΩ")
|
a31e147ab0deee37e173d5253b413edbe12b9a0d
|
a1f93c5ed7f19ec2dc6e698a305960c7eaacb3fd
|
/Practica3.1/Ejercicio3.sci
|
5df8e3c8c5a3a6bea0f83317f443e4de33c83115
|
[] |
no_license
|
hectoregm/numerico
|
813c74b87c976c2af4fe83adf59561a80141ea2f
|
ca0e16875746ad9d9c17da7ce0635669fc2410ed
|
refs/heads/master
| 2021-01-21T07:53:31.701526 | 2014-12-02T04:42:40 | 2014-12-02T04:42:40 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 1,275 |
sci
|
Ejercicio3.sci
|
function [m,b] = createmat()
// Autores: Hector E. Gomez Morales
// Funcion que una matriz a partir de los datos del problema
x = [1.02; 0.95; 0.87; 0.77; 0.67; 0.56; 0.44; 0.30; 0.16; 0.01]
y = [0.39; 0.32; 0.27; 0.22; 0.18; 0.15; 0.13; 0.12; 0.13; 0.15]
n = size(x, 'r')
m = ones(n, 5)
b = ones(n, 1)
for i=1:n
m(i,1) = y(i)^2
m(i,2) = x(i)*y(i)
m(i,3) = x(i)
m(i,4) = y(i)
b(i) = x(i)^2
end
endfunction
function h = fun2(x,y)
// Autores: Hector E. Gomez Morales
// Funcion que obtiene los coeficientes de la ecuacion cuadratica y que obtiene el valor del punto (x,y) dado.
[m,b] = createmat()
x = -m\b
h = x^2 + c(2)*x*y + c(1)*y^2 + c(3)*x + c(4)*y + c(5)
endfunction
function h = fun(x,y)
// Autores: Hector E. Gomez Morales
// Funcion equivalente a la funcion fun2 pero que tiene ya definidos los coeficientes que hallamos esto para hacer mas rapida la graficacion
h = x^2 - 0.143*x*y + 2.635*y^2 - 0.551*x - 3.222*y + 0.432
endfunction
x = [1.02; 0.95; 0.87; 0.77; 0.67; 0.56; 0.44; 0.30; 0.16; 0.01]
y = [0.39; 0.32; 0.27; 0.22; 0.18; 0.15; 0.13; 0.12; 0.13; 0.15]
xset("wdim",400,400);
xset("fpf"," ");
square(-1,0,1.5,1.2);
data = linspace(-2, 2, 512);
contour2d(data, data, fun, [0,0], style=color("red"), axesflag=1);
plot2d(x, y, -1, leg="Data")
|
065c65bc741c1b71790e9ef6e5805d663b6acdee
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1628/CH10/EX10.5/Ex10_5.sce
|
4b761cb5a50736de20af03a44ea33f655a9d2ec5
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 394 |
sce
|
Ex10_5.sce
|
// Example 10.5
/// Given Z=R+iXl; i.e Z= 10+i10
R=10; // Resistance
Xl=10; // Inductance
f=50; // Frequency
L=Xl/(2*%pi*f); // Value of Inductor
disp(' The Value of Resistor is = '+string(R)+' Ohm');
disp(' The Value of Inductor is = '+string(L)+' H');
// p 348 10.5
|
1c6a9d801d3728726d9fe7391d12836643c80c94
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1364/CH8/EX8.5.2/8_5_2.sce
|
734a05680d26beb3ab021053279351d390c5ad29
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 332 |
sce
|
8_5_2.sce
|
clc
//initialisation of variables
s= 0.9
v= 5 //ft/sec
l= 10 //ft
di= 0.5 //in
n= 100
u= 0.002 //lbfsec/ft^2
w= 62.3 //lbf/ft^3
g= 32.2 //ft/sec^2
//CALCULATIONS
dp= 8*u*v*l/(di/2)^2
hf= dp*144/(s*w)
hk= v^2/(2*g)
ht=hf+hk
P= s*w*n*v*%pi*ht*di^2/(144*4*550)
//RESULTS
printf (' horse-power required = %.1f h.p',P)
|
824e614e6f595400ca1429b982864e7de37616aa
|
e657bbadea88191ece0e48eb447173a4c5f816f6
|
/tasks/cw5/drapieznikOfiara.sci
|
a37bc690f15c85dd0e22edba5652e238cc1a0fde
|
[] |
no_license
|
vainia/Learning-SCILAB
|
c37d6071907ea4fad811071a3164454a927602d8
|
d77877b1316b8b3546cb32cb9e29e7ad70d25280
|
refs/heads/master
| 2020-03-10T09:51:08.444686 | 2018-04-12T23:13:06 | 2018-04-12T23:13:06 | 129,320,183 | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 538 |
sci
|
drapieznikOfiara.sci
|
//oznaczenia:
//y(1) <--> Zajace
//y(2) <--> Rysie
function [prawa_strona] = F(t,y)
prawa_strona(1)= a*y(1)-b*y(1)*y(2)
prawa_strona(2)= c*y(1)*y(2)-d*y(2)
endfunction
//Wartosci poczatkowe
Z0=100; //poczatkowa liczba zajacy
R0=10; //poczatkowa liczba rysi
//Parametry
a=0.1;
b=0.01;
c=0.002;
d=0.05;
//Czas
t0=0;
tk=300;
t=linspace(0,tk,300);
//Rozwiazanie
Y0=[Z0; R0];
Y=ode(Y0,t0,t,F);
//Wykresy
clf
subplot(211)
plot2d(t,[Y(1,:)'Y(2,:)'],style=[1,2]);
xtitle('Ivan Napolskykh 15948','czas t [s]','wysokość y(t) [m]')
|
a29b492edbd33b10eec0633ae2ab3d642854457d
|
a5f0fbcba032f945a9ee629716f6487647cafd5f
|
/Development/Algorithms/Linear Regression/Linear Regression.sci
|
77ffd437cb5fcc8193c34a5a316821212c55fabf
|
[] |
no_license
|
SoumitraAgarwal/Scilab-gsoc
|
692c00e3fb7a5faf65082e6c23765620f4ecdf35
|
678e8f80c8a03ef0b9f4c1173bdda7f3e16d716f
|
refs/heads/master
| 2021-04-15T17:55:48.334164 | 2018-08-07T13:43:26 | 2018-08-07T13:43:26 | 126,500,126 | 1 | 1 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 635 |
sci
|
Linear Regression.sci
|
// Macro script for linear regression -- Scilab
// Function to get coefficients for a line fit to features x given target y
function [a,b] = linearRegressionTrain(x,y)
// Extracting the least square mean of that function and displaying
[a, b] = nanreglin(x, y);
endfunction
// Function to predict the target for some feature set x and coefficients [a,b]
function pred = linearRegressionPredict(x, a, b)
pred = a*x + b;
endfunction
function pred = linearRegressionPredictPlot(x, a, b)
pred = a*x + b;
// Create plot for features and prediction
scatter(x, y, 1, "red", 'x')
scatter(x, pred, "blue", "fill")
endfunction
|
dbba62e8fe606de1be9bd88a82234d2f22cc3678
|
8217f7986187902617ad1bf89cb789618a90dd0a
|
/browsable_source/2.5/Unix-Windows/scilab-2.5/tests/examples/gcd.man.tst
|
5156d297e3321025862bc2ffbe237d9e0e4dbcb8
|
[
"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 | 79 |
tst
|
gcd.man.tst
|
clear;lines(0);
s=poly(0,'s');
p=[s,s*(s+1)^2,2*s^2+s^3];
[pgcd,u]=gcd(p);
p*u
|
a1491b31a616acf844833b6fbcd8900c430b9a1d
|
9d0b35317cf9c6572724be7e2da4949f71a200bc
|
/Mínimos cuadrados.sce
|
82f973f3edba21d78a3d672fee141ed45905f7d3
|
[] |
no_license
|
stephany-rivera/Metodos-numericos
|
ef225f7b8f134c673a245a400454e14f01b0a71d
|
17961c6a2b5cffea57e5a7f4f4d3d2abc336b9cf
|
refs/heads/master
| 2022-12-18T16:34:39.143127 | 2020-09-27T05:27:57 | 2020-09-27T05:27:57 | 298,887,971 | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 8,070 |
sce
|
Mínimos cuadrados.sce
|
// This GUI file is generated by guibuilder version 4.2.1
//////////
f=figure('figure_position',[324,17],'figure_size',[965,700],'auto_resize','on','background',[33],'figure_name','Graphic window number %d','dockable','off','infobar_visible','off','toolbar_visible','off','menubar_visible','off','default_axes','on','visible','off');
//////////
handles.dummy = 0;
handles.txt_titulo=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Times new Roman','FontSize',[25],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.0212658,0.9412121,0.94,0.0515152],'Relief','default','SliderStep',[0.01,0.1],'String','Aproximación discreta por mínimos cuadrados','Style','text','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','txt_titulo','Callback','')
handles.txt_x=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Times new roman','FontSize',[14],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.0437131,0.8590909,0.1360759,0.0424242],'Relief','default','SliderStep',[0.01,0.1],'String','Puntos X:','Style','text','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','txt_x','Callback','')
handles.txt_y=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Times new roman','FontSize',[14],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.0437131,0.8025252,0.1360759,0.0424242],'Relief','default','SliderStep',[0.01,0.1],'String','Puntos Y:','Style','text','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','txt_y','Callback','')
handles.input_x=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Tahoma','FontSize',[12],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','left','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.1940506,0.8566667,0.2267932,0.0493939],'Relief','default','SliderStep',[0.01,0.1],'String','','Style','edit','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','input_x','Callback','')
handles.input_y=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Tahoma','FontSize',[12],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','left','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.1940506,0.8021212,0.2267932,0.0493939],'Relief','default','SliderStep',[0.01,0.1],'String','','Style','edit','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','input_y','Callback','')
handles.button=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Times new roman','FontSize',[14],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.4483122,0.7821212,0.1751055,0.0787879],'Relief','default','SliderStep',[0.01,0.1],'String','Solucionar','Style','pushbutton','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','button','Callback','button_callback(handles)')
handles.borde= newaxes();handles.borde.margins = [ 0 0 0 0];handles.borde.axes_bounds = [0.0258228,0.0860606,0.6329114,0.1893939];
handles.txt_nombre=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Times new roman','FontSize',[14],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.7484389,0.8560606,0.17827,0.0454545],'Relief','default','SliderStep',[0.01,0.1],'String','Stephany Rivera','Style','text','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','txt_nombre','Callback','')
handles.txt_codigo=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Times new roman','FontSize',[14],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.7516034,0.8060606,0.1719409,0.0454545],'Relief','default','SliderStep',[0.01,0.1],'String','1765591-3743','Style','text','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','txt_codigo','Callback','')
handles.txt_proyecto=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Times new roman','FontSize',[14],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.7315612,0.7560606,0.2120253,0.0454545],'Relief','default','SliderStep',[0.01,0.1],'String','Proyecto Métodos Númericos','Style','text','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','txt_proyecto','Callback','')
handles.borde3= newaxes();handles.borde3.margins = [ 0 0 0 0];handles.borde3.axes_bounds = [0.6877637,0.0854545,0.2795359,0.1912121];
handles.borde4= newaxes();handles.borde4.margins = [ 0 0 0 0];handles.borde4.axes_bounds = [0.0242616,0.2954545,0.9420253,0.6633333];
f.visible = "on";
//////////
// Callbacks are defined as below. Please do not delete the comments as it will be used in coming version
//////////
function button_callback(handles)
minimos_cuadrados();
endfunction
function minimos_cuadrados()
/*
x=1 2 3 4 5
Y=3 5 7 9 11
*/
/*
x=0 1 2 3 4 5 6 7 7.44
y=0 4.03 8.12 14.23 20.33 27.1 34.53 42.63 46.43
*/
x=evstr(handles.input_x.string);
y=evstr(handles.input_y.string);
xgrid(5);
plot(x,y,'*')
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
//////lineal y=ax+b
coeficientes=polyfit(x,y,1);
xp=linspace(min(x)-1,max(x)+1,50);
yp=polyval(coeficientes,xp);
// set(gca(),"auto_clear","off")
plot(xp,yp)
b= coeficientes(length(coeficientes):-1:1);
ecuacion_generada=poly(b,"x","coeff");
disp("/////////////ecuación y=Ax+b/////////")
disp(ecuacion_generada);
disp("//////////////////////////////////")
////// calcular el error
fxi=polyval(coeficientes,x);
error=sum((fxi-y)^2)
disp("/////////////error y=Ax+b/////////")
disp(error);
disp("//////////////////////////////////")
////////polinomio cuadratico
coeficientesc=polyfit(x,y,2);
yc=polyval(coeficientesc,xp);
plot(xp,yc)
bc= coeficientesc(length(coeficientesc):-1:1);
ecuacion_generadac=poly(bc,"x","coeff");
disp("/////////////polinomial grado 2 f(x) = ax2 + bx + c/////////")
disp(ecuacion_generadac);
disp("//////////////////////////////////")
////// calcular el error polinomial
fxic=polyval(coeficientesc,x);
errorc=sum((fxic-y)^2)
disp("/////////////error f(x) = ax2 + bx + c/////////")
disp(errorc);
disp("//////////////////////////////////")
endfunction
function rb_lineal_callback(handles)
//Write your callback for rb_lineal here
endfunction
|
9ccdc9cadf22afdffdef0cda19b22074047d81e2
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3878/CH21/EX21.6/Ex21_6.sce
|
ca8b71e2569adcf7af8acb5bbd419d88851ae778
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 633 |
sce
|
Ex21_6.sce
|
clear
// Variable declaration
T_d1=23// The dry bulb temperature in °C
T_w=5// The temperature of water in °C
H=50// % saturation
n_s=0.7// Saturation efficiency in %
x_a=0.0089// Moisture content in kg/kg
x_b=0.0054// Moisture content in kg/kg
// Calculation
//(a)
printf("\n (a) By construction on the chart ( Figure 21.7 ), the final condition is 10.4°C dry bulb,82 percents saturation")
//(b)
T_d2=T_d1-(n_s*(T_d1-T_w))// The final dry bulb temperature in °C
x_f=x_a-(n_s*(x_a-x_b))// kg/kg
printf("\n \n(b)The final condition,\n The final dry bulb temperature=%2.1f°C \n The moisture content=%0.5f kg/kg",T_d2,x_f)
|
e902777079db4f4f394b3bb1ab911b43d261b571
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/42/CH3/EX3.2/sadiku_3_2.sce
|
018d0aec3168bca3acd1be742dbfe3ac2d6f00c5
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 167 |
sce
|
sadiku_3_2.sce
|
clear;
clc;
C1=integrate('x^2','x',1,0);//for y=0=z
C2=0;// as (az.ay)=0
C3=integrate('x^2 -1','x',0,1);
C4=integrate('-y-y^2','y',1,0);
C=C1+C2+C3+C4;
disp(C);
|
0733ca8524c9c693c23d808b3dfec47ddbf05b74
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2660/CH4/EX4.15/Ex4_15.sce
|
3ae4b8d7e0f454feb276c063d6a04ff2ecba304e
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 318 |
sce
|
Ex4_15.sce
|
clc
k = 1/4 // return time to cutting ratio
l = 900 + 2*75 // length of stroke in mm
v = 6 // cutting stroke in m/min
f = 2 // feed mm/stroke
w = 600 // breadth in mm
N = (v*1000)/(l*1.25) // r.p.m
N = round(N)
time = w/(f*N) // min
printf("\n Time required for shaper to complete one cut = %d min" ,time )
|
70b87b77be106b4a96e1d936e912c54326ee9285
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2132/CH6/EX6.3/Example6_3.sce
|
6eded94b9153afef3b87b30aa6b13214a1604908
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 181 |
sce
|
Example6_3.sce
|
//Example 6.3
clc;
clear;
close;
format('v',5);
//Given data :
g=9.81;//constant
h=102;//mm
H=105;//mm
Cv=sqrt(2*g*h)/sqrt(2*g*H);
disp(Cv,"Coefficient of velocity : ");
|
cb5c0be1fc9bb6124172b2f108f6fbf4ae459f4f
|
089894a36ef33cb3d0f697541716c9b6cd8dcc43
|
/NLP_Project/test/blog/ngram/5.15_5.tst
|
b67f8d60da31e0aa3162365b1c2941cfa164c80e
|
[] |
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 | 494,984 |
tst
|
5.15_5.tst
|
15 189:1 1656:1 2462:1 3091:1 3238:1 3411:1 3671:1 5001:1 5767:1 6310:1 7071:1 7152:1 7527:1 7679:1 7884:1 8414:1 8689:2 9157:1 9208:2 10572:2 11298:1 11921:1 12509:1 12705:1 12822:1 12843:1 12933:1 14472:1 15135:2 16777:1 16916:1 17054:1 17061:1 17102:1 17117:1 17787:1 18156:1 18334:1 18931:1 19469:1 19489:1 20402:1 20757:84 21262:1 22320:1 22872:1 22894:1 23958:1 25059:1 25485:1 25668:1 25770:1 25803:1 26211:2 26256:1 26813:1 26861:1 27803:1 28781:1 28827:1 30564:2 30590:1 30896:1 31449:1 31606:1 32267:1
15 189:1 406:1 612:1 963:1 968:1 1149:1 1167:1 1385:1 1500:1 1656:1 1733:1 2177:1 2462:1 2495:1 2509:1 2525:1 2678:1 3091:1 3161:1 3238:1 3411:1 3483:1 3671:1 4066:1 4083:1 4260:1 4537:1 4665:1 5001:1 5247:1 5521:1 5697:1 5767:1 5980:1 6310:1 6423:1 6594:1 6850:1 7071:1 7152:1 7168:1 7527:1 7679:1 7884:1 8047:1 8414:1 8459:1 8609:1 8620:2 8641:1 8689:2 9157:2 9208:2 10572:2 10753:1 10931:1 10954:1 11298:1 11403:1 11717:1 11850:1 11921:1 12043:1 12442:1 12509:1 12570:2 12705:1 12822:1 12843:1 12933:1 12965:1 13092:1 13121:1 13265:1 13434:1 13502:1 13575:1 14472:1 14584:1 15135:2 15401:1 15663:1 15817:1 16777:1 16916:1 17054:1 17061:1 17102:1 17116:1 17117:1 17716:1 17787:1 18152:1 18156:1 18164:1 18334:1 18573:1 18931:1 19040:1 19234:1 19469:1 19489:1 20152:1 20402:1 20480:1 20757:166 20781:1 20875:1 20963:1 21262:1 21551:1 21988:1 22320:1 22872:1 22894:1 23438:1 23478:1 23600:1 23746:1 23958:1 24322:1 25059:1 25121:1 25485:1 25559:1 25668:1 25718:2 25770:1 25803:1 26018:1 26211:2 26256:1 26460:1 26813:1 26861:1 27328:1 27628:1 27803:1 28374:1 28526:1 28604:1 28720:2 28766:1 28781:1 28792:1 28827:1 29049:1 29899:1 30044:1 30269:1 30564:2 30590:1 30879:1 30896:1 31449:1 31606:1 32267:1 32333:1
15 189:1 370:1 406:1 541:1 612:1 655:1 963:1 968:1 1149:1 1167:1 1367:1 1385:1 1500:1 1656:1 1733:2 1948:1 2171:1 2177:1 2462:1 2495:1 2509:1 2524:1 2525:1 2678:1 3091:1 3161:1 3238:1 3247:1 3411:1 3483:1 3671:1 3964:1 4066:1 4083:1 4252:1 4260:1 4537:1 4665:1 4685:1 4938:1 5001:1 5026:1 5186:1 5247:1 5521:1 5697:1 5767:1 5823:1 5980:1 5983:1 5998:1 6171:1 6310:1 6423:1 6594:1 6825:1 6831:1 6850:1 7071:1 7129:1 7152:1 7168:1 7231:2 7330:1 7338:1 7527:1 7679:1 7884:1 7979:1 8047:1 8137:1 8414:1 8459:1 8609:1 8620:3 8641:1 8689:2 8707:1 9088:1 9157:2 9208:2 9253:1 9406:1 9769:1 9950:1 10357:1 10362:1 10572:2 10753:1 10771:1 10931:1 10954:1 11298:1 11403:1 11554:1 11608:1 11701:1 11717:1 11850:1 11921:1 12043:1 12230:1 12312:1 12420:1 12442:1 12509:1 12570:2 12705:1 12822:1 12843:1 12933:1 12965:1 13092:1 13121:1 13265:1 13297:1 13434:1 13502:1 13575:1 13581:1 13834:1 14122:1 14472:1 14584:1 14632:1 15048:1 15075:1 15135:2 15139:1 15218:1 15401:1 15663:1 15817:1 15948:1 16209:1 16480:1 16528:1 16777:1 16849:1 16916:1 16917:1 16940:1 17054:1 17061:1 17102:1 17116:1 17117:1 17513:1 17716:1 17787:1 17879:1 17993:1 18152:1 18156:1 18164:1 18334:1 18509:1 18573:1 18774:1 18931:1 19040:1 19234:1 19290:1 19469:1 19489:1 20152:1 20230:1 20402:1 20480:1 20605:1 20757:247 20781:1 20875:1 20963:1 21262:1 21266:1 21551:1 21710:1 21988:1 22251:1 22299:1 22320:1 22361:1 22655:1 22819:1 22872:1 22894:1 23202:1 23322:1 23438:1 23478:1 23600:1 23746:1 23907:1 23958:1 23973:1 24174:1 24322:1 24333:1 25059:1 25121:1 25485:1 25559:1 25668:1 25718:2 25770:1 25803:1 26018:1 26211:2 26256:1 26460:1 26813:1 26861:1 26921:1 27328:1 27628:1 27689:1 27803:1 28019:1 28061:1 28072:1 28374:1 28526:1 28581:1 28604:1 28720:2 28766:1 28781:1 28792:1 28827:1 29049:1 29115:1 29463:1 29600:1 29899:1 29947:1 30007:1 30044:1 30269:1 30564:2 30590:1 30879:1 30896:1 31449:1 31567:1 31606:1 32267:1 32333:1
15 104:1 189:1 370:1 406:1 529:1 541:1 612:1 655:1 963:1 968:1 1149:1 1167:1 1367:1 1385:1 1500:1 1656:1 1686:1 1733:2 1948:1 2171:1 2177:1 2462:1 2495:1 2509:1 2516:1 2524:1 2525:1 2607:1 2677:1 2678:1 2991:1 3091:1 3109:1 3161:1 3238:1 3247:1 3411:1 3483:1 3671:1 3964:1 4006:1 4066:1 4083:1 4252:1 4260:1 4537:1 4665:1 4685:1 4938:1 5001:1 5026:1 5074:1 5186:1 5247:1 5382:1 5521:1 5529:1 5548:1 5697:1 5767:1 5805:1 5823:1 5980:1 5983:1 5998:1 6171:1 6310:1 6423:1 6594:1 6725:1 6775:1 6825:1 6831:1 6850:1 7071:1 7129:1 7152:1 7168:2 7231:2 7330:1 7338:1 7527:1 7679:1 7884:1 7979:1 8047:1 8137:1 8262:2 8414:1 8459:1 8551:2 8609:1 8620:4 8641:1 8689:2 8707:1 8833:1 8855:1 9088:1 9157:2 9208:2 9253:1 9406:1 9499:1 9769:1 9950:1 10114:1 10357:1 10362:1 10365:1 10572:2 10753:1 10771:1 10931:1 10954:1 11298:1 11403:1 11554:1 11608:1 11701:1 11717:1 11850:1 11888:1 11921:1 12035:1 12043:2 12230:1 12312:1 12420:1 12442:1 12509:1 12570:2 12705:1 12822:1 12843:1 12922:1 12933:1 12965:1 13092:1 13121:1 13173:1 13186:1 13265:2 13297:1 13434:1 13502:1 13575:1 13581:1 13834:1 14122:1 14243:1 14291:1 14472:1 14584:1 14623:1 14632:1 14992:1 15048:1 15075:1 15135:2 15139:1 15183:1 15218:1 15401:1 15663:1 15817:1 15948:1 16209:1 16277:1 16426:1 16480:1 16528:1 16777:1 16849:1 16916:1 16917:1 16940:1 17054:1 17061:1 17102:1 17116:1 17117:1 17513:1 17716:2 17770:1 17772:1 17787:1 17879:1 17993:1 18152:1 18156:1 18164:1 18334:1 18509:1 18573:1 18624:1 18753:1 18774:1 18920:1 18931:1 18937:1 19040:1 19041:1 19234:1 19290:1 19469:1 19489:1 19678:1 19884:1 20152:1 20230:1 20402:1 20480:1 20605:1 20757:314 20781:1 20875:1 20963:1 21109:1 21262:1 21266:1 21551:1 21649:1 21710:1 21878:1 21988:1 22251:1 22277:1 22299:1 22320:1 22361:1 22655:1 22819:1 22872:1 22894:1 23202:1 23213:1 23322:1 23438:1 23473:1 23478:1 23600:1 23704:1 23746:1 23907:1 23958:1 23973:1 24174:1 24322:1 24333:1 24384:1 24475:1 25059:1 25121:1 25364:1 25485:1 25559:1 25668:1 25718:2 25770:1 25803:1 25811:1 26018:1 26211:2 26256:1 26460:1 26813:1 26861:1 26921:1 27000:1 27093:1 27328:2 27628:1 27689:1 27803:1 27874:1 27878:1 28019:1 28061:1 28072:1 28108:1 28374:1 28526:1 28538:1 28581:1 28604:1 28720:2 28766:1 28781:1 28792:1 28827:2 29049:1 29115:1 29463:1 29600:1 29899:1 29947:1 30007:1 30016:1 30044:1 30169:1 30269:1 30564:2 30590:1 30799:1 30879:1 30896:1 31057:2 31126:1 31335:1 31449:1 31567:1 31606:1 31950:1 32267:1 32333:1
15 71:1 104:1 189:1 285:3 370:1 406:1 529:1 541:1 612:1 655:1 928:1 963:1 968:1 1119:1 1149:1 1167:1 1367:1 1385:1 1407:1 1500:1 1642:1 1656:1 1686:1 1733:2 1810:2 1897:1 1948:1 2042:1 2171:1 2177:1 2386:1 2462:1 2495:1 2509:1 2516:1 2524:1 2525:1 2561:1 2607:1 2677:1 2678:1 2814:1 2991:1 3091:1 3109:1 3155:1 3161:1 3238:1 3247:1 3411:1 3483:1 3671:1 3964:1 4002:1 4006:1 4066:1 4083:1 4252:1 4260:1 4537:1 4665:1 4685:1 4938:1 5001:1 5026:1 5035:1 5074:1 5186:1 5247:1 5382:1 5520:1 5521:1 5529:1 5541:1 5548:1 5697:1 5767:1 5805:1 5823:1 5980:1 5983:1 5998:1 6171:1 6310:1 6333:1 6395:1 6423:1 6594:1 6725:1 6775:1 6825:1 6831:1 6850:1 6955:1 7066:1 7071:1 7129:1 7152:1 7165:1 7168:2 7231:2 7330:1 7331:1 7338:1 7456:1 7527:1 7679:1 7785:1 7884:2 7979:1 8047:1 8137:1 8262:2 8329:1 8335:1 8344:1 8414:1 8459:1 8461:1 8551:2 8569:1 8609:1 8620:4 8641:1 8689:2 8707:1 8833:1 8855:1 9088:1 9157:2 9208:2 9253:1 9397:1 9406:1 9499:1 9610:1 9719:1 9769:1 9950:1 9992:1 10114:1 10357:1 10362:1 10365:1 10472:1 10572:2 10656:1 10753:1 10771:1 10931:2 10954:1 11020:1 11298:1 11403:1 11554:1 11608:1 11701:1 11717:1 11737:1 11769:1 11810:1 11850:2 11888:1 11921:1 12035:1 12043:2 12230:1 12312:1 12420:1 12442:1 12509:1 12570:2 12632:1 12705:1 12744:1 12776:1 12822:1 12843:1 12922:1 12933:1 12965:1 13092:1 13121:1 13173:1 13186:1 13265:2 13297:1 13434:1 13502:1 13575:1 13581:1 13834:1 14011:1 14122:1 14243:1 14291:1 14329:1 14371:1 14472:1 14584:1 14623:1 14632:1 14841:1 14872:1 14978:1 14992:1 15048:1 15075:1 15135:2 15139:1 15183:1 15218:1 15401:1 15663:1 15674:1 15817:1 15948:1 16011:1 16209:1 16277:1 16371:1 16426:1 16480:1 16528:1 16548:3 16777:1 16849:1 16870:1 16916:1 16917:1 16940:1 17054:1 17061:1 17091:1 17102:1 17116:1 17117:1 17388:1 17513:1 17538:1 17624:3 17716:2 17717:1 17770:1 17772:1 17787:1 17804:3 17879:1 17921:1 17993:1 18152:1 18156:1 18164:1 18334:1 18355:1 18509:1 18573:1 18582:1 18624:1 18634:1 18678:1 18753:1 18774:1 18920:1 18931:1 18937:1 19040:1 19041:1 19234:1 19290:1 19469:1 19485:1 19489:1 19678:1 19884:1 19980:1 20074:1 20152:1 20230:1 20318:1 20402:1 20480:1 20605:1 20757:432 20781:1 20875:1 20963:1 21109:1 21262:1 21266:1 21330:1 21423:1 21551:1 21649:1 21710:1 21878:1 21988:1 22042:1 22251:1 22277:1 22278:1 22299:1 22320:1 22361:1 22655:1 22722:1 22819:1 22848:1 22872:1 22894:2 23175:1 23202:1 23213:1 23322:1 23438:1 23473:1 23478:1 23600:1 23704:1 23746:1 23907:1 23938:1 23958:1 23973:1 24162:1 24174:1 24322:1 24333:1 24384:1 24475:1 24507:1 24776:1 24793:1 24898:1 25059:1 25121:1 25364:1 25485:1 25559:1 25668:1 25718:2 25770:1 25803:1 25811:1 25862:1 25896:1 26018:1 26166:1 26211:2 26256:1 26435:1 26460:1 26716:1 26813:1 26861:1 26921:1 27000:1 27075:1 27093:1 27328:2 27563:1 27628:1 27689:1 27803:1 27874:1 27878:1 27992:1 28019:1 28061:1 28072:1 28108:1 28208:1 28262:1 28374:1 28526:1 28538:1 28581:1 28604:1 28620:1 28720:2 28766:1 28781:1 28792:1 28827:2 29049:1 29059:1 29115:1 29356:1 29455:1 29463:1 29600:1 29740:1 29770:1 29899:1 29947:1 30007:1 30016:1 30044:1 30169:1 30210:1 30269:1 30345:1 30355:1 30488:1 30564:2 30590:1 30799:1 30836:1 30879:2 30896:1 31017:1 31057:2 31126:1 31335:1 31379:1 31449:1 31567:1 31606:1 31950:1 32217:1 32244:1 32267:1 32333:1 32337:1 32378:1
15 71:1 104:1 189:1 267:1 285:3 370:1 406:1 529:1 541:1 586:1 612:1 655:1 928:1 963:1 968:1 1119:1 1149:1 1167:1 1367:1 1385:1 1407:1 1500:1 1592:1 1642:1 1656:1 1686:1 1733:2 1810:2 1897:1 1948:1 2042:1 2171:1 2177:1 2359:1 2386:1 2462:1 2495:1 2509:1 2516:1 2524:1 2525:1 2561:1 2607:1 2677:1 2678:1 2707:1 2814:1 2991:1 3091:1 3109:1 3155:1 3161:1 3238:1 3247:1 3411:1 3483:1 3671:1 3964:1 4002:1 4006:1 4055:1 4066:1 4083:1 4183:1 4252:1 4260:1 4537:1 4665:1 4685:1 4880:1 4938:1 4954:1 5001:1 5026:1 5035:1 5074:1 5186:1 5247:1 5382:1 5520:1 5521:1 5529:1 5541:1 5548:1 5578:1 5697:1 5767:1 5805:1 5823:1 5980:1 5983:1 5998:1 6051:1 6171:1 6218:1 6232:1 6287:1 6310:1 6333:1 6395:1 6423:1 6488:1 6594:1 6725:1 6775:1 6825:1 6831:1 6850:1 6955:1 7066:1 7071:1 7119:1 7129:1 7152:1 7165:1 7168:2 7231:2 7330:1 7331:1 7338:1 7456:1 7527:1 7679:1 7785:1 7884:2 7979:1 8047:1 8099:1 8137:1 8262:2 8329:1 8335:1 8344:1 8414:1 8459:1 8461:1 8551:2 8569:1 8609:1 8620:4 8641:1 8689:2 8707:1 8833:1 8855:1 9088:1 9157:2 9208:2 9253:1 9397:1 9406:1 9499:1 9534:1 9610:1 9719:1 9769:1 9853:1 9950:1 9992:1 10114:1 10357:1 10362:1 10365:1 10472:1 10572:2 10656:1 10753:1 10771:1 10931:2 10947:1 10954:1 11020:1 11298:1 11403:1 11554:1 11608:1 11701:1 11717:1 11737:1 11769:1 11808:1 11810:1 11850:2 11888:1 11921:1 11926:1 12035:1 12043:2 12149:1 12230:1 12312:1 12420:1 12442:1 12509:1 12570:2 12632:1 12705:1 12744:1 12776:1 12822:1 12843:1 12922:1 12933:1 12965:1 13092:1 13121:1 13173:1 13186:1 13265:2 13297:1 13434:1 13502:1 13575:1 13581:1 13834:1 13901:1 14011:1 14122:1 14198:1 14206:1 14243:1 14291:1 14329:1 14371:1 14472:1 14584:1 14623:1 14632:1 14841:1 14872:1 14978:1 14992:1 15048:1 15075:1 15135:2 15139:1 15183:1 15218:1 15401:1 15663:1 15674:1 15817:1 15948:1 16011:1 16209:1 16277:1 16371:1 16426:1 16480:1 16528:1 16548:3 16777:1 16849:1 16870:1 16916:1 16917:1 16940:1 17054:1 17061:1 17091:1 17102:1 17116:1 17117:1 17388:1 17513:1 17538:1 17624:3 17716:2 17717:1 17770:1 17772:1 17787:1 17804:3 17879:1 17921:1 17993:1 18152:1 18156:1 18164:1 18334:1 18355:1 18509:1 18573:1 18582:1 18624:1 18634:1 18678:1 18753:1 18774:1 18920:1 18931:1 18937:1 19040:1 19041:1 19060:1 19097:1 19234:1 19290:1 19469:1 19485:1 19489:1 19678:1 19884:1 19980:1 20074:1 20152:1 20230:1 20318:1 20402:1 20480:1 20605:1 20757:463 20781:1 20875:1 20963:1 21000:1 21109:1 21262:1 21266:1 21330:1 21423:1 21551:1 21617:1 21649:1 21710:1 21878:1 21988:1 22042:1 22043:1 22251:1 22277:1 22278:1 22299:1 22320:1 22361:1 22655:1 22722:1 22819:1 22848:1 22872:1 22894:2 23157:1 23175:1 23202:1 23213:1 23322:1 23438:1 23473:1 23478:1 23600:1 23704:1 23746:1 23907:1 23938:1 23958:1 23973:1 24162:1 24174:1 24280:1 24322:1 24333:1 24384:1 24475:1 24507:1 24524:1 24776:1 24793:1 24898:1 25059:1 25121:1 25364:1 25485:1 25504:1 25559:1 25607:1 25668:1 25718:2 25770:1 25803:1 25811:1 25862:1 25896:1 25898:1 26018:1 26166:1 26211:2 26256:1 26435:1 26460:1 26716:1 26813:1 26861:1 26921:1 27000:1 27075:1 27093:1 27246:1 27328:2 27563:1 27628:1 27689:1 27803:1 27874:1 27878:1 27992:1 28019:1 28061:1 28072:1 28108:1 28208:1 28262:1 28374:1 28526:1 28538:1 28551:1 28581:1 28604:1 28620:1 28720:2 28766:1 28781:1 28792:1 28827:2 29049:1 29059:1 29115:1 29141:1 29356:1 29455:1 29463:1 29600:1 29740:1 29770:1 29899:1 29947:1 29993:1 30007:1 30016:1 30044:1 30169:1 30203:1 30210:1 30269:1 30345:1 30355:1 30488:1 30564:2 30590:1 30799:1 30836:1 30879:2 30896:1 31017:1 31020:1 31057:2 31126:1 31335:1 31379:1 31449:1 31567:1 31606:1 31659:1 31950:1 32217:1 32244:1 32267:1 32333:1 32337:1 32343:1 32378:1
15 71:1 104:1 189:1 267:1 285:3 370:1 406:1 529:1 541:1 586:1 612:1 645:1 655:1 699:1 928:1 963:1 968:1 1020:1 1119:1 1149:1 1167:1 1367:1 1385:1 1407:1 1500:1 1592:2 1642:1 1656:1 1686:1 1733:2 1810:2 1843:1 1897:1 1948:1 2042:1 2171:1 2177:1 2201:1 2359:1 2386:1 2462:1 2495:1 2503:1 2509:1 2516:1 2524:1 2525:1 2561:1 2607:1 2677:1 2678:1 2707:1 2814:1 2991:1 3091:1 3109:1 3155:1 3161:1 3169:1 3238:1 3247:1 3411:1 3483:1 3646:1 3671:1 3735:1 3964:1 4002:1 4006:1 4055:1 4066:1 4083:1 4183:1 4252:1 4260:1 4537:1 4563:1 4665:1 4685:1 4880:1 4938:1 4954:1 5001:1 5026:2 5035:1 5074:1 5178:1 5186:1 5247:1 5327:1 5382:1 5520:1 5521:1 5529:1 5535:1 5541:1 5548:1 5578:1 5697:1 5767:1 5805:1 5823:1 5980:1 5983:1 5998:1 6051:1 6171:1 6218:1 6232:1 6287:1 6310:1 6333:1 6390:1 6395:1 6423:1 6488:1 6594:1 6725:1 6775:1 6825:2 6831:1 6850:1 6955:1 7060:1 7066:1 7071:1 7119:1 7129:1 7152:1 7165:1 7168:2 7220:1 7231:2 7330:1 7331:2 7338:1 7456:1 7527:1 7679:1 7785:1 7811:1 7884:2 7923:1 7979:1 8047:1 8099:1 8137:1 8262:2 8288:1 8329:1 8335:1 8344:1 8414:1 8459:1 8461:1 8551:2 8569:1 8609:1 8620:5 8641:1 8689:2 8707:1 8833:1 8855:1 9082:1 9088:1 9157:2 9207:1 9208:2 9253:1 9397:1 9406:1 9499:1 9534:1 9610:1 9719:1 9769:1 9824:1 9853:1 9950:1 9992:2 10114:1 10357:1 10362:1 10365:1 10472:1 10572:2 10656:1 10753:1 10771:1 10931:2 10947:1 10954:1 11020:1 11298:1 11403:1 11423:1 11554:1 11608:1 11701:1 11717:1 11737:1 11769:1 11808:1 11810:1 11850:2 11888:1 11921:1 11926:2 12035:1 12043:2 12149:1 12230:1 12312:1 12420:1 12442:1 12496:1 12509:1 12570:2 12632:1 12705:1 12744:1 12776:1 12822:1 12843:1 12865:1 12922:1 12933:1 12965:1 13092:1 13121:1 13173:1 13186:1 13265:2 13297:1 13351:1 13434:1 13502:1 13575:1 13581:1 13698:1 13728:1 13834:1 13901:1 14011:1 14045:1 14122:1 14198:1 14206:1 14243:1 14291:1 14329:2 14371:1 14472:1 14584:1 14623:1 14632:1 14821:1 14841:1 14872:1 14976:1 14978:2 14992:1 14994:1 15048:1 15075:2 15135:2 15139:1 15183:1 15218:1 15401:1 15489:1 15663:1 15674:1 15817:1 15899:1 15948:1 16011:1 16209:1 16277:1 16371:1 16426:1 16480:1 16528:1 16548:3 16760:1 16777:1 16849:1 16870:1 16916:1 16917:1 16940:1 17054:1 17061:1 17091:1 17102:1 17116:1 17117:1 17297:1 17388:1 17513:1 17538:1 17624:3 17716:2 17717:1 17770:1 17772:1 17787:1 17804:3 17879:2 17921:1 17993:1 18152:1 18156:1 18164:1 18334:1 18355:1 18509:1 18573:1 18582:1 18624:1 18634:1 18678:1 18753:1 18774:1 18829:1 18880:1 18920:1 18931:1 18937:1 19040:1 19041:1 19060:1 19097:1 19234:1 19290:1 19469:1 19485:1 19489:1 19678:1 19884:1 19980:1 20074:1 20152:1 20230:1 20318:1 20402:1 20480:1 20605:1 20613:1 20757:514 20781:1 20875:1 20963:1 20999:1 21000:1 21109:1 21262:1 21266:1 21330:1 21423:1 21472:1 21551:1 21617:1 21643:1 21649:1 21710:1 21737:1 21878:1 21988:1 22042:1 22043:1 22251:1 22277:1 22278:2 22299:1 22320:1 22361:1 22655:1 22712:1 22722:1 22819:1 22824:1 22848:1 22872:1 22894:2 23157:2 23175:1 23198:1 23202:1 23213:1 23291:1 23322:1 23421:1 23427:1 23438:1 23453:1 23454:1 23473:1 23478:1 23600:1 23704:1 23746:1 23907:1 23938:1 23958:1 23973:1 24162:1 24174:1 24280:1 24322:1 24333:1 24355:1 24384:1 24391:1 24475:1 24507:1 24524:1 24776:1 24793:2 24898:1 25059:1 25121:1 25364:1 25485:1 25504:1 25559:1 25607:1 25668:1 25718:2 25770:1 25796:1 25803:1 25811:1 25862:1 25896:1 25898:1 26018:1 26113:1 26166:1 26211:2 26256:1 26339:1 26435:1 26460:1 26716:1 26813:1 26861:1 26921:1 26994:1 26998:1 27000:1 27075:1 27093:1 27213:1 27246:1 27328:2 27457:1 27462:1 27563:1 27600:1 27628:1 27678:1 27689:1 27803:1 27874:1 27878:1 27992:1 28012:1 28019:1 28061:1 28072:1 28108:1 28208:1 28262:1 28374:1 28509:1 28526:1 28538:1 28551:1 28581:1 28604:1 28620:1 28638:1 28720:2 28766:1 28781:1 28792:1 28810:1 28827:2 29049:1 29059:1 29115:1 29141:1 29356:1 29455:1 29463:1 29600:1 29628:1 29647:1 29740:1 29746:1 29770:1 29878:1 29894:1 29899:1 29947:1 29993:1 30007:1 30016:1 30044:1 30169:1 30203:1 30210:1 30269:1 30345:1 30355:1 30488:1 30564:2 30590:1 30799:1 30836:1 30879:2 30896:1 31017:1 31020:1 31057:2 31126:1 31335:1 31379:1 31449:1 31567:1 31593:1 31606:1 31659:1 31950:1 32163:1 32217:1 32244:1 32254:1 32257:1 32267:1 32333:1 32337:1 32343:1 32378:1
15 71:1 104:1 189:1 267:1 285:3 335:1 370:1 406:1 529:1 541:1 586:1 612:1 623:1 645:1 655:1 699:1 928:1 958:1 963:1 968:1 985:1 1020:1 1119:1 1149:1 1167:1 1235:1 1367:1 1385:1 1407:1 1500:1 1577:1 1592:2 1642:1 1656:1 1686:1 1733:2 1749:2 1810:2 1843:1 1897:1 1948:1 2013:1 2042:1 2043:2 2171:1 2177:1 2201:1 2359:1 2386:1 2462:1 2495:1 2503:1 2509:1 2516:1 2524:1 2525:1 2561:1 2607:1 2636:1 2677:1 2678:1 2707:1 2711:1 2814:1 2844:1 2991:1 3091:1 3109:1 3155:1 3161:1 3169:1 3238:1 3247:1 3356:2 3411:1 3483:1 3646:1 3671:1 3735:1 3736:1 3929:1 3964:1 4002:1 4006:1 4055:1 4066:1 4083:1 4183:1 4214:1 4252:1 4260:1 4537:1 4563:1 4609:1 4657:1 4665:1 4685:1 4873:1 4880:1 4938:1 4954:1 5001:1 5026:2 5035:1 5074:1 5178:1 5186:1 5206:1 5242:1 5247:1 5327:1 5382:1 5418:1 5520:1 5521:1 5529:1 5535:1 5541:1 5548:1 5578:1 5690:1 5697:1 5767:1 5774:1 5805:1 5823:1 5843:2 5963:1 5980:1 5983:1 5998:1 6031:1 6051:1 6171:1 6218:1 6232:1 6287:1 6310:1 6333:1 6390:1 6395:1 6423:1 6488:1 6594:1 6725:1 6775:1 6825:2 6831:1 6850:1 6955:1 7060:1 7066:1 7071:1 7119:1 7129:1 7152:1 7165:1 7168:2 7220:1 7231:2 7325:1 7330:1 7331:2 7338:1 7456:1 7489:1 7527:1 7679:1 7785:1 7797:1 7811:1 7824:1 7884:2 7887:2 7923:1 7979:1 8047:1 8099:1 8137:1 8262:2 8288:1 8327:1 8329:1 8335:1 8344:1 8414:1 8459:1 8461:1 8462:1 8551:2 8569:1 8609:1 8620:5 8641:1 8689:2 8707:1 8833:1 8855:1 8975:1 8985:1 9076:1 9082:1 9088:1 9110:1 9157:3 9207:1 9208:2 9253:1 9397:1 9406:1 9499:1 9534:1 9610:1 9611:1 9698:1 9719:1 9769:1 9824:1 9826:1 9836:1 9853:1 9950:1 9992:2 10114:1 10193:1 10357:1 10362:1 10365:1 10472:1 10572:2 10656:1 10753:1 10771:1 10782:1 10931:2 10947:1 10954:1 11020:1 11298:1 11386:1 11403:1 11423:1 11554:1 11584:1 11600:1 11608:1 11701:1 11717:1 11737:1 11769:1 11808:1 11810:1 11850:2 11888:1 11921:1 11926:2 12035:1 12043:2 12149:1 12189:1 12230:1 12275:1 12312:1 12420:1 12442:1 12496:1 12509:1 12570:2 12632:1 12705:1 12744:1 12776:1 12822:1 12843:1 12846:1 12865:1 12922:1 12933:1 12965:1 13092:1 13121:1 13173:1 13186:1 13265:2 13297:1 13351:1 13434:1 13502:1 13546:1 13575:1 13581:1 13698:1 13728:1 13778:1 13834:1 13901:1 14011:1 14045:1 14122:1 14198:1 14206:1 14243:1 14291:1 14329:2 14371:1 14472:1 14584:1 14623:1 14632:1 14821:2 14841:1 14872:1 14887:2 14905:1 14976:1 14978:2 14992:1 14994:1 15048:1 15075:2 15135:2 15139:1 15183:1 15218:1 15401:1 15489:1 15663:1 15674:1 15681:1 15817:1 15899:1 15948:1 16011:1 16025:1 16209:1 16277:1 16371:1 16426:1 16480:1 16523:1 16528:1 16548:4 16739:1 16760:1 16777:1 16849:1 16870:1 16897:1 16916:1 16917:1 16940:1 17054:1 17061:1 17091:1 17102:1 17116:1 17117:1 17297:1 17388:1 17513:1 17525:2 17538:1 17624:3 17701:1 17716:2 17717:2 17757:1 17770:1 17772:1 17778:1 17787:1 17804:3 17879:2 17921:1 17993:1 18152:1 18156:2 18164:1 18182:1 18334:1 18339:2 18346:1 18355:1 18509:1 18573:1 18582:1 18624:1 18634:1 18678:1 18753:1 18754:1 18774:1 18829:1 18836:1 18880:1 18920:1 18931:1 18937:1 19040:1 19041:1 19060:1 19097:1 19120:1 19234:1 19290:1 19417:1 19467:1 19469:1 19477:1 19485:1 19489:1 19490:1 19555:1 19665:2 19678:1 19739:1 19884:1 19980:1 20074:1 20152:1 20230:1 20318:1 20402:1 20480:1 20522:1 20605:1 20613:1 20757:654 20781:1 20875:1 20963:1 20999:1 21000:1 21109:1 21167:1 21262:1 21266:1 21330:1 21423:1 21472:1 21551:1 21617:1 21643:1 21649:1 21710:1 21737:1 21778:1 21878:1 21988:1 22042:1 22043:1 22182:1 22251:1 22252:1 22277:1 22278:2 22299:1 22320:1 22361:1 22655:1 22712:1 22722:1 22784:1 22819:1 22824:1 22848:1 22872:1 22894:2 23042:1 23068:1 23157:2 23175:1 23198:1 23202:1 23213:1 23291:1 23302:1 23322:1 23421:1 23427:1 23430:1 23438:1 23453:1 23454:1 23473:1 23478:1 23555:1 23600:1 23704:1 23746:1 23907:1 23938:1 23958:1 23973:1 24162:1 24174:1 24280:1 24322:1 24333:1 24355:1 24384:1 24391:1 24475:1 24507:1 24524:1 24718:1 24776:1 24793:3 24896:1 24898:1 25059:1 25121:1 25364:1 25485:1 25504:1 25559:1 25591:1 25607:1 25636:1 25668:1 25702:1 25718:2 25747:1 25770:1 25796:1 25803:1 25811:1 25812:1 25862:1 25896:1 25898:1 26018:1 26054:1 26113:1 26157:1 26166:1 26211:2 26256:1 26271:1 26339:1 26411:1 26435:1 26460:1 26716:1 26813:1 26845:1 26861:1 26887:1 26921:1 26994:1 26998:1 27000:1 27075:1 27093:1 27213:1 27224:1 27246:1 27328:2 27422:1 27457:1 27462:1 27563:1 27600:1 27628:1 27678:1 27689:1 27799:2 27803:1 27874:1 27878:1 27992:1 28012:1 28019:1 28061:1 28072:1 28108:1 28207:1 28208:1 28228:1 28262:1 28374:1 28442:1 28509:1 28526:1 28538:1 28551:1 28562:1 28581:1 28604:1 28620:1 28638:1 28674:1 28720:2 28745:1 28766:1 28781:1 28792:1 28810:1 28827:2 29049:1 29059:1 29115:1 29141:1 29303:1 29356:1 29455:1 29463:1 29600:1 29628:1 29647:1 29740:1 29746:1 29770:1 29878:1 29894:1 29899:1 29947:1 29993:1 30007:1 30016:1 30044:1 30083:1 30169:1 30203:1 30209:1 30210:1 30262:1 30269:1 30345:1 30355:1 30488:1 30559:1 30564:2 30590:1 30799:1 30836:1 30879:2 30896:1 31017:1 31020:1 31057:2 31126:1 31335:1 31379:1 31449:1 31567:1 31593:1 31606:1 31659:1 31688:1 31950:1 31984:1 32163:1 32217:1 32244:1 32254:1 32257:1 32267:1 32298:1 32333:1 32337:1 32343:1 32378:1 32382:1
15 71:1 104:1 167:1 189:1 200:1 267:1 285:3 335:1 370:1 406:1 503:1 529:1 541:2 586:1 612:1 623:1 645:1 655:1 666:1 697:2 699:1 928:1 958:1 963:2 968:1 985:1 1020:1 1119:1 1149:1 1150:1 1167:1 1235:1 1297:1 1367:1 1385:1 1407:1 1458:1 1500:1 1577:1 1592:2 1642:1 1656:1 1686:1 1733:2 1749:2 1810:2 1843:1 1897:1 1948:1 2013:1 2042:1 2043:2 2091:1 2171:1 2177:1 2201:1 2359:1 2386:1 2462:1 2495:1 2503:1 2509:1 2516:1 2524:1 2525:1 2561:1 2607:1 2636:1 2677:1 2678:1 2707:1 2711:1 2814:1 2844:1 2991:1 3091:1 3109:1 3155:1 3161:1 3169:1 3238:1 3247:1 3356:2 3411:1 3443:1 3483:1 3646:1 3658:1 3671:1 3735:1 3736:1 3929:1 3964:1 4002:1 4006:1 4055:1 4066:1 4083:1 4131:1 4183:1 4214:1 4252:1 4260:1 4462:1 4537:1 4563:1 4609:1 4657:1 4665:2 4685:1 4736:1 4748:1 4773:1 4873:1 4880:1 4889:1 4938:1 4954:1 5001:1 5026:2 5035:1 5074:1 5178:1 5186:1 5187:2 5206:1 5242:1 5247:2 5327:1 5382:1 5418:1 5520:1 5521:1 5529:1 5535:1 5541:1 5548:1 5578:1 5690:1 5697:2 5767:1 5774:1 5805:1 5823:1 5843:3 5928:1 5963:1 5980:1 5983:1 5998:1 6031:1 6037:1 6051:1 6171:1 6218:1 6232:1 6287:1 6310:1 6333:1 6390:1 6395:1 6423:2 6488:1 6594:1 6628:2 6725:1 6775:1 6825:2 6831:1 6850:1 6955:1 7037:1 7060:1 7066:1 7071:1 7119:1 7129:1 7152:1 7165:1 7168:2 7189:1 7220:1 7231:2 7325:1 7330:1 7331:2 7338:1 7456:1 7489:1 7526:1 7527:1 7679:1 7785:1 7797:1 7811:1 7824:1 7884:2 7887:2 7923:1 7979:1 8047:1 8099:1 8137:1 8262:2 8288:1 8327:1 8329:1 8335:1 8344:1 8414:1 8459:1 8461:1 8462:1 8551:2 8569:1 8609:1 8620:5 8641:1 8669:1 8689:2 8697:1 8707:1 8833:1 8855:1 8957:1 8975:1 8985:1 9076:1 9082:1 9088:1 9110:1 9157:4 9207:1 9208:2 9253:1 9397:1 9406:1 9499:1 9534:1 9610:1 9611:1 9698:1 9719:1 9769:1 9777:2 9824:1 9826:1 9836:1 9853:1 9950:1 9992:2 10114:1 10193:1 10202:1 10260:1 10306:1 10357:1 10362:1 10365:1 10472:1 10572:2 10629:1 10650:1 10656:1 10753:1 10771:1 10782:1 10931:2 10947:1 10954:1 11020:1 11293:1 11298:1 11386:1 11403:1 11423:1 11486:1 11554:1 11584:1 11600:1 11608:1 11701:1 11717:1 11737:1 11769:1 11808:1 11810:1 11850:2 11888:1 11921:1 11926:2 12035:1 12043:2 12149:1 12189:1 12230:1 12275:2 12300:1 12312:1 12343:1 12420:1 12442:2 12496:1 12509:1 12510:1 12570:2 12632:1 12654:1 12688:1 12705:1 12744:1 12776:1 12822:1 12843:1 12846:1 12865:1 12922:1 12933:1 12965:1 13092:1 13121:1 13173:1 13186:1 13265:2 13297:2 13351:1 13434:1 13502:2 13546:1 13575:1 13581:1 13698:1 13714:1 13728:1 13778:1 13834:1 13901:1 14011:1 14045:1 14067:1 14122:1 14198:1 14206:1 14243:1 14266:1 14291:1 14329:3 14371:1 14472:1 14584:1 14623:1 14632:1 14821:2 14841:1 14872:1 14887:2 14905:1 14976:1 14978:2 14992:1 14994:1 15039:1 15048:1 15075:2 15135:2 15139:1 15183:1 15218:1 15243:2 15401:1 15489:1 15663:1 15674:1 15681:1 15817:1 15899:1 15948:1 16011:1 16025:1 16209:1 16277:1 16321:1 16371:1 16426:1 16480:1 16523:1 16528:1 16540:2 16548:4 16697:1 16739:1 16760:1 16777:1 16849:1 16870:1 16897:1 16916:1 16917:1 16940:1 17054:1 17061:1 17091:1 17102:1 17116:1 17117:1 17256:1 17297:1 17388:1 17461:1 17513:1 17525:2 17538:1 17624:3 17701:1 17716:2 17717:2 17757:1 17770:1 17772:1 17778:1 17787:1 17804:3 17812:1 17876:1 17879:2 17921:1 17986:1 17993:1 18152:1 18156:2 18164:1 18169:1 18182:1 18334:1 18339:2 18346:1 18355:1 18509:1 18573:1 18582:1 18624:1 18634:1 18678:1 18753:1 18754:1 18774:1 18829:1 18836:1 18880:1 18920:1 18931:1 18937:1 18944:1 19040:1 19041:1 19060:1 19097:1 19120:1 19234:1 19290:1 19417:1 19467:1 19469:1 19477:1 19485:1 19489:1 19490:1 19553:2 19555:1 19614:1 19665:3 19678:2 19739:1 19884:1 19980:1 20074:1 20152:2 20230:1 20318:1 20394:1 20402:1 20480:2 20522:1 20605:1 20613:1 20757:800 20781:1 20875:1 20963:1 20977:1 20999:1 21000:1 21109:1 21133:1 21167:1 21190:1 21259:1 21262:1 21266:1 21330:1 21423:1 21472:1 21551:1 21617:1 21643:1 21649:1 21710:1 21737:1 21778:1 21878:1 21988:1 22042:1 22043:1 22182:1 22251:1 22252:1 22277:1 22278:2 22299:1 22320:1 22361:1 22655:1 22712:1 22722:1 22784:1 22819:1 22824:1 22848:1 22872:1 22894:2 22963:1 23042:1 23068:1 23157:2 23175:1 23198:1 23202:1 23213:1 23291:1 23302:1 23322:1 23421:1 23427:1 23430:1 23438:1 23453:1 23454:1 23473:1 23478:1 23555:1 23600:2 23704:1 23746:1 23907:1 23938:1 23958:1 23973:1 24162:1 24174:1 24280:1 24322:1 24333:1 24355:1 24384:1 24391:1 24475:1 24507:1 24524:1 24718:1 24755:1 24770:1 24776:1 24793:3 24896:1 24898:1 25059:1 25121:1 25364:1 25483:1 25485:1 25504:1 25559:1 25591:1 25607:1 25636:1 25668:1 25702:1 25718:2 25747:1 25770:1 25796:1 25803:1 25811:1 25812:1 25862:1 25896:1 25898:1 26018:1 26054:1 26113:1 26155:1 26157:1 26166:1 26211:2 26256:1 26271:1 26339:1 26411:1 26435:1 26460:1 26625:1 26716:1 26813:1 26828:2 26845:2 26861:1 26887:1 26921:1 26994:1 26998:1 27000:1 27075:1 27093:1 27213:1 27224:1 27246:1 27252:2 27328:2 27422:1 27457:1 27462:1 27563:1 27600:1 27628:1 27678:1 27689:1 27799:2 27803:1 27835:1 27874:1 27878:1 27992:1 28006:1 28012:1 28019:1 28061:1 28072:1 28108:1 28207:1 28208:1 28228:1 28262:1 28374:1 28442:1 28509:1 28526:1 28538:1 28551:1 28562:1 28581:1 28604:1 28620:1 28638:1 28674:1 28720:2 28745:1 28766:1 28781:1 28792:1 28810:1 28827:2 29049:1 29059:1 29115:1 29139:1 29141:1 29145:1 29303:1 29356:1 29453:1 29455:1 29463:1 29600:1 29628:1 29638:1 29640:1 29647:1 29740:1 29746:1 29770:1 29822:1 29878:1 29894:1 29899:1 29947:1 29993:1 30007:1 30016:1 30044:1 30083:1 30169:1 30202:1 30203:1 30209:1 30210:1 30262:1 30269:1 30335:1 30345:1 30355:1 30488:1 30559:1 30564:2 30590:1 30675:2 30799:1 30836:1 30879:2 30896:1 31017:1 31020:1 31057:2 31126:1 31156:1 31335:1 31379:1 31449:2 31567:1 31593:1 31606:1 31628:1 31653:1 31659:1 31688:1 31950:1 31984:1 32109:1 32163:1 32217:1 32244:1 32245:1 32254:1 32257:1 32267:1 32298:1 32333:2 32337:1 32343:1 32378:1 32382:1
15 71:1 104:1 167:1 189:1 200:1 267:1 285:3 335:1 370:1 406:1 503:1 529:1 541:2 586:1 612:1 622:1 623:1 645:1 655:1 666:1 697:2 699:1 928:1 958:1 963:2 968:1 985:1 1020:1 1119:1 1149:1 1150:1 1167:1 1235:1 1297:1 1367:1 1385:1 1407:1 1458:1 1500:1 1577:1 1592:2 1642:1 1656:1 1686:1 1733:3 1749:2 1810:2 1843:1 1897:1 1948:1 2013:1 2042:1 2043:2 2091:1 2171:1 2177:1 2201:1 2359:1 2386:1 2462:1 2495:1 2503:1 2509:1 2516:1 2524:1 2525:1 2561:1 2607:1 2636:1 2677:1 2678:1 2707:1 2711:1 2814:1 2844:1 2991:1 3091:1 3109:1 3155:1 3161:1 3169:1 3238:1 3247:1 3356:2 3411:1 3443:1 3483:1 3646:1 3658:1 3671:1 3735:1 3736:1 3929:1 3964:1 4002:1 4006:1 4055:1 4066:1 4083:1 4131:1 4183:1 4214:1 4252:2 4260:1 4462:1 4537:1 4563:1 4609:1 4657:1 4665:2 4685:1 4736:1 4748:2 4773:1 4873:1 4880:1 4889:1 4938:1 4954:1 5001:1 5026:2 5035:1 5058:1 5074:1 5178:1 5186:1 5187:2 5206:1 5242:1 5247:2 5327:1 5382:1 5418:1 5520:1 5521:1 5529:1 5535:1 5541:1 5548:1 5578:1 5690:1 5697:2 5767:1 5774:1 5805:1 5823:1 5843:3 5928:1 5941:1 5963:1 5980:1 5983:1 5998:1 6031:1 6037:1 6051:1 6171:1 6218:1 6232:1 6287:1 6310:1 6333:1 6390:1 6395:1 6423:2 6488:1 6594:1 6628:2 6725:1 6775:1 6825:2 6831:1 6850:1 6955:1 7037:1 7060:1 7066:1 7071:1 7119:1 7129:1 7152:1 7165:1 7168:2 7189:2 7220:1 7231:2 7325:1 7330:1 7331:2 7338:1 7432:1 7456:1 7489:1 7526:1 7527:1 7629:1 7679:1 7785:1 7797:1 7811:1 7824:1 7884:2 7887:2 7923:1 7979:1 8047:1 8099:1 8137:1 8262:2 8288:1 8327:1 8329:1 8335:1 8344:1 8414:1 8459:1 8461:1 8462:1 8551:2 8569:1 8609:1 8620:5 8641:1 8669:1 8689:2 8697:1 8707:1 8833:1 8855:1 8957:1 8975:1 8985:1 9076:1 9082:1 9088:1 9110:1 9157:4 9207:1 9208:2 9253:1 9298:1 9397:1 9406:1 9499:1 9534:1 9610:1 9611:1 9698:1 9719:1 9769:1 9777:2 9824:1 9826:1 9836:1 9853:1 9950:1 9992:2 10114:1 10193:1 10202:1 10260:1 10269:1 10306:1 10357:1 10362:1 10365:1 10472:1 10572:2 10629:1 10650:2 10656:1 10753:1 10771:1 10782:1 10931:2 10947:1 10954:1 11020:1 11293:1 11298:1 11386:1 11403:1 11423:1 11486:1 11554:1 11584:1 11594:1 11600:1 11608:1 11701:1 11717:1 11737:1 11769:1 11808:1 11810:1 11850:2 11888:1 11921:1 11926:2 12035:1 12043:2 12149:1 12189:1 12230:1 12275:2 12300:1 12312:1 12343:1 12420:1 12442:2 12496:1 12509:1 12510:2 12570:2 12632:1 12654:1 12688:1 12705:1 12716:1 12744:1 12776:1 12822:1 12843:1 12846:1 12865:1 12922:1 12933:1 12965:1 13092:2 13121:1 13173:1 13186:1 13265:2 13297:2 13351:1 13434:1 13502:2 13546:1 13575:1 13581:1 13626:1 13698:1 13714:1 13728:1 13757:1 13778:1 13834:1 13901:1 13940:1 14011:1 14045:1 14067:1 14122:1 14198:1 14206:1 14243:1 14266:1 14291:1 14302:1 14329:3 14371:1 14472:1 14584:1 14623:1 14632:1 14821:2 14841:1 14872:1 14887:2 14905:1 14976:1 14978:2 14992:1 14994:1 15039:1 15048:1 15075:2 15135:2 15139:1 15183:1 15218:1 15243:2 15401:1 15489:1 15663:1 15674:1 15681:1 15817:1 15899:1 15948:1 16011:1 16025:1 16209:1 16277:1 16321:1 16371:1 16426:1 16480:1 16523:1 16528:1 16540:2 16548:4 16697:2 16739:1 16760:1 16777:2 16849:1 16870:1 16897:1 16916:2 16917:1 16940:1 17054:1 17061:1 17091:1 17102:1 17116:1 17117:1 17256:1 17297:1 17388:1 17461:1 17513:1 17525:2 17538:1 17624:3 17701:1 17716:2 17717:2 17757:1 17770:1 17772:1 17778:1 17787:1 17804:3 17812:1 17876:1 17879:2 17906:1 17921:1 17986:1 17993:1 18152:1 18156:2 18164:1 18169:1 18182:1 18334:1 18339:2 18346:1 18355:1 18445:1 18509:1 18573:1 18582:1 18624:1 18634:1 18678:1 18753:1 18754:1 18774:1 18829:1 18836:1 18880:1 18920:1 18931:1 18937:1 18944:1 19040:1 19041:1 19060:1 19097:1 19120:1 19234:1 19290:1 19417:1 19467:1 19469:1 19477:1 19485:1 19489:1 19490:1 19553:2 19555:1 19614:1 19665:3 19678:3 19739:1 19884:1 19980:1 20074:1 20152:2 20230:1 20318:1 20394:2 20402:1 20480:2 20522:1 20605:1 20613:1 20757:869 20781:1 20875:1 20963:1 20977:1 20999:1 21000:1 21109:1 21133:1 21167:1 21190:1 21259:1 21262:1 21266:1 21330:1 21423:1 21472:1 21551:1 21617:1 21643:1 21649:1 21710:1 21737:1 21778:1 21878:1 21988:1 22042:1 22043:1 22182:1 22251:1 22252:1 22277:1 22278:2 22299:1 22320:1 22361:1 22655:2 22712:1 22722:1 22784:1 22819:1 22824:1 22848:1 22872:1 22894:2 22963:1 23042:1 23068:1 23157:2 23175:1 23198:1 23202:1 23213:1 23291:1 23302:1 23322:1 23421:1 23427:1 23430:1 23438:1 23453:1 23454:1 23473:1 23478:1 23555:1 23600:2 23661:1 23704:1 23746:1 23907:1 23938:1 23958:1 23973:1 24162:1 24174:1 24224:1 24280:1 24322:1 24333:1 24355:1 24384:1 24391:1 24475:1 24507:1 24524:1 24718:1 24755:1 24770:1 24776:1 24793:3 24896:1 24898:1 25059:1 25121:1 25364:1 25483:1 25485:1 25504:1 25559:1 25591:1 25607:1 25636:1 25665:1 25668:1 25702:1 25718:2 25747:1 25770:1 25796:1 25803:1 25811:1 25812:1 25862:1 25896:1 25898:1 25914:1 26018:1 26054:1 26113:1 26155:1 26157:1 26166:1 26211:2 26256:1 26271:1 26339:1 26411:1 26435:1 26460:1 26625:1 26716:1 26813:1 26828:2 26845:2 26861:1 26887:1 26921:1 26994:1 26998:1 27000:1 27075:1 27093:1 27190:1 27209:1 27213:1 27224:1 27246:1 27252:2 27328:2 27422:1 27457:1 27462:1 27563:1 27600:1 27628:1 27678:1 27689:1 27799:2 27803:1 27835:1 27874:1 27878:1 27992:1 28006:1 28012:1 28019:1 28061:1 28072:1 28108:1 28207:1 28208:1 28228:1 28262:1 28374:1 28442:1 28509:1 28526:1 28538:1 28551:1 28562:1 28581:1 28604:1 28620:1 28638:1 28674:1 28720:2 28745:1 28766:1 28781:1 28792:1 28810:1 28827:2 29049:1 29059:1 29115:1 29139:2 29141:1 29145:1 29303:1 29356:1 29392:1 29453:1 29455:1 29463:1 29600:1 29628:1 29638:1 29640:1 29647:1 29740:1 29746:1 29770:1 29822:1 29878:1 29894:1 29899:1 29947:1 29993:1 30007:1 30016:1 30044:1 30083:1 30169:1 30202:1 30203:1 30209:1 30210:1 30262:1 30269:1 30335:1 30345:1 30355:1 30488:1 30559:1 30564:2 30590:1 30675:2 30799:1 30836:1 30879:2 30896:1 31017:1 31020:1 31057:2 31126:1 31156:2 31335:1 31379:1 31401:1 31449:3 31567:2 31593:1 31606:1 31628:1 31653:1 31659:1 31688:1 31837:1 31950:1 31984:1 32109:1 32163:1 32217:1 32244:1 32245:1 32254:1 32257:1 32267:1 32298:1 32333:2 32337:1 32343:1 32378:1 32382:1
15 71:1 104:1 167:1 189:1 200:1 267:1 285:3 335:1 337:1 370:1 406:1 409:1 503:1 529:1 541:2 586:1 612:1 622:1 623:1 645:2 649:1 655:1 666:1 685:1 697:2 699:1 928:1 958:1 961:1 963:2 968:1 985:1 1020:1 1119:1 1149:1 1150:1 1167:1 1205:1 1235:1 1259:1 1288:1 1297:1 1328:1 1367:1 1374:2 1385:1 1407:1 1458:1 1483:1 1500:1 1577:1 1592:2 1641:2 1642:1 1656:1 1686:1 1733:3 1744:1 1749:2 1810:2 1822:1 1842:1 1843:1 1897:1 1948:1 2013:1 2042:1 2043:2 2050:2 2052:1 2091:1 2171:1 2177:1 2201:1 2359:1 2386:1 2426:1 2462:1 2495:1 2503:1 2509:1 2516:1 2520:1 2524:1 2525:1 2547:1 2561:1 2607:1 2636:1 2677:1 2678:1 2707:1 2711:1 2814:1 2844:1 2991:1 3091:1 3109:1 3138:1 3155:1 3161:2 3169:1 3198:1 3238:1 3247:1 3356:2 3411:1 3443:1 3483:1 3646:1 3658:1 3671:1 3735:1 3736:1 3929:1 3964:1 4002:1 4006:1 4018:1 4055:1 4066:1 4083:1 4105:1 4131:1 4183:1 4189:1 4214:1 4252:2 4260:1 4454:1 4462:1 4537:1 4563:1 4609:1 4629:2 4657:1 4665:2 4685:1 4736:1 4748:2 4773:1 4873:1 4880:1 4889:1 4938:1 4954:1 5001:1 5026:2 5035:1 5054:1 5058:1 5074:1 5162:1 5178:1 5186:1 5187:2 5206:1 5242:1 5247:2 5327:1 5382:1 5418:1 5500:1 5520:1 5521:1 5529:1 5535:1 5541:1 5548:1 5578:1 5690:1 5697:2 5757:1 5767:1 5774:1 5805:1 5823:1 5843:3 5928:1 5941:2 5963:1 5980:1 5983:1 5998:1 6031:1 6037:1 6051:1 6171:1 6218:1 6232:1 6287:1 6310:1 6333:1 6390:1 6394:1 6395:1 6423:2 6488:1 6594:1 6628:2 6725:1 6749:1 6775:1 6825:2 6831:1 6850:1 6955:1 7035:1 7037:1 7058:1 7060:1 7066:1 7071:1 7119:1 7129:1 7152:1 7165:1 7168:2 7189:2 7220:1 7231:2 7325:2 7330:1 7331:2 7338:1 7365:1 7389:1 7406:1 7432:1 7453:1 7456:1 7489:1 7526:1 7527:1 7625:1 7629:2 7679:1 7758:1 7785:1 7797:1 7811:1 7824:1 7884:2 7887:2 7923:2 7979:1 8047:1 8099:1 8137:1 8262:2 8288:1 8324:2 8327:1 8329:1 8335:1 8344:1 8414:1 8448:1 8459:2 8461:1 8462:1 8521:1 8551:2 8569:1 8602:1 8607:1 8609:1 8620:5 8641:2 8669:1 8689:2 8697:1 8707:1 8833:1 8855:1 8957:1 8975:1 8985:1 8995:1 9076:1 9082:1 9088:1 9092:1 9110:1 9157:5 9207:1 9208:2 9214:1 9253:1 9282:1 9298:1 9397:1 9406:1 9499:1 9534:1 9605:1 9610:1 9611:1 9698:1 9719:1 9769:1 9777:2 9824:1 9826:1 9836:1 9853:1 9921:1 9950:1 9992:2 10114:1 10193:1 10202:1 10260:1 10269:1 10306:1 10314:1 10357:1 10362:1 10365:1 10390:1 10472:2 10556:1 10572:2 10629:1 10650:2 10656:1 10719:1 10753:1 10771:1 10782:1 10931:2 10947:1 10954:1 11020:1 11115:1 11159:1 11274:1 11293:1 11298:1 11326:1 11342:1 11386:1 11403:1 11423:1 11442:1 11451:1 11486:1 11554:1 11584:1 11594:1 11600:1 11601:1 11608:1 11701:1 11717:1 11737:1 11769:1 11808:1 11810:1 11834:1 11850:2 11888:1 11921:1 11926:2 12035:1 12043:2 12149:1 12189:1 12230:1 12275:2 12300:1 12312:1 12343:1 12420:1 12442:2 12475:1 12496:1 12509:1 12510:2 12570:2 12632:1 12654:1 12688:1 12705:1 12716:2 12744:1 12776:1 12822:1 12843:1 12846:1 12860:1 12865:1 12922:1 12933:1 12965:1 13041:1 13092:2 13121:1 13173:1 13186:1 13265:2 13269:1 13297:2 13351:1 13434:1 13502:2 13511:1 13546:1 13575:1 13581:1 13626:2 13650:1 13658:1 13698:1 13714:1 13728:1 13757:1 13778:1 13834:1 13901:1 13940:1 14011:1 14045:1 14067:1 14122:1 14129:1 14198:1 14206:1 14243:1 14266:1 14291:1 14302:1 14329:3 14371:2 14472:1 14584:1 14603:1 14623:1 14632:1 14783:1 14821:2 14841:1 14850:1 14872:1 14887:3 14905:1 14910:1 14976:1 14978:2 14992:1 14994:1 15039:1 15048:1 15075:2 15135:2 15139:1 15183:1 15218:1 15243:2 15401:1 15489:1 15516:1 15663:1 15674:1 15681:1 15817:1 15840:1 15899:1 15948:1 16011:1 16025:1 16113:1 16182:1 16209:1 16277:1 16321:1 16352:1 16371:1 16426:1 16480:1 16523:1 16528:1 16540:2 16548:6 16697:2 16739:1 16760:1 16777:3 16849:1 16870:1 16897:1 16916:3 16917:1 16940:1 17054:1 17061:1 17091:1 17102:1 17116:1 17117:1 17148:1 17256:1 17290:1 17297:1 17354:1 17388:1 17461:1 17513:1 17525:2 17538:1 17583:1 17624:3 17701:1 17716:2 17717:2 17757:1 17770:1 17772:1 17778:1 17787:1 17804:4 17812:1 17876:1 17877:1 17879:2 17906:1 17921:1 17986:1 17993:1 18109:1 18152:1 18156:2 18159:1 18164:1 18169:1 18182:1 18334:1 18339:2 18346:1 18355:1 18445:2 18509:1 18573:1 18582:1 18624:1 18634:1 18678:1 18753:1 18754:1 18774:1 18829:1 18836:1 18880:1 18920:1 18931:1 18937:1 18944:1 18994:1 19040:1 19041:1 19060:1 19097:1 19120:1 19224:1 19234:1 19290:1 19302:1 19417:1 19467:1 19469:1 19477:1 19485:1 19489:1 19490:1 19553:2 19555:1 19614:1 19651:1 19665:3 19678:3 19739:1 19876:1 19884:1 19887:1 19970:1 19980:1 20074:1 20152:2 20230:1 20318:1 20355:1 20394:2 20402:1 20411:1 20480:2 20522:1 20605:1 20613:1 20634:1 20714:1 20757:960 20781:1 20875:1 20963:1 20977:1 20991:1 20999:1 21000:1 21109:1 21133:1 21167:1 21190:1 21233:1 21259:1 21262:1 21266:1 21330:1 21423:1 21472:1 21551:1 21617:1 21643:1 21649:1 21710:1 21737:1 21778:1 21878:1 21988:1 22007:1 22042:1 22043:1 22182:1 22251:1 22252:1 22277:1 22278:2 22299:1 22305:1 22320:1 22361:1 22655:2 22712:1 22722:1 22784:1 22819:1 22824:1 22848:1 22872:1 22894:2 22897:1 22901:1 22963:1 23039:1 23042:1 23068:1 23114:1 23136:1 23157:2 23175:1 23198:1 23202:1 23213:1 23291:1 23302:1 23322:1 23421:1 23427:1 23430:1 23438:1 23453:1 23454:1 23473:1 23478:1 23487:1 23555:1 23600:3 23618:1 23661:1 23704:1 23746:1 23907:1 23938:1 23945:1 23958:1 23973:1 24136:1 24139:1 24162:1 24174:1 24224:1 24280:1 24300:1 24322:1 24333:1 24355:1 24384:1 24391:1 24475:1 24507:1 24524:1 24718:1 24742:1 24755:1 24770:1 24776:1 24793:3 24858:1 24896:1 24898:1 24965:1 25046:1 25059:1 25121:1 25364:1 25483:1 25485:1 25504:1 25559:1 25591:1 25607:1 25636:1 25665:1 25668:1 25702:1 25718:2 25747:1 25770:1 25784:1 25796:1 25803:1 25811:1 25812:1 25862:1 25896:1 25898:1 25902:1 25914:1 26018:1 26054:1 26113:1 26155:1 26157:1 26166:1 26211:2 26256:1 26271:1 26339:1 26411:1 26435:1 26460:1 26625:1 26716:1 26813:1 26828:2 26845:2 26861:1 26887:1 26921:1 26964:1 26994:1 26998:1 27000:1 27037:1 27075:1 27093:1 27190:1 27209:1 27213:1 27217:1 27224:1 27246:1 27252:2 27328:2 27412:1 27422:1 27457:1 27462:1 27563:1 27600:1 27628:1 27678:1 27689:1 27799:3 27803:1 27835:1 27874:1 27878:1 27988:1 27992:1 28006:1 28012:1 28019:1 28061:1 28072:1 28084:1 28108:1 28174:1 28207:1 28208:1 28210:1 28224:1 28228:1 28262:1 28374:2 28442:1 28509:1 28526:1 28538:1 28551:1 28562:1 28581:1 28604:1 28620:1 28638:1 28670:1 28674:1 28720:2 28745:1 28766:1 28781:1 28792:1 28810:1 28827:2 29049:1 29059:1 29115:1 29134:1 29139:2 29141:1 29145:1 29198:1 29303:1 29356:1 29392:1 29453:1 29455:1 29463:1 29600:1 29628:1 29633:1 29638:1 29640:1 29647:1 29740:1 29746:1 29760:1 29770:1 29792:1 29822:1 29853:1 29878:1 29894:1 29899:1 29947:1 29993:1 30007:1 30016:1 30044:1 30083:1 30169:1 30186:1 30202:1 30203:1 30209:1 30210:1 30262:1 30269:1 30335:1 30345:1 30355:1 30488:2 30533:1 30559:1 30564:2 30590:1 30675:2 30799:1 30836:2 30879:2 30896:1 30944:1 31017:1 31020:1 31036:1 31057:2 31080:1 31095:1 31126:1 31156:2 31335:1 31379:1 31401:1 31449:3 31567:2 31593:1 31606:1 31624:1 31628:1 31653:1 31659:1 31662:1 31688:1 31837:1 31849:1 31896:1 31950:1 31984:1 31994:1 32080:1 32109:1 32163:1 32217:1 32244:1 32245:1 32254:1 32257:1 32267:1 32298:1 32333:2 32337:1 32343:1 32378:1 32382:1
15 71:1 104:1 167:1 189:1 200:1 267:1 285:3 335:1 337:1 370:1 406:1 409:1 503:1 529:1 541:2 586:1 612:1 622:1 623:1 645:2 649:1 655:1 666:1 685:1 697:2 699:1 768:1 892:1 928:1 958:1 961:1 963:2 968:1 985:1 1020:1 1119:1 1149:1 1150:1 1167:1 1205:1 1235:1 1259:1 1288:1 1297:1 1328:1 1337:1 1367:1 1374:2 1385:1 1396:1 1407:2 1458:1 1483:1 1500:1 1577:1 1592:2 1641:2 1642:1 1651:1 1656:1 1686:1 1733:3 1744:1 1749:2 1810:2 1813:1 1821:1 1822:1 1842:1 1843:1 1897:1 1948:1 1981:1 2013:1 2042:1 2043:2 2050:2 2052:1 2091:1 2159:1 2171:1 2177:1 2201:1 2359:1 2364:1 2386:1 2426:1 2462:1 2495:1 2503:1 2509:1 2516:1 2520:1 2524:1 2525:1 2547:1 2561:1 2607:1 2636:1 2677:1 2678:1 2707:1 2711:1 2814:1 2844:1 2991:1 3091:1 3109:1 3138:1 3155:1 3161:2 3169:1 3198:1 3238:1 3247:1 3333:1 3356:2 3411:1 3443:1 3483:1 3646:2 3658:1 3671:1 3735:2 3736:1 3803:1 3891:1 3929:1 3964:1 4002:1 4006:1 4018:1 4055:1 4066:1 4083:1 4102:1 4105:1 4131:1 4152:1 4183:1 4189:1 4214:1 4252:2 4255:1 4260:1 4305:1 4340:1 4422:1 4454:1 4462:1 4537:1 4563:1 4609:1 4629:2 4657:1 4665:2 4685:1 4736:1 4748:2 4773:1 4863:1 4873:1 4880:1 4889:1 4932:1 4938:1 4954:1 5001:1 5026:2 5035:1 5054:1 5058:2 5074:1 5162:1 5178:1 5186:1 5187:2 5206:1 5242:1 5247:2 5327:1 5382:1 5418:1 5500:1 5520:1 5521:1 5529:1 5535:1 5541:1 5548:1 5578:1 5690:1 5697:2 5757:1 5767:1 5774:1 5805:1 5823:1 5843:3 5928:1 5941:2 5963:1 5980:1 5983:1 5998:2 6031:1 6037:1 6051:1 6171:1 6218:1 6232:1 6287:1 6310:1 6333:1 6390:1 6394:1 6395:1 6423:2 6488:1 6594:1 6628:2 6725:1 6749:1 6775:1 6825:2 6831:1 6850:1 6920:1 6945:1 6955:1 7035:1 7037:1 7058:1 7060:1 7066:1 7071:1 7119:1 7129:1 7152:1 7165:1 7168:2 7189:2 7220:1 7231:2 7325:2 7330:1 7331:2 7338:1 7365:1 7389:1 7406:1 7432:1 7453:1 7456:1 7489:1 7526:1 7527:1 7613:1 7625:1 7629:2 7679:1 7758:1 7785:1 7797:1 7811:1 7824:1 7884:2 7887:2 7923:2 7979:1 8047:1 8099:1 8137:1 8219:1 8262:2 8288:1 8305:1 8324:2 8327:1 8329:1 8335:2 8344:1 8393:1 8414:1 8448:1 8459:2 8461:1 8462:1 8521:1 8551:3 8569:1 8602:1 8607:1 8609:1 8620:5 8641:2 8669:1 8689:2 8697:1 8707:1 8833:1 8855:1 8957:1 8975:1 8985:1 8995:1 9076:1 9082:1 9087:1 9088:1 9092:1 9110:1 9157:5 9207:1 9208:2 9214:1 9222:1 9253:1 9282:1 9298:1 9397:1 9406:1 9456:1 9499:1 9534:1 9605:1 9610:1 9611:1 9656:1 9698:1 9719:1 9769:1 9777:2 9824:1 9825:1 9826:1 9836:1 9849:1 9853:1 9921:1 9950:1 9992:2 10114:1 10193:1 10202:1 10260:1 10269:2 10279:1 10306:1 10314:1 10357:1 10362:1 10365:1 10390:1 10472:2 10556:1 10572:2 10629:1 10650:2 10656:1 10719:1 10753:1 10771:1 10782:1 10783:1 10874:1 10931:2 10947:1 10954:1 11020:1 11115:1 11159:1 11274:1 11293:1 11298:1 11326:1 11342:1 11386:1 11403:1 11423:1 11442:1 11451:1 11486:1 11554:1 11584:1 11594:1 11600:1 11601:1 11608:2 11701:1 11717:1 11737:1 11769:1 11808:1 11809:1 11810:1 11834:1 11850:2 11888:1 11921:1 11926:2 11959:1 12035:1 12043:2 12149:1 12189:1 12230:1 12275:2 12300:1 12312:1 12343:1 12408:1 12420:1 12442:2 12475:1 12486:1 12496:1 12509:1 12510:2 12570:2 12632:1 12654:1 12688:1 12705:1 12716:2 12722:1 12744:1 12776:1 12822:1 12843:1 12846:1 12860:1 12865:1 12922:1 12933:1 12965:1 13041:1 13092:2 13121:1 13173:1 13186:1 13265:2 13269:1 13297:2 13351:1 13405:1 13434:1 13502:2 13511:1 13546:1 13575:1 13581:1 13626:2 13650:1 13654:1 13658:1 13674:1 13688:1 13698:2 13714:1 13728:1 13757:1 13778:1 13834:1 13901:1 13940:1 14011:1 14045:1 14067:1 14122:1 14129:1 14198:1 14206:1 14243:1 14266:1 14267:1 14291:1 14302:1 14329:3 14371:2 14472:1 14505:1 14584:1 14603:1 14623:1 14632:2 14783:1 14821:2 14841:1 14850:1 14872:1 14887:3 14905:1 14910:1 14976:1 14978:2 14992:1 14994:1 15000:1 15039:1 15048:1 15075:2 15135:2 15139:1 15183:1 15218:1 15243:3 15401:1 15489:1 15516:1 15663:1 15674:1 15681:1 15817:1 15840:1 15899:1 15948:1 16011:1 16025:1 16030:1 16087:1 16113:1 16182:1 16209:1 16277:1 16321:1 16352:1 16371:1 16426:1 16480:1 16523:1 16528:1 16540:2 16548:6 16697:2 16739:1 16760:1 16777:4 16849:1 16870:1 16897:1 16916:4 16917:1 16940:1 16941:1 17054:1 17061:1 17091:1 17102:1 17116:1 17117:1 17148:1 17256:1 17290:1 17297:1 17354:1 17388:1 17461:1 17513:1 17525:2 17538:1 17583:1 17624:3 17701:1 17716:2 17717:2 17757:1 17770:1 17772:1 17778:1 17787:1 17804:4 17812:1 17876:1 17877:1 17879:2 17906:1 17921:1 17986:1 17993:1 18054:1 18077:1 18109:1 18152:1 18156:2 18159:1 18164:1 18169:1 18182:1 18334:1 18339:2 18346:1 18355:1 18445:2 18509:1 18573:1 18582:1 18624:1 18634:1 18678:1 18753:1 18754:1 18774:1 18829:2 18836:1 18880:1 18920:1 18931:1 18937:1 18944:1 18994:1 19022:1 19040:1 19041:1 19060:1 19097:1 19120:1 19224:1 19234:1 19290:1 19302:1 19417:1 19467:1 19469:1 19473:1 19477:1 19485:1 19489:1 19490:1 19553:3 19555:1 19614:1 19651:1 19665:3 19678:3 19739:1 19816:1 19876:1 19884:1 19887:1 19970:1 19977:1 19980:1 20074:1 20126:1 20152:2 20230:1 20306:1 20318:1 20355:1 20394:2 20402:1 20411:1 20480:2 20522:1 20551:1 20590:1 20605:1 20613:1 20634:1 20714:1 20757:1083 20781:1 20875:1 20963:1 20977:1 20991:1 20999:1 21000:1 21109:1 21133:1 21167:1 21190:1 21233:1 21259:1 21262:2 21266:1 21330:1 21423:1 21472:1 21551:1 21553:1 21617:1 21643:1 21649:1 21669:1 21710:1 21737:1 21778:1 21806:1 21878:1 21988:1 22007:1 22042:1 22043:1 22182:1 22251:1 22252:1 22277:1 22278:2 22299:2 22305:1 22320:1 22361:1 22552:1 22655:2 22712:1 22722:1 22784:1 22819:1 22824:1 22848:1 22867:1 22872:1 22894:3 22897:1 22901:1 22912:1 22963:1 23039:1 23042:1 23068:1 23114:1 23136:1 23157:2 23175:1 23198:1 23202:1 23213:1 23264:1 23287:1 23291:1 23302:1 23322:1 23421:1 23427:1 23430:1 23438:1 23453:1 23454:1 23473:1 23478:1 23487:1 23555:1 23600:3 23618:1 23661:1 23704:1 23746:1 23839:1 23907:1 23930:1 23938:1 23945:1 23958:1 23973:1 24136:1 24139:1 24162:1 24174:1 24224:1 24280:1 24300:1 24322:1 24333:1 24355:1 24384:1 24391:1 24475:1 24507:1 24524:1 24563:1 24718:1 24742:1 24755:1 24770:1 24776:1 24793:3 24858:1 24896:1 24898:1 24965:1 24996:1 25007:1 25046:1 25059:1 25121:1 25364:1 25483:1 25485:1 25504:1 25559:1 25591:1 25607:1 25636:1 25665:1 25668:1 25702:1 25718:2 25747:1 25752:1 25770:1 25784:1 25796:1 25803:1 25811:1 25812:1 25862:1 25876:1 25896:1 25898:1 25902:1 25914:1 25965:1 26018:1 26054:1 26113:1 26155:1 26157:1 26166:1 26211:2 26256:1 26271:1 26339:1 26411:1 26435:1 26460:1 26534:1 26625:1 26688:1 26716:1 26813:1 26828:3 26845:2 26861:1 26887:1 26921:1 26964:1 26994:1 26998:2 27000:1 27037:1 27075:1 27093:1 27190:1 27209:1 27213:1 27217:1 27224:1 27246:1 27252:2 27292:1 27328:2 27412:1 27422:1 27457:1 27462:2 27563:1 27600:1 27628:1 27678:1 27689:1 27799:3 27803:2 27835:1 27853:1 27874:1 27878:1 27879:1 27904:1 27988:1 27992:1 28006:1 28012:1 28019:1 28037:1 28061:1 28072:2 28084:1 28108:1 28132:1 28174:1 28207:1 28208:1 28210:1 28224:1 28228:1 28262:1 28374:2 28397:1 28442:1 28509:1 28526:1 28538:1 28551:1 28562:1 28581:1 28604:1 28620:1 28638:1 28670:1 28674:1 28689:1 28720:2 28745:1 28766:1 28781:1 28792:1 28810:1 28827:2 28848:1 28992:1 29049:1 29059:1 29115:1 29134:1 29139:2 29141:1 29145:1 29198:1 29303:1 29356:1 29392:2 29453:1 29455:1 29463:1 29600:1 29628:1 29633:1 29638:1 29640:1 29647:1 29740:1 29746:1 29760:1 29770:1 29792:1 29822:1 29853:1 29878:1 29894:1 29899:1 29947:1 29993:1 30007:1 30012:1 30016:1 30044:1 30083:1 30096:1 30169:1 30186:1 30202:1 30203:1 30209:1 30210:1 30262:1 30269:1 30335:1 30345:1 30355:1 30488:2 30533:1 30559:1 30564:2 30590:1 30675:2 30692:1 30799:1 30836:2 30879:2 30896:1 30944:1 31017:1 31020:1 31025:1 31036:1 31057:3 31080:1 31095:1 31126:1 31156:2 31188:1 31281:1 31335:1 31342:1 31348:1 31360:1 31379:1 31401:1 31449:3 31567:2 31593:1 31606:1 31624:1 31628:1 31653:1 31659:1 31662:1 31688:1 31837:1 31849:1 31896:1 31950:1 31984:1 31994:1 32080:1 32109:1 32163:1 32217:1 32244:1 32245:1 32250:1 32254:1 32257:1 32267:1 32298:1 32303:1 32333:2 32337:1 32343:1 32378:1 32382:1
15 71:1 104:1 167:1 189:1 200:1 267:1 285:3 335:1 337:1 370:1 406:1 409:1 463:1 503:1 529:1 541:2 586:1 612:1 622:1 623:1 645:2 649:1 655:1 666:1 685:1 696:1 697:2 699:1 768:1 892:1 928:1 958:1 961:1 963:2 968:1 985:1 1020:2 1119:1 1149:1 1150:1 1167:1 1205:1 1235:1 1259:1 1288:1 1297:1 1328:1 1337:1 1367:1 1374:2 1385:1 1396:1 1407:2 1408:1 1429:1 1458:1 1483:1 1500:1 1577:1 1592:2 1641:2 1642:1 1651:1 1656:1 1686:1 1733:3 1744:1 1749:2 1810:2 1813:1 1821:2 1822:1 1842:1 1843:1 1897:1 1948:1 1981:2 2013:1 2042:1 2043:2 2050:2 2052:1 2091:1 2159:2 2171:1 2177:1 2201:1 2359:1 2364:1 2386:1 2426:1 2462:1 2495:1 2503:1 2509:1 2516:1 2520:1 2522:1 2524:1 2525:1 2547:1 2561:1 2607:1 2636:1 2677:1 2678:1 2707:1 2711:1 2814:1 2844:1 2991:1 3091:1 3109:1 3138:1 3155:1 3161:2 3169:1 3198:1 3216:1 3238:1 3247:1 3333:1 3356:2 3411:1 3443:1 3483:1 3548:1 3646:3 3658:1 3671:1 3735:3 3736:1 3779:1 3803:1 3891:1 3929:1 3964:1 4002:1 4006:1 4018:1 4055:1 4066:1 4083:1 4102:1 4105:1 4131:2 4152:1 4183:1 4189:1 4214:1 4252:2 4255:2 4260:1 4305:1 4310:1 4340:1 4422:2 4454:1 4462:1 4537:1 4563:1 4609:1 4629:2 4657:1 4665:2 4669:1 4685:1 4736:1 4748:3 4773:1 4863:1 4873:1 4880:1 4889:1 4932:1 4938:1 4954:1 5001:1 5026:2 5035:1 5054:1 5058:2 5074:1 5162:1 5178:1 5186:1 5187:2 5206:1 5242:1 5247:2 5327:1 5336:1 5382:1 5418:1 5500:1 5520:1 5521:1 5529:1 5535:1 5541:1 5548:1 5551:1 5578:1 5690:1 5697:2 5757:1 5767:1 5774:1 5792:1 5805:1 5823:1 5843:3 5928:1 5941:3 5963:1 5967:1 5980:1 5983:1 5998:2 6031:1 6037:1 6051:1 6085:1 6171:1 6218:1 6232:1 6287:1 6310:1 6333:1 6390:1 6394:1 6395:1 6423:2 6488:1 6594:1 6628:2 6725:1 6749:1 6775:1 6780:1 6825:2 6831:1 6850:1 6920:1 6945:1 6955:1 7035:1 7037:1 7058:1 7060:1 7066:1 7071:1 7119:1 7129:1 7152:1 7165:1 7168:2 7184:1 7189:2 7220:1 7231:2 7308:1 7325:2 7330:1 7331:2 7338:1 7365:1 7389:1 7406:1 7432:1 7453:1 7456:1 7489:1 7526:1 7527:1 7613:1 7625:1 7629:3 7679:1 7732:1 7758:1 7785:1 7797:1 7811:1 7824:1 7884:2 7887:2 7923:2 7979:1 8047:1 8099:1 8137:1 8219:1 8253:1 8262:2 8288:1 8305:1 8324:2 8327:1 8329:1 8335:2 8344:1 8393:1 8414:1 8448:1 8459:2 8461:1 8462:1 8521:1 8551:3 8569:1 8602:1 8607:1 8609:1 8620:5 8641:2 8642:1 8669:1 8689:2 8697:1 8707:1 8746:1 8833:1 8855:1 8957:1 8975:1 8979:1 8985:1 8995:1 9076:1 9082:1 9087:2 9088:1 9092:1 9110:1 9157:8 9170:1 9207:1 9208:2 9214:1 9222:1 9253:1 9282:1 9298:1 9397:1 9406:1 9456:1 9499:1 9534:1 9605:1 9610:1 9611:1 9656:1 9698:1 9719:1 9769:1 9777:2 9824:1 9825:1 9826:1 9836:1 9849:1 9853:1 9921:1 9950:1 9992:2 10114:1 10193:1 10202:1 10260:1 10269:2 10279:1 10306:1 10314:1 10326:1 10357:1 10362:1 10365:1 10390:1 10472:2 10556:1 10572:2 10629:1 10640:1 10650:2 10656:1 10719:1 10753:1 10771:1 10782:1 10783:1 10796:1 10797:1 10874:1 10931:2 10947:1 10954:1 10990:1 11020:1 11115:1 11159:2 11274:1 11293:1 11298:1 11326:1 11342:1 11386:1 11390:1 11403:1 11423:1 11442:1 11451:1 11486:1 11554:1 11584:1 11594:1 11600:1 11601:1 11608:2 11701:1 11706:1 11717:1 11737:1 11769:1 11808:1 11809:1 11810:1 11834:1 11850:3 11888:1 11921:1 11926:2 11959:1 11977:1 12035:1 12043:2 12149:1 12189:1 12230:1 12275:2 12300:2 12312:1 12343:1 12408:1 12420:1 12442:2 12475:1 12486:1 12496:1 12509:1 12510:2 12536:1 12570:2 12632:1 12654:1 12688:2 12705:1 12716:3 12722:1 12744:1 12776:1 12784:1 12822:1 12843:1 12846:1 12860:1 12865:1 12922:1 12933:1 12965:1 13041:1 13092:2 13121:1 13173:1 13186:1 13265:2 13269:1 13297:2 13351:1 13405:1 13434:1 13502:2 13511:1 13513:1 13546:1 13575:1 13581:1 13626:3 13650:1 13654:2 13658:1 13674:1 13688:1 13698:3 13714:1 13728:1 13757:1 13778:1 13834:1 13864:1 13890:1 13901:1 13940:1 13969:1 14011:1 14045:1 14067:1 14122:1 14129:1 14198:1 14206:1 14243:1 14266:1 14267:1 14291:1 14302:1 14329:3 14356:1 14371:2 14472:1 14505:1 14584:1 14601:1 14603:1 14623:1 14632:2 14773:1 14783:1 14821:2 14841:1 14850:1 14872:1 14887:3 14905:1 14910:1 14976:1 14978:2 14992:1 14994:1 15000:1 15039:1 15048:1 15075:2 15135:2 15139:1 15183:1 15218:1 15243:3 15263:1 15325:1 15401:1 15450:1 15489:1 15516:1 15663:1 15674:1 15681:1 15817:1 15840:1 15899:1 15948:1 16011:1 16025:1 16030:1 16087:1 16113:1 16182:1 16209:1 16277:1 16321:1 16352:1 16371:1 16426:1 16460:1 16480:1 16523:1 16528:1 16540:2 16548:6 16697:2 16739:1 16760:1 16777:4 16849:1 16870:1 16897:1 16916:4 16917:1 16940:1 16941:1 17054:1 17061:1 17091:1 17102:1 17116:1 17117:1 17148:1 17256:1 17290:1 17297:1 17354:1 17376:1 17388:1 17408:1 17461:1 17513:1 17525:2 17538:1 17583:1 17624:3 17701:1 17716:2 17717:2 17757:1 17770:1 17772:1 17778:1 17787:1 17804:4 17812:1 17876:1 17877:1 17879:2 17899:1 17906:1 17921:1 17986:1 17993:1 18041:1 18054:1 18055:1 18077:1 18089:1 18109:1 18147:1 18152:1 18156:3 18159:2 18164:1 18169:1 18182:1 18334:1 18339:2 18346:1 18355:1 18445:3 18509:1 18573:1 18582:1 18624:1 18634:1 18678:1 18753:1 18754:1 18774:1 18829:3 18836:1 18880:1 18920:1 18931:1 18937:1 18944:1 18994:1 19022:1 19040:1 19041:1 19060:1 19097:1 19120:1 19163:1 19224:1 19234:1 19290:1 19302:1 19417:1 19467:1 19469:1 19473:2 19477:1 19485:1 19489:1 19490:1 19553:3 19555:1 19614:1 19651:1 19665:3 19678:3 19739:1 19764:1 19816:1 19876:1 19884:1 19887:1 19970:1 19977:1 19980:1 20074:1 20081:1 20126:1 20152:2 20230:1 20306:1 20318:1 20355:1 20358:1 20394:2 20402:1 20411:1 20480:2 20522:1 20551:1 20590:1 20605:1 20613:1 20634:1 20714:1 20753:1 20757:1117 20781:1 20875:1 20963:1 20977:1 20991:1 20999:1 21000:1 21109:1 21133:1 21167:1 21190:1 21233:1 21259:1 21262:2 21266:1 21330:1 21337:1 21423:1 21472:1 21551:1 21553:1 21617:1 21643:1 21649:1 21669:1 21710:1 21737:1 21778:1 21806:2 21878:1 21982:1 21988:1 22007:1 22042:1 22043:1 22182:1 22251:1 22252:1 22277:1 22278:2 22299:2 22305:1 22320:1 22361:1 22493:1 22552:1 22655:2 22712:1 22722:1 22784:1 22819:1 22824:1 22848:1 22867:2 22872:1 22894:3 22897:1 22901:1 22912:1 22963:1 23039:1 23042:1 23068:1 23114:1 23136:1 23157:2 23175:1 23198:1 23202:1 23213:1 23264:1 23287:1 23291:1 23302:1 23322:1 23421:1 23427:1 23430:1 23438:1 23453:1 23454:1 23472:1 23473:1 23478:1 23487:1 23555:1 23600:3 23618:1 23661:1 23704:1 23730:1 23746:1 23839:1 23907:1 23930:1 23938:1 23945:1 23958:1 23973:1 24136:1 24139:1 24162:1 24174:1 24224:1 24280:1 24300:1 24322:1 24333:1 24355:1 24384:1 24391:1 24414:1 24475:1 24507:1 24524:1 24563:1 24718:1 24742:1 24755:1 24770:1 24776:1 24793:3 24858:1 24896:1 24898:1 24965:1 24996:1 25007:1 25046:1 25059:1 25121:1 25364:1 25483:1 25485:1 25504:1 25559:1 25588:1 25591:1 25607:1 25634:1 25636:1 25665:1 25668:1 25702:1 25718:2 25747:1 25752:1 25770:1 25784:2 25796:1 25803:1 25811:1 25812:1 25860:1 25862:1 25876:2 25896:1 25898:1 25902:1 25905:1 25914:1 25965:2 26018:1 26054:1 26113:1 26135:1 26155:1 26157:1 26166:1 26211:2 26219:1 26256:1 26271:1 26339:1 26411:1 26435:1 26460:1 26534:1 26625:1 26639:1 26688:1 26713:1 26716:1 26813:1 26828:3 26845:2 26861:1 26887:1 26921:1 26964:1 26994:1 26998:3 27000:1 27037:1 27047:1 27075:1 27093:1 27177:1 27190:1 27209:1 27213:1 27217:1 27224:1 27246:1 27252:2 27292:1 27328:2 27412:1 27422:1 27457:1 27462:3 27563:1 27600:1 27628:1 27678:1 27689:1 27799:3 27803:2 27835:1 27853:1 27874:1 27878:1 27879:1 27904:1 27988:1 27992:1 28006:1 28012:1 28019:1 28037:1 28061:1 28072:2 28084:1 28108:1 28132:2 28139:1 28174:1 28207:1 28208:1 28210:1 28224:1 28228:1 28262:1 28374:2 28397:1 28442:1 28509:1 28526:1 28538:1 28551:1 28562:1 28581:1 28604:1 28620:1 28638:1 28670:1 28674:1 28689:1 28720:2 28745:1 28766:1 28781:1 28792:1 28810:1 28827:2 28848:1 28946:1 28992:1 29049:1 29054:1 29059:1 29115:1 29125:1 29134:1 29139:3 29141:1 29145:1 29198:1 29303:1 29356:1 29392:2 29453:1 29455:1 29463:1 29600:1 29628:1 29633:1 29638:1 29640:1 29647:1 29740:1 29746:1 29760:1 29770:1 29792:1 29822:1 29853:1 29878:1 29894:1 29899:1 29947:1 29993:1 30007:1 30012:1 30016:1 30044:1 30083:1 30096:1 30169:1 30186:1 30202:1 30203:1 30209:1 30210:1 30262:1 30266:1 30269:1 30335:1 30345:1 30355:1 30390:1 30488:2 30533:1 30559:1 30564:2 30590:1 30663:1 30675:2 30692:1 30727:1 30799:1 30836:2 30862:1 30879:2 30896:1 30944:1 31017:1 31020:1 31025:1 31036:1 31057:3 31080:1 31095:1 31126:1 31156:2 31179:1 31188:2 31281:2 31330:1 31335:1 31342:1 31348:1 31360:1 31379:1 31398:1 31401:1 31402:1 31449:3 31567:2 31593:1 31606:1 31624:1 31628:1 31635:1 31653:1 31659:1 31662:1 31688:1 31837:1 31849:1 31896:1 31950:1 31984:1 31994:1 32080:1 32109:1 32163:1 32217:1 32244:1 32245:1 32250:1 32254:1 32257:1 32267:1 32278:1 32298:1 32303:1 32306:1 32333:2 32337:1 32343:1 32378:1 32382:1
15 71:2 104:1 167:1 189:1 200:1 267:1 285:3 335:1 337:1 370:1 406:1 409:1 463:1 503:1 529:1 541:2 586:1 612:1 622:1 623:1 645:2 649:1 655:1 666:1 685:1 696:1 697:2 699:1 768:1 892:1 928:2 958:1 961:1 963:2 968:1 985:1 1020:2 1052:1 1119:1 1149:1 1150:1 1167:1 1205:1 1210:1 1235:1 1259:1 1288:1 1297:1 1328:1 1337:1 1367:1 1374:2 1385:1 1396:1 1407:2 1408:1 1429:1 1458:1 1483:1 1500:1 1513:1 1577:1 1592:3 1641:2 1642:1 1651:1 1656:1 1686:1 1724:1 1725:1 1733:3 1744:1 1749:2 1810:2 1813:1 1821:2 1822:1 1842:1 1843:2 1897:1 1948:1 1981:2 2013:1 2042:1 2043:2 2050:2 2052:1 2091:1 2159:2 2171:1 2177:1 2201:1 2359:1 2364:1 2386:1 2426:1 2462:1 2495:1 2503:1 2509:1 2516:1 2520:1 2522:1 2524:1 2525:1 2547:1 2561:1 2607:2 2636:1 2677:1 2678:1 2707:1 2711:1 2814:1 2844:1 2991:1 3091:1 3109:1 3138:1 3155:1 3161:2 3169:1 3198:1 3216:1 3228:1 3238:1 3247:1 3333:1 3356:2 3411:1 3443:1 3483:1 3548:1 3562:1 3646:3 3658:1 3671:1 3735:3 3736:1 3779:1 3803:1 3891:1 3929:1 3964:1 4002:1 4006:1 4018:1 4055:1 4066:1 4083:1 4102:1 4105:1 4131:2 4152:1 4183:1 4189:1 4214:2 4250:1 4252:3 4255:2 4260:1 4282:1 4305:1 4310:1 4340:1 4422:2 4445:1 4454:1 4462:1 4537:1 4563:1 4609:1 4629:2 4657:1 4665:2 4669:1 4685:1 4736:1 4748:3 4773:1 4781:1 4832:1 4863:1 4873:1 4880:1 4889:1 4932:2 4938:1 4954:1 5001:1 5012:1 5017:2 5026:2 5035:1 5054:1 5058:2 5074:1 5131:1 5162:1 5178:1 5186:1 5187:2 5206:1 5242:1 5247:2 5327:1 5336:1 5382:1 5418:1 5500:1 5520:1 5521:1 5529:1 5535:1 5541:1 5542:1 5548:1 5551:1 5578:1 5690:1 5697:2 5712:1 5757:1 5767:1 5774:1 5792:1 5805:1 5823:1 5843:3 5928:1 5941:4 5963:1 5967:1 5980:1 5983:1 5998:3 6027:1 6031:1 6037:1 6051:1 6085:1 6171:1 6218:1 6232:1 6287:1 6310:1 6333:1 6350:1 6390:1 6394:1 6395:2 6423:2 6488:1 6594:1 6628:2 6725:1 6745:1 6749:1 6775:1 6780:1 6825:2 6831:1 6850:1 6920:1 6945:1 6955:1 7035:1 7037:1 7058:1 7060:1 7066:1 7071:1 7119:1 7129:1 7152:1 7165:2 7168:2 7184:1 7189:2 7220:1 7231:2 7308:1 7325:2 7328:1 7330:1 7331:2 7338:1 7365:1 7370:1 7389:1 7406:1 7432:2 7453:1 7456:1 7489:1 7526:1 7527:1 7610:1 7613:1 7625:1 7629:4 7679:1 7732:1 7758:1 7785:1 7797:1 7811:1 7824:1 7884:2 7887:2 7923:2 7960:1 7979:1 8047:1 8059:1 8099:1 8137:1 8219:2 8253:1 8262:2 8288:1 8305:1 8324:2 8327:1 8329:1 8335:2 8344:1 8393:1 8414:1 8448:1 8459:2 8461:1 8462:1 8521:1 8551:3 8569:1 8602:1 8607:1 8609:1 8620:5 8641:2 8642:1 8669:1 8689:2 8697:1 8707:1 8746:1 8833:1 8855:1 8957:1 8975:1 8979:1 8985:1 8995:1 9076:1 9082:2 9087:2 9088:1 9092:1 9110:1 9157:8 9170:1 9207:1 9208:2 9214:1 9216:1 9222:1 9253:1 9282:1 9298:1 9397:1 9406:1 9456:1 9499:1 9534:1 9605:1 9610:1 9611:1 9656:1 9698:1 9719:1 9769:1 9777:2 9824:2 9825:1 9826:3 9836:1 9849:1 9853:1 9921:1 9928:1 9943:1 9950:1 9992:3 10114:1 10193:1 10202:1 10255:1 10260:1 10269:2 10279:1 10306:1 10314:1 10326:1 10357:1 10362:1 10365:1 10390:1 10472:2 10556:1 10572:2 10574:1 10629:1 10640:1 10650:2 10656:1 10719:1 10753:1 10771:1 10782:1 10783:1 10795:1 10796:1 10797:1 10874:1 10931:3 10947:1 10954:1 10990:1 11020:1 11115:1 11159:2 11274:1 11293:1 11298:1 11326:1 11342:1 11386:1 11390:1 11403:1 11423:1 11442:1 11451:1 11486:1 11536:1 11554:1 11584:1 11594:1 11600:1 11601:1 11608:3 11701:1 11706:1 11717:1 11737:1 11769:1 11808:1 11809:2 11810:1 11834:1 11850:3 11888:1 11921:1 11926:3 11959:1 11977:1 12035:1 12043:2 12149:1 12189:1 12230:1 12242:1 12275:2 12300:2 12312:1 12343:1 12408:1 12420:1 12442:2 12458:1 12475:1 12476:1 12486:1 12496:1 12497:1 12509:1 12510:2 12536:1 12563:1 12570:2 12632:1 12654:1 12688:2 12705:1 12716:4 12722:1 12735:1 12744:1 12776:1 12784:1 12822:1 12843:1 12846:1 12860:1 12865:1 12922:1 12933:1 12965:1 13017:1 13041:1 13092:2 13121:1 13173:1 13186:1 13265:2 13269:1 13297:3 13351:2 13405:1 13434:1 13502:2 13511:1 13513:1 13546:1 13575:1 13581:1 13626:4 13650:1 13654:2 13658:1 13674:1 13688:1 13698:3 13714:1 13728:1 13757:1 13778:2 13834:1 13864:1 13873:1 13890:1 13901:1 13940:1 13969:1 14011:1 14045:1 14067:1 14122:1 14129:1 14198:1 14206:1 14243:1 14266:1 14267:1 14291:1 14302:1 14329:3 14356:1 14371:2 14472:1 14505:1 14584:1 14601:1 14603:1 14623:1 14632:2 14773:1 14783:1 14821:3 14841:1 14850:1 14872:1 14887:3 14905:1 14910:1 14976:1 14978:3 14992:1 14994:1 15000:1 15039:1 15048:1 15075:4 15135:2 15139:1 15183:1 15218:1 15243:3 15263:1 15325:1 15401:1 15450:1 15489:1 15496:1 15516:1 15647:1 15663:1 15674:1 15681:1 15817:1 15840:1 15899:1 15948:1 16011:1 16025:1 16030:1 16087:1 16113:1 16182:1 16209:1 16277:1 16321:1 16352:1 16371:1 16426:1 16460:1 16480:1 16523:1 16528:1 16540:2 16548:6 16697:2 16739:1 16760:1 16766:1 16777:6 16849:1 16870:1 16897:1 16916:6 16917:1 16940:1 16941:1 17016:1 17054:1 17061:1 17091:1 17102:1 17116:1 17117:1 17148:1 17256:1 17290:1 17297:1 17354:1 17376:1 17388:1 17408:1 17461:1 17513:1 17525:2 17538:1 17583:1 17624:3 17701:1 17716:2 17717:2 17757:1 17770:1 17772:1 17778:1 17787:1 17804:4 17812:1 17876:1 17877:1 17879:4 17899:1 17906:2 17921:1 17935:1 17986:1 17993:1 18041:1 18054:1 18055:1 18077:1 18089:1 18109:1 18147:1 18152:1 18156:3 18159:2 18164:1 18169:1 18182:1 18334:1 18339:2 18346:1 18355:1 18424:1 18445:4 18493:1 18509:1 18573:1 18582:1 18624:1 18634:1 18678:1 18753:1 18754:1 18767:1 18774:1 18829:3 18836:1 18880:2 18920:1 18931:1 18937:1 18944:1 18994:1 19022:1 19030:1 19040:1 19041:1 19060:1 19097:1 19120:1 19154:1 19163:1 19224:1 19234:1 19290:1 19302:1 19417:1 19467:1 19469:1 19473:2 19477:1 19485:1 19489:1 19490:1 19553:3 19555:3 19614:1 19651:1 19665:3 19678:3 19739:1 19764:1 19816:1 19876:1 19884:1 19887:1 19970:1 19977:1 19980:1 20074:1 20081:1 20112:1 20126:1 20132:1 20152:2 20230:1 20306:1 20318:1 20355:1 20358:1 20394:2 20402:1 20411:1 20480:2 20522:1 20531:1 20551:1 20590:1 20605:1 20613:3 20624:1 20634:1 20714:1 20753:1 20757:1250 20781:1 20875:1 20912:1 20950:1 20963:1 20977:1 20991:1 20999:1 21000:1 21109:1 21133:1 21167:1 21190:1 21233:1 21259:1 21262:3 21266:1 21330:1 21337:1 21423:1 21472:1 21521:1 21551:1 21553:2 21617:1 21643:1 21649:1 21669:1 21700:1 21710:1 21737:3 21778:1 21806:2 21878:1 21982:1 21988:1 22007:1 22042:1 22043:1 22105:1 22182:1 22207:1 22251:1 22252:1 22277:1 22278:3 22299:3 22305:1 22320:1 22361:1 22493:1 22552:1 22655:3 22712:1 22722:1 22784:1 22819:1 22824:1 22848:1 22867:2 22872:1 22894:3 22897:1 22901:1 22903:1 22912:1 22963:1 23039:1 23042:1 23068:2 23112:1 23114:1 23136:1 23145:1 23157:3 23163:1 23175:1 23183:1 23198:3 23202:1 23213:1 23264:1 23287:1 23291:1 23302:1 23322:1 23421:1 23427:1 23430:1 23438:1 23453:1 23454:1 23456:2 23472:1 23473:1 23478:1 23487:1 23555:1 23572:1 23600:3 23618:1 23661:1 23704:1 23730:1 23746:1 23839:1 23907:1 23927:1 23930:1 23938:1 23945:1 23958:1 23973:1 24136:1 24139:1 24162:1 24174:1 24224:1 24280:1 24287:1 24300:1 24322:1 24333:1 24355:1 24384:1 24391:1 24414:1 24475:1 24507:1 24524:1 24563:1 24718:1 24742:1 24755:1 24770:1 24776:1 24793:4 24858:1 24896:1 24898:1 24965:1 24996:1 25007:1 25046:1 25059:1 25121:1 25364:1 25383:1 25483:1 25485:1 25504:1 25559:1 25588:1 25591:1 25605:1 25607:1 25615:1 25634:1 25636:1 25665:1 25668:1 25702:1 25718:2 25747:1 25752:1 25770:1 25784:2 25796:1 25803:1 25811:1 25812:1 25860:1 25862:1 25876:2 25896:1 25898:1 25902:1 25905:1 25914:1 25935:1 25965:2 26018:1 26054:1 26068:1 26113:1 26135:1 26155:1 26157:1 26166:1 26173:1 26211:2 26219:1 26256:1 26271:1 26339:1 26411:1 26435:1 26460:1 26534:1 26625:1 26639:1 26688:1 26713:1 26716:1 26813:1 26828:3 26845:4 26861:1 26887:1 26921:1 26964:1 26994:1 26998:3 27000:2 27037:1 27047:1 27075:1 27093:1 27135:1 27177:1 27190:2 27209:2 27213:3 27217:1 27224:1 27246:1 27252:2 27292:1 27328:2 27412:1 27422:1 27457:1 27462:3 27563:1 27600:1 27628:1 27678:1 27689:1 27799:3 27803:3 27835:1 27853:1 27874:1 27878:1 27879:1 27904:1 27964:1 27978:1 27988:1 27992:1 28006:1 28012:1 28019:1 28037:1 28061:2 28072:3 28084:1 28108:1 28132:2 28139:1 28174:1 28207:1 28208:1 28210:1 28224:1 28228:1 28262:1 28344:1 28374:2 28384:1 28397:1 28442:1 28509:1 28526:1 28538:1 28551:1 28562:1 28571:1 28581:1 28587:1 28604:1 28620:1 28638:1 28670:1 28674:1 28689:1 28720:2 28745:1 28766:1 28781:1 28792:1 28810:1 28827:2 28848:1 28946:1 28992:1 29042:1 29049:1 29054:1 29059:1 29115:1 29125:1 29134:1 29139:3 29141:1 29145:1 29198:1 29303:1 29356:1 29392:2 29413:1 29453:1 29455:2 29463:1 29494:1 29600:1 29628:1 29633:1 29638:1 29640:1 29647:2 29727:1 29740:1 29746:2 29760:1 29770:1 29792:1 29822:1 29853:1 29878:1 29894:1 29899:1 29947:1 29993:1 30007:1 30012:2 30016:1 30044:1 30083:1 30096:1 30169:1 30186:1 30202:1 30203:1 30209:1 30210:1 30262:1 30266:1 30269:1 30309:1 30335:1 30345:2 30355:1 30390:1 30488:2 30533:1 30559:1 30564:2 30590:1 30663:1 30675:2 30692:1 30727:1 30799:1 30836:2 30841:1 30862:1 30879:3 30896:1 30944:1 31017:1 31020:1 31025:1 31036:1 31057:3 31080:1 31095:1 31112:1 31126:1 31156:2 31179:1 31188:2 31281:2 31330:1 31335:1 31342:1 31348:1 31360:1 31379:1 31398:1 31401:1 31402:1 31449:3 31567:2 31593:2 31606:1 31624:1 31628:1 31635:1 31653:1 31659:1 31662:1 31688:1 31837:1 31849:1 31896:1 31950:1 31984:1 31994:1 32080:1 32109:1 32163:1 32217:1 32244:1 32245:1 32250:1 32254:1 32257:1 32267:1 32278:1 32298:1 32303:1 32306:1 32333:2 32337:1 32343:1 32378:1 32382:1
15 71:2 91:1 104:1 167:1 189:1 200:1 267:1 285:3 335:1 337:1 370:1 406:1 409:1 463:1 503:2 529:1 541:2 586:1 612:1 622:1 623:1 645:2 649:1 655:1 666:1 685:1 696:1 697:2 699:1 768:1 892:1 928:2 935:1 958:1 961:1 963:2 968:1 985:1 1020:2 1052:1 1119:1 1149:1 1150:1 1167:1 1205:1 1210:1 1235:1 1259:1 1288:1 1297:1 1328:1 1337:1 1367:1 1374:2 1385:1 1396:1 1407:2 1408:1 1429:1 1458:1 1483:1 1500:1 1513:1 1577:1 1592:3 1641:2 1642:1 1651:1 1656:1 1686:1 1724:1 1725:1 1733:3 1744:1 1749:2 1810:2 1813:1 1821:2 1822:1 1842:1 1843:2 1897:1 1948:1 1981:2 2013:1 2042:1 2043:2 2050:2 2052:1 2091:1 2156:1 2159:2 2171:1 2177:1 2201:1 2359:1 2364:1 2386:1 2426:1 2462:1 2463:1 2495:1 2503:1 2505:1 2509:1 2516:1 2520:1 2522:1 2524:1 2525:1 2547:1 2561:1 2607:2 2636:1 2677:1 2678:1 2707:1 2711:1 2814:1 2844:1 2991:1 3028:2 3091:1 3109:1 3138:1 3155:1 3161:2 3169:2 3198:1 3216:3 3228:1 3238:1 3242:1 3247:1 3333:1 3356:2 3411:1 3443:1 3483:1 3548:2 3562:1 3646:3 3658:1 3671:1 3699:1 3735:3 3736:1 3779:1 3803:1 3891:1 3929:1 3964:1 4002:1 4006:1 4018:1 4055:1 4066:1 4083:1 4102:1 4105:1 4130:1 4131:2 4152:1 4183:1 4189:1 4214:2 4250:1 4252:3 4255:2 4260:1 4282:1 4291:1 4305:1 4310:1 4340:1 4422:2 4445:1 4454:1 4462:1 4537:1 4563:1 4609:1 4629:2 4657:1 4665:2 4669:1 4685:1 4736:1 4748:4 4773:1 4781:1 4832:1 4863:1 4873:1 4880:1 4889:1 4932:2 4938:1 4954:1 5001:1 5012:1 5017:2 5026:2 5035:1 5054:1 5058:2 5074:1 5131:1 5162:1 5178:1 5186:1 5187:2 5206:1 5242:1 5247:2 5327:1 5336:1 5382:3 5418:1 5500:2 5520:2 5521:1 5529:1 5535:1 5541:1 5542:1 5548:1 5551:1 5578:1 5690:1 5697:2 5712:1 5757:1 5767:1 5774:1 5792:1 5805:1 5823:1 5843:3 5928:1 5941:4 5963:1 5967:1 5980:1 5983:1 5998:3 6027:1 6031:1 6037:1 6051:1 6085:1 6171:1 6218:1 6232:1 6287:1 6310:1 6333:1 6350:1 6390:1 6394:1 6395:2 6423:2 6488:1 6594:1 6628:2 6725:1 6745:1 6749:1 6775:1 6780:1 6825:2 6831:1 6850:1 6920:1 6945:1 6955:1 7035:1 7037:1 7058:1 7060:1 7064:1 7066:1 7071:2 7119:1 7129:1 7152:1 7165:2 7168:2 7184:1 7189:2 7220:2 7229:1 7231:2 7308:1 7325:2 7328:1 7330:1 7331:2 7338:1 7365:1 7370:1 7389:1 7406:1 7432:2 7453:1 7456:1 7489:1 7526:1 7527:1 7610:1 7613:1 7625:1 7629:4 7679:1 7732:1 7746:1 7758:1 7774:1 7785:1 7797:1 7811:1 7824:1 7884:2 7887:2 7923:2 7960:1 7979:2 8047:1 8059:1 8087:1 8099:1 8137:2 8219:2 8253:1 8262:2 8288:1 8305:1 8324:2 8327:1 8329:1 8335:2 8344:1 8360:1 8393:1 8414:1 8448:1 8459:2 8461:1 8462:1 8521:1 8551:3 8569:1 8602:1 8607:1 8609:1 8620:7 8641:2 8642:3 8669:1 8689:2 8690:1 8697:1 8707:1 8746:1 8761:1 8833:1 8855:2 8860:1 8957:1 8975:1 8979:1 8985:1 8995:1 9076:1 9082:2 9087:2 9088:1 9092:1 9110:1 9157:9 9170:1 9207:1 9208:2 9214:1 9216:1 9222:1 9252:1 9253:1 9282:1 9298:1 9353:1 9397:1 9406:1 9456:1 9499:1 9534:1 9599:1 9605:1 9610:1 9611:1 9656:1 9698:1 9719:1 9769:1 9777:2 9824:2 9825:1 9826:3 9836:1 9849:1 9853:1 9921:1 9928:1 9943:1 9950:1 9992:3 10114:1 10193:1 10202:1 10255:1 10260:1 10269:2 10279:1 10306:1 10314:1 10326:1 10357:1 10362:1 10365:1 10390:1 10472:2 10556:1 10572:2 10574:1 10623:1 10629:1 10640:1 10650:2 10656:1 10719:1 10753:1 10771:1 10782:1 10783:1 10795:1 10796:1 10797:1 10874:1 10931:4 10947:1 10954:1 10990:1 11020:1 11115:1 11159:2 11213:1 11274:1 11293:1 11298:1 11326:1 11342:1 11386:1 11390:1 11403:1 11423:1 11442:1 11451:1 11486:1 11536:1 11554:1 11584:1 11594:1 11600:1 11601:1 11608:3 11701:1 11706:1 11717:1 11737:1 11769:1 11808:1 11809:2 11810:1 11834:1 11850:4 11888:1 11921:1 11926:3 11959:1 11977:1 12035:1 12043:2 12149:1 12189:1 12230:1 12242:1 12275:2 12300:2 12312:1 12343:1 12408:1 12420:1 12442:2 12458:1 12475:1 12476:1 12486:1 12496:1 12497:1 12509:1 12510:2 12536:1 12563:1 12570:2 12623:1 12632:1 12654:1 12688:2 12705:1 12716:4 12722:1 12735:1 12744:1 12764:1 12776:1 12784:1 12822:1 12843:1 12846:1 12860:1 12865:1 12922:1 12933:1 12965:1 13017:1 13041:1 13092:2 13121:1 13173:2 13178:1 13182:1 13186:1 13253:1 13265:2 13269:1 13297:3 13351:2 13405:1 13434:1 13502:2 13511:1 13513:1 13546:1 13575:1 13581:1 13626:4 13650:1 13654:2 13658:1 13674:1 13688:1 13698:3 13714:1 13728:2 13757:1 13778:2 13834:1 13864:1 13873:1 13890:1 13901:1 13940:1 13954:1 13969:1 14011:1 14045:1 14067:1 14122:1 14129:1 14198:1 14206:1 14243:1 14266:1 14267:1 14291:1 14302:1 14328:1 14329:3 14356:1 14371:2 14392:1 14472:1 14505:1 14584:1 14601:1 14603:1 14623:1 14632:2 14773:1 14783:1 14821:4 14841:1 14850:1 14872:1 14887:3 14905:1 14910:1 14976:1 14978:3 14992:1 14994:1 15000:1 15039:2 15048:1 15075:4 15081:1 15135:2 15139:1 15183:1 15218:1 15238:1 15243:3 15263:1 15291:1 15325:1 15401:1 15450:1 15489:1 15496:1 15516:1 15647:1 15663:1 15674:1 15681:1 15759:1 15805:1 15817:1 15840:1 15899:1 15948:1 16011:1 16025:1 16030:1 16087:1 16113:1 16182:1 16209:1 16272:1 16277:1 16321:1 16336:1 16352:1 16371:1 16426:1 16460:1 16480:1 16523:1 16528:1 16540:2 16548:6 16697:2 16739:1 16760:1 16766:1 16777:6 16824:1 16849:1 16870:1 16897:1 16916:6 16917:1 16940:1 16941:1 17016:1 17054:1 17061:1 17070:1 17091:1 17102:1 17116:1 17117:1 17148:1 17256:1 17290:1 17297:1 17354:1 17376:1 17388:1 17408:1 17461:1 17513:1 17525:2 17538:1 17580:1 17583:1 17624:3 17701:1 17716:2 17717:2 17757:1 17770:1 17772:1 17778:1 17787:1 17804:4 17812:1 17876:1 17877:1 17879:4 17899:1 17906:2 17921:1 17935:1 17986:1 17993:1 18041:2 18054:1 18055:1 18077:1 18089:1 18109:1 18121:1 18147:1 18152:1 18156:3 18159:2 18164:1 18169:1 18182:1 18334:1 18339:2 18346:1 18355:1 18410:1 18424:1 18445:4 18493:1 18509:1 18573:1 18582:1 18624:1 18634:1 18678:1 18709:1 18738:1 18742:1 18753:1 18754:1 18767:1 18774:2 18829:3 18836:1 18880:2 18920:1 18931:1 18937:1 18944:1 18994:1 19022:1 19030:1 19040:1 19041:1 19060:1 19067:1 19097:1 19120:1 19122:1 19154:1 19163:1 19224:1 19234:1 19290:1 19302:1 19417:1 19467:1 19469:1 19473:2 19477:1 19485:1 19489:1 19490:1 19526:1 19553:3 19555:3 19614:1 19651:1 19665:3 19678:3 19739:1 19764:1 19816:1 19876:1 19884:1 19887:1 19970:1 19977:1 19980:1 20074:1 20081:1 20112:1 20126:1 20132:1 20152:2 20230:1 20306:1 20318:1 20355:1 20358:1 20394:2 20402:1 20411:1 20480:2 20522:1 20531:1 20551:1 20590:1 20605:1 20613:3 20624:1 20634:1 20714:1 20753:1 20757:1357 20781:1 20875:1 20912:1 20941:1 20950:1 20963:1 20977:1 20991:1 20999:1 21000:1 21109:1 21133:1 21167:1 21190:1 21233:1 21259:1 21262:3 21266:1 21330:1 21337:1 21423:1 21472:1 21514:1 21521:1 21551:1 21553:2 21617:1 21643:1 21649:1 21669:1 21700:1 21710:1 21737:3 21778:1 21806:2 21878:1 21915:1 21974:1 21982:1 21988:1 22007:1 22042:1 22043:1 22105:1 22182:1 22207:1 22251:1 22252:2 22277:1 22278:3 22299:3 22305:1 22320:1 22361:1 22445:2 22493:1 22552:1 22655:3 22712:1 22722:1 22784:1 22819:1 22824:1 22838:1 22848:1 22867:2 22872:1 22894:3 22897:1 22901:1 22903:1 22912:1 22963:1 23006:1 23022:1 23039:1 23042:1 23068:2 23112:1 23114:1 23136:1 23145:1 23157:3 23163:1 23175:1 23183:1 23198:3 23202:1 23213:1 23264:1 23287:1 23291:1 23302:1 23322:1 23421:1 23427:1 23430:1 23438:1 23453:1 23454:1 23456:2 23472:1 23473:1 23478:1 23487:1 23555:1 23572:1 23600:3 23618:1 23661:1 23701:1 23704:1 23730:1 23746:1 23774:1 23839:1 23907:1 23927:1 23930:1 23938:1 23945:1 23958:2 23973:1 24136:1 24139:1 24162:2 24174:1 24224:1 24280:1 24287:1 24300:1 24322:1 24333:1 24355:1 24384:1 24391:1 24414:1 24475:1 24507:1 24524:1 24563:1 24718:1 24742:1 24755:1 24770:2 24776:1 24793:5 24800:1 24858:1 24896:1 24898:1 24965:1 24996:1 25007:1 25046:1 25059:1 25069:1 25121:1 25364:1 25383:1 25483:1 25485:1 25504:1 25559:1 25588:1 25591:1 25605:1 25607:1 25615:1 25634:1 25636:1 25665:1 25668:1 25702:1 25718:2 25747:1 25752:1 25770:1 25784:2 25796:1 25803:1 25811:2 25812:1 25860:1 25862:1 25876:2 25896:1 25898:1 25902:1 25905:1 25914:1 25935:1 25965:2 26018:1 26054:1 26068:1 26113:1 26135:1 26155:1 26157:1 26166:1 26173:1 26211:2 26219:1 26256:1 26271:1 26339:1 26411:1 26435:1 26460:1 26534:1 26625:1 26639:1 26688:1 26713:1 26716:1 26735:1 26813:1 26828:3 26845:4 26861:1 26887:1 26921:1 26964:1 26994:1 26998:3 27000:2 27037:1 27040:2 27047:1 27075:1 27093:1 27135:1 27177:1 27190:2 27209:2 27213:3 27217:1 27224:1 27246:1 27252:2 27292:1 27328:2 27412:1 27422:1 27457:1 27462:3 27563:1 27594:1 27600:1 27628:1 27678:1 27689:1 27799:3 27803:3 27835:1 27853:1 27874:1 27878:1 27879:1 27904:1 27964:1 27978:1 27988:1 27992:1 28006:1 28012:1 28019:1 28037:1 28061:2 28072:3 28084:1 28108:1 28132:2 28139:1 28174:1 28207:1 28208:1 28210:1 28224:1 28228:1 28262:1 28344:1 28374:2 28384:1 28397:1 28442:1 28507:1 28509:1 28526:1 28538:1 28551:1 28562:1 28571:1 28581:1 28587:1 28604:1 28620:1 28638:2 28670:1 28674:1 28689:1 28720:2 28745:1 28746:1 28766:1 28781:1 28792:1 28810:1 28827:2 28848:1 28854:1 28888:1 28946:1 28992:1 29042:1 29049:1 29051:1 29054:1 29059:1 29067:1 29115:1 29125:1 29134:1 29139:4 29141:1 29145:1 29198:1 29303:1 29334:1 29356:1 29392:2 29413:1 29453:1 29455:2 29463:1 29494:1 29600:1 29628:1 29633:1 29638:1 29640:1 29647:2 29727:1 29740:1 29746:2 29760:1 29770:1 29792:1 29822:1 29853:1 29878:1 29894:1 29899:1 29947:1 29993:1 30007:1 30012:2 30016:1 30044:1 30053:1 30083:1 30096:1 30169:1 30186:1 30202:1 30203:1 30209:1 30210:1 30262:1 30266:2 30269:1 30309:1 30335:1 30345:2 30355:1 30390:1 30392:1 30413:1 30488:2 30533:1 30559:1 30564:2 30590:1 30663:1 30675:2 30692:1 30727:1 30799:1 30836:3 30841:1 30862:1 30879:4 30896:1 30944:1 31017:1 31020:1 31025:1 31036:1 31057:3 31080:1 31095:1 31112:1 31126:1 31144:1 31156:2 31179:1 31188:2 31281:2 31330:1 31332:1 31335:1 31342:1 31348:1 31360:1 31379:1 31398:1 31401:1 31402:1 31449:3 31567:2 31593:2 31606:1 31624:1 31628:2 31635:1 31653:1 31659:1 31662:1 31688:1 31837:1 31849:1 31896:1 31950:1 31984:1 31994:1 32080:1 32109:1 32120:1 32163:1 32214:1 32217:1 32244:1 32245:1 32250:1 32254:1 32257:1 32267:1 32278:1 32298:1 32303:1 32306:1 32333:2 32337:1 32343:1 32378:1 32382:1
15 71:2 91:1 104:1 167:1 189:1 200:1 225:1 267:1 285:3 335:1 337:1 370:1 406:1 409:1 463:1 503:2 517:1 529:1 541:2 586:1 612:1 622:1 623:1 645:2 649:1 655:1 666:1 685:2 696:1 697:2 699:1 768:1 892:1 928:2 935:1 958:1 961:1 963:2 968:1 985:1 1020:2 1052:1 1119:1 1149:1 1150:1 1167:1 1205:1 1210:1 1235:1 1259:1 1288:1 1297:1 1328:1 1337:1 1367:1 1374:2 1385:1 1396:1 1407:2 1408:1 1429:1 1458:1 1465:1 1483:1 1500:1 1513:1 1577:1 1592:3 1641:2 1642:1 1651:1 1656:1 1686:1 1724:1 1725:1 1733:3 1744:1 1749:2 1810:2 1813:1 1821:2 1822:1 1842:1 1843:2 1897:1 1948:1 1973:1 1981:2 2013:1 2042:1 2043:2 2050:2 2052:1 2091:1 2156:1 2159:2 2171:1 2177:1 2201:1 2359:1 2364:1 2386:1 2426:1 2462:1 2463:1 2495:1 2503:2 2505:1 2509:1 2516:1 2520:1 2522:1 2524:1 2525:1 2533:1 2547:1 2561:1 2607:2 2636:1 2677:1 2678:1 2707:1 2711:1 2804:1 2814:1 2844:1 2991:1 3028:2 3091:1 3109:1 3138:2 3155:1 3161:2 3169:2 3198:2 3216:3 3228:1 3238:1 3242:1 3247:1 3333:1 3356:2 3411:1 3443:1 3483:1 3548:2 3562:1 3590:1 3646:3 3658:1 3671:1 3699:1 3735:3 3736:1 3779:1 3786:1 3803:1 3891:1 3929:1 3964:1 4002:1 4006:1 4018:1 4032:1 4055:1 4066:1 4083:1 4102:1 4105:1 4130:1 4131:2 4152:1 4183:1 4189:1 4214:2 4250:1 4252:3 4255:2 4260:1 4282:1 4291:1 4303:1 4305:1 4310:1 4340:1 4422:2 4445:1 4454:1 4462:1 4537:1 4563:1 4609:1 4629:2 4657:1 4665:2 4669:1 4685:1 4736:1 4748:4 4773:1 4781:1 4832:1 4863:1 4873:1 4880:1 4889:1 4932:2 4938:1 4954:1 5001:1 5012:1 5017:2 5026:2 5035:1 5054:1 5058:2 5074:1 5131:1 5162:1 5178:1 5186:1 5187:2 5206:1 5242:1 5247:2 5327:1 5336:1 5382:3 5418:1 5500:2 5520:2 5521:1 5529:1 5535:1 5541:1 5542:1 5546:1 5548:2 5551:1 5578:1 5679:1 5690:1 5697:2 5712:1 5757:1 5767:1 5774:1 5792:1 5805:1 5823:1 5829:1 5843:3 5928:1 5941:4 5963:1 5967:1 5980:1 5983:1 5998:3 6027:1 6031:1 6037:1 6050:1 6051:1 6085:1 6143:1 6171:1 6218:1 6232:1 6287:2 6310:1 6333:1 6350:1 6390:1 6394:1 6395:2 6423:2 6488:1 6594:1 6628:2 6725:1 6745:1 6749:1 6775:1 6780:1 6825:2 6831:1 6850:1 6920:1 6945:1 6955:1 7026:1 7035:1 7037:1 7058:1 7060:1 7064:1 7066:1 7071:2 7119:1 7129:1 7152:1 7165:2 7168:2 7184:1 7189:2 7220:2 7229:1 7231:2 7308:1 7325:2 7328:1 7330:1 7331:2 7338:1 7365:1 7370:1 7389:1 7406:1 7432:2 7453:1 7456:1 7489:1 7526:1 7527:1 7610:1 7613:1 7625:1 7629:4 7679:1 7732:1 7746:1 7758:1 7774:1 7785:1 7797:1 7811:1 7824:1 7884:2 7887:2 7923:2 7930:1 7960:1 7979:2 8047:1 8059:1 8087:1 8099:1 8137:2 8219:2 8235:1 8253:1 8262:2 8288:1 8305:1 8324:2 8327:1 8329:1 8335:2 8344:1 8360:1 8393:1 8414:1 8448:1 8459:3 8461:1 8462:1 8521:1 8551:3 8569:1 8602:1 8607:1 8609:1 8620:9 8641:2 8642:3 8669:1 8689:2 8690:1 8697:1 8707:1 8746:1 8761:1 8785:1 8833:1 8855:2 8860:1 8957:1 8975:1 8979:1 8985:1 8995:1 9076:1 9082:2 9087:2 9088:1 9092:1 9110:1 9157:9 9170:1 9207:1 9208:2 9214:1 9216:1 9222:1 9252:1 9253:1 9282:1 9298:1 9353:1 9397:1 9406:1 9456:1 9499:1 9534:1 9599:1 9605:1 9610:1 9611:1 9656:1 9698:1 9719:1 9769:1 9777:2 9824:2 9825:1 9826:4 9836:1 9849:1 9853:1 9921:1 9928:1 9943:1 9950:1 9992:3 10114:1 10193:1 10202:1 10255:1 10260:1 10269:2 10279:1 10306:1 10314:1 10326:1 10357:1 10362:1 10365:1 10390:1 10413:1 10472:2 10556:1 10572:2 10574:1 10623:1 10629:1 10640:1 10650:2 10656:1 10719:1 10753:1 10771:1 10782:1 10783:1 10795:1 10796:1 10797:1 10874:1 10931:4 10947:1 10954:1 10990:1 11020:1 11115:1 11159:3 11213:1 11274:1 11293:1 11298:1 11326:1 11342:1 11386:1 11390:1 11403:1 11423:1 11442:1 11451:1 11482:1 11486:1 11493:1 11536:1 11554:1 11584:1 11594:1 11600:1 11601:2 11608:3 11630:1 11701:1 11706:1 11717:1 11737:1 11769:1 11808:1 11809:2 11810:1 11834:1 11850:6 11888:1 11921:1 11926:3 11959:1 11977:1 12035:1 12043:2 12149:1 12189:1 12230:1 12242:1 12275:2 12300:2 12312:1 12343:1 12380:1 12408:1 12420:1 12442:2 12458:1 12475:1 12476:1 12486:1 12496:1 12497:2 12509:1 12510:2 12536:1 12563:1 12570:2 12623:1 12632:1 12654:1 12688:2 12705:1 12716:4 12722:1 12735:1 12744:1 12764:1 12776:1 12784:1 12822:1 12843:1 12846:1 12860:1 12865:1 12901:1 12922:1 12933:1 12965:1 13017:1 13041:1 13092:2 13121:1 13173:2 13178:1 13182:1 13186:1 13195:1 13253:1 13256:1 13265:2 13269:2 13297:3 13351:2 13405:1 13434:1 13502:2 13511:1 13513:1 13546:1 13575:1 13581:1 13626:4 13648:1 13650:1 13654:2 13658:1 13674:1 13688:1 13698:3 13714:1 13728:2 13740:1 13757:1 13778:2 13834:1 13864:1 13873:1 13890:1 13901:1 13940:1 13954:1 13969:1 14011:1 14045:1 14067:1 14117:1 14122:1 14129:1 14198:1 14206:1 14243:1 14266:1 14267:1 14275:1 14291:1 14302:1 14328:1 14329:3 14356:1 14371:2 14392:1 14472:1 14505:1 14584:1 14601:1 14603:1 14623:1 14632:2 14773:1 14783:1 14821:4 14841:1 14850:1 14872:1 14887:3 14905:1 14910:1 14976:1 14978:3 14992:1 14994:1 15000:1 15039:2 15048:1 15075:4 15081:1 15135:2 15139:1 15183:1 15218:1 15238:1 15243:3 15263:1 15291:1 15325:1 15401:1 15450:1 15489:1 15496:1 15516:1 15590:1 15596:1 15647:1 15663:1 15674:1 15681:1 15759:1 15802:1 15805:1 15817:1 15840:1 15853:1 15899:1 15948:1 16011:1 16025:1 16030:1 16087:1 16113:1 16182:1 16209:1 16272:1 16277:1 16292:1 16321:1 16336:1 16347:1 16352:1 16371:1 16426:1 16460:1 16480:1 16523:1 16528:1 16540:2 16548:6 16681:1 16697:2 16739:1 16760:1 16766:1 16777:6 16824:1 16849:1 16866:1 16870:1 16897:1 16916:6 16917:1 16940:1 16941:1 17016:1 17054:2 17061:1 17070:1 17091:1 17102:1 17116:1 17117:1 17148:1 17256:1 17282:1 17290:1 17297:1 17354:1 17376:1 17388:1 17408:1 17461:1 17513:1 17525:2 17538:1 17580:1 17583:1 17624:3 17701:1 17716:2 17717:2 17753:1 17757:1 17770:1 17772:1 17773:1 17778:1 17787:1 17804:4 17812:1 17876:1 17877:2 17879:4 17899:1 17906:2 17921:1 17935:1 17986:1 17993:1 18041:2 18054:1 18055:1 18077:1 18089:1 18109:1 18121:1 18147:1 18152:1 18156:3 18159:2 18164:1 18169:1 18182:1 18334:1 18339:2 18346:1 18355:1 18410:1 18424:1 18445:4 18493:1 18509:1 18537:1 18573:1 18582:1 18624:1 18634:1 18678:1 18709:1 18738:1 18742:1 18753:1 18754:1 18767:1 18774:2 18829:3 18836:1 18880:2 18920:1 18931:1 18937:1 18943:1 18944:1 18945:1 18994:1 19022:1 19030:1 19040:1 19041:1 19060:1 19067:1 19097:1 19120:1 19122:1 19154:1 19163:1 19224:1 19234:1 19290:1 19302:1 19417:1 19467:1 19469:1 19473:2 19477:1 19485:1 19489:1 19490:1 19526:1 19553:3 19555:3 19614:1 19651:1 19665:3 19678:3 19739:1 19764:1 19777:1 19816:1 19876:2 19884:1 19887:1 19900:1 19970:1 19977:1 19980:1 20073:1 20074:1 20081:1 20112:1 20126:1 20132:1 20152:2 20230:1 20306:1 20318:1 20355:1 20358:1 20394:2 20402:1 20411:1 20480:2 20522:1 20531:1 20551:1 20590:1 20605:1 20610:1 20613:3 20624:1 20634:1 20708:1 20714:1 20753:1 20757:1477 20781:1 20875:1 20912:1 20941:1 20950:1 20963:1 20977:1 20991:1 20999:1 21000:1 21073:1 21109:1 21111:1 21133:1 21167:1 21190:1 21233:2 21259:1 21262:3 21266:1 21330:1 21337:1 21423:1 21472:1 21514:1 21521:1 21551:1 21553:2 21587:1 21617:1 21643:1 21649:1 21669:1 21700:1 21710:1 21737:3 21778:1 21806:2 21878:1 21915:1 21974:1 21982:1 21988:1 22007:1 22042:1 22043:1 22105:1 22182:1 22204:1 22207:1 22251:1 22252:2 22277:1 22278:3 22299:3 22305:1 22320:1 22361:1 22419:1 22445:2 22482:1 22493:1 22552:1 22655:3 22666:1 22712:1 22719:1 22722:1 22784:1 22819:1 22824:1 22838:1 22848:1 22867:2 22872:1 22894:3 22897:1 22901:1 22903:1 22912:1 22963:1 23006:1 23022:1 23039:1 23042:1 23068:2 23083:1 23112:1 23114:1 23136:1 23145:1 23157:3 23163:1 23175:1 23183:1 23192:1 23196:1 23198:4 23202:1 23213:1 23264:1 23285:1 23287:1 23291:1 23302:1 23322:1 23337:1 23421:1 23427:1 23430:1 23438:1 23453:1 23454:1 23456:2 23472:1 23473:1 23478:1 23487:1 23555:1 23572:1 23600:3 23618:1 23661:1 23701:1 23704:1 23730:1 23746:1 23774:1 23839:1 23907:1 23927:2 23930:1 23938:1 23945:1 23958:2 23973:1 24136:1 24139:1 24162:2 24174:1 24224:1 24280:1 24287:1 24300:1 24322:1 24333:1 24355:1 24384:1 24391:1 24414:1 24475:1 24507:1 24524:1 24557:1 24563:1 24718:1 24742:1 24755:2 24770:2 24776:1 24793:5 24800:1 24858:1 24896:1 24898:1 24965:1 24996:1 25007:1 25046:1 25059:1 25069:1 25121:1 25275:1 25364:1 25383:1 25483:1 25485:1 25504:1 25559:1 25588:1 25591:1 25605:1 25607:1 25615:1 25634:1 25636:1 25665:1 25668:1 25702:1 25718:2 25747:1 25752:1 25770:1 25777:1 25784:2 25796:1 25803:1 25811:2 25812:1 25860:1 25862:1 25876:2 25896:1 25898:1 25902:1 25905:1 25914:1 25935:1 25965:2 26018:1 26054:1 26068:1 26113:1 26123:1 26135:1 26155:1 26157:1 26166:1 26173:1 26211:2 26219:1 26256:1 26271:1 26339:1 26371:1 26411:1 26435:1 26460:1 26534:1 26625:2 26639:1 26688:1 26713:1 26716:1 26735:1 26813:1 26828:3 26845:5 26853:1 26861:1 26863:1 26887:1 26921:1 26964:1 26994:1 26998:3 27000:2 27037:2 27040:2 27047:1 27075:1 27093:1 27135:1 27177:1 27190:2 27209:2 27213:3 27217:1 27224:1 27246:1 27252:2 27284:1 27292:1 27328:2 27412:1 27422:1 27457:1 27462:3 27487:1 27543:1 27563:1 27594:1 27600:1 27628:1 27678:1 27689:1 27799:3 27803:3 27835:1 27853:1 27874:1 27878:1 27879:1 27889:1 27904:1 27964:1 27978:1 27988:1 27992:1 28006:1 28012:1 28019:1 28037:1 28061:2 28072:3 28084:1 28108:1 28132:2 28139:1 28174:1 28207:1 28208:1 28210:1 28224:1 28228:1 28262:1 28344:1 28374:2 28384:1 28397:1 28442:1 28507:1 28509:1 28526:1 28538:1 28551:1 28562:1 28571:1 28581:1 28587:1 28604:1 28620:1 28638:2 28670:1 28674:1 28689:1 28720:2 28745:1 28746:1 28766:1 28781:1 28792:1 28810:1 28827:2 28848:1 28854:1 28888:1 28946:1 28992:1 29042:1 29049:1 29051:1 29054:1 29059:1 29067:1 29115:1 29125:1 29134:1 29139:4 29141:1 29145:1 29176:1 29198:1 29303:1 29334:1 29356:1 29392:2 29413:1 29453:1 29455:2 29463:1 29494:1 29600:1 29628:1 29633:1 29638:1 29640:1 29647:2 29678:1 29727:2 29740:1 29746:2 29760:1 29770:1 29792:1 29822:1 29853:1 29878:1 29894:1 29899:1 29947:1 29993:1 30007:1 30012:2 30016:2 30021:1 30044:1 30053:1 30083:1 30096:1 30143:1 30169:1 30186:2 30202:1 30203:1 30209:1 30210:1 30262:1 30266:2 30269:1 30309:1 30333:1 30335:1 30345:2 30355:1 30390:1 30392:1 30413:1 30488:2 30518:1 30533:1 30559:1 30564:2 30590:1 30663:1 30675:2 30689:1 30692:1 30727:1 30799:1 30817:1 30820:1 30836:3 30841:1 30862:1 30879:4 30896:1 30906:1 30944:1 31017:1 31020:1 31025:1 31036:1 31057:3 31063:1 31080:1 31095:1 31112:1 31116:1 31126:1 31144:1 31156:2 31179:1 31188:2 31281:2 31330:1 31332:1 31335:1 31342:1 31348:1 31360:1 31379:1 31398:1 31401:1 31402:1 31449:3 31567:2 31593:2 31606:1 31624:1 31628:2 31635:1 31653:1 31659:1 31662:1 31688:1 31716:1 31735:1 31837:1 31849:1 31896:1 31950:1 31984:1 31994:1 32080:1 32109:1 32120:1 32163:1 32214:1 32217:1 32243:1 32244:1 32245:1 32250:1 32254:1 32257:1 32267:1 32278:1 32298:1 32303:1 32306:1 32333:2 32337:1 32343:1 32378:1 32382:1
15 71:2 91:1 104:1 167:2 189:1 200:1 224:1 225:1 267:1 285:3 335:1 337:1 370:1 406:1 409:1 463:1 503:2 517:1 529:1 541:2 586:1 612:1 622:1 623:1 645:2 649:1 655:1 661:1 666:1 685:2 696:1 697:2 699:1 768:1 892:1 928:2 935:1 958:1 961:1 963:2 968:1 981:1 985:1 1020:2 1039:1 1052:1 1119:1 1149:1 1150:1 1167:1 1205:1 1210:1 1235:1 1259:1 1288:1 1297:1 1328:1 1337:1 1367:1 1374:2 1385:1 1396:1 1407:2 1408:1 1429:1 1458:1 1465:1 1483:1 1500:1 1513:1 1577:1 1592:3 1641:2 1642:1 1651:1 1656:1 1686:1 1724:1 1725:1 1733:3 1744:1 1749:2 1810:2 1813:1 1821:2 1822:1 1842:1 1843:2 1870:1 1897:1 1948:1 1973:1 1981:2 2013:1 2032:1 2042:1 2043:2 2050:2 2052:1 2091:1 2156:1 2159:2 2171:1 2177:1 2201:1 2359:1 2364:1 2386:1 2426:1 2462:1 2463:1 2495:1 2503:2 2505:1 2509:1 2516:1 2520:1 2522:1 2524:1 2525:1 2533:1 2547:1 2561:1 2607:2 2636:1 2677:1 2678:1 2707:1 2711:1 2804:1 2814:1 2833:1 2844:1 2991:1 3028:2 3091:1 3109:1 3138:2 3145:1 3155:1 3161:2 3169:2 3198:2 3216:3 3228:1 3238:1 3242:1 3247:1 3333:1 3356:2 3400:1 3411:1 3443:1 3483:1 3548:2 3562:1 3590:1 3610:1 3646:3 3658:1 3671:1 3699:1 3735:3 3736:1 3779:1 3786:1 3803:1 3891:1 3929:1 3964:1 4002:1 4006:1 4018:1 4019:1 4032:1 4055:1 4066:1 4083:1 4102:1 4105:1 4130:1 4131:2 4152:1 4183:1 4189:1 4214:2 4250:1 4252:3 4255:2 4260:1 4282:1 4291:1 4292:1 4303:1 4305:1 4310:1 4340:1 4377:1 4422:2 4445:1 4454:1 4462:1 4537:1 4563:1 4609:1 4629:2 4657:1 4665:2 4669:1 4685:1 4736:1 4748:4 4773:1 4781:1 4832:1 4863:1 4873:1 4880:1 4889:1 4932:2 4938:1 4954:1 5001:1 5012:1 5017:2 5026:2 5035:1 5054:1 5058:2 5074:1 5131:1 5162:1 5178:1 5186:1 5187:2 5206:1 5238:1 5242:1 5247:2 5327:1 5336:1 5382:5 5418:1 5500:3 5520:2 5521:1 5529:1 5535:1 5541:1 5542:1 5546:1 5548:2 5549:1 5551:1 5578:1 5679:1 5690:1 5697:2 5712:1 5757:1 5767:1 5774:1 5792:1 5805:1 5823:1 5829:1 5843:3 5896:1 5928:1 5941:4 5963:1 5967:1 5980:1 5983:1 5998:3 6027:1 6031:1 6037:1 6050:1 6051:1 6069:1 6085:1 6143:1 6171:1 6218:1 6232:1 6268:1 6287:2 6310:1 6333:1 6350:1 6390:1 6394:1 6395:2 6423:2 6483:1 6488:1 6594:1 6628:2 6725:1 6745:1 6749:1 6775:1 6780:1 6825:2 6831:1 6850:1 6920:1 6931:1 6945:1 6955:1 7026:1 7035:1 7037:1 7055:1 7058:1 7060:1 7064:1 7066:1 7071:2 7113:1 7119:1 7129:1 7152:1 7165:2 7168:2 7184:1 7189:2 7220:2 7229:1 7231:2 7308:1 7325:2 7328:1 7330:1 7331:2 7338:1 7365:1 7370:1 7389:1 7406:1 7432:2 7453:1 7456:1 7489:1 7526:1 7527:1 7610:1 7613:1 7625:1 7629:4 7679:1 7732:1 7746:1 7758:1 7774:1 7785:1 7797:1 7811:1 7824:1 7884:2 7887:2 7923:2 7930:1 7960:1 7979:2 8044:1 8047:1 8059:1 8087:1 8099:1 8137:2 8219:2 8235:1 8253:1 8262:2 8288:1 8305:1 8324:2 8327:1 8329:1 8335:2 8344:1 8360:1 8393:1 8414:1 8448:1 8459:3 8461:2 8462:1 8521:1 8551:3 8569:1 8602:1 8607:1 8609:1 8620:9 8641:2 8642:3 8669:1 8689:2 8690:1 8697:1 8707:1 8746:1 8761:1 8769:1 8785:1 8833:1 8855:3 8860:1 8914:1 8957:1 8975:1 8979:1 8985:1 8995:1 9074:1 9076:1 9082:2 9087:2 9088:1 9092:1 9110:1 9157:9 9170:1 9207:1 9208:2 9214:1 9216:1 9222:1 9252:1 9253:1 9282:1 9298:1 9353:1 9397:1 9406:1 9456:1 9499:1 9534:1 9599:1 9605:1 9610:1 9611:1 9656:1 9698:1 9719:1 9769:1 9777:2 9824:2 9825:1 9826:5 9836:1 9845:1 9849:1 9853:1 9921:1 9928:1 9943:1 9950:1 9992:3 10114:1 10193:1 10202:1 10226:1 10255:1 10260:1 10269:2 10279:1 10306:1 10314:1 10326:1 10357:1 10362:1 10365:1 10390:1 10413:1 10472:2 10556:1 10572:2 10574:1 10606:1 10623:1 10629:1 10640:1 10650:2 10656:1 10719:1 10753:1 10771:1 10782:1 10783:1 10795:1 10796:1 10797:1 10874:1 10883:1 10931:4 10947:1 10954:1 10990:1 11020:1 11115:1 11159:3 11213:1 11274:1 11293:1 11298:1 11313:1 11326:1 11342:1 11386:1 11390:1 11403:1 11423:1 11442:1 11451:1 11482:2 11486:1 11493:1 11536:1 11554:1 11571:1 11584:1 11594:1 11600:1 11601:2 11608:3 11630:1 11701:1 11706:1 11717:1 11737:1 11769:1 11808:1 11809:2 11810:1 11834:1 11850:6 11888:1 11921:1 11926:3 11959:1 11977:1 12035:1 12043:2 12100:1 12149:1 12189:1 12230:1 12242:1 12275:2 12300:2 12312:1 12343:1 12380:1 12408:1 12420:1 12442:2 12458:1 12475:1 12476:1 12477:1 12486:1 12496:1 12497:2 12509:1 12510:2 12536:1 12563:1 12570:2 12623:1 12632:1 12654:1 12688:2 12705:1 12716:4 12722:1 12735:1 12744:1 12764:1 12776:1 12784:1 12822:1 12843:1 12846:1 12860:1 12865:1 12901:1 12922:1 12933:1 12960:1 12965:1 13017:1 13041:1 13092:2 13121:1 13164:1 13173:3 13178:1 13180:1 13182:1 13186:1 13195:1 13253:1 13256:1 13265:2 13269:2 13297:3 13351:2 13405:1 13434:1 13502:2 13511:1 13513:1 13546:1 13575:1 13581:1 13626:4 13648:1 13650:1 13654:2 13658:2 13674:1 13688:1 13698:3 13714:1 13728:2 13740:1 13757:1 13778:2 13834:1 13864:1 13873:1 13890:1 13901:1 13940:1 13954:1 13969:1 14011:1 14045:1 14067:1 14117:1 14122:1 14129:1 14198:1 14206:1 14243:1 14266:1 14267:1 14275:1 14291:1 14302:1 14328:1 14329:3 14356:1 14371:2 14392:1 14472:1 14505:1 14584:1 14601:1 14603:1 14623:1 14632:2 14773:1 14783:1 14821:4 14841:1 14850:1 14872:1 14887:3 14905:1 14910:1 14938:1 14976:1 14978:3 14992:1 14994:1 15000:1 15039:2 15048:1 15075:4 15081:1 15090:1 15135:2 15139:1 15183:1 15218:1 15238:1 15243:3 15263:1 15291:1 15325:1 15377:1 15401:1 15450:1 15458:1 15489:1 15496:1 15516:1 15590:1 15596:1 15647:1 15663:1 15674:1 15681:1 15759:1 15802:1 15805:1 15817:1 15840:1 15853:2 15899:1 15948:1 16011:1 16025:1 16030:1 16087:2 16113:1 16182:1 16209:1 16272:1 16277:1 16292:1 16321:1 16336:1 16347:1 16352:1 16371:1 16426:1 16460:1 16480:1 16523:1 16528:1 16540:2 16548:6 16681:1 16697:2 16739:1 16760:1 16766:1 16777:6 16824:1 16849:1 16866:1 16870:1 16897:1 16916:6 16917:1 16940:1 16941:1 17016:1 17054:2 17061:1 17070:1 17091:1 17102:1 17111:1 17116:1 17117:1 17148:1 17256:1 17282:1 17290:1 17297:1 17337:1 17343:1 17354:1 17376:1 17388:1 17408:1 17461:1 17513:1 17525:2 17538:1 17580:1 17583:1 17624:3 17701:1 17716:2 17717:2 17753:1 17757:1 17770:1 17772:1 17773:1 17778:1 17787:1 17804:4 17812:1 17876:1 17877:2 17879:4 17899:1 17906:2 17921:1 17935:1 17986:1 17993:1 18041:2 18054:1 18055:1 18077:1 18089:1 18098:1 18109:1 18121:1 18132:1 18147:1 18152:1 18156:3 18159:2 18164:1 18169:1 18182:1 18307:1 18334:1 18339:2 18346:1 18355:1 18410:1 18424:1 18445:4 18493:1 18509:1 18537:1 18573:1 18582:1 18624:1 18634:1 18678:1 18709:1 18738:1 18742:1 18753:1 18754:1 18767:1 18774:2 18829:3 18836:1 18880:2 18920:1 18931:1 18937:1 18943:2 18944:1 18945:1 18994:1 19022:1 19030:1 19040:1 19041:1 19046:1 19060:1 19067:1 19097:1 19120:1 19122:1 19154:1 19163:1 19224:1 19234:1 19290:1 19302:1 19417:1 19467:1 19469:1 19473:2 19477:1 19485:1 19489:1 19490:1 19526:1 19553:3 19555:3 19614:1 19651:1 19665:3 19678:3 19739:1 19764:1 19777:1 19816:1 19876:2 19884:1 19887:1 19900:1 19950:1 19970:1 19977:1 19980:1 20073:1 20074:1 20081:1 20112:1 20126:1 20132:1 20152:2 20230:1 20306:1 20318:1 20355:1 20358:1 20394:2 20402:1 20411:1 20480:2 20522:1 20531:1 20551:1 20590:1 20605:1 20610:1 20613:3 20624:1 20634:1 20708:1 20714:1 20753:1 20757:1571 20781:1 20875:1 20912:1 20941:1 20950:1 20963:1 20977:1 20991:1 20999:1 21000:1 21073:1 21109:1 21111:1 21133:1 21167:1 21190:1 21233:2 21259:1 21262:3 21266:1 21330:1 21337:1 21423:1 21472:1 21514:1 21521:1 21551:1 21553:2 21587:1 21617:1 21643:1 21649:1 21669:1 21700:1 21710:1 21737:3 21778:1 21806:2 21878:1 21915:1 21974:1 21982:1 21988:1 22007:1 22042:1 22043:1 22105:1 22182:2 22204:1 22207:1 22230:1 22251:1 22252:2 22277:1 22278:3 22299:3 22305:1 22320:1 22361:1 22419:1 22445:2 22482:1 22493:1 22552:1 22655:3 22666:1 22712:1 22719:1 22722:1 22784:1 22818:1 22819:1 22824:1 22838:1 22848:1 22867:2 22872:1 22894:3 22897:1 22901:1 22903:1 22909:1 22912:1 22963:1 22992:1 23006:1 23022:1 23039:1 23042:1 23068:2 23083:2 23112:1 23114:1 23136:1 23145:1 23157:3 23163:1 23175:1 23183:1 23192:1 23196:1 23198:4 23202:1 23213:1 23264:1 23285:1 23287:1 23291:1 23302:1 23322:1 23337:1 23421:1 23427:1 23430:1 23438:1 23453:1 23454:1 23456:2 23472:1 23473:1 23478:1 23487:1 23555:1 23568:1 23572:1 23574:1 23600:4 23618:1 23661:1 23701:1 23704:1 23730:1 23746:1 23774:1 23839:1 23907:1 23926:1 23927:2 23930:1 23938:1 23945:1 23958:2 23973:1 24012:1 24136:1 24139:1 24162:2 24174:1 24224:1 24280:1 24287:1 24300:1 24322:1 24333:1 24355:1 24384:1 24391:1 24414:1 24475:1 24507:1 24524:1 24557:1 24563:1 24718:1 24742:1 24755:2 24770:2 24776:1 24793:5 24800:1 24812:1 24858:1 24896:1 24898:1 24965:1 24996:1 25007:1 25046:1 25059:1 25069:1 25121:1 25275:1 25364:1 25383:1 25483:1 25485:1 25504:1 25559:1 25588:1 25591:1 25593:1 25605:1 25607:1 25615:1 25634:1 25636:1 25665:1 25668:1 25702:1 25718:2 25747:1 25752:1 25770:1 25777:1 25784:2 25796:1 25803:1 25811:2 25812:1 25860:1 25862:1 25873:1 25876:2 25896:1 25898:1 25902:1 25905:1 25914:1 25935:1 25965:2 26018:1 26054:1 26068:1 26113:1 26123:1 26135:1 26155:1 26157:1 26166:1 26173:1 26211:2 26219:1 26256:1 26271:1 26339:1 26370:1 26371:1 26411:1 26435:1 26460:1 26534:1 26625:2 26639:1 26688:1 26713:1 26716:1 26735:1 26740:1 26813:1 26828:3 26845:6 26853:1 26861:1 26863:1 26887:1 26921:1 26964:1 26994:1 26998:3 27000:2 27037:2 27040:2 27047:1 27075:1 27093:1 27135:1 27177:1 27190:2 27209:2 27213:3 27217:1 27224:1 27246:1 27252:2 27284:1 27292:1 27328:2 27412:1 27422:1 27457:1 27462:3 27487:1 27543:1 27563:1 27594:1 27600:1 27628:1 27678:1 27689:1 27799:3 27803:3 27835:1 27853:1 27874:1 27878:1 27879:1 27889:1 27904:1 27964:1 27978:1 27988:1 27992:1 28006:1 28012:1 28019:1 28037:1 28061:2 28072:3 28084:1 28108:1 28132:2 28139:1 28174:1 28207:1 28208:1 28210:1 28224:1 28228:1 28262:1 28344:1 28374:2 28384:1 28397:1 28442:1 28507:1 28509:1 28526:1 28538:1 28551:1 28562:1 28571:1 28581:1 28587:1 28604:1 28620:1 28638:2 28670:1 28674:1 28689:1 28720:2 28745:1 28746:1 28766:1 28781:1 28792:1 28810:1 28827:2 28841:1 28848:1 28854:1 28888:1 28946:1 28992:1 29042:1 29049:1 29051:1 29054:1 29059:1 29067:1 29115:1 29125:1 29134:1 29139:4 29141:1 29145:1 29176:1 29198:1 29303:1 29334:1 29356:2 29392:2 29413:1 29453:1 29455:2 29463:1 29494:1 29600:1 29628:1 29633:1 29638:1 29640:1 29647:2 29678:1 29727:2 29740:1 29746:2 29760:1 29770:1 29792:1 29822:1 29853:1 29878:1 29894:1 29899:1 29942:1 29947:1 29993:1 30007:1 30012:2 30016:2 30021:1 30044:1 30053:1 30083:1 30096:1 30143:1 30169:1 30186:2 30202:1 30203:1 30209:1 30210:2 30262:1 30266:2 30269:1 30309:1 30333:1 30335:1 30345:2 30355:1 30390:1 30392:1 30413:1 30488:2 30518:1 30533:1 30559:1 30564:2 30590:1 30663:1 30675:2 30689:1 30692:1 30727:1 30799:1 30817:1 30820:1 30836:3 30841:1 30862:1 30879:4 30896:1 30906:1 30944:1 31017:1 31020:1 31025:1 31034:1 31036:1 31057:3 31063:1 31080:1 31095:1 31112:1 31116:1 31126:1 31144:1 31156:2 31179:1 31188:2 31281:2 31330:1 31332:1 31335:1 31342:1 31348:1 31360:1 31379:1 31398:1 31401:1 31402:1 31449:3 31567:2 31593:2 31606:1 31624:1 31628:2 31635:1 31653:1 31659:1 31662:1 31688:1 31716:1 31735:1 31837:1 31849:1 31896:1 31950:1 31984:1 31994:1 32080:1 32109:1 32120:1 32163:1 32214:1 32217:1 32243:2 32244:1 32245:1 32250:1 32254:1 32257:1 32267:1 32278:1 32298:1 32303:1 32306:1 32333:2 32337:1 32343:1 32378:1 32382:1
15 71:2 91:1 104:1 167:2 189:1 200:1 224:1 225:1 244:1 267:1 285:3 335:1 337:1 370:1 406:1 409:2 463:1 503:2 517:1 529:1 541:2 586:1 612:1 622:1 623:1 645:2 649:1 655:1 661:1 666:1 685:2 696:1 697:2 699:1 768:1 892:1 928:2 935:1 958:1 961:1 963:2 968:1 981:1 985:1 1020:2 1039:1 1052:1 1072:1 1119:1 1149:2 1150:1 1167:1 1205:2 1210:1 1235:1 1259:1 1288:2 1297:1 1328:1 1337:1 1367:1 1374:2 1385:1 1396:1 1407:2 1408:1 1429:1 1458:1 1465:1 1483:1 1500:1 1513:1 1577:1 1592:3 1641:2 1642:1 1651:1 1656:1 1686:1 1724:1 1725:1 1733:3 1744:2 1749:2 1810:2 1813:1 1821:2 1822:2 1842:1 1843:2 1870:1 1897:1 1948:1 1973:1 1981:2 2013:1 2032:1 2042:1 2043:2 2050:2 2052:1 2091:1 2156:1 2159:2 2171:1 2177:1 2201:1 2359:1 2364:1 2386:1 2426:1 2462:1 2463:1 2495:1 2501:1 2503:2 2505:1 2509:1 2516:1 2520:1 2522:1 2524:1 2525:1 2533:1 2547:1 2561:1 2607:2 2636:1 2677:1 2678:1 2707:1 2711:1 2804:1 2814:1 2833:1 2844:1 2991:1 3028:2 3091:1 3109:1 3138:2 3145:1 3155:1 3161:3 3169:2 3198:2 3216:3 3228:1 3238:1 3242:1 3247:1 3333:1 3356:2 3372:1 3400:1 3411:1 3443:1 3450:1 3483:1 3548:2 3562:1 3590:1 3610:1 3646:3 3658:1 3671:1 3699:1 3735:3 3736:1 3779:1 3786:1 3803:1 3849:1 3891:1 3929:1 3935:1 3964:1 4002:1 4006:1 4018:1 4019:1 4032:1 4055:1 4066:1 4083:1 4102:1 4105:1 4130:1 4131:2 4152:1 4183:1 4189:1 4214:2 4250:1 4252:3 4255:2 4260:1 4282:1 4291:1 4292:1 4303:1 4305:1 4310:1 4340:1 4377:1 4422:2 4445:1 4454:1 4462:1 4537:1 4563:1 4609:1 4629:2 4657:1 4665:2 4669:1 4685:1 4736:1 4748:4 4773:1 4781:1 4832:1 4863:1 4873:1 4880:1 4889:1 4932:2 4938:1 4954:1 5001:1 5012:1 5017:2 5026:2 5035:1 5054:2 5058:2 5074:1 5131:1 5162:1 5178:1 5186:1 5187:2 5206:1 5238:1 5242:1 5247:2 5327:1 5336:1 5382:5 5418:1 5500:4 5520:2 5521:1 5529:1 5535:1 5537:1 5541:1 5542:1 5546:1 5548:2 5549:1 5551:1 5578:1 5679:1 5690:1 5697:2 5712:1 5757:1 5767:1 5774:1 5792:1 5805:1 5823:1 5829:1 5843:3 5896:1 5928:1 5941:4 5963:1 5967:1 5980:1 5983:1 5998:3 6027:1 6031:1 6037:1 6050:1 6051:1 6069:1 6085:1 6143:1 6171:1 6218:1 6232:1 6268:1 6287:2 6310:1 6333:1 6350:1 6390:1 6394:1 6395:2 6423:2 6483:1 6488:1 6594:1 6628:2 6725:1 6745:1 6749:1 6775:1 6779:1 6780:1 6825:2 6831:1 6850:1 6920:1 6931:1 6945:1 6955:1 7026:1 7035:1 7037:1 7055:1 7058:1 7060:1 7064:1 7066:1 7071:2 7073:1 7113:1 7119:1 7129:1 7152:1 7165:2 7168:2 7184:1 7189:2 7220:2 7229:1 7231:2 7308:1 7325:2 7328:1 7330:1 7331:2 7338:1 7365:1 7370:1 7389:1 7403:1 7406:1 7432:2 7453:1 7456:1 7489:1 7526:1 7527:1 7610:1 7613:1 7625:1 7629:4 7679:1 7732:1 7746:1 7758:2 7774:1 7785:1 7797:1 7811:1 7824:1 7884:2 7887:2 7923:2 7930:1 7960:1 7979:2 8044:1 8047:1 8059:1 8087:1 8099:1 8137:2 8219:2 8235:1 8253:1 8262:2 8288:1 8305:1 8324:2 8327:1 8329:1 8335:2 8344:1 8360:1 8393:1 8414:1 8448:1 8459:3 8461:2 8462:1 8521:1 8551:3 8569:1 8602:1 8607:1 8609:1 8620:9 8641:2 8642:3 8669:1 8689:2 8690:1 8697:1 8707:1 8746:1 8761:1 8769:1 8785:1 8833:1 8855:3 8860:1 8876:1 8914:1 8957:1 8975:1 8979:1 8985:1 8995:1 9074:1 9076:1 9082:2 9087:2 9088:1 9092:1 9110:1 9157:9 9170:1 9207:1 9208:2 9214:1 9216:1 9222:1 9252:1 9253:1 9266:1 9282:1 9298:1 9333:1 9353:1 9397:1 9406:1 9456:1 9499:1 9534:1 9549:1 9599:1 9605:3 9610:1 9611:1 9656:1 9698:1 9711:1 9719:1 9769:1 9777:2 9824:2 9825:1 9826:5 9836:1 9845:1 9849:1 9853:1 9921:1 9926:1 9928:1 9943:1 9950:1 9992:3 10114:1 10193:1 10202:1 10226:1 10255:1 10260:1 10269:2 10279:1 10306:1 10314:1 10326:1 10357:1 10362:1 10365:1 10385:1 10390:2 10413:1 10472:2 10556:1 10572:2 10574:1 10606:1 10623:1 10629:1 10640:1 10650:2 10656:1 10686:1 10719:2 10753:1 10771:1 10782:1 10783:1 10795:1 10796:1 10797:1 10874:1 10883:1 10931:4 10947:1 10954:1 10990:1 11020:1 11021:1 11070:1 11115:1 11159:3 11213:1 11274:2 11282:1 11293:1 11298:1 11310:1 11313:1 11326:1 11342:1 11386:1 11390:1 11403:1 11423:1 11442:2 11451:1 11482:3 11486:1 11493:1 11536:1 11554:1 11571:1 11584:1 11594:1 11600:1 11601:2 11608:3 11630:1 11701:1 11706:1 11717:1 11737:1 11769:1 11808:1 11809:2 11810:1 11834:1 11850:6 11888:1 11921:1 11926:3 11959:1 11977:1 12035:1 12043:2 12100:1 12136:1 12149:1 12189:1 12205:1 12230:1 12242:1 12275:2 12300:2 12312:1 12343:1 12380:1 12408:1 12420:1 12440:1 12442:2 12458:1 12475:1 12476:1 12477:1 12486:1 12496:1 12497:2 12509:1 12510:2 12536:1 12563:1 12570:2 12623:1 12632:1 12654:1 12688:2 12705:1 12716:4 12722:1 12735:1 12744:1 12764:1 12776:1 12784:1 12822:1 12843:1 12846:1 12860:1 12865:1 12901:1 12922:1 12933:1 12960:1 12965:1 13017:1 13041:1 13092:2 13121:1 13164:1 13173:3 13178:1 13180:1 13182:1 13186:1 13195:1 13253:1 13256:1 13265:2 13269:2 13297:3 13351:2 13405:1 13434:1 13502:2 13511:2 13513:1 13546:1 13575:1 13581:1 13626:4 13648:1 13650:1 13654:2 13658:2 13674:1 13688:1 13698:3 13714:1 13728:2 13740:1 13757:1 13778:2 13834:1 13864:1 13873:1 13890:1 13901:1 13940:1 13954:1 13969:1 14011:1 14036:1 14045:1 14067:1 14117:1 14122:1 14129:1 14198:1 14206:1 14243:1 14266:1 14267:1 14275:1 14291:1 14302:1 14328:1 14329:3 14356:1 14371:2 14392:1 14472:1 14505:1 14584:1 14601:1 14603:1 14623:1 14632:2 14773:1 14783:1 14807:1 14821:4 14841:1 14850:1 14872:1 14887:4 14905:1 14910:1 14938:1 14976:1 14978:3 14992:1 14994:1 15000:1 15039:2 15048:1 15075:4 15081:1 15090:1 15135:2 15139:1 15183:1 15218:1 15238:1 15243:3 15263:1 15291:1 15325:1 15377:1 15401:1 15444:1 15450:1 15458:1 15489:1 15496:1 15516:1 15590:1 15596:1 15647:1 15663:1 15674:1 15681:1 15759:1 15802:1 15805:1 15817:1 15840:1 15853:3 15899:1 15948:1 15949:1 16011:1 16025:1 16030:1 16087:2 16102:1 16113:1 16182:1 16209:1 16272:1 16277:1 16292:1 16321:1 16336:1 16347:1 16352:1 16371:1 16426:1 16460:1 16480:1 16523:1 16528:1 16540:2 16548:6 16681:1 16697:2 16739:1 16760:1 16766:1 16777:6 16824:1 16849:1 16866:1 16870:1 16897:1 16916:6 16917:1 16940:1 16941:1 17016:1 17054:2 17061:1 17070:1 17091:1 17102:1 17111:1 17116:1 17117:1 17148:2 17256:1 17282:1 17290:1 17297:1 17337:1 17343:1 17354:2 17376:1 17388:1 17408:1 17461:1 17513:1 17525:2 17538:1 17580:1 17583:1 17624:3 17701:1 17716:2 17717:2 17753:1 17757:1 17770:1 17772:1 17773:1 17778:1 17787:1 17804:4 17812:1 17876:1 17877:2 17879:4 17899:1 17906:2 17921:1 17935:1 17986:1 17993:1 18041:2 18054:1 18055:1 18077:1 18089:1 18098:1 18109:2 18121:1 18132:1 18147:1 18152:1 18156:3 18159:2 18164:1 18169:1 18182:1 18307:1 18334:1 18339:2 18346:1 18355:1 18410:1 18424:1 18436:1 18445:4 18493:1 18509:1 18537:1 18573:1 18582:1 18624:1 18634:1 18678:1 18709:1 18723:1 18738:1 18742:1 18753:1 18754:1 18767:1 18774:2 18829:3 18836:1 18880:2 18920:1 18931:1 18937:1 18943:3 18944:1 18945:1 18970:1 18994:1 19022:1 19030:1 19040:1 19041:1 19046:1 19060:1 19067:1 19097:1 19120:1 19122:1 19154:1 19163:1 19224:1 19234:1 19290:1 19302:1 19417:1 19467:1 19469:1 19473:2 19477:1 19485:1 19489:1 19490:1 19526:1 19553:3 19555:3 19614:1 19651:1 19665:3 19677:1 19678:3 19739:1 19764:1 19777:1 19816:1 19876:2 19884:1 19887:1 19900:1 19950:1 19970:1 19977:1 19980:1 20073:1 20074:1 20081:1 20112:1 20126:1 20132:1 20152:2 20230:1 20306:1 20318:1 20355:1 20358:1 20394:2 20402:1 20411:1 20480:2 20522:1 20531:1 20551:1 20590:1 20605:1 20610:1 20613:3 20624:1 20634:2 20708:1 20714:1 20753:1 20757:1636 20781:1 20875:1 20912:1 20941:1 20950:1 20963:1 20977:1 20991:1 20999:1 21000:1 21073:1 21109:1 21111:1 21133:1 21167:1 21190:1 21233:2 21259:1 21262:3 21266:1 21330:1 21337:1 21423:1 21472:1 21514:1 21521:1 21551:1 21553:2 21587:1 21617:1 21643:1 21649:1 21669:1 21700:1 21710:1 21737:3 21778:1 21806:2 21878:1 21915:1 21974:1 21982:1 21988:1 22007:1 22042:1 22043:1 22105:1 22182:2 22204:1 22207:1 22230:1 22251:1 22252:2 22277:1 22278:3 22299:3 22305:1 22320:1 22361:1 22419:1 22445:2 22482:1 22493:1 22552:1 22655:3 22666:1 22712:1 22719:1 22722:1 22784:1 22818:1 22819:1 22824:1 22838:1 22848:1 22867:2 22872:1 22894:3 22897:2 22901:1 22903:1 22909:1 22912:1 22963:1 22992:1 23006:1 23022:1 23039:1 23042:1 23068:2 23083:3 23112:1 23114:1 23136:1 23145:1 23157:3 23163:1 23175:1 23183:1 23192:1 23196:1 23198:4 23202:1 23213:1 23264:1 23285:1 23287:1 23291:1 23302:1 23320:1 23322:1 23337:1 23421:1 23426:1 23427:1 23430:1 23438:1 23453:1 23454:1 23456:2 23472:1 23473:1 23478:1 23487:1 23555:1 23568:1 23572:1 23574:1 23600:4 23618:1 23661:1 23701:1 23704:1 23730:1 23746:1 23774:1 23793:1 23839:1 23907:1 23926:1 23927:2 23930:1 23938:1 23945:2 23958:2 23973:1 23976:1 24012:1 24136:2 24139:2 24162:2 24174:1 24224:1 24236:1 24280:1 24287:1 24300:2 24322:1 24333:1 24355:1 24384:1 24391:1 24414:1 24475:1 24507:1 24524:1 24557:1 24563:1 24665:1 24718:1 24742:1 24755:2 24770:2 24776:1 24793:5 24800:1 24812:1 24858:1 24896:1 24898:1 24965:1 24996:1 25007:1 25046:1 25059:1 25069:1 25121:1 25275:1 25364:1 25383:1 25483:1 25485:1 25504:1 25559:1 25588:1 25591:1 25593:1 25605:1 25607:1 25615:1 25634:1 25636:1 25665:1 25668:1 25702:1 25718:2 25747:1 25752:1 25770:1 25777:1 25784:2 25796:1 25803:1 25811:2 25812:1 25860:1 25862:1 25873:1 25876:2 25896:1 25898:1 25902:1 25905:1 25914:1 25935:1 25965:2 26018:1 26054:1 26068:1 26113:1 26123:1 26135:1 26155:1 26157:1 26166:1 26173:1 26211:2 26219:1 26256:1 26271:1 26339:1 26370:1 26371:1 26411:1 26435:1 26460:1 26534:1 26625:2 26639:1 26688:1 26713:1 26716:1 26735:1 26740:1 26813:1 26828:3 26845:6 26853:1 26861:1 26863:1 26887:1 26921:1 26964:1 26994:1 26998:3 27000:2 27037:2 27040:2 27047:1 27075:1 27093:1 27135:1 27140:1 27177:1 27190:2 27209:2 27213:3 27217:1 27224:1 27246:1 27252:2 27284:1 27292:1 27328:2 27412:1 27422:1 27457:1 27462:3 27487:1 27543:1 27563:1 27594:1 27600:1 27628:1 27678:1 27689:1 27799:4 27803:3 27835:1 27853:1 27874:1 27878:1 27879:1 27889:1 27904:1 27964:2 27978:1 27988:1 27992:1 28006:1 28012:1 28019:1 28037:1 28061:2 28072:3 28084:1 28108:1 28132:2 28139:1 28174:1 28207:1 28208:1 28210:1 28224:1 28228:1 28262:1 28344:1 28374:2 28384:1 28397:1 28442:1 28507:1 28509:1 28526:1 28538:1 28551:1 28562:1 28571:1 28581:1 28587:1 28604:1 28620:1 28638:2 28670:2 28674:1 28689:1 28720:2 28745:1 28746:1 28766:1 28781:1 28792:1 28810:1 28827:2 28841:1 28848:1 28854:1 28888:1 28946:1 28992:1 29042:1 29049:1 29051:1 29054:1 29059:1 29067:1 29115:1 29125:1 29134:1 29139:4 29141:1 29145:1 29176:1 29198:1 29303:1 29334:1 29356:2 29392:2 29413:1 29453:1 29455:2 29463:1 29494:1 29600:1 29628:1 29633:1 29638:1 29640:1 29647:2 29678:1 29727:2 29740:1 29744:1 29746:2 29760:1 29770:2 29792:1 29822:1 29853:1 29878:1 29894:1 29899:1 29942:1 29947:1 29993:1 30007:1 30012:2 30016:2 30021:1 30044:1 30053:1 30083:1 30096:1 30143:1 30169:1 30186:2 30202:1 30203:1 30209:1 30210:2 30262:1 30266:2 30269:1 30309:1 30322:1 30333:1 30335:1 30345:2 30355:1 30390:1 30392:1 30413:1 30488:2 30518:1 30533:2 30559:1 30564:2 30590:1 30663:1 30675:2 30689:1 30692:1 30727:1 30799:1 30817:1 30820:1 30836:5 30841:1 30862:1 30879:5 30896:1 30906:1 30944:1 31017:1 31020:1 31025:1 31034:1 31036:1 31057:3 31063:1 31080:1 31095:1 31112:1 31116:1 31126:1 31144:1 31156:2 31179:1 31188:2 31281:2 31330:1 31332:1 31335:1 31342:1 31348:1 31360:1 31379:1 31398:1 31401:1 31402:1 31449:3 31567:2 31593:2 31606:1 31624:1 31628:2 31635:1 31653:1 31659:1 31662:1 31688:1 31716:1 31735:1 31837:1 31849:1 31896:1 31950:1 31984:1 31994:1 32080:1 32109:1 32120:1 32163:1 32214:1 32217:1 32243:3 32244:1 32245:1 32250:1 32254:1 32257:1 32267:1 32278:1 32298:1 32303:1 32306:1 32333:2 32337:1 32343:1 32378:1 32382:1
15 71:2 91:1 104:1 167:2 189:1 200:1 224:1 225:1 244:1 267:1 285:3 335:1 337:1 370:1 406:1 409:2 463:1 503:2 517:1 529:1 541:2 586:1 612:1 622:1 623:1 645:2 649:1 655:1 661:1 666:1 685:2 696:1 697:2 699:1 768:1 892:1 928:2 935:1 958:1 961:1 963:2 968:1 981:1 985:1 1020:2 1039:1 1052:1 1072:1 1114:1 1119:1 1149:2 1150:1 1167:1 1205:2 1210:1 1235:1 1259:1 1288:2 1297:1 1328:1 1337:1 1367:1 1374:2 1385:1 1396:1 1407:2 1408:1 1429:1 1458:1 1465:1 1483:1 1500:1 1513:1 1577:1 1592:3 1641:2 1642:1 1651:1 1656:2 1686:1 1724:1 1725:1 1733:3 1744:2 1749:2 1810:2 1813:1 1821:2 1822:2 1842:1 1843:3 1870:1 1897:1 1948:1 1956:1 1973:1 1981:2 2013:1 2032:1 2042:1 2043:2 2050:2 2052:1 2088:1 2091:1 2156:1 2159:2 2171:1 2177:1 2201:1 2359:1 2364:1 2386:1 2426:1 2462:1 2463:1 2495:1 2501:1 2503:2 2505:2 2509:1 2516:1 2520:1 2522:1 2524:1 2525:1 2533:1 2547:1 2561:1 2607:2 2636:1 2677:1 2678:1 2707:1 2711:1 2804:1 2814:1 2833:1 2844:1 2991:1 3028:2 3091:1 3109:1 3138:2 3145:1 3155:1 3161:3 3169:2 3198:2 3216:3 3228:1 3238:1 3242:1 3247:1 3333:1 3356:2 3372:1 3400:1 3411:1 3443:1 3450:1 3483:1 3548:2 3562:1 3590:1 3610:1 3646:3 3658:1 3671:1 3699:1 3735:3 3736:1 3779:1 3786:1 3803:1 3849:1 3891:1 3929:1 3935:1 3964:1 4002:1 4006:1 4018:1 4019:1 4032:1 4055:1 4066:1 4083:1 4102:1 4105:1 4130:1 4131:2 4152:1 4183:1 4189:1 4214:2 4250:1 4252:3 4255:2 4260:1 4282:1 4291:1 4292:1 4303:1 4305:1 4310:1 4340:1 4377:1 4422:2 4445:1 4454:1 4462:1 4537:1 4563:1 4609:1 4629:2 4657:1 4665:2 4669:1 4685:1 4736:1 4748:4 4773:1 4781:1 4832:1 4863:1 4873:1 4880:1 4889:1 4932:2 4938:1 4954:1 5001:1 5012:1 5017:2 5026:2 5035:1 5054:2 5058:2 5074:1 5131:1 5162:1 5178:1 5186:1 5187:2 5206:1 5238:1 5242:1 5247:2 5327:1 5336:1 5382:5 5418:1 5500:4 5520:2 5521:1 5529:1 5535:1 5537:1 5541:1 5542:1 5546:1 5548:2 5549:1 5551:1 5578:1 5679:1 5690:1 5697:2 5712:1 5757:1 5767:1 5774:1 5792:1 5805:1 5823:1 5829:1 5843:3 5896:1 5928:1 5941:4 5963:1 5967:1 5980:1 5983:1 5998:3 6027:1 6031:1 6037:1 6050:1 6051:1 6069:1 6085:2 6143:1 6171:1 6218:1 6232:1 6268:1 6287:2 6310:1 6333:1 6350:1 6390:1 6394:1 6395:2 6423:2 6483:1 6488:1 6594:1 6628:2 6656:1 6725:1 6745:1 6749:1 6775:1 6779:1 6780:1 6825:2 6831:1 6850:1 6920:1 6931:1 6945:1 6955:1 7026:1 7035:1 7037:1 7055:1 7058:1 7060:1 7064:1 7066:1 7071:2 7073:2 7113:1 7119:1 7129:1 7152:1 7165:2 7168:2 7184:1 7189:2 7220:2 7229:1 7231:2 7308:1 7325:2 7328:1 7330:1 7331:2 7338:1 7365:1 7370:1 7389:1 7403:1 7406:1 7432:2 7453:1 7456:1 7489:1 7526:1 7527:1 7610:1 7613:1 7625:1 7629:4 7679:1 7732:1 7746:1 7758:2 7774:1 7785:1 7797:1 7811:1 7824:1 7884:2 7887:2 7923:2 7930:1 7960:1 7979:2 8044:1 8047:1 8059:1 8087:1 8099:1 8137:2 8219:2 8235:1 8253:1 8262:2 8288:1 8305:1 8324:2 8327:1 8329:1 8335:2 8344:1 8360:1 8393:1 8414:1 8448:1 8459:3 8461:2 8462:1 8521:1 8551:3 8569:1 8602:1 8607:1 8609:1 8620:10 8641:2 8642:3 8669:1 8689:2 8690:1 8697:1 8707:1 8746:1 8761:1 8769:1 8785:1 8833:1 8855:3 8860:1 8876:1 8914:1 8957:1 8975:1 8979:1 8985:1 8995:1 9074:1 9076:1 9082:3 9087:2 9088:1 9092:1 9110:1 9157:9 9170:1 9207:1 9208:2 9214:1 9216:1 9222:1 9252:1 9253:1 9266:1 9282:1 9298:1 9333:1 9353:1 9397:1 9406:1 9456:1 9499:1 9534:1 9549:1 9599:1 9605:3 9610:1 9611:1 9656:1 9698:1 9711:1 9719:1 9769:1 9777:2 9824:2 9825:1 9826:5 9836:1 9845:1 9849:1 9853:1 9921:1 9926:1 9928:1 9943:1 9950:1 9992:3 10114:1 10193:1 10202:1 10226:1 10255:1 10260:1 10269:2 10279:1 10306:1 10314:1 10326:1 10357:1 10362:1 10365:1 10385:1 10390:2 10413:1 10472:2 10556:1 10572:2 10574:1 10606:1 10623:1 10629:1 10640:1 10650:2 10656:1 10686:1 10719:2 10753:1 10771:1 10782:1 10783:1 10795:1 10796:1 10797:1 10874:1 10883:1 10931:4 10947:1 10954:1 10990:1 11020:1 11021:1 11070:1 11115:1 11159:3 11213:1 11220:1 11274:2 11282:1 11293:1 11298:1 11310:1 11313:1 11326:1 11342:1 11386:1 11390:1 11403:1 11423:1 11442:2 11451:1 11482:3 11486:1 11493:1 11536:1 11554:1 11571:1 11584:1 11594:1 11600:1 11601:2 11608:3 11630:1 11701:1 11706:1 11717:1 11737:1 11769:1 11808:1 11809:2 11810:1 11834:1 11850:6 11888:1 11921:1 11926:3 11959:1 11960:1 11977:1 12020:1 12035:1 12043:2 12100:1 12136:1 12149:1 12189:1 12205:1 12230:1 12242:1 12275:2 12300:2 12312:1 12343:1 12380:1 12408:1 12420:1 12440:1 12442:2 12458:1 12475:1 12476:1 12477:1 12486:1 12496:1 12497:2 12509:1 12510:2 12536:1 12563:1 12570:2 12623:1 12632:1 12654:1 12688:2 12705:1 12716:4 12722:1 12735:1 12744:1 12764:1 12776:1 12784:1 12822:1 12843:1 12846:1 12860:1 12865:1 12901:1 12922:1 12933:1 12960:1 12965:1 13017:1 13041:1 13092:2 13121:1 13151:1 13164:1 13173:3 13178:1 13180:1 13182:1 13186:1 13195:1 13253:1 13256:1 13265:2 13269:2 13297:3 13351:3 13405:1 13434:1 13502:2 13511:2 13513:2 13546:1 13575:1 13581:1 13626:4 13648:1 13650:1 13654:2 13658:2 13674:1 13688:1 13698:3 13714:1 13728:2 13740:1 13757:1 13778:2 13834:1 13864:1 13873:1 13890:1 13901:1 13940:1 13954:1 13969:1 14011:1 14036:1 14045:1 14067:1 14117:1 14122:1 14129:1 14198:1 14206:1 14243:1 14266:1 14267:1 14275:1 14291:1 14302:1 14328:1 14329:3 14356:1 14371:2 14392:1 14472:1 14505:1 14584:1 14601:1 14603:1 14623:1 14632:2 14773:1 14783:1 14807:1 14821:4 14841:1 14849:1 14850:1 14872:1 14887:4 14905:1 14910:1 14938:1 14976:2 14978:3 14992:1 14994:2 15000:1 15039:2 15048:1 15075:4 15081:1 15090:1 15135:2 15139:1 15183:1 15218:1 15238:1 15243:3 15263:1 15291:1 15325:1 15368:1 15377:1 15401:1 15444:1 15450:1 15458:1 15489:2 15496:1 15516:1 15590:1 15596:1 15647:1 15663:1 15674:1 15681:1 15759:1 15802:1 15805:1 15817:1 15840:1 15853:3 15899:1 15948:1 15949:1 16011:1 16025:1 16030:1 16087:2 16102:1 16113:1 16182:1 16209:1 16272:1 16277:1 16292:1 16321:1 16336:1 16347:1 16352:1 16371:1 16426:1 16460:1 16480:1 16523:1 16528:1 16540:2 16548:6 16681:1 16697:2 16739:1 16760:1 16766:1 16777:6 16824:1 16849:1 16866:1 16870:1 16897:1 16916:6 16917:1 16940:1 16941:1 17016:1 17054:2 17061:1 17070:1 17091:1 17093:1 17102:1 17111:1 17116:1 17117:1 17148:2 17207:1 17256:1 17282:1 17290:1 17297:1 17331:1 17337:1 17343:1 17354:2 17376:1 17388:1 17408:1 17461:1 17513:1 17525:2 17538:1 17580:1 17583:1 17624:3 17701:1 17716:2 17717:2 17753:1 17757:1 17770:1 17772:1 17773:1 17778:1 17787:1 17804:4 17812:1 17876:1 17877:2 17879:4 17899:1 17906:3 17921:1 17935:1 17986:1 17993:1 18041:2 18054:1 18055:1 18077:1 18089:1 18098:1 18109:2 18121:1 18132:1 18147:1 18152:1 18156:3 18159:2 18164:1 18169:1 18182:1 18307:1 18334:1 18339:2 18346:1 18355:1 18410:1 18424:1 18436:1 18445:4 18493:1 18509:1 18537:1 18573:1 18582:1 18624:1 18634:1 18678:1 18709:1 18723:1 18738:1 18742:1 18753:1 18754:1 18767:1 18774:2 18829:3 18836:1 18880:3 18920:1 18931:1 18937:1 18943:3 18944:1 18945:1 18970:1 18994:1 19022:1 19030:1 19040:1 19041:1 19046:1 19060:1 19067:1 19097:1 19120:1 19122:1 19154:1 19163:1 19224:1 19234:1 19290:1 19302:1 19417:1 19467:1 19469:1 19473:2 19477:1 19485:1 19489:1 19490:1 19526:1 19553:3 19555:3 19614:1 19651:1 19665:3 19677:1 19678:3 19739:1 19764:1 19777:1 19816:1 19876:2 19884:1 19887:1 19900:1 19950:1 19970:1 19977:1 19980:1 20073:1 20074:1 20081:1 20112:1 20126:1 20132:1 20152:2 20230:1 20306:1 20318:1 20355:1 20358:1 20394:2 20402:1 20403:1 20411:1 20480:2 20522:1 20531:1 20551:1 20590:1 20605:1 20610:1 20613:3 20624:1 20634:2 20708:1 20714:1 20753:1 20757:1678 20781:1 20875:1 20912:1 20941:1 20950:1 20963:1 20977:1 20991:1 20999:1 21000:1 21073:1 21109:1 21111:1 21133:1 21167:1 21190:1 21233:2 21259:1 21262:3 21266:1 21330:1 21337:1 21423:1 21472:1 21514:1 21521:1 21551:1 21553:2 21587:1 21617:1 21643:2 21649:1 21669:1 21700:1 21710:1 21737:3 21778:1 21806:2 21878:1 21915:1 21974:1 21982:1 21988:1 22007:1 22042:1 22043:1 22105:1 22182:2 22204:1 22207:1 22230:1 22251:1 22252:2 22277:1 22278:3 22299:3 22305:1 22320:1 22332:1 22361:1 22419:1 22445:2 22482:1 22493:1 22552:1 22655:3 22666:1 22712:1 22719:1 22722:1 22784:1 22818:1 22819:1 22824:1 22838:1 22848:1 22867:2 22872:1 22894:3 22897:2 22901:1 22903:1 22909:1 22912:1 22963:1 22992:1 23006:1 23022:1 23039:1 23042:1 23068:2 23083:3 23112:1 23114:1 23136:1 23145:1 23157:3 23163:1 23175:1 23183:1 23192:1 23196:1 23198:4 23202:1 23213:1 23264:1 23285:1 23287:1 23291:2 23302:1 23320:1 23322:1 23337:1 23421:1 23426:1 23427:1 23430:1 23438:1 23453:1 23454:1 23456:2 23472:1 23473:1 23478:1 23487:1 23555:1 23568:1 23572:1 23574:1 23600:4 23618:1 23661:1 23701:1 23704:1 23730:1 23746:1 23774:1 23793:1 23839:1 23907:1 23926:1 23927:2 23930:1 23938:1 23945:2 23958:2 23962:1 23973:1 23976:1 24012:1 24136:2 24139:2 24162:2 24174:1 24224:1 24236:1 24280:1 24287:1 24300:2 24322:1 24333:1 24355:1 24384:1 24391:1 24414:1 24475:1 24507:1 24524:1 24557:1 24563:1 24665:1 24718:1 24742:1 24755:2 24770:2 24776:1 24793:5 24800:1 24812:1 24858:1 24896:1 24898:1 24965:1 24996:1 25007:1 25046:1 25059:1 25069:1 25121:1 25275:1 25364:1 25383:1 25483:1 25485:1 25504:1 25559:1 25588:1 25591:1 25593:1 25605:1 25607:1 25615:1 25634:1 25636:1 25665:1 25668:1 25702:1 25718:2 25747:1 25752:1 25770:1 25777:1 25784:2 25796:1 25803:1 25811:2 25812:1 25860:1 25862:1 25873:1 25876:2 25896:1 25898:1 25902:1 25905:1 25914:1 25935:1 25965:2 26018:1 26054:1 26068:1 26113:1 26123:1 26135:1 26155:1 26157:1 26166:1 26173:1 26211:2 26219:1 26256:1 26271:1 26339:2 26370:1 26371:1 26411:1 26435:1 26460:1 26534:1 26625:2 26639:1 26688:1 26713:1 26716:1 26735:1 26740:1 26813:1 26828:3 26845:6 26853:1 26861:1 26863:1 26887:1 26921:1 26964:1 26994:1 26998:3 27000:2 27037:2 27040:2 27047:1 27075:1 27093:1 27135:1 27140:1 27177:1 27190:2 27209:3 27213:3 27217:1 27224:1 27246:1 27252:2 27284:1 27292:1 27328:2 27412:1 27422:1 27457:1 27462:3 27487:1 27543:1 27563:1 27594:1 27600:1 27628:1 27678:1 27689:1 27799:4 27803:3 27835:1 27853:1 27874:1 27878:1 27879:1 27889:1 27904:1 27964:2 27978:1 27988:1 27992:1 28006:1 28012:1 28019:1 28037:1 28061:2 28072:3 28084:1 28108:1 28132:2 28139:1 28174:1 28207:1 28208:1 28210:1 28224:1 28228:1 28262:1 28344:1 28374:2 28384:1 28397:1 28442:1 28491:1 28507:1 28509:1 28526:1 28538:1 28551:1 28562:1 28571:1 28581:1 28587:1 28604:1 28620:1 28638:2 28670:2 28674:1 28689:1 28720:2 28745:1 28746:1 28766:1 28781:1 28792:1 28810:1 28827:2 28841:1 28848:1 28854:1 28888:1 28946:1 28992:1 29042:1 29049:1 29051:1 29054:1 29059:1 29067:1 29115:1 29125:1 29134:1 29139:4 29141:1 29145:1 29176:1 29198:1 29251:1 29273:1 29289:1 29303:1 29334:1 29356:2 29392:2 29413:1 29453:1 29455:2 29463:1 29494:1 29600:1 29628:1 29633:1 29638:1 29640:1 29647:2 29678:1 29727:2 29740:1 29744:1 29746:2 29760:1 29770:2 29792:1 29822:1 29853:1 29878:1 29894:1 29899:1 29942:2 29947:1 29993:1 30007:1 30012:2 30016:2 30021:1 30044:1 30053:1 30083:1 30096:1 30143:1 30169:1 30186:2 30202:1 30203:1 30209:1 30210:2 30262:1 30266:2 30269:1 30309:1 30322:1 30333:1 30335:1 30345:2 30355:1 30390:1 30392:1 30413:1 30488:2 30518:1 30533:2 30559:1 30564:2 30590:1 30663:1 30675:2 30689:1 30692:1 30727:1 30799:1 30817:1 30820:1 30836:5 30841:1 30862:1 30879:5 30896:1 30906:1 30944:1 31017:1 31020:1 31025:1 31034:1 31036:1 31057:3 31063:1 31080:1 31095:1 31112:1 31116:1 31126:1 31144:1 31156:2 31179:1 31188:2 31281:2 31330:1 31332:1 31335:1 31342:1 31348:1 31360:1 31379:1 31398:1 31401:1 31402:1 31449:3 31567:2 31593:3 31606:1 31624:1 31628:2 31635:1 31653:1 31659:1 31662:1 31688:1 31716:1 31735:1 31837:1 31849:1 31896:1 31950:1 31984:1 31994:1 32080:1 32109:1 32120:1 32163:1 32214:1 32217:1 32243:3 32244:1 32245:1 32250:1 32254:1 32257:1 32267:1 32278:1 32298:1 32303:1 32306:1 32333:2 32337:1 32343:1 32378:1 32382:1
15 71:2 91:1 104:1 167:2 189:1 200:1 224:1 225:1 244:1 267:1 285:3 335:1 337:1 370:1 406:1 409:2 463:1 503:2 517:1 529:1 541:2 586:1 612:1 622:1 623:1 645:2 649:1 655:1 661:1 666:1 685:2 696:1 697:2 699:1 747:1 768:1 892:1 928:2 935:1 958:1 961:1 963:2 968:1 981:1 985:1 1020:2 1039:1 1052:1 1072:1 1114:2 1119:1 1149:2 1150:1 1154:1 1167:1 1205:2 1210:1 1235:1 1259:1 1288:2 1297:1 1328:1 1337:1 1367:1 1374:2 1385:1 1396:1 1407:2 1408:1 1429:1 1458:1 1465:1 1483:1 1500:1 1513:1 1577:1 1592:3 1641:2 1642:1 1651:1 1656:2 1686:1 1724:1 1725:1 1733:3 1744:2 1749:2 1777:1 1810:2 1813:1 1821:2 1822:2 1842:1 1843:3 1870:1 1897:1 1948:1 1952:1 1956:1 1973:1 1981:2 2013:1 2032:1 2042:1 2043:2 2050:2 2052:1 2088:1 2091:1 2156:1 2159:3 2171:1 2177:1 2201:1 2359:1 2364:1 2386:1 2426:1 2462:1 2463:1 2495:1 2501:1 2503:2 2505:2 2509:1 2516:1 2520:1 2522:1 2524:1 2525:1 2533:1 2547:1 2561:1 2607:2 2636:1 2677:1 2678:1 2707:1 2711:1 2804:1 2814:1 2833:1 2844:1 2991:1 3028:2 3091:1 3109:1 3138:2 3145:1 3155:1 3161:3 3169:2 3198:2 3216:3 3228:1 3238:1 3242:1 3247:1 3333:1 3356:2 3372:1 3400:1 3411:1 3443:1 3450:1 3483:1 3548:2 3562:1 3590:1 3600:1 3610:1 3646:3 3658:1 3671:1 3699:1 3735:3 3736:1 3779:1 3786:1 3803:1 3849:1 3891:1 3929:1 3935:1 3964:1 4002:1 4006:1 4014:1 4018:1 4019:1 4032:1 4055:1 4066:1 4083:1 4102:1 4105:1 4130:1 4131:2 4152:1 4183:1 4189:1 4214:2 4250:1 4252:3 4255:2 4260:1 4282:1 4291:1 4292:1 4303:1 4305:1 4310:1 4340:1 4377:1 4422:2 4445:1 4454:1 4462:1 4537:1 4563:1 4609:1 4629:3 4657:1 4665:2 4669:1 4685:1 4736:1 4748:4 4773:1 4781:1 4832:1 4863:1 4873:1 4880:1 4889:1 4932:2 4935:1 4938:1 4954:1 5001:1 5012:1 5017:2 5026:2 5035:1 5054:2 5058:2 5074:1 5131:1 5162:1 5178:1 5186:1 5187:2 5206:1 5238:1 5242:1 5247:2 5327:1 5336:1 5382:5 5418:1 5442:1 5500:4 5520:2 5521:1 5529:1 5535:1 5537:1 5541:1 5542:1 5546:1 5548:2 5549:1 5551:1 5574:1 5578:1 5679:1 5690:1 5697:2 5712:1 5757:1 5767:1 5774:1 5792:1 5805:1 5823:1 5829:1 5843:3 5896:1 5923:1 5928:1 5941:4 5963:1 5967:1 5980:1 5983:1 5998:3 6027:1 6031:1 6037:1 6050:1 6051:1 6069:1 6085:2 6143:1 6171:1 6218:1 6232:1 6268:1 6287:2 6310:1 6333:1 6350:1 6390:1 6394:1 6395:2 6423:2 6483:1 6488:1 6594:1 6628:2 6656:1 6725:1 6745:1 6749:1 6775:1 6779:1 6780:1 6825:2 6831:1 6850:1 6920:1 6931:1 6945:1 6955:1 7026:1 7035:1 7037:1 7055:1 7056:1 7058:1 7060:1 7064:1 7066:1 7071:2 7073:2 7113:1 7119:1 7122:1 7129:1 7152:1 7165:2 7168:2 7184:1 7189:2 7220:2 7229:1 7231:2 7308:1 7325:2 7328:1 7330:1 7331:2 7338:1 7365:1 7370:1 7389:1 7403:1 7406:1 7432:2 7453:1 7456:1 7489:1 7526:1 7527:1 7610:1 7613:1 7625:1 7629:4 7679:1 7732:1 7746:1 7758:2 7774:1 7785:1 7797:1 7811:1 7824:1 7884:2 7887:2 7923:2 7930:1 7960:1 7979:2 8044:1 8047:1 8059:1 8087:1 8099:1 8137:2 8219:2 8235:1 8253:1 8262:2 8288:1 8305:1 8324:2 8327:1 8329:1 8335:2 8344:1 8360:1 8393:1 8408:1 8414:1 8448:1 8457:1 8459:3 8461:2 8462:1 8521:1 8551:3 8569:1 8602:1 8607:1 8609:1 8620:10 8641:2 8642:3 8669:1 8689:2 8690:1 8697:1 8707:1 8746:1 8761:1 8769:1 8785:1 8833:1 8855:3 8860:1 8876:1 8914:1 8957:1 8975:1 8979:1 8985:1 8995:1 9074:1 9076:1 9082:3 9087:2 9088:1 9092:1 9110:2 9157:9 9170:1 9207:1 9208:2 9214:1 9216:1 9222:1 9243:1 9252:1 9253:1 9266:1 9282:1 9298:1 9333:1 9353:1 9397:1 9406:1 9456:1 9499:1 9534:1 9549:1 9599:1 9605:3 9610:1 9611:1 9656:1 9698:1 9711:1 9719:1 9769:1 9777:2 9824:2 9825:1 9826:6 9836:1 9845:1 9849:1 9853:1 9921:1 9926:1 9928:1 9943:1 9950:1 9992:3 10114:1 10193:1 10202:1 10226:1 10255:1 10260:1 10269:2 10279:2 10306:1 10314:1 10326:1 10357:1 10362:1 10365:1 10385:1 10390:2 10413:1 10472:2 10556:1 10572:2 10574:1 10606:1 10623:1 10629:1 10640:1 10650:2 10656:1 10686:1 10719:2 10753:1 10771:1 10782:1 10783:1 10795:1 10796:1 10797:1 10874:1 10883:1 10931:4 10947:1 10954:1 10990:1 11020:1 11021:1 11070:1 11115:1 11159:3 11213:1 11220:1 11274:2 11282:1 11293:1 11298:1 11310:1 11313:1 11326:1 11342:1 11346:1 11386:1 11390:1 11403:1 11423:1 11442:2 11451:1 11482:3 11486:1 11493:1 11536:1 11554:1 11571:1 11584:1 11594:1 11600:1 11601:2 11608:3 11630:1 11701:1 11706:1 11717:1 11737:1 11769:1 11808:1 11809:2 11810:1 11834:1 11850:6 11888:1 11921:1 11926:3 11959:1 11960:2 11961:1 11977:1 12020:2 12035:1 12043:2 12100:1 12136:1 12149:1 12189:1 12205:1 12230:1 12242:1 12275:2 12300:2 12312:1 12343:1 12380:1 12408:1 12420:1 12440:1 12442:2 12458:1 12475:1 12476:1 12477:1 12486:1 12496:1 12497:2 12509:1 12510:2 12517:1 12536:1 12563:1 12570:2 12623:1 12632:1 12654:1 12688:2 12705:1 12716:4 12722:1 12735:1 12744:1 12764:1 12776:1 12784:1 12822:1 12843:1 12846:1 12860:1 12865:1 12901:1 12922:1 12933:1 12960:1 12965:1 13017:1 13041:1 13092:2 13121:1 13151:1 13164:1 13167:1 13173:3 13178:1 13180:1 13182:1 13186:1 13195:1 13205:1 13253:1 13256:1 13265:2 13269:2 13297:3 13351:3 13405:1 13434:1 13502:2 13511:2 13513:2 13546:1 13575:1 13581:1 13626:4 13648:1 13650:1 13654:3 13658:2 13674:1 13688:1 13698:3 13714:1 13728:2 13740:1 13757:1 13778:2 13834:1 13864:1 13873:1 13890:1 13901:1 13940:1 13954:1 13969:1 14011:1 14036:1 14045:1 14067:1 14117:1 14122:1 14129:1 14198:1 14206:1 14243:1 14266:1 14267:1 14275:1 14291:1 14302:1 14328:1 14329:3 14356:1 14371:2 14392:1 14472:1 14505:1 14584:1 14601:1 14603:1 14623:1 14632:2 14773:1 14783:1 14807:1 14821:4 14841:1 14849:1 14850:1 14872:1 14887:4 14905:1 14910:1 14938:1 14976:2 14978:3 14992:1 14994:2 15000:1 15039:2 15048:1 15075:4 15081:1 15090:3 15135:2 15139:1 15183:1 15218:1 15238:1 15243:3 15263:1 15291:1 15325:1 15368:1 15377:1 15401:1 15444:1 15450:1 15458:1 15489:2 15496:1 15516:1 15590:1 15596:1 15647:1 15663:1 15674:1 15681:1 15759:1 15802:1 15805:1 15817:1 15840:1 15853:3 15899:1 15948:1 15949:1 16011:1 16025:1 16030:1 16087:2 16102:1 16113:1 16182:1 16209:1 16272:1 16277:1 16292:1 16321:1 16336:1 16347:1 16352:1 16371:1 16426:1 16460:1 16480:1 16523:1 16528:1 16540:2 16548:6 16681:1 16697:2 16739:1 16760:1 16766:1 16777:6 16824:1 16849:1 16866:1 16870:1 16897:1 16916:6 16917:1 16940:1 16941:1 17016:1 17054:2 17061:1 17070:1 17091:1 17093:1 17102:1 17111:1 17116:1 17117:1 17148:2 17207:2 17256:1 17282:1 17290:1 17297:1 17331:1 17337:1 17343:1 17354:2 17376:1 17388:1 17408:1 17461:1 17513:1 17525:2 17538:1 17580:1 17583:1 17624:3 17701:1 17716:2 17717:2 17753:1 17757:1 17770:1 17772:1 17773:1 17778:1 17787:1 17800:1 17804:4 17812:1 17876:1 17877:2 17879:4 17899:1 17906:3 17921:1 17935:1 17986:1 17993:1 18041:2 18054:1 18055:1 18071:1 18077:1 18089:1 18098:1 18109:2 18121:1 18132:1 18147:1 18152:1 18156:3 18159:2 18164:1 18169:1 18182:1 18307:1 18334:1 18339:2 18346:1 18355:1 18410:1 18424:1 18436:1 18445:4 18493:1 18509:1 18537:1 18573:1 18582:1 18624:1 18634:1 18678:1 18709:1 18723:1 18738:1 18742:1 18753:1 18754:1 18767:1 18774:2 18829:3 18836:1 18880:3 18920:1 18931:1 18937:1 18943:3 18944:1 18945:1 18970:1 18994:1 19022:1 19030:1 19040:1 19041:1 19046:1 19058:1 19060:1 19067:1 19097:1 19120:1 19122:1 19154:1 19163:1 19224:1 19234:1 19290:1 19302:1 19417:1 19467:1 19469:1 19473:2 19477:1 19485:1 19489:1 19490:1 19526:1 19553:3 19555:3 19614:1 19651:1 19665:3 19677:1 19678:3 19739:1 19764:1 19777:1 19802:1 19816:1 19876:2 19884:1 19887:1 19900:1 19950:1 19970:1 19977:1 19980:1 20073:1 20074:1 20081:1 20112:1 20126:1 20132:1 20152:2 20230:1 20306:1 20318:1 20355:1 20358:1 20394:2 20402:1 20403:1 20411:1 20480:2 20522:1 20531:1 20551:1 20590:1 20605:1 20610:1 20613:3 20624:1 20634:2 20708:1 20714:1 20753:1 20757:1709 20781:1 20875:1 20912:1 20941:1 20950:1 20963:1 20977:1 20991:1 20999:1 21000:1 21073:1 21109:1 21111:1 21133:1 21167:1 21190:1 21233:2 21259:1 21262:3 21266:1 21330:1 21337:1 21423:1 21472:1 21514:1 21521:1 21551:1 21553:2 21587:1 21617:1 21643:2 21649:1 21669:1 21700:1 21710:1 21737:3 21778:1 21783:1 21806:2 21878:1 21915:1 21974:1 21982:1 21988:1 22007:1 22042:1 22043:1 22105:1 22178:1 22182:2 22204:1 22207:1 22230:1 22251:1 22252:2 22277:1 22278:3 22299:3 22305:1 22320:1 22332:1 22361:1 22419:1 22445:2 22482:1 22493:1 22552:1 22655:3 22666:1 22712:1 22719:1 22722:1 22784:1 22818:1 22819:1 22824:1 22838:1 22848:1 22867:2 22872:1 22894:3 22897:2 22901:1 22903:1 22909:1 22912:1 22963:1 22992:1 23006:1 23022:1 23039:1 23042:1 23068:2 23083:3 23112:1 23114:1 23136:1 23145:1 23157:3 23163:1 23175:1 23183:1 23192:1 23196:1 23198:4 23202:1 23213:1 23264:1 23285:1 23287:1 23291:2 23302:1 23320:1 23322:1 23337:1 23415:1 23421:1 23426:1 23427:1 23430:1 23433:2 23438:1 23453:1 23454:1 23456:2 23472:1 23473:1 23478:1 23487:1 23555:1 23568:1 23572:1 23574:1 23600:4 23603:1 23618:1 23661:1 23700:1 23701:1 23704:1 23730:1 23741:1 23746:1 23774:1 23793:1 23839:1 23907:1 23926:1 23927:2 23930:1 23938:1 23945:2 23958:2 23962:1 23973:1 23976:1 24012:1 24136:2 24139:2 24162:2 24174:1 24224:1 24236:1 24280:1 24287:1 24300:2 24322:1 24333:1 24355:1 24384:1 24391:1 24414:1 24443:1 24475:1 24507:1 24524:1 24557:1 24563:1 24665:1 24718:1 24742:1 24755:2 24770:2 24776:1 24793:5 24800:1 24812:1 24858:1 24868:1 24896:1 24898:1 24965:1 24996:1 25007:1 25046:1 25059:1 25069:1 25121:1 25275:1 25364:1 25383:1 25483:1 25485:1 25504:1 25559:1 25583:1 25588:1 25591:1 25593:1 25605:1 25607:1 25615:1 25634:1 25636:1 25665:1 25668:1 25702:1 25718:2 25747:1 25752:1 25770:1 25777:1 25784:2 25796:1 25803:1 25811:2 25812:1 25860:1 25862:1 25873:1 25876:2 25896:1 25898:1 25902:1 25905:1 25914:1 25935:1 25965:2 26018:1 26054:1 26068:1 26113:1 26123:1 26135:1 26155:2 26157:1 26166:1 26173:1 26211:2 26219:1 26256:1 26271:1 26339:2 26370:1 26371:1 26411:1 26435:1 26460:1 26534:1 26625:2 26639:1 26688:1 26713:1 26716:1 26735:1 26740:1 26813:1 26828:3 26845:7 26853:1 26861:1 26863:1 26887:1 26921:1 26964:1 26994:1 26998:3 27000:2 27037:2 27040:2 27047:1 27048:1 27075:1 27093:1 27135:1 27140:1 27177:1 27190:2 27209:3 27213:3 27217:1 27224:1 27246:1 27252:2 27284:1 27292:1 27328:2 27412:1 27422:1 27457:1 27462:3 27487:1 27543:1 27563:1 27594:1 27600:1 27628:1 27678:1 27689:1 27799:4 27803:3 27835:1 27845:1 27853:1 27874:1 27878:1 27879:1 27889:1 27904:1 27964:2 27978:1 27988:1 27992:1 28006:1 28012:1 28019:1 28037:1 28061:2 28072:3 28084:1 28108:1 28132:2 28139:1 28174:1 28207:1 28208:1 28210:1 28224:1 28228:1 28262:1 28344:1 28374:2 28384:1 28397:1 28442:1 28491:1 28507:1 28509:1 28526:1 28538:1 28551:1 28562:1 28571:1 28581:1 28587:1 28604:1 28620:1 28638:2 28670:2 28674:1 28689:1 28720:2 28745:1 28746:1 28766:1 28781:1 28792:1 28810:3 28827:2 28841:1 28848:2 28854:1 28888:1 28946:1 28992:1 29042:1 29049:1 29051:1 29054:1 29059:1 29067:1 29115:1 29125:1 29134:1 29139:4 29141:1 29145:1 29176:1 29198:1 29251:1 29273:2 29289:1 29303:1 29312:1 29334:1 29356:2 29392:2 29413:1 29453:1 29455:2 29463:1 29494:1 29600:1 29628:1 29633:1 29638:1 29640:1 29647:2 29678:1 29727:2 29740:1 29744:1 29746:2 29760:1 29770:2 29792:1 29822:1 29853:1 29878:1 29894:1 29899:1 29942:2 29947:1 29993:1 30007:1 30012:2 30016:2 30021:1 30044:1 30053:1 30083:1 30096:1 30143:1 30169:1 30186:2 30202:1 30203:1 30209:1 30210:2 30262:1 30266:2 30269:1 30309:1 30322:1 30333:1 30335:1 30345:2 30355:1 30390:1 30392:1 30413:1 30475:1 30488:2 30518:1 30533:2 30559:1 30564:2 30590:1 30663:1 30675:2 30689:1 30692:1 30727:1 30799:1 30817:1 30820:1 30836:5 30841:1 30862:1 30879:5 30896:1 30906:1 30944:1 31017:1 31020:1 31025:1 31034:1 31036:1 31057:3 31063:1 31080:1 31095:1 31112:1 31116:1 31126:1 31144:1 31156:2 31179:1 31188:2 31281:2 31330:1 31332:1 31335:1 31342:1 31348:1 31360:1 31379:1 31398:1 31401:1 31402:1 31449:3 31567:2 31593:3 31606:1 31624:1 31628:2 31635:1 31653:1 31659:1 31662:1 31688:1 31716:1 31735:1 31837:1 31849:1 31896:1 31950:1 31984:1 31994:1 32080:1 32109:1 32120:1 32163:1 32214:1 32217:1 32235:1 32243:3 32244:1 32245:1 32250:1 32254:1 32257:1 32267:1 32278:1 32298:1 32303:1 32306:1 32333:2 32337:1 32343:1 32378:1 32382:1
15 71:2 91:1 104:1 167:2 189:1 200:1 224:1 225:1 244:1 267:1 285:3 335:1 337:1 370:1 406:1 409:2 463:1 503:2 517:1 529:1 541:2 586:1 612:1 615:1 622:1 623:1 645:2 649:1 655:1 661:1 666:1 685:2 696:1 697:2 699:1 747:1 768:1 892:1 928:2 935:1 958:1 961:1 963:2 968:1 981:1 985:1 1020:2 1039:1 1052:1 1072:1 1114:2 1119:1 1149:2 1150:1 1154:1 1167:1 1172:1 1205:2 1210:1 1235:1 1259:1 1277:1 1288:2 1297:1 1328:1 1337:1 1367:1 1374:2 1385:1 1396:1 1407:2 1408:1 1429:1 1458:1 1465:1 1483:1 1500:1 1513:1 1577:1 1592:3 1641:2 1642:1 1651:1 1656:2 1686:1 1724:1 1725:1 1733:3 1736:1 1744:2 1749:2 1777:1 1810:2 1813:1 1821:2 1822:2 1827:1 1842:1 1843:3 1870:1 1897:1 1948:1 1952:1 1956:1 1973:1 1981:2 2013:1 2032:1 2042:1 2043:2 2050:2 2052:1 2088:1 2091:1 2156:1 2159:3 2171:1 2177:1 2201:1 2359:1 2364:1 2386:1 2426:1 2462:1 2463:1 2495:1 2501:1 2503:2 2505:2 2509:1 2516:1 2520:1 2522:1 2524:1 2525:1 2533:1 2547:1 2561:1 2607:2 2636:1 2677:1 2678:1 2707:1 2711:1 2804:1 2814:1 2833:1 2844:1 2991:1 3028:2 3091:1 3103:1 3109:1 3138:2 3145:1 3155:1 3161:3 3169:2 3198:2 3216:3 3228:1 3236:1 3238:1 3242:1 3247:1 3333:1 3356:2 3372:1 3400:1 3411:1 3443:1 3450:1 3483:1 3548:2 3562:1 3590:1 3600:1 3610:1 3646:3 3658:1 3671:1 3699:1 3735:3 3736:1 3779:1 3786:1 3803:1 3849:1 3891:1 3892:1 3929:1 3935:1 3964:1 4002:1 4006:1 4014:1 4018:1 4019:1 4032:1 4055:1 4066:1 4083:1 4102:1 4105:1 4130:1 4131:2 4152:1 4183:1 4189:1 4212:1 4214:2 4250:1 4252:3 4255:2 4260:1 4282:1 4291:1 4292:1 4303:1 4305:1 4310:1 4340:1 4377:1 4422:2 4425:1 4445:1 4454:1 4462:1 4537:1 4563:1 4609:1 4629:3 4657:1 4665:2 4669:1 4685:1 4715:1 4736:1 4748:4 4773:1 4781:1 4832:1 4863:1 4873:1 4880:1 4889:1 4932:2 4935:1 4938:1 4954:1 5001:1 5012:1 5017:2 5026:2 5035:1 5054:2 5058:2 5074:1 5131:1 5162:1 5178:1 5186:1 5187:2 5206:1 5238:1 5242:1 5247:2 5327:1 5336:1 5382:5 5418:1 5442:1 5500:4 5520:2 5521:1 5529:1 5535:1 5537:1 5541:1 5542:1 5546:1 5548:2 5549:1 5551:1 5574:1 5578:1 5679:1 5690:1 5697:2 5712:1 5757:1 5767:1 5774:1 5792:1 5805:1 5823:1 5829:1 5843:3 5896:1 5923:1 5928:1 5941:4 5963:1 5967:1 5980:1 5983:1 5998:3 6015:1 6027:1 6031:1 6037:1 6050:1 6051:1 6069:1 6085:2 6143:1 6171:1 6218:1 6232:1 6268:1 6287:2 6310:1 6333:1 6350:1 6390:1 6394:1 6395:2 6423:2 6453:1 6479:1 6483:1 6488:1 6594:1 6628:2 6656:1 6725:1 6742:1 6745:1 6749:1 6775:1 6779:1 6780:1 6825:2 6831:1 6850:1 6920:1 6931:1 6945:1 6955:1 7026:1 7035:1 7037:1 7055:1 7056:1 7058:1 7060:1 7064:1 7066:1 7071:2 7073:2 7113:1 7119:1 7122:1 7129:1 7152:1 7165:2 7168:2 7184:1 7189:2 7220:2 7229:1 7231:2 7248:1 7308:1 7325:2 7328:1 7330:1 7331:2 7338:1 7365:1 7370:1 7389:1 7403:1 7406:1 7432:2 7453:1 7456:1 7489:1 7526:1 7527:1 7544:1 7610:1 7613:1 7625:1 7629:4 7679:1 7732:1 7746:1 7758:2 7774:1 7785:1 7797:1 7811:1 7824:1 7884:2 7887:2 7923:2 7930:1 7960:1 7979:2 8044:1 8047:1 8059:1 8087:1 8099:1 8137:2 8219:2 8235:1 8253:1 8262:2 8288:1 8305:1 8324:2 8327:1 8329:1 8335:2 8344:1 8348:1 8360:1 8393:1 8408:1 8414:1 8448:1 8457:1 8459:3 8461:2 8462:1 8489:1 8521:1 8551:3 8569:1 8602:1 8607:1 8609:1 8620:10 8641:2 8642:3 8669:1 8689:2 8690:1 8697:1 8707:1 8746:1 8761:1 8769:1 8785:1 8819:1 8833:1 8855:3 8860:1 8876:1 8914:1 8957:1 8975:1 8979:1 8985:1 8995:1 9025:1 9039:1 9074:1 9076:1 9082:3 9087:2 9088:1 9092:1 9110:2 9157:9 9170:1 9180:1 9207:1 9208:2 9214:1 9216:1 9222:1 9243:1 9252:1 9253:1 9266:1 9282:1 9298:1 9333:1 9353:1 9397:1 9406:1 9419:1 9456:1 9493:1 9499:1 9534:1 9549:1 9599:1 9605:3 9610:1 9611:1 9656:1 9698:1 9711:1 9719:1 9769:1 9777:2 9824:2 9825:1 9826:6 9836:1 9845:1 9849:1 9853:1 9896:1 9921:1 9926:1 9928:1 9943:1 9950:2 9992:3 10114:1 10193:1 10202:1 10226:1 10255:1 10260:1 10269:2 10279:3 10306:1 10314:1 10326:1 10357:1 10362:1 10365:1 10385:1 10390:2 10413:1 10472:2 10556:1 10572:2 10574:1 10606:1 10623:1 10629:1 10640:1 10643:1 10650:2 10656:1 10686:1 10719:2 10753:1 10771:1 10782:1 10783:1 10795:1 10796:1 10797:1 10874:1 10883:1 10931:4 10947:1 10954:1 10990:1 11020:1 11021:1 11070:1 11115:1 11159:3 11213:1 11220:1 11274:2 11282:1 11293:1 11298:1 11310:1 11313:1 11326:1 11342:1 11346:1 11386:1 11390:1 11403:1 11423:1 11442:2 11451:1 11482:3 11486:1 11493:1 11536:1 11554:1 11567:1 11571:1 11579:1 11584:1 11594:1 11600:1 11601:2 11608:3 11630:1 11701:1 11706:1 11717:1 11737:1 11746:1 11769:1 11808:1 11809:2 11810:1 11834:1 11850:6 11888:1 11921:1 11926:3 11959:1 11960:2 11961:2 11977:1 12009:1 12020:2 12035:1 12043:2 12100:1 12102:1 12119:1 12136:1 12149:1 12189:1 12205:1 12230:1 12242:1 12275:2 12300:2 12312:1 12343:1 12380:1 12408:1 12420:1 12440:1 12442:2 12457:1 12458:1 12475:1 12476:1 12477:1 12486:1 12496:1 12497:2 12509:1 12510:2 12517:1 12536:1 12563:1 12570:2 12596:1 12623:1 12632:1 12654:1 12688:2 12705:1 12716:4 12722:1 12735:1 12744:1 12746:1 12764:1 12776:1 12784:1 12822:1 12843:1 12846:1 12860:1 12865:1 12901:1 12922:1 12933:1 12934:1 12960:1 12965:1 13017:1 13041:1 13092:2 13121:1 13151:1 13164:1 13167:1 13173:3 13178:1 13180:1 13182:1 13186:1 13195:1 13205:1 13253:1 13256:1 13265:2 13269:2 13297:3 13351:3 13405:1 13434:1 13502:2 13511:2 13513:2 13546:1 13575:1 13581:1 13626:4 13648:1 13650:1 13654:4 13658:2 13674:1 13688:1 13698:3 13714:1 13728:2 13740:1 13757:1 13778:2 13834:1 13864:1 13873:2 13890:1 13901:1 13940:1 13954:1 13969:1 14011:1 14036:1 14045:1 14067:1 14117:1 14122:1 14129:1 14198:1 14206:1 14243:1 14266:1 14267:1 14275:1 14291:1 14302:1 14328:1 14329:3 14356:1 14371:2 14392:1 14472:1 14505:1 14584:1 14601:1 14603:1 14623:1 14632:2 14773:1 14783:1 14795:1 14807:1 14821:4 14841:1 14849:1 14850:1 14858:1 14872:1 14887:4 14905:1 14910:1 14938:1 14976:2 14978:3 14992:1 14994:2 15000:1 15039:2 15048:1 15075:4 15081:1 15090:3 15135:2 15139:1 15183:1 15218:1 15238:1 15243:3 15263:1 15291:1 15325:1 15368:1 15377:1 15401:1 15444:1 15450:1 15458:1 15489:2 15496:1 15516:1 15590:1 15596:1 15647:1 15663:1 15674:1 15681:1 15759:1 15802:1 15805:1 15817:1 15840:1 15853:3 15899:1 15948:1 15949:1 16011:1 16025:1 16030:1 16087:2 16102:1 16113:1 16182:1 16209:1 16272:1 16277:1 16292:1 16321:1 16336:1 16347:1 16352:1 16371:1 16426:1 16460:1 16480:1 16487:1 16523:1 16528:1 16540:2 16548:7 16601:1 16681:1 16697:2 16739:1 16760:1 16766:1 16777:6 16824:1 16849:1 16866:1 16870:1 16897:1 16916:6 16917:1 16940:1 16941:1 17016:1 17054:2 17061:1 17070:1 17091:1 17093:1 17102:1 17111:1 17116:1 17117:1 17148:2 17207:2 17256:1 17282:1 17290:1 17297:1 17331:1 17337:1 17343:1 17354:2 17376:1 17388:1 17408:1 17461:1 17513:1 17525:2 17538:1 17580:1 17583:1 17624:3 17701:1 17716:2 17717:2 17733:1 17753:1 17757:1 17770:1 17772:1 17773:1 17778:1 17787:1 17800:1 17804:4 17812:1 17871:1 17876:1 17877:2 17879:4 17899:1 17906:3 17921:1 17935:1 17986:1 17993:1 18041:2 18054:1 18055:1 18071:1 18077:1 18089:1 18098:1 18109:2 18121:1 18132:1 18147:1 18152:1 18156:3 18159:2 18164:1 18169:1 18182:1 18218:1 18307:1 18334:1 18339:2 18345:1 18346:1 18355:1 18367:1 18397:1 18410:1 18424:1 18436:1 18445:5 18493:1 18509:1 18537:1 18556:1 18573:1 18582:1 18624:1 18634:1 18643:1 18678:1 18709:1 18723:1 18738:1 18742:1 18753:1 18754:1 18767:1 18774:2 18829:3 18836:1 18880:3 18920:1 18931:1 18937:1 18943:3 18944:1 18945:1 18970:1 18994:1 19022:1 19030:1 19040:1 19041:1 19046:1 19058:1 19060:1 19067:1 19097:1 19120:1 19122:1 19154:1 19163:1 19224:1 19234:1 19290:1 19302:1 19417:1 19467:1 19469:1 19473:2 19477:1 19485:1 19489:1 19490:1 19526:1 19553:3 19555:3 19614:1 19651:1 19665:3 19677:1 19678:3 19739:1 19764:1 19777:1 19802:1 19803:1 19807:1 19816:1 19837:1 19876:2 19884:1 19887:1 19900:1 19950:1 19970:1 19977:1 19980:1 20026:1 20034:1 20073:1 20074:1 20081:1 20112:1 20126:1 20132:1 20152:2 20230:1 20306:1 20318:1 20333:1 20355:1 20358:1 20394:2 20402:1 20403:1 20411:1 20480:2 20522:1 20531:1 20551:1 20590:1 20605:1 20610:1 20613:3 20624:1 20634:2 20708:1 20714:1 20753:1 20757:1794 20781:1 20875:1 20886:1 20912:1 20941:1 20950:1 20963:1 20977:1 20991:1 20999:1 21000:1 21073:1 21109:1 21111:1 21133:1 21167:1 21190:1 21224:1 21233:2 21259:1 21262:3 21266:1 21330:1 21337:1 21371:1 21389:1 21423:1 21472:1 21514:1 21521:2 21551:1 21553:2 21587:1 21617:1 21643:2 21649:1 21669:1 21700:1 21710:1 21737:3 21778:1 21783:1 21806:2 21816:1 21878:1 21915:1 21974:1 21982:1 21988:1 22007:1 22042:1 22043:1 22105:1 22178:1 22182:2 22204:1 22207:1 22230:1 22251:1 22252:2 22277:1 22278:3 22299:3 22305:1 22320:1 22332:1 22361:1 22419:1 22445:2 22482:1 22493:1 22552:1 22655:3 22666:1 22712:1 22719:2 22722:1 22784:1 22818:1 22819:1 22824:1 22838:1 22848:1 22867:2 22872:1 22894:3 22897:2 22901:1 22903:1 22909:1 22912:1 22963:1 22992:1 23006:1 23022:1 23039:1 23042:1 23068:2 23083:3 23112:1 23114:1 23136:1 23145:1 23157:3 23163:1 23175:1 23183:1 23192:1 23196:1 23198:4 23202:1 23213:1 23264:1 23285:1 23287:1 23291:2 23302:1 23315:1 23320:1 23322:1 23337:1 23415:1 23421:1 23426:1 23427:1 23430:1 23433:2 23438:1 23453:1 23454:1 23456:2 23472:1 23473:1 23478:1 23487:1 23555:1 23568:1 23570:1 23572:1 23574:1 23600:4 23603:1 23618:1 23661:1 23700:1 23701:1 23704:1 23730:1 23741:1 23746:1 23774:1 23793:1 23839:1 23907:1 23926:1 23927:2 23930:1 23938:1 23945:2 23958:2 23962:1 23973:1 23976:1 24012:1 24136:2 24139:2 24162:2 24174:1 24224:1 24236:1 24280:1 24287:1 24300:2 24322:1 24333:1 24355:1 24384:1 24391:1 24414:1 24443:1 24467:1 24475:1 24507:1 24524:1 24557:1 24563:1 24665:1 24718:1 24742:1 24755:2 24770:2 24776:1 24793:5 24800:1 24812:1 24858:1 24868:1 24896:1 24898:1 24965:1 24996:1 25007:1 25046:1 25059:1 25069:1 25121:1 25275:1 25364:1 25383:1 25483:1 25485:1 25504:1 25559:1 25583:1 25588:1 25591:1 25593:1 25605:1 25607:1 25615:1 25634:1 25636:1 25665:1 25668:1 25702:1 25718:2 25747:1 25752:1 25770:1 25777:1 25784:2 25796:1 25803:1 25811:2 25812:1 25860:1 25862:1 25873:1 25876:2 25896:1 25898:1 25902:1 25905:1 25914:1 25935:1 25965:2 26018:1 26054:1 26068:1 26113:1 26123:1 26128:1 26135:1 26155:2 26157:1 26166:1 26173:1 26211:2 26219:1 26256:1 26271:1 26339:2 26370:1 26371:1 26411:1 26435:1 26460:1 26474:1 26534:1 26625:2 26639:1 26688:1 26713:1 26716:1 26735:1 26740:1 26813:1 26828:3 26845:7 26853:1 26861:1 26863:1 26887:1 26921:1 26951:1 26964:1 26994:1 26998:3 27000:2 27020:1 27037:2 27040:2 27047:1 27048:1 27075:1 27093:1 27135:1 27140:1 27177:1 27190:2 27209:3 27213:3 27217:1 27224:1 27246:1 27252:2 27284:1 27292:1 27328:2 27344:1 27412:1 27422:1 27457:2 27462:3 27487:1 27543:1 27563:1 27594:1 27600:1 27628:1 27640:1 27663:1 27678:1 27689:1 27799:4 27803:3 27835:1 27845:1 27853:1 27874:1 27878:1 27879:1 27889:1 27904:1 27964:2 27978:1 27988:1 27992:1 28006:1 28012:1 28019:1 28037:1 28061:2 28072:3 28084:1 28108:1 28132:2 28139:1 28174:1 28175:1 28207:1 28208:1 28210:1 28224:1 28228:1 28262:1 28344:1 28374:2 28375:1 28384:1 28397:1 28442:1 28491:1 28507:1 28509:1 28526:1 28538:1 28551:1 28562:1 28571:1 28581:1 28587:1 28604:1 28620:1 28638:2 28670:2 28674:1 28689:1 28720:2 28745:1 28746:1 28766:1 28781:1 28792:1 28810:3 28827:2 28841:1 28848:3 28854:1 28888:1 28946:1 28992:1 29042:1 29049:1 29051:1 29054:1 29059:1 29067:1 29095:1 29115:1 29125:1 29134:1 29139:4 29141:1 29145:1 29176:1 29198:1 29251:1 29273:2 29289:1 29303:1 29312:1 29334:1 29356:2 29392:2 29413:1 29453:1 29455:2 29463:1 29465:1 29494:1 29600:1 29628:1 29633:1 29638:1 29640:1 29647:2 29678:1 29724:1 29727:2 29732:1 29740:1 29744:1 29745:1 29746:2 29760:1 29770:2 29792:1 29822:1 29853:1 29878:1 29894:1 29899:1 29900:1 29942:2 29947:1 29993:1 30007:1 30012:2 30016:2 30021:1 30044:1 30053:1 30083:1 30093:1 30096:1 30143:1 30169:1 30186:2 30202:1 30203:1 30209:1 30210:2 30262:1 30266:2 30269:1 30309:1 30322:1 30333:1 30335:1 30345:2 30355:1 30390:1 30392:1 30413:1 30475:1 30488:2 30518:1 30533:2 30559:1 30564:2 30590:1 30663:1 30675:2 30689:1 30692:1 30727:1 30799:1 30817:1 30820:1 30836:5 30841:1 30862:1 30879:5 30896:1 30906:1 30944:1 30985:1 31017:1 31020:1 31025:1 31034:1 31036:1 31057:3 31063:1 31080:1 31095:1 31112:1 31116:1 31123:2 31126:1 31144:1 31156:2 31179:1 31188:2 31281:2 31330:1 31332:1 31335:1 31342:1 31348:1 31360:1 31379:1 31398:1 31401:1 31402:1 31449:3 31567:2 31593:3 31606:1 31624:1 31628:2 31635:1 31653:1 31659:1 31662:1 31688:1 31716:1 31735:1 31837:1 31849:1 31896:1 31950:1 31984:1 31994:1 32066:1 32080:1 32109:1 32120:1 32163:1 32214:1 32217:1 32235:1 32243:3 32244:1 32245:2 32250:1 32254:1 32257:1 32267:1 32278:1 32298:1 32303:1 32306:1 32333:2 32337:1 32343:1 32378:1 32382:1
15 71:2 91:1 104:1 167:2 189:1 200:1 224:1 225:1 244:1 267:1 285:3 335:1 337:1 370:1 406:2 409:2 463:1 503:2 517:1 529:1 541:2 586:1 612:1 615:1 622:1 623:1 645:2 649:1 655:1 661:1 666:1 685:2 696:1 697:2 699:1 747:1 768:1 813:2 892:1 928:2 935:1 958:1 961:1 963:2 968:1 981:1 985:1 1018:1 1020:2 1023:1 1039:1 1052:2 1072:1 1114:2 1119:1 1149:2 1150:1 1154:1 1167:1 1172:1 1205:2 1210:1 1235:1 1259:1 1277:1 1288:2 1297:1 1328:2 1337:1 1367:1 1374:2 1385:1 1396:1 1407:2 1408:1 1429:1 1448:1 1458:1 1465:1 1472:1 1483:1 1500:1 1513:1 1577:1 1592:4 1641:2 1642:1 1651:1 1656:3 1686:1 1699:1 1724:1 1725:1 1733:3 1736:1 1744:2 1749:2 1777:1 1810:2 1813:1 1821:2 1822:2 1827:1 1842:1 1843:3 1870:1 1897:1 1948:1 1952:1 1956:1 1973:1 1981:2 2013:1 2032:1 2037:1 2042:1 2043:2 2050:2 2052:1 2088:1 2091:1 2156:1 2159:3 2171:1 2177:1 2201:1 2359:1 2364:1 2386:1 2426:1 2449:1 2462:1 2463:1 2495:1 2501:1 2503:2 2505:2 2509:1 2516:1 2520:2 2522:1 2524:1 2525:1 2532:1 2533:1 2547:1 2561:1 2607:2 2636:1 2677:1 2678:1 2707:1 2711:1 2720:1 2804:1 2814:1 2833:1 2844:1 2940:1 2991:1 3028:2 3091:1 3103:1 3109:1 3138:2 3145:1 3155:1 3161:3 3169:2 3198:2 3216:4 3228:1 3236:1 3238:1 3242:1 3247:1 3333:1 3356:2 3372:1 3400:1 3411:1 3443:1 3450:1 3483:1 3548:2 3562:1 3590:1 3600:1 3610:1 3646:3 3658:1 3671:1 3676:1 3699:1 3735:3 3736:1 3779:1 3786:1 3803:1 3849:1 3891:1 3892:1 3929:1 3935:1 3964:1 3968:1 4002:1 4006:1 4014:1 4018:1 4019:1 4032:1 4055:1 4066:1 4083:1 4102:1 4105:1 4130:2 4131:2 4152:1 4183:1 4187:1 4189:1 4212:1 4214:2 4250:1 4252:3 4255:2 4260:1 4282:1 4291:1 4292:1 4303:1 4305:1 4310:1 4340:1 4377:1 4422:2 4425:1 4445:1 4454:1 4462:1 4463:1 4537:1 4563:1 4580:1 4609:1 4629:3 4657:1 4665:2 4669:1 4685:1 4715:1 4718:1 4736:1 4748:4 4773:1 4781:1 4796:1 4832:1 4863:1 4873:1 4880:1 4889:1 4932:2 4935:1 4938:1 4954:1 5001:1 5012:1 5017:2 5026:2 5035:1 5054:2 5058:2 5074:1 5131:1 5162:1 5178:1 5186:1 5187:2 5206:1 5238:1 5242:1 5247:2 5327:1 5336:1 5382:5 5418:1 5442:1 5500:4 5520:2 5521:1 5529:1 5535:1 5537:1 5541:1 5542:1 5546:1 5548:2 5549:1 5551:1 5574:1 5578:1 5679:1 5690:1 5697:2 5712:1 5757:1 5767:1 5774:1 5792:1 5805:1 5823:1 5829:1 5843:3 5896:1 5923:1 5928:1 5941:4 5963:1 5967:1 5980:1 5983:1 5998:3 6015:1 6027:1 6031:1 6037:1 6050:1 6051:1 6069:1 6085:2 6143:1 6171:1 6218:1 6232:1 6268:1 6287:2 6310:1 6333:1 6350:1 6390:1 6394:1 6395:2 6423:2 6453:1 6479:1 6483:1 6488:1 6594:1 6628:2 6656:1 6725:1 6742:1 6745:1 6749:1 6775:1 6779:1 6780:1 6825:2 6831:1 6850:1 6866:1 6920:1 6931:1 6945:1 6955:1 7026:1 7035:1 7037:1 7055:1 7056:1 7058:1 7060:1 7064:1 7066:1 7071:2 7073:3 7113:1 7119:1 7122:1 7129:1 7130:1 7141:1 7152:1 7165:2 7168:2 7184:1 7189:2 7220:2 7229:1 7231:2 7248:1 7308:1 7325:2 7328:1 7330:1 7331:2 7338:1 7365:1 7370:1 7389:1 7403:1 7406:1 7432:2 7453:1 7456:1 7489:1 7526:1 7527:1 7544:1 7610:1 7613:1 7625:1 7629:4 7679:1 7714:1 7732:1 7739:1 7746:1 7758:2 7774:1 7785:1 7797:1 7811:1 7824:1 7884:2 7887:2 7923:2 7930:1 7931:1 7960:1 7979:3 7991:1 8044:1 8047:1 8059:1 8087:1 8099:1 8133:1 8137:3 8219:2 8235:1 8253:1 8262:2 8288:1 8305:1 8324:2 8327:1 8329:1 8335:2 8344:1 8348:1 8360:1 8393:1 8408:1 8414:1 8448:1 8457:1 8459:3 8461:2 8462:1 8489:1 8521:1 8551:3 8569:1 8602:1 8607:2 8609:1 8620:11 8629:1 8641:2 8642:4 8669:1 8689:2 8690:1 8697:1 8707:1 8746:1 8761:1 8769:1 8785:2 8819:1 8833:1 8855:3 8860:1 8876:1 8914:1 8957:1 8975:1 8979:1 8985:1 8995:1 9025:1 9039:1 9074:1 9076:1 9082:3 9087:2 9088:1 9092:1 9110:2 9157:10 9170:1 9180:1 9207:1 9208:2 9214:1 9216:2 9222:1 9243:1 9252:2 9253:1 9266:1 9282:1 9298:1 9333:1 9353:1 9397:1 9406:1 9419:1 9456:1 9493:1 9499:1 9534:2 9549:1 9599:1 9605:3 9610:1 9611:1 9651:1 9656:1 9698:1 9711:1 9719:1 9769:1 9777:2 9824:2 9825:1 9826:6 9836:1 9845:1 9849:1 9853:1 9896:1 9921:1 9926:1 9928:1 9943:1 9950:2 9992:3 10114:1 10164:1 10193:1 10202:1 10226:1 10255:1 10260:1 10269:2 10279:3 10306:1 10314:1 10326:1 10357:1 10362:1 10365:1 10385:1 10390:2 10413:1 10472:2 10556:1 10572:2 10574:1 10606:1 10623:1 10629:1 10640:1 10643:1 10650:2 10656:1 10686:1 10719:2 10753:1 10771:1 10782:1 10783:1 10791:1 10792:1 10795:1 10796:1 10797:1 10874:1 10883:1 10931:4 10947:1 10954:1 10990:1 11020:1 11021:1 11070:1 11115:1 11159:3 11213:2 11220:2 11274:2 11282:1 11293:1 11298:1 11310:1 11313:1 11326:1 11342:1 11346:1 11386:1 11390:1 11403:1 11423:1 11442:2 11443:1 11451:1 11482:3 11486:1 11493:1 11536:1 11554:1 11567:1 11571:1 11579:1 11583:1 11584:1 11594:1 11600:1 11601:2 11608:3 11630:1 11701:1 11706:1 11717:1 11737:1 11746:1 11769:1 11808:1 11809:2 11810:1 11834:1 11850:6 11888:1 11921:1 11926:4 11959:1 11960:2 11961:2 11977:1 12009:1 12020:2 12035:1 12043:2 12100:1 12102:1 12119:1 12136:1 12149:1 12189:1 12205:1 12230:1 12242:1 12275:2 12300:2 12312:1 12339:1 12343:1 12380:1 12408:1 12420:1 12440:1 12442:2 12457:1 12458:1 12475:1 12476:1 12477:1 12486:1 12496:1 12497:2 12509:1 12510:2 12517:1 12536:1 12563:1 12570:2 12596:1 12623:1 12632:1 12654:1 12688:2 12705:1 12716:4 12722:1 12735:1 12744:1 12746:1 12764:1 12776:1 12784:1 12822:1 12843:1 12846:1 12860:1 12865:1 12901:1 12922:1 12933:1 12934:1 12960:1 12965:1 12997:1 13017:1 13041:1 13092:2 13121:1 13151:1 13164:1 13167:1 13173:3 13178:1 13180:1 13182:1 13186:1 13195:1 13205:1 13253:1 13256:1 13265:2 13269:2 13297:3 13351:3 13405:1 13434:1 13502:2 13511:2 13513:2 13546:1 13575:1 13581:1 13602:1 13626:4 13648:1 13650:1 13654:4 13658:2 13674:1 13688:1 13698:3 13714:1 13728:2 13740:1 13757:1 13774:1 13778:2 13834:1 13844:2 13864:1 13873:2 13890:1 13901:1 13940:1 13954:1 13969:1 14011:1 14036:1 14045:1 14067:1 14117:1 14122:1 14129:1 14157:1 14198:1 14206:1 14243:1 14266:1 14267:1 14275:1 14291:1 14302:1 14328:1 14329:3 14356:1 14371:2 14392:1 14472:1 14505:1 14584:1 14601:1 14603:1 14623:1 14632:2 14773:1 14783:1 14795:1 14807:1 14821:4 14841:1 14849:1 14850:1 14858:1 14872:1 14887:4 14905:1 14910:1 14938:1 14976:2 14978:3 14992:1 14994:2 15000:1 15039:2 15048:1 15054:1 15075:4 15081:1 15090:3 15135:2 15139:1 15183:1 15218:1 15238:1 15243:3 15263:1 15291:1 15314:1 15325:1 15368:1 15377:1 15401:1 15444:1 15450:1 15458:1 15489:2 15496:2 15516:1 15590:1 15596:1 15647:1 15657:1 15663:1 15674:1 15681:1 15759:1 15802:1 15805:1 15817:1 15840:1 15853:3 15899:1 15948:1 15949:1 16011:1 16025:1 16030:1 16087:2 16097:1 16102:1 16113:1 16182:1 16209:1 16214:2 16251:1 16272:1 16277:1 16292:1 16313:1 16321:1 16336:1 16347:1 16352:1 16371:1 16426:1 16460:1 16480:1 16487:1 16523:1 16528:1 16540:2 16548:7 16601:1 16681:1 16697:2 16716:1 16739:1 16760:1 16766:1 16777:6 16818:1 16822:1 16824:1 16849:1 16866:1 16870:1 16897:1 16916:6 16917:1 16940:1 16941:1 17016:1 17054:2 17061:1 17070:1 17091:1 17093:1 17102:1 17111:1 17116:1 17117:1 17148:2 17207:2 17256:1 17282:1 17290:1 17297:1 17331:1 17337:1 17343:1 17354:2 17376:1 17388:1 17408:1 17461:1 17483:1 17513:1 17525:2 17538:1 17565:1 17580:1 17583:1 17624:3 17701:1 17716:2 17717:2 17733:1 17753:1 17757:1 17770:1 17772:1 17773:1 17778:1 17787:1 17800:1 17804:4 17812:1 17868:1 17871:1 17876:1 17877:2 17879:4 17899:1 17906:3 17921:1 17935:1 17948:1 17986:1 17993:1 18041:3 18054:1 18055:1 18071:1 18077:1 18089:1 18098:1 18109:2 18121:1 18132:1 18147:1 18152:1 18156:3 18159:3 18164:1 18169:1 18182:1 18218:1 18307:1 18334:1 18339:2 18345:1 18346:1 18355:1 18367:1 18382:1 18397:1 18410:1 18424:2 18436:1 18445:5 18493:1 18509:1 18537:1 18556:1 18573:1 18582:1 18624:1 18634:1 18643:1 18678:1 18709:1 18723:1 18738:2 18742:1 18753:1 18754:1 18767:1 18774:3 18829:3 18836:1 18880:3 18920:1 18922:1 18931:1 18937:1 18943:3 18944:1 18945:1 18970:1 18994:1 19022:1 19030:1 19040:1 19041:1 19046:1 19058:1 19060:1 19067:1 19095:1 19097:1 19120:1 19122:1 19154:1 19163:1 19224:1 19234:1 19290:1 19302:1 19372:1 19417:1 19467:1 19469:1 19473:2 19477:1 19485:1 19489:1 19490:1 19526:1 19553:3 19555:3 19614:1 19651:1 19665:3 19677:1 19678:3 19739:1 19757:1 19764:1 19777:1 19802:1 19803:1 19807:1 19816:1 19837:1 19876:2 19884:1 19887:1 19900:1 19950:1 19970:1 19977:1 19980:1 20026:1 20034:2 20073:1 20074:1 20081:1 20111:1 20112:1 20126:1 20132:1 20152:2 20230:1 20306:1 20318:1 20333:1 20355:1 20358:1 20394:2 20401:1 20402:1 20403:1 20411:1 20480:2 20522:1 20531:2 20551:1 20590:1 20605:1 20610:1 20613:3 20624:1 20634:2 20708:1 20714:1 20753:1 20757:1885 20781:1 20875:1 20886:1 20912:1 20941:1 20950:1 20963:1 20977:1 20991:1 20999:1 21000:1 21073:1 21109:1 21111:1 21133:1 21167:1 21190:1 21224:1 21225:1 21230:1 21233:2 21259:1 21262:3 21266:1 21330:1 21337:1 21371:1 21389:1 21423:1 21472:1 21514:1 21521:4 21551:1 21553:4 21558:1 21565:1 21587:1 21617:1 21643:2 21649:1 21669:1 21700:1 21710:1 21737:3 21778:1 21783:1 21806:2 21816:1 21878:1 21911:1 21915:2 21974:1 21982:1 21988:1 22007:1 22042:1 22043:1 22070:1 22105:1 22178:1 22182:2 22204:1 22207:1 22230:1 22251:1 22252:3 22277:1 22278:3 22299:3 22305:1 22320:1 22328:1 22332:1 22361:1 22419:1 22445:3 22448:1 22482:1 22493:1 22552:1 22655:3 22666:1 22712:1 22719:2 22722:1 22784:1 22813:1 22818:1 22819:1 22824:1 22838:1 22848:1 22867:2 22872:1 22894:4 22897:2 22901:1 22903:1 22909:1 22912:1 22963:1 22992:1 23006:1 23022:1 23039:1 23042:1 23068:2 23083:3 23112:1 23114:1 23128:1 23136:1 23145:1 23157:4 23163:1 23175:1 23183:1 23192:1 23196:1 23198:4 23202:1 23213:1 23264:1 23285:1 23287:1 23291:2 23302:1 23315:1 23320:1 23322:1 23337:1 23415:1 23421:1 23426:1 23427:1 23430:1 23433:2 23438:1 23453:1 23454:1 23456:2 23472:1 23473:1 23478:1 23487:1 23555:1 23568:1 23570:1 23572:1 23574:1 23600:4 23603:1 23618:1 23661:1 23700:1 23701:1 23704:1 23730:1 23741:1 23746:1 23774:1 23793:1 23834:1 23839:2 23907:1 23926:1 23927:2 23930:1 23938:1 23945:2 23958:2 23962:2 23973:1 23976:1 24012:1 24026:1 24136:2 24139:2 24162:2 24174:1 24224:1 24236:1 24280:1 24287:1 24300:2 24322:1 24333:1 24355:1 24384:1 24391:1 24414:1 24443:1 24467:1 24475:1 24507:1 24524:1 24557:1 24563:1 24596:1 24665:1 24718:1 24742:1 24755:3 24770:2 24776:1 24793:5 24800:1 24812:1 24858:1 24868:1 24870:1 24896:1 24898:1 24965:1 24996:1 25007:1 25046:1 25059:1 25069:2 25121:1 25275:1 25364:1 25383:1 25483:1 25485:1 25504:1 25559:1 25583:1 25588:1 25591:1 25593:1 25605:1 25607:1 25615:1 25634:1 25636:1 25665:1 25668:1 25702:1 25718:2 25747:1 25752:1 25770:1 25777:1 25784:3 25796:1 25803:1 25811:2 25812:1 25860:1 25862:2 25873:1 25876:2 25883:1 25896:1 25898:1 25902:1 25905:1 25914:1 25935:1 25965:2 26018:1 26054:1 26068:1 26113:1 26123:1 26128:1 26135:1 26155:2 26157:1 26166:1 26173:1 26211:2 26219:1 26256:1 26271:1 26320:1 26339:2 26370:1 26371:1 26411:1 26435:1 26460:1 26474:1 26534:1 26625:2 26639:1 26688:1 26713:1 26716:1 26735:1 26740:1 26813:1 26828:3 26845:7 26853:1 26861:1 26863:1 26887:1 26921:1 26951:1 26964:1 26994:1 26998:3 27000:2 27020:1 27037:2 27040:2 27047:1 27048:1 27075:1 27093:1 27112:1 27135:1 27140:1 27177:1 27190:2 27209:3 27213:3 27217:1 27224:1 27246:1 27252:2 27284:1 27292:1 27328:2 27344:1 27412:1 27422:1 27457:2 27462:3 27487:1 27543:1 27563:1 27565:1 27594:1 27600:1 27628:1 27640:1 27663:1 27678:1 27689:1 27775:1 27799:4 27803:3 27835:1 27845:1 27853:1 27874:1 27878:1 27879:1 27889:1 27904:1 27964:2 27978:1 27988:1 27992:1 28006:1 28012:1 28019:1 28037:1 28061:2 28072:3 28084:1 28108:1 28132:2 28139:1 28174:1 28175:1 28207:1 28208:1 28210:1 28224:1 28228:1 28262:1 28344:1 28374:2 28375:1 28384:1 28397:1 28442:1 28491:1 28507:1 28509:1 28526:1 28538:1 28540:1 28551:1 28562:1 28571:1 28581:1 28587:1 28591:1 28604:1 28620:1 28638:2 28670:2 28674:1 28689:1 28720:2 28745:1 28746:1 28766:1 28781:1 28792:1 28810:3 28827:2 28841:1 28848:3 28854:1 28888:1 28946:1 28992:1 28994:1 29042:1 29049:1 29051:1 29054:1 29059:1 29067:1 29095:1 29115:1 29125:1 29134:1 29139:4 29141:1 29145:1 29176:1 29198:1 29251:1 29273:2 29289:1 29303:1 29312:1 29334:1 29356:2 29392:2 29413:1 29453:1 29455:2 29463:1 29465:1 29494:1 29600:1 29628:1 29633:1 29638:1 29640:1 29647:2 29678:1 29724:1 29727:2 29732:1 29740:1 29744:1 29745:1 29746:2 29760:1 29770:2 29792:1 29822:1 29853:1 29878:1 29894:1 29899:1 29900:1 29905:1 29942:2 29947:1 29993:1 30007:1 30012:2 30016:2 30021:1 30044:1 30053:1 30083:1 30093:1 30096:1 30106:1 30143:1 30169:1 30186:2 30202:1 30203:1 30209:1 30210:2 30262:1 30266:2 30269:1 30309:1 30322:1 30333:1 30335:1 30345:2 30355:1 30359:1 30390:1 30392:1 30413:1 30475:1 30488:2 30518:1 30533:2 30559:1 30564:2 30590:1 30663:1 30675:2 30689:1 30692:1 30727:1 30799:1 30817:1 30820:1 30836:5 30837:1 30841:1 30860:1 30862:1 30879:5 30896:1 30906:1 30944:1 30985:1 31017:1 31020:1 31025:1 31034:1 31036:1 31057:3 31063:1 31080:1 31095:1 31112:1 31116:1 31123:2 31126:1 31144:1 31156:2 31179:1 31188:2 31191:1 31209:1 31256:1 31281:2 31330:1 31332:1 31335:1 31340:1 31342:1 31348:1 31360:1 31379:1 31398:1 31401:1 31402:1 31449:3 31469:1 31567:2 31593:3 31606:1 31624:1 31628:2 31635:1 31653:1 31659:1 31662:1 31688:1 31716:1 31735:1 31819:1 31837:1 31849:1 31896:1 31950:1 31984:1 31994:1 32016:1 32066:1 32080:1 32105:1 32109:1 32120:1 32163:1 32214:1 32217:1 32221:1 32233:1 32235:1 32243:3 32244:1 32245:2 32250:2 32254:1 32257:1 32267:1 32278:1 32298:1 32303:1 32306:1 32324:1 32333:2 32337:1 32343:1 32378:1 32382:1
15 71:2 91:1 104:1 167:2 189:1 196:1 200:1 224:1 225:1 244:1 267:1 285:3 335:1 337:1 370:1 406:2 409:2 463:1 503:2 517:1 529:1 541:2 586:1 612:1 615:1 622:1 623:1 645:2 649:1 655:1 661:1 666:1 685:2 696:1 697:2 699:1 747:1 768:1 813:2 892:1 928:2 935:1 958:1 961:1 963:2 968:1 981:1 985:1 1018:1 1020:2 1023:1 1039:1 1052:2 1072:1 1114:2 1119:1 1149:2 1150:1 1154:1 1167:1 1172:1 1180:1 1205:2 1210:1 1235:1 1259:1 1277:1 1288:2 1297:1 1328:2 1337:1 1367:1 1374:2 1385:1 1396:1 1407:2 1408:1 1429:1 1448:1 1458:1 1465:1 1472:1 1483:1 1484:1 1500:1 1513:1 1562:1 1577:1 1592:4 1629:1 1641:2 1642:1 1651:1 1656:3 1686:1 1699:1 1724:1 1725:1 1733:3 1736:2 1744:2 1749:2 1777:1 1810:2 1813:1 1821:2 1822:2 1827:1 1842:1 1843:3 1870:1 1897:1 1948:1 1952:2 1956:1 1973:1 1981:2 2013:1 2032:1 2037:1 2042:1 2043:2 2050:2 2052:1 2088:1 2091:1 2156:1 2159:3 2171:1 2174:1 2177:1 2201:1 2359:1 2364:1 2386:1 2426:1 2449:1 2462:1 2463:1 2495:1 2501:1 2503:2 2505:2 2509:1 2516:1 2520:2 2522:1 2524:1 2525:1 2532:2 2533:1 2547:1 2561:1 2607:2 2636:1 2677:1 2678:1 2707:1 2711:1 2720:2 2804:1 2814:1 2833:1 2844:1 2940:2 2991:1 3028:2 3091:1 3103:1 3109:1 3138:2 3145:1 3155:1 3161:3 3169:2 3198:2 3216:4 3228:1 3236:1 3238:1 3242:1 3247:1 3321:1 3333:1 3356:2 3372:1 3400:1 3411:1 3443:1 3450:1 3483:1 3548:2 3562:1 3590:1 3600:1 3610:1 3646:3 3658:1 3671:1 3676:1 3699:1 3735:3 3736:1 3779:1 3786:1 3803:1 3849:1 3891:1 3892:1 3929:1 3935:1 3964:1 3968:1 4002:1 4006:1 4014:1 4018:1 4019:1 4032:1 4055:1 4066:1 4083:1 4102:1 4105:1 4130:2 4131:2 4152:1 4183:1 4187:1 4189:1 4212:1 4214:2 4250:1 4252:3 4255:2 4260:1 4282:1 4291:1 4292:1 4303:1 4305:1 4310:1 4340:1 4377:1 4422:2 4425:1 4445:1 4454:1 4462:1 4463:1 4537:1 4563:1 4580:1 4609:1 4629:3 4657:1 4665:2 4669:1 4671:1 4685:1 4715:1 4718:1 4736:1 4748:4 4773:1 4781:1 4796:1 4832:1 4863:1 4873:1 4880:1 4889:1 4932:2 4935:1 4938:1 4954:1 5001:1 5012:1 5017:2 5026:2 5035:1 5054:2 5058:2 5074:1 5131:1 5162:1 5178:1 5186:1 5187:2 5206:1 5238:1 5242:1 5247:2 5327:1 5336:1 5382:5 5418:1 5442:1 5500:4 5520:2 5521:1 5529:1 5535:1 5537:1 5541:1 5542:1 5546:1 5548:2 5549:1 5551:1 5574:1 5578:1 5679:1 5690:1 5697:2 5712:1 5757:1 5767:1 5774:1 5788:1 5792:1 5805:2 5823:1 5829:1 5843:3 5896:1 5923:1 5928:1 5941:4 5963:1 5967:1 5980:1 5983:1 5998:3 6015:1 6027:1 6031:1 6037:1 6038:1 6050:1 6051:1 6069:1 6085:2 6143:1 6171:1 6218:1 6232:1 6268:1 6287:2 6310:1 6333:1 6350:1 6390:1 6394:1 6395:2 6423:2 6453:1 6479:1 6483:1 6488:1 6594:1 6628:2 6656:1 6725:1 6742:1 6745:1 6749:1 6775:1 6779:1 6780:1 6825:2 6831:1 6850:1 6866:1 6920:1 6931:1 6945:1 6955:1 7021:1 7026:1 7035:1 7037:1 7055:1 7056:1 7058:1 7060:1 7064:1 7066:1 7071:3 7073:3 7113:1 7119:1 7122:1 7129:1 7130:1 7141:1 7152:1 7165:2 7168:2 7184:1 7189:2 7220:2 7229:1 7231:2 7248:1 7308:1 7325:2 7328:1 7330:1 7331:2 7338:1 7365:1 7370:1 7389:1 7403:1 7406:1 7432:2 7453:1 7456:1 7489:1 7526:1 7527:1 7535:1 7544:1 7610:1 7613:1 7625:1 7629:4 7679:1 7714:1 7732:1 7739:1 7746:1 7758:2 7774:1 7785:1 7797:1 7811:1 7824:1 7884:2 7887:2 7923:2 7930:1 7931:1 7960:1 7979:3 7991:1 8044:1 8047:1 8059:1 8087:1 8099:1 8133:1 8137:3 8219:2 8235:1 8253:1 8262:2 8288:1 8305:1 8324:2 8327:1 8329:1 8335:2 8344:1 8348:1 8360:1 8393:1 8408:1 8414:1 8448:1 8457:1 8459:3 8461:2 8462:1 8489:1 8521:1 8551:3 8569:1 8602:1 8607:2 8609:1 8620:12 8629:1 8641:2 8642:4 8669:1 8689:2 8690:1 8697:1 8707:1 8746:1 8761:1 8769:1 8785:2 8817:1 8819:1 8833:1 8855:3 8860:1 8863:1 8876:1 8914:1 8950:1 8957:1 8975:1 8979:1 8985:1 8995:1 9025:1 9039:1 9074:1 9076:1 9082:3 9087:2 9088:1 9092:1 9110:2 9156:1 9157:10 9170:1 9180:1 9207:1 9208:2 9214:1 9216:2 9222:1 9243:2 9252:2 9253:1 9266:1 9282:1 9298:1 9333:1 9353:1 9397:1 9406:1 9419:1 9456:1 9493:1 9499:1 9534:2 9549:1 9599:1 9605:3 9610:1 9611:1 9651:1 9656:1 9698:1 9711:1 9719:1 9769:1 9777:2 9824:2 9825:1 9826:6 9836:1 9845:1 9849:1 9853:1 9896:1 9921:1 9926:1 9928:1 9943:1 9950:2 9992:3 10114:1 10164:1 10193:1 10202:1 10226:1 10255:1 10260:1 10269:2 10279:3 10306:1 10314:1 10326:1 10357:1 10362:1 10365:1 10385:1 10390:2 10413:1 10472:2 10556:1 10572:2 10574:1 10593:1 10606:1 10623:1 10629:1 10640:1 10643:1 10650:2 10656:1 10686:1 10719:2 10753:1 10771:1 10782:1 10783:1 10791:1 10792:1 10795:1 10796:1 10797:1 10874:1 10883:1 10931:4 10947:1 10954:1 10990:1 11020:1 11021:1 11027:1 11070:1 11115:1 11159:3 11213:2 11220:2 11274:2 11282:1 11293:1 11298:1 11310:1 11313:1 11326:1 11342:1 11346:1 11386:1 11390:1 11403:1 11423:1 11442:2 11443:1 11451:1 11482:3 11486:1 11493:1 11536:1 11554:1 11567:1 11571:1 11579:1 11583:1 11584:1 11594:1 11600:1 11601:2 11608:3 11630:1 11689:1 11701:1 11706:1 11717:1 11737:1 11746:1 11769:1 11771:1 11808:1 11809:2 11810:1 11834:1 11850:6 11888:1 11921:1 11926:4 11959:1 11960:2 11961:2 11977:1 11994:1 12009:1 12020:2 12035:1 12043:2 12100:1 12102:1 12119:1 12136:1 12149:1 12189:1 12205:1 12230:1 12242:1 12275:2 12300:2 12312:1 12339:1 12343:1 12380:1 12408:1 12420:1 12440:1 12442:2 12457:1 12458:1 12475:1 12476:1 12477:1 12486:1 12496:1 12497:2 12509:1 12510:2 12517:1 12536:1 12563:1 12570:2 12596:1 12623:1 12632:1 12654:1 12688:2 12705:1 12716:4 12722:1 12735:1 12744:1 12746:1 12764:1 12776:1 12784:1 12822:1 12843:1 12846:1 12860:1 12865:1 12888:1 12901:1 12922:1 12933:1 12934:1 12960:1 12965:1 12997:1 13017:1 13041:1 13092:2 13121:1 13151:1 13164:1 13167:1 13173:3 13178:1 13180:1 13182:1 13186:1 13195:1 13205:1 13253:1 13256:1 13265:2 13269:2 13297:3 13351:3 13405:1 13434:1 13502:2 13511:2 13513:2 13521:1 13546:1 13575:1 13581:1 13602:1 13626:4 13648:1 13650:1 13654:4 13658:2 13674:1 13688:1 13698:3 13714:1 13728:2 13740:1 13757:1 13774:1 13778:2 13834:1 13844:2 13864:1 13873:2 13890:1 13901:1 13940:1 13954:1 13969:1 14011:1 14036:1 14045:1 14067:1 14117:1 14122:1 14129:1 14132:1 14157:1 14198:2 14206:1 14243:1 14266:1 14267:1 14275:1 14291:1 14302:1 14328:1 14329:3 14356:1 14371:2 14392:1 14472:1 14505:1 14584:1 14601:1 14603:1 14623:1 14632:2 14773:1 14783:1 14795:1 14807:1 14821:4 14841:1 14849:1 14850:1 14858:1 14872:1 14887:4 14905:1 14910:1 14923:1 14938:1 14976:2 14978:3 14992:1 14994:2 14996:1 15000:1 15028:1 15039:2 15048:1 15054:1 15075:4 15081:1 15090:3 15135:2 15139:1 15161:1 15183:1 15218:1 15238:1 15243:3 15263:1 15291:1 15314:1 15325:1 15368:1 15377:1 15384:1 15401:1 15444:1 15450:1 15458:1 15489:2 15496:2 15516:1 15590:1 15596:1 15647:1 15657:1 15663:1 15674:1 15681:1 15759:1 15800:1 15802:1 15805:2 15817:1 15840:1 15853:3 15899:1 15948:1 15949:1 16011:1 16025:1 16030:1 16087:2 16097:1 16102:1 16113:1 16182:1 16209:1 16214:2 16251:1 16272:1 16277:1 16292:1 16313:1 16321:1 16336:1 16347:1 16352:2 16371:1 16391:1 16426:1 16460:1 16480:1 16487:1 16523:1 16528:1 16540:2 16548:7 16601:1 16681:1 16697:2 16716:1 16739:1 16760:1 16766:1 16777:6 16818:1 16822:1 16824:1 16849:1 16866:1 16870:1 16897:1 16916:6 16917:1 16940:1 16941:1 17016:1 17054:2 17061:1 17070:1 17091:1 17093:1 17102:1 17111:1 17116:1 17117:1 17148:2 17207:2 17256:1 17282:1 17290:1 17297:1 17331:1 17337:1 17343:1 17354:2 17376:1 17388:1 17408:1 17461:1 17483:1 17513:1 17525:2 17538:1 17565:1 17580:1 17583:1 17624:3 17696:1 17700:1 17701:1 17716:2 17717:2 17733:1 17753:1 17757:1 17770:1 17772:1 17773:1 17778:1 17787:1 17800:1 17804:4 17812:1 17868:1 17871:1 17876:1 17877:2 17879:4 17899:1 17906:3 17921:1 17935:1 17948:1 17986:1 17993:1 18032:1 18041:3 18054:1 18055:1 18071:1 18077:1 18089:1 18098:1 18109:2 18121:1 18132:1 18147:1 18152:1 18156:3 18159:3 18164:1 18169:1 18182:1 18218:1 18307:1 18334:1 18339:2 18345:1 18346:1 18355:1 18367:1 18382:1 18397:1 18410:1 18424:2 18429:2 18436:1 18445:5 18493:1 18509:1 18537:1 18556:1 18573:1 18582:1 18624:1 18634:1 18643:1 18678:1 18709:1 18723:1 18738:2 18742:1 18753:1 18754:1 18767:1 18774:3 18829:3 18836:1 18880:3 18920:1 18922:1 18931:1 18937:1 18943:3 18944:1 18945:1 18970:1 18994:1 19022:1 19030:1 19040:1 19041:1 19046:1 19058:1 19060:1 19067:1 19095:1 19097:1 19120:1 19122:1 19154:1 19163:1 19224:1 19234:1 19290:1 19302:1 19372:1 19406:1 19417:1 19467:1 19469:1 19473:2 19477:1 19485:1 19489:1 19490:1 19526:1 19553:3 19555:3 19614:1 19651:1 19665:4 19677:1 19678:3 19730:1 19739:1 19757:1 19764:1 19777:1 19802:1 19803:1 19807:1 19816:1 19837:1 19876:2 19884:1 19887:1 19900:1 19950:1 19970:1 19977:1 19980:1 20026:1 20034:2 20073:1 20074:1 20081:1 20111:1 20112:1 20126:1 20132:1 20152:2 20230:1 20306:1 20318:1 20333:1 20355:1 20358:1 20394:2 20401:1 20402:1 20403:1 20411:1 20480:2 20492:2 20522:1 20531:2 20551:1 20590:1 20605:1 20610:1 20613:3 20624:1 20634:2 20708:1 20714:1 20753:1 20757:1954 20781:1 20875:1 20886:1 20912:1 20941:1 20950:1 20963:1 20977:1 20991:1 20996:1 20999:1 21000:1 21073:1 21109:1 21111:1 21133:1 21167:1 21190:1 21212:1 21224:1 21225:1 21230:1 21233:2 21259:1 21262:3 21266:1 21330:1 21336:1 21337:1 21371:1 21379:1 21389:1 21423:1 21437:1 21472:1 21514:1 21521:4 21551:1 21553:5 21558:1 21565:1 21587:1 21617:1 21643:2 21649:1 21669:1 21700:1 21710:1 21737:3 21778:1 21783:1 21806:2 21816:1 21831:1 21878:1 21911:1 21915:2 21974:1 21982:1 21988:1 22007:1 22042:1 22043:1 22049:1 22070:1 22105:1 22178:1 22182:2 22204:1 22207:1 22230:1 22251:1 22252:3 22277:1 22278:3 22299:3 22305:1 22320:1 22328:1 22332:1 22361:1 22419:1 22445:3 22448:1 22482:1 22493:1 22552:1 22655:3 22666:1 22712:1 22719:2 22722:1 22784:1 22813:1 22818:1 22819:1 22824:1 22838:1 22848:1 22867:2 22872:1 22894:4 22897:2 22901:1 22903:1 22909:1 22912:1 22963:1 22992:1 23006:1 23022:1 23039:1 23042:1 23068:2 23083:3 23112:1 23114:1 23128:1 23136:1 23145:1 23157:4 23163:1 23175:1 23183:1 23192:1 23196:1 23198:4 23202:1 23213:1 23264:1 23285:1 23287:1 23291:2 23302:1 23315:1 23320:1 23322:1 23337:1 23415:1 23421:1 23426:1 23427:1 23430:1 23433:2 23438:1 23453:1 23454:1 23456:2 23472:1 23473:1 23478:1 23487:1 23553:1 23555:1 23568:1 23570:1 23572:1 23574:1 23600:4 23603:1 23618:1 23661:1 23700:1 23701:1 23704:1 23730:1 23741:1 23746:1 23774:1 23793:1 23834:1 23839:3 23907:1 23926:1 23927:2 23930:1 23938:1 23945:2 23951:1 23958:2 23962:2 23973:1 23976:1 24012:1 24026:1 24136:2 24139:2 24162:2 24174:1 24224:1 24236:1 24280:1 24287:1 24300:2 24305:1 24322:1 24333:1 24355:1 24384:1 24391:1 24404:1 24414:1 24443:1 24467:1 24475:1 24507:1 24524:1 24557:1 24563:1 24576:1 24596:1 24665:1 24701:1 24718:1 24742:1 24755:3 24770:2 24776:1 24793:5 24800:1 24812:1 24858:1 24868:1 24870:1 24896:1 24898:1 24965:1 24996:1 25007:1 25046:1 25059:1 25069:2 25121:1 25259:1 25275:1 25364:1 25383:1 25481:1 25483:1 25485:1 25504:1 25559:1 25564:1 25583:1 25588:1 25591:1 25593:1 25605:1 25607:1 25615:1 25634:1 25636:1 25665:1 25668:1 25702:1 25718:2 25747:1 25752:1 25770:1 25777:1 25784:3 25796:1 25803:1 25811:2 25812:1 25860:1 25862:2 25873:1 25876:2 25883:1 25896:1 25898:1 25902:1 25905:1 25914:1 25935:1 25965:2 26018:1 26054:1 26068:1 26113:1 26123:1 26128:1 26135:1 26155:2 26157:1 26166:1 26173:1 26211:2 26219:1 26256:1 26271:1 26320:1 26339:2 26370:1 26371:1 26411:1 26435:1 26460:1 26474:1 26534:1 26625:2 26639:1 26688:1 26713:1 26716:1 26735:1 26740:1 26813:1 26828:3 26845:7 26853:1 26861:1 26863:1 26887:1 26912:1 26921:1 26951:1 26964:1 26994:1 26998:3 27000:2 27020:1 27037:2 27040:2 27047:1 27048:1 27075:1 27093:1 27112:1 27135:1 27140:1 27177:1 27190:2 27209:3 27213:3 27217:1 27224:1 27241:1 27246:1 27252:2 27284:1 27292:1 27328:2 27344:1 27412:1 27422:1 27457:2 27462:3 27487:1 27543:1 27563:1 27565:1 27594:1 27600:1 27628:1 27640:1 27663:1 27678:1 27689:1 27775:1 27799:4 27803:3 27835:1 27845:1 27853:1 27874:1 27878:1 27879:1 27889:1 27904:1 27964:2 27975:1 27978:1 27988:1 27992:1 28006:1 28012:1 28019:1 28037:1 28061:2 28072:3 28084:1 28108:1 28132:2 28139:1 28174:1 28175:1 28207:1 28208:1 28210:1 28224:1 28228:1 28262:1 28344:1 28374:2 28375:1 28384:1 28397:1 28442:1 28491:1 28507:1 28509:1 28526:1 28538:1 28540:1 28551:1 28562:1 28571:1 28581:1 28587:1 28591:1 28604:1 28620:1 28635:1 28638:2 28670:2 28674:1 28689:1 28720:2 28739:1 28745:1 28746:1 28766:1 28781:1 28792:1 28810:4 28827:2 28841:1 28848:3 28854:1 28888:1 28946:1 28992:1 28994:1 29042:1 29049:1 29051:1 29054:1 29059:1 29067:1 29095:1 29104:1 29115:1 29125:1 29134:1 29139:4 29141:1 29145:1 29176:1 29198:1 29251:1 29273:2 29289:1 29296:1 29303:1 29312:1 29334:1 29356:2 29392:2 29413:1 29453:1 29455:2 29463:1 29465:1 29494:1 29509:1 29600:1 29628:1 29633:1 29638:1 29640:1 29647:2 29678:1 29681:1 29724:1 29727:2 29732:1 29740:1 29744:1 29745:1 29746:2 29760:1 29770:2 29792:1 29822:1 29853:1 29878:1 29894:1 29899:1 29900:1 29905:1 29942:2 29947:1 29993:1 30007:1 30012:2 30016:2 30021:1 30044:1 30053:1 30083:1 30093:1 30096:1 30106:1 30143:1 30163:1 30169:1 30186:2 30202:1 30203:1 30209:1 30210:2 30262:1 30266:2 30269:1 30309:1 30322:1 30333:1 30335:1 30345:2 30355:1 30359:1 30390:1 30392:1 30413:1 30475:1 30488:2 30518:1 30533:2 30559:1 30564:2 30590:1 30663:1 30675:2 30689:1 30692:1 30727:1 30799:1 30817:1 30820:1 30836:5 30837:1 30841:1 30860:1 30862:1 30879:5 30896:1 30906:1 30944:1 30985:1 31017:3 31020:1 31025:1 31034:1 31036:1 31057:3 31063:1 31080:1 31095:1 31112:1 31116:1 31123:2 31126:1 31144:1 31156:2 31179:1 31188:2 31191:1 31209:1 31235:1 31256:1 31281:2 31330:1 31332:1 31335:1 31340:1 31342:1 31348:1 31360:1 31379:1 31398:1 31401:1 31402:1 31449:3 31469:1 31567:2 31593:3 31606:1 31624:1 31628:2 31635:1 31653:1 31659:1 31662:1 31688:1 31716:1 31725:1 31735:1 31819:1 31837:1 31849:1 31896:1 31950:1 31984:1 31994:1 32016:1 32066:1 32080:1 32105:1 32109:1 32120:1 32163:1 32214:1 32217:1 32221:1 32233:1 32235:1 32243:3 32244:1 32245:3 32246:1 32250:2 32254:1 32257:1 32267:1 32278:1 32298:1 32303:1 32306:1 32320:1 32324:1 32333:2 32337:1 32343:1 32378:1 32382:1
15 71:2 91:1 104:2 167:2 189:1 196:1 200:1 224:1 225:1 244:1 267:1 285:3 335:1 337:1 370:1 406:2 409:2 463:1 503:2 517:1 529:1 541:2 586:1 612:1 615:1 616:1 622:1 623:1 645:2 649:1 655:1 661:1 666:1 685:2 696:1 697:2 699:1 747:1 768:1 795:1 813:2 892:1 898:1 928:2 935:1 958:1 959:1 961:1 963:2 968:1 981:1 985:1 1018:1 1020:2 1023:1 1039:1 1052:2 1072:1 1114:2 1119:1 1149:2 1150:1 1154:1 1167:1 1172:1 1180:1 1205:2 1210:1 1235:1 1255:1 1259:1 1277:1 1288:2 1297:1 1328:2 1337:1 1367:1 1374:2 1385:1 1396:1 1407:2 1408:1 1429:1 1431:1 1448:1 1458:1 1465:1 1472:1 1483:1 1484:1 1500:1 1513:1 1562:1 1577:1 1592:4 1629:1 1632:1 1635:1 1641:2 1642:1 1650:1 1651:1 1656:4 1686:1 1699:1 1724:1 1725:1 1733:4 1736:3 1744:2 1749:2 1777:1 1810:2 1813:2 1821:2 1822:2 1827:1 1842:2 1843:3 1870:1 1897:1 1948:1 1952:2 1956:1 1973:1 1981:2 2007:1 2013:1 2032:1 2037:1 2042:1 2043:2 2050:2 2052:1 2088:1 2091:1 2156:1 2159:3 2171:1 2174:1 2177:1 2201:1 2359:1 2364:1 2386:1 2426:1 2449:1 2462:2 2463:1 2495:1 2501:1 2503:2 2505:2 2509:1 2516:1 2520:2 2522:1 2524:1 2525:1 2531:1 2532:2 2533:1 2547:1 2559:1 2561:1 2607:2 2636:1 2677:2 2678:1 2707:1 2711:1 2720:2 2804:1 2814:1 2833:1 2844:1 2940:2 2953:1 2991:1 3028:2 3091:1 3103:1 3109:1 3138:2 3145:1 3155:1 3161:3 3169:2 3198:2 3216:4 3228:1 3236:1 3238:1 3242:1 3247:1 3275:1 3321:1 3333:1 3356:2 3372:1 3400:1 3411:1 3443:1 3450:1 3483:1 3548:2 3562:1 3590:1 3600:1 3610:1 3646:3 3658:1 3671:1 3676:1 3699:1 3701:1 3705:1 3708:1 3735:3 3736:1 3779:1 3786:1 3803:1 3849:1 3891:1 3892:1 3929:1 3935:1 3964:1 3968:1 4002:1 4006:1 4014:1 4018:1 4019:1 4032:1 4055:1 4066:1 4083:1 4102:1 4105:1 4130:2 4131:2 4152:1 4171:1 4183:1 4187:1 4189:1 4212:1 4214:2 4250:2 4252:3 4255:2 4260:1 4282:1 4291:1 4292:1 4303:1 4305:1 4310:1 4340:1 4377:1 4402:1 4405:1 4422:2 4425:1 4445:1 4454:1 4462:1 4463:1 4515:1 4537:1 4563:1 4580:1 4609:1 4625:1 4629:3 4657:1 4665:2 4669:1 4671:1 4685:1 4715:1 4718:1 4736:1 4748:4 4773:1 4781:1 4796:1 4832:1 4863:1 4873:1 4880:1 4889:1 4932:2 4935:1 4938:1 4954:1 5001:1 5012:1 5017:2 5026:2 5035:1 5054:2 5058:2 5074:1 5131:1 5162:1 5178:1 5186:1 5187:2 5206:1 5238:1 5240:1 5242:1 5247:2 5327:1 5336:1 5382:6 5418:1 5442:1 5500:4 5520:2 5521:1 5529:1 5535:1 5537:1 5541:1 5542:1 5546:1 5548:2 5549:1 5551:1 5566:1 5574:1 5578:1 5679:1 5690:1 5693:1 5697:2 5712:1 5713:1 5757:2 5767:1 5774:1 5788:1 5792:1 5805:2 5823:2 5829:1 5843:3 5896:1 5923:1 5924:1 5928:1 5941:4 5963:1 5967:1 5980:1 5983:1 5998:3 6015:1 6027:1 6031:1 6037:1 6038:1 6050:1 6051:1 6063:1 6069:1 6085:2 6143:1 6171:1 6218:1 6232:1 6268:1 6273:1 6287:2 6310:1 6333:1 6350:1 6390:1 6394:1 6395:2 6423:2 6453:1 6479:1 6483:1 6488:1 6570:1 6579:1 6594:1 6628:2 6656:1 6725:1 6742:1 6745:1 6749:1 6775:1 6779:1 6780:1 6825:2 6831:2 6850:1 6866:1 6920:1 6931:1 6945:1 6955:1 7021:1 7026:1 7035:1 7037:1 7044:1 7055:1 7056:1 7058:1 7060:1 7064:1 7066:1 7071:3 7073:3 7113:1 7119:1 7122:1 7129:1 7130:1 7141:1 7152:1 7165:2 7168:2 7184:1 7189:2 7220:2 7229:1 7231:2 7248:1 7308:1 7325:2 7328:1 7330:1 7331:3 7338:1 7365:1 7370:1 7389:1 7403:1 7406:1 7432:2 7453:1 7456:1 7489:1 7526:1 7527:1 7535:1 7544:1 7610:2 7613:1 7625:1 7628:1 7629:4 7679:1 7714:1 7732:1 7739:1 7746:1 7758:2 7774:1 7785:1 7797:1 7805:1 7811:1 7824:1 7884:2 7887:2 7923:2 7930:1 7931:1 7939:1 7960:1 7979:3 7991:1 8044:1 8047:1 8059:1 8087:1 8099:1 8133:1 8137:3 8219:2 8235:1 8253:1 8262:2 8288:1 8305:1 8324:2 8327:1 8329:1 8335:2 8344:1 8347:1 8348:1 8360:1 8393:1 8408:1 8414:1 8448:1 8457:1 8459:3 8461:2 8462:1 8489:1 8521:1 8551:4 8569:1 8602:1 8607:2 8609:1 8620:13 8629:1 8641:2 8642:4 8669:1 8678:1 8689:2 8690:1 8697:1 8707:1 8737:1 8746:1 8761:1 8769:1 8785:2 8792:1 8817:1 8819:1 8833:1 8855:3 8860:1 8863:1 8876:1 8914:1 8921:2 8950:1 8957:1 8975:1 8979:1 8985:1 8995:1 9019:1 9025:1 9028:1 9039:1 9074:1 9076:2 9082:3 9087:2 9088:1 9092:1 9110:2 9156:1 9157:10 9170:1 9171:1 9180:1 9207:1 9208:2 9214:1 9216:2 9222:1 9243:2 9252:2 9253:1 9266:1 9282:1 9298:1 9333:1 9353:1 9397:2 9406:1 9419:1 9456:1 9493:1 9499:1 9525:1 9534:2 9549:1 9585:1 9599:1 9605:3 9610:1 9611:1 9651:1 9656:1 9698:1 9711:1 9719:1 9769:1 9777:2 9824:2 9825:1 9826:6 9836:1 9845:1 9849:1 9853:1 9896:1 9921:1 9926:1 9928:1 9943:1 9950:2 9992:4 10114:1 10164:1 10193:1 10202:1 10226:1 10255:1 10260:1 10269:2 10279:3 10306:1 10314:1 10326:1 10357:1 10362:1 10365:1 10385:1 10390:2 10413:1 10472:2 10542:1 10556:1 10572:2 10574:1 10593:1 10606:1 10623:1 10629:1 10640:1 10643:1 10650:2 10656:1 10686:1 10700:1 10719:2 10753:1 10771:1 10782:1 10783:1 10791:1 10792:1 10795:1 10796:1 10797:1 10874:1 10883:1 10888:1 10931:4 10947:1 10954:1 10990:1 11020:1 11021:1 11027:1 11063:1 11070:1 11115:1 11122:1 11140:1 11159:3 11213:2 11220:2 11274:2 11282:1 11293:1 11298:1 11310:1 11313:1 11326:1 11341:1 11342:1 11346:1 11386:1 11390:1 11403:1 11423:1 11442:2 11443:1 11451:1 11482:3 11486:1 11493:1 11536:1 11554:1 11567:1 11571:1 11579:1 11583:1 11584:1 11594:1 11600:1 11601:2 11608:3 11630:1 11689:1 11701:1 11706:1 11717:1 11737:1 11746:1 11769:1 11771:1 11808:1 11809:2 11810:1 11834:1 11850:6 11876:1 11888:1 11921:1 11926:4 11959:1 11960:2 11961:2 11977:1 11994:1 12009:1 12020:2 12035:1 12043:2 12100:1 12102:1 12119:1 12136:1 12149:1 12189:1 12205:1 12230:1 12242:1 12275:2 12300:2 12312:1 12316:1 12339:1 12343:1 12380:1 12408:1 12420:1 12440:1 12442:2 12457:1 12458:1 12475:1 12476:1 12477:1 12486:1 12496:1 12497:2 12509:1 12510:2 12517:1 12536:1 12563:1 12570:2 12596:1 12623:1 12632:1 12654:1 12688:2 12705:1 12716:4 12722:1 12735:1 12744:1 12746:3 12764:1 12776:1 12784:1 12822:1 12843:1 12846:1 12860:1 12865:1 12888:1 12901:1 12922:1 12933:1 12934:1 12960:1 12965:1 12997:1 13017:1 13041:1 13092:3 13121:1 13151:2 13164:1 13167:1 13173:3 13178:1 13180:1 13182:1 13186:1 13195:1 13205:1 13240:1 13253:1 13256:1 13265:2 13269:2 13297:3 13351:3 13405:1 13434:1 13502:2 13511:2 13513:2 13521:1 13546:1 13575:1 13581:2 13602:1 13626:4 13648:1 13650:1 13654:4 13658:2 13674:1 13688:1 13698:3 13714:1 13728:2 13740:1 13757:1 13774:1 13778:2 13834:1 13844:2 13864:1 13873:2 13890:1 13901:1 13940:1 13954:1 13969:1 14011:1 14036:1 14045:1 14067:1 14072:1 14117:1 14122:1 14129:1 14132:1 14157:1 14198:2 14206:1 14243:1 14266:1 14267:1 14275:1 14291:1 14302:1 14328:1 14329:3 14356:1 14371:2 14392:1 14472:1 14505:1 14584:1 14601:1 14603:1 14623:1 14632:2 14773:1 14783:1 14795:1 14807:1 14821:5 14841:1 14849:1 14850:1 14858:1 14872:1 14887:4 14905:1 14910:1 14923:1 14938:1 14976:2 14978:4 14992:1 14994:2 14996:1 15000:1 15028:1 15039:2 15048:1 15054:2 15075:4 15081:1 15090:3 15131:1 15135:2 15139:1 15161:1 15183:1 15218:1 15238:1 15243:3 15263:1 15291:1 15314:1 15325:1 15346:1 15368:1 15377:1 15384:1 15401:1 15444:1 15450:1 15458:1 15489:2 15496:2 15516:1 15590:1 15596:1 15647:1 15657:1 15663:1 15668:1 15669:1 15674:1 15681:1 15759:1 15800:1 15802:1 15805:2 15817:1 15840:1 15853:3 15899:1 15948:1 15949:1 16011:1 16025:1 16030:1 16087:2 16097:1 16102:1 16113:1 16182:1 16209:1 16214:2 16251:1 16272:1 16277:1 16292:1 16313:1 16321:1 16336:1 16347:1 16352:2 16371:1 16391:1 16426:1 16460:1 16480:1 16487:1 16523:1 16528:1 16540:2 16548:8 16601:1 16681:1 16697:2 16716:1 16739:1 16760:1 16766:1 16777:6 16818:1 16822:1 16824:1 16849:1 16866:1 16870:1 16897:1 16916:6 16917:1 16940:1 16941:1 17016:1 17054:2 17061:1 17070:1 17091:1 17093:1 17102:1 17111:1 17116:1 17117:1 17148:2 17207:2 17256:1 17282:1 17290:1 17297:1 17331:1 17337:1 17343:1 17354:2 17376:1 17388:1 17408:1 17461:1 17476:1 17483:1 17513:1 17520:1 17525:3 17538:1 17565:1 17580:1 17583:1 17624:3 17696:1 17700:1 17701:1 17716:2 17717:2 17733:1 17753:1 17757:1 17770:1 17772:1 17773:1 17778:1 17779:1 17787:1 17800:1 17804:4 17812:1 17868:1 17871:1 17876:1 17877:2 17879:4 17899:1 17906:3 17921:1 17935:1 17948:1 17986:1 17993:1 18032:1 18041:3 18054:1 18055:1 18071:1 18077:1 18089:1 18098:1 18109:2 18121:1 18132:1 18147:1 18152:1 18156:3 18159:3 18164:1 18169:1 18182:1 18218:1 18307:1 18334:1 18339:2 18345:1 18346:1 18355:1 18367:1 18382:1 18397:1 18410:1 18424:2 18429:2 18436:1 18445:7 18450:1 18493:1 18494:1 18509:1 18537:1 18556:1 18562:1 18573:1 18582:1 18624:1 18634:1 18643:1 18678:1 18709:1 18723:1 18738:2 18742:1 18753:1 18754:1 18767:1 18774:3 18829:3 18836:1 18880:3 18920:1 18922:1 18931:1 18937:1 18943:3 18944:1 18945:1 18970:1 18994:1 19022:1 19030:1 19040:1 19041:1 19046:1 19058:1 19060:1 19067:1 19095:1 19097:1 19120:1 19122:1 19154:1 19163:1 19224:1 19234:1 19290:1 19292:1 19302:1 19372:1 19406:1 19417:1 19467:1 19469:1 19473:2 19477:1 19483:1 19485:1 19489:2 19490:1 19526:1 19553:3 19555:3 19614:1 19651:1 19665:4 19677:1 19678:3 19711:1 19730:1 19739:1 19757:1 19764:1 19777:1 19802:1 19803:2 19807:1 19816:1 19837:1 19876:2 19884:1 19887:1 19900:1 19950:1 19970:1 19977:1 19980:1 20026:1 20034:2 20073:1 20074:1 20081:1 20111:1 20112:1 20126:1 20132:1 20152:2 20174:1 20230:1 20306:1 20318:1 20333:1 20355:1 20358:1 20394:2 20401:1 20402:1 20403:1 20411:1 20480:2 20492:2 20522:1 20531:2 20551:1 20590:1 20605:1 20610:1 20613:3 20624:1 20634:2 20708:1 20714:1 20753:1 20757:2049 20781:1 20875:1 20886:1 20912:1 20941:1 20950:1 20963:1 20977:1 20991:1 20996:1 20999:1 21000:1 21073:1 21109:1 21111:1 21133:1 21167:1 21190:1 21212:1 21224:1 21225:1 21230:1 21233:2 21259:1 21262:3 21266:1 21330:1 21332:1 21336:1 21337:1 21351:1 21371:1 21379:1 21389:1 21423:2 21437:1 21472:1 21514:1 21521:4 21551:1 21553:6 21558:1 21565:1 21587:1 21617:1 21643:2 21649:1 21669:1 21700:1 21710:1 21737:3 21778:1 21783:1 21806:2 21816:1 21831:1 21878:1 21911:1 21915:2 21974:1 21982:1 21988:1 22007:1 22042:1 22043:1 22049:1 22070:1 22105:1 22178:1 22182:2 22204:1 22207:1 22230:1 22251:1 22252:3 22277:1 22278:4 22299:3 22303:1 22305:1 22320:1 22328:1 22332:1 22361:1 22419:1 22445:3 22448:1 22482:1 22493:1 22552:1 22655:3 22666:1 22712:1 22719:2 22722:1 22784:1 22813:1 22818:1 22819:1 22824:1 22838:1 22848:1 22867:2 22872:1 22894:4 22897:2 22901:1 22903:1 22909:1 22912:1 22963:1 22992:1 23006:1 23022:1 23039:1 23042:1 23068:2 23083:3 23112:1 23114:1 23128:1 23136:1 23145:1 23157:4 23163:2 23175:1 23183:1 23185:1 23192:1 23196:1 23198:4 23202:1 23213:1 23222:1 23264:1 23285:1 23287:1 23291:2 23302:1 23315:1 23320:1 23322:1 23337:1 23415:1 23421:1 23426:1 23427:1 23430:1 23433:2 23435:1 23438:1 23453:1 23454:1 23456:2 23472:1 23473:1 23478:1 23487:1 23553:1 23555:1 23568:1 23570:1 23572:1 23574:1 23600:4 23603:1 23618:1 23661:1 23700:1 23701:1 23704:1 23730:1 23734:1 23741:1 23746:1 23754:1 23774:1 23793:1 23834:2 23839:3 23907:1 23926:1 23927:2 23930:1 23938:1 23945:2 23951:1 23958:2 23962:2 23973:1 23976:1 24000:1 24012:1 24026:1 24136:2 24139:2 24162:2 24174:1 24217:1 24224:1 24236:1 24280:1 24287:1 24300:2 24305:1 24322:1 24333:1 24355:1 24384:1 24391:1 24404:1 24414:1 24443:1 24467:2 24475:1 24507:1 24524:1 24557:1 24563:1 24576:1 24596:1 24665:1 24701:1 24718:1 24742:1 24755:3 24770:2 24776:1 24789:1 24793:6 24800:1 24805:1 24812:1 24820:1 24839:1 24858:1 24868:1 24870:1 24896:1 24898:1 24965:1 24996:1 25007:1 25046:1 25059:1 25069:2 25121:1 25154:1 25259:1 25275:1 25364:1 25366:1 25383:1 25442:1 25481:1 25483:1 25485:1 25504:1 25559:1 25564:1 25583:1 25588:1 25591:1 25593:1 25605:1 25607:1 25615:1 25634:1 25636:1 25665:1 25668:1 25702:1 25718:2 25747:1 25752:1 25770:1 25777:1 25784:3 25796:1 25803:1 25811:2 25812:1 25860:1 25862:2 25873:1 25876:2 25883:1 25896:1 25898:1 25902:1 25905:1 25914:1 25935:1 25965:2 26018:1 26038:1 26039:1 26054:1 26068:1 26113:1 26123:1 26128:1 26135:1 26155:2 26157:1 26166:1 26173:1 26211:2 26219:2 26256:1 26271:1 26276:1 26320:1 26333:1 26339:2 26370:1 26371:1 26411:1 26435:1 26460:1 26474:1 26534:1 26574:1 26625:2 26639:1 26688:1 26713:1 26716:1 26735:1 26740:1 26758:1 26813:1 26828:3 26845:7 26853:1 26861:1 26863:1 26887:1 26912:1 26921:1 26951:1 26964:1 26994:1 26998:3 27000:3 27020:1 27037:2 27040:2 27047:1 27048:1 27075:1 27093:1 27112:1 27135:1 27140:1 27177:1 27190:2 27209:3 27213:3 27217:1 27224:1 27241:1 27246:1 27252:2 27284:1 27292:1 27328:2 27344:1 27412:1 27422:1 27457:2 27462:3 27487:1 27524:1 27543:1 27563:1 27565:1 27594:1 27600:1 27628:1 27640:1 27663:1 27678:1 27689:1 27775:1 27799:4 27803:3 27835:1 27845:1 27853:1 27874:1 27878:2 27879:1 27889:1 27904:1 27943:1 27964:2 27975:1 27978:2 27988:1 27992:1 27994:1 28006:1 28012:1 28019:1 28037:1 28061:2 28072:3 28084:1 28108:1 28132:2 28139:1 28174:1 28175:1 28207:1 28208:1 28210:1 28224:1 28228:1 28262:1 28344:2 28374:2 28375:1 28384:1 28397:1 28424:1 28442:1 28491:1 28507:1 28509:1 28526:1 28538:1 28540:1 28551:1 28562:1 28571:1 28581:1 28587:1 28591:1 28604:1 28620:1 28635:1 28638:2 28670:2 28674:1 28689:1 28720:2 28739:1 28745:1 28746:1 28766:1 28781:1 28792:1 28810:4 28827:2 28841:1 28848:3 28854:1 28888:1 28946:1 28992:1 28994:1 29042:1 29049:1 29051:1 29054:1 29059:1 29067:1 29095:1 29104:1 29115:1 29125:1 29134:1 29139:4 29141:1 29145:1 29176:1 29198:1 29251:1 29254:1 29273:2 29289:1 29296:2 29303:1 29312:1 29334:1 29356:2 29392:2 29413:1 29453:1 29455:2 29463:1 29465:2 29494:1 29509:1 29600:1 29628:1 29633:1 29638:1 29640:1 29647:2 29678:1 29681:1 29724:1 29727:2 29732:1 29740:1 29744:1 29745:1 29746:2 29760:1 29770:2 29792:1 29822:1 29853:1 29878:1 29894:1 29899:1 29900:1 29905:1 29942:2 29947:1 29993:1 30007:1 30012:2 30016:2 30021:1 30044:1 30053:1 30083:1 30093:1 30095:1 30096:1 30106:1 30143:1 30160:1 30163:1 30169:1 30186:2 30202:1 30203:1 30209:1 30210:2 30262:1 30266:2 30269:1 30306:1 30309:1 30318:1 30322:1 30333:1 30335:1 30345:2 30355:1 30359:1 30390:2 30392:1 30413:1 30475:1 30488:2 30518:1 30533:2 30559:1 30564:2 30590:1 30642:1 30663:1 30675:2 30689:1 30692:1 30727:1 30799:1 30817:1 30820:1 30836:6 30837:1 30841:1 30860:1 30862:1 30879:5 30896:1 30906:1 30944:1 30985:1 31017:3 31020:1 31025:1 31034:1 31036:1 31057:4 31063:1 31080:1 31095:1 31112:1 31116:1 31123:2 31126:1 31144:1 31156:2 31179:1 31188:2 31191:1 31209:1 31235:1 31256:1 31281:2 31330:1 31332:1 31335:1 31340:1 31342:1 31348:1 31360:1 31379:1 31398:1 31401:1 31402:1 31449:3 31469:1 31567:2 31593:3 31603:1 31606:1 31624:1 31628:2 31635:1 31653:1 31659:1 31662:1 31688:1 31716:1 31725:1 31735:1 31819:1 31837:2 31849:1 31896:2 31950:1 31984:1 31994:1 32016:1 32066:1 32080:1 32105:1 32109:1 32120:1 32138:1 32163:1 32214:1 32217:1 32221:1 32233:1 32235:1 32243:3 32244:1 32245:3 32246:1 32250:2 32254:1 32257:1 32258:1 32267:1 32278:1 32298:1 32303:1 32306:1 32320:1 32324:1 32333:2 32337:1 32343:1 32378:1 32382:1
15 71:2 91:1 104:2 167:2 189:1 196:1 200:1 224:1 225:1 244:1 267:1 285:3 335:1 337:1 370:1 406:2 409:2 463:1 503:3 517:1 529:1 541:2 586:1 612:1 615:1 616:1 622:1 623:1 645:2 649:1 655:2 661:1 666:1 685:2 696:1 697:2 699:1 704:1 747:1 768:1 795:1 813:2 892:1 898:1 928:2 935:1 958:1 959:1 961:1 963:2 968:1 981:1 985:1 1018:1 1020:2 1023:1 1031:1 1039:1 1052:2 1072:1 1114:2 1119:1 1149:2 1150:1 1154:1 1167:1 1172:1 1180:1 1205:2 1210:1 1235:1 1255:1 1259:1 1277:1 1288:2 1297:1 1328:2 1337:1 1367:2 1374:2 1385:1 1396:1 1407:2 1408:1 1429:1 1431:1 1448:1 1458:1 1465:1 1472:1 1483:1 1484:1 1500:1 1513:1 1562:1 1577:1 1592:4 1629:1 1632:1 1635:1 1641:2 1642:2 1650:1 1651:1 1656:4 1686:1 1699:1 1724:1 1725:1 1733:4 1736:3 1744:2 1749:2 1777:1 1778:1 1810:2 1813:2 1821:2 1822:2 1827:1 1842:2 1843:3 1870:1 1897:1 1948:1 1952:2 1956:1 1973:1 1981:2 2007:1 2013:1 2032:1 2035:1 2037:1 2042:1 2043:2 2050:2 2052:1 2088:1 2091:1 2156:1 2159:3 2171:1 2174:1 2177:1 2201:1 2359:1 2364:1 2386:1 2426:1 2449:1 2462:2 2463:1 2495:1 2501:1 2503:2 2505:2 2509:1 2516:1 2520:2 2522:1 2524:1 2525:1 2531:1 2532:2 2533:1 2547:1 2559:1 2561:1 2607:2 2636:1 2677:2 2678:1 2707:1 2711:1 2720:2 2804:1 2814:1 2833:1 2844:1 2940:2 2953:1 2991:1 3028:2 3091:1 3103:1 3109:1 3138:2 3145:1 3155:1 3161:3 3169:2 3198:2 3216:4 3228:1 3236:1 3238:1 3242:1 3247:1 3275:1 3321:1 3333:1 3356:2 3372:1 3400:1 3411:1 3443:1 3450:1 3483:1 3548:2 3562:1 3590:1 3600:1 3610:1 3646:3 3658:1 3671:1 3676:1 3699:1 3701:1 3705:1 3708:1 3735:3 3736:1 3779:1 3786:1 3803:1 3849:1 3891:1 3892:1 3929:1 3935:1 3964:1 3968:1 4002:1 4006:1 4014:1 4018:1 4019:1 4032:1 4055:1 4066:1 4083:1 4102:1 4105:1 4130:2 4131:2 4152:1 4171:1 4183:1 4187:1 4189:1 4212:1 4214:2 4250:2 4252:3 4255:2 4260:1 4282:1 4291:1 4292:1 4303:1 4305:1 4310:1 4340:1 4377:1 4402:1 4405:1 4422:2 4425:1 4445:1 4454:1 4462:1 4463:1 4515:1 4537:1 4563:1 4580:1 4609:1 4625:1 4629:3 4657:1 4665:2 4669:1 4671:1 4685:1 4715:1 4718:1 4736:1 4748:4 4773:1 4781:1 4796:1 4832:1 4863:1 4873:1 4880:1 4889:1 4932:2 4935:1 4938:1 4954:1 5001:1 5012:1 5017:2 5026:3 5035:1 5054:2 5058:2 5074:1 5131:1 5162:1 5178:1 5186:1 5187:2 5206:1 5238:1 5240:1 5242:1 5247:2 5327:1 5336:1 5382:6 5418:1 5442:1 5500:4 5520:2 5521:1 5526:1 5529:1 5535:1 5537:1 5541:1 5542:1 5546:1 5548:2 5549:1 5551:1 5566:1 5574:1 5578:1 5679:1 5690:1 5693:1 5697:2 5712:1 5713:1 5757:2 5767:1 5774:1 5788:1 5792:1 5805:2 5823:2 5829:1 5843:3 5896:1 5923:1 5924:1 5928:1 5941:4 5963:1 5967:1 5980:1 5983:1 5998:3 6015:1 6027:1 6031:1 6037:1 6038:1 6050:1 6051:1 6061:1 6063:1 6069:1 6085:2 6143:1 6171:1 6218:1 6232:1 6268:1 6273:1 6287:2 6310:1 6333:1 6350:1 6390:1 6394:1 6395:2 6423:2 6453:1 6479:1 6483:1 6488:1 6570:1 6579:1 6594:1 6628:2 6636:1 6656:1 6725:1 6742:1 6745:1 6749:1 6775:1 6779:1 6780:1 6825:3 6831:2 6850:1 6866:1 6920:1 6931:1 6945:1 6955:1 7021:1 7026:1 7035:1 7037:1 7044:1 7055:1 7056:1 7058:1 7060:1 7064:1 7066:1 7071:3 7073:4 7113:1 7119:1 7122:1 7129:1 7130:1 7141:1 7152:1 7165:2 7168:2 7184:1 7189:2 7220:2 7229:1 7231:2 7248:1 7308:1 7325:2 7328:1 7330:1 7331:3 7338:1 7365:1 7370:1 7389:1 7403:1 7406:1 7432:2 7453:1 7456:1 7489:1 7526:1 7527:1 7535:1 7544:1 7610:2 7613:1 7625:1 7628:1 7629:4 7679:1 7714:1 7732:1 7739:1 7746:1 7748:1 7758:2 7774:1 7785:1 7797:1 7805:1 7811:1 7824:1 7884:2 7887:2 7923:2 7930:1 7931:1 7939:2 7960:1 7979:3 7991:1 8032:1 8044:1 8047:1 8059:1 8087:1 8099:1 8133:1 8137:3 8219:2 8235:1 8253:1 8262:2 8288:1 8305:1 8324:2 8327:1 8329:1 8335:2 8344:1 8347:1 8348:1 8360:1 8393:1 8408:1 8414:1 8448:1 8457:1 8459:3 8461:2 8462:1 8489:1 8521:1 8551:5 8569:1 8571:1 8602:1 8607:2 8609:1 8620:13 8629:1 8641:2 8642:4 8669:1 8678:1 8689:2 8690:1 8697:1 8707:1 8737:1 8746:1 8761:1 8769:1 8785:2 8792:1 8817:1 8819:1 8833:1 8855:3 8860:1 8863:1 8876:1 8914:1 8921:2 8950:1 8957:1 8975:1 8979:1 8985:1 8995:1 9019:1 9025:1 9028:1 9039:1 9074:1 9076:2 9082:3 9087:2 9088:1 9092:1 9110:2 9156:1 9157:10 9170:1 9171:1 9180:1 9207:1 9208:2 9214:1 9216:2 9222:1 9243:2 9252:2 9253:1 9266:1 9282:1 9298:1 9333:1 9340:1 9353:1 9397:2 9406:1 9419:1 9456:1 9493:1 9499:1 9525:1 9534:2 9549:1 9585:1 9593:1 9599:1 9605:3 9610:1 9611:1 9651:1 9656:1 9691:1 9698:1 9711:1 9719:1 9769:1 9777:2 9824:2 9825:1 9826:6 9836:1 9845:1 9849:1 9853:1 9896:1 9921:1 9926:1 9928:1 9943:1 9950:2 9992:4 10114:1 10164:1 10193:1 10202:1 10226:1 10255:1 10260:1 10269:2 10279:3 10306:1 10314:1 10326:1 10357:2 10362:1 10365:1 10385:1 10390:2 10413:1 10472:2 10542:1 10556:1 10572:2 10574:1 10593:1 10604:1 10606:1 10623:1 10629:1 10640:1 10643:1 10650:2 10656:1 10686:1 10700:1 10719:2 10753:1 10771:1 10782:1 10783:1 10791:1 10792:1 10795:1 10796:1 10797:1 10874:1 10883:1 10888:1 10931:4 10947:1 10954:1 10990:1 11020:1 11021:1 11027:1 11063:1 11070:1 11115:1 11122:1 11140:1 11159:3 11213:2 11220:2 11274:2 11282:2 11293:1 11298:1 11310:1 11313:1 11326:1 11341:1 11342:1 11346:1 11386:1 11390:1 11403:1 11423:1 11442:2 11443:1 11451:1 11482:3 11486:1 11493:1 11536:1 11554:1 11567:1 11571:1 11579:1 11583:1 11584:1 11594:1 11600:1 11601:2 11608:3 11630:1 11689:1 11701:1 11706:1 11717:1 11737:1 11746:1 11769:1 11771:1 11808:1 11809:2 11810:1 11834:1 11850:6 11876:1 11888:1 11921:1 11926:4 11959:1 11960:2 11961:2 11977:1 11994:1 12009:1 12020:2 12035:1 12043:2 12100:1 12102:1 12119:1 12136:1 12149:1 12189:1 12205:1 12230:1 12242:1 12275:2 12300:2 12312:1 12316:1 12339:1 12343:1 12380:1 12408:1 12420:1 12440:1 12442:2 12444:1 12457:1 12458:2 12475:1 12476:1 12477:1 12486:1 12496:1 12497:2 12509:1 12510:2 12517:1 12536:1 12563:1 12570:2 12574:1 12596:1 12623:1 12632:1 12654:1 12688:2 12705:1 12716:4 12722:1 12735:1 12744:1 12746:3 12756:1 12764:1 12776:1 12784:1 12822:1 12843:1 12846:1 12860:1 12865:1 12888:1 12901:1 12922:1 12933:1 12934:1 12960:1 12965:1 12997:1 13017:1 13041:1 13092:3 13121:1 13151:2 13164:1 13167:1 13173:3 13178:1 13180:1 13182:1 13186:1 13195:1 13205:1 13234:1 13240:1 13253:1 13256:1 13265:2 13269:2 13297:3 13351:3 13405:1 13434:1 13502:2 13511:2 13513:2 13521:1 13546:1 13575:1 13581:2 13602:1 13626:4 13648:1 13650:1 13654:4 13658:2 13674:1 13685:1 13688:1 13698:3 13714:1 13728:2 13740:1 13757:1 13774:1 13778:2 13834:1 13844:2 13864:1 13873:2 13890:1 13901:1 13940:1 13954:1 13969:1 14011:1 14036:1 14045:1 14067:1 14072:1 14117:1 14122:1 14129:1 14132:1 14157:1 14198:2 14206:1 14243:1 14266:1 14267:1 14275:1 14291:1 14302:1 14328:1 14329:3 14356:1 14371:2 14392:1 14472:1 14505:1 14584:1 14601:1 14603:1 14623:1 14632:2 14773:1 14783:1 14795:1 14807:1 14821:5 14841:1 14849:1 14850:1 14858:1 14872:1 14887:5 14905:1 14910:1 14923:1 14938:1 14976:2 14978:4 14992:1 14994:2 14996:1 15000:1 15028:1 15039:2 15048:1 15054:2 15075:4 15081:1 15090:3 15131:1 15135:2 15139:1 15161:1 15183:1 15187:1 15218:1 15238:1 15243:3 15263:1 15281:1 15291:1 15314:1 15325:1 15346:1 15368:1 15377:1 15384:1 15401:1 15444:1 15450:1 15458:1 15489:2 15496:2 15516:1 15590:1 15596:1 15601:1 15647:1 15657:1 15663:1 15668:1 15669:1 15674:1 15681:1 15759:1 15800:1 15802:1 15805:2 15817:1 15840:1 15853:3 15899:2 15948:1 15949:1 16011:1 16025:1 16030:1 16039:1 16087:2 16097:1 16098:1 16102:1 16113:1 16182:1 16209:1 16214:2 16251:2 16272:1 16277:1 16287:1 16292:1 16313:1 16321:1 16336:1 16347:1 16352:2 16371:1 16391:1 16426:1 16460:1 16480:1 16487:1 16523:1 16528:1 16540:2 16548:8 16601:1 16624:1 16681:1 16697:2 16716:1 16739:1 16760:1 16766:1 16777:6 16818:1 16822:1 16824:1 16849:1 16866:1 16870:1 16897:1 16916:6 16917:1 16940:1 16941:1 17016:1 17054:2 17061:1 17070:1 17091:1 17093:1 17102:1 17111:1 17116:1 17117:1 17148:2 17207:2 17256:1 17282:1 17290:1 17297:1 17331:1 17337:1 17343:1 17354:2 17376:1 17388:1 17408:2 17461:1 17476:1 17483:1 17513:1 17520:1 17525:3 17530:1 17538:1 17565:1 17580:1 17583:1 17618:1 17624:3 17696:1 17700:1 17701:1 17716:2 17717:2 17733:1 17753:1 17757:1 17770:1 17772:1 17773:1 17778:1 17779:1 17787:1 17800:1 17804:4 17812:1 17868:1 17871:1 17876:1 17877:2 17879:4 17899:1 17906:3 17921:1 17935:1 17948:1 17986:1 17993:1 18032:1 18041:3 18054:1 18055:1 18071:1 18077:1 18089:1 18098:1 18109:2 18121:1 18132:1 18147:1 18152:1 18156:3 18159:3 18164:1 18169:1 18182:1 18218:1 18307:1 18334:1 18339:2 18345:1 18346:1 18355:1 18367:1 18382:1 18397:1 18410:1 18424:2 18429:2 18436:1 18445:7 18450:1 18493:1 18494:1 18509:1 18537:1 18556:1 18562:1 18573:1 18582:1 18624:1 18634:1 18643:1 18678:1 18709:1 18723:1 18738:2 18742:1 18753:1 18754:1 18767:1 18774:3 18829:3 18836:1 18880:3 18920:1 18922:1 18931:1 18937:1 18943:3 18944:1 18945:1 18970:1 18994:1 19022:1 19030:1 19040:1 19041:1 19046:1 19058:1 19060:1 19067:1 19095:1 19097:1 19120:1 19122:1 19154:1 19163:1 19224:1 19234:1 19290:1 19292:1 19302:1 19372:1 19406:1 19417:1 19467:1 19469:1 19473:2 19477:1 19483:1 19485:1 19489:2 19490:1 19526:1 19553:3 19555:3 19614:1 19651:1 19665:4 19677:1 19678:3 19710:1 19711:1 19730:1 19739:1 19757:1 19764:1 19777:1 19798:1 19802:1 19803:2 19807:1 19816:1 19837:1 19876:2 19884:1 19887:1 19900:1 19950:1 19970:1 19977:1 19980:1 20026:1 20034:2 20073:1 20074:1 20081:1 20111:1 20112:1 20126:1 20132:1 20152:2 20174:1 20230:1 20306:1 20318:1 20333:1 20355:1 20358:1 20394:2 20401:1 20402:1 20403:1 20411:1 20480:2 20492:2 20522:1 20531:2 20551:1 20590:1 20605:1 20610:1 20613:3 20624:1 20634:2 20708:1 20714:1 20753:1 20757:2142 20781:1 20875:1 20886:1 20912:1 20941:1 20950:1 20963:1 20977:1 20991:1 20996:1 20999:1 21000:1 21073:1 21109:1 21111:1 21133:1 21136:1 21167:1 21190:1 21212:1 21224:1 21225:1 21230:1 21233:2 21259:1 21262:3 21266:1 21330:1 21332:1 21336:1 21337:1 21351:1 21371:1 21379:1 21389:1 21423:2 21437:1 21472:1 21514:1 21521:4 21551:1 21553:6 21558:1 21565:1 21587:2 21617:1 21643:2 21649:1 21669:1 21700:1 21710:1 21737:3 21778:1 21783:1 21806:2 21816:1 21831:1 21873:1 21878:1 21911:1 21915:2 21974:1 21982:1 21988:1 22007:1 22042:1 22043:1 22049:1 22070:1 22105:1 22178:1 22182:2 22204:1 22207:1 22230:1 22251:1 22252:3 22277:1 22278:4 22299:3 22303:1 22305:1 22320:1 22328:1 22332:1 22361:1 22419:1 22445:3 22448:1 22482:1 22493:1 22552:1 22655:3 22666:1 22712:1 22719:2 22722:1 22782:1 22784:1 22813:1 22818:1 22819:1 22824:1 22838:1 22848:1 22867:2 22872:1 22894:4 22897:2 22901:1 22903:1 22909:1 22912:1 22963:1 22992:1 23006:1 23022:1 23039:1 23042:1 23068:2 23083:3 23112:1 23114:1 23128:1 23136:1 23145:1 23157:4 23163:2 23175:1 23183:1 23185:1 23192:1 23196:1 23198:4 23202:1 23213:1 23222:1 23264:1 23285:1 23287:1 23291:2 23302:1 23315:1 23320:1 23322:1 23337:1 23415:1 23421:1 23426:1 23427:1 23430:1 23433:2 23435:1 23438:1 23453:1 23454:1 23456:2 23472:1 23473:1 23478:1 23487:1 23553:1 23555:1 23568:1 23570:1 23572:1 23574:1 23600:4 23603:1 23618:1 23661:1 23700:1 23701:1 23702:1 23704:1 23730:1 23734:1 23741:1 23746:1 23754:1 23774:1 23793:1 23834:2 23839:3 23907:1 23926:1 23927:2 23930:1 23938:1 23945:2 23951:1 23958:2 23962:2 23973:1 23976:2 24000:1 24012:1 24026:1 24136:2 24139:2 24162:2 24174:1 24217:1 24224:1 24236:1 24280:1 24287:1 24300:2 24305:1 24316:1 24322:1 24333:1 24355:1 24384:1 24391:1 24404:1 24414:1 24443:1 24467:2 24475:1 24507:1 24524:1 24557:1 24559:1 24563:1 24576:1 24590:1 24596:1 24665:1 24700:1 24701:1 24718:1 24742:1 24755:3 24770:3 24776:1 24789:1 24793:6 24800:1 24805:1 24812:1 24820:1 24839:1 24858:1 24868:1 24870:1 24896:1 24898:1 24965:1 24996:1 25007:1 25046:1 25059:2 25069:2 25121:1 25154:1 25259:1 25275:1 25364:1 25366:1 25383:1 25442:1 25480:1 25481:1 25483:1 25485:1 25504:1 25559:1 25564:1 25583:1 25588:1 25591:1 25593:1 25605:1 25607:1 25615:1 25634:1 25636:1 25665:1 25668:1 25702:1 25718:2 25747:1 25752:1 25770:1 25777:1 25784:3 25796:1 25803:1 25811:2 25812:1 25860:1 25862:2 25873:1 25876:2 25883:1 25896:1 25898:1 25902:1 25905:1 25914:1 25935:1 25965:2 26018:1 26038:1 26039:1 26054:1 26068:1 26113:1 26123:1 26128:1 26135:1 26155:2 26157:1 26166:1 26173:1 26211:2 26219:2 26256:1 26271:1 26276:1 26320:1 26333:1 26339:2 26370:1 26371:1 26411:1 26435:1 26460:1 26474:1 26534:1 26574:1 26625:2 26639:1 26688:1 26713:1 26716:1 26729:1 26735:1 26740:1 26758:1 26813:1 26828:3 26845:7 26853:1 26861:1 26863:1 26887:1 26912:1 26921:1 26951:1 26964:1 26994:1 26998:3 27000:3 27020:1 27037:2 27040:2 27047:1 27048:1 27075:1 27093:1 27112:1 27135:1 27140:1 27177:1 27190:2 27209:3 27213:3 27217:1 27224:1 27241:1 27246:1 27252:2 27284:1 27292:1 27328:2 27344:1 27412:1 27422:1 27457:2 27462:3 27487:1 27524:1 27543:1 27563:1 27565:1 27594:1 27600:1 27628:1 27640:1 27663:1 27678:1 27689:1 27775:1 27799:5 27803:3 27835:1 27845:1 27853:1 27874:1 27878:2 27879:1 27889:1 27903:1 27904:1 27943:1 27964:2 27975:1 27978:2 27988:1 27992:1 27994:1 28006:1 28012:1 28019:1 28037:1 28061:2 28072:3 28084:1 28108:1 28132:2 28139:1 28174:1 28175:1 28207:1 28208:1 28210:1 28224:1 28228:1 28262:1 28344:2 28374:2 28375:1 28384:1 28397:1 28424:1 28442:1 28491:1 28507:1 28509:1 28526:1 28538:1 28540:1 28551:1 28562:1 28571:1 28581:1 28587:1 28591:1 28604:1 28620:1 28635:1 28638:2 28670:2 28674:1 28689:1 28720:2 28739:1 28745:1 28746:1 28766:1 28781:1 28792:1 28810:4 28827:2 28841:1 28848:3 28854:1 28888:1 28946:1 28992:1 28994:1 29042:1 29049:1 29051:1 29054:1 29059:1 29067:1 29095:1 29104:1 29115:1 29125:1 29134:1 29139:4 29141:1 29145:1 29176:1 29198:1 29251:1 29254:1 29273:2 29289:1 29296:2 29303:1 29312:1 29334:1 29356:2 29392:2 29413:1 29453:1 29455:2 29463:1 29465:2 29494:1 29509:1 29600:1 29628:1 29633:1 29638:1 29640:1 29647:2 29678:1 29681:1 29724:1 29727:2 29732:1 29740:1 29744:1 29745:1 29746:2 29760:1 29770:2 29792:1 29822:1 29853:1 29878:1 29894:1 29899:1 29900:1 29905:1 29942:2 29947:1 29993:1 30007:1 30012:2 30016:2 30021:1 30044:1 30053:1 30083:1 30093:1 30095:1 30096:1 30106:1 30143:1 30160:1 30163:1 30169:1 30178:1 30186:2 30202:1 30203:1 30209:1 30210:2 30262:1 30266:2 30269:1 30306:1 30309:1 30318:1 30322:1 30333:1 30335:1 30345:2 30355:1 30359:1 30390:2 30392:1 30413:1 30475:1 30488:2 30518:1 30533:2 30559:1 30564:2 30571:1 30590:1 30642:1 30663:1 30675:2 30689:1 30692:1 30727:1 30799:1 30817:1 30820:1 30836:8 30837:1 30841:1 30860:1 30862:1 30879:5 30896:2 30906:1 30944:1 30985:1 31017:3 31020:1 31025:1 31034:1 31036:1 31057:5 31063:1 31080:1 31095:1 31112:1 31116:1 31123:2 31126:1 31144:1 31156:2 31179:1 31188:2 31191:1 31209:1 31235:1 31256:1 31281:2 31330:1 31332:1 31335:1 31340:1 31342:1 31348:1 31360:1 31379:1 31398:1 31401:1 31402:1 31449:3 31469:1 31567:2 31593:3 31603:1 31606:1 31624:1 31628:2 31635:1 31653:1 31659:1 31662:1 31688:1 31716:1 31725:1 31735:1 31819:1 31837:2 31849:1 31896:2 31950:1 31984:1 31994:1 32016:1 32066:1 32080:1 32105:1 32109:1 32120:1 32138:1 32163:1 32214:1 32217:1 32221:1 32233:1 32235:1 32243:3 32244:1 32245:3 32246:1 32250:2 32254:1 32257:1 32258:1 32267:1 32278:1 32298:1 32303:1 32306:1 32320:1 32324:1 32333:2 32337:1 32343:1 32378:1 32382:1
15 71:2 91:1 104:2 166:1 167:2 189:1 196:1 200:1 224:1 225:1 244:1 267:1 285:3 335:1 337:1 370:1 406:2 409:2 463:1 503:3 517:1 529:1 541:2 586:1 612:1 615:1 616:1 622:1 623:1 645:2 649:1 655:2 661:1 666:1 685:2 696:1 697:2 699:1 704:1 747:1 768:2 795:1 813:2 892:1 898:1 928:2 935:1 958:1 959:1 961:1 963:2 968:1 981:1 985:1 1018:1 1020:2 1023:1 1031:1 1039:1 1052:2 1072:1 1114:2 1119:1 1149:2 1150:1 1154:1 1167:1 1172:1 1180:1 1205:2 1210:1 1235:1 1255:1 1259:1 1277:1 1288:2 1297:1 1328:2 1337:1 1367:2 1374:2 1385:1 1396:1 1407:2 1408:1 1429:1 1431:1 1448:1 1458:1 1465:1 1472:1 1483:1 1484:1 1500:1 1513:1 1562:1 1577:2 1592:4 1629:1 1632:1 1635:1 1641:2 1642:2 1650:1 1651:1 1656:4 1686:1 1699:1 1724:1 1725:1 1732:1 1733:4 1736:3 1744:2 1749:2 1777:1 1778:1 1810:2 1813:2 1821:2 1822:2 1827:1 1842:2 1843:3 1870:1 1897:1 1948:1 1952:2 1956:1 1973:1 1981:2 2007:1 2013:1 2032:1 2035:1 2037:1 2042:1 2043:2 2050:2 2052:1 2088:2 2091:1 2156:1 2159:4 2171:1 2174:1 2177:1 2201:1 2359:1 2364:1 2386:1 2426:1 2449:1 2462:2 2463:1 2495:1 2501:1 2503:2 2505:3 2509:1 2516:1 2520:2 2522:1 2524:1 2525:1 2531:1 2532:2 2533:1 2547:1 2559:1 2561:1 2607:2 2636:1 2677:2 2678:1 2707:1 2711:1 2720:2 2804:1 2814:1 2833:1 2844:1 2940:2 2953:1 2991:1 3028:2 3091:1 3103:1 3109:1 3138:2 3145:1 3155:1 3161:3 3169:3 3198:2 3216:4 3228:1 3236:1 3238:1 3242:1 3247:1 3275:1 3321:1 3333:1 3356:2 3372:1 3400:1 3411:1 3443:1 3450:1 3483:1 3548:2 3562:1 3590:1 3600:1 3610:1 3646:3 3658:1 3671:1 3676:1 3699:1 3701:1 3705:1 3708:1 3735:3 3736:1 3779:1 3786:1 3791:1 3803:1 3849:1 3891:1 3892:1 3929:1 3935:1 3964:1 3968:1 4002:1 4006:1 4014:1 4018:1 4019:1 4032:1 4055:1 4066:1 4083:1 4102:1 4105:1 4130:2 4131:2 4152:1 4171:1 4183:1 4187:1 4189:1 4212:1 4214:2 4250:2 4252:3 4255:2 4260:1 4282:1 4291:1 4292:1 4303:1 4305:1 4310:1 4340:1 4377:1 4402:1 4404:1 4405:1 4422:2 4425:1 4445:1 4454:1 4462:1 4463:1 4515:1 4537:1 4563:1 4580:1 4609:1 4625:1 4629:3 4657:1 4665:2 4669:1 4671:1 4685:1 4715:1 4718:1 4736:1 4748:4 4773:1 4781:1 4796:1 4832:1 4863:1 4873:1 4880:1 4889:1 4932:2 4935:1 4938:1 4954:1 5001:1 5012:1 5017:2 5026:3 5035:1 5054:2 5058:2 5074:1 5131:1 5162:2 5178:1 5186:1 5187:2 5206:1 5238:1 5240:1 5242:1 5247:2 5327:1 5336:1 5382:6 5418:1 5442:1 5500:4 5520:2 5521:1 5526:1 5529:1 5535:1 5537:1 5541:1 5542:1 5546:1 5548:2 5549:1 5551:1 5566:1 5574:1 5578:1 5679:1 5690:1 5693:1 5697:2 5712:1 5713:1 5757:2 5760:1 5767:1 5774:1 5788:1 5792:1 5805:2 5823:2 5829:1 5843:3 5896:1 5923:1 5924:1 5928:1 5941:4 5963:1 5967:1 5980:1 5983:1 5998:3 6015:1 6027:1 6031:1 6037:1 6038:1 6050:1 6051:1 6061:1 6063:1 6069:1 6085:3 6143:1 6171:1 6218:1 6232:1 6268:1 6273:1 6287:2 6310:1 6333:1 6350:1 6390:1 6394:1 6395:2 6423:2 6453:1 6479:1 6483:1 6488:1 6570:1 6579:1 6594:1 6628:2 6636:1 6656:1 6725:1 6742:1 6745:1 6749:1 6775:1 6779:1 6780:1 6825:3 6831:2 6850:1 6866:1 6920:1 6931:1 6945:1 6955:1 7021:1 7026:1 7035:1 7037:1 7044:1 7053:1 7055:1 7056:1 7058:1 7060:1 7064:1 7066:1 7071:3 7073:4 7113:1 7119:1 7122:1 7129:1 7130:1 7141:1 7152:1 7165:2 7167:1 7168:2 7184:1 7189:2 7220:2 7229:1 7231:2 7248:1 7308:1 7325:2 7328:1 7330:1 7331:3 7338:1 7365:1 7370:1 7389:1 7403:1 7406:1 7432:2 7453:1 7456:1 7489:1 7526:1 7527:1 7535:1 7544:1 7610:2 7613:1 7625:1 7628:1 7629:4 7679:1 7714:1 7732:1 7739:1 7746:1 7748:1 7758:2 7774:1 7785:1 7797:1 7805:1 7811:1 7824:1 7884:2 7887:2 7892:1 7923:2 7930:1 7931:1 7939:2 7960:1 7979:3 7991:1 8032:1 8044:1 8047:1 8059:1 8087:1 8099:1 8133:1 8137:3 8152:1 8219:2 8235:1 8253:1 8262:2 8288:1 8300:1 8305:1 8324:2 8327:1 8329:1 8335:2 8344:1 8347:1 8348:1 8360:1 8393:1 8408:1 8414:1 8448:1 8457:1 8459:3 8461:2 8462:1 8489:1 8521:1 8551:6 8569:1 8571:1 8602:1 8607:2 8609:1 8620:14 8629:1 8641:2 8642:4 8669:1 8678:1 8689:2 8690:1 8697:1 8707:1 8737:1 8746:1 8761:1 8769:1 8785:2 8792:1 8817:1 8819:1 8833:1 8855:3 8860:1 8863:1 8876:1 8914:1 8921:2 8950:1 8957:1 8975:1 8979:1 8985:1 8995:1 9019:1 9025:1 9028:2 9039:1 9052:1 9074:1 9076:2 9082:3 9087:2 9088:1 9092:1 9110:2 9156:3 9157:10 9170:1 9171:1 9180:1 9207:1 9208:2 9214:1 9216:2 9222:1 9243:2 9252:2 9253:1 9266:1 9282:1 9298:1 9333:1 9340:1 9353:1 9397:2 9406:1 9419:1 9456:1 9493:1 9499:1 9525:1 9534:2 9549:1 9585:1 9593:1 9599:1 9605:3 9610:1 9611:1 9651:1 9656:1 9691:1 9698:1 9711:1 9719:1 9748:1 9769:1 9777:2 9824:2 9825:1 9826:6 9836:1 9845:1 9849:1 9853:1 9877:1 9896:1 9921:1 9926:1 9928:1 9943:1 9950:2 9992:4 10114:1 10164:1 10183:1 10193:1 10202:1 10226:1 10255:1 10260:1 10269:2 10279:4 10306:1 10314:1 10326:1 10357:2 10362:1 10365:1 10377:1 10385:1 10390:2 10413:1 10472:2 10522:1 10542:1 10556:1 10572:2 10574:1 10593:1 10604:1 10606:1 10623:1 10629:1 10640:1 10643:1 10650:2 10656:1 10686:1 10700:1 10719:2 10753:1 10771:1 10782:1 10783:1 10785:1 10791:1 10792:1 10795:1 10796:1 10797:1 10874:1 10883:1 10888:1 10931:4 10947:1 10954:1 10980:1 10990:1 11020:1 11021:1 11027:1 11063:1 11070:1 11101:1 11115:1 11122:1 11140:1 11159:3 11213:2 11220:2 11274:2 11282:2 11293:1 11298:1 11310:1 11312:1 11313:1 11326:1 11333:1 11341:1 11342:1 11346:1 11386:1 11390:1 11403:1 11423:1 11442:2 11443:1 11451:1 11482:3 11486:1 11493:1 11536:1 11554:1 11567:1 11571:1 11579:1 11583:1 11584:1 11594:1 11600:1 11601:2 11608:3 11630:1 11689:1 11701:1 11706:1 11712:1 11717:1 11737:1 11746:1 11769:1 11771:1 11808:1 11809:2 11810:1 11834:1 11850:6 11876:1 11888:1 11921:1 11926:5 11959:2 11960:2 11961:2 11977:1 11994:1 12009:1 12020:2 12035:1 12043:2 12100:1 12102:1 12119:1 12136:1 12149:1 12189:1 12205:1 12230:1 12242:1 12275:2 12300:2 12312:1 12316:1 12339:1 12343:1 12380:1 12408:1 12420:1 12440:1 12442:2 12444:1 12457:1 12458:2 12475:1 12476:1 12477:1 12486:1 12496:1 12497:2 12509:1 12510:2 12517:1 12536:1 12563:1 12570:2 12574:1 12596:1 12623:1 12632:1 12654:1 12688:2 12705:1 12716:4 12722:1 12735:1 12744:1 12746:3 12756:1 12764:1 12776:1 12784:1 12822:1 12825:1 12843:1 12846:1 12860:1 12865:1 12888:1 12901:1 12922:1 12933:1 12934:1 12960:1 12965:1 12997:1 13017:1 13041:1 13092:3 13121:1 13151:2 13164:1 13167:1 13173:3 13178:1 13180:1 13182:1 13186:1 13195:1 13205:1 13234:1 13240:1 13253:1 13256:1 13265:2 13269:2 13297:3 13351:3 13405:1 13434:1 13502:2 13511:2 13513:3 13521:1 13546:1 13575:1 13581:2 13602:1 13626:4 13648:1 13650:1 13654:5 13658:2 13674:1 13685:1 13688:1 13698:3 13714:1 13728:2 13740:1 13757:1 13774:1 13778:2 13834:1 13844:2 13864:1 13873:2 13890:1 13901:1 13940:1 13954:1 13969:1 14011:1 14036:1 14045:1 14067:1 14072:1 14117:1 14122:1 14129:1 14132:1 14157:1 14198:2 14206:1 14243:1 14266:1 14267:1 14275:1 14291:1 14302:1 14328:1 14329:4 14350:1 14356:1 14371:2 14392:1 14472:1 14505:1 14584:1 14601:1 14603:1 14623:1 14632:2 14773:1 14783:1 14795:1 14807:1 14821:5 14841:1 14849:1 14850:1 14853:1 14858:1 14872:1 14887:5 14905:1 14910:1 14923:1 14938:1 14976:2 14978:4 14992:1 14994:2 14996:1 15000:1 15028:1 15039:2 15048:1 15054:2 15075:4 15081:1 15090:3 15131:1 15135:2 15139:1 15161:1 15183:1 15187:1 15218:1 15238:1 15243:3 15263:1 15281:1 15291:1 15314:1 15325:1 15346:1 15368:1 15377:1 15384:1 15401:1 15444:1 15450:1 15458:1 15477:1 15489:3 15496:2 15516:1 15590:1 15596:1 15601:1 15647:1 15657:1 15663:1 15668:1 15669:1 15674:1 15681:1 15759:1 15800:1 15802:1 15805:2 15817:1 15840:1 15853:3 15899:2 15948:1 15949:1 15958:1 16011:1 16025:1 16030:1 16039:1 16087:2 16097:1 16098:1 16102:1 16113:1 16182:1 16209:1 16214:2 16251:2 16272:1 16277:1 16287:1 16292:1 16313:1 16321:1 16336:1 16347:1 16352:2 16371:1 16384:1 16391:1 16426:1 16460:1 16480:1 16487:1 16523:1 16528:1 16540:2 16548:8 16601:1 16624:1 16681:1 16697:2 16716:1 16739:1 16760:2 16766:1 16777:6 16818:1 16822:1 16824:1 16849:1 16866:1 16870:1 16897:1 16916:6 16917:1 16940:1 16941:1 17016:1 17054:2 17061:1 17070:1 17091:1 17093:1 17102:1 17111:1 17116:1 17117:1 17148:2 17207:2 17256:1 17282:1 17290:1 17297:1 17331:1 17337:1 17343:2 17354:2 17376:1 17388:1 17408:2 17461:1 17476:1 17483:1 17513:1 17520:1 17525:3 17530:1 17538:1 17565:1 17568:1 17580:1 17583:1 17618:1 17624:3 17696:1 17700:1 17701:1 17716:2 17717:2 17733:1 17753:1 17757:1 17770:1 17772:1 17773:1 17778:1 17779:1 17787:1 17800:1 17804:4 17812:1 17868:1 17871:1 17876:1 17877:2 17879:4 17899:1 17906:4 17921:1 17935:1 17948:1 17986:1 17993:1 18032:1 18041:3 18054:1 18055:1 18071:1 18077:1 18089:1 18097:1 18098:1 18109:2 18121:1 18132:1 18147:1 18152:1 18156:3 18159:3 18164:1 18169:1 18182:1 18218:1 18307:1 18334:1 18339:2 18345:1 18346:1 18355:1 18367:1 18382:1 18397:1 18410:1 18424:2 18429:2 18436:1 18445:7 18450:1 18493:1 18494:1 18509:1 18537:1 18556:1 18562:1 18573:1 18582:1 18624:1 18634:1 18643:1 18650:1 18677:1 18678:1 18709:1 18723:1 18738:2 18742:1 18753:1 18754:1 18767:1 18774:3 18829:3 18836:1 18880:3 18920:1 18922:1 18931:1 18937:1 18943:3 18944:1 18945:1 18970:1 18978:1 18994:1 19022:1 19030:1 19040:1 19041:1 19046:1 19058:1 19060:1 19067:1 19069:1 19095:1 19097:1 19120:1 19122:1 19154:1 19163:1 19224:1 19234:1 19290:1 19292:1 19302:1 19372:1 19406:1 19417:1 19467:1 19469:1 19473:2 19477:1 19483:1 19485:1 19489:2 19490:1 19526:1 19553:3 19555:3 19614:1 19651:1 19657:1 19665:4 19677:1 19678:3 19710:1 19711:1 19730:1 19739:1 19757:1 19764:1 19777:1 19798:1 19802:1 19803:2 19807:1 19816:1 19837:1 19876:2 19884:1 19887:1 19900:1 19950:1 19970:1 19977:1 19980:1 20026:1 20034:2 20073:1 20074:1 20081:1 20111:1 20112:1 20126:1 20132:1 20152:2 20174:1 20230:1 20306:1 20318:1 20333:1 20355:1 20358:1 20394:2 20401:1 20402:1 20403:1 20411:1 20480:2 20492:2 20522:1 20531:2 20551:1 20590:1 20605:1 20610:1 20613:3 20624:1 20634:2 20708:1 20714:1 20753:1 20757:2241 20781:1 20875:1 20886:1 20912:1 20941:1 20950:1 20963:1 20977:1 20978:1 20991:1 20996:1 20999:1 21000:1 21073:1 21109:1 21111:1 21121:1 21133:1 21136:1 21154:1 21167:1 21190:1 21212:1 21224:1 21225:1 21230:1 21233:2 21259:1 21262:3 21266:1 21330:1 21332:1 21336:1 21337:1 21351:1 21371:1 21379:1 21389:1 21423:2 21437:1 21472:1 21514:1 21521:4 21551:1 21553:6 21558:1 21565:1 21587:2 21596:1 21617:1 21643:2 21649:1 21669:1 21700:1 21710:1 21737:3 21778:1 21783:1 21806:2 21816:1 21831:1 21873:1 21878:1 21911:1 21915:2 21974:1 21982:1 21988:1 22007:1 22042:1 22043:1 22049:1 22070:1 22105:1 22178:1 22182:2 22204:1 22207:1 22230:1 22251:1 22252:3 22277:1 22278:4 22299:3 22303:1 22305:1 22320:1 22328:1 22332:1 22361:1 22419:1 22445:3 22448:1 22482:1 22493:1 22552:1 22655:3 22666:1 22712:1 22719:2 22722:1 22782:1 22784:1 22813:1 22818:2 22819:1 22824:1 22838:1 22848:1 22867:2 22872:1 22894:4 22897:2 22901:1 22903:1 22909:1 22912:1 22963:1 22992:1 23006:1 23022:1 23039:1 23042:1 23068:2 23083:3 23112:1 23114:1 23128:1 23136:1 23145:1 23157:4 23163:2 23175:1 23183:1 23185:1 23192:1 23196:1 23198:4 23202:1 23213:1 23222:1 23264:1 23285:1 23287:1 23291:3 23302:1 23315:1 23320:1 23322:1 23337:1 23415:1 23421:1 23426:1 23427:1 23430:1 23433:2 23435:1 23438:1 23453:1 23454:1 23456:2 23472:1 23473:1 23478:1 23487:1 23541:1 23553:1 23555:1 23568:1 23570:1 23572:1 23574:1 23600:4 23603:1 23618:1 23661:1 23700:1 23701:1 23702:1 23704:1 23730:1 23734:1 23741:1 23746:1 23754:1 23774:1 23793:1 23834:2 23839:3 23907:1 23926:1 23927:2 23930:1 23938:1 23945:2 23951:1 23958:2 23962:2 23973:1 23976:2 24000:1 24012:1 24026:1 24136:2 24139:2 24162:2 24174:1 24217:1 24224:1 24236:1 24280:1 24287:1 24300:2 24305:3 24316:1 24322:1 24333:1 24355:1 24384:1 24391:1 24404:1 24414:1 24443:1 24467:2 24475:1 24507:1 24524:1 24557:1 24559:1 24563:1 24576:1 24590:1 24596:1 24610:1 24665:1 24700:1 24701:1 24718:1 24742:1 24755:3 24770:3 24776:1 24789:1 24793:6 24800:1 24805:1 24812:1 24820:1 24839:1 24858:1 24868:1 24870:1 24896:1 24898:1 24965:1 24996:1 25007:1 25046:1 25059:2 25069:2 25121:1 25154:1 25259:1 25275:1 25364:1 25366:1 25383:1 25442:1 25466:1 25480:1 25481:1 25483:1 25485:1 25504:1 25559:1 25564:1 25583:1 25588:1 25591:1 25593:1 25605:1 25607:1 25615:1 25634:1 25636:1 25665:1 25668:1 25702:1 25718:2 25747:1 25752:1 25770:1 25777:1 25784:3 25796:1 25803:1 25811:2 25812:1 25821:1 25860:1 25862:2 25873:1 25876:2 25883:1 25896:1 25898:1 25902:1 25905:1 25914:1 25935:1 25965:2 25991:2 26018:1 26038:1 26039:1 26054:1 26068:1 26113:1 26123:1 26128:1 26135:1 26155:2 26157:1 26166:1 26173:1 26211:2 26219:2 26256:1 26271:1 26273:1 26276:2 26277:1 26320:1 26333:1 26339:2 26370:1 26371:1 26411:1 26435:1 26460:1 26474:1 26534:1 26574:1 26625:2 26639:1 26688:1 26713:1 26716:1 26729:1 26735:1 26740:1 26758:1 26813:1 26828:3 26845:7 26852:1 26853:1 26861:1 26863:1 26887:1 26912:1 26921:1 26951:1 26955:1 26964:1 26994:1 26998:3 27000:3 27020:1 27037:2 27040:2 27047:1 27048:1 27075:1 27093:1 27112:1 27135:1 27140:1 27177:1 27190:2 27209:3 27213:3 27217:1 27224:1 27241:1 27246:1 27252:2 27284:1 27292:1 27328:2 27344:1 27412:1 27422:1 27457:2 27462:3 27480:1 27487:1 27524:1 27543:1 27563:2 27565:1 27594:1 27600:1 27628:1 27640:1 27663:1 27678:1 27689:1 27741:1 27775:1 27799:5 27803:3 27835:1 27845:1 27853:1 27874:1 27875:1 27878:2 27879:1 27889:1 27903:1 27904:1 27943:1 27964:2 27975:1 27978:2 27979:1 27988:1 27992:1 27994:1 28006:1 28012:1 28019:1 28037:1 28061:2 28072:3 28084:2 28108:1 28132:2 28139:1 28174:1 28175:1 28207:1 28208:1 28210:1 28224:1 28228:1 28229:1 28236:1 28262:1 28344:2 28374:2 28375:1 28384:1 28394:1 28397:1 28424:1 28442:1 28488:1 28491:1 28507:1 28509:1 28526:1 28538:1 28540:1 28551:1 28562:1 28571:1 28581:1 28587:1 28591:1 28604:1 28620:1 28635:1 28638:2 28670:2 28674:1 28689:1 28720:2 28739:1 28745:1 28746:1 28766:1 28781:1 28792:1 28810:4 28827:2 28841:1 28848:4 28854:1 28888:1 28946:1 28992:1 28994:1 29042:1 29049:1 29051:1 29054:1 29059:1 29067:1 29095:1 29104:1 29115:1 29125:1 29134:1 29139:4 29141:1 29145:1 29176:1 29198:1 29251:1 29254:1 29273:2 29289:2 29296:2 29303:1 29312:1 29334:1 29356:2 29392:2 29413:1 29453:1 29455:2 29463:1 29465:2 29494:1 29509:1 29600:1 29628:1 29633:1 29638:1 29640:1 29647:2 29678:1 29681:2 29724:1 29727:2 29732:1 29740:1 29744:1 29745:1 29746:2 29760:1 29763:1 29770:2 29792:1 29822:1 29853:1 29878:1 29894:1 29899:1 29900:1 29905:1 29942:2 29947:1 29993:1 30007:1 30012:2 30016:2 30021:1 30044:1 30053:1 30083:1 30093:1 30095:1 30096:1 30106:1 30143:1 30156:1 30160:1 30163:2 30169:1 30178:1 30186:2 30202:1 30203:1 30209:1 30210:2 30253:1 30262:1 30266:2 30269:1 30275:1 30306:1 30309:1 30318:1 30322:1 30333:1 30335:1 30345:2 30355:1 30359:1 30390:2 30392:1 30413:1 30475:1 30488:2 30518:1 30533:2 30557:1 30559:1 30564:2 30571:1 30590:1 30642:1 30663:1 30675:2 30689:1 30692:1 30727:1 30799:1 30817:1 30820:1 30836:8 30837:1 30841:1 30860:1 30862:1 30879:5 30896:2 30906:1 30944:1 30985:1 31017:3 31020:1 31025:1 31034:1 31036:1 31057:6 31063:1 31080:1 31095:1 31112:1 31116:1 31123:2 31126:1 31144:1 31156:2 31179:1 31188:2 31191:1 31209:1 31235:1 31256:1 31281:2 31330:1 31332:1 31335:1 31340:1 31342:1 31348:1 31360:1 31379:1 31398:1 31401:1 31402:1 31449:3 31469:1 31476:1 31567:2 31593:3 31603:1 31606:1 31624:2 31628:2 31635:1 31653:1 31659:1 31662:1 31688:1 31716:1 31725:1 31735:1 31819:1 31837:2 31849:1 31880:1 31896:2 31950:1 31959:1 31984:1 31994:1 32016:1 32066:1 32080:1 32105:1 32109:1 32120:1 32138:1 32163:1 32214:1 32217:1 32221:1 32233:1 32235:1 32243:3 32244:1 32245:3 32246:1 32250:2 32254:1 32257:1 32258:1 32267:1 32278:1 32298:1 32303:1 32306:1 32320:1 32324:1 32333:2 32337:1 32343:1 32378:1 32382:1
15 43:1 71:3 91:1 104:2 166:1 167:2 189:2 196:1 200:1 224:1 225:1 244:1 267:1 285:3 335:1 337:1 370:1 406:2 409:2 463:1 503:3 517:1 529:1 541:2 586:1 612:1 615:1 616:1 622:1 623:1 645:2 649:1 655:2 661:1 666:1 685:2 696:1 697:2 699:1 704:1 747:1 768:3 795:1 813:3 829:1 892:1 898:1 928:2 935:1 956:1 958:1 959:1 961:1 963:2 968:1 981:1 985:1 988:1 1018:1 1020:2 1023:1 1031:1 1039:1 1052:2 1072:1 1103:1 1114:2 1119:1 1149:2 1150:1 1154:1 1167:1 1172:1 1180:1 1205:2 1210:1 1235:1 1255:1 1259:1 1277:1 1288:2 1297:1 1328:3 1337:1 1367:2 1374:2 1385:1 1396:1 1407:2 1408:1 1429:1 1431:1 1448:1 1458:1 1465:1 1472:1 1483:1 1484:1 1500:1 1513:1 1562:1 1577:2 1592:4 1629:1 1632:1 1635:1 1641:2 1642:2 1650:1 1651:1 1656:4 1686:1 1699:1 1724:1 1725:1 1732:1 1733:4 1736:3 1744:2 1749:2 1777:1 1778:1 1810:2 1813:2 1821:2 1822:2 1827:1 1842:2 1843:3 1870:1 1897:1 1948:1 1952:2 1956:1 1973:1 1981:2 2007:1 2013:1 2032:1 2035:1 2037:1 2040:1 2042:1 2043:2 2047:1 2050:2 2052:1 2088:2 2091:1 2156:1 2159:4 2171:1 2174:2 2177:1 2191:1 2201:1 2254:1 2334:1 2359:1 2364:1 2386:1 2426:1 2449:1 2462:2 2463:1 2495:1 2501:1 2503:2 2505:3 2509:1 2516:1 2520:2 2522:1 2524:1 2525:2 2528:2 2531:1 2532:2 2533:1 2547:1 2559:1 2561:1 2607:2 2636:1 2677:2 2678:1 2707:1 2711:1 2720:2 2804:1 2814:1 2833:1 2844:1 2940:2 2953:1 2977:1 2982:1 2991:1 3028:2 3091:1 3103:2 3109:1 3138:2 3145:1 3155:1 3161:3 3169:3 3170:1 3178:1 3179:1 3198:2 3216:4 3228:1 3236:1 3238:1 3240:1 3242:1 3247:1 3275:1 3280:1 3321:1 3333:1 3356:2 3372:1 3400:1 3411:1 3443:1 3450:1 3483:1 3548:2 3562:1 3590:1 3600:1 3610:1 3646:3 3658:1 3671:1 3676:1 3699:1 3701:1 3705:1 3708:1 3735:3 3736:1 3779:1 3786:1 3791:1 3803:1 3849:1 3891:1 3892:1 3929:1 3935:1 3964:1 3968:1 4002:1 4006:1 4014:1 4018:1 4019:1 4032:1 4037:1 4055:1 4066:1 4083:1 4102:1 4105:1 4130:2 4131:2 4152:1 4171:1 4183:1 4187:1 4189:1 4212:1 4214:2 4250:2 4252:3 4255:2 4260:1 4282:1 4291:1 4292:1 4303:1 4305:1 4310:1 4340:1 4363:1 4377:1 4402:1 4404:1 4405:1 4422:2 4425:1 4445:1 4454:1 4462:1 4463:1 4515:1 4537:1 4563:1 4580:1 4609:1 4625:1 4629:3 4657:1 4665:2 4669:1 4671:1 4685:1 4715:1 4718:1 4736:1 4748:4 4773:1 4781:1 4796:1 4832:1 4863:1 4873:1 4880:1 4889:1 4932:2 4935:1 4938:1 4954:1 4969:1 5001:1 5012:1 5017:2 5026:3 5035:1 5054:2 5058:2 5074:1 5131:1 5162:2 5178:1 5186:1 5187:2 5206:1 5238:1 5240:1 5242:1 5247:2 5327:1 5336:1 5382:6 5418:1 5442:1 5447:1 5500:4 5520:2 5521:1 5526:1 5529:1 5535:1 5537:1 5541:1 5542:1 5546:1 5548:2 5549:1 5551:1 5566:1 5574:1 5578:1 5679:1 5690:1 5693:1 5697:2 5712:1 5713:1 5757:2 5760:1 5767:1 5774:1 5788:1 5792:1 5805:2 5823:2 5829:1 5843:3 5896:1 5923:1 5924:1 5928:1 5941:4 5963:1 5967:1 5980:1 5983:1 5998:3 6015:1 6027:1 6031:1 6037:1 6038:1 6050:1 6051:1 6061:1 6063:1 6069:1 6085:3 6143:1 6171:1 6218:1 6232:1 6268:1 6273:1 6287:3 6310:1 6333:1 6350:1 6390:1 6394:1 6395:2 6397:1 6423:2 6440:1 6453:1 6479:1 6483:1 6488:1 6536:1 6547:1 6570:1 6579:1 6594:1 6628:2 6636:1 6656:1 6725:1 6742:1 6745:1 6749:1 6775:1 6779:1 6780:1 6825:3 6831:2 6850:1 6866:1 6920:1 6931:1 6945:1 6955:1 7021:1 7026:1 7035:1 7037:1 7044:1 7053:1 7055:1 7056:1 7058:1 7060:1 7064:2 7066:1 7071:3 7073:4 7113:1 7119:1 7122:1 7129:1 7130:1 7141:1 7152:1 7165:2 7167:1 7168:2 7184:1 7189:2 7220:2 7229:1 7231:2 7248:1 7308:1 7325:2 7328:1 7330:1 7331:3 7338:1 7365:1 7370:1 7389:1 7403:1 7406:1 7432:2 7453:1 7456:1 7489:1 7526:1 7527:1 7535:1 7544:1 7610:2 7613:1 7615:1 7625:1 7628:1 7629:4 7679:1 7714:1 7732:1 7739:1 7746:1 7748:1 7758:2 7774:1 7785:1 7797:1 7805:1 7811:1 7824:1 7884:2 7887:2 7892:1 7923:2 7930:1 7931:1 7939:2 7960:1 7979:3 7991:1 8032:1 8044:1 8047:1 8059:1 8087:1 8099:1 8133:1 8137:3 8152:1 8190:1 8219:2 8235:1 8253:1 8262:2 8288:1 8300:1 8305:1 8324:2 8327:1 8329:1 8335:2 8344:1 8347:1 8348:1 8360:1 8393:1 8408:1 8414:1 8422:1 8448:1 8457:1 8459:3 8461:2 8462:1 8489:1 8521:1 8551:6 8569:1 8571:1 8602:1 8607:2 8609:1 8620:16 8629:1 8641:2 8642:4 8669:1 8678:1 8689:2 8690:1 8697:1 8707:1 8737:1 8746:1 8761:1 8769:1 8785:2 8792:1 8817:1 8819:1 8833:1 8855:3 8860:1 8863:1 8876:1 8914:1 8921:2 8950:1 8957:1 8975:1 8979:1 8985:1 8995:1 9019:1 9025:1 9028:2 9039:1 9052:1 9074:1 9076:2 9082:3 9087:2 9088:1 9092:1 9110:3 9156:3 9157:10 9170:1 9171:1 9180:1 9207:1 9208:2 9214:1 9216:2 9222:1 9235:1 9243:2 9252:2 9253:1 9266:1 9282:1 9298:1 9333:1 9340:1 9353:1 9397:2 9402:1 9406:1 9419:1 9456:1 9493:1 9499:1 9525:1 9534:2 9549:1 9585:1 9593:1 9599:1 9605:3 9610:1 9611:1 9627:1 9651:1 9656:1 9691:1 9698:1 9711:1 9719:1 9748:1 9769:1 9777:2 9806:1 9824:2 9825:1 9826:6 9836:1 9845:1 9849:1 9853:1 9877:1 9896:1 9921:1 9926:1 9928:1 9943:1 9950:2 9992:4 10114:1 10164:1 10183:1 10193:1 10202:1 10226:1 10255:1 10260:1 10269:2 10279:4 10306:1 10314:1 10326:1 10357:2 10362:1 10365:1 10377:1 10385:1 10390:2 10413:1 10472:2 10522:1 10542:1 10556:1 10572:2 10574:1 10593:1 10604:1 10606:1 10623:1 10629:1 10640:1 10643:1 10650:2 10655:1 10656:1 10686:1 10700:1 10719:2 10753:1 10771:1 10782:1 10783:1 10785:1 10791:1 10792:1 10795:1 10796:1 10797:1 10838:1 10874:1 10883:1 10888:1 10931:4 10947:1 10954:2 10980:1 10990:1 11020:1 11021:1 11027:1 11063:1 11070:1 11101:1 11115:1 11122:1 11140:1 11159:3 11197:1 11213:2 11220:2 11274:2 11282:2 11293:1 11298:1 11310:1 11312:1 11313:1 11326:1 11333:1 11341:1 11342:1 11346:1 11386:1 11390:1 11403:1 11423:1 11442:2 11443:1 11451:1 11482:3 11486:1 11493:1 11536:1 11554:1 11567:1 11571:1 11579:1 11583:1 11584:1 11594:1 11600:1 11601:2 11608:3 11630:1 11689:1 11690:1 11701:1 11706:1 11712:1 11717:1 11737:1 11746:1 11769:1 11771:1 11808:1 11809:2 11810:1 11834:1 11850:6 11876:1 11888:1 11921:1 11926:5 11959:2 11960:2 11961:2 11977:1 11994:1 12009:1 12020:2 12035:1 12043:2 12099:1 12100:1 12102:1 12119:1 12136:1 12149:1 12189:1 12205:1 12230:1 12242:1 12275:2 12300:2 12312:1 12316:1 12339:1 12343:1 12349:1 12380:1 12408:1 12420:1 12440:1 12442:2 12444:1 12457:1 12458:2 12475:1 12476:1 12477:1 12486:1 12496:1 12497:2 12509:1 12510:2 12517:1 12536:1 12563:1 12570:2 12574:1 12596:1 12623:1 12632:1 12654:1 12688:2 12705:1 12716:4 12722:1 12735:1 12744:1 12746:3 12756:1 12764:1 12776:1 12784:1 12822:1 12825:1 12843:1 12846:1 12860:1 12865:1 12888:1 12901:1 12917:1 12922:1 12933:1 12934:1 12960:1 12965:1 12997:1 13017:1 13041:1 13092:3 13121:1 13151:2 13164:1 13167:1 13173:3 13178:1 13180:1 13182:2 13186:1 13195:1 13205:1 13213:1 13234:1 13240:1 13253:1 13256:1 13265:3 13269:2 13297:3 13351:3 13405:1 13434:1 13502:2 13511:2 13513:3 13521:1 13546:1 13558:1 13575:1 13581:2 13602:1 13626:4 13648:1 13650:1 13654:5 13658:2 13674:1 13685:1 13688:1 13698:3 13714:1 13728:2 13740:1 13757:1 13765:1 13774:1 13778:2 13834:1 13844:3 13864:1 13873:2 13890:1 13901:1 13940:1 13954:1 13969:1 14011:1 14034:1 14036:1 14045:1 14067:1 14072:1 14117:1 14122:1 14129:1 14132:1 14157:1 14198:2 14206:1 14243:1 14266:1 14267:1 14275:1 14291:1 14302:1 14328:1 14329:4 14350:1 14356:1 14371:2 14392:1 14472:1 14505:1 14520:1 14584:1 14601:1 14603:1 14623:1 14632:2 14773:1 14783:1 14795:1 14807:1 14821:5 14841:1 14849:1 14850:1 14853:1 14858:1 14872:1 14887:6 14905:1 14910:1 14923:1 14938:1 14976:2 14978:4 14992:1 14994:2 14996:1 15000:1 15028:1 15039:2 15048:1 15054:2 15075:4 15081:1 15090:3 15131:1 15135:2 15139:1 15161:1 15183:1 15187:1 15218:1 15238:1 15243:3 15263:1 15281:1 15291:1 15314:1 15325:1 15346:1 15368:1 15373:1 15377:1 15384:1 15401:1 15411:1 15444:1 15450:1 15458:1 15477:1 15489:3 15496:2 15516:1 15590:1 15596:1 15601:1 15647:1 15657:1 15663:1 15668:1 15669:1 15674:2 15681:1 15759:1 15784:1 15800:1 15802:1 15805:2 15817:2 15840:1 15853:3 15899:2 15948:1 15949:1 15958:1 16011:1 16025:1 16030:1 16039:1 16087:2 16097:1 16098:1 16102:1 16111:1 16113:1 16131:1 16182:1 16209:1 16214:3 16228:1 16251:2 16252:1 16257:1 16272:1 16277:1 16287:1 16292:1 16313:1 16321:1 16336:1 16347:1 16352:2 16371:1 16384:1 16391:1 16411:1 16426:1 16460:1 16480:1 16487:1 16523:1 16528:1 16540:2 16548:8 16554:1 16601:1 16624:1 16681:1 16697:2 16716:1 16739:1 16760:2 16766:1 16777:6 16818:1 16822:2 16824:1 16849:1 16866:1 16870:2 16897:1 16916:6 16917:1 16940:1 16941:1 17016:1 17054:2 17061:2 17070:1 17091:1 17093:1 17102:1 17111:1 17116:1 17117:1 17148:2 17207:2 17256:1 17282:1 17290:1 17297:1 17331:1 17337:1 17343:2 17354:2 17376:1 17388:1 17408:2 17461:1 17476:1 17483:1 17513:1 17520:1 17525:3 17530:1 17538:1 17565:1 17568:1 17580:1 17583:1 17618:1 17624:3 17696:1 17700:1 17701:1 17716:2 17717:2 17733:1 17753:1 17757:1 17770:1 17772:1 17773:1 17778:1 17779:1 17787:1 17800:1 17804:4 17812:1 17843:1 17868:1 17871:1 17876:1 17877:2 17879:4 17899:1 17906:4 17921:1 17935:1 17948:1 17986:1 17993:1 18029:1 18032:1 18041:3 18054:1 18055:1 18071:2 18077:1 18089:1 18097:1 18098:1 18109:2 18121:1 18132:1 18147:1 18152:1 18156:3 18159:3 18164:1 18169:1 18182:1 18218:1 18307:1 18334:1 18339:2 18345:1 18346:1 18355:1 18367:1 18376:1 18382:1 18397:1 18410:1 18424:2 18429:2 18436:1 18445:7 18450:1 18453:1 18493:1 18494:1 18509:1 18537:1 18556:1 18562:1 18573:1 18582:1 18624:1 18634:1 18643:1 18650:1 18677:1 18678:1 18709:1 18723:1 18738:2 18742:1 18753:1 18754:1 18767:1 18774:3 18829:3 18836:1 18880:3 18920:1 18922:1 18931:1 18937:1 18943:3 18944:1 18945:1 18970:1 18978:1 18994:1 19022:1 19030:1 19040:1 19041:1 19046:1 19058:1 19060:1 19067:1 19069:1 19095:1 19097:1 19120:1 19122:1 19154:1 19163:1 19224:1 19234:1 19288:2 19290:1 19292:1 19302:1 19372:1 19406:1 19417:1 19467:1 19469:1 19473:2 19477:1 19483:1 19485:1 19489:2 19490:1 19526:1 19553:3 19555:3 19614:1 19651:1 19657:1 19665:4 19677:1 19678:3 19710:1 19711:1 19730:1 19739:1 19757:1 19764:1 19777:1 19798:1 19802:1 19803:2 19807:1 19816:1 19837:1 19876:2 19884:1 19887:1 19900:1 19950:1 19970:1 19977:1 19980:1 20026:1 20034:2 20073:1 20074:1 20081:1 20111:1 20112:1 20126:1 20132:1 20152:2 20174:1 20230:1 20306:1 20318:1 20333:1 20355:1 20358:1 20394:2 20401:1 20402:1 20403:1 20411:1 20480:2 20492:2 20522:1 20531:2 20551:1 20590:1 20605:1 20610:1 20613:3 20624:1 20634:2 20661:1 20708:1 20714:1 20753:1 20757:2348 20781:1 20832:1 20875:2 20886:1 20912:1 20941:1 20950:1 20963:1 20977:1 20978:1 20991:1 20996:1 20999:1 21000:1 21049:1 21073:1 21109:1 21111:1 21121:1 21133:1 21136:1 21154:1 21167:1 21190:1 21212:1 21224:1 21225:1 21230:1 21233:2 21259:1 21262:3 21266:1 21330:1 21332:1 21336:1 21337:1 21351:1 21371:1 21379:1 21389:1 21423:2 21437:1 21472:1 21514:1 21521:5 21551:1 21553:6 21558:1 21565:1 21587:2 21596:1 21617:1 21643:2 21649:1 21669:1 21688:1 21700:1 21710:1 21737:3 21778:1 21783:1 21806:2 21816:1 21831:1 21842:1 21873:1 21878:1 21911:1 21915:2 21974:1 21982:1 21988:1 22007:1 22042:1 22043:1 22049:1 22070:1 22105:1 22178:1 22182:2 22204:1 22207:1 22230:1 22251:1 22252:3 22277:1 22278:4 22299:3 22303:1 22305:1 22320:1 22328:1 22332:1 22361:1 22375:1 22419:1 22445:3 22448:1 22460:1 22482:1 22493:1 22552:1 22655:3 22666:1 22712:1 22719:2 22722:1 22782:1 22784:1 22813:1 22818:2 22819:1 22824:1 22838:1 22848:1 22865:1 22867:2 22872:1 22894:4 22897:2 22901:1 22903:1 22909:1 22912:1 22963:1 22986:1 22992:1 23006:1 23022:1 23039:1 23042:1 23068:2 23083:3 23112:1 23114:1 23128:1 23136:1 23145:1 23157:4 23163:2 23175:1 23183:1 23185:1 23192:1 23196:1 23198:4 23202:1 23213:1 23222:1 23264:1 23285:1 23287:2 23291:4 23302:1 23315:1 23320:1 23322:1 23337:1 23363:1 23415:1 23421:1 23426:1 23427:1 23430:1 23433:2 23435:1 23438:1 23453:1 23454:1 23456:2 23472:1 23473:1 23478:2 23487:1 23541:1 23553:1 23555:1 23568:1 23570:1 23572:1 23574:1 23600:4 23603:1 23618:1 23661:1 23700:1 23701:1 23702:1 23704:1 23725:1 23730:1 23734:1 23741:2 23746:1 23754:1 23774:1 23793:1 23834:2 23839:3 23907:1 23926:1 23927:2 23930:1 23938:1 23945:2 23951:1 23958:2 23962:2 23973:1 23976:2 24000:1 24012:1 24026:1 24136:2 24139:2 24162:2 24174:1 24217:1 24224:1 24236:1 24280:1 24287:1 24300:2 24305:3 24316:1 24322:2 24333:1 24355:1 24384:1 24391:1 24404:1 24414:1 24443:1 24467:2 24475:1 24507:1 24524:1 24557:1 24559:1 24563:1 24576:1 24590:1 24596:1 24610:1 24665:1 24700:1 24701:1 24718:1 24742:1 24755:3 24770:3 24776:1 24789:1 24793:6 24800:1 24805:1 24812:1 24820:1 24839:1 24858:1 24868:1 24870:1 24896:1 24898:1 24965:1 24996:1 25007:1 25046:1 25059:2 25069:2 25121:1 25154:1 25259:1 25275:1 25364:1 25366:1 25383:1 25442:1 25466:1 25480:1 25481:1 25483:1 25485:1 25504:1 25559:1 25564:1 25583:1 25588:1 25591:1 25593:1 25605:1 25607:1 25615:1 25634:1 25636:1 25665:1 25668:1 25702:1 25718:2 25747:1 25752:1 25770:1 25777:1 25784:3 25796:1 25803:1 25811:2 25812:1 25821:1 25860:1 25862:2 25873:1 25876:2 25877:1 25883:1 25896:1 25898:1 25902:1 25905:1 25914:1 25935:1 25965:2 25991:2 26018:1 26038:1 26039:1 26054:1 26068:1 26113:1 26123:1 26128:1 26135:1 26155:2 26157:1 26166:1 26173:1 26211:2 26219:2 26256:1 26271:1 26273:1 26276:2 26277:1 26320:1 26333:1 26339:2 26370:1 26371:1 26411:1 26435:1 26460:2 26474:1 26534:1 26574:1 26625:2 26639:1 26688:1 26713:1 26716:1 26729:1 26735:1 26740:1 26758:1 26813:1 26828:3 26838:1 26845:7 26852:1 26853:1 26861:1 26863:1 26887:1 26912:1 26921:1 26951:1 26955:1 26964:1 26994:1 26998:3 27000:3 27007:1 27020:1 27037:2 27040:2 27047:1 27048:1 27075:1 27093:1 27112:1 27135:1 27140:1 27177:1 27190:2 27209:3 27213:3 27217:1 27224:1 27241:1 27246:1 27252:2 27284:1 27292:1 27328:2 27344:1 27412:1 27422:1 27457:2 27462:3 27480:1 27487:1 27524:1 27543:1 27563:2 27565:1 27590:1 27594:1 27600:1 27628:1 27640:1 27663:1 27678:1 27689:1 27741:1 27775:1 27799:5 27803:3 27835:1 27845:1 27853:1 27874:1 27875:1 27878:2 27879:1 27889:1 27903:1 27904:1 27943:1 27964:2 27975:1 27978:2 27979:1 27988:1 27992:1 27994:1 28006:1 28012:1 28019:1 28037:1 28061:2 28072:3 28084:2 28108:1 28132:2 28139:1 28174:1 28175:1 28207:1 28208:1 28210:1 28224:1 28228:1 28229:1 28236:1 28262:1 28344:2 28374:2 28375:1 28384:1 28394:1 28397:1 28424:1 28442:1 28488:1 28491:2 28507:1 28509:1 28511:1 28526:1 28538:1 28540:1 28551:1 28562:1 28571:1 28581:1 28587:1 28591:1 28604:1 28620:1 28635:1 28638:2 28670:2 28674:1 28689:1 28720:2 28739:1 28745:1 28746:1 28766:1 28781:1 28792:1 28810:4 28827:2 28841:1 28848:4 28854:1 28888:1 28946:1 28992:1 28994:1 29027:1 29042:1 29049:1 29051:1 29054:1 29059:1 29067:1 29095:1 29104:1 29115:1 29125:1 29134:1 29139:4 29141:1 29145:1 29176:1 29198:1 29251:1 29254:1 29273:2 29289:2 29296:2 29303:1 29312:1 29334:1 29356:2 29392:2 29413:1 29453:1 29455:2 29462:1 29463:1 29465:2 29494:1 29509:1 29600:1 29628:1 29633:1 29638:1 29640:1 29647:2 29678:1 29681:2 29724:1 29727:2 29732:1 29740:1 29744:1 29745:1 29746:2 29760:1 29763:1 29770:2 29792:1 29822:1 29853:1 29878:1 29894:1 29899:2 29900:1 29905:1 29942:2 29947:1 29993:1 30007:1 30012:2 30016:2 30021:1 30044:1 30052:1 30053:1 30083:1 30093:1 30095:1 30096:1 30106:1 30143:1 30156:1 30160:1 30163:2 30169:1 30178:1 30186:2 30202:1 30203:1 30209:1 30210:2 30253:1 30262:1 30266:2 30269:1 30275:1 30306:1 30309:1 30318:1 30322:1 30333:1 30335:1 30345:2 30355:1 30359:1 30390:2 30392:1 30413:1 30475:1 30488:2 30518:1 30533:2 30557:1 30559:1 30564:2 30571:1 30590:1 30642:1 30663:1 30675:2 30689:1 30692:1 30727:1 30732:1 30799:1 30817:1 30820:1 30836:8 30837:1 30841:1 30860:1 30862:1 30879:5 30896:2 30906:1 30944:1 30985:1 31017:3 31020:1 31025:1 31034:1 31036:1 31057:6 31063:1 31080:1 31095:1 31112:1 31116:1 31123:2 31126:1 31144:1 31156:2 31179:1 31188:2 31191:1 31209:1 31235:1 31256:1 31281:2 31330:1 31332:1 31335:1 31340:1 31342:1 31348:1 31360:1 31379:1 31398:1 31401:1 31402:1 31449:3 31452:1 31469:1 31476:1 31567:2 31593:3 31603:1 31606:1 31624:2 31628:2 31635:1 31653:1 31659:1 31662:1 31688:1 31716:1 31725:1 31735:1 31739:1 31819:1 31837:2 31849:1 31880:1 31896:2 31937:1 31950:1 31959:1 31984:1 31994:1 32016:1 32066:1 32080:1 32105:1 32109:1 32120:1 32138:1 32163:1 32214:1 32217:1 32221:1 32233:1 32235:1 32243:3 32244:1 32245:3 32246:1 32250:2 32254:1 32257:1 32258:1 32267:1 32278:1 32298:1 32303:1 32306:1 32320:1 32324:1 32333:2 32337:1 32343:1 32378:1 32382:1
15 43:1 71:3 91:1 104:2 166:1 167:2 189:2 196:1 200:1 224:1 225:1 244:1 267:1 285:3 335:1 337:2 356:1 370:1 406:2 409:2 444:1 463:1 503:3 517:1 529:1 541:2 586:1 612:1 615:1 616:1 622:1 623:1 645:2 649:1 655:2 661:1 666:1 685:2 696:1 697:2 699:1 704:1 747:1 768:3 791:1 795:1 813:3 829:1 892:1 898:1 928:2 935:1 956:1 958:1 959:1 961:1 963:2 968:1 981:1 985:1 988:1 1018:1 1020:2 1023:1 1031:1 1039:1 1052:2 1072:1 1103:1 1114:2 1119:1 1149:2 1150:1 1154:1 1167:1 1172:1 1180:1 1205:2 1210:1 1235:1 1255:1 1259:1 1277:1 1288:2 1297:1 1328:3 1337:1 1367:2 1374:2 1385:1 1396:1 1407:2 1408:1 1429:1 1431:1 1448:1 1458:1 1465:1 1472:1 1483:1 1484:1 1500:1 1513:1 1562:1 1577:2 1592:4 1629:1 1632:1 1635:1 1641:2 1642:2 1650:1 1651:1 1656:4 1686:1 1699:1 1724:1 1725:1 1732:1 1733:4 1736:3 1744:2 1749:2 1777:1 1778:1 1810:2 1813:2 1821:2 1822:2 1827:1 1842:2 1843:3 1870:1 1897:1 1948:2 1952:2 1956:1 1973:1 1981:2 2007:1 2008:1 2013:1 2032:1 2035:1 2037:1 2040:1 2042:1 2043:2 2047:1 2050:2 2052:1 2088:2 2091:1 2156:1 2159:4 2171:1 2174:2 2177:1 2191:1 2201:1 2254:1 2327:1 2334:1 2359:1 2364:1 2386:2 2426:1 2449:1 2462:2 2463:1 2495:1 2501:1 2503:2 2505:3 2509:1 2516:2 2520:2 2522:1 2524:1 2525:2 2528:2 2531:1 2532:2 2533:1 2547:1 2559:1 2561:1 2607:2 2636:1 2677:2 2678:1 2707:1 2711:1 2720:2 2804:1 2814:1 2833:1 2844:1 2940:2 2953:1 2977:1 2982:1 2984:1 2991:1 3028:2 3038:1 3091:1 3103:2 3109:1 3138:2 3145:1 3155:1 3161:3 3169:3 3170:1 3178:1 3179:1 3198:2 3216:4 3228:1 3236:1 3238:1 3240:1 3242:1 3247:1 3275:1 3280:1 3321:1 3333:1 3356:2 3372:1 3400:1 3411:1 3443:1 3450:1 3483:1 3548:2 3562:1 3590:1 3600:1 3610:1 3646:3 3658:1 3671:1 3676:1 3699:1 3701:1 3705:1 3708:1 3735:3 3736:1 3779:1 3786:1 3791:1 3803:1 3849:1 3891:1 3892:1 3929:1 3935:1 3964:1 3968:1 4002:1 4006:1 4014:1 4018:1 4019:1 4032:1 4037:1 4055:1 4066:1 4083:1 4102:1 4105:1 4130:2 4131:2 4152:1 4171:1 4183:1 4187:1 4189:1 4212:1 4214:2 4250:2 4252:3 4255:2 4260:1 4282:1 4291:1 4292:1 4303:1 4305:1 4310:1 4340:1 4363:1 4377:1 4402:1 4404:1 4405:1 4422:2 4425:1 4445:1 4454:1 4462:1 4463:1 4515:1 4537:1 4563:1 4580:1 4609:1 4625:1 4629:3 4657:1 4665:2 4669:1 4671:1 4685:1 4715:1 4718:1 4736:1 4748:4 4773:1 4781:1 4796:1 4832:1 4863:1 4873:1 4880:1 4889:1 4932:2 4935:1 4938:1 4954:1 4969:1 4970:1 5001:1 5012:1 5017:2 5026:3 5035:1 5054:2 5058:2 5074:1 5131:1 5162:2 5178:1 5186:1 5187:2 5206:1 5238:1 5240:1 5242:2 5247:2 5315:1 5318:1 5327:1 5336:1 5382:6 5418:1 5442:1 5447:1 5500:4 5520:2 5521:1 5526:1 5527:1 5529:1 5535:1 5537:1 5541:1 5542:1 5546:1 5548:2 5549:1 5551:1 5566:1 5574:1 5578:1 5646:1 5679:1 5690:1 5693:1 5697:2 5712:1 5713:1 5734:1 5757:2 5760:1 5767:1 5774:1 5788:1 5792:1 5805:2 5823:2 5829:1 5843:3 5896:1 5923:1 5924:1 5928:1 5941:4 5963:1 5967:1 5980:1 5983:1 5998:3 6015:1 6027:1 6031:1 6037:1 6038:1 6050:1 6051:1 6061:1 6063:1 6069:1 6085:3 6143:1 6171:1 6218:1 6232:1 6268:1 6273:1 6287:3 6310:1 6333:1 6350:1 6390:1 6394:1 6395:2 6397:1 6423:2 6440:1 6453:1 6479:1 6483:1 6488:1 6536:1 6547:1 6570:1 6579:1 6594:1 6628:2 6636:1 6656:1 6725:1 6742:1 6745:1 6749:1 6775:1 6779:1 6780:1 6825:3 6831:2 6850:1 6866:1 6920:1 6931:1 6945:1 6955:1 7021:1 7026:1 7035:1 7037:1 7044:1 7053:1 7055:1 7056:1 7058:1 7060:1 7064:2 7066:1 7071:3 7073:4 7113:1 7119:1 7122:1 7129:1 7130:1 7141:1 7152:1 7165:2 7167:1 7168:2 7184:1 7189:2 7220:2 7229:1 7231:2 7248:1 7308:1 7325:2 7328:1 7330:1 7331:3 7338:1 7365:1 7370:1 7389:1 7403:1 7406:1 7432:2 7453:1 7456:1 7463:1 7489:1 7526:1 7527:1 7535:1 7544:1 7610:2 7613:1 7615:1 7625:1 7628:1 7629:4 7679:1 7714:1 7732:1 7739:1 7746:1 7748:1 7758:2 7774:1 7785:1 7797:1 7805:1 7811:1 7824:1 7851:1 7882:4 7884:2 7887:2 7892:1 7923:2 7930:1 7931:1 7939:2 7960:1 7979:3 7991:1 8032:1 8044:1 8047:1 8059:1 8087:1 8099:1 8111:1 8133:1 8137:3 8152:1 8190:1 8219:2 8235:1 8253:1 8262:2 8288:1 8300:1 8305:1 8324:2 8327:1 8329:1 8335:2 8344:1 8347:1 8348:1 8360:1 8393:1 8408:1 8414:1 8422:1 8448:1 8457:1 8459:3 8461:2 8462:1 8489:1 8521:1 8551:6 8569:1 8571:1 8602:1 8607:2 8609:1 8620:17 8629:1 8641:2 8642:4 8669:1 8678:1 8689:2 8690:1 8697:1 8707:1 8737:1 8746:1 8761:1 8769:1 8785:2 8792:1 8817:1 8819:1 8833:1 8855:3 8860:1 8863:1 8876:1 8914:1 8921:2 8950:1 8957:1 8975:1 8979:1 8985:1 8995:1 9019:1 9025:1 9028:2 9039:1 9052:1 9074:1 9076:2 9082:3 9087:2 9088:1 9092:1 9110:3 9156:3 9157:10 9170:1 9171:1 9180:1 9207:1 9208:2 9214:1 9216:2 9222:1 9235:1 9243:2 9252:2 9253:1 9266:1 9282:1 9298:1 9333:1 9340:1 9353:1 9397:2 9402:1 9406:1 9419:1 9456:1 9493:1 9499:1 9525:1 9534:2 9549:1 9585:1 9593:1 9599:1 9605:3 9610:1 9611:1 9627:1 9651:1 9656:1 9691:1 9698:1 9711:1 9719:1 9748:1 9769:1 9777:2 9806:1 9824:2 9825:1 9826:6 9836:1 9845:1 9849:1 9853:1 9877:1 9896:1 9921:1 9926:1 9928:1 9943:1 9950:2 9992:4 10114:1 10164:1 10183:1 10193:1 10202:1 10226:1 10255:1 10258:1 10260:1 10269:2 10279:4 10306:1 10314:1 10326:1 10357:2 10362:1 10365:1 10377:1 10385:1 10390:2 10413:1 10472:2 10522:1 10542:1 10556:1 10572:2 10574:1 10593:1 10604:1 10606:1 10623:1 10629:1 10640:1 10643:1 10650:2 10655:1 10656:1 10686:1 10700:1 10719:2 10753:1 10771:1 10782:1 10783:1 10785:1 10791:1 10792:1 10795:1 10796:1 10797:1 10838:1 10874:1 10883:1 10888:1 10931:4 10947:1 10954:2 10980:1 10990:1 11020:1 11021:1 11027:1 11063:1 11070:1 11101:1 11114:1 11115:1 11122:1 11140:1 11159:3 11197:1 11213:2 11220:2 11274:2 11282:2 11293:1 11298:1 11310:1 11312:1 11313:1 11326:1 11333:1 11341:1 11342:1 11346:1 11373:7 11386:1 11390:1 11403:2 11423:1 11442:2 11443:1 11451:1 11482:3 11483:1 11486:1 11493:1 11536:1 11554:1 11567:1 11571:1 11579:1 11583:1 11584:1 11594:1 11600:1 11601:2 11608:3 11630:1 11689:1 11690:1 11701:1 11706:1 11712:1 11717:1 11737:1 11746:1 11769:1 11771:1 11808:1 11809:2 11810:1 11834:1 11850:6 11876:1 11888:1 11921:1 11926:5 11959:2 11960:2 11961:2 11977:1 11994:1 12009:1 12020:2 12035:1 12043:2 12099:1 12100:1 12102:1 12119:1 12134:1 12136:1 12149:1 12189:1 12205:1 12230:1 12242:1 12275:2 12300:2 12312:1 12316:1 12339:1 12341:1 12343:1 12349:1 12380:1 12408:1 12420:1 12440:1 12442:2 12444:1 12457:1 12458:2 12475:1 12476:1 12477:1 12486:1 12496:1 12497:2 12509:1 12510:2 12517:1 12536:1 12562:1 12563:1 12570:2 12574:1 12596:1 12623:1 12632:1 12654:1 12688:2 12705:1 12716:4 12722:1 12735:1 12744:1 12746:3 12756:1 12764:1 12776:1 12784:1 12822:1 12825:1 12843:1 12846:1 12860:1 12865:1 12888:1 12901:1 12917:1 12922:1 12933:1 12934:1 12960:1 12965:1 12997:1 13017:1 13041:1 13092:3 13121:1 13151:2 13164:1 13167:1 13173:3 13178:1 13180:1 13182:2 13186:1 13195:1 13205:1 13213:1 13234:1 13240:1 13253:1 13256:1 13265:3 13269:2 13297:3 13351:3 13405:1 13434:1 13502:2 13511:2 13513:3 13521:1 13546:1 13558:1 13575:1 13581:2 13602:1 13626:4 13648:1 13650:1 13654:5 13658:2 13674:1 13685:1 13688:1 13698:3 13714:1 13728:2 13740:1 13757:1 13765:1 13774:1 13778:2 13834:1 13844:3 13864:1 13873:2 13890:1 13901:1 13940:1 13954:1 13969:1 14011:1 14034:1 14036:1 14045:1 14067:1 14072:1 14117:1 14122:1 14129:1 14132:1 14157:1 14198:2 14206:1 14243:1 14266:1 14267:1 14275:1 14291:1 14302:1 14328:1 14329:4 14350:1 14353:1 14356:1 14371:2 14392:1 14472:1 14505:1 14520:1 14584:1 14601:1 14603:1 14623:1 14632:2 14759:1 14773:1 14783:1 14795:1 14807:1 14821:5 14841:1 14849:1 14850:1 14853:1 14858:1 14872:1 14887:6 14905:1 14910:1 14923:1 14938:1 14976:2 14978:4 14992:1 14994:2 14996:1 15000:1 15028:1 15039:2 15048:1 15054:2 15075:4 15081:1 15090:3 15131:1 15135:2 15139:1 15161:1 15183:1 15187:1 15218:1 15238:1 15243:3 15263:1 15281:1 15291:1 15314:1 15325:1 15346:1 15368:1 15373:1 15377:1 15384:1 15401:1 15411:1 15444:1 15450:1 15458:1 15477:1 15489:3 15496:2 15516:1 15583:1 15590:1 15596:1 15601:1 15647:1 15657:1 15663:1 15668:1 15669:1 15674:2 15681:1 15759:1 15784:1 15800:1 15802:1 15805:2 15817:2 15840:1 15853:3 15899:2 15948:1 15949:1 15958:1 15996:1 16011:1 16025:1 16030:1 16039:1 16087:2 16097:1 16098:1 16102:1 16111:1 16113:1 16131:1 16182:1 16209:1 16214:3 16228:1 16251:2 16252:1 16257:1 16272:1 16277:1 16287:1 16292:1 16313:1 16321:1 16336:1 16347:1 16352:2 16371:1 16384:1 16391:1 16411:1 16426:1 16460:1 16480:1 16487:1 16523:1 16528:1 16540:2 16548:8 16554:1 16601:1 16624:1 16681:1 16697:2 16701:1 16716:1 16739:1 16760:2 16766:1 16777:6 16818:1 16822:2 16824:1 16849:1 16866:1 16870:2 16897:1 16916:6 16917:1 16940:1 16941:1 17016:1 17054:2 17061:2 17070:1 17091:1 17093:1 17102:1 17111:1 17116:1 17117:1 17148:2 17207:2 17256:1 17282:1 17290:1 17297:1 17331:1 17337:1 17343:2 17354:2 17376:1 17388:1 17408:2 17461:1 17476:1 17483:1 17513:1 17520:1 17525:3 17530:1 17538:1 17544:1 17565:1 17568:1 17580:1 17583:1 17618:1 17624:3 17696:1 17700:1 17701:1 17716:2 17717:2 17733:1 17753:1 17757:1 17770:1 17772:1 17773:1 17778:1 17779:1 17787:1 17800:1 17804:4 17812:1 17843:1 17868:1 17871:1 17876:1 17877:2 17879:4 17899:1 17906:4 17921:1 17935:1 17948:1 17986:1 17993:1 18029:1 18032:1 18041:3 18054:1 18055:1 18071:2 18077:1 18089:1 18097:1 18098:1 18109:2 18121:1 18132:1 18147:1 18152:1 18156:3 18159:3 18164:1 18169:1 18182:1 18218:1 18223:1 18307:1 18334:1 18339:2 18345:1 18346:1 18355:1 18367:1 18376:1 18382:1 18397:1 18410:1 18424:2 18429:2 18436:1 18445:7 18450:1 18453:1 18493:1 18494:1 18509:1 18537:1 18556:1 18562:1 18573:1 18582:1 18624:1 18634:1 18643:1 18650:1 18677:1 18678:1 18709:1 18723:1 18738:2 18742:1 18753:1 18754:1 18767:1 18774:3 18829:3 18836:1 18880:3 18920:1 18922:1 18931:1 18937:1 18943:3 18944:1 18945:1 18970:1 18978:1 18994:2 19022:1 19030:1 19040:1 19041:1 19046:1 19058:1 19060:1 19067:1 19069:1 19095:1 19097:1 19120:1 19122:1 19154:1 19163:1 19224:1 19234:1 19288:2 19290:1 19292:1 19302:1 19372:1 19406:1 19417:1 19467:1 19469:1 19473:2 19477:1 19483:1 19485:1 19489:2 19490:1 19526:1 19553:3 19555:3 19614:1 19651:1 19657:1 19665:4 19677:1 19678:3 19698:1 19710:1 19711:1 19730:1 19732:1 19739:1 19757:1 19764:1 19777:1 19798:1 19802:1 19803:2 19807:1 19816:1 19837:1 19876:2 19884:1 19887:1 19900:1 19950:1 19970:1 19977:1 19980:1 20026:1 20034:2 20073:1 20074:1 20081:1 20111:1 20112:1 20126:1 20132:1 20152:2 20174:1 20201:1 20230:1 20306:1 20318:1 20333:1 20344:1 20352:1 20355:1 20358:1 20394:2 20401:1 20402:1 20403:1 20411:1 20480:2 20492:2 20522:1 20531:2 20551:1 20590:1 20605:1 20610:1 20613:3 20624:1 20634:2 20661:1 20708:1 20714:1 20753:1 20757:2432 20781:1 20832:1 20875:2 20886:1 20912:1 20941:1 20950:1 20963:1 20977:1 20978:1 20991:1 20996:1 20999:1 21000:1 21049:1 21073:1 21109:1 21111:1 21121:1 21133:1 21136:1 21154:1 21167:1 21190:1 21212:1 21224:1 21225:1 21230:1 21233:2 21259:1 21262:3 21266:1 21330:1 21332:1 21336:1 21337:1 21351:1 21371:1 21379:1 21389:1 21423:2 21437:1 21472:1 21514:1 21521:5 21551:1 21553:6 21558:1 21565:1 21587:2 21596:1 21617:1 21643:2 21649:1 21669:1 21688:1 21700:1 21710:1 21737:3 21778:1 21783:1 21806:2 21816:1 21831:1 21842:1 21873:1 21878:1 21911:1 21915:2 21974:1 21982:1 21988:1 22007:1 22042:1 22043:1 22049:1 22070:1 22105:1 22178:1 22182:2 22188:1 22204:1 22207:1 22230:1 22251:1 22252:3 22266:1 22277:1 22278:4 22299:3 22303:1 22305:1 22320:1 22328:1 22332:1 22361:1 22375:1 22415:1 22419:1 22445:3 22448:1 22460:1 22482:1 22493:1 22552:1 22655:3 22666:1 22712:1 22719:2 22722:1 22782:1 22784:1 22813:1 22818:2 22819:1 22824:1 22838:1 22848:1 22865:1 22867:2 22872:1 22894:4 22897:2 22901:1 22903:1 22909:1 22912:1 22960:1 22963:1 22986:1 22992:1 23006:1 23016:1 23022:1 23039:1 23042:1 23068:2 23083:3 23112:1 23114:1 23128:1 23136:1 23145:1 23157:4 23163:2 23173:1 23175:1 23183:1 23185:1 23192:1 23196:1 23198:4 23202:1 23213:1 23222:1 23264:1 23285:1 23287:2 23291:4 23302:1 23315:1 23320:1 23322:1 23337:1 23363:1 23415:1 23421:1 23426:1 23427:1 23430:1 23433:2 23435:1 23438:1 23453:1 23454:1 23456:2 23472:1 23473:1 23478:2 23487:1 23541:1 23553:1 23555:1 23568:1 23570:1 23572:1 23574:1 23600:4 23603:1 23618:1 23661:1 23700:1 23701:1 23702:1 23704:1 23725:1 23730:1 23734:1 23741:2 23746:1 23754:1 23774:1 23793:1 23834:2 23839:3 23853:1 23907:1 23926:1 23927:2 23930:1 23938:1 23945:2 23951:1 23958:2 23962:2 23973:1 23976:2 24000:1 24012:1 24026:1 24136:2 24139:2 24162:2 24174:1 24217:1 24224:1 24236:1 24280:1 24287:1 24300:2 24305:3 24316:1 24322:2 24333:1 24355:1 24384:1 24391:1 24404:1 24414:1 24443:1 24467:2 24475:1 24507:1 24524:1 24525:1 24557:1 24559:1 24563:1 24576:1 24590:1 24596:1 24610:1 24633:1 24662:1 24665:1 24700:1 24701:1 24718:1 24742:1 24755:3 24770:3 24776:1 24789:1 24793:6 24800:1 24805:1 24812:1 24820:1 24839:1 24858:1 24868:1 24870:1 24896:1 24898:1 24965:1 24996:1 25007:1 25046:1 25059:2 25069:2 25121:1 25154:1 25167:1 25259:1 25275:1 25356:1 25364:1 25366:1 25383:1 25442:1 25460:1 25466:1 25480:1 25481:1 25483:1 25485:1 25504:1 25559:1 25564:1 25583:1 25588:1 25591:1 25593:1 25605:1 25607:1 25615:1 25634:1 25636:1 25665:1 25668:1 25702:1 25718:2 25747:1 25752:1 25770:1 25777:1 25784:3 25796:1 25803:1 25811:2 25812:1 25821:1 25860:1 25862:2 25873:1 25876:2 25877:1 25883:1 25896:1 25898:1 25902:1 25905:1 25914:1 25935:1 25965:2 25969:1 25991:2 26018:1 26038:1 26039:1 26054:1 26068:1 26113:1 26123:1 26128:1 26135:1 26155:2 26157:1 26166:1 26173:1 26211:2 26219:2 26256:1 26271:1 26273:1 26276:2 26277:1 26320:1 26333:1 26339:2 26370:1 26371:1 26411:1 26435:1 26460:2 26474:1 26534:1 26574:1 26625:2 26639:1 26688:1 26700:1 26713:1 26716:1 26729:1 26735:1 26740:1 26758:1 26813:1 26828:3 26838:1 26845:7 26852:1 26853:1 26861:1 26863:1 26887:1 26912:1 26920:1 26921:1 26951:1 26955:1 26964:1 26977:1 26994:1 26998:3 27000:3 27007:1 27020:1 27037:2 27040:2 27047:1 27048:1 27075:1 27093:1 27112:1 27135:1 27140:1 27177:1 27190:2 27207:1 27209:3 27213:3 27217:1 27224:1 27241:1 27246:1 27252:2 27284:1 27292:1 27328:2 27344:1 27412:1 27422:2 27457:3 27462:3 27480:1 27487:1 27524:1 27543:1 27563:2 27565:1 27590:1 27594:1 27600:1 27628:1 27640:1 27663:1 27678:1 27689:1 27741:1 27775:1 27799:5 27803:3 27835:1 27845:1 27853:1 27874:1 27875:1 27878:2 27879:1 27889:1 27903:1 27904:1 27943:1 27964:2 27965:1 27975:1 27978:2 27979:1 27988:1 27992:1 27994:1 28006:1 28012:1 28019:1 28037:1 28061:2 28072:3 28084:2 28108:1 28132:2 28139:1 28174:1 28175:1 28207:1 28208:1 28210:1 28224:1 28228:1 28229:1 28236:1 28262:1 28344:2 28374:2 28375:1 28384:1 28394:1 28397:1 28412:1 28424:1 28442:1 28488:1 28491:2 28507:1 28509:1 28511:1 28526:1 28538:1 28540:1 28551:1 28562:1 28571:1 28581:1 28587:1 28591:1 28604:1 28620:1 28635:1 28638:2 28670:2 28674:1 28689:1 28720:3 28739:1 28745:1 28746:1 28766:1 28781:1 28792:1 28810:4 28827:2 28841:1 28848:4 28854:1 28888:1 28946:1 28992:1 28994:1 29027:1 29042:1 29049:1 29051:1 29054:1 29059:1 29067:1 29095:1 29104:1 29115:1 29125:1 29134:1 29139:4 29141:1 29145:1 29146:1 29176:1 29198:1 29251:1 29254:1 29273:2 29289:2 29296:2 29303:1 29312:1 29334:1 29356:2 29392:2 29413:1 29453:1 29455:2 29462:1 29463:1 29465:2 29494:1 29509:1 29600:1 29628:1 29633:1 29638:1 29640:1 29647:2 29678:1 29681:2 29724:1 29727:2 29732:1 29740:1 29744:1 29745:1 29746:2 29760:1 29763:1 29770:2 29792:1 29822:1 29853:1 29878:1 29894:1 29899:2 29900:1 29905:1 29942:2 29947:1 29993:1 30007:1 30012:2 30016:2 30021:1 30044:1 30052:1 30053:1 30083:1 30093:1 30095:1 30096:1 30106:1 30143:1 30156:1 30160:1 30163:2 30169:1 30178:1 30186:2 30202:1 30203:1 30209:1 30210:2 30253:1 30262:1 30266:2 30269:1 30275:1 30306:1 30309:1 30318:1 30322:1 30333:1 30335:1 30345:2 30355:1 30359:1 30390:2 30392:1 30413:1 30475:1 30488:2 30505:1 30518:1 30533:2 30557:1 30559:1 30564:2 30571:1 30590:1 30632:1 30642:1 30663:1 30675:2 30689:1 30692:1 30727:1 30732:1 30799:1 30817:1 30820:1 30836:8 30837:1 30841:1 30860:1 30862:1 30879:5 30896:2 30906:1 30919:1 30944:1 30985:1 31017:3 31020:1 31025:1 31034:1 31036:1 31057:6 31063:1 31075:1 31080:1 31095:1 31112:1 31116:1 31123:2 31126:1 31144:1 31156:2 31179:1 31188:2 31191:1 31209:1 31235:1 31256:1 31281:2 31286:1 31330:1 31332:1 31335:1 31340:1 31342:1 31348:1 31360:1 31379:1 31398:1 31401:1 31402:1 31449:3 31452:1 31469:1 31476:1 31567:2 31583:1 31593:3 31603:1 31606:1 31624:2 31628:2 31635:1 31653:1 31659:1 31662:1 31688:1 31716:1 31725:1 31735:1 31739:1 31819:1 31837:2 31849:1 31880:1 31896:2 31910:1 31937:1 31950:1 31959:1 31984:1 31994:1 32016:1 32066:1 32080:1 32105:1 32109:1 32120:1 32138:1 32163:1 32214:1 32217:1 32221:1 32233:1 32235:1 32243:3 32244:1 32245:3 32246:1 32248:1 32250:2 32254:1 32257:1 32258:1 32267:1 32278:1 32298:1 32303:1 32306:1 32320:1 32324:1 32333:2 32337:1 32343:1 32378:1 32382:1
15 43:1 71:3 91:1 104:2 122:1 166:1 167:2 187:1 189:2 196:1 200:1 224:1 225:1 243:1 244:1 267:1 285:3 335:1 337:2 356:1 370:1 388:1 406:2 409:2 444:1 463:1 468:1 503:3 517:1 529:1 541:2 586:1 612:1 615:1 616:1 622:1 623:1 645:2 649:1 655:2 661:1 666:1 685:2 696:1 697:2 699:2 704:1 747:1 768:3 791:1 795:1 796:1 813:3 829:1 892:1 898:1 928:2 935:1 956:1 958:1 959:1 961:1 963:2 968:1 972:2 980:1 981:1 985:1 988:1 1018:1 1020:2 1023:1 1031:1 1039:1 1052:2 1061:1 1065:1 1072:1 1103:1 1114:2 1119:1 1149:2 1150:1 1154:1 1167:1 1172:1 1180:1 1205:2 1210:1 1235:1 1255:1 1259:2 1277:1 1288:2 1297:1 1328:3 1337:1 1343:1 1367:2 1374:2 1385:1 1396:1 1407:2 1408:1 1429:1 1431:1 1448:1 1458:1 1465:1 1472:1 1483:1 1484:1 1500:1 1513:1 1562:1 1577:2 1586:1 1592:4 1629:1 1632:1 1635:1 1641:2 1642:2 1650:1 1651:1 1656:4 1686:1 1699:1 1724:1 1725:1 1732:1 1733:4 1736:3 1744:2 1749:2 1777:1 1778:1 1790:1 1810:2 1813:2 1821:2 1822:2 1824:1 1827:1 1842:2 1843:3 1870:1 1874:1 1897:1 1915:1 1948:2 1952:2 1956:1 1973:1 1981:2 2007:1 2008:1 2013:1 2032:1 2035:1 2037:1 2040:1 2042:1 2043:2 2047:1 2050:2 2052:1 2088:2 2091:1 2156:1 2159:4 2171:1 2174:2 2177:1 2191:1 2201:1 2254:1 2327:1 2334:1 2359:1 2364:1 2386:2 2426:1 2449:1 2451:1 2462:2 2463:1 2495:1 2501:1 2503:2 2505:3 2509:1 2516:2 2520:2 2522:1 2524:1 2525:2 2528:2 2531:1 2532:3 2533:1 2547:1 2559:1 2561:1 2607:2 2636:1 2674:1 2677:2 2678:1 2707:1 2711:1 2720:2 2804:1 2814:1 2833:1 2844:1 2925:1 2940:2 2948:1 2953:1 2977:1 2982:1 2984:1 2991:1 3028:2 3038:1 3091:1 3103:2 3109:1 3138:2 3145:1 3155:1 3161:3 3169:3 3170:1 3178:1 3179:1 3198:2 3212:1 3216:4 3228:1 3236:1 3238:1 3240:1 3242:1 3247:1 3275:1 3280:1 3313:1 3321:1 3333:1 3356:2 3372:1 3400:1 3411:1 3432:1 3443:1 3450:1 3483:1 3494:1 3548:2 3562:1 3570:1 3590:1 3600:1 3610:1 3646:3 3658:1 3671:1 3676:1 3699:1 3701:1 3705:1 3708:1 3735:3 3736:1 3779:1 3786:1 3791:1 3803:1 3849:1 3891:1 3892:1 3929:1 3935:1 3964:2 3968:1 4002:1 4006:1 4014:1 4018:1 4019:1 4032:2 4037:1 4055:1 4066:1 4083:1 4102:1 4105:1 4130:2 4131:2 4151:1 4152:1 4171:1 4183:1 4187:1 4189:1 4212:1 4214:2 4250:2 4252:3 4255:2 4260:1 4282:1 4291:1 4292:1 4303:1 4305:1 4310:1 4340:1 4363:1 4374:1 4377:1 4402:1 4404:1 4405:1 4422:2 4425:1 4445:1 4454:1 4462:1 4463:1 4483:1 4515:1 4537:1 4563:1 4580:1 4609:1 4625:1 4629:3 4657:1 4665:2 4669:1 4671:1 4685:1 4715:1 4718:1 4736:1 4748:4 4773:1 4781:1 4796:1 4832:1 4863:1 4873:1 4880:1 4889:1 4932:2 4935:1 4938:1 4954:1 4967:1 4969:1 4970:1 5001:1 5012:1 5017:2 5026:3 5035:1 5054:2 5058:2 5074:1 5131:1 5151:1 5162:2 5178:1 5186:1 5187:2 5206:1 5238:1 5240:1 5242:2 5247:2 5315:1 5318:1 5327:1 5336:1 5382:6 5418:1 5442:1 5447:1 5500:4 5520:2 5521:1 5526:1 5527:1 5529:1 5535:2 5537:1 5541:1 5542:1 5546:1 5548:2 5549:1 5551:1 5566:1 5574:1 5578:1 5646:2 5679:1 5690:1 5693:1 5697:2 5712:1 5713:1 5734:1 5757:2 5760:2 5767:1 5774:1 5788:1 5792:1 5805:2 5807:1 5823:3 5829:1 5843:3 5861:1 5896:1 5923:1 5924:1 5928:1 5941:4 5963:1 5967:1 5980:1 5983:2 5998:3 6015:1 6027:1 6031:1 6037:1 6038:1 6050:1 6051:1 6061:1 6063:1 6069:1 6085:3 6106:1 6126:1 6143:1 6171:1 6218:1 6232:1 6268:1 6273:1 6287:3 6310:1 6333:1 6350:1 6382:1 6390:1 6394:1 6395:2 6397:1 6423:2 6440:1 6453:1 6479:1 6483:1 6488:1 6536:1 6547:1 6570:1 6579:1 6594:1 6628:2 6636:1 6656:1 6725:1 6742:3 6745:1 6749:1 6775:1 6779:1 6780:1 6825:3 6831:3 6850:1 6866:1 6920:1 6931:2 6945:1 6955:1 7021:1 7026:1 7035:1 7037:1 7044:1 7053:2 7055:1 7056:2 7058:1 7060:1 7064:2 7066:1 7071:3 7073:4 7113:1 7119:1 7122:1 7129:1 7130:1 7141:1 7152:1 7165:2 7167:1 7168:2 7184:1 7189:2 7220:2 7229:1 7231:2 7248:1 7308:1 7325:2 7328:1 7330:1 7331:4 7332:1 7338:1 7365:2 7370:1 7389:1 7403:1 7406:1 7432:2 7453:1 7456:1 7463:1 7489:1 7526:1 7527:1 7535:1 7544:1 7610:2 7613:1 7615:1 7625:1 7628:1 7629:4 7679:1 7714:1 7732:1 7739:1 7746:1 7748:1 7758:2 7774:1 7785:1 7797:1 7805:1 7811:2 7824:1 7851:1 7882:4 7884:2 7887:2 7892:1 7923:2 7927:1 7930:1 7931:1 7939:2 7960:1 7979:3 7991:1 8032:1 8044:1 8047:1 8059:1 8087:1 8099:1 8111:1 8133:1 8137:3 8152:1 8190:1 8219:2 8235:1 8253:1 8262:3 8288:1 8300:1 8305:1 8324:2 8327:1 8329:1 8335:2 8344:1 8347:1 8348:1 8360:1 8368:1 8393:1 8395:1 8408:1 8414:1 8422:1 8448:1 8457:1 8459:3 8461:2 8462:1 8489:3 8521:1 8549:1 8551:6 8569:1 8571:1 8602:1 8607:2 8609:1 8620:18 8629:1 8641:2 8642:4 8669:1 8678:1 8689:2 8690:1 8697:1 8707:1 8737:1 8746:1 8761:1 8769:1 8785:2 8792:1 8817:1 8819:1 8833:1 8855:3 8860:1 8863:1 8876:1 8902:1 8914:1 8921:3 8950:1 8957:1 8975:2 8979:1 8985:1 8995:1 9019:1 9025:1 9028:2 9039:1 9052:1 9074:1 9076:2 9082:3 9087:2 9088:1 9092:1 9110:4 9127:1 9156:3 9157:10 9170:1 9171:1 9180:1 9207:1 9208:2 9214:1 9216:2 9222:1 9235:1 9243:2 9252:2 9253:1 9266:1 9282:1 9298:1 9333:1 9340:1 9353:1 9397:2 9402:1 9406:1 9419:1 9456:1 9493:1 9499:1 9525:1 9534:2 9538:1 9549:1 9585:1 9593:1 9599:1 9605:3 9610:1 9611:1 9626:1 9627:1 9651:1 9656:1 9691:2 9698:1 9711:1 9719:1 9748:1 9769:1 9777:2 9806:1 9824:2 9825:1 9826:7 9836:1 9845:1 9849:1 9853:1 9865:1 9877:1 9896:1 9921:1 9926:1 9928:1 9943:1 9950:2 9992:5 10114:1 10164:1 10183:1 10193:2 10202:1 10208:1 10226:1 10239:1 10255:1 10258:1 10260:1 10269:2 10279:4 10306:1 10314:1 10326:1 10357:2 10362:1 10365:1 10377:1 10385:1 10390:2 10413:1 10415:1 10472:2 10522:1 10542:1 10556:1 10572:2 10574:1 10593:1 10604:1 10606:1 10623:1 10629:1 10640:1 10643:1 10650:2 10655:1 10656:1 10686:1 10700:2 10719:2 10753:1 10771:1 10782:1 10783:1 10785:1 10791:1 10792:1 10795:1 10796:1 10797:1 10838:1 10874:1 10883:1 10888:1 10931:4 10947:1 10954:2 10980:1 10990:1 11020:1 11021:1 11027:1 11039:1 11063:1 11070:1 11101:1 11114:1 11115:1 11122:1 11140:1 11158:1 11159:3 11197:1 11213:2 11220:2 11274:2 11278:1 11282:2 11293:1 11298:1 11310:1 11312:1 11313:1 11326:1 11333:1 11341:1 11342:1 11346:1 11373:7 11386:2 11390:1 11401:1 11403:3 11423:1 11442:3 11443:1 11451:1 11482:3 11483:1 11486:1 11493:1 11536:1 11554:1 11567:1 11571:1 11579:1 11583:1 11584:1 11594:1 11600:1 11601:2 11608:3 11630:1 11689:1 11690:1 11701:1 11706:1 11712:1 11717:1 11737:1 11746:3 11769:1 11771:1 11808:1 11809:2 11810:1 11834:1 11850:6 11876:2 11888:1 11921:1 11926:5 11959:2 11960:2 11961:2 11977:1 11994:1 12009:1 12020:2 12035:1 12043:2 12097:1 12099:1 12100:1 12102:1 12119:1 12134:1 12136:1 12149:1 12189:1 12205:1 12230:1 12242:1 12275:2 12300:2 12312:1 12316:1 12339:1 12341:1 12343:1 12349:1 12380:1 12408:1 12418:1 12420:1 12440:1 12442:2 12444:1 12457:1 12458:2 12475:1 12476:1 12477:1 12486:1 12496:1 12497:2 12509:1 12510:2 12517:1 12536:1 12562:1 12563:1 12570:2 12574:1 12596:1 12623:1 12632:1 12654:1 12688:2 12705:1 12716:4 12722:1 12735:1 12744:1 12746:3 12756:1 12764:1 12776:1 12784:1 12822:1 12825:1 12843:1 12846:1 12860:1 12865:1 12888:1 12901:1 12917:1 12922:1 12933:1 12934:1 12960:1 12965:1 12973:1 12997:1 13017:1 13041:1 13092:3 13121:1 13151:2 13164:1 13167:1 13173:3 13178:1 13180:1 13182:2 13186:1 13195:1 13205:1 13213:1 13234:1 13239:1 13240:1 13253:1 13256:1 13265:3 13269:2 13297:3 13325:1 13351:3 13405:1 13434:1 13502:2 13511:2 13513:3 13516:1 13521:1 13546:1 13558:1 13575:2 13581:3 13602:1 13626:4 13627:1 13648:1 13650:1 13654:5 13658:2 13674:1 13685:1 13688:1 13698:3 13714:1 13728:2 13740:1 13757:1 13765:1 13774:1 13778:2 13834:2 13844:3 13854:1 13864:1 13873:2 13890:1 13901:1 13914:1 13940:1 13954:1 13959:1 13969:1 14011:1 14034:1 14036:1 14045:1 14067:1 14072:1 14101:1 14117:1 14120:1 14122:1 14129:2 14132:1 14157:1 14198:2 14206:1 14243:1 14266:1 14267:1 14275:1 14291:1 14302:1 14328:1 14329:4 14350:1 14353:1 14356:1 14360:1 14371:2 14392:1 14472:1 14505:1 14520:1 14584:1 14601:1 14603:1 14623:1 14632:2 14682:1 14759:1 14773:1 14783:1 14795:1 14807:1 14821:7 14841:1 14849:1 14850:1 14853:1 14858:1 14872:1 14887:6 14905:1 14910:1 14921:1 14923:1 14938:1 14976:2 14978:5 14992:1 14994:2 14996:1 15000:1 15025:1 15028:1 15039:2 15048:1 15054:2 15075:4 15081:1 15090:3 15131:1 15135:2 15139:2 15150:1 15161:1 15170:1 15183:1 15187:1 15218:1 15238:1 15243:3 15263:1 15281:1 15291:1 15314:1 15325:1 15346:1 15368:1 15373:1 15377:1 15384:1 15401:1 15411:1 15444:1 15450:1 15458:1 15477:1 15489:3 15496:2 15516:1 15583:1 15590:1 15596:1 15601:1 15647:1 15657:1 15663:1 15668:1 15669:1 15674:2 15681:1 15699:1 15702:1 15759:1 15784:1 15800:1 15802:1 15805:2 15817:2 15840:1 15853:3 15880:1 15899:2 15948:1 15949:1 15958:1 15996:1 16011:1 16025:1 16030:1 16039:1 16087:2 16097:1 16098:1 16102:1 16111:1 16113:1 16131:1 16182:1 16208:1 16209:1 16214:3 16227:1 16228:1 16251:2 16252:1 16257:1 16272:1 16277:1 16287:1 16292:1 16313:1 16321:1 16336:1 16347:1 16352:3 16371:1 16384:1 16391:1 16411:1 16426:1 16460:1 16480:1 16487:1 16523:4 16528:2 16540:2 16544:1 16548:8 16554:1 16601:1 16624:1 16681:1 16697:2 16701:1 16716:1 16739:1 16760:3 16766:1 16777:6 16818:1 16822:2 16824:1 16849:2 16866:1 16870:2 16897:3 16916:6 16917:1 16940:1 16941:1 17016:1 17054:2 17061:2 17070:1 17091:1 17093:1 17102:1 17111:1 17116:1 17117:1 17148:2 17192:1 17207:2 17218:1 17256:1 17282:1 17290:1 17297:1 17331:1 17337:1 17343:2 17354:2 17376:1 17388:1 17408:2 17461:1 17476:1 17483:1 17513:1 17520:1 17525:3 17530:1 17538:1 17544:1 17565:1 17568:1 17580:1 17583:2 17618:1 17624:3 17696:1 17700:1 17701:1 17716:2 17717:2 17733:3 17753:1 17757:1 17770:1 17772:1 17773:1 17774:1 17778:2 17779:1 17787:1 17800:1 17804:4 17812:1 17843:1 17868:1 17871:1 17876:1 17877:2 17879:4 17899:1 17906:4 17921:1 17935:1 17947:1 17948:1 17986:1 17988:1 17993:1 17997:1 18029:1 18032:1 18041:3 18054:1 18055:1 18071:3 18077:1 18089:1 18097:1 18098:1 18109:2 18121:1 18132:1 18147:1 18152:1 18156:3 18159:3 18164:1 18169:1 18182:1 18218:1 18223:1 18307:1 18334:1 18339:2 18345:1 18346:1 18355:1 18367:1 18376:1 18382:1 18397:1 18410:1 18424:2 18429:2 18436:1 18445:7 18450:1 18453:1 18493:1 18494:1 18509:1 18537:1 18556:1 18562:1 18573:1 18582:1 18624:1 18634:1 18643:1 18650:1 18677:1 18678:1 18709:1 18723:1 18729:1 18738:2 18742:1 18753:1 18754:1 18767:1 18774:3 18829:3 18836:1 18880:3 18920:1 18922:1 18931:1 18937:1 18943:3 18944:1 18945:1 18970:1 18978:1 18994:2 19022:1 19030:1 19040:1 19041:1 19046:1 19058:1 19060:1 19067:1 19069:1 19095:1 19097:1 19120:1 19121:1 19122:1 19154:1 19163:1 19224:1 19234:1 19288:2 19290:1 19292:1 19302:1 19372:1 19406:1 19417:1 19467:1 19469:1 19473:2 19477:1 19483:1 19485:1 19489:2 19490:1 19526:1 19553:3 19555:3 19614:1 19651:1 19657:2 19665:4 19677:1 19678:3 19698:1 19710:1 19711:1 19722:1 19730:1 19732:1 19739:1 19757:1 19764:1 19777:1 19798:1 19802:1 19803:4 19807:1 19816:1 19837:1 19876:2 19884:1 19887:1 19900:1 19950:1 19970:1 19977:1 19980:1 20026:1 20034:2 20073:1 20074:1 20081:1 20111:1 20112:1 20126:1 20132:1 20152:2 20174:1 20201:1 20230:1 20306:1 20318:1 20333:1 20344:1 20352:1 20355:1 20358:1 20394:2 20401:1 20402:1 20403:1 20411:1 20413:1 20480:2 20492:2 20522:1 20531:2 20551:1 20590:1 20605:1 20610:1 20613:3 20624:1 20634:2 20661:1 20708:1 20714:1 20735:1 20753:1 20757:2523 20781:1 20832:1 20875:2 20886:1 20912:1 20941:1 20950:1 20951:1 20963:1 20977:1 20978:1 20991:1 20996:1 20999:1 21000:1 21013:1 21049:1 21073:1 21109:1 21111:1 21121:1 21133:1 21136:1 21154:1 21167:1 21190:1 21212:1 21224:1 21225:1 21230:1 21233:2 21259:1 21262:3 21266:1 21330:1 21332:1 21336:1 21337:1 21351:1 21371:1 21379:1 21389:1 21423:2 21437:1 21455:1 21472:1 21514:1 21521:6 21551:1 21553:6 21558:1 21565:1 21587:2 21596:1 21617:1 21643:2 21649:1 21657:1 21669:1 21688:1 21700:1 21710:1 21737:3 21778:1 21783:1 21806:2 21816:1 21831:1 21842:1 21873:1 21878:1 21911:1 21915:2 21974:1 21982:1 21988:1 22007:1 22042:1 22043:1 22049:1 22056:1 22070:1 22105:1 22170:1 22178:1 22182:2 22188:1 22204:1 22207:1 22230:1 22251:1 22252:3 22266:1 22276:1 22277:1 22278:5 22299:3 22303:1 22305:1 22320:1 22328:1 22331:1 22332:1 22361:1 22375:1 22377:1 22415:2 22419:1 22445:3 22448:1 22460:1 22482:1 22493:1 22552:1 22655:3 22666:1 22683:1 22712:1 22719:2 22722:1 22782:1 22784:1 22813:1 22818:2 22819:1 22824:1 22838:1 22848:1 22865:1 22867:2 22872:1 22894:4 22897:2 22901:1 22903:1 22909:1 22912:1 22949:1 22960:1 22963:1 22968:1 22986:1 22992:1 23006:1 23016:1 23022:1 23039:1 23042:1 23068:2 23083:3 23112:1 23114:1 23128:1 23136:1 23145:1 23157:4 23163:2 23173:1 23175:1 23183:1 23185:1 23192:1 23196:1 23198:4 23202:1 23213:1 23222:1 23264:1 23285:1 23287:2 23291:4 23302:1 23315:1 23320:1 23322:1 23337:1 23363:1 23415:1 23421:1 23426:1 23427:1 23429:1 23430:1 23433:2 23435:1 23438:1 23453:1 23454:1 23456:2 23472:1 23473:1 23478:2 23487:1 23541:2 23553:1 23555:1 23568:1 23570:1 23572:1 23574:1 23600:4 23603:1 23605:1 23618:1 23661:1 23700:1 23701:1 23702:2 23704:1 23725:1 23730:1 23734:1 23741:3 23746:1 23754:1 23774:1 23793:1 23834:2 23839:3 23853:1 23907:1 23926:1 23927:2 23930:1 23938:1 23945:2 23951:1 23958:2 23962:2 23973:1 23976:2 24000:1 24012:1 24026:1 24136:2 24139:2 24162:2 24173:1 24174:1 24217:1 24224:1 24236:1 24280:1 24287:1 24300:2 24305:3 24316:1 24322:2 24333:1 24355:2 24384:1 24391:2 24404:1 24414:1 24443:1 24467:2 24475:1 24507:1 24524:1 24525:1 24557:1 24559:1 24563:1 24575:1 24576:1 24590:1 24596:1 24610:1 24614:1 24633:1 24662:1 24665:1 24700:1 24701:1 24702:1 24718:1 24742:1 24755:3 24770:3 24776:1 24789:1 24793:8 24797:1 24800:1 24805:1 24812:1 24819:1 24820:1 24839:1 24854:1 24858:1 24868:1 24870:1 24875:1 24896:1 24898:1 24931:1 24965:1 24996:1 25007:1 25046:1 25059:2 25069:2 25121:1 25133:1 25154:1 25167:1 25188:1 25259:1 25275:1 25356:1 25364:1 25366:1 25383:1 25442:1 25460:1 25466:1 25480:1 25481:1 25483:1 25485:1 25504:1 25559:1 25564:1 25583:1 25588:1 25591:1 25593:1 25605:1 25607:1 25615:1 25625:1 25634:1 25636:1 25665:1 25668:1 25702:1 25718:2 25747:1 25750:1 25752:1 25770:1 25777:1 25784:3 25796:1 25803:1 25811:2 25812:1 25814:1 25821:1 25860:1 25862:2 25873:1 25876:2 25877:1 25883:1 25896:1 25898:1 25902:1 25905:1 25914:1 25935:1 25965:2 25969:1 25991:2 26018:1 26038:1 26039:1 26054:1 26068:1 26113:1 26123:1 26128:1 26135:1 26155:3 26157:1 26166:1 26173:1 26195:1 26211:2 26219:2 26256:1 26271:1 26273:1 26276:2 26277:1 26320:1 26333:1 26339:2 26370:1 26371:1 26411:1 26435:1 26460:2 26474:1 26534:1 26574:1 26623:1 26625:2 26639:1 26688:1 26700:1 26713:1 26716:1 26729:1 26735:1 26740:1 26758:1 26813:1 26828:3 26838:1 26845:8 26852:1 26853:1 26861:1 26863:1 26887:1 26912:2 26920:1 26921:1 26951:1 26955:1 26964:1 26977:1 26994:1 26998:3 27000:3 27007:1 27020:1 27037:2 27040:2 27047:1 27048:1 27075:1 27093:1 27112:1 27135:1 27140:1 27177:1 27190:2 27207:2 27209:3 27213:3 27217:1 27224:1 27241:1 27246:1 27252:2 27284:1 27292:1 27328:2 27344:1 27412:1 27415:1 27422:2 27457:3 27462:3 27470:1 27480:1 27487:1 27524:1 27543:1 27563:2 27565:1 27590:1 27594:1 27600:1 27628:1 27640:1 27663:1 27678:1 27689:2 27717:1 27741:1 27775:1 27799:5 27803:3 27804:1 27835:1 27845:1 27853:1 27874:1 27875:1 27878:2 27879:1 27889:1 27903:1 27904:1 27943:1 27964:2 27965:1 27975:1 27978:2 27979:1 27988:1 27992:1 27994:1 28006:1 28012:2 28019:1 28037:1 28061:2 28062:1 28072:3 28084:2 28086:1 28097:1 28108:1 28132:2 28139:1 28174:1 28175:1 28207:1 28208:1 28210:1 28224:1 28228:1 28229:1 28236:1 28262:1 28275:1 28344:2 28374:2 28375:1 28384:1 28394:1 28397:1 28412:1 28424:1 28442:1 28488:1 28491:2 28507:1 28509:1 28511:1 28526:1 28538:1 28540:1 28551:1 28562:1 28571:1 28581:1 28587:1 28591:1 28593:1 28604:1 28620:1 28635:1 28638:2 28670:2 28674:1 28689:1 28706:1 28720:4 28739:1 28745:1 28746:1 28766:1 28781:1 28792:1 28810:4 28827:2 28841:1 28848:4 28854:1 28887:1 28888:1 28946:1 28992:1 28994:1 29027:1 29042:1 29049:1 29051:1 29054:1 29059:1 29067:1 29095:1 29104:1 29115:1 29125:1 29126:1 29134:1 29139:4 29141:1 29145:1 29146:1 29176:1 29198:1 29251:1 29254:1 29273:2 29289:2 29296:2 29303:1 29312:1 29334:1 29356:2 29392:2 29413:1 29453:1 29455:2 29462:1 29463:1 29465:2 29494:1 29509:1 29600:1 29628:1 29633:1 29638:1 29640:1 29647:2 29678:1 29681:2 29724:1 29727:2 29732:1 29740:1 29744:1 29745:1 29746:2 29759:1 29760:2 29763:1 29770:2 29792:1 29822:1 29853:1 29878:1 29894:2 29899:2 29900:1 29905:1 29942:2 29947:1 29993:1 30007:1 30012:2 30016:2 30021:1 30044:2 30052:1 30053:1 30083:1 30092:1 30093:1 30095:1 30096:1 30106:1 30143:1 30156:1 30160:1 30163:2 30169:1 30178:1 30186:2 30202:1 30203:1 30209:1 30210:2 30253:1 30262:1 30266:2 30269:1 30275:1 30306:1 30309:1 30318:1 30322:1 30323:1 30333:1 30335:1 30345:2 30355:1 30359:1 30390:2 30392:1 30413:1 30475:1 30488:2 30505:1 30518:1 30533:2 30557:1 30559:1 30564:2 30571:1 30590:1 30632:1 30642:1 30663:1 30675:2 30689:1 30692:1 30723:1 30727:1 30732:1 30787:1 30799:1 30817:1 30820:1 30836:8 30837:1 30841:1 30860:1 30862:1 30879:5 30896:2 30906:1 30919:1 30944:1 30985:1 31017:4 31020:1 31025:1 31034:1 31036:1 31057:6 31063:1 31075:1 31080:1 31095:1 31112:1 31116:1 31123:3 31126:1 31144:1 31156:2 31179:1 31188:2 31191:1 31209:1 31235:1 31256:1 31281:2 31286:1 31330:1 31332:1 31335:1 31340:1 31342:1 31348:1 31360:1 31379:1 31398:1 31401:1 31402:1 31449:3 31452:1 31469:1 31476:1 31478:1 31567:2 31583:1 31593:3 31603:1 31606:1 31624:2 31628:2 31635:1 31653:1 31659:1 31662:1 31681:1 31688:1 31716:1 31725:1 31735:1 31739:1 31807:1 31819:1 31837:2 31849:1 31880:1 31896:2 31910:1 31937:1 31950:1 31959:1 31984:1 31994:1 32016:1 32044:1 32066:1 32080:1 32105:1 32109:1 32120:1 32138:1 32163:1 32214:1 32217:1 32221:1 32233:1 32235:1 32243:3 32244:1 32245:3 32246:1 32248:1 32250:2 32254:1 32257:1 32258:1 32261:1 32267:1 32278:1 32298:2 32303:1 32306:1 32320:1 32324:1 32333:2 32337:1 32343:1 32378:1 32382:1
15 6:1 43:1 71:3 91:1 104:2 122:1 166:1 167:3 187:1 189:2 196:1 200:1 224:1 225:1 243:1 244:1 267:1 285:3 289:1 335:1 337:2 356:1 370:1 382:1 388:1 406:2 409:2 443:1 444:1 463:1 468:1 503:3 517:1 529:1 541:2 586:1 612:1 615:1 616:1 622:1 623:1 645:2 649:1 655:2 661:1 666:1 685:3 696:1 697:2 699:2 704:1 747:1 768:3 791:1 795:1 796:1 813:4 829:1 892:1 898:1 928:2 935:1 956:1 958:1 959:1 961:1 963:2 968:1 972:2 980:1 981:1 985:1 988:1 1018:1 1020:2 1023:1 1031:1 1039:1 1052:2 1061:1 1065:1 1072:1 1103:1 1114:2 1119:3 1149:2 1150:1 1154:2 1167:1 1172:1 1180:1 1205:2 1210:1 1235:1 1255:1 1259:2 1273:1 1277:2 1288:2 1297:1 1328:3 1337:1 1343:1 1367:2 1374:2 1385:1 1396:1 1407:2 1408:1 1429:1 1431:1 1448:1 1458:1 1465:1 1472:1 1483:1 1484:1 1500:1 1513:1 1562:1 1577:2 1586:1 1592:4 1629:1 1632:1 1635:1 1641:2 1642:2 1650:1 1651:1 1656:5 1686:1 1699:1 1724:1 1725:1 1732:1 1733:4 1736:4 1744:2 1749:2 1777:1 1778:1 1790:1 1810:2 1813:2 1821:2 1822:2 1824:1 1827:1 1842:2 1843:3 1868:1 1870:1 1874:1 1897:1 1915:1 1948:2 1952:2 1956:1 1973:1 1981:2 2007:1 2008:1 2013:1 2032:1 2035:1 2037:1 2040:1 2042:1 2043:2 2047:1 2050:2 2052:1 2088:2 2091:1 2118:1 2156:1 2159:4 2171:1 2174:2 2177:1 2191:1 2201:1 2254:1 2273:2 2296:1 2327:1 2334:1 2359:1 2364:1 2386:2 2426:1 2449:1 2451:1 2462:2 2463:1 2495:1 2501:1 2503:2 2505:3 2509:1 2516:2 2520:2 2522:1 2524:1 2525:2 2528:2 2531:1 2532:3 2533:1 2547:1 2559:1 2561:1 2607:2 2636:1 2674:1 2677:2 2678:1 2707:1 2711:1 2720:2 2747:1 2804:1 2814:1 2833:1 2844:1 2925:1 2940:2 2948:1 2953:1 2977:1 2982:1 2984:1 2991:1 3028:3 3038:1 3091:1 3103:2 3109:1 3138:2 3145:1 3155:1 3161:3 3169:3 3170:1 3178:1 3179:1 3198:2 3212:2 3216:4 3228:1 3236:1 3238:1 3240:1 3242:2 3247:1 3275:1 3280:1 3313:1 3321:1 3333:1 3356:2 3372:1 3400:1 3403:2 3411:1 3432:1 3443:1 3450:1 3483:1 3494:1 3548:2 3562:1 3570:1 3590:1 3600:1 3610:1 3646:3 3658:1 3671:1 3676:1 3699:1 3701:1 3705:1 3708:1 3735:3 3736:1 3779:1 3786:1 3791:1 3803:1 3849:1 3891:1 3892:1 3929:1 3935:1 3964:2 3968:1 4002:1 4006:1 4014:1 4018:1 4019:1 4032:3 4037:1 4055:1 4066:1 4067:1 4083:1 4102:1 4105:1 4124:1 4130:2 4131:2 4151:1 4152:1 4165:1 4171:1 4183:1 4187:1 4189:2 4212:2 4214:2 4250:2 4252:4 4255:2 4260:1 4282:1 4291:1 4292:1 4303:1 4305:1 4307:1 4310:1 4340:1 4363:1 4374:1 4377:1 4402:1 4404:1 4405:1 4422:2 4425:1 4445:1 4454:1 4462:1 4463:1 4483:1 4515:1 4537:1 4563:1 4580:1 4609:1 4625:1 4629:3 4657:1 4665:2 4669:1 4671:1 4685:1 4715:1 4718:1 4736:1 4748:4 4772:1 4773:1 4781:1 4796:1 4832:1 4863:1 4873:1 4880:1 4889:1 4932:2 4935:1 4938:1 4954:1 4967:1 4969:1 4970:1 5001:1 5012:1 5017:2 5026:3 5035:1 5054:2 5058:2 5074:1 5096:2 5131:1 5151:1 5162:2 5178:1 5186:1 5187:2 5206:1 5238:1 5240:1 5242:2 5247:2 5315:1 5318:1 5327:1 5336:1 5382:6 5412:1 5418:1 5431:1 5442:1 5447:1 5500:4 5520:2 5521:1 5526:1 5527:1 5529:1 5535:2 5537:1 5541:1 5542:1 5546:1 5548:2 5549:1 5551:1 5566:1 5574:1 5578:1 5646:2 5679:1 5690:1 5693:1 5697:2 5712:1 5713:1 5734:1 5757:2 5760:2 5767:1 5774:1 5788:1 5792:1 5805:2 5807:1 5823:3 5829:1 5843:3 5861:1 5896:2 5923:1 5924:1 5928:1 5941:4 5963:1 5967:1 5980:1 5983:2 5998:3 6015:1 6027:1 6031:1 6037:1 6038:1 6050:1 6051:1 6061:1 6063:1 6069:1 6085:3 6106:1 6126:1 6143:2 6171:1 6218:1 6232:1 6268:1 6273:1 6275:1 6287:3 6310:1 6333:1 6350:1 6382:1 6390:1 6394:1 6395:2 6397:1 6423:2 6440:1 6453:1 6479:1 6483:1 6488:1 6536:1 6547:1 6570:1 6579:1 6594:1 6628:2 6636:1 6656:1 6725:1 6742:3 6745:1 6749:1 6775:1 6779:1 6780:1 6825:3 6831:3 6850:1 6866:1 6920:1 6931:3 6938:1 6945:1 6955:1 7021:1 7026:1 7035:1 7037:1 7044:2 7053:2 7055:1 7056:3 7058:1 7060:1 7064:2 7066:1 7071:3 7073:4 7113:1 7119:1 7122:1 7129:1 7130:1 7141:1 7152:1 7165:2 7167:1 7168:2 7184:1 7189:2 7220:2 7229:1 7231:2 7248:1 7308:1 7325:2 7328:1 7330:1 7331:4 7332:1 7338:1 7365:2 7370:1 7389:1 7403:1 7406:1 7432:3 7453:1 7456:1 7463:1 7486:1 7489:1 7526:1 7527:1 7535:1 7544:1 7610:2 7613:1 7615:1 7625:1 7628:1 7629:4 7679:1 7714:1 7732:1 7739:1 7746:1 7748:1 7758:2 7774:1 7785:1 7797:1 7805:1 7811:2 7824:1 7851:1 7882:4 7884:2 7887:2 7892:1 7923:2 7927:1 7930:1 7931:1 7939:2 7960:1 7979:3 7991:1 8032:1 8044:1 8047:1 8059:1 8087:1 8099:1 8111:1 8133:1 8137:3 8152:1 8190:1 8219:2 8235:1 8253:1 8262:3 8288:1 8300:1 8305:1 8324:2 8327:1 8329:1 8335:2 8344:1 8347:1 8348:1 8360:1 8368:1 8393:1 8395:1 8407:1 8408:1 8414:1 8422:1 8448:1 8457:2 8459:3 8461:2 8462:1 8489:3 8521:1 8549:1 8551:6 8569:2 8571:1 8602:1 8607:2 8609:1 8620:18 8629:1 8641:2 8642:5 8655:2 8669:1 8678:1 8689:2 8690:1 8697:1 8707:1 8722:1 8737:1 8746:1 8761:1 8769:1 8785:3 8792:1 8817:1 8819:1 8833:1 8855:3 8860:1 8863:1 8873:1 8876:1 8902:1 8914:1 8921:3 8950:1 8957:2 8975:2 8979:1 8985:1 8995:1 9019:1 9025:1 9028:3 9039:1 9052:1 9074:1 9076:2 9082:3 9087:2 9088:1 9092:1 9110:4 9127:1 9156:3 9157:10 9170:1 9171:1 9180:1 9207:1 9208:2 9214:1 9216:2 9222:1 9235:1 9243:2 9252:2 9253:1 9266:1 9282:1 9298:1 9333:1 9340:1 9353:1 9397:2 9402:1 9406:1 9419:1 9456:1 9493:1 9499:1 9525:1 9534:2 9538:1 9549:1 9562:1 9585:1 9593:1 9599:1 9605:3 9610:1 9611:1 9626:1 9627:1 9651:1 9656:1 9691:2 9698:1 9711:1 9719:1 9748:1 9769:1 9777:2 9806:1 9824:2 9825:2 9826:7 9836:1 9845:1 9849:1 9853:1 9865:1 9875:1 9877:1 9896:1 9921:1 9926:1 9928:1 9943:1 9950:2 9983:1 9992:5 10114:1 10164:1 10183:1 10193:2 10202:1 10208:1 10226:1 10239:2 10255:1 10258:1 10260:1 10269:2 10279:4 10306:1 10314:1 10326:1 10357:2 10362:1 10365:1 10377:1 10385:1 10390:2 10413:1 10415:1 10472:2 10522:1 10542:1 10556:1 10572:2 10573:1 10574:1 10593:1 10604:1 10606:1 10623:1 10629:1 10640:1 10643:1 10650:2 10655:1 10656:1 10686:1 10700:2 10702:1 10719:2 10753:1 10771:1 10782:1 10783:1 10785:1 10791:1 10792:1 10795:1 10796:1 10797:1 10838:1 10874:1 10883:1 10888:1 10931:4 10947:1 10954:2 10980:1 10990:1 11020:1 11021:1 11027:1 11039:1 11063:1 11070:1 11101:1 11114:1 11115:1 11122:1 11140:1 11150:1 11158:1 11159:3 11197:1 11213:2 11220:2 11274:2 11278:1 11282:2 11291:2 11293:1 11298:1 11310:1 11312:2 11313:1 11326:1 11333:1 11341:1 11342:1 11346:1 11373:7 11386:2 11390:1 11401:1 11403:3 11423:1 11442:3 11443:1 11451:1 11482:3 11483:1 11486:1 11493:1 11536:1 11554:1 11567:1 11571:1 11579:1 11583:1 11584:1 11594:1 11600:1 11601:2 11604:1 11608:3 11630:1 11689:1 11690:1 11701:1 11706:1 11712:1 11717:1 11737:1 11746:3 11769:1 11771:1 11785:1 11808:1 11809:2 11810:1 11834:1 11850:6 11876:2 11888:1 11921:1 11926:5 11959:2 11960:2 11961:2 11977:1 11994:1 12009:1 12020:2 12035:1 12043:3 12048:1 12097:1 12099:1 12100:1 12102:1 12119:1 12134:1 12136:1 12149:1 12189:1 12205:1 12230:1 12242:1 12275:2 12300:2 12312:1 12316:1 12339:1 12341:1 12343:1 12349:1 12380:1 12408:1 12418:1 12420:1 12440:1 12442:2 12444:1 12457:2 12458:2 12474:1 12475:1 12476:1 12477:1 12486:1 12496:1 12497:2 12509:1 12510:2 12517:1 12536:1 12562:1 12563:1 12570:2 12574:1 12596:1 12623:2 12632:1 12654:1 12688:2 12705:1 12716:4 12722:1 12735:1 12744:1 12746:3 12756:1 12764:1 12774:1 12776:1 12784:1 12822:1 12825:1 12843:1 12846:1 12860:1 12865:1 12888:1 12901:1 12917:1 12922:1 12933:1 12934:1 12960:1 12965:1 12973:1 12997:1 13017:1 13041:1 13068:1 13092:3 13121:1 13151:2 13164:1 13167:1 13173:3 13178:1 13180:1 13182:2 13186:1 13195:1 13205:1 13213:1 13234:1 13239:1 13240:1 13253:1 13256:1 13265:3 13269:2 13297:3 13325:1 13351:3 13405:1 13408:1 13434:1 13481:1 13502:2 13511:2 13513:3 13516:1 13521:1 13528:1 13546:1 13558:1 13561:1 13575:2 13581:3 13602:1 13625:1 13626:4 13627:1 13648:1 13650:1 13654:5 13658:2 13674:1 13685:1 13688:1 13698:3 13714:1 13728:2 13740:1 13746:1 13757:1 13765:1 13774:1 13778:2 13784:1 13786:1 13834:2 13844:3 13854:2 13864:1 13873:2 13890:1 13901:1 13914:1 13940:1 13954:1 13959:1 13969:1 14011:1 14034:1 14036:1 14045:1 14067:1 14072:1 14101:1 14117:1 14118:1 14120:1 14122:1 14126:1 14129:2 14132:1 14157:1 14161:1 14198:2 14206:1 14243:1 14266:1 14267:1 14275:1 14284:1 14291:1 14302:1 14328:1 14329:4 14350:1 14353:1 14356:1 14360:1 14371:2 14392:1 14472:1 14505:1 14520:1 14558:1 14584:1 14601:1 14603:1 14623:1 14632:2 14682:1 14759:1 14773:1 14783:1 14795:1 14807:1 14821:7 14841:1 14846:2 14849:1 14850:1 14853:1 14858:1 14872:1 14887:6 14905:1 14910:1 14921:1 14923:1 14938:1 14976:2 14978:5 14992:1 14994:2 14996:1 15000:1 15025:1 15028:1 15039:2 15048:1 15054:2 15075:4 15081:1 15090:3 15131:1 15135:2 15139:2 15150:1 15161:1 15170:1 15183:1 15187:1 15218:1 15238:1 15243:3 15263:1 15281:1 15291:1 15314:1 15325:1 15346:1 15368:1 15373:1 15377:1 15384:1 15393:1 15401:1 15411:1 15444:1 15450:1 15458:1 15477:1 15489:3 15496:2 15516:1 15548:1 15583:1 15590:1 15596:1 15601:1 15647:1 15657:1 15663:1 15668:1 15669:1 15674:2 15681:1 15699:1 15702:1 15759:1 15784:1 15800:1 15802:1 15805:2 15817:2 15829:1 15840:1 15853:3 15880:1 15899:2 15948:1 15949:1 15958:1 15996:1 16011:1 16025:1 16030:1 16039:1 16087:2 16097:1 16098:1 16102:1 16111:1 16113:1 16131:1 16182:1 16208:1 16209:1 16214:3 16227:2 16228:1 16251:2 16252:1 16257:1 16272:1 16277:1 16287:1 16292:1 16313:1 16321:1 16336:1 16347:1 16352:3 16358:2 16371:1 16384:1 16391:1 16411:1 16426:1 16460:1 16480:1 16487:1 16523:4 16528:2 16540:2 16544:1 16548:8 16554:1 16601:1 16624:1 16681:1 16697:2 16701:1 16716:1 16739:1 16760:3 16766:1 16777:6 16818:1 16822:3 16824:1 16849:2 16866:1 16870:2 16897:3 16916:6 16917:1 16940:1 16941:1 17016:1 17054:2 17061:2 17070:1 17091:2 17093:1 17102:1 17111:1 17116:1 17117:1 17148:2 17192:1 17207:2 17218:1 17256:1 17282:1 17290:1 17297:1 17331:1 17337:1 17343:2 17354:2 17376:1 17388:1 17408:2 17461:1 17476:1 17483:1 17513:1 17516:1 17520:1 17525:3 17530:1 17538:1 17544:1 17565:1 17568:2 17580:1 17583:2 17618:1 17624:3 17696:1 17700:1 17701:1 17716:2 17717:2 17733:3 17753:1 17757:1 17770:1 17772:2 17773:1 17774:1 17778:2 17779:1 17787:1 17800:1 17804:4 17812:1 17843:1 17868:1 17871:2 17876:1 17877:2 17879:4 17899:1 17906:4 17921:1 17935:1 17947:1 17948:1 17964:1 17986:1 17988:1 17993:1 17997:1 18029:1 18032:1 18041:3 18054:1 18055:1 18071:3 18077:1 18089:1 18097:1 18098:1 18109:2 18121:1 18132:1 18147:1 18152:1 18156:3 18159:3 18164:1 18169:1 18182:1 18218:1 18223:1 18306:1 18307:1 18334:1 18339:2 18345:1 18346:1 18355:1 18367:1 18376:1 18382:1 18397:1 18410:1 18424:2 18429:2 18436:1 18445:7 18450:1 18453:1 18493:1 18494:1 18509:1 18537:1 18556:1 18562:1 18573:1 18582:1 18624:1 18634:1 18643:1 18650:1 18677:1 18678:1 18709:1 18723:1 18729:1 18738:2 18742:1 18753:1 18754:1 18767:1 18774:3 18829:3 18836:1 18880:3 18920:1 18922:1 18931:1 18937:1 18943:3 18944:1 18945:1 18970:1 18978:1 18994:2 19022:1 19030:1 19040:1 19041:1 19046:1 19058:1 19060:1 19067:1 19069:1 19095:1 19097:1 19120:1 19121:1 19122:1 19154:1 19163:1 19224:1 19234:1 19288:2 19290:1 19292:1 19302:1 19369:1 19372:1 19406:1 19417:1 19467:1 19469:1 19473:2 19476:2 19477:1 19483:1 19485:1 19489:2 19490:1 19526:3 19553:3 19555:3 19594:1 19614:1 19651:1 19657:2 19660:1 19665:4 19670:1 19677:1 19678:3 19698:1 19710:1 19711:1 19722:1 19730:1 19732:1 19739:1 19757:1 19764:1 19777:1 19798:1 19802:1 19803:4 19807:1 19809:1 19816:1 19837:1 19872:1 19876:2 19884:2 19887:1 19900:1 19950:1 19970:1 19977:1 19980:1 20026:1 20034:2 20073:1 20074:1 20081:1 20111:1 20112:1 20126:1 20132:1 20152:2 20174:1 20201:1 20230:1 20306:1 20318:1 20333:1 20344:1 20352:1 20355:1 20358:1 20394:2 20401:1 20402:1 20403:1 20411:1 20413:1 20480:2 20492:2 20522:1 20531:2 20551:1 20590:1 20605:1 20610:1 20613:3 20624:1 20634:2 20661:1 20708:1 20714:1 20735:1 20753:1 20757:2671 20781:1 20795:1 20832:1 20875:2 20886:1 20912:1 20941:1 20950:1 20951:1 20963:1 20977:1 20978:1 20991:1 20996:1 20999:1 21000:1 21013:1 21049:1 21073:1 21109:1 21111:1 21120:1 21121:1 21133:1 21136:1 21145:1 21154:1 21167:1 21190:1 21212:1 21224:1 21225:1 21230:1 21233:2 21259:1 21262:3 21266:1 21330:1 21332:2 21336:1 21337:1 21351:1 21371:1 21379:1 21389:1 21423:2 21437:1 21438:1 21455:1 21472:1 21503:1 21514:1 21521:7 21551:1 21553:6 21558:1 21565:1 21587:3 21596:1 21617:1 21643:2 21649:1 21657:1 21669:1 21688:1 21700:1 21710:1 21737:3 21778:1 21783:1 21806:2 21816:1 21831:1 21842:1 21873:1 21878:1 21911:1 21915:2 21974:1 21982:1 21988:1 22007:1 22036:1 22042:1 22043:1 22049:1 22056:1 22070:1 22105:1 22170:1 22178:1 22182:2 22188:1 22204:1 22207:1 22230:1 22251:1 22252:3 22266:1 22276:1 22277:1 22278:5 22299:3 22303:1 22305:1 22320:1 22328:1 22331:1 22332:1 22361:1 22375:1 22377:2 22415:2 22419:1 22445:3 22448:1 22460:1 22482:1 22483:1 22493:1 22552:1 22582:1 22655:4 22666:1 22683:1 22712:1 22719:2 22722:1 22782:1 22784:1 22813:1 22818:2 22819:1 22824:1 22838:1 22848:1 22865:1 22867:2 22872:1 22894:4 22897:2 22901:1 22903:1 22909:2 22912:1 22915:1 22918:1 22949:1 22960:1 22963:1 22968:1 22986:1 22992:1 23006:1 23016:1 23022:2 23039:1 23042:1 23068:2 23083:3 23112:1 23114:2 23128:1 23136:1 23145:1 23157:4 23163:2 23173:1 23175:1 23183:1 23185:1 23192:1 23196:1 23198:4 23202:1 23213:1 23216:2 23222:1 23264:1 23285:1 23287:2 23291:4 23302:1 23315:1 23320:1 23322:3 23337:1 23363:1 23415:1 23421:1 23426:1 23427:1 23429:1 23430:1 23433:2 23435:1 23438:1 23453:1 23454:1 23456:2 23472:1 23473:1 23478:2 23487:1 23541:2 23553:1 23555:1 23568:1 23570:1 23572:1 23574:1 23600:4 23603:2 23605:1 23618:1 23661:1 23700:1 23701:1 23702:2 23704:1 23725:1 23730:1 23734:1 23741:3 23746:1 23754:1 23774:1 23793:1 23834:2 23839:3 23853:1 23907:1 23926:1 23927:2 23930:1 23938:1 23945:2 23951:1 23958:2 23962:2 23973:1 23976:2 24000:1 24012:1 24026:1 24131:1 24136:2 24139:2 24162:2 24173:1 24174:1 24217:1 24224:1 24236:1 24280:1 24287:1 24300:2 24305:3 24316:1 24322:2 24333:1 24355:2 24383:1 24384:1 24391:2 24404:1 24414:1 24443:1 24467:3 24475:1 24507:1 24524:1 24525:1 24557:1 24559:1 24563:1 24575:1 24576:1 24590:1 24596:1 24610:1 24614:1 24633:1 24662:1 24665:1 24700:1 24701:1 24702:1 24718:1 24738:2 24742:1 24755:3 24770:3 24776:1 24789:1 24793:8 24797:1 24800:1 24805:1 24812:1 24819:1 24820:1 24839:1 24854:1 24858:1 24868:1 24870:1 24875:1 24890:1 24896:1 24898:1 24931:1 24938:1 24965:1 24996:1 25007:1 25046:1 25059:2 25069:2 25121:1 25133:1 25135:1 25154:1 25167:1 25188:1 25190:1 25259:1 25275:1 25356:1 25364:1 25366:1 25383:1 25442:1 25460:1 25466:1 25480:1 25481:2 25483:1 25485:1 25504:1 25559:1 25564:1 25583:1 25588:1 25591:1 25593:2 25605:1 25607:1 25615:1 25625:1 25634:1 25636:1 25665:1 25668:1 25702:1 25718:2 25747:1 25750:1 25752:1 25770:1 25777:1 25784:3 25796:1 25803:1 25811:2 25812:1 25814:1 25821:1 25860:1 25862:2 25873:1 25876:2 25877:1 25883:1 25896:1 25898:1 25902:1 25905:1 25914:1 25935:1 25965:2 25969:1 25991:2 26018:1 26038:1 26039:1 26054:1 26068:1 26113:1 26123:1 26128:1 26135:1 26155:3 26157:1 26166:1 26173:1 26195:1 26211:2 26219:2 26256:1 26271:1 26273:1 26276:3 26277:1 26320:1 26333:1 26339:2 26370:1 26371:1 26411:1 26435:1 26460:2 26474:1 26534:1 26574:1 26623:1 26625:2 26639:1 26688:1 26700:1 26713:1 26716:1 26729:1 26735:1 26740:1 26758:1 26813:1 26828:3 26838:1 26845:8 26852:1 26853:1 26861:1 26863:1 26887:1 26912:2 26920:2 26921:1 26951:1 26955:1 26964:1 26977:1 26994:1 26998:3 27000:3 27007:1 27020:1 27037:2 27040:2 27047:1 27048:1 27053:1 27075:1 27093:1 27112:1 27135:1 27140:1 27177:1 27190:2 27207:2 27209:3 27213:3 27217:1 27224:1 27241:1 27246:1 27252:2 27264:1 27284:1 27292:1 27328:2 27344:1 27412:1 27415:1 27422:2 27457:4 27462:3 27470:1 27480:1 27487:1 27524:1 27543:1 27563:2 27565:1 27590:1 27594:3 27600:1 27628:1 27640:1 27663:1 27678:1 27689:2 27717:1 27741:1 27775:1 27799:5 27803:3 27804:1 27835:1 27845:1 27853:1 27874:1 27875:1 27878:2 27879:1 27889:1 27903:1 27904:1 27943:1 27964:2 27965:1 27975:2 27978:2 27979:1 27988:1 27992:1 27994:1 28006:1 28012:2 28019:1 28037:1 28047:1 28061:3 28062:1 28072:3 28084:2 28086:1 28097:2 28108:1 28132:2 28139:1 28174:1 28175:1 28207:1 28208:1 28210:1 28224:1 28228:1 28229:1 28236:1 28262:1 28275:1 28278:1 28344:2 28374:2 28375:1 28377:2 28384:1 28394:1 28397:1 28412:1 28424:1 28442:1 28488:1 28491:2 28507:1 28509:1 28511:1 28526:1 28538:1 28540:1 28551:1 28562:1 28571:1 28581:1 28587:1 28591:1 28593:1 28604:1 28620:1 28635:1 28638:2 28670:2 28674:1 28689:1 28706:1 28720:4 28739:1 28745:1 28746:1 28766:1 28781:1 28792:1 28810:4 28827:2 28841:1 28848:4 28854:1 28887:1 28888:1 28946:1 28992:1 28994:1 29027:1 29042:1 29049:1 29051:1 29054:1 29059:1 29067:1 29095:1 29104:1 29115:1 29125:1 29126:1 29134:1 29139:4 29141:1 29145:1 29146:1 29176:1 29198:1 29251:1 29254:1 29273:2 29289:2 29296:2 29303:1 29312:1 29334:1 29356:2 29392:2 29413:1 29453:1 29455:2 29462:1 29463:1 29465:2 29494:1 29509:1 29600:1 29627:1 29628:1 29633:1 29638:1 29640:1 29647:2 29678:1 29681:3 29724:1 29727:2 29732:1 29740:1 29744:1 29745:1 29746:2 29759:1 29760:2 29763:1 29770:2 29792:1 29822:1 29853:1 29878:1 29883:1 29894:2 29899:2 29900:1 29905:1 29942:2 29947:1 29993:1 30007:1 30012:2 30016:2 30021:2 30044:2 30052:1 30053:1 30083:1 30085:1 30090:1 30092:1 30093:1 30095:1 30096:1 30101:1 30106:1 30143:1 30156:1 30160:1 30163:2 30169:1 30178:1 30186:2 30202:1 30203:1 30209:1 30210:2 30253:1 30262:1 30266:2 30269:1 30275:1 30306:1 30309:1 30318:1 30322:1 30323:1 30333:1 30335:1 30345:2 30355:1 30359:1 30390:2 30392:2 30413:1 30447:1 30475:1 30488:2 30505:1 30518:1 30533:2 30557:1 30559:1 30564:2 30571:1 30577:1 30590:1 30632:1 30642:1 30663:1 30675:2 30689:1 30692:1 30723:1 30727:1 30732:1 30787:1 30799:1 30817:1 30820:1 30836:8 30837:1 30841:1 30860:1 30862:1 30879:5 30896:2 30906:1 30919:1 30944:1 30985:1 31017:4 31020:1 31025:1 31034:1 31036:1 31057:6 31063:1 31075:1 31079:1 31080:1 31095:1 31112:1 31116:1 31123:3 31126:1 31144:1 31156:2 31179:1 31188:2 31191:1 31209:1 31235:1 31256:1 31281:2 31286:2 31330:1 31332:1 31335:1 31340:1 31342:1 31348:1 31360:1 31379:1 31398:1 31401:1 31402:1 31449:3 31452:1 31469:1 31476:1 31478:1 31567:3 31583:1 31593:3 31603:1 31606:1 31624:2 31628:2 31635:1 31653:1 31659:1 31662:1 31681:1 31688:1 31716:1 31725:1 31735:1 31739:1 31807:1 31815:1 31819:1 31837:2 31849:1 31880:1 31896:2 31910:1 31937:1 31950:1 31959:1 31984:1 31994:1 32016:1 32044:1 32066:1 32080:1 32105:1 32109:1 32120:3 32122:1 32138:1 32163:1 32214:1 32217:1 32221:1 32233:1 32235:1 32243:3 32244:1 32245:3 32246:1 32248:1 32249:1 32250:2 32254:1 32257:1 32258:1 32261:1 32267:1 32278:1 32298:2 32303:1 32306:1 32320:1 32324:1 32333:2 32337:1 32343:1 32378:1 32382:1
15 6:1 43:1 71:3 91:1 104:2 122:1 166:1 167:3 187:1 189:2 196:1 200:1 224:1 225:1 243:1 244:1 267:1 282:1 285:3 289:1 335:1 337:2 356:2 370:1 382:1 388:2 406:2 409:2 443:1 444:2 463:1 468:1 503:3 517:1 529:1 541:2 586:1 612:1 615:1 616:1 622:1 623:1 645:2 649:1 655:2 661:1 666:1 682:1 685:4 696:1 697:2 699:2 704:1 747:1 768:3 791:1 795:1 796:1 813:4 829:2 892:1 898:1 928:2 935:1 956:2 958:1 959:1 961:1 963:2 968:1 970:1 972:2 978:1 980:1 981:1 985:1 988:1 1018:1 1020:2 1023:1 1031:1 1039:1 1052:2 1061:1 1065:1 1072:1 1075:1 1103:1 1114:2 1119:3 1149:2 1150:1 1154:2 1167:1 1172:1 1180:1 1205:2 1206:1 1210:1 1235:1 1255:1 1259:2 1273:1 1277:2 1288:2 1297:1 1324:1 1328:3 1337:1 1343:1 1367:2 1374:2 1385:1 1396:1 1407:2 1408:1 1429:1 1431:1 1448:1 1458:1 1465:1 1472:1 1483:1 1484:1 1500:1 1513:1 1562:1 1577:2 1586:1 1587:1 1592:5 1629:1 1632:1 1635:2 1641:2 1642:2 1650:1 1651:1 1656:5 1673:1 1686:1 1699:1 1724:1 1725:1 1732:1 1733:4 1736:4 1744:2 1749:2 1777:1 1778:1 1790:1 1810:2 1813:2 1821:2 1822:2 1824:1 1827:1 1842:2 1843:3 1868:1 1870:1 1874:1 1897:1 1915:1 1927:1 1933:1 1948:2 1952:2 1953:1 1956:1 1973:1 1981:2 2007:1 2008:1 2013:1 2032:1 2035:1 2037:1 2040:1 2042:1 2043:2 2047:1 2050:2 2052:1 2088:2 2091:1 2118:1 2156:1 2159:4 2165:1 2171:1 2174:2 2177:1 2191:1 2201:1 2254:1 2273:2 2296:1 2327:1 2334:1 2359:1 2364:1 2386:3 2426:1 2449:1 2451:1 2462:2 2463:1 2495:1 2501:1 2503:2 2505:3 2509:1 2516:2 2520:2 2522:1 2524:2 2525:2 2528:2 2531:1 2532:4 2533:1 2547:1 2559:2 2561:1 2607:2 2636:1 2674:2 2677:2 2678:1 2707:1 2711:1 2720:2 2747:1 2804:1 2814:2 2833:1 2844:1 2925:1 2940:2 2948:2 2953:1 2974:1 2977:1 2982:1 2984:1 2991:1 3028:3 3038:1 3091:1 3103:2 3109:1 3138:2 3145:1 3155:1 3161:3 3169:3 3170:1 3178:1 3179:1 3198:2 3212:2 3216:4 3228:1 3235:1 3236:1 3238:1 3240:1 3242:2 3247:1 3250:1 3275:1 3280:1 3286:1 3313:1 3321:1 3333:1 3356:2 3372:1 3400:1 3403:2 3411:1 3432:1 3443:1 3450:1 3483:1 3494:1 3548:2 3562:1 3570:1 3590:1 3600:1 3610:1 3646:3 3658:1 3671:1 3676:1 3699:1 3701:1 3705:1 3708:1 3735:3 3736:1 3779:1 3786:1 3791:1 3803:1 3849:1 3891:1 3892:1 3929:1 3935:1 3952:1 3964:2 3968:1 4002:1 4006:1 4014:1 4018:1 4019:1 4032:3 4037:1 4055:1 4066:1 4067:2 4070:1 4083:1 4102:1 4105:1 4124:1 4130:2 4131:2 4151:1 4152:1 4165:1 4171:1 4183:1 4187:1 4189:2 4212:2 4214:2 4250:2 4252:4 4255:2 4260:1 4282:1 4291:1 4292:1 4303:1 4305:1 4307:1 4310:1 4321:1 4340:1 4363:1 4374:1 4377:1 4402:1 4404:1 4405:1 4422:2 4425:1 4445:1 4454:1 4462:1 4463:1 4483:1 4515:1 4537:1 4563:1 4580:1 4609:1 4625:1 4629:3 4657:1 4665:2 4669:1 4671:1 4685:1 4715:1 4718:1 4736:1 4748:4 4772:1 4773:1 4781:1 4796:1 4832:1 4863:1 4873:1 4880:1 4889:1 4932:2 4935:1 4938:1 4954:1 4967:1 4969:1 4970:1 5001:1 5012:1 5017:2 5026:3 5035:1 5054:2 5058:2 5074:1 5078:1 5096:2 5131:1 5151:1 5162:2 5178:2 5186:1 5187:2 5206:1 5238:1 5240:1 5242:2 5247:2 5315:1 5318:2 5327:1 5331:2 5336:1 5382:6 5412:1 5418:1 5431:1 5442:1 5447:1 5500:4 5520:2 5521:1 5526:1 5527:1 5529:1 5535:2 5537:1 5541:1 5542:1 5546:1 5548:2 5549:1 5551:1 5566:1 5574:1 5578:1 5646:2 5679:1 5690:1 5693:1 5697:2 5712:1 5713:1 5734:1 5757:2 5760:3 5767:1 5774:1 5788:1 5792:1 5805:2 5807:3 5823:3 5829:1 5843:3 5861:1 5896:2 5923:1 5924:1 5928:1 5941:4 5963:1 5967:1 5980:1 5983:2 5998:3 6015:1 6027:1 6031:1 6037:1 6038:1 6050:1 6051:1 6061:1 6063:1 6069:1 6085:3 6106:1 6126:1 6143:2 6171:1 6218:1 6232:1 6268:1 6273:1 6275:1 6287:3 6310:1 6333:1 6350:1 6382:1 6390:1 6394:1 6395:2 6397:1 6423:2 6440:1 6453:1 6479:1 6483:1 6488:1 6536:1 6547:1 6570:1 6579:1 6594:1 6628:2 6636:1 6656:1 6725:1 6742:3 6745:1 6749:1 6775:1 6779:1 6780:1 6825:3 6831:3 6850:1 6866:1 6920:1 6931:3 6938:1 6945:1 6955:1 7021:1 7026:1 7035:1 7037:1 7044:2 7053:2 7055:1 7056:3 7058:1 7060:1 7064:2 7066:1 7071:3 7073:4 7113:1 7119:1 7122:1 7129:1 7130:1 7141:1 7152:1 7154:2 7165:2 7167:1 7168:2 7184:1 7189:2 7220:2 7229:1 7231:2 7248:1 7308:1 7325:2 7328:1 7330:1 7331:4 7332:1 7338:1 7365:2 7370:1 7389:1 7403:1 7406:1 7432:3 7453:1 7456:1 7463:1 7486:1 7489:1 7526:1 7527:1 7535:1 7544:1 7610:2 7613:1 7615:1 7625:1 7628:1 7629:4 7644:1 7679:1 7714:1 7732:1 7739:1 7746:1 7748:1 7758:2 7774:1 7785:1 7797:1 7805:1 7811:2 7823:1 7824:1 7851:1 7882:4 7884:2 7887:2 7892:1 7923:2 7927:1 7930:1 7931:1 7939:2 7960:1 7969:1 7979:3 7991:1 8032:1 8044:1 8047:1 8059:1 8087:1 8099:1 8111:1 8133:1 8137:3 8152:1 8190:1 8219:2 8235:1 8253:1 8262:3 8288:1 8300:1 8305:1 8324:2 8327:1 8329:1 8335:2 8338:1 8344:1 8347:1 8348:1 8360:1 8368:1 8393:1 8395:1 8407:1 8408:1 8414:1 8422:1 8444:1 8448:1 8457:2 8459:3 8461:2 8462:1 8489:3 8514:1 8521:1 8549:1 8551:6 8569:2 8571:1 8602:1 8607:2 8609:1 8620:20 8629:1 8641:2 8642:5 8655:2 8669:1 8678:1 8689:2 8690:1 8697:1 8707:1 8722:1 8737:1 8746:1 8761:1 8769:1 8785:3 8792:1 8817:1 8819:1 8833:1 8855:3 8860:1 8863:1 8873:1 8876:1 8902:1 8914:1 8921:3 8950:1 8957:2 8975:2 8979:1 8985:1 8995:1 9019:1 9025:1 9028:3 9039:1 9052:1 9074:1 9076:2 9082:3 9087:2 9088:1 9092:1 9110:4 9127:1 9156:3 9157:10 9170:1 9171:1 9180:1 9188:1 9207:1 9208:2 9214:1 9216:2 9222:1 9235:1 9243:2 9252:2 9253:1 9266:1 9282:1 9298:1 9333:1 9340:1 9353:1 9397:2 9402:1 9406:1 9419:1 9456:1 9493:1 9499:1 9525:1 9534:2 9538:1 9546:1 9549:1 9562:1 9585:1 9593:1 9599:1 9605:3 9610:1 9611:1 9626:1 9627:1 9651:1 9656:1 9671:1 9691:2 9693:1 9698:1 9711:1 9719:1 9748:1 9769:1 9777:2 9806:1 9824:2 9825:2 9826:7 9836:1 9845:1 9849:1 9853:1 9865:3 9875:1 9877:1 9896:1 9921:1 9926:1 9928:1 9943:1 9950:2 9983:1 9992:5 10114:1 10164:1 10183:1 10193:2 10202:1 10208:1 10226:1 10239:2 10255:1 10258:1 10260:1 10269:2 10279:4 10306:1 10314:1 10326:1 10357:2 10362:1 10365:1 10377:1 10385:1 10390:2 10413:1 10415:1 10472:2 10522:1 10542:1 10556:1 10572:2 10573:2 10574:1 10593:1 10604:1 10606:1 10623:1 10629:1 10640:1 10643:1 10650:2 10655:1 10656:1 10686:1 10700:3 10702:1 10719:2 10753:1 10771:1 10782:1 10783:1 10785:1 10791:1 10792:1 10795:1 10796:1 10797:1 10838:1 10874:1 10883:1 10888:1 10931:4 10947:1 10954:2 10966:1 10980:1 10990:1 11020:1 11021:1 11027:1 11039:1 11063:1 11070:1 11101:1 11114:1 11115:1 11122:1 11140:1 11150:1 11158:1 11159:3 11197:1 11213:2 11220:2 11274:2 11278:1 11282:2 11291:2 11293:1 11298:1 11304:1 11310:1 11312:2 11313:1 11326:1 11333:1 11341:1 11342:1 11346:1 11373:7 11386:2 11390:1 11401:1 11403:3 11423:1 11442:3 11443:1 11451:1 11482:3 11483:1 11486:1 11493:1 11536:1 11547:1 11554:1 11567:1 11571:1 11579:1 11583:1 11584:1 11594:1 11600:1 11601:2 11604:1 11608:3 11630:1 11689:1 11690:1 11691:1 11701:1 11706:1 11712:1 11717:1 11737:1 11746:3 11769:1 11771:1 11785:1 11808:1 11809:2 11810:1 11834:1 11850:6 11876:2 11888:1 11921:1 11926:6 11959:2 11960:2 11961:2 11977:1 11994:1 12009:1 12020:2 12035:1 12043:3 12048:1 12097:1 12099:1 12100:1 12102:1 12119:1 12128:1 12134:1 12136:1 12149:1 12189:1 12205:1 12230:1 12242:1 12275:2 12300:2 12312:1 12316:1 12339:1 12341:1 12343:1 12349:1 12380:1 12408:1 12418:1 12420:1 12440:1 12442:2 12444:1 12457:2 12458:2 12474:1 12475:1 12476:1 12477:1 12486:1 12496:1 12497:2 12509:1 12510:2 12517:1 12520:1 12536:1 12562:2 12563:1 12570:3 12574:1 12596:1 12623:2 12632:1 12654:1 12688:2 12705:1 12716:4 12722:1 12733:1 12735:1 12736:1 12744:1 12746:3 12756:1 12764:1 12774:1 12776:1 12784:1 12822:1 12825:1 12843:1 12846:1 12860:1 12865:1 12888:1 12901:1 12917:1 12922:1 12933:1 12934:1 12960:1 12965:1 12973:1 12997:1 13017:1 13022:1 13041:1 13068:1 13092:3 13121:1 13151:2 13164:1 13167:1 13173:3 13178:1 13180:1 13182:2 13186:1 13195:1 13205:1 13213:1 13234:1 13239:1 13240:1 13253:1 13256:1 13265:3 13269:2 13297:3 13325:1 13351:3 13363:1 13405:1 13408:1 13434:1 13439:1 13476:1 13481:1 13502:2 13511:2 13513:3 13516:1 13521:1 13528:1 13546:1 13554:1 13558:1 13561:1 13575:2 13581:3 13602:1 13625:1 13626:4 13627:1 13637:1 13648:1 13650:1 13654:5 13658:2 13674:1 13685:1 13688:1 13698:3 13714:1 13728:2 13740:1 13746:1 13757:1 13765:1 13774:1 13778:2 13784:1 13786:1 13806:1 13834:2 13844:3 13854:3 13864:1 13873:2 13890:1 13901:1 13914:1 13940:1 13954:1 13959:1 13969:1 14011:1 14034:1 14036:1 14045:1 14056:1 14067:1 14072:1 14101:1 14108:1 14117:1 14118:1 14120:1 14122:1 14126:1 14129:2 14132:1 14157:1 14161:1 14198:2 14206:1 14243:1 14266:1 14267:1 14275:1 14284:1 14291:1 14302:1 14328:1 14329:4 14350:1 14353:2 14356:1 14360:1 14371:2 14392:1 14408:1 14472:1 14505:1 14520:1 14558:1 14584:1 14601:1 14603:1 14623:1 14632:2 14682:1 14759:1 14773:1 14783:1 14795:1 14807:1 14821:7 14841:1 14846:2 14849:1 14850:1 14853:1 14858:1 14872:1 14887:6 14905:1 14910:1 14921:1 14923:1 14938:1 14976:2 14978:5 14992:1 14994:2 14996:1 15000:1 15025:1 15028:1 15039:2 15048:1 15054:2 15075:5 15081:1 15090:3 15131:1 15135:2 15139:2 15150:1 15161:1 15170:1 15183:1 15187:1 15218:1 15238:1 15243:3 15263:1 15281:1 15291:1 15293:1 15314:1 15325:1 15346:1 15368:1 15373:1 15377:1 15384:1 15393:1 15401:1 15411:1 15444:1 15450:1 15458:1 15477:1 15489:3 15496:2 15516:1 15548:1 15583:1 15585:1 15590:1 15596:1 15601:1 15647:1 15657:1 15663:1 15668:1 15669:1 15674:2 15681:1 15699:1 15702:1 15759:1 15784:2 15800:1 15802:1 15805:2 15817:2 15829:1 15840:1 15853:3 15880:2 15899:2 15948:1 15949:1 15958:1 15996:1 16011:1 16025:1 16030:1 16039:1 16087:2 16097:1 16098:1 16102:1 16111:1 16113:1 16131:1 16182:1 16208:1 16209:1 16214:3 16227:2 16228:1 16251:2 16252:1 16257:1 16272:1 16277:1 16287:1 16292:1 16313:1 16321:1 16336:1 16347:1 16352:3 16358:2 16371:1 16384:1 16391:1 16411:1 16426:1 16460:1 16480:1 16487:1 16523:6 16528:2 16540:2 16544:1 16548:9 16554:1 16601:1 16624:1 16681:1 16697:2 16701:2 16716:1 16739:1 16760:3 16766:1 16777:6 16818:1 16822:3 16824:1 16849:2 16866:1 16870:2 16897:5 16916:6 16917:1 16940:1 16941:1 17016:1 17023:1 17054:2 17061:2 17070:1 17091:2 17093:1 17102:1 17111:1 17116:1 17117:1 17148:2 17180:1 17192:1 17207:2 17218:1 17256:1 17282:1 17290:1 17297:1 17314:1 17331:1 17337:1 17343:2 17354:2 17376:1 17388:1 17408:2 17461:1 17476:1 17483:1 17513:1 17516:1 17520:1 17525:3 17530:1 17538:1 17544:1 17565:1 17568:3 17580:1 17583:2 17618:1 17624:3 17696:1 17700:1 17701:1 17716:2 17717:2 17733:3 17739:1 17753:1 17757:1 17770:1 17772:2 17773:1 17774:1 17778:2 17779:1 17787:1 17800:1 17804:4 17812:1 17843:1 17868:1 17871:2 17876:1 17877:2 17879:5 17899:1 17906:4 17921:1 17935:1 17947:1 17948:1 17964:1 17986:1 17988:1 17993:1 17997:1 18029:1 18032:1 18041:3 18054:1 18055:1 18071:3 18077:1 18089:1 18097:1 18098:1 18109:2 18121:1 18132:1 18147:1 18152:1 18156:3 18159:3 18164:1 18169:1 18182:1 18218:1 18223:1 18306:1 18307:1 18334:1 18339:2 18345:1 18346:1 18355:1 18367:1 18376:1 18382:1 18397:1 18410:1 18424:2 18429:2 18436:1 18445:7 18450:1 18453:1 18493:1 18494:1 18509:1 18537:1 18556:1 18562:1 18573:1 18582:1 18624:1 18634:1 18643:1 18650:1 18653:1 18677:1 18678:1 18709:1 18723:1 18729:1 18738:2 18742:1 18753:1 18754:1 18767:1 18774:3 18829:3 18836:1 18880:3 18920:1 18922:1 18931:1 18937:1 18943:3 18944:1 18945:1 18970:1 18978:1 18994:2 19022:1 19030:1 19040:1 19041:1 19046:1 19058:1 19060:1 19067:1 19069:1 19095:1 19097:1 19120:1 19121:1 19122:1 19154:1 19163:1 19224:1 19234:1 19288:2 19290:1 19292:1 19301:1 19302:1 19369:1 19372:1 19406:1 19417:1 19467:1 19469:1 19473:2 19476:2 19477:1 19483:1 19485:1 19489:2 19490:1 19515:1 19526:3 19553:3 19555:3 19594:1 19614:1 19651:1 19657:3 19660:1 19665:4 19670:1 19677:1 19678:3 19698:1 19710:1 19711:1 19722:1 19730:1 19732:1 19739:1 19757:1 19764:1 19777:1 19798:1 19802:1 19803:4 19807:1 19809:1 19816:1 19837:1 19872:1 19876:2 19884:2 19887:1 19900:1 19950:1 19970:1 19977:1 19980:1 20026:1 20034:2 20073:1 20074:1 20081:1 20111:1 20112:1 20126:1 20132:1 20152:2 20174:1 20201:1 20230:1 20269:1 20306:1 20318:1 20333:1 20344:1 20352:1 20355:1 20358:1 20394:2 20401:1 20402:1 20403:1 20411:1 20413:1 20480:2 20492:2 20522:1 20531:2 20551:1 20590:1 20605:1 20610:1 20613:3 20624:1 20634:2 20661:1 20708:1 20714:1 20731:1 20735:1 20753:1 20757:2834 20781:1 20793:1 20795:1 20832:1 20875:2 20886:1 20912:1 20941:1 20950:1 20951:1 20963:1 20977:1 20978:1 20991:1 20996:1 20999:1 21000:1 21013:1 21049:1 21073:1 21109:1 21111:1 21120:1 21121:1 21133:1 21136:1 21145:1 21154:1 21167:1 21190:1 21212:1 21224:1 21225:1 21230:1 21233:2 21259:1 21262:3 21266:1 21330:1 21332:2 21336:1 21337:1 21351:1 21371:1 21374:1 21379:1 21389:1 21414:1 21423:2 21435:1 21437:1 21438:1 21455:1 21472:1 21503:1 21514:1 21521:8 21551:1 21553:6 21558:1 21565:1 21587:3 21596:1 21617:1 21643:2 21649:1 21657:1 21669:1 21688:1 21700:1 21710:1 21736:1 21737:3 21778:1 21783:1 21806:2 21816:1 21831:1 21842:1 21873:1 21878:1 21911:1 21915:2 21974:1 21982:1 21988:1 22007:1 22036:1 22042:1 22043:1 22049:1 22056:1 22070:1 22105:1 22170:1 22178:1 22182:2 22188:1 22204:1 22207:1 22230:1 22251:1 22252:3 22266:1 22276:1 22277:1 22278:5 22299:3 22303:1 22305:1 22320:2 22328:1 22331:1 22332:1 22352:1 22361:1 22375:1 22377:2 22415:2 22419:1 22445:3 22448:1 22460:1 22482:1 22483:1 22493:1 22552:1 22582:1 22655:4 22666:1 22683:1 22712:1 22719:2 22722:1 22782:1 22784:1 22813:1 22818:2 22819:1 22824:1 22838:1 22848:1 22865:1 22867:2 22872:1 22894:4 22897:2 22901:1 22903:1 22909:2 22912:1 22915:1 22918:1 22949:1 22960:1 22963:1 22968:1 22986:1 22992:1 23006:1 23016:1 23022:2 23039:1 23042:1 23068:2 23083:3 23112:1 23114:2 23128:1 23136:1 23145:1 23157:5 23163:2 23173:1 23175:1 23183:1 23185:1 23192:1 23196:1 23198:4 23202:1 23213:1 23216:2 23222:1 23264:1 23285:1 23287:2 23291:4 23302:1 23315:1 23320:1 23322:3 23337:1 23363:1 23415:1 23421:1 23426:1 23427:1 23429:1 23430:1 23433:2 23435:1 23438:1 23453:1 23454:1 23456:2 23472:1 23473:1 23478:2 23487:1 23541:2 23553:1 23555:1 23568:1 23570:1 23572:1 23574:1 23600:4 23603:2 23605:1 23618:1 23661:1 23684:3 23700:1 23701:1 23702:2 23704:1 23725:1 23730:1 23734:1 23741:3 23746:1 23754:1 23774:1 23793:1 23834:2 23839:3 23853:1 23907:1 23926:1 23927:2 23930:1 23938:1 23945:2 23951:1 23958:2 23962:2 23973:1 23976:2 24000:1 24012:1 24026:1 24131:2 24136:2 24139:2 24162:2 24173:1 24174:1 24217:1 24224:1 24236:1 24280:1 24287:1 24300:2 24305:3 24316:1 24322:2 24333:1 24342:1 24355:2 24383:1 24384:1 24391:2 24394:1 24404:1 24414:1 24441:1 24443:1 24467:3 24475:1 24507:1 24524:1 24525:1 24557:1 24559:1 24563:1 24575:1 24576:1 24590:1 24596:1 24610:1 24614:1 24633:1 24662:1 24665:1 24700:1 24701:1 24702:1 24718:1 24738:2 24742:1 24755:3 24770:3 24776:1 24789:1 24793:8 24797:1 24800:1 24805:1 24812:1 24819:1 24820:1 24839:1 24854:1 24858:1 24868:1 24870:1 24875:1 24876:1 24890:1 24896:1 24898:2 24931:1 24938:1 24965:1 24996:1 25007:1 25046:1 25059:2 25069:2 25121:1 25132:1 25133:1 25135:1 25154:1 25167:1 25172:1 25188:1 25190:1 25259:1 25275:1 25319:1 25356:2 25364:1 25366:1 25383:1 25442:2 25460:2 25466:1 25480:1 25481:2 25483:1 25485:1 25504:1 25559:1 25564:1 25583:1 25588:1 25591:1 25593:2 25605:1 25607:1 25615:1 25625:1 25634:1 25636:1 25665:1 25668:1 25702:1 25718:2 25747:1 25750:1 25752:1 25770:1 25777:1 25784:3 25792:1 25796:1 25803:1 25811:2 25812:1 25814:1 25821:1 25860:1 25862:2 25873:1 25876:2 25877:1 25883:1 25896:1 25898:1 25902:1 25905:1 25914:1 25935:1 25965:2 25969:1 25991:2 26018:1 26038:1 26039:1 26044:1 26047:1 26054:1 26068:1 26113:1 26123:1 26128:1 26135:1 26155:3 26157:1 26166:1 26173:1 26195:1 26211:2 26219:2 26256:1 26271:1 26273:1 26276:3 26277:1 26320:1 26333:1 26339:2 26343:1 26370:1 26371:1 26411:1 26435:1 26460:2 26472:1 26474:1 26534:1 26574:1 26623:1 26625:2 26639:1 26688:1 26700:1 26713:1 26716:1 26729:1 26735:1 26740:1 26758:1 26813:1 26828:3 26838:1 26845:8 26852:1 26853:1 26861:1 26863:1 26887:1 26912:2 26920:2 26921:1 26951:1 26955:1 26964:1 26977:1 26994:1 26998:3 27000:3 27007:1 27020:1 27037:2 27040:2 27047:1 27048:1 27053:1 27075:1 27093:1 27112:1 27135:1 27140:1 27177:1 27190:2 27207:2 27209:3 27213:3 27217:1 27224:1 27241:1 27246:1 27252:2 27264:1 27284:1 27292:1 27302:1 27328:2 27344:1 27365:1 27412:1 27415:1 27422:2 27457:4 27462:3 27470:1 27480:1 27487:1 27524:1 27539:1 27543:1 27563:2 27565:1 27590:1 27594:3 27600:1 27628:1 27640:1 27663:1 27678:2 27689:2 27706:1 27717:1 27741:1 27775:1 27799:5 27803:3 27804:1 27835:1 27845:1 27853:1 27874:1 27875:1 27878:2 27879:1 27889:1 27903:1 27904:1 27943:1 27964:2 27965:1 27975:3 27978:2 27979:1 27985:1 27988:1 27992:1 27994:1 28006:1 28012:2 28019:1 28037:1 28047:1 28061:3 28062:1 28072:3 28084:2 28086:1 28097:2 28108:1 28132:2 28139:1 28174:1 28175:1 28207:1 28208:1 28210:1 28224:1 28228:1 28229:1 28236:1 28262:1 28275:1 28278:1 28344:2 28351:1 28374:2 28375:1 28377:2 28384:1 28394:1 28397:1 28412:1 28424:1 28442:1 28488:1 28491:2 28507:1 28509:1 28511:1 28526:1 28538:1 28540:1 28547:1 28551:1 28562:1 28571:1 28581:1 28587:1 28591:1 28593:1 28604:1 28620:1 28635:1 28638:2 28670:2 28674:1 28689:1 28706:1 28720:4 28739:1 28745:1 28746:1 28766:1 28781:1 28792:1 28810:4 28827:2 28841:1 28848:4 28854:1 28887:1 28888:1 28941:1 28946:1 28992:1 28994:1 29027:2 29042:1 29049:1 29051:1 29054:1 29059:1 29067:1 29095:1 29104:1 29115:1 29125:1 29126:1 29134:1 29139:4 29141:1 29145:1 29146:2 29176:1 29198:1 29228:1 29251:1 29254:1 29273:2 29289:2 29296:3 29303:1 29312:1 29334:1 29356:2 29392:2 29413:1 29453:1 29455:2 29462:1 29463:1 29465:2 29494:1 29509:1 29587:1 29593:1 29600:1 29627:1 29628:1 29633:1 29638:1 29640:1 29647:3 29678:1 29681:3 29724:1 29727:2 29732:1 29740:1 29744:1 29745:1 29746:2 29759:1 29760:2 29763:1 29770:2 29792:1 29822:1 29853:1 29878:1 29883:1 29894:2 29899:2 29900:1 29905:1 29942:2 29947:1 29993:1 30007:1 30012:2 30016:2 30021:2 30042:1 30044:2 30052:1 30053:1 30083:1 30085:1 30090:1 30092:1 30093:1 30095:1 30096:1 30101:1 30106:1 30143:1 30156:1 30160:1 30163:2 30169:1 30178:1 30186:2 30202:1 30203:1 30209:1 30210:2 30253:1 30262:1 30266:2 30269:1 30275:1 30306:1 30309:1 30318:1 30322:1 30323:1 30333:1 30335:1 30345:2 30355:1 30359:1 30390:2 30392:2 30413:1 30447:2 30475:1 30488:2 30505:1 30518:1 30533:2 30557:1 30559:1 30564:2 30571:1 30577:1 30590:1 30632:1 30642:1 30663:1 30675:2 30689:1 30692:1 30723:3 30727:1 30732:1 30787:1 30799:1 30817:1 30820:1 30836:8 30837:1 30841:1 30860:1 30862:1 30879:5 30896:2 30906:1 30919:1 30944:1 30985:1 31017:4 31020:1 31025:1 31034:1 31036:1 31057:6 31063:1 31075:1 31079:1 31080:1 31095:1 31112:1 31116:1 31123:3 31126:1 31144:1 31156:2 31179:1 31188:2 31191:1 31209:1 31235:1 31256:1 31281:2 31286:2 31330:1 31332:1 31335:1 31340:1 31342:1 31348:1 31360:1 31370:1 31379:1 31398:1 31401:1 31402:1 31449:3 31452:1 31469:1 31476:1 31478:1 31567:3 31583:2 31593:3 31603:1 31606:1 31624:2 31628:2 31635:1 31653:1 31659:1 31662:1 31681:1 31688:1 31716:1 31725:1 31735:1 31739:1 31807:1 31815:1 31819:1 31837:2 31849:1 31880:1 31896:2 31910:1 31937:1 31950:1 31959:1 31984:1 31994:1 32016:1 32044:1 32066:1 32080:1 32105:1 32109:1 32120:3 32122:1 32138:1 32163:1 32214:1 32217:1 32221:1 32233:1 32235:1 32243:3 32244:1 32245:3 32246:1 32248:1 32249:1 32250:2 32254:1 32257:2 32258:2 32261:2 32267:1 32278:1 32298:2 32303:1 32306:1 32320:1 32324:1 32333:2 32337:1 32343:1 32350:1 32378:1 32382:1
15 6:1 43:1 71:3 91:1 104:2 122:1 166:1 167:4 187:1 189:2 196:1 200:1 224:1 225:1 243:1 244:1 248:1 267:1 282:1 285:3 289:1 335:1 337:2 356:2 370:1 382:1 388:2 406:3 409:2 443:1 444:2 463:1 468:1 503:3 517:1 529:1 541:2 566:1 586:1 612:1 615:1 616:1 622:1 623:1 645:2 649:1 655:2 661:1 666:1 682:1 685:4 696:1 697:2 699:2 704:1 747:1 768:3 791:1 795:1 796:1 813:4 829:2 892:1 898:1 928:2 935:1 956:2 958:1 959:1 961:1 963:2 968:1 970:1 972:2 978:1 980:1 981:1 985:1 988:1 1018:1 1020:2 1023:1 1027:1 1031:1 1039:1 1052:2 1061:1 1065:1 1072:1 1075:1 1103:1 1114:2 1119:3 1149:2 1150:1 1154:2 1167:1 1172:1 1180:1 1205:2 1206:1 1210:1 1235:1 1255:1 1259:2 1273:1 1277:2 1288:2 1297:1 1324:1 1328:3 1337:1 1343:1 1367:2 1374:2 1385:1 1396:1 1407:2 1408:1 1429:1 1431:1 1448:1 1458:1 1465:1 1472:1 1483:1 1484:1 1500:1 1513:1 1562:1 1577:2 1586:1 1587:1 1592:5 1629:1 1632:1 1635:2 1641:2 1642:2 1650:1 1651:1 1656:5 1673:1 1686:1 1699:1 1724:1 1725:1 1732:1 1733:4 1736:4 1737:1 1744:2 1749:2 1777:1 1778:1 1790:1 1810:2 1813:2 1821:2 1822:2 1824:1 1827:1 1842:2 1843:3 1868:1 1870:1 1874:1 1897:1 1914:1 1915:1 1927:1 1933:1 1948:2 1952:2 1953:1 1956:1 1973:1 1981:2 2007:1 2008:1 2013:1 2032:1 2035:1 2037:1 2040:1 2042:1 2043:2 2047:1 2050:2 2052:1 2088:2 2091:1 2098:1 2100:1 2118:1 2156:1 2159:4 2165:1 2171:1 2174:2 2177:1 2191:1 2201:1 2254:1 2273:2 2296:1 2327:1 2334:1 2344:1 2359:1 2364:1 2386:3 2426:1 2449:1 2451:1 2462:2 2463:1 2493:1 2495:1 2501:1 2503:2 2505:3 2509:1 2516:2 2520:2 2522:1 2524:2 2525:2 2528:2 2531:1 2532:4 2533:1 2547:1 2559:2 2561:1 2607:2 2636:1 2674:2 2677:2 2678:1 2707:1 2711:2 2720:2 2747:1 2804:1 2814:2 2833:1 2844:1 2857:1 2860:1 2925:1 2940:2 2948:2 2953:1 2974:1 2977:1 2982:1 2984:1 2991:1 3028:3 3038:1 3091:1 3103:2 3109:1 3112:1 3138:2 3145:1 3155:1 3161:3 3169:4 3170:1 3178:1 3179:1 3198:2 3212:2 3216:4 3228:1 3235:1 3236:1 3238:1 3240:1 3242:2 3247:1 3250:1 3275:1 3280:1 3286:1 3313:1 3321:1 3333:1 3348:1 3356:2 3372:1 3400:1 3403:2 3411:1 3432:1 3443:1 3450:1 3483:1 3494:1 3548:2 3562:1 3570:1 3590:1 3600:1 3610:1 3646:3 3658:1 3671:1 3676:1 3699:1 3701:1 3705:1 3708:1 3735:3 3736:1 3779:1 3786:1 3791:1 3803:1 3849:1 3891:1 3892:1 3929:1 3935:1 3952:1 3964:2 3968:1 4002:1 4006:1 4014:1 4018:1 4019:1 4032:3 4037:1 4055:1 4066:1 4067:2 4070:1 4083:1 4102:1 4105:1 4124:1 4130:2 4131:2 4151:1 4152:1 4165:1 4171:1 4183:1 4187:1 4189:2 4212:2 4214:2 4250:2 4252:4 4255:2 4260:1 4282:1 4291:1 4292:1 4303:1 4305:1 4307:1 4310:1 4321:1 4340:1 4363:1 4374:1 4377:1 4402:1 4404:1 4405:1 4422:2 4425:1 4445:1 4454:1 4462:1 4463:1 4483:1 4515:1 4537:1 4563:1 4580:1 4609:1 4625:1 4629:3 4657:1 4665:2 4669:1 4671:1 4685:1 4715:1 4718:1 4736:1 4748:4 4772:1 4773:1 4781:1 4796:1 4832:1 4863:1 4873:1 4880:1 4889:1 4896:1 4932:2 4935:1 4938:1 4954:1 4967:1 4969:1 4970:1 5001:1 5012:1 5017:2 5026:3 5035:1 5053:1 5054:2 5058:2 5074:1 5078:1 5096:2 5131:1 5151:1 5158:1 5162:2 5178:2 5186:1 5187:2 5206:1 5238:1 5240:1 5242:2 5247:2 5315:1 5318:2 5327:1 5331:2 5336:1 5382:7 5412:1 5418:1 5431:1 5442:1 5447:1 5500:4 5520:2 5521:1 5526:1 5527:1 5529:1 5535:2 5537:1 5541:1 5542:1 5546:1 5548:2 5549:1 5551:1 5566:1 5574:1 5578:1 5646:2 5679:1 5690:1 5693:1 5697:2 5712:1 5713:1 5733:1 5734:1 5741:1 5757:2 5760:3 5767:1 5774:1 5788:1 5792:1 5805:2 5807:3 5823:3 5829:1 5843:3 5861:1 5896:2 5923:1 5924:1 5928:1 5941:4 5963:1 5967:1 5980:1 5983:2 5998:3 6015:1 6027:1 6031:1 6037:1 6038:1 6050:1 6051:1 6061:1 6063:1 6069:1 6085:3 6106:1 6126:1 6143:2 6171:1 6218:1 6232:1 6268:1 6273:1 6275:1 6287:3 6310:1 6333:1 6350:1 6382:1 6390:1 6394:1 6395:2 6397:1 6423:2 6440:1 6453:1 6479:1 6483:1 6488:1 6536:1 6547:1 6570:1 6579:1 6594:1 6628:2 6633:1 6636:1 6656:1 6725:1 6742:3 6745:1 6749:1 6764:1 6775:1 6779:1 6780:1 6825:3 6831:3 6850:1 6866:1 6920:1 6931:3 6938:1 6945:1 6955:1 7021:1 7026:1 7035:1 7037:1 7044:2 7053:2 7055:1 7056:3 7058:1 7060:2 7064:2 7066:1 7071:3 7073:4 7113:1 7119:1 7122:1 7129:1 7130:1 7141:1 7152:1 7154:2 7165:2 7167:1 7168:2 7184:1 7189:2 7220:2 7229:1 7231:2 7248:1 7308:1 7325:2 7328:2 7330:1 7331:4 7332:1 7338:1 7365:2 7370:1 7389:1 7403:1 7406:1 7432:3 7453:1 7456:1 7463:1 7486:1 7489:1 7526:1 7527:1 7535:1 7544:1 7554:1 7610:2 7613:1 7615:1 7625:1 7628:1 7629:4 7644:1 7679:1 7714:1 7732:1 7739:1 7746:1 7748:1 7758:2 7774:1 7785:1 7797:1 7805:1 7811:2 7823:1 7824:1 7832:1 7851:2 7882:5 7884:2 7887:2 7892:1 7923:2 7927:1 7930:1 7931:1 7939:2 7960:1 7969:1 7979:3 7991:1 8032:1 8044:1 8047:1 8059:1 8087:1 8099:1 8111:1 8133:1 8137:3 8152:1 8190:1 8219:2 8235:1 8253:1 8262:3 8288:1 8300:1 8305:1 8324:2 8327:1 8329:1 8335:2 8338:1 8344:1 8347:1 8348:1 8360:1 8368:1 8393:1 8395:1 8407:1 8408:1 8414:1 8422:1 8444:1 8448:1 8457:2 8459:3 8461:2 8462:1 8489:3 8514:1 8521:1 8549:2 8551:6 8569:2 8571:1 8602:1 8607:2 8609:1 8620:21 8629:1 8641:2 8642:5 8655:2 8669:1 8678:1 8689:2 8690:1 8697:1 8707:1 8722:1 8737:1 8746:1 8761:1 8769:1 8785:3 8792:1 8817:1 8819:1 8833:1 8855:4 8860:1 8863:1 8869:1 8873:1 8876:1 8902:1 8912:1 8914:1 8921:3 8950:1 8957:2 8975:2 8979:1 8985:1 8995:1 9019:1 9025:1 9028:3 9039:1 9052:1 9074:1 9076:2 9082:3 9087:2 9088:1 9092:1 9110:4 9127:1 9156:3 9157:10 9170:1 9171:1 9180:1 9188:1 9207:1 9208:2 9214:1 9216:2 9222:1 9235:1 9243:2 9252:2 9253:1 9266:1 9282:1 9298:1 9333:1 9340:1 9353:1 9397:2 9402:1 9406:1 9413:1 9419:1 9426:1 9456:1 9493:1 9499:1 9525:1 9534:2 9538:1 9546:1 9549:1 9562:1 9585:1 9593:1 9599:1 9605:3 9610:1 9611:1 9626:1 9627:1 9651:1 9656:1 9671:1 9691:2 9693:1 9698:1 9711:1 9719:1 9748:1 9769:1 9777:2 9806:1 9824:2 9825:2 9826:7 9836:1 9845:1 9849:1 9853:1 9865:3 9875:1 9877:1 9896:1 9921:1 9926:1 9928:1 9943:1 9950:2 9983:1 9992:6 10025:1 10114:1 10164:1 10183:1 10193:2 10202:1 10208:1 10226:1 10239:2 10255:1 10258:1 10260:1 10269:2 10279:4 10306:1 10314:1 10326:1 10357:2 10362:1 10365:1 10377:1 10385:1 10390:2 10413:1 10415:1 10472:2 10522:1 10542:1 10556:1 10572:2 10573:2 10574:1 10593:1 10604:1 10606:1 10623:1 10629:1 10640:1 10643:1 10650:2 10655:1 10656:1 10686:1 10700:3 10702:1 10719:2 10753:1 10771:1 10782:1 10783:1 10785:1 10791:1 10792:1 10795:1 10796:1 10797:1 10838:1 10874:1 10883:1 10888:1 10931:4 10947:1 10954:2 10966:1 10980:1 10990:1 11020:1 11021:1 11027:1 11039:1 11063:1 11070:1 11101:1 11114:1 11115:1 11122:1 11140:1 11150:1 11158:1 11159:3 11197:1 11213:2 11220:2 11274:2 11278:1 11282:2 11291:2 11293:1 11298:1 11304:1 11310:1 11312:2 11313:2 11326:1 11333:1 11341:1 11342:1 11346:1 11373:8 11386:2 11390:1 11401:1 11403:3 11423:1 11442:3 11443:1 11451:1 11482:3 11483:1 11486:1 11493:1 11536:1 11547:1 11554:1 11567:1 11571:1 11579:1 11583:1 11584:1 11591:1 11594:1 11600:1 11601:2 11604:1 11608:3 11630:1 11689:1 11690:1 11691:1 11701:1 11706:1 11712:1 11717:1 11737:1 11746:3 11769:1 11771:1 11785:1 11808:1 11809:2 11810:1 11834:1 11850:6 11876:2 11888:1 11921:1 11926:6 11959:2 11960:2 11961:2 11977:1 11994:1 12009:1 12015:1 12020:2 12024:1 12035:1 12043:3 12048:1 12097:1 12099:1 12100:1 12102:1 12119:1 12128:1 12134:1 12136:1 12149:1 12189:1 12205:1 12230:1 12242:1 12270:1 12275:2 12300:2 12312:1 12316:1 12339:1 12341:1 12343:1 12349:1 12380:1 12408:1 12418:1 12420:2 12440:1 12442:2 12444:1 12457:2 12458:2 12474:1 12475:1 12476:1 12477:1 12486:1 12496:1 12497:2 12509:1 12510:2 12517:1 12520:1 12536:1 12562:2 12563:1 12570:3 12574:1 12596:1 12623:2 12632:1 12654:1 12688:2 12690:1 12692:1 12705:1 12716:4 12722:1 12733:1 12735:1 12736:1 12744:1 12746:3 12756:1 12764:1 12774:1 12776:1 12784:1 12822:1 12825:1 12843:1 12846:1 12860:1 12865:1 12888:1 12901:1 12917:1 12922:1 12933:1 12934:1 12960:1 12965:1 12973:1 12997:1 13017:1 13022:1 13041:1 13068:1 13092:3 13121:1 13151:2 13164:1 13167:1 13173:4 13178:1 13180:1 13182:3 13186:1 13195:1 13205:1 13213:1 13229:1 13234:1 13239:1 13240:1 13253:1 13256:1 13265:3 13269:2 13297:3 13325:1 13351:3 13363:1 13405:1 13408:1 13434:1 13439:1 13467:1 13476:1 13481:1 13502:2 13511:2 13513:3 13516:1 13521:1 13528:1 13546:1 13554:1 13558:1 13561:1 13575:2 13581:3 13602:1 13625:1 13626:4 13627:1 13637:1 13648:1 13650:1 13654:5 13658:2 13674:1 13685:1 13688:1 13698:3 13714:1 13728:2 13740:1 13746:1 13757:1 13765:1 13774:1 13778:2 13784:1 13786:1 13806:1 13834:3 13844:3 13854:3 13864:1 13873:2 13890:1 13901:1 13914:1 13940:1 13954:1 13959:1 13969:1 14011:1 14034:1 14036:1 14045:1 14056:1 14067:1 14072:1 14101:1 14108:1 14117:1 14118:1 14120:2 14122:1 14126:1 14129:2 14132:1 14157:1 14161:1 14198:2 14206:1 14243:1 14266:1 14267:1 14275:1 14284:1 14291:1 14302:1 14328:1 14329:5 14350:1 14353:2 14356:1 14360:1 14371:2 14392:1 14408:1 14472:1 14505:1 14520:1 14558:1 14584:1 14601:1 14603:1 14623:1 14632:2 14682:1 14759:1 14773:1 14783:1 14795:1 14807:1 14819:1 14821:8 14841:1 14846:2 14849:1 14850:1 14853:1 14858:1 14872:1 14887:6 14905:1 14910:1 14921:1 14923:1 14938:1 14976:2 14978:6 14992:1 14994:3 14996:1 15000:1 15025:1 15028:1 15039:2 15048:1 15054:2 15069:1 15075:5 15081:1 15090:3 15131:1 15135:2 15139:3 15150:1 15161:1 15170:1 15183:1 15187:1 15218:1 15238:1 15243:3 15263:1 15281:1 15291:1 15293:1 15314:1 15325:1 15346:1 15368:1 15373:1 15377:1 15384:1 15393:1 15401:1 15411:1 15444:1 15450:1 15458:1 15477:1 15489:4 15496:2 15516:1 15548:1 15583:1 15585:1 15590:1 15596:1 15601:1 15647:1 15657:1 15663:1 15668:1 15669:1 15674:2 15681:1 15699:1 15702:1 15759:1 15784:2 15800:1 15802:1 15805:2 15817:2 15829:1 15840:1 15853:3 15880:2 15899:2 15948:1 15949:1 15958:1 15963:1 15996:1 16011:1 16025:1 16030:1 16039:1 16087:2 16097:1 16098:1 16102:1 16111:1 16113:1 16131:1 16182:1 16208:1 16209:1 16214:3 16227:2 16228:1 16251:2 16252:1 16257:1 16272:1 16277:1 16287:1 16292:2 16313:1 16321:1 16336:1 16347:1 16352:3 16358:2 16371:1 16384:1 16391:1 16411:1 16426:1 16438:1 16460:1 16480:1 16487:1 16523:6 16528:2 16540:2 16544:1 16548:9 16554:1 16601:1 16624:1 16681:1 16697:2 16701:2 16716:1 16739:1 16760:3 16766:1 16777:6 16818:1 16822:3 16824:1 16849:3 16866:1 16870:2 16897:5 16916:6 16917:1 16940:1 16941:1 17016:1 17023:1 17054:2 17061:2 17070:1 17091:3 17093:1 17102:1 17111:1 17116:1 17117:1 17148:2 17180:1 17192:1 17207:2 17218:1 17256:1 17282:1 17290:1 17297:1 17314:1 17331:2 17337:1 17343:2 17354:2 17376:1 17388:1 17408:2 17461:1 17476:1 17483:1 17513:1 17516:1 17520:1 17525:3 17530:1 17538:1 17544:1 17565:1 17568:3 17580:1 17583:2 17618:1 17624:3 17696:1 17700:1 17701:1 17716:2 17717:2 17733:3 17739:1 17753:1 17757:1 17770:1 17772:2 17773:1 17774:1 17778:2 17779:1 17787:1 17800:1 17804:4 17812:1 17843:1 17868:1 17871:2 17876:1 17877:2 17879:5 17899:1 17906:4 17921:1 17935:1 17947:1 17948:1 17964:1 17986:1 17988:1 17993:1 17997:1 18029:1 18031:1 18032:1 18041:3 18054:1 18055:1 18071:3 18077:1 18089:1 18097:1 18098:1 18109:2 18121:1 18132:1 18147:1 18152:1 18156:3 18159:3 18164:1 18169:1 18182:1 18218:1 18223:1 18306:1 18307:1 18334:1 18339:2 18345:1 18346:1 18355:1 18367:1 18376:1 18379:1 18382:1 18397:1 18410:1 18424:2 18429:2 18436:1 18445:7 18450:1 18453:1 18493:1 18494:1 18509:1 18537:1 18556:1 18562:1 18573:1 18582:1 18624:1 18634:1 18643:1 18650:1 18653:1 18677:1 18678:1 18706:1 18709:1 18723:1 18729:1 18738:2 18742:1 18753:1 18754:1 18767:1 18774:3 18829:3 18836:1 18880:3 18884:1 18920:1 18922:1 18931:1 18937:1 18943:3 18944:1 18945:1 18970:1 18978:1 18994:2 19022:1 19030:1 19040:1 19041:1 19046:1 19058:1 19060:1 19067:1 19069:1 19095:1 19097:1 19120:1 19121:1 19122:1 19154:1 19163:1 19224:1 19234:1 19288:2 19290:1 19292:1 19301:1 19302:1 19322:1 19369:1 19372:1 19406:1 19417:1 19467:1 19469:1 19473:2 19476:2 19477:1 19483:1 19485:1 19489:2 19490:1 19515:1 19526:3 19553:3 19555:3 19594:1 19614:1 19635:1 19651:1 19657:3 19660:1 19665:4 19670:1 19677:1 19678:3 19698:1 19710:1 19711:1 19722:1 19730:1 19732:1 19739:1 19757:1 19764:1 19777:1 19798:1 19802:1 19803:4 19807:1 19809:1 19816:1 19837:1 19872:1 19876:2 19884:2 19887:1 19899:1 19900:1 19950:1 19970:1 19977:1 19980:1 20026:1 20034:2 20073:1 20074:1 20081:1 20111:1 20112:1 20126:1 20132:1 20152:2 20174:1 20201:1 20230:1 20269:1 20306:1 20318:1 20333:1 20344:1 20352:1 20355:1 20358:1 20394:2 20401:1 20402:1 20403:1 20411:1 20413:1 20480:2 20492:2 20522:1 20531:2 20551:1 20590:1 20605:1 20610:1 20613:3 20624:1 20634:2 20641:1 20661:1 20708:1 20714:1 20731:1 20735:1 20753:1 20757:2937 20781:1 20793:1 20795:1 20832:1 20875:2 20886:1 20912:1 20941:1 20950:1 20951:1 20963:1 20977:1 20978:1 20991:1 20996:1 20998:1 20999:1 21000:1 21013:1 21049:1 21073:1 21109:1 21111:1 21120:1 21121:1 21133:1 21136:1 21145:1 21154:1 21167:1 21190:1 21212:1 21224:1 21225:1 21230:1 21233:2 21259:1 21262:3 21266:1 21330:1 21332:2 21336:1 21337:1 21351:1 21371:1 21374:1 21379:1 21389:1 21414:1 21423:2 21435:1 21437:1 21438:1 21455:1 21472:1 21503:1 21514:1 21521:8 21551:1 21553:6 21558:1 21565:1 21587:3 21596:1 21617:1 21643:2 21649:1 21657:1 21669:1 21688:1 21700:1 21710:1 21736:1 21737:3 21778:1 21783:1 21806:2 21816:1 21831:1 21842:1 21873:1 21878:1 21911:1 21915:2 21974:1 21982:1 21988:1 22007:1 22036:1 22042:1 22043:1 22049:1 22056:1 22070:1 22105:1 22170:1 22178:1 22182:2 22188:1 22204:1 22207:1 22230:1 22251:1 22252:3 22266:1 22276:1 22277:1 22278:6 22299:3 22303:1 22305:1 22320:2 22328:1 22331:1 22332:1 22352:1 22361:1 22375:1 22377:2 22415:2 22419:1 22445:3 22448:1 22460:1 22482:1 22483:1 22493:1 22552:1 22582:1 22655:4 22666:1 22683:1 22712:1 22719:2 22722:1 22782:1 22784:1 22813:1 22818:2 22819:1 22824:1 22838:1 22848:1 22865:1 22867:2 22872:1 22894:4 22897:2 22901:1 22903:1 22909:2 22912:1 22915:1 22918:1 22949:1 22960:1 22963:1 22968:1 22986:1 22992:1 23006:1 23016:1 23022:2 23039:1 23042:1 23068:2 23083:3 23112:1 23114:2 23128:1 23136:1 23145:1 23157:5 23163:2 23173:1 23175:1 23183:1 23185:1 23192:1 23196:1 23198:4 23202:1 23213:1 23216:2 23222:1 23264:1 23285:1 23287:2 23291:5 23302:1 23315:1 23320:1 23322:3 23337:2 23363:1 23415:1 23421:1 23426:1 23427:1 23429:1 23430:1 23433:2 23435:1 23438:1 23453:2 23454:1 23456:2 23472:1 23473:1 23478:2 23487:1 23541:2 23553:1 23555:1 23568:1 23570:1 23572:1 23574:1 23600:4 23603:2 23605:1 23618:1 23661:1 23684:3 23700:1 23701:1 23702:2 23704:1 23725:1 23730:1 23734:1 23741:3 23746:1 23754:1 23759:1 23774:1 23793:1 23822:1 23834:2 23839:3 23853:1 23907:1 23926:1 23927:2 23930:1 23938:1 23945:2 23951:1 23958:2 23962:2 23973:1 23976:2 24000:1 24012:1 24026:1 24131:2 24136:2 24139:2 24162:2 24173:2 24174:1 24217:1 24224:1 24236:1 24280:1 24287:2 24300:2 24305:3 24316:1 24322:2 24333:1 24340:1 24342:1 24355:2 24383:1 24384:1 24391:2 24394:1 24404:1 24414:1 24441:1 24443:1 24467:3 24475:1 24507:1 24524:1 24525:1 24557:1 24559:1 24563:1 24575:1 24576:1 24590:1 24596:1 24610:1 24614:1 24633:1 24662:1 24665:1 24700:1 24701:1 24702:1 24703:1 24718:1 24738:2 24742:1 24755:3 24770:3 24776:1 24789:1 24793:9 24797:1 24800:1 24805:1 24812:1 24819:1 24820:1 24839:1 24854:1 24858:1 24868:1 24870:1 24875:1 24876:1 24890:1 24896:1 24898:2 24931:1 24938:1 24965:1 24996:1 25007:1 25046:1 25059:2 25069:2 25121:1 25132:1 25133:1 25135:1 25154:1 25167:1 25172:1 25188:1 25190:1 25259:1 25275:1 25306:1 25319:1 25356:2 25364:1 25366:1 25383:1 25442:2 25460:2 25466:1 25480:1 25481:2 25483:1 25485:1 25504:1 25559:1 25564:1 25583:1 25588:1 25591:1 25593:2 25605:1 25607:1 25615:1 25625:1 25634:1 25636:1 25665:2 25668:1 25702:1 25718:2 25747:1 25750:1 25752:1 25770:1 25777:1 25784:3 25792:1 25796:1 25803:1 25811:2 25812:1 25814:1 25821:1 25860:1 25862:2 25873:1 25876:2 25877:1 25883:1 25887:1 25896:1 25898:1 25902:1 25905:1 25914:1 25935:2 25965:2 25968:1 25969:1 25991:2 26018:1 26038:1 26039:1 26044:1 26047:1 26054:1 26068:1 26113:1 26123:1 26128:1 26135:1 26155:3 26157:1 26166:1 26173:1 26195:2 26211:2 26219:2 26256:1 26271:1 26273:2 26276:3 26277:1 26320:1 26333:1 26339:2 26343:1 26370:1 26371:1 26384:1 26411:1 26435:1 26460:2 26472:1 26474:1 26534:1 26574:1 26623:1 26625:2 26639:1 26688:1 26700:1 26713:1 26716:1 26729:1 26735:1 26740:1 26758:1 26813:1 26817:1 26828:3 26838:1 26845:8 26849:1 26852:1 26853:1 26861:1 26863:1 26887:1 26912:2 26920:2 26921:1 26951:1 26955:1 26964:1 26977:1 26994:1 26998:3 27000:3 27007:1 27020:1 27037:2 27040:2 27047:1 27048:1 27053:1 27075:1 27093:1 27112:1 27135:1 27140:1 27177:1 27190:2 27207:2 27209:3 27213:3 27217:1 27224:1 27241:1 27246:1 27252:2 27264:1 27284:1 27292:1 27302:1 27328:2 27344:1 27365:1 27375:1 27412:1 27415:1 27422:2 27457:4 27462:3 27470:1 27480:1 27487:1 27524:1 27539:1 27543:1 27563:2 27565:1 27590:1 27594:3 27600:1 27628:1 27640:1 27663:1 27678:2 27689:2 27706:1 27717:1 27741:1 27775:1 27783:1 27799:5 27803:3 27804:1 27835:1 27845:1 27853:1 27874:1 27875:1 27878:2 27879:1 27889:1 27903:1 27904:1 27943:1 27964:2 27965:1 27975:3 27978:2 27979:1 27985:1 27988:1 27992:1 27994:1 28006:1 28012:2 28019:1 28037:1 28047:1 28055:1 28061:3 28062:1 28072:3 28084:2 28086:1 28097:2 28108:1 28132:2 28139:1 28174:1 28175:1 28207:1 28208:1 28210:1 28224:1 28228:1 28229:1 28236:1 28262:1 28275:1 28278:1 28344:2 28351:1 28374:2 28375:1 28377:2 28384:1 28394:1 28397:1 28412:1 28424:1 28442:1 28488:1 28491:2 28507:1 28509:1 28511:1 28526:1 28538:1 28540:1 28547:1 28551:1 28562:1 28571:1 28581:1 28587:2 28591:1 28593:1 28604:1 28620:1 28635:1 28638:2 28670:2 28674:1 28689:1 28706:1 28720:4 28739:1 28745:1 28746:1 28766:1 28781:1 28792:2 28810:4 28827:2 28841:1 28848:4 28854:1 28887:1 28888:1 28941:1 28946:1 28992:1 28994:1 29027:2 29042:1 29049:1 29051:1 29054:1 29059:1 29067:1 29095:1 29104:1 29115:1 29125:1 29126:1 29134:1 29139:4 29141:1 29145:1 29146:2 29176:1 29198:1 29228:1 29251:1 29254:1 29273:2 29289:2 29296:3 29303:1 29312:1 29334:1 29356:2 29392:2 29413:1 29453:1 29455:2 29462:1 29463:1 29465:2 29494:1 29509:1 29587:1 29593:1 29600:1 29627:1 29628:1 29633:1 29638:1 29640:1 29647:3 29678:1 29681:3 29724:1 29727:2 29732:1 29738:1 29740:1 29744:1 29745:1 29746:2 29759:1 29760:2 29763:1 29770:2 29792:1 29822:1 29853:1 29878:1 29883:1 29894:2 29899:2 29900:1 29905:1 29942:2 29947:1 29993:1 30007:1 30012:2 30016:2 30021:2 30042:1 30044:2 30052:1 30053:1 30083:1 30085:1 30090:1 30092:1 30093:1 30095:1 30096:1 30101:1 30106:1 30143:1 30156:1 30160:1 30163:2 30169:1 30178:1 30186:2 30202:1 30203:1 30209:1 30210:2 30253:1 30262:1 30266:2 30269:1 30275:1 30280:1 30306:1 30309:1 30318:1 30322:1 30323:1 30333:1 30335:1 30345:2 30355:1 30359:1 30390:2 30392:2 30413:1 30447:2 30475:1 30488:2 30505:1 30518:1 30533:2 30557:1 30559:1 30564:2 30571:1 30577:1 30590:1 30632:1 30642:1 30644:1 30663:1 30675:2 30689:1 30692:1 30723:3 30727:1 30732:2 30787:1 30799:1 30817:1 30820:1 30836:8 30837:1 30841:1 30860:1 30862:1 30879:5 30896:2 30906:1 30919:1 30944:1 30985:2 31017:4 31020:1 31025:1 31034:1 31036:1 31057:6 31062:1 31063:1 31075:1 31079:1 31080:1 31095:1 31112:1 31116:1 31123:3 31126:1 31144:1 31156:2 31179:1 31188:2 31191:1 31209:2 31235:1 31256:1 31281:2 31286:2 31330:1 31332:1 31335:1 31340:1 31342:1 31348:1 31360:1 31370:1 31379:1 31396:3 31398:1 31401:1 31402:1 31422:1 31449:3 31452:1 31469:1 31476:1 31478:1 31567:3 31583:2 31593:3 31603:1 31606:1 31624:2 31628:2 31635:1 31653:1 31659:1 31662:1 31681:1 31688:1 31716:1 31725:1 31735:1 31739:1 31769:1 31807:1 31815:1 31819:1 31837:2 31849:1 31864:1 31880:1 31896:2 31910:1 31937:1 31950:1 31959:1 31984:1 31992:1 31994:1 32016:1 32044:1 32066:1 32080:1 32105:1 32109:1 32120:3 32122:1 32138:1 32163:1 32214:1 32217:1 32221:1 32233:1 32235:1 32243:3 32244:1 32245:3 32246:1 32248:1 32249:1 32250:2 32254:1 32257:2 32258:2 32261:2 32267:1 32278:1 32298:2 32303:1 32306:1 32320:1 32324:1 32333:2 32337:1 32343:1 32350:1 32374:1 32378:1 32382:1
15 6:1 43:1 71:3 91:1 104:2 122:1 166:1 167:4 187:1 189:2 196:1 200:1 224:1 225:1 243:1 244:1 248:1 267:1 282:1 285:3 289:1 335:1 337:2 356:2 370:1 382:1 388:2 406:3 408:1 409:2 443:1 444:2 463:1 468:1 503:3 517:1 529:1 541:2 566:1 586:1 612:1 615:1 616:1 622:1 623:1 645:2 649:1 655:2 661:1 666:1 682:1 685:5 696:1 697:2 699:2 704:1 747:1 768:3 791:1 795:1 796:1 813:4 829:2 892:1 898:1 928:2 935:1 956:2 958:1 959:1 961:1 963:2 968:1 970:1 972:2 978:1 980:1 981:1 985:1 988:2 1014:1 1018:1 1020:2 1023:1 1027:2 1031:1 1039:1 1052:3 1061:1 1065:1 1072:1 1075:1 1103:1 1114:2 1119:3 1149:2 1150:1 1154:2 1167:1 1172:1 1180:1 1205:2 1206:1 1210:1 1235:1 1255:1 1259:2 1273:1 1277:2 1288:2 1297:1 1324:1 1328:3 1337:1 1343:1 1367:2 1374:2 1385:1 1396:1 1407:2 1408:1 1429:1 1431:1 1448:1 1458:1 1465:1 1472:1 1483:1 1484:1 1500:1 1513:1 1562:1 1577:2 1578:1 1586:1 1587:1 1592:5 1629:1 1632:1 1635:2 1641:2 1642:2 1650:1 1651:1 1656:5 1673:1 1682:1 1686:1 1699:1 1724:1 1725:1 1732:1 1733:4 1736:4 1737:1 1744:2 1749:2 1777:1 1778:1 1790:1 1810:2 1813:2 1821:2 1822:2 1824:1 1827:1 1842:3 1843:3 1868:1 1870:1 1874:1 1897:1 1914:1 1915:1 1927:1 1933:1 1948:2 1952:2 1953:1 1956:1 1973:1 1981:2 2007:1 2008:1 2013:1 2032:1 2035:1 2037:1 2040:1 2042:1 2043:2 2047:1 2050:2 2052:1 2088:2 2091:1 2098:1 2100:1 2118:1 2144:1 2156:1 2159:4 2165:1 2171:1 2174:2 2177:1 2191:1 2201:1 2254:1 2273:2 2296:1 2327:1 2334:1 2344:1 2359:1 2364:1 2386:3 2426:1 2449:1 2451:1 2462:2 2463:1 2493:1 2495:1 2501:1 2503:2 2505:3 2509:1 2516:2 2520:2 2522:1 2524:2 2525:2 2528:2 2531:1 2532:4 2533:1 2547:1 2559:2 2561:1 2607:2 2636:1 2674:2 2677:2 2678:1 2707:1 2711:2 2720:2 2747:1 2804:1 2814:2 2833:1 2844:1 2857:1 2860:1 2925:1 2940:2 2948:2 2953:1 2974:1 2977:1 2982:1 2984:1 2991:1 3028:3 3038:1 3091:1 3103:2 3109:1 3112:1 3138:2 3145:1 3155:1 3161:3 3169:4 3170:1 3178:1 3179:1 3198:2 3212:2 3216:4 3228:1 3235:1 3236:1 3238:1 3240:1 3242:2 3247:1 3250:1 3275:1 3280:2 3286:1 3313:1 3321:1 3328:1 3333:1 3348:1 3356:2 3372:1 3400:1 3403:2 3411:1 3432:1 3443:1 3450:1 3483:1 3494:1 3548:2 3562:1 3570:1 3590:1 3600:1 3610:1 3646:3 3658:1 3671:1 3676:1 3699:1 3701:1 3705:1 3708:1 3735:3 3736:1 3779:1 3786:1 3791:1 3803:1 3849:1 3891:1 3892:1 3920:1 3929:1 3935:1 3952:1 3964:2 3968:1 4002:1 4006:1 4014:1 4018:1 4019:1 4032:3 4037:1 4055:1 4066:1 4067:2 4070:1 4083:1 4102:1 4105:1 4124:1 4130:2 4131:3 4151:1 4152:1 4165:1 4171:1 4183:1 4187:1 4189:2 4212:2 4214:2 4250:2 4252:4 4255:2 4260:1 4282:1 4291:1 4292:1 4303:1 4305:1 4307:1 4310:1 4321:1 4340:1 4363:1 4374:1 4377:1 4401:1 4402:1 4404:1 4405:1 4415:1 4422:2 4425:1 4445:1 4454:1 4462:1 4463:1 4483:1 4515:1 4537:1 4563:1 4580:1 4609:1 4625:1 4629:3 4657:1 4665:2 4669:1 4671:1 4685:1 4715:1 4718:1 4736:1 4748:4 4772:1 4773:1 4781:1 4796:1 4832:1 4863:1 4873:1 4880:1 4889:1 4896:2 4932:2 4935:1 4938:1 4954:1 4967:1 4969:1 4970:1 5001:1 5012:1 5017:2 5026:3 5035:1 5053:2 5054:2 5058:2 5074:1 5078:1 5096:2 5131:1 5151:1 5158:2 5162:2 5178:2 5186:1 5187:2 5206:1 5238:1 5240:1 5242:2 5247:2 5315:1 5318:2 5327:1 5331:2 5336:1 5382:7 5412:1 5418:1 5431:1 5442:1 5447:2 5500:4 5520:2 5521:1 5526:1 5527:1 5529:1 5535:2 5537:1 5541:1 5542:1 5546:1 5548:2 5549:1 5551:1 5566:1 5574:1 5578:1 5646:2 5679:1 5690:1 5693:1 5697:2 5712:1 5713:1 5733:1 5734:1 5741:1 5757:2 5760:3 5767:1 5774:1 5788:1 5792:1 5805:2 5807:3 5823:3 5829:1 5843:3 5861:1 5896:2 5923:1 5924:1 5928:1 5941:4 5963:1 5967:1 5980:1 5983:2 5998:3 6015:1 6027:1 6031:1 6037:1 6038:1 6050:1 6051:1 6061:1 6063:1 6069:1 6085:3 6106:1 6126:1 6143:2 6171:1 6218:1 6232:1 6268:1 6273:1 6275:1 6287:3 6310:1 6333:1 6350:1 6382:1 6390:1 6394:1 6395:2 6397:1 6423:2 6440:1 6453:1 6479:1 6483:1 6488:1 6536:1 6547:1 6570:1 6579:1 6594:1 6628:2 6633:1 6636:1 6656:1 6725:1 6742:4 6745:1 6749:1 6761:1 6764:1 6775:1 6779:1 6780:1 6785:1 6825:3 6831:3 6850:1 6866:1 6906:1 6920:1 6931:3 6938:1 6945:1 6955:1 7021:1 7026:1 7035:1 7037:1 7044:2 7047:1 7053:2 7055:1 7056:3 7058:1 7060:2 7064:2 7066:1 7071:3 7073:4 7113:1 7119:1 7122:1 7129:1 7130:1 7141:1 7152:1 7154:3 7165:2 7167:1 7168:2 7184:1 7189:2 7215:1 7220:2 7229:1 7231:2 7248:1 7308:1 7325:2 7328:2 7330:1 7331:4 7332:1 7338:1 7365:2 7370:1 7389:1 7403:1 7406:1 7432:3 7453:1 7456:1 7463:1 7486:1 7489:1 7526:1 7527:1 7535:1 7544:1 7554:1 7610:2 7613:1 7615:1 7625:1 7628:1 7629:4 7644:1 7679:1 7683:1 7714:1 7732:1 7739:1 7746:1 7748:1 7758:2 7774:1 7785:1 7797:1 7805:1 7811:2 7823:1 7824:1 7832:1 7851:2 7882:5 7884:2 7887:2 7892:1 7910:1 7923:2 7927:1 7930:1 7931:1 7939:2 7960:1 7969:1 7979:4 7991:1 8032:1 8044:1 8047:1 8059:1 8066:1 8087:1 8099:1 8111:1 8133:1 8137:4 8152:1 8190:1 8219:2 8235:1 8253:1 8262:3 8288:1 8300:1 8305:1 8324:2 8327:1 8329:1 8335:2 8338:1 8344:1 8347:1 8348:1 8360:1 8368:1 8379:1 8393:1 8395:1 8407:1 8408:1 8414:1 8422:1 8444:1 8448:1 8457:2 8459:3 8461:2 8462:1 8489:4 8514:1 8521:1 8549:2 8551:6 8569:2 8571:1 8602:1 8607:2 8609:1 8620:21 8629:1 8641:2 8642:5 8655:2 8669:1 8678:1 8681:1 8689:2 8690:1 8697:1 8707:1 8722:1 8737:1 8746:1 8761:1 8769:1 8785:3 8792:1 8817:1 8819:1 8833:1 8855:4 8860:1 8863:1 8869:1 8873:1 8876:1 8902:1 8912:1 8914:1 8921:3 8950:1 8957:2 8975:2 8979:1 8985:1 8995:1 9005:1 9019:1 9025:1 9028:3 9039:1 9052:1 9074:1 9076:2 9082:3 9087:2 9088:1 9092:1 9110:4 9127:1 9156:3 9157:11 9170:1 9171:1 9180:1 9188:1 9207:1 9208:2 9214:1 9216:3 9222:1 9235:1 9243:2 9252:3 9253:1 9266:1 9282:1 9298:1 9333:1 9340:1 9353:1 9397:2 9402:1 9406:1 9413:1 9419:1 9426:1 9456:1 9481:1 9493:1 9499:1 9525:1 9534:2 9538:1 9546:1 9549:1 9562:1 9585:1 9588:1 9593:1 9599:1 9605:3 9610:1 9611:1 9626:1 9627:1 9651:1 9656:1 9671:1 9691:2 9693:1 9698:1 9711:1 9719:1 9748:1 9769:1 9777:2 9806:1 9824:2 9825:2 9826:8 9836:1 9845:1 9849:1 9853:1 9865:3 9875:1 9877:1 9896:1 9914:1 9921:1 9926:1 9928:1 9943:1 9950:2 9983:1 9992:6 10025:2 10114:1 10164:1 10183:1 10192:1 10193:2 10202:1 10208:1 10226:1 10237:1 10239:2 10255:1 10258:1 10260:1 10269:2 10279:4 10306:1 10314:1 10326:1 10357:2 10362:1 10365:1 10377:1 10385:1 10390:2 10413:1 10415:1 10472:2 10522:1 10542:1 10556:1 10572:2 10573:2 10574:1 10593:1 10604:1 10606:1 10623:1 10629:1 10640:1 10643:1 10650:2 10655:1 10656:1 10686:1 10700:3 10702:1 10719:2 10753:1 10771:1 10782:1 10783:1 10785:1 10791:1 10792:1 10795:1 10796:1 10797:1 10838:1 10874:1 10883:1 10888:1 10931:4 10947:1 10954:2 10966:2 10980:1 10990:1 11020:1 11021:1 11027:1 11039:1 11063:1 11070:1 11101:1 11114:1 11115:1 11122:1 11140:1 11150:1 11158:1 11159:3 11175:1 11197:1 11213:2 11220:2 11274:2 11278:1 11282:2 11291:2 11293:1 11298:1 11304:1 11310:1 11312:2 11313:2 11326:1 11333:1 11341:1 11342:1 11346:1 11373:8 11386:2 11390:1 11401:1 11403:3 11423:1 11442:3 11443:1 11451:1 11482:3 11483:1 11486:1 11493:1 11536:1 11547:1 11554:1 11567:1 11571:1 11579:1 11583:1 11584:1 11591:1 11594:1 11600:1 11601:2 11604:1 11608:3 11630:1 11689:1 11690:1 11691:1 11701:1 11706:1 11712:1 11717:1 11737:1 11746:4 11749:1 11769:1 11771:1 11785:1 11808:1 11809:2 11810:1 11834:1 11850:6 11876:2 11888:1 11921:1 11926:6 11959:2 11960:2 11961:2 11977:1 11994:1 12009:1 12015:1 12020:2 12024:1 12035:1 12043:3 12048:1 12097:1 12099:1 12100:1 12102:1 12119:1 12128:1 12134:1 12136:1 12149:1 12189:1 12205:1 12230:1 12242:1 12270:1 12275:2 12300:2 12312:1 12316:1 12339:1 12341:1 12343:1 12349:1 12380:1 12408:1 12418:1 12420:2 12440:1 12442:2 12444:1 12457:2 12458:2 12474:1 12475:1 12476:1 12477:1 12486:1 12496:1 12497:2 12509:1 12510:2 12517:1 12520:1 12536:1 12562:2 12563:1 12570:3 12574:1 12596:1 12623:2 12632:1 12654:1 12688:2 12690:1 12692:1 12705:1 12716:4 12722:1 12733:1 12735:1 12736:1 12744:1 12746:3 12756:1 12764:1 12774:1 12776:1 12784:1 12822:1 12825:1 12843:1 12846:1 12860:1 12865:1 12888:1 12901:1 12917:1 12922:1 12933:1 12934:1 12960:1 12965:1 12973:1 12997:1 13017:2 13022:1 13041:1 13068:1 13092:3 13121:1 13151:2 13164:1 13167:1 13173:4 13178:1 13180:1 13182:3 13186:1 13195:1 13205:1 13213:1 13229:1 13234:1 13239:1 13240:1 13253:1 13256:1 13265:3 13269:2 13297:3 13325:1 13351:3 13363:1 13405:1 13408:1 13434:1 13439:1 13467:1 13476:1 13481:1 13502:2 13511:2 13513:3 13516:1 13521:1 13528:1 13546:1 13554:1 13558:1 13561:1 13575:2 13581:3 13602:1 13625:1 13626:4 13627:1 13637:1 13648:1 13650:1 13654:5 13658:2 13674:1 13685:1 13688:1 13698:3 13714:1 13728:2 13740:1 13746:1 13757:1 13765:1 13774:1 13778:2 13784:1 13786:1 13806:1 13834:5 13844:3 13854:3 13864:1 13873:3 13890:1 13901:1 13914:1 13940:1 13954:1 13959:1 13969:1 14011:1 14034:1 14036:1 14045:1 14056:1 14067:1 14072:1 14101:1 14108:1 14117:1 14118:1 14119:1 14120:2 14122:1 14126:1 14129:2 14132:1 14157:1 14161:1 14174:1 14198:2 14206:1 14243:1 14266:1 14267:1 14275:1 14284:1 14291:1 14302:1 14328:1 14329:5 14350:1 14353:2 14356:1 14360:1 14371:2 14392:1 14408:1 14428:1 14472:1 14505:1 14520:1 14558:1 14584:1 14601:1 14603:1 14620:1 14623:1 14632:2 14682:1 14759:1 14773:1 14783:1 14795:1 14807:1 14819:1 14821:8 14841:1 14846:2 14849:1 14850:1 14853:1 14858:1 14872:1 14887:6 14905:1 14910:1 14921:1 14923:1 14938:1 14976:2 14978:6 14992:1 14994:3 14996:1 15000:1 15025:1 15028:1 15039:2 15048:1 15054:2 15069:1 15075:5 15081:1 15090:3 15131:1 15135:2 15139:3 15150:1 15161:1 15170:1 15183:1 15187:1 15218:1 15238:1 15243:3 15263:1 15281:1 15291:1 15293:1 15314:1 15325:1 15346:1 15368:1 15373:1 15377:1 15384:1 15393:1 15401:1 15411:1 15444:1 15450:1 15458:1 15477:1 15489:4 15496:3 15516:1 15548:1 15583:1 15585:1 15590:1 15596:1 15601:1 15647:1 15657:1 15663:1 15668:2 15669:1 15674:2 15681:1 15699:1 15702:1 15759:1 15784:2 15800:1 15802:1 15805:2 15817:2 15829:1 15840:1 15853:3 15880:2 15899:2 15948:1 15949:1 15958:1 15963:1 15996:1 16011:1 16025:1 16030:1 16039:1 16049:1 16087:2 16097:1 16098:1 16102:1 16111:1 16113:1 16131:1 16182:1 16208:1 16209:1 16214:3 16227:2 16228:1 16251:2 16252:1 16257:1 16272:1 16277:1 16287:1 16292:2 16313:1 16321:1 16330:1 16336:1 16341:1 16347:1 16352:3 16358:2 16371:1 16384:1 16391:1 16411:1 16426:1 16438:1 16460:1 16480:1 16487:1 16523:6 16528:2 16540:3 16543:1 16544:1 16548:9 16554:1 16601:1 16624:1 16681:1 16697:2 16701:2 16716:1 16739:1 16760:3 16766:1 16777:6 16793:1 16816:1 16818:1 16822:3 16824:1 16849:3 16866:1 16870:2 16897:5 16916:6 16917:1 16940:1 16941:1 17001:1 17016:1 17023:1 17054:2 17061:2 17070:1 17091:3 17093:1 17102:1 17111:1 17116:1 17117:1 17148:2 17158:1 17180:1 17192:1 17207:2 17218:1 17256:1 17281:1 17282:1 17290:1 17297:1 17314:1 17331:2 17337:1 17343:2 17354:2 17376:1 17388:1 17405:1 17408:2 17461:1 17476:1 17483:1 17513:1 17516:1 17520:1 17525:4 17530:1 17538:1 17544:1 17565:1 17568:3 17580:1 17583:2 17618:1 17624:3 17696:1 17700:1 17701:1 17716:2 17717:2 17733:4 17739:1 17753:1 17757:1 17770:1 17772:2 17773:1 17774:1 17778:2 17779:1 17787:1 17800:1 17804:4 17812:1 17843:1 17868:1 17871:2 17876:1 17877:2 17879:5 17899:1 17906:4 17921:1 17935:1 17947:1 17948:1 17964:1 17986:1 17988:1 17993:1 17997:1 18029:1 18031:1 18032:1 18041:4 18054:1 18055:1 18070:1 18071:3 18077:1 18089:1 18097:1 18098:1 18109:2 18121:1 18132:1 18147:1 18152:1 18156:4 18159:3 18164:1 18169:1 18182:1 18218:1 18223:1 18306:1 18307:1 18334:1 18339:2 18345:1 18346:1 18355:1 18367:1 18376:1 18379:1 18382:1 18397:1 18410:1 18424:3 18429:2 18436:1 18445:7 18450:1 18453:1 18493:1 18494:1 18509:1 18537:1 18556:1 18562:1 18573:1 18582:1 18624:1 18634:1 18643:1 18650:1 18653:1 18677:1 18678:1 18706:1 18709:1 18723:1 18729:1 18737:1 18738:2 18742:1 18753:1 18754:1 18767:1 18774:4 18829:3 18836:1 18880:3 18884:2 18920:1 18922:1 18931:1 18937:1 18943:3 18944:1 18945:1 18970:1 18978:1 18994:2 19022:1 19030:1 19040:1 19041:1 19046:1 19058:1 19060:1 19067:1 19069:1 19095:1 19097:1 19120:1 19121:1 19122:1 19154:1 19163:1 19224:1 19234:1 19288:2 19290:1 19292:1 19301:1 19302:1 19322:1 19369:1 19372:1 19406:1 19417:1 19467:1 19469:1 19473:2 19476:2 19477:1 19483:1 19485:1 19489:2 19490:1 19515:1 19526:3 19553:3 19555:3 19594:1 19611:1 19614:1 19635:1 19651:1 19657:3 19660:1 19665:4 19670:1 19677:1 19678:3 19698:1 19710:1 19711:1 19722:1 19730:1 19732:1 19739:1 19757:1 19764:1 19777:1 19798:1 19802:1 19803:5 19807:1 19809:1 19816:1 19837:1 19872:1 19876:2 19884:2 19887:1 19899:1 19900:1 19950:1 19970:1 19977:1 19980:1 20026:1 20034:2 20073:1 20074:1 20081:1 20111:1 20112:1 20126:1 20132:1 20152:2 20174:1 20201:1 20230:1 20269:1 20306:1 20318:1 20333:1 20344:1 20352:1 20355:1 20358:1 20394:2 20401:1 20402:1 20403:1 20411:1 20413:1 20480:2 20492:2 20522:1 20531:3 20551:1 20590:1 20605:1 20610:1 20613:3 20624:1 20634:2 20641:1 20658:1 20661:1 20708:1 20714:1 20731:1 20735:1 20753:2 20757:3085 20781:1 20793:1 20795:1 20832:1 20875:2 20886:1 20912:2 20941:1 20950:1 20951:1 20963:1 20970:1 20977:1 20978:1 20991:1 20996:1 20998:1 20999:1 21000:1 21013:1 21049:2 21073:1 21109:1 21111:1 21120:1 21121:1 21133:1 21136:1 21145:1 21154:1 21167:1 21190:1 21212:1 21224:1 21225:1 21230:1 21233:2 21234:1 21259:1 21262:3 21266:1 21330:1 21332:2 21336:1 21337:1 21351:1 21371:1 21374:1 21379:1 21389:1 21396:1 21414:1 21423:2 21435:1 21437:1 21438:1 21455:1 21472:1 21503:1 21514:1 21521:9 21544:1 21551:1 21553:6 21558:1 21565:1 21587:3 21596:1 21617:1 21643:2 21649:2 21657:1 21669:1 21688:1 21700:1 21710:1 21736:1 21737:3 21778:2 21783:1 21806:2 21816:1 21831:1 21842:1 21873:1 21878:1 21911:1 21915:2 21952:1 21974:1 21982:1 21988:1 22007:1 22036:1 22042:1 22043:1 22049:1 22056:1 22070:1 22105:1 22170:1 22178:1 22182:2 22188:1 22204:1 22207:1 22230:1 22251:1 22252:3 22266:1 22276:1 22277:1 22278:6 22299:3 22303:1 22305:1 22320:2 22328:1 22331:1 22332:1 22352:1 22361:1 22375:1 22377:2 22415:2 22419:1 22445:3 22448:1 22449:1 22460:1 22482:1 22483:1 22493:1 22552:1 22582:1 22655:4 22666:1 22683:1 22712:1 22719:2 22722:1 22782:2 22784:1 22813:1 22818:2 22819:1 22824:1 22838:1 22848:1 22859:1 22865:1 22867:2 22872:1 22894:4 22897:2 22901:1 22903:1 22909:2 22912:1 22915:1 22918:1 22949:1 22960:1 22963:1 22968:1 22986:1 22992:1 23006:1 23016:1 23022:2 23039:1 23042:1 23068:2 23083:3 23112:1 23114:2 23128:1 23136:1 23145:1 23157:5 23163:2 23173:1 23175:1 23183:1 23185:1 23192:1 23196:1 23198:4 23202:1 23213:1 23216:2 23222:1 23264:1 23285:1 23287:2 23291:5 23302:1 23315:1 23320:1 23322:3 23337:2 23363:1 23415:1 23421:1 23426:1 23427:1 23429:1 23430:1 23433:2 23435:1 23438:1 23453:2 23454:1 23455:1 23456:2 23472:1 23473:1 23478:2 23487:1 23541:2 23553:1 23555:1 23568:1 23570:1 23572:1 23574:1 23600:4 23603:2 23605:1 23618:1 23620:1 23661:1 23684:3 23700:1 23701:1 23702:2 23704:1 23725:1 23730:1 23734:1 23741:3 23746:1 23754:1 23759:1 23774:1 23793:1 23801:1 23822:1 23834:2 23839:3 23853:1 23907:1 23926:1 23927:2 23930:1 23938:1 23945:2 23951:1 23958:2 23962:2 23973:1 23976:2 23991:1 24000:1 24012:1 24026:1 24131:2 24136:2 24139:2 24162:2 24173:2 24174:1 24217:1 24224:1 24236:1 24280:1 24287:2 24300:2 24305:3 24316:1 24322:2 24333:1 24340:1 24342:2 24355:2 24383:1 24384:1 24391:2 24394:1 24404:1 24414:1 24441:1 24443:1 24467:3 24475:1 24507:1 24524:1 24525:1 24557:1 24559:1 24563:1 24575:1 24576:1 24590:1 24596:1 24606:1 24610:1 24614:1 24633:1 24662:1 24665:1 24671:1 24700:1 24701:1 24702:1 24703:1 24718:1 24738:2 24742:1 24755:3 24770:3 24776:2 24784:1 24789:1 24793:9 24797:1 24800:1 24805:1 24812:1 24819:1 24820:1 24839:1 24854:1 24858:1 24868:1 24870:1 24875:1 24876:1 24890:1 24896:1 24898:2 24931:1 24938:1 24965:1 24996:1 25007:1 25045:1 25046:1 25059:2 25069:2 25121:1 25132:1 25133:1 25135:1 25154:1 25167:1 25172:1 25188:1 25190:1 25259:1 25275:1 25306:1 25319:1 25356:2 25364:1 25366:2 25383:1 25442:2 25458:1 25460:2 25466:1 25480:1 25481:2 25483:1 25485:1 25504:1 25559:1 25564:1 25583:1 25588:1 25591:1 25593:2 25605:1 25607:1 25615:1 25625:1 25634:1 25636:1 25665:2 25668:1 25702:1 25718:2 25747:1 25750:1 25752:1 25770:1 25777:1 25784:3 25792:1 25796:1 25803:1 25806:1 25811:2 25812:1 25814:1 25821:1 25860:1 25862:2 25873:1 25876:2 25877:1 25883:1 25887:1 25896:1 25898:1 25902:1 25905:1 25914:1 25935:2 25965:2 25968:1 25969:1 25991:2 26018:1 26038:1 26039:1 26044:1 26047:1 26054:1 26068:1 26113:1 26123:1 26128:1 26135:1 26155:4 26157:1 26166:1 26173:1 26195:2 26211:2 26219:2 26256:1 26271:1 26273:2 26276:3 26277:1 26320:1 26333:1 26339:2 26343:1 26370:1 26371:1 26384:1 26411:1 26429:1 26435:1 26460:2 26472:1 26474:1 26534:1 26574:1 26623:1 26625:2 26639:1 26688:1 26700:1 26713:1 26716:1 26729:1 26735:1 26740:1 26758:1 26813:1 26817:1 26828:3 26838:1 26845:9 26849:1 26852:1 26853:1 26861:1 26863:1 26887:1 26912:2 26920:2 26921:1 26951:1 26955:1 26964:1 26977:1 26979:1 26994:1 26998:3 27000:3 27007:1 27020:1 27037:2 27040:2 27047:1 27048:1 27053:1 27075:1 27093:1 27112:1 27135:1 27140:1 27177:1 27190:2 27207:2 27209:3 27213:3 27217:1 27224:1 27241:1 27246:1 27252:2 27264:1 27284:1 27292:1 27302:1 27328:2 27344:1 27365:1 27375:1 27412:1 27415:1 27422:2 27457:4 27462:3 27470:1 27480:1 27487:1 27524:1 27539:1 27543:1 27563:2 27565:1 27590:1 27594:3 27600:1 27628:1 27640:1 27663:1 27678:2 27689:2 27706:1 27717:1 27741:1 27775:1 27783:3 27799:5 27803:3 27804:1 27820:1 27835:1 27845:1 27853:1 27874:1 27875:1 27878:2 27879:1 27889:1 27903:1 27904:1 27943:1 27964:2 27965:1 27975:3 27978:2 27979:1 27985:1 27988:2 27992:1 27994:1 28006:1 28012:2 28019:1 28037:1 28047:1 28055:1 28061:3 28062:1 28072:3 28084:2 28086:1 28097:2 28108:1 28132:2 28139:1 28174:1 28175:1 28207:1 28208:1 28210:1 28224:1 28228:1 28229:1 28236:1 28262:1 28275:1 28278:1 28344:2 28351:1 28374:2 28375:1 28377:2 28380:1 28384:1 28394:1 28397:1 28412:1 28424:1 28442:1 28488:1 28491:2 28507:1 28509:1 28511:1 28526:1 28528:1 28538:1 28540:1 28547:1 28551:1 28562:1 28571:1 28581:1 28587:2 28591:1 28593:1 28604:1 28620:1 28635:1 28638:2 28670:3 28674:1 28689:1 28706:1 28720:4 28739:1 28745:1 28746:1 28766:1 28781:1 28792:2 28810:4 28827:2 28832:1 28841:1 28848:4 28854:1 28887:1 28888:1 28941:1 28946:1 28992:1 28994:1 29027:2 29042:1 29049:1 29051:1 29054:1 29059:1 29067:1 29095:1 29104:1 29115:1 29125:1 29126:1 29134:1 29139:4 29141:1 29145:3 29146:2 29176:1 29198:1 29228:1 29251:1 29254:1 29273:2 29289:2 29296:3 29303:1 29312:1 29334:1 29356:2 29365:1 29392:2 29413:1 29453:1 29455:2 29462:1 29463:1 29465:2 29494:1 29509:1 29587:1 29593:1 29600:1 29627:1 29628:1 29633:1 29638:1 29640:1 29647:3 29678:1 29681:3 29724:1 29727:2 29732:1 29738:1 29740:1 29744:2 29745:1 29746:2 29759:1 29760:3 29763:1 29770:2 29792:1 29822:1 29853:1 29878:1 29883:1 29894:2 29899:2 29900:1 29905:1 29942:2 29947:1 29993:1 30007:1 30012:2 30016:2 30021:2 30042:1 30044:2 30052:1 30053:1 30083:1 30085:1 30090:1 30092:1 30093:1 30095:1 30096:1 30101:1 30106:1 30133:1 30143:1 30148:1 30156:1 30160:1 30163:2 30169:1 30178:1 30186:2 30202:1 30203:1 30209:1 30210:2 30253:1 30262:1 30266:2 30269:1 30275:1 30280:1 30306:1 30309:1 30318:1 30322:1 30323:1 30333:1 30335:1 30345:2 30355:1 30359:1 30390:2 30392:2 30413:1 30447:2 30475:1 30488:2 30505:1 30518:1 30533:2 30557:1 30559:1 30564:2 30571:1 30577:1 30590:1 30632:1 30642:1 30644:1 30663:1 30675:2 30689:1 30692:1 30723:3 30727:1 30732:4 30756:1 30763:1 30787:1 30799:1 30817:1 30820:1 30836:9 30837:1 30841:1 30860:1 30862:1 30879:5 30896:2 30906:1 30919:1 30944:1 30985:2 31017:4 31020:1 31025:1 31034:1 31036:1 31057:6 31062:1 31063:1 31075:1 31079:1 31080:1 31095:1 31112:1 31116:1 31123:4 31126:1 31144:1 31156:2 31179:1 31188:2 31191:1 31209:2 31235:1 31256:1 31281:2 31286:2 31323:1 31330:1 31332:1 31335:1 31340:1 31342:1 31348:1 31360:1 31370:1 31379:1 31396:3 31398:1 31401:1 31402:1 31422:1 31434:1 31449:3 31452:1 31469:1 31476:1 31478:1 31567:3 31583:2 31593:3 31603:1 31606:1 31624:3 31628:2 31635:1 31653:1 31659:1 31662:1 31681:1 31688:1 31716:1 31725:1 31735:1 31739:1 31769:1 31807:1 31815:1 31819:1 31837:2 31849:1 31864:1 31880:1 31896:2 31910:1 31937:1 31950:1 31959:1 31984:1 31991:1 31992:1 31994:1 32016:1 32044:1 32066:1 32080:2 32105:1 32109:1 32120:3 32122:1 32138:1 32163:1 32214:1 32217:1 32221:1 32233:1 32235:1 32243:3 32244:1 32245:3 32246:1 32248:1 32249:1 32250:2 32254:1 32257:2 32258:2 32261:2 32267:1 32278:1 32298:2 32303:1 32306:1 32320:1 32324:1 32333:2 32337:1 32343:1 32350:1 32374:1 32378:1 32382:1
15 6:1 43:1 71:3 91:1 104:2 122:1 166:1 167:4 187:1 189:2 196:1 200:1 224:1 225:1 226:1 227:2 243:1 244:1 248:1 267:1 282:1 285:3 289:1 335:1 337:2 356:2 370:1 382:1 388:2 406:4 408:1 409:2 443:1 444:2 463:1 468:1 503:3 517:1 529:1 541:2 566:1 586:1 612:1 615:1 616:1 622:1 623:1 645:3 649:1 655:2 661:1 666:1 682:1 685:5 693:1 696:1 697:2 699:2 704:1 747:1 768:3 791:1 795:1 796:1 813:4 829:2 892:1 898:1 928:2 935:1 956:2 958:1 959:1 961:1 963:2 968:1 970:1 972:2 978:1 980:1 981:1 985:1 988:2 1014:1 1018:1 1020:2 1023:1 1027:2 1031:1 1039:1 1052:3 1061:1 1065:1 1072:1 1075:1 1103:1 1114:2 1119:3 1149:2 1150:1 1154:2 1167:1 1172:1 1180:1 1205:2 1206:1 1210:1 1235:1 1255:1 1259:2 1273:1 1277:2 1288:2 1297:1 1324:1 1328:3 1337:1 1343:1 1367:2 1374:2 1385:1 1396:1 1407:2 1408:1 1429:1 1431:1 1448:1 1458:1 1465:1 1472:1 1483:1 1484:1 1500:1 1513:1 1562:1 1577:2 1578:1 1586:1 1587:1 1592:6 1629:1 1632:1 1635:2 1641:2 1642:2 1650:1 1651:1 1656:5 1673:1 1682:1 1686:1 1699:1 1724:1 1725:1 1732:1 1733:4 1736:4 1737:1 1744:2 1749:2 1777:1 1778:1 1790:1 1810:2 1813:2 1821:2 1822:2 1824:1 1827:1 1842:3 1843:3 1868:1 1870:1 1874:1 1897:1 1914:1 1915:1 1927:1 1933:1 1948:2 1952:2 1953:1 1956:1 1973:1 1981:2 2007:1 2008:1 2013:1 2032:1 2035:1 2037:1 2040:1 2042:1 2043:2 2047:1 2050:2 2052:1 2088:2 2091:1 2098:1 2100:1 2114:1 2118:1 2144:1 2156:1 2159:4 2165:1 2171:1 2174:2 2177:1 2191:1 2201:1 2254:1 2273:2 2296:1 2327:1 2334:1 2344:1 2359:1 2364:1 2386:3 2426:1 2449:1 2451:1 2462:2 2463:1 2493:1 2495:1 2501:1 2503:2 2505:3 2509:1 2516:2 2520:2 2522:1 2524:2 2525:2 2528:2 2531:1 2532:4 2533:1 2547:1 2559:2 2561:1 2607:2 2636:1 2674:2 2677:2 2678:1 2707:1 2711:3 2720:2 2747:1 2804:1 2814:2 2830:1 2833:1 2844:1 2857:1 2860:1 2925:1 2940:2 2948:2 2953:1 2974:1 2977:1 2982:1 2983:1 2984:1 2991:1 3028:3 3038:1 3091:1 3103:2 3109:1 3112:1 3138:2 3145:1 3155:1 3161:3 3169:4 3170:1 3178:1 3179:1 3198:2 3212:2 3216:4 3228:1 3235:1 3236:1 3238:1 3240:1 3242:2 3247:1 3250:1 3275:1 3280:2 3286:1 3313:1 3321:1 3328:1 3333:1 3348:1 3356:2 3372:1 3400:1 3403:2 3411:1 3432:1 3443:1 3450:1 3483:1 3494:1 3548:2 3562:1 3570:1 3590:1 3600:1 3610:1 3646:3 3658:1 3670:1 3671:1 3676:1 3699:1 3701:1 3705:1 3708:1 3735:3 3736:1 3779:1 3786:1 3791:1 3803:1 3849:1 3891:1 3892:1 3920:1 3929:1 3935:1 3952:1 3964:2 3968:1 4002:1 4006:1 4014:1 4018:1 4019:1 4032:3 4037:1 4055:1 4066:1 4067:2 4070:1 4083:1 4102:1 4105:1 4124:1 4130:2 4131:3 4151:1 4152:1 4165:1 4171:1 4183:1 4187:1 4189:2 4212:2 4214:2 4250:2 4252:4 4255:2 4260:1 4282:1 4291:1 4292:1 4303:1 4305:1 4307:1 4310:1 4321:1 4340:1 4363:1 4374:1 4377:1 4401:2 4402:1 4404:1 4405:1 4415:1 4422:2 4425:1 4445:1 4454:1 4462:1 4463:1 4483:1 4515:1 4537:1 4563:2 4580:1 4609:1 4625:1 4629:3 4635:1 4657:1 4665:2 4669:1 4671:1 4685:1 4715:1 4718:1 4736:1 4748:4 4772:1 4773:1 4781:1 4796:1 4832:1 4863:1 4873:1 4880:1 4889:1 4896:2 4932:2 4935:1 4938:1 4954:1 4967:1 4969:1 4970:1 5001:1 5012:1 5017:2 5026:3 5035:1 5053:2 5054:2 5058:2 5074:1 5078:1 5096:2 5131:1 5151:1 5158:2 5162:2 5178:2 5186:1 5187:2 5206:1 5238:1 5240:1 5242:2 5247:2 5315:1 5318:2 5327:1 5331:2 5336:1 5382:7 5412:1 5418:1 5431:1 5442:1 5447:2 5500:4 5520:2 5521:1 5526:1 5527:1 5529:1 5535:2 5537:1 5541:1 5542:1 5546:1 5548:2 5549:1 5551:1 5566:1 5574:1 5578:1 5646:2 5679:1 5690:1 5693:1 5697:2 5712:1 5713:1 5733:1 5734:1 5741:1 5757:2 5760:3 5767:1 5774:1 5788:1 5792:1 5805:2 5807:3 5823:3 5829:1 5843:3 5861:1 5896:2 5923:1 5924:1 5928:1 5941:4 5963:2 5967:1 5980:1 5983:2 5998:3 6015:1 6027:1 6031:1 6034:1 6037:1 6038:1 6050:1 6051:1 6061:1 6063:1 6069:1 6085:3 6106:1 6126:1 6143:2 6171:1 6218:1 6232:1 6268:1 6273:1 6275:1 6287:3 6310:1 6333:1 6350:1 6382:1 6390:1 6394:1 6395:2 6397:1 6423:2 6440:1 6453:1 6479:1 6483:1 6488:1 6536:1 6547:1 6570:1 6579:1 6594:1 6628:2 6633:1 6636:1 6656:1 6725:1 6742:4 6745:1 6749:1 6761:1 6764:1 6775:1 6779:1 6780:1 6785:1 6825:3 6831:3 6850:1 6866:1 6906:1 6920:1 6931:3 6938:1 6945:1 6955:1 7021:1 7026:1 7035:1 7037:1 7044:2 7047:1 7053:2 7055:1 7056:3 7058:1 7060:2 7064:2 7066:1 7071:3 7073:4 7113:1 7119:1 7122:1 7129:1 7130:1 7141:1 7152:1 7154:3 7165:2 7167:1 7168:2 7184:1 7189:2 7215:1 7220:3 7229:1 7231:2 7248:1 7308:1 7325:2 7328:3 7330:1 7331:4 7332:1 7338:1 7365:2 7367:1 7370:1 7389:1 7403:1 7406:1 7432:3 7453:1 7456:1 7463:1 7486:1 7489:1 7526:1 7527:1 7535:1 7544:1 7554:1 7610:2 7613:1 7615:1 7625:1 7628:1 7629:4 7644:1 7679:1 7683:1 7714:1 7732:1 7739:1 7746:1 7748:1 7758:2 7774:1 7785:1 7796:1 7797:1 7805:1 7811:2 7823:1 7824:1 7832:2 7851:2 7882:5 7884:2 7887:2 7892:1 7910:1 7923:3 7927:1 7930:1 7931:1 7939:2 7960:1 7969:1 7979:4 7991:1 8032:1 8044:1 8047:1 8059:1 8066:1 8087:1 8099:1 8111:1 8133:1 8137:5 8152:1 8190:1 8219:2 8235:1 8253:1 8262:3 8288:1 8300:1 8305:1 8324:2 8327:1 8329:1 8335:2 8338:1 8344:1 8347:1 8348:1 8360:1 8368:1 8379:1 8393:1 8395:1 8407:1 8408:1 8414:1 8422:1 8444:1 8448:1 8457:2 8459:3 8461:2 8462:1 8489:4 8514:1 8521:1 8549:2 8551:6 8569:2 8571:1 8602:1 8607:2 8609:1 8620:21 8629:1 8641:2 8642:5 8655:2 8669:1 8678:1 8681:1 8689:2 8690:1 8697:1 8707:1 8722:1 8737:1 8746:1 8761:1 8769:1 8785:3 8792:1 8817:1 8819:1 8833:1 8855:4 8860:1 8863:1 8869:1 8873:1 8876:1 8902:1 8912:1 8914:1 8921:3 8950:1 8957:2 8975:2 8979:1 8985:1 8995:1 9005:1 9019:1 9025:1 9028:3 9039:1 9052:1 9074:1 9076:2 9082:3 9087:2 9088:1 9092:1 9110:4 9127:1 9156:3 9157:11 9170:1 9171:1 9180:1 9188:1 9207:1 9208:2 9214:1 9216:3 9222:1 9235:1 9243:2 9252:3 9253:2 9266:1 9282:1 9298:1 9333:1 9340:1 9353:1 9397:2 9402:1 9406:1 9413:1 9419:1 9426:1 9456:1 9481:1 9493:1 9499:1 9525:1 9534:2 9538:1 9546:1 9549:1 9562:1 9585:1 9588:1 9590:1 9593:1 9597:1 9599:1 9605:3 9610:1 9611:1 9626:1 9627:1 9651:1 9656:1 9671:1 9691:2 9693:1 9698:1 9711:1 9719:1 9748:1 9769:1 9777:2 9806:1 9824:2 9825:2 9826:8 9836:1 9845:1 9849:1 9853:1 9865:3 9875:1 9877:1 9896:1 9914:1 9921:1 9926:1 9928:1 9943:1 9950:2 9956:1 9983:1 9992:7 10025:2 10036:1 10114:1 10164:1 10183:1 10192:1 10193:2 10202:1 10208:1 10226:1 10237:1 10239:2 10255:1 10258:1 10260:1 10269:2 10279:4 10306:1 10314:1 10322:1 10326:1 10357:2 10362:1 10365:1 10377:1 10385:1 10390:2 10413:1 10415:1 10472:2 10522:1 10542:1 10556:1 10572:2 10573:2 10574:1 10592:1 10593:1 10604:1 10606:1 10623:1 10629:1 10640:1 10643:1 10650:2 10655:1 10656:1 10686:1 10700:3 10702:1 10719:2 10753:1 10771:1 10782:1 10783:1 10785:1 10791:1 10792:1 10795:1 10796:1 10797:1 10838:1 10874:1 10883:1 10888:1 10931:4 10947:1 10954:2 10966:2 10980:1 10990:1 11020:1 11021:1 11027:1 11039:1 11063:1 11070:1 11101:1 11114:1 11115:1 11122:1 11140:1 11150:1 11158:1 11159:3 11175:1 11197:1 11213:2 11220:2 11241:1 11274:2 11278:1 11282:2 11291:2 11293:1 11298:1 11304:1 11310:1 11312:2 11313:2 11326:1 11333:1 11341:1 11342:1 11346:1 11373:8 11386:2 11390:1 11401:1 11403:3 11423:2 11442:3 11443:1 11451:1 11482:3 11483:1 11486:1 11493:1 11536:1 11547:1 11554:1 11567:1 11571:1 11579:1 11583:1 11584:1 11591:1 11594:1 11600:1 11601:2 11604:1 11608:3 11630:1 11689:1 11690:1 11691:1 11701:1 11706:1 11712:1 11717:1 11737:1 11746:4 11749:1 11769:1 11771:1 11785:1 11808:1 11809:2 11810:1 11834:1 11850:6 11876:2 11888:1 11921:1 11926:7 11959:2 11960:2 11961:2 11977:1 11994:1 12009:1 12015:1 12020:2 12024:1 12035:1 12043:3 12048:1 12097:1 12099:1 12100:1 12102:1 12119:1 12128:1 12134:1 12136:1 12149:1 12189:1 12205:1 12230:1 12242:1 12270:1 12275:2 12296:2 12300:2 12312:1 12316:1 12339:1 12341:1 12343:1 12349:1 12380:1 12408:1 12418:1 12420:2 12440:1 12442:2 12444:1 12457:2 12458:2 12474:1 12475:1 12476:1 12477:1 12486:1 12496:1 12497:2 12509:1 12510:2 12517:1 12520:1 12536:1 12562:2 12563:1 12570:3 12574:1 12596:1 12623:2 12632:1 12654:1 12688:2 12690:1 12692:1 12705:1 12716:4 12722:1 12733:1 12735:1 12736:1 12744:1 12746:3 12756:1 12764:1 12774:1 12776:1 12784:1 12822:1 12825:1 12841:1 12843:1 12846:1 12860:1 12865:1 12888:1 12901:1 12917:1 12922:1 12933:1 12934:1 12960:1 12965:1 12973:1 12997:1 13017:2 13022:1 13041:1 13068:1 13092:3 13116:1 13121:1 13151:2 13164:1 13167:1 13173:4 13178:1 13180:1 13182:3 13186:1 13195:1 13205:1 13213:1 13229:1 13234:1 13239:1 13240:1 13253:1 13256:1 13265:3 13269:2 13297:3 13325:1 13351:3 13363:1 13405:1 13408:1 13434:1 13439:1 13467:1 13476:1 13481:1 13502:2 13511:2 13513:3 13516:1 13521:1 13528:1 13546:1 13554:1 13558:1 13561:1 13575:2 13581:3 13602:1 13625:1 13626:4 13627:1 13637:1 13648:1 13650:1 13654:5 13658:2 13674:1 13685:1 13688:1 13698:3 13714:1 13728:3 13740:1 13746:1 13757:1 13765:1 13774:1 13778:2 13784:1 13786:1 13806:1 13834:5 13844:3 13854:3 13864:1 13873:3 13890:1 13901:1 13914:1 13940:1 13954:1 13959:1 13969:1 13980:1 14011:1 14034:1 14036:1 14045:1 14056:1 14067:1 14072:1 14101:1 14108:1 14117:1 14118:1 14119:1 14120:2 14122:1 14126:1 14129:2 14132:1 14157:1 14161:1 14174:1 14198:2 14206:1 14243:1 14266:1 14267:1 14275:1 14284:1 14291:1 14302:1 14328:1 14329:5 14350:1 14353:2 14356:1 14360:1 14371:2 14392:1 14408:1 14428:1 14472:1 14505:1 14520:1 14558:1 14584:1 14601:1 14603:1 14620:1 14623:1 14632:2 14682:1 14755:1 14759:1 14773:1 14783:1 14795:1 14807:1 14819:1 14821:9 14841:1 14846:2 14849:1 14850:1 14853:1 14858:1 14872:1 14887:6 14905:1 14910:1 14921:1 14923:1 14938:1 14976:2 14978:7 14992:1 14994:4 14996:1 15000:1 15025:1 15028:1 15039:2 15048:1 15054:2 15069:2 15075:5 15081:1 15090:3 15131:1 15135:2 15139:3 15150:1 15161:1 15170:1 15183:1 15187:1 15218:1 15238:1 15243:3 15263:1 15281:1 15291:1 15293:1 15314:1 15325:1 15346:1 15368:1 15373:1 15377:1 15384:1 15393:1 15401:1 15411:1 15444:1 15450:1 15458:1 15477:1 15489:5 15496:3 15516:1 15548:1 15583:1 15585:1 15590:1 15596:1 15601:1 15647:1 15657:1 15663:1 15668:2 15669:1 15674:2 15681:1 15699:1 15702:1 15759:1 15784:2 15800:1 15802:1 15805:2 15817:2 15826:1 15829:1 15840:1 15853:3 15880:2 15899:2 15948:1 15949:1 15958:1 15963:1 15996:1 16011:1 16025:1 16030:1 16039:1 16049:1 16087:2 16097:1 16098:1 16102:1 16111:1 16113:1 16131:1 16182:1 16208:1 16209:1 16214:3 16227:2 16228:1 16251:2 16252:1 16257:1 16272:1 16277:1 16287:1 16292:2 16313:1 16321:1 16330:1 16336:1 16341:1 16347:1 16352:3 16358:2 16371:1 16384:1 16391:1 16411:1 16426:1 16438:2 16460:1 16480:1 16487:1 16523:6 16528:2 16540:3 16543:1 16544:1 16548:9 16554:1 16601:1 16624:1 16681:1 16697:2 16701:2 16716:1 16739:1 16752:1 16760:3 16766:1 16777:6 16793:1 16816:1 16818:1 16822:3 16824:1 16849:3 16866:1 16870:2 16897:5 16916:6 16917:1 16940:1 16941:1 17001:1 17016:1 17023:1 17054:2 17061:2 17070:1 17091:3 17093:1 17102:1 17111:1 17116:1 17117:1 17148:2 17158:1 17180:1 17192:1 17207:2 17218:1 17256:1 17281:1 17282:1 17290:1 17297:2 17314:1 17323:1 17331:3 17337:1 17343:2 17354:2 17376:1 17388:1 17405:1 17408:2 17461:1 17476:1 17483:1 17513:1 17516:1 17520:1 17525:5 17530:1 17538:1 17544:1 17565:1 17568:3 17580:1 17583:2 17618:1 17624:3 17696:1 17700:1 17701:1 17716:2 17717:2 17733:4 17739:1 17753:1 17757:1 17770:1 17772:2 17773:1 17774:1 17778:2 17779:1 17787:1 17800:1 17804:4 17812:1 17843:1 17868:1 17871:2 17876:1 17877:2 17879:5 17899:1 17906:4 17921:1 17935:1 17947:1 17948:1 17964:1 17986:1 17988:1 17993:1 17997:1 18029:1 18031:1 18032:1 18041:4 18054:1 18055:1 18070:1 18071:3 18077:1 18089:1 18097:1 18098:1 18109:2 18121:1 18132:1 18147:1 18152:1 18156:5 18159:3 18164:1 18169:1 18182:1 18218:1 18223:1 18306:1 18307:1 18334:1 18339:2 18345:1 18346:1 18355:1 18367:1 18376:1 18379:1 18382:1 18397:1 18410:2 18424:3 18429:2 18436:1 18445:7 18450:1 18453:1 18493:1 18494:1 18509:1 18537:1 18556:1 18562:1 18573:1 18582:1 18624:1 18634:1 18643:1 18650:1 18653:1 18677:1 18678:1 18706:1 18709:1 18723:1 18729:1 18737:1 18738:2 18742:1 18753:1 18754:1 18767:1 18774:4 18829:3 18836:1 18842:1 18880:3 18884:2 18920:1 18922:1 18931:1 18937:1 18943:3 18944:1 18945:1 18970:1 18978:1 18994:2 19022:1 19030:1 19040:1 19041:1 19046:1 19058:1 19060:1 19067:1 19069:1 19095:1 19097:1 19120:1 19121:1 19122:1 19154:1 19163:1 19224:1 19234:1 19288:2 19290:1 19292:1 19301:1 19302:1 19322:1 19369:1 19372:1 19406:1 19417:1 19467:1 19469:1 19473:2 19476:2 19477:1 19483:1 19485:1 19489:2 19490:1 19515:1 19526:3 19553:3 19555:3 19594:1 19611:1 19614:1 19635:1 19651:1 19657:3 19660:1 19665:4 19670:1 19677:1 19678:3 19698:1 19710:1 19711:1 19722:1 19730:1 19732:1 19739:1 19757:1 19764:1 19777:1 19798:1 19802:1 19803:5 19807:1 19809:1 19816:1 19837:1 19872:1 19876:2 19884:2 19887:1 19899:1 19900:1 19950:1 19970:1 19977:1 19980:1 20026:1 20034:2 20073:1 20074:1 20081:1 20111:1 20112:1 20126:1 20132:1 20152:2 20174:1 20201:1 20230:1 20269:1 20306:1 20318:1 20333:1 20344:1 20352:1 20355:1 20358:1 20394:2 20401:1 20402:1 20403:1 20411:1 20413:1 20480:2 20492:2 20522:1 20531:3 20551:1 20589:1 20590:1 20601:1 20605:1 20610:1 20613:3 20624:1 20634:2 20641:1 20658:1 20661:1 20708:1 20712:1 20714:1 20731:1 20735:1 20753:2 20757:3157 20781:1 20793:1 20795:1 20832:1 20875:2 20886:1 20912:2 20941:1 20950:1 20951:1 20963:1 20970:1 20977:1 20978:1 20991:1 20996:1 20998:1 20999:1 21000:1 21013:1 21049:2 21073:1 21109:1 21111:1 21120:1 21121:1 21133:1 21136:1 21145:1 21154:1 21158:1 21167:1 21190:1 21212:1 21224:1 21225:1 21230:1 21233:2 21234:1 21259:1 21262:3 21266:1 21330:1 21332:2 21336:1 21337:1 21351:1 21371:1 21374:1 21379:1 21389:1 21396:1 21414:1 21423:2 21435:1 21437:1 21438:1 21455:1 21472:1 21503:1 21514:1 21521:9 21544:1 21551:1 21553:6 21558:1 21565:1 21587:3 21596:1 21617:1 21643:2 21649:2 21657:1 21669:1 21688:1 21700:1 21710:1 21736:1 21737:3 21778:2 21783:1 21806:2 21816:1 21831:1 21842:1 21873:1 21878:1 21911:1 21915:2 21952:1 21974:1 21982:1 21988:1 22007:1 22036:1 22042:1 22043:1 22049:1 22056:1 22070:1 22105:1 22170:1 22178:1 22182:2 22188:1 22203:2 22204:1 22207:1 22230:1 22251:1 22252:3 22266:1 22276:1 22277:1 22278:7 22299:3 22303:1 22305:1 22320:2 22328:1 22331:1 22332:1 22352:1 22361:1 22375:1 22377:2 22415:2 22419:1 22445:3 22448:1 22449:1 22460:1 22482:1 22483:1 22493:1 22552:1 22563:1 22582:1 22655:4 22666:1 22683:1 22712:1 22719:2 22722:1 22782:2 22784:1 22813:1 22818:2 22819:2 22824:1 22838:1 22848:1 22859:1 22865:1 22867:2 22872:1 22894:4 22897:2 22901:1 22903:1 22909:2 22912:1 22915:1 22918:1 22949:1 22960:1 22963:1 22968:1 22986:1 22992:1 23000:1 23006:1 23016:1 23022:2 23039:1 23042:1 23068:2 23083:3 23112:1 23114:2 23128:1 23136:1 23145:1 23157:6 23163:2 23173:1 23175:1 23183:1 23185:1 23192:1 23196:1 23198:4 23202:1 23213:1 23216:2 23222:1 23264:1 23285:1 23287:2 23291:6 23302:1 23315:1 23320:1 23322:3 23337:2 23363:1 23387:1 23415:1 23421:1 23426:1 23427:1 23429:1 23430:1 23433:2 23435:1 23438:1 23453:3 23454:1 23455:1 23456:2 23472:1 23473:1 23478:2 23487:1 23541:2 23553:1 23555:1 23568:1 23570:1 23572:1 23574:1 23600:4 23603:2 23605:1 23618:1 23620:1 23661:1 23684:3 23685:1 23700:1 23701:1 23702:2 23704:1 23725:1 23730:1 23734:1 23741:3 23746:1 23754:1 23759:1 23774:1 23793:1 23801:2 23822:1 23834:2 23839:3 23853:1 23907:1 23926:1 23927:2 23930:1 23938:1 23945:2 23951:1 23958:2 23962:2 23973:1 23976:2 23991:1 24000:1 24012:1 24026:1 24131:2 24136:2 24139:2 24161:1 24162:2 24173:2 24174:1 24217:1 24224:1 24236:1 24280:1 24287:3 24300:2 24305:3 24316:1 24322:2 24333:1 24340:1 24342:2 24355:2 24383:1 24384:1 24391:2 24394:1 24404:1 24414:1 24441:1 24443:1 24467:3 24475:1 24507:1 24524:1 24525:1 24557:1 24559:1 24563:1 24575:1 24576:1 24590:1 24596:1 24606:1 24610:1 24614:1 24633:1 24662:1 24665:1 24671:1 24700:1 24701:1 24702:1 24703:1 24718:1 24738:2 24742:1 24755:3 24770:3 24776:2 24784:1 24787:1 24789:1 24793:10 24797:1 24800:1 24805:1 24812:1 24819:1 24820:1 24839:1 24854:1 24858:1 24868:1 24870:1 24875:1 24876:1 24890:1 24896:1 24898:2 24931:1 24938:1 24965:1 24996:1 25007:1 25045:1 25046:1 25059:2 25069:2 25121:1 25132:1 25133:1 25135:1 25154:1 25167:1 25172:1 25188:1 25190:1 25259:1 25275:1 25306:1 25319:1 25356:2 25364:1 25366:2 25383:1 25442:2 25458:1 25460:2 25466:1 25480:1 25481:2 25483:1 25485:1 25504:1 25559:1 25564:1 25583:1 25588:1 25591:1 25593:2 25605:1 25607:1 25615:1 25625:1 25634:1 25636:1 25665:2 25668:1 25702:2 25718:2 25747:1 25750:1 25752:1 25770:1 25777:1 25784:3 25792:1 25796:1 25803:1 25805:1 25806:1 25811:2 25812:1 25814:1 25821:1 25838:1 25860:1 25862:2 25873:1 25876:2 25877:1 25883:1 25887:1 25896:2 25898:1 25902:1 25905:1 25914:1 25935:3 25965:2 25968:1 25969:1 25991:2 26018:1 26038:1 26039:1 26044:1 26047:1 26054:1 26068:1 26113:1 26123:1 26128:1 26135:1 26146:1 26155:4 26157:1 26166:1 26173:1 26195:2 26211:2 26219:2 26256:1 26271:1 26273:2 26276:3 26277:1 26320:1 26333:1 26339:2 26343:1 26370:1 26371:1 26384:2 26411:1 26429:1 26435:1 26460:2 26472:1 26474:1 26534:1 26574:1 26607:1 26623:1 26625:2 26639:1 26688:1 26700:1 26713:1 26716:1 26728:2 26729:1 26735:1 26740:1 26758:1 26813:1 26817:2 26828:3 26838:1 26845:9 26848:1 26849:1 26852:1 26853:1 26861:1 26863:1 26870:1 26887:1 26912:2 26920:2 26921:1 26951:1 26955:1 26964:1 26977:1 26979:1 26994:1 26998:3 27000:3 27007:1 27020:1 27037:2 27040:2 27047:1 27048:1 27053:1 27075:1 27093:1 27112:1 27135:1 27140:1 27177:1 27190:2 27207:2 27209:3 27213:3 27217:1 27224:1 27241:1 27246:1 27252:2 27264:1 27284:1 27292:1 27302:1 27328:2 27344:1 27365:1 27375:1 27412:1 27415:1 27422:2 27457:4 27462:3 27470:1 27480:1 27487:1 27524:1 27539:1 27543:1 27563:2 27565:1 27590:1 27594:3 27600:1 27628:1 27640:1 27650:1 27663:1 27678:2 27689:2 27706:1 27717:1 27741:1 27775:1 27783:3 27799:5 27803:3 27804:1 27820:1 27821:1 27835:1 27845:1 27853:1 27874:1 27875:1 27876:1 27878:2 27879:1 27889:1 27903:1 27904:1 27943:1 27964:2 27965:1 27975:3 27978:2 27979:1 27985:1 27988:2 27992:1 27994:1 28006:1 28012:2 28019:1 28037:1 28047:1 28055:1 28061:3 28062:1 28072:3 28084:2 28086:1 28097:2 28108:1 28132:2 28139:1 28174:1 28175:1 28207:1 28208:1 28210:1 28224:1 28228:1 28229:1 28236:1 28262:1 28275:1 28278:1 28344:2 28351:1 28374:2 28375:1 28377:2 28380:1 28384:1 28394:1 28397:1 28412:1 28424:1 28428:1 28442:1 28488:1 28491:2 28507:1 28509:1 28511:1 28526:1 28528:1 28538:1 28540:1 28547:1 28551:1 28562:1 28563:1 28571:1 28581:1 28587:3 28591:1 28593:1 28604:1 28620:1 28628:1 28635:1 28638:3 28670:3 28674:1 28689:1 28706:1 28720:4 28739:1 28745:1 28746:1 28766:1 28781:1 28792:2 28810:4 28827:2 28832:1 28841:1 28848:4 28854:1 28880:1 28887:1 28888:1 28941:1 28946:1 28992:1 28994:1 29027:2 29042:1 29049:1 29051:1 29054:1 29059:1 29067:1 29095:1 29104:1 29115:1 29125:1 29126:1 29134:1 29139:4 29141:1 29145:3 29146:2 29176:1 29198:1 29228:1 29251:1 29254:1 29273:2 29289:2 29296:3 29303:1 29312:1 29334:2 29356:2 29365:1 29392:2 29413:1 29453:1 29455:2 29462:1 29463:1 29465:2 29494:1 29509:1 29587:1 29593:1 29600:1 29627:1 29628:1 29633:1 29638:1 29640:1 29647:3 29678:1 29681:3 29702:1 29724:1 29727:2 29732:1 29738:1 29740:1 29744:2 29745:1 29746:2 29759:1 29760:3 29763:1 29770:5 29792:1 29822:1 29853:1 29878:1 29883:1 29894:2 29899:2 29900:1 29905:1 29942:2 29947:1 29993:1 30007:1 30012:2 30016:2 30021:2 30042:1 30044:2 30052:1 30053:1 30066:1 30083:1 30085:1 30090:1 30092:1 30093:1 30095:1 30096:1 30101:1 30106:1 30133:1 30143:1 30148:1 30156:1 30160:2 30163:2 30169:1 30178:1 30186:2 30202:1 30203:1 30209:1 30210:2 30253:1 30262:1 30266:2 30269:1 30275:1 30280:1 30306:1 30309:1 30318:1 30322:1 30323:1 30333:1 30335:1 30345:2 30355:1 30359:1 30390:2 30392:2 30413:1 30447:2 30475:1 30488:2 30505:1 30518:1 30533:2 30557:1 30559:1 30564:2 30571:1 30577:1 30590:1 30632:1 30642:1 30644:1 30663:1 30675:2 30689:1 30692:1 30723:3 30727:1 30732:4 30756:1 30763:1 30787:1 30799:1 30817:1 30820:1 30836:12 30837:1 30841:1 30860:1 30862:1 30879:5 30896:2 30906:1 30919:1 30944:1 30985:2 31017:4 31020:1 31025:1 31034:1 31036:1 31057:6 31062:1 31063:1 31075:1 31079:1 31080:1 31095:1 31112:1 31116:1 31123:4 31126:1 31144:1 31156:2 31179:1 31188:2 31191:1 31209:2 31235:1 31256:1 31281:2 31286:2 31323:1 31330:1 31332:1 31335:1 31340:1 31342:1 31348:1 31360:1 31370:1 31379:1 31396:3 31398:1 31401:1 31402:1 31422:1 31434:1 31449:3 31452:1 31469:1 31476:1 31478:1 31567:3 31583:2 31593:3 31603:1 31606:1 31624:3 31628:2 31635:1 31653:1 31659:1 31662:1 31681:1 31688:1 31716:1 31719:1 31725:1 31735:1 31739:1 31769:1 31807:1 31815:1 31819:1 31837:2 31849:1 31864:1 31876:1 31880:1 31896:2 31910:1 31937:1 31950:1 31959:1 31984:1 31991:1 31992:1 31994:1 32016:1 32044:1 32066:1 32080:2 32105:1 32109:1 32120:3 32122:1 32138:1 32163:1 32214:1 32217:1 32221:1 32233:1 32235:1 32243:3 32244:1 32245:3 32246:1 32248:1 32249:1 32250:2 32254:2 32257:2 32258:2 32261:2 32266:2 32267:1 32277:1 32278:1 32298:2 32303:1 32306:1 32320:1 32324:1 32333:2 32337:1 32343:1 32350:1 32374:1 32378:1 32382:1
15 6:1 43:1 71:3 91:1 104:2 122:1 166:1 167:4 187:1 189:2 196:1 200:1 224:1 225:1 226:1 227:2 243:1 244:1 248:1 267:1 282:1 285:3 289:1 335:1 337:2 356:2 370:1 382:1 388:2 406:4 408:2 409:2 443:1 444:2 463:1 468:1 503:3 517:1 529:1 541:2 566:1 586:1 612:1 615:1 616:1 622:1 623:1 645:3 649:1 655:2 661:1 666:1 682:1 685:6 693:1 696:1 697:2 699:2 704:1 747:1 768:3 791:1 795:1 796:1 813:4 829:2 892:1 898:1 928:2 935:1 956:2 958:1 959:1 961:1 963:2 968:1 970:1 972:2 978:1 980:1 981:1 985:1 988:2 1014:2 1018:1 1020:2 1023:1 1027:2 1031:1 1039:1 1052:3 1061:1 1065:1 1072:1 1075:1 1089:1 1103:1 1114:2 1119:3 1149:2 1150:1 1154:2 1167:1 1172:1 1180:1 1205:2 1206:1 1210:1 1235:1 1255:1 1259:2 1273:1 1277:2 1288:2 1297:1 1324:1 1328:3 1337:1 1343:1 1367:2 1374:2 1385:1 1396:1 1407:2 1408:1 1429:1 1431:1 1448:1 1458:1 1465:1 1472:1 1483:1 1484:1 1500:1 1513:1 1562:1 1577:2 1578:1 1586:1 1587:1 1592:6 1629:1 1632:1 1635:2 1641:2 1642:2 1650:1 1651:1 1656:5 1673:1 1682:1 1686:1 1699:1 1724:1 1725:1 1732:1 1733:4 1736:4 1737:1 1744:2 1749:2 1777:1 1778:1 1790:1 1810:2 1813:2 1821:2 1822:2 1824:1 1827:1 1842:3 1843:3 1868:1 1870:1 1874:1 1897:1 1914:1 1915:1 1927:1 1933:1 1948:2 1952:2 1953:1 1956:1 1973:1 1981:2 2007:1 2008:1 2013:1 2032:1 2035:1 2037:1 2040:1 2042:1 2043:2 2047:1 2050:2 2052:1 2088:2 2091:1 2098:1 2100:1 2114:1 2118:1 2144:1 2156:1 2159:4 2165:1 2171:1 2174:2 2177:1 2191:1 2201:1 2254:1 2273:2 2296:1 2327:1 2334:1 2344:1 2359:1 2364:1 2386:3 2419:1 2426:2 2449:1 2451:1 2462:2 2463:1 2493:1 2495:1 2501:1 2503:2 2505:3 2509:1 2516:2 2520:2 2522:1 2524:2 2525:2 2528:2 2531:1 2532:4 2533:1 2547:1 2559:2 2561:1 2607:2 2636:1 2674:2 2677:2 2678:1 2707:1 2711:3 2720:2 2747:1 2804:1 2814:2 2830:1 2833:1 2844:1 2857:1 2860:1 2925:1 2940:2 2948:2 2953:1 2974:1 2977:1 2982:1 2983:1 2984:1 2991:1 3028:3 3038:1 3091:1 3103:2 3109:1 3112:1 3138:2 3145:1 3155:1 3161:3 3169:4 3170:1 3178:1 3179:1 3198:2 3212:2 3216:4 3228:1 3235:1 3236:1 3238:1 3240:1 3242:2 3247:1 3250:1 3275:1 3280:2 3286:1 3311:1 3313:1 3321:1 3328:2 3333:1 3348:1 3356:2 3372:1 3400:1 3403:2 3411:1 3432:1 3443:1 3450:1 3483:1 3494:1 3548:2 3562:1 3570:1 3590:1 3600:1 3610:1 3646:3 3658:1 3670:1 3671:1 3676:1 3699:1 3701:1 3705:1 3708:1 3735:3 3736:1 3779:1 3786:1 3791:1 3803:1 3849:1 3891:1 3892:1 3920:1 3929:1 3935:1 3952:1 3964:2 3968:1 4002:1 4006:1 4014:1 4018:1 4019:1 4032:3 4037:1 4055:1 4066:1 4067:2 4070:1 4083:1 4102:1 4105:1 4124:1 4130:2 4131:3 4151:1 4152:1 4165:1 4171:1 4183:1 4187:1 4189:2 4212:2 4214:2 4250:2 4252:4 4255:2 4260:1 4282:1 4291:1 4292:1 4303:1 4305:1 4307:1 4310:1 4321:1 4340:1 4363:1 4374:1 4377:1 4401:2 4402:1 4404:1 4405:1 4415:1 4422:2 4425:1 4445:1 4454:1 4462:1 4463:1 4483:1 4515:1 4537:1 4563:2 4580:1 4609:1 4625:1 4629:3 4635:1 4657:1 4665:2 4669:1 4671:1 4685:1 4715:1 4718:1 4736:1 4748:4 4772:1 4773:1 4781:1 4796:1 4832:1 4863:1 4873:1 4880:1 4889:1 4896:2 4932:2 4935:1 4938:1 4954:1 4967:1 4969:1 4970:1 5001:1 5012:1 5017:2 5026:3 5035:1 5053:2 5054:2 5058:2 5074:1 5078:1 5096:2 5131:1 5151:1 5158:2 5162:2 5178:2 5186:1 5187:2 5206:1 5238:1 5240:1 5242:2 5247:2 5315:1 5318:2 5327:1 5331:2 5336:1 5382:7 5412:1 5418:1 5431:1 5442:1 5447:2 5500:4 5520:2 5521:1 5526:1 5527:1 5529:1 5535:2 5537:1 5541:1 5542:1 5546:1 5548:2 5549:1 5551:1 5566:1 5574:1 5578:1 5646:2 5649:1 5679:1 5690:1 5693:1 5697:2 5712:1 5713:1 5733:1 5734:1 5741:1 5757:2 5760:3 5767:1 5774:1 5788:1 5792:1 5805:2 5807:3 5823:3 5829:1 5843:3 5861:1 5896:2 5923:1 5924:1 5928:1 5941:4 5963:2 5967:1 5980:1 5983:2 5998:3 6015:1 6027:1 6031:1 6034:1 6037:1 6038:1 6050:1 6051:1 6061:1 6063:1 6069:1 6085:3 6106:1 6126:1 6143:2 6171:1 6218:1 6232:1 6268:1 6273:1 6275:1 6287:3 6310:1 6333:1 6350:1 6382:1 6390:1 6394:1 6395:2 6397:1 6423:2 6440:1 6453:1 6479:1 6483:1 6488:1 6536:1 6547:1 6570:1 6579:1 6594:1 6628:2 6633:1 6636:1 6656:1 6725:2 6742:4 6745:1 6749:1 6761:2 6764:1 6775:1 6779:1 6780:1 6785:1 6825:3 6831:3 6850:1 6866:1 6906:2 6920:1 6931:3 6938:1 6945:1 6955:1 7021:1 7026:1 7035:1 7037:1 7044:2 7047:1 7053:2 7055:1 7056:3 7058:1 7060:2 7064:2 7066:1 7071:3 7073:4 7113:1 7119:1 7122:1 7129:1 7130:1 7141:1 7152:1 7154:3 7165:2 7167:1 7168:2 7184:1 7189:2 7215:1 7220:3 7229:1 7231:2 7248:1 7308:1 7325:2 7328:3 7330:1 7331:4 7332:1 7338:1 7365:2 7367:1 7370:1 7389:1 7403:1 7406:1 7432:3 7453:1 7456:1 7463:1 7486:1 7489:1 7526:1 7527:1 7535:1 7544:1 7554:1 7559:1 7565:1 7610:2 7613:1 7615:1 7625:1 7628:1 7629:4 7644:1 7679:1 7683:2 7714:1 7732:1 7739:1 7746:1 7748:1 7758:2 7774:1 7785:1 7796:1 7797:1 7805:1 7811:2 7823:1 7824:1 7832:2 7851:2 7882:5 7884:2 7887:2 7892:1 7910:2 7923:3 7927:1 7930:1 7931:1 7939:2 7960:1 7969:1 7979:4 7991:1 8032:1 8044:1 8047:1 8059:1 8066:1 8087:1 8099:1 8111:1 8133:1 8137:5 8152:1 8190:1 8219:2 8235:1 8253:1 8262:3 8288:1 8300:1 8305:1 8324:2 8327:1 8329:1 8335:2 8338:1 8344:1 8347:1 8348:1 8360:1 8368:1 8379:2 8393:1 8395:1 8407:1 8408:1 8414:1 8422:1 8444:1 8448:1 8457:2 8459:3 8461:2 8462:1 8470:1 8489:4 8514:1 8521:1 8549:2 8551:6 8569:2 8571:1 8602:1 8607:2 8609:1 8620:21 8629:1 8641:2 8642:5 8655:2 8669:1 8678:1 8681:1 8689:2 8690:1 8697:1 8707:1 8722:1 8724:1 8737:1 8746:1 8761:1 8769:1 8785:3 8792:1 8817:1 8819:1 8833:1 8855:4 8860:1 8863:1 8869:1 8873:1 8876:1 8902:1 8912:1 8914:1 8921:3 8950:1 8957:2 8975:2 8979:1 8985:1 8995:1 9005:1 9019:1 9025:1 9028:3 9039:1 9052:1 9074:1 9076:2 9082:3 9087:2 9088:1 9092:1 9110:4 9127:1 9156:3 9157:11 9170:1 9171:1 9180:1 9188:1 9207:1 9208:2 9214:1 9216:3 9222:1 9235:1 9243:2 9252:3 9253:2 9266:1 9282:1 9298:4 9333:1 9340:1 9353:1 9361:1 9397:2 9402:1 9406:1 9413:1 9419:1 9426:1 9456:1 9481:1 9493:1 9499:1 9525:1 9534:2 9538:1 9546:1 9549:1 9562:1 9585:1 9588:2 9590:1 9593:1 9597:1 9599:1 9605:3 9610:1 9611:1 9626:1 9627:1 9651:1 9656:1 9671:1 9691:2 9693:1 9698:1 9711:1 9719:1 9748:1 9769:1 9777:2 9806:1 9824:2 9825:2 9826:8 9836:1 9845:1 9849:1 9853:1 9865:3 9875:1 9877:1 9896:1 9914:1 9921:1 9926:1 9928:1 9943:1 9950:2 9956:1 9983:1 9992:7 10025:2 10036:1 10114:1 10164:1 10183:1 10192:1 10193:2 10202:1 10208:1 10226:1 10237:1 10239:2 10255:1 10258:1 10260:1 10269:2 10279:4 10306:1 10314:1 10322:1 10326:1 10357:2 10362:1 10365:1 10377:1 10385:1 10390:2 10413:1 10415:1 10472:2 10522:1 10542:1 10556:1 10572:2 10573:2 10574:1 10592:1 10593:1 10604:1 10606:1 10623:1 10629:1 10640:1 10643:1 10650:2 10655:1 10656:1 10686:1 10700:3 10702:1 10719:2 10753:1 10771:1 10782:1 10783:1 10785:1 10791:1 10792:1 10795:1 10796:1 10797:1 10838:1 10874:1 10883:1 10888:1 10931:4 10947:1 10954:2 10966:2 10980:1 10990:1 11020:1 11021:1 11027:1 11039:1 11063:1 11070:1 11101:1 11114:1 11115:1 11122:1 11140:1 11150:1 11158:1 11159:3 11175:1 11197:1 11213:2 11220:2 11241:1 11274:2 11278:1 11282:2 11291:2 11293:1 11298:1 11304:1 11310:1 11312:2 11313:2 11326:1 11333:1 11341:1 11342:1 11346:1 11373:8 11386:2 11390:1 11401:1 11403:3 11423:2 11442:3 11443:1 11451:1 11482:3 11483:1 11486:1 11493:1 11536:1 11547:1 11554:1 11567:1 11571:1 11579:1 11583:1 11584:1 11591:1 11594:1 11600:1 11601:2 11604:1 11608:3 11630:1 11689:1 11690:1 11691:1 11701:1 11706:1 11712:1 11717:1 11737:1 11746:4 11749:2 11769:1 11771:1 11785:1 11808:1 11809:2 11810:1 11834:1 11850:6 11876:2 11888:1 11921:1 11926:7 11959:2 11960:2 11961:2 11977:1 11994:1 12009:1 12015:1 12020:2 12024:1 12035:1 12043:3 12048:1 12097:1 12099:1 12100:1 12102:1 12119:1 12128:1 12134:1 12136:1 12149:1 12189:1 12205:1 12230:1 12242:1 12270:1 12275:2 12296:2 12300:2 12312:1 12316:1 12339:1 12341:1 12343:1 12349:1 12380:1 12408:1 12418:1 12420:2 12440:1 12442:2 12444:1 12457:2 12458:2 12474:1 12475:1 12476:1 12477:1 12486:1 12496:1 12497:2 12509:1 12510:2 12517:1 12520:1 12536:1 12562:2 12563:1 12570:3 12574:1 12596:1 12623:2 12632:1 12654:1 12688:2 12690:1 12692:1 12705:1 12716:4 12722:1 12733:1 12735:1 12736:1 12744:1 12746:3 12756:1 12764:1 12774:1 12776:1 12784:1 12822:1 12825:1 12841:1 12843:1 12846:1 12860:1 12865:1 12888:1 12901:1 12917:1 12922:1 12933:1 12934:1 12960:1 12965:1 12973:1 12997:1 13017:2 13022:1 13041:1 13068:1 13092:3 13116:1 13121:1 13151:2 13164:1 13167:1 13173:4 13178:1 13180:1 13182:3 13186:1 13187:1 13195:1 13205:1 13213:1 13229:1 13234:1 13239:1 13240:1 13253:1 13256:1 13265:3 13269:2 13297:3 13325:1 13351:3 13363:1 13405:1 13408:1 13434:1 13439:1 13467:1 13476:1 13481:1 13502:2 13511:2 13513:3 13516:1 13521:1 13528:1 13546:1 13554:1 13558:1 13561:1 13575:2 13581:3 13602:1 13625:1 13626:4 13627:1 13637:1 13648:1 13650:1 13654:5 13658:2 13671:1 13674:1 13685:1 13688:1 13698:3 13714:1 13728:3 13740:1 13746:1 13757:1 13765:1 13774:1 13778:2 13784:1 13786:1 13806:1 13834:5 13844:3 13854:3 13864:1 13873:3 13890:1 13901:1 13914:1 13940:3 13954:1 13959:1 13969:1 13980:1 14011:1 14034:1 14036:1 14045:1 14056:1 14067:1 14072:1 14101:1 14108:1 14117:1 14118:1 14119:1 14120:2 14122:1 14126:1 14129:2 14132:1 14157:1 14161:1 14174:1 14198:2 14206:1 14243:1 14266:1 14267:1 14275:1 14284:1 14291:1 14302:1 14328:1 14329:5 14350:1 14353:2 14356:1 14360:1 14371:2 14392:1 14408:1 14428:1 14472:1 14505:1 14520:1 14558:1 14584:1 14601:1 14603:1 14620:1 14623:2 14632:2 14682:1 14755:1 14759:1 14773:1 14783:1 14795:1 14807:1 14819:1 14821:9 14841:1 14846:2 14849:1 14850:1 14853:1 14858:1 14872:1 14887:6 14905:1 14910:1 14921:1 14923:1 14938:1 14976:2 14978:7 14992:1 14994:4 14996:1 15000:1 15025:1 15028:1 15039:2 15048:1 15054:2 15069:2 15075:5 15081:1 15090:3 15131:1 15135:2 15139:3 15150:1 15161:1 15170:1 15183:1 15187:1 15218:1 15238:1 15243:3 15263:1 15281:1 15291:1 15293:1 15314:1 15325:1 15346:1 15368:1 15373:1 15377:1 15384:1 15393:1 15401:1 15411:1 15444:1 15450:1 15458:1 15477:1 15489:5 15496:3 15516:1 15548:1 15583:1 15585:1 15590:1 15596:1 15601:1 15647:1 15657:1 15663:1 15668:2 15669:1 15674:2 15681:1 15699:1 15702:1 15759:1 15784:2 15800:1 15802:1 15805:2 15817:2 15826:1 15829:1 15840:1 15853:3 15880:2 15899:2 15948:1 15949:1 15958:1 15963:1 15996:1 16011:1 16025:1 16030:1 16039:1 16049:1 16087:2 16097:1 16098:1 16102:1 16111:1 16113:1 16131:1 16182:1 16208:1 16209:1 16214:3 16227:2 16228:1 16251:2 16252:1 16257:1 16272:1 16277:1 16287:1 16292:2 16313:1 16321:1 16330:2 16336:1 16341:1 16347:1 16352:3 16358:2 16371:1 16384:1 16391:1 16411:1 16426:2 16438:2 16460:1 16480:1 16487:1 16523:6 16528:2 16540:3 16543:1 16544:1 16548:9 16554:1 16601:1 16624:1 16681:1 16697:2 16701:2 16716:1 16739:1 16752:1 16760:3 16766:1 16777:6 16793:2 16816:1 16818:1 16822:3 16824:1 16849:3 16866:1 16870:2 16897:5 16916:6 16917:1 16940:1 16941:1 17001:1 17016:1 17023:1 17054:2 17061:2 17070:1 17091:3 17093:1 17102:1 17111:1 17116:1 17117:1 17148:2 17158:1 17180:1 17192:1 17207:2 17218:1 17256:1 17281:1 17282:1 17290:1 17297:2 17314:1 17323:1 17331:3 17337:1 17343:2 17354:2 17376:1 17388:1 17405:1 17408:2 17461:1 17476:1 17483:1 17513:1 17516:1 17520:1 17525:6 17530:1 17538:1 17544:1 17565:1 17568:3 17580:1 17583:2 17618:1 17624:3 17696:1 17700:1 17701:1 17716:2 17717:2 17733:4 17739:1 17753:1 17757:1 17770:1 17772:2 17773:1 17774:1 17778:2 17779:1 17787:1 17800:1 17804:4 17812:1 17843:1 17868:1 17871:2 17876:1 17877:2 17879:5 17899:1 17906:4 17921:1 17935:1 17947:1 17948:1 17964:1 17986:1 17988:1 17993:1 17997:1 18029:1 18031:1 18032:1 18041:4 18054:1 18055:1 18070:2 18071:3 18077:1 18089:1 18097:1 18098:1 18109:2 18121:1 18132:1 18147:1 18152:1 18156:5 18159:3 18164:1 18169:1 18182:1 18218:1 18223:1 18306:1 18307:1 18334:1 18339:2 18345:1 18346:1 18355:1 18367:1 18376:1 18379:1 18382:1 18397:1 18410:2 18424:3 18429:2 18436:1 18445:7 18450:1 18453:1 18493:1 18494:1 18509:1 18537:1 18556:1 18562:1 18573:1 18582:1 18624:1 18634:1 18643:1 18650:1 18653:1 18677:1 18678:1 18687:1 18706:1 18709:1 18723:1 18729:1 18737:1 18738:2 18742:1 18753:1 18754:1 18767:1 18774:4 18829:3 18836:1 18842:1 18880:3 18884:2 18897:1 18920:1 18922:1 18931:1 18937:1 18943:3 18944:1 18945:1 18970:1 18978:1 18994:2 19022:1 19030:1 19040:1 19041:1 19046:1 19058:1 19060:1 19067:1 19069:1 19095:1 19097:1 19120:1 19121:1 19122:1 19154:1 19163:1 19224:1 19234:1 19288:2 19290:1 19292:1 19301:1 19302:1 19322:1 19369:1 19372:1 19406:1 19417:1 19467:1 19469:1 19473:2 19476:2 19477:1 19483:1 19485:1 19489:2 19490:1 19515:1 19526:3 19553:3 19555:3 19594:1 19611:2 19614:1 19635:1 19651:1 19657:3 19660:1 19665:4 19670:1 19677:1 19678:3 19698:1 19710:1 19711:1 19722:1 19730:1 19732:1 19739:1 19757:1 19764:1 19777:1 19798:1 19802:1 19803:5 19807:1 19809:1 19816:1 19837:1 19872:1 19876:2 19884:2 19887:1 19899:1 19900:1 19950:1 19970:1 19977:1 19980:1 20026:1 20034:2 20073:1 20074:1 20081:1 20111:1 20112:1 20126:1 20132:1 20152:2 20174:1 20201:1 20230:1 20269:1 20306:1 20318:1 20333:1 20344:1 20352:1 20355:1 20358:1 20394:2 20401:1 20402:1 20403:1 20411:1 20413:1 20480:2 20492:2 20522:1 20531:3 20551:1 20589:1 20590:1 20601:1 20605:1 20610:1 20613:3 20624:1 20634:2 20641:1 20658:1 20661:1 20708:1 20712:1 20714:1 20731:1 20735:1 20753:2 20757:3220 20781:1 20793:1 20795:1 20832:1 20875:2 20886:1 20912:2 20941:1 20950:1 20951:1 20963:1 20970:1 20977:1 20978:1 20991:1 20996:1 20998:1 20999:1 21000:1 21013:1 21049:2 21073:1 21109:1 21111:1 21120:1 21121:1 21133:1 21136:1 21145:1 21154:1 21158:1 21167:1 21190:1 21212:1 21224:1 21225:1 21230:1 21233:2 21234:1 21259:1 21262:3 21266:1 21330:1 21332:2 21336:1 21337:1 21351:1 21371:1 21374:1 21379:1 21389:1 21396:1 21414:1 21423:2 21435:1 21437:1 21438:1 21455:1 21472:1 21503:1 21514:1 21521:9 21544:1 21551:1 21553:6 21558:1 21565:1 21587:3 21596:1 21617:1 21643:2 21649:3 21657:1 21669:1 21688:1 21700:1 21710:1 21736:1 21737:3 21778:3 21783:1 21806:2 21816:1 21831:1 21842:1 21873:1 21878:1 21911:1 21915:2 21952:1 21974:1 21982:1 21988:1 22007:1 22036:1 22042:1 22043:1 22049:1 22056:1 22070:1 22105:1 22170:1 22178:1 22182:2 22188:1 22203:2 22204:1 22207:1 22230:1 22251:1 22252:3 22266:1 22276:1 22277:1 22278:7 22299:3 22303:1 22305:1 22320:2 22328:1 22331:1 22332:1 22352:1 22361:1 22375:1 22377:2 22415:2 22419:1 22445:3 22448:1 22449:1 22460:1 22482:1 22483:1 22493:1 22552:1 22563:1 22582:1 22655:4 22666:1 22683:1 22712:1 22719:2 22722:1 22782:3 22784:1 22813:1 22818:2 22819:2 22824:1 22838:1 22848:1 22859:1 22865:1 22867:2 22872:1 22894:4 22897:2 22901:1 22903:1 22909:2 22912:1 22915:1 22918:1 22949:1 22960:1 22963:1 22968:1 22978:1 22986:1 22992:1 23000:1 23006:1 23016:1 23022:2 23039:1 23042:1 23068:2 23083:3 23112:1 23114:2 23128:1 23136:1 23145:1 23157:6 23163:2 23172:1 23173:1 23175:1 23183:1 23185:1 23192:1 23196:1 23198:4 23202:1 23213:2 23216:2 23222:1 23264:1 23285:1 23287:2 23291:6 23302:1 23315:1 23320:1 23322:3 23337:2 23363:1 23387:1 23415:1 23421:1 23426:1 23427:1 23429:1 23430:1 23433:2 23435:1 23438:1 23453:3 23454:1 23455:1 23456:2 23472:1 23473:1 23478:2 23487:1 23541:2 23553:1 23555:1 23568:1 23570:1 23572:1 23574:1 23600:4 23603:2 23605:1 23618:1 23620:1 23661:1 23684:3 23685:1 23700:1 23701:1 23702:2 23704:1 23725:1 23730:1 23734:1 23741:3 23743:1 23746:1 23754:1 23759:1 23774:1 23793:1 23801:2 23822:1 23834:2 23839:3 23853:1 23885:1 23907:1 23926:1 23927:2 23930:1 23938:1 23945:2 23951:1 23958:2 23962:2 23973:1 23976:2 23991:1 24000:1 24012:1 24026:1 24131:2 24136:2 24139:2 24161:1 24162:2 24173:2 24174:1 24217:1 24224:1 24236:1 24280:1 24287:3 24300:2 24305:3 24316:1 24322:2 24333:1 24340:1 24342:2 24355:2 24383:1 24384:1 24391:2 24394:1 24404:1 24414:1 24441:1 24443:1 24467:3 24475:1 24507:1 24524:1 24525:1 24557:1 24559:1 24563:1 24575:1 24576:1 24590:1 24596:1 24606:1 24610:1 24614:1 24633:1 24662:1 24665:1 24671:1 24700:1 24701:1 24702:1 24703:1 24718:1 24738:2 24742:1 24755:3 24770:3 24776:2 24784:1 24787:1 24789:1 24793:10 24797:1 24800:1 24805:1 24812:1 24819:1 24820:1 24839:1 24854:1 24858:1 24868:1 24870:1 24875:1 24876:1 24890:1 24896:1 24898:2 24931:1 24938:1 24965:1 24996:1 25007:1 25045:2 25046:1 25059:2 25069:2 25121:1 25132:1 25133:1 25135:1 25154:1 25167:1 25172:1 25188:1 25190:1 25259:1 25275:1 25306:1 25319:1 25356:2 25364:1 25366:2 25383:1 25442:2 25458:1 25460:2 25466:1 25480:1 25481:2 25483:1 25485:1 25504:1 25559:1 25564:1 25583:1 25588:1 25591:1 25593:2 25605:1 25607:1 25615:1 25625:1 25634:1 25636:1 25664:1 25665:3 25668:1 25702:2 25718:2 25747:1 25750:1 25752:1 25770:1 25777:1 25784:3 25792:1 25796:1 25803:1 25805:1 25806:1 25811:2 25812:1 25814:1 25821:1 25838:1 25860:1 25862:2 25873:1 25876:2 25877:1 25883:1 25887:1 25895:1 25896:2 25898:1 25902:1 25905:1 25914:1 25935:3 25965:2 25968:1 25969:1 25991:2 26018:1 26038:1 26039:1 26044:1 26047:1 26054:1 26068:1 26113:1 26123:1 26128:1 26135:1 26146:1 26155:4 26157:1 26166:1 26173:1 26195:2 26211:2 26219:2 26256:1 26271:1 26273:2 26276:3 26277:1 26320:1 26333:1 26339:2 26343:1 26370:1 26371:1 26384:2 26411:1 26427:1 26429:1 26435:1 26460:2 26472:1 26474:1 26534:1 26574:1 26607:1 26623:1 26625:2 26639:1 26688:1 26700:1 26713:1 26716:1 26728:2 26729:1 26731:1 26735:1 26740:1 26758:1 26813:1 26817:2 26828:3 26838:1 26845:9 26848:1 26849:1 26852:1 26853:1 26861:1 26863:1 26870:1 26887:1 26912:2 26920:2 26921:1 26951:1 26955:1 26964:1 26977:1 26979:1 26994:1 26998:3 27000:3 27007:1 27020:1 27037:2 27040:2 27047:1 27048:1 27053:1 27071:1 27075:1 27093:1 27099:1 27112:1 27135:1 27140:1 27177:1 27190:2 27207:2 27209:3 27213:3 27217:1 27224:1 27241:1 27246:1 27252:2 27264:1 27284:1 27292:1 27302:1 27328:2 27344:1 27365:1 27375:1 27412:1 27415:1 27422:2 27457:4 27462:3 27470:1 27480:1 27487:1 27524:1 27539:1 27543:1 27563:2 27565:1 27590:1 27594:3 27600:1 27628:1 27640:1 27650:1 27663:1 27678:2 27689:2 27706:1 27717:1 27741:1 27775:1 27783:3 27799:5 27803:3 27804:1 27820:1 27821:1 27835:1 27845:1 27853:1 27874:1 27875:1 27876:1 27878:2 27879:1 27889:1 27903:1 27904:1 27943:1 27964:2 27965:1 27975:3 27978:2 27979:1 27985:1 27988:2 27992:1 27994:1 28006:1 28012:2 28019:1 28037:1 28047:1 28055:1 28061:3 28062:1 28072:3 28084:2 28086:1 28097:2 28108:1 28132:2 28139:1 28174:1 28175:1 28207:1 28208:1 28210:1 28224:1 28228:1 28229:1 28236:1 28262:1 28275:1 28278:1 28344:2 28351:1 28374:2 28375:1 28377:2 28380:2 28384:1 28394:1 28397:1 28412:1 28424:1 28428:1 28442:1 28488:1 28491:2 28507:1 28509:1 28511:1 28526:1 28528:1 28538:1 28540:1 28547:1 28551:1 28562:1 28563:1 28571:1 28581:1 28587:3 28591:1 28593:1 28604:1 28620:1 28628:1 28635:1 28638:3 28670:3 28674:1 28689:1 28706:1 28720:4 28739:1 28745:1 28746:1 28766:1 28781:1 28792:2 28810:4 28827:3 28832:1 28841:1 28848:4 28854:1 28880:1 28887:1 28888:1 28941:1 28946:1 28992:1 28994:1 29027:2 29042:1 29049:1 29051:1 29054:1 29059:1 29067:1 29095:1 29104:1 29115:1 29125:1 29126:1 29134:1 29139:4 29141:1 29145:3 29146:2 29176:1 29198:1 29228:1 29251:1 29254:1 29273:2 29289:2 29296:3 29303:1 29312:1 29334:2 29356:2 29365:1 29392:2 29413:1 29453:1 29455:2 29462:1 29463:1 29465:2 29494:1 29509:1 29587:1 29593:1 29600:1 29627:1 29628:1 29633:1 29638:1 29640:1 29647:3 29678:1 29681:3 29702:1 29724:1 29727:2 29732:1 29738:1 29740:1 29744:2 29745:1 29746:2 29759:1 29760:3 29763:1 29770:5 29792:1 29822:1 29853:1 29878:1 29883:1 29894:2 29899:2 29900:1 29905:1 29942:2 29947:1 29993:1 29995:1 30007:1 30012:2 30016:2 30021:2 30042:1 30044:2 30052:1 30053:1 30066:1 30083:1 30085:1 30090:1 30092:1 30093:1 30095:1 30096:1 30101:1 30106:1 30133:1 30143:1 30148:1 30156:1 30160:2 30163:2 30169:1 30178:1 30186:2 30202:1 30203:1 30209:1 30210:2 30253:1 30262:1 30266:2 30269:1 30275:1 30280:1 30306:1 30309:1 30318:1 30322:1 30323:1 30333:1 30335:1 30345:2 30355:1 30359:1 30390:2 30392:2 30411:1 30413:1 30447:2 30475:1 30488:2 30505:1 30518:1 30533:2 30557:1 30559:1 30564:2 30571:1 30577:1 30590:1 30632:1 30642:1 30644:1 30663:1 30675:2 30689:1 30692:1 30723:3 30727:1 30732:4 30756:1 30763:1 30787:1 30799:1 30817:1 30820:1 30836:13 30837:1 30841:1 30860:1 30862:1 30879:5 30896:2 30906:1 30919:1 30944:1 30985:2 31017:5 31020:1 31025:1 31034:1 31036:1 31057:6 31062:1 31063:1 31075:1 31079:1 31080:1 31095:1 31112:1 31116:1 31123:4 31126:1 31144:1 31156:2 31179:1 31188:2 31191:1 31209:2 31235:1 31256:1 31281:2 31286:2 31323:1 31330:1 31332:1 31335:1 31340:1 31342:1 31348:1 31360:1 31370:1 31379:1 31396:3 31398:1 31401:1 31402:1 31422:1 31434:1 31449:3 31452:1 31469:1 31476:1 31478:1 31567:3 31583:2 31593:3 31603:1 31606:1 31624:3 31628:2 31635:1 31653:1 31659:1 31662:1 31681:1 31688:1 31716:1 31719:1 31725:1 31735:1 31739:1 31769:1 31807:1 31815:1 31819:1 31837:2 31849:1 31864:1 31876:1 31880:1 31896:2 31910:1 31937:1 31950:1 31959:1 31984:1 31991:1 31992:1 31994:1 32016:1 32044:1 32066:1 32080:2 32105:1 32109:1 32120:3 32122:1 32138:1 32163:1 32214:1 32217:1 32221:1 32233:1 32235:1 32243:3 32244:1 32245:3 32246:1 32248:1 32249:1 32250:2 32254:2 32257:2 32258:2 32261:2 32266:2 32267:1 32277:1 32278:1 32298:2 32303:1 32306:1 32320:1 32324:1 32333:2 32337:1 32343:1 32350:1 32374:1 32378:1 32382:1
15 6:1 43:1 71:3 91:1 104:2 122:1 166:1 167:4 187:1 189:2 196:1 200:1 224:1 225:1 226:1 227:2 243:1 244:1 248:1 267:1 282:1 285:3 289:1 335:1 337:2 356:2 370:1 382:1 388:2 406:4 408:2 409:2 443:1 444:2 463:1 468:1 493:1 503:3 517:1 529:1 541:2 566:1 586:1 612:1 615:1 616:1 622:1 623:1 645:3 649:1 655:2 661:1 666:1 682:1 685:6 693:1 696:1 697:2 699:2 704:1 747:1 768:3 791:1 795:1 796:1 813:4 829:2 892:1 898:1 928:2 934:1 935:1 956:2 958:1 959:1 961:1 963:2 968:1 970:1 972:2 978:1 980:1 981:1 985:1 988:2 1014:2 1018:1 1020:2 1023:1 1027:2 1031:1 1039:1 1052:3 1061:1 1065:1 1072:1 1075:1 1089:1 1103:1 1114:2 1119:3 1149:2 1150:1 1154:2 1167:1 1172:1 1180:1 1205:2 1206:1 1210:1 1235:1 1255:1 1259:2 1273:1 1277:2 1288:2 1297:1 1324:1 1328:3 1331:1 1337:1 1343:1 1367:2 1374:2 1385:1 1396:1 1407:2 1408:1 1429:1 1431:1 1448:1 1458:1 1459:1 1465:1 1472:1 1483:1 1484:1 1500:1 1510:1 1513:1 1562:1 1577:2 1578:1 1586:1 1587:1 1592:7 1629:1 1632:1 1635:2 1641:2 1642:2 1650:1 1651:1 1656:5 1673:1 1682:1 1686:1 1699:1 1724:1 1725:1 1732:1 1733:4 1736:4 1737:1 1744:2 1749:2 1777:1 1778:1 1790:1 1810:2 1813:2 1821:2 1822:2 1824:1 1827:1 1830:1 1842:3 1843:3 1868:1 1870:1 1874:1 1897:1 1914:1 1915:1 1927:1 1933:1 1948:2 1952:2 1953:1 1956:1 1973:1 1981:2 2007:1 2008:1 2013:1 2032:1 2035:1 2037:1 2040:1 2042:1 2043:2 2047:1 2050:2 2052:1 2088:2 2091:1 2098:1 2100:1 2114:1 2118:1 2144:1 2156:1 2159:4 2165:1 2171:1 2174:2 2177:1 2191:1 2201:1 2254:1 2273:2 2296:1 2327:1 2334:1 2344:1 2359:1 2364:1 2386:3 2419:1 2426:2 2449:1 2451:1 2462:2 2463:1 2493:1 2495:1 2501:1 2503:2 2505:3 2509:1 2516:2 2520:2 2522:1 2524:2 2525:2 2528:2 2531:1 2532:4 2533:1 2547:1 2559:2 2561:1 2607:2 2636:1 2674:2 2677:2 2678:1 2707:1 2711:3 2720:2 2747:1 2804:1 2814:2 2830:1 2833:1 2844:1 2857:1 2860:1 2925:1 2940:2 2948:2 2953:1 2974:1 2977:1 2982:1 2983:1 2984:1 2991:1 3028:3 3038:1 3091:1 3103:2 3109:1 3112:1 3138:2 3145:1 3155:1 3161:4 3169:4 3170:1 3178:1 3179:1 3198:2 3212:2 3216:4 3228:1 3235:1 3236:1 3238:1 3240:1 3242:2 3247:1 3250:1 3275:1 3280:2 3286:1 3311:1 3313:1 3321:1 3328:2 3333:1 3348:1 3356:2 3372:1 3400:1 3403:2 3411:1 3432:1 3443:1 3450:1 3483:1 3494:1 3548:2 3562:1 3570:1 3590:1 3600:1 3610:1 3612:1 3646:3 3658:1 3670:1 3671:1 3676:1 3699:1 3701:1 3705:1 3708:1 3735:3 3736:1 3779:1 3786:1 3791:1 3803:1 3849:1 3891:1 3892:1 3920:1 3929:1 3935:1 3952:1 3964:2 3968:1 4002:1 4006:1 4014:1 4018:1 4019:1 4032:3 4037:1 4055:1 4066:1 4067:2 4070:1 4083:1 4102:1 4105:1 4124:1 4130:2 4131:3 4151:1 4152:1 4165:1 4171:1 4183:1 4187:1 4189:2 4212:2 4214:2 4250:2 4252:4 4255:2 4260:1 4282:1 4291:1 4292:1 4303:1 4305:1 4307:1 4310:1 4321:1 4340:1 4363:1 4374:1 4377:1 4401:2 4402:1 4404:1 4405:1 4415:1 4422:2 4425:1 4427:1 4445:1 4454:1 4462:1 4463:1 4483:1 4515:1 4537:1 4563:2 4580:1 4609:1 4625:1 4629:3 4635:1 4657:1 4665:2 4669:1 4671:1 4685:1 4715:1 4718:1 4736:1 4748:4 4772:1 4773:1 4781:1 4796:1 4832:1 4863:1 4873:1 4880:1 4889:1 4896:2 4932:2 4935:1 4938:1 4954:1 4967:1 4969:1 4970:1 5001:1 5012:1 5017:2 5026:3 5035:1 5053:2 5054:2 5058:2 5074:1 5078:1 5096:2 5131:1 5151:1 5158:2 5162:2 5178:2 5186:1 5187:2 5206:1 5238:1 5240:1 5242:2 5247:2 5315:1 5318:2 5327:1 5331:2 5336:1 5382:7 5412:1 5418:1 5431:1 5442:1 5447:2 5500:4 5520:2 5521:1 5526:1 5527:1 5529:1 5535:2 5537:1 5541:1 5542:1 5546:1 5548:2 5549:1 5551:1 5566:1 5574:1 5578:1 5646:2 5649:1 5679:1 5690:1 5693:1 5697:2 5712:1 5713:1 5733:1 5734:1 5741:1 5757:2 5760:3 5767:1 5774:1 5788:1 5792:1 5805:2 5807:3 5823:3 5829:1 5843:3 5861:1 5896:2 5923:1 5924:1 5928:1 5941:4 5963:2 5967:1 5980:1 5983:2 5998:3 6015:1 6027:1 6031:1 6034:1 6037:1 6038:1 6050:1 6051:1 6061:1 6063:1 6069:1 6085:3 6106:1 6126:1 6143:2 6171:1 6218:1 6232:1 6268:1 6273:1 6275:1 6287:3 6307:1 6310:1 6333:1 6350:1 6382:1 6390:1 6394:1 6395:2 6397:1 6410:1 6423:2 6440:1 6453:1 6479:1 6483:1 6488:1 6536:1 6547:1 6558:1 6570:1 6579:1 6586:1 6594:1 6628:2 6633:1 6636:1 6656:1 6725:2 6742:4 6745:1 6749:1 6761:2 6764:1 6775:1 6779:1 6780:1 6785:1 6825:3 6831:3 6850:1 6866:1 6906:2 6920:1 6931:3 6938:1 6945:1 6955:1 7021:1 7026:1 7035:1 7037:1 7044:2 7047:1 7053:2 7055:2 7056:3 7058:1 7060:2 7064:2 7066:1 7071:3 7073:4 7113:1 7119:1 7122:1 7129:1 7130:1 7141:1 7152:1 7154:3 7165:2 7167:1 7168:2 7184:1 7189:2 7215:1 7220:3 7229:1 7231:2 7242:1 7248:1 7308:1 7325:2 7328:3 7330:1 7331:4 7332:1 7338:1 7365:2 7367:1 7370:1 7389:1 7403:1 7406:1 7432:3 7453:1 7456:1 7463:1 7486:1 7489:1 7526:1 7527:1 7535:1 7544:1 7554:1 7559:1 7565:1 7610:2 7613:1 7615:1 7625:1 7628:1 7629:4 7635:1 7644:1 7665:1 7679:1 7683:2 7714:1 7732:1 7739:1 7746:1 7748:1 7758:2 7774:1 7785:1 7796:1 7797:1 7805:1 7811:2 7823:1 7824:1 7832:2 7851:2 7882:5 7884:2 7887:2 7892:1 7910:2 7923:3 7927:1 7930:1 7931:1 7939:2 7960:1 7969:1 7979:4 7991:1 8032:1 8044:1 8047:1 8059:1 8066:1 8087:1 8099:1 8111:1 8133:1 8137:5 8152:1 8187:1 8190:1 8219:2 8235:1 8253:1 8262:3 8288:1 8300:1 8305:1 8324:2 8327:1 8329:1 8335:2 8338:1 8344:1 8347:1 8348:1 8360:1 8368:1 8379:2 8393:1 8395:1 8407:1 8408:1 8414:1 8422:1 8444:1 8448:1 8457:2 8459:3 8461:2 8462:1 8470:1 8489:4 8514:1 8521:1 8549:2 8551:6 8569:2 8571:1 8602:1 8607:2 8609:1 8620:21 8629:1 8641:2 8642:5 8655:2 8669:1 8678:1 8681:1 8689:2 8690:1 8697:1 8707:1 8722:1 8724:1 8737:1 8746:1 8761:1 8769:1 8785:3 8792:1 8817:1 8819:1 8833:1 8855:4 8860:1 8863:1 8869:1 8873:1 8876:1 8902:1 8912:1 8914:1 8921:3 8950:1 8957:2 8975:2 8979:1 8985:1 8995:1 9005:1 9019:1 9025:1 9028:3 9039:1 9052:1 9074:1 9076:2 9082:3 9087:2 9088:1 9092:1 9104:1 9110:4 9127:1 9156:3 9157:11 9170:1 9171:1 9180:1 9181:1 9188:1 9207:1 9208:2 9214:1 9216:3 9222:1 9235:1 9243:2 9252:3 9253:2 9266:1 9282:1 9298:4 9333:1 9340:1 9353:1 9361:1 9397:2 9402:1 9406:1 9413:1 9419:1 9426:1 9456:1 9481:1 9493:1 9499:1 9525:1 9534:2 9538:1 9546:1 9549:1 9562:1 9585:1 9588:2 9590:1 9593:1 9597:1 9599:1 9605:3 9610:1 9611:1 9626:1 9627:1 9651:1 9656:1 9671:1 9691:2 9693:1 9698:1 9711:1 9719:1 9748:1 9752:1 9769:1 9777:2 9806:1 9824:2 9825:2 9826:8 9836:1 9845:1 9849:1 9853:1 9865:3 9875:1 9877:1 9896:1 9914:1 9921:1 9926:1 9928:1 9943:1 9950:2 9956:1 9983:1 9992:7 10025:2 10036:1 10114:1 10164:1 10183:1 10192:1 10193:2 10202:1 10208:1 10226:1 10237:1 10239:2 10255:1 10258:1 10260:1 10269:2 10279:4 10306:1 10314:1 10322:1 10326:1 10357:2 10362:1 10365:1 10377:1 10385:1 10390:2 10413:1 10415:1 10472:2 10522:1 10542:1 10556:1 10572:2 10573:2 10574:1 10592:1 10593:1 10604:1 10606:1 10623:1 10629:1 10640:1 10643:1 10650:2 10655:1 10656:1 10677:1 10686:1 10700:3 10702:1 10719:2 10753:1 10771:1 10782:1 10783:1 10785:1 10791:1 10792:1 10795:1 10796:1 10797:1 10838:1 10874:1 10883:1 10888:1 10931:4 10947:1 10954:2 10966:2 10980:1 10990:1 11020:1 11021:1 11027:1 11039:1 11063:1 11070:1 11101:1 11114:1 11115:1 11122:1 11140:1 11150:1 11158:1 11159:3 11175:1 11197:1 11213:2 11220:2 11241:1 11274:2 11278:1 11282:2 11291:2 11293:1 11298:1 11304:1 11307:1 11310:1 11312:2 11313:2 11326:1 11333:1 11341:1 11342:1 11346:1 11373:8 11386:2 11390:1 11401:1 11403:3 11423:2 11442:3 11443:1 11451:1 11468:1 11482:3 11483:1 11486:1 11493:1 11516:1 11536:1 11547:1 11554:1 11567:1 11571:1 11579:1 11583:1 11584:1 11591:1 11594:1 11600:1 11601:2 11604:1 11608:3 11630:1 11689:1 11690:1 11691:1 11701:1 11706:1 11712:1 11717:1 11737:1 11746:4 11749:2 11769:1 11771:1 11785:1 11808:1 11809:2 11810:1 11834:1 11850:6 11876:2 11888:1 11921:1 11926:8 11959:2 11960:2 11961:2 11977:1 11994:1 12009:1 12015:1 12020:2 12024:1 12035:1 12043:3 12048:1 12097:1 12099:1 12100:1 12102:1 12119:1 12128:1 12134:1 12136:1 12149:1 12189:1 12205:1 12230:1 12242:1 12270:1 12273:1 12275:2 12296:2 12300:2 12312:1 12316:1 12339:1 12341:1 12343:1 12349:1 12380:1 12408:1 12418:1 12420:2 12440:1 12442:2 12444:1 12457:2 12458:2 12474:1 12475:1 12476:1 12477:1 12486:1 12496:1 12497:2 12509:1 12510:2 12517:1 12520:1 12536:1 12562:2 12563:1 12570:3 12574:1 12596:1 12623:2 12632:1 12648:1 12654:1 12688:2 12690:1 12692:1 12705:1 12716:4 12722:1 12733:1 12735:1 12736:1 12744:1 12746:3 12756:1 12764:1 12774:1 12776:1 12784:1 12822:1 12825:1 12841:1 12843:1 12846:1 12860:1 12865:1 12888:1 12901:1 12917:1 12922:1 12933:1 12934:1 12947:1 12960:1 12965:1 12973:1 12997:1 13017:2 13022:1 13032:1 13041:1 13068:1 13092:3 13116:1 13121:1 13151:2 13164:1 13167:1 13173:4 13178:1 13180:1 13182:3 13186:1 13187:1 13195:1 13205:1 13213:1 13229:1 13234:1 13239:1 13240:1 13253:1 13256:1 13265:3 13269:2 13297:3 13325:1 13351:3 13363:1 13405:1 13408:1 13434:1 13439:1 13467:1 13476:1 13481:1 13502:2 13511:2 13513:3 13516:1 13521:1 13528:1 13546:1 13554:1 13558:1 13561:1 13575:2 13581:3 13602:1 13625:1 13626:4 13627:1 13637:1 13648:1 13650:1 13654:5 13658:2 13671:1 13674:1 13685:1 13688:1 13698:3 13714:1 13728:3 13740:1 13746:1 13757:1 13765:1 13774:1 13778:2 13784:1 13786:1 13806:1 13834:5 13844:3 13854:3 13864:1 13873:3 13890:1 13901:1 13914:1 13940:3 13954:1 13959:1 13969:1 13980:1 14011:1 14034:1 14036:1 14045:1 14056:1 14067:1 14072:1 14101:1 14108:1 14117:1 14118:1 14119:1 14120:2 14122:1 14126:1 14129:2 14132:1 14157:1 14161:1 14174:1 14198:2 14206:1 14243:1 14266:1 14267:1 14275:1 14284:1 14291:1 14302:1 14311:1 14328:1 14329:5 14350:1 14353:2 14356:1 14360:1 14371:2 14392:1 14408:1 14428:1 14472:1 14505:1 14520:1 14558:1 14584:1 14601:1 14603:1 14620:1 14623:2 14632:2 14682:1 14737:1 14755:1 14759:1 14773:1 14783:1 14795:1 14807:1 14819:1 14821:9 14841:1 14846:2 14849:1 14850:1 14853:1 14858:2 14872:1 14879:1 14887:6 14905:1 14910:1 14921:1 14923:1 14938:1 14976:2 14978:7 14992:1 14994:4 14996:1 15000:1 15025:1 15028:1 15039:2 15048:1 15054:2 15069:2 15075:6 15081:1 15090:3 15131:1 15135:2 15139:3 15148:1 15150:1 15161:1 15170:1 15183:1 15187:1 15218:1 15238:1 15243:3 15263:1 15281:1 15291:1 15293:1 15314:1 15325:1 15346:1 15368:1 15373:1 15377:1 15384:1 15393:1 15401:1 15411:1 15444:1 15450:1 15458:1 15477:1 15489:5 15496:3 15516:1 15548:1 15583:1 15585:1 15590:1 15596:1 15601:2 15647:1 15657:1 15663:1 15668:2 15669:1 15674:2 15681:1 15699:1 15700:1 15702:1 15721:1 15759:1 15784:2 15800:1 15802:1 15805:2 15817:2 15826:1 15829:1 15840:1 15853:3 15880:2 15899:2 15948:1 15949:1 15958:1 15963:1 15996:1 16011:1 16025:1 16030:1 16039:1 16049:1 16087:2 16094:1 16097:1 16098:1 16102:1 16111:1 16113:1 16131:1 16182:1 16208:1 16209:1 16214:3 16227:2 16228:1 16251:2 16252:1 16257:1 16272:1 16277:1 16287:1 16292:2 16313:1 16321:1 16330:2 16336:1 16341:1 16347:1 16352:3 16358:2 16371:1 16384:1 16391:1 16411:1 16426:2 16438:2 16460:1 16480:1 16487:1 16523:6 16528:2 16540:3 16543:1 16544:1 16548:9 16554:1 16601:2 16624:1 16681:1 16697:2 16701:2 16716:1 16738:1 16739:1 16752:1 16760:3 16766:1 16777:6 16793:2 16816:1 16818:1 16822:3 16824:1 16849:3 16866:1 16870:2 16897:5 16916:6 16917:1 16940:1 16941:1 17001:1 17016:1 17023:1 17039:1 17054:2 17061:2 17070:1 17091:3 17093:1 17102:1 17111:1 17116:1 17117:1 17148:2 17158:1 17180:1 17192:1 17207:2 17218:1 17256:1 17281:1 17282:1 17290:1 17297:2 17314:1 17323:1 17331:3 17337:1 17343:2 17354:2 17376:1 17388:1 17405:1 17408:2 17461:1 17476:1 17483:1 17513:1 17516:1 17520:1 17525:6 17530:1 17538:1 17544:1 17565:1 17568:3 17580:1 17583:2 17618:1 17624:3 17696:1 17700:1 17701:1 17716:2 17717:2 17733:4 17739:1 17753:1 17757:1 17770:1 17772:2 17773:1 17774:1 17778:2 17779:1 17787:1 17800:1 17804:4 17812:1 17843:1 17868:1 17871:2 17876:1 17877:2 17879:6 17899:1 17906:4 17921:1 17935:1 17947:1 17948:1 17964:1 17986:1 17988:1 17993:1 17997:1 18029:1 18031:1 18032:1 18041:4 18054:1 18055:1 18070:2 18071:3 18077:1 18089:1 18097:1 18098:1 18109:2 18121:1 18132:1 18147:1 18152:1 18156:5 18159:3 18164:1 18169:1 18182:1 18191:1 18218:1 18223:1 18306:1 18307:1 18334:1 18339:2 18345:1 18346:1 18355:1 18367:2 18376:1 18379:1 18382:1 18397:1 18410:2 18424:3 18429:2 18436:1 18445:7 18450:1 18453:1 18493:1 18494:1 18509:1 18537:1 18556:1 18562:1 18573:1 18582:1 18624:1 18634:1 18643:1 18650:1 18653:1 18677:1 18678:1 18687:1 18703:1 18706:1 18709:1 18723:1 18729:1 18737:1 18738:2 18742:1 18753:1 18754:1 18767:1 18774:4 18829:3 18836:1 18842:1 18880:3 18884:2 18897:1 18902:1 18920:1 18922:1 18931:1 18937:1 18943:3 18944:1 18945:1 18970:1 18978:1 18994:2 19022:1 19030:1 19040:1 19041:1 19046:1 19058:1 19060:1 19067:1 19069:1 19095:1 19097:1 19120:1 19121:1 19122:1 19154:1 19163:1 19224:1 19234:1 19288:2 19290:1 19292:1 19301:1 19302:1 19303:1 19322:1 19369:1 19372:1 19406:1 19417:1 19421:1 19467:1 19469:1 19473:2 19476:2 19477:1 19483:1 19485:1 19489:2 19490:1 19515:1 19526:3 19553:3 19555:3 19594:1 19611:2 19614:1 19635:1 19651:1 19657:3 19660:1 19665:4 19670:1 19677:1 19678:3 19698:1 19710:1 19711:1 19722:1 19730:1 19732:1 19739:1 19757:1 19764:1 19777:1 19798:1 19802:1 19803:5 19807:1 19809:1 19816:1 19837:1 19850:1 19872:1 19876:2 19884:2 19887:1 19899:1 19900:1 19950:1 19970:1 19977:1 19980:1 20026:1 20034:2 20073:1 20074:1 20081:1 20111:1 20112:1 20126:1 20132:1 20152:2 20174:1 20201:1 20230:1 20269:1 20289:1 20306:1 20318:1 20333:1 20344:1 20352:1 20355:1 20358:1 20394:2 20401:1 20402:1 20403:1 20411:1 20413:1 20480:2 20492:2 20522:1 20531:3 20551:1 20589:1 20590:1 20601:1 20605:1 20610:1 20613:4 20624:1 20634:2 20641:1 20658:1 20661:1 20708:1 20712:1 20714:1 20731:1 20735:1 20753:2 20757:3326 20781:1 20793:1 20795:1 20832:1 20875:2 20884:1 20886:1 20912:2 20941:1 20950:1 20951:1 20963:1 20970:1 20977:1 20978:1 20991:1 20996:1 20998:1 20999:1 21000:1 21013:1 21049:2 21073:1 21074:1 21109:1 21111:1 21120:1 21121:1 21133:1 21136:1 21145:1 21154:1 21158:1 21167:1 21190:1 21212:1 21224:1 21225:1 21230:1 21233:2 21234:1 21259:1 21262:3 21266:1 21330:1 21332:2 21336:1 21337:1 21351:1 21371:1 21374:1 21379:1 21389:1 21396:1 21414:1 21423:2 21435:1 21437:1 21438:1 21455:1 21472:1 21503:1 21514:1 21521:9 21544:1 21551:1 21553:6 21558:1 21565:1 21587:3 21596:1 21617:1 21643:2 21649:3 21657:1 21669:1 21688:1 21700:1 21710:1 21736:1 21737:4 21778:3 21783:1 21806:2 21816:1 21831:1 21842:1 21873:1 21878:1 21911:1 21915:2 21952:1 21974:1 21982:1 21988:1 22007:1 22036:1 22042:1 22043:1 22049:1 22053:1 22056:1 22070:1 22105:1 22170:1 22178:1 22182:2 22188:1 22203:2 22204:1 22207:1 22230:1 22251:1 22252:3 22266:1 22276:1 22277:1 22278:7 22299:3 22303:1 22305:1 22320:2 22328:1 22331:1 22332:1 22350:1 22352:1 22361:1 22375:1 22377:2 22415:2 22419:1 22445:3 22448:1 22449:1 22460:1 22482:1 22483:1 22493:1 22552:1 22563:1 22582:1 22655:4 22666:1 22683:1 22712:1 22719:2 22722:1 22782:3 22784:1 22813:1 22818:2 22819:2 22824:1 22828:1 22838:1 22848:1 22859:1 22865:1 22867:2 22872:1 22894:4 22897:2 22901:1 22903:1 22909:2 22912:1 22915:1 22918:1 22949:1 22960:1 22963:1 22968:1 22978:1 22986:1 22992:1 23000:1 23006:1 23016:1 23022:2 23039:1 23042:1 23068:2 23083:3 23112:1 23114:2 23128:1 23136:1 23145:1 23157:7 23163:2 23172:1 23173:1 23175:1 23183:1 23185:1 23192:1 23196:1 23198:5 23202:1 23213:2 23216:2 23222:1 23264:1 23285:1 23287:2 23291:6 23302:1 23315:1 23320:1 23322:3 23337:2 23363:1 23387:1 23415:1 23421:1 23426:1 23427:1 23429:1 23430:1 23433:2 23435:1 23438:1 23453:3 23454:1 23455:1 23456:2 23472:1 23473:1 23478:2 23487:1 23541:2 23553:1 23555:1 23568:1 23570:1 23572:1 23574:1 23578:1 23600:4 23603:2 23605:1 23618:1 23620:1 23661:1 23684:3 23685:1 23700:1 23701:1 23702:2 23704:1 23725:1 23730:1 23734:1 23741:3 23743:1 23746:1 23754:1 23759:1 23774:1 23793:1 23801:2 23822:1 23834:2 23839:3 23853:1 23885:1 23907:1 23926:1 23927:2 23930:1 23938:1 23945:2 23951:1 23958:2 23962:2 23973:1 23976:2 23986:1 23991:1 24000:1 24012:1 24026:1 24131:2 24136:2 24139:2 24161:1 24162:2 24173:2 24174:1 24217:1 24224:1 24236:1 24280:1 24287:3 24300:2 24305:3 24316:1 24322:3 24333:1 24340:1 24342:2 24355:2 24383:1 24384:1 24391:2 24394:1 24404:1 24414:1 24441:1 24443:1 24467:3 24475:1 24507:1 24524:1 24525:1 24557:1 24559:1 24563:1 24575:1 24576:1 24590:1 24596:1 24606:1 24610:1 24614:1 24633:1 24662:1 24665:1 24671:1 24700:1 24701:1 24702:1 24703:1 24718:1 24738:2 24742:1 24755:3 24770:3 24776:2 24784:1 24787:1 24789:1 24790:1 24793:10 24797:1 24800:1 24805:1 24812:1 24819:1 24820:1 24839:1 24854:1 24858:1 24868:1 24870:1 24875:1 24876:1 24890:1 24896:1 24898:2 24931:1 24938:1 24965:1 24996:1 25007:1 25045:2 25046:1 25059:2 25069:2 25121:1 25132:1 25133:1 25135:1 25154:1 25167:1 25172:1 25188:1 25190:1 25259:1 25275:1 25306:1 25319:1 25330:1 25356:2 25364:1 25366:2 25383:1 25401:1 25442:2 25458:1 25460:2 25466:1 25480:1 25481:2 25483:1 25485:1 25504:1 25559:1 25564:1 25583:1 25588:1 25591:1 25593:2 25605:1 25607:1 25615:1 25625:1 25634:1 25636:1 25664:1 25665:3 25668:1 25702:2 25718:2 25747:1 25750:1 25752:1 25770:1 25777:1 25784:3 25792:1 25796:1 25803:1 25805:1 25806:1 25811:2 25812:1 25814:1 25821:1 25838:1 25860:1 25862:2 25873:1 25876:2 25877:1 25883:1 25887:1 25895:1 25896:2 25898:1 25902:1 25905:1 25914:1 25935:3 25965:2 25968:1 25969:1 25991:2 26018:1 26038:1 26039:1 26044:1 26047:1 26054:1 26068:1 26113:1 26123:1 26128:1 26135:1 26146:1 26155:4 26157:1 26166:1 26173:1 26195:2 26211:2 26219:2 26256:1 26271:1 26273:2 26276:3 26277:1 26320:1 26333:1 26339:2 26343:1 26370:1 26371:1 26384:2 26411:1 26427:1 26429:1 26435:1 26460:2 26472:1 26474:1 26534:1 26574:1 26598:1 26607:1 26623:1 26625:2 26639:1 26688:1 26700:1 26713:1 26716:1 26728:2 26729:1 26731:1 26735:1 26740:1 26758:1 26813:1 26817:2 26828:3 26838:1 26845:9 26848:1 26849:1 26852:1 26853:1 26861:1 26863:1 26870:1 26887:1 26912:2 26920:2 26921:1 26951:2 26955:1 26964:1 26977:1 26979:1 26994:1 26998:3 27000:4 27007:1 27020:1 27037:2 27040:2 27047:1 27048:1 27053:1 27071:1 27075:1 27093:1 27099:1 27112:1 27135:1 27140:1 27177:1 27190:2 27207:2 27209:3 27213:4 27217:1 27224:1 27241:1 27246:1 27252:2 27264:1 27284:1 27292:1 27302:1 27328:2 27344:1 27365:1 27375:1 27412:1 27415:1 27422:2 27457:4 27462:3 27470:1 27480:1 27487:1 27524:1 27539:1 27543:1 27563:2 27565:1 27590:1 27594:3 27600:1 27628:1 27640:1 27650:1 27663:1 27678:2 27689:2 27706:1 27717:1 27741:1 27755:1 27775:1 27783:3 27799:5 27803:3 27804:1 27820:1 27821:1 27835:1 27845:1 27853:1 27874:1 27875:1 27876:1 27878:2 27879:1 27889:1 27903:1 27904:1 27940:1 27943:1 27964:2 27965:1 27975:3 27978:2 27979:1 27985:1 27988:2 27992:1 27993:1 27994:1 28006:1 28012:2 28019:1 28037:1 28047:1 28055:1 28061:3 28062:1 28072:3 28084:2 28086:1 28097:2 28100:1 28108:1 28130:1 28132:2 28139:1 28157:1 28174:1 28175:1 28207:1 28208:1 28210:1 28224:1 28228:1 28229:1 28236:1 28240:1 28262:1 28275:1 28278:1 28326:1 28344:2 28351:1 28374:2 28375:1 28377:2 28380:2 28384:1 28394:1 28397:1 28412:1 28424:1 28428:1 28442:1 28488:1 28491:2 28507:1 28509:1 28511:1 28526:1 28528:1 28538:1 28540:1 28547:2 28551:1 28562:1 28563:1 28571:1 28581:1 28587:3 28591:1 28593:1 28604:1 28620:1 28628:1 28635:1 28638:3 28670:3 28674:1 28689:1 28706:1 28720:4 28739:1 28745:1 28746:1 28766:1 28781:1 28792:2 28810:4 28827:3 28832:1 28841:1 28848:4 28854:1 28880:1 28887:1 28888:1 28941:1 28946:1 28992:1 28994:1 29007:1 29027:2 29042:1 29049:1 29051:1 29054:1 29059:1 29067:1 29095:1 29104:1 29115:1 29125:1 29126:1 29134:1 29139:4 29141:1 29145:3 29146:2 29176:1 29179:1 29198:1 29228:1 29251:1 29254:1 29273:2 29289:2 29296:3 29303:1 29312:1 29334:2 29356:2 29365:1 29392:2 29413:1 29453:1 29455:2 29462:1 29463:1 29465:2 29472:1 29494:1 29509:1 29550:1 29587:1 29593:1 29600:1 29627:1 29628:1 29633:1 29638:1 29640:1 29647:4 29678:2 29681:3 29702:1 29724:1 29727:2 29732:1 29733:1 29738:1 29740:1 29744:2 29745:1 29746:3 29759:1 29760:4 29763:1 29770:5 29792:1 29822:1 29853:1 29878:1 29883:1 29894:2 29899:2 29900:1 29905:1 29942:2 29947:1 29993:1 29995:1 30007:1 30012:2 30016:2 30021:2 30042:1 30044:2 30052:1 30053:1 30066:1 30083:1 30085:1 30090:1 30092:1 30093:1 30095:1 30096:1 30101:1 30106:1 30133:1 30143:1 30148:1 30156:1 30160:2 30163:2 30169:1 30178:1 30186:2 30202:1 30203:1 30209:1 30210:2 30253:1 30262:1 30266:2 30269:1 30275:1 30280:1 30306:1 30309:1 30318:1 30322:1 30323:1 30333:1 30335:1 30345:2 30355:1 30359:1 30365:1 30390:2 30392:2 30411:1 30413:1 30447:2 30475:1 30488:2 30505:1 30518:1 30533:2 30557:1 30559:1 30564:2 30571:1 30576:1 30577:1 30590:1 30632:1 30642:1 30644:1 30663:1 30675:2 30689:1 30692:1 30723:3 30727:1 30732:4 30752:1 30756:1 30763:1 30787:1 30799:1 30817:1 30820:1 30836:13 30837:1 30841:1 30860:1 30862:1 30879:5 30896:2 30906:1 30919:1 30944:1 30985:2 31017:5 31020:1 31025:1 31034:1 31036:1 31057:6 31062:1 31063:1 31075:1 31077:1 31079:1 31080:1 31095:1 31112:1 31116:1 31118:1 31123:4 31126:1 31144:1 31156:2 31179:1 31188:2 31191:1 31209:2 31235:1 31256:1 31281:2 31286:2 31323:1 31330:1 31332:1 31335:1 31340:1 31342:1 31348:1 31360:1 31370:1 31379:1 31396:3 31398:1 31401:1 31402:1 31422:1 31434:1 31449:3 31452:1 31469:1 31476:1 31478:1 31567:3 31583:2 31593:3 31603:1 31606:1 31624:3 31628:2 31635:1 31653:1 31659:1 31662:1 31681:1 31688:1 31716:1 31719:1 31725:1 31735:1 31739:1 31769:1 31807:1 31815:1 31819:1 31837:2 31849:1 31864:1 31876:1 31880:1 31896:2 31910:1 31937:1 31950:1 31959:1 31984:1 31991:1 31992:1 31994:1 32016:1 32044:1 32066:2 32080:2 32081:1 32105:1 32109:1 32120:3 32122:1 32138:1 32163:1 32214:1 32217:1 32221:1 32233:1 32235:1 32243:3 32244:1 32245:3 32246:1 32248:1 32249:1 32250:2 32254:2 32257:2 32258:2 32261:2 32266:2 32267:1 32277:1 32278:1 32298:2 32303:1 32306:1 32320:1 32324:1 32333:2 32337:1 32343:1 32350:1 32374:1 32378:1 32382:1
15 6:1 43:1 71:3 91:1 104:2 122:1 166:1 167:4 187:1 189:2 196:1 200:1 224:1 225:1 226:1 227:2 243:1 244:2 248:1 267:1 282:1 285:3 289:1 335:1 337:2 356:2 370:1 382:1 388:2 406:4 408:2 409:2 443:1 444:2 463:1 468:1 493:1 503:3 517:1 529:1 541:2 566:1 586:1 612:1 615:1 616:1 622:1 623:1 645:3 649:1 655:2 661:1 666:1 682:1 685:6 693:1 696:1 697:2 699:2 704:1 747:1 768:3 791:1 795:1 796:1 813:4 829:2 892:1 898:1 928:2 934:1 935:1 956:2 958:1 959:1 961:1 963:2 968:1 970:1 972:2 978:1 980:1 981:1 985:1 988:2 1014:2 1018:1 1020:3 1023:1 1027:2 1031:1 1039:1 1052:3 1061:1 1065:1 1072:1 1075:1 1089:1 1103:1 1114:2 1119:3 1149:2 1150:1 1154:2 1167:1 1172:1 1180:1 1205:2 1206:1 1210:1 1235:1 1255:1 1259:2 1273:1 1277:2 1288:2 1297:1 1324:1 1328:3 1331:1 1337:1 1343:1 1367:2 1374:2 1385:1 1396:1 1399:1 1407:2 1408:1 1429:1 1431:1 1448:1 1458:1 1459:1 1465:1 1472:1 1483:1 1484:1 1500:1 1510:1 1513:1 1562:1 1577:2 1578:1 1586:1 1587:1 1592:7 1629:1 1632:1 1635:2 1641:2 1642:2 1650:1 1651:1 1656:5 1673:1 1682:1 1686:1 1699:1 1724:1 1725:1 1732:1 1733:4 1736:4 1737:1 1744:2 1749:2 1777:1 1778:1 1790:1 1810:2 1813:2 1821:2 1822:2 1824:1 1827:1 1830:1 1842:3 1843:3 1868:1 1870:1 1874:1 1897:1 1914:1 1915:1 1927:1 1933:1 1948:2 1952:2 1953:1 1956:1 1973:1 1981:2 2007:1 2008:1 2013:1 2032:1 2035:1 2037:1 2040:1 2042:1 2043:2 2047:1 2050:2 2052:1 2088:2 2091:1 2098:1 2100:1 2114:1 2118:1 2144:1 2156:1 2159:4 2165:1 2171:1 2174:2 2177:1 2191:1 2201:1 2254:1 2273:2 2296:1 2327:1 2334:1 2344:1 2359:1 2364:1 2386:3 2419:1 2426:2 2449:1 2451:1 2462:2 2463:1 2493:1 2495:1 2501:1 2503:2 2505:3 2509:1 2516:2 2520:2 2522:1 2524:2 2525:2 2528:2 2531:1 2532:4 2533:1 2547:1 2559:2 2561:1 2607:2 2636:1 2674:2 2677:2 2678:1 2707:1 2711:3 2720:2 2747:1 2804:1 2814:2 2830:1 2833:1 2844:1 2857:1 2860:1 2925:1 2940:2 2948:2 2953:1 2974:1 2977:1 2982:1 2983:3 2984:1 2991:1 3004:1 3028:3 3038:1 3091:1 3103:2 3109:1 3112:1 3138:2 3145:1 3155:1 3161:5 3169:4 3170:1 3178:1 3179:1 3198:2 3212:2 3216:4 3228:1 3235:1 3236:1 3238:1 3240:1 3242:2 3247:1 3250:1 3275:1 3280:2 3286:1 3311:1 3313:1 3321:1 3328:2 3333:1 3348:1 3356:2 3372:1 3400:1 3403:2 3411:1 3432:1 3443:1 3450:1 3483:1 3494:1 3548:2 3562:1 3570:1 3590:1 3600:1 3610:1 3612:1 3646:3 3658:1 3670:1 3671:1 3676:1 3699:1 3701:1 3705:1 3708:1 3735:3 3736:1 3779:1 3786:1 3791:1 3803:1 3849:1 3891:1 3892:1 3920:1 3929:1 3935:1 3952:1 3964:2 3968:1 4002:1 4006:1 4014:1 4018:1 4019:1 4032:3 4037:1 4055:1 4066:1 4067:2 4070:1 4083:1 4102:1 4105:1 4124:1 4130:2 4131:3 4151:1 4152:1 4165:1 4171:1 4183:1 4187:1 4189:2 4212:2 4214:2 4250:2 4252:4 4255:2 4260:1 4282:1 4291:1 4292:1 4303:1 4305:1 4307:1 4310:1 4321:1 4340:1 4363:1 4374:1 4377:1 4401:2 4402:1 4404:1 4405:1 4415:1 4422:2 4425:1 4427:1 4445:1 4454:1 4462:1 4463:1 4483:1 4515:1 4537:1 4563:2 4580:1 4609:1 4625:1 4629:3 4635:1 4657:1 4665:2 4669:1 4671:1 4685:1 4715:1 4718:1 4736:1 4748:4 4772:1 4773:1 4781:1 4796:1 4832:1 4863:1 4873:1 4880:1 4889:1 4896:2 4932:2 4935:1 4938:1 4954:1 4967:1 4969:1 4970:1 5001:1 5012:1 5017:2 5026:3 5035:1 5053:2 5054:2 5058:2 5074:1 5078:1 5096:2 5131:1 5151:1 5158:2 5162:2 5178:2 5186:1 5187:2 5206:1 5238:1 5240:1 5242:2 5247:2 5315:1 5318:2 5327:1 5331:2 5336:1 5382:7 5412:1 5418:1 5431:1 5442:1 5443:1 5447:2 5500:4 5520:2 5521:1 5526:1 5527:1 5529:1 5532:1 5535:2 5537:1 5541:1 5542:1 5546:1 5548:2 5549:1 5551:1 5566:1 5574:1 5578:1 5646:2 5649:1 5679:1 5690:1 5693:1 5697:2 5712:1 5713:1 5733:1 5734:1 5741:1 5757:2 5760:3 5767:1 5774:1 5788:1 5792:1 5805:2 5807:3 5823:3 5829:1 5843:3 5861:1 5896:2 5923:1 5924:1 5928:1 5941:4 5963:2 5967:1 5980:1 5983:2 5998:3 6015:1 6027:1 6031:1 6034:1 6037:1 6038:1 6050:1 6051:1 6061:1 6063:1 6069:1 6085:3 6106:1 6126:1 6143:2 6171:1 6218:1 6232:1 6268:1 6273:1 6275:1 6287:3 6307:1 6310:1 6333:1 6350:1 6382:1 6390:1 6394:1 6395:2 6397:1 6410:1 6423:2 6440:1 6453:1 6479:1 6483:1 6488:1 6536:1 6547:1 6558:1 6570:1 6579:1 6586:1 6594:1 6628:2 6633:1 6636:1 6656:1 6681:1 6725:2 6742:4 6745:1 6749:1 6761:2 6764:1 6775:1 6779:1 6780:1 6785:1 6825:3 6831:3 6850:1 6866:1 6906:2 6920:1 6931:3 6938:1 6945:1 6955:1 7021:1 7026:1 7035:1 7037:1 7044:2 7047:1 7053:2 7055:2 7056:3 7058:1 7060:2 7064:2 7066:1 7071:3 7073:4 7113:1 7119:1 7122:1 7129:1 7130:1 7141:1 7152:1 7154:3 7165:2 7167:1 7168:2 7184:1 7189:2 7215:1 7220:3 7229:1 7231:2 7242:1 7248:1 7298:1 7308:1 7325:2 7328:3 7330:1 7331:4 7332:1 7338:1 7365:2 7367:1 7370:1 7389:1 7403:1 7406:1 7432:3 7453:1 7456:1 7463:1 7486:1 7489:1 7526:1 7527:1 7535:1 7544:1 7554:1 7559:1 7565:1 7610:2 7613:1 7615:1 7625:1 7628:1 7629:4 7635:1 7644:1 7665:1 7679:1 7683:2 7714:1 7732:1 7739:1 7746:1 7748:1 7758:2 7774:1 7785:1 7796:1 7797:1 7805:1 7811:2 7823:1 7824:1 7832:2 7851:2 7882:5 7884:2 7887:2 7892:1 7910:2 7923:3 7927:1 7930:1 7931:1 7939:3 7960:1 7969:1 7979:4 7991:1 8032:1 8044:1 8047:1 8059:1 8066:1 8087:1 8092:1 8099:1 8111:1 8133:1 8137:5 8152:1 8187:1 8190:1 8219:2 8235:1 8253:1 8262:3 8288:1 8300:1 8305:1 8324:2 8327:1 8329:1 8335:2 8338:1 8344:1 8347:1 8348:1 8360:1 8368:1 8379:2 8393:1 8395:1 8407:1 8408:1 8414:1 8422:1 8444:1 8448:1 8457:2 8459:3 8461:2 8462:1 8470:1 8489:4 8514:1 8521:1 8549:2 8551:6 8569:2 8571:1 8602:1 8607:2 8609:1 8620:21 8629:1 8641:2 8642:5 8655:2 8669:1 8678:1 8681:1 8689:2 8690:1 8697:1 8707:1 8722:1 8724:1 8737:1 8746:1 8761:1 8769:1 8785:3 8792:1 8817:1 8819:1 8833:1 8851:1 8855:4 8860:1 8863:1 8869:1 8873:1 8876:1 8902:1 8912:1 8914:1 8921:3 8950:1 8957:2 8975:2 8979:1 8985:1 8995:1 9005:1 9019:1 9025:1 9028:3 9039:1 9052:1 9074:1 9076:2 9082:3 9087:2 9088:1 9092:1 9104:1 9110:4 9127:1 9156:3 9157:11 9170:1 9171:1 9180:1 9181:1 9188:1 9207:1 9208:2 9214:1 9216:3 9222:1 9235:1 9243:2 9252:3 9253:2 9266:1 9282:1 9298:4 9333:1 9340:1 9353:1 9361:1 9397:2 9402:1 9406:1 9413:1 9419:1 9426:1 9456:1 9481:1 9493:1 9499:1 9525:1 9534:2 9538:1 9546:1 9549:1 9562:1 9585:1 9588:2 9590:1 9593:1 9597:1 9599:1 9605:3 9610:1 9611:1 9626:1 9627:1 9651:1 9656:1 9671:1 9691:2 9692:1 9693:1 9698:1 9711:1 9719:1 9748:1 9752:1 9769:1 9777:2 9806:1 9824:2 9825:2 9826:8 9836:1 9845:1 9849:1 9853:1 9865:3 9875:1 9877:1 9896:1 9914:1 9921:1 9926:1 9928:1 9943:1 9950:2 9956:1 9983:1 9992:7 10025:2 10036:1 10114:1 10164:1 10183:1 10192:1 10193:2 10202:1 10208:1 10226:1 10237:1 10239:2 10255:1 10258:1 10260:1 10269:2 10279:4 10306:1 10314:1 10322:3 10326:1 10357:2 10362:1 10365:1 10377:1 10385:1 10390:2 10413:1 10415:1 10472:2 10522:1 10542:1 10556:1 10572:2 10573:2 10574:1 10592:1 10593:1 10604:1 10606:1 10623:1 10629:1 10640:1 10643:1 10650:2 10655:1 10656:1 10677:1 10686:1 10700:3 10702:1 10719:2 10753:1 10771:1 10782:1 10783:1 10785:1 10791:1 10792:1 10795:1 10796:1 10797:1 10838:1 10874:1 10883:1 10888:1 10931:5 10947:1 10954:2 10966:2 10976:1 10980:1 10990:1 11020:1 11021:1 11027:1 11039:1 11063:1 11070:1 11101:1 11114:1 11115:1 11122:1 11140:1 11150:1 11158:1 11159:3 11175:1 11197:1 11213:2 11220:2 11241:1 11274:2 11278:1 11282:2 11291:2 11293:1 11298:1 11304:1 11307:1 11310:1 11312:2 11313:2 11326:1 11333:1 11341:1 11342:1 11346:1 11350:1 11373:8 11386:2 11390:1 11401:1 11403:3 11423:2 11442:3 11443:1 11451:1 11468:1 11482:3 11483:1 11486:1 11493:1 11516:1 11536:1 11547:1 11554:1 11567:1 11571:1 11579:1 11583:1 11584:1 11591:1 11594:1 11600:1 11601:2 11604:1 11608:3 11630:1 11689:1 11690:1 11691:1 11701:1 11706:1 11712:1 11717:1 11737:1 11746:4 11749:2 11769:1 11771:1 11785:1 11808:1 11809:2 11810:1 11834:1 11850:6 11876:2 11888:1 11921:1 11926:8 11959:2 11960:2 11961:2 11977:1 11994:1 12009:1 12015:1 12020:2 12024:1 12035:1 12043:3 12048:1 12097:1 12099:1 12100:1 12102:1 12119:1 12128:1 12134:1 12136:1 12149:1 12189:1 12205:1 12230:1 12242:1 12270:1 12273:1 12275:2 12296:2 12300:2 12312:1 12316:1 12339:1 12341:1 12343:1 12349:1 12380:1 12408:1 12418:1 12420:2 12440:1 12442:2 12444:1 12457:2 12458:2 12474:1 12475:1 12476:1 12477:1 12486:1 12496:1 12497:2 12509:1 12510:2 12517:1 12520:1 12536:1 12562:2 12563:1 12570:3 12574:1 12596:1 12623:2 12632:1 12648:1 12654:1 12688:2 12690:1 12692:1 12705:1 12716:4 12722:1 12733:1 12735:1 12736:1 12744:1 12746:3 12756:1 12764:1 12774:1 12776:1 12784:1 12822:1 12825:1 12841:1 12843:1 12846:1 12860:1 12865:1 12888:1 12901:1 12917:1 12922:1 12933:1 12934:1 12947:1 12960:1 12965:1 12973:1 12997:1 13017:2 13022:1 13032:1 13041:1 13068:1 13092:3 13116:1 13121:1 13151:2 13164:1 13167:1 13173:4 13178:1 13180:1 13182:3 13186:1 13187:1 13195:1 13205:1 13207:1 13213:1 13229:1 13234:1 13239:1 13240:1 13253:1 13256:1 13265:3 13269:2 13297:3 13325:1 13351:3 13363:1 13405:1 13408:1 13434:1 13439:1 13467:1 13476:1 13481:1 13502:2 13511:2 13513:3 13516:1 13521:1 13528:1 13546:1 13554:1 13558:1 13561:1 13575:2 13581:3 13602:1 13625:1 13626:4 13627:1 13637:1 13648:1 13650:1 13654:5 13658:2 13671:1 13674:1 13685:1 13688:1 13698:3 13714:1 13728:3 13740:1 13746:1 13757:1 13765:1 13774:1 13778:2 13784:1 13786:1 13806:1 13834:5 13844:3 13854:3 13864:1 13873:3 13890:1 13901:1 13914:1 13940:3 13954:1 13959:1 13969:1 13980:1 14011:1 14034:1 14036:1 14045:1 14056:1 14067:1 14072:1 14101:1 14108:1 14117:1 14118:1 14119:1 14120:2 14122:1 14126:1 14129:2 14132:1 14157:1 14161:1 14174:1 14198:2 14206:1 14243:1 14266:1 14267:1 14275:1 14284:1 14291:1 14302:1 14311:1 14328:1 14329:5 14350:1 14353:2 14356:1 14360:1 14371:2 14392:1 14408:1 14428:1 14472:1 14505:1 14520:1 14558:1 14584:1 14601:1 14603:1 14620:1 14623:2 14632:2 14682:1 14737:1 14755:1 14759:1 14773:1 14783:1 14795:1 14807:1 14819:1 14821:9 14841:1 14846:2 14849:1 14850:1 14853:1 14858:2 14872:1 14879:1 14887:6 14898:1 14905:1 14910:1 14921:1 14923:1 14938:1 14976:2 14978:7 14992:1 14994:4 14996:1 15000:1 15025:1 15028:1 15039:2 15048:1 15054:2 15069:2 15075:6 15081:1 15090:3 15131:1 15135:2 15139:3 15148:1 15150:1 15161:1 15170:1 15183:1 15187:1 15218:1 15238:1 15243:3 15263:1 15281:1 15291:1 15293:1 15314:1 15325:1 15346:1 15368:1 15373:1 15377:1 15384:1 15393:1 15401:1 15411:1 15444:1 15450:1 15458:1 15477:1 15489:5 15496:3 15516:1 15548:1 15583:1 15585:1 15590:1 15596:1 15601:2 15647:1 15657:1 15663:1 15668:2 15669:1 15674:2 15681:1 15699:1 15700:1 15702:1 15721:1 15759:1 15784:2 15800:1 15802:1 15805:2 15817:2 15826:1 15829:1 15840:1 15853:3 15880:2 15899:2 15948:1 15949:1 15958:1 15963:1 15996:1 16011:1 16025:1 16030:1 16039:1 16049:1 16087:2 16094:1 16097:1 16098:1 16102:1 16111:1 16113:1 16131:1 16182:1 16208:1 16209:1 16214:3 16227:2 16228:1 16251:2 16252:1 16257:1 16272:1 16277:1 16287:1 16292:2 16313:1 16321:1 16330:2 16336:1 16341:1 16347:1 16352:3 16358:2 16371:1 16384:1 16391:1 16411:1 16426:2 16438:2 16460:1 16480:1 16487:1 16523:6 16528:2 16540:3 16543:1 16544:1 16548:9 16554:1 16601:2 16624:1 16681:1 16697:2 16701:2 16716:1 16738:1 16739:1 16752:1 16760:3 16766:1 16777:6 16793:2 16816:1 16818:1 16822:3 16824:1 16849:3 16866:1 16870:2 16897:5 16916:6 16917:1 16940:1 16941:1 17001:1 17016:1 17023:1 17039:1 17054:2 17061:2 17070:1 17091:3 17093:1 17102:1 17111:1 17116:1 17117:1 17148:2 17158:1 17180:1 17192:1 17207:2 17218:1 17256:1 17281:1 17282:1 17290:1 17297:2 17314:1 17323:1 17331:3 17337:1 17343:2 17354:2 17376:1 17388:1 17405:1 17408:2 17461:1 17476:1 17483:1 17513:1 17516:1 17520:1 17525:6 17530:1 17538:1 17544:1 17565:1 17568:3 17580:1 17583:2 17618:1 17624:3 17696:1 17700:1 17701:1 17716:2 17717:3 17733:4 17739:1 17753:1 17757:1 17770:1 17772:2 17773:1 17774:1 17778:2 17779:1 17787:1 17800:1 17804:4 17812:1 17843:1 17868:1 17871:2 17876:1 17877:2 17879:6 17899:1 17906:4 17921:1 17935:1 17947:1 17948:1 17964:1 17986:1 17988:1 17993:1 17997:1 18029:1 18031:1 18032:1 18041:4 18054:2 18055:1 18070:2 18071:3 18077:1 18089:1 18097:1 18098:1 18109:2 18121:1 18132:1 18147:1 18152:1 18156:5 18159:3 18164:1 18169:1 18182:1 18191:1 18218:1 18223:1 18306:1 18307:1 18334:1 18339:2 18345:1 18346:1 18355:1 18367:2 18376:1 18379:1 18382:1 18397:1 18410:2 18424:3 18429:2 18436:1 18445:7 18450:1 18453:1 18493:1 18494:1 18509:1 18537:1 18556:1 18562:1 18573:1 18582:1 18624:1 18634:1 18643:1 18650:1 18653:1 18677:1 18678:1 18687:1 18703:1 18706:1 18709:1 18723:1 18729:1 18737:1 18738:2 18742:1 18753:1 18754:1 18767:1 18774:4 18829:3 18836:1 18842:1 18880:3 18884:2 18897:1 18902:1 18920:1 18922:1 18931:1 18937:1 18943:3 18944:1 18945:1 18970:1 18978:1 18994:2 19022:1 19030:1 19040:1 19041:1 19046:1 19058:1 19060:1 19067:1 19069:1 19095:1 19097:1 19120:1 19121:1 19122:1 19154:1 19163:1 19224:1 19234:1 19288:2 19290:1 19292:1 19301:1 19302:1 19303:1 19322:1 19369:1 19372:1 19406:1 19417:1 19421:1 19443:1 19467:1 19469:1 19473:2 19476:2 19477:1 19483:1 19485:1 19489:2 19490:1 19515:1 19526:3 19553:3 19555:3 19594:1 19611:2 19614:1 19635:1 19651:1 19657:3 19660:1 19665:4 19670:1 19677:1 19678:3 19698:1 19710:1 19711:1 19722:1 19730:1 19732:1 19739:1 19757:1 19764:1 19777:1 19798:1 19802:1 19803:5 19807:1 19809:1 19816:1 19837:1 19850:1 19872:1 19876:2 19884:2 19887:1 19899:1 19900:1 19950:1 19970:1 19977:1 19980:1 20026:1 20034:2 20073:1 20074:1 20081:1 20111:1 20112:1 20126:1 20132:1 20152:2 20174:1 20201:1 20230:1 20269:1 20289:1 20306:1 20318:1 20333:1 20344:1 20352:1 20355:1 20358:1 20394:2 20401:1 20402:1 20403:1 20411:1 20413:1 20480:2 20492:2 20522:1 20531:3 20551:1 20589:1 20590:1 20601:1 20605:1 20610:1 20613:4 20624:1 20634:2 20641:1 20658:1 20661:1 20708:1 20712:1 20714:1 20731:1 20735:1 20753:2 20757:3397 20781:1 20793:1 20795:1 20832:1 20875:2 20884:1 20886:1 20912:2 20941:1 20950:1 20951:1 20963:1 20970:1 20977:1 20978:1 20991:1 20996:1 20998:1 20999:1 21000:1 21013:1 21049:2 21073:1 21074:1 21092:1 21109:1 21111:1 21120:1 21121:1 21133:1 21136:1 21145:1 21154:1 21158:1 21167:1 21190:1 21212:1 21224:1 21225:1 21230:1 21233:2 21234:1 21259:1 21262:3 21266:1 21330:1 21332:2 21336:1 21337:1 21351:1 21371:1 21374:1 21379:1 21389:1 21396:1 21414:1 21423:2 21435:1 21437:1 21438:1 21455:1 21472:1 21503:1 21514:1 21521:9 21544:1 21551:1 21553:6 21558:1 21565:1 21587:3 21596:1 21617:1 21643:2 21649:3 21657:1 21669:1 21688:1 21700:1 21710:1 21736:1 21737:4 21778:3 21783:1 21787:1 21806:2 21816:1 21831:1 21842:1 21873:1 21878:1 21911:1 21915:2 21952:1 21974:1 21982:1 21988:1 22007:1 22036:1 22042:1 22043:1 22049:1 22053:1 22056:1 22070:1 22105:1 22157:1 22170:1 22178:1 22182:2 22188:1 22203:2 22204:1 22207:1 22230:1 22251:1 22252:3 22266:1 22276:1 22277:1 22278:7 22299:3 22303:1 22305:1 22320:2 22328:1 22331:1 22332:1 22350:1 22352:1 22361:1 22375:1 22377:2 22415:2 22419:1 22445:3 22448:1 22449:1 22460:1 22482:1 22483:1 22493:1 22552:1 22563:1 22582:1 22655:4 22666:1 22683:1 22712:1 22719:2 22722:1 22782:3 22784:1 22813:1 22818:2 22819:2 22824:1 22828:1 22838:1 22848:1 22859:1 22865:1 22867:2 22872:1 22894:4 22897:2 22901:1 22903:1 22909:2 22912:1 22915:1 22918:1 22949:1 22960:1 22963:1 22968:1 22974:1 22978:1 22986:1 22992:1 23000:1 23006:1 23016:1 23022:2 23039:1 23042:1 23068:2 23083:3 23112:1 23114:2 23128:1 23136:1 23145:1 23157:7 23163:2 23172:1 23173:1 23175:1 23183:1 23185:1 23192:1 23196:1 23198:5 23202:1 23213:2 23216:2 23222:1 23264:1 23285:1 23287:2 23291:6 23302:1 23315:1 23320:1 23322:3 23337:2 23363:1 23387:1 23415:1 23421:1 23426:1 23427:1 23429:1 23430:1 23433:2 23435:1 23438:1 23453:3 23454:1 23455:1 23456:2 23472:1 23473:1 23478:2 23487:1 23541:2 23553:1 23555:1 23568:1 23570:1 23572:1 23574:1 23578:1 23600:4 23603:2 23605:1 23618:1 23620:1 23661:1 23684:3 23685:1 23700:1 23701:1 23702:2 23704:1 23725:1 23730:1 23734:1 23741:3 23743:1 23746:1 23754:1 23759:1 23774:1 23793:1 23801:2 23822:1 23834:2 23839:3 23853:1 23885:1 23907:1 23926:1 23927:2 23930:1 23938:1 23945:2 23951:1 23958:2 23962:2 23973:1 23976:2 23986:1 23991:1 24000:1 24012:1 24026:1 24131:2 24136:2 24139:2 24161:1 24162:2 24173:2 24174:1 24217:1 24224:1 24236:1 24280:1 24287:3 24300:2 24305:3 24316:1 24322:3 24333:1 24340:1 24342:2 24355:2 24383:1 24384:1 24391:2 24394:1 24404:1 24414:1 24437:1 24441:1 24443:1 24467:3 24475:1 24507:1 24524:1 24525:1 24557:1 24559:1 24563:2 24575:1 24576:1 24590:1 24596:1 24606:1 24610:1 24614:1 24633:1 24662:1 24665:1 24671:1 24700:1 24701:1 24702:1 24703:1 24718:1 24738:2 24742:1 24755:3 24770:3 24776:2 24784:1 24787:1 24789:1 24790:1 24793:10 24797:1 24800:1 24805:1 24812:1 24819:1 24820:1 24839:1 24854:1 24858:1 24868:1 24870:1 24875:1 24876:1 24890:1 24896:1 24898:2 24931:1 24938:1 24965:1 24996:1 25007:1 25045:2 25046:1 25059:2 25069:2 25121:1 25132:1 25133:1 25135:1 25154:1 25167:1 25172:1 25188:1 25190:1 25215:1 25259:1 25275:1 25306:1 25319:1 25330:1 25356:2 25364:1 25366:2 25383:1 25401:1 25442:2 25458:1 25460:2 25466:1 25480:1 25481:2 25483:1 25485:1 25504:1 25559:1 25564:1 25583:1 25588:1 25591:1 25593:2 25605:1 25607:1 25615:1 25625:1 25634:1 25636:1 25664:1 25665:3 25668:1 25702:2 25718:2 25747:1 25750:1 25752:1 25770:1 25777:1 25784:3 25792:1 25796:1 25803:1 25805:1 25806:1 25811:2 25812:1 25814:1 25821:1 25838:1 25860:1 25862:2 25873:1 25876:2 25877:1 25883:1 25887:1 25895:1 25896:2 25898:1 25902:1 25905:1 25914:1 25935:3 25965:2 25968:1 25969:1 25991:2 26018:1 26038:1 26039:1 26044:1 26047:1 26054:1 26068:1 26113:1 26123:1 26128:1 26135:1 26146:1 26155:4 26157:1 26166:1 26173:1 26195:2 26211:2 26219:2 26256:1 26271:1 26273:2 26276:3 26277:1 26320:1 26333:1 26339:2 26343:1 26370:1 26371:1 26384:2 26411:1 26427:1 26429:1 26435:1 26460:2 26472:1 26474:1 26534:1 26574:1 26598:1 26607:2 26623:1 26625:2 26639:1 26688:1 26700:1 26713:1 26716:1 26728:2 26729:1 26731:1 26735:1 26740:1 26758:1 26813:1 26817:2 26828:3 26838:1 26845:9 26848:1 26849:1 26852:1 26853:1 26861:1 26863:1 26870:1 26887:1 26912:2 26920:2 26921:1 26951:2 26955:1 26964:1 26977:1 26979:1 26994:1 26998:3 27000:4 27007:1 27020:1 27037:2 27040:2 27047:1 27048:1 27053:1 27071:1 27075:1 27093:1 27099:1 27112:1 27135:1 27140:1 27177:1 27190:2 27207:2 27209:3 27213:4 27217:1 27224:1 27241:1 27246:1 27252:2 27264:1 27284:1 27292:1 27302:1 27328:2 27344:1 27365:1 27375:1 27412:1 27415:1 27422:2 27457:4 27462:3 27470:1 27480:1 27487:1 27524:1 27539:1 27543:1 27563:2 27565:1 27590:1 27594:3 27600:1 27628:1 27640:1 27650:1 27663:1 27678:2 27689:2 27706:1 27717:1 27741:1 27755:1 27775:1 27783:3 27799:5 27803:3 27804:1 27820:1 27821:1 27835:1 27845:1 27853:1 27874:1 27875:1 27876:1 27878:2 27879:2 27889:1 27903:1 27904:1 27940:1 27943:1 27964:2 27965:1 27975:3 27978:2 27979:1 27985:1 27988:2 27992:1 27993:1 27994:1 28006:1 28012:2 28019:1 28037:1 28047:1 28055:1 28061:3 28062:1 28072:3 28084:2 28086:1 28097:2 28100:1 28108:1 28130:1 28132:2 28139:1 28157:1 28174:1 28175:1 28207:1 28208:1 28210:1 28224:1 28228:1 28229:1 28236:1 28240:1 28262:1 28275:1 28278:1 28326:1 28344:2 28351:1 28374:2 28375:1 28377:2 28380:2 28384:1 28394:1 28397:1 28412:1 28424:1 28428:1 28442:1 28458:1 28488:1 28491:2 28507:1 28509:2 28511:1 28526:1 28528:1 28538:1 28540:1 28547:2 28551:1 28562:1 28563:1 28571:1 28581:1 28587:3 28591:1 28593:1 28604:1 28620:1 28628:1 28635:1 28638:3 28670:3 28674:1 28689:1 28706:1 28720:4 28739:1 28745:1 28746:1 28766:1 28781:1 28792:2 28810:4 28827:3 28832:1 28841:1 28848:4 28854:1 28880:1 28887:1 28888:1 28941:1 28946:1 28992:1 28994:1 29007:1 29027:2 29042:1 29048:1 29049:1 29051:1 29054:1 29059:1 29067:1 29095:1 29104:1 29115:1 29125:1 29126:1 29134:1 29139:4 29141:1 29145:3 29146:2 29176:1 29179:1 29198:1 29228:1 29251:1 29254:1 29273:2 29289:2 29296:3 29303:1 29312:1 29334:2 29356:2 29365:1 29392:2 29411:1 29413:1 29453:1 29455:2 29462:1 29463:1 29465:2 29472:1 29494:1 29509:1 29550:1 29587:1 29593:1 29600:1 29627:1 29628:1 29633:1 29638:1 29640:1 29647:4 29678:2 29681:3 29702:1 29724:1 29727:2 29732:1 29733:1 29738:1 29740:1 29744:2 29745:1 29746:3 29759:1 29760:4 29763:1 29770:5 29792:1 29822:1 29853:1 29878:1 29883:1 29894:2 29899:2 29900:1 29905:1 29942:2 29947:1 29993:1 29995:1 30007:1 30012:2 30016:2 30021:2 30042:1 30044:2 30052:1 30053:1 30066:1 30083:1 30085:1 30090:1 30092:1 30093:1 30095:1 30096:1 30101:1 30106:1 30133:1 30143:1 30148:1 30156:1 30160:2 30163:2 30169:1 30178:1 30186:2 30202:1 30203:1 30209:1 30210:2 30253:1 30262:1 30266:2 30269:1 30275:1 30280:1 30306:1 30309:1 30318:1 30322:1 30323:1 30333:1 30335:1 30345:2 30355:1 30359:1 30365:1 30390:2 30392:2 30411:1 30413:1 30447:2 30475:1 30488:2 30505:1 30518:1 30533:2 30557:1 30559:1 30564:2 30571:1 30576:1 30577:1 30590:1 30632:1 30642:1 30644:1 30648:1 30663:1 30675:2 30689:1 30692:1 30723:3 30727:1 30732:4 30752:1 30756:1 30763:1 30787:1 30799:1 30817:1 30820:1 30836:13 30837:1 30841:1 30860:1 30862:1 30879:6 30896:2 30906:1 30919:1 30944:1 30985:2 31017:5 31020:1 31025:1 31034:1 31036:1 31057:6 31062:1 31063:1 31075:1 31077:1 31079:1 31080:1 31095:1 31112:1 31116:1 31118:1 31123:4 31126:1 31144:1 31156:2 31179:1 31188:2 31191:1 31209:2 31235:1 31256:1 31281:2 31286:2 31323:1 31330:1 31332:1 31335:1 31340:1 31342:1 31348:1 31360:1 31370:1 31379:1 31396:3 31398:1 31401:1 31402:1 31422:1 31434:1 31449:3 31452:1 31469:1 31476:1 31478:1 31567:3 31583:2 31593:3 31603:1 31606:1 31624:3 31628:2 31635:1 31653:1 31659:1 31662:1 31681:1 31688:1 31716:1 31719:1 31725:1 31735:1 31739:1 31769:1 31807:1 31815:1 31819:1 31837:2 31849:1 31864:1 31876:1 31880:1 31896:2 31910:1 31937:1 31950:1 31959:1 31984:1 31991:1 31992:1 31994:1 32016:1 32044:1 32066:2 32080:2 32081:1 32105:1 32109:1 32120:3 32122:1 32138:1 32163:1 32214:1 32217:1 32221:1 32233:1 32235:1 32243:3 32244:1 32245:3 32246:1 32248:1 32249:1 32250:2 32254:2 32257:2 32258:2 32261:2 32266:2 32267:1 32277:1 32278:1 32298:2 32303:1 32306:1 32320:1 32324:1 32333:2 32337:1 32343:1 32350:1 32374:1 32378:1 32382:1
15 3:1 6:1 43:1 71:3 91:1 101:1 104:2 122:1 166:1 167:4 187:1 189:2 196:1 200:1 224:1 225:1 226:1 227:2 243:1 244:2 248:1 267:1 282:1 285:3 289:1 335:1 337:2 356:2 370:1 382:1 388:2 406:4 408:2 409:2 443:1 444:2 463:1 468:1 493:1 503:3 517:1 529:1 541:2 566:1 586:1 612:2 615:1 616:1 622:1 623:1 645:3 649:1 655:2 661:1 666:1 682:1 685:7 693:1 696:1 697:2 699:3 704:1 747:1 768:3 791:1 795:1 796:1 813:4 829:2 892:1 898:1 928:2 934:1 935:1 956:2 958:1 959:1 961:1 963:2 968:1 970:1 972:2 978:1 980:1 981:1 985:1 988:2 1014:2 1018:1 1020:3 1023:1 1027:2 1031:1 1039:1 1052:3 1061:1 1065:1 1072:1 1075:1 1089:1 1103:1 1114:2 1119:3 1149:2 1150:1 1154:2 1167:1 1172:1 1180:1 1205:2 1206:1 1210:1 1235:1 1255:1 1259:2 1273:1 1277:2 1288:2 1296:1 1297:1 1324:1 1328:3 1331:1 1337:1 1343:1 1367:2 1374:2 1385:1 1396:1 1399:1 1407:2 1408:1 1423:1 1429:1 1431:1 1448:1 1458:1 1459:1 1465:1 1472:1 1483:1 1484:1 1500:1 1510:1 1513:1 1562:1 1577:2 1578:1 1586:1 1587:1 1592:7 1629:1 1632:1 1635:2 1641:2 1642:2 1650:1 1651:1 1656:6 1673:1 1682:1 1686:1 1699:1 1724:1 1725:1 1732:1 1733:4 1736:4 1737:1 1744:2 1749:2 1768:1 1777:1 1778:1 1790:1 1808:1 1810:2 1813:2 1821:2 1822:2 1824:1 1827:1 1830:1 1842:3 1843:3 1868:1 1870:1 1874:1 1897:1 1914:1 1915:1 1927:1 1933:1 1944:1 1948:2 1952:2 1953:1 1956:1 1973:1 1981:2 2007:1 2008:1 2013:1 2032:1 2035:1 2037:1 2040:1 2042:1 2043:2 2047:1 2050:2 2052:1 2088:2 2091:1 2098:1 2100:1 2114:1 2118:1 2144:1 2156:1 2159:4 2165:1 2171:1 2174:2 2177:1 2191:1 2201:1 2230:1 2254:1 2273:2 2296:1 2326:1 2327:1 2334:1 2344:1 2359:1 2364:1 2386:3 2419:1 2426:2 2449:1 2451:2 2462:2 2463:1 2493:1 2495:1 2500:1 2501:1 2503:2 2505:3 2509:1 2516:2 2520:2 2522:1 2524:2 2525:2 2528:2 2531:1 2532:4 2533:1 2534:1 2547:1 2559:2 2561:1 2607:2 2636:1 2674:2 2677:2 2678:1 2707:1 2711:3 2720:2 2747:1 2804:1 2814:2 2830:1 2833:1 2844:1 2857:1 2860:1 2925:1 2940:2 2948:2 2953:1 2974:1 2977:1 2982:1 2983:3 2984:1 2991:1 3004:1 3028:3 3038:1 3091:1 3103:2 3109:1 3112:1 3138:2 3145:1 3151:1 3155:1 3161:5 3169:5 3170:2 3178:1 3179:1 3198:2 3212:2 3216:4 3228:1 3235:1 3236:1 3238:1 3240:1 3242:2 3247:1 3250:1 3275:1 3280:2 3286:1 3311:1 3313:1 3321:1 3328:2 3333:1 3348:1 3356:2 3372:1 3400:1 3403:2 3411:1 3432:1 3443:1 3450:1 3483:1 3494:1 3548:2 3562:1 3570:1 3590:1 3600:1 3610:1 3612:1 3646:3 3658:1 3670:1 3671:1 3676:1 3699:1 3701:1 3705:1 3708:1 3735:3 3736:1 3779:1 3786:1 3791:1 3803:1 3849:1 3891:1 3892:1 3920:1 3929:1 3935:1 3936:1 3952:1 3964:2 3968:1 4002:1 4006:1 4014:1 4018:1 4019:1 4032:3 4037:1 4055:1 4066:1 4067:2 4070:1 4083:1 4102:1 4105:1 4124:1 4130:2 4131:4 4151:1 4152:1 4165:1 4171:1 4183:1 4187:2 4189:2 4212:2 4214:2 4250:2 4252:4 4255:2 4260:1 4282:1 4291:1 4292:1 4303:2 4305:1 4307:1 4310:1 4321:1 4340:1 4363:1 4370:1 4374:1 4377:1 4401:2 4402:1 4404:1 4405:1 4415:1 4422:2 4425:1 4427:1 4445:1 4454:1 4462:1 4463:1 4483:1 4487:1 4515:1 4537:1 4563:2 4580:1 4609:1 4625:1 4629:3 4635:1 4657:1 4665:2 4669:1 4671:1 4685:1 4715:1 4718:1 4736:1 4748:4 4772:1 4773:1 4781:1 4796:1 4808:1 4832:1 4863:1 4873:1 4880:1 4889:1 4896:2 4932:2 4935:1 4938:1 4954:1 4967:1 4969:1 4970:1 5001:1 5012:1 5017:2 5026:3 5035:1 5053:2 5054:2 5058:2 5074:1 5078:1 5091:1 5096:2 5131:1 5151:1 5158:2 5162:2 5178:3 5186:1 5187:2 5206:1 5238:1 5240:1 5242:2 5247:2 5315:1 5318:2 5327:1 5331:2 5336:1 5382:7 5412:2 5418:1 5431:1 5442:1 5443:1 5447:2 5500:4 5520:2 5521:1 5526:1 5527:1 5529:1 5532:1 5533:1 5535:3 5537:1 5541:1 5542:1 5546:1 5548:2 5549:1 5551:1 5566:1 5574:1 5578:1 5646:2 5649:1 5679:1 5690:1 5693:1 5697:2 5712:1 5713:1 5733:1 5734:1 5741:1 5757:2 5760:3 5767:1 5774:1 5788:1 5792:1 5805:2 5807:3 5823:3 5829:1 5843:3 5861:1 5896:2 5923:1 5924:1 5928:1 5941:4 5963:2 5967:1 5980:1 5983:2 5998:3 6015:1 6027:1 6031:1 6034:1 6037:1 6038:1 6050:1 6051:1 6059:1 6061:1 6063:1 6069:1 6085:3 6106:1 6126:1 6143:2 6171:1 6218:1 6232:1 6268:1 6273:1 6275:1 6287:3 6307:1 6310:1 6333:1 6350:1 6382:1 6390:1 6394:1 6395:2 6397:1 6410:1 6423:2 6440:1 6453:1 6479:1 6483:1 6487:1 6488:1 6536:1 6547:1 6558:1 6570:1 6579:1 6586:1 6594:1 6628:2 6633:1 6636:1 6656:1 6681:1 6684:1 6725:2 6742:4 6745:1 6749:1 6761:2 6764:1 6775:1 6779:1 6780:1 6785:1 6825:3 6831:3 6850:1 6866:1 6906:2 6920:1 6931:3 6938:1 6945:1 6949:1 6955:1 7021:1 7026:1 7035:1 7037:1 7044:2 7047:1 7053:2 7055:2 7056:3 7058:1 7060:3 7064:2 7066:1 7071:3 7073:4 7076:1 7113:1 7119:1 7122:1 7129:1 7130:1 7141:1 7152:1 7154:3 7165:2 7167:1 7168:2 7184:1 7189:2 7215:1 7220:3 7229:1 7231:2 7242:1 7248:1 7298:1 7308:1 7325:2 7328:3 7330:1 7331:4 7332:1 7338:1 7365:2 7367:1 7370:1 7389:1 7398:1 7403:1 7406:1 7432:3 7453:1 7456:1 7463:1 7486:1 7489:1 7526:1 7527:1 7535:1 7544:1 7554:1 7559:1 7565:1 7610:2 7613:1 7615:1 7625:1 7628:1 7629:4 7635:1 7644:1 7665:1 7679:1 7683:2 7706:1 7714:1 7732:1 7739:1 7746:1 7748:1 7758:2 7774:1 7785:1 7796:1 7797:1 7805:1 7811:3 7823:1 7824:1 7832:2 7851:2 7878:1 7882:5 7884:2 7887:2 7892:1 7910:2 7923:3 7927:1 7930:1 7931:1 7939:4 7960:1 7969:1 7979:4 7991:1 8032:1 8044:1 8047:1 8059:1 8066:1 8087:1 8092:1 8099:1 8111:1 8133:1 8137:5 8152:1 8187:1 8190:1 8219:2 8235:1 8253:1 8262:3 8288:1 8300:2 8305:1 8324:2 8327:1 8329:1 8335:2 8338:1 8344:1 8347:1 8348:1 8360:1 8368:1 8379:2 8393:1 8395:1 8407:1 8408:1 8414:1 8422:1 8444:1 8448:1 8457:2 8459:3 8461:2 8462:1 8470:1 8489:4 8514:1 8521:1 8549:2 8551:6 8569:2 8571:1 8602:1 8607:2 8609:1 8620:23 8629:1 8641:2 8642:5 8655:2 8669:1 8678:1 8681:1 8689:2 8690:1 8697:1 8707:1 8722:1 8724:1 8737:1 8746:1 8761:1 8769:1 8785:3 8792:1 8817:1 8819:1 8833:1 8850:1 8851:1 8855:4 8860:1 8863:1 8869:1 8873:1 8876:1 8902:1 8912:1 8914:1 8921:3 8950:1 8957:2 8975:2 8979:1 8985:1 8995:1 9005:1 9019:1 9025:1 9028:3 9039:1 9052:1 9074:1 9076:2 9082:3 9087:2 9088:1 9092:1 9104:1 9110:4 9127:1 9156:3 9157:11 9170:1 9171:1 9180:1 9181:1 9188:1 9207:1 9208:2 9214:1 9216:3 9222:1 9235:1 9243:2 9252:3 9253:2 9266:1 9282:1 9298:4 9333:1 9340:1 9353:1 9361:1 9397:2 9402:1 9406:1 9413:1 9419:1 9426:1 9436:1 9456:1 9481:1 9493:1 9499:1 9525:1 9534:2 9538:1 9546:1 9549:1 9562:1 9585:1 9588:2 9590:1 9593:1 9597:1 9599:1 9605:3 9606:1 9610:1 9611:1 9626:1 9627:1 9651:1 9656:1 9671:1 9691:2 9692:1 9693:1 9698:1 9711:1 9719:1 9731:1 9748:1 9752:1 9769:1 9777:2 9806:1 9824:2 9825:2 9826:8 9836:1 9845:1 9849:1 9853:1 9865:3 9875:1 9877:1 9896:1 9914:1 9921:1 9926:1 9928:1 9934:1 9943:1 9950:2 9956:1 9983:1 9992:7 10025:2 10036:1 10114:1 10164:1 10183:1 10192:1 10193:2 10202:1 10208:1 10226:1 10237:1 10239:2 10255:1 10258:1 10260:1 10269:2 10279:4 10306:1 10314:1 10322:3 10326:1 10357:2 10362:1 10365:1 10377:1 10385:1 10390:2 10413:1 10415:1 10472:2 10501:1 10522:1 10542:1 10556:1 10572:2 10573:2 10574:1 10592:1 10593:1 10604:1 10606:1 10623:1 10629:1 10640:1 10643:1 10650:2 10655:1 10656:1 10677:1 10686:1 10700:3 10702:1 10719:2 10725:1 10753:1 10771:1 10782:1 10783:1 10785:1 10791:1 10792:1 10795:1 10796:1 10797:1 10838:1 10874:1 10883:1 10888:1 10931:5 10947:1 10954:2 10966:2 10976:1 10980:1 10990:1 11020:1 11021:1 11027:1 11039:1 11063:1 11070:1 11101:1 11114:1 11115:1 11122:1 11125:1 11140:1 11150:1 11158:1 11159:4 11175:1 11197:1 11213:2 11220:2 11241:1 11274:2 11278:1 11282:2 11291:2 11293:1 11298:1 11304:1 11307:1 11310:1 11312:2 11313:2 11326:1 11333:1 11341:1 11342:1 11346:1 11350:1 11373:8 11386:2 11390:1 11401:1 11403:3 11423:2 11442:3 11443:1 11451:1 11468:1 11482:3 11483:1 11486:1 11493:1 11516:1 11536:1 11547:1 11554:1 11567:1 11571:1 11579:1 11583:1 11584:1 11591:1 11594:1 11600:1 11601:2 11604:1 11608:3 11630:1 11689:1 11690:1 11691:1 11701:1 11706:1 11712:1 11717:1 11737:1 11746:4 11749:2 11769:1 11771:1 11785:1 11808:1 11809:2 11810:1 11834:1 11840:1 11850:7 11876:2 11888:1 11921:1 11926:8 11945:1 11959:2 11960:2 11961:2 11977:1 11994:1 12009:1 12015:1 12020:2 12024:1 12035:1 12043:3 12048:1 12097:1 12099:1 12100:1 12102:1 12119:1 12128:1 12134:1 12136:1 12149:1 12189:1 12205:1 12230:1 12242:1 12270:1 12273:1 12275:2 12296:2 12300:2 12312:1 12316:1 12323:1 12339:1 12341:1 12343:1 12349:1 12380:1 12408:1 12418:1 12420:2 12440:1 12442:2 12444:1 12457:2 12458:2 12474:1 12475:1 12476:1 12477:1 12486:1 12496:1 12497:2 12509:1 12510:2 12517:1 12520:1 12536:1 12562:2 12563:1 12570:3 12574:1 12596:1 12623:2 12632:1 12648:1 12654:1 12688:2 12690:1 12692:1 12705:1 12716:4 12722:1 12733:1 12735:1 12736:1 12744:1 12746:3 12756:1 12764:1 12774:1 12776:1 12784:1 12822:1 12825:1 12841:1 12843:1 12846:1 12860:1 12865:1 12888:1 12901:1 12917:1 12922:1 12933:1 12934:1 12947:1 12960:1 12965:1 12973:1 12989:1 12997:1 13017:2 13022:1 13032:1 13041:1 13068:2 13092:3 13116:1 13121:1 13151:2 13164:1 13167:1 13173:4 13178:1 13180:1 13182:3 13186:1 13187:1 13195:1 13205:1 13207:1 13213:1 13229:1 13234:1 13239:1 13240:1 13253:1 13256:1 13265:3 13269:2 13297:3 13325:1 13351:3 13363:1 13405:1 13408:1 13434:1 13439:1 13467:1 13476:1 13481:1 13502:2 13511:2 13513:3 13516:1 13521:1 13528:1 13546:1 13554:1 13558:1 13561:1 13575:2 13581:3 13602:1 13625:1 13626:4 13627:1 13637:1 13648:1 13650:1 13654:5 13658:2 13671:1 13674:1 13685:1 13688:1 13698:3 13714:1 13728:3 13740:1 13746:1 13757:1 13765:1 13774:1 13778:2 13784:1 13786:1 13804:1 13806:1 13834:5 13844:3 13854:3 13864:1 13873:3 13890:1 13901:1 13914:1 13940:3 13954:1 13959:1 13967:1 13969:1 13977:1 13980:1 14011:1 14034:1 14036:1 14045:1 14056:1 14067:1 14072:1 14101:1 14108:1 14117:1 14118:1 14119:1 14120:2 14122:1 14126:1 14129:2 14132:1 14157:1 14161:1 14174:1 14198:2 14206:1 14243:1 14266:1 14267:1 14275:1 14284:1 14291:1 14302:1 14311:1 14317:1 14328:1 14329:6 14350:1 14353:2 14356:1 14360:1 14371:2 14392:1 14408:1 14428:1 14472:1 14505:1 14520:2 14558:1 14584:1 14601:1 14603:1 14620:1 14623:2 14632:2 14682:1 14737:1 14755:1 14759:1 14764:1 14773:1 14783:1 14795:1 14807:1 14819:1 14821:10 14841:1 14846:2 14849:1 14850:1 14853:1 14858:2 14872:1 14879:1 14887:6 14898:1 14905:1 14910:1 14921:1 14923:1 14938:1 14976:2 14978:7 14992:1 14994:4 14996:1 15000:1 15025:1 15028:1 15039:2 15048:1 15054:2 15069:2 15075:6 15081:1 15090:3 15131:1 15135:2 15139:3 15148:1 15150:1 15161:1 15170:1 15183:1 15187:2 15218:1 15238:1 15243:3 15263:1 15281:1 15291:1 15293:1 15314:1 15325:1 15346:1 15368:1 15373:1 15377:1 15384:1 15393:1 15401:1 15411:1 15415:1 15444:1 15450:1 15458:1 15477:1 15489:5 15496:3 15516:1 15548:1 15583:1 15585:1 15590:1 15596:1 15601:2 15647:1 15657:1 15663:1 15668:2 15669:1 15674:2 15681:1 15699:1 15700:1 15702:1 15721:1 15759:1 15784:2 15800:1 15802:1 15805:2 15817:2 15826:1 15829:1 15840:1 15853:3 15880:2 15899:2 15948:1 15949:1 15958:1 15963:1 15996:1 16009:1 16011:1 16025:1 16030:1 16039:1 16049:1 16087:2 16094:1 16097:1 16098:1 16102:1 16111:1 16113:1 16131:1 16182:1 16208:1 16209:1 16214:3 16227:2 16228:1 16251:2 16252:1 16257:1 16272:1 16277:1 16287:1 16292:2 16294:1 16313:1 16321:1 16330:3 16336:1 16341:1 16347:1 16350:1 16352:3 16358:2 16371:1 16384:1 16391:1 16411:1 16426:2 16438:2 16460:1 16480:1 16487:1 16523:6 16528:2 16540:3 16543:1 16544:1 16548:9 16554:1 16601:2 16624:1 16681:1 16697:2 16701:2 16716:1 16738:1 16739:1 16752:1 16760:4 16766:1 16777:6 16793:2 16816:1 16818:1 16822:3 16824:1 16849:3 16866:1 16870:2 16897:5 16916:6 16917:1 16940:1 16941:1 17001:1 17016:1 17023:1 17039:1 17054:2 17061:2 17070:1 17091:3 17093:1 17102:1 17111:1 17116:1 17117:1 17148:2 17158:1 17180:1 17192:1 17207:2 17218:1 17256:1 17281:1 17282:1 17284:1 17290:1 17297:2 17314:1 17323:2 17331:3 17337:1 17343:2 17354:2 17376:1 17388:1 17405:1 17408:2 17461:1 17476:1 17483:1 17513:1 17516:1 17520:1 17525:6 17530:1 17538:1 17544:1 17565:1 17568:3 17580:1 17583:2 17618:1 17624:3 17691:1 17696:1 17700:1 17701:1 17716:2 17717:3 17733:4 17739:1 17753:1 17757:1 17770:1 17772:2 17773:1 17774:1 17778:2 17779:1 17787:1 17792:1 17800:1 17804:4 17812:1 17843:1 17868:1 17871:2 17876:1 17877:2 17879:6 17899:1 17906:4 17921:1 17935:1 17947:1 17948:1 17964:1 17986:1 17988:1 17993:1 17997:1 18029:1 18031:1 18032:1 18041:5 18054:2 18055:1 18070:2 18071:3 18077:1 18089:1 18097:1 18098:1 18109:2 18121:1 18132:1 18147:1 18152:1 18156:5 18159:3 18164:1 18169:1 18182:1 18191:1 18218:1 18223:1 18306:1 18307:1 18334:1 18339:2 18345:1 18346:1 18355:1 18367:2 18376:1 18379:1 18382:1 18397:1 18410:2 18424:3 18429:2 18436:1 18445:7 18450:1 18453:1 18493:1 18494:1 18509:1 18537:1 18556:1 18562:1 18573:1 18582:1 18624:1 18634:1 18643:1 18650:1 18653:1 18677:1 18678:1 18687:1 18703:1 18706:1 18709:1 18723:1 18729:1 18737:1 18738:2 18742:1 18753:1 18754:1 18767:1 18774:4 18829:3 18836:1 18842:1 18880:3 18884:2 18897:1 18902:1 18920:1 18922:1 18931:1 18937:1 18943:3 18944:1 18945:1 18970:1 18978:1 18994:2 19022:1 19030:1 19040:1 19041:1 19046:1 19058:1 19060:1 19067:1 19069:1 19095:1 19097:1 19120:1 19121:1 19122:1 19154:1 19163:1 19224:1 19234:1 19288:2 19290:1 19292:1 19301:1 19302:1 19303:1 19322:1 19369:1 19372:1 19406:1 19413:1 19417:1 19421:1 19443:1 19467:1 19469:1 19473:2 19476:2 19477:1 19483:1 19485:1 19489:2 19490:1 19515:1 19526:3 19553:3 19555:3 19594:1 19611:2 19614:1 19635:1 19651:1 19657:3 19660:1 19665:4 19670:1 19677:1 19678:3 19698:1 19710:2 19711:1 19722:1 19730:1 19732:1 19739:1 19757:1 19764:1 19777:1 19798:1 19802:1 19803:5 19807:1 19809:1 19816:1 19837:1 19850:1 19872:1 19876:2 19884:2 19887:1 19899:1 19900:1 19950:1 19970:1 19977:1 19980:1 20026:1 20034:2 20073:1 20074:1 20081:1 20111:1 20112:1 20126:1 20132:1 20137:1 20152:2 20174:1 20201:1 20203:1 20225:1 20230:1 20269:1 20289:1 20306:1 20318:1 20333:1 20344:1 20352:1 20355:1 20358:1 20394:2 20401:1 20402:1 20403:1 20411:1 20413:1 20480:2 20492:2 20522:2 20531:3 20551:1 20589:1 20590:1 20601:1 20605:1 20610:1 20613:4 20624:1 20634:2 20641:1 20658:1 20661:1 20708:1 20712:1 20713:1 20714:1 20731:1 20732:1 20735:1 20753:2 20757:3487 20781:1 20793:1 20795:1 20832:1 20860:1 20875:2 20884:1 20886:1 20912:2 20941:1 20950:1 20951:1 20963:1 20970:1 20975:1 20977:1 20978:1 20991:1 20996:1 20998:1 20999:1 21000:1 21002:1 21013:1 21049:2 21073:1 21074:1 21092:1 21109:1 21111:1 21120:1 21121:1 21133:1 21136:1 21145:1 21154:1 21158:1 21167:1 21190:1 21212:2 21224:1 21225:1 21230:1 21233:2 21234:1 21259:1 21262:3 21266:1 21330:1 21332:2 21336:1 21337:1 21351:1 21371:1 21374:1 21379:1 21389:1 21396:1 21414:1 21423:2 21435:1 21437:1 21438:1 21455:1 21472:1 21503:1 21514:1 21521:9 21529:1 21544:1 21551:1 21553:6 21558:1 21565:1 21587:3 21596:1 21617:1 21643:2 21649:3 21657:1 21669:1 21688:1 21700:1 21710:1 21736:1 21737:4 21778:3 21783:1 21787:1 21806:2 21816:1 21831:1 21842:2 21873:1 21878:1 21885:1 21911:1 21915:2 21952:1 21974:1 21982:1 21988:1 22007:1 22036:1 22042:1 22043:1 22049:1 22053:1 22056:1 22070:1 22075:1 22105:1 22157:1 22170:1 22178:1 22182:2 22188:1 22203:2 22204:1 22207:1 22230:1 22236:1 22251:1 22252:3 22266:1 22276:1 22277:1 22278:7 22299:3 22303:1 22305:1 22312:1 22320:2 22328:1 22331:1 22332:1 22350:1 22352:1 22361:1 22375:2 22377:2 22415:2 22419:1 22445:3 22448:1 22449:1 22460:1 22482:1 22483:1 22493:1 22552:1 22563:1 22582:1 22655:4 22666:1 22683:1 22712:1 22719:2 22722:1 22775:1 22782:3 22784:1 22813:1 22818:2 22819:2 22824:1 22828:1 22838:1 22848:1 22859:1 22865:1 22867:2 22872:1 22894:4 22897:2 22901:1 22903:1 22909:2 22912:1 22915:1 22918:1 22949:1 22960:1 22963:1 22968:1 22974:1 22978:1 22986:1 22992:1 23000:1 23006:1 23016:1 23022:2 23039:1 23042:1 23068:2 23083:3 23112:1 23114:2 23128:1 23136:1 23145:1 23157:7 23163:2 23172:1 23173:1 23175:1 23183:1 23185:1 23192:1 23196:1 23198:5 23202:1 23210:1 23213:2 23216:2 23222:1 23264:1 23285:1 23287:2 23291:6 23302:1 23315:1 23320:1 23322:3 23337:2 23363:2 23387:1 23415:1 23421:1 23426:1 23427:1 23429:1 23430:1 23433:2 23435:1 23438:1 23453:3 23454:1 23455:1 23456:2 23472:1 23473:1 23478:2 23487:1 23541:2 23553:1 23555:1 23568:1 23570:1 23572:1 23574:1 23578:1 23600:4 23603:2 23605:1 23618:1 23620:1 23661:1 23684:3 23685:1 23700:1 23701:1 23702:2 23704:1 23725:1 23730:1 23734:1 23741:3 23743:1 23746:1 23754:1 23759:1 23774:1 23793:1 23801:2 23804:1 23822:1 23834:2 23839:3 23853:1 23885:1 23892:1 23907:1 23926:1 23927:2 23930:1 23938:1 23945:2 23951:1 23958:2 23962:2 23973:1 23976:2 23986:1 23991:1 24000:1 24012:1 24026:1 24131:2 24136:2 24139:2 24161:1 24162:2 24173:2 24174:1 24217:1 24224:1 24236:1 24280:1 24287:3 24300:2 24304:1 24305:3 24316:1 24322:3 24333:1 24340:1 24342:2 24355:3 24383:1 24384:1 24391:3 24394:1 24404:1 24414:1 24437:1 24441:1 24442:1 24443:1 24446:1 24467:3 24475:1 24507:1 24524:1 24525:1 24557:1 24559:1 24563:2 24575:1 24576:1 24590:1 24596:1 24606:1 24610:1 24614:1 24633:1 24662:1 24665:1 24671:1 24700:1 24701:1 24702:1 24703:1 24718:1 24738:2 24742:1 24755:3 24770:3 24776:2 24784:1 24787:1 24789:1 24790:1 24793:11 24797:1 24800:1 24805:1 24812:1 24819:1 24820:1 24839:1 24854:1 24858:1 24868:1 24870:1 24875:1 24876:1 24890:1 24896:1 24898:2 24931:1 24938:1 24965:1 24996:1 25007:1 25045:2 25046:1 25059:2 25069:2 25121:1 25132:1 25133:1 25135:1 25154:1 25167:1 25172:1 25188:1 25190:1 25215:1 25259:1 25275:1 25306:1 25319:1 25330:1 25356:2 25364:1 25366:2 25383:1 25401:1 25442:2 25458:1 25460:2 25466:1 25480:1 25481:2 25483:1 25485:1 25504:1 25559:1 25564:1 25583:1 25588:1 25591:1 25593:2 25605:1 25607:1 25615:1 25625:1 25634:1 25636:1 25664:1 25665:3 25668:1 25702:2 25718:2 25747:1 25750:1 25752:1 25770:1 25777:1 25784:3 25787:1 25792:1 25796:1 25803:1 25805:1 25806:1 25811:2 25812:1 25814:1 25821:1 25838:1 25860:1 25862:2 25873:1 25876:2 25877:2 25883:2 25887:1 25895:1 25896:2 25898:1 25902:1 25905:1 25914:1 25935:3 25965:2 25968:1 25969:1 25991:2 26018:1 26038:1 26039:1 26044:1 26047:1 26054:1 26068:1 26113:1 26123:1 26128:1 26135:1 26146:1 26155:4 26157:1 26166:1 26173:1 26195:2 26211:2 26219:2 26256:1 26271:1 26273:2 26276:3 26277:1 26320:1 26333:1 26339:2 26343:1 26360:1 26370:1 26371:1 26384:2 26411:1 26427:1 26429:1 26435:1 26460:2 26472:1 26474:1 26534:1 26574:1 26578:1 26598:1 26607:2 26623:1 26625:2 26639:1 26688:1 26700:1 26713:1 26716:1 26728:2 26729:1 26731:1 26735:1 26740:1 26758:1 26813:1 26817:2 26828:3 26838:1 26845:9 26848:1 26849:1 26852:1 26853:1 26861:1 26863:1 26870:1 26887:1 26912:2 26920:2 26921:1 26951:2 26955:1 26964:1 26977:1 26979:1 26994:2 26998:3 27000:4 27007:1 27019:1 27020:1 27037:2 27040:2 27047:1 27048:1 27053:1 27071:1 27075:1 27093:1 27099:1 27112:1 27135:1 27140:1 27177:1 27190:2 27207:2 27209:3 27213:4 27217:1 27224:1 27241:1 27246:1 27252:2 27264:1 27284:1 27292:1 27302:1 27328:2 27344:1 27365:1 27375:1 27412:1 27415:1 27422:2 27449:1 27457:5 27462:3 27470:1 27480:1 27487:1 27524:1 27539:1 27543:1 27563:2 27565:1 27590:1 27594:3 27600:2 27628:1 27635:1 27640:1 27650:1 27663:1 27678:3 27689:2 27706:1 27717:1 27741:1 27750:1 27755:1 27775:1 27783:3 27799:5 27803:3 27804:1 27820:1 27821:1 27835:1 27845:1 27853:1 27874:1 27875:1 27876:2 27878:2 27879:2 27889:1 27903:1 27904:1 27940:1 27943:1 27964:2 27965:1 27975:3 27978:2 27979:1 27985:1 27988:2 27992:1 27993:1 27994:1 28006:1 28012:3 28019:1 28037:1 28047:1 28055:1 28061:3 28062:1 28072:3 28084:2 28086:1 28097:2 28100:1 28108:1 28130:1 28132:2 28139:1 28157:1 28174:1 28175:1 28207:1 28208:1 28210:1 28224:1 28228:1 28229:1 28236:1 28240:1 28262:1 28275:1 28278:1 28326:1 28344:2 28351:1 28374:2 28375:1 28377:2 28380:2 28384:1 28394:1 28397:1 28412:1 28424:1 28428:1 28442:1 28458:1 28488:1 28491:2 28507:1 28509:2 28511:1 28526:1 28528:1 28538:1 28540:1 28547:2 28551:1 28562:1 28563:1 28571:1 28581:1 28587:3 28591:1 28593:1 28604:1 28620:1 28628:1 28635:1 28638:3 28660:1 28670:3 28674:1 28689:1 28706:1 28720:4 28739:1 28745:2 28746:1 28766:1 28781:1 28792:2 28810:4 28827:3 28832:1 28841:1 28848:4 28854:1 28880:1 28887:1 28888:1 28941:1 28946:1 28992:1 28994:1 29007:1 29027:2 29042:1 29048:1 29049:1 29051:1 29054:1 29059:1 29067:1 29095:1 29104:1 29115:1 29125:1 29126:1 29134:1 29139:4 29141:1 29145:3 29146:2 29176:1 29179:1 29198:1 29228:1 29248:1 29251:1 29254:1 29273:2 29289:2 29296:3 29303:1 29312:1 29334:2 29356:2 29365:1 29392:2 29411:1 29413:1 29453:1 29455:2 29462:1 29463:1 29465:2 29472:1 29494:1 29509:1 29550:1 29587:1 29593:1 29600:1 29620:1 29627:1 29628:1 29633:1 29638:1 29640:1 29647:4 29678:2 29681:3 29702:1 29724:1 29727:2 29732:1 29733:1 29738:1 29740:1 29744:2 29745:1 29746:3 29759:1 29760:4 29763:1 29770:5 29792:1 29822:1 29853:1 29878:2 29883:1 29894:3 29899:2 29900:1 29905:2 29942:2 29947:1 29993:1 29995:1 30007:1 30012:2 30016:2 30021:2 30042:1 30044:2 30052:1 30053:1 30066:1 30075:1 30083:1 30085:1 30090:1 30092:1 30093:1 30095:1 30096:1 30101:1 30106:1 30133:1 30143:1 30148:1 30156:1 30160:2 30163:2 30169:1 30178:1 30186:2 30202:1 30203:1 30209:1 30210:2 30253:1 30262:1 30266:2 30269:1 30275:1 30280:1 30306:1 30309:1 30318:1 30322:1 30323:1 30333:1 30335:1 30345:2 30355:1 30359:1 30365:1 30390:2 30392:2 30396:1 30411:1 30413:1 30447:2 30475:1 30488:2 30505:1 30518:1 30533:2 30557:1 30559:1 30564:2 30571:1 30576:1 30577:1 30590:1 30622:1 30632:1 30642:1 30644:1 30648:1 30663:1 30675:2 30689:1 30692:1 30723:3 30727:1 30732:4 30752:1 30756:1 30763:1 30787:1 30799:1 30817:2 30820:1 30836:14 30837:1 30841:1 30860:1 30862:1 30879:6 30896:2 30906:1 30919:1 30944:1 30985:2 31017:5 31020:1 31025:1 31034:1 31036:1 31057:6 31062:1 31063:1 31075:1 31077:1 31079:1 31080:1 31095:1 31112:1 31116:1 31118:1 31123:4 31126:1 31144:1 31156:2 31179:1 31188:2 31191:1 31209:2 31235:1 31256:1 31281:2 31286:2 31323:1 31330:1 31332:1 31335:1 31340:1 31342:1 31348:1 31360:1 31370:1 31379:1 31396:3 31398:1 31401:1 31402:1 31422:1 31434:1 31449:3 31452:1 31469:1 31476:1 31478:1 31486:1 31520:1 31567:3 31583:2 31593:3 31603:1 31606:1 31624:3 31628:2 31635:1 31653:1 31659:1 31662:1 31681:1 31688:1 31716:1 31719:1 31725:1 31735:1 31739:1 31769:1 31807:1 31815:1 31819:1 31837:2 31849:1 31864:1 31876:1 31880:1 31896:2 31910:1 31933:1 31937:1 31950:1 31959:1 31984:1 31991:1 31992:1 31994:1 32016:1 32044:1 32066:2 32080:2 32081:1 32105:1 32109:1 32120:3 32122:1 32138:1 32163:1 32214:1 32217:1 32221:1 32233:1 32235:1 32243:3 32244:1 32245:3 32246:1 32248:1 32249:1 32250:2 32254:2 32257:3 32258:2 32261:2 32266:2 32267:1 32277:1 32278:1 32298:2 32303:1 32306:1 32320:1 32324:1 32333:2 32337:1 32343:1 32350:1 32374:1 32378:1 32382:1
15 3:1 6:1 43:1 71:3 91:2 101:1 104:2 122:1 166:1 167:4 187:1 189:3 196:1 200:1 224:1 225:1 226:1 227:2 243:1 244:2 248:1 267:1 282:1 285:3 289:1 335:1 337:2 356:2 370:1 382:1 388:2 406:4 408:2 409:2 443:1 444:2 463:1 468:1 493:1 503:3 517:1 529:1 541:2 554:1 566:1 586:1 612:2 614:1 615:1 616:1 622:1 623:1 645:3 649:1 655:2 661:1 666:1 682:1 685:7 693:1 696:1 697:3 699:3 704:1 747:1 759:1 768:3 791:1 795:1 796:1 812:1 813:4 816:1 829:2 892:1 898:1 928:2 934:1 935:1 936:1 956:2 958:1 959:1 961:1 963:2 968:1 970:1 972:2 978:1 980:1 981:1 985:1 988:2 998:1 1014:2 1018:1 1020:3 1023:1 1027:2 1031:1 1039:1 1052:3 1061:1 1065:1 1072:1 1075:1 1089:1 1103:1 1114:2 1119:3 1149:3 1150:1 1154:2 1167:1 1172:1 1180:1 1205:2 1206:1 1210:1 1235:1 1255:1 1259:2 1273:1 1277:2 1288:2 1296:1 1297:1 1324:1 1328:3 1331:1 1337:1 1343:1 1367:2 1374:2 1385:1 1396:1 1399:1 1407:2 1408:1 1423:1 1429:1 1431:1 1448:1 1458:1 1459:1 1465:1 1472:1 1483:1 1484:1 1500:1 1510:1 1513:1 1517:1 1562:1 1577:2 1578:1 1586:2 1587:1 1592:7 1629:1 1632:1 1635:2 1641:2 1642:2 1650:1 1651:1 1656:6 1673:1 1682:1 1686:1 1699:1 1724:1 1725:1 1732:1 1733:4 1736:4 1737:1 1744:2 1749:2 1768:1 1777:1 1778:1 1790:1 1808:1 1810:2 1813:2 1821:2 1822:2 1824:1 1827:1 1830:1 1842:3 1843:3 1868:1 1870:1 1874:1 1897:1 1914:1 1915:1 1927:1 1933:1 1944:1 1948:2 1952:2 1953:1 1956:1 1973:1 1981:2 2007:1 2008:1 2013:1 2032:1 2035:1 2037:1 2040:1 2042:1 2043:2 2047:1 2050:2 2052:1 2088:2 2091:1 2098:1 2100:1 2114:1 2118:1 2144:1 2156:1 2159:4 2165:1 2171:1 2174:2 2177:1 2191:1 2201:1 2230:1 2254:1 2273:2 2296:1 2316:1 2326:1 2327:1 2334:1 2344:1 2359:1 2364:1 2386:3 2419:1 2426:3 2449:1 2451:2 2462:2 2463:1 2493:1 2495:1 2500:1 2501:1 2503:2 2505:3 2509:1 2516:2 2520:2 2522:1 2524:2 2525:2 2528:3 2531:1 2532:4 2533:1 2534:1 2547:1 2559:2 2561:1 2607:2 2636:1 2674:2 2677:2 2678:1 2707:1 2711:3 2720:2 2747:1 2804:1 2814:2 2830:1 2833:1 2844:1 2857:1 2860:1 2925:1 2929:1 2932:1 2940:2 2948:2 2953:1 2974:1 2977:1 2982:1 2983:3 2984:1 2991:1 3004:1 3028:3 3038:1 3080:1 3091:2 3103:2 3109:1 3112:1 3138:2 3145:1 3151:1 3155:1 3161:5 3169:5 3170:2 3178:1 3179:1 3198:2 3212:4 3216:4 3228:1 3235:1 3236:1 3238:1 3240:1 3242:2 3247:1 3250:1 3259:1 3275:1 3280:2 3286:1 3311:2 3313:1 3321:1 3328:2 3333:1 3348:1 3356:2 3372:1 3400:1 3403:2 3411:1 3432:1 3436:1 3443:1 3450:1 3483:1 3494:1 3548:2 3562:1 3570:1 3590:1 3600:1 3610:1 3612:1 3646:3 3658:1 3670:1 3671:1 3676:1 3699:1 3701:1 3705:1 3708:1 3735:3 3736:1 3779:1 3786:1 3791:1 3803:1 3842:1 3849:1 3891:1 3892:1 3920:1 3929:1 3935:1 3936:1 3952:1 3964:2 3968:1 4002:1 4006:1 4014:1 4018:1 4019:1 4032:3 4037:1 4055:1 4066:1 4067:2 4070:1 4083:1 4102:1 4105:1 4124:1 4130:2 4131:6 4151:1 4152:1 4165:1 4171:1 4183:1 4187:2 4189:2 4212:2 4214:2 4245:1 4250:2 4252:4 4255:2 4260:1 4282:1 4291:1 4292:1 4303:2 4305:1 4307:1 4310:1 4321:1 4333:1 4340:1 4363:1 4370:1 4374:1 4377:1 4401:2 4402:1 4404:1 4405:1 4415:1 4422:2 4425:1 4427:1 4445:1 4454:1 4462:1 4463:1 4483:1 4487:1 4515:1 4537:1 4563:2 4580:1 4609:1 4625:1 4629:3 4635:1 4649:1 4657:1 4665:2 4669:1 4671:1 4685:1 4715:1 4718:1 4736:1 4748:4 4762:1 4772:1 4773:1 4781:1 4793:1 4796:1 4808:1 4832:1 4863:1 4873:1 4880:1 4889:1 4896:2 4932:2 4935:1 4938:1 4954:1 4967:1 4969:1 4970:1 5001:1 5012:1 5017:2 5026:3 5035:1 5053:2 5054:2 5058:2 5074:1 5078:1 5091:1 5096:2 5131:1 5151:1 5158:2 5162:2 5178:3 5186:1 5187:2 5206:1 5238:1 5240:1 5242:2 5247:2 5315:1 5318:2 5327:1 5331:2 5336:1 5382:7 5412:2 5418:1 5431:1 5442:1 5443:1 5447:2 5500:5 5520:2 5521:1 5526:1 5527:1 5529:1 5532:1 5533:1 5535:3 5537:1 5541:1 5542:1 5546:1 5548:2 5549:1 5551:1 5566:1 5574:1 5578:1 5646:2 5649:1 5679:1 5690:1 5693:1 5697:2 5712:1 5713:1 5733:1 5734:1 5741:1 5757:2 5760:3 5767:1 5774:1 5788:1 5792:1 5805:2 5807:3 5823:3 5829:1 5843:3 5861:1 5896:2 5923:1 5924:1 5928:1 5941:4 5963:2 5967:1 5980:1 5983:2 5998:3 6015:1 6027:1 6031:1 6034:1 6036:1 6037:1 6038:1 6050:1 6051:1 6059:1 6061:1 6063:2 6069:1 6085:3 6106:1 6126:1 6143:2 6171:1 6218:1 6232:1 6268:1 6273:2 6275:1 6287:3 6307:1 6310:1 6333:1 6350:1 6382:1 6390:1 6394:1 6395:2 6397:1 6410:1 6423:2 6440:1 6453:1 6465:1 6479:1 6483:1 6487:1 6488:1 6536:1 6547:1 6558:1 6570:1 6579:1 6586:1 6594:1 6628:3 6633:1 6636:1 6656:1 6681:1 6684:1 6725:2 6742:4 6745:1 6749:1 6761:2 6764:1 6775:1 6779:1 6780:1 6785:1 6825:3 6831:3 6850:1 6866:1 6906:2 6920:1 6931:3 6938:1 6945:1 6949:2 6955:1 7021:1 7026:1 7035:1 7037:1 7044:3 7047:1 7053:2 7055:2 7056:3 7058:1 7060:3 7064:2 7066:1 7071:3 7073:4 7076:1 7113:1 7119:1 7122:1 7129:1 7130:1 7131:1 7141:1 7152:1 7154:3 7165:2 7167:1 7168:2 7184:1 7189:2 7215:1 7220:3 7229:1 7231:2 7242:1 7248:1 7289:1 7298:1 7308:1 7325:2 7328:3 7330:1 7331:4 7332:1 7338:1 7345:1 7365:2 7367:1 7370:1 7389:1 7398:1 7403:1 7406:1 7432:3 7453:1 7456:1 7463:1 7486:1 7489:1 7526:1 7527:1 7535:1 7544:1 7554:1 7559:1 7565:1 7610:3 7613:1 7615:1 7625:1 7628:1 7629:4 7635:1 7644:1 7665:1 7679:1 7683:3 7706:1 7714:1 7732:1 7739:1 7746:1 7748:1 7758:2 7774:1 7785:1 7796:1 7797:1 7805:1 7811:3 7823:1 7824:1 7832:2 7851:2 7878:1 7882:5 7884:2 7887:2 7892:1 7910:2 7923:3 7927:1 7930:1 7931:1 7939:4 7960:1 7969:1 7979:5 7991:1 8008:1 8032:1 8044:1 8047:1 8059:1 8066:1 8087:1 8092:1 8099:1 8111:1 8133:1 8137:6 8152:1 8187:1 8190:1 8219:2 8235:1 8253:1 8262:3 8277:1 8288:1 8300:2 8305:1 8324:2 8327:1 8329:1 8335:2 8338:1 8344:1 8347:1 8348:1 8360:1 8368:1 8379:2 8393:1 8395:1 8407:1 8408:1 8414:2 8422:1 8444:1 8448:1 8457:2 8459:3 8461:2 8462:1 8470:1 8489:4 8514:1 8521:1 8547:1 8549:2 8551:6 8569:2 8571:1 8602:1 8607:2 8609:1 8620:24 8629:1 8641:2 8642:6 8655:2 8669:1 8678:1 8681:1 8689:2 8690:1 8697:1 8707:1 8722:1 8724:1 8737:1 8746:1 8761:1 8769:1 8785:3 8792:1 8817:1 8819:1 8833:1 8850:1 8851:1 8855:4 8860:1 8863:1 8869:1 8873:1 8876:1 8902:1 8912:1 8914:1 8921:3 8950:1 8957:2 8975:2 8979:1 8985:1 8995:1 9005:1 9019:1 9025:1 9028:3 9039:1 9052:1 9074:1 9076:2 9082:3 9087:2 9088:1 9092:1 9104:1 9110:4 9127:1 9156:3 9157:11 9170:1 9171:1 9180:1 9181:1 9184:1 9188:1 9207:1 9208:2 9214:1 9216:3 9218:1 9222:1 9235:1 9243:2 9252:3 9253:3 9266:1 9282:1 9298:5 9333:1 9340:1 9353:1 9361:2 9397:2 9402:1 9406:1 9413:1 9419:1 9426:1 9436:1 9448:1 9456:1 9481:1 9493:1 9499:1 9525:1 9534:2 9538:1 9546:1 9549:1 9562:1 9585:1 9588:3 9590:1 9593:1 9597:1 9599:1 9605:3 9606:1 9610:1 9611:1 9626:1 9627:1 9651:1 9656:1 9671:1 9691:2 9692:1 9693:1 9698:1 9711:1 9719:1 9731:1 9748:1 9752:1 9769:1 9777:2 9806:1 9824:2 9825:2 9826:8 9836:1 9845:1 9849:1 9853:1 9865:3 9875:1 9877:1 9896:1 9914:2 9921:1 9926:1 9928:1 9934:1 9943:1 9950:2 9956:1 9983:1 9992:7 10025:2 10036:1 10114:1 10150:1 10164:1 10183:1 10192:1 10193:2 10202:1 10208:1 10226:1 10236:1 10237:1 10239:2 10255:1 10258:1 10260:1 10269:3 10279:4 10306:1 10314:1 10322:3 10326:1 10357:2 10362:1 10365:1 10377:1 10385:1 10390:2 10413:1 10415:1 10472:2 10501:1 10522:1 10542:1 10556:1 10572:2 10573:2 10574:1 10592:1 10593:1 10604:1 10606:1 10623:1 10629:2 10640:1 10643:1 10650:2 10655:1 10656:1 10677:1 10686:1 10700:3 10702:1 10719:2 10725:1 10753:1 10771:1 10782:1 10783:1 10785:1 10791:1 10792:1 10795:1 10796:1 10797:1 10838:2 10874:1 10883:1 10888:1 10931:5 10947:1 10954:2 10966:2 10976:1 10980:1 10990:1 11020:1 11021:1 11027:1 11039:1 11063:1 11070:1 11101:1 11114:1 11115:1 11122:1 11125:1 11140:1 11150:1 11158:1 11159:4 11168:1 11175:1 11197:1 11213:2 11220:2 11241:1 11274:2 11278:1 11282:2 11291:2 11293:1 11298:2 11304:1 11307:1 11310:1 11312:2 11313:2 11326:1 11333:1 11341:1 11342:1 11346:1 11350:1 11373:8 11386:2 11390:1 11401:1 11403:3 11423:2 11442:3 11443:1 11451:1 11468:1 11472:1 11482:3 11483:1 11486:1 11493:1 11516:1 11536:1 11547:1 11554:1 11565:1 11567:1 11571:1 11579:1 11583:1 11584:1 11591:1 11594:1 11600:1 11601:2 11604:1 11608:3 11630:1 11689:1 11690:1 11691:1 11701:1 11706:1 11712:1 11717:2 11737:1 11746:4 11749:2 11769:2 11771:1 11785:1 11808:1 11809:2 11810:1 11834:1 11840:1 11850:7 11876:2 11888:1 11913:1 11921:1 11926:8 11937:1 11945:1 11959:2 11960:2 11961:2 11977:1 11994:1 12009:1 12015:1 12020:2 12024:1 12035:1 12040:1 12043:3 12048:1 12050:1 12097:1 12099:1 12100:1 12102:1 12119:1 12128:1 12134:1 12136:1 12149:1 12189:1 12205:1 12230:1 12242:1 12270:1 12273:1 12275:2 12296:2 12300:2 12312:1 12316:1 12323:1 12339:1 12341:1 12343:1 12349:1 12380:1 12408:1 12418:1 12420:2 12440:1 12442:2 12444:1 12457:2 12458:2 12474:1 12475:1 12476:1 12477:1 12486:1 12496:1 12497:2 12509:1 12510:2 12517:1 12520:1 12536:1 12562:2 12563:1 12570:3 12574:1 12596:1 12623:2 12632:1 12648:1 12654:1 12688:2 12690:1 12692:1 12705:2 12716:4 12722:1 12733:1 12735:1 12736:1 12744:1 12746:4 12756:1 12764:1 12774:1 12776:1 12784:1 12822:2 12825:1 12841:1 12843:1 12846:1 12860:1 12865:1 12888:1 12901:1 12915:1 12917:1 12922:1 12933:1 12934:1 12947:1 12960:1 12965:1 12973:1 12989:1 12997:1 13017:2 13022:1 13032:1 13041:1 13055:1 13068:2 13092:3 13116:1 13121:1 13151:2 13164:1 13167:1 13173:4 13178:1 13180:1 13182:3 13186:1 13187:1 13195:1 13205:1 13207:1 13213:1 13229:1 13234:1 13239:1 13240:1 13253:1 13256:1 13265:3 13269:2 13297:3 13325:1 13351:3 13363:1 13405:1 13408:1 13434:1 13439:1 13467:1 13475:1 13476:1 13481:1 13502:2 13511:2 13513:3 13516:1 13521:1 13528:1 13546:1 13554:1 13558:1 13561:1 13575:2 13581:3 13602:1 13604:1 13625:1 13626:4 13627:1 13637:1 13648:1 13650:1 13654:5 13658:2 13671:1 13674:1 13685:1 13688:1 13698:3 13714:1 13728:3 13740:1 13746:1 13757:1 13765:1 13774:1 13778:2 13784:1 13786:1 13804:1 13806:1 13834:5 13844:3 13854:3 13864:1 13873:3 13890:1 13901:1 13914:1 13940:4 13954:1 13959:1 13967:1 13969:1 13977:1 13980:1 14011:1 14034:1 14036:1 14045:1 14056:1 14066:1 14067:1 14072:1 14101:1 14108:1 14117:1 14118:1 14119:1 14120:2 14122:1 14126:1 14129:2 14132:1 14157:1 14161:1 14174:1 14198:2 14206:1 14243:1 14266:1 14267:1 14275:1 14284:1 14291:1 14302:1 14311:1 14317:1 14328:1 14329:6 14350:1 14353:2 14356:1 14360:1 14371:2 14392:1 14393:1 14408:1 14428:1 14472:1 14505:1 14520:2 14558:1 14584:1 14601:1 14603:1 14620:1 14623:3 14632:2 14682:1 14703:1 14719:1 14737:1 14755:1 14759:1 14764:1 14773:1 14783:1 14795:1 14807:1 14819:1 14821:10 14841:1 14846:2 14849:1 14850:2 14853:1 14858:2 14872:1 14879:1 14887:6 14898:1 14905:1 14910:1 14921:1 14923:1 14938:1 14976:2 14978:7 14992:1 14994:4 14996:1 15000:1 15025:1 15028:1 15039:2 15048:1 15054:2 15069:2 15075:6 15081:1 15090:3 15131:1 15135:2 15139:3 15148:1 15150:1 15161:1 15170:1 15183:1 15187:2 15218:1 15238:1 15243:4 15263:1 15281:1 15291:1 15293:1 15314:1 15325:1 15346:1 15368:1 15373:1 15377:1 15384:1 15393:1 15401:2 15411:1 15415:1 15444:1 15450:1 15458:1 15477:1 15489:5 15496:3 15505:1 15516:1 15548:1 15583:1 15585:1 15590:1 15596:1 15601:2 15647:1 15657:1 15663:1 15668:2 15669:1 15674:2 15681:1 15699:1 15700:1 15702:1 15721:1 15759:1 15784:2 15800:1 15802:1 15805:2 15817:2 15826:1 15829:1 15840:1 15853:3 15880:2 15899:2 15920:1 15948:1 15949:1 15958:1 15963:1 15996:1 16009:1 16011:1 16025:1 16030:1 16039:1 16049:1 16087:2 16094:1 16097:1 16098:1 16102:1 16111:1 16113:1 16131:1 16155:1 16182:1 16191:1 16208:1 16209:1 16214:3 16227:2 16228:1 16251:2 16252:1 16257:1 16272:1 16277:1 16287:1 16292:2 16294:1 16313:1 16321:1 16330:3 16336:2 16341:1 16347:1 16350:1 16352:3 16358:2 16371:1 16384:1 16391:1 16411:1 16426:2 16438:2 16460:1 16480:1 16487:1 16523:6 16528:2 16540:3 16543:1 16544:1 16548:9 16554:1 16601:2 16624:1 16681:1 16697:2 16701:2 16716:1 16738:1 16739:1 16752:1 16760:4 16766:1 16777:7 16793:3 16816:1 16818:1 16822:3 16824:1 16849:3 16866:1 16870:2 16872:1 16897:5 16916:7 16917:1 16940:1 16941:1 17001:1 17016:1 17023:1 17039:1 17054:3 17061:2 17070:1 17091:3 17093:1 17102:1 17111:1 17116:1 17117:2 17148:2 17158:1 17180:1 17192:1 17207:2 17218:1 17256:1 17281:1 17282:1 17284:1 17290:1 17297:2 17314:1 17323:2 17331:3 17337:1 17343:2 17354:2 17376:1 17378:1 17388:1 17405:1 17408:2 17437:1 17461:1 17476:1 17483:1 17513:1 17516:1 17520:2 17525:6 17530:1 17538:1 17544:1 17565:1 17568:3 17580:1 17583:2 17618:1 17624:3 17691:1 17696:1 17700:1 17701:1 17716:2 17717:3 17733:4 17739:1 17753:1 17757:1 17770:1 17772:2 17773:1 17774:1 17778:2 17779:1 17787:1 17792:1 17795:1 17800:1 17804:4 17812:1 17843:1 17868:1 17871:2 17876:1 17877:2 17879:6 17899:1 17906:4 17921:1 17935:1 17947:1 17948:1 17964:1 17986:1 17988:1 17993:1 17997:2 18029:1 18031:1 18032:1 18041:6 18054:2 18055:1 18070:2 18071:3 18077:1 18089:1 18097:1 18098:1 18109:2 18121:1 18132:1 18147:1 18152:1 18156:5 18159:3 18164:1 18169:1 18182:1 18191:1 18218:1 18223:1 18306:1 18307:1 18334:1 18339:2 18345:1 18346:1 18355:1 18367:2 18376:1 18379:1 18382:1 18397:1 18410:2 18424:3 18429:2 18436:1 18445:8 18450:1 18453:1 18493:1 18494:1 18509:1 18537:1 18556:1 18562:1 18573:1 18582:1 18624:1 18634:1 18643:1 18650:1 18653:1 18677:1 18678:1 18687:1 18703:1 18706:1 18709:1 18723:1 18729:1 18737:1 18738:2 18742:1 18753:1 18754:1 18767:1 18774:5 18829:3 18836:1 18842:1 18880:3 18884:2 18897:2 18902:1 18920:1 18922:1 18931:1 18937:1 18943:3 18944:1 18945:1 18968:1 18970:1 18978:1 18994:2 19022:1 19030:1 19040:2 19041:1 19046:1 19058:1 19060:1 19067:1 19069:1 19095:1 19097:1 19117:1 19120:1 19121:1 19122:1 19154:1 19163:1 19224:1 19234:1 19288:2 19290:1 19292:1 19301:1 19302:1 19303:1 19322:1 19369:1 19372:1 19406:1 19413:1 19417:1 19421:1 19443:1 19467:1 19469:1 19473:2 19476:2 19477:1 19483:1 19485:1 19489:2 19490:1 19515:1 19526:3 19553:4 19555:3 19590:1 19594:1 19611:2 19614:1 19635:1 19651:1 19657:3 19660:1 19665:4 19670:1 19677:1 19678:3 19692:1 19698:1 19710:2 19711:1 19722:1 19730:1 19732:1 19739:1 19757:1 19764:1 19766:1 19777:1 19798:1 19802:1 19803:5 19807:1 19809:1 19816:1 19837:1 19850:1 19872:1 19876:2 19884:2 19887:1 19899:1 19900:1 19950:1 19967:1 19970:1 19977:1 19980:1 20026:1 20034:2 20073:1 20074:1 20081:1 20111:1 20112:1 20126:1 20132:1 20137:1 20152:2 20174:1 20201:1 20203:1 20225:1 20230:1 20235:1 20269:1 20289:1 20306:1 20318:1 20333:1 20344:1 20352:1 20355:1 20358:1 20394:2 20401:1 20402:1 20403:1 20411:1 20413:1 20480:2 20492:2 20522:2 20531:3 20551:1 20589:1 20590:1 20601:1 20605:1 20610:1 20613:4 20624:1 20634:2 20641:1 20658:1 20661:1 20708:1 20712:1 20713:1 20714:1 20731:1 20732:1 20735:1 20753:2 20757:3613 20781:1 20793:1 20795:1 20831:1 20832:1 20860:1 20875:2 20884:1 20886:1 20898:1 20912:2 20941:1 20950:1 20951:1 20963:1 20970:1 20975:1 20977:1 20978:1 20991:1 20996:1 20998:1 20999:1 21000:1 21002:1 21013:1 21049:2 21069:1 21073:1 21074:1 21092:1 21109:1 21111:1 21120:1 21121:1 21133:1 21136:1 21145:1 21154:1 21158:1 21167:1 21177:1 21190:1 21200:1 21212:2 21224:1 21225:1 21230:1 21233:2 21234:1 21241:1 21259:1 21262:4 21266:1 21330:1 21332:2 21336:1 21337:1 21351:1 21371:1 21374:1 21379:1 21389:1 21396:1 21414:1 21423:2 21435:1 21437:1 21438:1 21441:1 21454:1 21455:1 21472:1 21503:1 21514:1 21521:9 21529:1 21544:2 21551:1 21553:6 21558:1 21565:1 21587:3 21596:1 21617:1 21643:2 21649:3 21657:1 21669:1 21688:1 21700:1 21710:1 21736:1 21737:4 21778:4 21783:1 21787:1 21806:2 21816:1 21831:1 21842:2 21873:1 21878:1 21885:1 21911:1 21915:2 21952:1 21974:1 21982:1 21988:1 21993:1 22007:1 22036:1 22042:1 22043:1 22049:1 22053:1 22056:1 22070:1 22075:1 22105:1 22157:1 22170:1 22178:1 22182:2 22188:1 22203:2 22204:1 22207:1 22230:1 22236:1 22251:1 22252:4 22266:1 22276:1 22277:1 22278:7 22299:3 22303:1 22305:1 22312:1 22320:2 22328:1 22331:1 22332:1 22350:1 22352:1 22361:1 22375:2 22377:3 22415:2 22419:1 22445:3 22448:1 22449:1 22460:1 22482:1 22483:1 22493:1 22552:1 22563:1 22582:1 22655:4 22666:1 22683:1 22712:1 22719:2 22722:1 22775:1 22782:3 22784:1 22808:1 22813:1 22818:2 22819:3 22824:1 22828:1 22838:1 22848:1 22859:1 22865:1 22867:2 22872:1 22894:4 22897:2 22901:1 22903:1 22909:2 22912:1 22915:1 22918:1 22949:2 22951:1 22960:1 22963:1 22968:1 22974:1 22978:2 22986:1 22992:1 23000:1 23006:1 23016:1 23022:2 23039:1 23042:1 23068:2 23083:3 23112:1 23114:2 23116:1 23128:1 23133:1 23136:1 23145:1 23157:7 23163:3 23172:1 23173:1 23175:1 23183:1 23185:1 23192:1 23196:1 23198:5 23201:1 23202:1 23210:1 23213:3 23216:2 23222:1 23264:1 23285:1 23287:2 23291:6 23302:1 23315:1 23320:1 23322:3 23332:1 23337:2 23363:2 23387:1 23415:1 23421:1 23426:1 23427:1 23429:1 23430:1 23433:2 23435:1 23438:1 23453:3 23454:1 23455:1 23456:2 23472:1 23473:1 23478:2 23487:1 23541:2 23553:1 23555:1 23568:1 23570:1 23572:1 23574:1 23578:1 23600:4 23603:2 23605:1 23618:1 23620:1 23661:2 23684:3 23685:1 23700:1 23701:1 23702:2 23704:1 23725:1 23730:1 23734:1 23741:3 23743:1 23746:1 23754:1 23759:1 23774:1 23793:1 23797:1 23801:2 23804:1 23822:1 23834:2 23839:4 23853:1 23885:1 23892:1 23907:1 23926:1 23927:2 23930:1 23938:1 23945:2 23951:1 23958:2 23962:2 23973:1 23976:2 23986:1 23991:1 24000:1 24012:1 24026:1 24123:1 24131:2 24136:2 24139:2 24161:1 24162:2 24173:2 24174:1 24217:1 24224:1 24236:1 24280:1 24287:3 24300:2 24304:1 24305:3 24316:1 24322:3 24333:1 24340:1 24342:2 24355:3 24383:1 24384:1 24391:3 24394:1 24404:1 24414:1 24437:1 24441:1 24442:1 24443:1 24446:1 24467:3 24475:1 24507:1 24524:1 24525:1 24557:1 24559:1 24563:2 24575:2 24576:1 24590:1 24596:1 24606:1 24610:1 24614:1 24633:1 24662:1 24665:1 24671:1 24700:1 24701:1 24702:1 24703:1 24704:1 24718:1 24738:2 24742:1 24755:3 24770:3 24776:2 24784:1 24787:1 24789:1 24790:1 24793:11 24797:1 24800:1 24805:1 24812:1 24819:1 24820:1 24839:1 24854:1 24858:1 24868:1 24870:1 24875:1 24876:1 24890:1 24896:1 24898:2 24931:1 24938:1 24965:1 24996:1 25007:1 25045:2 25046:1 25059:2 25069:2 25121:1 25132:1 25133:1 25135:1 25154:1 25167:1 25172:1 25174:1 25188:1 25190:1 25215:1 25259:1 25275:1 25306:1 25319:1 25330:1 25356:2 25364:1 25365:1 25366:2 25383:1 25392:1 25401:1 25442:2 25458:1 25460:2 25466:1 25480:1 25481:2 25483:1 25485:1 25504:1 25559:1 25564:1 25583:1 25588:1 25591:1 25593:2 25605:1 25607:1 25615:1 25625:1 25634:1 25636:1 25664:1 25665:4 25668:1 25702:2 25718:2 25747:1 25750:1 25752:1 25770:2 25777:1 25784:3 25787:1 25792:1 25796:1 25803:1 25805:1 25806:1 25811:2 25812:1 25814:1 25821:1 25838:1 25860:1 25862:2 25873:1 25876:2 25877:2 25883:2 25887:1 25895:1 25896:2 25898:1 25902:1 25905:1 25914:1 25935:3 25965:2 25968:1 25969:1 25991:2 26018:1 26038:1 26039:1 26044:1 26047:1 26054:1 26068:1 26113:1 26123:1 26128:1 26135:1 26146:1 26155:4 26157:1 26166:1 26173:1 26195:2 26211:2 26219:2 26256:1 26271:1 26273:2 26276:3 26277:1 26320:1 26333:1 26339:2 26343:1 26360:1 26370:1 26371:1 26375:1 26384:2 26411:1 26427:2 26429:1 26435:1 26460:2 26472:1 26474:1 26494:1 26534:1 26574:1 26578:1 26598:1 26607:2 26623:1 26625:2 26639:1 26688:1 26700:1 26713:1 26716:1 26728:2 26729:1 26731:1 26735:1 26740:1 26758:1 26813:1 26817:2 26828:4 26838:1 26845:9 26848:1 26849:1 26852:1 26853:1 26861:1 26863:1 26870:1 26887:1 26912:2 26920:2 26921:1 26951:2 26955:1 26964:1 26977:1 26979:1 26994:2 26998:3 27000:4 27007:1 27019:1 27020:1 27037:2 27040:2 27047:1 27048:1 27053:1 27071:1 27075:1 27093:1 27099:2 27112:1 27135:1 27140:1 27177:1 27190:2 27207:2 27209:3 27213:4 27217:1 27224:1 27241:1 27246:1 27252:3 27264:1 27277:1 27284:1 27292:1 27302:1 27328:2 27344:1 27365:1 27375:1 27412:1 27415:1 27422:2 27449:1 27457:5 27462:3 27470:1 27480:1 27487:1 27524:1 27539:1 27543:1 27563:2 27565:1 27590:1 27594:3 27600:2 27628:1 27635:1 27637:1 27640:1 27650:1 27663:1 27678:3 27689:2 27706:1 27717:1 27741:1 27750:1 27755:1 27775:1 27783:4 27799:5 27803:4 27804:1 27820:1 27821:1 27835:1 27845:1 27853:1 27874:1 27875:1 27876:2 27878:2 27879:2 27889:1 27903:1 27904:1 27940:1 27943:1 27952:1 27964:2 27965:1 27975:3 27978:3 27979:1 27985:1 27988:2 27992:1 27993:1 27994:1 28006:1 28012:3 28019:1 28037:1 28047:1 28055:1 28061:3 28062:1 28072:3 28084:3 28086:1 28097:2 28100:1 28108:1 28130:1 28132:2 28139:1 28157:1 28174:1 28175:1 28207:1 28208:1 28210:1 28224:1 28228:1 28229:1 28236:1 28240:1 28262:1 28275:1 28278:1 28281:1 28326:1 28344:3 28351:1 28374:2 28375:1 28377:2 28380:2 28384:1 28394:1 28397:1 28412:1 28424:1 28428:1 28442:1 28458:1 28488:1 28491:2 28507:1 28509:2 28511:1 28526:1 28528:1 28538:1 28540:1 28547:2 28551:1 28555:1 28562:1 28563:1 28571:1 28581:1 28587:3 28591:1 28593:1 28604:1 28620:1 28626:1 28628:1 28635:1 28638:3 28660:1 28670:3 28674:1 28689:1 28706:1 28720:4 28739:1 28745:2 28746:1 28766:1 28781:1 28792:2 28810:4 28827:3 28832:1 28841:1 28848:4 28854:1 28880:1 28887:1 28888:1 28941:1 28946:1 28992:1 28993:1 28994:1 29007:1 29027:2 29042:1 29048:1 29049:1 29051:1 29054:1 29059:1 29067:1 29095:1 29104:1 29115:1 29125:1 29126:1 29134:1 29139:4 29141:1 29145:3 29146:2 29176:1 29179:1 29198:1 29203:1 29228:1 29248:1 29251:1 29254:1 29273:2 29289:2 29296:3 29303:1 29312:1 29334:2 29356:2 29365:1 29392:2 29411:1 29413:1 29433:1 29453:1 29455:2 29462:1 29463:1 29465:2 29472:1 29494:1 29509:1 29550:1 29587:1 29593:1 29600:1 29620:1 29627:1 29628:1 29633:1 29638:1 29640:1 29647:4 29653:1 29678:2 29681:3 29702:1 29724:1 29727:2 29732:1 29733:1 29738:1 29740:1 29744:2 29745:1 29746:3 29756:1 29759:1 29760:4 29763:1 29770:5 29792:1 29822:1 29853:1 29878:2 29883:1 29894:3 29899:2 29900:1 29905:2 29942:2 29947:1 29993:1 29995:2 30007:1 30012:2 30014:1 30016:2 30021:2 30042:1 30044:2 30052:1 30053:1 30057:1 30066:1 30075:1 30083:1 30085:1 30090:1 30092:1 30093:1 30095:1 30096:1 30101:1 30106:1 30133:1 30143:1 30148:1 30156:1 30160:2 30163:2 30169:1 30178:1 30186:2 30202:1 30203:1 30209:1 30210:2 30253:1 30262:1 30266:2 30269:1 30275:1 30280:1 30306:1 30309:1 30318:1 30322:1 30323:1 30333:1 30335:1 30345:2 30355:2 30359:1 30365:1 30390:2 30392:2 30396:1 30411:1 30413:1 30447:2 30475:1 30488:2 30505:1 30518:1 30533:2 30557:1 30559:1 30564:2 30571:1 30576:1 30577:1 30590:1 30622:1 30632:1 30642:1 30644:2 30648:1 30663:1 30675:2 30689:1 30692:1 30723:3 30727:1 30732:5 30752:1 30756:1 30763:1 30787:1 30799:1 30817:2 30820:1 30836:15 30837:1 30841:1 30860:1 30862:1 30879:6 30896:2 30906:1 30919:1 30944:1 30985:2 31017:5 31020:1 31025:1 31034:1 31036:1 31057:6 31062:1 31063:1 31075:1 31077:1 31079:1 31080:1 31095:1 31112:1 31116:1 31118:1 31123:4 31126:1 31144:1 31156:2 31179:1 31188:2 31191:1 31209:2 31235:1 31256:1 31281:2 31286:2 31323:1 31330:1 31332:1 31335:1 31340:1 31342:1 31348:1 31360:1 31370:1 31379:1 31396:3 31398:1 31401:1 31402:1 31422:1 31434:1 31449:3 31452:1 31469:1 31476:1 31478:1 31486:1 31520:1 31567:3 31583:2 31593:3 31603:1 31606:1 31614:1 31624:3 31628:2 31635:1 31653:1 31659:1 31662:1 31681:1 31688:1 31716:1 31719:1 31725:1 31735:1 31739:1 31769:1 31807:1 31815:1 31819:1 31837:2 31849:1 31864:1 31876:1 31880:1 31896:2 31910:1 31933:1 31937:1 31941:1 31950:1 31959:1 31984:1 31991:1 31992:1 31994:1 32016:1 32017:1 32044:1 32066:2 32080:2 32081:1 32105:1 32109:1 32120:3 32122:1 32138:1 32163:1 32214:1 32217:1 32221:1 32233:1 32235:1 32243:3 32244:1 32245:3 32246:1 32248:1 32249:1 32250:2 32254:2 32257:3 32258:2 32261:2 32266:2 32267:1 32277:1 32278:1 32298:2 32303:1 32306:1 32320:1 32324:1 32333:2 32337:1 32343:1 32350:1 32374:1 32378:1 32382:1
15 3:1 6:1 43:1 71:3 91:2 101:1 104:2 122:1 166:1 167:5 187:1 189:3 196:1 200:1 224:1 225:1 226:1 227:2 243:1 244:2 248:1 267:1 282:1 285:3 289:1 335:1 337:2 356:2 370:1 382:1 388:2 406:4 408:2 409:2 443:1 444:2 463:1 468:1 493:1 503:3 517:1 529:1 541:2 554:1 566:1 586:1 612:2 614:1 615:1 616:1 622:1 623:1 645:3 649:1 655:2 661:1 666:1 682:1 685:7 693:1 696:1 697:3 699:3 704:1 747:1 759:1 768:3 791:1 795:1 796:1 812:1 813:4 816:1 829:3 863:1 870:1 892:1 898:1 928:2 934:1 935:1 936:1 956:2 958:1 959:1 961:1 963:2 968:1 970:1 972:2 978:1 980:1 981:1 985:1 988:2 998:1 1014:2 1018:1 1020:3 1023:1 1027:2 1031:1 1039:1 1052:3 1061:1 1065:1 1072:1 1075:1 1089:1 1103:1 1114:2 1119:3 1149:3 1150:1 1154:2 1167:1 1172:1 1180:1 1205:2 1206:1 1210:1 1235:1 1255:1 1259:2 1273:1 1277:2 1288:2 1296:1 1297:1 1324:1 1328:3 1331:1 1337:1 1343:1 1367:2 1374:2 1385:1 1396:1 1399:1 1407:2 1408:1 1423:1 1429:1 1431:1 1448:1 1458:1 1459:1 1465:2 1472:1 1483:1 1484:1 1500:1 1510:1 1513:1 1517:2 1562:1 1577:2 1578:1 1586:2 1587:1 1592:7 1629:1 1632:1 1635:2 1641:2 1642:2 1650:1 1651:1 1656:6 1671:1 1673:1 1682:1 1686:1 1699:1 1724:1 1725:1 1732:1 1733:4 1736:4 1737:1 1744:2 1749:2 1768:1 1777:1 1778:1 1790:1 1808:1 1810:2 1813:2 1821:2 1822:2 1824:1 1827:1 1830:1 1842:3 1843:3 1868:1 1870:1 1874:1 1897:1 1914:1 1915:1 1927:1 1933:1 1944:1 1948:2 1952:2 1953:1 1956:1 1973:1 1981:2 2007:1 2008:1 2013:1 2032:1 2035:1 2037:1 2040:1 2042:1 2043:2 2047:1 2050:2 2052:1 2088:2 2091:1 2098:1 2100:1 2114:1 2118:1 2144:1 2156:1 2159:4 2165:1 2171:1 2174:2 2177:1 2191:1 2201:1 2230:1 2254:1 2273:2 2296:1 2316:2 2326:1 2327:1 2334:1 2344:1 2359:1 2364:1 2386:3 2419:1 2426:3 2449:1 2451:2 2462:2 2463:1 2493:1 2495:1 2500:1 2501:1 2503:2 2505:3 2509:1 2516:2 2520:2 2522:1 2524:2 2525:2 2528:3 2531:1 2532:4 2533:1 2534:1 2547:1 2559:2 2561:1 2607:2 2636:1 2674:2 2677:2 2678:1 2707:1 2711:3 2720:2 2747:1 2761:1 2804:1 2814:2 2830:2 2833:1 2844:1 2857:1 2860:1 2925:1 2929:1 2932:1 2940:2 2948:2 2953:1 2974:1 2977:1 2982:1 2983:3 2984:1 2991:1 3004:1 3028:3 3038:1 3080:1 3091:2 3103:2 3109:1 3112:1 3138:2 3145:1 3151:1 3155:1 3161:5 3169:5 3170:2 3178:1 3179:1 3198:2 3212:5 3216:4 3228:1 3235:1 3236:1 3238:1 3240:1 3242:2 3247:1 3250:1 3259:1 3275:1 3280:2 3286:1 3311:2 3313:1 3321:1 3328:2 3333:1 3348:1 3356:2 3372:1 3400:1 3403:2 3411:1 3432:1 3436:1 3443:1 3450:1 3483:1 3494:1 3548:3 3562:1 3570:1 3590:1 3595:1 3600:1 3610:1 3612:1 3646:3 3658:1 3670:1 3671:1 3676:1 3699:1 3701:1 3705:1 3708:1 3735:3 3736:1 3779:1 3786:1 3791:1 3803:1 3842:1 3849:1 3891:1 3892:1 3920:1 3929:1 3935:1 3936:1 3952:1 3964:2 3968:1 4002:1 4006:1 4014:1 4018:1 4019:1 4032:3 4037:1 4055:1 4066:1 4067:2 4070:1 4083:1 4102:1 4105:1 4124:1 4130:2 4131:7 4151:1 4152:1 4165:1 4171:1 4183:1 4187:2 4189:2 4212:2 4214:2 4245:1 4250:2 4252:4 4255:2 4260:1 4282:1 4291:1 4292:1 4303:2 4305:1 4307:1 4310:1 4321:1 4333:2 4340:1 4363:1 4370:1 4374:1 4377:1 4401:2 4402:1 4404:1 4405:1 4415:1 4422:2 4425:1 4427:1 4445:1 4454:1 4462:1 4463:1 4483:1 4487:1 4515:1 4537:1 4563:2 4580:1 4609:1 4625:1 4629:3 4635:1 4649:2 4657:1 4665:2 4669:1 4671:1 4685:1 4715:1 4718:1 4736:1 4748:4 4762:1 4772:1 4773:1 4781:1 4793:1 4796:1 4808:1 4832:1 4863:1 4873:1 4880:1 4889:1 4896:2 4932:2 4935:1 4938:1 4954:1 4967:1 4968:1 4969:1 4970:1 5001:1 5012:1 5017:2 5026:3 5035:1 5053:2 5054:2 5058:2 5074:1 5078:1 5091:1 5096:2 5131:1 5146:1 5151:1 5158:2 5162:2 5178:3 5186:1 5187:2 5206:1 5238:1 5240:1 5242:2 5247:2 5315:1 5318:2 5327:1 5331:2 5336:1 5382:7 5412:2 5418:1 5431:1 5442:1 5443:1 5447:2 5500:5 5520:2 5521:1 5526:1 5527:1 5529:1 5532:1 5533:1 5535:3 5537:1 5541:1 5542:1 5546:1 5548:2 5549:1 5551:1 5566:1 5574:1 5578:1 5646:2 5649:1 5679:1 5690:1 5693:1 5697:2 5712:1 5713:1 5733:1 5734:1 5741:1 5757:2 5760:3 5767:1 5774:1 5788:1 5792:1 5805:2 5807:3 5823:3 5829:1 5843:3 5861:1 5896:2 5923:1 5924:1 5928:1 5941:4 5963:2 5967:2 5980:1 5983:2 5998:4 6015:1 6027:1 6031:1 6034:1 6036:1 6037:1 6038:1 6050:2 6051:1 6059:1 6061:1 6063:2 6069:1 6085:4 6106:1 6126:1 6143:2 6171:1 6218:1 6232:1 6268:1 6273:2 6275:1 6287:3 6307:1 6310:1 6333:1 6350:1 6368:1 6382:1 6390:1 6394:1 6395:2 6397:1 6410:1 6423:2 6440:1 6453:1 6465:1 6479:1 6483:1 6487:1 6488:1 6536:1 6547:1 6558:1 6570:1 6579:1 6586:1 6594:1 6628:3 6633:1 6636:1 6656:1 6681:1 6684:1 6725:2 6742:4 6745:1 6749:1 6761:2 6764:1 6775:1 6779:1 6780:1 6785:1 6825:3 6831:3 6850:1 6866:1 6906:2 6920:1 6931:3 6938:1 6945:1 6949:2 6955:1 7021:2 7026:1 7035:1 7037:1 7044:3 7047:1 7053:2 7055:2 7056:3 7058:1 7060:3 7064:2 7066:1 7071:3 7073:4 7076:1 7082:1 7113:1 7119:1 7122:1 7129:1 7130:1 7131:1 7134:1 7141:1 7152:1 7154:3 7165:2 7167:1 7168:2 7184:1 7189:2 7215:1 7220:3 7221:1 7229:1 7231:2 7242:1 7248:1 7289:1 7298:1 7308:1 7325:2 7328:3 7330:1 7331:4 7332:1 7338:1 7345:1 7365:2 7367:1 7370:1 7389:1 7398:1 7403:1 7406:1 7432:3 7453:1 7456:1 7463:1 7486:1 7489:1 7526:1 7527:1 7535:1 7544:1 7554:1 7559:1 7565:1 7610:3 7613:1 7615:1 7625:1 7628:1 7629:4 7635:1 7644:1 7665:1 7679:1 7683:3 7706:1 7714:1 7732:1 7739:1 7746:1 7748:1 7758:2 7774:1 7785:1 7796:1 7797:1 7805:1 7811:3 7823:1 7824:1 7832:2 7851:2 7878:1 7882:5 7884:2 7887:2 7892:1 7910:2 7923:3 7927:1 7930:1 7931:1 7939:4 7960:1 7969:1 7979:6 7991:1 8008:1 8032:1 8044:1 8047:1 8059:1 8066:1 8087:1 8092:1 8099:1 8111:1 8133:1 8137:7 8152:1 8187:1 8190:1 8219:2 8235:1 8253:1 8262:3 8277:2 8288:1 8300:2 8305:1 8324:2 8327:1 8329:1 8335:2 8338:1 8344:1 8347:1 8348:1 8360:1 8368:1 8371:1 8379:2 8393:1 8395:1 8407:1 8408:1 8414:2 8422:1 8444:1 8448:1 8457:2 8459:3 8461:2 8462:1 8470:1 8489:4 8514:1 8521:1 8529:1 8547:1 8549:2 8551:6 8569:2 8571:1 8602:1 8607:2 8609:1 8620:24 8629:1 8641:2 8642:7 8655:2 8669:1 8678:1 8681:1 8689:2 8690:1 8697:1 8707:1 8722:1 8724:1 8737:1 8746:1 8761:1 8769:1 8785:3 8792:1 8809:1 8817:1 8819:1 8833:1 8850:1 8851:1 8855:4 8860:1 8863:1 8864:1 8869:1 8873:1 8876:1 8902:1 8912:1 8914:1 8921:3 8950:1 8957:2 8975:2 8979:1 8985:1 8995:1 9005:1 9019:1 9025:1 9028:3 9039:1 9052:1 9074:1 9076:2 9082:3 9087:2 9088:1 9092:1 9104:1 9110:4 9127:1 9149:1 9156:3 9157:11 9170:1 9171:1 9180:1 9181:1 9184:1 9188:1 9207:1 9208:2 9214:1 9216:3 9218:1 9222:1 9235:1 9243:2 9252:4 9253:3 9266:1 9282:1 9298:5 9333:1 9340:1 9353:1 9361:2 9397:2 9402:1 9406:1 9413:1 9419:1 9426:1 9436:1 9448:2 9456:1 9481:1 9493:1 9499:1 9525:1 9534:2 9538:1 9546:1 9549:1 9562:1 9585:1 9588:3 9590:1 9593:1 9597:1 9599:1 9605:3 9606:1 9610:1 9611:1 9626:1 9627:1 9651:1 9656:1 9671:1 9691:2 9692:1 9693:1 9698:1 9711:1 9719:1 9731:1 9748:2 9752:1 9769:1 9777:2 9806:1 9824:2 9825:2 9826:9 9836:1 9845:1 9849:1 9853:1 9865:3 9875:1 9877:1 9896:1 9914:2 9921:1 9926:1 9928:1 9934:1 9943:1 9950:2 9956:2 9983:1 9992:7 10025:2 10036:1 10114:1 10150:1 10164:1 10183:1 10192:1 10193:2 10202:1 10208:1 10226:1 10236:1 10237:1 10239:2 10255:1 10258:1 10260:1 10269:3 10279:4 10306:1 10314:1 10322:3 10326:1 10357:2 10362:1 10365:1 10377:1 10385:1 10390:2 10413:1 10415:1 10471:1 10472:2 10501:1 10522:1 10542:1 10556:1 10572:2 10573:2 10574:1 10582:1 10592:1 10593:1 10604:1 10606:1 10623:1 10629:2 10640:1 10643:1 10650:2 10655:1 10656:2 10677:1 10686:1 10700:3 10702:1 10719:2 10725:1 10753:1 10771:1 10776:1 10782:1 10783:1 10785:1 10791:1 10792:1 10795:1 10796:1 10797:1 10838:2 10874:1 10883:1 10888:1 10931:5 10947:1 10954:2 10966:2 10976:1 10980:1 10990:1 11020:2 11021:1 11027:1 11039:1 11063:1 11070:1 11101:1 11114:1 11115:1 11122:1 11125:1 11140:1 11150:1 11158:1 11159:4 11168:1 11175:1 11197:1 11213:2 11220:2 11241:1 11274:2 11278:1 11282:2 11291:2 11293:1 11298:2 11304:1 11307:2 11310:2 11312:2 11313:2 11326:1 11333:1 11341:1 11342:1 11346:1 11350:1 11373:8 11386:2 11390:1 11401:1 11403:3 11423:2 11442:3 11443:1 11451:1 11468:1 11472:1 11482:3 11483:1 11486:1 11493:2 11516:1 11536:1 11547:1 11554:1 11565:1 11567:1 11571:1 11579:1 11583:1 11584:1 11591:1 11594:1 11600:1 11601:3 11604:1 11608:4 11630:1 11689:1 11690:1 11691:1 11701:1 11706:1 11712:1 11717:2 11737:1 11746:4 11749:2 11769:2 11771:1 11785:1 11808:1 11809:2 11810:1 11834:1 11840:1 11850:7 11876:2 11888:1 11913:2 11921:1 11926:8 11937:2 11945:1 11959:2 11960:2 11961:2 11977:1 11994:1 12009:1 12015:1 12020:2 12024:1 12035:1 12040:1 12043:3 12048:1 12050:1 12097:1 12099:1 12100:1 12102:1 12119:1 12128:1 12134:1 12136:1 12149:1 12189:1 12205:1 12228:1 12230:1 12242:1 12270:1 12273:1 12275:2 12291:1 12296:2 12300:2 12312:1 12316:1 12323:1 12339:1 12341:1 12343:1 12349:1 12380:1 12408:1 12418:1 12420:2 12440:1 12442:2 12444:1 12457:3 12458:2 12474:1 12475:1 12476:1 12477:1 12486:1 12496:1 12497:2 12509:1 12510:2 12517:1 12520:1 12536:1 12562:2 12563:1 12570:3 12574:1 12596:1 12623:2 12632:1 12648:1 12654:1 12688:2 12690:1 12692:1 12705:2 12716:4 12722:1 12733:1 12735:1 12736:1 12744:1 12746:4 12756:1 12764:1 12774:1 12776:1 12784:1 12822:2 12825:1 12841:1 12843:1 12846:1 12860:1 12865:1 12888:1 12901:1 12915:1 12917:1 12922:1 12933:1 12934:1 12947:1 12960:1 12965:1 12973:1 12989:1 12997:1 13017:2 13022:1 13032:1 13041:1 13055:1 13068:2 13092:3 13116:1 13121:1 13151:2 13164:1 13167:1 13173:4 13178:1 13180:1 13182:3 13186:1 13187:1 13195:1 13205:1 13207:1 13213:1 13229:1 13234:1 13239:1 13240:1 13253:1 13256:1 13265:3 13269:2 13297:3 13298:1 13325:1 13351:3 13363:1 13376:1 13405:1 13408:1 13434:1 13439:1 13467:1 13475:1 13476:1 13481:1 13502:2 13511:2 13513:4 13516:1 13521:1 13528:1 13546:1 13554:1 13558:1 13561:1 13575:2 13581:3 13602:1 13604:1 13625:1 13626:4 13627:1 13637:1 13648:1 13650:1 13654:5 13658:2 13671:1 13674:1 13685:1 13688:1 13698:3 13708:1 13714:1 13728:3 13740:1 13746:1 13757:1 13765:1 13774:1 13778:2 13784:1 13786:1 13804:1 13806:1 13834:5 13844:3 13854:4 13864:1 13873:3 13890:1 13901:1 13914:1 13940:4 13954:1 13959:1 13967:1 13969:1 13977:1 13980:1 14011:1 14034:1 14036:1 14045:1 14056:1 14066:1 14067:1 14072:1 14101:1 14108:1 14117:1 14118:1 14119:1 14120:2 14122:1 14126:1 14129:2 14132:1 14157:1 14161:1 14174:1 14198:2 14206:1 14243:1 14266:1 14267:1 14275:1 14284:1 14291:1 14302:1 14311:1 14317:1 14328:1 14329:6 14350:1 14353:2 14356:2 14360:1 14371:2 14392:1 14393:1 14408:1 14428:1 14472:1 14500:1 14505:1 14520:2 14558:1 14584:1 14601:1 14603:1 14620:1 14623:3 14632:2 14682:1 14703:1 14719:1 14737:1 14755:1 14759:1 14764:1 14773:1 14783:1 14795:1 14807:1 14819:1 14821:10 14841:1 14846:2 14849:1 14850:2 14853:1 14858:2 14872:1 14879:2 14887:6 14898:1 14905:1 14910:1 14921:1 14923:1 14938:1 14976:2 14978:7 14992:1 14994:4 14996:1 15000:1 15025:1 15028:1 15039:2 15048:1 15054:2 15069:2 15075:6 15081:1 15090:3 15131:1 15135:2 15139:3 15148:1 15150:1 15161:1 15170:1 15183:1 15187:2 15218:1 15238:1 15243:4 15250:1 15263:1 15281:1 15291:1 15293:1 15314:1 15325:1 15346:1 15368:1 15373:1 15377:1 15384:1 15393:1 15401:2 15411:1 15415:1 15444:1 15450:2 15458:1 15477:1 15489:5 15496:3 15505:1 15516:1 15548:1 15583:1 15585:1 15590:1 15596:1 15601:2 15647:1 15657:1 15663:1 15668:2 15669:1 15674:2 15681:1 15699:1 15700:1 15702:1 15721:1 15759:1 15784:2 15800:1 15802:1 15805:2 15817:2 15826:1 15829:1 15840:1 15841:1 15853:3 15880:3 15899:2 15920:2 15948:1 15949:1 15958:1 15963:1 15996:1 16009:1 16011:1 16021:1 16025:1 16030:1 16039:1 16049:1 16087:2 16094:1 16097:1 16098:1 16102:1 16111:1 16113:1 16131:1 16155:1 16182:1 16191:1 16208:1 16209:1 16214:3 16227:2 16228:1 16251:2 16252:1 16257:1 16272:1 16274:1 16277:1 16287:1 16292:2 16294:1 16313:1 16321:1 16330:3 16336:2 16341:1 16347:1 16350:1 16352:3 16358:2 16371:1 16384:1 16391:1 16411:1 16426:2 16438:2 16460:1 16480:1 16487:1 16523:6 16528:2 16540:3 16543:1 16544:1 16548:9 16554:1 16601:2 16624:1 16681:1 16697:2 16701:2 16716:1 16738:1 16739:1 16752:2 16760:4 16766:1 16777:7 16793:3 16816:1 16818:1 16822:3 16824:1 16849:3 16866:1 16870:2 16872:2 16897:5 16916:7 16917:1 16940:1 16941:1 17001:1 17016:1 17023:1 17039:1 17054:3 17061:2 17070:1 17091:4 17093:1 17102:1 17111:1 17116:1 17117:2 17129:1 17148:2 17158:1 17180:1 17192:1 17207:2 17218:1 17256:1 17281:1 17282:1 17284:1 17290:1 17297:2 17314:1 17323:3 17331:3 17337:1 17343:2 17354:2 17376:1 17378:1 17388:1 17405:1 17408:2 17437:1 17461:1 17476:1 17483:1 17513:1 17516:1 17520:2 17525:6 17530:1 17538:1 17544:1 17565:1 17568:3 17580:1 17583:2 17618:1 17624:3 17691:1 17696:1 17700:1 17701:1 17716:2 17717:3 17733:4 17739:1 17753:1 17757:1 17770:1 17772:2 17773:1 17774:1 17778:2 17779:1 17787:1 17792:1 17795:2 17800:1 17804:4 17812:1 17843:1 17868:1 17871:2 17876:1 17877:2 17879:6 17899:1 17906:4 17921:1 17935:1 17947:1 17948:1 17964:1 17986:1 17988:1 17993:1 17997:2 18029:1 18031:1 18032:1 18041:7 18054:2 18055:1 18070:2 18071:3 18077:1 18089:1 18097:1 18098:1 18109:2 18121:1 18132:1 18147:1 18152:1 18156:5 18159:3 18164:1 18169:1 18182:1 18191:1 18218:1 18223:1 18306:1 18307:1 18334:1 18339:2 18345:1 18346:1 18355:1 18367:2 18376:1 18379:1 18382:1 18397:1 18410:3 18424:3 18429:2 18436:1 18445:8 18450:1 18453:1 18493:1 18494:1 18509:1 18537:1 18556:1 18562:1 18573:1 18582:1 18624:1 18634:1 18643:1 18650:1 18653:1 18677:1 18678:1 18687:1 18703:1 18706:1 18709:1 18723:1 18729:1 18737:1 18738:2 18742:1 18753:1 18754:1 18767:1 18774:6 18829:3 18836:1 18842:1 18880:3 18884:2 18897:2 18902:1 18920:1 18922:1 18931:1 18937:1 18943:3 18944:1 18945:1 18968:1 18970:1 18978:1 18994:2 19022:1 19030:1 19040:2 19041:1 19046:1 19058:1 19060:1 19067:1 19069:1 19095:1 19097:1 19117:1 19120:1 19121:1 19122:1 19154:1 19163:1 19224:1 19234:1 19288:2 19290:1 19292:1 19301:1 19302:1 19303:1 19322:1 19369:1 19372:1 19406:1 19413:1 19417:1 19421:1 19443:1 19467:1 19469:1 19473:2 19476:2 19477:1 19483:1 19485:1 19489:2 19490:1 19515:1 19526:3 19553:4 19555:3 19590:1 19594:1 19611:2 19614:1 19632:1 19635:1 19651:1 19657:3 19660:1 19665:4 19670:1 19677:1 19678:3 19692:1 19698:1 19710:2 19711:1 19722:1 19730:1 19732:1 19739:1 19757:1 19764:1 19766:1 19777:1 19798:1 19802:1 19803:5 19807:1 19809:1 19816:1 19837:1 19850:1 19872:1 19876:2 19884:2 19887:1 19899:1 19900:1 19950:1 19967:1 19970:1 19977:1 19980:1 20026:1 20034:2 20073:1 20074:1 20081:1 20111:1 20112:1 20126:1 20132:1 20137:1 20152:2 20174:1 20201:1 20203:1 20225:1 20230:1 20235:2 20269:1 20289:2 20306:1 20318:1 20333:1 20344:1 20352:1 20355:1 20358:1 20394:2 20401:1 20402:1 20403:1 20411:1 20413:1 20480:2 20492:2 20522:2 20531:3 20551:1 20589:1 20590:1 20601:1 20605:1 20610:1 20613:4 20624:1 20634:2 20641:1 20658:1 20661:1 20708:1 20712:2 20713:1 20714:1 20731:1 20732:1 20735:1 20753:2 20757:3683 20781:1 20793:1 20795:1 20831:1 20832:1 20860:1 20865:1 20875:2 20884:1 20886:1 20898:1 20912:2 20941:1 20950:1 20951:1 20963:1 20970:1 20975:1 20977:1 20978:1 20991:1 20996:1 20998:1 20999:1 21000:1 21002:1 21013:1 21049:2 21069:1 21073:1 21074:1 21092:1 21109:1 21111:1 21120:1 21121:1 21133:1 21136:1 21145:1 21154:1 21158:1 21167:1 21177:1 21190:1 21200:1 21212:2 21224:1 21225:1 21230:1 21233:2 21234:1 21241:1 21259:1 21262:4 21266:1 21330:1 21332:2 21336:1 21337:1 21351:1 21371:1 21374:1 21379:1 21389:1 21396:1 21414:1 21423:2 21435:1 21437:1 21438:1 21441:1 21454:1 21455:1 21472:1 21484:1 21503:1 21514:1 21521:9 21529:1 21544:2 21551:1 21553:6 21558:1 21565:1 21587:3 21596:1 21617:1 21643:2 21649:3 21657:1 21669:1 21688:1 21700:1 21710:1 21736:1 21737:4 21778:4 21783:1 21787:1 21806:2 21816:1 21831:1 21842:2 21873:1 21878:1 21885:1 21911:1 21915:2 21952:1 21974:1 21982:1 21988:1 21993:1 22007:1 22036:1 22042:1 22043:1 22049:1 22053:1 22056:1 22070:1 22075:1 22105:1 22157:1 22170:1 22178:1 22182:2 22188:1 22203:2 22204:1 22207:1 22230:1 22236:1 22251:1 22252:4 22266:1 22276:1 22277:1 22278:7 22299:3 22303:1 22305:1 22312:1 22320:2 22328:1 22331:1 22332:1 22350:1 22352:1 22361:1 22375:2 22377:4 22415:2 22419:1 22445:3 22448:1 22449:1 22460:1 22482:1 22483:1 22493:1 22499:1 22552:1 22563:1 22582:1 22655:4 22666:1 22683:1 22712:1 22719:2 22722:1 22775:1 22782:3 22784:1 22808:1 22813:1 22818:2 22819:3 22824:1 22828:1 22838:1 22848:1 22859:1 22865:1 22867:2 22872:1 22894:4 22897:2 22901:1 22903:1 22909:2 22912:1 22915:1 22918:1 22949:2 22951:1 22960:1 22963:1 22968:1 22974:1 22978:2 22986:1 22992:1 23000:1 23006:1 23016:1 23022:2 23039:1 23042:1 23068:2 23083:3 23112:1 23114:3 23116:1 23128:1 23133:1 23136:1 23145:1 23157:7 23163:3 23172:1 23173:1 23175:1 23183:1 23185:1 23192:2 23196:1 23198:5 23201:1 23202:1 23210:1 23213:3 23216:2 23222:1 23264:1 23285:1 23287:2 23291:6 23302:1 23315:1 23320:1 23322:3 23332:1 23337:2 23363:2 23387:1 23415:1 23421:1 23426:1 23427:1 23429:1 23430:1 23433:2 23435:1 23438:1 23453:3 23454:1 23455:1 23456:2 23472:1 23473:1 23478:2 23487:1 23541:2 23553:1 23555:1 23568:1 23570:1 23572:1 23574:1 23578:1 23600:5 23603:2 23605:1 23618:1 23620:1 23661:2 23684:3 23685:1 23700:1 23701:1 23702:2 23704:1 23725:1 23730:1 23734:1 23741:3 23743:1 23746:1 23754:1 23759:1 23774:1 23793:1 23797:1 23801:2 23804:1 23822:1 23834:2 23839:4 23853:1 23885:1 23892:1 23907:1 23926:1 23927:2 23930:1 23938:1 23945:2 23951:1 23958:2 23962:2 23973:1 23976:2 23986:1 23991:1 24000:1 24012:1 24026:1 24123:1 24131:2 24136:2 24139:2 24161:1 24162:2 24173:2 24174:1 24217:1 24224:1 24236:1 24280:1 24287:3 24300:2 24304:2 24305:3 24316:1 24322:3 24333:1 24340:1 24342:2 24355:3 24383:1 24384:1 24391:3 24394:1 24404:1 24414:1 24437:1 24441:2 24442:1 24443:1 24446:1 24467:3 24475:1 24507:1 24524:1 24525:1 24557:1 24559:1 24563:2 24575:2 24576:1 24590:1 24596:1 24606:2 24610:1 24614:1 24633:1 24662:1 24665:1 24671:1 24677:1 24700:1 24701:1 24702:1 24703:1 24704:1 24718:1 24738:2 24742:1 24755:4 24770:3 24776:2 24784:1 24787:2 24789:1 24790:1 24793:11 24797:1 24800:1 24805:1 24812:1 24819:1 24820:1 24839:1 24854:1 24858:1 24868:1 24870:1 24875:1 24876:1 24890:1 24896:1 24898:2 24931:1 24938:1 24965:1 24996:1 25007:1 25045:2 25046:1 25059:2 25069:2 25118:1 25121:1 25132:1 25133:1 25135:1 25154:1 25167:1 25172:1 25174:1 25188:1 25190:1 25215:1 25259:1 25275:1 25306:1 25319:1 25330:1 25356:2 25364:1 25365:2 25366:2 25383:1 25392:1 25401:1 25442:2 25458:1 25460:2 25466:1 25480:1 25481:2 25483:1 25485:1 25504:1 25559:1 25564:1 25583:1 25588:1 25591:1 25593:2 25605:1 25607:1 25615:1 25625:1 25634:1 25636:1 25664:1 25665:4 25668:1 25702:2 25718:2 25747:1 25750:1 25752:1 25770:2 25777:1 25784:3 25787:1 25792:1 25796:1 25803:1 25805:1 25806:1 25811:2 25812:1 25814:1 25815:1 25821:2 25838:1 25860:1 25862:2 25873:1 25876:2 25877:2 25883:2 25887:2 25895:1 25896:2 25898:1 25902:1 25905:1 25914:1 25935:3 25965:2 25968:1 25969:1 25991:2 26018:1 26038:1 26039:1 26044:1 26047:1 26054:1 26068:1 26113:1 26123:1 26128:1 26135:1 26146:1 26155:4 26157:1 26166:2 26173:1 26195:2 26211:2 26219:2 26256:1 26271:1 26273:2 26276:3 26277:1 26303:1 26320:1 26333:1 26339:2 26343:1 26360:1 26370:1 26371:1 26375:2 26384:2 26411:1 26427:2 26429:1 26435:1 26460:2 26472:1 26474:1 26494:1 26534:1 26574:1 26578:1 26598:1 26607:2 26623:1 26625:2 26639:1 26688:1 26700:1 26713:1 26716:1 26728:2 26729:1 26731:1 26735:1 26740:1 26758:1 26813:1 26817:2 26828:4 26838:1 26845:10 26848:1 26849:1 26852:1 26853:1 26861:1 26863:1 26870:1 26887:1 26912:2 26920:2 26921:1 26951:2 26955:1 26964:1 26977:1 26979:1 26994:2 26995:1 26998:3 27000:4 27007:1 27019:1 27020:1 27037:2 27040:2 27047:1 27048:1 27053:1 27071:1 27075:1 27093:1 27099:2 27112:1 27135:1 27140:1 27177:1 27190:2 27207:2 27209:3 27213:4 27217:1 27224:1 27241:1 27246:1 27252:3 27264:1 27277:1 27284:1 27292:1 27302:1 27328:2 27344:1 27365:1 27375:1 27412:1 27415:1 27422:2 27449:1 27457:5 27462:3 27470:1 27480:1 27487:1 27524:1 27539:1 27543:1 27563:2 27565:1 27590:1 27594:3 27600:2 27628:1 27635:1 27637:1 27640:1 27650:1 27663:1 27678:3 27689:2 27706:1 27717:1 27741:1 27750:1 27755:1 27775:1 27783:4 27799:5 27803:4 27804:1 27820:1 27821:1 27835:1 27845:1 27853:1 27874:1 27875:1 27876:3 27878:2 27879:2 27889:1 27903:1 27904:1 27940:1 27943:1 27952:1 27964:2 27965:1 27975:3 27978:3 27979:1 27985:1 27988:2 27992:1 27993:1 27994:1 28002:1 28006:1 28012:3 28019:1 28037:1 28047:1 28055:1 28061:3 28062:1 28072:3 28084:3 28086:1 28097:2 28100:1 28108:1 28130:1 28132:2 28139:1 28150:1 28157:1 28174:1 28175:1 28207:1 28208:1 28210:1 28224:1 28228:1 28229:1 28236:1 28240:1 28262:1 28275:1 28278:1 28281:1 28326:1 28344:3 28351:1 28374:2 28375:1 28377:2 28380:2 28384:1 28394:1 28397:1 28412:1 28424:1 28428:1 28442:1 28458:1 28488:1 28491:2 28507:1 28509:2 28511:1 28526:1 28528:1 28538:1 28540:1 28547:2 28551:1 28555:1 28562:1 28563:1 28571:1 28581:1 28587:3 28591:1 28593:1 28604:1 28620:1 28626:1 28628:1 28635:1 28638:4 28660:1 28670:3 28674:1 28689:1 28706:1 28720:4 28739:1 28745:2 28746:1 28766:1 28781:1 28792:2 28810:4 28827:3 28832:1 28841:1 28848:4 28854:1 28880:1 28887:1 28888:1 28941:1 28946:1 28992:1 28993:1 28994:1 29007:1 29027:2 29042:1 29048:1 29049:1 29051:1 29054:1 29059:1 29067:1 29095:1 29104:1 29115:1 29125:1 29126:1 29134:1 29139:4 29141:1 29145:3 29146:2 29176:1 29179:1 29198:1 29203:1 29209:1 29228:1 29248:1 29251:1 29254:1 29273:2 29275:1 29289:2 29296:3 29303:1 29312:1 29334:3 29356:2 29365:1 29372:1 29392:2 29411:1 29413:1 29433:2 29453:1 29455:2 29462:1 29463:1 29465:2 29472:1 29494:1 29509:1 29550:1 29587:1 29593:1 29600:1 29620:1 29627:1 29628:1 29633:1 29638:1 29640:1 29647:4 29653:1 29669:1 29678:2 29681:3 29702:1 29724:1 29727:2 29732:1 29733:1 29738:1 29740:1 29744:2 29745:1 29746:3 29756:1 29759:1 29760:5 29763:1 29770:5 29792:1 29822:1 29837:1 29853:1 29878:2 29883:1 29894:3 29899:2 29900:1 29905:2 29942:2 29947:1 29993:1 29995:2 30007:1 30012:2 30014:1 30016:2 30021:2 30042:1 30044:2 30052:1 30053:1 30057:2 30066:1 30075:1 30083:1 30085:1 30090:1 30092:1 30093:1 30095:1 30096:1 30101:1 30106:1 30133:1 30143:1 30148:1 30156:1 30160:2 30163:2 30169:1 30178:1 30186:2 30202:1 30203:1 30209:1 30210:2 30253:1 30262:1 30266:2 30269:1 30275:1 30280:1 30306:1 30309:1 30318:1 30322:1 30323:1 30333:1 30335:1 30345:2 30355:2 30359:1 30365:1 30390:2 30392:2 30396:1 30411:1 30413:1 30447:2 30475:1 30488:2 30505:1 30518:1 30533:2 30557:1 30559:1 30564:2 30571:1 30576:1 30577:1 30590:1 30622:1 30632:1 30642:1 30644:2 30648:1 30663:1 30675:2 30689:1 30692:1 30723:3 30727:1 30732:5 30752:1 30756:1 30763:1 30787:1 30799:1 30817:2 30820:1 30836:15 30837:1 30841:1 30860:1 30862:1 30879:6 30896:2 30906:1 30919:1 30944:1 30964:1 30985:2 31017:5 31020:1 31025:1 31034:1 31036:1 31057:6 31062:1 31063:1 31075:1 31077:1 31079:1 31080:1 31095:1 31112:1 31116:1 31118:1 31123:4 31126:1 31144:1 31156:2 31179:1 31188:2 31191:1 31209:2 31235:1 31256:1 31281:2 31286:2 31323:1 31330:1 31332:1 31335:1 31340:1 31342:1 31348:1 31360:1 31370:1 31379:1 31396:3 31398:1 31401:1 31402:1 31422:1 31434:1 31449:3 31452:1 31469:1 31476:1 31478:1 31486:1 31520:1 31567:3 31583:2 31593:3 31603:1 31606:1 31614:2 31624:4 31628:2 31635:1 31653:1 31659:1 31662:1 31681:1 31688:1 31716:1 31719:1 31725:1 31735:2 31739:1 31769:1 31807:1 31815:1 31819:1 31837:2 31849:1 31864:1 31876:1 31880:1 31896:2 31910:1 31933:1 31937:1 31941:1 31950:1 31959:1 31984:1 31991:1 31992:1 31994:1 32016:1 32017:1 32044:1 32066:2 32078:1 32080:2 32081:1 32105:1 32109:1 32120:3 32122:1 32138:1 32163:1 32214:1 32217:1 32221:1 32233:1 32235:1 32243:3 32244:1 32245:3 32246:1 32248:1 32249:1 32250:2 32254:2 32257:3 32258:2 32261:2 32265:1 32266:2 32267:1 32277:1 32278:1 32298:2 32303:1 32306:1 32320:1 32324:1 32333:2 32337:1 32343:1 32350:1 32374:1 32378:1 32382:1
|
8a205a6af81b26ab84cc6c9db06a741582a5418a
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3821/CH11/EX11.6/Example11_6.sce
|
1c52df746f573bca2ce7e3c4eacf7aa972e3fa30
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 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,233 |
sce
|
Example11_6.sce
|
///Chapter No 11 Steam Boilers
////Example 11.6 Page No 233
///Enthalpy of superheated steam
//Input data
clc;
clear;
ms=6000; //Boiler produce of steam Kg/h
P=25; //Boiler pressure in bar
Tsup=350; //Boiler temperature in degree celsius
Tw=40; //Feed water temperature indegree celsius
CV=42000; //Calorific value in Kj/Kg
etaboiler=75/100; //Expected thermal efficiency in %
//Calculation
hfw=167.45; //In KJ/Kg
Ts=223.94; //In degree celsius
hf=961.96; //In KJ/Kg
hfg=1839.0; //In KJ/Kg
hg=2800.9; //In KJ/Kg
Cps=2.3;
hs=((hg)+(Cps)*(Tsup-Ts)); //Enthalpy of superheated steam KJ/Kg
mf=((ms*(hs-hfw))/(CV*etaboiler)); //Boiler efficiency in %
me=ms/mf; //Equivalent mass of evaporation
E=((me*(hs-hfw))/2257); //Equivalent evaporation in Kg/Kg of oil
//Output
printf('Enthalpy of superheated steam=%f KJ/Kg \n',hs);
printf('Boiler efficiency=%f percent \n',mf);
printf('Equivalent mass of evaporation=%f \n',me);
printf('Equivalent evaporation=%fKg/Kg of oil \n' ,E);
|
0e39a30be35be0fd68dfc250c43db281100f421b
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1026/CH8/EX8.12/Example8_12.sce
|
e54fc348a8aa5437af1188175d224397d2c10a8c
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 322 |
sce
|
Example8_12.sce
|
//chapter8,Example8_12,pg 193
//for brightest spot R1=sqrt(b*lam)
R1=0.05
lam=5*10^-5
bb=(R1^2)/lam//brightest spot
//for darkest spot
bd=(R1^2)/(2*lam)//darkest spot
printf("position of brightest spot\n")
printf("b=%.2f cm",bb)
printf("\nposition of darkest spot\n")
printf("b=%.2f cm",bd)
|
d179cf41537dd7ac6f9d2017976547d1f928db65
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/965/CH7/EX7.7/7.sci
|
2e980919fc857e330edcfb4e10cc3c98a9da6c95
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 707 |
sci
|
7.sci
|
clc;
clear all;
disp("Boundary layer thickness")
x=1.2;//m distance from the leading edge of plate
v=15.4*10^(-6);//m^2/s kinematic viscocity
U=2.8;//m/s velocity of air
Re=U*x/v;// Reynold's number
disp("Blasius solution")
delta1=5*x*1000/(Re)^0.5;//mm
disp("mm",delta1,"Maximum thickness of boundary layer =")
Cfx1=0.664/(Re)^0.5;
disp(Cfx1,"drag coefficient =")
disp("Approximate solution")
delta2=4.64*x*1000/(Re)^0.5;//mm
disp("mm",delta2,"Maximum thickness of boundary layer =")
Cfx2=0.646/(Re)^0.5;
disp(Cfx2,"drag coefficient =")
e1=(1-delta2/delta1)*100;
disp("%",e1,"Deviation for delta =")
e2=(1-Cfx2/Cfx1)*100;
disp("%",e2,"Deviation for Drag coefficient =")
|
4186f1f2447805138b95358f58cb63ec506705ef
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3808/CH1/EX1.7/Ex1_7.sce
|
681c15a5e9cde1201ebc6cf7ace8d63c42bf80d5
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 301 |
sce
|
Ex1_7.sce
|
//Chapter 01: The Foundations: Logic and Proofs
clc;
clear;
p="Maria learns discrete mathematics"
q="Maria will find a good job"
mprintf("Let p=%s \n Let q=%s",p,q)
mprintf("\np->q is : If %s then %s",p,q) //p->q p implies q means If p then q.
mprintf("\np->q is also expressed as :%s when %s",q,p)
|
0e677fb642855e28d69f5244acc0f4babd367977
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3864/CH6/EX6.5/Ex6_5.sce
|
0ee4239e2daf0c11f441797e8f968546d8041eb5
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 540 |
sce
|
Ex6_5.sce
|
clear
//
//
//Initilization of Variables
L=6000 //mm //Length of circular shaft
d1=100 //mm //Outer Diameter
d2=75 //mm //Inner Diameter
R=100*2**-1 //Radius of shaft
T=10*10**6 //N-mm //Torsional moment
G=80*10**3 //N/mm**2 //Modulus of Rigidity
//Calculations
J=%pi*32**-1*(d1**4-d2**4) //mm**4 //Polar Modulus
//Max Shear stress produced
q_s=T*R*J**-1 //N/mm**2
//Angle of twist
theta=T*L*(G*J)**-1 //Radian
//Result
printf("\n MAx shear stress produced is %0.2f N/mm**2",q_s)
printf("\n Angle of Twist is %0.2f Radian",theta)
|
fd66dbadfdea9e0279358af27886adb4c2d428d9
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1808/CH3/EX3.18/Chapter3_Exampl18.sce
|
e91c3483e08fabc00798d715db1ab31f81a730f7
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 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,277 |
sce
|
Chapter3_Exampl18.sce
|
clc
clear
//INPUT DATA
p1=101.325;//Pressure in kN/m^2
t1=303;//Temperature in K
g=1.4;//constant
cp=1.005;//specific pressure in kJ/kgK
cv=0.718;//specific volume in kJ/kgK
R=0.287;//gas constant in kJ/kgK
r=2.5;//cut off ratio
v2=0.1;//clearance volume in m^3/kg
//CALCULATIONS
v1=R*t1/p1;//volume at state 1 in m^3/kg
p2=p1*((v1/v2)^(g));//pressure at state 2 in kN/m^2
t2=t1*((v1/v2));//temperature at state 2 in K
v3=r*v2;//volume at state 3 in m^3/kg
t3=t2*(v3/v2);//Temperature at state 3 in K
t4=t3*((v3/v1)^(g-1));//Temperature at state 4 in K
p4=p2*((v3/v1)^g);//Pressure at state 4 in kN/m^2
c=(v2/(v1-v2))*100;//percentage clearance
Qs=cp*(t3-t2);//heat added in kJ/kg
Qr=cv*(t4-t1);//heat rejected in kJ/kg
nd=((Qs-Qr)/Qs)*100;//Thermal efficiency in percentage
pm=((Qs-Qr)/(v1-v2));//Mean effective pressure in kN/m^2
//OUTPUT
printf('(a)pressure at state 2 is %3.2f kN/m^2 \n temperature at state 2 is %3.2f K \n volume at state 3 is %3.2f m^3/kg\n Temperature at state 3 is %3.2f K \n Temperature at state 4 is %3.2f K \n Pressure at state 4 is %3.2f kN/m^2 \n (b)percentage clearance is %3.2f percentage \n(c)Thermal efficiency is %3.2f percentage \n (d)Mean effective pressure is %3.2f kN/m^2',p2,t2,v3,t3,t4,p4,c,nd,pm)
|
56c02005239e276c1bdec6d6350e579b05c22ce8
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2175/CH14/EX14.1/14_1.sce
|
c1bcbce8da46bd23c48ac27082f1f87184cbde63
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 175 |
sce
|
14_1.sce
|
clc;
T1=-30+273;//K
T2=32+273;//K
COP=T1/(T2-T1);
eff=0.75;
acctual_COP=eff*(COP);
Q=5;//kW
W=Q/acctual_COP;
disp("required powar input is:");
disp("kW",W);
|
a5a815976d9aae7e0f35063e42a521ad8c96a5bf
|
3a11df70b5f5b856da599098aa46b015099f34e9
|
/logic_gates/Mux4Way16.tst
|
2fead855e1a2efbd0a8ec8ca68dfd9ee3cb634c9
|
[] |
no_license
|
nkyorov/logic-gates-hdl
|
7da52af49a0c333e3f755a9ec552746662580cd3
|
1deff96f5a6631ce7c5b7ea2db8a7250f2d37908
|
refs/heads/master
| 2021-04-27T00:46:58.298377 | 2019-05-25T12:32:09 | 2019-05-25T12:32:09 | 122,660,544 | 3 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 497 |
tst
|
Mux4Way16.tst
|
load Mux4Way16.hdl,
output-file Mux4Way16.out,
compare-to Mux4Way16.cmp,
output-list w%B1.16.1 x%B1.16.1 y%B1.16.1 z%B1.16.1 sel%B2.2.2 out%B1.16.1;
set w 0,
set x 0,
set y 0,
set z 0,
set sel 0,
eval,
output;
set sel 1,
eval,
output;
set sel 2,
eval,
output;
set sel 3,
eval,
output;
set w %B0001001000110100,
set x %B1001100001110110,
set y %B1010101010101010,
set z %B0101010101010101,
set sel 0,
eval,
output;
set sel 1,
eval,
output;
set sel 2,
eval,
output;
set sel 3,
eval,
output;
|
036d2c4e1ceda7b54d737ce555c39bed158ce597
|
ebd6f68d47e192da7f81c528312358cfe8052c8d
|
/swig/Examples/test-suite/scilab/scilab_multivalue_runme.sci
|
581890408fbba29362cc919a210505e085c526f2
|
[
"LicenseRef-scancode-swig",
"GPL-3.0-or-later",
"LicenseRef-scancode-unknown-license-reference",
"GPL-3.0-only",
"Apache-2.0"
] |
permissive
|
inishchith/DeepSpeech
|
965ad34d69eb4d150ddf996d30d02a1b29c97d25
|
dcb7c716bc794d7690d96ed40179ed1996968a41
|
refs/heads/master
| 2021-01-16T16:16:05.282278 | 2020-05-19T08:00:33 | 2020-05-19T08:00:33 | 243,180,319 | 1 | 0 |
Apache-2.0
| 2020-02-26T05:54:51 | 2020-02-26T05:54:50 | null |
UTF-8
|
Scilab
| false | false | 3,271 |
sci
|
scilab_multivalue_runme.sci
|
exec("swigtest.start", -1);
// OUTPUT
[a, b] = output2();
checkequal(a, 1, "[a, b] = output2(): a");
checkequal(b, 2, "[a, b] = output2(): b");
[ret, a, b] = output2Ret();
checkequal(ret, 3, "[a, b] = output2Ret(): b");
checkequal(a, 1, "[a, b] = output2Ret(): a");
checkequal(b, 2, "[a, b] = output2Ret(): b");
[c, d] = output2Input2(1, 2);
checkequal(c, 2, "[c, d] = output2Input2(1, 2): c");
checkequal(d, 4, "[c, d] = output2Input2(1, 2): d");
[ret, c, d] = output2Input2Ret(1, 2);
checkequal(ret, 6, "[ret, c, d] = output2Input2Ret(1, 2): ret");
checkequal(c, 2, "[ret, c, d] = output2Input2Ret(1, 2): c");
checkequal(d, 4, "[ret, c, d = output2Input2Ret(1, 2): d");
[ret, a, b, c] = output3Input1Ret(10);
checkequal(ret, 10, "[ret, a, b, c] = output3Input1Ret(10): ret");
checkequal(a, 11, "[ret, a, b, c] = output3Input1Ret(10): a");
checkequal(b, 12, "[ret, a, b, c] = output3Input1Ret(10): b");
checkequal(c, 13, "[ret, a, b, c] = output3Input1Ret(10): c");
[ret, a, b, c] = output3Input3Ret(10, 20, 30);
checkequal(ret, 66, "[ret, a, b, c] = output3Input1Ret(10, 20, 30): ret");
checkequal(a, 11, "[ret, a, b, c] = output3Input1Ret(10, 20, 30): a");
checkequal(b, 22, "[ret, a, b, c] = output3Input1Ret(10, 20, 30): b");
checkequal(c, 33, "[ret, a, b, c] = output3Input1Ret(10, 20, 30): c");
// INOUT
[a, b] = inout2(1, 2);
checkequal(a, 2, "[a, b] = output2(1, 2): a");
checkequal(b, 4, "[a, b] = output2(1, 2): b");
[ret, a, b] = inout2Ret(1, 2);
checkequal(ret, 6, "[a, b] = inout2Ret(1, 2): b");
checkequal(a, 2, "[a, b] = inout2Ret(1, 2): a");
checkequal(b, 4, "[a, b] = inout2Ret(1, 2): b");
[c, d] = inout2Input2(1, 2, 1, 1);
checkequal(c, 2, "[c, d] = inout2Input2(1, 2): c");
checkequal(d, 3, "[c, d] = inout2Input2(1, 2): d");
[ret, c, d] = inout2Input2Ret(1, 2, 1, 1);
checkequal(ret, 5, "[c, d] = inout2Input2Ret(1, 2): ret");
checkequal(c, 2, "[c, d] = inout2Input2Ret(1, 2): c");
checkequal(d, 3, "[c, d] = inout2Input2Ret(1, 4): d");
[ret, a, b, c] = inout3Input1Ret(10, 1, 2, 3);
checkequal(ret, 10, "[ret, a, b, c] = output3Input1Ret(ret, 1, 2, 3): ret");
checkequal(a, 11, "[ret, a, b, c] = output3Input1Ret(ret, 1, 2, 3): a");
checkequal(b, 12, "[ret, a, b, c] = output3Input1Ret(ret, 1, 2, 3): b");
checkequal(c, 13, "[ret, a, b, c] = output3Input1Ret(ret, 1, 2, 3): c");
[ret, a, b, c] = inout3Input3Ret(10, 1, 20, 2, 30, 3);
checkequal(ret, 66, "[ret, a, b, c] = output3Input1Ret(10, 20, 30): ret");
checkequal(a, 11, "[ret, a, b, c] = inout3Input1Ret(10, 1, 20, 2, 30, 3): a");
checkequal(b, 22, "[ret, a, b, c] = inout3Input1Ret(10, 1, 20, 2, 30, 3): b");
checkequal(c, 33, "[ret, a, b, c] = inout3Input1Ret(10, 1, 20, 2, 30, 3): c");
// CLASS
a = new_ClassA();
[ret, c, d] = ClassA_output2Input2Ret(a, 1, 2);
checkequal(ret, 6, "[ret, c, d] = ClassA_output2Input2Ret(a, 1, 2): ret");
checkequal(c, 2, "[c, d] = ClassA_output2Input2Ret(a, 1, 2): c");
checkequal(d, 4, "[c, d] = ClassA_output2Input2Ret(a, 1, 2): d");
[ret, c, d] = ClassA_inout2Input2Ret(a, 1, 2, 1, 1);
checkequal(ret, 5, "[ret, c, d] = ClassA_inout2Input2Ret(a, 1, 2): ret");
checkequal(c, 2, "[c, d] = ClassA_inout2Input2(a, 1, 2): c");
checkequal(d, 3, "[c, d] = ClassA_inout2Input2(a, 1, 2): d");
delete_ClassA(a);
exec("swigtest.quit", -1);
|
2b9187bb20584bb5efce573113770fcc56cb7f8c
|
8217f7986187902617ad1bf89cb789618a90dd0a
|
/source/2.3/macros/xdess/fcontour2d.sci
|
dcc5f0671b0c9b0a8ecc24f0802de795cfba1ec7
|
[
"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 | 801 |
sci
|
fcontour2d.sci
|
function fcontour2d(xr,yr,f,nz,style,strf,leg,rect,nax)
// deff('[z]=surf(x,y)','z=x**2+y**2');
// fcontour(surf,-1:0.1:1,-1:0.1:1,10);
//
//!
[lhs,rhs]=argn(0);
if rhs=0,s_mat=['deff(''[z]=surf(x,y)'',''z=x**3+y'');';
'fcontour2d(-1:0.1:1,-1:0.1:1,surf,10,1:10,'"011"','" "',[-1,-1,1,1]*1.5);'];
write(%io(2),s_mat);execstr(s_mat);
return;end;
if rhs<3,write(%io(2),[' I need at least 3 arguments';
'or zero to have a demo']);
return;end
if rhs<4,nz=10,end;
if rhs < 5,if prod(size(nz))=1 ; style=1:nz;else style=1:prod(size(nz)),end;end
if rhs < 6,strf="021",end
if rhs < 7,leg=" ",end
if rhs < 8,rect=[0,0,10,10],end
if rhs < 9,nax=[2,10,2,10],end
if type(f)=11 then comp(f),end;
contour2d(xr,yr,feval(xr,yr,f),nz,style,strf,leg,rect,nax)
|
832dafe5c0a716b41feaeec288337e03a9b732c4
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/635/CH17/EX17.2/Ch17Ex2.sci
|
b62fbf37c6e03fee6a6585face5833f2c675c633
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 886 |
sci
|
Ch17Ex2.sci
|
// Scilab Code Ex17.2 Variation of critical magnetic field with temperature for tin Page-537 (2010)
T_c = 3.69; // Critical temperature of superconducting transition, kelvin
B_c0 = 3e+5/(4*%pi); // Critical magnetic field intensity to destroy superconductivity at zero kelvin, tesla
B_cT = 2e+5/(4*%pi); // Critical magnetic field at temperature T kelvin
// T = 2; // Temperature at which critical magnetic field is to be found out, kelvin
// since B_cT = B_c0*(1-(T/T_c)^2); // Critical magnetic field intensity as a function of temperature
// Solving for T
T = sqrt(1-B_cT/B_c0)*T_c; // Temperature at which critical magnetic field becomes B_cT, kelvin
printf("\nThe temperature at which critical magnetic field becomes %4.2e T = %4.2f K",B_cT,T); // Display result
// Result
// The temperature at which critical magnetic field becomes 1.59e+04 T = 2.13 K
|
6ce9e2521f75ec24169c9bd6be97a97f62b6d751
|
37ecd78225875673db86fad4abb97404437eb339
|
/Gauss_Seidel.sce
|
df8786aca887eacdb2b7f18de467eed64bc23a75
|
[] |
no_license
|
andreviniciusmb/Calculo_Numerico
|
4a856ffb3887e447dcbd6d39a1b12218e38dc088
|
316a4c29686fd40b25a6353e404d7b1455b2d507
|
refs/heads/master
| 2022-04-20T13:55:09.969949 | 2020-04-15T19:17:39 | 2020-04-15T19:17:39 | 255,652,623 | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 1,376 |
sce
|
Gauss_Seidel.sce
|
// Método iterativo para resolução de sistemas de equações lineares
// Precisa de um chute inicial
function x = Gauss_Seidel(a,b,x0,N,tol)
n = size(a,1)
x = zeros(n,1)
sol = %F
for iteracao = 1:N
for i = 1:n
soma=0
for j = 1:i-1
soma = soma + a(i,j)*x(j)
end
for j = i+1:n
soma = soma + a(i,j)*x0(j)
end
x(i) = (b(i) - soma)/a(i,i)
end
if abs(x-x0) <= tol then
disp('Num de iteracoes: ')
disp(iteracao)
sol = %T
break
end
x0 = x
end
if sol == %F then
disp('Num de iteracoes: ')
disp(iteracao)
disp('Nao achou uma solucao aceitavel!!!')
end
endfunction
function x = Convergencia(a)
n = size(a,1)
cont=0
for i = 1:n
soma = 0
for j = 1:n
soma = soma + abs(a(i,j))
end
m = soma-abs(a(i,i))
disp(m)
if m <= abs(a(i,i)) then
cont = cont+1
end
end
if cont == n then
x = 1
else
x = 0
end
endfunction
a = [255 128 173;192 128 216;203 128 230]
b = [64;224;208]
x0 = [0.5; 0.5; 0.5]
s = Gauss_Seidel(a,b,x0,100,0.00001)
disp("Gauss-Seidel: ")
disp(s)
|
62e7db350466b91f20b7688a114efd4d50da45d3
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1109/CH13/EX13.4/13_4.sce
|
07f898aafe9b806488fdf0a04603a2ffdb896633
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 363 |
sce
|
13_4.sce
|
clear;
clc;
z11=10;z22=12;z12=5;z21=5;
deltaz=(z11*z22)-(z12*z21);
y11=z22/deltaz;
printf("The y-parameters are:\n");
printf("-y11 = %f mho\n",round(y11*10^4)/10^4);
y22=z11/deltaz;
printf("-y22 = %f mho\n",round(y22*10^4)/10^4);
y12=-z12/deltaz;
printf("-y12 = %f mho\n",round(y12*10^3)/10^3);
y21=y12;
printf("-y21 = %f mho",round(y21*10^3)/10^3);
|
442b3708fcb1bcbb714aa45f8ffacc5ce6c040bf
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1538/CH21/EX21.8/Ex21_8.sce
|
aa35f92ac848d4d343ff57236f1cd6391e40e661
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 469 |
sce
|
Ex21_8.sce
|
//example-21.8
//page no-634
//given
//frequency
f=50 //Hz
//mass
m=50 //kg
//density
rho=7500 //kg/m^3
//volume of material
V=m/rho //m^3
//hysteresis loop area
A=150 //m^2
//scale factor
//1 cm=0.008 Wb/m^2 on y-axis and 1cm=20 A/m on x-axis
//energy lost during each cycle
E=A*0.008*20*10^4 //J/m^3
//poer loss due to hysteresis
P=E*f*V //J/s
//energy lost in one hour
Wh=P*(60*60) //J
printf ("the energy lost in one hour is %e J",Wh)
|
8083ee7d20644e9d5e2de2cb34cc2f5cfbdb0e1f
|
9be14f9dc9e5806891ba48b7066c43dd043ac276
|
/src/test/resources/include.tst
|
60a0ec881f735a9d0d31b8889b1c3cafe5a972a2
|
[
"Apache-2.0"
] |
permissive
|
nhsdigitalmait/TKW-x
|
58c001ed684a2b7471039febed0f393fc8b953c2
|
7e90cb035cd65464d42085870ce45a6aeeef53e1
|
refs/heads/master
| 2022-11-23T14:38:47.421837 | 2022-11-22T08:45:48 | 2022-11-22T08:45:48 | 232,580,623 | 0 | 1 |
Apache-2.0
| 2022-01-12T15:57:29 | 2020-01-08T14:22:29 |
Java
|
UTF-8
|
Scilab
| false | false | 425 |
tst
|
include.tst
|
BEGIN MESSAGES
DE_EMPPID_included USING DE_EMPPID_included_urn:nhs-itk:services:201005:SendCDADocument-v2-0_template WITH NULL SOAPWRAP SOAPACTION urn:nhs-itk:services:201005:SendCDADocument-v2-0
END MESSAGES
BEGIN TEMPLATES
DE_EMPPID_included_urn:nhs-itk:services:201005:SendCDADocument-v2-0_template TKW_ROOT/contrib/ITK_2_01_Test_Messages/Correspondence/Ambulance/POCD_MT030001UK01_SOAPandDIST_Primary.xml
END TEMPLATES
|
b5bc82c2bbfe502c00adda6ec3694a5f2768af98
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2144/CH6/EX6.22/ex6_22.sce
|
44b08cba5c55a8e6acf3289d4e6077aef311744d
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 320 |
sce
|
ex6_22.sce
|
// Exa 6.22
clc;
clear;
close;
// Given data
T = 20;// in degree C
H1 = 3039;// Enthalpy in kJ/kg
H2 = 2725;// Enthalpy of 1kg dry saturated steam
H_sup = H1-H2;// superheat of 1kg of steam in kJ/kg
H= 2621.4;// heat required for 1kg or water in kJ
m = H_sup/H;// in kg
disp(m,"Quantity of water in kg is");
|
85cec922414c1b9ec1fa53ce936ffc74941f7545
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1970/CH11/EX11.12/CH11Exa12.sce
|
352b88e906a713cf155226e4762afddb3a927a51
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 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,357 |
sce
|
CH11Exa12.sce
|
// Scilab code Exa11.12 : : Page-539 (2011)
clc; clear;
e = 1.6e-19; // Charge of an electron, C
R = 9.144; // Radius, metre
m_p = 1.67e-027; // Mass of the proton, Kg
E = 3.6*1.6e-13; // Energy, joule
L = 3.048; // Length of the one synchrotron section, metre
T = 3; // Kinetic energy, giga electron volts
c = 3e+08; // Velocity of the light, metre per sec
m_0_c_sq = 0.938; // Relativistic energy, mega electron volts
B = round (sqrt(2*m_p*E)/(R*e)*10^4); // Maximum magnetic field density, web per square metre
v = B*10^-4*e*R/m_p; // Velocity of the proton, metre per sec
f_c = v/(2*%pi*R*10^6); // Frequency of the circular orbit, mega cycles per sec
f_0 = 2*%pi*R*f_c*10^3/(2*%pi*R+4*L); // Reduced frequency, kilo cycles per sec
B_m = 3.33*sqrt(T*(T+2*m_0_c_sq))/R; // Relativistic field, web per square metre
f_0 = c^2*e*R*B*1e-004/((2*%pi*R+4*L)*(T+m_0_c_sq)*e*1e+015); // Maximum frequency of the accelerating voltage, mega cycles per sec
printf("\nThe maximum magnetic flux density = %5.3f weber/Sq.m\nThe maximum frequency of the accelerating voltage = %4.2f MHz", B_m, f_0);
// Result
// The maximum magnetic flux density = 1.393 weber/Sq.m
// The maximum frequency of the accelerating voltage = 0.09 MHz
// Answer is given wrongly in the textbook
|
2816afd2212fb4c7acc1ebef99cef0ee5162423b
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1946/CH4/EX4.26/Ex_4_26.sce
|
6f45c2396d2e7dc738f40f3cbcf68b2612eadf10
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 466 |
sce
|
Ex_4_26.sce
|
// Example 4.26;//Bifringence and differnce between the propogation constt.
clc;
clear;
close;
Lb=0.05;//Birefringent Coherence over length in meter
h=0.5;//wavelength in micro meter
df=1;//spectral width in nano meter
Bf=((h*10^-6)/(Lb));//modal bifringence
Lbc= (((h*10^-6)^2)/(Bf*df*10^-9));//COHERENCE LENGTHnin meter
Bxy=(2*%pi)/(Lb);//Diff in the propogation constant
disp(Bf,"modal bifringence is")
disp(Bxy,"Diff in the propgation constt. is")
|
fb3642ee66988e45bb2721db42f00721340a6060
|
8ea401b354e99fe129b2961e8ee6f780dedb12bd
|
/macros/qcut.sci
|
448b90a70ed049b49e971a61f0148ec9c45ce67d
|
[
"BSD-2-Clause"
] |
permissive
|
adityadhinavahi/SciPandas
|
91340ca30e7b4a0d76102a6622c97733a28923eb
|
b78b7571652acf527f877d9f1ce18115f327fa18
|
refs/heads/master
| 2022-12-20T04:04:35.984747 | 2020-08-19T16:10:51 | 2020-08-19T16:10:51 | 288,765,541 | 0 | 1 | null | 2020-08-19T15:35:04 | 2020-08-19T15:14:46 |
Python
|
UTF-8
|
Scilab
| false | false | 646 |
sci
|
qcut.sci
|
function [df] = qcut()
// Calls and initializes qcut function
//
// Syntax
// df = qcut()
//
// Parameters
//df: qcut input
//
// Description
//The pandas documentation describes qcut as a “Quantile-based discretization function.” This basically means that qcut tries to divide up the underlying data into equal sized bins. The function defines the bins using percentiles based on the distribution of the data, not the actual numeric edges of the bins.
// Examples
// //Constructing qcut from a dictionary.
//df = pd_f.cut("+c_str+")
// Authors
// Aditya Dhinavahi
// Sundeep Akella
endfunction
|
0eabc913655231a6ddcbef66964f78da0f755e31
|
e92ffce12946910722c41f18550efb004a55e55c
|
/apps/domaci1/testalt.tst
|
2199587f932722ccd9482e26e89f659ed42739e0
|
[] |
no_license
|
brapej/d1_branislav_pejic_rm4816
|
0fa17fb5d56cd12275bcb81029fa534eb5e19215
|
9d6c7e1c34c5ae240f5ca7b0eb4247ef83b744f5
|
refs/heads/master
| 2022-10-27T10:27:49.669347 | 2020-06-18T09:43:54 | 2020-06-18T09:43:54 | 180,431,976 | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 150 |
tst
|
testalt.tst
|
202
0
1
302
202
2
3
302
202
4
5
302
202
6
7
302
202
8
9
302
202
10
302
201
202
0
1
302
202
2
3
302
202
4
5
302
202
6
7
302
202
8
9
302
202
10
302
400
|
875019c70820688edc2361ad1ac355e982c35ee9
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1976/CH7/EX7.7/Ex7_7.sce
|
e60df8902f28f388b914b98d56be46380cf5b497
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 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,355 |
sce
|
Ex7_7.sce
|
//To determine the specific energy consumption
//Page 376
clc;
clear;
W=400;
G=1;
a=1.5; //Acceleration
Ta=30; //Acceleration Time
Tf=36; //Free running Period
Tc=25; //Coasting Period
B=2.6;
r=45;
RI=10/100; //Rotational Inertia Effect
Eff=75/100; // Overall Efficieny
g=9.81; //Accleration due to gravity
Vm=Ta*a;
We=W*(1+RI);
//Distance Covered is equal to the area under the speed time curve
Da=Vm*Ta/(2*3600); //Acceleration
Df=Vm*Tf/3600; //Free Run
Ftf=W*(r+(10*g*G)); //Tractive effort during free run period
Fta=We*277.8; //Tractive effort due to acceleration
//During Coasting, The Accelrating force is equal to Tractive effort during free run
//Retardation due to coasting is
Bc=Ftf/Fta;
V2=Vm-(Bc*Tc); //Speed of train after the coasting period
Tb=V2/B; // Braking period
Dc=((((Vm-V2)*Tc)/2)+(V2*Tc))/3600; //Distance covered during coasting
Db=V2*Tb/(2*3600); //Distance covered during braking
D=Da+Df+Dc+Db; //Total Distance
D1=Da+Df; //Distance for which the energy is being spent
SEO=(0.010726*(Vm^2)*We/(W*D))+(27.25*G*D1/D)+(0.2778*r*D1/D); //Specific Energy Output
//Note the Calculated Specific Energy Output during accleration is wrong.
SEOa=SEO/Eff; //Actual Specific Energy Output with 75% efficieny
printf('The Specific Energy Consumption is %g Whr/Tonne Km\n',SEOa)
|
e6f3356584e095482aa1566ee7dba98208f253ac
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1985/CH11/EX11.4/Chapter11_Example4.sce
|
23477624e347cf888fa43f3f6fbed5ab986d59bb
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 644 |
sce
|
Chapter11_Example4.sce
|
clc
clear
//Input data
V=24800//Potential difference applied in V
n=1//Order of diffraction
l=1.54*10^-10//Wavelength of X-ray beam in m
q=15.8//Glancing angle in degrees
//Calculations
d=((n*l)/(2*sind(q)))/10^-10//Interplanar spacing in m
lmin=12400/V//Minimum wavelength of X-rays emitted in angstroms
q=asind((n*lmin*10^-10)/(2*d*10^-10))//Glancing angle for minimum wavelength in degrees
qx=(q-int(q))*60//For output
qy=(qx-int(qx))*60//For output
//Output
printf('The grating spaing for NaCl crystal is %3.3f angstroms \n Glancing angle for minimum wavelength is %3.0f degrees %3.0f minutes %3.0f seconds',d,q,qx,qy)
|
8a9f81f37820c1698e8f2706d04ddc2ffcc8e66c
|
178822612bcd418dc12ba7a649304a24ab618d60
|
/Numerical Analysis/Exercise_2.sci
|
e2d6a98dc0e115006c0b4ad6666cdced3b0dae1b
|
[] |
no_license
|
engom/Math_Problem_Solving
|
b56c6cbfbff6c416c519795b9ab8f0c0bbba5ea3
|
6538c476681ae4ee803ea9b3a8944c5f370e1961
|
refs/heads/master
| 2022-05-25T01:13:16.123161 | 2016-02-13T11:32:28 | 2016-02-13T11:32:28 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 596 |
sci
|
Exercise_2.sci
|
function [h,x]= meshe(a,b,N)
h = (b-a)/N;
for i=1:N+1
x(i) = a +(i-1);
end
endfunction
function [y]=f(x)
y = x^3-3*x^2+2;
endfunction
function [E,Iapp] = trapezoid(a,b,N,Iex)
[h,x] = meshe(a,b,N);
Iapp = 0;
for k=1:N
Iapp = Iapp + (f(x(k)) + f(x(k+1)));
end
Iapp = (Iapp*h)/2
E = abs(Iex - Iapp);
endfunction
function [E,Iapp] = Simpson(a,b,N,Iex)
[h,x] = meshe(a,b,N);
Iapp = 0;
for k=1:N
Iapp = Iapp + (f(x(k)) + f(x(k+1)) + 4*f((x(k)+x(k+1))/2));
end
Iapp = (Iapp*h)/6
E = abs(Iex - Iapp);
endfunction
|
c6f80fef90e893042f8744b4385328ea0f451514
|
4bbc2bd7e905b75d38d36d8eefdf3e34ba805727
|
/ee_scicoslab/scicos_flex/dspic/SMCube/win_loader.sce
|
d961702f549e2c9ff346da2d0d8eddcc619d1167
|
[] |
no_license
|
mannychang/erika2_Scicos-FLEX
|
397be88001bdef59c0515652a365dbd645d60240
|
12bb5aa162fa6b6fd6601e0dacc972d7b5f508ba
|
refs/heads/master
| 2021-02-08T17:01:20.857172 | 2012-07-10T12:18:28 | 2012-07-10T12:18:28 | 244,174,890 | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 297 |
sce
|
win_loader.sce
|
// generated by builder.sce: Please do not edit this file
// ------------------------------------------------------
smcube_block_path=get_absolute_file_path('win_loader.sce');
libsmcube_link_num = link(smcube_block_path+'release/libsmcube_block.dll',['smcube_block'],'c');
clear smcube_block_path;
|
d00c4311be5c0396a62d0594caa1aa487f1adc65
|
ebd6f68d47e192da7f81c528312358cfe8052c8d
|
/swig/Examples/scilab/std_list/runme.sci
|
6075d7ac7113488810832ce02d0f698652b9fe9d
|
[
"LicenseRef-scancode-swig",
"GPL-3.0-or-later",
"LicenseRef-scancode-unknown-license-reference",
"GPL-3.0-only",
"Apache-2.0"
] |
permissive
|
inishchith/DeepSpeech
|
965ad34d69eb4d150ddf996d30d02a1b29c97d25
|
dcb7c716bc794d7690d96ed40179ed1996968a41
|
refs/heads/master
| 2021-01-16T16:16:05.282278 | 2020-05-19T08:00:33 | 2020-05-19T08:00:33 | 243,180,319 | 1 | 0 |
Apache-2.0
| 2020-02-26T05:54:51 | 2020-02-26T05:54:50 | null |
UTF-8
|
Scilab
| false | false | 1,239 |
sci
|
runme.sci
|
lines(0);
ilib_verbose(0);
ierr = exec('loader.sce', 'errcatch');
if ierr <> 0 then
disp(lasterror());
exit(ierr);
end
example_Init();
// This example shows how to use C++ functions with STL lists arguments
// Here, STL lists are converted from/to Scilab matrices (SWIG_SCILAB_EXTRA_NATIVE_CONTAINERS is not defined)
// integer lists
disp("Example of passing matrices of int as list arguments of C++ functions.");
disp("get a list of int {1...4} from create_integer_list():");
is = create_integer_list(1, 4);
disp(is);
disp("get the sum of this list elements with sum_integer_list():")
sum = sum_integer_list(is);
disp(is);
is2 = create_integer_list(3, 6);
disp("concat this list with the list of int {3...6} with concat_integer_list():");
is3 = concat_integer_list(is, is2);
disp(is3);
// string lists
disp("Example of passing matrices of string as list arguments of C++ functions.");
disp("get a list of string {''aa'', ''bb'', ''cc'', ''dd''} with create_string_list():");
ss = create_string_list("aa bb cc dd");
disp(ss);
ss2 = create_string_list("cc dd ee ff");
disp("concat this list with the list of string {''cc'', ''dd'', ''ee'', ''ff''} with concat_string_list():");
ss3 = concat_string_list(ss, ss2);
disp(ss3);
exit
|
6aff1659e0cacbff932bfdec7a75081973fe69cc
|
0fea4b1807b35c0ef50433aa99f483c2de5777df
|
/assignment 4/eigen_values_and_vectors.sce
|
560ac12dfb2fd5515b5f41df35636f49fcb552d9
|
[] |
no_license
|
shivansh8/Scilab
|
319fdfcbec1cc24b4c3c9d4385112ade99419c73
|
7922ffe14c554718cc7682b6419db9bce8261213
|
refs/heads/master
| 2020-12-29T06:10:48.542794 | 2020-04-05T14:19:06 | 2020-04-05T14:19:06 | 238,486,140 | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 967 |
sce
|
eigen_values_and_vectors.sce
|
function func(a)
lam=poly(0,'lam');
lam=lam
charmat=a-lam*eye(3,3);
disp(charmat,"the characteristic matrix is");
charpoly=poly(a,'lam');
disp(charpoly,"the characteristic polynomial is:");
lam=spec(a);
disp(lam,"the eigen values of A are");
endfunction
function[x,lam]=eigenvectors(a)
[n,m]=size(a);
lam=spec(a);
x=[];
for k=1:3
B=a-lam(k)*eye(3,3);
C=B(1:n-1,1:n-1);
b=-B(1:n-1,n);
y=C\b;
y=[y;1];
y=y/norm(y);
x=[x y];
end
endfunction
str = input("Enter a space-separated 3x3 matrix in this order a11 a12 a13 ..... a32 a33 ", "string")
v = evstr(strsplit(str, " "))
a11=v(1)
a12=v(2)
a13=v(3)
a21=v(4)
a22=v(5)
a23=v(6)
a31=v(7)
a32=v(8)
a33=v(9)
a=[a11 a12 a13;a21 a22 a23;a31 a32 a33];
func (a);
//get f("eigenvectors")
[x,lam]=eigenvectors(a)
disp(x,"the eigen vectors of a are");
|
2fb938233aa0b83a519cb04f965d646b23f98f1c
|
6e257f133dd8984b578f3c9fd3f269eabc0750be
|
/ScilabFromTheoryToPractice/CreatingPlots/penduleelastique.sce
|
e1f690ca7f076b57ec1cfd1f6d8cc407623d5159
|
[] |
no_license
|
markusmorawitz77/Scilab
|
902ef1b9f356dd38ea2dbadc892fe50d32b44bd0
|
7c98963a7d80915f66a3231a2235010e879049aa
|
refs/heads/master
| 2021-01-19T23:53:52.068010 | 2017-04-22T12:39:21 | 2017-04-22T12:39:21 | 89,051,705 | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 5,061 |
sce
|
penduleelastique.sce
|
//*****************************************************************
// animation of a spring pendulum
//*****************************************************************
// function to create rotation matrix
function M=rot(a)
M=[cos(a),sin(a);-sin(a),cos(a)];
endfunction
// constants
n=40; // number of coils of the spring
T=5; // duration of the simulation
g=9.81; // g (gravitational acceleration)
k=10; // k (spring stiffness)
dt=0.01; // dt (time step)
//*****************************************************************
// launch the graphics window
//*****************************************************************
// window title
xtitle("(left-click to start the animation, right-click to stop)")
// title page (in LaTeX)
titlepage(["numerical solution of the spring pendulum ODE : ";" "; "$$\Large r{d^2\over dt^2}a+2{d\over dt}r \times {d\over dt}a=g\times \sin(a)$$";
" "; "$$\Large {d^2\over dt^2}r-{k\over m}(r-r_0)=r\left({d\over dt} a\right)^2+g\times \cos(a)$$";" "; " with initial conditions : "; "$$\Large a(0)=? \;\;\;\;\;\; {d\over dt}a(0)=0 \;\;\;\;\;\; r(0)=r_0=? \;\;\;\;\;\; {d\over dt}r(0)=0 $$"])
//*****************************************************************
// processing the graphics window interactions
//*****************************************************************
// wait for a mouse click in the window
[c_i,c_x,c_y,c_w]=xclick();
while (c_i<>2)&(c_i<>5) // as long as there is no right-click
clf() //clear the window
//***********************************************************
// retrieve the animation's initial data
//***********************************************************
// window title
xtitle("(one click to initialize pendulum position a(0) and r(0) )")
// parameterize the window's Axes handle
plot(0,0,'.k');A=gca();A.x_location="origin";
A.y_location="origin";A.auto_scale="off";A.isoview="on";
A.data_bounds=[-1 -1; 1,0];xgrid(3)
// retrieve the pendulum's initial position coordinates :
[c_i,x,y,c_w]=xclick();
// compute initial values :
a=sign(x)*abs(atan(x/y));a0=a;da=0; // compute angle a(0)
l=sqrt(x^2+y^2);r=l;,dr=0; // compute r(0)
// adapt the window's size to the pendulum's maximum size :
A.data_bounds=[-1.5,-max(4*l,4);1.5,max(l,0.5)];
//***********************************************************
// loop creates the animation
//***********************************************************
for t=0:dt:T
//******************************************************
// compute new positions
//******************************************************
// solve the differential equation for a and r using
// Euler's method
dda=-(g*sin(a)+2*dr*da)/r;
ddr=r*(da)^2-k*(r-l)+g*cos(a);
da=da+dt*dda;
dr=dr+dt*ddr;
a=a+dt*da;
r=r+dt*dr;
// compute the spring's line representation
springr=linspace(0,r,n)'; // the spring stretches
// coordinates transverse to spring's axis -> /\/\/\
springa=[0;(-1).^[0:n-3]';0]*(l/10);
//rotate the spring's picture by the angle a
x=[x;r*sin(a)];
y=[y;-r*cos(a)];
M=-rot(-a);
N=[springr,springa]*M;
springy=N(:,1);springx=N(:,2);
//******************************************************
// display the pendulum
//******************************************************
drawlater() // write to the graphics buffer
clf() // clear the window
plot(springx,springy) //display the pendulum's spring
xstring(0,0.1,["t=" string(t)]) // elapsed time
// pendulum bob :
xfarc(r*sin(a)-0.05,-r*cos(a)+0.05,0.1,0.1,0,360*64)
// resize the graphics window
A=gca();A.data_bounds=[-1.5,-max(4*l,4);1.5,max(l,0.5)];
A.auto_scale="off";A.isoview="on";
A.axes_visible=["off" "off" "off"];
drawnow() // display the graphics buffer
realtime(t); // delay display
end
//***********************************************************
// choose a new animation or exit program
//***********************************************************
xtitle("(one clic to proceed )") // window title
plot(x,y,'-r') // display trajectory
A=gca();A.isoview="on";xgrid(3); //display grid (green)
// waiting for a mouse click in graphics window :
[c_i,x,y,c_w]=xclick();
clf(); // choose a new operation
xtitle("(left-click to start the animations, right-click to stop)")
plot(0,0,'.k');A=gca();A.x_location="origin";
A.y_location="origin";
// waiting for a mouse click in the window :
[c_i,x,y,c_w]=xclick();
end
|
ffde5213bbcd61814fed4692a1bae86f94ad258d
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3782/CH7/EX7.10/Ex7_10.sce
|
03ad862e1ec32346d19ebb0a2d54950f61eabaac
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 188 |
sce
|
Ex7_10.sce
|
//
//given
l=10,b=15,
a1=l*b
ir=0.686
fr=9.976
n=2
m=100
marea=150//measured area
c=(marea/100)+10.710
area=m*c
printf("\n area of zero circle is %0.3f square centimeters',area)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.