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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0d96787d7107809a1bffaa246ec603c113b919a9 | 15b814fbf5ba965e98871286249c9f382d1eee4c | /adaptive/simulation04/recursive-least-squares.sci | 6fdac83454031dc44cead2b3803f8562306f2bf3 | [] | no_license | oscarkremer/disciplines | b5338f3a97c7a20e4b39618d7da0d4396dc35f07 | b8d1ca9da37f81c99ee08dbee795d2d936597666 | refs/heads/master | 2020-07-22T14:57:42.643799 | 2019-12-07T15:51:40 | 2019-12-07T15:51:40 | 207,239,678 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 492 | sci | recursive-least-squares.sci | xdel(winsid());//fechar janelas de figuras
clear();//limpar memória
clc();//limpar console
t = 0.:0.01:5'
S = 3*sin(t) + 2*cos(t) + 6*3*t.^2;
P = 10000*eye(3, 3);
PHI = [sin(t);cos(t);3*t.^2] ;
theta = [0;0;0];
for i=2:501
K = P*PHI*inv(1+PHI'*P*PHI);
P = (eye(3,3) - K*PHI')*P;
theta = theta + K*(S - PHI'*t);
end
//plot2d(t, PHI(:,1)*theta1,3)
//plot2d(t, PHI(:,1:2)*theta2, 4)
//plot2d(t, PHI*theta3, 5)yh
//plot2d(t, S, 6)
/////////////////////////////////////////////
|
7e7593ece4127092bb105a611065d623fe8023fb | afc50254b2af7f235fea22b2288edf5c48d24300 | /Scilab/Task_2/Task_23.sce | 117c27a13d3683cadcd9f94709c6cbd66a2278c2 | [] | no_license | kartofun/ITMO | 323d0b993842d6b09a5560af5e59c83298b3fa20 | c5d69c6d2c9980ab7e79b32b3f7145f83d0299c9 | refs/heads/master | 2020-12-08T10:02:24.328398 | 2016-10-30T22:54:47 | 2016-10-30T22:54:47 | 66,733,126 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 119 | sce | Task_23.sce | [ak,vk]=meshgrid(0:0.1:%pi,0:0.1:%pi);
ymax=vk.^2/2/9.8*(sin(ak*%pi/180)).^2;
mesh(ymax);
xtitle('$\huge ymax(v,a)$');
|
b47c96d20727f784ce01da9f994029b432656c8f | 449d555969bfd7befe906877abab098c6e63a0e8 | /165/CH7/EX7.1/ex7_1.sce | 4c958d2640e54e70846a29732a3593512282d1c6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 223 | sce | ex7_1.sce | //Example 7.1
clc;
Vertical_attenuation=0.5;
n=3; //No. of Division from CRO
//Peak to peak amplitude of the signal
Vp_p=Vertical_attenuation*n;
printf('\nPeak to peak amplitude of the signal is %.2f',Vp_p) |
05f3d397d4525367e7091b6385836ec2cb352738 | c557cd21994aaa23ea4fe68fa779dd8b3aac0381 | /test/ignore-translate.tst | b4c95c7db52ee2ca8efa9a1eb87ee6642ae4ee03 | [
"BSD-3-Clause",
"BSD-2-Clause"
] | permissive | dougsong/reposurgeon | 394001c0da4c3503bc8bae14935808ffd6f45657 | ee63ba2b0786fa1b79dd232bf3d4c2fe9c22104b | refs/heads/master | 2023-03-09T15:22:45.041046 | 2023-02-25T08:33:06 | 2023-02-25T08:33:06 | 280,299,498 | 1 | 0 | NOASSERTION | 2023-02-25T08:33:08 | 2020-07-17T01:45:32 | Go | UTF-8 | Scilab | false | false | 263 | tst | ignore-translate.tst | ## test ignore (defaults generation, rename, translation).
read <min.fi
set interactive
prefer bzr
ignores --defaults
# Next line should reveal a generated ignore blob and its fileop
:2,:3 inspect
prefer hg
ignores --rename --translate
clear interactive
write -
|
5f95a641b23df11a6c83d26caa167da7ec40092b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1946/CH4/EX4.1/Ex_4_1.sce | a7f21fd58fb7b048a7d089a7cd5aef4869df3015 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 213 | sce | Ex_4_1.sce | // Example 4.1:Loss
clc;
clear;
close;
L=0.4;// Length of fiber in km
Pi=1;// Assume input power
Po=0.25//Optical Signal Loss
Loss= round((10/L)*(log10(Pi/Po)));//Loss in dB/Km
disp(Loss,"Loss in dB/Km")
|
1350e0c5f0d1f15b7da239859f67f6a15713b94b | b948892b36eefdb35c47c821c51f69bb60989633 | /Integrador.sce | bcd1267cb6f09a3a9fbcb244796ddba351d8e95f | [] | no_license | lucas-medeiros/Digital-Signal-Processing | c5479eab20119e72ccb6adfe1c1d45fddf6dae7c | ba329ce5e5f6ca9ba7d46faba8661e9344627f9d | refs/heads/master | 2020-07-15T04:51:18.868263 | 2019-08-31T02:20:15 | 2019-08-31T02:20:15 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 409 | sce | Integrador.sce | function vet = Integrador(sinal)
N = length(sinal); //tamanho do vetor de entrada
cont = 0;
for j = 1:1:N
cont = cont + sinal(j);
vet(j) = cont; //vetor com os valores de cont pra plotar o gráfico do sinal integrado
end
x = ([1:1:N]); //vetor de 1 a N pro eixo X
plot(x,vet) //imprime o gráfico
disp(cont) //imprime o resultado do somador
endfunction
|
f308dce4461ca1f89c55694c8edb18ad6fd2da86 | 3cbee2296fd6b54f80587eead83813d4c878e06a | /sci2blif/rasp_design_added_blocks/vdd_o.sce | 946a75bacb85ec5ac5ab8a9adb634596fe0cd5ed | [] | no_license | nikhil-soraba/rasp30 | 872afa4ad0820b8ca3ea4f232c4168193acbd854 | 936c6438de595f9ac30d5619a887419c5bae2b0f | refs/heads/master | 2021-01-12T15:19:09.899590 | 2016-10-31T03:23:48 | 2016-10-31T03:23:48 | 71,756,442 | 0 | 0 | null | 2016-10-24T05:58:57 | 2016-10-24T05:58:56 | null | UTF-8 | Scilab | false | false | 141 | sce | vdd_o.sce | style.fontSize=12;
style.displayedLabel="VDD";
pal4 = xcosPalAddBlock(pal4,"vdd_o",[],style);
pal8 = xcosPalAddBlock(pal8,"vdd_o",[],style);
|
8fde4f83bb55a193c3dbaf58e2a408020391d2fb | 449d555969bfd7befe906877abab098c6e63a0e8 | /978/CH11/EX11.1/Example11_1.sce | bf7a14d30518753e5fe58f65417ec00251eeeb3d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 501 | sce | Example11_1.sce | //chapter-11,Example11_1,pg 343
R1=1*10^3//input resistance
R2=1*10^3//feedback resistor
R3=1*10^3// non inverting ter. resistor
R8=1*10^3//potentiometer
R4=1*10^3
DF1=(R1/((2*R1)+R8))//duty factor lim.-1
DF2=(R1+R4)/((2*R1)+R8)//duty factor lim.-2
//T=(((2*R4*C*((2*R1)+R8)))/R1)*(Vt/Vi)=((6*R4*C*Vt)/Vi)
printf("range of duty factor is DF1 to DF2 i.e\n")
printf("%.2f to ",DF1)
printf("%.2f",DF2)
printf("\nlimits of t1 and t2\n")
printf("(T/3) to (2T/3)") |
84bc2868f32d942eb3290a69ef20d8165e7be049 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2863/CH7/EX7.9/ex7_9.sce | 8a5ad4d3b308e1d777300459f9dfb4dc78f55850 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 248 | sce | ex7_9.sce | //chapter7
printf("\n");
fcr1=4.5*10^6;
fcr2=1.5*10^6;
Nmax1=(fcr1/9)^2';
Nmax2=(fcr2/9)^2;
printf("the Nmax values are");
printf("\n %gm^3 %gm^3",Nmax1,Nmax2);
Nmax=Nmax1-Nmax2;
printf("\n the change in electron density is %gm^3",Nmax);
|
0baf9c301a93dafe393ab066797eba7e1f33495d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1962/CH9/EX9.6/example9_6.sce | d15b629204ba1eeb05dee32e10c6772d20bf3022 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | example9_6.sce |
//example 9.6
//page 319
clc; funcprot(0);
//initialisation of variable
epsilon=0.025;//roughness
L=500;
pi=3.14;
g=9.81;
D=20/100;
Q=0.1;
S=5.43/100;
K=pi/4*sqroot(2*g)*(2*log10(D*100/epsilon)+1.14)*D^2.5;
Q=K*sqroot(S);
disp(Q,"flow rate(m^3/s)=");
clear
|
22a70bd016c4c32e33fbc6507ffca673a3fc686b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2243/CH10/EX10.10/Ex10_10.sce | 5e3f94b66ba612143a0db29e08c8d0e3b9465af3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 459 | sce | Ex10_10.sce | clc();
clear;
//Given :
er = 6.75 ; // relative dielectric constant for glass
f = 10^9 ;// frequency in Hz
n = 1.5;// refractive index of glass
e0 = 8.85*10^-12; // dielectric constant in farad/m
//Pe = e0*(n^2 - 1)*E , Pi = e0*(er - n^2)*E , P = Pi + Pe = e0*(er - 1)*E
//Percentage = [(e0*(er - n^2)*E)/(e0*(er -1)*E)]*100 , both the E's cancel each other
per = [(e0*(er - n^2))/(e0*(er -1))]*100;// percentage
printf("Percentage = %.1f",per);
|
2e5ea34751f20c368e274afb41ef78276b874528 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set6/s_Electrical_Measurements_Measuring_Instruments_K._Shinghal_2318.zip/Electrical_Measurements_Measuring_Instruments_K._Shinghal_2318/CH3/EX3.42/ex_3_42.sce | e0ccaede8840bb1467d77f7dc4705cdccdb9c2c0 | [] | 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 | 266 | sce | ex_3_42.sce | errcatch(-1,"stop");mode(2);//Example 3.42:resistance
;
;
dp=0.08;//±% error
ds=0.05;//±% error
dq=dp;//
dx=dp+ds+dq;//±% percentage error
x=250;//ohms
dx1=dx*x;//
disp("Upper and lower limits of X are "+string(x+dx1)+" ohm and "+string(x-dx1)+" ohm")
exit();
|
3662bad6c3861ae988fc88bf551abf3271035c28 | 9b68b3d73b63ebcbfe18cc9a4aa8e91c84833a84 | /tests/libs/hdf5/test-env-variables-new/FORTRAN/H5D/testfiles/112/h5ex_d_rdwr_kind.tst | f5e90d8eb92ca5079012ef1a37e7f91a06a14f17 | [
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-llnl",
"LicenseRef-scancode-hdf4",
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] | permissive | openhpc/ohpc | 17515db5082429eb9f250f12bf242b994beb715f | 725a1f230434d0f08153ba1a5d0a7418574f8ae9 | refs/heads/3.x | 2023-08-19T02:15:14.682630 | 2023-08-18T19:33:51 | 2023-08-18T19:34:18 | 43,318,561 | 827 | 247 | Apache-2.0 | 2023-09-14T01:22:18 | 2015-09-28T18:20:29 | C | UTF-8 | Scilab | false | false | 336 | tst | h5ex_d_rdwr_kind.tst |
DS_I:
[ 0 -1 -2 -3 -4 -5 -6 ]
[ 0 0 0 0 0 0 0 ]
[ 0 1 2 3 4 5 6 ]
[ 0 2 4 6 8 10 12 ]
DS_R:
[ 0.000 -1.000 -2.000 -3.000 -4.000 -5.000 -6.000 ]
[ 0.000 0.000 0.000 0.000 0.000 0.000 0.000 ]
[ 0.000 1.000 2.000 3.000 4.000 5.000 6.000 ]
[ 0.000 2.000 4.000 6.000 8.000 10.000 12.000 ]
|
527235edfc21b62ab15cb6c359e43307542c4ecf | 449d555969bfd7befe906877abab098c6e63a0e8 | /2339/CH5/EX5.3.1/Ex5_3.sce | 75e3cc2f6cfa3e08b3bf3aa430b647dca61cd2b4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 545 | sce | Ex5_3.sce | clc
clear
P=12; //in bar
CV=34000; //in kJ/kg
T=250; //in C
Ms=10; //in kg/kg of coal
Tfw=36; //in C
Hfw=150.74; //in kJ/kg
Hg=2784.8; //in kJ/kg
Tsup=T;
Tsat=188; //in C
Cps=2.1; //in kJ/kg K
H=Hg+(Cps*(Tsup-Tsat));
Me=(Ms*(H-Hfw))/2257;
printf('Equivalent evaporation: %3.2f kg/kg of coal',Me);
printf('\n');
Eff=(Me*250)/21.296;
printf('Boiler Power: %3.2f kW',Eff);
printf('\n');
|
0dc117f17c3b802f7a769deed96ad6ea33787115 | 9fd700113e21acbb9d3cef5e6010e7f37656b6e6 | /cs16b025_lab1/DMux.tst | a745fbcc3b565304644f5bbeadcf8d50c5ad98a6 | [] | no_license | madhav543/cs16b025_lab | 01432fe8d0fbacf4dafe5189413943ec48afaed4 | 4924ea918b9b4dc6eb22b713e639204c9e59c697 | refs/heads/master | 2020-07-11T22:44:32.575114 | 2019-11-19T16:06:12 | 2019-11-19T16:06:12 | 204,659,765 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 254 | tst | DMux.tst | load DMux.hdl,
output-file DMux.out,
compare-to DMux.cmp,
output-list ip1%B3.1.3 s%B3.1.3 out1%B3.1.3 out2%B3.1.3;
set ip1 0,
set s 0,
eval,
output;
set ip1 0,
set s 1,
eval,
output;
set ip1 1,
set s 0,
eval,
output;
set ip1 1,
set s 1,
eval,
output; |
b678eb3eb59a6bb3bedf84965a5c35f1f30a2a2b | 95a097a2fe8699932e1301c6d095bc4127c62da8 | /07/StackArithmetic/StackTest/StackTest.tst | 066362f2d493676558f470fdd6d9cd85a4cb88d4 | [] | no_license | itzhak-razi/From-Nand-to-Tetris | f508703b6cdb7a4841b2fae6849382c80a731c3f | 4b11c4fe802dbea1c863b03ca71fd5891e39e45b | refs/heads/master | 2021-06-01T11:09:02.084364 | 2012-11-23T01:12:45 | 2012-11-23T01:12:45 | 7,025,062 | 36 | 38 | null | null | null | null | UTF-8 | Scilab | false | false | 449 | tst | StackTest.tst | // This file is part of www.nand2tetris.org
// and the book "The Elements of Computing Systems"
// by Nisan and Schocken, MIT Press.
// File name: projects/07/StackArithmetic/StackTest/StackTest.tst
load StackTest.asm,
output-file StackTest.out,
compare-to StackTest.cmp,
output-list RAM[0]%D2.6.2 RAM[256]%D2.6.2 RAM[257]%D2.6.2
RAM[258]%D2.6.2 RAM[259]%D2.6.2;
set RAM[0] 256,
repeat 400 {
ticktock;
}
output;
|
87f53b25bce11646879f19a39cdc1a3da65b42b2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3311/CH4/EX4.2/Ex4_2.sce | e3f67f91bbc6f5c21eeef13eda1cad474474e2af | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 536 | sce | Ex4_2.sce | // chapter 4
// example 4.2
// Calculate the series resistance
// page-128-129
clear;
clc;
// given
I_T1=100; // in A (current of SCR 1)
I_T2=150; // in A (current of SCR 2)
V_T1=2.1; // in V (on-state voltage of SCR 1)
V_T2=1.75; // in V (on-state voltage of SCR 2)
// calculate
// since V_T1+I_T1*(R+R_T1)=V_T2+I_T2*(R+R_T2) and assume R+R_T1=R1 (resistance to be connected in series)
// therefore V_T1+I_T1*R1=V_T2+I_T2*R1 or we get
R1=(V_T1-V_T2)/(I_T2-I_T1);
printf("The value of required series resistance is \t R1=%.3f ohm",R1);
|
8a6969c8659d15d5dce9678c1e9cf34e524fcde0 | 39b357bcd82af01ab069c0a12ca520c112ecd5fa | /mlt/presets/filter/dynamicText/multiline.tst | c097ef2e34b38037972ec3f433bbbb709417941d | [] | no_license | 0TemetNosce0/moviemator_qml | 6963eed2d455e52b8c0e613fe3c3902c33423e2a | b0d2eaef84ab6d9b099deed8c2678d365c65cc88 | refs/heads/master | 2021-05-25T12:22:53.788915 | 2019-08-26T03:37:52 | 2019-08-26T03:37:52 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 284 | tst | multiline.tst | geometry=0.0539063 0.0888889 0.928125 0.865278 1
shear_x=0
halign=center
valign=middle
size=67
fgcolour=255 255 255 255 1
family=Verdana
weight=750
olcolour=255 0 0 0 1
outline=0
bgcolour=0 0 0 0 1
pad=00:00:00.000=0
letter_spaceing=0
shadow_distance=0
shadow_angle=45
|
79b529f371fc95ecc07ca50015702f3765c90f24 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2294/CH2/EX2.4/EX2_4.sce | d4bc275756b840b784aabb2d6fb32f33abed18a6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,168 | sce | EX2_4.sce | //Example 2.4<i>
//Check whether the following signal is linear or not.
clear;
close;
clc;
T=20;//length of the signal
for n=1:T
x1(n)=n;x2(n)=2*n;
y1(n)=exp(x1(n));
y2(n)=exp(x2(n));
end
z=y1+y2;
for n=1:T
y3(n)=exp(x1(n)+x2(n));
end
if z==y3 then
disp('The following signal is linear');
else
disp('The following signal is non linear');
end
//Example 2.4<ii>
//Check whether the following signal is linear or not.
clear;
close;
clc;
T=20;//length of the signal
for n=1:T
x1(n)=n;x2(n)=2*n;
y1(n)=x1(n)*x1(n);
y2(n)=x2(n)*x2(n);
end
z=y1+y2;
for n=1:T
y3(n)=(x1(n)+x2(n))^2;
end
if z==y3 then
disp('The following signal is linear');
else
disp('The following signal is non linear');
end
//Example 2.4<iii>
//Check whether the following signal is linear or not.
clear;
close;
clc;
T=20;//length of the signal
for n=1:T
x1(n)=n;x2(n)=2*n;
y1(n)=n^2*(x1(n));
y2(n)=n^2*(x2(n));
end
z=y1+y2;
for n=1:T
y3(n)=n^2*(x1(n)+x2(n));
end
if z==y3 then
disp('The following signal is linear');
else
disp('The following signal is non linear');
end
|
36717579299ce0247aad64de9770f22696f97990 | 676ffceabdfe022b6381807def2ea401302430ac | /solvers/IncNavierStokesSolver/Tests/Tet_channel_m8_hdf.tst | 7ad15cd24a6f7c66783a2300c81b91fca9978f61 | [
"MIT"
] | permissive | mathLab/ITHACA-SEM | 3adf7a49567040398d758f4ee258276fee80065e | 065a269e3f18f2fc9d9f4abd9d47abba14d0933b | refs/heads/master | 2022-07-06T23:42:51.869689 | 2022-06-21T13:27:18 | 2022-06-21T13:27:18 | 136,485,665 | 10 | 5 | MIT | 2019-05-15T08:31:40 | 2018-06-07T14:01:54 | Makefile | UTF-8 | Scilab | false | false | 1,092 | tst | Tet_channel_m8_hdf.tst | <?xml version="1.0" encoding="utf-8"?>
<test>
<description>3D channel flow, Tet elements, HDF5 output par(3), P=8</description>
<executable>IncNavierStokesSolver</executable>
<parameters>--use-scotch --io-format Hdf5 Tet_channel_m8_par.xml</parameters>
<processes>3</processes>
<files>
<file description="Session File">Tet_channel_m8_par.xml</file>
</files>
<metrics>
<metric type="L2" id="1">
<value variable="u" tolerance="1e-08">1.04057e-11</value>
<value variable="v" tolerance="1e-08">9.66528e-12</value>
<value variable="w" tolerance="1e-08">1.09503e-10</value>
<value variable="p" tolerance="1e-08">3.55555e-09</value>
</metric>
<metric type="Linf" id="2">
<value variable="u" tolerance="1e-08">6.08492e-11</value>
<value variable="v" tolerance="1e-08">7.06681e-11</value>
<value variable="w" tolerance="1e-08">2.66938e-09</value>
<value variable="p" tolerance="1e-07">3.8533e-08</value>
</metric>
</metrics>
</test>
|
055c4fbe097c3928cea087ac78eb77dcc9ccbce1 | 34afc14c4842072fac8feea2335591b4621718d4 | /ASSIGNMENT4/GramSchmidtOrthogonalisation.sce | 26c4b2c04ac21254c9dfff0fa3bce9a28df02072 | [] | no_license | SnehaJayaraman/LA | 8242edf4583165ace4954bfdd407ed4a4658d963 | 13295ffd7917410df0b86896f0243f1d940a271c | refs/heads/master | 2020-12-27T02:46:06.112219 | 2020-04-30T11:59:21 | 2020-04-30T11:59:21 | 237,738,119 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 503 | sce | GramSchmidtOrthogonalisation.sce | A=[]
disp("Enter 3 linearly independent vectors (a,b,c):");
for i=1:3
printf("Enter vector %d:\n",i);
for j=1:3
A(j,i)=input("");
end
end
a=A(:,1)
b=A(:,2)
c=A(:,3)
disp(a,"a= ",b,"b= ",c,"c= ");
disp("Orthogonalising the given vectors using Gram Schimdt Orthogonalisation :")
q1=a/norm(a)
B=b-(q1'*b)*q1
q2=B/norm(B)
C=c-((q1'*c)*q1)-((q2'*c)*q2)
q3=C/norm(C)
disp("The three orthonormal vectors q1,q2,q3 are:")
disp(q1,"q1=")
disp(q2,"q2=")
disp(q3,"q3=")
|
c7889aadc90bafa9d23e7afd74c5206c60658ee5 | f575b6ff7e0f0e2a1e8b41f9ab83ac853231ba68 | /pkg/cohomolo/gap/cohomolo.tst | 594a7d041a90bc6ecdeef37ac3904059fb8ef9e1 | [] | no_license | jmichel7/gap3-jm | 756c6e6c5d3c7956fe4dc20b2f76f320f49a11b5 | 3eeb3c4d174d567c51e712f997febb1e8e2ad65f | refs/heads/master | 2023-08-23T19:04:53.627679 | 2023-08-21T14:21:33 | 2023-08-21T14:21:33 | 124,115,667 | 0 | 3 | null | null | null | null | UTF-8 | Scilab | false | false | 2,286 | tst | cohomolo.tst | SizeScreen( [ 70, 24 ] );
#>[ 70, 24 ]
TestDir:= "../gapdata/";
#>"../gapdata/"
InfoCohomology:= Print;
#>function (...) internal; end
RequirePackage( "cohomolo" );
Read( Concatenation( TestDir, "d8" ) );
chr:= CHR(G,2,F,m2);;
M:= SchurMultiplier( chr );
#>#I Cohomology package: Calling external program.
#>#I External program complete.
#>#I Removing temporary files.
#>[ 2 ]
D:= CoveringGroup( chr );;
#>#I Cohomology package: Calling external program.
#>#I External program complete.
#>#I Removing temporary files.
Size( D );
#>16
F:= FirstCohomologyDimension( chr );
#>#I Cohomology package: Calling external program.
#>#I External program complete.
#>#I Removing temporary files.
#>2
F:= SecondCohomologyDimension( chr );
#>#I Cohomology package: Calling external program.
#>#I External program complete.
#>#I Removing temporary files.
#>3
E:= SplitExtension( chr );;
Size(E);
#>32
E:= NonsplitExtension( chr );;
#>#I Cohomology package: Calling external program.
#>#I External program complete.
#>#I Cohomology package: Calling external program.
#>#I External program complete.
#>#I Cohomology package: Calling external program.
#>#I External program complete.
#>#I Removing temporary files.
Size(E);
#>32
E:= NonsplitExtension( chr, [0,1,1] );;
Size(E);
#>32
Read( Concatenation( TestDir, "a6" ) );
chr:= CHR( G, 3, F, m3 );;
M:= SchurMultiplier( chr );
#>#Indices in the subgroup chain are: 10 4
#>#I Cohomology package: Calling external program.
#>#I External program complete.
#>#I Removing temporary files.
#>[ 3 ]
D:= CoveringGroup( chr );;
#>#I Cohomology package: Calling external program.
#>#I External program complete.
#>#I Removing temporary files.
Size(D);
#>1080
F:= SecondCohomologyDimension( chr );
#>#I Cohomology package: Calling external program.
#>#I External program complete.
#>#I Removing temporary files.
#>2
E:= SplitExtension( chr );;
SE:= Subgroup( E, [E.4,E.5,E.6,E.7,E.8] );;
Index( E, SE );
#>1080
E:= NonsplitExtension( chr, [1,2] );;
#>#I Cohomology package: Calling external program.
#>#I External program complete.
#>#I Cohomology package: Calling external program.
#>#I External program complete.
#>#I Removing temporary files.
SE:= Subgroup( E, [E.4,E.5,E.6,E.7,E.8] );;
Index( E, SE );
#>1080
|
d0d16093b4b40fcf53672774d6a43ea52bd6a695 | 449d555969bfd7befe906877abab098c6e63a0e8 | /25/CH7/EX7.7/7_7.sce | 3ac9ba3a5b39f68f2f2901972f67cb5b54d71f31 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 566 | sce | 7_7.sce | // example:-7.7,page no.-367.
// program to find the value of the coupling capacitor required for critical coupling.
l=0.02175;Zo=50;eipsilae=1.9;c=3*10^8;
fo=c/(2*l*sqrt(eipsilae)); // first resonant frequency will occur when the resonator ia about l=lamdag/2 in length.
lamdag=c/fo;
alpha=1/8.7; // in Np/m.
Q=%pi/(2*l*alpha);
bc=sqrt(%pi/(2*Q));
C=bc/(2*%pi*fo*Zo)*10^12;
disp(C,'coupling capacitor in pF = ')
C=bc/(2*%pi*fo*Zo);
w1=atan(2*%pi*fo*C*Zo)*c/(l*sqrt(eipsilae)); // from equation tan(B*l)=-bc;
w1=w1*10^-8;
disp(w1,'frequency in GHZ = ') |
241a4572f04a7c1183a2dd62d82d92a7ec753d78 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2243/CH7/EX7.1/Ex7_1.sce | 95d5d8418da8b2e56e21ec7f0eb4bae049d28ffe | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 594 | sce | Ex7_1.sce | clc();
clear;
//Given :
n =1 ; // ground state
m = 9.109382*10^-31; //electron mass in kg
h = 6.625*10^-34; //planck's constant in Js
e = 1.602176*10^-19; // Charge of an electron in C
e0 = 8.854188*10^-12; // Vacuum permittivity in F/m
r1 = (n^2*h^2*e0)/(%pi*m*e^2);// Radius in A
v1 = e^2/(2*h*e0*n); // Velocity in m/s
E1 = -((m*e^4)/(8*n^2*h^2*e0^2)); // Energy of an electron in eV
// 1 A = 1.0*10^-10 m , 1 eV = 1.6*10^-19 J
printf("For hydrogen atom : \n Radius = %.2f A \n Velocity = %.1f x 10^6 m/s \n Energy of an electron = %.1f eV",r1*10^10,v1*10^-6,E1/(1.6*10^-19));
|
e7f0000f7783904ab1d53a74ecccb6649ac9105a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1787/CH6/EX6.7/Exa6_7.sce | 8e33075495ec89b68c7e4edbf99134defa3e5c02 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 234 | sce | Exa6_7.sce | //Exa 6.7
clc;
clear;
close;
//given data
ICBO=12.5;//in uA
ICBO=ICBO*10^-3;//in mA
IE=2;//in mA
IC=1.97;//in mA
alfa=(IC-ICBO)/IE;//unitless
IB=IE-IC;//in mA
disp(alfa,"Current gain : ");
disp(IB,"Base current in mA : "); |
205ebb9d105653bb9938e12eac8a2e82145d4d2d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1106/CH5/EX5.4/ex5_4.sce | f12d7767a99550d5cebf8d724ae38d0646dc0991 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 446 | sce | ex5_4.sce | // Example 5.4, Page No-251
clear
clc
Vref=1.5
// Part A
Vpp=5
Vnp=2.5
Vc=Vnp + Vref
printf('\nCapacitor voltage Vc= %.1f V', Vc)
// Part B
Vopeak=Vnp + Vref +Vpp
printf('\nPeak value of clamped output voltage Vo(peak)= %.1f V', Vopeak)
// Part C
Voc=0.7 + Vref
printf('\nOp-amp output voltage during charging Vo= %.1f V', Voc)
// Part D
Vd=Vref-Vopeak
printf('\nMaximum differential input voltage Vd= %.1f V', Vd)
|
b5440ed7f281dfd386460233b865584bf91408c4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /866/CH18/EX18.3/18_3.sce | a67aa4d1809aeda690b48cc1115f0bfd8162c453 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 18_3.sce | clc
//initialisation of variables
d= 200 //mm
b= 150 //mm
tw= 7 //mm
tf= 10 //mm
//CALCULATIONS
ye= (b*tf*(tf/2)+(d-tf)*tw*((d+tf)/2))/(b*tf+(d-tf)*tw)
I= ((b*ye^3)/3)-(b-tw)*(((ye-tf)^3)/3)+(tw*((d-ye)^3)/3)
Ze= I/(d-ye)
yp= (b*tf+(d-tf)*tw)/(2*b)
Zp= b*yp*yp/2+b*(tf-yp)*(tf-yp)/2+(d-tf)*tw*((d-tf)/2+(tf-yp))
f= Zp/Ze
//RESULTS
printf ('fie= %.2f',f)
|
fe061a8615db6d28448dfd8c9e47f7fbaf24b0ee | 449d555969bfd7befe906877abab098c6e63a0e8 | /2120/CH4/EX4.9/ex4_9.sce | 45678b50fb9b9b3abca0745373393897053c52c4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 795 | sce | ex4_9.sce | // Exa 4.9
clc;
clear;
close;
// Given data
// Relation of specific internal energy of the gas
// U= 1.5*p*v-85 kJ/kg
p1 = 1000;// in kpa
p2 = 200;// in pa
v1 = 0.20;// in m^3
v2 = 1.20;// in m^3
m = 1.5;// in kg
U1= 1.5*p1*v1-85;// kJ/kg
U2= 1.5*p2*v2-85;// kJ/kg
delU= U2-U1;// in kJ
disp(delU,"Change in internal energy in kJ is");
// p1= a+b*v1 (i)
// p2= a+b*v2 (ii)
// From eq(i) and (ii)
b= (p1-p2)/(v1-v2);// in kN/m^2
a= p1-b*v1;// in kN/m^2
disp(a,"The value of a in kN/m^2 is ")
disp(b,"The value of b in kN/m^2 is ")
// Part (c)
// Work done = integration of p w.r.t. v and p = a+b*v1
W= integrate('a+b*v','v',v1,v2);// in kJ
disp(W,"Work done in kJ is :")
// Part (d)
Q= delU+W;// in kJ
disp(Q,"The net heat transfer in kJ is : ")
|
96879bff8ea71b6080307e03f1caf41c1cbcc4e9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2417/CH10/EX10.14/Ex10_14.sce | ae45de2e4cac521e441f0ac13e9719322efdea0d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 996 | sce | Ex10_14.sce | //scilab 5.4.1
clear;
clc;
printf("\t\t\tProblem Number 10.14\n\n\n");
// Chapter 10 : Refrigeration
// Problem 10.14 (page no. 536)
// Solution
//In problem 10.13,
//A VACUUM REFRIGERATION SYSTEM
//A vacuum refrigeration system is used to cool water from 90F to 45F
h1=58.07; //Unit:Btu/lbm //enthalpy
h2=13.04; //Unit:Btu/lbm //enthalpy
h3=1081.1; //Unit:Btu/lbm //enthalpy
m1=1; //mass //lbm
//m2=1-m3 //unit:lbm
//Now, m1*h1 = m2*h2 + m3*h3
//Putting the values and arranging the equation,
m3=(m1*h1-h2)/(h3+h2); //The mass of vapour that must be removed per pound //unit:lbm
m2=1-m3; //mass //unit:lbm
printf("The mass of vapour that must be removed per pound of entering water is %f lbm\n",m3);
//Now,in problem 10.14,
//The refrigeration effect can be determined as m3*(h3-h1) or m2*(h1-h2)
printf("The refrigeration effect using eqn m3*(h3-h1) is %f Btu/lbm\n",m3*(h3-h1));
printf("The refrigeration effect using eqn m2*(h1-h2) is %f Btu/lbm\n",m2*(h1-h2));
|
2439613762fa3061af0ad35d4eb43252ae9ed21e | 449d555969bfd7befe906877abab098c6e63a0e8 | /3176/CH2/EX2.12/Ex2_12.sce | 7e15ee1bb325a76dfb36ec0e4ddbd0f8596236bc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,167 | sce | Ex2_12.sce | //Ex2_12
// Standard Deviation
// Version : Scilab 5.4.1
// Operating System : Window-xp, Window-7
//Toolbox: Image Processing Design 8.3.1-1
//Toolbox: SIVP 0.5.3.1-2
//Reference book name : Digital Image Processing
//book author: Rafael C. Gonzalez and Richard E. Woods
clc;
close;
clear;
xdel(winsid())//to close all currently open figure(s).
////////////////// Image Rotation /////////////////////
gray1=imread("Ex2_12.tif");
gray1=im2double(gray1); //Convert the data type into double range
figure,ShowImage(gray1,'Gray Image');
title('Original Image');
gray2=imread("Ex2_12_1.tif");
gray2=im2double(gray2); ///Convert the data type into double range
figure,ShowImage(gray2,'Gray Image');
title('Original Image');
gray3=imread("Ex2_12_2.tif");
gray3=im2double(gray3); //Convert the data type into double range
figure,ShowImage(gray3,'Gray Image');
title('Original Image');
y=variance(gray1); // calculate variance
disp('Variance of Image 1:')
disp(y);
y=variance(gray2); // calculate variance
disp('Variance of Image 2:')
disp(y);
y=variance(gray3); // calculate variance
disp('Variance of Image 3:')
disp(y);
|
afd096b4550267eb7cf0249bf73ff05bb95453cc | 449d555969bfd7befe906877abab098c6e63a0e8 | /2783/CH5/EX5.4/Ex5_4.sce | ba93e80f9cee492d12f3c58e5ab741919c0019f7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 360 | sce | Ex5_4.sce | clc
//initialization of new variables
clear
h1=0.2 //mm gap
hr=2.2 //gap ratio
u=50 //m/s linear velocity
mu=1.8*10^-5 // Coefficient of Viscocity
l=1 //cm Length of the magnetic pickup
//calculations
l=l*10^-2
h1=h1*10^-3
L=0.16*mu*u*(l/h1)^2
R=4.7*h1/l
//results
printf('Lift = %.2f N/m',L)
printf('\n Drag to Lift ratio = %.3f ',R)
|
2a02e20861f43e2a5dc670ba781853c27a766a68 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1847/CH4/EX4.8/Ch04Ex8.sce | 27a99a461a596777341538b1563da5b50ac26f5d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 437 | sce | Ch04Ex8.sce | // Scilab Code Ex4.8:: Page-4.9 (2009)
clc; clear;
ip = 60; // Polarizing angle, degrees
mu = tand(ip); // Brewster's law giving refractive index
A = 60; // Angle of prism, degrees
d = (mu - 1)*A; // Angle of minimum deviation for green light, degrees
printf("\nThe angle of minimum deviation for green light = %5.2f degrees", d);
// Result
// The angle of minimum deviation for green light = 43.92 degrees
|
b49348d65a3c9c1c78d05efb3228d9b513e185e8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1757/CH5/EX5.24/EX5_24.sce | 1bddb166a037753c550328bab3f120f9196de806 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 516 | sce | EX5_24.sce | //Example5.24 // To determine the slew rate of an op-amp
clc;
clear;
close;
f = 1 ; // MHz // unity frequency
Ic = 1*10^-6 ; // uA // capacitor current
Vt = 0.7 ; // V // threshold voltage
// the slew rate of an op-amp is defined as
// Slew rate = (dVo/dt)
Slewrate = 8*3.14*Vt*f ;
disp('the slew rate of an op-amp is = '+string(Slewrate)+' V/u sec ');
// The compansated capacitance Cm is
gm = (Ic/Vt);
Cm = (gm/4*3.14*f) ;
disp('The compansated capacitance value is = '+string(Cm)+'F ');
|
0741af750e5b5f3e5bbefac7fa749dad89055da1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2939/CH8/EX8.1/Ex8_1.sce | a39640325e52b273114ca380471ac3abe6e8067e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 229 | sce | Ex8_1.sce |
//Ex8_1
clc;
//Given:
e=1.6*10^-19;// electron charge
C=6*10^-12;// in F
N=10^5;// // electron multiplication
//Solution:
e1=N*e;
v=e1/(2*C);
v1=1000*v;
printf("The potential signal recorded will be = %f mV",v1)
|
18f1852570937821fbfd49be1135122941d87d04 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2165/CH4/EX4.23/4_23.sce | 704ba0d1ef995416c80f2b27f9cfa055835000d4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 402 | sce | 4_23.sce | clc
//initialisation of variables
p1=100//ln/in^2
p2=2.5//lb/in^2
p3=20//lb/in^2
d=0.75//lb
p=0.5//lb
r=16//in
p4=p1/r//lb/in^2
P5=50//lb/in^2
W1=13960//ft/lb
W2=19040//ft/lb
T=33000//ft/lb
v=4.43//ft^3
v1=v*d//ft^3
W3=T*v1//ft/lb
Hp=3416//ft/lb
Lp=3416//ft/lb
//CALCULATIONS
W=Lp*v1//ft lb
//RESULTS
printf('The thermal efficiency of a compound steam and work done=% f ft lb',W)
|
5afa4a1b14990cdc0cbfb57a14b6c98746f2a93f | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set14/s_Linear_Integrated_Circuit_M._S._Sivakumar_1757.zip/Linear_Integrated_Circuit_M._S._Sivakumar_1757/CH14/EX14.4/EX14_4.sce | 0a72b23d437d4ad8dfb67e7a97edea83c9970310 | [] | 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 | 351 | sce | EX14_4.sce | errcatch(-1,"stop");mode(2);//Example14.4 // determine the output voltage of the switching regulator circuit
;
;
d = 0.7 ; // duty cycle
Vin = 5 ; // V // input voltage
// The output voltage of switching regulator circuit is given by
Vo = d*Vin ;
disp('The output voltage of switching regulator circuit is = '+string(Vo)+' V ');
exit();
|
8f5fb37f529fc694f1b214a994869268d683a0c6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2210/CH5/EX5.14/5_14.sce | 01a63955e9dc355508581f8211bfea8274ea5618 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 5_14.sce | //Chapter 5, Problem 14
clc
n1=160 //no of turn
n2=40 //no of turns
n3=8 //no of turns
n4=150 //no of turns
n5=50 //no of turns
rl=2000 //load resistance in ohms
//calculation
rl1=((n1+n2)/n3)^2*rl
req=(n2/(n1+n2))^2*rl1
rl2=((n4+n5)/n3)^2*rl
req2=(n5/(n4+n5))^2*rl2
printf("(a)Transistor load impedance at resonance = %d Kohm\n\n",req/1000)
printf("(b)New transistor load impedance at resonance = %.2f Kohm\n\n",req2/1000)
|
9eb844b48382f074b559f5df41248c7ce6f2de75 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set8/s_Elements_Of_Physical_Chemistry_P._Atkins_1448.zip/Elements_Of_Physical_Chemistry_P._Atkins_1448/CH8/EX8.3.e/E8_3.sce | 87bba975d3a1bb7206e064be499c98e9df647fc0 | [] | 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 | 181 | sce | E8_3.sce | errcatch(-1,"stop");mode(2);
//Initialization of variables
pKa2=10.25
//calculations
C=10^(-pKa2)
//results
printf("Concentration of Carbonate ions = %.1e mol/l",C)
exit();
|
99eaf503f92fd49dfa11b96534a9a1f5b99e47ce | d37bb038e31bdbec2a31187e37650f5890708709 | /test.tst | cc5b9c1b52c03ba63cc8b44bf83a4f0aa7da1d33 | [] | no_license | alfonso-git-hub/alfonso-git-hub | 45f8fe373f7aae38777ccf59c175424595df6f2a | fb8e52959ae6e677e72b2700b2a6fa7a39218f3c | refs/heads/main | 2023-02-06T18:40:41.563315 | 2020-12-30T07:39:14 | 2020-12-30T07:39:14 | 325,484,790 | 0 | 0 | null | 2020-12-30T07:36:52 | 2020-12-30T07:28:15 | null | UTF-8 | Scilab | false | false | 34 | tst | test.tst | This is just another test file :O
|
c9a784251cf6b646c47a0eb7dce0b65baa70fd57 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1640/CH5/EX5.22/5_22.sce | 131e27206e20a5b27cf444ff4f5284f81c872bc0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 336 | sce | 5_22.sce | clc
//initialisation of variables
h1= 1640 //ft
h2= 40 //ft
d= 8 //in
l= 2 //miles
D= 3 //ft
f= 0.006
Cv= 0.98
g= 32.2 //ft/sec^2
w= 62.4 //lb/ft^3
//CALCULATIONS
r= (d/12)/D
vact= Cv*sqrt(2*g*(h1-h2)/(1+(4*f*l*5280*r^4/D)))
HP= w*vact^3*(%pi*(d/12)^2/4)/(550*2*g)
//RESULTS
printf ('Horse Power of Jet = %.f HP ',HP)
|
1578f5550b056b2c47a377c02b6b20d78a41c8c7 | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.4/Unix-Windows/scilab-2.4/macros/m2sci/killfuns.sci | f3d46bc119686baf77f0f113e475d0c169db00dc | [
"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 | 424 | sci | killfuns.sci | function fptr=killfuns()
// Copyright INRIA
funs=['list','tlist','exp','cond','xgrid','type','format',..
'qr','lu','maxi','mini','max','min','size','degree']
fptr=[]
kfuns=[]
for f=funs
fp=funptr(f)
if fp<>0 then
fptr=[fptr,funptr(f)]
clearfun(f)
kfuns=[kfuns,f]
end
end
fptr=list(kfuns,fptr)
function restorefuns(fptr)
[funs,fptr]=fptr(1:2)
for k=1:size(funs,'*')
newfun(funs(k),fptr(k))
end
|
284cde0fb7a23cffc6737b906b2e25196f3b2d18 | 449d555969bfd7befe906877abab098c6e63a0e8 | /858/CH4/EX4.21/example_21.sce | f00ef1cb98c16ffb1b01e63c2f07662a60996cae | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 613 | sce | example_21.sce | clc
clear
printf("example 4.21 page number 160\n\n")
//to find the pressure gradient
Q=0.0003 //in m3/s
d=0.05 //in m
A=(3.14*d^2)/4;
u=Q/A;
density=1000; //in kg/m3
viscosity=0.001; //in Pa-s
e=0.3;
dp=0.00125; //particle diameter in m
Re=(dp*u*density)/(viscosity*(1-e));
fm=(150/Re)+1.75;
L=0.5 //in m
delta_Pf=fm*((density*L*u^2)/dp)*((1-e)/e^3); //in Pa
//applying bernoulli's equation, we get
delta_P=delta_Pf-(density*9.8*L);
pressure_gradient=delta_P/(L*1000); //in kPa/m
printf("required pressure gradient = %f kPa/m of packed height",pressure_gradient)
|
a32a15fcedb36541867208084b8d06340b9977b1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1076/CH16/EX16.5/16_5.sce | 41d04e27f422a8e189850e794612400df36ce9e1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 198 | sce | 16_5.sce | clear
clc
l=400
l1=100
l2=250
l3=400
r=.25/1000
I1=100
I2=120
I3=80
V=240
dv=r*((l1*I1)+(l2*I2)+(l3*I3))
Ve=V-dv
mprintf("\nVoltage at end is %.0f V, drop = %.0f V", Ve, dv)
|
8873a1031fa695d071aa5d7e69bf8c9b1728dc9b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2138/CH4/EX4.10.a/EX_4_10_a.sce | bb83ff3d44176b0e9d51917a7f390d9036d8564b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 621 | sce | EX_4_10_a.sce |
//Example 4.10.a//total load of lights and fans
clc;
clear;
close;
lp=50;//no. of light points
lw=60;//wattage of light points
fp=20;//no. of fan points
fw=100;//wattage of fan points
wpp=10;//no. of wall plug points
wppw=60;//wattage of wall plug points
bp=5;//no. of bell points
bpw=40;//wattage of bell points
ppp=8;//power plug points
pppw=5000;//wattage of power plug points
lpw=lp*lw;//wattage of 50 lamps
fpw=fp*fw;//wattage of 20 fans
wpppw=wpp*wppw;//wattage of wall plug points
bpww=bp*bpw;//wattage of bell points
tl=lpw+fpw+wpppw+bpww;//total wattage
disp(tl,"total wattage of lightning load is in watts ")
|
9d49d93cc1fb03c1a66c38c194cc4b9eae04f519 | 449d555969bfd7befe906877abab098c6e63a0e8 | /779/CH9/EX9.3/9_3.sce | f02476362f8c12f7385e92e02b463e769ecfad05 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 244 | sce | 9_3.sce | v = 0.09; vf = 0.001177; vg = 0.09963;
x = (v-vf)/(vg-vf);
hf = 908.79; hfg = 1890.7;
sf = 2.4474; sfg = 3.8935;
h = hf+(x*hfg);
s = sf+(x*sfg);
disp("kJ/kg and kJ/kg K respectively",s,"and",h,"The enthalpy and entropy og the system are") |
c1a304133cd7a83c384666a060392a148b777753 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1427/CH16/EX16.6/16_6.sce | 7e08302bdc1dd9027bc542683c0ddb0775d62c44 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 207 | sce | 16_6.sce | //ques-16.6
//Calculating order of a reaction
clc
t1=50;//half-life initially(in minutes)
t2=25;//new half-life (in minutes)
//a2=a1/2
//t1/t2=(a2/a1)^n-1
n=0;
printf("Reaction is of %d order.",n);
|
781aaa3bdf10512fb4ce26548487fd02ed2786ac | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set5/s_Electrical_Machines_M._V._Despande_833.zip/Electrical_Machines_M._V._Despande_833/CH8/EX8.5/Ex8_5.sce | 30b71a7cf9e5305cad77359c7453d0f893aea81f | [] | 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 | 667 | sce | Ex8_5.sce | errcatch(-1,"stop");mode(2);//Caption: Find (a)Speed at full load torque (b)Speed at double full load torque (c)Stalling torque
//Exa:8.5
;
;
V=250//Voltage of motor(in volts)
R_a=0.5//Armature resistance(in ohms)
n=400//Speed of motor at full load(in r.p.m)
i=30//Current taken by motor(in A)
R=1//Series resistance with armature(in ohms)
E_b1=V-(i*R_a)
E_b2=V-((R_a+R)*i)
N=n*(E_b2/E_b1)
disp(N,'(a)Speed at full load torque(in r.p.m)=')
I=2*i
E_b=V-(I*(R+R_a))
N_1=n*(E_b/E_b1)
disp(N_1,'(b)Speed at double full load torque(in r.p.m)=')
I_ft=V/(R+R_a)
T_stalling=I_ft/i
disp(T_stalling,'(c)Stalling torque=times the full load torque')
exit();
|
70475414a61457b6ee372e0edd83593705d788a8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1976/CH4/EX4.8/Ex4_8.sce | c7b3e778412f2abe8053a28db320763d9ed2f75f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,341 | sce | Ex4_8.sce |
//To Determine the value of resistor connected in series to run the fan at a particular speed
//Page 208
clc;
clear;
Pf=100*(10^3); //Power rating of the fan
f=50; //Supply Frequency
V=400; //Supply Line Voltage
V1=V/sqrt(3); //Phase Voltage
SR=1.4; //Ratio of stator to rotor turns
Rr=0.03; //Rotor Resistance per phase
R2=SR*SR*Rr; //Rotor Resistance referred to the stator
N=240; //Rated Speed
w=2*%pi*N/60; //Angular Frequency
P=24; //number of poles
Ns=120*f/P; //Synchronous Speed
ws=2*%pi*Ns/60; //Synchronous angular Frequency
s=(Ns-N)/Ns; //Slip
T=Pf/w; //Full Load Torque
x2=poly(0,'x2'); //Reactance of Rotor referred to stator, Variable Value
X=T-(3*(V1^2)*R2/(ws*s*(((R2/s)^2)+(x2^2)))); //Polynomial Expression to find X2
X2=roots(X(2)); //Numerical Value of Rotor Resistance
X2=X2(1);
N1=180; //Speed of the fan
s1=(Ns-N1)/Ns; //Slip
T1=T*((N1/N)^2); //Torque
R21=poly(0,'R21'); //Variable Value
Y=T1-(3*(V1^2)*R21/(ws*s1*(((R21/s1)^2)+(X2^2)))); //Polynomial Expression to find R21
R21=roots(Y(2)); //Numerical Value
//R21 = 0.7545054 and 0.0100813
//We have to choose the value of R21 such that it is greater than R2
R21=R21(1);
Rex=(R21-R2)/(SR*SR); //External Resistance
printf('The Value of Resistance to be connected in series so that teh fan runs at 180 rpm is %g ohm\n',Rex)
|
bacc35cbc64f2a35cbfa2adfc7bb0e60eae82020 | 7ade43db106eee8cea7004cef1fa4d23473a4fa0 | /nuvemDeParticulas/nuvemDeParticulas.sce | aa5e6b196be3a342b81cd78807f9f0fd6df775c9 | [] | no_license | samuel-cavalcanti/DCA0115--OTIMIZACAO-DE-SISTEMAS | 834b29a4e9fecfce35570c31a597c2b7067ebc9a | 8d020ff214a24b8300db1b8e64ae4c47b160461c | refs/heads/master | 2020-05-30T18:31:06.261975 | 2019-06-03T03:31:35 | 2019-06-03T03:31:35 | 189,898,949 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 4,538 | sce | nuvemDeParticulas.sce | clear
clc
function pg_best= particle_swarm(problem_size,population_size,epochs)
population = list()
pg_best = new_particle(random_velocity(problem_size),random_position(problem_size))
for i=1:population_size
p_velocity = random_velocity(problem_size)
p_position = random_position(problem_size)
particle = new_particle(p_position,p_velocity)
if particle.cost <= pg_best.cost
pg_best = particle
end
population($+1) = particle
end
for epoch=1:epochs
for i=1:length(population)
population(i) = update_particle(population(i),pg_best,problem_size)
if population(i).cost <= pg_best.cost
pg_best = population(i)
end
end
// print_population(population)
end
endfunction
function particle = new_particle(velocity,position)
particle = tlist(["T_particle","velocity","position","best_pos","cost"])
particle.velocity = velocity
particle.position = position
particle.best_pos = position
particle.cost = evalute_position(position(1),position(2))
endfunction
function value = evalute_position(x,y)
z =-x*sin(sqrt(abs(x)))-y*sin(sqrt(abs(y)))
// r: Rosenbrock's function
r1=(y-x^2)^2+(1-x)^2;
value= z*exp(sin(r1));
endfunction
function particle =update_particle(old_particle,best_particle,problem_size)
velocity = update_speed(old_particle,best_particle,problem_size)
position = update_position(old_particle.position,velocity,problem_size)
particle = new_particle(velocity,position)
old_best_cost = evalute_position(old_particle.best_pos(1),old_particle.best_pos(2))
if particle.cost > old_best_cost then
particle.best_pos = old_particle.best_pos
end
endfunction
function new_velocity = update_speed(old_particle,best_particle,problem_size)
w = 0.5
c_1 = 1.8 // 1.2 1.4 1.8
c_2 = 2 // 1.4 1.8 2.0
reduce = 0.01
limit = problem_size
cognitive_speed =[]
social_speed =[]
inertia = w * old_particle.velocity
for i=1:length(old_particle.position)
r_1 = rand()
r_2 = rand()
cognitive_speed(i) = c_1*r_1*( old_particle.best_pos(i) - old_particle.position(i))
social_speed(i) = c_2*r_2*(best_particle.position(i) - old_particle.position(i) )
end
new_velocity = inertia + cognitive_speed + social_speed
for i=1:length(new_velocity)
if new_velocity(i) > limit(1)
new_velocity(i) = limit(1)
end
if new_velocity(i) < limit(2)
new_velocity(i) = limit(2)
end
end
endfunction
function position= update_position(old_position,velocity,problem_size)
position = velocity +old_position
for i=1:length(position)
if position(i) > problem_size(1)
position(i) = problem_size(1)
end
if position(i) < problem_size(2)
position(i) = problem_size(2)
end
end
endfunction
function velocity = random_velocity(problem_size)
reduce = 0.01
max_value = problem_size(1) * reduce
min_value = problem_size(2) * reduce
velocity = rand(2,1,"uniform")*(max_value - min_value) + min_value
endfunction
function position = random_position(problem_size)
position = rand(2,1,"uniform")*(problem_size(1)-problem_size(2)) + problem_size(2)
endfunction
function print_population(population, epoch)
disp("epoch: " + string(epoch))
for individual=population
disp("cost: "+ string(individual.cost))
end
disp(" ")
endfunction
function test_PSO(population_size,file_name)
problem_size = [500,-500]
epochs = 3000
solutions = list()
csv_matrix = []
for i=1:100
solutions($+1) = particle_swarm(problem_size,population_size,epochs)
csv_matrix($+1) = solutions($).cost
end
csvWrite(csv_matrix,file_name)
disp(file_name + "savend !!")
endfunction
population_size_list = list(4,8,16)
for population_size=population_size_list
file_name = "PSO" + string(population_size) + ".csv"
test_PSO(population_size,file_name)
end
|
597d1aa5f5f8a127416edd22dee140be717f7a29 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1631/CH4/EX4.13/Ex4_13.sce | cfa1ca0b71528f894019ec45e285be1afbcceca0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 314 | sce | Ex4_13.sce | //Caption: Maximum Amplitude
//Example 4.13
//page no 185
//Find Maximum Amplitude
clear;
clc;
fm=3*10^3;
Nyquistrate=2*fm;//Nyquistrate
fs=5*Nyquistrate;//Samplingfrquency
Ts=1/fs;// Sampling Interval
del=0.25;//step size
fm1=2*10^3;
Am=del/(2*%pi*fm1*Ts);
disp("Volts",Am,"Maximum Amplitude ");
|
7426a5478d15a0d841e34234c06c89f5cbfd13e4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1109/CH1/EX1.10/1_10.sce | d1013287f6106014c478b599ff4b968d9a54ef83 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 426 | sce | 1_10.sce | clc;
R=20;L=10*(10^-3);ins=0.1*(10^6);C=.1*(10^-6);w=5000; //ins=insulation resistance
G=1/ins;
Z=R+(%i*w*L);
Y=G+%i*w*C;
Zo=sqrt(Z/Y);
C=real(Zo);
D=imag(Zo);
printf('Input impedance Zo = %f /_%f ohms\n',(abs(Zo)),round(((atan(imag(Zo),real(Zo))*180/%pi))*10)/10);
//the difference in result of Zo is due to erroneous value in textbook.
disp("The difference in result of Zo is due to erroneous value in textbook")
|
8abf0c420e8c0cc43b006236b3aca39a461ace49 | d928b1aab410da87208944a0d34890254d7b7897 | /Design Exp 3/a/PC8Bit.tst | e68cacebbea2fb24639db308c0f6c42d77b367e2 | [] | no_license | karthikswarna/CS4110-Computer-System-Design-Lab | e19a0d9d69ca666acfe054b5058e7355a32a62fe | 2fd40644f2dbf79624a736f267aecf057477e6dc | refs/heads/master | 2023-02-06T16:11:02.458719 | 2020-12-28T08:31:30 | 2020-12-28T08:31:30 | 292,209,978 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,180 | tst | PC8Bit.tst | load PC8Bit.hdl,
output-file PC8Bit.out,
compare-to PC8Bit.cmp,
output-list time%S1.4.1 in%D1.6.1 reset%B2.1.2 load%B2.1.2 inc1%B2.1.2 inc0%B2.1.2 out%D1.6.1;
set in 0,
set reset 0,
set load 0,
set inc1 0,
set inc0 0,
tick,
output;
tock,
output;
set inc0 1,
tick,
output;
tock,
output;
set in 96,
set inc1 1,
tick,
output;
tock,
output;
set load 1,
tick,
output;
tock,
output;
set load 0,
tick,
output;
tock,
output;
set inc0 0,
tick,
output;
tock,
output;
set in 123,
set load 1,
set inc1 0,
tick,
output;
tock,
output;
set reset 1,
tick,
output;
tock,
output;
set reset 0,
set inc1 1,
set inc0 1,
tick,
output;
tock,
output;
set reset 1,
tick,
output;
tock,
output;
set reset 0,
set load 0,
set inc1 0,
tick,
output;
tock,
output;
set reset 1,
set inc1 1,
tick,
output;
tock,
output;
set in 0,
set reset 0,
set load 1,
tick,
output;
tock,
output;
set load 0,
set inc0 0,
tick,
output;
tock,
output;
set in 22,
set reset 1,
set inc1 0,
tick,
output;
tock,
output;
set in 0,
set reset 0,
tick,
output;
tock,
output; |
c9928ccceed7a5dd3cf19789974851b92b3c6e8b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1628/CH15/EX15.3/Ex15_3.sce | 6adebc0efa8c80a3d60a6b13c4ee73bb0fe007e1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 529 | sce | Ex15_3.sce |
// Examle 15.3
p=6; // No.Of poles
f=50; // Frequency
Ns=(120*f)/p; // Synchronous speed
disp(' The Synchronous Speed (Ns) = '+string(Ns)+' rpm');
fr=2; // Frequency of rotor at full-load
s=fr/f; // Slip at full-load
disp(' the Full Load Slip (s) = '+string(s*100)+' %');
N=Ns*(1-s); // The Speed of Rotor (fr)
disp(' The Speed of Rotor (fr) = '+string(N)+' rpm');
// p 594 15.3
|
d0c345c9d8a2af7a472c248ec245e261fb8a78dd | 449d555969bfd7befe906877abab098c6e63a0e8 | /3886/CH9/EX9.17/9_17.sce | c396c0e98a3f6fb06f0c45c0e0b260aae33d987e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 457 | sce | 9_17.sce | //moment of inertia
//refer fig.9.42
sumAiyi=(600*15)*((600/2)+20)+140*10*2*(70+30)+150*10*2*(5+20)+400*20*10 //mm^3
A=600*15+140*10*2+150*10*2+400*20 //mm^2
ybar=sumAiyi/A //mm
Ixx=((15*(600^3))/(12))+(600*15*((145.39-320)^2))+((10*2*(140^3))/(12))+(1400*2*((145.39-100)^2))+((150*2*(10^3))/(12))+(1500*2*((145.39-15)^2))+((400*(20^3))/(12))+(400*20*((145.39-10)^2))
printf("Ixx=%.2f mm^4",Ixx)
//The answer provided in the textbook is wrong
|
9485911e5e6c26fd1c989b086986c5d62f6454d4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1862/CH4/EX4.7/C4P7.sce | 793980ec44b3ddc2b00515b88a1f9882f6893bca | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,235 | sce | C4P7.sce |
clc
//to find velocity of plane with respect to ground
//to find compass reading if pilot wishes to fly due east
// GIVEN::
//refer to figure 4-18(a),(b) from page no.77
//speed of air on the indicator
V_PA =215//in km/h
//velocity of wind blowing due north
V_AG = 65//in km/h
// SOLUTION:
//magnitude of velocity of plane with respect to ground
V_PG1 = sqrt(V_PA^2 + V_AG^2)//in km/h
//direction of plane
//angle made by the plane with east direction
alpha = atand(V_AG/V_PA)//in degrees
//magnitude of velocity of plane if pilot wishes to fly due east
//now velocity of plane with respect to groung points east
V_PG2 = sqrt(V_PA^2 - V_AG^2)//in km/h
//direction of plane
//angle made by the plane with east direction
bita = asind(V_AG/V_PA)//in degrees
V_PG1 = round(V_PG1)
V_PG2 = round(V_PG2)
printf ("\n\n Magnitude of velocity of plane with respect to ground V_PG1 = \n\n %3i km/h",V_PG1);
printf ("\n\n Angle made by the plane with east direction alpha = \n\n %.1f degrees",alpha);
printf ("\n\n Magnitude of velocity of plane if pilot wishes to fly due east V_PG2 = \n\n %3i km/h",V_PG2);
printf ("\n\n Angle made by the plane with east direction bita = \n\n %.1f degrees",bita);
|
89f32d5580332a4cabade6cafd93c1ea112bf9c8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3432/CH6/EX6.18/Ex6_18.sce | 0ec43ba469f75f9b8f2d0694697504ee97cb4801 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,146 | sce | Ex6_18.sce | //Example 6.18
//Lag compensation for DC motor.
xdel(winsid())//close all graphics Windows
clear;
clc;
//------------------------------------------------------------------
//System transfer function
s=poly(0,'s');
g=1/s/(s+1);
K=10; //DC gain
KGs=syslin('c',K*g);
//Lag compensator
numD=10*s+1; //0.1
denD=100*s+1; //0.01
D=numD/denD;
Ds=syslin('c',D);
KGDs=Ds*KGs; //compensated system
//The bode plot of the system
bode([KGs;KGDs],0.001/2/%pi,10/2/%pi,['KG(s)';'D(s)G(s)'],"rad");
exec .\fig_settings.sci; // custom script for setting figure properties
title('Frequency response of lag-compensation design...
of DC motor','fontsize',3)
//------------------------------------------------------------------
//step response
//closed loop system
Gc=KGDs/(KGDs+1);
figure;
t=0:0.05:50;
v=csim('step',t,Gc);
plot(t,v,2)
//Title, labels and grid to the figure
exec .\fig_settings.sci; // custom script for setting figure properties
title('Step response for Lag-compensation design...
of DC motor','fontsize',3)
xlabel('Time t (sec.)','fontsize',2)
ylabel('y','fontsize',2)
//------------------------------------------------------------------
|
5a5d41f60e59bcdbe6f5bcbd2cda87beca1faac6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /38/CH3/EX3.2/2.sce | 62fa0279d676bc7ed123efd52c0b8fd7f5e68e79 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 205 | sce | 2.sce | // Caption: Finding magnetic stored energy
close;
clc;
syms x d;
constt=0.5*1000^2*4*%pi*10^-7*0.15*0.1*10^2/(2*0.002);
W_fld=constt*(1-x/d);//in joules
disp(W_fld,'magnetic stored energy=');
|
8cac723e2900cb9835380dc2ee04d57549774724 | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/rc2is/rc2is2.sce | f4efcb149dd0385face0e64baab1d3a9429e91c9 | [] | no_license | deecube/fosseetesting | ce66f691121021fa2f3474497397cded9d57658c | e353f1c03b0c0ef43abf44873e5e477b6adb6c7e | refs/heads/master | 2021-01-20T11:34:43.535019 | 2016-09-27T05:12:48 | 2016-09-27T05:12:48 | 59,456,386 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 75 | sce | rc2is2.sce | //check o/p for empty i/p vector
k=[];
a=rc2is(k);
disp(a);
//output
// []
|
01846c26f273ce787060323bfe42f9799459ec9b | 449d555969bfd7befe906877abab098c6e63a0e8 | /534/CH3/EX3.1/3_1_Human_Heat_Loss_part2.sce | 7043393fc825c791480368402b69900afd34b18f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,720 | sce | 3_1_Human_Heat_Loss_part2.sce | clear;
clc;
printf('FUNDAMENTALS OF HEAT AND MASS TRANSFER \n Incropera / Dewitt / Bergman / Lavine \n EXAMPLE 3.1 Page 104 \n') //Example 3.1
// Find Skin Temperature & Aerogel Insulation Thickness
A=1.8; // [m^2] Area for Heat transfer i.e. both surfaces
Ti = 35+273; //[K] - Inside Surface Temperature of Body
Tsurr = 10+273; //[K] - Temperature of surrounding
Tf = 283; //[K] - Temperature of Fluid Flow
e=.95; // Emissivity of Surface
Lst=.003; //[m] - Thickness of Skin
kst=.3; // [W/m.K] Effective Thermal Conductivity of Body
kins = .014; // [W/m.K] Effective Thermal Conductivity of Aerogel Insulation
hr = 5.9; //[W/m^2.k] - Natural Thermal Convectivity from body to air
stfncnstt=5.67*10^(-8); // [W/m^2.K^4] - Stefan Boltzmann Constant
q = 100; //[W] Given Heat rate
//Using Conducion Basic Eq 3.19
Rtot = (Ti-Tsurr)/q;
//Also
//Rtot=Lst/(kst*A) + Lins/(kins*A)+(h*A + hr*A)^-1
//Rtot = 1/A*(Lst/kst + Lins/kins +(1/(h+hr)))
//Thus
//For Air,
h=2; //[W/m^2.k] - Natural Thermal Convectivity from body to air
Lins1 = kins * (A*Rtot - Lst/kst - 1/(h+hr));
//For Water,
h=200; //[W/m^2.k] - Natural Thermal Convectivity from body to air
Lins2 = kins * (A*Rtot - Lst/kst - 1/(h+hr));
Tsa=305; //[K] Body Temperature Assumed
//Temperature of Skin is same in both cases as Heat Rate is same
//q=(kst*A*(Ti-Ts))/Lst
Ts = Ti - q*Lst/(kst*A);
//Also from eqn of effective resistance Rtot F
printf("\n\n (I) In presence of Air, Insulation Thickness = %.1f mm",Lins1*1000)
printf("\n (II) In presence of Water, Insulation Thickness = %.1f mm",Lins2*1000);
printf("\n\n Temperature of Skin = %.2f degC",Ts-273);
//END |
6f5f9ab4d48419a7fdbe61d4c193408ca092b5fb | 931df7de6dffa2b03ac9771d79e06d88c24ab4ff | /AYYY LMAO.sce | 62eb35729912c73faa88dec3ed5658be75b6158b | [] | no_license | MBHuman/Scenarios | be1a722825b3b960014b07cda2f12fa4f75c7fc8 | 1db6bfdec8cc42164ca9ff57dd9d3c82cfaf2137 | refs/heads/master | 2023-01-14T02:10:25.103083 | 2020-11-21T16:47:14 | 2020-11-21T16:47:14 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 92,698 | sce | AYYY LMAO.sce | Name=AYYY LMAO
PlayerCharacters=Strafer
BotCharacters=Watcher Bot Long Strafes.bot
IsChallenge=true
Timelimit=60.0
PlayerProfile=Strafer
AddedBots=Watcher Bot Long Strafes.bot;Watcher Bot Long Strafes.bot;Watcher Bot Long Strafes.bot
PlayerMaxLives=0
BotMaxLives=0;0;0
PlayerTeam=1
BotTeams=2;2;2
MapName=mwmod.map
MapScale=2.0
BlockProjectilePredictors=true
BlockCheats=true
InvinciblePlayer=false
InvincibleBots=false
Timescale=1.0
BlockHealthbars=false
TimeRefilledByKill=0.0
ScoreToWin=1000.0
ScorePerDamage=1.0
ScorePerKill=0.0
ScorePerMidairDirect=0.0
ScorePerAnyDirect=0.0
ScorePerTime=0.0
ScoreLossPerDamageTaken=0.0
ScoreLossPerDeath=0.0
ScoreLossPerMidairDirected=0.0
ScoreLossPerAnyDirected=0.0
ScoreMultAccuracy=false
ScoreMultDamageEfficiency=false
ScoreMultKillEfficiency=false
GameTag=FPS, Flick, Track
WeaponHeroTag=Manwing
DifficultyTag=3
AuthorsTag=faiNt`
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=true
BlockFCT=false
Description=Shoot the heads... Ayyy lmao!
GameVersion=1.0.7.2
ScorePerDistance=0.0
[Aim Profile]
Name=At Feet
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=-200.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Aim Profile]
Name=Low Skill At Feet
MinReactionTime=0.35
MaxReactionTime=0.45
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=20.0
TrackSpeed=3.0
TrackError=5.0
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=60.0
ShootFOV=25.0
VerticalAimOffset=-200.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Aim Profile]
Name=Low Skill
MinReactionTime=0.35
MaxReactionTime=0.45
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=20.0
TrackSpeed=3.0
TrackError=5.0
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=60.0
ShootFOV=25.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Aim Profile]
Name=Default
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Bot Profile]
Name=Watcher Bot Long Strafes
DodgeProfileNames=Oppose Long Strafe;Long Strafe FB;Long Strafe
DodgeProfileWeights=3.0;1.0;1.0
DodgeProfileMaxChangeTime=2.0
DodgeProfileMinChangeTime=1.5
WeaponProfileWeights=1.0;1.0;2.0;1.0;0.0;0.0;0.0;0.0
AimingProfileNames=At Feet;Low Skill At Feet;Low Skill;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=Watcher
SeeThroughWalls=false
NoDodging=false
NoAiming=false
[Character Profile]
Name=Strafer
MaxHealth=300.0
WeaponProfileNames=Manwing;LG;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=80.000
HeadshotOnly=false
DamageKnockbackFactor=4.0
MovementType=Base
MaxSpeed=700.0
MaxCrouchSpeed=500.0
Acceleration=5000.0
AirAcceleration=16000.0
Friction=4.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=true
CanJumpFromCrouch=false
EnemyBodyColor=X=0.771 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=1.000 Y=0.888 Z=0.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cylindrical
MainBBHeight=320.0
MainBBRadius=58.0
MainBBHasHead=false
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=320.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
[Character Profile]
Name=Watcher
MaxHealth=600.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.1
MaxRespawnDelay=5.0
StepUpHeight=45.0
CrouchHeightModifier=0.69
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=20.000
HeadshotOnly=true
DamageKnockbackFactor=3.0
MovementType=Base
MaxSpeed=700.0
MaxCrouchSpeed=270.0
Acceleration=10000.0
AirAcceleration=16000.0
Friction=100.0
BrakingFrictionFactor=0.0
JumpVelocity=300.0
Gravity=1.0
AirControl=0.16
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=true
CanJumpFromCrouch=false
EnemyBodyColor=X=0.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=0.888 Z=0.000
TeamBodyColor=X=1.000 Y=0.888 Z=0.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cylindrical
MainBBHeight=100.0
MainBBRadius=26.0
MainBBHasHead=true
MainBBHeadRadius=20.0
MainBBHeadOffset=40.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=160.0
ProjBBRadius=26.0
ProjBBHasHead=false
ProjBBHeadRadius=20.0
ProjBBHeadOffset=15.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.1
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
[Dodge Profile]
Name=Oppose Long Strafe
MaxTargetDistance=10000.0
MinTargetDistance=60.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.25
MaxLRTimeChange=2.0
MinFBTimeChange=0.25
MaxFBTimeChange=0.5
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.18
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=1.0
DamageReactionResetTimer=0.1
JumpFrequency=0.0
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.18
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.8
BlockedMovementReactionMin=0.05
BlockedMovementReactionMax=0.1
[Dodge Profile]
Name=Long Strafe FB
MaxTargetDistance=100000.0
MinTargetDistance=60.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.25
MaxLRTimeChange=2.0
MinFBTimeChange=0.25
MaxFBTimeChange=0.5
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.18
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.0
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.8
BlockedMovementReactionMin=0.05
BlockedMovementReactionMax=0.1
[Dodge Profile]
Name=Long Strafe
MaxTargetDistance=25000.0
MinTargetDistance=60.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.25
MaxLRTimeChange=2.0
MinFBTimeChange=0.8
MaxFBTimeChange=1.0
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.0
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.8
BlockedMovementReactionMin=0.05
BlockedMovementReactionMax=0.1
[Weapon Profile]
Name=Manwing
Type=Hitscan
ShotsPerClick=1
DamagePerShot=200.0
KnockbackFactor=0.1
TimeBetweenShots=0.29
Pierces=false
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=8
AmmoPerShot=1
ReloadTimeFromEmpty=2.1
ReloadTimeFromPartial=2.1
DamageFalloffStartDistance=5000.0
DamageFalloffStopDistance=5000.0
DamageAtMaxRange=200.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.5
WallParticleEffect=None
HitParticleEffect=None
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-80.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.1
RecoilNegatable=true
DecalType=1
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=8
CancelReloadOnKill=true
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Overwatch
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,0.0
SpreadSCA=1.0,1.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,1.0,-1.0,0.0
SpreadSSH=1.0,1.0,-1.0,0.0
SpreadSCH=1.0,1.0,-1.0,0.0
SpreadMSH=1.0,1.0,-1.0,0.0
SpreadMCH=1.0,1.0,-1.0,0.0
MaxRecoilUp=4.0
MinRecoilUp=4.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.025
TimeToRecoilReset=0.29
AAMode=2
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=0.5
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=true
TriggerBotDelay=0.01
TriggerBotFOV=0.1
StickyLock=false
HeadLock=true
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=LG
Type=Hitscan
ShotsPerClick=1
DamagePerShot=1.0
KnockbackFactor=0.0
TimeBetweenShots=0.046
Pierces=false
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=1.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=7.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.05
WallParticleEffect=None
HitParticleEffect=None
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-80.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=false
DecalType=0
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=true
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=1.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.1
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Clamped Horizontal
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,0.0
SpreadSCA=1.0,1.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,1.0,-1.0,0.0
SpreadSSH=1.0,1.0,-1.0,0.0
SpreadSCH=1.0,1.0,-1.0,0.0
SpreadMSH=1.0,1.0,-1.0,0.0
SpreadMCH=1.0,1.0,-1.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Map Data]
reflex map version 8
global
entity
type WorldSpawn
brush
vertices
880.000000 -0.000000 -496.000000
880.000000 0.000000 -512.000000
880.000000 288.000000 -512.000000
880.000000 288.000000 -496.000000
688.000000 288.000000 -512.000000
688.000000 -0.000000 -512.000000
688.000000 -0.000000 -496.000000
688.000000 288.000000 -496.000000
faces
0.000000 0.000000 2.000000 36.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 36.000000 -0.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 2.000000 36.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 36.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
864.000000 -0.000000 512.000000
864.000000 0.000000 496.000000
864.000000 288.000000 496.000000
864.000000 288.000000 512.000000
688.000000 288.000000 496.000000
688.000000 -0.000000 496.000000
688.000000 0.000000 512.000000
688.000000 288.000000 512.000000
faces
0.000000 0.000000 2.000000 36.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 36.000000 -0.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 2.000000 36.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 36.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
192.000000 -0.000000 496.000000
192.000000 0.000000 -496.000000
192.000000 16.000000 -496.000000
192.000000 16.000000 496.000000
176.000000 16.000000 -496.000000
176.000000 -0.000000 -496.000000
176.000000 0.000000 496.000000
176.000000 16.000000 496.000000
faces
0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
192.000000 16.000000 496.000000
192.000000 16.000000 -496.000000
192.000000 240.000000 -496.000000
192.000000 240.000000 496.000000
176.000000 240.000000 -496.000000
176.000000 16.000000 -496.000000
176.000000 16.000000 496.000000
176.000000 240.000000 496.000000
faces
0.000000 -6.000000 2.000000 28.000000 -0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -6.000000 2.000000 28.000000 -0.000000 4 5 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 -6.000000 2.000000 28.000000 -0.000000 7 6 0 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -6.000000 2.000000 28.000000 -0.000000 1 5 4 2 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 2.000000 2.000000 -0.000000 2 4 7 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 2.000000 2.000000 -0.000000 6 5 1 0 0x00000000 internal/editor/textures/editor_clip
brush
vertices
864.000000 -0.000000 384.000000
864.000000 0.000000 -384.000000
864.000000 144.000000 -384.000000
864.000000 144.000000 384.000000
688.000000 144.000000 -384.000000
688.000000 -0.000000 -384.000000
688.000000 -0.000000 384.000000
688.000000 144.000000 384.000000
faces
0.000000 0.000000 96.000000 18.000000 0.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 96.000000 18.000000 -0.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 2.666660 18.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 2.666660 18.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 2.666660 96.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 2.666660 96.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
450.000000 -0.000000 496.000000
450.000000 0.000000 384.000000
450.000000 16.000000 384.000000
450.000000 16.000000 496.000000
432.000000 16.000000 384.000000
432.000000 -0.000000 384.000000
432.000000 0.000000 496.000000
432.000000 16.000000 496.000000
faces
0.000000 0.000000 2.000000 2.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 -0.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 2.285720 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 2.285720 2.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 2.285720 2.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 2.285720 2.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
469.000000 -0.000000 496.000000
469.000000 0.000000 384.000000
469.000000 16.000000 384.000000
469.000000 32.000000 400.000000
469.000000 32.000000 496.000000
450.000000 32.000000 400.000000
450.000000 16.000000 384.000000
450.000000 -0.000000 384.000000
450.000000 0.000000 496.000000
450.000000 32.000000 496.000000
faces
0.000000 -1.000000 3.000000 4.571420 -0.000000 0 1 2 3 4 0x00000000 __TB_empty
0.000000 -1.000000 3.000000 4.571420 -0.000000 5 6 7 8 9 0x00000000 __TB_empty
0.000000 0.000000 1.142858 4.571420 0.000000 9 8 0 4 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 -0.000000 6 5 3 2 0x00000000 __TB_empty
0.000000 0.000000 4.000000 2.000000 -0.000000 1 7 6 2 0x00000000 __TB_empty
0.000000 0.000000 1.142858 3.000000 -0.000000 3 5 9 4 0x00000000 __TB_empty
0.000000 0.000000 1.142858 3.000000 0.000000 8 7 1 0 0x00000000 __TB_empty
brush
vertices
487.000000 -0.000000 496.000000
487.000000 0.000000 384.000000
487.000000 48.000000 384.000000
487.000000 48.000000 496.000000
469.000000 48.000000 384.000000
469.000000 -0.000000 384.000000
469.000000 0.000000 496.000000
469.000000 48.000000 496.000000
faces
0.000000 0.000000 3.000000 6.571420 -0.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 3.000000 6.571420 -0.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 1.142858 6.571420 0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 1.142858 6.571420 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 1.142858 3.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 1.142858 3.000000 0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
656.000000 -0.000000 496.000000
656.000000 0.000000 384.000000
656.000000 96.000000 384.000000
656.000000 96.000000 496.000000
523.000000 96.000000 384.000000
523.000000 -0.000000 384.000000
523.000000 0.000000 496.000000
523.000000 96.000000 496.000000
faces
0.000000 0.000000 3.000000 14.571420 -0.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 3.000000 12.571420 -0.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 4.142860 12.571420 0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 4.142860 12.571420 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 4.142860 3.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 4.142860 3.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
469.000000 -0.000000 -384.000000
469.000000 0.000000 -496.000000
469.000000 32.000000 -496.000000
469.000000 32.000000 -400.000000
469.000000 16.000000 -384.000000
450.000000 32.000000 -400.000000
450.000000 32.000000 -496.000000
450.000000 -0.000000 -496.000000
450.000000 -0.000000 -384.000000
450.000000 16.000000 -384.000000
faces
0.000000 -1.000000 3.000000 -4.571420 180.000000 0 1 2 3 4 0x00000000 __TB_empty
0.000000 -1.000000 3.000000 -4.571420 180.000000 5 6 7 8 9 0x00000000 __TB_empty
0.000000 0.000000 2.000000 -2.000000 -0.000000 3 5 9 4 0x00000000 __TB_empty
0.000000 0.000000 4.000000 2.000000 -0.000000 9 8 0 4 0x00000000 __TB_empty
0.000000 0.000000 1.142858 4.571420 -0.000000 1 7 6 2 0x00000000 __TB_empty
0.000000 0.000000 1.142858 -3.000000 -0.000000 2 6 5 3 0x00000000 __TB_empty
0.000000 0.000000 1.142858 -3.000000 0.000000 8 7 1 0 0x00000000 __TB_empty
brush
vertices
450.000000 -0.000000 -384.000000
450.000000 0.000000 -496.000000
450.000000 16.000000 -496.000000
450.000000 16.000000 -384.000000
432.000000 16.000000 -496.000000
432.000000 -0.000000 -496.000000
432.000000 0.000000 -384.000000
432.000000 16.000000 -384.000000
faces
0.000000 0.000000 2.000000 -2.000000 180.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 -2.000000 180.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 2.285720 2.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 2.285720 2.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 2.285720 -2.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 2.285720 -2.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
487.000000 -0.000000 -384.000000
487.000000 0.000000 -496.000000
487.000000 48.000000 -496.000000
487.000000 48.000000 -384.000000
469.000000 48.000000 -496.000000
469.000000 -0.000000 -496.000000
469.000000 0.000000 -384.000000
469.000000 48.000000 -384.000000
faces
0.000000 0.000000 3.000000 -6.571420 180.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 3.000000 -6.571420 180.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 1.142858 6.571420 -0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 1.142858 6.571420 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 1.142858 -3.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 1.142858 -3.000000 0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
656.000000 -0.000000 -384.000000
656.000000 0.000000 -496.000000
656.000000 96.000000 -496.000000
656.000000 96.000000 -384.000000
523.000000 96.000000 -496.000000
523.000000 -0.000000 -496.000000
523.000000 0.000000 -384.000000
523.000000 96.000000 -384.000000
faces
0.000000 0.000000 3.000000 -14.571420 180.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 3.000000 -12.571420 180.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 4.142860 12.571420 -0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 4.142860 12.571420 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 4.142860 -3.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 4.142860 -3.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
864.000000 -0.000000 -384.000000
864.000000 0.000000 -496.000000
864.000000 96.000000 -496.000000
864.000000 96.000000 -384.000000
656.000000 96.000000 -496.000000
656.000000 -0.000000 -496.000000
656.000000 -0.000000 -384.000000
656.000000 96.000000 -384.000000
faces
0.000000 0.000000 14.000000 12.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 14.000000 12.000000 -0.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 3.250000 12.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 3.250000 12.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 3.250000 14.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 3.250000 14.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
880.000000 -0.000000 496.000000
880.000000 0.000000 384.000000
880.000000 96.000000 384.000000
880.000000 96.000000 496.000000
672.000000 96.000000 384.000000
672.000000 -0.000000 384.000000
672.000000 0.000000 496.000000
672.000000 96.000000 496.000000
faces
0.000000 1.000000 14.000000 -12.000000 180.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 1.000000 14.000000 -12.000000 180.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 1.000000 3.250000 12.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 1.000000 3.250000 12.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 3.250000 -14.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 3.250000 -14.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
688.000000 -0.000000 384.000000
688.000000 0.000000 -384.000000
688.000000 96.000000 -384.000000
688.000000 96.000000 384.000000
464.000000 96.000000 -384.000000
464.000000 -0.000000 -384.000000
464.000000 0.000000 384.000000
464.000000 96.000000 384.000000
faces
0.000000 0.000000 96.000000 12.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 96.000000 12.000000 -0.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 96.000000 12.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 96.000000 12.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 2.000000 96.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 96.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
864.000000 128.000000 496.000000
864.000000 128.000000 384.000000
864.000000 144.000000 384.000000
864.000000 144.000000 496.000000
736.000000 144.000000 384.000000
736.000000 128.000000 384.000000
736.000000 128.000000 496.000000
736.000000 144.000000 496.000000
faces
0.000000 0.000000 7.000000 2.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 7.000000 2.000000 -0.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 16.000000 2.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 16.000000 2.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 16.000000 7.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 16.000000 7.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
688.000000 96.000000 496.000000
688.000000 96.000000 384.000000
720.000000 112.000000 384.000000
720.000000 112.000000 496.000000
736.000000 128.000000 384.000000
736.000000 128.000000 496.000000
736.000000 144.000000 384.000000
736.000000 144.000000 496.000000
704.000000 128.000000 384.000000
704.000000 128.000000 496.000000
656.000000 96.000000 384.000000
656.000000 96.000000 496.000000
faces
0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 0.000000 2 4 5 3 0x00000000 __TB_empty
0.000000 0.000000 1.555556 2.000000 -0.000000 4 6 7 5 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 0.000000 6 8 9 7 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 0.000000 8 10 11 9 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 -0.000000 5 7 9 11 0 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 -0.000000 1 10 8 6 4 2 0x00000000 __TB_empty
0.000000 0.000000 4.000000 1.750000 -0.000000 11 10 1 0 0x00000000 __TB_empty
brush
vertices
688.000000 -0.000000 -496.000000
688.000000 0.000000 -512.000000
688.000000 288.000000 -512.000000
688.000000 288.000000 -496.000000
176.000000 288.000000 -512.000000
176.000000 -0.000000 -512.000000
176.000000 0.000000 -496.000000
176.000000 288.000000 -496.000000
faces
0.000000 0.000000 2.000000 36.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 36.000000 0.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 2.000000 36.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 36.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
688.000000 -0.000000 512.000000
688.000000 0.000000 496.000000
688.000000 288.000000 496.000000
688.000000 288.000000 512.000000
176.000000 288.000000 496.000000
176.000000 -0.000000 496.000000
176.000000 0.000000 512.000000
176.000000 288.000000 512.000000
faces
0.000000 0.000000 2.000000 36.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 36.000000 0.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 2.000000 36.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 36.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
-32.000000 -0.000000 512.000000
-32.000000 0.000000 -512.000000
-32.000000 112.000000 -512.000000
-32.000000 112.000000 512.000000
-256.000000 112.000000 -512.000000
-256.000000 -0.000000 -512.000000
-256.000000 0.000000 512.000000
-256.000000 112.000000 512.000000
faces
0.000000 0.000000 128.000000 14.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 128.000000 14.000000 -0.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 6.666660 14.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 6.666660 14.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 6.666660 128.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 6.666660 128.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
-256.000000 112.000000 -512.000000
-256.000000 112.000000 512.000000
-256.000000 160.000000 512.000000
-256.000000 160.000000 -512.000000
-240.000000 160.000000 512.000000
-240.000000 112.000000 512.000000
-240.000000 112.000000 -512.000000
-240.000000 160.000000 -512.000000
faces
0.000000 0.000000 2.000000 6.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 6.000000 -0.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 2.000000 6.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 6.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 2.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
258.000000 400.000000 -380.000000
258.000000 400.000000 -572.000000
258.000000 452.000000 -572.000000
258.000000 452.000000 -380.000000
242.000000 452.000000 -572.000000
242.000000 400.000000 -572.000000
242.000000 400.000000 -380.000000
242.000000 452.000000 -380.000000
faces
0.000000 -6.000000 2.000000 28.000000 -0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -6.000000 2.000000 28.000000 -0.000000 4 5 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 -6.000000 2.000000 28.000000 -0.000000 7 6 0 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -6.000000 2.000000 28.000000 -0.000000 1 5 4 2 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 2.000000 2.000000 -0.000000 2 4 7 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 2.000000 2.000000 -0.000000 6 5 1 0 0x00000000 internal/editor/textures/editor_clip
brush
vertices
316.000000 10.000000 140.000000
358.000000 0.000000 154.000000
342.000000 10.000000 112.000000
298.000000 0.000000 154.000000
358.000000 0.000000 94.000000
298.000000 0.000000 94.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 1 3 5 0x00000000
brush
vertices
316.000000 10.000000 266.000000
358.000000 0.000000 280.000000
342.000000 10.000000 238.000000
298.000000 0.000000 280.000000
358.000000 0.000000 220.000000
298.000000 0.000000 220.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 1 3 5 0x00000000
brush
vertices
296.000000 0.000000 496.000000
296.000000 0.000000 -496.000000
296.000000 236.000000 -496.000000
296.000000 236.000000 496.000000
292.000000 236.000000 -496.000000
292.000000 0.000000 -496.000000
292.000000 0.000000 496.000000
292.000000 236.000000 496.000000
faces
0.000000 -6.000000 2.000000 28.000000 -0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -6.000000 2.000000 28.000000 -0.000000 4 5 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 -6.000000 2.000000 28.000000 -0.000000 7 6 0 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -6.000000 2.000000 28.000000 -0.000000 1 5 4 2 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 2.000000 2.000000 -0.000000 2 4 7 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 2.000000 2.000000 -0.000000 6 5 1 0 0x00000000 internal/editor/textures/editor_clip
brush
vertices
364.000000 0.000000 494.000000
364.000000 0.000000 -498.000000
364.000000 192.000000 -498.000000
364.000000 192.000000 494.000000
360.000000 192.000000 -498.000000
360.000000 0.000000 -498.000000
360.000000 0.000000 494.000000
360.000000 192.000000 494.000000
faces
0.000000 -6.000000 2.000000 28.000000 -0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -6.000000 2.000000 28.000000 -0.000000 4 5 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 -6.000000 2.000000 28.000000 -0.000000 7 6 0 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -6.000000 2.000000 28.000000 -0.000000 1 5 4 2 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 2.000000 2.000000 -0.000000 2 4 7 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 2.000000 2.000000 -0.000000 6 5 1 0 0x00000000 internal/editor/textures/editor_clip
brush
vertices
432.000000 0.000000 496.000000
432.000000 0.000000 -496.000000
432.000000 172.000000 -496.000000
432.000000 172.000000 496.000000
428.000000 172.000000 -496.000000
428.000000 0.000000 -496.000000
428.000000 0.000000 496.000000
428.000000 172.000000 496.000000
faces
0.000000 -6.000000 2.000000 28.000000 -0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -6.000000 2.000000 28.000000 -0.000000 4 5 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 -6.000000 2.000000 28.000000 -0.000000 7 6 0 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -6.000000 2.000000 28.000000 -0.000000 1 5 4 2 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 2.000000 2.000000 -0.000000 2 4 7 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 2.000000 2.000000 -0.000000 6 5 1 0 0x00000000 internal/editor/textures/editor_clip
brush
vertices
292.000000 0.000000 132.000000
292.000000 52.000000 132.000000
192.000015 52.000000 132.000061
192.000000 0.000000 -55.999931
192.000015 0.000000 132.000061
291.999939 0.000000 -55.999931
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 5 0x00000000
brush
vertices
192.000000 0.000000 132.000000
192.000000 52.000000 132.000000
292.000000 52.000000 132.000000
292.000000 0.000000 320.000000
292.000000 0.000000 132.000000
192.000000 0.000000 320.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 5 0x00000000
brush
vertices
428.000000 0.000000 56.000000
364.000000 0.000000 -38.000000
428.000000 19.999998 -38.000000
364.000000 0.000000 56.000000
428.000000 0.000000 -38.000000
364.000000 19.999998 -38.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
364.000000 0.000000 -132.000000
428.000000 0.000000 -38.000061
364.000031 19.999998 -38.000092
428.000031 0.000000 -131.999969
364.000031 0.000000 -38.000092
428.000000 19.999998 -38.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
292.000000 0.000000 -394.000000
192.000000 0.000000 -496.000000
292.000000 50.000000 -496.000000
192.000000 0.000000 -394.000000
292.000000 0.000000 -496.000000
192.000000 50.000000 -496.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
480.000000 96.000000 336.000000
480.000000 96.000000 -496.000000
480.000000 192.000000 -496.000000
480.000000 192.000000 336.000000
464.000000 192.000000 -496.000000
464.000000 96.000000 -496.000000
464.000000 96.000000 336.000000
464.000000 192.000000 336.000000
faces
1.000000 -22.000000 84.000000 12.000000 -0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
1.000000 -22.000000 84.000000 12.000000 -0.000000 4 5 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 -22.000000 2.000000 12.000000 -0.000000 7 6 0 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -22.000000 2.000000 12.000000 -0.000000 1 5 4 2 0x00000000 internal/editor/textures/editor_clip
0.000000 -1.000000 2.000000 84.000000 -0.000000 2 4 7 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -1.000000 2.000000 84.000000 -0.000000 6 5 1 0 0x00000000 internal/editor/textures/editor_clip
brush
vertices
523.000000 -0.000000 -384.000000
523.000000 0.000000 -496.000000
523.000000 96.000000 -496.000000
523.000000 96.000000 -384.000000
505.000000 96.000000 -496.000000
505.000000 -0.000000 -496.000000
505.000000 0.000000 -384.000000
505.000000 96.000000 -384.000000
faces
0.000000 0.000000 3.000000 -10.571420 180.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 3.000000 -10.571420 180.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 1.142858 10.571420 -0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 1.142858 10.571420 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 1.142858 -3.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 1.142858 -3.000000 0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
480.000000 156.000000 496.000000
488.000000 156.000000 496.000000
488.000000 156.000000 -496.000000
480.000000 156.000000 -496.000000
480.000000 96.000000 496.000000
488.000000 96.000000 496.000000
488.000000 96.000000 -496.000000
480.000000 96.000000 -496.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
523.000000 -0.000000 496.000000
523.000000 0.000000 384.000000
523.000000 96.000000 384.000000
523.000000 96.000000 496.000000
505.000000 96.000000 384.000000
505.000000 -0.000000 384.000000
505.000000 0.000000 496.000000
505.000000 96.000000 496.000000
faces
0.000000 0.000000 3.000000 10.571420 -0.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 3.000000 10.571420 -0.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 1.142858 10.571420 0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 1.142858 10.571420 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 1.142858 3.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 1.142858 3.000000 0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
505.000000 0.000000 496.000000
505.000000 0.000000 384.000000
505.000000 96.000000 384.000000
505.000000 96.000000 496.000000
487.000000 96.000000 384.000000
487.000000 -0.000000 384.000000
487.000000 0.000000 496.000000
487.000000 96.000000 496.000000
faces
0.000000 0.000000 3.000000 8.571420 -0.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 3.000000 8.571420 -0.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 1.142858 8.571420 0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 1.142858 8.571420 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 1.142858 3.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 1.142858 3.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
505.000000 -0.000000 -384.000000
505.000000 0.000000 -496.000000
505.000000 96.000000 -496.000000
505.000000 96.000000 -384.000000
487.000000 96.000000 -496.000000
487.000000 -0.000000 -496.000000
487.000000 0.000000 -384.000000
487.000000 96.000000 -384.000000
faces
0.000000 0.000000 3.000000 -8.571420 180.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 3.000000 -8.571420 180.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 1.142858 8.571420 -0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 1.142858 8.571420 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 1.142858 -3.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 1.142858 -3.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
556.000000 96.000000 496.000000
556.000000 96.000000 -496.000000
556.000000 288.000000 -496.000000
556.000000 288.000000 496.000000
552.000000 288.000000 -496.000000
552.000000 96.000000 -496.000000
552.000000 96.000000 496.000000
552.000000 288.000000 496.000000
faces
0.000000 -6.000000 2.000000 28.000000 -0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -6.000000 2.000000 28.000000 -0.000000 4 5 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 -6.000000 2.000000 28.000000 -0.000000 7 6 0 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -6.000000 2.000000 28.000000 -0.000000 1 5 4 2 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 2.000000 2.000000 -0.000000 2 4 7 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 2.000000 2.000000 -0.000000 6 5 1 0 0x00000000 internal/editor/textures/editor_clip
brush
vertices
626.000000 98.000000 496.000000
626.000000 98.000000 -496.000000
626.000000 290.000000 -496.000000
626.000000 290.000000 496.000000
622.000000 290.000000 -496.000000
622.000000 98.000000 -496.000000
622.000000 98.000000 496.000000
622.000000 290.000000 496.000000
faces
0.000000 -6.000000 2.000000 28.000000 -0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -6.000000 2.000000 28.000000 -0.000000 4 5 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 -6.000000 2.000000 28.000000 -0.000000 7 6 0 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -6.000000 2.000000 28.000000 -0.000000 1 5 4 2 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 2.000000 2.000000 -0.000000 2 4 7 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 2.000000 2.000000 -0.000000 6 5 1 0 0x00000000 internal/editor/textures/editor_clip
brush
vertices
768.000000 144.000000 -462.000000
704.000000 144.000000 -496.000000
768.000000 174.000000 -496.000000
704.000000 144.000000 -462.000000
768.000000 144.000000 -496.000000
704.000000 174.000000 -496.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
770.000000 144.000000 500.000000
770.000000 144.000000 -488.000000
770.000000 334.000000 -488.000000
770.000000 334.000000 500.000000
768.000000 334.000000 -488.000000
768.000000 144.000000 -488.000000
768.000000 144.000000 500.000000
768.000000 334.000000 500.000000
faces
0.000000 -56.000000 84.000000 12.000000 -0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -56.000000 84.000000 12.000000 -0.000000 4 5 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 -56.000000 2.000000 12.000000 -0.000000 7 6 0 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -56.000000 2.000000 12.000000 -0.000000 1 5 4 2 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 2.000000 84.000000 -0.000000 2 4 7 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 2.000000 84.000000 -0.000000 6 5 1 0 0x00000000 internal/editor/textures/editor_clip
brush
vertices
704.000000 144.000000 492.000000
704.000000 144.000000 -496.000000
704.000000 352.000000 -496.000000
704.000000 352.000000 492.000000
702.000000 352.000000 -496.000000
702.000000 144.000000 -496.000000
702.000000 144.000000 492.000000
702.000000 352.000000 492.000000
faces
0.000000 -56.000000 84.000000 12.000000 -0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -56.000000 84.000000 12.000000 -0.000000 4 5 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 -56.000000 2.000000 12.000000 -0.000000 7 6 0 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -56.000000 2.000000 12.000000 -0.000000 1 5 4 2 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 2.000000 84.000000 -0.000000 2 4 7 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 2.000000 84.000000 -0.000000 6 5 1 0 0x00000000 internal/editor/textures/editor_clip
brush
vertices
704.000000 144.000000 -426.000000
768.000061 144.000000 -391.999939
704.000000 174.000000 -392.000000
768.000061 144.000000 -425.999939
704.000000 144.000000 -392.000000
768.000061 174.000000 -391.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
768.000000 144.000000 -328.000000
704.000000 144.000000 -362.000000
768.000000 174.000000 -362.000000
704.000000 144.000000 -328.000000
768.000000 144.000000 -362.000000
704.000000 174.000000 -362.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
704.000000 174.000000 -362.000000
768.000000 174.000000 -362.000000
768.000000 174.000000 -392.000000
704.000000 174.000000 -392.000000
704.000000 144.000000 -362.000000
768.000000 144.000000 -362.000000
768.000000 144.000000 -392.000000
704.000000 144.000000 -392.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
768.000000 144.000000 -194.000000
704.000000 144.000000 -228.000000
768.000000 174.000000 -228.000000
704.000000 144.000000 -194.000000
768.000000 144.000000 -228.000000
704.000000 174.000000 -228.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
704.000000 174.000000 -228.000000
768.000000 174.000000 -228.000000
768.000000 174.000000 -258.000000
704.000000 174.000000 -258.000000
704.000000 144.000000 -228.000000
768.000000 144.000000 -228.000000
768.000000 144.000000 -258.000000
704.000000 144.000000 -258.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
704.000000 144.000000 -292.000000
768.000061 144.000000 -257.999939
704.000000 174.000000 -258.000000
768.000061 144.000000 -291.999939
704.000000 144.000000 -258.000000
768.000061 174.000000 -257.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
704.000000 144.000000 -164.000000
768.000061 144.000000 -129.999939
704.000000 174.000000 -130.000000
768.000061 144.000000 -163.999939
704.000000 144.000000 -130.000000
768.000061 174.000000 -129.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
704.000000 174.000000 -100.000000
768.000000 174.000000 -100.000000
768.000000 174.000000 -130.000000
704.000000 174.000000 -130.000000
704.000000 144.000000 -100.000000
768.000000 144.000000 -100.000000
768.000000 144.000000 -130.000000
704.000000 144.000000 -130.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
768.000000 144.000000 -66.000000
704.000000 144.000000 -100.000000
768.000000 174.000000 -100.000000
704.000000 144.000000 -66.000000
768.000000 144.000000 -100.000000
704.000000 174.000000 -100.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
704.000000 144.000000 -66.000000
768.000061 144.000000 -31.999939
704.000000 174.000000 -32.000000
768.000061 144.000000 -65.999939
704.000000 144.000000 -32.000000
768.000061 174.000000 -31.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
704.000000 174.000000 -2.000000
768.000000 174.000000 -2.000000
768.000000 174.000000 -32.000000
704.000000 174.000000 -32.000000
704.000000 144.000000 -2.000000
768.000000 144.000000 -2.000000
768.000000 144.000000 -32.000000
704.000000 144.000000 -32.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
768.000000 144.000000 32.000000
704.000000 144.000000 -2.000000
768.000000 174.000000 -2.000000
704.000000 144.000000 32.000000
768.000000 144.000000 -2.000000
704.000000 174.000000 -2.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
704.000000 144.000000 52.000000
768.000061 144.000000 86.000061
704.000000 174.000000 86.000000
768.000061 144.000000 52.000061
704.000000 144.000000 86.000000
768.000061 174.000000 86.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
704.000000 174.000000 116.000000
768.000000 174.000000 116.000000
768.000000 174.000000 86.000000
704.000000 174.000000 86.000000
704.000000 144.000000 116.000000
768.000000 144.000000 116.000000
768.000000 144.000000 86.000000
704.000000 144.000000 86.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
768.000000 144.000000 150.000000
704.000000 144.000000 116.000000
768.000000 174.000000 116.000000
704.000000 144.000000 150.000000
768.000000 144.000000 116.000000
704.000000 174.000000 116.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
704.000000 144.000000 208.000000
768.000061 144.000000 242.000061
704.000000 174.000000 242.000000
768.000061 144.000000 208.000061
704.000000 144.000000 242.000000
768.000061 174.000000 242.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
704.000000 174.000000 272.000000
768.000000 174.000000 272.000000
768.000000 174.000000 242.000000
704.000000 174.000000 242.000000
704.000000 144.000000 272.000000
768.000000 144.000000 272.000000
768.000000 144.000000 242.000000
704.000000 144.000000 242.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
768.000000 144.000000 306.000000
704.000000 144.000000 272.000000
768.000000 174.000000 272.000000
704.000000 144.000000 306.000000
768.000000 144.000000 272.000000
704.000000 174.000000 272.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
704.000000 144.000000 398.000000
768.000061 144.000000 432.000061
704.000000 174.000000 432.000000
768.000061 144.000000 398.000061
704.000000 144.000000 432.000000
768.000061 174.000000 432.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
704.000000 174.000000 462.000000
768.000000 174.000000 462.000000
768.000000 174.000000 432.000000
704.000000 174.000000 432.000000
704.000000 144.000000 462.000000
768.000000 144.000000 462.000000
768.000000 144.000000 432.000000
704.000000 144.000000 432.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
768.000000 144.000000 496.000000
704.000000 144.000000 462.000000
768.000000 174.000000 462.000000
704.000000 144.000000 496.000000
768.000000 144.000000 462.000000
704.000000 174.000000 462.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
626.000000 146.000000 214.000000
688.000000 146.000000 214.000000
626.000000 96.000000 134.000000
626.000000 96.000000 214.000000
688.000000 96.000000 134.000000
688.000000 96.000000 214.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 4 5 0x00000000
brush
vertices
688.000000 146.000000 296.000000
626.000061 146.000000 296.000000
688.000000 96.000000 376.000000
688.000000 96.000000 296.000000
626.000000 96.000000 376.000000
626.000061 96.000000 296.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 4 5 0x00000000
brush
vertices
626.000000 118.000000 504.000000
688.000000 118.000000 504.000000
688.000000 118.000000 340.000000
626.000000 118.000000 340.000000
626.000000 116.000000 504.000000
688.000000 116.000000 504.000000
688.000000 116.000000 340.000000
626.000000 116.000000 340.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
688.000000 144.000000 496.000000
690.000000 144.000000 496.000000
690.000000 144.000000 384.000000
688.000000 144.000000 384.000000
688.000000 118.000000 496.000000
690.000000 118.000000 496.000000
690.000000 118.000000 384.000000
688.000000 118.000000 384.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
626.000000 146.000000 -246.000000
688.000000 146.000000 -246.000000
626.000000 96.000000 -326.000000
626.000000 96.000000 -246.000000
688.000000 96.000000 -326.000000
688.000000 96.000000 -246.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 4 5 0x00000000
brush
vertices
626.000000 146.000000 -164.000000
688.000000 146.000000 -164.000000
688.000000 146.000000 -246.000000
626.000000 146.000000 -246.000000
626.000000 96.000000 -164.000000
688.000000 96.000000 -164.000000
688.000000 96.000000 -246.000000
626.000000 96.000000 -246.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
688.000000 146.000000 -164.000000
626.000061 146.000000 -164.000000
688.000000 96.000000 -84.000000
688.000000 96.000000 -164.000000
626.000000 96.000000 -84.000000
626.000061 96.000000 -164.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 4 5 0x00000000
brush
vertices
864.000000 128.000000 -384.000000
864.000000 128.000000 -496.000000
864.000000 144.000000 -496.000000
864.000000 144.000000 -384.000000
704.000000 144.000000 -496.000000
704.000000 128.000000 -496.000000
704.000000 128.000000 -384.000000
704.000000 144.000000 -384.000000
faces
0.000000 0.000000 7.000000 2.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 7.000000 2.000000 -0.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 16.000000 2.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 16.000000 2.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 16.000000 7.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 16.000000 7.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
688.000000 144.000000 -384.000000
690.000000 144.000000 -384.000000
690.000000 144.000000 -498.000000
688.000000 144.000000 -498.000000
688.000000 96.000000 -384.000000
690.000000 96.000000 -384.000000
690.000000 96.000000 -498.000000
688.000000 96.000000 -498.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
552.000000 96.000000 170.000000
552.000000 122.000000 250.000000
552.000000 96.000000 250.000000
488.000000 96.000000 250.000000
488.000000 96.000000 170.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 3 4 0x00000000
brush
vertices
552.000000 96.000000 310.000000
488.000000 96.000000 250.000000
552.000000 122.000000 250.000000
552.000000 96.000000 250.000000
488.000000 96.000000 310.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 0 4 0x00000000
brush
vertices
488.000000 98.000000 -14.000000
488.000000 124.000000 -94.000031
488.000000 98.000000 -94.000031
552.000000 98.000000 -94.000031
551.999878 98.000000 -13.999969
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 3 4 0x00000000
brush
vertices
488.000000 98.000000 -153.999878
552.000000 98.000000 -94.000031
488.000000 124.000000 -94.000031
488.000000 98.000000 -94.000031
551.999878 98.000000 -154.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 0 4 0x00000000
brush
vertices
626.000000 146.000000 296.000000
688.000000 146.000000 296.000000
688.000000 146.000000 214.000000
626.000000 146.000000 214.000000
626.000000 96.000000 296.000000
688.000000 96.000000 296.000000
688.000000 96.000000 214.000000
626.000000 96.000000 214.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
864.000000 144.000000 190.000000
770.000000 144.000000 80.000000
864.000000 196.000000 80.000000
770.000000 144.000000 190.000000
864.000000 144.000000 80.000000
770.000000 196.000000 80.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
770.000000 196.000000 80.000000
864.000000 196.000000 80.000000
864.000000 196.000000 -136.000000
770.000000 196.000000 -136.000000
770.000000 144.000000 80.000000
864.000000 144.000000 80.000000
864.000000 144.000000 -136.000000
770.000000 144.000000 -136.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
770.000000 144.000000 -246.000000
864.000000 144.000000 -136.000000
770.000000 196.000000 -136.000000
864.000000 144.000000 -246.000000
770.000000 144.000000 -136.000000
864.000000 196.000000 -136.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
880.000000 -0.000000 496.000000
880.000000 0.000000 -496.000000
880.000000 288.000000 -496.000000
880.000000 288.000000 496.000000
864.000000 288.000000 -496.000000
864.000000 -0.000000 -496.000000
864.000000 -0.000000 496.000000
864.000000 288.000000 496.000000
faces
0.000000 0.000000 1.968254 36.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty
0.000000 0.000000 1.968254 36.000000 -0.000000 4 5 6 7 0x00000000 __TB_empty
0.000000 0.000000 2.000000 36.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 36.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty
0.000000 0.000000 2.000000 1.968254 -0.000000 2 4 7 3 0x00000000 __TB_empty
0.000000 0.000000 2.000000 1.968254 -0.000000 6 5 1 0 0x00000000 __TB_empty
brush
vertices
866.000000 146.000000 492.000000
866.000000 146.000000 -496.000000
866.000000 402.000000 -496.000000
866.000000 402.000000 492.000000
864.000000 402.000000 -496.000000
864.000000 146.000000 -496.000000
864.000000 146.000000 492.000000
864.000000 402.000000 492.000000
faces
0.000000 -56.000000 84.000000 12.000000 -0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -56.000000 84.000000 12.000000 -0.000000 4 5 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 -56.000000 2.000000 12.000000 -0.000000 7 6 0 3 0x00000000 internal/editor/textures/editor_clip
0.000000 -56.000000 2.000000 12.000000 -0.000000 1 5 4 2 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 2.000000 84.000000 -0.000000 2 4 7 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 2.000000 84.000000 -0.000000 6 5 1 0 0x00000000 internal/editor/textures/editor_clip
brush
vertices
296.000000 20.000000 -198.000000
360.000000 20.000000 -198.000000
360.000000 20.000000 -254.000000
296.000000 20.000000 -254.000000
296.000000 0.000000 -198.000000
360.000000 0.000000 -198.000000
360.000000 0.000000 -254.000000
296.000000 0.000000 -254.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
360.000000 0.000000 -142.000000
296.000000 0.000000 -198.000000
360.000000 20.000000 -198.000000
296.000000 0.000000 -142.000000
360.000000 0.000000 -198.000000
296.000000 20.000000 -198.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
296.000000 0.000000 -310.000000
360.000000 0.000000 -253.999969
295.999969 20.000000 -253.999969
359.999969 0.000000 -309.999969
295.999969 0.000000 -253.999969
360.000000 20.000000 -253.999969
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
556.000000 126.000000 246.000000
622.000000 126.000000 246.000000
622.000000 126.000000 106.000000
556.000000 126.000000 106.000000
556.000000 96.000000 246.000000
622.000000 96.000000 246.000000
622.000000 96.000000 106.000000
556.000000 96.000000 106.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
556.000000 126.000000 -198.000000
622.000000 126.000000 -198.000000
622.000000 126.000000 -338.000000
556.000000 126.000000 -338.000000
556.000000 96.000000 -198.000000
622.000000 96.000000 -198.000000
622.000000 96.000000 -338.000000
556.000000 96.000000 -338.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
622.000000 96.000000 105.999985
622.000000 126.000000 105.999985
556.000000 126.000000 106.000000
556.000000 96.000000 56.000000
556.000000 96.000000 106.000000
621.999939 96.000000 55.999973
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 5 0x00000000
brush
vertices
556.000000 96.000000 246.000000
556.000000 126.000000 246.000000
622.000000 126.000000 246.000000
622.000000 96.000000 296.000000
622.000000 96.000000 246.000000
556.000000 96.000000 296.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 5 0x00000000
brush
vertices
556.000000 96.000000 -198.000000
556.000000 126.000000 -198.000000
622.000000 126.000000 -198.000061
621.999939 96.000000 -148.000000
622.000000 96.000000 -198.000061
556.000000 96.000000 -148.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 5 0x00000000
brush
vertices
622.000000 96.000000 -338.000000
622.000000 126.000000 -338.000000
556.000000 126.000000 -337.999878
556.000000 96.000000 -388.000000
556.000000 96.000000 -337.999878
622.000000 96.000000 -388.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 5 0x00000000
brush
vertices
688.000000 204.000000 496.000000
704.000000 204.000000 496.000000
704.000000 204.000000 -496.000000
688.000000 204.000000 -496.000000
688.000000 144.000000 496.000000
704.000000 144.000000 496.000000
704.000000 144.000000 -496.000000
688.000000 144.000000 -496.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
174.000000 0.000000 512.000000
880.000000 0.000000 512.000000
880.000000 0.000000 -512.000000
174.000000 0.000000 -512.000000
174.000000 -2.000000 512.000000
880.000000 -2.000000 512.000000
880.000000 -2.000000 -512.000000
174.000000 -2.000000 -512.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
428.000000 30.000000 -340.000000
364.000122 30.000000 -340.000000
364.000122 0.000000 -340.000000
428.000031 0.000000 -185.999969
428.000000 0.000000 -340.000000
364.000122 0.000000 -186.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000
brush
vertices
364.000000 30.000000 -340.000000
428.000000 30.000000 -340.000000
428.000000 0.000000 -340.000000
364.000000 0.000000 -494.000000
364.000000 0.000000 -340.000000
428.000000 0.000000 -494.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000
brush
vertices
364.000000 30.000000 496.000000
428.000000 30.000000 496.000000
428.000000 0.000000 496.000000
364.000000 0.000000 342.000000
364.000000 0.000000 496.000000
428.000000 0.000000 342.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000
entity
type CameraPath
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type PlayerSpawn
Vector3 position 402.000000 4.000000 212.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 332.000000 24.000000 -232.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 248.000000 26.000000 -64.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -218.000000 112.000000 0.000000
Vector3 angles 90.000000 0.000000 0.000000
Bool8 teamB 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 522.000000 98.000000 86.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 590.000000 98.000000 -6.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 590.000000 136.000000 -284.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 736.000000 170.000000 -16.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 660.000000 148.000000 -222.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 656.000000 150.000000 252.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 822.000000 168.000000 158.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 814.000000 176.000000 -206.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
|
ddeccee6baf1d3a19fe481858d84d0ab87b578ad | 449d555969bfd7befe906877abab098c6e63a0e8 | /2825/CH9/EX9.2/Ex9_2.sce | a6f2fd1b2e39ab5d5939ceedc7e49c51dfd4d131 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 187 | sce | Ex9_2.sce | //Ex9_2 Pg-475
clc
Aol= 50000 //open loop gain
fol=14 //open loop frequency in HZ
fcl=(Aol+1)*fol //close loop frequency in Hz
printf("Close loop Bandwidth = %.0f kHz",fcl*10^-3)
|
622c3cdae37e9e5f625e68f2b55d3860b32d9ae2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1535/CH6/EX6.9/Ch06Ex9.sci | 95ea7edab9da8ba2473f589a4110b121457c8908 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,078 | sci | Ch06Ex9.sci | // Scilab Code Ex6.9 : X-ray Diffraction by crystal planes: Page-137 (2010)
// For (221) planes
h = 2; k = 2; l = 1; // Miller Indices for planes in a cubic crystal
a = 2.68e-010; // Interatomic spacing, m
n = 1; // First Order of diffraction
theta = 8.5; // Glancing angle at which Bragg's reflection occurs, degrees
d = a/(h^2+k^2+l^2)^(1/2); // The interplanar spacing for cubic crystal, m
lambda = 2*d*sind(theta); // Bragg's Law for wavelength of X-rays, m
n = 2; // Second order of diffraction
theta = asind(n*lambda/(2*d)); // Angle at which second order Bragg reflection occurs, degrees
printf("\nThe interplanar spacing between consecutive (221) planes = %5.3e", d);
printf("\nThe wavelength of X-rays = %5.3f angstrom", lambda/1e-010);
printf("\nThe angle at which second order Bragg reflection occurs = %4.1f degrees", theta);
// Result
// The interplanar spacing between consecutive (221) planes = 8.933e-011
// The wavelength of X-rays = 0.264 angstrom
// The angle at which second order Bragg reflection occurs = 17.2 degrees |
4d6cff5af4a11d15572c628eaa9b3402aa29af0b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1466/CH8/EX8.1/8_1.sce | eadec77178b38d4814926cb596602aab0b52ca86 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 205 | sce | 8_1.sce |
clc
//initialisation of variables
d=0.8
cv=0.01
db=0.6
cvb=0.005
//CALCULATIONS
v=cv/d
vc=v*2000
vb=cvb/db
vcb=vb*2000
r=vc/vcb
//results
printf (' Ratio of critical velocities= %.1f',r)
|
b8e3e7093611aae3377cf8bcd68330e0b6388ab3 | cc79f7493e50b31f04732c9577175912b2ec2604 | /rotateAroundPivot.sci | f83b1072126954f9a7bdd40dbaaeae3727b28198 | [] | no_license | WhiskyDelta/ScilabOrbits | 815c596b2c3ba382b312eb95e5b58990b0501d88 | 74881418c75097fa5d86c0fcfacecbe8d93cf14b | refs/heads/master | 2016-08-06T21:00:52.285372 | 2015-07-31T18:32:38 | 2015-07-31T18:32:38 | 39,731,729 | 3 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 333 | sci | rotateAroundPivot.sci | function vnew=rotateAroundPivot(vold,yaw,pitch,roll,pivot)
Ryaw = [cos(yaw),-sin(yaw),0;sin(yaw),cos(yaw),0;0,0,1];
Rpitch = [cos(pitch),0,sin(pitch);0,1,0;-sin(pitch),0,cos(pitch)];
Rroll = [1,0,0;0,cos(roll),-sin(roll);0,sin(roll),cos(roll)];
vnew = Rroll*Rpitch*Ryaw*(vold-pivot)+pivot
endfunction
|
95d15ea7ec6cdf3617abd88edb0aa8c8875a9c7d | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/ngram/5.16_2.tst | 5213209722503e6013e08453a0df8c0a00baa7a3 | [] | 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 | 690,485 | tst | 5.16_2.tst | 16 85:1 176:1 399:1 468:1 723:1 944:1 1069:1 1202:1 1221:1 1250:1 1560:1 1586:1 1633:1 1642:1 1742:1 1835:1 1907:1 1941:1 2098:1 2234:1 2369:1 2446:1 2475:1 2660:1 2763:1 2800:1 3082:1 3252:1 3314:1 3613:1 4041:1 4161:1 4271:1 4297:1 4323:1 4325:1 4377:1 4438:1 4439:1 4876:1 5010:1 5152:1 5176:1 5509:1 5699:1 5823:1 5840:1 5841:1 6082:1 6169:1 6403:1 6611:1 6868:1 6959:1 7035:2 7074:1 7249:1 7254:1 7276:1 7394:1 7451:1 8026:1 8251:1 8577:1 8586:1 8901:1 9051:1 9206:1 9234:1 9386:1 9444:1 9484:1 9880:1 9885:1 10065:1 10069:1 10088:1 10128:1 10138:1 10221:1 10554:1 11009:1 11056:1 11124:1 11154:1 11225:1 11318:1 11400:1 11580:1 11595:1 11728:1 11775:1 12043:1 12200:1 12229:1 12531:1 12664:1 12980:1 12981:1 12983:1 13067:1 13127:1 13395:1 13447:1 13537:1 13580:1 13717:1 13913:1 13914:1 13916:1 14693:1 15014:1 15045:1 15140:1 15156:1 15198:1 15420:1 15486:1 15598:1 15659:1 15739:1 15851:1 16401:1 16612:1 16661:1 16692:1 16874:1 17000:1 17512:1 17662:1 17685:1 18073:1 18263:1 18341:2 18418:1 18424:1 18455:1 18473:1 18518:1 18544:1 18916:1 19072:1 19167:1 19177:1 19737:1 19759:1 19926:1 19944:1 19956:1 19962:1 20037:1 20153:1 20249:1 20261:1 20792:2 20965:1 21020:116 21242:1 21340:1 21490:1 21563:1 21832:1 21867:1 21896:1 21965:1 21995:1 22000:1 22262:1 22308:1 22478:1 22616:1 22624:1 22680:1 22745:1 22922:1 22933:1 22999:1 23105:1 23198:1 23682:1 23711:1 23873:1 24073:1 24143:1 24328:1 24363:1 24662:1 24824:1 24825:1 24979:1 25021:1 25033:1 25071:1 25156:2 25209:1 25303:1 25588:1 25620:1 25871:1 26133:1 26309:1 26315:1 26424:1 26539:1 26897:1 26931:1 27022:1 27072:1 27377:1 27489:1 27997:1 28174:1 28253:1 28414:1 28557:1 28734:1 28872:1 29120:1 29365:2 29374:1 29472:1 29653:1 29676:1 30063:1 30451:1 30524:1 30560:1 30648:1 31544:2 31587:1 31681:1 32039:1 32279:1 32310:1 32314:1 32582:1 32735:1 32902:1 32903:1
16 85:1 176:1 219:1 399:1 468:1 577:1 723:1 944:1 1069:1 1149:1 1202:1 1221:1 1250:1 1369:1 1472:1 1560:1 1586:1 1633:1 1642:1 1742:1 1760:1 1780:1 1802:1 1835:1 1853:1 1907:1 1919:1 1924:1 1941:1 2098:1 2234:2 2262:1 2369:1 2441:1 2446:1 2475:1 2643:1 2651:1 2660:2 2763:1 2800:1 3082:2 3246:1 3252:1 3314:2 3426:1 3613:1 3863:1 4003:1 4041:1 4053:1 4152:1 4161:1 4271:1 4297:1 4323:1 4325:4 4377:2 4438:1 4439:1 4491:1 4544:1 4658:1 4674:1 4876:1 5010:1 5152:1 5176:1 5390:1 5509:1 5640:1 5699:1 5784:1 5823:1 5840:1 5841:3 5880:1 6082:1 6169:3 6357:1 6403:1 6611:1 6733:1 6753:1 6868:1 6959:1 7035:2 7074:1 7190:1 7249:1 7254:1 7276:1 7394:1 7403:1 7413:1 7451:1 7613:1 7764:1 8026:1 8251:1 8526:1 8577:1 8586:1 8688:1 8770:1 8791:1 8901:3 8923:1 8943:1 9034:1 9051:1 9206:1 9234:1 9343:1 9370:1 9386:1 9444:1 9448:1 9484:2 9678:1 9687:1 9880:1 9885:1 9944:1 10053:1 10065:1 10069:1 10088:1 10121:1 10128:1 10138:1 10208:1 10214:1 10219:1 10221:1 10554:1 10565:1 10588:1 11009:3 11056:1 11124:1 11154:3 11225:1 11318:1 11400:1 11422:1 11580:2 11583:1 11595:1 11728:1 11775:1 12043:1 12121:1 12200:1 12229:1 12512:1 12531:1 12664:1 12825:1 12980:1 12981:1 12983:1 13021:1 13057:1 13067:1 13127:1 13218:1 13328:1 13395:1 13403:1 13447:1 13537:1 13580:1 13590:1 13592:1 13717:1 13913:1 13914:1 13916:3 14098:1 14167:1 14312:1 14373:1 14565:1 14693:1 14920:1 15014:1 15023:1 15045:1 15140:1 15156:1 15162:1 15198:1 15250:1 15338:1 15420:1 15465:1 15486:1 15598:1 15659:1 15739:1 15851:1 16341:1 16401:1 16414:1 16424:1 16612:1 16661:1 16692:1 16874:1 17000:1 17353:1 17433:1 17512:2 17662:1 17685:2 17689:1 17885:1 17902:1 17919:1 18012:1 18073:1 18263:3 18341:5 18418:1 18424:1 18455:1 18473:1 18474:1 18518:1 18530:1 18544:1 18808:1 18916:1 18922:1 18946:1 19048:1 19072:1 19167:1 19177:1 19564:1 19587:1 19737:1 19759:1 19841:1 19926:1 19944:1 19956:1 19962:1 20037:1 20153:1 20249:1 20261:1 20474:1 20645:1 20649:1 20676:1 20792:3 20965:1 21020:201 21136:1 21239:1 21242:1 21340:1 21384:1 21454:1 21490:1 21563:2 21832:1 21836:1 21867:2 21896:2 21930:1 21965:1 21970:1 21995:1 22000:1 22029:1 22262:1 22264:1 22308:1 22317:1 22478:1 22616:1 22624:1 22680:1 22745:1 22800:1 22822:1 22922:1 22933:1 22999:1 23105:1 23153:1 23198:1 23532:1 23546:1 23595:1 23682:1 23711:1 23873:1 24065:1 24073:1 24084:1 24143:1 24216:1 24218:1 24328:1 24360:1 24363:1 24408:1 24543:1 24662:1 24824:3 24825:1 24979:3 25005:1 25021:1 25033:1 25047:1 25071:1 25110:1 25156:2 25209:1 25303:1 25588:1 25595:1 25620:1 25732:1 25871:1 26044:1 26075:1 26133:1 26254:1 26309:1 26315:1 26319:1 26415:1 26424:2 26539:1 26794:1 26897:1 26931:1 27022:1 27072:1 27377:1 27451:1 27489:1 27533:1 27612:1 27753:1 27917:1 27997:1 28174:1 28253:1 28327:1 28348:1 28414:1 28557:1 28680:1 28734:1 28872:1 29029:1 29120:1 29316:1 29334:1 29365:3 29374:1 29472:1 29519:1 29653:2 29655:1 29676:1 29679:1 29771:1 29781:1 30063:1 30399:1 30418:1 30451:1 30524:2 30531:1 30560:1 30643:1 30648:1 30651:1 31176:1 31204:1 31544:2 31546:1 31587:2 31681:1 31702:1 32028:1 32039:1 32115:1 32279:1 32310:1 32314:1 32582:1 32733:1 32735:1 32902:1 32903:1
16 85:1 176:1 219:1 399:1 468:1 577:1 723:1 944:1 988:1 1007:1 1069:1 1114:1 1149:1 1180:1 1202:1 1221:1 1250:1 1369:2 1472:1 1560:1 1586:1 1633:1 1642:1 1742:1 1760:1 1780:1 1802:1 1835:1 1853:1 1907:1 1919:1 1924:1 1941:1 2098:1 2234:3 2262:1 2369:1 2441:1 2446:1 2475:1 2643:1 2651:1 2660:3 2763:1 2800:1 3082:3 3136:1 3246:2 3252:1 3314:3 3363:1 3426:2 3613:1 3863:1 4003:1 4041:1 4053:1 4077:1 4150:1 4152:1 4161:1 4235:1 4271:1 4297:1 4323:1 4325:5 4377:2 4438:1 4439:1 4491:2 4544:1 4658:1 4674:1 4876:1 5010:1 5152:1 5176:1 5390:1 5509:1 5640:1 5699:1 5784:1 5823:1 5840:1 5841:4 5880:1 6082:1 6169:4 6357:1 6403:1 6611:1 6733:1 6753:1 6868:1 6959:1 7035:2 7074:1 7190:1 7249:1 7254:1 7276:1 7394:1 7403:1 7413:1 7451:1 7613:1 7684:1 7764:1 8026:1 8138:1 8251:1 8255:1 8490:1 8526:2 8577:1 8586:1 8688:1 8770:1 8791:1 8901:3 8923:2 8943:1 9034:1 9051:1 9206:1 9234:1 9343:1 9370:1 9386:1 9444:1 9448:1 9484:3 9589:1 9616:1 9678:2 9687:1 9709:1 9765:1 9878:1 9880:1 9885:1 9919:1 9944:1 10053:1 10065:1 10069:1 10088:1 10121:1 10128:1 10138:1 10208:1 10214:1 10219:1 10221:1 10554:1 10565:1 10588:1 10634:1 11009:4 11056:1 11124:1 11154:4 11225:1 11318:1 11400:1 11422:1 11580:2 11583:2 11595:1 11728:1 11775:1 12043:1 12121:1 12125:1 12200:1 12229:1 12512:1 12531:1 12664:1 12825:1 12974:1 12980:1 12981:1 12983:1 13021:1 13057:1 13067:1 13125:1 13127:1 13207:1 13218:2 13254:1 13328:1 13395:1 13403:1 13447:1 13537:1 13580:1 13590:2 13592:1 13717:1 13913:1 13914:1 13916:4 14083:1 14098:1 14167:1 14312:1 14373:1 14506:1 14565:2 14693:1 14819:1 14920:1 15014:1 15023:1 15045:1 15080:1 15140:1 15156:1 15162:1 15164:1 15198:1 15250:1 15338:1 15420:1 15465:1 15486:1 15598:1 15659:1 15739:1 15851:1 15861:1 15891:1 16341:1 16401:1 16414:1 16424:1 16612:1 16661:1 16692:1 16874:1 17000:1 17353:2 17433:1 17512:2 17662:1 17685:2 17689:1 17885:1 17902:1 17919:1 18012:1 18073:1 18263:4 18341:6 18390:1 18418:1 18424:1 18455:1 18467:1 18473:1 18474:1 18518:1 18530:1 18544:1 18808:1 18916:1 18922:1 18946:1 19004:1 19048:1 19072:1 19167:1 19177:1 19497:1 19564:1 19587:1 19685:1 19726:1 19737:1 19759:1 19841:1 19926:1 19944:1 19956:1 19962:1 20037:1 20153:1 20210:1 20249:1 20261:1 20474:2 20645:1 20649:1 20676:1 20792:4 20965:1 21020:268 21108:1 21136:2 21201:1 21239:1 21242:1 21268:1 21284:1 21340:1 21384:2 21454:1 21490:1 21563:3 21660:1 21832:1 21836:1 21867:3 21895:1 21896:2 21930:1 21965:1 21970:1 21995:1 22000:1 22029:1 22262:1 22264:1 22308:1 22317:1 22478:1 22616:1 22624:1 22680:1 22745:1 22800:1 22822:2 22845:1 22863:1 22922:1 22933:1 22999:1 23105:1 23153:1 23198:1 23532:1 23546:2 23595:1 23682:1 23711:1 23873:1 24065:1 24073:1 24084:1 24143:1 24216:1 24218:1 24255:1 24328:1 24360:1 24363:1 24408:1 24543:1 24662:1 24824:3 24825:1 24979:4 25005:1 25021:1 25026:1 25033:1 25047:1 25071:1 25110:2 25156:2 25209:1 25303:1 25588:1 25595:1 25620:1 25732:1 25871:1 26044:1 26075:2 26133:1 26254:1 26309:1 26315:1 26319:1 26415:1 26424:2 26539:1 26794:1 26818:1 26897:1 26931:1 27009:1 27022:1 27072:1 27377:1 27451:1 27489:1 27512:1 27533:1 27612:1 27753:1 27917:1 27997:1 28021:1 28174:1 28253:1 28327:2 28348:1 28414:1 28557:1 28680:1 28734:1 28872:1 29029:1 29120:1 29316:1 29334:1 29365:4 29374:1 29472:1 29519:2 29574:1 29653:3 29655:1 29675:1 29676:1 29679:1 29771:1 29781:2 30063:1 30399:1 30418:1 30451:1 30524:2 30531:1 30560:1 30643:1 30648:1 30651:1 31088:1 31176:1 31204:1 31544:3 31546:1 31587:2 31681:1 31702:1 32028:1 32039:1 32115:1 32279:1 32310:1 32314:1 32582:1 32733:1 32735:1 32902:1 32903:1
16 85:1 176:1 219:1 387:1 399:2 468:2 577:1 723:1 869:1 944:1 988:1 1007:1 1069:1 1114:1 1139:1 1149:1 1180:1 1202:1 1221:1 1250:1 1369:2 1426:1 1472:1 1560:1 1586:1 1633:1 1642:1 1742:1 1760:1 1780:1 1802:1 1835:1 1839:1 1853:1 1907:1 1919:1 1924:1 1927:1 1941:1 2055:1 2098:1 2174:1 2234:3 2262:1 2368:1 2369:1 2414:1 2441:1 2446:1 2475:1 2632:1 2640:1 2643:1 2651:1 2660:3 2763:1 2800:1 2871:1 3082:3 3136:1 3246:2 3252:1 3256:1 3314:3 3355:2 3363:1 3426:3 3613:1 3863:1 4003:1 4041:1 4053:1 4077:1 4150:1 4152:1 4161:1 4235:1 4271:1 4297:1 4323:1 4325:7 4377:3 4438:1 4439:1 4491:3 4544:1 4567:1 4658:1 4674:1 4876:1 5010:1 5152:1 5176:1 5205:1 5390:1 5509:1 5558:1 5640:1 5699:1 5784:1 5823:1 5840:1 5841:5 5880:1 6082:1 6169:5 6357:1 6403:1 6404:1 6611:1 6733:1 6753:1 6868:1 6959:1 7035:2 7074:1 7190:1 7249:1 7254:2 7276:2 7394:1 7397:1 7403:1 7413:1 7451:1 7613:1 7684:1 7764:1 7879:1 7915:1 8026:1 8138:1 8251:1 8255:1 8490:1 8526:2 8577:1 8586:1 8604:1 8688:1 8770:1 8791:1 8832:1 8901:4 8920:2 8923:3 8943:1 9034:1 9051:1 9206:1 9234:1 9343:1 9370:1 9386:1 9444:1 9448:1 9484:3 9589:1 9616:1 9678:3 9687:1 9709:1 9748:1 9765:1 9878:1 9880:1 9885:1 9919:1 9944:1 10053:2 10065:1 10069:1 10088:1 10121:1 10128:2 10138:1 10139:1 10208:1 10214:1 10219:1 10221:1 10270:1 10554:1 10565:1 10588:1 10634:1 10845:1 11009:5 11056:1 11124:1 11154:4 11225:1 11318:1 11363:1 11400:1 11422:2 11580:2 11583:2 11595:1 11728:1 11775:1 12043:1 12075:1 12119:1 12121:1 12125:1 12200:1 12229:1 12512:1 12531:1 12664:1 12825:1 12974:1 12980:1 12981:1 12983:1 12990:1 13014:1 13021:1 13057:1 13067:1 13125:1 13127:1 13207:1 13218:2 13252:1 13254:1 13328:1 13395:1 13403:1 13447:1 13537:1 13580:1 13590:2 13592:1 13717:1 13872:1 13913:1 13914:1 13916:5 14083:1 14098:1 14167:1 14312:1 14369:1 14373:1 14506:1 14565:2 14566:1 14693:1 14819:1 14870:1 14920:1 15002:1 15014:1 15023:1 15045:1 15080:1 15140:1 15156:1 15162:1 15164:1 15198:1 15234:1 15250:1 15338:1 15420:1 15465:1 15486:1 15598:1 15659:1 15739:1 15851:1 15861:1 15891:1 15921:1 16046:1 16051:1 16202:1 16279:1 16341:1 16401:1 16414:1 16424:1 16483:1 16612:1 16661:1 16692:1 16874:1 17000:1 17005:1 17353:2 17433:1 17512:2 17662:1 17685:2 17689:1 17885:1 17900:1 17902:1 17919:2 18012:1 18024:1 18073:1 18187:1 18263:5 18341:8 18390:1 18418:1 18424:1 18455:1 18467:1 18473:1 18474:1 18516:1 18518:1 18530:1 18544:1 18797:1 18808:1 18916:1 18922:1 18946:1 19004:1 19048:2 19072:1 19167:1 19177:1 19382:1 19497:1 19564:1 19587:1 19685:1 19718:1 19726:1 19737:1 19759:1 19841:1 19926:2 19944:1 19956:1 19962:1 20037:1 20130:1 20153:1 20210:1 20249:1 20261:1 20450:1 20474:2 20488:1 20645:1 20649:1 20676:1 20693:1 20792:4 20869:1 20965:1 21020:390 21047:1 21108:1 21136:2 21201:1 21239:1 21242:1 21268:1 21284:1 21340:1 21384:2 21454:1 21490:1 21494:1 21539:1 21551:1 21563:3 21660:1 21779:1 21795:1 21832:1 21836:2 21867:3 21895:1 21896:2 21930:1 21965:1 21970:1 21995:1 22000:1 22029:1 22068:1 22262:1 22264:2 22308:1 22317:1 22478:1 22534:1 22616:1 22624:1 22680:1 22745:1 22800:2 22822:2 22845:1 22863:1 22922:1 22933:1 22945:1 22999:1 23024:1 23105:1 23153:1 23198:1 23532:2 23546:3 23595:1 23682:1 23711:1 23832:1 23873:1 24065:2 24073:1 24084:1 24143:1 24216:1 24218:1 24255:1 24328:1 24360:1 24363:1 24408:1 24478:1 24543:2 24662:1 24702:1 24703:2 24747:1 24824:3 24825:1 24855:1 24908:1 24979:5 25005:1 25021:1 25026:1 25033:1 25047:1 25065:1 25071:1 25110:2 25156:2 25209:1 25303:2 25588:1 25595:2 25620:1 25695:1 25732:1 25871:1 26044:1 26075:2 26133:1 26254:1 26309:1 26315:1 26319:1 26324:1 26415:1 26424:3 26539:1 26794:1 26818:1 26897:1 26931:1 27009:1 27022:1 27072:1 27114:1 27225:1 27377:1 27451:1 27489:1 27512:1 27533:1 27612:1 27753:1 27851:1 27917:1 27997:1 28021:1 28174:1 28253:1 28327:2 28348:1 28414:1 28557:1 28609:1 28680:1 28734:1 28847:1 28872:1 29029:1 29120:1 29316:1 29334:1 29365:4 29374:1 29472:1 29519:2 29574:1 29653:3 29655:1 29675:1 29676:1 29679:1 29771:1 29781:2 29821:1 29842:1 30063:1 30399:1 30418:1 30451:1 30524:3 30531:1 30560:1 30643:1 30648:1 30651:1 31088:1 31176:1 31204:1 31514:1 31544:4 31546:1 31587:2 31681:1 31697:1 31702:1 31863:1 32028:1 32039:1 32115:1 32279:1 32310:1 32314:1 32381:1 32582:1 32733:1 32735:1 32902:1 32903:1 32957:1
16 85:1 176:1 219:1 387:1 399:2 468:2 577:1 723:1 779:1 832:1 869:1 886:1 944:1 970:1 988:1 1007:1 1069:1 1082:1 1114:1 1139:1 1149:1 1180:1 1202:1 1221:1 1250:1 1369:2 1388:1 1426:2 1472:1 1560:1 1586:1 1633:1 1642:1 1742:1 1760:1 1780:1 1802:1 1835:1 1839:1 1853:1 1907:1 1919:1 1924:1 1927:1 1941:1 2055:1 2098:1 2174:1 2187:1 2234:3 2262:1 2282:1 2317:1 2368:1 2369:1 2414:1 2441:1 2444:1 2446:1 2475:1 2632:1 2640:1 2643:1 2647:1 2651:1 2660:3 2668:1 2687:1 2763:1 2800:1 2826:1 2845:1 2871:1 3023:1 3082:3 3098:1 3136:1 3164:1 3246:2 3252:1 3256:2 3314:3 3355:2 3363:1 3426:3 3613:1 3863:1 4003:1 4041:1 4053:1 4077:1 4144:1 4150:1 4152:1 4161:1 4235:1 4271:1 4297:1 4323:1 4325:10 4377:4 4381:1 4419:1 4438:1 4439:1 4491:3 4544:1 4567:1 4630:1 4635:1 4658:1 4674:1 4876:1 4924:1 5010:2 5152:2 5176:1 5205:1 5268:1 5381:1 5390:1 5509:1 5558:1 5640:1 5699:1 5761:1 5784:1 5823:1 5824:1 5840:1 5841:7 5880:1 6082:1 6169:7 6357:1 6371:1 6394:1 6403:1 6404:1 6518:1 6611:1 6617:1 6733:1 6753:1 6845:1 6868:1 6870:1 6959:1 7035:2 7074:1 7190:1 7249:1 7254:2 7276:2 7394:1 7397:1 7403:1 7413:1 7451:1 7613:1 7684:1 7764:1 7791:1 7869:1 7879:1 7915:1 8026:1 8138:1 8251:1 8255:1 8490:1 8526:2 8577:1 8586:1 8604:1 8688:1 8770:1 8791:1 8832:1 8901:6 8920:2 8923:3 8943:1 9034:1 9051:1 9206:1 9234:1 9343:1 9370:1 9386:1 9444:1 9448:1 9484:4 9589:1 9616:1 9678:3 9687:1 9709:1 9748:1 9765:1 9878:1 9880:1 9885:1 9903:1 9919:1 9944:1 10053:2 10065:1 10069:1 10088:1 10121:1 10128:2 10138:1 10139:1 10161:1 10208:1 10214:1 10219:1 10221:1 10270:1 10554:1 10558:1 10565:1 10588:1 10634:1 10671:1 10845:1 10846:1 10937:1 10947:1 11009:7 11047:1 11056:1 11124:1 11154:4 11225:1 11229:1 11318:2 11363:1 11368:1 11400:1 11422:2 11580:4 11583:2 11595:1 11728:1 11775:1 11897:1 12043:1 12075:1 12119:1 12121:1 12125:1 12200:1 12229:1 12346:1 12512:1 12531:2 12623:1 12664:1 12807:1 12825:1 12974:1 12980:1 12981:1 12983:1 12990:1 13014:1 13021:1 13057:1 13063:1 13067:1 13125:1 13127:1 13207:1 13218:2 13252:1 13254:1 13328:1 13395:1 13403:1 13447:1 13537:1 13580:1 13590:2 13592:1 13717:1 13872:1 13913:1 13914:1 13916:7 14083:1 14098:1 14167:1 14172:1 14312:1 14369:1 14373:1 14506:1 14565:2 14566:1 14693:1 14785:1 14819:1 14870:1 14920:1 15002:1 15014:1 15023:1 15045:1 15080:1 15140:1 15156:1 15162:1 15164:1 15178:1 15198:1 15234:1 15250:1 15338:1 15420:1 15465:1 15486:1 15538:1 15598:1 15659:1 15739:1 15851:1 15856:1 15861:1 15891:1 15921:1 15997:1 16046:1 16051:1 16202:1 16279:1 16341:1 16401:1 16414:1 16416:1 16424:1 16483:1 16612:1 16661:1 16692:1 16718:1 16874:1 17000:1 17005:1 17163:1 17353:2 17433:1 17501:1 17512:2 17662:1 17685:2 17687:1 17689:1 17829:1 17885:1 17889:1 17890:1 17900:1 17902:1 17919:2 18012:1 18024:1 18073:1 18175:1 18187:1 18263:7 18324:1 18341:12 18390:1 18418:1 18424:1 18455:1 18467:1 18473:1 18474:1 18516:1 18518:1 18530:1 18544:1 18797:1 18798:1 18808:1 18822:1 18826:1 18916:1 18922:1 18946:1 19004:1 19042:1 19048:2 19072:1 19167:1 19177:1 19245:1 19382:1 19497:1 19564:1 19587:1 19685:1 19718:1 19726:1 19737:1 19759:1 19841:1 19926:2 19944:1 19956:1 19962:1 20020:1 20037:2 20130:1 20153:1 20210:1 20216:1 20249:1 20261:1 20450:1 20474:2 20488:1 20595:1 20645:1 20649:1 20676:1 20693:1 20792:4 20869:1 20965:1 21020:448 21047:1 21108:1 21136:2 21201:1 21212:1 21239:1 21242:1 21268:1 21284:1 21340:1 21384:2 21454:1 21484:1 21490:1 21494:1 21539:1 21551:1 21563:3 21660:1 21779:1 21795:1 21832:1 21836:2 21867:3 21895:1 21896:3 21930:1 21965:1 21970:1 21995:1 22000:1 22004:1 22029:1 22068:1 22262:1 22264:2 22308:1 22317:1 22377:1 22478:1 22534:1 22556:1 22581:1 22616:1 22624:1 22680:1 22745:1 22800:2 22822:2 22845:1 22863:1 22922:1 22933:1 22945:1 22999:1 23024:1 23105:1 23153:1 23198:1 23532:2 23546:3 23595:1 23682:1 23711:1 23832:1 23873:1 24065:2 24073:1 24084:1 24143:1 24216:1 24218:1 24255:1 24328:1 24360:1 24363:2 24408:1 24478:1 24543:2 24563:1 24662:2 24702:1 24703:2 24747:1 24824:3 24825:1 24855:1 24869:1 24908:1 24923:1 24979:7 25005:1 25021:1 25026:1 25033:1 25047:1 25065:1 25071:2 25110:2 25125:1 25129:1 25156:2 25206:1 25209:1 25275:1 25303:2 25473:1 25588:1 25595:2 25620:1 25683:1 25695:1 25732:1 25871:1 26044:1 26075:2 26133:1 26165:1 26230:1 26254:1 26309:1 26315:1 26319:1 26324:1 26415:1 26424:4 26539:1 26794:2 26818:1 26897:1 26931:1 27009:1 27022:1 27072:1 27114:1 27225:1 27377:1 27451:1 27489:1 27512:1 27533:1 27602:1 27612:1 27753:1 27804:1 27851:1 27917:1 27997:1 28021:1 28132:1 28174:1 28253:1 28273:1 28327:2 28348:1 28414:1 28557:1 28608:1 28609:1 28680:1 28734:1 28847:2 28870:1 28872:2 29029:1 29085:1 29120:1 29272:1 29316:1 29334:1 29365:4 29374:1 29439:1 29472:1 29519:2 29574:1 29653:3 29655:1 29675:1 29676:1 29679:1 29732:1 29771:1 29781:2 29821:1 29842:1 29861:1 30063:1 30121:1 30334:1 30393:1 30399:1 30418:2 30451:1 30524:4 30525:1 30531:1 30560:1 30643:1 30648:1 30651:1 30846:1 31088:1 31176:1 31204:1 31302:1 31317:1 31514:1 31544:5 31546:1 31587:2 31662:1 31681:1 31697:1 31702:1 31863:1 31959:1 32028:1 32039:1 32115:1 32178:1 32279:1 32310:1 32314:1 32381:1 32582:1 32733:2 32735:1 32902:1 32903:1 32957:1 32966:1
16 26:1 85:1 109:1 176:1 219:1 338:1 351:1 387:1 399:2 468:2 551:2 577:1 589:1 713:1 723:1 774:1 779:1 805:1 812:1 832:1 869:1 886:1 929:1 937:1 944:1 970:1 988:1 1000:1 1007:1 1069:1 1082:1 1114:1 1139:1 1143:1 1149:1 1180:1 1185:1 1202:1 1221:1 1250:1 1301:1 1341:1 1369:2 1388:2 1426:2 1472:1 1506:1 1560:1 1586:1 1633:1 1642:1 1742:1 1760:1 1773:1 1774:1 1780:1 1802:1 1835:1 1839:2 1853:1 1879:1 1907:1 1914:1 1919:1 1924:1 1927:1 1941:1 1966:1 2055:1 2058:1 2097:1 2098:1 2127:1 2143:1 2174:1 2187:1 2211:1 2232:1 2234:4 2262:1 2282:1 2317:1 2323:1 2368:1 2369:1 2414:1 2441:1 2444:2 2446:1 2475:1 2631:1 2632:1 2638:1 2640:1 2643:1 2647:1 2651:1 2660:4 2668:2 2687:1 2763:1 2800:1 2826:1 2845:1 2871:1 2944:1 3023:1 3082:4 3092:1 3098:1 3136:2 3150:1 3164:1 3177:1 3246:2 3252:1 3256:2 3314:4 3355:2 3363:2 3426:5 3435:1 3441:1 3533:1 3613:1 3700:1 3863:1 4003:1 4041:1 4053:1 4076:1 4077:1 4089:1 4144:1 4150:1 4152:1 4161:1 4235:1 4271:1 4297:1 4323:1 4325:10 4377:4 4381:1 4419:2 4423:1 4426:1 4438:1 4439:1 4444:1 4491:3 4541:1 4544:1 4567:1 4630:1 4635:1 4658:1 4674:1 4876:1 4924:1 5010:2 5120:1 5152:2 5176:1 5205:1 5268:1 5381:1 5390:1 5433:1 5509:1 5510:1 5558:1 5640:1 5659:2 5660:1 5699:1 5761:1 5784:1 5823:2 5824:1 5840:1 5841:7 5880:1 6081:1 6082:1 6125:1 6169:7 6301:1 6357:1 6371:1 6394:1 6403:1 6404:1 6483:1 6518:1 6611:1 6617:1 6647:1 6733:1 6753:1 6845:1 6868:1 6870:1 6873:1 6959:1 7035:2 7068:1 7074:1 7190:1 7202:1 7249:1 7254:2 7276:2 7316:1 7386:1 7394:1 7397:1 7403:1 7413:1 7451:1 7613:1 7684:1 7716:1 7764:1 7791:1 7805:1 7869:1 7879:1 7891:1 7915:1 7998:1 8012:1 8026:1 8032:1 8138:1 8251:1 8255:1 8263:1 8490:1 8526:2 8577:1 8586:1 8604:1 8688:1 8770:1 8791:1 8821:1 8832:1 8850:1 8901:10 8920:2 8923:5 8943:1 8978:1 9034:1 9051:1 9161:1 9206:1 9234:1 9251:1 9343:1 9362:1 9368:1 9370:1 9386:1 9444:1 9448:1 9484:4 9551:1 9589:1 9616:1 9678:3 9687:1 9709:1 9748:1 9765:1 9836:1 9878:1 9880:1 9881:1 9882:1 9884:1 9885:1 9903:1 9919:1 9934:1 9944:1 10053:2 10065:1 10069:1 10088:1 10121:1 10128:2 10138:1 10139:1 10144:1 10161:1 10162:1 10208:1 10209:1 10214:1 10219:1 10221:1 10257:1 10270:1 10397:1 10554:1 10558:1 10565:1 10588:1 10619:1 10634:1 10671:1 10701:1 10710:1 10845:1 10846:1 10862:1 10903:1 10937:1 10947:1 11009:7 11016:1 11047:1 11056:1 11083:1 11124:1 11154:4 11225:1 11229:1 11318:2 11363:1 11368:1 11400:1 11422:2 11464:1 11496:1 11580:4 11583:2 11595:1 11728:1 11775:2 11897:1 11994:1 12043:1 12052:1 12075:1 12119:1 12121:1 12125:1 12197:1 12200:1 12211:1 12229:1 12249:2 12345:1 12346:1 12352:1 12459:1 12499:1 12512:1 12531:2 12623:1 12664:2 12676:1 12807:1 12825:1 12919:1 12974:2 12980:1 12981:1 12983:1 12990:1 12991:1 13014:1 13021:1 13057:1 13063:2 13067:1 13100:1 13125:1 13127:1 13207:1 13218:2 13252:1 13254:1 13297:1 13328:1 13354:1 13369:1 13395:1 13403:1 13447:2 13536:1 13537:1 13580:1 13590:2 13592:1 13717:1 13872:1 13913:1 13914:1 13916:7 13923:2 14021:1 14082:1 14083:1 14098:1 14167:1 14172:1 14207:1 14222:1 14312:1 14369:1 14373:1 14506:2 14546:1 14565:2 14566:1 14592:1 14667:1 14693:1 14785:1 14819:1 14870:1 14920:1 15002:2 15014:1 15023:1 15044:1 15045:1 15080:1 15140:1 15155:1 15156:1 15162:1 15164:1 15171:1 15178:1 15192:1 15198:1 15234:2 15250:1 15338:1 15400:1 15420:1 15441:1 15465:1 15486:1 15514:1 15538:1 15576:1 15589:1 15598:1 15602:1 15659:1 15726:1 15739:1 15822:1 15851:1 15856:1 15861:1 15891:1 15908:1 15921:1 15939:2 15997:1 16046:1 16051:1 16202:2 16279:1 16341:1 16393:1 16401:1 16414:1 16416:1 16424:1 16483:1 16525:1 16612:1 16661:1 16692:1 16718:1 16874:1 17000:1 17005:1 17137:1 17163:1 17353:2 17355:1 17380:1 17433:1 17441:1 17501:1 17512:2 17591:1 17662:1 17685:3 17687:1 17689:1 17829:1 17835:1 17885:1 17889:1 17890:1 17900:1 17902:1 17919:2 17996:1 18012:1 18024:2 18073:1 18101:1 18175:1 18182:1 18187:2 18199:1 18263:7 18324:2 18341:13 18361:1 18390:1 18418:1 18424:1 18455:1 18467:1 18473:1 18474:1 18516:1 18518:1 18530:1 18544:1 18610:1 18797:1 18798:1 18808:1 18822:2 18826:1 18867:1 18916:1 18922:1 18946:1 19004:1 19042:1 19048:3 19072:1 19094:1 19136:1 19167:1 19177:1 19245:1 19382:2 19469:1 19497:1 19564:1 19587:1 19619:1 19685:1 19711:1 19718:1 19726:1 19737:1 19759:1 19789:1 19841:1 19926:2 19944:1 19956:1 19962:1 20020:1 20037:2 20130:1 20153:1 20210:1 20216:1 20249:1 20261:2 20265:1 20420:1 20450:1 20474:2 20480:1 20488:1 20531:1 20595:1 20645:1 20649:1 20676:1 20693:1 20749:1 20792:4 20821:1 20865:1 20869:1 20884:1 20946:1 20965:1 20976:1 21020:626 21047:1 21108:1 21136:3 21178:1 21201:1 21212:1 21239:1 21242:1 21268:1 21284:1 21340:1 21384:2 21442:1 21454:1 21484:1 21490:1 21494:1 21511:1 21539:1 21551:1 21563:4 21660:1 21779:1 21795:1 21810:1 21832:1 21836:2 21867:3 21895:1 21896:3 21930:1 21965:1 21970:1 21995:1 22000:1 22004:1 22015:1 22029:1 22068:1 22089:1 22101:1 22131:1 22262:1 22264:3 22308:1 22317:1 22377:1 22422:1 22444:1 22478:1 22534:1 22556:1 22581:1 22616:1 22624:1 22680:1 22708:2 22745:1 22800:3 22822:2 22845:1 22863:2 22881:1 22922:1 22933:1 22945:1 22999:1 23024:2 23105:1 23153:1 23185:1 23198:1 23242:1 23457:1 23532:3 23546:3 23595:1 23682:1 23711:1 23765:1 23803:1 23832:1 23836:1 23873:1 24065:2 24073:1 24084:1 24143:1 24154:1 24216:1 24218:1 24255:1 24328:1 24360:1 24363:2 24377:1 24408:1 24478:1 24543:2 24563:1 24649:1 24662:2 24682:1 24702:1 24703:2 24747:1 24824:3 24825:1 24855:1 24869:2 24908:1 24923:1 24979:7 25005:1 25021:1 25026:1 25033:1 25047:1 25057:1 25065:1 25071:2 25110:2 25125:1 25129:2 25156:2 25206:1 25209:1 25256:1 25275:1 25289:1 25303:2 25340:1 25473:1 25526:1 25588:1 25595:3 25620:1 25683:1 25689:1 25695:1 25732:1 25828:2 25871:1 25929:1 26017:1 26044:1 26075:2 26133:1 26165:1 26174:1 26179:2 26184:1 26230:1 26254:1 26309:1 26315:1 26319:1 26324:1 26352:1 26415:1 26424:4 26532:1 26539:1 26605:1 26679:1 26748:1 26758:1 26794:2 26818:1 26897:1 26924:1 26931:1 27009:1 27022:1 27072:1 27114:2 27225:1 27377:1 27398:1 27451:1 27489:1 27512:1 27516:1 27533:1 27602:3 27612:1 27620:1 27676:1 27753:1 27769:1 27804:1 27817:1 27851:1 27917:1 27997:1 28007:1 28021:1 28032:1 28132:1 28174:1 28242:1 28253:1 28273:1 28327:2 28331:1 28348:1 28414:1 28509:1 28512:1 28557:1 28563:1 28608:1 28609:1 28641:1 28642:1 28680:1 28697:1 28728:1 28734:1 28753:2 28847:2 28870:1 28872:2 28902:1 28913:1 29029:1 29085:1 29120:1 29272:1 29316:1 29326:1 29334:1 29365:4 29374:1 29439:1 29472:2 29519:2 29543:1 29574:1 29653:3 29655:1 29675:1 29676:1 29679:1 29732:1 29771:1 29781:2 29821:1 29842:1 29861:1 30063:1 30121:1 30334:1 30393:2 30399:1 30418:2 30451:1 30524:4 30525:1 30531:1 30560:1 30643:1 30648:1 30651:1 30745:1 30846:1 31088:1 31104:1 31132:1 31176:1 31204:1 31243:1 31302:1 31317:1 31514:1 31541:1 31544:8 31545:1 31546:1 31587:2 31613:1 31644:1 31646:1 31662:1 31681:1 31697:1 31702:1 31863:1 31959:1 32028:1 32039:2 32115:1 32178:1 32279:1 32310:2 32314:1 32381:1 32505:1 32543:1 32582:1 32605:1 32701:1 32727:1 32733:2 32735:1 32755:1 32821:1 32902:1 32903:1 32905:1 32957:1 32966:1
16 26:1 85:2 109:1 176:1 219:1 269:1 338:1 351:1 387:1 398:1 399:2 468:2 551:2 567:1 577:1 589:1 713:1 723:1 762:2 774:1 779:1 805:1 812:1 832:1 869:1 886:1 929:1 937:1 944:1 970:1 988:1 1000:1 1007:1 1051:1 1069:1 1081:1 1082:1 1114:1 1139:1 1143:1 1149:1 1180:1 1185:1 1202:1 1221:1 1250:1 1301:1 1341:1 1359:1 1369:2 1388:2 1412:1 1426:2 1472:1 1506:1 1512:1 1560:1 1586:1 1633:1 1642:1 1742:1 1760:2 1773:1 1774:1 1780:1 1802:1 1835:1 1839:2 1853:1 1879:1 1907:1 1914:1 1919:1 1924:1 1927:1 1941:1 1966:1 1975:1 2018:1 2055:1 2058:1 2069:1 2097:1 2098:1 2122:1 2127:1 2143:1 2174:1 2187:1 2211:1 2232:1 2234:4 2262:1 2282:1 2317:1 2323:1 2368:1 2369:1 2414:1 2441:1 2444:2 2446:1 2475:1 2631:1 2632:1 2638:1 2640:1 2641:1 2643:1 2647:1 2651:1 2660:4 2665:1 2668:2 2687:1 2763:1 2800:1 2826:1 2845:1 2871:1 2944:1 3023:1 3082:4 3092:1 3098:1 3136:2 3150:1 3164:1 3177:1 3197:1 3246:2 3252:1 3256:2 3314:4 3355:2 3363:3 3426:8 3435:1 3441:1 3533:1 3613:1 3700:1 3710:1 3713:1 3863:1 4003:1 4041:1 4053:1 4076:1 4077:1 4089:1 4144:1 4150:1 4152:1 4161:1 4235:1 4270:1 4271:1 4297:1 4323:1 4325:10 4347:1 4377:4 4381:1 4419:2 4423:1 4426:1 4438:1 4439:1 4444:1 4491:3 4541:1 4544:1 4567:1 4630:1 4635:1 4643:1 4658:1 4674:1 4876:1 4924:1 5010:2 5120:1 5152:2 5176:1 5205:1 5268:1 5381:1 5390:1 5433:1 5509:1 5510:1 5558:1 5640:1 5659:4 5660:1 5699:1 5761:1 5784:1 5822:1 5823:3 5824:1 5840:1 5841:7 5880:1 6081:2 6082:2 6125:1 6169:7 6255:1 6301:1 6357:1 6371:1 6394:1 6403:1 6404:1 6483:1 6515:1 6518:1 6611:1 6617:1 6647:1 6678:1 6728:1 6733:1 6753:1 6845:1 6868:1 6870:1 6873:1 6959:1 7035:2 7068:1 7074:1 7102:1 7190:1 7202:1 7249:1 7254:2 7276:2 7300:1 7316:1 7386:1 7394:1 7397:1 7403:1 7413:1 7451:1 7613:1 7684:1 7716:2 7742:1 7764:1 7791:1 7805:1 7869:1 7879:1 7891:2 7900:1 7915:1 7998:1 8012:1 8026:1 8032:1 8091:1 8138:1 8251:1 8255:2 8263:2 8289:1 8490:1 8526:2 8575:1 8577:1 8586:1 8604:1 8688:1 8770:1 8791:1 8821:1 8832:1 8850:1 8901:12 8920:2 8923:7 8943:1 8952:1 8978:1 9034:1 9051:1 9153:1 9161:1 9206:1 9234:1 9251:1 9343:1 9362:1 9368:1 9370:1 9386:1 9405:1 9444:1 9448:1 9484:4 9551:1 9589:1 9616:1 9678:3 9687:1 9709:1 9747:1 9748:1 9765:1 9836:1 9878:1 9880:1 9881:2 9882:1 9884:1 9885:1 9894:1 9897:1 9903:1 9919:1 9934:1 9944:1 10053:2 10065:1 10069:1 10088:1 10121:1 10128:2 10138:1 10139:1 10144:1 10161:1 10162:1 10208:1 10209:1 10214:1 10219:1 10221:1 10257:1 10270:1 10397:1 10441:1 10554:1 10558:1 10565:1 10588:1 10619:1 10634:1 10671:1 10673:1 10701:1 10710:1 10845:1 10846:1 10862:1 10900:1 10903:1 10937:1 10947:1 11009:7 11016:1 11047:1 11056:1 11083:1 11124:1 11154:5 11225:1 11229:1 11318:2 11363:1 11368:1 11400:1 11422:2 11464:1 11496:1 11580:4 11583:2 11595:1 11728:1 11775:2 11789:1 11897:1 11994:1 12043:1 12052:1 12075:1 12119:1 12121:1 12125:1 12145:1 12197:1 12200:1 12211:2 12229:1 12249:2 12316:1 12345:1 12346:1 12352:1 12459:1 12499:1 12512:1 12531:2 12623:1 12664:2 12676:1 12706:1 12807:1 12825:1 12919:1 12974:2 12980:1 12981:1 12983:1 12990:1 12991:1 13014:1 13021:1 13057:1 13063:3 13067:1 13100:1 13122:1 13125:1 13127:1 13135:1 13207:1 13218:2 13252:1 13254:1 13297:1 13328:1 13341:1 13354:1 13368:1 13369:1 13379:1 13382:1 13395:1 13403:1 13447:2 13518:1 13536:1 13537:1 13576:1 13580:1 13590:2 13592:1 13692:1 13717:1 13872:1 13874:1 13913:1 13914:1 13916:7 13923:2 14021:1 14082:1 14083:1 14098:1 14167:1 14172:1 14207:1 14222:1 14312:1 14369:1 14373:1 14382:1 14506:3 14519:1 14527:1 14546:1 14565:2 14566:1 14592:1 14667:1 14693:1 14785:1 14819:1 14870:1 14920:1 15002:2 15014:1 15017:1 15023:1 15044:1 15045:1 15080:1 15140:1 15155:1 15156:2 15162:1 15164:1 15171:1 15178:1 15192:1 15198:1 15234:2 15250:1 15338:1 15400:1 15420:1 15441:1 15465:1 15486:1 15514:1 15538:1 15576:1 15589:1 15598:1 15600:1 15602:1 15659:1 15726:1 15739:2 15750:1 15822:1 15851:1 15856:1 15861:1 15891:1 15908:1 15921:1 15938:1 15939:2 15950:1 15997:1 16043:1 16046:1 16051:1 16202:2 16279:1 16341:1 16393:1 16401:1 16414:1 16416:1 16424:1 16483:1 16491:1 16525:1 16612:1 16661:1 16692:1 16718:1 16874:1 17000:1 17005:1 17010:1 17137:1 17163:1 17255:1 17353:2 17355:1 17380:1 17433:1 17441:1 17501:1 17512:2 17591:1 17662:1 17685:3 17687:1 17689:1 17763:1 17829:1 17835:1 17885:1 17889:1 17890:1 17896:1 17900:1 17902:1 17919:2 17996:1 18012:1 18024:2 18030:1 18073:1 18101:1 18175:1 18182:1 18187:2 18198:2 18199:1 18217:1 18263:7 18324:2 18341:13 18361:1 18390:1 18418:1 18424:1 18455:1 18467:1 18473:1 18474:1 18516:1 18518:1 18530:1 18544:1 18610:2 18696:1 18797:1 18798:1 18808:1 18822:2 18826:1 18867:1 18916:1 18922:1 18946:1 19004:1 19042:1 19048:6 19072:1 19094:1 19136:1 19167:1 19177:1 19245:1 19374:1 19382:2 19469:2 19497:1 19501:1 19542:1 19564:1 19587:1 19619:2 19685:1 19711:1 19718:1 19726:1 19730:1 19737:1 19759:1 19789:1 19841:1 19926:2 19944:1 19956:1 19962:1 20020:1 20037:2 20103:1 20130:1 20153:1 20210:1 20216:1 20249:1 20255:1 20261:2 20265:1 20383:1 20420:1 20450:1 20474:2 20480:1 20488:1 20531:1 20595:1 20645:1 20649:1 20676:1 20693:1 20749:1 20792:4 20821:1 20865:1 20869:1 20884:1 20946:1 20965:1 20976:1 21020:729 21047:1 21108:1 21136:3 21178:1 21201:1 21212:1 21239:1 21242:1 21268:2 21284:2 21340:1 21384:2 21442:2 21454:1 21484:1 21490:1 21494:1 21511:1 21539:1 21551:1 21563:4 21660:1 21779:1 21795:1 21797:1 21810:1 21832:1 21836:2 21867:3 21895:1 21896:3 21930:1 21965:1 21970:1 21995:1 22000:1 22004:1 22015:1 22029:1 22060:1 22068:1 22089:1 22101:1 22131:1 22262:1 22264:6 22308:1 22317:1 22377:1 22422:1 22444:1 22476:1 22478:1 22534:1 22542:1 22556:1 22581:1 22616:1 22624:1 22680:1 22708:2 22745:1 22800:6 22822:2 22844:1 22845:1 22863:2 22881:1 22922:1 22933:1 22945:1 22999:1 23024:2 23105:1 23153:1 23185:1 23198:1 23242:1 23245:1 23407:1 23457:1 23532:5 23546:3 23595:1 23653:1 23682:1 23711:2 23765:1 23803:1 23832:1 23836:1 23873:1 24065:2 24070:2 24073:1 24084:1 24143:1 24154:1 24216:1 24218:2 24255:1 24328:1 24360:1 24363:2 24377:1 24408:1 24478:1 24543:2 24563:1 24649:1 24662:2 24682:1 24702:1 24703:2 24707:1 24719:1 24732:1 24747:1 24824:3 24825:1 24855:1 24869:2 24908:1 24923:1 24979:7 25005:1 25021:1 25026:1 25033:1 25047:1 25057:1 25065:1 25071:2 25110:2 25125:1 25129:2 25156:2 25168:1 25206:1 25209:1 25245:1 25256:1 25275:1 25289:1 25303:2 25340:1 25473:1 25526:1 25581:1 25588:1 25595:7 25620:1 25683:1 25689:1 25695:1 25732:1 25755:1 25828:2 25853:1 25871:1 25928:1 25929:1 26017:1 26044:1 26075:2 26133:1 26165:1 26174:1 26179:2 26184:1 26230:1 26254:1 26283:1 26309:1 26315:1 26319:1 26324:1 26352:1 26415:1 26424:4 26532:1 26539:1 26605:1 26679:1 26694:1 26748:1 26758:1 26794:2 26818:1 26897:1 26924:1 26931:1 27009:1 27014:1 27022:1 27072:1 27114:2 27122:1 27225:1 27377:1 27398:1 27419:1 27437:1 27439:1 27451:1 27489:1 27502:1 27512:1 27516:1 27533:1 27574:1 27602:3 27612:1 27620:1 27676:1 27753:1 27757:1 27769:1 27804:1 27813:1 27817:1 27851:1 27917:1 27957:1 27997:1 28007:1 28021:1 28032:1 28132:1 28174:1 28242:1 28253:1 28273:1 28327:2 28331:1 28335:1 28348:1 28414:1 28509:1 28512:1 28518:1 28557:1 28563:1 28608:1 28609:1 28641:1 28642:1 28680:1 28697:2 28728:1 28734:1 28753:2 28847:2 28870:1 28872:2 28902:1 28913:1 28945:1 29029:1 29085:1 29120:1 29123:1 29272:1 29316:1 29326:1 29334:1 29365:4 29374:1 29439:1 29472:2 29519:2 29543:1 29574:1 29653:3 29655:1 29675:1 29676:1 29677:1 29679:1 29732:1 29771:1 29781:2 29821:1 29842:1 29861:1 29882:1 30063:1 30121:1 30221:1 30334:1 30393:2 30399:1 30418:2 30451:1 30524:4 30525:1 30531:1 30560:1 30643:1 30648:1 30651:1 30738:1 30745:1 30846:1 31088:2 31104:1 31132:1 31176:1 31204:1 31243:1 31302:1 31317:1 31514:1 31541:1 31544:11 31545:1 31546:1 31555:1 31587:3 31597:1 31613:1 31644:1 31646:1 31662:1 31681:1 31697:1 31702:1 31863:1 31959:1 31964:1 32028:1 32039:2 32115:1 32178:1 32279:1 32310:2 32314:1 32381:1 32505:2 32510:1 32543:1 32582:1 32605:1 32662:1 32701:1 32727:1 32733:2 32735:1 32755:1 32821:1 32902:1 32903:1 32905:1 32957:1 32966:1
16 26:1 85:3 109:1 176:1 219:1 269:1 338:1 351:1 387:1 398:1 399:2 468:2 551:2 567:1 577:1 589:1 713:1 723:1 751:1 762:2 774:1 779:1 805:1 812:1 832:1 869:1 886:1 929:1 937:1 944:1 970:1 988:1 1000:1 1007:1 1051:1 1069:1 1081:1 1082:1 1114:1 1139:1 1143:1 1149:1 1180:1 1185:1 1202:1 1221:1 1250:1 1301:1 1341:1 1359:1 1369:2 1388:2 1412:1 1426:2 1472:1 1506:1 1512:1 1546:1 1560:1 1586:1 1633:1 1642:1 1742:1 1760:2 1773:1 1774:1 1780:1 1802:1 1835:1 1839:2 1853:1 1879:1 1907:1 1914:1 1919:1 1924:1 1927:1 1941:1 1966:1 1975:1 2018:1 2055:1 2058:1 2069:2 2097:1 2098:1 2122:1 2127:1 2143:1 2174:1 2187:1 2211:1 2232:1 2234:4 2262:1 2282:1 2317:1 2323:1 2368:1 2369:1 2414:1 2441:1 2444:2 2446:1 2475:1 2531:1 2631:1 2632:1 2638:1 2640:1 2641:1 2643:1 2647:1 2651:1 2660:4 2665:1 2668:2 2687:1 2763:1 2800:1 2826:1 2845:1 2871:1 2944:1 3023:1 3062:1 3082:4 3092:1 3098:1 3136:3 3150:1 3164:1 3177:1 3197:1 3246:2 3252:1 3256:2 3314:4 3355:3 3363:4 3426:9 3435:1 3441:1 3457:1 3533:1 3607:1 3613:1 3700:1 3710:1 3713:1 3863:1 3985:1 4003:1 4041:1 4049:1 4053:1 4076:1 4077:1 4089:1 4144:1 4150:1 4152:1 4161:1 4235:1 4270:1 4271:1 4297:1 4323:1 4325:10 4347:1 4377:4 4381:1 4419:2 4423:1 4426:1 4438:1 4439:1 4444:1 4491:3 4541:1 4544:1 4567:1 4587:1 4622:1 4630:1 4635:1 4643:1 4658:1 4674:1 4813:1 4876:1 4924:1 5010:2 5120:1 5152:2 5176:1 5205:1 5268:1 5381:1 5390:1 5433:1 5509:1 5510:1 5558:1 5640:1 5659:4 5660:1 5699:1 5761:1 5784:1 5822:1 5823:4 5824:1 5828:1 5840:1 5841:7 5880:1 6081:2 6082:2 6125:1 6169:7 6205:1 6255:1 6301:1 6357:1 6371:1 6394:1 6403:1 6404:1 6483:1 6515:1 6518:1 6574:1 6611:1 6617:1 6647:1 6672:1 6678:1 6728:1 6733:1 6753:1 6826:1 6844:1 6845:1 6868:1 6870:1 6873:1 6959:1 7035:2 7068:1 7074:1 7102:1 7190:1 7202:1 7249:1 7254:2 7276:2 7300:1 7316:1 7386:1 7394:1 7397:1 7401:1 7403:1 7410:1 7413:1 7451:1 7613:1 7615:1 7684:1 7716:2 7742:1 7764:1 7791:1 7805:1 7869:1 7879:1 7891:2 7900:1 7915:1 7998:1 8012:1 8026:1 8032:1 8091:1 8093:1 8138:1 8251:1 8255:2 8263:2 8289:1 8490:1 8507:1 8526:2 8575:1 8577:1 8586:1 8604:1 8688:1 8770:1 8791:1 8821:1 8832:1 8850:1 8901:12 8920:3 8923:8 8943:1 8952:1 8978:1 9034:1 9051:1 9082:1 9153:1 9161:1 9206:1 9234:1 9251:1 9343:1 9362:1 9368:1 9370:1 9386:1 9405:1 9444:1 9448:1 9484:4 9551:1 9589:1 9616:1 9678:3 9687:1 9709:1 9747:1 9748:1 9765:1 9836:1 9859:1 9878:1 9880:1 9881:2 9882:1 9884:1 9885:1 9894:1 9897:1 9903:1 9919:1 9934:1 9944:1 9945:1 9959:1 10053:2 10056:1 10065:1 10069:1 10088:1 10121:1 10128:2 10138:1 10139:1 10144:1 10161:1 10162:1 10208:1 10209:1 10214:1 10219:1 10221:1 10257:1 10270:1 10397:1 10399:1 10441:1 10554:1 10558:1 10565:1 10588:1 10619:1 10634:1 10671:1 10673:1 10701:1 10710:1 10845:1 10846:1 10862:1 10879:1 10900:1 10903:1 10937:1 10947:1 11009:7 11016:1 11047:1 11056:1 11083:1 11124:1 11154:5 11225:1 11229:1 11318:2 11319:1 11363:1 11368:1 11382:1 11400:1 11422:2 11464:1 11470:1 11496:1 11580:4 11583:2 11595:1 11703:1 11728:1 11754:1 11775:2 11789:1 11897:1 11994:1 12043:1 12052:1 12075:1 12119:1 12121:1 12125:1 12145:1 12197:1 12200:1 12211:3 12229:1 12249:2 12316:1 12322:1 12345:1 12346:1 12352:1 12459:1 12499:1 12512:1 12531:2 12623:1 12664:2 12676:1 12706:1 12807:1 12825:1 12919:1 12960:1 12974:2 12980:1 12981:1 12983:1 12990:1 12991:1 13014:1 13021:1 13057:1 13063:3 13067:1 13100:1 13122:1 13125:1 13127:1 13135:1 13207:1 13218:2 13252:1 13254:1 13297:1 13328:1 13341:1 13354:1 13368:1 13369:1 13379:1 13382:1 13395:1 13403:1 13447:2 13518:1 13536:1 13537:1 13576:1 13580:1 13590:2 13592:1 13692:1 13717:1 13872:1 13874:1 13913:1 13914:1 13916:7 13923:2 14021:1 14082:1 14083:1 14098:1 14167:1 14172:1 14207:1 14222:1 14312:1 14326:1 14369:1 14373:1 14382:1 14506:4 14519:1 14527:1 14530:1 14546:1 14565:2 14566:1 14592:1 14667:1 14693:1 14785:1 14819:1 14870:1 14920:1 15002:2 15014:1 15017:1 15023:1 15044:1 15045:1 15080:1 15140:1 15155:1 15156:2 15162:1 15164:1 15171:1 15178:1 15192:1 15198:1 15234:2 15250:1 15317:1 15338:1 15400:1 15420:1 15441:1 15465:1 15486:1 15514:1 15538:1 15576:1 15589:1 15597:1 15598:1 15600:1 15602:1 15659:1 15726:1 15739:2 15750:1 15797:1 15822:1 15851:1 15856:1 15861:1 15891:1 15908:1 15921:1 15938:2 15939:2 15950:1 15997:1 16043:1 16046:1 16051:1 16202:2 16279:1 16341:1 16393:1 16401:1 16414:1 16416:1 16424:1 16483:1 16491:1 16525:1 16612:1 16631:1 16661:1 16675:1 16692:1 16718:1 16874:1 17000:1 17005:1 17010:1 17137:1 17163:1 17255:1 17353:2 17355:1 17380:1 17385:1 17433:1 17435:1 17441:1 17501:1 17512:2 17591:1 17611:1 17662:1 17685:3 17687:2 17689:1 17763:1 17829:1 17835:1 17844:2 17885:1 17889:1 17890:1 17892:1 17896:1 17900:1 17902:1 17919:2 17996:1 18012:1 18024:2 18030:1 18073:1 18101:1 18175:1 18182:1 18187:2 18198:2 18199:1 18217:1 18263:7 18324:2 18341:13 18361:1 18390:1 18418:1 18424:1 18455:1 18467:1 18473:1 18474:1 18516:1 18518:1 18530:1 18544:1 18604:1 18610:2 18696:1 18797:1 18798:1 18808:1 18822:2 18826:1 18867:1 18916:1 18922:1 18946:1 19004:1 19020:1 19042:1 19048:7 19072:1 19084:1 19094:1 19136:1 19167:1 19170:1 19177:1 19243:1 19245:1 19374:1 19382:2 19469:2 19480:1 19497:1 19501:1 19542:1 19564:1 19587:1 19619:2 19640:1 19685:1 19711:1 19718:1 19726:1 19730:1 19737:1 19759:1 19789:1 19841:1 19926:2 19944:1 19956:1 19962:1 20020:1 20037:2 20103:1 20130:1 20153:1 20210:1 20216:1 20249:1 20255:1 20261:2 20265:1 20340:1 20382:1 20383:1 20420:1 20450:1 20474:2 20480:1 20488:1 20531:1 20595:1 20621:1 20645:1 20649:1 20676:1 20677:1 20693:1 20749:1 20792:4 20821:1 20865:1 20869:1 20884:1 20946:1 20965:1 20976:1 21020:849 21047:1 21108:1 21136:3 21178:1 21201:1 21212:1 21239:1 21242:1 21268:2 21284:2 21340:1 21384:2 21442:2 21454:1 21484:1 21490:1 21494:1 21511:1 21539:1 21551:1 21563:4 21660:1 21779:1 21795:1 21797:1 21810:1 21832:1 21835:1 21836:2 21841:1 21867:3 21895:1 21896:3 21930:1 21965:1 21970:1 21995:1 22000:1 22004:1 22015:1 22029:1 22060:1 22068:1 22089:1 22101:1 22131:1 22244:1 22262:1 22264:7 22308:1 22317:1 22377:1 22399:1 22422:1 22444:1 22476:1 22478:1 22484:1 22495:1 22534:1 22542:1 22556:1 22581:1 22616:1 22624:1 22676:1 22680:1 22708:2 22745:1 22800:7 22822:2 22844:1 22845:1 22863:2 22881:1 22922:1 22933:1 22945:1 22999:1 23024:2 23105:1 23153:1 23183:1 23185:1 23198:1 23242:1 23245:1 23407:1 23457:1 23532:5 23546:3 23550:1 23595:1 23653:1 23657:1 23682:1 23711:2 23765:1 23803:1 23832:1 23836:1 23873:1 24065:2 24070:2 24073:1 24084:1 24143:1 24154:1 24195:1 24202:1 24216:1 24218:2 24255:1 24311:1 24328:1 24341:1 24360:1 24363:2 24377:1 24396:1 24408:1 24478:1 24488:1 24543:2 24563:1 24649:1 24659:1 24662:2 24682:1 24702:1 24703:2 24707:1 24714:1 24719:1 24732:1 24747:1 24824:3 24825:1 24855:1 24861:1 24869:2 24908:1 24923:1 24979:7 25005:1 25021:1 25026:1 25033:1 25047:1 25057:1 25065:1 25071:2 25101:1 25110:2 25125:1 25129:2 25156:2 25168:1 25190:1 25206:1 25209:1 25245:1 25256:1 25275:1 25289:2 25303:2 25340:1 25473:1 25526:1 25581:1 25588:1 25595:8 25620:1 25683:1 25689:1 25695:1 25732:1 25755:1 25828:2 25853:1 25871:1 25928:1 25929:1 26001:1 26017:1 26044:1 26075:2 26133:1 26157:1 26165:1 26174:1 26179:2 26184:1 26230:1 26254:1 26283:1 26309:1 26315:1 26319:1 26324:1 26352:1 26415:2 26424:4 26532:1 26539:1 26605:1 26612:1 26679:1 26694:1 26748:1 26758:1 26794:2 26818:1 26897:1 26924:2 26931:1 26936:1 27009:1 27014:1 27022:1 27072:1 27114:2 27122:1 27225:1 27377:1 27398:2 27419:1 27437:1 27439:2 27451:1 27489:1 27502:1 27512:1 27516:1 27522:1 27533:1 27574:1 27602:3 27612:1 27620:1 27676:1 27753:1 27757:1 27769:1 27804:1 27813:1 27817:1 27851:1 27917:1 27957:1 27997:1 28007:1 28015:1 28021:1 28032:1 28094:1 28132:1 28174:1 28242:1 28253:1 28273:1 28327:2 28331:1 28335:1 28348:1 28414:1 28509:1 28512:1 28518:1 28557:1 28563:1 28608:2 28609:1 28635:1 28641:1 28642:1 28671:1 28680:1 28697:2 28728:1 28734:1 28753:2 28847:2 28870:1 28872:2 28902:1 28913:1 28945:1 29029:1 29085:1 29120:1 29123:1 29272:1 29316:1 29326:1 29334:1 29365:4 29374:1 29439:1 29472:2 29519:2 29543:1 29574:1 29653:3 29655:1 29675:1 29676:1 29677:1 29679:1 29732:1 29771:1 29781:2 29821:1 29842:1 29861:1 29882:1 30063:1 30121:1 30221:1 30334:1 30367:1 30393:2 30399:1 30418:2 30451:1 30524:4 30525:1 30531:1 30560:1 30643:1 30648:1 30651:1 30706:1 30738:1 30745:1 30753:1 30846:1 30998:1 31088:3 31104:1 31132:1 31176:1 31204:1 31243:1 31259:1 31302:1 31317:1 31477:1 31514:1 31541:1 31544:11 31545:1 31546:2 31555:1 31566:1 31586:1 31587:3 31597:1 31613:1 31644:1 31646:1 31662:1 31681:1 31697:1 31702:1 31801:1 31863:1 31959:1 31964:1 32012:1 32028:1 32039:2 32115:1 32178:1 32279:1 32310:2 32314:1 32381:1 32505:3 32510:1 32543:1 32582:1 32596:1 32605:2 32662:1 32684:1 32701:1 32727:1 32733:2 32735:1 32755:1 32821:1 32831:1 32902:1 32903:1 32905:1 32957:1 32966:1
16 26:1 85:4 109:1 176:1 219:1 269:2 338:1 351:2 387:1 398:1 399:2 427:1 468:2 551:2 567:1 577:1 589:1 591:1 713:1 723:1 751:2 762:4 774:1 779:1 805:1 812:1 832:1 869:1 886:1 929:1 937:1 944:1 970:1 988:1 1000:1 1007:1 1051:1 1069:1 1081:1 1082:1 1114:1 1139:1 1143:1 1149:1 1180:1 1185:1 1202:1 1221:1 1250:1 1301:1 1341:1 1359:1 1369:2 1388:2 1412:1 1426:2 1472:1 1506:1 1512:1 1546:1 1560:1 1586:1 1633:1 1642:1 1742:1 1760:2 1773:1 1774:1 1780:1 1802:1 1835:1 1839:2 1853:1 1867:1 1879:1 1907:1 1914:1 1919:1 1924:1 1927:1 1941:1 1966:1 1975:1 2018:1 2055:1 2058:1 2069:2 2097:1 2098:1 2122:1 2127:1 2139:1 2143:1 2174:1 2187:1 2211:1 2215:1 2232:1 2234:4 2262:1 2282:1 2317:1 2323:1 2368:1 2369:1 2414:1 2441:1 2444:2 2446:1 2475:1 2531:1 2631:1 2632:1 2637:1 2638:1 2640:1 2641:1 2643:2 2647:1 2651:1 2660:4 2665:1 2668:2 2687:1 2763:1 2800:1 2826:1 2845:1 2871:1 2944:1 3023:1 3062:1 3082:4 3092:1 3098:1 3136:3 3150:1 3164:1 3177:1 3197:1 3246:2 3252:1 3256:2 3314:4 3355:3 3363:5 3426:10 3435:1 3441:1 3457:1 3533:1 3607:1 3613:1 3700:1 3710:1 3713:2 3739:1 3863:1 3900:1 3985:1 4003:1 4041:1 4049:1 4053:1 4076:1 4077:1 4089:1 4144:1 4150:1 4152:1 4161:1 4235:1 4270:1 4271:1 4297:1 4323:1 4325:13 4347:1 4377:7 4379:1 4381:2 4405:1 4419:2 4423:1 4426:1 4438:1 4439:1 4444:1 4491:3 4541:1 4544:1 4567:1 4575:1 4587:1 4622:1 4630:1 4635:1 4643:1 4658:1 4674:1 4813:1 4876:1 4924:1 5010:3 5120:1 5152:2 5176:1 5205:1 5268:1 5381:1 5390:1 5433:2 5509:1 5510:1 5558:1 5640:1 5659:6 5660:1 5699:1 5761:1 5784:1 5822:1 5823:4 5824:1 5828:1 5840:1 5841:7 5880:1 6081:2 6082:2 6125:1 6169:7 6205:1 6255:1 6301:1 6357:1 6371:1 6394:1 6403:1 6404:1 6483:1 6507:1 6515:1 6518:1 6574:1 6611:1 6617:1 6647:1 6672:1 6678:1 6728:1 6733:1 6753:1 6826:1 6844:1 6845:1 6868:1 6870:1 6873:1 6959:1 7035:2 7045:1 7068:1 7074:1 7102:1 7190:1 7202:1 7249:1 7254:2 7276:2 7300:1 7316:1 7386:1 7394:1 7397:1 7401:1 7403:1 7410:2 7413:1 7451:1 7613:1 7615:1 7684:2 7716:2 7742:1 7764:1 7791:1 7805:1 7869:1 7879:1 7891:2 7900:1 7915:1 7998:1 8012:1 8026:1 8032:1 8091:1 8093:1 8138:1 8251:1 8255:4 8263:2 8289:1 8490:1 8507:1 8526:3 8575:1 8577:1 8586:1 8604:1 8688:1 8770:1 8784:1 8791:1 8821:1 8830:1 8832:1 8850:1 8901:14 8920:3 8923:9 8943:1 8952:1 8978:1 9014:1 9034:1 9051:1 9082:1 9153:3 9161:1 9206:1 9209:1 9234:1 9251:1 9343:1 9362:1 9368:1 9370:1 9386:1 9405:1 9444:1 9448:1 9484:4 9551:1 9589:1 9616:1 9639:1 9678:3 9687:1 9709:1 9715:1 9747:1 9748:1 9765:1 9777:1 9836:1 9859:1 9878:2 9880:1 9881:2 9882:1 9884:1 9885:1 9894:1 9897:1 9903:1 9919:1 9925:1 9934:1 9944:1 9945:1 9959:1 10053:2 10056:1 10065:1 10067:1 10069:1 10088:1 10121:1 10128:2 10138:1 10139:1 10144:1 10161:1 10162:1 10208:1 10209:1 10214:1 10219:1 10221:1 10257:1 10270:1 10295:1 10397:1 10399:1 10410:1 10441:1 10554:1 10558:1 10565:1 10588:1 10615:1 10619:1 10634:1 10671:1 10673:1 10701:1 10710:1 10845:1 10846:1 10862:1 10879:1 10900:1 10903:1 10937:1 10947:1 10959:1 11009:7 11016:1 11047:2 11056:1 11083:1 11124:1 11154:7 11225:1 11229:2 11318:2 11319:1 11363:1 11368:1 11374:1 11382:1 11400:1 11417:1 11422:2 11464:1 11470:1 11496:1 11580:4 11583:2 11595:1 11597:1 11703:1 11728:1 11754:1 11775:3 11789:1 11897:1 11914:1 11994:1 12043:1 12052:1 12075:1 12119:1 12121:1 12125:1 12145:1 12197:1 12200:1 12211:3 12229:1 12249:2 12316:1 12322:1 12345:1 12346:1 12352:1 12459:1 12498:1 12499:1 12512:1 12531:2 12623:1 12664:2 12676:2 12706:1 12807:1 12825:1 12919:1 12960:1 12974:2 12980:1 12981:1 12983:1 12990:1 12991:1 13014:1 13021:1 13057:1 13063:3 13067:1 13100:1 13122:1 13125:1 13127:1 13135:1 13207:1 13218:3 13252:1 13254:1 13297:1 13328:1 13341:1 13354:1 13368:3 13369:1 13379:3 13382:1 13395:1 13403:1 13447:3 13518:2 13536:1 13537:1 13576:1 13580:1 13590:2 13592:1 13629:1 13692:1 13717:1 13872:1 13874:1 13913:1 13914:1 13916:7 13923:2 13956:1 13972:1 14021:1 14082:2 14083:1 14098:1 14167:1 14172:1 14207:1 14222:1 14312:1 14326:1 14369:1 14373:1 14382:1 14506:5 14519:1 14527:1 14530:1 14546:1 14565:2 14566:1 14592:1 14629:1 14667:1 14693:1 14785:1 14819:1 14870:1 14920:1 14948:1 15002:2 15014:1 15017:1 15023:1 15044:1 15045:1 15080:1 15140:1 15155:1 15156:3 15162:1 15164:1 15171:1 15178:1 15192:1 15198:1 15234:2 15250:1 15317:1 15338:1 15400:1 15420:1 15441:1 15465:1 15486:1 15514:1 15538:1 15576:1 15589:1 15597:1 15598:1 15600:1 15602:1 15659:1 15726:1 15739:3 15750:1 15797:1 15822:1 15851:1 15856:1 15861:2 15891:1 15908:1 15921:1 15938:2 15939:2 15950:1 15997:1 16043:1 16046:1 16051:1 16202:2 16279:1 16341:1 16393:1 16401:1 16412:1 16414:1 16416:1 16424:1 16483:1 16491:1 16525:1 16612:1 16631:1 16661:1 16675:1 16692:1 16718:1 16874:1 16951:1 17000:1 17005:1 17010:1 17137:1 17163:1 17207:1 17255:1 17280:1 17353:2 17355:1 17360:1 17380:1 17385:1 17433:1 17435:1 17441:1 17501:2 17512:2 17591:1 17611:1 17633:1 17662:2 17685:3 17687:2 17689:1 17763:1 17829:1 17835:1 17844:2 17885:1 17889:1 17890:1 17892:1 17896:1 17900:1 17902:1 17913:1 17919:2 17996:1 18012:1 18024:2 18030:1 18073:1 18101:1 18175:1 18182:1 18187:2 18198:2 18199:1 18217:1 18263:7 18324:2 18341:17 18361:1 18390:1 18418:1 18424:1 18455:1 18467:1 18473:1 18474:1 18516:1 18518:1 18530:1 18544:1 18604:1 18610:2 18696:1 18797:1 18798:1 18808:1 18822:2 18826:1 18867:1 18916:1 18922:1 18946:1 19004:2 19020:1 19042:1 19048:7 19072:1 19084:1 19094:1 19136:1 19167:1 19170:1 19177:1 19243:1 19245:1 19374:1 19382:2 19440:1 19469:2 19480:1 19497:2 19501:1 19542:1 19564:1 19587:1 19619:2 19640:1 19685:1 19711:1 19718:1 19726:1 19730:2 19737:1 19759:1 19789:1 19840:1 19841:1 19926:2 19944:1 19956:1 19962:1 20020:1 20037:3 20103:1 20130:1 20153:1 20210:1 20216:1 20249:1 20255:1 20261:3 20265:1 20340:1 20382:2 20383:1 20420:1 20450:1 20456:1 20474:2 20480:1 20488:1 20531:1 20532:1 20595:1 20621:1 20645:1 20649:1 20676:1 20677:1 20693:1 20749:1 20792:5 20821:1 20865:1 20869:1 20884:1 20922:1 20946:1 20965:1 20976:1 21020:1005 21047:1 21054:1 21108:1 21136:3 21178:1 21201:1 21212:1 21239:1 21242:1 21268:3 21284:3 21340:1 21384:3 21418:1 21442:2 21454:1 21484:1 21490:1 21494:1 21511:1 21539:1 21551:1 21563:4 21660:1 21779:1 21795:1 21797:1 21810:1 21832:1 21835:1 21836:2 21841:1 21867:3 21895:1 21896:4 21930:1 21965:1 21970:1 21995:1 22000:1 22004:1 22015:1 22029:1 22060:1 22068:1 22089:1 22101:1 22131:1 22244:1 22262:1 22264:7 22308:1 22317:1 22369:1 22377:1 22399:1 22422:1 22444:1 22476:1 22478:1 22484:1 22495:1 22534:1 22542:2 22556:1 22581:1 22616:1 22624:1 22676:1 22680:1 22708:2 22745:1 22800:7 22822:2 22844:1 22845:1 22863:3 22881:1 22922:1 22933:1 22945:1 22999:1 23024:2 23105:1 23153:1 23183:1 23185:1 23198:1 23242:1 23245:1 23407:1 23457:1 23490:1 23532:5 23546:3 23550:1 23595:1 23653:2 23657:1 23682:1 23711:3 23765:1 23803:1 23832:1 23836:1 23873:1 23944:1 24065:2 24070:2 24073:1 24084:1 24143:1 24154:2 24195:1 24202:1 24216:1 24218:2 24255:1 24311:1 24328:1 24341:1 24360:1 24363:3 24377:1 24396:1 24408:1 24478:1 24488:2 24543:2 24563:2 24567:1 24649:1 24659:1 24662:3 24682:1 24702:1 24703:2 24707:1 24714:1 24719:2 24732:1 24747:1 24824:3 24825:1 24855:1 24861:1 24869:2 24908:1 24923:1 24979:7 25005:1 25021:1 25026:1 25033:1 25047:1 25057:1 25065:1 25071:2 25101:1 25110:2 25125:1 25129:2 25156:2 25168:2 25190:1 25206:1 25209:1 25245:2 25256:1 25275:1 25289:2 25303:2 25340:1 25473:2 25485:1 25526:1 25581:1 25588:1 25595:8 25620:1 25667:1 25683:1 25689:1 25695:1 25732:1 25755:1 25828:2 25853:1 25871:1 25928:1 25929:1 26001:1 26015:1 26017:1 26044:1 26075:2 26133:1 26157:1 26165:1 26174:1 26179:2 26184:1 26230:1 26254:1 26283:1 26309:1 26315:1 26319:1 26324:1 26352:1 26359:1 26415:2 26424:7 26532:1 26539:1 26605:1 26612:1 26679:1 26694:1 26748:1 26758:1 26794:2 26818:1 26897:1 26924:2 26931:1 26936:1 27009:1 27014:1 27022:1 27072:1 27114:2 27122:1 27225:1 27360:1 27377:1 27398:2 27419:1 27437:1 27439:2 27451:1 27489:1 27502:1 27512:1 27516:1 27522:1 27533:1 27574:1 27602:3 27612:1 27620:1 27676:1 27753:1 27757:1 27769:1 27804:1 27813:1 27817:1 27851:1 27881:1 27917:1 27957:1 27997:1 28007:1 28015:1 28021:1 28032:1 28094:1 28132:1 28174:1 28242:1 28253:1 28273:1 28327:2 28331:1 28335:1 28348:1 28414:1 28509:1 28512:1 28518:1 28557:1 28563:1 28608:2 28609:1 28635:1 28641:2 28642:1 28652:1 28666:1 28671:1 28680:1 28697:2 28728:1 28734:1 28753:2 28847:2 28870:1 28872:2 28902:1 28913:1 28945:1 29029:1 29085:1 29088:1 29120:1 29123:1 29272:1 29316:1 29326:1 29334:1 29365:5 29374:1 29439:1 29472:2 29519:2 29543:1 29574:1 29653:3 29655:2 29675:1 29676:1 29677:2 29679:1 29732:1 29771:1 29781:2 29821:1 29842:1 29861:1 29882:1 30063:1 30121:1 30221:1 30294:1 30334:1 30367:1 30393:2 30399:1 30418:2 30451:1 30524:7 30525:1 30531:1 30560:1 30643:1 30648:1 30651:1 30706:1 30738:1 30745:1 30753:1 30800:1 30818:1 30846:1 30906:1 30998:1 31088:3 31104:1 31132:1 31176:1 31200:1 31204:1 31243:1 31259:1 31302:1 31317:1 31477:1 31514:1 31541:1 31544:12 31545:2 31546:2 31555:1 31566:1 31586:1 31587:5 31597:1 31613:1 31644:1 31646:1 31662:1 31681:1 31697:1 31702:1 31801:1 31863:1 31959:1 31964:2 31990:1 32012:1 32028:1 32039:2 32115:1 32178:1 32257:1 32279:1 32310:2 32314:1 32381:1 32505:3 32510:1 32543:1 32582:1 32596:1 32605:2 32662:1 32684:1 32701:1 32727:1 32733:2 32735:1 32755:1 32821:2 32831:1 32902:1 32903:1 32905:2 32957:1 32966:1
16 26:1 85:4 109:1 176:1 219:1 269:4 338:1 351:2 387:1 398:1 399:2 427:1 468:2 505:1 551:2 567:1 575:1 577:1 589:1 591:1 713:1 723:2 751:2 762:4 774:1 779:1 805:1 812:1 832:1 869:2 886:1 929:1 937:1 944:1 970:1 988:1 1000:1 1007:1 1051:1 1069:1 1081:1 1082:1 1114:1 1139:1 1143:1 1149:1 1180:1 1185:1 1202:1 1221:1 1250:1 1301:1 1341:1 1359:1 1369:2 1387:1 1388:2 1412:1 1426:2 1472:1 1506:1 1512:1 1546:1 1560:1 1586:1 1633:1 1642:1 1742:1 1760:2 1773:1 1774:1 1780:1 1802:1 1835:1 1839:2 1853:1 1867:1 1879:1 1907:1 1914:1 1919:1 1924:1 1927:2 1941:1 1963:1 1966:1 1975:1 2018:1 2055:1 2058:1 2069:2 2097:1 2098:1 2122:1 2127:1 2139:1 2143:1 2174:1 2187:1 2211:1 2215:1 2232:1 2234:4 2262:1 2282:1 2317:1 2323:1 2368:1 2369:1 2414:1 2441:1 2444:2 2446:1 2475:1 2531:1 2631:1 2632:1 2637:1 2638:1 2640:1 2641:1 2643:2 2647:1 2651:1 2660:4 2665:1 2668:2 2687:1 2763:1 2794:1 2800:1 2826:1 2845:1 2871:1 2927:1 2944:1 3023:1 3062:1 3082:4 3092:1 3098:1 3136:3 3150:1 3164:1 3177:1 3197:1 3246:2 3252:1 3256:2 3314:4 3355:3 3363:5 3426:11 3435:1 3441:1 3457:1 3533:1 3607:1 3613:1 3700:1 3710:2 3713:4 3739:2 3863:1 3900:1 3965:1 3985:1 4003:1 4041:1 4049:1 4053:1 4076:1 4077:1 4089:1 4144:1 4150:1 4152:1 4161:1 4235:1 4270:1 4271:1 4297:1 4323:1 4325:14 4347:1 4377:7 4379:1 4381:2 4391:1 4405:1 4419:2 4423:1 4426:1 4438:1 4439:2 4444:1 4491:3 4541:1 4544:1 4567:2 4575:1 4587:1 4622:1 4630:1 4635:1 4643:1 4658:1 4674:1 4813:1 4876:1 4924:1 5010:3 5106:1 5120:2 5152:2 5176:1 5205:1 5268:1 5331:1 5381:1 5390:1 5433:2 5509:1 5510:1 5516:1 5558:1 5640:1 5659:6 5660:1 5699:1 5761:1 5784:1 5822:1 5823:4 5824:1 5828:1 5840:1 5841:7 5880:1 6081:2 6082:3 6125:1 6169:7 6205:1 6255:1 6301:1 6357:1 6371:1 6394:1 6403:1 6404:1 6483:1 6507:1 6515:1 6518:1 6531:1 6574:1 6611:1 6617:1 6647:1 6672:1 6678:1 6728:1 6733:1 6753:1 6826:1 6844:1 6845:1 6868:1 6870:1 6873:1 6959:1 7035:3 7045:1 7068:1 7074:1 7102:1 7190:1 7202:1 7249:1 7254:2 7276:3 7300:1 7316:1 7386:1 7394:1 7397:1 7401:1 7403:1 7410:2 7413:1 7451:1 7613:1 7615:1 7684:2 7716:2 7742:1 7764:1 7791:1 7805:1 7846:1 7869:1 7877:1 7879:1 7891:2 7900:1 7915:1 7987:1 7998:1 8005:1 8012:1 8026:2 8032:1 8091:1 8093:1 8137:1 8138:1 8251:1 8255:4 8263:2 8289:1 8490:1 8507:1 8526:3 8575:1 8577:1 8586:1 8604:1 8688:1 8770:1 8784:1 8791:1 8821:1 8830:1 8832:1 8850:1 8901:14 8920:3 8923:9 8943:1 8952:1 8978:1 9014:1 9034:1 9051:1 9059:1 9082:1 9153:3 9161:1 9206:1 9209:1 9234:1 9251:1 9343:1 9362:1 9368:1 9370:1 9386:1 9405:1 9444:1 9448:1 9484:4 9551:1 9589:1 9616:1 9639:1 9678:3 9687:1 9709:1 9715:1 9747:1 9748:1 9765:1 9777:1 9809:1 9836:1 9859:1 9878:2 9880:1 9881:2 9882:1 9884:1 9885:2 9894:1 9897:1 9903:1 9919:1 9925:1 9934:1 9944:1 9945:1 9959:1 9977:1 10024:1 10053:2 10056:1 10065:1 10067:1 10069:1 10088:1 10121:1 10128:2 10138:1 10139:1 10144:1 10161:1 10162:1 10208:1 10209:1 10214:1 10219:1 10221:1 10257:1 10270:1 10295:1 10397:1 10399:1 10410:1 10438:1 10441:1 10554:1 10558:1 10565:1 10588:1 10615:1 10619:1 10634:1 10671:1 10673:1 10701:1 10710:1 10845:1 10846:1 10862:1 10879:1 10900:1 10903:1 10937:1 10947:1 10959:1 11009:7 11016:1 11039:1 11047:2 11056:2 11083:1 11124:1 11154:9 11171:1 11210:1 11225:1 11229:2 11318:2 11319:1 11363:1 11366:1 11368:1 11374:1 11382:1 11400:1 11417:1 11422:2 11464:1 11470:1 11496:1 11580:4 11583:2 11595:1 11597:1 11703:1 11728:1 11754:1 11761:1 11775:3 11789:1 11897:1 11914:1 11994:2 12043:1 12052:1 12075:1 12119:1 12121:1 12125:1 12145:1 12197:1 12200:1 12211:3 12229:1 12249:2 12316:1 12322:1 12345:1 12346:1 12352:1 12459:1 12498:1 12499:1 12512:1 12531:2 12553:1 12623:1 12664:2 12676:2 12706:1 12807:1 12825:1 12883:1 12919:1 12960:1 12974:2 12980:1 12981:1 12983:1 12990:1 12991:1 13014:1 13021:1 13057:1 13063:3 13067:1 13100:1 13122:1 13125:1 13127:1 13135:1 13207:1 13218:3 13252:1 13254:1 13297:1 13328:1 13341:1 13354:1 13368:3 13369:1 13379:3 13382:1 13395:1 13403:1 13447:3 13463:1 13518:4 13536:1 13537:1 13576:1 13580:1 13590:3 13592:1 13629:1 13692:1 13717:1 13832:1 13872:1 13874:1 13913:1 13914:1 13916:7 13923:2 13956:1 13972:1 14021:1 14082:2 14083:1 14098:1 14167:1 14172:1 14207:1 14222:1 14312:1 14326:1 14369:1 14373:1 14382:1 14441:1 14506:5 14519:1 14527:1 14530:1 14546:1 14565:2 14566:1 14592:1 14629:1 14667:1 14693:1 14785:1 14819:1 14870:1 14920:1 14948:1 15002:2 15014:1 15017:1 15023:1 15044:1 15045:1 15080:1 15140:1 15155:1 15156:3 15162:1 15164:1 15171:1 15178:1 15192:1 15198:1 15234:2 15250:1 15317:1 15338:1 15400:1 15420:1 15441:1 15465:1 15486:1 15514:1 15529:1 15538:1 15576:1 15589:1 15597:1 15598:1 15600:1 15602:1 15636:1 15659:1 15663:1 15726:1 15739:3 15750:1 15797:1 15822:1 15851:1 15856:1 15861:2 15891:1 15908:1 15921:1 15938:2 15939:2 15950:1 15970:1 15997:1 16037:1 16043:1 16046:1 16051:1 16202:2 16220:1 16279:1 16341:1 16393:1 16401:1 16412:1 16414:1 16416:1 16424:1 16483:1 16491:1 16525:1 16612:1 16631:1 16661:1 16675:1 16692:1 16718:1 16775:1 16874:1 16951:1 17000:1 17005:1 17010:1 17137:1 17163:1 17194:1 17207:1 17237:1 17255:1 17280:1 17353:2 17355:1 17360:1 17380:1 17385:1 17433:1 17435:1 17441:1 17501:2 17512:2 17591:1 17611:1 17633:1 17662:2 17685:3 17687:2 17689:1 17740:1 17763:1 17829:1 17835:1 17844:2 17885:1 17889:1 17890:1 17892:1 17896:1 17900:1 17902:1 17913:1 17919:2 17996:1 18012:1 18024:2 18030:2 18073:1 18101:1 18175:1 18182:1 18187:2 18198:2 18199:1 18217:1 18222:1 18263:7 18305:1 18324:2 18341:18 18361:1 18390:1 18418:1 18424:1 18427:1 18455:1 18467:1 18473:1 18474:1 18516:1 18518:1 18530:1 18544:1 18565:1 18604:1 18610:3 18696:1 18797:1 18798:1 18808:1 18822:2 18826:1 18867:1 18916:1 18922:1 18946:1 19000:1 19004:2 19020:1 19042:1 19048:7 19072:1 19084:1 19094:1 19136:1 19167:1 19170:1 19177:1 19232:1 19243:1 19245:1 19307:1 19374:1 19382:2 19440:1 19461:1 19469:2 19480:1 19490:1 19497:2 19501:1 19542:1 19564:1 19587:1 19619:2 19640:1 19685:1 19711:1 19718:1 19726:1 19730:2 19737:1 19759:1 19761:1 19789:1 19840:1 19841:1 19926:2 19944:1 19956:1 19962:1 20020:1 20037:3 20103:1 20130:1 20153:1 20160:1 20210:1 20216:1 20249:1 20255:1 20261:3 20265:1 20340:1 20382:2 20383:1 20420:1 20450:1 20456:1 20474:2 20480:1 20488:1 20531:1 20532:1 20595:1 20621:1 20645:1 20649:1 20676:1 20677:1 20693:1 20749:1 20792:5 20821:1 20865:1 20869:1 20884:1 20922:1 20946:1 20965:1 20976:1 21020:1077 21047:1 21054:1 21108:1 21136:3 21178:1 21201:2 21212:1 21239:1 21242:1 21268:3 21284:3 21340:1 21384:3 21418:1 21442:2 21454:1 21484:1 21490:1 21494:1 21511:1 21539:1 21551:1 21563:4 21660:1 21675:1 21779:1 21795:1 21797:1 21810:1 21819:1 21832:2 21835:1 21836:2 21841:1 21867:4 21895:1 21896:4 21929:1 21930:1 21965:1 21970:1 21995:1 22000:1 22004:1 22015:1 22029:1 22060:1 22068:1 22089:1 22101:1 22131:1 22244:1 22262:1 22264:7 22308:1 22317:1 22369:1 22377:1 22399:1 22422:1 22444:1 22476:1 22478:1 22484:1 22485:1 22495:1 22534:1 22542:4 22556:1 22581:1 22616:1 22624:1 22676:1 22680:1 22708:2 22745:1 22800:7 22822:2 22844:1 22845:1 22863:3 22881:1 22922:1 22933:1 22945:1 22999:1 23024:2 23105:1 23153:2 23166:1 23183:1 23185:1 23198:1 23242:1 23245:1 23407:1 23439:1 23457:1 23490:1 23532:5 23546:3 23550:1 23595:1 23653:2 23657:1 23682:1 23711:3 23765:1 23803:1 23832:1 23836:1 23873:1 23944:1 24065:2 24070:2 24073:1 24084:1 24143:1 24154:2 24195:1 24202:1 24216:1 24218:2 24255:1 24271:1 24311:1 24328:1 24341:1 24360:1 24363:3 24377:1 24396:1 24408:1 24427:1 24478:1 24488:2 24543:2 24563:2 24567:1 24649:1 24659:1 24662:3 24682:1 24702:1 24703:2 24707:1 24714:1 24719:2 24732:1 24747:1 24824:3 24825:1 24855:1 24861:1 24869:2 24908:1 24923:1 24979:7 25005:1 25021:1 25026:1 25033:1 25047:1 25057:1 25065:1 25071:2 25101:1 25110:2 25125:1 25129:2 25156:3 25168:2 25190:1 25206:1 25209:1 25245:2 25252:1 25256:1 25275:1 25289:2 25303:3 25340:1 25473:2 25485:1 25526:1 25581:1 25588:1 25595:9 25620:1 25667:1 25683:1 25689:1 25695:2 25732:1 25755:3 25804:1 25828:2 25853:1 25871:1 25928:1 25929:1 26001:1 26015:1 26017:1 26044:1 26075:2 26133:1 26157:1 26165:1 26174:2 26179:2 26184:1 26230:1 26254:1 26277:1 26283:1 26309:1 26315:1 26319:1 26324:1 26352:1 26359:1 26415:2 26424:7 26532:1 26539:1 26605:1 26612:1 26679:1 26694:1 26748:1 26758:1 26794:2 26818:1 26897:1 26924:2 26931:1 26936:1 27009:1 27014:1 27022:1 27072:1 27114:2 27122:1 27225:1 27360:1 27377:1 27398:2 27419:1 27437:1 27439:2 27451:1 27489:1 27502:1 27512:1 27516:1 27522:1 27533:1 27569:1 27574:1 27575:1 27602:3 27612:1 27620:1 27676:1 27753:1 27757:1 27769:1 27804:1 27813:1 27817:1 27846:1 27851:1 27881:1 27917:1 27933:1 27957:1 27997:1 28007:1 28015:1 28021:1 28032:1 28094:1 28132:1 28174:1 28242:1 28253:1 28273:1 28327:2 28331:1 28335:1 28348:1 28414:1 28509:1 28512:1 28518:1 28557:1 28563:1 28608:2 28609:1 28635:1 28641:2 28642:1 28652:1 28666:1 28671:1 28680:1 28697:2 28725:1 28728:1 28734:1 28753:2 28847:2 28870:1 28872:2 28902:1 28913:1 28945:2 28998:1 29029:1 29085:1 29088:1 29104:1 29120:1 29123:1 29189:1 29272:1 29316:1 29326:1 29334:1 29365:5 29374:1 29439:1 29472:2 29519:2 29543:1 29564:1 29574:1 29653:4 29655:2 29675:1 29676:1 29677:4 29679:1 29732:1 29771:1 29781:2 29821:1 29842:1 29861:1 29882:1 30051:1 30063:1 30121:1 30221:1 30235:1 30294:1 30334:1 30367:1 30393:2 30399:1 30415:1 30418:2 30451:1 30524:7 30525:1 30531:1 30560:1 30643:1 30648:1 30651:1 30706:1 30728:1 30738:1 30745:1 30753:1 30800:1 30818:1 30846:1 30906:1 30998:1 31088:3 31104:1 31132:1 31176:1 31200:1 31204:1 31243:1 31259:1 31302:1 31317:1 31477:1 31514:1 31541:1 31544:12 31545:2 31546:2 31549:1 31552:1 31555:1 31566:1 31586:1 31587:7 31597:1 31613:1 31644:1 31646:1 31662:1 31681:1 31697:1 31702:1 31801:1 31829:1 31863:2 31959:1 31964:4 31990:1 32000:1 32012:1 32028:1 32039:2 32115:1 32178:1 32257:1 32279:1 32310:2 32314:1 32321:1 32381:1 32505:3 32510:1 32543:1 32582:1 32596:1 32605:2 32628:1 32662:1 32684:1 32686:1 32701:1 32727:1 32733:2 32735:1 32755:1 32821:2 32831:1 32902:1 32903:1 32905:2 32957:1 32966:1
16 26:1 85:4 109:1 176:1 219:1 235:1 269:4 338:1 351:2 387:1 398:1 399:2 427:1 468:2 505:1 551:2 567:1 575:1 577:1 589:1 591:1 713:1 723:2 751:2 762:4 774:1 779:1 805:1 812:1 832:1 869:2 886:1 929:1 937:1 944:1 970:1 988:1 1000:1 1007:1 1051:1 1069:1 1081:1 1082:1 1114:1 1139:1 1143:1 1149:1 1180:1 1185:1 1202:1 1221:1 1250:1 1288:1 1301:1 1341:1 1359:1 1369:2 1387:1 1388:2 1398:1 1412:1 1426:2 1472:1 1506:1 1512:1 1546:1 1560:1 1586:1 1633:1 1642:1 1742:1 1760:2 1767:1 1773:1 1774:1 1776:1 1780:1 1802:1 1835:1 1839:2 1853:1 1867:1 1879:1 1907:1 1914:1 1919:1 1924:1 1927:2 1941:1 1963:1 1966:1 1975:1 2018:1 2053:1 2055:1 2058:1 2069:2 2097:1 2098:1 2122:1 2127:1 2139:1 2143:1 2174:1 2187:1 2211:1 2215:1 2232:1 2234:4 2245:1 2262:1 2282:1 2317:1 2323:1 2368:1 2369:1 2414:1 2441:1 2444:2 2446:1 2475:1 2531:1 2572:1 2631:1 2632:1 2637:1 2638:1 2640:1 2641:1 2643:2 2647:1 2651:1 2654:1 2660:4 2665:1 2668:2 2687:1 2712:1 2754:1 2763:1 2794:1 2800:1 2826:1 2845:1 2871:1 2927:1 2944:1 3023:1 3062:1 3082:4 3092:1 3098:1 3130:1 3136:3 3150:1 3164:1 3177:1 3197:1 3237:1 3246:2 3252:1 3256:3 3314:4 3355:5 3363:5 3426:12 3435:1 3441:1 3457:1 3533:1 3607:1 3613:1 3700:1 3710:2 3713:4 3739:2 3764:1 3823:1 3863:1 3900:1 3965:1 3985:1 4003:1 4041:1 4049:1 4053:1 4076:1 4077:1 4089:1 4144:1 4150:1 4152:1 4161:1 4235:1 4270:1 4271:1 4297:1 4323:1 4325:14 4347:1 4376:1 4377:7 4379:1 4381:2 4391:1 4405:1 4418:1 4419:2 4423:1 4426:1 4438:1 4439:2 4444:1 4491:3 4541:1 4544:1 4567:2 4575:1 4587:1 4622:1 4630:1 4635:1 4643:1 4658:1 4674:1 4813:1 4876:1 4924:1 4926:1 5010:3 5106:1 5120:2 5152:2 5176:1 5205:1 5268:1 5331:1 5370:1 5381:1 5390:1 5433:2 5509:1 5510:1 5516:1 5545:1 5558:1 5640:1 5659:6 5660:1 5699:1 5761:1 5784:1 5800:1 5802:1 5822:1 5823:4 5824:1 5828:1 5840:1 5841:7 5880:1 6081:2 6082:3 6125:1 6169:7 6205:1 6255:1 6301:1 6357:1 6371:1 6394:1 6403:1 6404:1 6483:1 6507:1 6515:1 6518:1 6531:1 6574:1 6611:1 6617:1 6647:1 6672:1 6678:1 6728:1 6733:1 6753:1 6776:1 6826:1 6844:1 6845:1 6868:1 6870:1 6873:1 6959:1 7035:3 7045:1 7068:1 7074:1 7102:1 7190:1 7202:1 7249:1 7254:2 7276:3 7295:1 7300:1 7316:1 7386:1 7394:1 7397:1 7401:1 7403:1 7410:2 7411:1 7413:1 7451:1 7503:1 7559:1 7613:1 7615:1 7684:2 7716:2 7742:1 7764:1 7791:1 7805:1 7846:1 7869:1 7877:1 7879:1 7891:2 7900:1 7907:1 7915:1 7940:1 7987:1 7998:1 8005:1 8012:1 8026:2 8032:1 8091:1 8093:1 8137:1 8138:1 8251:1 8255:4 8263:2 8289:1 8299:1 8490:1 8507:1 8512:1 8526:3 8575:1 8577:1 8586:1 8604:1 8688:1 8770:1 8784:1 8791:1 8821:1 8830:1 8832:1 8850:1 8890:1 8901:14 8902:1 8908:1 8920:4 8923:9 8943:1 8952:1 8978:2 9014:1 9034:1 9051:1 9059:1 9082:1 9153:3 9161:1 9206:1 9209:1 9234:1 9251:1 9304:1 9343:1 9362:1 9368:1 9370:1 9386:1 9405:1 9444:1 9448:1 9484:4 9525:1 9551:1 9589:1 9616:1 9639:3 9678:3 9687:1 9709:2 9715:1 9747:1 9748:1 9765:1 9777:1 9809:1 9836:1 9859:1 9878:2 9880:1 9881:2 9882:1 9884:1 9885:2 9894:1 9897:1 9903:1 9919:1 9925:1 9934:1 9944:1 9945:1 9959:1 9977:1 10024:1 10053:2 10056:1 10065:1 10067:1 10069:1 10088:1 10121:1 10128:2 10138:1 10139:1 10144:1 10150:1 10161:1 10162:1 10204:1 10208:1 10209:1 10214:1 10219:1 10221:2 10257:1 10270:1 10295:1 10397:1 10399:1 10410:1 10438:1 10441:1 10554:1 10558:1 10565:1 10588:1 10615:1 10619:1 10634:1 10671:1 10673:1 10701:1 10710:1 10845:1 10846:1 10862:1 10879:1 10900:1 10903:1 10937:1 10947:1 10959:1 11009:7 11016:1 11039:1 11047:2 11056:2 11083:1 11124:1 11154:9 11171:1 11210:1 11225:1 11229:2 11318:2 11319:1 11363:1 11366:1 11368:1 11374:1 11382:1 11400:1 11417:1 11422:2 11464:2 11470:1 11496:1 11580:4 11583:2 11595:1 11597:1 11703:1 11728:1 11754:1 11761:1 11775:3 11789:1 11897:1 11914:3 11994:2 12043:1 12052:1 12075:1 12119:2 12121:1 12125:1 12128:1 12145:1 12197:1 12200:1 12211:3 12229:1 12249:2 12316:1 12322:1 12345:1 12346:1 12352:1 12459:1 12498:1 12499:1 12512:1 12531:2 12534:1 12553:1 12556:1 12623:1 12664:2 12676:2 12706:1 12807:1 12825:1 12850:1 12855:1 12863:1 12883:1 12919:1 12960:1 12974:2 12980:1 12981:1 12983:1 12990:1 12991:1 13014:1 13021:1 13057:1 13063:3 13067:1 13100:1 13122:1 13125:1 13127:1 13135:1 13176:1 13207:1 13218:3 13252:1 13254:1 13297:1 13328:1 13341:1 13354:1 13368:3 13369:1 13379:3 13382:1 13395:1 13403:1 13428:1 13447:3 13463:1 13518:4 13536:1 13537:1 13576:1 13580:1 13590:3 13592:1 13629:1 13692:1 13717:1 13832:1 13872:1 13874:1 13913:1 13914:1 13916:7 13923:3 13956:1 13972:1 14021:1 14082:3 14083:1 14098:1 14167:1 14172:1 14207:1 14222:1 14312:1 14326:1 14369:1 14373:1 14382:1 14441:1 14506:5 14519:1 14527:1 14530:1 14546:1 14565:2 14566:2 14592:1 14629:1 14660:1 14667:1 14693:1 14746:1 14751:1 14785:1 14819:1 14870:1 14920:1 14948:1 15002:2 15014:1 15017:1 15023:1 15044:1 15045:1 15080:1 15140:1 15155:1 15156:3 15162:1 15164:1 15171:1 15178:1 15192:1 15198:1 15234:2 15250:1 15266:1 15280:1 15317:1 15338:1 15355:1 15400:1 15420:1 15441:1 15465:1 15486:1 15514:1 15529:1 15538:1 15576:1 15589:1 15597:1 15598:1 15600:1 15602:1 15636:1 15659:1 15663:1 15684:1 15706:1 15726:1 15739:3 15750:1 15797:1 15822:1 15851:1 15856:1 15857:1 15861:2 15891:1 15908:1 15921:1 15938:2 15939:3 15950:1 15970:1 15997:1 16037:1 16043:1 16046:1 16051:1 16202:2 16220:1 16263:1 16279:1 16341:1 16393:1 16401:1 16412:3 16414:1 16416:1 16424:1 16483:1 16491:1 16495:1 16525:1 16612:1 16631:1 16661:1 16675:1 16692:1 16718:1 16775:1 16828:1 16874:1 16939:1 16951:1 17000:1 17005:1 17010:1 17137:1 17163:1 17194:1 17207:1 17237:1 17255:1 17280:1 17353:2 17355:1 17360:1 17380:1 17385:1 17433:1 17435:1 17441:1 17501:2 17512:2 17591:1 17611:1 17633:1 17662:2 17685:3 17687:2 17689:1 17740:1 17763:1 17829:1 17835:1 17844:2 17864:1 17885:1 17889:1 17890:1 17892:1 17896:1 17900:1 17902:1 17913:1 17919:2 17996:1 18012:1 18024:2 18030:2 18073:1 18101:1 18175:1 18182:1 18187:2 18198:2 18199:1 18217:1 18222:1 18263:7 18300:1 18305:1 18324:2 18341:18 18361:1 18390:1 18418:1 18424:1 18427:1 18455:1 18467:1 18473:1 18474:1 18516:1 18518:1 18530:1 18544:1 18565:1 18604:1 18610:3 18696:1 18797:1 18798:1 18808:1 18822:2 18826:1 18867:1 18916:1 18922:1 18946:1 18997:1 19000:1 19004:2 19020:1 19042:1 19048:7 19072:1 19084:1 19094:1 19136:1 19167:1 19170:1 19177:1 19182:1 19232:1 19243:1 19245:1 19307:1 19374:1 19382:2 19434:1 19440:1 19449:1 19461:1 19469:2 19480:1 19490:1 19497:2 19501:1 19542:1 19550:1 19564:1 19587:1 19619:3 19640:1 19685:1 19711:2 19718:1 19726:1 19730:2 19735:1 19737:1 19759:1 19761:1 19789:1 19817:1 19840:1 19841:1 19926:2 19944:1 19956:1 19962:1 20020:1 20037:3 20070:1 20103:1 20130:1 20153:1 20160:1 20210:1 20216:1 20249:1 20255:1 20261:3 20265:1 20340:1 20382:2 20383:1 20420:1 20450:1 20456:1 20474:2 20480:1 20488:1 20531:1 20532:1 20595:1 20621:2 20645:1 20649:1 20676:1 20677:1 20693:1 20749:1 20790:1 20792:5 20821:1 20865:1 20869:1 20884:1 20906:1 20922:1 20946:2 20948:1 20965:2 20976:1 21020:1153 21047:1 21054:1 21108:1 21136:3 21178:2 21201:2 21212:1 21239:1 21242:1 21268:3 21284:3 21340:1 21384:3 21418:1 21442:2 21454:1 21474:1 21484:1 21490:1 21494:1 21511:1 21539:1 21551:1 21563:4 21660:1 21675:1 21779:1 21795:1 21797:1 21810:1 21819:1 21832:2 21835:1 21836:2 21841:1 21867:4 21895:1 21896:4 21929:1 21930:1 21965:1 21970:1 21995:1 22000:1 22004:1 22015:1 22029:1 22060:1 22068:1 22089:1 22101:1 22131:1 22136:1 22244:1 22262:1 22264:7 22308:1 22317:1 22369:1 22377:1 22399:1 22422:1 22444:1 22476:1 22478:1 22484:1 22485:1 22495:1 22534:1 22542:4 22556:1 22581:1 22616:1 22624:1 22676:1 22680:1 22708:2 22745:1 22775:1 22800:7 22822:2 22844:1 22845:1 22863:4 22881:1 22922:1 22933:1 22945:1 22999:1 23024:2 23105:1 23153:2 23166:1 23183:1 23185:1 23198:1 23242:1 23245:1 23265:1 23407:1 23439:1 23457:1 23490:1 23532:5 23546:3 23550:1 23574:1 23595:1 23653:2 23657:1 23682:1 23711:3 23722:2 23765:1 23803:1 23832:1 23836:1 23873:1 23944:1 24009:1 24065:2 24070:2 24073:1 24084:1 24143:1 24154:2 24164:1 24195:1 24202:1 24216:1 24218:2 24255:1 24271:1 24311:1 24328:1 24341:1 24360:1 24363:3 24377:1 24396:1 24408:1 24427:1 24478:1 24488:2 24505:1 24542:1 24543:2 24563:2 24567:1 24649:1 24659:1 24662:3 24670:1 24682:1 24700:1 24702:1 24703:2 24707:1 24714:1 24719:2 24732:1 24747:1 24824:3 24825:1 24855:1 24861:1 24869:2 24888:1 24908:1 24923:1 24979:7 25005:1 25018:1 25021:1 25026:1 25033:1 25047:1 25057:1 25065:1 25071:2 25101:1 25110:2 25125:1 25129:3 25156:3 25168:2 25190:1 25206:1 25209:1 25218:1 25245:2 25252:1 25256:1 25275:1 25289:2 25303:3 25340:1 25473:2 25485:1 25526:1 25581:1 25588:1 25595:9 25620:1 25667:1 25683:1 25689:1 25695:2 25732:1 25755:3 25788:1 25804:1 25828:2 25853:1 25871:1 25907:1 25928:1 25929:1 25936:1 26001:1 26015:1 26017:2 26024:1 26043:1 26044:1 26075:2 26094:1 26133:1 26157:1 26165:1 26174:2 26179:2 26184:1 26230:1 26254:1 26277:1 26283:1 26309:1 26315:1 26319:2 26324:1 26352:1 26359:1 26415:2 26424:7 26532:1 26539:1 26605:1 26612:1 26636:1 26679:1 26694:1 26748:1 26751:1 26758:1 26794:2 26818:1 26897:1 26924:2 26931:1 26936:1 27009:1 27014:1 27022:1 27072:1 27114:2 27122:1 27225:1 27360:1 27377:1 27398:2 27419:1 27437:1 27439:2 27451:1 27456:1 27489:1 27502:1 27512:1 27516:1 27522:1 27533:1 27569:1 27574:1 27575:1 27602:3 27612:1 27620:1 27676:1 27716:1 27753:1 27757:1 27769:1 27804:1 27813:1 27817:1 27846:1 27851:1 27881:1 27917:1 27933:1 27957:1 27989:1 27997:1 28007:1 28015:1 28021:1 28032:2 28068:1 28094:1 28132:1 28174:1 28242:1 28253:1 28273:1 28327:2 28331:2 28335:1 28348:1 28414:1 28442:1 28509:1 28512:1 28518:1 28557:1 28563:1 28608:2 28609:1 28635:2 28641:2 28642:1 28652:1 28666:1 28671:1 28680:1 28697:2 28725:1 28728:1 28734:1 28753:2 28847:3 28870:1 28872:2 28902:1 28913:1 28945:2 28998:1 29029:1 29052:1 29063:1 29085:1 29088:1 29104:1 29120:1 29123:1 29189:1 29195:1 29219:1 29272:1 29316:1 29326:1 29334:1 29365:5 29374:1 29439:1 29472:2 29519:2 29543:1 29564:1 29574:1 29653:4 29655:2 29675:1 29676:1 29677:4 29679:1 29732:1 29771:1 29781:2 29821:1 29842:1 29861:1 29882:1 30051:1 30063:1 30121:1 30221:1 30235:1 30294:1 30295:1 30334:1 30367:1 30393:2 30399:1 30415:1 30418:2 30451:1 30524:7 30525:1 30531:1 30560:1 30643:1 30648:1 30651:1 30706:1 30721:1 30728:1 30738:1 30745:1 30753:1 30788:1 30800:1 30818:1 30846:1 30906:1 30998:1 31088:3 31104:1 31132:1 31176:1 31200:1 31204:1 31243:1 31259:1 31302:1 31317:1 31477:1 31489:3 31514:1 31541:1 31544:12 31545:2 31546:2 31549:1 31552:1 31555:1 31566:1 31586:1 31587:7 31597:1 31613:1 31644:1 31646:1 31651:1 31662:1 31681:1 31697:1 31702:1 31759:1 31801:1 31829:1 31863:2 31957:1 31959:1 31964:4 31969:1 31990:1 32000:1 32012:1 32028:1 32039:2 32115:1 32178:1 32257:1 32279:1 32310:2 32314:1 32321:1 32381:1 32505:3 32510:1 32539:1 32543:1 32582:1 32596:1 32605:2 32628:1 32662:1 32684:1 32686:1 32701:1 32727:1 32733:2 32735:1 32740:1 32755:1 32821:2 32831:1 32902:1 32903:1 32905:2 32957:1 32966:1 32973:1
16 26:1 66:1 85:4 109:1 176:1 219:1 235:1 269:4 338:1 351:2 387:1 397:1 398:1 399:2 427:1 468:2 505:1 551:2 567:1 575:1 577:1 584:1 589:1 591:1 713:1 723:2 751:2 762:4 766:1 774:1 779:1 805:1 812:1 832:1 869:2 886:1 929:1 937:1 944:1 970:1 988:1 1000:1 1007:1 1051:1 1054:1 1069:1 1081:1 1082:1 1114:1 1139:1 1143:1 1149:1 1180:2 1185:1 1202:1 1221:1 1250:1 1288:1 1301:1 1341:1 1359:1 1369:2 1387:1 1388:2 1398:1 1412:1 1426:2 1466:1 1472:1 1488:1 1506:1 1512:1 1546:1 1560:1 1572:1 1586:1 1600:1 1633:1 1642:1 1742:1 1760:2 1767:1 1773:1 1774:1 1776:1 1780:2 1802:1 1835:1 1839:2 1853:1 1867:1 1871:1 1879:2 1907:1 1914:1 1919:1 1924:1 1927:2 1941:1 1963:1 1966:1 1975:1 2018:1 2050:1 2053:1 2055:1 2058:1 2069:2 2097:1 2098:1 2122:1 2127:1 2139:1 2142:1 2143:1 2150:1 2174:1 2187:1 2201:1 2211:1 2215:1 2232:1 2234:4 2245:1 2262:1 2282:1 2317:1 2323:1 2368:2 2369:1 2414:1 2441:1 2444:2 2446:1 2475:1 2531:1 2566:1 2572:1 2631:1 2632:2 2637:1 2638:1 2640:1 2641:1 2643:3 2647:1 2651:1 2654:1 2660:4 2665:1 2668:2 2687:1 2712:1 2754:1 2763:1 2794:1 2800:1 2826:1 2845:1 2871:1 2927:1 2944:1 3023:1 3062:1 3082:4 3092:1 3098:1 3130:1 3136:3 3150:1 3164:1 3177:1 3197:1 3237:1 3246:2 3252:1 3256:3 3314:4 3355:5 3363:5 3426:14 3435:1 3441:1 3457:1 3533:2 3607:2 3613:1 3700:1 3710:2 3713:4 3739:3 3764:1 3823:2 3863:1 3900:1 3959:1 3965:1 3985:1 4003:1 4041:1 4049:1 4053:1 4076:1 4077:1 4089:1 4144:1 4150:1 4152:1 4161:1 4235:1 4270:1 4271:1 4297:1 4323:1 4325:14 4347:1 4361:1 4364:1 4376:1 4377:7 4379:1 4381:2 4391:1 4405:1 4418:1 4419:2 4423:1 4426:1 4438:1 4439:2 4442:1 4444:1 4491:3 4541:1 4544:1 4555:1 4567:2 4575:1 4587:1 4622:1 4630:1 4635:1 4643:1 4646:1 4658:1 4674:1 4813:1 4876:1 4879:1 4924:1 4926:1 5010:3 5090:1 5106:1 5120:2 5152:2 5176:1 5205:1 5268:1 5331:1 5370:1 5381:1 5390:1 5433:2 5509:1 5510:1 5516:1 5545:1 5558:1 5640:1 5659:6 5660:1 5699:1 5761:1 5784:1 5800:1 5802:1 5822:1 5823:4 5824:1 5828:1 5840:1 5841:7 5842:1 5880:1 6081:2 6082:3 6125:1 6168:1 6169:7 6205:1 6255:1 6301:1 6305:1 6357:1 6371:1 6394:1 6403:1 6404:1 6462:1 6480:1 6483:1 6507:1 6515:1 6518:1 6531:1 6568:1 6574:1 6611:1 6617:1 6647:1 6672:1 6678:1 6728:1 6733:1 6753:1 6776:1 6826:1 6844:1 6845:1 6868:1 6870:1 6873:1 6959:1 7035:3 7045:1 7068:1 7074:1 7102:1 7149:1 7157:1 7190:1 7200:1 7202:1 7249:1 7254:2 7276:3 7295:1 7300:1 7316:1 7386:1 7394:1 7397:1 7401:1 7403:2 7410:2 7411:1 7413:1 7427:1 7451:1 7503:1 7559:1 7579:1 7586:1 7613:1 7615:1 7684:2 7716:2 7722:1 7742:1 7764:1 7791:1 7805:1 7846:1 7869:1 7877:1 7879:1 7891:2 7900:1 7907:1 7915:2 7940:1 7987:1 7998:1 8005:1 8012:1 8026:2 8032:1 8091:1 8093:1 8137:1 8138:1 8215:1 8251:1 8255:4 8263:2 8289:1 8299:1 8490:1 8507:1 8512:1 8526:3 8575:1 8577:1 8586:1 8604:1 8688:1 8770:1 8784:1 8791:1 8821:1 8830:1 8832:1 8850:1 8890:1 8901:15 8902:1 8908:1 8920:4 8923:11 8929:1 8943:1 8952:1 8978:3 9014:1 9034:1 9051:1 9059:1 9082:1 9153:3 9161:1 9206:1 9209:1 9234:1 9251:1 9304:1 9343:1 9362:1 9368:1 9370:1 9386:1 9405:1 9444:1 9448:1 9484:6 9511:1 9525:1 9551:1 9589:1 9616:1 9630:1 9639:3 9664:1 9678:3 9687:1 9709:2 9715:1 9747:1 9748:1 9765:1 9777:1 9792:1 9809:1 9836:1 9859:1 9878:2 9880:1 9881:2 9882:1 9884:1 9885:2 9894:1 9897:1 9903:1 9919:1 9925:1 9934:1 9944:1 9945:1 9959:1 9977:2 10002:1 10024:1 10053:2 10056:1 10065:1 10067:1 10069:1 10088:1 10121:1 10128:2 10138:1 10139:1 10144:1 10150:1 10161:1 10162:1 10204:1 10208:1 10209:1 10214:1 10219:1 10221:2 10257:2 10270:1 10295:1 10367:1 10397:1 10399:1 10410:1 10412:1 10438:1 10441:1 10461:1 10554:1 10558:1 10565:1 10588:1 10615:1 10619:1 10634:1 10653:1 10671:1 10673:1 10701:1 10710:1 10845:1 10846:1 10858:1 10862:1 10879:1 10900:1 10903:1 10937:1 10942:1 10947:1 10959:1 11009:7 11016:1 11039:1 11047:2 11056:2 11083:1 11124:1 11154:9 11171:1 11210:1 11225:1 11229:2 11318:2 11319:1 11359:1 11363:1 11366:1 11368:1 11374:1 11382:1 11400:1 11417:1 11422:2 11464:2 11470:1 11496:1 11513:1 11580:4 11583:2 11595:1 11597:1 11697:1 11703:1 11728:1 11754:1 11761:1 11775:3 11789:1 11897:1 11914:3 11994:2 12043:1 12052:1 12075:1 12117:1 12119:2 12121:1 12125:1 12128:1 12145:1 12197:1 12200:1 12211:3 12229:1 12249:3 12316:1 12322:1 12345:1 12346:1 12347:1 12352:1 12459:1 12498:1 12499:1 12512:1 12531:2 12534:2 12553:1 12556:1 12623:1 12664:2 12676:2 12706:1 12807:1 12825:1 12850:1 12855:1 12863:1 12883:1 12919:2 12953:1 12960:1 12974:2 12980:1 12981:1 12983:1 12990:1 12991:1 13014:1 13021:1 13057:1 13061:1 13063:3 13067:1 13100:1 13122:1 13125:1 13127:1 13135:1 13176:1 13204:1 13207:1 13218:3 13252:1 13254:2 13297:1 13328:1 13341:1 13354:1 13368:3 13369:1 13379:3 13382:1 13395:1 13403:1 13428:1 13447:3 13454:1 13463:1 13507:1 13518:4 13536:1 13537:1 13576:1 13580:1 13590:3 13592:1 13607:1 13629:1 13692:1 13717:1 13832:1 13867:1 13872:1 13874:1 13913:1 13914:1 13916:7 13923:4 13956:1 13972:1 14021:1 14074:1 14082:3 14083:2 14098:1 14106:1 14167:1 14172:1 14207:1 14222:1 14292:1 14312:1 14326:1 14369:1 14373:1 14382:1 14388:1 14441:1 14506:5 14519:1 14527:1 14530:1 14546:1 14565:2 14566:2 14592:1 14629:1 14660:1 14667:2 14693:1 14746:1 14751:2 14785:1 14819:1 14870:1 14920:1 14948:1 15002:2 15014:1 15017:1 15023:1 15044:1 15045:1 15080:1 15140:1 15155:1 15156:3 15162:1 15164:1 15171:1 15178:1 15192:1 15198:1 15234:2 15250:1 15266:1 15280:1 15301:1 15317:1 15338:1 15355:1 15400:1 15420:1 15430:2 15441:1 15465:1 15486:1 15503:1 15514:1 15529:1 15538:1 15576:1 15589:1 15597:1 15598:1 15600:1 15602:1 15636:1 15659:1 15663:1 15684:1 15701:1 15706:1 15726:1 15739:3 15750:1 15797:1 15821:1 15822:1 15851:1 15856:1 15857:1 15861:2 15891:1 15908:1 15921:1 15938:2 15939:4 15950:1 15970:1 15997:1 16035:1 16037:1 16043:1 16046:1 16051:1 16202:2 16220:1 16263:1 16279:1 16341:1 16393:1 16401:1 16412:3 16414:1 16416:1 16424:1 16467:1 16483:1 16491:1 16495:1 16525:1 16561:1 16612:1 16631:1 16640:1 16661:1 16675:1 16692:1 16718:1 16775:1 16828:1 16874:1 16939:1 16951:1 17000:1 17005:2 17010:1 17059:1 17098:1 17137:1 17163:1 17194:1 17207:1 17237:1 17255:1 17280:1 17353:2 17355:1 17360:1 17379:1 17380:1 17385:1 17433:1 17435:1 17441:1 17501:2 17512:2 17591:1 17611:1 17633:1 17634:1 17662:2 17685:3 17687:2 17689:1 17740:1 17763:1 17829:1 17835:1 17844:2 17854:1 17864:1 17885:1 17889:1 17890:2 17892:1 17896:1 17900:1 17902:1 17913:1 17919:2 17996:1 18012:1 18022:1 18024:2 18030:3 18073:1 18101:1 18175:1 18182:1 18187:2 18198:2 18199:1 18217:1 18222:1 18225:1 18263:7 18300:1 18305:1 18324:2 18341:19 18361:1 18390:1 18418:1 18424:1 18427:1 18455:1 18467:1 18473:1 18474:1 18477:1 18482:1 18516:1 18518:1 18523:1 18530:1 18543:1 18544:1 18565:1 18604:1 18610:3 18648:1 18696:1 18797:1 18798:1 18808:1 18822:2 18826:1 18867:1 18916:1 18922:1 18946:2 18997:1 19000:1 19004:2 19020:1 19042:1 19048:7 19072:1 19084:1 19094:1 19136:1 19167:1 19170:2 19177:1 19182:1 19206:1 19232:1 19243:1 19245:1 19307:1 19374:1 19382:2 19434:1 19440:1 19449:1 19461:1 19469:2 19480:1 19490:1 19497:2 19501:1 19542:1 19550:1 19564:1 19587:1 19619:3 19640:1 19684:1 19685:1 19711:3 19718:1 19726:1 19730:2 19735:1 19737:1 19759:1 19761:1 19789:1 19817:1 19840:1 19841:1 19926:2 19944:1 19956:1 19962:1 20017:1 20020:1 20037:3 20070:1 20103:1 20130:1 20153:1 20160:1 20210:1 20216:1 20249:1 20255:2 20261:3 20265:1 20340:1 20382:2 20383:1 20420:1 20450:1 20456:1 20474:2 20480:1 20488:1 20489:1 20531:1 20532:1 20579:1 20585:1 20595:1 20621:2 20645:1 20649:1 20676:1 20677:1 20693:1 20749:1 20790:1 20792:5 20821:1 20865:1 20869:1 20884:1 20906:1 20922:1 20942:1 20946:3 20948:1 20965:2 20976:1 20980:1 21013:1 21020:1301 21046:1 21047:1 21054:1 21108:1 21136:3 21178:2 21201:2 21212:1 21239:1 21242:1 21268:3 21284:3 21340:1 21384:3 21418:1 21442:2 21454:1 21474:1 21484:1 21490:1 21494:1 21511:1 21539:1 21551:1 21563:4 21660:1 21675:1 21779:1 21795:1 21797:1 21810:1 21819:1 21832:2 21835:1 21836:2 21841:1 21867:5 21895:1 21896:4 21929:1 21930:1 21965:1 21970:1 21995:1 22000:1 22002:1 22004:1 22015:1 22029:1 22060:1 22068:1 22089:1 22101:1 22131:1 22136:1 22244:1 22262:1 22264:7 22308:1 22317:1 22369:1 22377:2 22399:1 22422:1 22444:1 22476:1 22478:1 22484:1 22485:1 22495:1 22534:1 22542:4 22556:1 22581:1 22616:1 22624:1 22651:1 22676:1 22680:1 22687:1 22708:3 22745:1 22775:1 22800:7 22822:2 22844:1 22845:1 22863:6 22881:1 22922:1 22933:1 22945:1 22999:1 23024:2 23056:1 23105:1 23153:2 23166:1 23183:1 23185:1 23198:1 23242:1 23245:1 23265:1 23369:1 23407:1 23439:1 23457:1 23490:1 23532:7 23546:3 23550:1 23574:1 23595:1 23653:2 23657:1 23682:1 23711:3 23722:2 23765:1 23803:1 23832:1 23836:1 23873:1 23944:1 24009:1 24065:2 24070:2 24073:1 24084:1 24143:1 24154:2 24164:1 24195:1 24202:1 24216:1 24218:2 24221:1 24255:1 24271:1 24311:1 24328:1 24339:1 24341:1 24360:1 24363:3 24377:1 24396:1 24408:1 24427:1 24478:1 24488:2 24505:1 24542:1 24543:2 24563:2 24567:1 24649:1 24659:1 24662:3 24670:1 24682:1 24700:1 24702:1 24703:2 24707:1 24714:1 24719:2 24732:1 24747:1 24824:3 24825:1 24855:1 24861:1 24869:2 24888:1 24908:1 24923:1 24979:7 24984:1 25005:1 25018:1 25021:1 25026:1 25033:1 25047:1 25057:1 25065:1 25071:2 25094:1 25101:1 25104:1 25110:2 25125:1 25129:3 25148:1 25156:3 25168:2 25190:1 25206:1 25209:1 25218:1 25245:2 25252:1 25256:1 25275:1 25289:2 25303:3 25340:1 25473:2 25485:1 25526:1 25581:1 25588:1 25595:9 25598:1 25620:1 25667:1 25683:1 25689:1 25695:2 25732:1 25755:4 25788:1 25804:1 25828:2 25853:1 25871:1 25907:1 25928:1 25929:1 25936:1 26001:1 26015:1 26017:3 26024:1 26043:1 26044:1 26075:2 26094:1 26133:1 26135:1 26157:1 26165:1 26174:2 26179:2 26184:1 26230:1 26243:1 26254:1 26277:2 26283:1 26309:1 26315:1 26319:2 26324:1 26352:1 26359:1 26415:2 26424:7 26532:1 26539:1 26605:1 26612:1 26636:1 26679:1 26694:1 26748:1 26751:1 26758:1 26794:2 26818:1 26880:1 26897:1 26924:2 26931:1 26936:1 27009:1 27014:1 27022:1 27072:1 27114:2 27122:1 27133:1 27225:1 27360:1 27377:1 27398:2 27419:1 27427:1 27437:1 27439:2 27451:1 27456:1 27489:1 27502:1 27512:1 27516:1 27522:1 27533:1 27569:1 27574:1 27575:1 27602:3 27612:1 27620:1 27676:1 27716:1 27753:1 27757:1 27769:1 27804:1 27813:1 27817:1 27846:1 27851:1 27881:1 27884:1 27917:2 27933:1 27957:1 27989:1 27997:1 28007:1 28015:1 28021:1 28032:3 28068:2 28094:1 28132:1 28174:1 28242:1 28253:1 28273:1 28327:2 28331:3 28335:1 28348:1 28414:1 28442:1 28509:2 28512:1 28518:1 28540:1 28557:1 28563:1 28608:2 28609:1 28635:2 28641:3 28642:1 28652:1 28666:1 28671:1 28680:1 28697:2 28725:2 28728:1 28734:1 28753:2 28754:1 28778:1 28847:3 28870:1 28872:2 28902:1 28913:1 28945:2 28998:2 29029:1 29052:1 29063:1 29085:1 29088:1 29104:1 29120:1 29123:1 29146:1 29189:2 29195:1 29219:1 29272:1 29316:1 29326:1 29334:1 29365:5 29374:1 29417:1 29439:1 29472:2 29519:2 29543:1 29564:1 29574:1 29653:4 29655:2 29675:2 29676:1 29677:4 29679:1 29732:1 29771:1 29781:2 29797:1 29821:2 29842:1 29861:1 29882:1 30051:1 30063:1 30121:1 30129:1 30221:1 30235:1 30294:1 30295:1 30334:1 30367:1 30393:2 30399:1 30415:1 30418:3 30451:1 30524:7 30525:1 30531:1 30560:1 30643:1 30648:1 30651:1 30706:1 30721:1 30728:1 30738:1 30745:1 30753:1 30788:1 30800:1 30818:1 30832:1 30846:1 30906:1 30958:1 30978:1 30998:1 31088:3 31104:1 31132:1 31176:1 31200:1 31204:1 31207:1 31243:1 31259:1 31262:1 31302:1 31317:1 31359:1 31403:1 31477:1 31489:3 31493:1 31514:1 31541:1 31544:12 31545:2 31546:2 31549:1 31552:1 31555:1 31566:1 31586:1 31587:7 31597:1 31613:1 31644:1 31646:1 31651:1 31662:1 31681:1 31697:1 31702:1 31713:1 31759:1 31801:1 31829:1 31863:2 31957:1 31959:1 31964:4 31969:1 31990:1 32000:1 32012:1 32028:1 32039:2 32115:1 32178:1 32214:1 32257:1 32279:1 32310:2 32314:1 32321:1 32381:1 32505:3 32510:1 32539:2 32543:1 32582:1 32596:1 32605:2 32628:1 32662:1 32676:1 32684:1 32686:1 32701:1 32727:1 32733:2 32735:1 32740:1 32755:1 32811:1 32821:3 32831:1 32891:1 32902:1 32903:1 32905:2 32957:1 32966:1 32972:1 32973:1
16 26:1 66:1 85:4 109:1 145:1 176:1 219:1 235:1 269:4 338:1 351:2 387:1 397:1 398:1 399:2 427:1 468:2 505:1 551:2 567:1 575:1 577:1 584:1 589:1 591:1 713:1 723:3 751:2 762:4 766:1 774:1 779:1 805:1 812:1 821:1 832:1 869:2 886:1 929:1 937:1 944:1 970:1 988:1 1000:1 1007:1 1051:1 1054:1 1069:1 1078:1 1081:1 1082:1 1114:1 1139:1 1143:1 1149:1 1180:2 1185:1 1202:1 1221:1 1250:1 1288:1 1301:1 1341:1 1353:1 1359:1 1369:2 1377:1 1387:1 1388:2 1398:1 1412:1 1426:2 1466:1 1472:1 1488:1 1506:1 1512:1 1546:1 1560:1 1572:1 1586:1 1600:1 1633:1 1642:1 1676:1 1742:1 1760:2 1767:1 1773:1 1774:1 1776:1 1780:2 1802:1 1835:1 1839:2 1853:1 1867:1 1871:1 1879:2 1907:1 1914:1 1919:1 1924:1 1927:2 1941:1 1963:1 1966:1 1975:1 2018:1 2050:1 2053:1 2055:1 2058:1 2069:2 2097:1 2098:1 2122:1 2127:1 2139:1 2142:1 2143:1 2150:1 2174:1 2180:1 2187:1 2201:1 2211:1 2215:1 2232:1 2234:4 2245:1 2262:1 2282:1 2317:1 2320:1 2323:1 2345:1 2354:1 2368:2 2369:1 2414:1 2439:1 2441:1 2444:2 2446:1 2475:1 2531:1 2566:1 2572:1 2631:2 2632:2 2637:1 2638:1 2640:1 2641:1 2643:3 2647:1 2651:1 2654:1 2660:4 2665:1 2668:2 2687:1 2712:1 2754:1 2763:1 2794:1 2800:1 2826:1 2845:1 2871:1 2927:1 2944:1 3023:1 3062:1 3082:4 3092:1 3098:1 3130:1 3136:3 3150:1 3164:1 3177:1 3197:1 3237:1 3246:2 3252:1 3256:3 3314:4 3355:5 3363:6 3426:15 3435:1 3441:1 3457:1 3533:2 3607:2 3613:1 3700:1 3710:2 3713:4 3739:3 3764:1 3823:2 3863:1 3900:1 3944:1 3959:1 3965:1 3975:1 3985:1 4003:1 4041:1 4049:1 4053:1 4076:1 4077:1 4089:1 4144:1 4150:1 4152:1 4161:1 4235:1 4256:1 4270:1 4271:1 4297:1 4323:1 4325:14 4340:1 4347:1 4361:1 4364:1 4376:1 4377:7 4379:1 4381:2 4391:1 4405:1 4418:1 4419:2 4423:1 4426:1 4438:1 4439:2 4442:1 4444:1 4491:3 4502:1 4541:1 4544:1 4555:1 4567:2 4575:1 4587:1 4622:1 4630:1 4635:1 4643:1 4646:1 4655:1 4658:1 4674:1 4813:1 4876:1 4879:1 4880:1 4924:1 4926:1 5010:3 5090:1 5106:1 5120:2 5152:2 5176:1 5205:1 5268:2 5269:1 5331:1 5370:1 5381:1 5390:1 5433:2 5509:1 5510:1 5516:1 5545:1 5558:1 5640:1 5645:1 5659:9 5660:1 5699:1 5761:1 5784:1 5800:1 5802:1 5822:1 5823:4 5824:1 5828:1 5840:1 5841:7 5842:1 5844:1 5848:1 5880:1 5950:1 6081:2 6082:3 6089:2 6125:1 6142:1 6168:1 6169:7 6205:1 6255:1 6301:1 6305:1 6357:1 6371:1 6394:1 6403:1 6404:1 6462:1 6473:1 6480:1 6483:1 6507:1 6515:1 6518:1 6531:1 6568:1 6574:1 6611:1 6617:1 6647:1 6672:1 6673:1 6678:1 6686:1 6728:1 6733:1 6753:1 6776:1 6808:1 6826:1 6844:1 6845:1 6868:1 6870:1 6873:1 6959:1 7035:3 7045:1 7068:1 7074:1 7102:1 7149:1 7157:1 7190:1 7196:1 7200:1 7202:1 7249:1 7254:2 7276:3 7278:1 7295:1 7300:1 7316:1 7386:1 7394:1 7397:1 7401:1 7403:2 7409:1 7410:2 7411:1 7413:1 7427:1 7451:1 7503:1 7509:1 7559:1 7579:1 7586:1 7613:1 7615:1 7681:1 7684:2 7710:2 7716:2 7722:1 7742:2 7764:1 7791:1 7805:1 7846:1 7869:1 7877:1 7879:1 7891:2 7900:1 7907:1 7915:2 7940:1 7987:1 7998:1 8005:1 8012:1 8026:2 8032:1 8091:1 8093:1 8137:1 8138:1 8215:1 8251:1 8255:4 8263:2 8289:1 8299:1 8320:1 8490:1 8507:1 8512:1 8526:3 8575:1 8577:1 8586:2 8604:1 8688:1 8770:1 8784:1 8791:1 8821:1 8830:1 8832:2 8850:1 8861:1 8890:1 8901:16 8902:1 8908:1 8920:4 8923:12 8929:1 8933:1 8943:1 8952:1 8978:3 9014:1 9034:1 9051:1 9059:1 9082:1 9085:1 9153:4 9161:1 9206:1 9209:2 9212:1 9234:1 9251:1 9304:1 9343:1 9362:1 9368:1 9370:1 9386:1 9405:1 9444:1 9448:1 9484:6 9511:1 9525:1 9551:1 9589:1 9616:1 9630:1 9639:3 9664:1 9678:3 9687:1 9709:2 9715:2 9747:1 9748:1 9765:1 9777:1 9792:1 9809:1 9836:1 9841:1 9859:1 9878:2 9880:1 9881:2 9882:1 9884:1 9885:2 9894:1 9897:2 9903:1 9919:1 9925:1 9934:1 9944:1 9945:1 9959:1 9977:2 10002:1 10024:1 10044:1 10053:2 10056:1 10065:1 10067:1 10069:1 10088:1 10121:1 10128:2 10138:1 10139:1 10144:1 10150:1 10161:1 10162:1 10166:1 10204:1 10208:1 10209:1 10214:1 10219:1 10221:3 10252:1 10257:2 10270:1 10295:1 10367:1 10397:1 10399:1 10410:1 10412:1 10438:1 10441:1 10461:1 10554:1 10558:1 10565:1 10588:1 10615:1 10619:1 10634:1 10653:1 10671:1 10673:1 10701:1 10710:1 10768:1 10845:1 10846:1 10858:1 10862:1 10864:1 10879:1 10900:1 10903:1 10937:1 10939:1 10942:1 10947:1 10959:1 11009:7 11016:1 11039:1 11047:2 11056:2 11083:1 11104:1 11124:1 11154:9 11171:1 11210:1 11225:1 11229:2 11249:1 11318:2 11319:1 11359:1 11363:1 11366:1 11368:1 11374:1 11382:1 11400:1 11417:1 11422:2 11464:2 11470:1 11496:1 11513:1 11551:1 11553:1 11580:4 11583:2 11595:1 11597:1 11697:1 11703:1 11728:1 11754:1 11761:1 11775:3 11789:1 11897:1 11914:3 11994:2 12043:1 12052:1 12075:1 12098:1 12117:1 12119:2 12121:1 12125:1 12128:1 12145:1 12197:1 12200:1 12211:3 12229:1 12241:1 12249:3 12316:1 12322:1 12345:1 12346:1 12347:1 12352:1 12396:1 12459:1 12492:1 12498:1 12499:1 12512:1 12531:2 12534:2 12553:1 12556:1 12610:1 12623:2 12642:1 12664:2 12676:2 12706:1 12807:1 12825:1 12850:1 12855:1 12863:1 12883:1 12919:2 12953:1 12960:1 12974:2 12980:1 12981:1 12983:1 12990:1 12991:1 13014:1 13021:1 13057:1 13061:1 13063:3 13067:1 13100:1 13122:1 13125:1 13127:1 13135:1 13153:1 13176:1 13204:1 13207:1 13218:3 13252:2 13254:2 13297:1 13328:1 13341:1 13352:1 13354:1 13363:1 13368:4 13369:1 13379:4 13382:1 13395:1 13403:1 13428:1 13447:3 13454:1 13463:1 13507:1 13518:4 13536:1 13537:1 13576:1 13580:1 13590:3 13592:1 13607:1 13629:1 13690:1 13692:1 13717:1 13759:1 13766:1 13832:1 13867:1 13872:1 13874:1 13913:1 13914:1 13916:7 13923:4 13956:1 13972:1 14021:1 14074:1 14082:4 14083:2 14098:1 14106:1 14167:1 14172:1 14207:1 14222:1 14228:1 14292:1 14312:1 14326:1 14329:1 14369:1 14373:1 14382:1 14388:1 14441:1 14506:6 14519:1 14527:2 14530:1 14546:1 14565:2 14566:2 14592:1 14629:1 14660:1 14667:2 14693:1 14746:1 14748:1 14751:2 14785:1 14819:1 14870:1 14920:1 14948:1 14990:1 15002:2 15014:1 15017:1 15023:1 15044:1 15045:1 15080:1 15140:1 15146:1 15155:1 15156:3 15162:1 15164:1 15171:1 15178:1 15192:1 15198:1 15234:2 15250:1 15266:1 15280:1 15301:1 15317:1 15338:1 15355:1 15365:1 15400:1 15420:1 15430:2 15441:1 15465:1 15486:1 15503:1 15514:1 15529:1 15538:2 15576:1 15589:1 15597:1 15598:1 15599:1 15600:1 15602:1 15636:1 15659:1 15663:1 15684:1 15701:1 15706:1 15726:1 15739:3 15750:1 15797:1 15821:1 15822:1 15827:1 15851:1 15856:1 15857:1 15861:2 15891:1 15908:1 15918:1 15921:1 15938:2 15939:4 15950:1 15970:1 15977:1 15997:1 16035:1 16037:1 16043:1 16046:1 16051:1 16202:2 16220:1 16263:1 16279:1 16341:1 16393:1 16401:1 16412:3 16414:1 16416:1 16424:1 16442:1 16467:1 16483:1 16491:1 16495:1 16525:1 16561:1 16583:1 16612:1 16631:1 16640:1 16661:1 16675:1 16692:1 16718:1 16775:1 16828:1 16874:1 16939:1 16951:1 16970:1 17000:1 17005:2 17010:1 17059:1 17098:1 17137:1 17163:1 17191:1 17194:1 17207:1 17237:1 17255:1 17280:1 17353:2 17355:1 17360:1 17379:1 17380:1 17385:1 17433:1 17435:1 17441:1 17501:2 17512:2 17546:1 17591:1 17611:1 17633:1 17634:1 17662:2 17685:3 17687:2 17689:1 17722:1 17740:2 17763:1 17829:2 17835:1 17844:2 17854:1 17864:1 17885:1 17889:1 17890:2 17892:1 17896:1 17900:1 17902:1 17913:1 17919:2 17996:1 18012:1 18022:1 18024:2 18030:3 18073:1 18101:1 18146:1 18158:1 18175:1 18182:1 18187:2 18198:2 18199:1 18217:1 18222:1 18225:1 18263:7 18300:1 18305:1 18324:2 18341:19 18361:1 18390:1 18418:1 18424:1 18427:1 18455:1 18467:1 18473:1 18474:1 18477:1 18482:1 18516:1 18518:1 18523:1 18530:1 18543:1 18544:1 18565:1 18604:1 18610:3 18648:1 18696:1 18797:1 18798:1 18808:1 18822:2 18826:1 18867:1 18916:1 18922:1 18946:2 18997:1 19000:1 19004:2 19016:1 19020:1 19027:1 19042:1 19048:7 19072:1 19084:1 19094:1 19136:1 19167:1 19170:2 19177:1 19182:1 19206:1 19232:1 19243:1 19245:1 19307:1 19374:1 19382:2 19434:1 19440:1 19449:1 19457:1 19461:1 19466:1 19469:2 19480:1 19490:1 19497:3 19501:1 19504:1 19542:1 19550:1 19564:1 19587:1 19595:1 19619:3 19640:1 19684:1 19685:1 19711:3 19718:1 19726:1 19730:2 19735:1 19737:1 19759:1 19761:1 19789:1 19817:1 19840:1 19841:1 19926:2 19944:1 19956:1 19962:1 20017:2 20020:1 20037:3 20070:1 20103:1 20130:1 20131:1 20153:1 20160:1 20179:1 20210:1 20216:1 20249:1 20255:2 20261:3 20265:1 20340:1 20382:2 20383:1 20420:1 20429:1 20450:1 20456:1 20474:2 20480:1 20488:1 20489:1 20507:1 20531:1 20532:1 20579:1 20585:1 20595:1 20621:2 20645:1 20649:1 20651:1 20655:1 20676:1 20677:1 20693:1 20749:1 20790:1 20792:5 20821:1 20865:1 20869:1 20884:1 20906:1 20922:1 20942:1 20946:3 20948:1 20965:2 20976:1 20980:1 21013:1 21020:1395 21046:1 21047:1 21054:1 21108:1 21136:3 21178:2 21201:2 21212:1 21239:1 21242:1 21268:3 21284:3 21287:1 21340:1 21384:3 21418:1 21442:2 21454:1 21474:1 21484:1 21490:1 21494:1 21511:1 21539:1 21551:1 21563:4 21660:1 21675:1 21779:1 21795:1 21797:1 21803:1 21810:1 21819:1 21832:2 21835:1 21836:2 21841:1 21867:5 21895:1 21896:4 21929:1 21930:1 21965:1 21970:1 21995:1 22000:1 22002:1 22004:1 22015:1 22029:1 22060:1 22068:1 22089:1 22101:1 22131:1 22136:1 22244:1 22262:1 22264:7 22272:1 22308:1 22317:1 22369:1 22377:2 22399:1 22422:1 22444:1 22476:1 22478:1 22484:1 22485:1 22495:1 22534:1 22542:4 22556:1 22581:2 22610:1 22616:1 22624:1 22651:1 22676:1 22680:1 22687:1 22708:4 22745:1 22775:1 22800:7 22822:2 22844:1 22845:1 22863:7 22881:1 22922:1 22933:1 22945:1 22999:1 23024:2 23056:1 23105:1 23153:2 23166:1 23183:1 23185:1 23198:1 23242:1 23245:1 23265:1 23369:1 23407:1 23439:1 23457:1 23490:1 23532:8 23546:3 23549:1 23550:1 23569:1 23574:1 23595:1 23653:2 23657:1 23682:1 23711:3 23719:1 23722:2 23765:1 23803:1 23832:1 23836:1 23873:1 23882:1 23940:1 23944:1 23948:1 24009:1 24065:2 24070:2 24073:1 24084:1 24143:1 24154:2 24164:1 24195:1 24202:1 24216:1 24218:2 24221:1 24255:1 24271:1 24311:2 24328:1 24339:1 24341:1 24360:1 24363:3 24377:1 24396:1 24408:1 24427:1 24472:1 24478:1 24488:2 24505:1 24542:1 24543:2 24556:1 24563:2 24567:1 24649:1 24659:1 24662:3 24670:1 24682:1 24700:1 24702:1 24703:2 24707:1 24714:1 24719:2 24732:1 24747:1 24774:1 24824:3 24825:1 24855:1 24861:1 24869:2 24888:1 24894:1 24908:1 24923:1 24935:1 24979:7 24984:1 25005:1 25018:1 25021:1 25026:1 25033:1 25047:1 25057:1 25065:1 25071:2 25094:1 25101:1 25104:1 25110:2 25125:1 25129:3 25148:1 25156:3 25168:2 25190:1 25206:1 25209:1 25218:1 25245:2 25252:1 25256:1 25275:1 25289:2 25303:3 25318:1 25328:1 25340:1 25473:2 25485:1 25526:1 25581:1 25588:1 25595:9 25598:1 25620:1 25634:1 25653:1 25655:1 25667:1 25683:1 25689:1 25695:2 25732:1 25755:4 25788:1 25804:1 25828:2 25853:1 25871:1 25907:1 25928:1 25929:1 25936:1 26001:1 26015:1 26017:3 26024:1 26043:1 26044:1 26075:2 26094:1 26133:1 26135:1 26157:1 26160:1 26165:1 26174:2 26179:2 26184:1 26187:1 26230:1 26243:1 26254:1 26255:1 26277:2 26283:1 26309:1 26315:1 26319:2 26324:1 26352:1 26359:1 26415:2 26424:7 26532:1 26539:1 26605:1 26612:1 26636:1 26679:1 26694:1 26748:1 26751:1 26758:1 26794:2 26818:1 26880:1 26897:1 26924:2 26931:1 26936:1 27009:1 27014:1 27022:1 27072:1 27114:2 27122:1 27133:1 27225:1 27262:1 27303:2 27360:1 27377:1 27398:2 27419:1 27427:1 27437:1 27439:2 27451:1 27456:1 27489:1 27502:1 27512:1 27516:1 27522:1 27533:1 27569:1 27574:1 27575:1 27602:3 27612:1 27620:1 27641:1 27676:1 27716:1 27753:1 27757:1 27769:1 27804:1 27813:1 27817:1 27846:1 27851:1 27881:1 27884:1 27917:2 27933:1 27957:1 27989:1 27997:1 28007:1 28015:1 28021:1 28032:3 28068:2 28094:1 28132:1 28174:1 28242:1 28253:1 28273:1 28327:2 28331:3 28335:1 28348:1 28414:1 28442:1 28509:2 28512:1 28518:1 28540:1 28557:1 28563:2 28591:1 28602:1 28608:2 28609:1 28635:2 28641:3 28642:1 28652:1 28666:1 28671:1 28680:1 28697:2 28725:2 28728:1 28734:1 28753:2 28754:1 28778:1 28847:3 28870:1 28872:2 28902:1 28913:1 28945:2 28998:2 29029:1 29052:1 29060:1 29063:1 29085:1 29088:1 29104:1 29105:1 29120:1 29123:1 29146:1 29156:1 29189:2 29195:1 29219:1 29272:1 29316:1 29326:1 29334:1 29365:5 29374:1 29417:1 29439:1 29472:2 29519:2 29543:1 29546:1 29564:1 29574:1 29653:4 29655:2 29675:2 29676:1 29677:4 29679:1 29732:2 29771:1 29781:2 29797:1 29821:2 29842:1 29861:1 29882:1 29923:1 30051:1 30063:1 30121:1 30129:1 30221:1 30235:1 30294:1 30295:1 30334:1 30367:1 30393:2 30399:1 30415:1 30418:3 30451:1 30524:7 30525:1 30529:1 30531:1 30560:1 30643:1 30648:1 30651:1 30684:1 30706:1 30721:1 30728:1 30738:1 30741:1 30745:1 30753:1 30788:1 30800:1 30818:1 30832:1 30846:1 30906:1 30958:1 30978:1 30997:1 30998:1 31088:3 31104:1 31132:1 31176:1 31200:1 31204:1 31207:1 31243:1 31259:1 31262:1 31302:1 31317:1 31359:1 31403:1 31477:1 31489:3 31493:1 31514:1 31541:1 31544:13 31545:2 31546:2 31549:1 31552:1 31555:1 31566:1 31586:1 31587:7 31597:1 31613:1 31644:1 31646:1 31651:1 31662:1 31681:1 31697:1 31702:2 31713:1 31759:1 31801:1 31829:1 31854:1 31863:2 31957:1 31959:1 31964:4 31969:1 31990:1 32000:1 32012:1 32028:1 32039:2 32115:1 32118:1 32178:1 32214:1 32257:1 32263:1 32279:1 32310:2 32314:1 32321:1 32342:1 32381:1 32505:3 32510:1 32539:2 32543:1 32582:1 32596:1 32605:2 32628:1 32662:1 32676:1 32684:1 32686:1 32701:1 32727:1 32733:3 32735:1 32740:1 32755:1 32811:1 32821:3 32831:1 32891:1 32902:1 32903:1 32905:2 32921:1 32957:1 32966:1 32972:1 32973:1 33021:1
16 26:1 66:1 85:4 109:1 145:1 176:1 219:1 235:1 269:4 338:1 351:2 387:1 397:1 398:1 399:2 427:1 468:2 505:1 551:2 567:1 575:1 577:1 584:1 589:1 591:1 628:1 713:1 723:3 751:2 762:4 766:1 774:1 779:1 805:1 812:1 821:1 832:1 869:2 886:1 929:1 937:1 944:1 970:1 988:1 1000:1 1007:1 1051:1 1054:1 1069:1 1078:1 1081:1 1082:1 1114:1 1139:1 1143:1 1149:1 1180:2 1185:1 1202:1 1221:1 1250:1 1254:1 1288:1 1301:1 1341:1 1353:2 1359:1 1369:2 1377:2 1387:1 1388:2 1398:1 1412:1 1426:2 1466:1 1472:1 1487:1 1488:2 1506:1 1512:1 1546:1 1560:1 1572:1 1586:1 1600:1 1633:1 1642:1 1676:2 1742:1 1760:2 1767:1 1773:1 1774:1 1776:1 1780:2 1802:1 1835:1 1839:2 1853:1 1867:1 1871:2 1879:2 1907:1 1914:1 1919:1 1924:1 1927:2 1941:1 1963:1 1966:1 1975:1 2018:1 2050:1 2053:1 2055:1 2058:1 2069:2 2097:1 2098:1 2122:1 2127:1 2139:1 2142:1 2143:1 2150:1 2174:1 2180:1 2187:1 2201:1 2211:1 2215:1 2232:1 2234:4 2245:1 2262:1 2282:1 2317:1 2320:1 2323:1 2345:1 2354:2 2368:3 2369:1 2414:1 2439:1 2441:1 2444:2 2446:1 2475:1 2531:1 2566:1 2572:1 2631:2 2632:3 2637:1 2638:1 2640:1 2641:1 2643:3 2647:1 2651:1 2654:1 2660:4 2665:1 2668:2 2687:1 2712:1 2754:1 2755:1 2763:1 2794:1 2800:1 2826:1 2845:1 2871:1 2883:1 2927:1 2944:1 3023:1 3062:1 3082:4 3092:1 3098:1 3130:1 3136:4 3150:1 3164:1 3177:1 3197:1 3237:1 3246:2 3252:1 3256:3 3314:4 3355:5 3363:6 3426:16 3435:1 3441:1 3457:1 3533:2 3607:2 3613:1 3700:1 3710:2 3713:4 3739:4 3764:1 3823:2 3863:1 3900:1 3944:1 3959:1 3965:1 3975:2 3985:1 4003:1 4041:1 4049:1 4053:1 4076:1 4077:1 4089:1 4144:1 4150:1 4152:1 4161:1 4235:1 4256:1 4270:1 4271:1 4297:1 4323:1 4325:15 4340:1 4347:1 4361:2 4364:2 4376:1 4377:8 4379:1 4381:3 4391:1 4405:2 4418:1 4419:2 4423:1 4425:1 4426:2 4438:1 4439:2 4442:1 4444:1 4491:3 4502:1 4541:1 4543:1 4544:1 4555:2 4567:2 4575:1 4587:1 4622:1 4630:1 4635:1 4643:1 4646:1 4655:1 4658:1 4674:1 4686:1 4813:1 4876:1 4879:1 4880:1 4924:1 4926:1 5010:4 5090:1 5106:1 5120:2 5152:2 5176:1 5205:1 5268:2 5269:1 5331:1 5367:1 5370:1 5381:1 5390:1 5433:2 5509:1 5510:1 5516:1 5545:1 5558:1 5640:1 5645:1 5659:9 5660:1 5699:1 5761:1 5784:1 5800:1 5802:1 5822:1 5823:4 5824:1 5828:1 5840:1 5841:8 5842:1 5844:1 5848:1 5880:1 5950:1 6081:2 6082:3 6089:4 6125:1 6142:1 6168:1 6169:8 6205:1 6255:1 6301:1 6305:1 6357:1 6371:1 6394:1 6403:1 6404:1 6462:1 6473:1 6480:1 6483:1 6507:1 6515:1 6518:1 6531:1 6568:2 6574:1 6611:1 6617:1 6647:1 6672:1 6673:1 6678:1 6686:1 6728:1 6733:1 6753:1 6776:1 6808:1 6826:1 6844:1 6845:1 6868:1 6870:1 6873:1 6959:1 7035:3 7045:1 7068:1 7074:1 7102:1 7139:1 7149:1 7157:1 7190:1 7196:1 7200:2 7202:1 7249:1 7254:2 7276:3 7278:1 7295:1 7300:1 7316:1 7386:1 7394:1 7396:1 7397:1 7401:1 7403:2 7409:1 7410:2 7411:1 7413:1 7427:1 7451:1 7503:1 7509:1 7559:1 7579:2 7586:1 7613:1 7615:1 7681:1 7684:2 7710:4 7716:2 7722:1 7742:2 7764:1 7791:1 7805:1 7846:1 7869:1 7877:1 7879:1 7891:2 7900:1 7907:1 7915:2 7940:1 7987:1 7998:1 8005:1 8012:1 8026:2 8032:1 8091:1 8093:1 8137:1 8138:1 8215:1 8251:1 8255:4 8263:2 8289:1 8299:1 8320:1 8490:1 8507:1 8512:1 8526:3 8575:1 8577:1 8586:2 8604:1 8688:1 8770:1 8784:1 8791:1 8821:1 8830:1 8832:2 8850:1 8861:1 8890:1 8901:17 8902:1 8908:1 8920:4 8923:13 8929:1 8933:1 8943:1 8952:1 8978:3 9014:1 9034:1 9051:1 9059:1 9082:1 9085:1 9153:4 9161:1 9206:1 9209:2 9212:1 9234:1 9251:1 9285:1 9304:1 9343:1 9362:1 9368:1 9370:1 9386:1 9405:1 9444:1 9448:1 9470:1 9484:7 9511:1 9525:1 9551:1 9589:1 9616:1 9630:2 9639:3 9664:1 9678:3 9687:1 9709:2 9715:2 9747:1 9748:1 9765:1 9777:1 9792:1 9809:1 9836:1 9841:2 9859:1 9878:2 9880:1 9881:2 9882:1 9884:1 9885:2 9894:1 9897:2 9903:1 9919:1 9925:1 9934:1 9944:1 9945:1 9959:1 9977:2 10002:2 10024:1 10044:1 10053:2 10056:1 10065:1 10067:1 10069:1 10088:1 10121:1 10128:2 10138:1 10139:1 10144:1 10150:1 10161:1 10162:1 10166:1 10204:1 10208:1 10209:1 10214:1 10219:1 10221:3 10252:1 10254:1 10257:3 10270:1 10295:1 10367:1 10397:1 10399:1 10410:1 10412:1 10438:1 10441:1 10461:1 10554:1 10558:1 10565:1 10588:1 10615:1 10619:1 10634:1 10653:1 10671:1 10673:1 10701:1 10710:1 10768:1 10845:1 10846:1 10858:1 10862:1 10864:2 10879:1 10900:1 10903:1 10937:1 10939:1 10942:1 10947:1 10959:1 11009:8 11016:1 11039:1 11047:3 11056:2 11083:1 11104:2 11124:1 11154:9 11171:1 11198:1 11210:1 11225:1 11229:3 11249:1 11318:2 11319:1 11359:1 11363:1 11366:1 11368:1 11374:1 11382:1 11400:1 11417:1 11422:2 11464:2 11470:1 11496:1 11513:1 11551:1 11553:1 11580:4 11583:3 11595:1 11597:1 11697:2 11703:1 11728:1 11754:1 11761:1 11775:3 11789:1 11897:1 11914:3 11994:2 12043:1 12052:1 12075:1 12098:2 12117:2 12119:2 12121:1 12125:1 12128:1 12145:1 12197:1 12200:1 12211:3 12229:1 12241:1 12249:4 12316:1 12322:1 12345:1 12346:1 12347:1 12352:1 12396:1 12459:1 12492:1 12498:1 12499:1 12512:1 12531:2 12534:2 12553:1 12556:1 12610:1 12623:2 12642:1 12664:2 12676:2 12706:1 12807:1 12825:1 12850:1 12855:1 12863:1 12883:1 12893:1 12919:2 12953:1 12960:1 12974:2 12980:1 12981:1 12983:1 12990:1 12991:1 13014:1 13021:1 13057:1 13061:1 13063:3 13067:1 13100:1 13122:1 13125:1 13127:1 13135:1 13153:1 13176:1 13204:1 13207:1 13218:3 13252:2 13254:2 13297:1 13328:1 13341:1 13352:1 13354:1 13363:1 13368:4 13369:1 13379:4 13382:1 13395:1 13403:1 13428:1 13447:3 13454:1 13463:1 13507:1 13518:4 13536:1 13537:1 13576:1 13580:1 13590:3 13592:1 13607:1 13629:1 13690:1 13692:1 13717:1 13759:1 13766:1 13832:1 13847:1 13867:1 13872:1 13874:1 13878:1 13913:1 13914:1 13916:8 13923:4 13956:1 13972:2 14021:1 14074:1 14082:5 14083:2 14098:1 14106:1 14167:1 14172:1 14207:1 14222:1 14228:1 14235:1 14292:1 14312:1 14326:1 14329:1 14369:1 14373:1 14382:1 14388:1 14441:1 14506:6 14519:1 14527:2 14530:1 14546:1 14565:2 14566:2 14592:1 14629:1 14660:1 14667:2 14693:1 14746:1 14748:1 14751:2 14785:1 14819:1 14870:1 14920:1 14948:1 14990:1 15002:2 15014:1 15017:1 15023:1 15044:1 15045:1 15080:1 15140:1 15146:1 15155:1 15156:3 15162:1 15164:1 15171:1 15178:1 15192:1 15198:1 15234:2 15250:1 15266:1 15280:1 15301:2 15317:1 15338:1 15355:1 15365:1 15380:1 15400:1 15420:1 15430:3 15441:1 15465:1 15486:1 15503:1 15514:1 15529:1 15538:2 15576:1 15589:1 15597:1 15598:1 15599:2 15600:1 15602:1 15636:1 15659:1 15663:1 15684:1 15701:2 15706:1 15726:1 15739:3 15750:1 15797:1 15821:1 15822:1 15827:1 15851:1 15856:1 15857:1 15861:2 15891:1 15908:1 15918:1 15921:1 15938:2 15939:4 15950:1 15970:1 15977:2 15997:1 16035:2 16037:1 16043:1 16046:1 16051:1 16202:2 16220:1 16263:1 16279:1 16341:1 16393:1 16401:1 16412:3 16414:1 16416:1 16424:1 16442:1 16467:1 16483:1 16491:1 16495:1 16525:1 16561:1 16583:1 16612:1 16631:1 16640:1 16661:1 16675:1 16692:1 16718:1 16775:1 16828:1 16874:1 16939:1 16951:1 16970:2 17000:1 17005:2 17010:1 17059:1 17098:2 17137:1 17163:1 17191:1 17194:1 17207:1 17237:1 17255:1 17280:1 17353:2 17355:1 17360:1 17379:1 17380:1 17385:1 17433:1 17435:1 17441:1 17501:2 17512:2 17546:1 17591:1 17611:1 17633:1 17634:1 17662:2 17685:3 17687:2 17689:1 17722:1 17740:2 17763:1 17796:1 17829:2 17835:1 17844:2 17854:1 17864:1 17885:1 17889:1 17890:3 17892:1 17896:1 17900:1 17902:1 17913:1 17919:2 17996:1 18012:1 18022:1 18024:2 18030:3 18073:1 18101:1 18146:1 18158:1 18175:1 18182:1 18187:2 18198:2 18199:1 18217:1 18222:1 18225:1 18263:8 18300:1 18305:1 18324:2 18341:22 18361:1 18390:1 18418:1 18424:1 18427:1 18455:1 18467:1 18473:1 18474:1 18477:1 18482:2 18516:1 18518:1 18523:1 18530:1 18543:1 18544:1 18565:1 18604:1 18610:3 18648:2 18696:1 18797:1 18798:1 18808:1 18822:2 18826:1 18867:1 18916:1 18922:1 18946:2 18997:1 19000:1 19004:2 19016:1 19020:1 19027:1 19042:1 19048:7 19072:1 19084:1 19094:1 19136:1 19167:1 19170:3 19177:1 19182:1 19206:1 19232:1 19243:1 19245:1 19307:1 19374:1 19382:2 19434:1 19440:1 19449:1 19457:1 19461:1 19466:1 19469:2 19480:1 19490:1 19497:3 19501:1 19504:1 19542:1 19550:1 19564:1 19587:1 19595:1 19619:3 19640:1 19684:1 19685:1 19711:3 19718:1 19726:1 19730:2 19735:1 19737:1 19759:1 19761:1 19776:1 19789:1 19817:1 19840:1 19841:1 19926:2 19944:1 19956:1 19962:1 20017:2 20020:1 20037:4 20070:1 20103:1 20130:1 20131:1 20153:1 20160:1 20179:1 20191:1 20210:1 20216:1 20249:1 20255:2 20261:3 20265:1 20340:1 20382:2 20383:1 20420:1 20429:1 20450:1 20456:1 20474:2 20480:1 20488:1 20489:2 20507:1 20531:1 20532:1 20579:1 20585:1 20595:1 20621:2 20645:1 20649:1 20651:1 20655:2 20676:1 20677:1 20693:1 20749:1 20790:1 20792:5 20821:1 20865:1 20869:1 20884:1 20906:1 20922:1 20942:1 20946:3 20948:1 20965:2 20976:1 20980:1 21013:1 21020:1476 21046:1 21047:1 21054:1 21108:1 21136:3 21178:2 21201:2 21212:1 21239:1 21242:1 21268:3 21284:3 21287:1 21340:1 21384:3 21418:1 21442:2 21454:1 21474:1 21484:1 21490:1 21494:1 21511:1 21539:1 21551:1 21563:4 21660:1 21675:1 21779:1 21795:1 21797:1 21803:1 21810:1 21819:1 21832:2 21835:1 21836:2 21841:1 21867:5 21895:1 21896:5 21929:1 21930:1 21965:1 21970:1 21995:1 22000:1 22002:1 22004:1 22015:1 22029:1 22060:1 22068:1 22089:1 22101:1 22131:1 22136:1 22194:1 22244:1 22262:1 22264:7 22272:1 22308:1 22317:1 22369:1 22377:3 22399:1 22422:1 22444:1 22476:1 22478:1 22484:1 22485:1 22495:1 22534:1 22542:4 22547:1 22556:1 22561:1 22581:2 22610:1 22616:1 22624:1 22651:1 22676:1 22680:1 22687:2 22708:5 22745:1 22775:1 22800:7 22822:2 22844:1 22845:1 22863:8 22881:1 22910:1 22922:1 22933:1 22945:1 22999:1 23024:2 23056:1 23105:1 23153:2 23166:1 23183:1 23185:1 23198:1 23242:1 23245:1 23265:1 23341:1 23369:1 23407:1 23439:1 23457:1 23490:2 23532:8 23546:3 23549:1 23550:1 23569:1 23574:1 23595:1 23653:2 23657:1 23682:1 23711:3 23719:1 23722:2 23765:1 23803:1 23832:1 23836:1 23873:1 23882:1 23940:1 23944:1 23948:1 24009:1 24065:2 24070:2 24073:1 24084:1 24100:1 24143:1 24154:2 24164:1 24195:1 24202:1 24216:1 24218:2 24221:1 24255:1 24271:1 24311:2 24328:1 24339:1 24341:1 24360:1 24363:4 24377:1 24396:1 24408:1 24427:1 24472:1 24478:1 24488:2 24505:1 24542:1 24543:2 24556:2 24563:2 24567:1 24649:1 24659:1 24662:4 24670:1 24682:1 24700:1 24702:1 24703:2 24707:1 24714:1 24719:2 24732:1 24747:1 24774:1 24824:3 24825:1 24855:1 24861:1 24869:2 24888:1 24894:1 24908:1 24923:1 24935:1 24979:8 24984:1 25005:1 25018:1 25021:1 25026:1 25033:1 25047:1 25057:1 25065:1 25071:2 25094:1 25101:1 25104:1 25110:2 25125:1 25129:3 25148:2 25156:3 25168:2 25190:1 25206:1 25209:1 25218:1 25245:2 25252:1 25256:1 25275:1 25289:2 25303:3 25318:1 25328:1 25340:1 25473:3 25485:1 25526:1 25581:1 25588:1 25595:9 25598:2 25620:1 25634:1 25653:1 25655:1 25667:1 25683:1 25689:1 25695:2 25732:1 25755:5 25788:1 25804:1 25828:2 25853:1 25871:1 25907:1 25928:1 25929:1 25936:1 26001:1 26015:1 26017:3 26024:1 26043:1 26044:1 26075:2 26094:1 26133:1 26135:2 26157:1 26160:1 26165:1 26174:2 26179:2 26184:1 26187:1 26230:1 26243:1 26254:1 26255:1 26277:3 26283:1 26309:1 26315:1 26319:2 26324:1 26352:1 26359:1 26415:2 26424:8 26532:1 26539:1 26605:1 26612:1 26636:1 26679:1 26694:1 26748:1 26751:1 26758:1 26794:2 26818:1 26880:1 26897:1 26924:2 26931:1 26936:1 27009:1 27014:1 27022:1 27072:1 27114:2 27122:1 27133:1 27225:1 27262:1 27303:4 27360:1 27377:1 27398:2 27401:1 27419:1 27427:1 27437:1 27439:2 27451:1 27456:1 27489:1 27502:1 27512:1 27516:1 27522:1 27533:1 27569:1 27574:1 27575:1 27602:3 27612:1 27618:1 27620:1 27641:1 27676:1 27716:1 27753:1 27757:1 27769:1 27804:1 27813:1 27817:1 27846:1 27851:1 27881:1 27884:1 27917:2 27933:1 27957:1 27985:1 27989:1 27997:1 28007:1 28015:1 28021:1 28032:3 28068:2 28094:1 28132:1 28174:1 28242:1 28253:1 28273:1 28327:2 28331:3 28335:1 28348:1 28414:1 28442:1 28503:1 28509:2 28512:1 28518:1 28540:1 28557:1 28563:2 28591:1 28602:1 28608:2 28609:1 28635:2 28641:3 28642:1 28652:1 28666:1 28671:1 28680:1 28697:2 28725:3 28728:1 28734:1 28753:2 28754:1 28778:1 28847:3 28870:1 28872:2 28902:1 28913:1 28945:2 28998:3 29029:1 29052:1 29060:2 29063:1 29085:1 29088:1 29104:1 29105:1 29120:1 29123:1 29146:1 29156:1 29161:1 29189:3 29195:1 29210:1 29219:1 29261:1 29272:1 29316:1 29326:1 29334:1 29365:5 29374:1 29417:2 29439:1 29472:2 29518:1 29519:2 29543:1 29546:1 29564:1 29574:1 29653:4 29655:2 29675:2 29676:1 29677:4 29679:1 29732:2 29759:1 29771:1 29781:2 29797:1 29821:2 29842:1 29861:1 29882:1 29923:1 30051:1 30063:1 30121:1 30129:1 30221:1 30235:1 30294:1 30295:1 30334:1 30367:1 30393:2 30399:1 30415:1 30418:4 30451:1 30524:8 30525:1 30529:2 30531:1 30560:1 30643:1 30648:1 30651:1 30684:1 30706:1 30721:1 30724:1 30728:1 30738:1 30741:1 30745:1 30753:1 30788:1 30800:1 30818:1 30832:1 30846:1 30906:1 30958:1 30978:1 30997:1 30998:1 31088:3 31104:1 31132:1 31176:1 31200:1 31204:1 31207:1 31243:1 31259:1 31262:1 31302:1 31317:1 31359:1 31403:1 31477:1 31489:3 31493:1 31514:1 31541:1 31544:13 31545:2 31546:2 31549:1 31552:1 31555:1 31566:1 31586:1 31587:7 31597:1 31613:1 31644:1 31646:1 31651:1 31662:1 31681:1 31697:1 31702:2 31713:1 31759:1 31801:1 31802:1 31829:1 31854:1 31863:2 31957:1 31959:1 31964:4 31969:1 31990:1 32000:1 32012:1 32028:1 32039:2 32115:1 32118:1 32178:1 32214:1 32257:1 32263:2 32279:1 32310:2 32314:1 32321:1 32342:2 32381:1 32505:3 32510:1 32539:2 32543:1 32582:1 32596:1 32605:2 32628:1 32662:1 32676:2 32684:1 32686:1 32701:1 32727:1 32733:3 32735:1 32740:1 32755:1 32811:1 32821:4 32831:1 32891:1 32902:1 32903:1 32905:2 32921:1 32957:1 32966:1 32972:1 32973:1 33021:1
16 26:1 27:1 66:1 85:4 109:1 145:1 173:1 176:1 219:1 235:1 269:4 338:1 351:2 387:1 397:1 398:1 399:2 427:1 468:2 502:1 505:1 525:1 551:2 567:1 575:1 577:1 584:1 589:1 591:1 628:1 713:1 723:3 751:2 762:4 766:1 774:1 779:1 805:1 812:1 821:1 832:1 869:2 886:1 929:1 937:1 944:1 970:1 988:1 1000:1 1007:1 1051:1 1054:1 1069:1 1078:1 1081:1 1082:1 1114:1 1139:2 1143:1 1149:1 1180:2 1185:1 1202:1 1221:1 1250:1 1254:1 1288:1 1301:1 1341:1 1353:3 1359:1 1369:2 1377:2 1387:1 1388:2 1398:1 1412:1 1426:2 1466:1 1472:1 1487:1 1488:2 1489:1 1506:1 1512:1 1546:1 1560:1 1572:1 1586:1 1600:1 1633:1 1642:1 1676:2 1742:1 1760:2 1767:1 1773:1 1774:1 1776:1 1780:2 1802:1 1835:1 1839:2 1853:1 1867:1 1871:2 1879:2 1907:1 1914:1 1919:1 1924:1 1927:2 1941:1 1963:1 1966:2 1975:1 2018:1 2050:1 2053:1 2055:1 2058:1 2069:2 2097:1 2098:1 2122:1 2127:1 2139:1 2142:1 2143:1 2150:1 2174:1 2180:1 2187:1 2201:1 2211:1 2215:1 2226:1 2232:1 2234:4 2245:1 2262:1 2282:1 2317:1 2320:1 2323:1 2345:1 2354:2 2368:3 2369:1 2414:1 2439:1 2441:1 2444:2 2446:1 2475:1 2531:1 2566:1 2572:1 2631:2 2632:3 2637:1 2638:1 2640:1 2641:1 2643:3 2647:1 2651:1 2654:1 2660:4 2665:1 2668:3 2687:1 2712:1 2754:1 2755:1 2763:1 2782:1 2794:1 2800:1 2826:1 2845:1 2871:1 2883:1 2927:1 2944:1 3021:1 3023:1 3062:1 3082:4 3092:1 3098:1 3127:1 3130:1 3136:4 3150:1 3164:1 3177:1 3197:1 3237:1 3246:2 3252:1 3256:3 3314:4 3355:5 3363:6 3426:16 3435:1 3441:1 3457:1 3533:2 3542:1 3607:2 3613:1 3700:1 3710:2 3713:4 3739:4 3764:1 3823:3 3863:1 3900:1 3944:1 3959:1 3965:1 3975:3 3985:1 4003:1 4041:1 4049:1 4053:1 4076:1 4077:1 4089:2 4144:1 4150:1 4152:1 4161:1 4235:1 4245:1 4256:1 4270:1 4271:1 4297:1 4323:1 4325:16 4340:1 4347:1 4361:2 4364:3 4376:1 4377:9 4379:1 4381:3 4391:1 4405:3 4418:1 4419:2 4423:2 4425:1 4426:2 4438:1 4439:2 4442:1 4444:1 4491:3 4502:1 4507:1 4537:1 4541:1 4543:1 4544:1 4555:2 4567:2 4575:1 4587:1 4622:1 4630:1 4635:1 4643:1 4646:1 4655:1 4658:1 4674:1 4686:1 4813:1 4876:1 4879:1 4880:1 4924:1 4926:1 5010:5 5027:1 5090:1 5106:1 5120:2 5152:2 5176:1 5198:1 5205:1 5268:2 5269:1 5331:1 5367:1 5370:1 5381:1 5390:1 5433:2 5509:1 5510:1 5516:1 5545:1 5558:1 5640:1 5645:1 5659:10 5660:1 5699:1 5761:1 5784:1 5800:1 5802:1 5822:1 5823:4 5824:1 5828:1 5840:1 5841:9 5842:1 5844:1 5848:1 5880:1 5950:1 6081:2 6082:3 6089:5 6125:1 6142:1 6168:1 6169:9 6205:1 6255:1 6301:1 6305:1 6357:1 6371:1 6394:1 6403:1 6404:1 6462:1 6473:1 6480:1 6483:1 6507:1 6515:1 6518:1 6531:1 6568:2 6574:1 6611:1 6617:1 6640:1 6647:1 6672:1 6673:1 6678:1 6686:1 6728:1 6733:1 6753:1 6776:1 6777:1 6808:1 6826:1 6844:2 6845:1 6868:1 6870:1 6873:1 6959:1 7035:3 7045:1 7068:1 7074:1 7102:1 7139:1 7149:1 7157:1 7190:1 7196:1 7200:2 7202:1 7249:1 7254:2 7276:3 7278:1 7295:1 7300:1 7316:1 7386:1 7391:1 7394:1 7396:1 7397:1 7401:1 7403:2 7409:1 7410:2 7411:1 7413:1 7427:1 7451:1 7503:1 7509:1 7559:1 7579:2 7586:1 7613:1 7615:1 7681:1 7684:2 7710:5 7716:2 7722:1 7742:2 7764:1 7791:1 7805:1 7846:1 7869:1 7877:1 7879:1 7891:2 7900:1 7907:1 7915:2 7940:1 7987:1 7998:1 8005:1 8012:1 8026:2 8032:1 8091:1 8093:1 8137:1 8138:1 8215:1 8251:1 8255:4 8263:2 8289:1 8299:1 8320:1 8490:1 8507:1 8512:1 8526:3 8575:1 8577:1 8586:2 8604:1 8688:1 8770:1 8784:1 8791:1 8821:1 8830:1 8832:2 8850:1 8861:1 8890:1 8901:18 8902:1 8908:1 8920:4 8923:13 8929:1 8933:1 8943:1 8952:1 8978:3 9014:1 9034:1 9051:1 9059:1 9082:1 9085:1 9091:1 9153:4 9161:1 9206:1 9209:2 9212:1 9234:1 9251:1 9285:1 9304:1 9343:1 9362:1 9368:1 9370:1 9386:1 9405:1 9444:1 9448:1 9470:1 9484:7 9511:1 9525:1 9551:1 9589:1 9616:1 9630:2 9639:3 9664:1 9678:3 9687:1 9709:2 9715:2 9747:1 9748:1 9754:1 9765:1 9777:1 9792:1 9809:1 9836:1 9841:3 9859:1 9878:2 9880:1 9881:2 9882:1 9884:2 9885:2 9894:1 9897:2 9903:1 9919:1 9925:1 9934:1 9944:1 9945:1 9951:1 9959:1 9977:2 10002:2 10024:1 10044:1 10053:2 10056:1 10065:1 10067:1 10069:1 10088:1 10121:1 10128:2 10138:1 10139:1 10144:1 10150:1 10161:1 10162:1 10166:1 10204:1 10208:1 10209:1 10214:1 10219:1 10221:3 10252:1 10254:1 10257:3 10270:1 10295:1 10367:1 10377:1 10397:1 10399:1 10410:1 10412:1 10438:1 10441:1 10461:1 10554:1 10558:1 10565:1 10588:1 10615:1 10619:1 10634:1 10653:1 10671:1 10673:1 10701:1 10710:1 10768:1 10845:1 10846:1 10858:1 10862:1 10864:2 10879:1 10900:1 10903:1 10937:1 10939:1 10942:1 10947:1 10959:1 11009:9 11016:1 11039:1 11047:3 11056:2 11083:1 11104:2 11124:1 11154:9 11171:1 11198:1 11210:1 11225:1 11229:3 11249:1 11318:2 11319:1 11359:2 11363:1 11366:1 11368:1 11374:1 11382:1 11400:1 11417:1 11422:2 11464:2 11470:1 11489:1 11492:1 11496:1 11513:1 11551:1 11553:1 11580:5 11583:3 11595:1 11597:1 11697:2 11703:1 11728:1 11754:1 11761:1 11775:3 11789:1 11897:1 11914:3 11926:1 11955:1 11994:2 12043:1 12052:1 12075:1 12098:2 12117:2 12119:2 12121:1 12125:1 12128:1 12145:1 12197:1 12200:1 12211:3 12229:1 12241:1 12249:4 12316:1 12322:1 12345:1 12346:1 12347:1 12352:1 12396:1 12459:1 12476:1 12492:1 12498:1 12499:1 12512:1 12531:2 12534:3 12553:1 12556:1 12610:1 12623:2 12642:1 12664:2 12676:2 12706:1 12743:1 12807:1 12825:1 12850:1 12855:1 12863:1 12883:1 12893:1 12919:2 12953:1 12960:1 12974:2 12980:1 12981:1 12983:1 12990:1 12991:1 13014:1 13021:1 13057:1 13061:1 13063:3 13067:1 13100:1 13122:1 13125:1 13127:1 13135:1 13153:1 13176:1 13204:1 13207:1 13218:3 13252:2 13254:2 13297:1 13328:2 13341:1 13352:1 13354:1 13363:1 13366:1 13368:4 13369:1 13379:4 13382:1 13387:1 13395:1 13403:2 13428:1 13447:3 13454:1 13463:1 13507:1 13518:4 13536:1 13537:1 13576:1 13580:1 13590:3 13592:1 13607:1 13629:1 13690:1 13692:1 13717:1 13759:1 13766:1 13832:1 13847:1 13867:1 13872:1 13874:1 13878:1 13913:1 13914:1 13916:9 13923:4 13956:1 13962:1 13972:2 14021:1 14074:1 14082:5 14083:2 14098:1 14106:1 14167:1 14172:1 14207:1 14222:1 14228:1 14235:1 14292:1 14312:1 14326:1 14329:1 14369:1 14373:1 14382:1 14388:1 14441:1 14506:6 14519:1 14527:2 14530:1 14546:1 14565:2 14566:2 14592:1 14629:1 14660:1 14667:2 14693:1 14746:1 14748:1 14751:2 14785:1 14819:1 14870:1 14920:1 14948:1 14990:1 15002:2 15014:1 15017:1 15023:1 15044:1 15045:1 15080:1 15140:1 15146:1 15155:1 15156:3 15162:1 15164:1 15171:1 15178:1 15192:1 15198:1 15234:3 15250:1 15266:1 15280:1 15301:2 15317:1 15338:1 15355:1 15365:1 15380:1 15400:2 15420:1 15430:3 15441:1 15465:1 15486:1 15502:1 15503:1 15514:1 15529:1 15538:2 15576:1 15589:1 15597:1 15598:1 15599:2 15600:1 15602:1 15636:1 15659:1 15663:1 15684:1 15701:2 15706:1 15726:1 15739:3 15750:1 15797:1 15821:1 15822:1 15827:1 15851:1 15856:1 15857:1 15861:2 15891:1 15908:1 15918:1 15921:1 15938:2 15939:4 15950:1 15970:1 15977:3 15997:1 16035:2 16037:1 16043:1 16046:1 16051:1 16202:2 16220:1 16263:1 16279:1 16341:1 16393:1 16401:1 16412:3 16414:1 16416:1 16424:1 16442:1 16467:1 16483:1 16491:1 16495:1 16525:1 16561:1 16583:1 16612:1 16631:1 16640:1 16661:1 16675:1 16692:1 16718:1 16775:1 16828:1 16874:1 16939:1 16951:1 16970:2 17000:1 17005:2 17007:1 17010:1 17059:1 17098:2 17137:1 17163:1 17191:1 17194:1 17202:1 17207:1 17237:1 17255:1 17280:1 17353:2 17355:1 17360:1 17379:1 17380:1 17385:1 17433:1 17435:1 17441:1 17501:3 17512:2 17546:1 17591:1 17611:1 17633:1 17634:1 17662:2 17685:3 17687:2 17689:1 17722:1 17740:2 17763:1 17796:1 17829:2 17835:1 17844:3 17854:1 17864:1 17885:1 17889:1 17890:3 17892:1 17896:1 17900:1 17902:1 17913:1 17919:2 17968:1 17996:1 18012:1 18022:1 18024:2 18030:3 18073:1 18101:1 18146:1 18158:1 18175:1 18182:1 18187:3 18198:2 18199:1 18217:1 18222:1 18225:1 18263:9 18291:1 18300:1 18305:1 18324:2 18341:24 18361:2 18390:1 18418:1 18424:1 18427:1 18455:1 18467:1 18473:1 18474:1 18477:1 18482:2 18516:1 18518:1 18523:1 18530:1 18543:1 18544:1 18565:1 18604:1 18610:3 18648:2 18696:1 18797:1 18798:1 18808:1 18822:2 18826:1 18867:1 18916:1 18922:1 18946:2 18997:1 19000:1 19004:2 19016:1 19020:1 19027:1 19042:1 19048:7 19072:1 19084:1 19094:1 19136:1 19165:1 19167:1 19170:3 19177:1 19182:1 19185:1 19206:1 19232:1 19243:1 19245:1 19307:1 19374:1 19382:2 19434:1 19440:1 19449:1 19457:1 19461:1 19466:1 19469:2 19480:1 19490:1 19497:3 19501:1 19504:1 19542:1 19550:1 19564:1 19587:1 19595:1 19619:3 19640:1 19684:1 19685:1 19711:3 19718:1 19726:1 19730:2 19735:1 19737:1 19759:1 19761:1 19776:1 19789:1 19817:1 19840:1 19841:1 19926:2 19944:1 19956:1 19962:1 20017:2 20020:1 20037:5 20070:1 20103:1 20130:1 20131:1 20153:1 20160:1 20179:1 20191:1 20210:1 20216:1 20249:1 20255:2 20261:3 20265:1 20340:1 20382:2 20383:1 20420:1 20429:1 20450:1 20456:1 20474:2 20480:1 20488:1 20489:2 20507:1 20531:1 20532:1 20579:1 20585:1 20595:1 20621:2 20645:1 20649:1 20651:1 20655:3 20676:1 20677:1 20693:1 20749:1 20790:1 20792:5 20821:1 20865:1 20869:1 20884:1 20906:1 20922:1 20942:1 20946:3 20948:1 20965:2 20976:1 20980:1 21013:1 21020:1589 21046:1 21047:1 21054:1 21108:1 21136:3 21178:2 21201:2 21212:1 21239:1 21242:1 21268:3 21284:3 21287:1 21340:1 21384:3 21418:1 21442:2 21454:1 21474:1 21484:1 21490:1 21494:1 21511:1 21539:1 21551:1 21563:4 21660:1 21675:1 21779:1 21795:1 21797:1 21803:1 21810:1 21819:1 21832:2 21835:1 21836:2 21841:1 21867:6 21895:1 21896:6 21929:1 21930:1 21965:1 21970:1 21995:1 22000:1 22002:1 22004:1 22015:1 22029:1 22060:1 22068:1 22089:1 22101:1 22131:1 22136:1 22194:1 22244:1 22262:1 22264:7 22272:1 22308:1 22317:1 22369:1 22377:3 22399:1 22422:1 22444:1 22476:1 22478:1 22484:1 22485:1 22495:1 22534:1 22542:4 22547:1 22556:1 22561:1 22581:2 22610:1 22616:1 22624:1 22651:1 22676:1 22680:1 22687:2 22708:5 22745:1 22775:1 22800:7 22822:2 22825:1 22844:1 22845:1 22863:8 22881:1 22910:1 22922:1 22933:1 22945:1 22999:1 23024:2 23056:1 23105:1 23153:2 23166:1 23183:1 23185:1 23198:1 23242:1 23245:1 23265:1 23341:1 23369:1 23407:1 23439:1 23457:1 23490:3 23532:8 23546:3 23549:1 23550:1 23569:1 23574:1 23595:1 23653:2 23657:1 23681:1 23682:1 23711:3 23719:1 23722:2 23765:1 23803:1 23832:1 23836:1 23873:1 23882:1 23940:1 23944:1 23948:1 24003:1 24009:1 24065:2 24070:2 24073:1 24084:1 24100:1 24143:1 24154:2 24164:1 24195:1 24202:1 24216:1 24218:2 24221:1 24255:1 24271:1 24311:2 24328:1 24339:1 24341:1 24360:1 24363:5 24377:1 24396:1 24408:1 24427:1 24447:1 24472:1 24478:1 24488:2 24505:1 24542:1 24543:2 24556:2 24563:2 24567:1 24649:1 24659:1 24662:5 24670:1 24682:1 24700:1 24702:1 24703:2 24707:1 24714:1 24719:2 24732:1 24747:1 24774:1 24824:3 24825:1 24855:1 24861:1 24869:2 24872:1 24888:1 24894:1 24908:1 24923:1 24935:1 24979:9 24984:1 25005:1 25018:1 25021:1 25026:1 25033:1 25047:1 25057:1 25065:1 25071:2 25094:1 25101:1 25104:1 25110:2 25121:1 25125:1 25129:4 25148:2 25156:3 25168:2 25190:1 25206:1 25209:1 25218:1 25245:2 25252:1 25256:1 25275:1 25289:2 25303:3 25318:1 25328:1 25340:1 25368:1 25473:3 25485:1 25501:1 25526:1 25581:1 25588:1 25595:9 25598:2 25620:1 25634:1 25653:1 25655:1 25667:1 25683:1 25689:1 25695:2 25732:1 25755:5 25780:1 25788:1 25804:1 25828:2 25853:1 25871:1 25907:1 25928:1 25929:1 25936:1 26001:1 26015:1 26017:3 26024:1 26043:1 26044:1 26075:2 26094:1 26133:1 26135:2 26157:1 26160:1 26165:1 26174:2 26179:2 26184:1 26187:1 26230:1 26243:1 26254:1 26255:1 26277:3 26283:1 26309:1 26315:1 26319:2 26324:1 26352:1 26359:1 26360:1 26415:2 26424:9 26532:1 26534:1 26539:1 26605:1 26612:1 26636:1 26679:1 26694:1 26748:1 26751:1 26758:1 26794:2 26818:1 26880:1 26897:1 26924:2 26931:1 26936:1 27009:1 27014:1 27022:1 27072:1 27114:2 27122:1 27133:1 27225:1 27262:1 27303:5 27360:1 27377:1 27389:1 27398:2 27401:1 27419:1 27427:1 27437:1 27439:2 27451:1 27456:1 27489:1 27502:1 27512:1 27516:1 27522:1 27533:1 27569:1 27574:1 27575:1 27602:3 27612:1 27618:1 27620:1 27641:1 27676:1 27716:1 27753:1 27757:1 27769:1 27804:1 27813:1 27817:1 27846:1 27851:1 27881:1 27884:1 27917:2 27933:1 27957:1 27985:1 27989:1 27997:1 28007:1 28015:1 28021:1 28032:3 28068:2 28094:1 28132:1 28174:1 28242:1 28253:1 28255:1 28273:1 28327:2 28331:3 28335:1 28348:1 28414:1 28442:1 28503:1 28509:2 28512:2 28518:1 28540:1 28557:1 28563:2 28591:1 28602:1 28608:2 28609:1 28635:2 28641:3 28642:1 28652:1 28666:1 28671:1 28680:1 28697:2 28725:3 28728:1 28734:1 28753:2 28754:1 28778:1 28847:3 28870:1 28872:2 28902:1 28913:1 28945:2 28998:3 29029:1 29052:1 29060:2 29063:1 29085:1 29088:1 29104:1 29105:1 29120:1 29123:1 29146:1 29156:1 29161:1 29189:3 29195:1 29210:1 29219:1 29261:1 29272:1 29291:1 29316:1 29326:1 29334:1 29365:5 29374:1 29409:1 29417:2 29439:1 29472:2 29491:1 29518:1 29519:2 29543:1 29546:1 29564:1 29574:1 29653:4 29655:2 29675:2 29676:1 29677:4 29679:2 29732:2 29759:1 29771:1 29781:2 29797:1 29821:2 29842:1 29861:1 29882:1 29923:1 30051:1 30063:1 30121:1 30129:1 30221:1 30235:1 30294:1 30295:1 30334:1 30367:1 30393:2 30399:1 30415:1 30418:4 30451:1 30524:9 30525:1 30529:3 30531:1 30560:1 30643:1 30648:1 30651:1 30684:1 30706:1 30721:1 30724:1 30728:1 30738:1 30741:1 30745:1 30753:1 30788:1 30800:1 30818:1 30832:1 30846:1 30906:1 30958:1 30978:1 30997:1 30998:1 31088:3 31104:1 31132:1 31176:1 31200:1 31204:1 31207:1 31243:1 31259:1 31262:1 31302:1 31317:1 31359:1 31403:1 31477:1 31489:3 31493:1 31514:1 31541:1 31544:14 31545:2 31546:2 31549:1 31552:1 31555:1 31566:1 31586:1 31587:7 31597:1 31613:1 31644:1 31646:1 31651:1 31662:1 31681:1 31697:1 31702:2 31713:1 31759:1 31801:1 31802:1 31829:1 31854:1 31863:2 31901:1 31957:2 31959:1 31964:4 31969:1 31990:1 32000:1 32012:1 32028:1 32039:2 32115:1 32118:1 32175:1 32178:1 32214:1 32257:1 32263:3 32279:1 32310:2 32314:1 32321:1 32342:2 32381:1 32471:1 32505:3 32510:1 32539:2 32543:1 32582:1 32596:1 32605:2 32628:1 32662:1 32676:2 32684:1 32686:1 32701:1 32727:1 32733:3 32735:1 32740:1 32755:1 32811:1 32821:4 32831:1 32891:1 32902:1 32903:1 32905:2 32921:1 32957:1 32966:1 32972:1 32973:1 33021:1
16 26:1 27:1 66:1 85:4 109:1 145:1 173:1 176:1 219:1 235:1 269:4 338:1 351:2 387:1 397:1 398:1 399:2 427:1 468:2 502:1 505:1 525:1 551:2 567:1 575:1 577:1 584:1 589:1 591:1 628:1 713:1 723:3 751:2 757:1 762:4 766:1 774:1 779:1 805:1 812:1 821:1 832:1 869:2 886:1 929:1 937:1 944:1 970:1 988:1 1000:1 1007:1 1051:1 1054:1 1069:1 1078:1 1081:1 1082:1 1114:1 1139:2 1143:1 1149:1 1180:2 1185:1 1202:1 1221:1 1250:1 1254:1 1288:1 1301:1 1341:1 1353:3 1359:1 1369:2 1377:2 1387:1 1388:2 1398:1 1412:1 1426:3 1466:1 1469:1 1472:1 1487:1 1488:2 1489:1 1506:1 1512:1 1546:1 1560:1 1572:1 1586:1 1600:1 1633:1 1642:1 1676:2 1742:1 1760:2 1767:1 1773:1 1774:1 1776:1 1780:2 1802:1 1835:1 1839:2 1853:1 1867:1 1871:2 1879:2 1907:1 1914:1 1919:1 1924:1 1927:2 1941:1 1963:1 1966:2 1975:1 2018:1 2038:1 2050:1 2053:1 2055:1 2058:1 2069:2 2097:1 2098:1 2122:1 2127:1 2139:1 2142:1 2143:1 2150:1 2174:1 2180:1 2187:1 2201:1 2211:1 2215:1 2226:1 2232:1 2234:4 2245:1 2262:1 2282:1 2317:1 2320:1 2323:1 2345:1 2354:2 2368:3 2369:1 2414:1 2439:1 2441:1 2444:2 2446:1 2475:1 2531:1 2566:1 2572:1 2631:2 2632:3 2637:1 2638:1 2640:1 2641:1 2643:3 2647:1 2651:1 2654:1 2660:4 2665:1 2668:3 2687:1 2712:1 2754:1 2755:1 2763:1 2782:1 2790:1 2794:1 2800:1 2826:1 2845:1 2871:1 2883:1 2927:1 2944:1 3021:1 3023:1 3062:1 3082:4 3092:1 3098:1 3127:1 3130:1 3136:4 3150:1 3164:1 3173:1 3177:1 3197:1 3237:1 3246:2 3252:1 3256:3 3314:4 3355:5 3363:6 3426:16 3435:1 3441:1 3457:1 3533:2 3542:1 3607:2 3613:1 3639:1 3700:1 3710:2 3713:4 3739:4 3764:1 3823:3 3863:1 3900:1 3944:1 3959:1 3965:1 3975:3 3985:1 4003:1 4041:1 4049:1 4053:1 4076:1 4077:1 4089:2 4144:1 4150:1 4152:1 4161:1 4210:1 4235:1 4245:1 4256:1 4270:1 4271:1 4297:1 4323:1 4325:20 4340:1 4347:1 4361:2 4364:3 4376:1 4377:10 4379:1 4381:3 4391:1 4405:3 4418:1 4419:2 4423:2 4425:1 4426:2 4438:1 4439:2 4442:1 4444:1 4491:3 4502:1 4507:1 4537:1 4541:1 4543:1 4544:1 4555:2 4567:2 4575:1 4587:1 4622:1 4630:1 4633:1 4635:1 4643:1 4646:1 4655:1 4658:1 4674:1 4686:1 4813:1 4876:1 4879:1 4880:1 4924:1 4926:1 5010:5 5027:1 5090:1 5106:1 5120:2 5152:2 5176:1 5198:1 5205:1 5268:2 5269:1 5331:1 5367:1 5370:1 5381:1 5390:1 5433:2 5509:1 5510:1 5516:1 5545:1 5558:1 5640:1 5645:1 5659:10 5660:1 5699:1 5761:1 5784:1 5800:1 5802:1 5822:1 5823:4 5824:1 5828:1 5840:1 5841:11 5842:1 5844:1 5848:1 5880:1 5950:1 6081:2 6082:3 6089:5 6125:1 6142:1 6168:1 6169:11 6205:1 6255:1 6301:1 6305:1 6357:1 6371:1 6394:1 6403:1 6404:1 6462:1 6473:1 6480:1 6483:1 6507:1 6515:1 6518:1 6531:1 6568:2 6574:1 6611:1 6617:2 6640:1 6647:1 6672:1 6673:1 6678:1 6686:1 6728:1 6733:1 6753:1 6776:1 6777:1 6808:1 6826:1 6844:2 6845:1 6868:1 6870:2 6873:1 6959:1 7035:3 7045:1 7068:1 7074:1 7102:1 7139:1 7149:1 7157:1 7190:1 7196:1 7200:2 7202:1 7249:1 7254:2 7276:3 7278:1 7295:1 7300:1 7316:1 7321:1 7386:1 7390:1 7391:1 7394:1 7396:1 7397:1 7401:1 7403:2 7409:1 7410:2 7411:1 7413:1 7427:1 7451:1 7503:1 7509:1 7559:1 7579:2 7586:1 7613:1 7615:1 7681:1 7684:2 7710:5 7716:2 7722:1 7731:1 7742:2 7764:1 7791:1 7805:1 7846:1 7869:1 7877:2 7879:1 7891:2 7900:1 7907:1 7915:2 7940:1 7987:1 7998:1 8005:1 8012:1 8026:2 8032:1 8091:1 8093:1 8137:1 8138:1 8215:1 8251:1 8255:5 8263:2 8289:1 8299:1 8320:1 8490:1 8507:1 8512:1 8526:3 8575:1 8577:1 8586:2 8604:1 8688:1 8770:1 8784:1 8791:1 8821:1 8830:1 8832:2 8850:1 8861:1 8890:1 8898:1 8901:18 8902:1 8908:1 8920:4 8923:13 8929:1 8933:1 8943:1 8952:1 8978:3 9014:1 9034:1 9051:1 9059:1 9082:1 9085:1 9091:1 9153:4 9161:1 9206:1 9209:2 9212:1 9234:1 9251:1 9285:1 9304:1 9343:1 9362:1 9368:1 9370:2 9386:1 9405:1 9444:1 9448:1 9470:1 9484:7 9511:1 9525:1 9551:1 9589:1 9594:1 9616:1 9630:2 9639:3 9664:1 9678:3 9687:1 9709:2 9715:2 9734:1 9738:1 9747:1 9748:1 9754:1 9765:1 9777:1 9792:1 9809:1 9836:1 9841:3 9859:1 9878:2 9880:1 9881:2 9882:1 9884:2 9885:2 9894:1 9897:2 9899:1 9903:1 9919:1 9925:1 9934:1 9944:1 9945:1 9951:1 9959:1 9973:1 9977:2 10002:2 10024:1 10044:1 10053:3 10056:1 10065:1 10067:1 10069:1 10088:1 10121:1 10128:2 10138:1 10139:1 10144:1 10150:1 10161:2 10162:1 10166:1 10204:1 10208:1 10209:1 10214:1 10219:1 10221:3 10252:1 10254:1 10257:3 10270:1 10295:1 10367:1 10377:1 10397:1 10399:1 10410:1 10412:1 10438:1 10441:1 10461:1 10554:1 10558:1 10565:1 10588:2 10615:1 10619:1 10634:1 10653:1 10671:1 10673:1 10701:1 10710:1 10768:1 10845:1 10846:1 10857:1 10858:1 10862:1 10864:2 10879:1 10900:1 10903:1 10937:1 10939:1 10942:1 10947:1 10959:1 11009:11 11016:1 11039:1 11047:3 11056:2 11083:1 11104:2 11124:1 11154:9 11171:1 11198:1 11210:1 11225:1 11226:1 11229:3 11249:1 11318:2 11319:1 11359:2 11363:1 11366:1 11368:1 11374:1 11382:1 11400:1 11417:1 11422:3 11426:1 11429:1 11464:2 11470:1 11489:1 11492:1 11496:1 11513:1 11551:1 11553:1 11580:6 11583:3 11595:1 11597:1 11697:2 11703:1 11728:1 11754:1 11761:1 11775:3 11789:1 11897:1 11914:3 11921:1 11926:1 11955:1 11994:2 12043:1 12052:1 12075:1 12098:2 12117:2 12119:2 12121:1 12125:1 12128:1 12145:1 12197:1 12200:1 12211:3 12229:1 12241:1 12249:4 12316:1 12322:1 12345:1 12346:1 12347:1 12352:1 12396:1 12459:1 12476:1 12492:1 12498:1 12499:1 12512:2 12531:2 12534:3 12553:1 12556:1 12610:1 12623:2 12635:1 12642:1 12664:2 12676:2 12706:1 12743:1 12770:1 12807:1 12825:1 12850:1 12855:1 12863:1 12883:1 12893:1 12919:2 12953:1 12960:1 12974:2 12980:1 12981:1 12983:1 12990:1 12991:1 13014:1 13021:1 13057:1 13061:1 13063:3 13067:1 13100:1 13122:1 13125:1 13127:1 13135:1 13153:1 13176:1 13204:1 13207:1 13218:3 13252:2 13254:2 13297:1 13328:2 13341:1 13352:1 13354:1 13363:1 13366:1 13368:4 13369:1 13379:4 13382:1 13387:1 13395:1 13403:2 13428:1 13447:3 13454:1 13463:1 13507:1 13518:4 13536:1 13537:1 13576:1 13580:1 13590:3 13592:1 13607:1 13629:1 13690:1 13692:1 13717:1 13759:1 13766:1 13832:1 13847:1 13867:1 13872:1 13874:1 13878:1 13913:1 13914:1 13916:11 13923:4 13956:1 13962:1 13972:2 14021:1 14074:1 14082:5 14083:2 14098:1 14106:1 14167:1 14172:1 14207:1 14222:1 14228:1 14235:1 14292:1 14312:1 14326:1 14329:1 14369:1 14373:1 14382:1 14388:1 14441:1 14506:6 14519:1 14527:2 14530:1 14546:1 14565:2 14566:2 14592:1 14629:1 14660:1 14667:2 14693:1 14746:1 14748:1 14751:2 14785:1 14819:1 14870:1 14920:1 14948:1 14990:1 15002:2 15014:1 15017:1 15023:1 15044:1 15045:1 15080:1 15140:1 15146:1 15155:1 15156:3 15162:1 15164:1 15171:1 15178:2 15192:1 15198:1 15234:3 15250:1 15266:1 15280:1 15301:2 15317:1 15338:1 15355:1 15365:1 15380:1 15400:2 15420:1 15430:3 15441:1 15465:1 15480:1 15486:1 15502:1 15503:1 15514:1 15529:1 15538:2 15576:1 15589:1 15597:1 15598:1 15599:2 15600:1 15602:1 15636:1 15659:1 15663:1 15684:1 15701:2 15706:1 15726:1 15739:3 15750:1 15797:1 15821:1 15822:1 15827:1 15851:1 15856:1 15857:1 15861:3 15891:1 15908:1 15918:1 15921:1 15938:2 15939:4 15950:1 15970:1 15977:3 15997:1 16035:2 16037:1 16043:1 16046:1 16051:1 16202:2 16220:1 16263:1 16279:1 16341:1 16392:1 16393:1 16401:1 16402:1 16412:3 16414:1 16416:1 16424:1 16442:1 16467:1 16483:1 16491:1 16495:1 16525:1 16561:1 16583:1 16612:1 16631:1 16640:1 16661:1 16675:1 16692:1 16718:1 16775:1 16828:1 16874:1 16939:1 16951:1 16970:2 17000:1 17005:2 17007:1 17010:1 17059:1 17098:2 17137:1 17163:1 17191:1 17194:1 17202:1 17207:1 17237:1 17255:1 17280:1 17353:2 17355:1 17360:1 17379:1 17380:1 17385:1 17433:1 17435:1 17441:1 17501:3 17512:2 17546:1 17591:1 17611:1 17633:1 17634:1 17653:1 17662:2 17685:3 17687:2 17689:1 17722:1 17736:1 17740:2 17763:1 17796:1 17829:2 17835:1 17844:4 17854:1 17864:1 17885:1 17889:1 17890:3 17892:1 17896:1 17900:1 17901:1 17902:1 17913:1 17919:4 17968:2 17996:1 18012:1 18022:1 18024:2 18030:3 18073:1 18101:1 18146:1 18158:1 18175:1 18182:1 18187:3 18198:2 18199:1 18217:1 18222:1 18225:1 18263:11 18291:1 18300:1 18305:1 18324:2 18341:27 18361:2 18390:1 18418:1 18424:1 18427:1 18455:1 18467:1 18473:1 18474:1 18477:1 18482:2 18516:1 18518:1 18523:1 18530:1 18543:1 18544:1 18565:1 18604:1 18610:3 18648:2 18696:1 18797:1 18798:1 18808:1 18822:2 18826:1 18867:1 18916:1 18922:1 18946:2 18997:1 19000:1 19004:2 19016:1 19020:1 19027:1 19042:1 19048:7 19072:1 19084:1 19094:1 19136:1 19165:1 19167:1 19170:3 19177:1 19182:1 19185:1 19206:1 19232:1 19243:1 19245:1 19307:1 19374:1 19382:2 19434:1 19440:1 19449:1 19457:1 19461:1 19466:1 19469:2 19480:1 19490:1 19497:3 19501:1 19504:1 19542:1 19550:1 19564:1 19587:1 19595:1 19619:3 19640:1 19684:1 19685:1 19711:3 19718:1 19726:1 19730:2 19735:1 19737:1 19759:1 19761:1 19776:1 19789:1 19817:1 19840:1 19841:1 19926:2 19944:1 19956:1 19962:1 20017:2 20020:1 20037:5 20070:1 20103:1 20130:1 20131:1 20153:1 20160:1 20179:1 20191:1 20210:1 20216:1 20249:1 20255:2 20261:3 20265:1 20340:1 20382:2 20383:1 20420:1 20429:1 20450:1 20456:1 20474:2 20480:1 20488:1 20489:2 20507:1 20531:1 20532:1 20579:1 20585:1 20595:1 20621:2 20645:1 20649:1 20651:1 20655:3 20676:1 20677:1 20693:1 20749:1 20790:1 20792:5 20821:1 20865:1 20869:1 20884:1 20906:1 20922:1 20942:1 20946:3 20948:1 20965:2 20976:1 20980:2 21013:1 21020:1629 21046:1 21047:1 21054:1 21108:1 21136:3 21178:2 21201:2 21212:1 21239:1 21242:1 21268:3 21284:3 21287:1 21340:1 21384:3 21418:1 21442:2 21454:1 21474:1 21484:1 21490:1 21494:1 21511:1 21539:1 21551:1 21554:1 21563:4 21660:1 21675:1 21749:1 21779:1 21795:1 21797:1 21803:1 21810:1 21819:1 21832:2 21835:1 21836:3 21841:1 21857:1 21867:6 21895:1 21896:6 21929:1 21930:1 21965:1 21970:1 21995:1 22000:1 22002:1 22004:1 22015:1 22029:1 22060:1 22068:1 22089:1 22101:1 22131:1 22136:1 22194:1 22244:1 22262:1 22264:7 22272:1 22308:1 22317:1 22352:1 22369:1 22377:3 22399:1 22422:1 22444:1 22467:1 22476:1 22478:1 22484:1 22485:1 22495:1 22534:1 22542:4 22547:1 22556:1 22561:1 22581:2 22610:1 22616:1 22624:1 22651:1 22676:1 22680:1 22687:2 22708:5 22745:1 22775:1 22800:7 22822:2 22825:1 22844:1 22845:1 22863:8 22881:1 22910:1 22922:1 22933:1 22945:1 22999:1 23024:2 23056:1 23105:1 23153:2 23166:1 23183:1 23185:1 23198:1 23242:1 23245:1 23265:1 23341:1 23369:1 23407:1 23439:1 23457:1 23490:3 23532:8 23546:3 23549:1 23550:1 23569:1 23574:1 23595:1 23653:2 23657:1 23681:1 23682:1 23711:3 23719:1 23722:2 23765:1 23803:1 23832:1 23836:1 23873:1 23882:1 23886:1 23940:1 23944:1 23948:1 24003:1 24009:1 24065:4 24070:2 24073:1 24084:1 24100:1 24143:1 24154:2 24164:1 24181:1 24195:1 24201:1 24202:1 24216:1 24218:2 24221:1 24255:1 24271:1 24311:2 24328:1 24339:1 24341:1 24360:1 24363:5 24377:1 24396:1 24408:1 24427:1 24447:1 24472:1 24478:1 24488:2 24505:1 24542:1 24543:4 24556:2 24563:2 24567:1 24649:1 24659:1 24662:5 24670:1 24682:1 24700:1 24702:1 24703:2 24707:1 24714:1 24719:2 24732:1 24747:1 24774:1 24824:3 24825:1 24855:1 24861:1 24869:2 24872:1 24888:1 24894:1 24908:1 24923:1 24935:1 24979:11 24984:1 25005:1 25018:1 25021:1 25026:1 25033:1 25047:1 25057:1 25065:1 25071:2 25094:1 25101:1 25104:1 25110:2 25121:1 25125:1 25129:4 25148:2 25156:3 25168:2 25190:1 25206:1 25209:1 25218:1 25243:1 25245:2 25252:1 25256:1 25275:1 25289:2 25303:3 25318:1 25328:1 25340:1 25368:1 25473:3 25485:1 25501:1 25526:1 25581:1 25588:1 25595:9 25598:2 25620:1 25634:1 25653:1 25655:1 25667:1 25683:1 25689:1 25695:2 25732:1 25755:5 25780:1 25788:1 25804:1 25828:2 25853:1 25871:1 25907:1 25928:1 25929:1 25936:1 26001:1 26015:1 26017:3 26024:1 26043:1 26044:1 26075:2 26094:1 26133:1 26135:2 26157:1 26160:1 26165:1 26174:2 26179:2 26184:1 26187:1 26230:1 26243:1 26254:1 26255:1 26277:3 26283:1 26309:1 26315:1 26319:2 26324:1 26352:1 26359:1 26360:1 26415:2 26424:10 26532:1 26534:1 26539:1 26605:1 26612:1 26636:1 26679:1 26694:1 26748:1 26751:1 26758:1 26794:2 26818:1 26880:1 26897:1 26924:2 26931:1 26936:1 27009:1 27014:1 27022:1 27072:1 27112:1 27114:2 27122:1 27133:1 27225:1 27262:1 27303:5 27360:1 27377:1 27389:1 27398:2 27401:1 27419:1 27427:1 27437:1 27439:2 27451:1 27456:1 27489:1 27502:1 27512:1 27516:1 27522:1 27533:1 27569:1 27574:1 27575:1 27602:3 27612:1 27618:1 27620:1 27641:1 27676:1 27716:1 27753:1 27757:1 27769:1 27804:1 27813:1 27817:1 27846:1 27851:1 27881:1 27884:1 27917:2 27933:1 27957:1 27985:1 27989:1 27997:1 28007:1 28015:1 28021:1 28032:3 28068:2 28094:1 28132:1 28174:1 28242:1 28253:1 28255:1 28273:1 28327:2 28331:3 28335:1 28348:1 28414:1 28442:1 28503:1 28509:3 28512:2 28518:1 28540:1 28557:1 28563:2 28591:1 28602:1 28608:2 28609:1 28635:2 28641:3 28642:1 28652:1 28666:1 28671:1 28680:1 28697:2 28725:3 28728:1 28734:1 28739:1 28753:2 28754:1 28778:1 28811:1 28847:3 28870:1 28872:2 28902:1 28913:1 28945:2 28998:3 29029:1 29052:1 29060:2 29063:1 29085:1 29088:1 29104:1 29105:1 29120:1 29123:1 29146:1 29156:1 29161:1 29189:3 29195:1 29210:1 29219:1 29261:1 29272:1 29291:1 29316:1 29326:1 29334:1 29365:5 29374:1 29409:1 29417:2 29439:1 29472:2 29491:1 29518:1 29519:2 29543:1 29546:1 29564:1 29574:1 29653:4 29655:2 29675:2 29676:1 29677:4 29679:2 29732:2 29759:1 29771:1 29781:2 29797:1 29821:2 29842:1 29861:1 29882:1 29923:1 30051:1 30063:1 30121:1 30129:1 30221:1 30235:1 30294:1 30295:1 30334:1 30367:1 30371:1 30393:2 30399:1 30415:1 30418:4 30451:1 30524:10 30525:1 30529:3 30531:1 30560:1 30643:1 30648:1 30651:1 30684:1 30706:1 30721:1 30724:1 30728:1 30738:1 30741:1 30745:1 30753:1 30788:1 30800:1 30818:1 30832:1 30846:2 30906:1 30958:1 30978:1 30997:1 30998:1 31088:3 31104:1 31132:1 31176:1 31200:1 31204:1 31207:1 31243:1 31259:1 31262:1 31302:1 31317:1 31359:1 31403:1 31476:1 31477:1 31489:3 31493:1 31514:1 31541:1 31544:15 31545:2 31546:2 31549:1 31552:1 31555:1 31566:1 31586:1 31587:7 31597:1 31613:1 31644:1 31646:1 31651:1 31662:1 31681:1 31697:1 31702:2 31713:1 31759:1 31801:1 31802:1 31829:1 31854:1 31863:2 31901:1 31957:2 31959:1 31964:4 31969:1 31990:1 32000:1 32012:1 32028:1 32039:2 32110:1 32115:2 32118:1 32175:1 32178:1 32214:1 32257:1 32263:3 32279:1 32310:2 32314:1 32321:1 32342:2 32381:1 32445:1 32471:1 32505:3 32510:1 32539:2 32543:1 32582:1 32596:1 32605:2 32628:1 32662:1 32676:2 32684:1 32686:1 32701:1 32727:1 32733:3 32735:1 32740:1 32755:1 32811:1 32821:4 32831:1 32891:1 32902:1 32903:1 32905:2 32921:1 32957:1 32966:1 32972:1 32973:1 32977:1 33021:1
16 26:1 27:1 66:1 85:4 109:1 145:1 173:1 176:1 219:1 235:1 269:4 338:1 351:2 387:1 397:1 398:1 399:2 427:1 468:2 502:2 505:1 509:1 525:1 551:2 567:1 575:1 577:1 584:1 589:1 591:1 628:1 629:1 713:1 723:3 751:2 757:1 762:4 766:1 774:1 779:1 805:1 812:1 821:1 832:1 869:2 886:1 929:1 937:1 944:1 970:1 988:1 1000:1 1007:1 1051:1 1054:1 1069:1 1078:1 1081:1 1082:1 1114:1 1139:2 1143:1 1149:1 1180:2 1185:1 1202:1 1221:1 1250:1 1254:1 1288:1 1301:1 1341:1 1353:3 1359:1 1369:2 1377:2 1387:1 1388:2 1398:1 1412:1 1426:3 1457:1 1466:1 1469:1 1472:1 1487:1 1488:2 1489:2 1506:1 1512:1 1546:1 1560:1 1572:1 1586:1 1600:1 1633:1 1642:1 1676:2 1683:1 1742:1 1760:2 1767:1 1773:1 1774:1 1776:1 1780:2 1802:1 1835:1 1839:2 1853:1 1867:1 1871:2 1879:2 1907:1 1914:1 1919:1 1924:1 1927:2 1941:1 1953:1 1963:1 1966:3 1975:1 2018:1 2038:1 2050:1 2053:1 2055:1 2058:1 2069:2 2097:1 2098:1 2122:1 2127:1 2128:1 2139:1 2142:1 2143:1 2150:1 2174:1 2180:1 2187:1 2201:1 2211:1 2215:1 2226:1 2232:1 2234:4 2245:1 2262:1 2282:1 2317:1 2320:1 2323:1 2345:1 2354:2 2368:3 2369:1 2414:1 2439:1 2441:1 2444:2 2446:1 2475:1 2531:1 2566:1 2572:1 2631:2 2632:3 2637:1 2638:1 2640:1 2641:1 2643:3 2647:1 2651:1 2654:1 2660:4 2665:1 2668:3 2687:1 2712:1 2754:1 2755:1 2763:1 2782:1 2790:1 2794:1 2800:1 2826:1 2845:1 2871:1 2883:1 2927:1 2944:1 3021:1 3023:1 3062:1 3082:4 3092:1 3098:1 3127:1 3130:1 3136:4 3150:1 3164:1 3173:1 3177:1 3189:1 3197:1 3237:1 3246:2 3252:1 3256:3 3314:4 3355:5 3363:6 3426:16 3435:1 3441:1 3457:1 3533:2 3542:1 3607:2 3613:1 3639:1 3700:1 3710:2 3713:4 3739:5 3764:1 3823:3 3863:1 3900:1 3944:1 3959:1 3965:1 3975:3 3983:1 3985:1 4003:1 4041:1 4049:1 4053:1 4076:1 4077:1 4089:3 4144:1 4150:1 4152:1 4161:1 4210:1 4235:1 4245:2 4256:1 4270:1 4271:2 4297:1 4317:1 4323:1 4325:20 4340:1 4347:1 4361:2 4364:4 4376:2 4377:10 4379:1 4381:3 4391:1 4405:3 4418:1 4419:2 4423:2 4425:1 4426:2 4438:1 4439:2 4442:1 4444:1 4491:3 4502:1 4507:1 4537:1 4541:1 4543:1 4544:1 4555:2 4567:2 4575:1 4587:1 4622:1 4630:1 4633:1 4635:1 4643:1 4646:1 4655:1 4658:1 4674:1 4686:1 4813:1 4870:1 4876:1 4879:1 4880:1 4913:1 4924:1 4926:1 5010:6 5027:1 5090:1 5106:1 5120:2 5152:2 5176:1 5198:1 5205:1 5268:2 5269:1 5331:1 5367:1 5370:2 5381:1 5390:1 5410:1 5433:2 5509:1 5510:1 5516:1 5545:1 5558:1 5640:1 5645:1 5659:10 5660:1 5699:1 5761:1 5784:1 5797:1 5800:1 5802:1 5822:1 5823:4 5824:1 5828:1 5840:1 5841:11 5842:1 5844:1 5848:1 5880:1 5950:1 6081:2 6082:3 6089:5 6125:1 6142:1 6168:1 6169:11 6205:1 6255:1 6301:1 6305:1 6357:1 6371:1 6383:1 6394:1 6403:1 6404:1 6462:1 6473:1 6480:1 6483:1 6507:1 6515:1 6518:1 6531:1 6568:2 6574:1 6611:1 6617:2 6640:2 6647:1 6672:1 6673:1 6678:1 6686:1 6728:1 6733:1 6753:1 6776:1 6777:1 6808:1 6826:1 6844:2 6845:1 6868:1 6870:2 6873:1 6959:1 7035:4 7045:1 7068:1 7074:1 7102:1 7139:1 7149:1 7157:1 7190:1 7196:1 7200:2 7202:1 7249:1 7254:2 7276:3 7278:1 7295:1 7300:1 7316:1 7321:1 7386:1 7390:1 7391:1 7394:1 7396:1 7397:1 7401:1 7403:2 7409:1 7410:2 7411:1 7413:1 7427:1 7451:1 7503:1 7509:1 7559:1 7579:2 7586:1 7613:1 7615:1 7681:1 7684:2 7710:5 7716:2 7722:1 7731:1 7742:2 7764:1 7791:1 7805:1 7846:1 7869:1 7877:2 7879:1 7891:2 7900:1 7907:1 7915:2 7940:1 7987:1 7998:1 8005:1 8012:1 8026:2 8032:1 8091:1 8093:1 8137:1 8138:1 8215:1 8251:1 8255:5 8263:2 8289:1 8299:1 8320:1 8490:1 8507:1 8512:1 8526:3 8575:1 8577:1 8586:2 8604:1 8688:1 8770:1 8784:1 8791:1 8821:1 8830:1 8832:2 8850:1 8861:1 8890:1 8898:1 8901:18 8902:1 8908:1 8920:4 8923:13 8929:1 8933:1 8943:1 8952:1 8978:3 9014:1 9034:1 9051:1 9059:1 9082:1 9085:1 9091:1 9149:1 9153:4 9161:1 9206:1 9209:2 9212:1 9234:1 9251:1 9285:1 9304:1 9343:1 9362:1 9368:1 9370:2 9386:1 9405:1 9444:1 9448:1 9470:1 9484:7 9511:1 9525:1 9551:1 9589:1 9594:1 9616:1 9630:2 9639:3 9664:1 9672:1 9678:3 9687:1 9709:2 9715:2 9734:1 9738:1 9747:1 9748:1 9754:2 9765:1 9777:1 9778:1 9792:1 9809:1 9829:1 9836:1 9841:3 9859:1 9878:2 9880:1 9881:2 9882:1 9884:2 9885:2 9894:1 9897:2 9899:1 9903:1 9919:1 9925:1 9934:1 9944:1 9945:1 9951:1 9959:1 9973:1 9977:2 10002:2 10024:1 10044:1 10053:3 10056:1 10065:1 10067:1 10069:1 10088:1 10121:1 10128:2 10138:1 10139:1 10144:1 10150:1 10161:2 10162:1 10166:1 10204:1 10208:1 10209:2 10214:1 10219:1 10221:3 10229:1 10252:1 10254:1 10257:3 10270:1 10295:1 10367:1 10377:1 10397:1 10399:1 10410:1 10412:1 10438:1 10441:1 10461:1 10520:1 10554:1 10558:1 10565:1 10588:2 10615:1 10619:1 10634:1 10653:1 10671:1 10673:1 10701:1 10710:1 10768:1 10845:1 10846:1 10851:1 10857:1 10858:1 10862:1 10864:2 10879:1 10900:1 10903:1 10937:1 10939:1 10942:1 10947:1 10959:1 11009:11 11016:1 11039:1 11047:3 11056:2 11083:1 11104:2 11124:1 11154:9 11171:1 11198:1 11210:1 11225:1 11226:1 11229:3 11249:1 11318:2 11319:1 11359:3 11363:1 11366:1 11368:1 11374:1 11382:1 11400:1 11417:1 11422:3 11426:1 11429:1 11464:2 11470:1 11489:1 11492:2 11496:1 11513:1 11551:1 11553:1 11580:6 11583:3 11595:1 11597:1 11697:2 11703:1 11728:1 11754:1 11761:1 11775:3 11789:1 11897:1 11914:3 11921:1 11926:1 11955:1 11967:1 11994:2 12043:1 12052:1 12075:1 12098:4 12117:2 12119:2 12121:1 12125:1 12128:1 12145:1 12197:1 12200:1 12211:3 12229:1 12241:1 12249:4 12316:1 12322:1 12345:1 12346:1 12347:1 12352:1 12396:1 12459:1 12476:1 12492:1 12498:2 12499:1 12512:2 12531:2 12534:3 12553:1 12556:1 12610:1 12623:2 12635:1 12642:1 12664:2 12676:2 12706:1 12743:1 12770:1 12807:1 12825:1 12850:1 12855:1 12863:1 12883:1 12893:1 12919:2 12953:1 12960:1 12974:2 12980:1 12981:1 12983:1 12990:1 12991:1 13014:1 13021:1 13057:1 13061:1 13063:3 13067:1 13100:1 13122:1 13125:1 13127:1 13135:1 13138:1 13153:1 13176:1 13204:1 13207:1 13218:3 13234:1 13252:2 13254:2 13297:1 13327:1 13328:2 13341:1 13352:1 13354:1 13363:1 13366:1 13368:4 13369:1 13379:4 13382:1 13387:1 13395:1 13403:2 13428:2 13447:3 13454:1 13463:1 13507:1 13518:4 13536:1 13537:1 13576:1 13580:1 13590:3 13592:1 13607:1 13629:1 13690:1 13692:1 13717:1 13759:1 13766:1 13832:1 13847:1 13867:1 13872:1 13874:1 13878:1 13913:2 13914:2 13916:11 13923:4 13956:1 13962:1 13972:2 14021:1 14074:1 14082:5 14083:2 14098:1 14106:1 14167:1 14172:1 14207:1 14222:1 14228:1 14235:1 14292:1 14312:1 14326:1 14329:1 14369:1 14373:1 14382:1 14388:1 14441:1 14506:6 14519:1 14523:1 14527:2 14530:1 14546:1 14565:2 14566:2 14592:1 14629:1 14660:1 14667:2 14693:1 14705:1 14746:1 14748:1 14751:2 14785:1 14819:1 14870:1 14920:1 14948:1 14990:1 15002:2 15014:1 15017:1 15023:1 15044:1 15045:1 15080:1 15086:1 15088:1 15140:1 15146:1 15155:1 15156:3 15162:1 15164:1 15171:1 15178:2 15192:1 15198:1 15204:1 15234:3 15250:1 15266:1 15280:1 15301:2 15317:1 15338:1 15355:1 15365:1 15380:1 15400:3 15420:1 15430:3 15441:1 15465:1 15480:1 15486:1 15502:1 15503:1 15514:1 15529:1 15538:2 15576:1 15589:1 15597:1 15598:1 15599:2 15600:1 15602:1 15636:1 15659:1 15663:1 15684:1 15688:1 15701:2 15706:1 15726:1 15739:4 15750:1 15797:1 15821:1 15822:1 15827:1 15851:1 15856:1 15857:1 15861:3 15891:1 15908:1 15918:1 15921:1 15934:1 15938:2 15939:4 15950:1 15970:1 15977:3 15997:1 16035:2 16037:1 16043:1 16046:1 16051:1 16202:2 16220:1 16263:1 16279:1 16341:1 16392:1 16393:1 16401:1 16402:1 16412:3 16414:1 16416:1 16424:1 16442:1 16467:1 16483:1 16491:1 16495:1 16525:1 16561:1 16583:1 16612:1 16631:1 16640:1 16661:1 16675:1 16692:1 16718:1 16775:1 16828:1 16874:1 16939:1 16951:1 16970:2 17000:2 17005:2 17007:1 17010:1 17012:1 17059:1 17098:2 17137:1 17163:1 17191:1 17194:1 17202:1 17207:1 17237:1 17246:1 17255:1 17280:1 17347:1 17353:2 17355:1 17360:1 17379:1 17380:1 17385:1 17433:1 17435:1 17441:1 17501:3 17512:2 17546:1 17591:1 17611:1 17633:1 17634:1 17653:1 17662:2 17685:3 17687:2 17689:1 17722:1 17736:1 17740:2 17763:1 17796:1 17829:2 17835:1 17844:4 17854:1 17864:1 17885:1 17889:1 17890:3 17892:1 17896:1 17900:1 17901:1 17902:1 17913:2 17919:4 17968:2 17996:1 18012:1 18022:1 18024:2 18030:3 18073:1 18101:1 18146:1 18158:1 18175:1 18182:1 18187:3 18198:2 18199:1 18217:1 18222:1 18225:1 18263:11 18291:1 18300:1 18305:1 18324:2 18341:28 18361:3 18390:1 18418:1 18424:1 18427:1 18455:1 18467:1 18473:1 18474:1 18477:1 18482:2 18516:1 18518:1 18523:1 18530:1 18543:1 18544:1 18565:1 18604:1 18610:3 18648:2 18696:1 18797:1 18798:1 18808:1 18822:2 18826:1 18867:1 18916:1 18922:1 18946:2 18997:1 19000:1 19004:2 19016:1 19020:1 19027:1 19042:1 19048:7 19072:1 19084:1 19094:1 19136:1 19143:1 19165:1 19167:1 19170:3 19177:1 19179:1 19182:1 19185:1 19206:1 19232:1 19243:1 19245:1 19307:1 19374:1 19382:2 19407:1 19434:1 19440:1 19449:1 19457:1 19461:1 19466:1 19469:2 19480:1 19490:1 19497:3 19501:1 19504:1 19542:1 19550:1 19564:1 19587:1 19595:1 19619:3 19640:1 19684:1 19685:1 19711:3 19718:1 19726:1 19730:2 19735:1 19737:1 19759:1 19761:1 19776:1 19789:1 19817:1 19840:1 19841:1 19926:2 19936:1 19944:1 19956:1 19962:1 20017:2 20020:1 20037:6 20070:1 20103:1 20130:1 20131:1 20153:1 20160:1 20179:1 20191:1 20210:1 20216:1 20249:1 20255:2 20261:3 20265:1 20340:1 20382:2 20383:1 20420:1 20429:1 20450:1 20456:2 20474:2 20480:1 20488:1 20489:2 20507:1 20531:1 20532:2 20579:1 20585:1 20595:1 20621:2 20645:1 20649:1 20651:1 20655:3 20676:1 20677:1 20693:1 20749:1 20790:1 20792:5 20821:1 20860:1 20865:1 20869:1 20884:1 20906:1 20922:1 20942:1 20946:3 20948:1 20965:2 20976:1 20980:2 21013:1 21020:1675 21046:1 21047:1 21054:1 21108:1 21136:3 21178:2 21201:2 21212:1 21239:1 21242:1 21268:3 21284:3 21287:1 21340:1 21384:3 21418:1 21442:2 21454:1 21463:1 21474:1 21484:1 21490:1 21494:1 21511:1 21539:1 21551:1 21554:1 21563:4 21660:1 21675:1 21678:1 21749:1 21779:1 21795:1 21797:1 21803:1 21810:1 21819:1 21832:2 21835:1 21836:3 21841:1 21857:1 21867:6 21895:1 21896:7 21929:1 21930:1 21965:1 21970:1 21995:1 22000:1 22002:1 22004:1 22015:1 22029:1 22060:1 22068:1 22089:1 22101:1 22131:1 22136:1 22194:1 22244:1 22262:1 22264:7 22272:1 22308:1 22317:1 22352:1 22369:1 22377:3 22399:1 22422:1 22444:1 22467:1 22476:1 22478:1 22484:1 22485:1 22495:1 22534:1 22542:4 22547:1 22556:1 22561:1 22581:2 22610:1 22616:1 22624:1 22651:1 22676:1 22680:1 22687:2 22708:5 22745:1 22775:1 22800:7 22822:2 22825:1 22844:1 22845:1 22863:8 22881:1 22910:1 22922:1 22933:1 22945:1 22999:1 23024:2 23056:1 23105:1 23153:2 23166:1 23183:1 23185:1 23198:1 23242:1 23245:1 23265:1 23341:1 23369:1 23407:1 23439:1 23457:1 23490:3 23532:8 23546:3 23549:1 23550:1 23569:3 23574:1 23595:1 23638:1 23653:2 23657:1 23673:1 23681:1 23682:1 23711:4 23719:1 23722:2 23765:1 23803:1 23808:1 23832:1 23836:1 23873:1 23882:1 23886:1 23940:1 23944:1 23948:1 24003:1 24009:1 24065:4 24070:2 24073:1 24084:1 24100:1 24143:1 24154:2 24164:1 24181:1 24195:1 24201:1 24202:1 24216:1 24218:2 24221:1 24255:1 24271:1 24311:2 24328:1 24339:1 24341:1 24360:1 24363:6 24377:1 24396:1 24408:1 24427:1 24447:1 24472:1 24478:1 24488:2 24505:1 24542:1 24543:4 24556:2 24563:2 24567:1 24649:1 24659:1 24662:5 24670:1 24682:1 24700:1 24702:1 24703:2 24707:1 24714:1 24719:2 24732:1 24747:1 24774:1 24824:3 24825:1 24855:1 24861:1 24869:2 24872:1 24888:1 24894:1 24908:1 24923:1 24935:1 24979:11 24980:1 24984:1 25005:1 25018:1 25021:1 25026:1 25033:1 25047:1 25057:1 25065:1 25071:2 25094:1 25101:1 25104:1 25110:2 25121:2 25125:1 25126:1 25129:4 25148:2 25156:3 25168:2 25190:1 25206:1 25209:1 25218:1 25243:1 25245:2 25252:1 25256:1 25275:1 25289:2 25303:3 25318:1 25328:1 25340:1 25368:1 25473:3 25485:1 25501:2 25526:1 25539:1 25581:1 25588:1 25595:9 25598:2 25620:1 25634:1 25653:1 25655:1 25667:1 25683:1 25689:1 25695:2 25732:1 25755:5 25780:1 25788:1 25804:1 25828:2 25853:1 25871:1 25907:1 25928:1 25929:1 25936:1 26001:1 26015:1 26017:3 26024:1 26043:1 26044:1 26075:2 26094:1 26133:1 26135:2 26157:1 26160:1 26165:1 26174:2 26179:2 26184:1 26187:1 26230:1 26243:1 26254:1 26255:1 26277:3 26283:1 26309:1 26315:1 26319:2 26324:1 26352:1 26359:1 26360:1 26415:2 26424:10 26532:1 26534:1 26539:1 26605:1 26612:1 26636:1 26679:1 26694:1 26748:1 26751:2 26758:1 26794:2 26818:1 26880:1 26897:1 26924:2 26931:1 26936:1 26938:1 27009:1 27014:1 27022:1 27072:1 27112:1 27114:2 27122:1 27133:1 27141:1 27225:1 27262:1 27303:5 27360:1 27377:1 27389:1 27397:1 27398:2 27401:1 27419:1 27427:1 27437:1 27439:2 27451:1 27456:1 27488:1 27489:1 27502:1 27512:1 27516:1 27522:1 27533:1 27569:1 27574:1 27575:1 27602:3 27612:1 27618:1 27620:1 27641:1 27676:1 27716:1 27727:1 27728:1 27753:1 27757:1 27763:1 27769:1 27804:1 27813:1 27817:1 27846:1 27851:1 27881:1 27884:1 27917:2 27933:1 27957:1 27985:1 27989:1 27997:1 28007:1 28015:1 28021:1 28032:3 28068:2 28094:1 28132:1 28145:1 28174:1 28242:1 28253:1 28255:1 28273:1 28327:2 28331:3 28335:1 28348:1 28414:1 28442:1 28503:1 28509:3 28512:3 28518:1 28540:1 28557:1 28563:2 28591:1 28602:1 28608:2 28609:1 28635:2 28641:4 28642:1 28652:1 28666:1 28671:1 28680:1 28697:2 28725:3 28728:1 28734:1 28739:1 28753:2 28754:1 28778:1 28811:1 28847:3 28870:1 28872:2 28902:1 28913:1 28945:2 28998:3 29029:1 29052:1 29060:2 29063:1 29085:1 29088:2 29104:1 29105:1 29120:1 29123:1 29146:1 29156:1 29161:1 29189:3 29195:1 29210:1 29219:1 29261:1 29272:1 29291:1 29316:1 29326:1 29334:1 29365:5 29374:1 29409:1 29417:2 29439:1 29472:2 29491:1 29503:1 29518:1 29519:2 29543:1 29546:1 29564:1 29574:1 29653:4 29655:2 29675:2 29676:1 29677:4 29679:2 29732:2 29759:1 29771:1 29781:2 29797:1 29821:2 29842:1 29861:1 29882:1 29923:1 30051:1 30063:1 30121:1 30129:1 30221:1 30235:1 30294:1 30295:1 30334:1 30367:1 30371:1 30393:2 30399:1 30415:1 30418:4 30451:1 30524:10 30525:1 30529:3 30531:1 30560:1 30643:1 30648:2 30651:1 30684:1 30706:1 30719:1 30721:1 30724:1 30728:1 30738:1 30739:1 30741:1 30745:1 30753:1 30788:2 30800:1 30818:1 30832:1 30846:2 30906:1 30958:1 30978:1 30997:1 30998:1 31088:3 31104:1 31132:1 31176:1 31200:1 31204:1 31207:1 31243:1 31259:1 31262:1 31302:1 31317:1 31359:1 31403:1 31476:1 31477:1 31489:3 31493:1 31514:1 31541:1 31544:15 31545:2 31546:2 31549:1 31552:1 31555:1 31566:1 31586:1 31587:7 31597:1 31603:1 31613:1 31644:1 31646:1 31651:2 31662:1 31681:1 31697:1 31702:2 31713:1 31759:2 31801:1 31802:1 31829:1 31854:1 31863:2 31901:1 31957:2 31959:1 31964:4 31969:1 31990:1 31994:1 32000:1 32012:1 32028:1 32039:2 32110:1 32115:2 32118:1 32163:1 32175:1 32178:1 32214:1 32257:1 32263:3 32279:1 32310:2 32314:1 32321:1 32342:2 32381:1 32445:1 32471:1 32505:3 32510:1 32539:2 32543:1 32582:1 32590:1 32596:1 32605:2 32628:1 32662:1 32676:2 32684:1 32686:1 32701:1 32713:1 32727:1 32733:3 32735:1 32740:1 32755:1 32811:1 32821:4 32831:1 32891:1 32902:1 32903:1 32905:2 32921:1 32957:1 32966:1 32972:1 32973:1 32977:1 33021:1
16 26:1 27:1 66:1 85:4 109:1 145:1 173:1 176:1 219:1 235:1 269:4 338:1 351:2 387:1 397:2 398:1 399:2 427:1 468:2 502:2 505:1 509:1 525:1 551:2 567:1 575:1 577:1 581:1 584:1 589:1 591:1 628:1 629:1 713:1 723:3 751:2 757:1 762:4 766:1 774:1 779:1 805:1 812:1 821:1 832:1 869:2 886:1 929:1 937:1 944:1 970:1 988:1 1000:1 1007:1 1051:1 1054:1 1069:1 1078:1 1081:1 1082:1 1114:1 1139:2 1143:1 1149:1 1180:2 1185:1 1202:1 1221:1 1250:1 1254:1 1288:1 1301:1 1341:1 1353:3 1359:1 1369:2 1377:2 1387:1 1388:2 1398:1 1412:1 1426:3 1457:1 1466:1 1469:1 1472:1 1487:1 1488:2 1489:2 1506:1 1512:1 1546:1 1560:1 1572:1 1586:1 1600:1 1633:1 1642:1 1676:3 1683:1 1742:1 1760:2 1767:1 1773:1 1774:1 1775:1 1776:1 1780:2 1802:1 1835:1 1839:2 1853:1 1867:1 1871:2 1879:2 1907:1 1914:1 1919:1 1924:1 1927:2 1941:1 1953:1 1963:2 1966:3 1975:1 2018:1 2038:1 2050:1 2053:1 2055:1 2058:1 2069:2 2097:1 2098:1 2122:1 2127:1 2128:1 2139:1 2142:1 2143:1 2150:1 2174:1 2180:1 2187:1 2201:1 2211:1 2215:1 2226:1 2232:1 2234:4 2245:1 2262:1 2282:1 2317:1 2320:1 2323:1 2345:1 2354:2 2368:3 2369:1 2407:1 2414:1 2439:1 2441:1 2444:2 2446:1 2475:1 2501:2 2531:1 2566:1 2572:1 2630:1 2631:2 2632:3 2637:1 2638:1 2640:1 2641:1 2643:3 2647:1 2651:1 2654:1 2660:4 2665:1 2668:5 2687:1 2712:1 2754:1 2755:1 2763:1 2782:1 2790:1 2794:1 2800:1 2826:1 2845:3 2871:1 2883:1 2927:1 2944:1 3021:1 3023:1 3062:2 3082:4 3092:1 3098:3 3127:1 3130:1 3136:5 3150:1 3164:1 3173:1 3177:1 3189:1 3197:1 3237:1 3246:2 3252:1 3256:4 3314:4 3355:5 3363:6 3426:17 3435:1 3441:1 3457:1 3533:2 3542:1 3607:2 3613:1 3639:1 3700:1 3710:2 3713:4 3739:6 3764:1 3773:1 3823:3 3863:1 3900:1 3918:1 3944:1 3959:1 3965:1 3975:3 3983:2 3985:1 4003:1 4041:1 4049:1 4053:1 4076:1 4077:1 4089:3 4144:1 4150:1 4152:1 4161:1 4210:1 4235:1 4245:2 4256:1 4270:1 4271:2 4297:1 4317:1 4323:1 4325:22 4340:1 4347:1 4361:2 4364:6 4376:2 4377:12 4379:1 4381:3 4391:1 4405:3 4418:1 4419:2 4423:2 4425:1 4426:2 4438:1 4439:2 4442:1 4444:1 4490:1 4491:3 4502:1 4507:1 4537:1 4541:1 4543:1 4544:2 4555:2 4567:2 4575:1 4587:1 4622:1 4630:1 4633:1 4635:1 4643:1 4646:1 4652:1 4655:1 4658:1 4674:1 4678:1 4686:1 4813:1 4870:1 4876:1 4879:1 4880:1 4913:1 4924:1 4926:1 5010:8 5027:1 5090:1 5098:1 5106:2 5120:2 5152:3 5176:1 5198:1 5205:1 5268:2 5269:1 5331:1 5367:1 5370:2 5381:1 5390:1 5410:1 5433:2 5509:1 5510:1 5516:1 5545:2 5558:1 5640:1 5645:1 5659:10 5660:1 5699:1 5761:1 5784:1 5797:2 5800:1 5802:1 5822:1 5823:5 5824:1 5828:1 5831:1 5840:1 5841:12 5842:1 5844:1 5848:1 5880:1 5950:1 6081:2 6082:3 6089:5 6125:1 6142:1 6168:1 6169:12 6205:1 6255:1 6301:1 6305:1 6357:1 6371:1 6383:1 6394:1 6403:1 6404:1 6462:1 6473:1 6480:1 6483:1 6507:1 6515:1 6518:1 6531:1 6568:2 6574:1 6611:1 6617:2 6640:2 6647:1 6672:1 6673:1 6678:1 6686:1 6728:1 6733:1 6753:1 6776:1 6777:1 6808:1 6826:1 6844:2 6845:1 6868:1 6870:2 6873:1 6959:1 7035:4 7045:1 7068:1 7074:1 7102:1 7139:1 7149:1 7157:1 7190:1 7196:1 7200:2 7202:2 7249:1 7254:2 7276:3 7278:1 7295:1 7300:1 7316:1 7321:1 7382:1 7386:1 7390:1 7391:1 7394:1 7396:1 7397:1 7401:1 7403:3 7409:1 7410:2 7411:1 7413:1 7427:1 7451:1 7503:1 7509:1 7553:1 7559:1 7579:2 7586:1 7613:1 7615:1 7681:1 7684:2 7710:5 7716:2 7722:1 7731:1 7742:2 7764:1 7791:1 7805:1 7846:1 7869:1 7877:2 7879:1 7891:2 7900:1 7907:1 7915:2 7940:1 7987:1 7998:1 8005:1 8012:1 8026:2 8032:1 8091:1 8093:1 8137:1 8138:1 8215:1 8251:1 8255:5 8263:2 8289:1 8299:1 8320:1 8490:1 8507:1 8512:1 8526:3 8575:1 8577:1 8586:2 8604:1 8688:1 8770:1 8784:1 8791:1 8821:1 8830:1 8832:2 8850:1 8861:1 8890:1 8898:1 8901:21 8902:1 8908:1 8920:4 8923:14 8929:1 8933:1 8943:1 8952:1 8978:3 9014:1 9034:1 9051:1 9059:1 9082:1 9085:1 9091:1 9149:1 9153:4 9161:1 9206:1 9209:2 9212:1 9234:1 9251:1 9285:1 9304:1 9343:1 9362:1 9368:1 9370:2 9386:1 9405:1 9444:1 9448:1 9470:1 9484:8 9511:1 9524:1 9525:1 9551:2 9589:1 9594:1 9616:1 9630:2 9639:3 9664:1 9672:1 9678:3 9687:1 9709:2 9715:2 9732:1 9734:1 9738:1 9747:1 9748:1 9754:2 9765:1 9777:1 9778:2 9792:1 9809:1 9829:1 9836:1 9841:3 9859:1 9878:2 9880:1 9881:2 9882:1 9884:2 9885:2 9894:1 9897:2 9899:1 9903:1 9919:1 9925:1 9934:2 9944:1 9945:1 9951:1 9959:1 9973:1 9977:2 10002:2 10024:2 10044:1 10053:3 10056:1 10065:1 10067:1 10069:1 10088:1 10092:1 10121:1 10128:2 10138:1 10139:1 10144:1 10150:2 10161:2 10162:1 10166:1 10204:1 10208:1 10209:2 10214:1 10219:1 10221:3 10229:1 10252:1 10254:1 10257:3 10270:1 10295:1 10367:1 10377:1 10397:1 10399:1 10410:1 10412:1 10438:1 10441:1 10461:1 10520:1 10554:1 10558:1 10565:1 10588:2 10615:1 10619:1 10627:1 10634:1 10653:1 10671:1 10673:1 10701:1 10710:1 10768:1 10845:1 10846:1 10851:1 10857:1 10858:1 10862:1 10864:2 10879:1 10900:1 10903:1 10937:1 10939:1 10942:1 10947:1 10959:1 11009:12 11016:1 11039:1 11047:3 11056:2 11083:1 11104:2 11124:1 11154:9 11171:1 11198:1 11210:2 11225:1 11226:1 11229:3 11249:1 11318:3 11319:1 11359:5 11363:1 11366:2 11368:1 11374:1 11382:1 11400:1 11417:1 11422:3 11426:1 11429:1 11464:3 11470:1 11489:1 11492:2 11496:1 11513:1 11551:1 11553:1 11580:7 11583:3 11595:1 11597:1 11697:2 11703:1 11728:1 11754:1 11761:1 11775:3 11789:1 11897:1 11914:3 11921:1 11926:1 11955:1 11967:1 11994:2 12001:2 12043:1 12052:2 12075:1 12098:5 12117:2 12119:3 12121:1 12125:1 12128:1 12145:1 12174:1 12197:1 12200:1 12211:3 12229:1 12241:1 12249:4 12314:1 12316:1 12322:1 12345:1 12346:1 12347:1 12352:1 12396:1 12459:1 12476:1 12492:1 12498:2 12499:1 12512:2 12531:3 12534:3 12553:1 12556:1 12596:1 12610:1 12623:2 12635:1 12642:1 12664:2 12676:2 12706:1 12743:1 12770:1 12807:1 12825:1 12850:1 12855:1 12863:1 12883:1 12893:1 12919:2 12953:1 12960:1 12974:2 12980:1 12981:1 12983:1 12990:1 12991:1 13014:1 13021:1 13057:1 13061:1 13063:3 13067:1 13100:1 13122:1 13125:1 13127:1 13135:1 13138:1 13153:1 13176:1 13204:1 13207:1 13218:3 13234:2 13252:2 13254:2 13297:1 13327:1 13328:2 13341:1 13352:1 13354:1 13363:1 13366:1 13368:4 13369:1 13379:4 13382:1 13387:1 13395:1 13403:2 13428:2 13447:3 13454:1 13463:1 13507:1 13518:4 13536:1 13537:1 13576:1 13580:1 13590:3 13592:1 13607:1 13629:1 13645:1 13690:1 13692:1 13717:1 13759:1 13766:1 13832:1 13847:1 13867:1 13872:1 13874:1 13878:1 13913:2 13914:2 13916:12 13923:4 13956:1 13962:1 13972:2 14021:1 14074:1 14082:5 14083:2 14098:1 14106:1 14167:1 14172:1 14198:1 14207:1 14219:1 14222:1 14228:1 14235:1 14292:1 14312:1 14326:1 14329:1 14369:1 14373:1 14382:1 14388:1 14441:1 14506:6 14519:1 14523:1 14527:2 14530:1 14546:1 14565:2 14566:3 14592:1 14629:1 14660:1 14667:2 14693:1 14705:1 14746:1 14748:1 14751:2 14785:1 14819:1 14870:1 14920:1 14948:1 14990:1 15002:2 15014:1 15017:1 15023:1 15044:1 15045:1 15080:1 15086:1 15088:2 15140:1 15146:1 15155:2 15156:3 15162:1 15164:1 15171:1 15178:2 15192:1 15198:1 15204:2 15234:4 15238:1 15250:1 15266:1 15280:1 15301:2 15317:1 15338:1 15355:1 15365:1 15380:1 15400:3 15420:1 15430:3 15441:1 15464:1 15465:1 15480:1 15486:1 15502:1 15503:1 15514:2 15529:1 15538:2 15576:1 15589:1 15597:1 15598:1 15599:2 15600:1 15602:1 15636:1 15659:1 15663:1 15684:1 15688:1 15701:2 15706:1 15707:1 15726:1 15739:5 15750:1 15797:1 15821:1 15822:1 15827:1 15851:1 15856:1 15857:1 15861:3 15891:1 15908:1 15918:1 15921:1 15934:2 15938:2 15939:4 15950:1 15970:1 15977:3 15997:1 16035:2 16037:1 16043:1 16046:1 16051:1 16202:2 16220:1 16263:1 16279:1 16341:1 16392:1 16393:1 16401:1 16402:1 16412:3 16414:1 16416:1 16424:1 16442:1 16467:1 16483:1 16491:1 16495:1 16525:1 16561:1 16583:1 16612:1 16631:1 16640:1 16661:1 16675:1 16692:1 16718:1 16775:2 16828:1 16874:1 16939:1 16951:1 16970:2 17000:2 17005:2 17007:1 17010:1 17012:1 17031:1 17059:1 17078:1 17098:2 17137:1 17163:1 17191:1 17194:1 17202:1 17207:1 17237:1 17246:1 17255:1 17280:1 17347:1 17353:2 17355:2 17360:1 17379:1 17380:1 17385:1 17433:1 17435:1 17441:1 17501:3 17512:2 17546:1 17591:1 17611:1 17633:1 17634:1 17653:1 17662:2 17685:3 17687:2 17689:1 17722:2 17736:1 17740:2 17763:1 17796:1 17829:2 17835:1 17844:4 17854:1 17864:1 17885:1 17889:1 17890:5 17892:1 17896:1 17900:1 17901:1 17902:1 17913:2 17919:4 17968:2 17996:1 18012:1 18022:1 18024:2 18030:3 18060:1 18073:1 18101:1 18146:1 18158:1 18175:1 18182:1 18187:4 18198:2 18199:1 18217:1 18222:1 18225:1 18263:12 18291:1 18300:1 18305:1 18324:2 18341:32 18361:3 18390:1 18418:1 18424:1 18427:2 18455:1 18467:1 18473:1 18474:1 18477:1 18482:2 18486:1 18516:1 18518:1 18523:1 18530:1 18543:1 18544:1 18565:1 18604:1 18610:3 18643:1 18648:2 18696:1 18797:1 18798:1 18808:1 18822:2 18826:1 18867:1 18916:1 18922:1 18946:2 18996:1 18997:1 19000:1 19004:2 19016:1 19020:1 19027:1 19042:1 19048:7 19072:1 19084:1 19094:2 19136:1 19143:1 19165:1 19167:1 19170:3 19177:1 19179:2 19182:1 19185:1 19206:1 19222:1 19232:1 19243:2 19245:1 19307:1 19374:1 19382:2 19407:1 19434:1 19440:1 19449:1 19457:1 19461:1 19466:1 19469:2 19480:1 19490:1 19497:3 19501:1 19504:1 19542:1 19550:1 19564:1 19587:1 19595:1 19619:3 19640:1 19675:1 19684:1 19685:1 19711:3 19718:1 19726:1 19730:2 19735:1 19737:1 19759:1 19761:1 19776:1 19789:2 19817:1 19840:1 19841:1 19926:2 19936:1 19944:1 19956:1 19962:1 20017:2 20020:1 20021:1 20037:8 20070:1 20103:1 20130:1 20131:1 20153:1 20160:1 20179:1 20191:1 20210:1 20216:1 20249:1 20255:2 20261:3 20265:1 20340:1 20382:2 20383:1 20420:1 20429:1 20450:1 20456:2 20474:2 20480:1 20488:1 20489:2 20507:1 20531:1 20532:2 20579:1 20585:1 20595:1 20621:3 20645:1 20649:1 20651:1 20655:3 20676:1 20677:1 20693:1 20749:1 20790:1 20792:5 20821:1 20860:1 20865:1 20869:1 20884:1 20906:1 20922:1 20942:1 20946:3 20948:1 20950:2 20965:2 20976:1 20980:2 21013:1 21020:1728 21046:1 21047:1 21054:1 21108:1 21136:3 21178:3 21201:2 21212:1 21239:1 21242:1 21268:3 21284:3 21287:1 21340:1 21384:3 21418:1 21442:2 21454:1 21463:1 21474:1 21484:1 21490:1 21494:1 21495:1 21511:1 21539:1 21551:1 21554:1 21563:4 21660:1 21661:1 21675:1 21678:2 21749:1 21779:1 21795:1 21797:1 21803:1 21810:1 21819:2 21832:2 21835:1 21836:3 21841:1 21857:1 21867:6 21895:1 21896:9 21929:1 21930:1 21965:1 21970:1 21995:1 22000:1 22002:1 22004:1 22015:1 22029:2 22060:1 22068:1 22089:1 22101:2 22131:1 22136:1 22194:1 22198:1 22244:1 22262:1 22264:7 22272:1 22308:1 22317:1 22352:1 22369:1 22377:5 22399:1 22422:1 22444:1 22467:1 22476:1 22478:1 22484:1 22485:1 22495:1 22534:1 22542:4 22547:1 22556:1 22561:1 22581:2 22610:1 22616:1 22624:1 22651:1 22676:1 22680:1 22687:2 22702:1 22708:5 22745:1 22775:1 22800:7 22822:2 22825:1 22844:1 22845:1 22863:9 22881:1 22910:1 22922:1 22933:1 22945:1 22999:1 23024:2 23056:1 23105:1 23153:2 23166:1 23183:1 23185:1 23198:1 23242:1 23245:1 23265:1 23341:1 23369:1 23407:1 23439:1 23457:1 23490:3 23512:1 23522:1 23532:8 23546:3 23549:1 23550:1 23569:4 23574:1 23595:1 23638:1 23653:2 23657:1 23673:2 23681:1 23682:1 23711:5 23719:1 23722:2 23765:1 23803:1 23808:1 23832:1 23836:1 23843:1 23873:1 23882:1 23886:1 23940:1 23944:1 23948:1 24003:1 24009:1 24065:4 24070:2 24073:1 24084:1 24100:1 24143:1 24154:2 24164:1 24181:1 24195:1 24201:1 24202:1 24216:1 24218:2 24221:2 24255:1 24271:1 24311:2 24328:1 24339:1 24341:1 24360:1 24363:8 24377:1 24396:1 24408:1 24427:2 24447:1 24472:1 24478:1 24488:2 24505:1 24542:1 24543:4 24556:2 24563:2 24567:1 24649:2 24659:1 24662:7 24670:1 24682:1 24700:1 24702:1 24703:2 24707:1 24714:1 24719:2 24732:1 24747:1 24774:1 24824:3 24825:1 24855:1 24861:1 24869:2 24872:1 24888:1 24894:1 24908:1 24923:1 24935:1 24979:12 24980:1 24984:1 25005:1 25018:1 25021:1 25026:1 25033:1 25047:1 25057:1 25065:1 25071:2 25094:2 25101:1 25104:1 25110:2 25121:2 25125:1 25126:1 25129:4 25148:2 25156:3 25168:2 25190:1 25206:1 25209:1 25218:1 25243:1 25245:2 25252:1 25256:1 25275:1 25289:2 25303:3 25318:1 25328:1 25340:1 25368:1 25369:1 25387:1 25473:3 25485:1 25501:2 25526:1 25539:1 25581:1 25588:1 25595:9 25598:2 25620:1 25634:1 25653:1 25655:1 25667:1 25683:1 25689:1 25695:2 25732:1 25755:5 25780:1 25788:1 25804:1 25828:2 25853:1 25871:1 25907:1 25928:1 25929:1 25936:1 26001:1 26015:1 26017:3 26024:1 26043:1 26044:1 26075:2 26094:1 26133:1 26135:2 26157:1 26160:1 26165:1 26174:2 26179:2 26184:1 26187:1 26230:1 26243:1 26254:1 26255:1 26277:4 26283:1 26309:1 26315:1 26319:2 26324:1 26352:1 26359:1 26360:1 26364:1 26415:2 26424:12 26532:1 26534:1 26539:1 26605:1 26612:1 26636:1 26679:1 26694:1 26721:1 26748:1 26751:2 26758:1 26794:2 26818:1 26880:1 26897:1 26924:2 26931:1 26936:1 26938:2 27009:1 27014:1 27022:1 27072:1 27112:1 27114:2 27122:1 27133:1 27141:1 27159:1 27225:1 27262:1 27303:5 27360:1 27377:1 27389:1 27397:3 27398:2 27401:1 27419:1 27427:1 27437:1 27439:2 27451:1 27456:1 27488:1 27489:1 27502:1 27512:1 27516:1 27522:1 27533:1 27569:1 27574:1 27575:1 27602:3 27612:1 27618:1 27620:1 27641:1 27676:1 27716:1 27727:1 27728:1 27753:1 27757:1 27763:1 27769:1 27804:1 27809:1 27813:1 27817:1 27846:1 27851:1 27881:1 27884:1 27917:2 27933:2 27957:1 27985:1 27989:1 27997:1 28007:1 28015:1 28021:1 28032:3 28068:2 28094:1 28132:1 28145:2 28174:1 28242:1 28253:1 28255:1 28273:3 28327:2 28331:3 28335:1 28348:1 28414:1 28442:1 28503:1 28509:4 28512:3 28518:1 28540:1 28557:1 28563:2 28591:1 28602:1 28608:2 28609:1 28635:3 28641:4 28642:1 28652:1 28666:1 28671:1 28680:1 28697:2 28725:4 28728:1 28734:1 28739:1 28753:2 28754:1 28778:1 28811:1 28847:4 28870:2 28872:2 28902:1 28913:1 28937:1 28945:2 28994:2 28998:3 29029:1 29052:1 29060:2 29063:1 29085:1 29088:2 29104:1 29105:1 29120:1 29123:1 29146:1 29156:2 29161:1 29189:4 29195:1 29210:1 29219:1 29261:1 29272:1 29291:1 29316:1 29326:1 29334:1 29365:5 29374:1 29409:1 29417:2 29439:1 29472:2 29491:1 29503:1 29518:1 29519:2 29543:1 29546:1 29564:1 29574:1 29653:4 29655:2 29675:2 29676:1 29677:4 29679:2 29732:2 29759:1 29771:1 29781:2 29797:1 29821:2 29842:1 29861:1 29882:1 29923:1 30051:1 30063:1 30121:1 30129:1 30183:1 30221:1 30235:1 30294:1 30295:2 30334:1 30367:1 30371:1 30393:2 30399:1 30415:1 30418:6 30450:2 30451:1 30524:12 30525:1 30529:3 30531:1 30560:1 30643:1 30648:2 30651:1 30684:1 30706:1 30719:1 30721:1 30724:1 30728:1 30738:1 30739:1 30741:1 30745:1 30753:1 30788:2 30800:1 30818:1 30832:1 30846:2 30906:1 30916:1 30958:1 30978:1 30997:1 30998:1 31088:3 31104:1 31132:1 31176:1 31200:1 31204:1 31207:1 31243:1 31259:1 31262:1 31302:1 31317:1 31359:1 31403:1 31476:1 31477:1 31489:3 31493:1 31514:1 31541:1 31544:15 31545:2 31546:2 31549:1 31552:1 31555:1 31566:1 31586:1 31587:7 31597:1 31602:1 31603:1 31613:1 31644:1 31646:1 31651:2 31662:1 31681:1 31697:1 31702:2 31713:1 31759:2 31801:1 31802:1 31829:1 31854:1 31863:2 31901:1 31957:2 31959:1 31964:4 31969:1 31990:1 31994:1 32000:1 32012:1 32028:1 32039:2 32110:1 32115:2 32118:1 32163:1 32175:1 32178:1 32214:1 32257:1 32263:3 32279:1 32310:2 32314:1 32321:2 32342:2 32381:1 32445:1 32471:1 32505:3 32510:1 32539:2 32543:1 32582:1 32590:1 32596:1 32605:3 32628:1 32662:1 32676:2 32684:1 32686:1 32701:1 32713:1 32727:1 32733:3 32735:1 32740:1 32755:2 32811:1 32821:4 32831:1 32891:1 32902:1 32903:1 32905:2 32921:1 32957:1 32966:1 32972:1 32973:1 32977:1 33021:1
16 26:1 27:1 66:1 78:1 85:4 104:1 109:1 145:1 173:1 176:1 219:1 235:1 269:4 338:1 351:2 387:1 397:2 398:1 399:2 427:1 468:2 502:3 505:1 509:1 525:1 551:2 567:1 575:1 577:1 581:1 584:1 589:1 591:1 628:1 629:1 713:1 723:3 751:2 757:1 762:4 766:1 774:1 779:1 790:1 805:1 812:1 821:1 832:1 869:2 886:1 929:1 937:1 944:1 970:1 984:1 988:1 1000:1 1007:1 1051:1 1054:1 1069:1 1078:2 1081:1 1082:1 1114:1 1139:2 1143:1 1149:1 1164:1 1180:2 1185:1 1202:1 1221:1 1250:1 1254:1 1285:1 1288:1 1301:1 1341:1 1353:3 1359:1 1366:1 1369:2 1377:2 1387:1 1388:3 1398:1 1412:1 1426:3 1457:1 1464:1 1466:1 1469:1 1472:1 1487:1 1488:2 1489:2 1506:2 1512:1 1524:1 1546:1 1560:1 1572:1 1586:1 1600:1 1633:1 1642:1 1676:3 1683:1 1695:1 1742:1 1760:2 1767:1 1773:1 1774:1 1775:1 1776:1 1780:2 1802:1 1835:1 1839:2 1853:1 1867:1 1871:2 1879:2 1907:1 1914:1 1919:1 1924:1 1927:2 1941:1 1953:1 1963:2 1966:3 1975:1 2018:1 2038:1 2050:2 2053:1 2055:1 2058:1 2069:2 2097:1 2098:1 2122:1 2127:1 2128:1 2139:1 2142:1 2143:1 2150:1 2156:1 2174:1 2180:1 2187:1 2201:1 2211:1 2215:1 2226:1 2232:1 2234:4 2245:1 2262:1 2282:1 2317:1 2320:1 2323:1 2345:1 2354:2 2368:3 2369:1 2407:1 2414:1 2439:1 2441:1 2444:2 2446:1 2475:2 2501:2 2531:1 2566:1 2572:1 2630:1 2631:2 2632:3 2637:1 2638:2 2640:1 2641:1 2643:3 2647:1 2651:1 2654:1 2660:4 2665:2 2668:5 2687:1 2712:1 2754:1 2755:1 2763:1 2782:1 2790:1 2794:1 2800:1 2808:1 2826:1 2845:3 2871:1 2883:2 2927:1 2944:1 3021:1 3023:1 3062:2 3082:4 3092:1 3098:3 3119:1 3127:1 3130:1 3136:5 3150:1 3164:1 3173:1 3177:1 3189:3 3197:1 3237:1 3246:2 3252:1 3256:4 3314:4 3355:6 3363:6 3392:1 3426:17 3435:1 3441:1 3457:1 3497:1 3533:2 3542:1 3607:2 3613:1 3639:1 3700:1 3710:2 3713:4 3739:6 3759:1 3764:1 3773:1 3809:1 3823:4 3863:1 3894:1 3900:1 3918:1 3944:1 3959:1 3965:1 3975:3 3983:2 3985:1 4003:1 4041:1 4049:1 4053:1 4076:1 4077:1 4089:3 4144:1 4150:1 4152:1 4156:1 4161:1 4210:1 4235:1 4245:2 4256:1 4270:1 4271:2 4297:1 4317:1 4323:1 4325:24 4340:1 4347:1 4361:2 4363:1 4364:6 4376:2 4377:12 4379:1 4381:3 4391:2 4405:3 4418:1 4419:2 4423:2 4425:2 4426:2 4438:1 4439:2 4442:1 4444:1 4490:1 4491:3 4502:1 4507:1 4537:1 4541:1 4543:1 4544:2 4555:2 4567:2 4575:1 4587:1 4622:1 4630:1 4632:1 4633:1 4635:1 4643:1 4646:1 4652:1 4655:1 4658:1 4674:1 4678:1 4686:1 4730:1 4813:1 4870:1 4876:1 4879:1 4880:1 4913:1 4924:1 4926:1 5010:8 5027:1 5090:1 5098:1 5106:2 5120:2 5152:3 5176:1 5198:1 5205:1 5268:2 5269:1 5331:1 5363:1 5367:1 5370:2 5381:1 5390:1 5403:1 5410:1 5433:2 5509:1 5510:1 5516:1 5545:2 5558:1 5640:2 5645:1 5659:10 5660:1 5699:1 5761:1 5784:1 5797:2 5800:1 5802:1 5822:1 5823:5 5824:1 5828:1 5831:2 5840:1 5841:13 5842:1 5844:1 5848:1 5849:1 5880:1 5950:1 6060:1 6081:2 6082:3 6089:5 6125:1 6142:1 6168:2 6169:13 6205:1 6255:1 6301:1 6305:1 6350:1 6357:1 6371:1 6379:1 6383:1 6394:1 6403:1 6404:1 6462:1 6473:1 6480:1 6483:1 6507:1 6515:1 6518:1 6531:1 6540:1 6542:1 6548:1 6568:2 6574:1 6611:1 6617:2 6640:2 6647:1 6672:1 6673:1 6678:1 6686:1 6728:1 6733:1 6753:1 6772:1 6776:1 6777:1 6808:1 6826:1 6844:2 6845:1 6868:1 6870:2 6873:1 6959:1 7035:4 7045:1 7068:1 7074:1 7102:1 7139:1 7149:1 7157:1 7190:1 7196:1 7200:2 7202:2 7249:1 7254:2 7257:1 7276:3 7278:1 7295:1 7300:1 7316:1 7321:1 7382:1 7386:1 7390:1 7391:1 7394:1 7396:1 7397:1 7401:1 7403:3 7409:1 7410:2 7411:1 7413:1 7427:1 7451:1 7503:1 7509:1 7553:1 7559:1 7579:2 7586:1 7613:1 7615:1 7664:1 7681:1 7684:2 7710:5 7716:2 7722:1 7731:1 7742:2 7764:1 7791:1 7805:1 7846:1 7869:1 7877:2 7879:1 7891:2 7900:1 7907:1 7915:2 7940:1 7947:1 7987:1 7998:1 8005:1 8012:1 8026:2 8032:1 8091:1 8093:1 8137:1 8138:1 8194:1 8215:1 8251:1 8255:5 8263:2 8289:1 8299:1 8320:1 8490:1 8507:1 8512:1 8526:3 8575:1 8577:1 8586:2 8604:1 8629:1 8688:1 8689:1 8770:1 8784:1 8791:1 8821:1 8830:1 8831:1 8832:2 8850:1 8861:1 8890:1 8898:1 8901:23 8902:1 8908:1 8920:5 8923:14 8929:1 8933:1 8943:1 8952:1 8978:3 8979:1 9014:1 9034:1 9051:1 9059:1 9082:1 9085:1 9091:1 9149:3 9153:4 9161:1 9206:1 9209:2 9212:1 9234:1 9251:1 9285:1 9304:1 9341:1 9343:1 9362:1 9368:1 9370:3 9386:1 9405:1 9444:1 9448:1 9454:1 9470:1 9484:8 9511:1 9524:1 9525:1 9551:2 9589:1 9594:1 9605:1 9616:1 9630:2 9639:3 9664:1 9672:1 9678:3 9687:1 9709:2 9715:2 9728:1 9732:1 9733:1 9734:1 9738:1 9747:1 9748:1 9754:2 9765:1 9777:1 9778:2 9792:1 9809:2 9829:1 9836:1 9841:3 9859:1 9878:2 9880:1 9881:2 9882:1 9884:2 9885:2 9894:1 9897:2 9899:1 9903:1 9919:1 9925:1 9934:2 9944:1 9945:1 9951:1 9959:1 9973:1 9977:2 10002:2 10024:2 10044:1 10053:3 10056:1 10065:1 10067:1 10069:1 10088:1 10092:1 10121:1 10128:2 10138:1 10139:1 10144:1 10150:2 10161:2 10162:1 10166:1 10204:1 10208:1 10209:2 10214:1 10219:1 10221:3 10229:1 10252:1 10254:1 10257:3 10270:1 10295:1 10367:1 10377:2 10397:1 10399:1 10410:1 10412:1 10438:1 10441:1 10461:1 10520:2 10554:1 10558:1 10565:1 10588:3 10615:1 10619:1 10627:1 10634:1 10653:1 10671:2 10673:1 10701:1 10710:1 10756:1 10768:1 10845:1 10846:1 10851:1 10857:1 10858:1 10862:1 10864:2 10879:1 10900:1 10903:1 10937:1 10939:1 10942:1 10947:1 10959:1 11009:13 11016:1 11039:1 11047:3 11056:2 11083:1 11104:2 11124:1 11154:10 11171:1 11198:1 11210:2 11225:1 11226:1 11229:3 11249:1 11318:3 11319:1 11359:5 11363:1 11366:2 11368:1 11374:1 11382:1 11400:1 11417:1 11422:3 11426:1 11427:1 11429:1 11464:3 11470:1 11489:1 11492:2 11496:1 11513:1 11551:1 11553:1 11580:7 11582:1 11583:4 11595:1 11597:1 11697:2 11703:1 11728:1 11754:1 11761:1 11775:3 11789:1 11897:2 11914:3 11921:1 11926:1 11932:1 11948:1 11955:1 11967:1 11994:2 12001:2 12043:1 12052:2 12075:1 12098:5 12117:2 12119:3 12121:1 12125:1 12128:1 12145:1 12150:1 12174:1 12197:1 12200:1 12211:3 12229:1 12241:1 12249:4 12266:1 12314:1 12316:1 12322:1 12345:1 12346:1 12347:1 12352:1 12396:1 12459:1 12476:1 12492:1 12498:2 12499:1 12512:3 12531:3 12534:4 12553:1 12556:1 12596:2 12610:1 12623:2 12635:1 12642:1 12664:2 12676:2 12706:1 12740:1 12743:1 12770:1 12807:1 12821:1 12825:1 12850:1 12855:1 12863:1 12883:1 12892:1 12893:1 12919:2 12953:1 12960:1 12974:2 12980:1 12981:1 12983:1 12990:1 12991:1 13014:1 13021:1 13057:1 13061:1 13063:4 13067:1 13100:1 13122:1 13125:1 13127:1 13135:1 13138:1 13153:1 13176:1 13204:1 13207:1 13218:3 13234:2 13252:3 13254:2 13297:1 13327:1 13328:2 13341:1 13352:1 13354:1 13363:1 13366:1 13368:4 13369:1 13376:1 13379:4 13382:1 13387:1 13395:1 13403:2 13428:2 13447:3 13454:1 13463:1 13507:1 13518:4 13536:1 13537:1 13576:1 13580:1 13590:3 13592:1 13607:1 13629:1 13645:1 13690:1 13692:1 13717:1 13759:1 13766:1 13832:1 13847:1 13867:1 13872:1 13874:1 13878:1 13913:2 13914:2 13916:13 13923:4 13940:1 13956:1 13962:1 13972:2 14021:1 14043:1 14074:1 14082:5 14083:2 14098:1 14106:1 14167:1 14172:1 14198:1 14207:1 14219:1 14222:1 14228:1 14235:1 14292:1 14312:1 14326:1 14329:1 14369:1 14373:2 14382:1 14388:1 14441:1 14506:6 14519:1 14523:1 14527:2 14530:1 14546:1 14565:2 14566:3 14592:1 14629:1 14660:1 14667:2 14693:1 14705:1 14746:1 14748:1 14751:2 14775:1 14785:1 14819:1 14870:1 14920:1 14930:1 14948:1 14990:1 15002:2 15014:1 15017:1 15023:1 15044:1 15045:1 15080:1 15086:1 15088:2 15140:1 15146:1 15154:1 15155:2 15156:3 15162:1 15164:1 15171:1 15178:2 15182:1 15192:1 15195:1 15198:1 15204:2 15234:5 15238:1 15250:1 15266:1 15280:1 15301:2 15317:1 15338:1 15355:1 15365:1 15380:1 15400:3 15420:1 15430:3 15441:1 15450:1 15464:1 15465:1 15480:1 15486:1 15502:1 15503:1 15514:2 15529:1 15538:2 15576:1 15589:1 15597:1 15598:1 15599:2 15600:1 15602:1 15636:1 15659:1 15663:1 15684:1 15688:1 15701:2 15706:1 15707:1 15726:1 15739:5 15750:1 15797:1 15821:1 15822:1 15827:1 15851:1 15856:2 15857:1 15861:3 15891:1 15908:1 15918:1 15921:1 15933:1 15934:2 15938:2 15939:4 15950:1 15970:1 15977:3 15997:1 16035:2 16037:1 16043:1 16046:1 16051:1 16118:1 16202:2 16220:1 16246:1 16263:1 16279:1 16341:1 16392:1 16393:1 16401:1 16402:1 16412:3 16414:1 16416:1 16424:1 16442:2 16467:1 16483:1 16491:1 16495:1 16525:1 16561:1 16570:1 16583:1 16612:1 16631:1 16640:1 16661:1 16675:1 16692:1 16718:1 16775:2 16828:1 16874:1 16939:1 16951:1 16970:2 17000:2 17005:2 17007:1 17010:1 17012:1 17013:1 17031:1 17059:1 17078:1 17098:2 17137:1 17163:1 17167:1 17191:1 17194:1 17202:1 17207:1 17235:1 17237:1 17246:1 17255:1 17280:1 17347:1 17353:2 17355:2 17360:1 17379:1 17380:1 17385:1 17433:1 17435:1 17441:1 17496:1 17501:3 17512:2 17546:1 17591:1 17611:1 17627:1 17633:1 17634:1 17653:1 17662:2 17685:3 17687:2 17689:1 17722:2 17736:1 17740:2 17763:1 17796:1 17803:1 17829:2 17835:1 17844:4 17854:1 17864:1 17884:1 17885:1 17889:1 17890:5 17892:1 17896:1 17900:1 17901:1 17902:1 17913:2 17919:4 17968:2 17996:1 18012:1 18022:1 18024:2 18030:3 18060:1 18073:1 18101:1 18127:1 18146:1 18158:1 18175:1 18182:1 18187:5 18198:2 18199:1 18217:1 18222:1 18225:1 18263:13 18291:1 18300:1 18305:1 18324:2 18341:35 18361:3 18390:1 18418:1 18424:1 18427:2 18455:1 18467:1 18473:1 18474:1 18477:1 18482:2 18486:1 18513:1 18516:1 18518:1 18523:1 18530:1 18543:1 18544:1 18565:1 18567:1 18604:1 18610:3 18643:1 18648:2 18696:1 18762:1 18797:1 18798:1 18808:1 18822:2 18826:1 18867:1 18916:1 18922:1 18946:2 18996:1 18997:1 19000:1 19004:2 19016:1 19020:1 19027:1 19042:1 19048:7 19072:1 19084:1 19094:2 19136:1 19143:1 19165:1 19167:1 19170:3 19177:1 19179:2 19182:1 19185:1 19206:1 19222:1 19232:1 19243:2 19245:2 19307:1 19374:1 19382:2 19407:1 19434:1 19440:1 19449:1 19457:1 19461:1 19466:1 19469:2 19480:1 19490:1 19497:3 19501:1 19504:1 19542:1 19550:1 19564:1 19587:1 19595:1 19619:3 19640:1 19675:1 19684:1 19685:1 19711:3 19718:1 19726:1 19730:2 19735:1 19737:1 19759:1 19761:1 19776:1 19789:2 19817:1 19840:1 19841:1 19926:2 19936:1 19944:1 19956:1 19962:1 20017:2 20020:1 20021:1 20037:8 20052:1 20070:1 20103:1 20130:1 20131:1 20153:1 20160:1 20179:1 20191:1 20210:1 20216:1 20249:1 20255:2 20261:3 20265:1 20340:1 20382:2 20383:1 20420:1 20429:1 20450:1 20456:2 20474:2 20480:1 20488:1 20489:2 20507:1 20531:1 20532:2 20579:1 20585:1 20595:1 20621:3 20630:1 20645:1 20649:1 20651:1 20655:3 20676:1 20677:1 20693:1 20695:1 20749:1 20790:1 20792:5 20821:1 20860:1 20865:1 20869:1 20884:1 20906:1 20912:1 20922:1 20942:1 20946:3 20948:1 20950:2 20965:2 20976:1 20980:2 21013:1 21020:1861 21046:1 21047:1 21054:1 21066:1 21108:1 21136:3 21178:3 21201:2 21212:1 21239:1 21242:1 21268:3 21284:3 21287:1 21340:1 21341:1 21384:3 21418:1 21442:2 21454:1 21463:1 21474:1 21484:1 21490:1 21494:1 21495:1 21511:1 21539:1 21551:1 21554:1 21563:4 21586:1 21660:1 21661:1 21675:1 21678:2 21749:1 21779:1 21795:1 21797:1 21803:2 21810:1 21819:2 21832:2 21835:1 21836:3 21841:1 21857:1 21867:6 21895:1 21896:9 21929:1 21930:1 21950:1 21965:1 21970:1 21995:1 22000:1 22002:1 22004:1 22015:1 22029:2 22060:1 22068:2 22089:1 22101:2 22131:1 22136:1 22194:1 22198:1 22244:1 22262:1 22264:7 22272:1 22308:1 22317:1 22352:1 22369:1 22377:5 22399:1 22422:1 22444:1 22467:1 22476:1 22478:1 22484:1 22485:1 22495:1 22534:1 22542:4 22547:1 22556:1 22561:1 22581:2 22582:1 22610:1 22616:1 22624:1 22651:1 22676:1 22680:1 22687:2 22702:1 22708:5 22745:1 22775:1 22800:7 22822:2 22825:1 22844:1 22845:1 22863:9 22881:1 22910:1 22922:1 22933:1 22945:1 22999:1 23005:1 23024:2 23056:1 23105:1 23153:2 23166:1 23183:1 23185:1 23198:1 23199:1 23242:1 23245:1 23265:1 23341:1 23369:1 23407:1 23439:1 23457:1 23490:3 23512:2 23522:1 23525:1 23532:8 23546:3 23549:1 23550:1 23569:4 23574:1 23595:1 23638:1 23653:2 23657:1 23673:2 23681:1 23682:1 23711:5 23719:1 23722:2 23765:1 23803:1 23808:1 23832:1 23836:1 23843:1 23873:1 23882:1 23886:1 23940:1 23944:1 23948:1 24003:1 24009:1 24063:1 24065:4 24070:2 24073:1 24084:1 24094:1 24100:1 24143:1 24154:2 24164:1 24181:1 24195:1 24201:1 24202:1 24216:1 24218:2 24221:2 24255:1 24271:1 24311:2 24328:1 24339:1 24341:1 24360:1 24363:8 24377:1 24396:1 24408:1 24427:2 24447:1 24472:1 24478:1 24488:2 24505:1 24542:1 24543:4 24556:2 24563:2 24567:1 24623:1 24649:2 24659:1 24662:7 24670:2 24682:1 24700:1 24702:1 24703:2 24707:1 24714:1 24719:2 24732:1 24747:1 24774:1 24824:4 24825:1 24834:1 24855:1 24861:1 24869:2 24872:1 24888:1 24894:1 24908:1 24923:1 24935:1 24979:13 24980:1 24984:1 25005:1 25018:1 25021:1 25026:1 25033:1 25047:1 25057:1 25065:1 25071:2 25092:1 25094:2 25101:1 25104:1 25110:2 25121:2 25125:1 25126:1 25129:4 25148:2 25156:3 25168:2 25190:1 25206:1 25209:1 25218:1 25233:1 25243:1 25245:2 25252:1 25256:1 25270:1 25275:1 25289:3 25303:3 25318:2 25328:1 25340:1 25368:1 25369:1 25387:1 25459:1 25473:3 25485:1 25501:2 25503:1 25526:1 25539:1 25581:1 25588:1 25595:9 25597:1 25598:2 25620:1 25634:1 25653:1 25655:1 25667:1 25683:1 25689:1 25695:2 25732:1 25755:5 25780:1 25788:1 25804:1 25828:2 25853:1 25871:1 25907:1 25928:1 25929:1 25936:1 26001:1 26015:1 26017:3 26024:1 26043:1 26044:1 26075:2 26094:1 26133:1 26135:2 26157:1 26160:1 26165:1 26174:2 26179:2 26184:1 26187:1 26230:1 26243:1 26254:1 26255:1 26277:4 26283:1 26309:1 26315:1 26319:2 26324:1 26352:2 26359:1 26360:1 26364:1 26415:2 26424:12 26532:1 26534:1 26539:1 26605:1 26612:1 26635:1 26636:1 26679:1 26694:1 26721:1 26748:1 26751:2 26758:2 26794:2 26818:1 26880:1 26897:1 26924:2 26929:1 26931:1 26936:1 26938:2 27009:1 27014:1 27022:1 27072:1 27112:1 27114:2 27122:1 27133:1 27141:3 27159:1 27225:1 27262:1 27303:5 27360:1 27377:1 27388:1 27389:1 27397:3 27398:2 27401:1 27419:1 27427:1 27437:1 27439:2 27451:1 27456:1 27488:1 27489:1 27502:1 27512:1 27516:1 27522:1 27533:1 27569:1 27574:1 27575:1 27602:3 27612:2 27618:1 27620:1 27641:1 27676:1 27716:1 27727:1 27728:1 27753:1 27757:1 27763:1 27769:1 27804:1 27809:1 27813:1 27817:1 27846:1 27851:1 27881:1 27884:1 27917:2 27933:2 27957:1 27985:1 27989:1 27997:1 28007:1 28015:1 28021:1 28032:3 28068:2 28071:1 28094:1 28132:1 28145:2 28174:1 28242:1 28253:1 28255:1 28273:3 28327:2 28331:3 28335:1 28342:1 28348:1 28414:1 28442:1 28503:2 28509:4 28512:3 28518:1 28540:1 28557:1 28563:2 28591:1 28602:1 28608:2 28609:1 28635:3 28641:4 28642:1 28652:1 28666:1 28671:1 28680:1 28697:2 28725:4 28728:1 28734:1 28739:1 28740:1 28753:2 28754:1 28778:1 28811:2 28847:4 28870:2 28872:2 28902:1 28913:1 28937:1 28945:2 28994:2 28998:3 29029:1 29052:1 29060:2 29063:1 29085:1 29088:2 29104:1 29105:1 29120:1 29123:1 29146:1 29156:2 29161:1 29174:1 29189:4 29195:1 29210:1 29219:1 29261:1 29272:1 29291:1 29316:1 29326:1 29334:1 29365:5 29374:1 29409:1 29417:2 29439:1 29472:2 29491:1 29503:1 29518:2 29519:2 29543:1 29546:1 29564:1 29574:1 29637:1 29653:4 29655:2 29675:2 29676:1 29677:4 29679:2 29732:2 29759:1 29771:1 29781:2 29797:1 29821:2 29842:1 29850:1 29861:1 29882:1 29923:1 30051:1 30063:1 30121:1 30129:1 30183:1 30221:1 30235:1 30294:1 30295:2 30334:1 30367:1 30371:1 30393:2 30399:1 30415:1 30418:6 30450:2 30451:1 30524:12 30525:1 30529:3 30531:1 30560:1 30643:1 30648:2 30651:1 30684:1 30706:1 30707:1 30719:1 30721:1 30724:1 30728:1 30738:1 30739:1 30741:1 30745:1 30753:1 30788:2 30800:1 30818:1 30832:1 30846:2 30895:1 30906:1 30916:1 30958:1 30978:1 30997:1 30998:1 31088:4 31104:1 31132:1 31176:1 31200:1 31204:1 31207:1 31243:1 31259:1 31262:1 31302:1 31317:1 31359:1 31403:1 31476:1 31477:1 31489:3 31493:1 31514:1 31541:1 31544:15 31545:2 31546:2 31549:1 31552:2 31555:1 31566:1 31586:1 31587:8 31597:1 31602:1 31603:1 31613:1 31644:1 31646:1 31651:2 31662:1 31681:1 31697:1 31702:2 31713:1 31754:1 31759:2 31801:1 31802:1 31829:1 31854:1 31863:2 31901:1 31951:1 31957:2 31959:1 31964:4 31969:1 31990:1 31994:1 32000:1 32012:1 32028:1 32039:2 32110:2 32115:3 32118:1 32119:1 32163:1 32175:1 32178:1 32214:1 32257:1 32263:3 32279:1 32310:2 32314:1 32321:2 32342:2 32374:1 32381:1 32429:1 32445:1 32471:1 32505:3 32510:1 32539:2 32543:1 32582:1 32590:1 32596:1 32605:3 32628:1 32662:1 32676:2 32684:1 32686:1 32701:1 32713:1 32727:1 32733:3 32735:1 32740:1 32755:2 32811:1 32821:4 32831:1 32891:1 32897:1 32902:1 32903:1 32905:2 32921:1 32957:1 32966:1 32972:1 32973:1 32977:1 33021:1
16 26:1 27:1 66:1 78:1 85:4 104:1 109:1 145:1 173:1 176:1 219:1 235:1 269:4 338:1 351:3 375:1 387:1 397:2 398:1 399:2 427:1 443:1 468:2 475:1 484:1 502:3 505:1 509:1 525:1 551:2 567:1 575:1 577:1 581:1 584:1 589:1 591:1 628:1 629:1 713:1 723:3 751:2 757:1 762:4 766:1 774:1 779:1 790:1 805:1 812:1 821:1 832:1 869:2 886:1 929:1 937:1 944:1 970:1 984:1 988:1 1000:1 1007:1 1051:1 1054:1 1069:2 1078:3 1081:1 1082:1 1084:1 1114:1 1139:3 1143:1 1149:1 1164:1 1180:2 1185:1 1202:1 1221:1 1250:1 1254:1 1285:1 1288:1 1301:1 1341:1 1353:3 1359:1 1366:1 1369:2 1377:2 1387:1 1388:4 1398:1 1412:1 1426:3 1457:1 1464:1 1466:1 1469:1 1472:1 1475:1 1487:1 1488:2 1489:2 1506:2 1512:1 1524:1 1546:1 1560:1 1572:1 1586:1 1600:1 1633:1 1642:1 1676:3 1683:1 1695:1 1733:1 1742:1 1754:1 1760:3 1767:1 1773:1 1774:2 1775:1 1776:1 1780:2 1802:1 1835:1 1839:3 1853:1 1863:1 1867:1 1871:2 1879:2 1907:1 1914:1 1919:1 1924:1 1927:2 1941:1 1953:1 1963:2 1966:3 1968:1 1975:1 2018:1 2038:1 2050:2 2053:1 2055:1 2058:1 2069:2 2097:1 2098:1 2122:1 2127:1 2128:1 2139:1 2142:1 2143:1 2150:1 2156:1 2174:1 2180:1 2187:1 2201:1 2211:1 2215:1 2226:1 2232:1 2234:4 2245:1 2262:1 2282:1 2317:1 2320:1 2323:1 2345:1 2354:2 2361:1 2368:3 2369:1 2407:1 2414:1 2435:1 2439:1 2441:1 2443:1 2444:2 2446:1 2475:2 2501:2 2531:1 2566:1 2572:1 2628:1 2629:1 2630:1 2631:2 2632:3 2637:1 2638:2 2640:1 2641:1 2643:3 2645:1 2647:1 2651:1 2654:1 2660:4 2665:3 2668:5 2687:1 2712:1 2744:1 2754:1 2755:1 2762:1 2763:1 2782:1 2790:1 2794:1 2800:1 2808:1 2826:1 2845:3 2871:1 2883:2 2921:1 2925:1 2927:1 2944:1 3021:1 3023:1 3062:2 3082:4 3092:1 3098:3 3117:1 3119:1 3127:1 3130:1 3136:5 3150:1 3164:1 3173:1 3177:1 3189:3 3197:1 3237:1 3246:2 3252:1 3254:1 3256:4 3264:1 3314:4 3355:6 3363:6 3392:2 3426:19 3435:1 3441:1 3457:1 3497:1 3533:2 3542:1 3607:2 3613:1 3639:1 3700:1 3710:2 3713:4 3739:6 3759:1 3764:1 3773:1 3809:1 3821:1 3823:4 3863:1 3894:1 3900:1 3918:1 3944:1 3959:1 3965:1 3975:3 3983:2 3985:1 4003:1 4041:1 4049:1 4053:1 4076:1 4077:1 4089:3 4144:1 4150:1 4152:1 4156:1 4161:1 4165:1 4210:1 4235:1 4245:2 4256:1 4270:1 4271:3 4297:1 4317:1 4323:1 4325:24 4340:1 4347:1 4361:2 4363:1 4364:6 4376:2 4377:12 4379:1 4381:3 4391:2 4405:3 4418:1 4419:2 4423:2 4425:2 4426:2 4438:1 4439:2 4442:1 4444:1 4480:1 4490:1 4491:3 4502:1 4507:1 4537:1 4541:1 4543:1 4544:3 4555:2 4567:2 4575:1 4587:1 4622:1 4630:1 4632:1 4633:1 4635:1 4643:1 4646:1 4652:1 4655:1 4658:1 4674:1 4678:1 4686:1 4730:1 4813:1 4855:1 4870:1 4876:1 4879:1 4880:1 4913:1 4924:1 4926:1 4937:1 5010:8 5027:1 5090:1 5098:1 5106:2 5117:1 5120:2 5152:3 5155:1 5176:1 5198:1 5205:1 5268:2 5269:1 5331:1 5363:2 5367:1 5370:2 5381:1 5390:2 5403:1 5410:1 5433:2 5438:1 5509:1 5510:1 5516:1 5528:1 5545:2 5558:1 5640:2 5645:1 5659:10 5660:1 5699:1 5761:1 5784:1 5797:2 5800:1 5802:2 5821:1 5822:1 5823:5 5824:1 5828:1 5831:2 5840:1 5841:13 5842:1 5844:1 5848:1 5849:3 5880:1 5950:1 5972:1 6050:1 6060:1 6081:3 6082:3 6089:5 6125:1 6142:1 6168:2 6169:13 6177:1 6205:1 6255:1 6301:1 6305:1 6350:1 6357:1 6371:1 6379:1 6383:1 6394:1 6403:1 6404:1 6462:1 6473:1 6480:1 6483:1 6507:1 6515:1 6518:1 6531:2 6540:1 6542:1 6548:1 6568:2 6574:1 6611:1 6617:2 6640:2 6647:1 6672:1 6673:1 6678:1 6686:1 6725:1 6728:1 6733:1 6753:1 6772:1 6776:1 6777:1 6808:1 6826:1 6844:2 6845:1 6868:1 6870:2 6873:1 6959:1 7035:4 7045:1 7068:1 7074:1 7102:1 7139:1 7149:1 7150:1 7157:1 7190:1 7196:1 7200:2 7202:2 7249:1 7254:2 7257:1 7276:3 7278:1 7295:1 7300:1 7316:1 7321:1 7382:1 7386:1 7390:1 7391:1 7394:1 7396:1 7397:1 7401:2 7403:3 7409:1 7410:2 7411:1 7413:1 7427:1 7451:1 7503:1 7509:1 7553:1 7559:1 7579:2 7586:1 7613:1 7615:1 7664:1 7681:1 7684:2 7710:5 7716:3 7722:1 7731:1 7742:2 7764:1 7791:1 7805:1 7846:1 7869:1 7877:2 7879:1 7891:3 7900:1 7907:1 7915:2 7940:1 7947:1 7987:1 7998:1 8005:1 8012:1 8026:2 8032:1 8091:1 8093:1 8137:1 8138:1 8194:2 8215:1 8251:1 8255:5 8263:2 8289:1 8299:1 8320:1 8490:1 8507:1 8512:1 8526:3 8575:1 8577:1 8586:3 8604:1 8629:2 8688:1 8689:1 8714:1 8770:1 8784:1 8791:1 8821:1 8830:1 8831:3 8832:2 8850:1 8861:1 8888:1 8890:1 8898:1 8901:27 8902:1 8908:1 8920:5 8923:15 8929:1 8933:1 8943:1 8952:1 8978:3 8979:1 9014:1 9034:1 9051:1 9059:1 9082:1 9085:1 9091:1 9149:3 9153:4 9161:1 9206:1 9209:2 9212:1 9234:1 9251:1 9285:1 9304:1 9341:1 9343:1 9362:1 9368:1 9370:3 9386:1 9405:1 9416:1 9444:1 9448:1 9454:1 9470:1 9484:9 9511:1 9524:1 9525:1 9551:2 9589:1 9594:1 9605:2 9616:1 9630:2 9639:3 9664:1 9672:1 9678:3 9687:1 9709:2 9715:2 9728:1 9732:1 9733:1 9734:1 9738:1 9747:1 9748:1 9754:2 9765:1 9777:1 9778:2 9788:1 9792:1 9809:2 9829:1 9836:1 9841:3 9859:1 9878:2 9880:1 9881:3 9882:1 9884:2 9885:2 9894:1 9897:2 9899:1 9903:1 9919:1 9925:1 9934:2 9944:1 9945:1 9951:1 9959:1 9973:1 9977:2 10002:2 10024:2 10044:1 10053:3 10056:1 10065:1 10067:1 10069:1 10088:1 10092:1 10121:1 10128:2 10138:1 10139:1 10144:1 10150:2 10161:2 10162:1 10166:1 10204:1 10208:1 10209:2 10214:1 10218:1 10219:1 10221:3 10229:1 10252:1 10254:1 10257:4 10270:1 10295:1 10367:1 10377:2 10397:1 10399:1 10410:1 10412:1 10438:1 10441:1 10461:1 10520:2 10554:1 10558:1 10565:1 10588:3 10610:1 10615:1 10619:1 10627:1 10634:1 10653:1 10671:2 10673:1 10701:1 10710:1 10756:1 10768:1 10845:1 10846:1 10851:1 10857:1 10858:1 10862:1 10864:2 10879:1 10900:1 10903:1 10937:1 10939:1 10942:1 10947:1 10959:1 11009:13 11016:1 11039:1 11047:3 11056:2 11083:1 11104:2 11124:1 11154:11 11171:1 11198:1 11210:2 11225:1 11226:1 11229:3 11249:1 11316:1 11318:3 11319:1 11359:5 11363:1 11366:2 11368:1 11374:1 11382:1 11400:1 11417:1 11422:3 11426:1 11427:1 11429:1 11464:3 11470:1 11489:1 11492:2 11496:1 11513:1 11545:1 11551:2 11553:1 11580:7 11582:1 11583:4 11595:1 11597:1 11697:2 11703:1 11728:1 11754:1 11761:1 11775:3 11789:1 11800:1 11832:1 11897:2 11914:3 11921:1 11926:1 11932:1 11948:1 11955:1 11967:1 11970:1 11994:2 12001:2 12014:1 12043:1 12044:1 12052:2 12075:1 12098:5 12117:2 12119:3 12121:1 12125:1 12128:1 12145:1 12147:1 12150:1 12174:1 12197:1 12200:1 12211:3 12229:2 12241:2 12249:5 12266:1 12314:1 12316:1 12322:1 12345:1 12346:1 12347:1 12352:1 12396:1 12459:1 12468:1 12476:1 12492:1 12498:2 12499:1 12512:3 12531:3 12534:4 12553:1 12556:1 12596:2 12610:1 12623:2 12635:1 12642:1 12664:2 12676:2 12706:1 12740:1 12743:1 12770:1 12807:1 12818:1 12821:1 12825:1 12826:1 12850:1 12855:1 12863:1 12883:1 12888:1 12892:1 12893:1 12919:2 12953:1 12960:1 12974:2 12980:1 12981:1 12983:1 12990:1 12991:1 13014:1 13021:1 13057:1 13061:1 13063:4 13067:1 13100:1 13122:1 13125:1 13127:1 13135:1 13138:1 13153:1 13176:1 13204:1 13207:1 13218:3 13234:2 13252:3 13254:2 13297:1 13318:1 13327:1 13328:2 13341:1 13352:1 13354:1 13363:1 13366:1 13368:4 13369:1 13376:2 13379:4 13382:1 13387:1 13395:1 13403:2 13428:2 13447:3 13454:1 13463:2 13507:1 13518:4 13536:1 13537:1 13576:1 13580:1 13590:3 13592:1 13607:1 13629:1 13645:1 13652:1 13690:1 13692:1 13717:1 13759:1 13766:1 13832:2 13847:1 13867:1 13872:1 13874:1 13878:1 13913:3 13914:3 13916:13 13923:4 13940:1 13956:1 13962:1 13972:2 14021:1 14041:1 14043:1 14073:1 14074:1 14082:5 14083:2 14098:1 14106:1 14167:1 14172:1 14198:1 14207:1 14219:1 14222:1 14228:1 14235:1 14292:1 14312:1 14326:1 14329:1 14369:1 14373:2 14382:1 14388:1 14441:1 14506:6 14519:1 14523:1 14527:2 14530:1 14546:1 14565:2 14566:3 14592:1 14629:1 14660:1 14667:2 14693:1 14705:1 14746:1 14748:1 14751:2 14775:1 14785:1 14819:1 14870:1 14920:1 14930:1 14948:1 14990:1 15002:2 15014:1 15017:2 15023:1 15044:1 15045:1 15080:1 15086:1 15088:2 15140:1 15146:1 15154:1 15155:2 15156:3 15162:2 15164:1 15171:1 15178:2 15182:1 15192:1 15195:1 15198:1 15204:2 15234:5 15238:1 15247:1 15250:1 15266:1 15280:1 15301:2 15317:1 15338:1 15355:1 15365:1 15380:1 15400:3 15420:1 15430:3 15441:1 15450:1 15464:1 15465:1 15466:1 15480:1 15486:1 15502:1 15503:1 15514:2 15529:1 15538:2 15576:1 15589:1 15597:1 15598:1 15599:2 15600:1 15602:1 15636:1 15659:1 15663:1 15664:1 15683:1 15684:1 15688:1 15701:2 15706:1 15707:1 15726:1 15739:5 15750:1 15797:1 15821:1 15822:1 15827:1 15851:1 15856:2 15857:1 15861:3 15891:1 15908:1 15918:1 15921:1 15933:2 15934:2 15938:2 15939:4 15950:1 15970:1 15977:3 15997:1 16035:2 16037:1 16043:1 16046:1 16051:1 16118:1 16202:2 16220:1 16246:1 16263:1 16279:1 16341:1 16382:1 16392:1 16393:1 16401:1 16402:1 16408:1 16412:3 16414:1 16416:1 16424:1 16442:2 16467:1 16483:1 16491:1 16495:1 16525:1 16561:1 16570:1 16583:1 16612:1 16618:1 16621:1 16631:1 16640:2 16661:1 16675:1 16692:1 16718:1 16775:2 16828:1 16874:1 16885:1 16939:1 16951:1 16970:2 17000:3 17005:2 17007:1 17010:1 17012:1 17013:1 17031:1 17059:1 17078:1 17098:2 17109:1 17137:1 17163:1 17167:1 17191:1 17194:1 17202:1 17207:1 17235:1 17237:1 17246:1 17255:1 17280:1 17283:1 17347:1 17353:3 17355:2 17360:1 17379:2 17380:1 17385:1 17433:1 17435:1 17441:1 17479:1 17496:1 17501:3 17512:2 17546:1 17566:1 17591:1 17611:1 17627:1 17633:1 17634:1 17653:1 17662:2 17685:4 17687:2 17689:1 17694:1 17722:2 17736:1 17740:2 17758:1 17763:1 17796:1 17803:1 17829:2 17833:1 17835:1 17844:4 17854:1 17864:1 17873:1 17884:1 17885:1 17889:1 17890:5 17892:1 17896:1 17900:1 17901:1 17902:1 17913:2 17919:4 17968:2 17996:1 18012:1 18022:1 18024:2 18030:3 18060:1 18073:1 18096:1 18101:2 18127:2 18146:1 18158:1 18175:1 18182:1 18187:5 18198:2 18199:2 18217:1 18222:1 18225:1 18263:13 18291:1 18300:2 18305:1 18324:2 18341:35 18361:3 18390:1 18418:1 18424:1 18427:2 18455:1 18460:1 18467:1 18473:1 18474:1 18477:1 18482:2 18486:1 18513:1 18516:1 18518:1 18523:1 18530:1 18543:1 18544:1 18565:1 18567:1 18604:1 18610:5 18643:1 18648:2 18692:1 18696:1 18762:1 18797:1 18798:1 18808:1 18822:2 18826:1 18865:1 18867:1 18916:1 18922:1 18927:1 18946:2 18996:1 18997:1 19000:1 19004:2 19006:1 19016:1 19020:1 19027:1 19042:1 19048:8 19072:1 19084:1 19094:2 19136:1 19143:1 19165:1 19167:1 19170:3 19177:1 19179:2 19182:1 19185:1 19206:1 19222:1 19232:1 19243:2 19245:2 19307:1 19374:1 19382:2 19407:1 19434:1 19440:1 19449:1 19457:1 19461:1 19466:1 19469:3 19480:1 19490:1 19497:3 19501:1 19504:1 19542:1 19550:1 19564:1 19587:1 19595:1 19619:4 19640:1 19675:1 19684:1 19685:1 19711:3 19718:1 19726:1 19730:2 19735:1 19737:1 19759:1 19761:1 19776:1 19789:2 19817:1 19840:1 19841:1 19926:2 19936:1 19944:1 19956:1 19962:1 20016:1 20017:2 20020:1 20021:1 20037:8 20052:1 20070:1 20103:1 20130:1 20131:1 20153:1 20160:1 20179:1 20191:1 20210:1 20216:1 20249:1 20255:2 20261:3 20265:1 20340:1 20382:2 20383:1 20392:1 20420:1 20429:1 20450:1 20456:2 20474:2 20480:1 20488:1 20489:2 20507:1 20531:1 20532:2 20579:1 20585:1 20595:1 20621:3 20630:1 20645:1 20649:1 20651:1 20655:3 20676:1 20677:1 20693:1 20695:1 20749:1 20790:1 20792:5 20821:1 20860:1 20865:1 20869:1 20884:1 20906:1 20912:1 20922:1 20942:1 20946:3 20948:1 20950:2 20965:2 20976:1 20980:2 21013:1 21020:2016 21028:1 21044:1 21046:2 21047:1 21054:1 21066:2 21097:1 21108:1 21136:3 21178:3 21201:2 21212:1 21239:1 21242:1 21268:3 21277:1 21284:3 21287:1 21340:1 21341:1 21384:3 21418:1 21442:2 21454:1 21463:1 21474:1 21484:1 21490:1 21494:1 21495:1 21511:1 21539:1 21551:1 21554:1 21563:4 21586:1 21660:1 21661:1 21675:1 21678:2 21749:1 21779:1 21795:1 21797:1 21803:2 21810:1 21819:2 21832:2 21835:1 21836:3 21841:1 21857:1 21867:6 21895:1 21896:9 21929:1 21930:2 21934:1 21950:1 21965:1 21970:1 21991:1 21995:1 22000:1 22002:1 22004:1 22015:1 22029:2 22060:1 22068:2 22089:1 22101:2 22131:1 22136:1 22194:1 22198:1 22244:1 22262:1 22264:8 22272:1 22308:1 22317:1 22340:1 22352:1 22369:1 22377:5 22399:1 22422:1 22443:1 22444:1 22467:1 22476:1 22478:1 22484:1 22485:1 22495:1 22534:1 22542:4 22547:1 22556:1 22561:1 22581:2 22582:1 22610:1 22616:1 22623:1 22624:1 22651:1 22676:1 22680:1 22687:2 22701:1 22702:1 22708:6 22745:1 22775:1 22781:1 22800:8 22822:2 22825:2 22844:1 22845:1 22863:9 22881:1 22910:1 22922:1 22933:1 22945:1 22999:1 23005:1 23024:2 23043:1 23056:1 23105:1 23153:3 23166:1 23183:1 23185:1 23198:1 23199:1 23242:1 23245:1 23265:1 23335:1 23341:1 23369:1 23383:1 23401:1 23407:1 23439:1 23457:1 23490:3 23512:2 23522:1 23525:1 23532:9 23546:3 23549:1 23550:1 23569:4 23574:1 23595:1 23638:1 23653:2 23657:1 23673:2 23681:1 23682:1 23711:5 23719:1 23722:2 23765:1 23803:1 23808:1 23832:2 23836:1 23843:1 23859:1 23873:1 23882:1 23886:1 23898:1 23940:1 23944:1 23948:1 24003:1 24009:1 24063:1 24065:4 24070:2 24073:2 24084:1 24087:1 24094:1 24100:1 24143:1 24154:2 24164:1 24181:1 24195:1 24201:1 24202:1 24216:1 24218:3 24221:2 24255:1 24271:1 24311:2 24328:1 24339:1 24341:1 24360:1 24363:9 24377:1 24391:1 24396:1 24408:1 24427:2 24447:1 24472:1 24478:1 24488:2 24505:1 24542:1 24543:4 24556:2 24563:2 24567:1 24623:1 24649:2 24659:1 24662:7 24670:2 24682:1 24700:1 24702:1 24703:2 24707:1 24714:1 24719:2 24722:1 24732:1 24747:1 24752:2 24774:1 24824:4 24825:1 24834:1 24855:1 24861:1 24869:2 24872:1 24888:1 24894:1 24908:3 24923:1 24935:1 24979:13 24980:1 24984:1 25005:1 25018:1 25021:1 25026:1 25033:1 25047:1 25057:1 25065:1 25071:2 25092:1 25094:2 25101:1 25104:1 25110:2 25121:2 25125:1 25126:1 25129:5 25148:2 25156:3 25168:2 25190:1 25201:1 25206:1 25209:1 25218:1 25233:1 25243:1 25245:2 25252:1 25256:1 25270:2 25275:1 25289:3 25303:3 25318:2 25328:1 25340:1 25368:1 25369:1 25387:1 25459:1 25473:3 25485:1 25501:2 25503:1 25526:1 25539:1 25581:1 25588:1 25595:10 25597:1 25598:2 25620:1 25634:1 25653:1 25655:1 25667:1 25683:1 25689:1 25695:2 25732:2 25755:5 25780:1 25788:1 25804:1 25828:2 25853:1 25871:1 25907:1 25928:1 25929:1 25936:1 26001:1 26015:1 26017:3 26024:1 26043:1 26044:1 26075:2 26094:1 26133:1 26135:2 26157:1 26160:1 26165:1 26174:2 26179:2 26184:1 26187:1 26230:1 26243:1 26254:1 26255:1 26277:4 26283:1 26309:1 26315:1 26319:2 26324:1 26352:2 26359:1 26360:1 26364:1 26415:2 26424:12 26498:1 26532:1 26534:1 26539:1 26605:1 26612:1 26624:1 26635:1 26636:1 26642:1 26679:1 26694:1 26721:1 26748:1 26751:2 26758:2 26794:2 26814:1 26818:1 26880:1 26897:1 26924:2 26929:1 26931:1 26936:1 26938:2 27009:1 27014:1 27022:1 27028:1 27072:1 27112:1 27114:3 27122:1 27133:1 27141:3 27159:1 27225:1 27251:1 27262:1 27303:5 27360:1 27377:1 27388:1 27389:1 27397:3 27398:2 27401:1 27419:1 27427:1 27437:1 27439:2 27447:1 27451:1 27456:1 27488:1 27489:2 27502:1 27512:1 27516:1 27522:1 27533:1 27569:1 27574:1 27575:1 27602:4 27612:2 27618:1 27620:1 27641:1 27676:1 27716:1 27727:1 27728:1 27753:1 27757:1 27763:1 27769:1 27804:1 27809:1 27813:1 27817:1 27846:1 27851:1 27881:1 27884:1 27917:2 27933:2 27957:1 27985:1 27989:1 27997:1 28007:1 28015:1 28021:1 28032:3 28068:2 28071:1 28094:1 28132:1 28145:2 28174:1 28242:1 28253:1 28255:1 28273:4 28327:2 28331:3 28335:1 28342:1 28348:1 28414:1 28442:1 28500:1 28503:2 28509:4 28512:3 28518:1 28540:1 28557:1 28563:2 28591:1 28602:1 28608:2 28609:1 28635:3 28641:4 28642:1 28652:1 28666:1 28671:1 28680:1 28697:2 28725:4 28728:1 28734:1 28739:1 28740:1 28753:2 28754:1 28778:1 28811:2 28847:4 28870:2 28872:2 28902:1 28913:1 28937:1 28945:2 28994:2 28998:3 29029:1 29052:1 29060:2 29063:1 29085:1 29088:2 29104:1 29105:1 29120:1 29123:1 29146:1 29147:1 29155:1 29156:2 29161:1 29165:1 29174:1 29189:4 29195:1 29210:1 29219:1 29261:1 29272:1 29291:1 29316:1 29326:1 29334:1 29365:5 29374:1 29409:1 29417:2 29439:1 29472:2 29491:1 29498:1 29503:1 29518:2 29519:2 29543:1 29546:1 29564:1 29574:2 29637:2 29653:4 29655:2 29675:2 29676:1 29677:4 29679:2 29685:1 29732:2 29759:1 29771:1 29781:2 29797:1 29821:2 29842:1 29850:1 29861:1 29882:1 29923:1 29964:1 30023:1 30051:1 30063:1 30079:1 30121:1 30129:1 30183:1 30221:1 30235:1 30294:1 30295:2 30334:1 30367:1 30371:1 30393:2 30399:1 30412:1 30415:1 30418:6 30450:2 30451:1 30524:12 30525:1 30529:3 30531:1 30560:1 30643:1 30647:2 30648:3 30651:1 30684:1 30706:1 30707:1 30719:1 30721:1 30724:1 30728:1 30738:1 30739:1 30741:1 30745:1 30753:1 30788:2 30800:1 30818:1 30832:1 30846:2 30879:1 30895:1 30906:1 30916:1 30958:1 30978:1 30997:1 30998:1 31021:1 31088:4 31104:1 31132:1 31168:1 31176:1 31200:1 31204:1 31207:1 31243:1 31259:1 31262:2 31302:1 31317:1 31359:2 31403:1 31476:1 31477:1 31489:3 31493:1 31514:1 31541:1 31544:16 31545:2 31546:2 31549:1 31552:3 31555:1 31566:1 31586:1 31587:9 31597:1 31602:1 31603:1 31613:1 31644:1 31646:1 31651:2 31661:1 31662:1 31681:1 31697:1 31702:2 31713:2 31719:1 31754:2 31759:2 31801:1 31802:1 31829:1 31849:1 31854:1 31863:2 31900:1 31901:1 31951:1 31957:2 31959:1 31964:4 31969:1 31971:1 31990:1 31994:1 32000:1 32012:1 32028:1 32039:3 32110:2 32115:3 32118:1 32119:1 32163:1 32175:1 32178:1 32214:1 32257:1 32263:3 32279:1 32310:2 32314:1 32321:2 32342:2 32363:1 32374:1 32381:1 32429:1 32445:1 32471:1 32505:3 32510:1 32539:2 32543:1 32582:1 32590:1 32596:1 32605:3 32628:1 32662:1 32676:2 32684:1 32686:1 32701:1 32713:1 32727:1 32733:4 32735:1 32740:1 32755:2 32811:1 32821:4 32831:1 32891:1 32897:1 32902:1 32903:1 32905:3 32921:1 32957:1 32966:1 32972:1 32973:1 32977:1 33021:1
16 26:1 27:1 66:1 78:1 85:4 104:1 109:1 145:1 173:1 176:1 219:1 235:1 269:4 338:1 351:3 375:1 387:1 397:2 398:1 399:2 427:1 443:1 468:2 475:1 484:1 502:3 505:1 509:1 525:1 551:2 567:1 575:1 577:1 581:1 584:1 589:1 591:1 628:1 629:1 713:1 723:3 751:2 757:1 762:4 766:1 774:1 779:1 790:1 805:1 812:1 821:1 832:1 869:2 886:1 929:1 937:1 944:1 949:1 957:1 970:1 984:1 988:1 1000:1 1007:1 1051:1 1054:1 1069:2 1078:3 1081:1 1082:2 1084:1 1114:1 1139:3 1143:1 1149:1 1164:1 1180:2 1185:1 1202:1 1221:1 1250:1 1254:1 1285:1 1288:1 1301:1 1341:1 1353:3 1359:1 1366:1 1369:2 1377:2 1387:1 1388:4 1398:1 1412:1 1426:3 1457:1 1464:1 1466:1 1469:1 1472:2 1475:1 1487:1 1488:2 1489:2 1506:2 1512:1 1524:1 1546:1 1560:1 1572:1 1586:1 1600:1 1633:1 1642:1 1676:3 1683:1 1695:1 1711:1 1733:1 1742:1 1754:1 1760:5 1767:1 1773:1 1774:2 1775:1 1776:1 1780:2 1802:3 1835:1 1839:3 1853:1 1863:1 1867:1 1871:2 1879:2 1907:1 1914:1 1919:2 1924:3 1927:2 1941:1 1953:1 1963:2 1966:3 1968:1 1975:1 1976:1 2018:1 2038:1 2050:2 2053:1 2055:1 2058:1 2069:2 2097:1 2098:1 2122:1 2127:1 2128:1 2139:1 2142:1 2143:1 2150:1 2156:1 2174:1 2175:1 2180:1 2187:1 2201:1 2211:1 2215:1 2226:1 2232:1 2234:4 2245:1 2262:1 2263:1 2282:1 2317:1 2320:1 2323:1 2345:1 2354:2 2361:2 2368:3 2369:1 2407:1 2414:1 2435:1 2439:1 2441:3 2443:1 2444:2 2446:1 2475:3 2501:2 2531:1 2566:1 2572:1 2628:1 2629:1 2630:1 2631:2 2632:3 2637:1 2638:2 2640:1 2641:1 2643:5 2645:1 2647:1 2651:1 2654:1 2660:4 2665:3 2668:5 2687:1 2712:1 2728:1 2744:1 2754:1 2755:1 2762:1 2763:1 2782:1 2790:1 2794:1 2800:1 2808:1 2826:1 2845:3 2871:1 2883:2 2921:1 2925:1 2927:1 2944:1 3021:1 3023:1 3062:2 3082:4 3092:1 3098:3 3117:1 3119:1 3127:1 3130:1 3136:5 3150:1 3164:1 3173:1 3177:1 3189:3 3197:1 3237:1 3246:2 3252:1 3254:1 3256:4 3264:2 3314:4 3336:1 3355:7 3363:6 3392:2 3426:19 3435:1 3441:1 3457:1 3497:1 3533:2 3542:1 3607:2 3613:1 3639:1 3693:1 3700:1 3710:2 3713:4 3721:1 3739:6 3759:1 3764:1 3773:1 3809:1 3821:1 3823:4 3863:1 3894:1 3900:1 3918:1 3944:1 3959:1 3965:1 3975:3 3983:2 3985:1 4003:3 4041:1 4049:1 4053:2 4076:1 4077:1 4089:3 4125:1 4144:1 4150:1 4152:3 4156:1 4161:1 4164:1 4165:1 4210:1 4235:1 4245:2 4256:1 4270:1 4271:3 4297:1 4317:1 4323:1 4325:26 4340:1 4347:1 4361:2 4363:1 4364:6 4376:2 4377:13 4379:1 4381:3 4391:2 4405:3 4418:1 4419:2 4423:2 4425:2 4426:2 4438:1 4439:2 4442:1 4444:1 4480:2 4490:1 4491:3 4502:1 4507:1 4537:1 4541:1 4543:1 4544:3 4555:2 4567:2 4575:1 4587:1 4622:1 4630:1 4632:1 4633:1 4635:1 4643:1 4646:1 4652:1 4655:1 4658:2 4674:3 4678:1 4686:1 4730:1 4813:1 4834:1 4852:1 4855:1 4870:1 4876:1 4879:1 4880:1 4913:1 4924:1 4926:1 4937:1 5010:8 5027:1 5090:1 5098:1 5106:2 5117:1 5120:2 5138:1 5152:3 5155:1 5176:1 5198:1 5205:1 5268:2 5269:1 5331:1 5363:2 5367:1 5370:2 5381:1 5390:2 5403:1 5410:1 5433:2 5438:1 5509:1 5510:1 5516:1 5528:1 5545:2 5558:1 5640:2 5645:1 5659:10 5660:1 5699:1 5761:1 5784:3 5797:2 5800:1 5802:3 5821:1 5822:1 5823:5 5824:1 5828:1 5831:2 5840:1 5841:14 5842:1 5844:1 5848:2 5849:3 5877:1 5880:2 5950:1 5972:1 6050:1 6060:1 6081:3 6082:3 6089:5 6125:1 6142:1 6168:2 6169:14 6177:1 6205:1 6255:1 6301:1 6305:1 6350:1 6357:1 6371:1 6379:1 6383:1 6394:1 6403:1 6404:1 6462:1 6473:1 6480:1 6483:1 6507:1 6515:1 6518:1 6531:2 6540:1 6542:1 6548:1 6568:2 6574:1 6611:1 6617:2 6640:2 6647:1 6672:1 6673:1 6678:1 6686:1 6725:1 6728:1 6733:1 6753:1 6772:1 6776:1 6777:1 6808:1 6826:1 6844:2 6845:1 6868:1 6870:2 6873:1 6959:1 7029:1 7034:1 7035:4 7043:1 7045:1 7068:1 7074:1 7102:1 7139:1 7149:1 7150:1 7157:1 7190:2 7196:1 7200:2 7202:2 7249:1 7254:2 7257:1 7276:3 7278:1 7295:1 7300:1 7316:1 7321:1 7382:1 7386:1 7387:1 7390:1 7391:1 7392:1 7394:1 7396:1 7397:1 7401:2 7403:3 7409:1 7410:4 7411:1 7413:1 7427:1 7451:1 7503:1 7509:1 7553:1 7559:1 7579:2 7586:1 7613:1 7615:1 7664:1 7681:1 7684:2 7687:1 7710:5 7716:3 7722:1 7731:1 7742:2 7764:1 7790:1 7791:1 7805:1 7825:1 7846:1 7869:1 7877:2 7879:1 7891:3 7900:1 7907:1 7915:2 7940:1 7947:1 7987:1 7998:1 8005:1 8012:1 8019:1 8026:2 8032:1 8091:1 8093:1 8110:1 8111:2 8137:1 8138:1 8194:2 8215:1 8251:1 8255:5 8263:2 8289:1 8299:1 8320:1 8358:1 8490:1 8499:1 8507:1 8512:1 8526:3 8575:1 8577:1 8586:3 8604:1 8629:2 8674:2 8688:1 8689:1 8714:1 8770:1 8784:1 8791:3 8821:1 8830:1 8831:3 8832:2 8850:1 8861:1 8888:1 8890:1 8898:1 8901:29 8902:1 8908:1 8920:6 8923:15 8929:1 8933:1 8943:1 8952:1 8978:3 8979:1 9014:1 9034:1 9051:1 9059:1 9068:1 9082:1 9085:1 9091:1 9149:3 9153:4 9161:1 9206:1 9209:2 9212:1 9234:1 9251:1 9285:1 9304:1 9341:1 9343:3 9362:1 9368:1 9370:4 9386:1 9405:1 9416:2 9444:1 9448:1 9454:1 9470:1 9484:11 9511:1 9524:2 9525:1 9551:2 9589:1 9594:1 9605:2 9616:1 9630:2 9639:3 9664:1 9672:1 9678:3 9687:2 9709:2 9715:2 9728:1 9732:1 9733:1 9734:1 9738:1 9747:1 9748:1 9754:2 9765:1 9777:1 9778:2 9788:1 9792:1 9809:2 9829:1 9836:1 9841:3 9859:1 9875:1 9878:2 9880:1 9881:3 9882:1 9884:2 9885:3 9894:1 9897:2 9899:1 9903:2 9919:1 9925:1 9934:2 9944:1 9945:1 9951:1 9959:1 9973:1 9977:2 10002:2 10024:2 10044:1 10053:3 10056:1 10065:1 10067:1 10069:1 10088:1 10092:1 10121:1 10128:2 10138:1 10139:1 10144:1 10150:2 10161:2 10162:1 10166:1 10204:1 10208:3 10209:2 10214:3 10218:1 10219:2 10221:3 10229:1 10252:1 10254:1 10255:1 10257:4 10270:1 10295:1 10367:1 10377:2 10397:1 10399:1 10410:1 10412:1 10438:1 10441:1 10461:1 10520:2 10554:1 10558:1 10565:3 10580:1 10588:4 10610:1 10615:1 10619:1 10627:1 10634:1 10653:1 10671:2 10673:1 10701:1 10710:1 10726:1 10756:1 10768:1 10845:1 10846:1 10851:1 10857:1 10858:1 10862:1 10864:2 10879:1 10900:1 10903:1 10937:1 10939:1 10942:1 10947:1 10959:1 11009:14 11016:1 11039:1 11047:3 11056:2 11083:1 11104:2 11124:1 11154:11 11171:1 11198:1 11210:2 11225:1 11226:1 11229:3 11230:1 11249:1 11316:1 11318:3 11319:1 11359:5 11363:2 11366:2 11368:1 11374:1 11382:1 11392:2 11400:1 11402:1 11408:1 11417:1 11422:3 11426:1 11427:1 11429:1 11464:3 11470:1 11489:1 11492:2 11496:1 11513:1 11545:1 11551:2 11553:1 11580:8 11582:1 11583:4 11595:1 11597:1 11697:2 11703:1 11728:1 11754:1 11761:1 11775:4 11789:1 11800:1 11832:1 11897:2 11914:3 11921:1 11926:1 11932:1 11948:1 11955:1 11967:1 11970:1 11994:2 12001:2 12014:1 12043:1 12044:1 12052:2 12075:1 12098:5 12117:2 12119:3 12121:2 12125:1 12128:1 12145:1 12147:1 12150:1 12174:1 12197:1 12200:1 12211:3 12229:2 12241:2 12249:5 12266:1 12314:1 12316:1 12322:1 12345:1 12346:1 12347:1 12352:1 12396:1 12408:1 12459:1 12468:1 12476:1 12492:1 12498:2 12499:1 12512:4 12531:3 12534:4 12553:1 12556:1 12596:2 12610:1 12623:2 12635:1 12642:1 12664:2 12676:2 12706:1 12740:1 12743:1 12770:1 12807:1 12818:1 12821:1 12825:2 12826:1 12850:1 12855:1 12863:1 12883:1 12888:1 12892:1 12893:1 12919:2 12953:1 12960:1 12974:2 12980:1 12981:1 12983:1 12990:1 12991:1 13014:1 13021:3 13057:1 13061:1 13063:4 13067:1 13100:1 13122:1 13125:1 13127:1 13135:1 13138:2 13153:1 13176:1 13204:1 13207:1 13218:3 13234:2 13252:3 13254:2 13284:1 13297:1 13318:3 13327:1 13328:3 13341:1 13352:1 13354:1 13363:1 13366:1 13368:4 13369:1 13376:2 13379:4 13382:1 13387:1 13395:1 13403:3 13428:2 13447:4 13454:1 13463:2 13507:1 13518:4 13528:1 13536:1 13537:1 13576:1 13580:1 13590:3 13592:1 13607:1 13629:1 13645:1 13652:1 13690:2 13692:1 13717:1 13759:1 13766:1 13832:2 13847:1 13867:1 13872:1 13874:1 13878:1 13913:3 13914:3 13916:14 13923:4 13940:1 13956:1 13962:1 13972:2 14021:1 14041:1 14043:1 14073:1 14074:1 14082:5 14083:2 14098:1 14106:1 14167:3 14172:1 14198:1 14207:1 14219:2 14222:1 14228:1 14235:1 14265:1 14292:1 14312:3 14326:1 14329:1 14369:1 14373:2 14382:1 14388:1 14399:1 14441:1 14506:6 14519:1 14523:1 14527:2 14530:1 14546:1 14565:2 14566:3 14588:1 14592:1 14629:1 14660:1 14667:2 14693:1 14705:1 14746:1 14748:1 14751:2 14775:1 14785:1 14819:1 14870:1 14920:1 14930:1 14948:1 14970:1 14990:1 15002:2 15014:1 15017:2 15023:1 15044:1 15045:1 15080:1 15086:1 15088:2 15140:1 15146:1 15154:1 15155:2 15156:4 15162:2 15164:1 15171:1 15178:2 15182:1 15192:1 15195:1 15198:1 15204:2 15234:5 15238:1 15247:1 15250:1 15266:1 15280:1 15301:2 15317:1 15338:3 15355:1 15365:1 15380:1 15400:3 15420:1 15430:3 15441:1 15450:1 15464:1 15465:2 15466:2 15480:1 15486:1 15502:1 15503:1 15514:2 15529:1 15538:2 15576:1 15589:1 15597:1 15598:1 15599:2 15600:1 15602:1 15636:1 15659:1 15663:1 15664:1 15683:1 15684:1 15688:1 15701:2 15706:1 15707:1 15726:1 15739:5 15750:1 15797:1 15821:1 15822:1 15827:1 15851:1 15856:2 15857:1 15861:3 15891:1 15906:1 15908:1 15918:1 15921:1 15933:2 15934:2 15938:2 15939:4 15950:1 15970:1 15977:3 15997:1 16035:2 16037:1 16043:1 16046:1 16051:1 16070:2 16118:1 16202:2 16220:1 16246:1 16263:1 16279:1 16341:1 16382:1 16392:1 16393:1 16401:1 16402:1 16408:1 16412:3 16414:1 16416:1 16424:1 16442:2 16467:1 16483:1 16491:1 16495:1 16525:1 16561:1 16570:1 16583:1 16612:1 16618:1 16621:1 16631:1 16640:2 16661:1 16675:1 16692:1 16718:1 16775:2 16828:1 16874:1 16885:1 16939:1 16951:1 16970:2 17000:3 17005:2 17007:1 17010:1 17012:1 17013:1 17031:1 17059:1 17078:1 17098:2 17109:3 17137:1 17163:1 17167:1 17191:1 17194:1 17202:1 17207:1 17235:1 17237:1 17246:1 17255:1 17280:1 17283:1 17347:1 17353:3 17355:2 17360:1 17379:2 17380:1 17385:1 17433:3 17435:1 17441:1 17479:1 17496:1 17501:3 17512:2 17546:1 17566:2 17591:1 17611:1 17627:1 17633:1 17634:1 17653:1 17662:2 17685:6 17687:3 17689:1 17694:1 17722:2 17736:1 17740:2 17758:3 17763:1 17796:1 17803:1 17829:2 17833:1 17835:1 17844:4 17854:1 17864:1 17873:1 17884:1 17885:2 17889:1 17890:5 17892:1 17896:1 17900:1 17901:1 17902:1 17913:2 17919:4 17968:2 17996:1 18012:2 18022:1 18024:2 18030:3 18060:2 18073:1 18096:1 18101:2 18127:2 18146:1 18158:1 18175:1 18182:1 18187:5 18198:2 18199:2 18217:1 18222:1 18225:1 18263:14 18291:1 18300:2 18305:1 18324:2 18341:37 18361:3 18390:1 18418:1 18424:1 18427:2 18455:1 18460:1 18467:1 18473:1 18474:2 18477:1 18482:2 18486:1 18501:1 18513:1 18516:1 18518:1 18523:1 18526:1 18530:1 18543:1 18544:1 18565:1 18567:1 18604:1 18610:5 18643:1 18648:2 18692:1 18696:1 18762:1 18797:1 18798:1 18808:1 18822:2 18826:1 18865:1 18867:1 18908:1 18916:1 18922:3 18927:1 18946:2 18968:2 18996:1 18997:1 19000:1 19004:2 19006:1 19016:1 19020:1 19027:1 19042:1 19048:8 19072:1 19084:1 19094:2 19136:1 19143:1 19165:1 19167:1 19170:3 19177:1 19179:2 19182:1 19185:1 19206:1 19222:1 19232:1 19243:2 19245:2 19307:1 19374:1 19382:2 19407:1 19434:1 19440:1 19449:1 19457:1 19461:1 19466:1 19469:3 19480:1 19490:1 19497:3 19501:1 19504:1 19542:1 19550:1 19564:1 19587:2 19595:1 19619:4 19640:1 19675:1 19684:1 19685:1 19711:3 19715:1 19718:1 19726:1 19730:2 19735:1 19737:1 19759:1 19761:1 19776:1 19789:2 19817:1 19840:1 19841:2 19926:2 19936:1 19944:1 19956:1 19962:1 20016:1 20017:2 20020:1 20021:1 20037:8 20052:1 20070:1 20103:1 20118:1 20130:1 20131:1 20153:1 20160:1 20179:1 20191:1 20210:1 20216:1 20249:1 20255:2 20261:4 20265:1 20340:1 20382:2 20383:1 20392:1 20420:1 20429:1 20450:1 20456:2 20474:2 20480:1 20488:1 20489:2 20507:1 20531:1 20532:2 20579:1 20585:1 20595:1 20621:3 20630:1 20645:3 20649:1 20651:1 20655:3 20676:1 20677:1 20693:1 20695:1 20749:1 20790:1 20792:6 20821:1 20852:1 20860:1 20865:1 20869:1 20884:1 20906:1 20912:1 20922:1 20942:1 20946:3 20948:1 20950:2 20965:2 20976:1 20980:2 21013:1 21020:2064 21028:1 21044:1 21046:2 21047:1 21054:1 21066:2 21097:1 21108:1 21136:3 21147:1 21178:3 21201:2 21212:1 21239:2 21242:1 21268:3 21277:1 21284:3 21287:1 21340:1 21341:1 21384:3 21418:1 21442:2 21454:1 21463:1 21474:1 21484:1 21490:1 21494:1 21495:1 21511:1 21539:1 21551:2 21554:1 21563:4 21586:1 21660:1 21661:1 21675:1 21678:2 21749:1 21779:1 21795:1 21797:1 21803:2 21810:1 21819:2 21832:2 21835:1 21836:3 21841:1 21857:1 21867:8 21895:1 21896:10 21929:1 21930:3 21934:1 21950:1 21965:1 21970:3 21991:1 21995:1 22000:1 22002:1 22004:1 22008:1 22015:1 22029:2 22060:1 22068:2 22089:1 22101:2 22131:1 22133:1 22136:1 22194:1 22198:1 22244:1 22262:1 22264:8 22272:1 22308:1 22317:1 22340:1 22352:1 22369:1 22377:5 22399:1 22422:1 22443:1 22444:1 22467:1 22476:1 22478:1 22484:1 22485:1 22495:1 22534:1 22542:4 22547:1 22556:1 22561:1 22581:2 22582:1 22610:1 22616:1 22623:1 22624:1 22651:1 22676:1 22680:1 22687:2 22701:1 22702:1 22708:6 22745:1 22775:1 22781:1 22800:8 22809:1 22822:2 22825:2 22844:1 22845:1 22863:9 22881:1 22910:1 22922:1 22933:1 22945:1 22999:1 23005:1 23024:2 23043:3 23056:1 23105:2 23153:3 23166:1 23183:1 23185:1 23198:1 23199:1 23242:1 23245:1 23265:1 23312:2 23335:1 23341:1 23369:1 23383:1 23401:1 23407:1 23439:1 23457:1 23490:3 23512:2 23522:1 23525:1 23532:9 23546:3 23549:1 23550:1 23569:4 23574:1 23595:3 23638:1 23653:2 23657:1 23673:2 23681:1 23682:1 23711:5 23719:1 23722:2 23742:1 23765:1 23803:1 23808:1 23832:2 23836:1 23843:1 23849:1 23859:3 23873:1 23882:1 23886:1 23898:1 23940:1 23944:1 23948:1 24003:1 24009:1 24055:1 24063:1 24065:4 24070:2 24073:2 24084:3 24087:1 24094:1 24100:1 24143:1 24147:1 24154:2 24164:1 24181:1 24195:1 24201:1 24202:1 24216:1 24218:5 24221:2 24255:1 24271:1 24277:1 24311:2 24328:1 24339:1 24341:1 24360:1 24363:9 24377:1 24385:1 24391:1 24396:1 24408:1 24427:2 24447:1 24472:1 24475:2 24478:1 24488:2 24505:1 24542:1 24543:4 24556:2 24563:2 24567:1 24623:1 24649:2 24659:1 24662:7 24670:2 24682:1 24700:1 24701:1 24702:1 24703:2 24707:1 24714:1 24719:2 24722:1 24732:1 24747:1 24752:2 24774:2 24824:4 24825:1 24834:1 24855:1 24861:1 24869:2 24872:1 24888:1 24894:1 24908:3 24923:1 24935:1 24979:14 24980:1 24984:1 25005:1 25018:1 25021:1 25026:1 25033:1 25047:1 25057:1 25065:1 25071:2 25092:1 25094:2 25101:1 25104:1 25110:2 25121:2 25125:1 25126:1 25129:5 25148:2 25156:3 25168:2 25190:1 25201:1 25206:1 25209:1 25218:1 25233:1 25243:1 25245:2 25252:1 25256:1 25270:2 25275:1 25289:3 25303:3 25318:2 25328:1 25340:1 25368:1 25369:1 25387:1 25459:1 25473:3 25485:1 25501:2 25503:1 25526:1 25539:1 25581:1 25588:1 25595:10 25597:1 25598:2 25620:1 25634:1 25653:1 25655:1 25667:1 25683:1 25689:1 25695:2 25732:2 25755:5 25780:1 25788:1 25804:1 25828:2 25853:1 25871:1 25907:1 25928:1 25929:1 25936:1 26001:1 26015:1 26017:3 26024:1 26043:1 26044:1 26075:2 26094:1 26133:1 26135:2 26157:1 26160:1 26165:1 26174:2 26179:2 26184:1 26187:1 26230:1 26243:1 26254:3 26255:1 26277:4 26283:1 26309:1 26315:1 26316:1 26319:2 26324:1 26352:2 26359:1 26360:1 26364:1 26415:3 26421:1 26424:13 26498:1 26532:1 26534:1 26539:1 26605:1 26612:1 26624:1 26635:1 26636:1 26642:1 26679:1 26694:1 26721:1 26748:1 26751:2 26758:2 26794:4 26814:1 26818:1 26880:1 26897:1 26924:2 26929:1 26931:1 26936:1 26938:2 27009:1 27014:1 27022:1 27028:1 27072:1 27112:1 27114:3 27122:1 27133:1 27141:3 27159:1 27225:1 27251:3 27262:1 27303:5 27360:1 27377:1 27388:1 27389:1 27397:3 27398:2 27401:1 27419:1 27427:1 27437:1 27439:2 27447:1 27451:3 27456:1 27488:1 27489:2 27502:1 27512:1 27516:1 27522:1 27533:1 27569:1 27574:1 27575:1 27602:4 27612:2 27618:1 27620:1 27641:1 27676:1 27716:1 27727:1 27728:1 27753:1 27757:1 27763:1 27769:1 27804:1 27809:1 27813:1 27817:1 27846:1 27851:1 27872:2 27881:1 27884:1 27917:2 27933:2 27957:1 27985:1 27989:1 27997:1 28007:1 28015:1 28021:1 28032:3 28068:2 28071:1 28074:1 28094:1 28132:1 28145:2 28174:1 28242:1 28253:1 28255:1 28273:4 28327:2 28331:3 28335:1 28342:1 28348:2 28414:1 28442:1 28500:1 28503:2 28509:4 28512:3 28518:1 28540:1 28557:1 28563:2 28591:1 28602:1 28608:3 28609:1 28635:3 28641:4 28642:1 28652:1 28666:1 28671:1 28680:1 28697:2 28725:4 28728:1 28734:1 28739:1 28740:1 28753:2 28754:1 28778:1 28811:3 28847:4 28870:2 28872:2 28902:1 28913:1 28937:1 28945:2 28994:2 28998:3 29029:1 29052:1 29060:2 29063:1 29085:1 29088:2 29104:1 29105:1 29120:1 29123:1 29146:1 29147:1 29155:1 29156:2 29161:1 29165:1 29174:1 29189:4 29195:1 29210:1 29219:1 29261:1 29272:1 29291:1 29316:1 29326:1 29334:3 29365:6 29374:1 29409:1 29417:2 29439:1 29472:2 29491:1 29498:1 29503:1 29518:2 29519:2 29543:1 29546:1 29564:1 29574:2 29637:2 29653:4 29655:2 29675:2 29676:1 29677:4 29679:3 29683:1 29685:1 29732:2 29759:1 29771:1 29781:2 29797:1 29821:2 29842:1 29850:1 29861:1 29882:1 29923:1 29956:1 29964:1 30023:1 30051:1 30063:1 30079:1 30085:1 30121:1 30129:1 30183:2 30221:1 30235:1 30294:1 30295:2 30334:1 30367:1 30371:1 30393:2 30399:2 30412:1 30415:1 30418:7 30450:2 30451:1 30524:13 30525:1 30529:3 30531:1 30560:1 30643:2 30647:2 30648:3 30651:1 30684:1 30706:1 30707:1 30719:1 30721:1 30724:1 30728:1 30738:1 30739:1 30741:1 30745:1 30753:1 30788:2 30800:1 30818:1 30832:1 30846:2 30879:1 30895:1 30906:1 30916:1 30958:1 30978:1 30997:1 30998:1 31021:3 31088:4 31104:1 31132:1 31168:3 31176:3 31200:1 31204:1 31207:1 31243:1 31259:1 31262:2 31302:1 31317:1 31359:2 31403:1 31476:1 31477:1 31489:3 31493:1 31514:1 31541:1 31544:19 31545:2 31546:2 31549:2 31552:3 31555:1 31566:1 31586:1 31587:9 31597:1 31602:1 31603:1 31613:1 31644:1 31646:1 31651:2 31661:1 31662:1 31681:1 31697:1 31702:4 31713:2 31719:1 31754:2 31759:2 31801:1 31802:1 31806:1 31829:1 31849:1 31854:1 31863:2 31900:1 31901:1 31951:1 31957:2 31959:1 31964:4 31969:1 31971:1 31990:1 31994:1 32000:1 32012:1 32028:3 32039:3 32110:3 32115:5 32118:1 32119:1 32147:2 32163:1 32175:1 32178:1 32214:1 32225:1 32257:1 32263:3 32275:1 32279:1 32310:2 32314:1 32321:2 32342:2 32363:1 32374:1 32381:1 32429:1 32445:1 32471:1 32505:3 32510:1 32539:2 32543:1 32582:1 32590:1 32596:1 32605:3 32628:1 32662:1 32676:2 32684:1 32686:1 32701:1 32713:1 32727:1 32733:6 32735:1 32740:1 32755:2 32811:1 32821:4 32831:1 32891:1 32897:1 32902:1 32903:1 32905:3 32921:1 32957:1 32966:1 32972:1 32973:1 32977:1 33021:1
16 26:1 27:1 66:1 78:1 85:4 104:1 109:1 145:1 173:1 176:1 219:1 235:1 269:4 295:1 338:1 351:3 375:1 387:1 397:2 398:1 399:2 427:1 443:1 468:2 475:1 484:1 502:3 505:1 509:1 525:1 542:1 551:2 567:1 575:1 577:1 581:1 584:1 589:1 591:1 628:1 629:1 649:1 713:1 723:3 751:2 757:1 762:4 766:1 774:1 779:1 790:1 805:1 812:1 821:1 832:1 869:2 886:1 891:1 929:1 937:1 944:1 949:1 957:1 970:1 984:1 988:1 1000:1 1007:1 1035:1 1051:1 1054:1 1069:2 1078:3 1081:1 1082:3 1084:2 1114:1 1139:3 1143:2 1149:1 1164:1 1180:2 1185:1 1202:1 1221:1 1250:1 1254:1 1285:1 1288:1 1301:1 1341:1 1353:3 1359:1 1366:1 1369:2 1377:2 1387:1 1388:4 1398:1 1412:1 1426:3 1457:1 1464:1 1466:1 1469:1 1472:3 1475:1 1487:1 1488:2 1489:2 1506:2 1512:1 1524:1 1546:2 1560:2 1572:1 1586:1 1600:1 1633:1 1642:1 1676:3 1683:1 1689:1 1695:1 1711:1 1733:1 1742:1 1754:1 1760:5 1767:1 1773:1 1774:2 1775:1 1776:1 1780:2 1787:1 1802:3 1835:1 1839:3 1853:1 1863:1 1867:1 1871:2 1879:2 1907:1 1914:1 1919:3 1924:3 1927:2 1941:1 1953:1 1963:3 1966:3 1968:1 1975:1 1976:1 2018:1 2038:1 2039:1 2050:2 2053:1 2055:1 2058:1 2069:2 2097:1 2098:1 2122:1 2127:1 2128:1 2139:1 2142:1 2143:1 2150:1 2156:1 2174:1 2175:1 2180:1 2187:1 2201:1 2211:1 2215:1 2226:1 2232:1 2234:4 2245:1 2262:1 2263:2 2282:1 2317:1 2320:1 2323:1 2345:1 2354:2 2361:2 2368:3 2369:1 2407:1 2414:2 2435:1 2439:1 2441:3 2443:1 2444:2 2446:1 2475:3 2501:2 2531:1 2566:1 2572:1 2628:1 2629:1 2630:1 2631:2 2632:3 2637:1 2638:2 2640:1 2641:1 2643:5 2645:1 2647:2 2651:1 2654:1 2660:4 2665:3 2668:5 2687:1 2712:1 2728:1 2744:1 2754:1 2755:1 2759:1 2762:1 2763:1 2782:1 2790:1 2794:1 2800:1 2808:1 2826:1 2845:3 2871:1 2883:2 2921:1 2925:1 2927:1 2944:1 3021:1 3023:1 3062:2 3082:4 3092:1 3098:3 3117:1 3119:1 3127:1 3130:1 3136:5 3150:1 3164:2 3173:1 3177:1 3182:1 3189:3 3193:1 3197:1 3237:1 3246:2 3252:1 3254:1 3256:4 3264:2 3314:4 3328:1 3336:1 3355:8 3363:7 3392:2 3409:1 3426:19 3435:1 3441:1 3457:1 3497:1 3533:2 3542:1 3607:3 3613:1 3639:1 3693:1 3700:1 3710:2 3713:4 3721:1 3739:7 3759:1 3764:1 3773:1 3809:1 3821:1 3823:4 3863:1 3894:1 3900:1 3906:1 3918:1 3944:1 3959:1 3965:1 3975:3 3983:2 3985:1 4003:3 4041:1 4049:1 4053:2 4076:1 4077:1 4089:3 4125:1 4144:1 4150:1 4152:3 4156:1 4161:1 4164:1 4165:1 4203:1 4210:1 4235:1 4245:2 4256:1 4270:1 4271:3 4297:1 4317:1 4323:1 4325:27 4340:1 4347:1 4361:2 4363:1 4364:6 4367:1 4376:2 4377:14 4379:1 4381:3 4391:2 4405:3 4408:1 4418:1 4419:2 4423:2 4425:2 4426:2 4438:1 4439:2 4442:1 4444:1 4480:2 4490:1 4491:3 4502:1 4507:1 4537:1 4541:1 4543:1 4544:3 4555:2 4567:2 4575:1 4587:1 4597:1 4622:1 4630:1 4632:1 4633:1 4635:1 4636:1 4643:1 4646:1 4652:1 4655:1 4658:3 4674:3 4678:1 4686:1 4730:1 4810:1 4813:1 4834:1 4852:1 4855:1 4870:1 4876:1 4879:1 4880:1 4906:1 4913:1 4924:1 4926:1 4937:1 4989:1 5010:8 5027:1 5090:1 5098:1 5106:4 5117:1 5120:2 5138:1 5152:3 5155:1 5176:1 5198:1 5205:1 5268:2 5269:1 5331:1 5363:2 5367:1 5370:2 5381:1 5390:2 5403:1 5410:1 5433:2 5438:1 5509:1 5510:1 5516:1 5528:1 5545:2 5558:1 5617:1 5640:2 5645:1 5659:11 5660:1 5699:1 5761:1 5784:3 5797:2 5800:1 5802:3 5821:1 5822:2 5823:5 5824:1 5828:1 5831:2 5840:1 5841:14 5842:1 5844:1 5848:2 5849:3 5877:1 5880:2 5936:1 5950:1 5972:1 6050:1 6060:1 6081:3 6082:3 6089:5 6125:1 6142:1 6168:2 6169:14 6177:1 6205:1 6255:1 6301:1 6305:1 6350:1 6357:1 6371:1 6379:1 6383:1 6394:1 6403:1 6404:1 6462:1 6465:1 6473:1 6480:1 6483:1 6507:1 6515:1 6518:1 6531:2 6540:1 6542:1 6548:1 6568:2 6574:1 6611:1 6617:2 6640:2 6647:1 6672:1 6673:1 6678:1 6686:1 6707:1 6725:1 6728:1 6733:1 6753:1 6772:1 6776:1 6777:1 6808:1 6826:1 6844:2 6845:1 6868:1 6870:2 6873:1 6891:1 6959:1 7029:1 7034:1 7035:4 7043:1 7045:2 7068:1 7074:1 7102:1 7139:1 7149:1 7150:1 7157:1 7190:3 7196:1 7200:2 7202:2 7249:1 7254:2 7257:1 7276:3 7278:1 7295:1 7300:1 7316:1 7321:1 7382:1 7386:1 7387:1 7390:1 7391:1 7392:1 7394:1 7396:1 7397:1 7401:2 7403:3 7409:1 7410:4 7411:1 7412:1 7413:1 7427:1 7451:1 7454:1 7503:1 7509:1 7553:1 7559:1 7579:2 7586:1 7613:1 7615:1 7664:1 7681:1 7684:2 7687:1 7690:1 7710:5 7716:3 7722:1 7731:1 7732:1 7742:2 7764:1 7790:1 7791:1 7805:1 7825:1 7846:1 7869:1 7877:2 7879:1 7891:3 7900:1 7907:1 7915:2 7940:1 7947:1 7987:1 7998:1 8005:1 8012:1 8019:1 8026:2 8032:1 8091:1 8093:1 8110:1 8111:2 8137:1 8138:1 8194:2 8215:1 8224:1 8251:1 8255:5 8263:2 8289:1 8299:1 8320:1 8358:1 8490:1 8499:1 8507:1 8512:1 8526:3 8575:1 8577:1 8586:3 8604:2 8629:2 8674:2 8688:1 8689:1 8714:1 8770:1 8784:1 8786:1 8791:3 8821:1 8830:2 8831:4 8832:2 8850:1 8861:1 8888:1 8890:1 8898:1 8901:30 8902:1 8908:1 8920:7 8923:15 8929:1 8933:1 8943:1 8952:1 8978:3 8979:1 9014:1 9034:1 9051:1 9059:1 9068:1 9082:2 9085:1 9091:1 9149:3 9153:5 9161:1 9206:1 9209:3 9212:1 9234:1 9251:1 9285:1 9304:1 9341:1 9343:3 9362:1 9368:1 9370:5 9386:1 9405:1 9416:2 9436:1 9444:1 9448:1 9454:1 9470:1 9484:12 9511:1 9524:2 9525:1 9551:2 9589:1 9594:1 9605:2 9616:1 9630:2 9639:3 9664:1 9672:1 9678:3 9687:3 9709:2 9715:2 9728:1 9732:2 9733:1 9734:1 9738:1 9747:1 9748:2 9754:2 9765:1 9777:2 9778:2 9788:1 9792:1 9809:2 9829:1 9836:1 9841:3 9859:1 9866:1 9875:1 9878:2 9880:1 9881:3 9882:1 9884:2 9885:3 9894:1 9897:2 9899:1 9903:2 9919:1 9925:1 9934:2 9944:1 9945:1 9951:1 9959:1 9973:1 9977:2 10002:2 10024:4 10044:1 10053:3 10056:1 10065:1 10067:1 10069:1 10088:1 10092:1 10121:1 10128:2 10138:1 10139:1 10144:1 10150:2 10161:2 10162:1 10166:1 10204:1 10208:3 10209:2 10214:3 10218:1 10219:2 10221:3 10229:2 10252:1 10254:1 10255:1 10257:4 10270:1 10295:1 10302:1 10367:1 10377:2 10397:2 10399:1 10410:1 10412:1 10438:1 10441:1 10461:1 10520:3 10554:1 10558:1 10565:3 10580:1 10588:5 10610:1 10615:1 10619:1 10627:1 10634:1 10653:1 10662:1 10671:2 10673:1 10695:1 10701:1 10710:1 10726:1 10756:1 10768:1 10845:1 10846:1 10851:1 10857:1 10858:1 10862:1 10864:2 10879:1 10900:1 10903:1 10906:1 10937:1 10939:1 10942:1 10947:1 10959:1 11009:14 11016:1 11039:1 11047:3 11056:2 11083:1 11104:2 11124:1 11154:11 11171:1 11176:1 11198:1 11210:4 11225:1 11226:1 11229:3 11230:1 11249:1 11263:1 11316:1 11318:3 11319:1 11359:5 11363:2 11366:3 11368:1 11374:1 11375:1 11382:1 11392:2 11400:1 11402:1 11408:1 11417:1 11422:3 11426:1 11427:1 11429:1 11464:3 11470:1 11489:1 11492:2 11496:1 11513:1 11545:1 11551:2 11553:1 11580:8 11582:1 11583:4 11595:1 11597:1 11697:2 11703:1 11728:1 11754:1 11761:1 11775:4 11789:1 11800:1 11832:1 11897:2 11914:3 11921:1 11926:1 11932:1 11948:1 11955:1 11967:1 11970:1 11994:2 12001:3 12014:1 12043:1 12044:1 12052:2 12075:2 12098:5 12117:2 12119:3 12121:2 12125:1 12128:1 12145:1 12147:1 12150:1 12174:1 12197:1 12200:1 12211:4 12229:2 12241:2 12249:5 12266:1 12314:1 12316:1 12322:1 12345:2 12346:1 12347:1 12352:1 12396:1 12408:1 12459:1 12468:1 12476:1 12492:1 12498:2 12499:1 12512:5 12531:3 12534:4 12553:1 12556:1 12596:3 12610:1 12623:2 12634:1 12635:1 12642:1 12664:2 12676:2 12706:1 12740:1 12743:1 12770:1 12807:1 12818:1 12821:1 12825:3 12826:1 12850:1 12855:1 12863:1 12883:1 12888:1 12892:1 12893:1 12919:2 12953:2 12960:1 12974:2 12980:1 12981:1 12983:1 12990:1 12991:1 13014:1 13021:3 13057:1 13061:1 13063:5 13067:1 13100:1 13122:1 13125:1 13127:1 13135:1 13138:2 13153:1 13176:1 13204:1 13207:1 13218:3 13234:2 13252:3 13254:2 13284:1 13297:1 13318:3 13327:1 13328:4 13341:1 13352:1 13354:1 13363:1 13366:1 13368:5 13369:1 13376:2 13379:5 13382:1 13387:1 13395:1 13403:4 13428:2 13447:4 13454:1 13463:2 13507:1 13518:4 13528:1 13536:1 13537:1 13576:1 13580:1 13590:3 13592:1 13607:1 13616:1 13629:1 13645:1 13652:1 13690:2 13692:1 13717:1 13759:1 13766:1 13780:1 13832:2 13847:1 13867:1 13872:1 13874:1 13878:1 13913:3 13914:3 13916:14 13923:4 13940:1 13956:1 13962:1 13972:2 14021:1 14041:1 14043:1 14073:1 14074:1 14082:5 14083:2 14098:1 14106:2 14167:3 14172:1 14198:1 14207:1 14219:2 14222:1 14228:1 14235:1 14265:1 14286:1 14292:1 14312:3 14326:1 14329:1 14369:1 14373:2 14382:1 14388:1 14399:1 14441:1 14506:6 14519:1 14523:1 14527:2 14530:1 14546:1 14565:2 14566:3 14588:1 14592:1 14629:1 14660:1 14667:2 14693:1 14705:1 14728:1 14746:1 14748:1 14751:2 14775:1 14785:1 14819:1 14870:1 14894:1 14920:1 14930:1 14948:1 14955:1 14970:1 14990:1 15002:2 15014:1 15017:2 15023:1 15044:1 15045:1 15080:1 15086:1 15088:2 15140:1 15146:1 15154:1 15155:2 15156:5 15162:2 15164:1 15171:1 15178:2 15182:1 15192:1 15195:1 15198:1 15204:2 15234:6 15238:1 15247:1 15250:1 15266:1 15280:1 15301:2 15317:1 15338:3 15355:1 15365:1 15380:1 15400:3 15420:1 15430:3 15441:1 15450:1 15464:1 15465:2 15466:2 15480:1 15486:1 15502:1 15503:1 15511:1 15514:2 15529:1 15538:2 15576:1 15579:1 15589:1 15597:1 15598:1 15599:2 15600:1 15602:1 15636:1 15659:1 15663:1 15664:1 15683:1 15684:1 15688:1 15701:2 15706:1 15707:1 15726:1 15739:6 15750:1 15797:1 15821:1 15822:1 15827:1 15851:1 15856:2 15857:1 15861:3 15891:1 15906:1 15908:1 15918:1 15921:1 15933:2 15934:2 15938:2 15939:4 15950:1 15970:1 15977:3 15997:1 16008:1 16035:2 16037:1 16043:1 16046:1 16051:1 16070:2 16118:1 16202:2 16220:1 16246:1 16263:1 16279:1 16341:1 16382:1 16392:1 16393:1 16401:1 16402:1 16408:1 16412:3 16414:1 16416:1 16424:1 16442:2 16467:1 16483:1 16491:1 16495:1 16525:1 16561:1 16570:1 16583:1 16612:1 16618:1 16621:1 16631:1 16640:4 16661:1 16675:1 16687:1 16692:1 16718:1 16775:3 16828:1 16874:1 16885:1 16939:1 16951:1 16970:2 17000:3 17005:2 17007:1 17010:1 17012:1 17013:1 17031:1 17037:1 17059:1 17078:1 17098:2 17109:3 17137:1 17163:1 17167:1 17191:1 17194:1 17202:1 17205:1 17207:1 17235:1 17237:1 17246:1 17255:1 17280:1 17283:1 17347:1 17353:3 17355:2 17360:1 17379:4 17380:1 17385:1 17433:3 17435:1 17441:1 17479:1 17481:1 17496:1 17501:3 17512:2 17520:1 17546:1 17566:2 17591:1 17611:1 17627:1 17633:1 17634:1 17653:1 17662:2 17685:6 17687:4 17689:1 17694:1 17722:2 17736:1 17740:2 17758:3 17763:1 17796:1 17803:1 17829:2 17833:1 17835:1 17844:4 17854:1 17864:1 17873:1 17884:1 17885:3 17889:1 17890:5 17892:1 17896:1 17900:1 17901:1 17902:1 17913:2 17919:4 17968:2 17996:1 18012:2 18022:1 18024:2 18030:3 18060:2 18065:1 18073:1 18096:1 18101:2 18127:2 18146:1 18158:1 18175:1 18182:1 18187:6 18198:2 18199:2 18217:1 18222:1 18225:1 18243:1 18263:14 18291:1 18300:2 18305:1 18324:2 18341:39 18361:3 18390:1 18418:1 18424:1 18427:2 18455:1 18460:1 18467:1 18473:1 18474:3 18477:1 18482:2 18486:1 18501:1 18513:1 18516:1 18518:1 18523:1 18526:1 18530:1 18543:1 18544:1 18565:1 18567:1 18604:1 18610:5 18643:1 18648:2 18692:1 18696:1 18715:1 18762:1 18797:1 18798:1 18808:1 18822:2 18826:1 18865:1 18867:1 18905:1 18908:1 18916:1 18922:3 18927:1 18946:2 18968:3 18996:1 18997:1 19000:1 19004:2 19006:1 19016:1 19020:1 19027:1 19042:1 19048:8 19072:1 19084:1 19094:2 19107:1 19136:1 19143:1 19165:1 19167:1 19170:3 19177:1 19179:2 19182:1 19185:1 19206:1 19222:1 19232:1 19243:2 19245:2 19307:1 19374:1 19382:2 19385:1 19407:1 19425:1 19434:1 19435:1 19440:1 19449:1 19457:1 19461:1 19466:1 19469:3 19480:1 19490:1 19497:3 19501:1 19504:1 19542:1 19550:1 19564:1 19587:2 19595:1 19601:1 19619:4 19640:1 19675:1 19684:1 19685:1 19711:3 19713:1 19715:1 19718:1 19726:1 19730:2 19735:1 19737:1 19759:1 19761:1 19776:1 19789:2 19817:1 19840:1 19841:2 19926:2 19936:1 19944:1 19956:1 19962:1 20012:1 20016:1 20017:2 20020:2 20021:1 20037:8 20052:1 20070:1 20078:1 20103:1 20118:1 20130:1 20131:1 20151:1 20153:1 20160:1 20179:1 20191:1 20210:1 20216:1 20249:1 20255:2 20261:4 20265:1 20340:1 20382:2 20383:1 20392:1 20420:1 20429:1 20450:1 20456:2 20474:2 20480:1 20488:1 20489:2 20507:1 20531:1 20532:2 20579:1 20585:1 20595:1 20621:3 20630:1 20645:3 20649:1 20651:1 20655:3 20676:1 20677:1 20693:1 20695:1 20749:1 20790:1 20792:7 20806:1 20821:1 20852:1 20860:1 20865:1 20869:1 20878:1 20884:2 20906:1 20912:1 20922:1 20942:1 20946:3 20948:1 20950:2 20965:2 20976:1 20980:2 21013:1 21020:2167 21028:1 21044:1 21046:4 21047:1 21054:2 21066:2 21097:1 21108:1 21131:1 21136:3 21147:1 21178:3 21201:2 21212:1 21239:3 21242:1 21268:3 21277:1 21284:3 21287:1 21340:1 21341:1 21381:1 21384:3 21418:1 21442:2 21454:1 21463:1 21474:1 21484:1 21490:1 21494:1 21495:1 21511:1 21539:1 21551:2 21554:1 21563:4 21576:1 21586:1 21660:1 21661:1 21675:1 21678:2 21728:1 21749:1 21779:2 21795:1 21797:1 21803:2 21810:1 21819:3 21832:2 21835:1 21836:3 21841:1 21857:1 21867:10 21895:1 21896:11 21929:1 21930:3 21934:1 21950:1 21965:1 21970:3 21991:1 21995:1 22000:1 22002:1 22004:1 22008:1 22015:1 22029:2 22060:1 22068:2 22089:1 22101:3 22131:1 22133:1 22136:1 22194:1 22198:1 22244:1 22262:1 22264:8 22272:1 22308:1 22317:1 22340:1 22352:1 22369:1 22375:1 22377:5 22399:1 22422:1 22443:1 22444:1 22467:1 22476:1 22478:1 22484:1 22485:1 22495:1 22534:1 22542:4 22547:1 22556:1 22561:1 22581:2 22582:1 22610:1 22616:1 22623:1 22624:1 22651:1 22676:1 22680:1 22687:2 22701:1 22702:1 22708:6 22745:1 22775:1 22781:1 22800:8 22809:1 22822:2 22825:2 22844:1 22845:1 22863:9 22881:1 22910:1 22922:1 22924:1 22933:1 22945:1 22964:1 22999:1 23005:1 23024:2 23043:3 23056:1 23105:2 23153:3 23166:1 23183:1 23185:1 23198:1 23199:1 23242:1 23245:1 23265:1 23312:2 23335:1 23341:1 23369:1 23374:1 23383:1 23399:1 23401:1 23407:1 23439:1 23457:1 23490:3 23512:2 23522:1 23525:1 23532:9 23546:3 23549:1 23550:1 23569:4 23574:1 23595:3 23605:1 23638:2 23653:2 23657:1 23673:2 23681:1 23682:1 23711:6 23719:1 23722:2 23730:1 23742:1 23743:1 23765:1 23803:1 23808:1 23832:2 23836:1 23843:1 23849:1 23859:3 23873:1 23881:1 23882:1 23886:1 23898:1 23940:1 23944:1 23948:1 24003:1 24009:1 24055:1 24063:1 24065:4 24070:2 24073:2 24084:3 24087:1 24094:1 24100:1 24143:1 24147:1 24154:2 24164:1 24181:1 24195:1 24201:1 24202:1 24216:1 24218:5 24221:2 24255:1 24271:1 24277:1 24311:2 24320:1 24328:1 24339:1 24341:1 24360:2 24363:9 24377:1 24385:1 24391:1 24396:1 24402:1 24408:1 24427:3 24447:1 24472:1 24475:2 24478:1 24482:1 24488:2 24505:1 24542:1 24543:4 24556:2 24563:2 24567:1 24623:1 24649:2 24659:1 24662:7 24670:2 24682:1 24687:1 24700:2 24701:1 24702:1 24703:2 24707:1 24714:1 24719:2 24722:1 24732:1 24747:2 24752:2 24774:2 24824:4 24825:1 24834:1 24855:1 24861:1 24869:2 24872:1 24888:1 24894:1 24908:4 24923:1 24935:1 24979:14 24980:1 24984:1 25005:1 25018:1 25021:1 25026:1 25033:1 25047:1 25057:1 25065:1 25071:2 25092:1 25094:2 25101:1 25104:1 25110:2 25121:2 25125:1 25126:1 25129:5 25148:2 25156:3 25168:2 25190:1 25201:1 25206:1 25209:1 25218:1 25233:1 25243:1 25245:2 25252:1 25256:1 25270:2 25275:1 25289:4 25303:3 25318:2 25328:1 25340:1 25368:1 25369:1 25387:1 25405:1 25459:1 25473:3 25480:1 25485:1 25501:2 25503:1 25526:1 25539:1 25581:1 25588:1 25595:10 25597:1 25598:2 25620:1 25634:1 25653:1 25655:1 25667:1 25683:1 25689:1 25695:2 25732:2 25755:5 25780:1 25788:1 25804:1 25828:2 25853:1 25871:2 25907:1 25928:1 25929:1 25936:1 26001:1 26015:1 26017:3 26024:1 26043:1 26044:1 26056:1 26073:1 26075:2 26094:1 26133:1 26135:2 26149:1 26157:1 26160:1 26165:1 26174:2 26179:2 26184:1 26187:1 26230:1 26243:1 26254:3 26255:1 26277:5 26283:1 26287:1 26309:1 26315:1 26316:2 26319:2 26324:1 26352:2 26359:1 26360:2 26364:1 26415:3 26421:1 26424:14 26498:1 26516:1 26532:1 26534:1 26539:1 26605:1 26612:1 26624:1 26635:1 26636:1 26642:1 26679:1 26694:1 26721:1 26748:1 26751:2 26758:2 26794:4 26814:1 26818:1 26880:1 26897:1 26924:2 26929:1 26931:1 26934:1 26936:1 26938:2 26952:1 27009:1 27014:1 27022:1 27028:1 27072:1 27112:1 27114:3 27122:1 27133:1 27141:3 27159:1 27225:1 27251:3 27262:1 27303:5 27360:1 27377:1 27388:1 27389:1 27397:4 27398:2 27401:1 27419:1 27427:1 27437:1 27439:2 27447:1 27451:3 27456:1 27488:1 27489:2 27502:1 27512:1 27516:1 27522:2 27533:1 27569:1 27574:1 27575:1 27602:4 27612:2 27618:1 27620:1 27627:1 27641:1 27676:1 27716:1 27727:1 27728:1 27753:1 27757:1 27760:1 27763:1 27769:1 27804:1 27809:1 27813:1 27817:1 27846:1 27851:1 27872:2 27881:1 27884:1 27917:2 27933:4 27957:1 27985:1 27989:1 27997:1 28007:1 28015:2 28021:1 28032:3 28068:2 28071:1 28074:1 28094:1 28132:1 28145:2 28174:1 28242:1 28253:1 28255:1 28273:4 28327:2 28331:3 28335:1 28342:1 28348:3 28408:1 28414:1 28442:1 28500:1 28503:2 28507:1 28509:4 28512:3 28518:1 28537:1 28540:1 28557:1 28563:2 28591:1 28602:1 28608:4 28609:1 28635:3 28641:4 28642:1 28652:1 28666:1 28671:1 28680:1 28697:2 28725:5 28728:1 28734:1 28739:1 28740:1 28753:2 28754:1 28778:1 28811:3 28847:4 28870:2 28872:2 28902:1 28913:1 28937:1 28945:3 28972:1 28994:2 28998:3 29029:1 29052:1 29060:2 29063:1 29085:1 29088:2 29104:1 29105:1 29120:1 29123:1 29146:1 29147:1 29155:1 29156:2 29161:1 29165:1 29174:1 29189:5 29195:1 29199:1 29210:1 29219:1 29261:1 29272:1 29291:1 29316:1 29326:1 29332:1 29334:3 29365:7 29374:1 29409:1 29417:2 29439:1 29472:2 29491:1 29498:1 29503:1 29518:3 29519:2 29543:1 29546:1 29564:1 29574:2 29637:2 29653:5 29655:2 29675:2 29676:1 29677:4 29679:4 29683:1 29685:1 29732:2 29759:1 29766:1 29771:1 29781:2 29792:1 29797:1 29821:2 29842:1 29850:1 29861:1 29882:1 29923:1 29956:1 29964:1 30023:1 30051:1 30063:1 30079:1 30085:1 30121:1 30129:1 30160:1 30183:2 30198:1 30221:1 30235:1 30294:1 30295:2 30315:1 30334:1 30367:1 30371:1 30393:2 30399:3 30412:1 30415:1 30418:8 30450:2 30451:1 30524:14 30525:1 30529:3 30531:1 30560:1 30643:2 30647:2 30648:3 30651:1 30684:1 30703:1 30706:1 30707:1 30719:2 30721:1 30724:1 30728:1 30738:1 30739:1 30741:1 30745:1 30753:1 30788:2 30800:1 30818:1 30832:1 30846:2 30879:1 30895:1 30901:1 30906:1 30916:1 30958:1 30978:1 30997:1 30998:1 31021:3 31088:5 31104:1 31132:1 31168:3 31176:3 31200:1 31204:1 31207:1 31243:1 31259:1 31262:3 31268:1 31302:1 31317:1 31349:1 31359:4 31403:1 31476:1 31477:1 31489:3 31493:1 31514:1 31541:1 31544:19 31545:2 31546:2 31549:2 31552:3 31555:1 31566:1 31586:1 31587:9 31597:1 31602:1 31603:1 31613:1 31644:1 31646:1 31651:2 31661:1 31662:1 31681:1 31697:1 31702:4 31713:4 31719:1 31754:3 31759:2 31801:1 31802:1 31806:1 31829:1 31849:1 31854:1 31863:2 31900:1 31901:1 31951:1 31957:2 31959:1 31964:4 31969:1 31971:1 31990:1 31994:1 32000:1 32012:1 32028:3 32039:3 32110:3 32115:6 32118:1 32119:1 32126:1 32147:2 32163:1 32175:1 32178:1 32214:1 32225:1 32257:1 32263:3 32275:1 32279:1 32310:2 32314:1 32321:4 32330:1 32342:2 32363:1 32374:1 32381:1 32429:1 32445:1 32471:1 32505:4 32510:1 32539:2 32543:1 32582:1 32590:2 32596:1 32605:3 32628:1 32642:1 32662:1 32676:2 32684:1 32686:1 32701:1 32713:1 32727:1 32733:6 32735:1 32740:1 32755:2 32811:1 32821:4 32831:1 32891:1 32897:1 32902:1 32903:1 32905:3 32910:1 32921:1 32957:1 32966:1 32971:1 32972:1 32973:1 32977:1 33021:1
16 26:1 27:1 66:1 78:1 85:4 104:1 109:1 145:1 173:1 176:1 189:1 219:1 235:1 269:4 295:1 318:1 338:1 351:3 375:1 387:1 397:2 398:1 399:2 427:1 434:1 443:1 468:2 475:1 484:1 502:3 505:1 509:1 525:1 542:1 551:2 567:1 575:1 577:1 581:1 584:1 589:1 591:1 628:1 629:1 636:1 649:1 713:1 723:3 751:2 757:1 762:4 766:1 774:1 779:1 790:1 793:1 805:1 812:1 821:1 832:1 869:2 886:1 891:1 908:1 929:1 937:1 944:1 949:2 957:1 970:1 984:1 988:1 1000:1 1007:1 1035:1 1046:1 1051:1 1054:1 1058:2 1069:2 1078:3 1081:1 1082:4 1084:2 1114:1 1139:3 1143:2 1149:1 1164:1 1180:2 1185:1 1202:1 1220:2 1221:1 1250:1 1254:1 1285:1 1288:1 1301:1 1341:1 1353:3 1359:1 1366:1 1369:2 1377:2 1387:1 1388:4 1398:1 1412:1 1426:3 1457:1 1464:1 1466:1 1469:1 1472:3 1475:1 1487:1 1488:2 1489:2 1506:2 1512:1 1524:1 1540:1 1546:2 1560:2 1572:1 1586:2 1600:1 1633:1 1642:1 1676:3 1683:1 1689:1 1695:1 1711:1 1733:1 1742:3 1754:1 1760:5 1767:2 1773:1 1774:2 1775:1 1776:1 1780:2 1787:1 1802:3 1835:1 1839:3 1853:1 1863:1 1867:1 1871:2 1879:2 1907:1 1914:1 1919:3 1924:3 1927:2 1941:1 1953:1 1963:3 1966:3 1968:1 1975:1 1976:1 1993:1 2018:1 2038:1 2039:1 2050:2 2053:1 2055:1 2058:1 2069:2 2077:1 2097:1 2098:1 2122:1 2127:1 2128:1 2139:1 2142:1 2143:1 2150:1 2156:1 2174:1 2175:1 2180:1 2187:1 2201:1 2211:1 2215:1 2226:1 2230:1 2232:1 2234:4 2245:1 2262:1 2263:2 2282:1 2317:1 2320:1 2323:1 2345:1 2354:2 2361:2 2368:3 2369:1 2407:1 2414:2 2435:1 2439:1 2441:3 2443:1 2444:2 2446:1 2475:3 2501:2 2531:1 2566:1 2572:1 2628:1 2629:1 2630:1 2631:2 2632:3 2637:1 2638:2 2640:1 2641:1 2643:5 2645:1 2647:2 2651:1 2654:1 2660:4 2665:3 2668:5 2687:1 2712:1 2728:1 2744:1 2754:1 2755:1 2759:1 2762:1 2763:2 2782:1 2790:1 2794:1 2800:1 2808:1 2826:1 2845:3 2871:1 2883:2 2921:1 2925:1 2927:1 2944:1 2986:1 3021:1 3023:1 3062:2 3082:4 3092:1 3098:3 3117:1 3119:1 3127:1 3130:2 3136:6 3150:1 3164:2 3173:1 3177:1 3182:1 3189:3 3193:1 3197:1 3237:2 3246:2 3252:1 3254:1 3256:4 3264:2 3314:4 3328:1 3336:1 3355:8 3363:7 3392:2 3409:1 3426:20 3435:1 3441:1 3457:1 3473:1 3497:1 3533:2 3542:1 3607:3 3612:1 3613:1 3639:1 3693:1 3700:1 3710:2 3713:4 3721:1 3739:8 3759:1 3764:1 3773:1 3809:1 3821:1 3823:5 3863:1 3894:1 3900:1 3906:1 3918:1 3944:1 3959:1 3965:1 3975:3 3983:2 3985:1 3992:1 4003:3 4041:1 4049:1 4053:2 4076:1 4077:1 4089:3 4125:1 4144:1 4150:1 4152:3 4156:1 4161:1 4164:1 4165:1 4203:1 4210:1 4235:1 4245:2 4256:1 4270:1 4271:3 4297:1 4317:1 4323:1 4325:27 4340:1 4347:1 4361:2 4363:1 4364:6 4367:1 4375:1 4376:2 4377:14 4379:1 4381:3 4391:2 4405:3 4408:1 4418:1 4419:3 4423:2 4425:2 4426:2 4438:1 4439:2 4442:1 4444:1 4480:2 4490:1 4491:3 4502:1 4507:1 4537:1 4541:1 4543:1 4544:3 4555:2 4567:2 4575:1 4587:1 4597:1 4622:1 4630:1 4632:1 4633:1 4635:1 4636:1 4643:1 4646:1 4652:1 4655:1 4658:3 4674:3 4678:1 4686:1 4730:1 4799:3 4810:1 4813:2 4834:2 4852:1 4855:1 4870:1 4876:1 4879:1 4880:1 4906:1 4913:1 4924:1 4926:1 4937:1 4989:1 5010:8 5027:1 5086:1 5090:1 5098:1 5106:4 5117:1 5120:2 5138:1 5152:3 5155:1 5176:1 5181:2 5198:1 5205:1 5268:2 5269:1 5331:1 5363:2 5367:1 5370:2 5381:1 5390:3 5403:1 5410:1 5433:2 5438:1 5509:1 5510:1 5516:1 5528:1 5545:2 5558:1 5617:1 5632:1 5640:2 5645:1 5659:11 5660:1 5699:2 5761:1 5784:3 5797:3 5800:1 5802:3 5821:2 5822:2 5823:5 5824:1 5828:1 5831:2 5840:1 5841:14 5842:1 5844:1 5848:2 5849:3 5860:1 5877:1 5880:2 5936:1 5950:1 5958:1 5968:1 5972:1 6050:1 6060:1 6081:3 6082:3 6089:5 6125:1 6142:1 6168:2 6169:14 6177:1 6205:1 6255:1 6301:1 6305:1 6350:1 6357:1 6371:1 6379:1 6383:1 6394:1 6403:1 6404:1 6462:1 6465:1 6469:1 6473:1 6480:1 6483:2 6507:1 6515:1 6518:1 6531:2 6540:1 6542:1 6548:1 6568:2 6574:1 6611:1 6617:3 6640:2 6647:1 6669:1 6672:1 6673:1 6678:1 6686:1 6707:1 6725:1 6728:1 6733:1 6753:1 6772:1 6776:1 6777:1 6808:1 6826:1 6844:3 6845:1 6868:1 6870:3 6873:1 6891:1 6897:1 6959:2 7029:1 7034:1 7035:5 7043:1 7045:2 7068:2 7074:1 7102:1 7139:1 7149:2 7150:1 7157:1 7190:3 7196:1 7200:2 7202:2 7232:1 7249:1 7254:2 7257:1 7276:3 7278:1 7295:1 7296:1 7300:1 7316:1 7321:1 7382:1 7386:1 7387:1 7390:1 7391:1 7392:1 7394:1 7396:2 7397:1 7401:2 7402:1 7403:3 7409:1 7410:4 7411:1 7412:1 7413:1 7427:1 7451:1 7454:1 7503:1 7509:1 7553:1 7559:1 7567:1 7579:2 7586:1 7613:1 7615:1 7664:1 7681:1 7684:2 7687:1 7690:1 7710:5 7716:3 7722:1 7725:1 7731:1 7732:1 7742:2 7764:1 7790:1 7791:1 7805:1 7825:1 7846:1 7869:1 7877:2 7879:1 7891:3 7900:1 7907:1 7915:2 7940:1 7947:1 7955:1 7987:1 7998:1 8005:1 8012:1 8019:1 8026:2 8032:1 8071:1 8091:1 8093:1 8110:1 8111:2 8137:1 8138:1 8194:2 8215:1 8224:1 8251:1 8255:5 8263:2 8289:1 8299:1 8320:1 8358:1 8490:1 8499:1 8507:1 8512:1 8526:3 8575:1 8577:1 8586:3 8604:2 8629:2 8632:1 8674:2 8688:1 8689:1 8714:1 8759:1 8770:1 8784:1 8786:1 8791:3 8821:1 8830:2 8831:4 8832:2 8850:1 8854:2 8861:1 8888:1 8890:1 8898:1 8901:30 8902:1 8908:1 8920:7 8923:16 8929:1 8933:1 8943:1 8952:1 8978:3 8979:1 9001:1 9014:1 9034:1 9051:1 9059:1 9068:1 9082:2 9085:1 9091:1 9149:3 9153:5 9161:1 9206:1 9209:3 9212:1 9234:1 9251:1 9285:1 9304:1 9341:1 9343:3 9362:1 9368:1 9370:5 9386:1 9405:1 9416:2 9436:1 9444:1 9448:1 9454:1 9468:1 9470:1 9484:12 9511:1 9524:2 9525:1 9551:2 9589:1 9594:1 9605:2 9616:1 9630:2 9639:3 9664:1 9672:1 9678:3 9687:3 9694:1 9709:2 9711:1 9715:2 9728:1 9732:2 9733:1 9734:1 9738:1 9747:1 9748:2 9754:2 9765:1 9777:2 9778:2 9788:1 9792:1 9809:2 9829:1 9836:1 9841:3 9859:1 9866:1 9875:1 9878:2 9880:1 9881:3 9882:1 9884:2 9885:3 9888:1 9894:1 9897:2 9899:2 9903:2 9919:1 9925:1 9934:2 9944:1 9945:1 9951:1 9959:1 9973:1 9977:2 10002:2 10024:4 10044:1 10053:3 10056:1 10065:1 10067:1 10069:1 10088:1 10092:1 10121:1 10128:2 10138:1 10139:1 10144:1 10150:2 10161:2 10162:1 10166:1 10204:1 10208:3 10209:2 10214:3 10218:1 10219:2 10221:3 10223:2 10228:1 10229:2 10252:1 10254:1 10255:1 10257:4 10270:1 10295:1 10302:1 10367:1 10377:2 10397:2 10399:1 10410:1 10412:1 10422:1 10438:1 10441:1 10461:1 10520:3 10554:1 10558:1 10563:1 10565:3 10580:1 10588:5 10610:1 10615:1 10619:1 10627:1 10634:1 10653:1 10662:1 10671:3 10673:1 10695:1 10701:1 10710:1 10726:1 10750:1 10756:1 10768:1 10819:1 10845:1 10846:1 10851:1 10857:1 10858:1 10862:1 10864:2 10879:1 10900:1 10903:1 10906:1 10937:1 10939:1 10942:2 10947:1 10959:1 11009:14 11016:1 11039:1 11047:3 11056:2 11083:1 11091:1 11104:2 11124:1 11154:12 11171:1 11176:1 11198:1 11210:4 11225:1 11226:1 11229:3 11230:1 11249:1 11263:1 11267:1 11316:1 11318:3 11319:1 11359:5 11363:2 11366:3 11368:1 11374:1 11375:1 11382:1 11392:2 11400:1 11402:1 11408:1 11417:1 11422:3 11426:1 11427:1 11429:1 11437:1 11464:3 11470:1 11489:1 11492:2 11496:1 11513:1 11545:1 11551:2 11553:1 11580:8 11582:1 11583:4 11595:1 11597:1 11697:2 11703:1 11720:1 11728:1 11754:1 11761:1 11775:4 11789:1 11800:1 11832:1 11880:1 11897:2 11914:3 11921:1 11926:1 11932:1 11948:1 11955:1 11967:1 11970:1 11994:2 12001:3 12014:1 12043:1 12044:1 12052:2 12072:2 12075:2 12098:5 12117:2 12119:3 12121:2 12125:1 12128:1 12145:1 12147:1 12150:1 12174:2 12197:1 12200:1 12211:4 12229:2 12241:2 12249:6 12266:1 12314:1 12316:1 12322:1 12345:2 12346:2 12347:1 12352:1 12396:1 12408:1 12459:1 12468:1 12476:1 12492:1 12498:2 12499:1 12512:5 12531:3 12534:5 12553:1 12556:1 12596:3 12610:1 12623:2 12634:1 12635:1 12642:1 12664:3 12676:2 12706:1 12740:1 12743:1 12770:1 12807:1 12810:1 12818:1 12821:1 12825:3 12826:1 12850:1 12855:1 12863:1 12867:1 12883:1 12888:1 12892:1 12893:1 12919:2 12953:2 12960:1 12974:2 12980:1 12981:1 12983:1 12990:1 12991:1 13014:1 13021:3 13057:1 13061:1 13063:5 13067:1 13100:1 13122:1 13125:1 13127:1 13135:1 13138:2 13153:1 13176:1 13204:1 13207:1 13218:3 13234:3 13252:3 13254:2 13284:1 13297:1 13318:3 13327:1 13328:4 13341:1 13352:1 13354:1 13363:1 13366:1 13368:5 13369:1 13376:2 13379:5 13382:1 13387:1 13395:1 13403:4 13428:2 13447:4 13454:1 13463:2 13507:1 13518:4 13528:1 13532:1 13536:1 13537:1 13576:1 13580:1 13590:3 13592:1 13607:1 13616:1 13629:1 13645:1 13652:1 13690:2 13692:1 13717:2 13759:1 13766:1 13780:1 13832:2 13834:1 13847:1 13867:1 13872:1 13874:1 13878:1 13913:3 13914:3 13916:14 13923:4 13940:1 13956:1 13962:1 13972:2 14021:1 14041:1 14043:1 14073:1 14074:1 14082:5 14083:2 14098:1 14106:2 14167:3 14172:1 14198:1 14207:1 14219:2 14222:1 14228:1 14235:1 14248:1 14265:1 14286:1 14292:1 14312:3 14326:1 14329:1 14369:1 14373:2 14382:1 14388:1 14399:1 14441:1 14506:6 14519:1 14523:1 14527:2 14530:1 14546:1 14565:2 14566:3 14588:1 14592:1 14629:1 14660:1 14667:2 14693:1 14705:1 14728:1 14746:1 14748:1 14751:2 14775:1 14785:1 14819:1 14870:1 14894:1 14920:1 14930:1 14948:1 14955:1 14970:1 14990:1 15002:2 15014:1 15017:2 15023:1 15044:1 15045:1 15080:1 15086:1 15088:2 15140:1 15146:1 15154:1 15155:2 15156:5 15162:3 15164:1 15171:1 15178:2 15182:1 15192:2 15195:1 15198:1 15204:3 15234:7 15238:1 15247:1 15250:1 15254:2 15266:1 15280:1 15301:2 15317:1 15338:3 15355:1 15365:1 15380:1 15400:3 15420:1 15430:3 15441:1 15450:1 15464:1 15465:2 15466:2 15480:1 15486:1 15502:1 15503:1 15511:1 15514:2 15529:1 15538:2 15576:1 15579:1 15589:1 15597:1 15598:1 15599:2 15600:1 15602:1 15636:1 15659:1 15663:1 15664:1 15677:1 15683:1 15684:1 15688:2 15701:2 15706:1 15707:1 15726:1 15739:6 15750:1 15797:1 15801:1 15821:1 15822:1 15827:1 15851:1 15856:2 15857:1 15861:3 15891:1 15906:1 15908:1 15918:1 15921:1 15933:2 15934:3 15938:2 15939:4 15950:1 15970:1 15977:3 15997:1 16008:1 16035:2 16037:1 16043:1 16046:1 16051:1 16070:2 16118:1 16202:2 16220:1 16246:1 16263:1 16279:1 16339:1 16341:1 16382:1 16392:1 16393:1 16401:1 16402:1 16408:1 16412:3 16414:1 16416:1 16424:1 16442:2 16467:1 16483:1 16491:1 16495:1 16506:1 16525:2 16561:1 16570:1 16583:1 16603:1 16612:1 16618:1 16621:1 16631:1 16640:4 16661:1 16675:1 16687:1 16692:1 16718:1 16775:3 16828:1 16874:1 16885:1 16939:1 16951:1 16970:2 17000:3 17005:2 17007:1 17010:1 17012:1 17013:1 17031:1 17037:1 17059:1 17078:1 17098:2 17109:3 17137:1 17162:1 17163:1 17167:1 17191:1 17194:1 17202:1 17205:1 17207:1 17235:1 17237:1 17246:1 17255:1 17280:1 17283:1 17347:1 17353:3 17355:2 17360:1 17379:4 17380:1 17385:1 17433:3 17435:1 17441:1 17479:1 17481:1 17488:1 17496:1 17501:3 17508:1 17512:2 17520:1 17546:1 17558:1 17566:2 17591:1 17611:1 17627:1 17633:1 17634:1 17653:1 17662:2 17685:7 17687:5 17689:1 17694:1 17722:2 17736:1 17740:2 17758:3 17763:1 17776:1 17796:1 17803:1 17813:1 17829:2 17833:1 17835:1 17844:4 17854:1 17864:1 17873:1 17884:1 17885:3 17889:1 17890:5 17892:1 17896:1 17900:1 17901:1 17902:1 17913:3 17919:4 17968:2 17996:1 18009:1 18012:2 18022:2 18024:2 18030:3 18060:2 18065:1 18073:1 18096:2 18101:2 18127:2 18145:1 18146:1 18158:1 18175:1 18178:1 18182:1 18187:7 18198:2 18199:2 18217:1 18222:1 18225:1 18243:1 18263:14 18291:1 18300:5 18305:1 18324:2 18341:40 18361:3 18390:1 18418:1 18424:1 18427:2 18455:1 18460:1 18467:1 18473:1 18474:3 18477:1 18482:2 18486:1 18501:1 18513:1 18516:1 18518:1 18523:1 18526:1 18530:1 18543:1 18544:1 18565:1 18567:1 18604:1 18610:5 18643:1 18648:2 18654:1 18692:1 18696:1 18715:1 18762:1 18797:1 18798:1 18808:1 18822:2 18826:1 18865:1 18867:1 18870:1 18905:1 18908:1 18916:1 18922:3 18927:1 18944:1 18946:3 18968:3 18996:1 18997:1 19000:1 19004:2 19006:1 19008:1 19016:1 19020:1 19027:1 19042:1 19048:9 19057:1 19072:1 19084:1 19094:2 19107:1 19136:1 19143:1 19165:1 19167:1 19170:3 19177:1 19179:2 19182:1 19185:1 19206:1 19222:1 19232:1 19240:1 19243:2 19245:2 19307:1 19374:1 19382:2 19385:1 19407:1 19425:1 19434:2 19435:1 19440:1 19449:1 19457:1 19461:1 19466:1 19469:3 19473:1 19480:1 19490:1 19497:3 19501:1 19504:1 19521:1 19542:1 19550:1 19564:1 19587:2 19595:1 19601:1 19619:4 19640:1 19675:1 19684:1 19685:1 19692:1 19711:3 19713:1 19715:1 19718:1 19726:1 19730:2 19735:1 19737:1 19759:1 19761:1 19775:1 19776:1 19789:2 19817:1 19840:1 19841:2 19926:2 19936:1 19944:1 19956:1 19962:1 20012:1 20016:1 20017:2 20020:2 20021:1 20037:8 20052:1 20070:1 20078:1 20103:1 20118:1 20130:1 20131:1 20151:1 20152:1 20153:1 20160:1 20179:1 20191:1 20210:1 20216:1 20249:1 20255:2 20260:1 20261:4 20265:1 20307:1 20340:1 20382:2 20383:1 20392:1 20420:1 20429:1 20450:1 20456:2 20467:1 20474:2 20480:1 20488:1 20489:2 20507:1 20531:1 20532:3 20579:1 20585:1 20595:1 20621:3 20630:1 20645:3 20649:1 20651:1 20655:3 20676:1 20677:1 20693:1 20695:1 20749:1 20790:1 20792:7 20797:1 20806:1 20821:1 20852:1 20860:1 20865:1 20869:1 20878:1 20884:2 20906:1 20912:1 20922:1 20942:1 20946:3 20948:1 20950:2 20965:2 20976:1 20980:2 21013:1 21020:2284 21028:1 21044:1 21046:4 21047:1 21054:2 21066:2 21097:1 21108:1 21131:1 21136:3 21147:1 21178:3 21201:2 21212:1 21239:3 21242:1 21268:3 21277:1 21284:3 21287:1 21340:1 21341:1 21381:1 21384:3 21418:1 21442:2 21454:1 21463:1 21474:1 21484:1 21490:1 21494:1 21495:1 21511:1 21539:1 21551:2 21554:1 21563:4 21576:1 21586:1 21660:1 21661:1 21675:1 21678:3 21728:1 21749:1 21773:1 21779:2 21795:1 21797:1 21803:2 21810:1 21819:3 21832:2 21835:1 21836:3 21841:1 21857:1 21867:10 21894:1 21895:1 21896:11 21909:1 21929:1 21930:3 21934:1 21950:1 21965:1 21970:3 21991:1 21995:1 22000:1 22002:2 22004:1 22008:1 22015:1 22029:2 22060:1 22068:2 22075:1 22089:1 22101:3 22131:1 22133:1 22136:1 22190:1 22194:1 22198:1 22244:1 22262:1 22264:9 22272:1 22308:1 22317:1 22340:1 22352:1 22369:1 22375:1 22377:5 22399:1 22422:2 22443:1 22444:1 22467:1 22476:1 22478:1 22484:1 22485:1 22495:1 22534:1 22542:4 22547:1 22556:1 22561:1 22581:2 22582:1 22610:1 22616:1 22623:1 22624:1 22644:1 22651:1 22676:1 22680:1 22687:2 22701:2 22702:1 22708:6 22745:1 22775:1 22781:1 22800:9 22809:1 22822:2 22825:2 22844:1 22845:1 22863:9 22881:1 22910:1 22922:1 22924:1 22933:1 22945:1 22964:1 22999:1 23005:1 23024:2 23043:4 23045:1 23056:1 23063:1 23105:2 23153:3 23166:1 23183:1 23185:1 23198:1 23199:1 23242:1 23245:1 23265:1 23312:2 23335:1 23341:1 23369:1 23374:1 23383:1 23399:1 23401:1 23407:1 23439:1 23457:1 23466:1 23490:3 23512:2 23517:1 23522:1 23525:1 23532:9 23546:3 23549:1 23550:1 23560:1 23569:4 23574:1 23595:3 23605:1 23638:2 23653:2 23657:1 23673:2 23681:1 23682:1 23711:6 23719:1 23722:2 23730:1 23742:1 23743:1 23765:1 23786:1 23803:1 23808:1 23832:2 23836:1 23843:1 23849:1 23859:3 23873:1 23881:1 23882:1 23886:1 23898:1 23940:1 23944:1 23948:1 24003:1 24009:1 24055:1 24063:1 24065:4 24070:2 24073:2 24084:3 24087:1 24094:1 24097:1 24100:1 24143:1 24147:1 24154:2 24164:1 24181:1 24195:1 24201:1 24202:1 24216:1 24218:5 24221:2 24255:1 24271:1 24277:1 24311:2 24320:1 24328:1 24339:1 24341:1 24360:2 24363:9 24377:1 24384:1 24385:1 24391:1 24396:1 24402:1 24408:1 24427:3 24447:1 24472:1 24475:2 24478:1 24482:1 24488:2 24505:1 24542:1 24543:4 24556:2 24563:2 24567:1 24623:1 24649:2 24659:1 24662:7 24670:2 24682:1 24687:1 24700:2 24701:1 24702:1 24703:2 24707:1 24714:1 24719:2 24722:1 24732:1 24734:1 24747:2 24752:2 24774:2 24824:4 24825:1 24834:1 24855:1 24861:1 24869:2 24872:1 24888:1 24894:1 24908:4 24917:1 24923:1 24935:1 24979:14 24980:1 24984:1 25005:1 25018:1 25021:1 25026:1 25033:1 25047:1 25057:1 25065:1 25071:2 25092:1 25094:2 25101:1 25104:1 25110:2 25121:2 25125:1 25126:1 25129:8 25139:1 25148:2 25156:3 25168:2 25190:1 25201:1 25206:1 25209:2 25218:1 25233:1 25243:1 25245:2 25252:1 25256:1 25270:2 25275:1 25289:5 25303:3 25318:2 25328:1 25340:1 25368:1 25369:1 25387:1 25405:1 25459:1 25473:3 25480:1 25485:1 25501:2 25503:1 25526:1 25539:1 25581:1 25588:1 25595:11 25597:1 25598:2 25620:1 25634:1 25653:1 25655:1 25667:1 25676:1 25683:1 25689:1 25694:1 25695:2 25705:1 25720:1 25732:3 25754:1 25755:5 25780:1 25788:1 25804:1 25828:2 25853:1 25871:2 25907:1 25928:1 25929:2 25936:2 26001:1 26015:1 26017:3 26024:1 26030:1 26043:1 26044:1 26056:1 26073:1 26075:2 26094:1 26133:1 26135:2 26149:1 26157:1 26160:1 26165:1 26174:2 26179:3 26184:1 26187:1 26230:1 26243:1 26254:3 26255:1 26277:5 26283:1 26287:1 26308:1 26309:1 26315:1 26316:2 26319:2 26324:1 26352:2 26359:1 26360:2 26364:1 26415:4 26421:1 26424:14 26498:1 26516:1 26532:1 26534:1 26539:1 26605:2 26612:1 26624:1 26635:1 26636:1 26642:1 26679:1 26694:1 26721:1 26748:1 26751:2 26758:2 26794:4 26814:1 26818:1 26880:1 26897:1 26924:2 26929:1 26931:1 26934:1 26936:1 26938:2 26952:1 26978:1 27009:1 27014:1 27022:1 27028:1 27032:1 27070:1 27072:1 27112:1 27114:3 27122:1 27132:1 27133:1 27141:3 27159:1 27183:1 27225:1 27251:3 27262:1 27303:5 27360:1 27377:1 27388:1 27389:1 27397:4 27398:2 27401:1 27419:1 27427:1 27437:1 27439:2 27447:1 27451:3 27456:2 27488:1 27489:2 27502:1 27512:1 27516:1 27522:2 27533:1 27552:1 27569:1 27574:1 27575:1 27602:4 27612:2 27618:1 27620:1 27627:1 27641:1 27676:1 27716:1 27727:1 27728:1 27753:1 27757:1 27760:1 27763:1 27769:1 27804:1 27809:1 27813:1 27817:1 27846:1 27851:1 27872:2 27881:1 27884:1 27917:3 27933:4 27957:1 27985:1 27989:1 27997:1 28007:1 28015:2 28021:1 28032:3 28068:2 28071:1 28074:1 28094:1 28132:1 28145:3 28174:1 28242:1 28253:1 28255:1 28273:4 28327:2 28331:3 28335:1 28342:1 28348:3 28408:1 28414:1 28442:1 28500:1 28503:2 28507:1 28509:4 28512:3 28518:1 28537:1 28540:1 28557:1 28560:1 28563:2 28591:1 28602:1 28608:4 28609:1 28635:3 28641:5 28642:1 28652:1 28666:1 28671:1 28680:1 28697:2 28725:5 28728:1 28734:1 28739:1 28740:1 28753:2 28754:1 28778:1 28811:3 28847:4 28870:2 28872:2 28902:2 28913:1 28937:1 28945:3 28972:1 28994:2 28998:3 29029:1 29052:1 29060:2 29063:1 29085:1 29088:2 29102:1 29104:1 29105:1 29120:1 29123:1 29128:1 29146:1 29147:1 29155:1 29156:2 29161:1 29165:1 29174:1 29189:5 29195:1 29199:1 29210:1 29219:1 29261:1 29272:1 29291:1 29316:1 29326:1 29332:1 29334:3 29365:7 29374:1 29409:1 29417:2 29439:1 29472:2 29491:1 29498:1 29503:1 29518:3 29519:2 29543:1 29546:1 29564:1 29574:2 29637:2 29653:5 29655:2 29665:1 29675:2 29676:1 29677:4 29679:4 29683:1 29685:1 29732:2 29759:1 29766:1 29771:1 29781:2 29792:1 29797:1 29821:2 29842:1 29850:1 29861:1 29882:1 29923:1 29956:1 29964:1 30023:1 30051:1 30063:1 30079:1 30085:1 30121:1 30123:1 30129:1 30160:2 30168:1 30183:2 30198:1 30221:1 30235:1 30294:1 30295:2 30315:1 30334:1 30367:1 30371:1 30393:2 30399:3 30412:1 30415:1 30418:8 30450:2 30451:1 30514:1 30524:14 30525:1 30529:3 30531:1 30560:1 30643:2 30647:3 30648:3 30651:1 30684:1 30703:1 30706:1 30707:1 30719:2 30721:1 30724:1 30728:1 30738:1 30739:1 30741:1 30745:1 30753:1 30788:2 30800:1 30818:1 30832:1 30846:2 30849:1 30876:1 30879:1 30881:1 30895:1 30901:1 30906:1 30916:1 30958:1 30978:1 30997:1 30998:1 31021:3 31088:5 31104:1 31132:1 31168:3 31176:3 31192:1 31200:1 31204:1 31207:1 31243:1 31259:1 31262:3 31268:1 31302:1 31317:1 31349:1 31359:4 31403:1 31476:1 31477:1 31489:4 31493:1 31502:1 31514:1 31541:1 31544:21 31545:2 31546:2 31549:2 31552:3 31555:1 31566:1 31586:1 31587:10 31597:1 31602:1 31603:1 31613:1 31644:1 31646:1 31651:2 31661:1 31662:1 31681:1 31697:1 31702:4 31713:4 31719:1 31754:3 31759:2 31766:1 31801:1 31802:1 31806:1 31829:1 31849:1 31854:1 31863:2 31900:1 31901:1 31944:1 31951:1 31957:2 31959:1 31964:4 31969:1 31971:1 31990:1 31994:1 32000:1 32012:1 32028:6 32039:3 32083:1 32110:3 32115:6 32118:1 32119:1 32126:1 32147:2 32163:1 32175:1 32178:1 32214:1 32225:1 32257:1 32263:3 32275:1 32279:1 32310:3 32314:1 32321:4 32330:1 32342:2 32363:1 32374:1 32381:1 32429:1 32445:1 32471:1 32473:1 32505:4 32510:1 32539:2 32543:1 32582:1 32590:2 32596:1 32605:3 32628:1 32642:1 32662:1 32676:2 32684:1 32686:1 32701:1 32713:1 32727:1 32733:6 32735:1 32740:1 32755:2 32811:1 32821:4 32831:2 32891:1 32897:1 32898:1 32902:1 32903:1 32905:3 32910:1 32921:1 32957:1 32966:1 32971:1 32972:1 32973:1 32977:1 33021:1
16 26:1 27:1 66:1 78:1 85:4 104:1 109:1 145:1 164:1 173:1 176:1 189:1 219:1 235:1 262:1 269:4 295:1 318:2 338:1 351:3 375:1 387:1 397:2 398:1 399:2 427:1 434:1 437:1 443:1 468:2 475:1 484:1 502:3 505:1 509:1 525:1 542:1 551:2 567:1 575:1 577:1 581:1 584:1 589:1 591:1 628:1 629:1 636:1 649:1 713:1 723:3 751:2 757:1 762:4 766:1 774:1 779:1 790:1 793:1 805:1 812:1 821:1 832:1 869:2 886:1 891:1 908:1 929:1 937:1 944:1 949:2 957:1 970:1 984:1 988:1 1000:1 1007:1 1035:1 1046:1 1051:1 1054:1 1058:2 1069:2 1078:3 1081:1 1082:5 1084:2 1114:1 1139:3 1143:2 1149:1 1164:1 1180:2 1185:1 1202:1 1220:2 1221:1 1240:1 1250:1 1254:1 1259:1 1285:1 1288:1 1301:1 1341:1 1353:3 1359:1 1366:1 1369:2 1377:2 1387:1 1388:4 1398:1 1412:1 1426:3 1457:1 1464:1 1466:1 1469:1 1472:3 1475:1 1487:1 1488:2 1489:2 1506:2 1512:1 1524:1 1540:1 1546:2 1560:2 1572:1 1574:1 1586:2 1600:2 1630:1 1633:1 1642:1 1676:3 1683:1 1689:1 1695:1 1711:1 1733:1 1742:5 1754:1 1760:5 1767:2 1773:1 1774:2 1775:1 1776:1 1780:2 1787:1 1802:3 1835:1 1839:3 1853:1 1863:1 1867:1 1871:2 1879:2 1907:1 1914:1 1919:3 1924:3 1927:2 1941:1 1953:1 1963:3 1966:3 1968:1 1975:1 1976:1 1993:1 2018:1 2038:1 2039:1 2050:2 2053:1 2055:1 2058:1 2069:2 2077:2 2097:1 2098:1 2122:1 2127:1 2128:1 2139:1 2142:1 2143:1 2150:1 2156:1 2174:1 2175:1 2180:1 2187:1 2188:1 2201:1 2211:1 2215:1 2226:1 2230:1 2232:1 2234:4 2245:1 2262:1 2263:2 2264:1 2282:1 2317:1 2320:1 2323:1 2345:1 2354:2 2361:2 2368:3 2369:1 2407:1 2414:2 2435:1 2439:1 2441:3 2443:1 2444:2 2446:1 2475:3 2501:2 2509:1 2531:1 2553:1 2566:1 2572:1 2584:1 2628:1 2629:1 2630:1 2631:2 2632:3 2637:1 2638:2 2640:1 2641:1 2643:5 2645:1 2647:2 2651:1 2654:1 2660:4 2665:3 2668:5 2687:1 2712:1 2728:1 2733:1 2744:1 2754:1 2755:1 2759:1 2762:1 2763:2 2782:1 2790:1 2794:1 2800:1 2808:1 2826:1 2845:3 2856:1 2871:1 2883:2 2909:1 2921:1 2925:1 2927:1 2944:1 2986:1 2994:1 3021:1 3023:1 3062:2 3082:4 3092:1 3098:3 3117:1 3119:1 3127:1 3130:2 3136:6 3150:1 3164:2 3173:1 3177:1 3182:1 3189:3 3193:1 3197:1 3237:2 3246:2 3252:1 3254:1 3256:4 3264:2 3314:4 3328:1 3336:1 3355:9 3363:7 3392:2 3409:1 3426:20 3435:1 3441:1 3457:1 3459:1 3473:1 3497:1 3533:2 3542:1 3607:3 3612:1 3613:1 3634:1 3639:1 3688:1 3693:1 3700:1 3710:2 3713:4 3721:1 3739:9 3759:1 3764:1 3773:1 3809:1 3821:1 3823:5 3863:1 3894:1 3900:1 3906:1 3918:1 3941:1 3944:1 3959:1 3965:1 3975:3 3983:2 3985:1 3992:1 4003:3 4041:1 4049:1 4053:2 4076:1 4077:1 4089:3 4125:1 4144:1 4150:1 4152:3 4156:1 4161:1 4164:1 4165:1 4203:1 4210:1 4235:1 4245:2 4256:1 4270:1 4271:3 4297:1 4317:1 4323:2 4325:28 4340:1 4347:1 4361:2 4363:1 4364:7 4367:1 4375:1 4376:2 4377:16 4379:1 4381:3 4391:2 4405:3 4408:1 4418:1 4419:3 4423:2 4425:2 4426:2 4438:1 4439:2 4442:1 4444:1 4480:2 4490:1 4491:3 4502:1 4507:1 4537:1 4541:1 4543:1 4544:3 4555:2 4567:2 4575:1 4581:1 4587:1 4597:1 4622:1 4630:1 4632:1 4633:1 4635:1 4636:1 4643:1 4646:1 4652:1 4655:1 4658:3 4674:3 4678:1 4686:1 4730:1 4799:3 4810:1 4813:2 4834:2 4852:1 4855:1 4870:1 4876:1 4879:1 4880:1 4906:1 4913:1 4924:1 4926:1 4937:1 4989:1 5010:8 5027:1 5086:1 5090:1 5098:1 5106:4 5117:1 5120:2 5138:1 5152:3 5155:1 5176:1 5181:2 5198:1 5205:1 5268:2 5269:1 5331:1 5363:2 5367:1 5370:2 5381:1 5390:3 5403:1 5410:1 5433:2 5438:1 5509:1 5510:1 5514:1 5516:1 5528:1 5545:2 5558:1 5617:1 5632:1 5640:2 5645:1 5659:11 5660:1 5678:1 5699:2 5729:2 5744:1 5761:1 5784:3 5797:3 5800:1 5802:4 5821:2 5822:2 5823:5 5824:1 5828:1 5831:2 5833:1 5840:1 5841:14 5842:1 5844:1 5848:2 5849:3 5860:1 5877:1 5880:2 5936:1 5950:1 5958:1 5968:1 5972:1 6050:1 6060:1 6081:3 6082:3 6089:5 6125:1 6142:1 6157:1 6168:2 6169:14 6177:1 6205:1 6221:1 6255:1 6301:1 6305:1 6350:1 6357:1 6371:1 6379:1 6383:1 6394:1 6403:1 6404:1 6462:1 6465:1 6469:1 6473:1 6480:1 6483:2 6507:1 6515:1 6518:1 6531:2 6540:1 6542:1 6548:1 6568:2 6574:1 6611:1 6617:3 6640:2 6647:1 6669:1 6672:1 6673:1 6678:1 6686:1 6707:1 6725:1 6728:1 6733:1 6753:1 6772:1 6776:1 6777:1 6808:1 6826:1 6844:3 6845:1 6868:1 6870:3 6873:1 6891:1 6897:1 6959:2 7029:1 7034:1 7035:5 7043:1 7045:2 7068:2 7074:1 7102:1 7120:1 7139:1 7149:2 7150:1 7157:1 7190:3 7196:1 7200:2 7202:2 7232:1 7249:1 7254:2 7257:1 7276:3 7278:1 7295:1 7296:1 7300:1 7309:1 7316:1 7321:1 7382:2 7386:1 7387:1 7390:1 7391:1 7392:1 7394:1 7396:2 7397:1 7401:2 7402:3 7403:3 7409:1 7410:5 7411:1 7412:1 7413:1 7427:1 7451:1 7454:1 7503:1 7509:1 7553:1 7559:1 7567:1 7579:2 7586:1 7613:1 7615:1 7664:1 7681:1 7684:2 7687:1 7690:1 7709:1 7710:5 7716:3 7722:1 7725:1 7731:1 7732:1 7742:2 7764:2 7790:1 7791:1 7805:1 7825:1 7846:1 7849:1 7869:1 7876:1 7877:2 7879:1 7891:3 7900:1 7907:1 7915:2 7940:1 7947:1 7955:1 7987:1 7998:1 8005:1 8012:1 8019:1 8026:2 8032:1 8071:1 8091:1 8093:1 8110:1 8111:2 8137:1 8138:1 8194:2 8215:1 8224:1 8233:1 8251:1 8255:5 8263:2 8289:1 8299:1 8320:1 8335:1 8358:1 8490:1 8499:1 8507:1 8512:1 8526:3 8575:1 8577:1 8586:3 8604:2 8629:2 8632:1 8674:2 8688:1 8689:1 8714:1 8759:1 8770:1 8784:1 8786:1 8791:3 8821:1 8830:2 8831:4 8832:2 8850:1 8854:2 8861:1 8888:1 8890:1 8898:1 8901:30 8902:1 8908:1 8920:8 8923:16 8929:1 8933:1 8936:1 8943:1 8952:1 8978:3 8979:1 9001:1 9014:1 9034:1 9051:1 9059:1 9068:1 9082:2 9085:1 9091:1 9149:3 9153:5 9161:1 9206:1 9209:3 9212:1 9234:1 9251:1 9285:1 9304:1 9341:1 9343:3 9362:1 9368:1 9370:5 9386:1 9405:1 9416:2 9436:1 9444:1 9448:1 9454:1 9468:1 9470:1 9484:13 9511:1 9524:2 9525:1 9551:2 9589:1 9594:1 9605:2 9616:1 9630:2 9639:3 9664:1 9672:1 9678:3 9687:3 9694:1 9697:1 9709:2 9711:1 9715:2 9728:1 9732:2 9733:1 9734:1 9738:1 9747:1 9748:2 9754:2 9765:1 9777:2 9778:2 9788:1 9792:1 9809:2 9829:1 9836:1 9841:3 9859:1 9866:1 9875:1 9878:2 9880:1 9881:3 9882:1 9884:2 9885:3 9888:1 9894:1 9897:2 9899:2 9903:2 9919:1 9925:1 9934:2 9944:1 9945:1 9951:1 9959:1 9973:1 9977:2 10002:2 10024:4 10044:1 10053:3 10056:1 10065:1 10067:1 10069:1 10088:1 10092:1 10121:1 10128:2 10138:1 10139:1 10144:1 10150:2 10161:2 10162:1 10166:1 10192:1 10204:1 10208:3 10209:2 10214:3 10216:1 10218:1 10219:2 10221:3 10223:2 10228:1 10229:2 10230:1 10252:1 10254:1 10255:1 10257:4 10270:1 10295:2 10302:1 10367:1 10377:2 10397:2 10399:1 10410:1 10412:1 10422:1 10438:1 10441:1 10461:1 10520:3 10554:1 10558:1 10563:1 10565:3 10580:1 10588:5 10610:1 10615:2 10619:1 10627:1 10634:1 10653:1 10662:1 10671:3 10673:1 10695:1 10701:1 10710:1 10726:1 10750:1 10756:1 10768:1 10819:1 10845:1 10846:1 10851:1 10857:1 10858:1 10862:1 10864:2 10879:1 10900:1 10903:1 10906:1 10937:1 10939:1 10942:2 10947:1 10959:1 11009:14 11016:1 11039:2 11047:3 11056:2 11059:1 11083:1 11091:1 11104:2 11124:1 11154:13 11171:1 11176:1 11198:1 11210:4 11218:1 11225:1 11226:1 11229:3 11230:1 11249:1 11263:1 11267:1 11316:1 11318:3 11319:1 11359:6 11363:2 11366:3 11368:2 11374:1 11375:1 11382:1 11392:2 11400:2 11402:1 11408:1 11417:1 11422:3 11426:1 11427:1 11429:1 11437:1 11464:3 11470:2 11489:1 11492:2 11496:1 11513:1 11545:1 11550:1 11551:3 11553:1 11580:8 11582:1 11583:4 11595:1 11597:1 11697:2 11703:1 11720:1 11728:1 11754:1 11761:1 11775:4 11789:1 11800:1 11832:1 11880:1 11897:2 11914:3 11921:1 11926:1 11932:1 11948:1 11955:1 11967:1 11970:1 11994:2 12001:3 12014:1 12043:1 12044:1 12052:2 12072:2 12075:2 12090:1 12098:5 12117:2 12119:3 12121:2 12125:1 12128:1 12145:1 12147:1 12150:1 12173:1 12174:2 12197:1 12200:1 12211:4 12229:2 12241:2 12249:6 12266:1 12314:1 12316:1 12322:1 12345:2 12346:2 12347:1 12352:1 12396:1 12408:1 12459:1 12468:1 12476:1 12492:1 12498:2 12499:1 12512:5 12531:3 12534:5 12549:1 12553:1 12556:1 12596:3 12610:1 12623:2 12634:1 12635:1 12642:1 12664:3 12676:2 12706:1 12740:1 12743:1 12770:1 12807:1 12810:1 12818:1 12821:1 12825:3 12826:1 12850:1 12855:1 12863:1 12867:2 12883:1 12888:1 12892:1 12893:1 12919:2 12953:2 12960:1 12974:2 12980:1 12981:1 12983:1 12990:1 12991:1 13014:1 13021:3 13057:1 13061:1 13063:5 13067:1 13100:1 13122:1 13125:1 13127:1 13135:1 13138:2 13153:1 13176:1 13204:1 13207:1 13218:3 13234:3 13236:1 13252:3 13254:2 13284:1 13297:1 13303:1 13318:3 13327:1 13328:4 13341:1 13352:1 13354:1 13355:1 13363:1 13366:1 13368:5 13369:1 13376:2 13379:5 13382:1 13387:1 13395:1 13403:4 13428:2 13447:4 13454:1 13463:2 13507:1 13518:4 13528:1 13532:1 13536:1 13537:1 13576:1 13580:1 13590:3 13592:1 13607:1 13616:1 13629:1 13645:1 13652:1 13690:2 13692:1 13717:2 13759:1 13766:1 13780:1 13832:2 13834:1 13847:1 13867:1 13872:1 13874:1 13878:1 13913:3 13914:3 13916:14 13923:4 13940:1 13956:1 13962:1 13972:2 14002:1 14021:1 14041:1 14043:1 14073:1 14074:1 14082:5 14083:2 14098:1 14106:2 14167:3 14172:1 14198:1 14207:1 14219:2 14222:1 14228:1 14235:1 14248:1 14265:1 14286:1 14292:1 14312:3 14326:1 14329:1 14369:1 14373:2 14382:1 14388:1 14399:1 14441:1 14506:6 14519:1 14523:1 14527:2 14530:1 14546:1 14565:2 14566:3 14588:1 14592:1 14629:1 14660:1 14667:2 14693:1 14705:1 14728:1 14746:1 14748:1 14751:2 14775:1 14785:1 14819:1 14870:1 14894:1 14920:1 14930:1 14943:1 14948:1 14955:1 14970:1 14990:1 15002:2 15014:1 15017:2 15023:1 15044:1 15045:1 15080:1 15086:1 15088:2 15140:1 15146:1 15154:1 15155:2 15156:5 15162:3 15164:1 15171:1 15178:2 15182:1 15192:2 15195:1 15198:1 15204:3 15234:7 15238:1 15247:1 15250:1 15254:2 15266:1 15280:1 15301:2 15317:1 15338:3 15355:1 15365:1 15380:1 15400:3 15420:1 15430:4 15441:1 15450:1 15464:1 15465:2 15466:2 15480:1 15486:1 15502:1 15503:1 15511:1 15514:2 15529:1 15538:2 15576:1 15579:1 15589:1 15597:1 15598:1 15599:2 15600:1 15602:1 15635:1 15636:1 15659:1 15663:1 15664:1 15677:1 15683:1 15684:1 15688:2 15701:2 15706:1 15707:1 15726:1 15739:6 15750:1 15797:1 15801:1 15821:1 15822:1 15827:1 15851:1 15856:2 15857:1 15861:3 15891:1 15906:1 15908:1 15918:1 15921:1 15933:2 15934:3 15938:2 15939:4 15950:1 15970:1 15977:3 15997:1 16008:1 16035:2 16037:1 16043:1 16046:1 16051:1 16070:2 16107:1 16118:1 16202:2 16220:1 16246:1 16263:1 16279:1 16339:1 16341:1 16382:1 16392:1 16393:1 16401:1 16402:1 16408:1 16412:3 16414:1 16416:1 16424:1 16428:1 16442:2 16467:1 16483:1 16491:1 16495:1 16506:1 16517:1 16525:2 16561:1 16570:1 16583:1 16603:1 16612:1 16618:1 16621:1 16631:1 16640:4 16661:1 16675:1 16687:1 16692:1 16718:1 16775:3 16828:1 16874:1 16885:1 16892:2 16939:1 16951:1 16970:2 17000:3 17005:2 17007:1 17010:1 17012:1 17013:1 17031:1 17037:1 17059:1 17078:1 17098:2 17109:3 17137:1 17162:1 17163:1 17167:1 17191:1 17194:1 17202:1 17205:1 17207:1 17235:1 17237:1 17240:1 17246:1 17255:1 17280:1 17283:1 17294:1 17347:1 17353:3 17355:2 17360:1 17379:4 17380:1 17385:1 17408:1 17433:3 17435:1 17441:1 17445:1 17448:1 17479:1 17481:1 17488:1 17496:1 17501:3 17508:1 17512:2 17520:1 17546:1 17558:1 17566:2 17591:1 17611:1 17627:1 17633:1 17634:1 17653:1 17662:2 17685:7 17687:6 17689:1 17694:1 17722:2 17736:1 17740:2 17758:3 17763:1 17776:2 17796:1 17803:1 17813:1 17829:2 17833:1 17835:1 17844:4 17854:1 17864:1 17873:1 17884:1 17885:3 17889:2 17890:5 17892:1 17896:1 17900:1 17901:1 17902:1 17912:1 17913:4 17919:4 17968:2 17996:1 18009:1 18012:2 18022:2 18024:2 18030:3 18041:1 18060:2 18065:1 18073:1 18096:2 18101:2 18127:2 18145:1 18146:1 18158:1 18175:1 18178:2 18182:1 18187:7 18198:2 18199:2 18217:1 18222:1 18225:1 18243:1 18254:1 18263:14 18291:1 18300:5 18301:1 18305:1 18324:2 18341:43 18361:3 18390:1 18418:1 18424:1 18426:1 18427:2 18455:1 18460:1 18467:1 18468:1 18473:2 18474:3 18477:1 18482:2 18486:1 18501:1 18513:1 18516:1 18518:1 18523:1 18526:1 18530:1 18543:1 18544:1 18565:1 18567:1 18604:1 18610:5 18634:1 18643:1 18648:2 18654:1 18692:1 18696:1 18715:1 18762:1 18768:1 18797:1 18798:1 18808:1 18822:2 18826:1 18865:1 18867:1 18870:1 18905:1 18908:1 18916:1 18922:3 18927:1 18944:1 18946:3 18968:3 18996:1 18997:1 19000:1 19004:2 19006:1 19008:1 19016:1 19020:1 19027:1 19042:1 19048:9 19057:1 19072:1 19084:1 19094:2 19107:1 19136:1 19143:1 19165:1 19167:1 19170:3 19177:1 19179:2 19182:1 19185:1 19202:1 19206:1 19222:1 19232:1 19240:1 19243:2 19245:2 19307:2 19331:1 19374:1 19382:2 19385:1 19407:1 19425:1 19434:2 19435:1 19440:1 19449:1 19457:1 19461:1 19466:1 19469:3 19473:1 19480:1 19490:1 19497:3 19501:1 19504:1 19521:1 19542:1 19550:1 19564:1 19587:2 19595:1 19601:1 19619:4 19640:1 19675:1 19684:1 19685:1 19692:1 19711:3 19713:1 19715:1 19718:1 19726:1 19730:2 19735:1 19737:1 19759:1 19761:2 19775:1 19776:1 19789:2 19817:1 19819:1 19840:1 19841:2 19926:2 19936:1 19944:1 19956:1 19962:1 19971:2 20012:1 20016:1 20017:2 20020:2 20021:1 20034:1 20037:8 20052:1 20070:1 20078:1 20103:1 20118:1 20130:1 20131:1 20151:1 20152:1 20153:1 20160:1 20179:1 20191:1 20210:1 20216:1 20249:1 20255:2 20260:1 20261:4 20265:1 20274:1 20307:1 20340:1 20382:2 20383:1 20392:1 20420:1 20423:1 20429:1 20450:1 20456:2 20467:2 20474:2 20480:1 20488:1 20489:2 20507:1 20523:1 20531:1 20532:3 20579:1 20585:1 20595:1 20621:3 20630:1 20645:3 20649:1 20651:1 20655:3 20676:1 20677:1 20682:1 20693:1 20695:1 20701:1 20749:1 20790:1 20792:7 20797:1 20806:1 20813:1 20821:1 20852:1 20860:1 20865:1 20869:1 20878:1 20884:2 20906:1 20912:1 20922:1 20942:1 20946:3 20948:1 20950:2 20965:3 20976:1 20980:2 21013:1 21020:2430 21028:1 21044:1 21046:4 21047:1 21054:2 21066:2 21097:1 21108:1 21131:1 21136:3 21147:1 21178:3 21201:2 21212:2 21236:1 21239:3 21242:1 21268:3 21277:1 21284:3 21287:1 21299:1 21340:1 21341:1 21381:1 21384:3 21418:1 21442:2 21454:1 21463:1 21474:1 21484:1 21490:1 21494:1 21495:1 21511:1 21539:1 21549:1 21551:2 21554:1 21563:4 21576:1 21586:1 21619:1 21660:1 21661:1 21675:1 21678:3 21728:1 21749:1 21773:1 21779:2 21789:1 21795:1 21797:1 21803:2 21810:1 21819:3 21832:2 21835:1 21836:3 21841:1 21857:1 21867:10 21891:1 21892:1 21894:1 21895:1 21896:11 21909:1 21929:1 21930:3 21934:1 21950:1 21965:1 21970:3 21991:1 21995:1 22000:1 22002:2 22004:1 22008:1 22015:1 22029:2 22060:1 22068:2 22075:1 22089:1 22101:3 22131:1 22133:1 22136:1 22190:1 22194:1 22198:1 22244:1 22262:1 22264:9 22272:1 22308:1 22317:1 22340:1 22352:1 22369:1 22375:1 22377:5 22399:1 22422:2 22443:1 22444:1 22467:1 22476:1 22478:1 22483:1 22484:1 22485:1 22495:1 22516:1 22534:1 22542:4 22547:1 22556:1 22561:1 22581:2 22582:1 22610:1 22616:1 22623:1 22624:1 22644:1 22651:1 22676:1 22680:1 22685:1 22687:2 22701:2 22702:1 22708:6 22737:1 22745:1 22758:1 22775:1 22781:1 22800:9 22809:1 22822:2 22825:2 22844:1 22845:1 22861:1 22863:9 22881:1 22910:1 22922:1 22924:1 22933:1 22945:1 22964:1 22999:1 23005:1 23024:2 23043:4 23045:1 23056:1 23063:1 23105:2 23153:4 23165:1 23166:1 23183:1 23185:1 23198:1 23199:1 23242:1 23245:1 23265:1 23312:2 23335:1 23341:1 23369:1 23374:1 23383:1 23399:1 23401:1 23407:1 23439:1 23457:1 23466:1 23490:3 23512:2 23517:1 23522:1 23525:1 23532:9 23546:3 23549:1 23550:1 23560:1 23569:4 23574:1 23595:3 23605:1 23638:2 23653:2 23657:1 23673:2 23681:1 23682:1 23711:6 23719:1 23722:2 23730:1 23742:1 23743:1 23765:1 23786:1 23803:1 23808:1 23832:2 23836:1 23839:1 23843:1 23849:1 23859:3 23873:1 23881:1 23882:1 23886:1 23898:1 23940:1 23944:1 23948:1 23968:1 24003:1 24009:1 24055:1 24063:1 24065:4 24070:2 24073:2 24084:3 24087:1 24094:1 24097:1 24100:1 24143:1 24147:1 24149:1 24154:2 24164:1 24181:1 24195:1 24201:1 24202:1 24216:1 24218:5 24221:2 24240:1 24255:1 24271:1 24277:1 24311:2 24320:1 24328:1 24339:1 24341:1 24344:1 24360:2 24363:9 24377:1 24384:1 24385:1 24391:1 24396:1 24402:1 24408:1 24427:3 24447:1 24472:1 24475:2 24478:1 24482:1 24488:3 24505:1 24542:1 24543:4 24556:2 24563:2 24567:1 24623:1 24649:2 24659:1 24661:1 24662:7 24666:1 24670:2 24682:1 24687:1 24700:2 24701:1 24702:1 24703:2 24707:1 24714:1 24719:2 24722:1 24732:1 24734:1 24747:2 24752:2 24774:2 24824:4 24825:1 24834:1 24855:1 24861:1 24869:2 24872:1 24888:1 24894:1 24908:4 24917:1 24923:1 24935:1 24979:14 24980:1 24984:1 25005:1 25018:1 25021:1 25026:1 25033:1 25047:1 25057:1 25065:1 25071:2 25092:1 25094:2 25101:1 25104:1 25110:2 25121:2 25125:1 25126:1 25129:8 25139:1 25148:2 25156:3 25168:2 25190:1 25201:1 25206:1 25209:2 25218:1 25233:1 25236:1 25243:1 25245:2 25252:1 25256:1 25270:2 25275:1 25289:5 25303:3 25318:2 25328:1 25340:1 25368:1 25369:1 25387:2 25405:1 25459:1 25473:3 25480:1 25485:1 25501:2 25503:1 25526:1 25539:1 25547:1 25561:1 25581:1 25588:1 25595:11 25597:1 25598:2 25620:1 25634:1 25653:1 25655:1 25667:1 25676:1 25683:1 25689:1 25694:1 25695:2 25705:1 25720:1 25732:3 25754:1 25755:5 25780:1 25788:1 25804:1 25828:2 25853:1 25860:1 25871:2 25907:1 25928:1 25929:2 25936:2 25954:1 26001:1 26015:1 26016:1 26017:3 26024:1 26030:1 26043:1 26044:1 26056:1 26073:1 26075:2 26094:1 26133:1 26135:2 26149:1 26157:1 26160:2 26165:1 26174:2 26179:3 26184:1 26187:1 26213:1 26230:1 26243:1 26254:3 26255:1 26277:5 26283:1 26287:1 26294:1 26308:1 26309:1 26315:1 26316:2 26319:2 26324:1 26352:2 26359:1 26360:2 26364:1 26415:4 26421:1 26424:16 26426:1 26498:1 26516:1 26532:1 26534:1 26539:1 26605:2 26612:1 26624:1 26635:1 26636:1 26642:1 26679:1 26694:1 26705:1 26721:1 26748:1 26751:2 26758:2 26794:4 26814:1 26818:1 26880:1 26897:1 26924:2 26929:1 26931:1 26934:1 26936:1 26938:2 26952:1 26978:1 27009:1 27014:1 27022:1 27028:1 27032:1 27070:1 27072:1 27112:1 27114:3 27122:1 27132:1 27133:1 27141:3 27159:1 27183:1 27198:1 27225:1 27251:3 27262:1 27303:5 27360:1 27377:1 27388:1 27389:1 27397:4 27398:2 27401:1 27419:1 27427:1 27437:1 27439:2 27447:1 27451:3 27456:2 27488:1 27489:2 27491:1 27502:1 27512:1 27516:1 27522:2 27533:1 27552:1 27569:1 27574:1 27575:1 27602:4 27612:2 27618:1 27620:1 27627:1 27641:1 27676:1 27716:1 27727:1 27728:1 27753:1 27757:1 27760:1 27763:1 27769:1 27804:1 27809:1 27813:1 27817:1 27846:1 27851:1 27863:1 27872:2 27881:1 27884:1 27917:3 27933:4 27957:1 27985:1 27989:1 27997:1 28007:1 28015:2 28021:1 28032:3 28068:2 28071:1 28074:1 28094:1 28112:1 28132:1 28145:4 28174:1 28242:1 28253:1 28255:1 28273:4 28327:2 28331:3 28335:1 28342:1 28348:3 28408:1 28414:1 28442:1 28485:1 28500:1 28503:2 28507:1 28509:4 28512:3 28518:1 28537:1 28540:1 28557:1 28560:1 28563:2 28591:1 28602:1 28608:5 28609:1 28625:1 28635:3 28641:5 28642:1 28652:1 28666:1 28671:1 28680:1 28697:2 28725:5 28728:1 28734:1 28739:1 28740:1 28753:2 28754:1 28778:1 28811:3 28847:4 28850:1 28870:2 28872:2 28902:2 28913:1 28937:1 28945:3 28972:1 28981:1 28994:2 28998:3 29029:1 29052:1 29060:2 29063:1 29085:1 29088:2 29102:1 29104:1 29105:1 29120:1 29123:1 29128:1 29146:1 29147:1 29155:1 29156:2 29161:1 29165:1 29174:1 29189:5 29195:1 29199:1 29210:1 29219:1 29261:1 29272:1 29291:1 29316:1 29326:1 29332:1 29334:3 29365:7 29374:1 29409:1 29417:2 29439:1 29472:2 29483:1 29491:1 29498:1 29503:1 29518:3 29519:2 29527:1 29543:1 29546:1 29564:1 29574:2 29637:3 29653:5 29655:2 29665:1 29675:2 29676:1 29677:4 29679:4 29683:1 29685:1 29711:1 29732:2 29759:1 29766:1 29771:1 29781:2 29792:1 29797:1 29821:2 29842:1 29850:1 29861:1 29882:1 29923:1 29956:1 29964:1 30023:1 30051:1 30063:1 30079:1 30085:1 30121:1 30123:2 30129:1 30149:1 30160:2 30168:2 30183:2 30198:1 30205:1 30221:1 30235:1 30294:1 30295:2 30315:1 30334:1 30367:1 30371:1 30393:2 30399:3 30412:1 30415:1 30418:8 30450:2 30451:1 30514:1 30524:16 30525:1 30529:3 30531:1 30540:1 30547:1 30560:1 30643:2 30647:3 30648:3 30651:1 30684:1 30703:1 30706:1 30707:1 30719:2 30721:1 30724:1 30728:1 30738:1 30739:1 30741:1 30745:1 30753:1 30788:2 30800:1 30818:1 30832:1 30845:1 30846:2 30849:1 30876:1 30879:1 30881:1 30895:1 30901:1 30906:1 30916:1 30958:1 30960:1 30978:1 30997:1 30998:1 31021:3 31088:6 31104:1 31132:1 31168:3 31176:3 31192:1 31200:1 31204:1 31207:1 31243:1 31259:1 31262:3 31268:1 31302:2 31317:1 31349:1 31359:4 31392:1 31403:1 31473:1 31476:1 31477:1 31489:4 31493:1 31502:1 31514:1 31529:1 31541:1 31544:21 31545:2 31546:2 31549:2 31552:3 31555:1 31566:1 31586:1 31587:11 31597:1 31602:1 31603:1 31613:1 31644:1 31646:1 31651:2 31661:1 31662:1 31681:1 31697:1 31702:4 31713:4 31718:1 31719:1 31754:3 31759:2 31766:1 31801:1 31802:1 31806:1 31829:1 31849:1 31854:1 31863:2 31900:1 31901:1 31932:1 31944:1 31951:1 31957:2 31959:1 31964:4 31969:1 31971:1 31976:1 31990:1 31994:1 32000:1 32012:1 32028:7 32039:3 32083:1 32110:3 32115:6 32118:1 32119:1 32126:1 32147:2 32158:1 32163:1 32175:1 32178:1 32179:1 32186:1 32214:3 32225:1 32257:1 32263:3 32275:1 32279:1 32310:3 32314:1 32321:4 32330:1 32342:2 32363:1 32374:1 32381:1 32429:1 32445:1 32471:1 32473:1 32505:4 32510:1 32539:2 32543:1 32547:1 32559:1 32582:1 32590:2 32596:1 32605:3 32628:1 32642:1 32662:1 32676:2 32684:1 32686:1 32701:1 32713:1 32727:1 32733:6 32735:1 32740:1 32755:2 32785:2 32811:1 32821:4 32831:2 32891:1 32897:1 32898:1 32902:1 32903:1 32905:3 32910:1 32921:1 32957:1 32966:1 32971:1 32972:1 32973:1 32977:1 33021:1
16 26:1 27:1 66:1 78:1 85:4 104:1 109:1 145:1 164:1 173:1 176:1 189:1 219:1 235:1 262:1 269:4 295:1 318:2 338:1 351:4 375:1 387:1 397:2 398:1 399:2 427:1 434:1 437:1 443:1 468:2 475:1 484:1 502:3 505:1 509:2 525:1 542:1 551:2 567:1 575:1 577:1 581:1 584:1 589:1 591:2 628:1 629:1 636:2 649:2 713:1 723:3 751:2 757:1 762:4 766:1 774:1 779:1 790:1 793:1 805:1 812:1 821:1 832:1 869:2 886:1 891:1 908:1 929:1 937:1 944:1 949:2 957:1 970:1 975:1 984:1 988:1 1000:1 1007:1 1016:1 1035:1 1046:1 1051:1 1054:1 1058:2 1069:2 1078:3 1080:1 1081:1 1082:5 1084:2 1114:1 1139:3 1143:2 1149:1 1164:1 1170:1 1180:2 1185:1 1202:1 1220:2 1221:1 1240:1 1250:1 1254:1 1259:1 1285:1 1288:1 1301:1 1341:1 1353:3 1359:1 1366:1 1369:2 1377:2 1387:1 1388:4 1398:1 1406:1 1412:1 1426:3 1457:1 1464:1 1466:1 1469:1 1472:3 1475:1 1487:1 1488:2 1489:2 1506:2 1512:1 1524:1 1526:1 1540:1 1546:2 1560:2 1572:1 1574:1 1586:2 1600:2 1630:1 1633:1 1642:1 1676:3 1677:1 1683:1 1689:1 1695:1 1711:1 1733:1 1742:6 1754:1 1760:5 1767:2 1773:1 1774:2 1775:1 1776:1 1780:2 1787:1 1802:3 1835:1 1839:5 1853:1 1863:1 1867:1 1871:2 1879:2 1907:1 1914:1 1919:3 1924:3 1927:2 1941:1 1944:1 1953:1 1963:4 1966:3 1968:1 1975:1 1976:1 1993:1 2018:1 2038:1 2039:1 2050:2 2053:1 2055:1 2058:1 2069:2 2077:2 2097:1 2098:1 2122:1 2127:1 2128:1 2139:1 2142:1 2143:1 2150:1 2156:1 2174:1 2175:1 2180:1 2187:1 2188:1 2201:1 2211:1 2215:1 2226:1 2230:1 2232:1 2234:4 2241:1 2245:1 2262:1 2263:2 2264:1 2282:1 2317:1 2320:1 2323:1 2345:1 2354:2 2358:1 2361:2 2368:3 2369:1 2407:1 2414:2 2435:1 2438:1 2439:1 2441:3 2443:1 2444:2 2446:1 2475:3 2501:2 2509:1 2518:1 2531:1 2553:1 2556:1 2566:1 2571:1 2572:1 2584:1 2628:1 2629:1 2630:1 2631:2 2632:3 2637:1 2638:3 2640:1 2641:1 2643:5 2645:1 2647:3 2651:1 2654:1 2660:4 2665:3 2668:5 2687:1 2712:1 2728:1 2733:1 2744:1 2754:1 2755:1 2759:1 2762:1 2763:2 2782:1 2790:1 2794:1 2800:1 2808:1 2826:1 2845:3 2856:1 2871:1 2883:2 2909:1 2921:1 2925:1 2927:1 2944:1 2986:1 2994:1 3021:1 3023:1 3062:2 3082:4 3092:1 3098:3 3117:1 3119:1 3127:1 3130:2 3136:6 3150:1 3164:2 3173:1 3177:1 3182:1 3189:3 3193:1 3197:1 3237:2 3246:2 3252:1 3254:1 3256:4 3264:2 3314:4 3322:1 3328:1 3336:1 3355:10 3363:7 3392:2 3409:1 3426:21 3435:1 3441:1 3457:1 3459:1 3473:1 3497:1 3533:2 3542:1 3607:3 3612:1 3613:1 3625:1 3634:1 3639:1 3688:1 3693:1 3700:1 3710:2 3713:4 3721:1 3739:10 3759:1 3764:1 3773:1 3789:1 3809:1 3821:1 3823:5 3863:1 3894:1 3900:1 3906:1 3918:1 3941:1 3944:1 3959:1 3965:1 3975:3 3983:2 3985:1 3992:1 4003:3 4041:1 4049:1 4053:2 4076:1 4077:1 4089:3 4125:1 4144:1 4150:1 4152:3 4156:1 4161:2 4164:1 4165:1 4203:1 4210:1 4235:1 4245:2 4256:1 4270:1 4271:3 4297:1 4317:1 4323:2 4325:30 4340:1 4347:1 4361:2 4363:1 4364:7 4367:1 4375:1 4376:2 4377:16 4379:1 4381:4 4391:2 4405:3 4408:1 4418:1 4419:3 4423:2 4425:2 4426:2 4438:1 4439:2 4442:1 4444:1 4480:2 4490:1 4491:3 4502:1 4507:1 4537:1 4541:1 4543:1 4544:3 4555:2 4567:2 4575:1 4581:1 4587:1 4597:1 4619:1 4622:1 4630:1 4632:1 4633:1 4635:1 4636:1 4643:1 4646:1 4652:1 4655:1 4658:3 4674:3 4678:1 4686:1 4730:1 4799:3 4810:1 4813:2 4834:2 4852:1 4855:1 4870:2 4876:1 4879:1 4880:1 4906:1 4913:1 4924:1 4926:1 4937:1 4989:1 5010:8 5027:1 5086:1 5090:1 5098:1 5106:5 5117:1 5120:2 5138:1 5152:3 5155:1 5176:1 5181:2 5198:1 5205:1 5268:2 5269:1 5331:1 5363:2 5367:1 5370:2 5381:1 5390:3 5403:1 5410:2 5433:2 5438:1 5509:1 5510:1 5514:1 5516:1 5528:1 5545:2 5558:1 5613:1 5617:1 5632:1 5640:2 5643:1 5645:1 5659:12 5660:1 5678:1 5699:2 5729:2 5744:1 5761:1 5784:3 5797:3 5800:1 5802:4 5821:2 5822:2 5823:5 5824:1 5828:1 5831:2 5833:1 5840:1 5841:15 5842:1 5844:1 5848:2 5849:3 5860:1 5877:1 5880:2 5936:1 5950:1 5958:1 5968:1 5972:1 6050:1 6060:1 6081:3 6082:3 6089:5 6125:1 6142:1 6157:1 6168:2 6169:15 6177:1 6205:1 6221:1 6255:2 6301:1 6305:1 6322:1 6350:1 6357:1 6371:1 6379:1 6383:1 6394:1 6403:1 6404:1 6462:1 6463:1 6465:1 6469:1 6473:1 6480:1 6483:2 6507:1 6515:1 6518:1 6531:2 6540:1 6542:1 6548:1 6568:2 6574:1 6611:1 6617:3 6640:2 6647:1 6669:1 6672:1 6673:1 6678:1 6686:1 6707:1 6725:1 6728:1 6733:1 6753:1 6772:1 6776:1 6777:1 6808:1 6826:1 6844:3 6845:1 6868:1 6870:3 6873:1 6891:1 6897:1 6959:2 7029:1 7034:1 7035:5 7043:1 7045:2 7068:2 7074:1 7102:1 7120:1 7139:1 7149:2 7150:1 7154:1 7157:1 7190:3 7196:1 7200:2 7202:2 7232:1 7249:1 7254:2 7257:1 7276:3 7278:1 7295:1 7296:1 7300:1 7309:1 7316:1 7321:1 7363:1 7382:2 7386:1 7387:1 7390:1 7391:1 7392:1 7394:2 7396:2 7397:1 7401:2 7402:3 7403:3 7409:2 7410:5 7411:1 7412:1 7413:2 7427:1 7451:1 7454:1 7477:1 7503:1 7509:1 7553:1 7559:1 7567:1 7579:2 7586:1 7613:1 7615:1 7664:1 7681:1 7684:2 7687:1 7690:2 7709:1 7710:5 7716:3 7722:1 7725:1 7731:1 7732:1 7742:2 7764:2 7790:1 7791:1 7793:1 7805:1 7825:1 7846:1 7849:1 7869:1 7876:1 7877:2 7879:1 7891:3 7900:1 7907:1 7915:2 7940:1 7947:1 7955:1 7987:1 7998:1 8005:1 8012:1 8019:1 8026:2 8032:1 8071:1 8091:1 8093:1 8110:1 8111:2 8135:1 8137:1 8138:1 8194:2 8215:1 8224:1 8233:1 8251:1 8255:5 8263:2 8289:1 8299:1 8320:1 8335:1 8358:1 8425:1 8490:1 8499:1 8507:1 8512:1 8526:4 8575:1 8577:1 8586:3 8604:2 8629:3 8632:1 8674:2 8688:1 8689:1 8711:1 8714:1 8759:1 8770:1 8784:1 8786:1 8791:3 8821:1 8830:2 8831:4 8832:2 8842:1 8850:1 8854:2 8861:1 8888:1 8890:1 8898:1 8901:32 8902:1 8904:1 8908:1 8920:9 8923:17 8929:1 8933:1 8936:1 8943:1 8952:1 8978:3 8979:1 9001:1 9014:1 9034:1 9051:1 9059:1 9068:1 9082:2 9085:1 9091:1 9149:3 9153:5 9161:1 9206:1 9209:3 9212:1 9234:1 9251:1 9272:1 9285:1 9304:1 9341:1 9343:3 9362:1 9368:1 9370:5 9386:1 9405:1 9416:2 9436:1 9444:1 9448:1 9454:1 9468:1 9470:1 9484:15 9511:1 9516:1 9524:2 9525:1 9551:2 9589:1 9594:1 9605:2 9616:1 9630:2 9639:3 9664:1 9672:1 9678:3 9687:3 9694:1 9697:1 9709:2 9711:1 9715:2 9728:1 9732:2 9733:1 9734:1 9738:1 9747:1 9748:2 9754:2 9765:1 9777:2 9778:2 9788:1 9792:1 9809:2 9829:1 9836:1 9841:3 9859:1 9866:1 9875:1 9878:2 9880:1 9881:3 9882:1 9884:2 9885:3 9888:1 9894:1 9897:2 9899:2 9903:3 9919:1 9925:1 9934:2 9944:1 9945:1 9950:1 9951:1 9959:1 9973:1 9977:2 10002:2 10024:5 10044:1 10053:3 10056:1 10065:1 10067:1 10069:1 10080:1 10088:1 10092:1 10121:1 10128:2 10138:1 10139:1 10144:1 10150:2 10161:2 10162:1 10166:1 10192:1 10204:1 10208:3 10209:2 10214:3 10216:1 10218:1 10219:2 10221:3 10223:2 10228:1 10229:2 10230:1 10252:1 10254:1 10255:2 10257:4 10270:1 10272:1 10295:2 10302:1 10367:1 10377:2 10386:1 10397:2 10399:1 10410:1 10412:1 10422:1 10438:1 10441:1 10454:1 10461:1 10520:3 10554:1 10558:1 10563:1 10565:3 10580:1 10588:5 10610:1 10615:2 10619:1 10627:1 10634:1 10653:1 10662:1 10671:3 10673:1 10695:1 10701:1 10710:1 10726:1 10750:1 10756:1 10768:1 10819:1 10845:1 10846:1 10851:2 10857:1 10858:1 10862:1 10864:2 10879:1 10900:1 10903:1 10906:1 10937:1 10939:1 10942:2 10947:1 10959:1 11009:15 11016:1 11039:2 11047:4 11056:2 11059:1 11083:1 11091:1 11104:2 11124:1 11154:13 11171:1 11176:2 11189:1 11198:1 11210:5 11218:1 11225:1 11226:1 11229:3 11230:1 11249:1 11263:1 11267:1 11316:1 11318:3 11319:1 11359:6 11363:2 11366:4 11368:2 11374:1 11375:1 11382:1 11392:2 11400:2 11402:1 11408:1 11417:1 11422:3 11426:1 11427:1 11429:1 11437:1 11464:3 11470:2 11489:1 11492:2 11496:1 11513:1 11545:1 11550:1 11551:3 11553:1 11580:9 11582:1 11583:4 11595:1 11597:1 11697:2 11703:1 11720:1 11728:1 11754:1 11761:1 11775:4 11789:1 11800:1 11803:1 11832:1 11880:1 11897:2 11914:3 11921:1 11926:1 11932:1 11948:1 11955:1 11967:1 11970:1 11994:2 12001:3 12014:1 12043:1 12044:1 12052:2 12072:2 12075:2 12090:1 12098:6 12117:2 12119:3 12121:3 12125:1 12128:1 12145:1 12147:1 12150:1 12173:1 12174:2 12197:1 12200:1 12211:4 12229:2 12241:2 12249:6 12266:1 12314:1 12316:1 12322:1 12345:2 12346:2 12347:1 12352:1 12396:1 12408:1 12416:1 12459:1 12468:1 12476:1 12492:1 12498:2 12499:1 12512:5 12531:3 12534:5 12549:1 12553:1 12556:1 12596:4 12610:1 12623:2 12634:1 12635:1 12642:1 12664:3 12676:2 12706:1 12740:1 12743:1 12770:1 12807:1 12810:1 12818:1 12821:1 12825:3 12826:1 12850:1 12855:1 12863:1 12867:2 12883:1 12888:1 12892:1 12893:1 12919:2 12953:2 12960:1 12965:1 12974:2 12980:1 12981:1 12983:1 12990:1 12991:1 13014:1 13021:3 13057:1 13061:1 13063:5 13067:1 13100:1 13122:1 13125:1 13127:1 13135:1 13138:2 13153:1 13176:1 13204:1 13207:1 13218:4 13234:3 13236:1 13252:3 13254:2 13284:1 13297:1 13303:1 13318:3 13324:1 13327:1 13328:4 13341:1 13343:1 13352:1 13354:1 13355:1 13363:1 13366:1 13368:5 13369:1 13376:2 13379:5 13382:1 13387:1 13395:1 13403:4 13428:2 13447:4 13454:1 13463:2 13467:1 13507:1 13518:4 13528:1 13532:1 13536:1 13537:1 13576:1 13580:1 13590:3 13592:1 13607:1 13616:1 13629:1 13645:1 13652:1 13690:2 13692:2 13717:2 13759:1 13766:1 13780:2 13832:2 13834:2 13847:1 13867:1 13872:1 13874:1 13878:1 13913:3 13914:3 13916:15 13923:4 13940:1 13956:1 13962:1 13972:2 14002:1 14021:1 14041:1 14043:1 14073:1 14074:1 14082:5 14083:2 14098:1 14105:1 14106:2 14109:1 14130:1 14167:3 14172:1 14198:1 14207:1 14219:2 14222:1 14228:1 14235:1 14248:1 14265:1 14286:1 14292:1 14312:3 14326:1 14329:1 14369:1 14373:2 14382:1 14388:1 14399:1 14441:1 14506:6 14519:1 14523:1 14527:2 14530:1 14535:1 14546:1 14565:2 14566:3 14588:1 14592:1 14629:1 14660:1 14667:2 14693:1 14705:1 14728:1 14735:1 14746:1 14748:1 14751:2 14775:1 14785:1 14819:1 14870:1 14894:2 14920:1 14926:1 14930:1 14943:1 14948:1 14955:1 14960:1 14970:1 14990:1 15002:2 15014:1 15017:2 15023:1 15044:1 15045:1 15080:1 15086:1 15088:2 15140:1 15146:1 15154:1 15155:2 15156:5 15162:3 15164:1 15171:1 15178:2 15182:1 15192:3 15195:1 15198:1 15204:3 15234:7 15238:1 15247:1 15250:1 15254:2 15266:1 15280:1 15301:2 15317:1 15338:3 15355:1 15365:1 15380:1 15400:3 15420:1 15430:5 15441:1 15450:1 15464:1 15465:2 15466:2 15480:1 15486:1 15502:1 15503:1 15511:1 15514:2 15529:1 15538:2 15576:1 15579:1 15589:1 15597:1 15598:1 15599:2 15600:1 15602:1 15635:1 15636:1 15655:1 15659:1 15663:1 15664:1 15677:1 15683:1 15684:1 15688:2 15691:1 15701:2 15706:1 15707:1 15726:1 15739:6 15750:1 15797:1 15801:1 15821:1 15822:1 15827:1 15851:1 15853:1 15856:2 15857:1 15861:3 15891:1 15906:1 15908:1 15918:1 15921:1 15933:2 15934:3 15938:2 15939:4 15950:1 15970:1 15977:3 15997:1 16008:2 16035:2 16037:1 16043:1 16046:1 16051:1 16064:1 16070:2 16107:1 16118:1 16189:1 16202:2 16220:1 16246:1 16263:1 16279:1 16339:1 16341:1 16361:1 16382:1 16392:1 16393:1 16401:1 16402:1 16408:1 16412:3 16414:1 16416:1 16424:1 16428:1 16442:2 16467:1 16483:1 16491:1 16495:1 16506:1 16517:1 16525:2 16561:1 16570:1 16583:1 16600:1 16603:1 16612:1 16618:1 16621:1 16631:1 16640:4 16661:1 16675:1 16687:1 16692:1 16718:1 16738:1 16775:4 16828:1 16874:1 16885:1 16892:2 16939:1 16951:1 16970:2 17000:3 17005:3 17007:1 17010:1 17012:1 17013:1 17031:1 17037:1 17059:1 17078:1 17098:2 17099:1 17109:3 17137:1 17150:1 17162:1 17163:1 17167:1 17191:1 17194:1 17202:1 17205:1 17207:1 17235:1 17237:1 17240:1 17246:1 17255:1 17280:1 17283:1 17294:1 17347:2 17353:3 17355:2 17360:1 17379:4 17380:1 17385:1 17408:1 17433:3 17435:1 17441:1 17445:1 17448:1 17479:1 17481:1 17488:1 17496:1 17501:3 17508:1 17512:2 17520:2 17546:1 17558:1 17566:2 17591:1 17611:1 17627:1 17633:1 17634:1 17653:1 17662:2 17685:7 17687:7 17689:1 17694:1 17722:2 17734:1 17736:1 17740:2 17758:3 17763:1 17776:2 17796:1 17803:1 17813:1 17829:2 17833:1 17835:1 17844:4 17854:1 17864:1 17873:1 17875:1 17884:1 17885:3 17889:2 17890:5 17892:1 17896:1 17900:1 17901:1 17902:1 17912:1 17913:5 17919:4 17968:2 17996:1 18009:1 18012:2 18022:2 18024:2 18030:3 18041:1 18060:2 18065:1 18073:1 18096:2 18101:2 18127:2 18145:1 18146:1 18158:1 18175:1 18178:2 18182:1 18187:7 18198:2 18199:2 18217:2 18222:1 18225:1 18243:1 18254:1 18263:15 18291:1 18300:5 18301:1 18305:1 18324:2 18341:46 18361:3 18366:1 18390:1 18418:1 18424:1 18426:1 18427:2 18455:1 18460:1 18467:2 18468:1 18469:1 18473:2 18474:3 18477:1 18482:2 18486:1 18501:1 18513:1 18516:1 18518:1 18523:1 18526:1 18530:1 18543:1 18544:1 18565:1 18567:1 18604:1 18610:5 18634:1 18643:1 18648:2 18654:1 18692:1 18696:1 18715:1 18762:1 18768:1 18797:1 18798:1 18808:1 18822:2 18826:1 18865:1 18867:1 18870:1 18905:1 18908:1 18916:2 18922:3 18923:1 18927:1 18944:1 18946:3 18968:3 18985:1 18996:1 18997:1 19000:1 19004:2 19006:1 19008:1 19016:1 19020:1 19027:1 19029:1 19042:1 19048:10 19057:1 19072:1 19084:1 19094:2 19107:1 19136:1 19143:1 19165:1 19167:1 19170:3 19177:1 19179:2 19182:1 19185:1 19202:1 19206:1 19222:1 19232:1 19240:1 19243:2 19245:2 19307:2 19331:1 19374:1 19382:2 19385:1 19407:1 19425:1 19434:2 19435:1 19440:1 19449:1 19457:1 19461:1 19466:1 19469:3 19473:1 19480:1 19490:1 19497:3 19501:1 19504:1 19521:1 19542:1 19550:1 19564:1 19587:2 19595:1 19601:1 19619:4 19640:1 19675:1 19684:1 19685:1 19692:1 19711:3 19713:1 19715:1 19718:1 19726:1 19730:2 19735:1 19737:1 19759:2 19761:2 19772:1 19775:1 19776:1 19789:2 19813:1 19817:1 19819:1 19840:2 19841:2 19879:1 19926:2 19936:2 19944:1 19956:1 19962:1 19971:2 20012:1 20016:1 20017:2 20020:2 20021:1 20034:1 20037:8 20039:1 20052:1 20070:1 20078:1 20103:1 20118:1 20130:1 20131:1 20151:1 20152:1 20153:1 20160:1 20179:2 20191:1 20210:1 20216:1 20249:1 20255:2 20260:1 20261:4 20265:1 20274:1 20307:1 20340:1 20382:3 20383:1 20392:1 20420:1 20423:1 20429:1 20439:1 20450:1 20456:3 20467:2 20474:2 20480:1 20488:1 20489:2 20507:1 20523:1 20531:1 20532:3 20579:1 20585:1 20595:1 20621:3 20630:1 20645:3 20649:1 20651:1 20655:3 20676:1 20677:1 20682:1 20693:1 20695:1 20701:1 20749:1 20790:1 20792:9 20797:1 20806:1 20813:1 20821:1 20852:1 20860:1 20865:1 20869:1 20878:1 20884:2 20906:1 20912:1 20922:1 20942:1 20946:3 20948:1 20950:2 20965:3 20976:1 20980:2 21013:1 21020:2539 21028:1 21044:1 21046:4 21047:1 21054:2 21066:2 21097:1 21108:1 21121:1 21131:1 21136:3 21147:1 21178:3 21201:2 21212:2 21236:1 21239:3 21242:2 21268:3 21277:1 21284:3 21287:1 21299:1 21340:1 21341:1 21361:1 21381:1 21384:4 21414:1 21418:1 21442:2 21454:1 21463:1 21474:1 21484:1 21490:1 21494:1 21495:1 21511:1 21539:1 21549:1 21551:2 21554:1 21563:4 21576:1 21586:1 21619:1 21660:1 21661:1 21675:1 21678:3 21728:1 21749:1 21773:1 21779:2 21789:1 21795:1 21797:1 21803:2 21810:1 21819:4 21832:2 21835:1 21836:3 21841:1 21857:1 21867:10 21891:1 21892:1 21894:1 21895:1 21896:12 21909:1 21929:1 21930:3 21934:1 21950:1 21965:1 21970:3 21991:1 21995:1 22000:1 22002:2 22004:2 22008:1 22015:1 22029:2 22060:1 22068:2 22075:1 22089:1 22101:3 22131:1 22133:1 22136:1 22190:1 22194:1 22198:1 22235:1 22244:1 22262:1 22264:10 22272:1 22308:1 22317:1 22340:1 22352:1 22369:1 22375:1 22377:5 22399:1 22422:2 22443:1 22444:1 22467:1 22476:1 22478:1 22483:1 22484:1 22485:1 22495:1 22516:1 22534:1 22542:4 22547:1 22556:1 22561:1 22581:2 22582:1 22590:1 22610:1 22616:1 22623:1 22624:1 22644:1 22651:1 22676:1 22680:1 22685:1 22687:2 22701:2 22702:1 22708:6 22737:1 22745:1 22758:1 22775:1 22781:1 22800:10 22809:1 22822:2 22825:2 22844:1 22845:1 22861:1 22863:9 22881:1 22910:1 22922:1 22924:1 22933:1 22945:1 22964:1 22999:1 23005:1 23024:2 23043:4 23045:1 23056:1 23063:1 23105:2 23153:4 23165:1 23166:1 23183:1 23185:1 23198:1 23199:1 23242:1 23245:1 23264:1 23265:1 23312:2 23335:1 23341:1 23369:1 23374:1 23383:1 23399:1 23401:1 23407:1 23439:1 23457:1 23466:1 23490:3 23512:2 23517:1 23522:1 23525:1 23532:9 23542:1 23546:3 23549:1 23550:1 23560:1 23569:5 23574:1 23595:3 23605:1 23638:2 23653:2 23657:1 23673:2 23681:1 23682:1 23711:6 23719:1 23722:2 23730:1 23742:1 23743:1 23765:1 23786:1 23803:1 23808:1 23810:1 23832:2 23836:1 23839:1 23843:1 23849:1 23859:3 23873:1 23881:1 23882:1 23886:1 23898:1 23940:1 23944:1 23948:1 23968:1 24003:1 24009:1 24055:1 24063:1 24065:4 24070:2 24073:3 24084:3 24087:1 24094:1 24097:1 24100:1 24143:1 24147:1 24148:1 24149:1 24154:2 24164:1 24181:1 24195:1 24201:1 24202:1 24216:1 24218:5 24221:2 24240:1 24255:1 24271:1 24277:1 24310:1 24311:2 24320:1 24328:1 24339:1 24341:1 24344:1 24360:2 24363:10 24377:1 24384:1 24385:1 24391:1 24396:1 24402:1 24408:1 24413:1 24427:4 24447:1 24472:2 24475:2 24478:1 24482:1 24488:3 24505:1 24542:1 24543:4 24556:2 24563:2 24567:1 24623:1 24649:2 24659:1 24661:1 24662:7 24666:1 24670:2 24682:1 24683:1 24687:1 24700:2 24701:1 24702:1 24703:2 24707:1 24714:1 24719:2 24722:1 24732:1 24734:1 24747:2 24752:2 24774:2 24809:1 24824:4 24825:1 24834:1 24855:1 24858:1 24861:1 24869:2 24872:1 24888:1 24894:1 24908:4 24917:1 24923:1 24935:1 24979:15 24980:1 24984:1 25005:1 25018:1 25021:1 25026:1 25033:1 25047:1 25057:1 25065:1 25071:2 25092:1 25094:2 25101:1 25103:1 25104:1 25110:2 25121:2 25125:1 25126:1 25129:8 25139:1 25148:2 25156:3 25168:2 25190:1 25201:1 25206:1 25209:2 25218:1 25233:1 25236:1 25243:1 25245:2 25252:1 25256:1 25270:2 25275:1 25289:6 25303:3 25318:2 25328:1 25340:1 25368:1 25369:1 25387:2 25405:1 25423:1 25459:1 25473:3 25480:1 25485:1 25501:2 25503:1 25526:1 25539:1 25547:1 25561:1 25581:1 25588:1 25595:12 25597:1 25598:2 25620:1 25634:1 25653:1 25655:1 25667:1 25676:1 25683:1 25689:1 25694:1 25695:2 25705:1 25720:1 25732:3 25754:1 25755:5 25780:1 25788:1 25791:1 25804:1 25828:2 25853:1 25860:1 25871:2 25907:1 25928:1 25929:2 25936:2 25954:1 26001:1 26015:1 26016:1 26017:3 26024:1 26030:1 26043:1 26044:1 26056:1 26073:1 26075:2 26094:1 26133:1 26135:2 26149:1 26157:1 26160:2 26165:1 26174:2 26179:3 26184:1 26187:1 26213:1 26230:1 26243:1 26254:3 26255:1 26277:6 26283:1 26287:1 26294:1 26308:1 26309:1 26315:1 26316:2 26319:2 26324:1 26352:2 26359:1 26360:2 26364:1 26415:4 26421:1 26424:17 26426:1 26498:1 26516:1 26532:1 26534:1 26539:1 26605:2 26612:1 26624:1 26635:1 26636:1 26642:1 26655:1 26679:1 26694:1 26705:1 26721:1 26748:1 26751:2 26758:2 26794:4 26814:1 26818:1 26880:1 26897:1 26924:2 26929:1 26931:1 26934:1 26936:1 26938:2 26952:1 26978:1 27003:1 27009:1 27014:1 27022:1 27028:1 27032:1 27070:1 27072:1 27102:1 27112:1 27114:5 27122:1 27132:1 27133:1 27141:3 27159:1 27183:1 27198:1 27225:1 27251:3 27262:1 27303:5 27360:2 27377:1 27388:1 27389:1 27397:4 27398:2 27401:1 27419:1 27427:1 27437:1 27439:2 27447:1 27451:3 27456:2 27488:1 27489:2 27491:1 27502:2 27512:1 27516:1 27522:2 27533:1 27552:1 27569:1 27574:1 27575:1 27595:1 27602:4 27612:2 27618:1 27620:1 27627:1 27641:1 27676:1 27716:1 27727:1 27728:1 27743:1 27753:1 27757:2 27760:1 27763:1 27769:1 27804:1 27809:1 27813:1 27817:1 27846:1 27851:1 27863:1 27872:2 27881:1 27884:1 27917:3 27933:5 27957:1 27985:1 27989:1 27997:1 28007:1 28015:2 28021:1 28032:3 28068:2 28071:1 28074:1 28094:1 28112:1 28132:1 28139:1 28145:4 28174:1 28242:1 28253:1 28255:1 28273:4 28327:2 28331:3 28335:1 28342:1 28348:3 28408:1 28414:1 28442:1 28485:1 28500:1 28503:2 28507:1 28509:4 28512:3 28518:1 28537:1 28540:1 28557:1 28560:1 28563:2 28591:1 28602:1 28608:5 28609:1 28625:1 28635:3 28641:5 28642:1 28652:1 28666:1 28671:1 28680:1 28697:2 28725:6 28728:1 28734:1 28739:1 28740:1 28753:2 28754:1 28778:1 28803:1 28811:3 28847:4 28850:1 28870:2 28872:2 28902:2 28913:1 28937:1 28945:3 28972:1 28981:1 28994:2 28998:3 29029:1 29052:1 29060:2 29063:1 29066:1 29085:1 29088:2 29102:1 29104:1 29105:1 29120:1 29123:1 29128:1 29146:1 29147:1 29155:1 29156:2 29161:1 29165:1 29174:1 29189:6 29195:1 29199:1 29210:1 29212:1 29215:1 29219:1 29261:1 29272:1 29291:1 29316:1 29326:1 29332:1 29334:3 29365:9 29374:1 29409:1 29417:2 29439:1 29472:2 29483:1 29491:1 29498:1 29503:1 29518:3 29519:2 29527:1 29543:1 29546:2 29564:1 29574:2 29637:3 29653:5 29655:2 29665:1 29675:2 29676:1 29677:4 29679:4 29683:1 29685:1 29711:1 29732:2 29759:1 29766:1 29771:1 29781:3 29792:1 29797:1 29821:3 29842:1 29850:1 29861:1 29867:1 29882:1 29923:1 29956:1 29964:1 30023:1 30051:1 30063:1 30079:1 30085:1 30091:1 30121:1 30123:2 30129:1 30149:1 30160:2 30168:2 30183:2 30198:1 30205:1 30221:1 30235:1 30294:1 30295:2 30308:1 30315:1 30334:1 30367:1 30371:1 30393:2 30399:3 30410:1 30412:1 30415:1 30418:8 30450:2 30451:1 30514:1 30524:17 30525:1 30529:3 30531:1 30540:1 30547:1 30560:1 30643:2 30647:3 30648:3 30651:1 30684:1 30703:1 30706:1 30707:1 30719:2 30721:1 30724:1 30728:1 30738:1 30739:1 30741:1 30745:1 30753:1 30788:2 30800:1 30818:1 30832:1 30845:1 30846:2 30849:1 30876:1 30879:1 30881:1 30895:1 30901:1 30906:1 30916:1 30958:1 30960:1 30978:1 30997:1 30998:1 31021:3 31030:1 31088:7 31104:1 31132:1 31168:3 31176:3 31192:1 31200:1 31204:1 31207:1 31243:1 31259:1 31262:3 31268:1 31302:2 31317:1 31349:2 31359:4 31392:1 31400:1 31403:1 31473:1 31476:1 31477:1 31489:4 31493:1 31502:1 31514:1 31529:1 31541:1 31544:22 31545:2 31546:2 31549:2 31552:3 31555:1 31556:1 31566:1 31586:1 31587:11 31597:1 31602:1 31603:1 31613:1 31644:1 31646:1 31651:2 31661:1 31662:1 31681:1 31697:1 31702:4 31713:4 31718:1 31719:1 31743:1 31754:3 31759:2 31763:1 31766:1 31801:1 31802:1 31806:1 31829:1 31849:1 31854:1 31863:2 31900:1 31901:1 31932:1 31944:1 31951:1 31957:2 31959:1 31964:4 31969:1 31971:1 31976:1 31990:1 31994:2 32000:1 32012:1 32028:7 32039:3 32083:1 32110:3 32115:6 32118:1 32119:1 32126:1 32142:1 32147:2 32158:1 32163:1 32175:1 32178:1 32179:1 32186:1 32214:3 32225:1 32257:1 32263:3 32269:1 32275:1 32279:1 32307:1 32310:4 32314:1 32321:5 32330:1 32342:2 32363:1 32374:1 32381:1 32429:1 32445:1 32471:1 32473:1 32505:4 32510:1 32539:2 32543:1 32547:1 32559:1 32582:1 32590:2 32596:1 32605:3 32617:1 32628:1 32642:1 32662:1 32676:2 32684:1 32686:1 32701:1 32713:2 32727:1 32733:6 32735:1 32740:1 32755:2 32785:2 32787:1 32811:1 32821:4 32831:2 32891:1 32897:1 32898:1 32902:1 32903:1 32905:3 32910:1 32921:1 32957:1 32966:1 32971:1 32972:1 32973:1 32977:1 33021:1
16 26:1 27:1 66:1 78:1 85:4 104:1 109:1 145:1 164:1 173:1 176:1 189:1 219:1 235:1 262:1 269:4 295:1 318:2 338:1 351:4 375:1 387:1 397:2 398:1 399:2 427:1 434:1 437:1 443:1 468:2 475:1 484:1 502:3 505:1 509:2 525:1 542:1 551:2 567:1 575:1 577:1 581:1 584:1 589:1 591:2 628:1 629:1 636:2 649:2 713:1 723:3 751:2 757:1 762:4 766:1 774:1 779:1 790:1 793:1 805:1 812:1 821:1 832:1 869:2 886:1 891:1 908:1 929:1 937:1 944:1 949:2 957:1 970:1 975:1 984:1 988:1 1000:1 1007:1 1016:1 1035:1 1046:2 1051:1 1054:1 1058:2 1069:2 1078:3 1080:1 1081:1 1082:5 1084:2 1114:1 1138:1 1139:4 1143:2 1149:1 1164:1 1170:1 1180:2 1185:1 1202:1 1220:2 1221:1 1240:1 1250:1 1254:1 1259:1 1285:1 1288:1 1301:1 1341:1 1353:3 1359:1 1366:1 1368:1 1369:2 1377:2 1387:1 1388:4 1398:1 1406:1 1412:1 1426:3 1457:1 1464:1 1466:1 1469:1 1472:3 1475:1 1487:1 1488:2 1489:2 1506:2 1512:1 1524:1 1526:1 1540:1 1546:2 1560:2 1572:1 1574:1 1586:2 1600:2 1630:1 1633:1 1642:1 1676:3 1677:1 1683:1 1689:1 1695:1 1711:1 1733:1 1742:6 1754:1 1760:5 1767:2 1773:1 1774:2 1775:1 1776:1 1780:2 1787:1 1802:3 1835:1 1839:5 1853:1 1863:1 1867:1 1871:2 1879:2 1907:2 1914:1 1919:3 1924:3 1927:2 1939:1 1941:1 1944:1 1953:1 1963:4 1966:3 1968:1 1975:1 1976:1 1993:1 2018:1 2038:1 2039:1 2050:2 2053:1 2055:1 2058:1 2069:2 2077:2 2097:1 2098:1 2122:1 2127:1 2128:1 2139:1 2142:1 2143:1 2150:1 2156:1 2174:1 2175:1 2180:1 2187:1 2188:1 2201:1 2211:1 2215:1 2219:1 2226:1 2230:1 2232:1 2234:4 2241:1 2245:1 2262:1 2263:2 2264:1 2282:1 2317:1 2320:1 2323:1 2345:1 2354:2 2358:1 2360:1 2361:2 2368:3 2369:1 2407:1 2414:2 2435:1 2438:1 2439:1 2441:3 2443:1 2444:2 2446:1 2475:3 2501:2 2509:1 2518:1 2531:1 2553:1 2556:1 2566:1 2571:1 2572:1 2584:1 2628:1 2629:1 2630:1 2631:2 2632:4 2637:1 2638:3 2640:1 2641:1 2643:5 2645:1 2647:3 2651:1 2654:1 2660:4 2665:3 2668:6 2687:1 2712:1 2728:1 2733:1 2744:1 2754:1 2755:1 2759:1 2762:1 2763:2 2782:1 2790:1 2794:1 2800:1 2808:1 2826:1 2845:3 2856:1 2871:1 2883:2 2909:1 2921:1 2925:1 2927:1 2944:1 2986:1 2994:1 3021:1 3023:1 3062:2 3082:4 3092:1 3098:3 3108:1 3117:1 3119:1 3127:1 3130:2 3136:6 3150:1 3164:2 3173:1 3177:1 3182:1 3189:3 3193:1 3197:1 3237:2 3246:2 3252:1 3254:1 3256:4 3264:2 3314:4 3322:1 3328:1 3336:1 3355:10 3363:7 3392:2 3409:1 3426:21 3435:1 3441:1 3457:1 3459:1 3473:1 3497:1 3533:2 3542:1 3607:3 3612:1 3613:1 3625:1 3634:1 3639:1 3650:1 3688:1 3693:1 3700:1 3710:2 3713:4 3721:1 3739:10 3759:1 3764:1 3773:1 3789:1 3809:1 3821:1 3823:5 3863:1 3894:1 3900:1 3906:1 3918:1 3941:1 3944:1 3959:1 3965:1 3975:3 3983:2 3985:1 3992:1 4003:3 4041:1 4049:1 4053:2 4076:1 4077:1 4089:3 4125:1 4144:1 4150:1 4152:3 4156:1 4161:2 4164:1 4165:1 4203:1 4210:1 4235:1 4245:2 4256:1 4270:1 4271:3 4297:1 4317:1 4323:2 4325:30 4340:1 4347:1 4361:2 4363:1 4364:7 4367:1 4375:1 4376:2 4377:16 4379:1 4381:4 4391:2 4405:3 4408:1 4418:1 4419:3 4423:2 4425:2 4426:2 4438:1 4439:2 4442:1 4444:1 4480:2 4490:1 4491:3 4502:1 4507:1 4537:1 4541:1 4543:1 4544:3 4555:2 4567:2 4575:1 4581:1 4587:1 4597:1 4619:1 4622:1 4630:1 4632:1 4633:1 4635:1 4636:1 4643:1 4646:1 4652:1 4655:1 4658:3 4674:3 4678:1 4686:1 4730:1 4793:1 4799:3 4810:1 4813:2 4834:2 4852:1 4855:1 4870:2 4876:1 4879:1 4880:1 4906:1 4913:1 4924:1 4926:1 4937:1 4989:1 5010:8 5027:1 5086:1 5090:1 5098:1 5106:5 5117:1 5120:2 5138:1 5152:3 5155:1 5176:1 5181:2 5198:1 5205:1 5268:2 5269:1 5331:1 5363:2 5367:1 5370:2 5381:1 5390:3 5403:1 5410:2 5433:2 5438:1 5509:1 5510:1 5514:1 5516:1 5528:1 5545:2 5558:1 5613:1 5617:1 5632:1 5640:2 5643:1 5645:1 5659:12 5660:1 5678:1 5699:2 5729:2 5744:1 5761:1 5784:3 5797:3 5800:1 5802:4 5821:2 5822:2 5823:5 5824:1 5828:1 5831:2 5833:1 5840:1 5841:15 5842:1 5844:1 5848:2 5849:3 5860:1 5877:1 5880:2 5936:1 5950:1 5958:1 5968:1 5972:1 6050:1 6060:1 6081:3 6082:3 6089:5 6125:1 6142:1 6157:1 6168:2 6169:15 6177:1 6205:1 6221:1 6255:2 6301:1 6305:1 6322:1 6350:1 6357:1 6371:1 6379:1 6383:1 6394:1 6403:1 6404:1 6462:1 6463:1 6465:1 6469:1 6473:1 6480:1 6483:2 6507:1 6515:1 6518:1 6531:2 6540:1 6542:1 6548:1 6568:2 6574:1 6587:1 6611:1 6617:3 6640:2 6647:1 6669:1 6672:1 6673:1 6678:1 6686:1 6707:1 6725:1 6728:1 6733:1 6753:1 6768:1 6772:1 6776:1 6777:1 6808:1 6826:1 6844:3 6845:1 6868:1 6870:3 6873:1 6891:1 6897:1 6959:2 7029:1 7034:1 7035:5 7043:1 7045:2 7068:2 7074:1 7102:1 7120:1 7139:1 7149:2 7150:1 7154:1 7157:1 7190:3 7196:1 7200:2 7202:2 7232:1 7249:1 7254:2 7257:1 7276:4 7278:1 7295:1 7296:1 7300:1 7309:1 7316:1 7321:1 7363:1 7382:2 7386:1 7387:1 7390:1 7391:1 7392:1 7394:2 7396:2 7397:1 7401:2 7402:3 7403:3 7409:2 7410:5 7411:1 7412:1 7413:2 7427:1 7451:1 7454:1 7477:1 7503:1 7509:1 7553:1 7559:1 7567:1 7579:2 7586:1 7613:1 7615:1 7664:1 7681:1 7684:2 7687:1 7690:2 7709:1 7710:5 7716:3 7722:1 7725:1 7731:1 7732:1 7742:2 7764:2 7790:1 7791:1 7793:1 7805:1 7825:1 7846:1 7849:1 7869:1 7876:1 7877:2 7879:1 7891:3 7900:1 7907:1 7915:2 7940:1 7947:1 7955:1 7987:1 7998:1 8005:2 8012:1 8019:1 8026:2 8032:1 8071:1 8091:1 8093:1 8110:1 8111:2 8135:1 8137:1 8138:1 8194:2 8215:1 8224:1 8233:1 8251:1 8255:5 8263:2 8289:1 8299:1 8320:1 8335:1 8358:1 8425:1 8490:1 8499:1 8507:1 8512:1 8526:4 8575:1 8577:1 8586:3 8604:2 8629:4 8632:1 8674:2 8688:1 8689:1 8711:1 8714:1 8759:1 8770:1 8784:1 8786:1 8791:3 8821:1 8830:2 8831:4 8832:2 8842:1 8850:1 8854:2 8861:1 8888:1 8890:1 8898:1 8901:34 8902:1 8904:1 8908:1 8920:9 8923:17 8929:1 8933:1 8936:1 8943:1 8952:1 8978:3 8979:1 9001:1 9014:1 9034:1 9051:1 9059:1 9068:1 9082:2 9085:1 9091:1 9149:3 9153:5 9161:1 9206:1 9209:3 9212:1 9234:1 9251:1 9272:1 9285:1 9304:1 9341:1 9343:3 9362:1 9368:1 9370:5 9386:2 9405:1 9416:2 9436:1 9444:1 9448:1 9454:1 9468:1 9470:1 9484:15 9511:1 9516:1 9524:2 9525:1 9551:2 9589:1 9594:1 9605:2 9616:1 9630:2 9639:3 9664:1 9672:1 9678:3 9687:3 9694:1 9697:1 9709:2 9711:1 9715:2 9728:1 9732:2 9733:1 9734:1 9738:1 9747:1 9748:2 9754:2 9765:1 9777:2 9778:2 9788:1 9792:1 9809:2 9829:1 9836:1 9841:3 9859:1 9866:1 9875:1 9878:2 9880:1 9881:3 9882:1 9884:2 9885:3 9888:1 9894:1 9897:2 9899:2 9903:3 9919:1 9925:1 9934:2 9944:1 9945:1 9950:1 9951:1 9959:1 9973:1 9977:2 9984:1 10002:2 10024:5 10044:1 10053:3 10056:1 10065:1 10067:1 10069:1 10080:1 10088:1 10092:1 10121:1 10128:2 10138:1 10139:1 10144:1 10150:2 10161:2 10162:1 10166:1 10192:1 10204:1 10208:3 10209:2 10214:3 10216:1 10218:1 10219:2 10221:3 10223:2 10228:1 10229:2 10230:2 10252:1 10254:1 10255:2 10257:4 10270:1 10272:1 10295:2 10302:1 10367:1 10377:2 10386:1 10397:2 10399:1 10410:1 10412:1 10422:1 10438:1 10441:1 10454:1 10461:1 10520:3 10554:1 10558:1 10563:1 10565:3 10580:1 10588:5 10610:2 10615:2 10619:1 10627:1 10634:1 10653:1 10662:1 10671:3 10673:1 10695:1 10701:1 10710:1 10726:1 10750:1 10756:1 10768:1 10819:1 10845:1 10846:1 10851:2 10857:1 10858:1 10862:1 10864:2 10879:1 10900:1 10903:1 10906:1 10937:1 10939:1 10942:2 10947:1 10959:1 11009:15 11016:1 11039:2 11047:4 11056:2 11059:1 11083:1 11091:1 11104:2 11124:1 11154:13 11171:1 11176:2 11189:1 11198:1 11210:5 11218:1 11225:1 11226:1 11229:3 11230:1 11232:1 11249:1 11263:1 11267:1 11316:2 11318:3 11319:1 11359:6 11363:2 11366:4 11368:2 11374:1 11375:1 11382:1 11392:2 11400:2 11402:1 11408:1 11417:1 11422:3 11426:1 11427:1 11429:1 11437:1 11464:3 11470:2 11489:1 11492:2 11496:1 11513:1 11545:1 11550:1 11551:3 11553:1 11580:9 11582:1 11583:4 11595:1 11597:1 11692:1 11697:2 11703:1 11720:1 11728:1 11754:1 11761:1 11775:4 11789:1 11800:1 11803:1 11832:1 11880:1 11897:2 11914:3 11921:1 11926:1 11932:1 11948:1 11955:1 11967:1 11970:1 11994:2 12001:3 12014:1 12043:1 12044:1 12052:2 12072:2 12075:2 12090:1 12098:6 12117:2 12119:3 12121:3 12125:1 12128:1 12145:1 12147:1 12150:1 12173:1 12174:2 12197:1 12200:1 12211:4 12229:2 12241:2 12249:6 12266:1 12314:1 12316:1 12322:1 12345:2 12346:2 12347:1 12352:1 12396:1 12408:1 12416:1 12459:1 12468:1 12476:1 12492:1 12498:2 12499:1 12512:5 12531:3 12534:5 12549:1 12553:1 12556:1 12596:4 12610:1 12623:2 12634:1 12635:1 12642:1 12664:3 12676:2 12706:1 12740:1 12743:1 12770:1 12807:1 12810:1 12816:1 12818:1 12821:1 12825:3 12826:1 12850:1 12855:1 12863:1 12867:2 12883:1 12888:1 12892:1 12893:1 12919:2 12951:1 12953:2 12960:1 12965:1 12974:2 12980:1 12981:1 12983:1 12990:1 12991:1 13014:1 13021:3 13057:1 13061:1 13063:5 13067:1 13100:1 13122:1 13125:1 13127:1 13135:1 13138:2 13153:1 13176:1 13204:1 13207:1 13218:4 13234:3 13236:1 13252:3 13254:2 13284:1 13297:1 13303:1 13318:3 13324:1 13327:1 13328:4 13341:1 13343:1 13352:1 13354:1 13355:1 13363:1 13366:1 13368:5 13369:1 13376:2 13379:5 13382:1 13387:1 13395:1 13403:4 13428:2 13447:4 13454:1 13463:2 13467:1 13507:1 13518:4 13528:1 13532:1 13536:1 13537:2 13576:1 13580:1 13590:3 13592:1 13607:1 13616:1 13629:1 13645:1 13652:1 13690:2 13692:2 13717:2 13759:1 13766:1 13780:2 13832:2 13834:2 13847:1 13867:1 13872:1 13874:1 13878:1 13913:3 13914:3 13916:15 13923:4 13940:1 13956:1 13962:1 13972:2 14002:1 14021:1 14041:1 14043:1 14073:1 14074:1 14082:5 14083:2 14098:1 14105:1 14106:2 14109:1 14130:1 14167:3 14172:1 14198:1 14207:1 14219:2 14222:1 14228:1 14235:1 14248:1 14265:1 14286:1 14292:1 14312:3 14326:1 14329:1 14369:1 14373:2 14382:1 14388:1 14399:1 14441:1 14506:6 14519:1 14523:1 14527:2 14530:1 14535:1 14546:1 14565:2 14566:3 14588:1 14592:1 14629:1 14660:1 14667:2 14693:1 14705:1 14728:1 14735:1 14746:1 14748:1 14751:2 14775:1 14785:1 14819:1 14870:1 14894:2 14920:1 14926:1 14930:1 14943:1 14948:1 14955:1 14960:1 14970:1 14990:1 15002:2 15014:1 15015:1 15017:2 15023:1 15044:1 15045:1 15080:1 15086:1 15088:2 15140:2 15146:1 15154:1 15155:2 15156:6 15162:3 15164:1 15171:1 15178:2 15182:1 15192:3 15195:1 15198:1 15204:3 15234:7 15238:1 15247:1 15250:1 15254:2 15266:1 15280:1 15301:2 15317:1 15338:3 15355:1 15365:1 15380:1 15400:3 15420:1 15428:1 15430:5 15441:1 15450:1 15464:1 15465:2 15466:2 15480:1 15486:1 15502:1 15503:1 15511:1 15514:2 15529:1 15538:2 15576:1 15579:1 15589:1 15597:1 15598:1 15599:2 15600:1 15602:1 15635:1 15636:1 15655:1 15659:1 15663:1 15664:1 15677:1 15683:1 15684:1 15688:2 15691:1 15701:2 15706:1 15707:1 15726:1 15739:7 15750:1 15797:1 15801:1 15821:1 15822:1 15827:1 15851:1 15853:1 15856:2 15857:1 15861:3 15891:1 15906:1 15908:1 15918:1 15921:1 15933:2 15934:3 15938:2 15939:4 15950:1 15970:1 15977:3 15997:1 16008:2 16035:2 16037:1 16043:1 16046:1 16051:1 16063:1 16064:1 16070:2 16107:1 16118:1 16189:1 16192:1 16202:2 16220:1 16246:1 16263:1 16279:1 16339:1 16341:1 16361:1 16382:2 16392:1 16393:1 16401:1 16402:1 16408:1 16412:3 16414:1 16416:1 16424:1 16428:1 16442:2 16467:1 16483:1 16491:1 16495:1 16506:1 16517:1 16525:2 16561:1 16570:1 16583:1 16600:1 16603:1 16612:1 16618:1 16621:1 16631:1 16640:4 16661:1 16675:1 16687:1 16692:1 16718:1 16738:1 16775:4 16828:1 16874:1 16885:1 16892:2 16939:1 16951:1 16970:2 17000:3 17005:3 17007:1 17010:1 17012:1 17013:1 17031:1 17037:1 17059:1 17078:1 17098:2 17099:1 17109:3 17137:1 17150:1 17162:1 17163:1 17167:1 17191:1 17194:1 17202:1 17205:1 17207:1 17235:1 17237:1 17240:1 17246:1 17255:1 17280:1 17283:1 17294:1 17347:2 17353:3 17355:2 17360:1 17379:4 17380:1 17385:1 17408:1 17433:3 17435:1 17441:1 17445:1 17448:1 17479:1 17481:1 17488:1 17496:1 17501:3 17508:2 17512:2 17520:2 17546:1 17558:1 17566:2 17591:1 17611:1 17627:1 17633:1 17634:1 17653:1 17662:3 17685:7 17687:7 17689:1 17694:1 17722:2 17734:1 17736:1 17740:2 17758:3 17763:1 17776:2 17796:1 17803:1 17813:1 17829:2 17833:1 17835:1 17844:4 17854:1 17864:1 17873:1 17875:1 17884:1 17885:3 17889:2 17890:5 17892:1 17896:1 17900:1 17901:1 17902:1 17912:1 17913:5 17919:4 17968:2 17996:1 18009:1 18012:2 18022:2 18024:2 18030:4 18041:1 18060:2 18065:1 18073:1 18096:2 18101:2 18127:2 18145:1 18146:1 18158:1 18175:1 18178:2 18182:1 18187:8 18198:2 18199:2 18217:2 18222:1 18225:1 18243:1 18254:1 18263:15 18291:1 18300:5 18301:1 18305:1 18324:2 18341:46 18361:3 18366:1 18390:1 18418:1 18424:1 18426:1 18427:2 18455:1 18460:1 18467:2 18468:1 18469:1 18473:2 18474:3 18477:1 18482:2 18486:1 18501:1 18513:1 18516:1 18518:1 18523:1 18526:1 18530:1 18543:1 18544:1 18565:1 18567:1 18604:1 18610:5 18634:1 18643:1 18648:2 18654:1 18692:1 18696:1 18715:1 18762:1 18768:1 18797:1 18798:1 18808:1 18822:2 18826:1 18865:1 18867:1 18870:1 18905:1 18908:1 18916:2 18922:3 18923:1 18927:1 18944:1 18946:3 18968:3 18985:1 18996:1 18997:1 19000:1 19004:2 19006:1 19008:1 19016:1 19020:1 19027:1 19029:1 19042:1 19048:10 19057:1 19072:1 19084:1 19094:2 19107:1 19136:1 19143:1 19165:1 19167:2 19170:3 19177:1 19179:2 19182:1 19185:1 19202:1 19206:1 19222:1 19232:1 19240:1 19243:2 19245:2 19271:1 19307:2 19331:1 19374:1 19382:2 19385:1 19407:1 19425:1 19434:2 19435:1 19440:1 19449:1 19457:1 19461:1 19466:1 19469:3 19473:1 19480:1 19490:1 19497:3 19501:1 19504:1 19521:1 19542:1 19550:1 19564:1 19587:2 19595:1 19601:1 19619:4 19640:1 19675:1 19684:1 19685:1 19692:1 19711:3 19713:1 19715:1 19718:1 19726:1 19730:2 19735:1 19737:1 19759:2 19761:2 19772:1 19775:1 19776:1 19789:2 19813:1 19817:1 19819:1 19840:2 19841:2 19879:1 19926:2 19936:2 19944:1 19956:1 19962:1 19971:2 20012:1 20016:1 20017:2 20020:2 20021:1 20034:1 20037:8 20039:1 20052:1 20070:1 20078:1 20103:1 20118:1 20130:1 20131:1 20151:1 20152:1 20153:2 20160:1 20179:2 20185:1 20191:1 20210:1 20216:1 20249:1 20255:2 20260:1 20261:4 20265:1 20274:1 20307:1 20340:1 20346:1 20382:3 20383:1 20392:1 20420:1 20423:1 20429:1 20439:1 20450:1 20456:3 20467:2 20474:2 20480:1 20488:1 20489:2 20507:1 20523:1 20531:1 20532:3 20579:1 20585:1 20595:1 20621:3 20630:1 20645:3 20649:1 20651:1 20655:3 20676:1 20677:1 20682:1 20693:1 20695:1 20701:1 20749:1 20790:1 20792:9 20797:1 20806:1 20813:1 20821:1 20852:1 20860:1 20865:1 20869:1 20878:1 20884:2 20906:1 20912:1 20922:1 20942:1 20946:3 20948:1 20950:2 20965:3 20976:1 20980:2 21013:1 21020:2605 21028:1 21044:1 21046:4 21047:1 21054:2 21066:2 21097:1 21108:1 21121:1 21131:1 21136:3 21147:1 21178:3 21201:2 21212:2 21236:1 21239:3 21242:2 21268:3 21277:1 21284:3 21287:1 21299:1 21340:1 21341:1 21361:1 21381:1 21384:4 21414:1 21418:1 21442:2 21454:1 21463:1 21474:1 21484:1 21490:1 21494:1 21495:1 21511:1 21539:1 21549:1 21551:2 21554:1 21563:4 21576:1 21586:1 21619:1 21660:1 21661:1 21675:1 21678:3 21728:1 21749:1 21773:1 21779:2 21789:1 21795:2 21797:1 21803:2 21810:1 21819:4 21832:2 21835:1 21836:3 21841:1 21857:1 21867:10 21891:1 21892:1 21894:1 21895:1 21896:12 21909:1 21929:1 21930:3 21934:1 21950:1 21965:1 21970:3 21991:1 21995:2 22000:1 22002:2 22004:2 22008:1 22015:1 22029:2 22060:1 22068:3 22075:1 22089:1 22101:3 22131:1 22133:1 22136:1 22190:1 22194:1 22198:1 22235:1 22244:1 22262:1 22264:10 22272:1 22308:1 22317:1 22340:1 22352:1 22369:1 22375:1 22377:5 22399:1 22422:2 22443:1 22444:1 22467:1 22474:1 22476:1 22478:1 22483:1 22484:1 22485:1 22495:1 22516:1 22534:1 22542:4 22547:1 22556:1 22561:1 22581:2 22582:1 22590:1 22610:1 22616:1 22623:1 22624:1 22644:1 22651:1 22676:1 22680:1 22685:2 22687:2 22701:2 22702:1 22708:6 22737:1 22745:1 22758:1 22775:1 22781:1 22800:10 22809:1 22822:2 22825:2 22844:1 22845:1 22861:1 22863:9 22881:1 22910:1 22922:1 22924:1 22933:1 22945:1 22964:1 22999:1 23005:1 23024:2 23043:4 23045:1 23056:1 23063:1 23105:2 23153:4 23165:1 23166:1 23183:1 23185:1 23198:1 23199:1 23242:1 23245:1 23264:1 23265:1 23312:2 23335:1 23341:1 23369:1 23374:1 23383:1 23399:1 23401:1 23407:1 23439:1 23457:1 23466:1 23490:3 23512:2 23517:1 23522:1 23525:1 23532:9 23542:1 23546:3 23549:1 23550:1 23560:1 23569:5 23574:1 23595:3 23605:1 23638:2 23653:2 23657:1 23673:2 23681:1 23682:1 23711:7 23719:1 23722:2 23730:1 23742:1 23743:1 23765:1 23786:1 23803:1 23808:1 23810:1 23832:2 23836:1 23839:1 23843:1 23849:1 23859:3 23873:1 23881:1 23882:1 23886:1 23898:1 23940:1 23944:1 23948:1 23968:1 24003:1 24009:1 24055:1 24063:1 24065:4 24070:2 24073:3 24084:3 24087:1 24094:1 24097:1 24100:1 24143:1 24147:1 24148:1 24149:1 24154:2 24164:1 24181:1 24195:1 24201:1 24202:1 24216:1 24218:5 24221:2 24240:1 24255:1 24271:1 24277:1 24310:1 24311:2 24320:1 24328:1 24339:1 24341:1 24344:1 24359:1 24360:2 24363:10 24377:1 24384:1 24385:1 24391:1 24396:1 24402:1 24408:1 24413:1 24427:4 24447:1 24472:2 24475:2 24478:1 24482:1 24488:3 24505:1 24542:1 24543:4 24556:2 24563:2 24567:1 24623:1 24649:2 24659:1 24661:1 24662:7 24666:1 24670:2 24682:1 24683:1 24687:1 24700:2 24701:1 24702:1 24703:2 24707:1 24714:1 24719:2 24722:1 24732:1 24734:1 24747:2 24752:2 24774:2 24809:1 24824:4 24825:1 24834:1 24855:1 24858:1 24861:1 24869:2 24872:1 24888:1 24894:1 24908:4 24917:1 24923:1 24935:1 24979:15 24980:1 24984:1 25005:1 25018:1 25021:1 25026:1 25033:1 25047:1 25057:1 25065:1 25071:2 25092:1 25094:2 25101:1 25103:1 25104:1 25110:2 25121:2 25125:1 25126:1 25129:8 25139:1 25148:2 25156:3 25168:2 25190:1 25201:1 25206:1 25209:2 25218:1 25233:1 25236:1 25243:1 25245:2 25252:1 25256:1 25270:2 25275:1 25289:6 25303:3 25318:2 25328:1 25340:1 25368:1 25369:1 25387:2 25405:1 25423:1 25459:1 25473:3 25480:1 25485:1 25501:2 25503:1 25526:1 25539:1 25547:1 25561:1 25579:1 25581:1 25588:1 25595:12 25597:1 25598:2 25620:1 25634:1 25643:1 25653:1 25655:1 25667:1 25676:1 25683:1 25689:1 25694:1 25695:2 25705:1 25720:1 25732:3 25754:1 25755:5 25780:1 25788:1 25791:1 25804:1 25828:2 25853:1 25860:1 25871:2 25907:1 25928:1 25929:2 25936:2 25954:1 26001:1 26015:1 26016:1 26017:3 26024:1 26030:1 26043:1 26044:1 26056:1 26073:1 26075:2 26094:1 26133:1 26135:2 26149:1 26157:1 26160:2 26165:1 26174:2 26179:3 26184:1 26187:1 26213:1 26230:1 26243:1 26254:3 26255:1 26277:6 26283:1 26287:1 26294:1 26308:1 26309:1 26315:1 26316:2 26319:2 26324:1 26352:2 26359:1 26360:2 26364:1 26415:4 26421:1 26424:17 26426:1 26498:1 26516:1 26532:1 26534:1 26539:1 26605:2 26612:1 26624:1 26635:1 26636:1 26642:1 26655:1 26679:1 26694:1 26705:1 26721:1 26748:1 26751:2 26758:2 26794:4 26814:1 26818:1 26880:1 26897:2 26920:1 26924:2 26929:1 26931:1 26934:1 26936:1 26938:2 26952:1 26978:1 27003:1 27009:1 27014:1 27022:1 27028:1 27032:1 27070:1 27072:1 27102:1 27112:1 27114:5 27122:1 27132:1 27133:1 27141:3 27159:1 27183:1 27198:1 27225:1 27251:3 27262:1 27303:5 27360:2 27373:1 27377:1 27388:1 27389:1 27397:4 27398:2 27401:1 27419:1 27427:1 27437:1 27439:2 27447:1 27451:3 27456:2 27488:1 27489:2 27491:1 27502:2 27512:1 27516:1 27522:2 27533:2 27552:1 27569:1 27574:1 27575:1 27595:1 27602:4 27612:2 27618:1 27620:1 27627:1 27641:1 27676:1 27716:1 27727:1 27728:1 27743:1 27753:1 27757:2 27760:1 27763:1 27769:1 27804:1 27809:1 27813:1 27817:1 27846:1 27851:1 27863:1 27872:2 27881:1 27884:1 27917:3 27933:5 27957:1 27985:1 27989:1 27997:1 28007:1 28015:2 28021:1 28032:3 28068:2 28071:1 28074:1 28094:1 28112:1 28132:1 28139:1 28145:4 28174:1 28242:1 28253:1 28255:1 28273:4 28303:1 28327:2 28331:3 28335:1 28342:1 28348:3 28408:1 28414:1 28442:1 28485:1 28500:1 28503:2 28507:1 28509:4 28512:3 28518:1 28537:1 28540:1 28557:1 28560:1 28563:2 28591:1 28602:1 28608:5 28609:1 28625:1 28635:3 28641:5 28642:1 28652:1 28666:1 28671:1 28680:1 28697:2 28725:6 28728:1 28734:1 28739:1 28740:1 28753:2 28754:1 28778:1 28803:1 28811:3 28847:4 28850:1 28870:2 28872:2 28902:2 28913:1 28937:1 28945:3 28972:1 28981:1 28994:2 28998:3 29029:1 29052:1 29060:2 29063:1 29066:1 29085:1 29088:2 29102:1 29104:1 29105:1 29109:1 29120:1 29123:1 29128:1 29146:1 29147:1 29155:1 29156:2 29161:1 29165:1 29174:1 29189:6 29195:1 29199:1 29210:1 29212:1 29215:1 29219:1 29261:1 29272:1 29291:1 29316:1 29326:1 29332:1 29334:3 29365:9 29374:1 29409:1 29417:2 29439:1 29472:2 29483:1 29491:1 29498:1 29503:1 29518:3 29519:2 29527:1 29543:1 29546:2 29564:1 29574:2 29637:3 29653:5 29655:2 29665:1 29675:2 29676:1 29677:4 29679:4 29683:1 29685:1 29711:1 29732:2 29759:1 29766:1 29771:1 29781:3 29792:1 29797:1 29821:3 29842:1 29850:1 29861:1 29867:1 29882:1 29923:1 29956:1 29964:1 30023:1 30033:1 30051:1 30063:1 30079:1 30085:1 30091:1 30121:1 30123:2 30129:1 30149:1 30160:2 30168:2 30183:2 30198:1 30205:1 30221:1 30235:1 30294:1 30295:2 30308:1 30315:1 30334:1 30367:1 30371:1 30393:2 30399:3 30410:1 30412:1 30415:1 30418:8 30450:2 30451:2 30514:1 30524:17 30525:1 30529:3 30531:1 30540:1 30547:1 30560:1 30643:2 30647:3 30648:3 30651:1 30684:1 30703:1 30706:1 30707:1 30719:2 30721:1 30724:1 30728:1 30738:1 30739:1 30741:1 30745:1 30753:1 30788:2 30800:1 30818:1 30832:1 30845:1 30846:2 30849:1 30876:1 30879:1 30881:1 30895:1 30901:1 30906:1 30916:1 30958:1 30960:1 30978:1 30997:1 30998:1 31004:1 31021:3 31030:2 31088:7 31104:1 31132:1 31168:3 31176:3 31192:1 31200:1 31204:1 31207:1 31243:1 31259:1 31262:3 31268:1 31302:2 31317:1 31349:2 31359:4 31392:1 31400:1 31403:1 31473:1 31476:1 31477:1 31489:4 31493:1 31502:1 31514:1 31529:1 31541:1 31544:22 31545:2 31546:2 31549:2 31552:3 31555:1 31556:1 31566:1 31586:1 31587:12 31597:1 31602:1 31603:1 31613:1 31644:1 31646:1 31651:2 31661:1 31662:1 31681:1 31697:1 31702:4 31713:4 31718:1 31719:1 31743:1 31754:3 31759:2 31763:1 31766:1 31801:1 31802:1 31806:1 31829:1 31849:1 31854:1 31863:2 31900:1 31901:1 31932:1 31944:1 31951:1 31957:2 31959:1 31964:4 31969:1 31971:1 31976:1 31990:1 31994:2 32000:1 32012:1 32028:7 32039:3 32083:1 32110:3 32115:6 32118:1 32119:1 32126:1 32142:1 32147:2 32158:1 32163:1 32175:1 32178:1 32179:1 32186:1 32214:3 32225:1 32257:1 32263:3 32269:1 32275:1 32279:2 32307:1 32310:4 32314:1 32321:5 32330:1 32342:2 32363:1 32374:1 32381:1 32429:1 32445:1 32471:1 32473:1 32505:4 32510:1 32539:2 32543:1 32547:1 32559:1 32582:1 32590:2 32596:1 32605:3 32617:1 32628:1 32642:1 32662:1 32676:2 32684:1 32686:1 32701:1 32713:2 32727:1 32733:6 32735:1 32740:1 32755:2 32785:2 32787:1 32811:1 32821:4 32831:2 32891:1 32897:1 32898:1 32902:1 32903:1 32905:3 32910:1 32921:1 32957:1 32966:1 32971:1 32972:1 32973:1 32977:1 33021:1
16 26:1 27:1 66:1 78:1 85:4 104:1 109:1 145:1 164:1 173:1 176:1 189:1 219:1 235:1 262:1 269:4 295:1 318:2 338:1 351:4 375:1 387:1 397:2 398:1 399:2 427:1 434:1 437:1 443:1 468:2 475:1 484:1 502:3 505:1 509:2 525:1 542:1 551:2 567:1 575:1 577:1 581:1 584:1 589:1 591:2 628:1 629:1 636:2 649:3 713:1 723:3 751:2 757:1 762:4 766:1 774:1 779:1 790:1 793:1 805:1 812:1 821:1 832:1 869:2 886:1 891:1 908:1 929:1 937:1 944:1 949:2 957:1 970:1 975:1 984:1 988:1 1000:1 1007:1 1016:1 1035:1 1046:2 1051:1 1054:1 1058:2 1068:1 1069:2 1078:3 1080:1 1081:2 1082:5 1084:2 1114:1 1138:1 1139:5 1143:2 1149:1 1164:1 1170:1 1180:2 1185:1 1202:1 1220:2 1221:1 1240:1 1250:1 1254:1 1259:1 1285:1 1288:1 1301:1 1341:1 1353:3 1359:1 1366:1 1368:1 1369:2 1377:2 1387:1 1388:4 1398:1 1406:1 1412:1 1426:3 1457:1 1464:1 1466:1 1469:1 1472:3 1475:1 1487:1 1488:2 1489:2 1506:2 1512:1 1524:1 1526:1 1540:1 1546:2 1560:2 1572:1 1574:1 1586:2 1600:2 1630:1 1633:1 1642:1 1676:3 1677:1 1683:1 1689:1 1695:1 1711:1 1733:1 1742:6 1754:1 1760:5 1767:2 1773:1 1774:2 1775:1 1776:1 1780:2 1787:1 1791:1 1802:3 1835:1 1839:5 1853:1 1863:1 1867:1 1871:2 1879:2 1907:2 1914:1 1919:3 1924:3 1927:2 1928:1 1939:1 1941:1 1944:1 1953:1 1963:4 1966:3 1968:1 1975:1 1976:1 1993:1 2018:1 2038:1 2039:1 2050:2 2053:1 2055:1 2058:1 2069:2 2077:2 2097:1 2098:1 2122:1 2127:1 2128:1 2139:1 2142:1 2143:1 2150:1 2156:1 2174:1 2175:1 2180:1 2187:1 2188:1 2201:1 2211:1 2215:1 2219:1 2226:1 2230:1 2232:1 2234:4 2241:1 2245:1 2262:1 2263:2 2264:1 2282:1 2317:1 2320:1 2323:1 2339:1 2345:1 2354:2 2358:2 2360:1 2361:2 2368:3 2369:1 2407:1 2414:2 2435:1 2438:1 2439:1 2441:3 2443:1 2444:2 2446:1 2475:4 2501:2 2509:1 2518:1 2531:1 2553:1 2556:1 2566:1 2571:1 2572:2 2584:1 2628:1 2629:1 2630:1 2631:2 2632:4 2637:1 2638:3 2640:1 2641:1 2643:5 2645:1 2647:3 2651:1 2654:1 2660:5 2665:3 2668:6 2687:1 2712:1 2728:1 2733:1 2744:1 2754:2 2755:1 2759:1 2762:1 2763:2 2782:1 2790:1 2794:1 2800:1 2808:1 2826:1 2845:3 2856:1 2871:1 2883:2 2909:1 2921:1 2925:1 2927:1 2944:1 2986:1 2994:1 3021:1 3023:1 3062:2 3071:1 3082:4 3092:1 3098:3 3108:1 3117:1 3119:1 3127:1 3130:2 3136:7 3150:1 3151:1 3164:2 3173:1 3177:1 3182:1 3189:3 3193:1 3197:1 3237:2 3246:2 3252:1 3254:1 3256:4 3264:2 3314:4 3322:1 3328:1 3336:1 3355:10 3363:7 3392:2 3409:1 3426:22 3435:1 3441:1 3457:1 3459:1 3473:1 3497:1 3505:1 3533:2 3536:1 3542:1 3607:3 3612:1 3613:1 3625:1 3634:1 3639:1 3650:1 3688:1 3693:1 3698:1 3700:1 3710:2 3713:4 3721:1 3739:10 3759:1 3764:1 3773:1 3789:1 3809:1 3821:1 3823:5 3863:1 3894:1 3900:1 3906:1 3918:1 3941:1 3944:1 3959:1 3965:1 3975:3 3983:2 3985:1 3992:1 4003:3 4041:1 4049:1 4053:2 4056:1 4076:1 4077:1 4089:3 4125:1 4144:1 4150:1 4152:3 4156:1 4161:2 4164:1 4165:1 4203:1 4210:1 4235:1 4245:2 4256:1 4266:1 4270:1 4271:3 4297:1 4317:1 4323:2 4325:32 4340:1 4347:1 4361:2 4363:1 4364:7 4367:1 4375:1 4376:2 4377:18 4379:1 4381:4 4391:2 4405:3 4408:1 4418:1 4419:3 4423:2 4425:2 4426:2 4438:1 4439:2 4442:1 4444:1 4480:2 4490:1 4491:3 4502:1 4507:1 4537:1 4541:1 4543:1 4544:3 4555:2 4567:2 4570:1 4575:1 4581:1 4587:1 4597:1 4619:1 4622:1 4630:1 4632:1 4633:1 4635:1 4636:1 4643:1 4646:1 4652:1 4655:1 4658:3 4674:3 4678:1 4686:1 4730:1 4793:1 4799:3 4810:1 4813:2 4834:2 4852:1 4855:1 4870:2 4876:1 4879:1 4880:1 4906:1 4913:1 4924:1 4926:1 4937:1 4978:1 4989:1 5010:8 5027:1 5086:1 5090:1 5098:1 5106:5 5117:1 5120:2 5138:1 5152:4 5155:1 5176:1 5181:2 5198:1 5205:1 5258:1 5268:2 5269:1 5298:1 5331:1 5343:1 5363:2 5367:1 5370:2 5381:1 5390:3 5403:1 5410:2 5433:2 5438:1 5439:1 5497:1 5509:1 5510:1 5514:1 5516:1 5528:1 5545:2 5558:1 5613:1 5617:1 5632:1 5640:2 5643:1 5645:1 5659:13 5660:1 5678:1 5699:2 5729:2 5744:1 5761:1 5784:3 5797:3 5800:1 5802:4 5821:2 5822:2 5823:6 5824:1 5827:1 5828:1 5831:2 5833:1 5840:1 5841:17 5842:1 5844:1 5848:2 5849:3 5860:1 5877:1 5880:2 5936:2 5950:1 5958:1 5968:1 5972:1 6050:1 6060:1 6081:3 6082:3 6089:5 6125:1 6137:1 6142:1 6157:1 6168:2 6169:17 6177:1 6205:1 6216:1 6221:1 6255:2 6301:1 6305:1 6322:1 6350:1 6357:1 6371:1 6379:1 6383:1 6394:1 6403:1 6404:2 6462:1 6463:1 6465:1 6469:1 6473:1 6480:1 6483:2 6507:1 6515:1 6518:1 6531:2 6540:1 6542:1 6548:1 6568:2 6574:1 6587:1 6611:1 6617:3 6640:2 6647:1 6669:1 6672:1 6673:1 6678:1 6686:1 6707:1 6725:1 6728:1 6733:1 6753:1 6768:1 6772:1 6776:1 6777:1 6808:1 6826:1 6844:3 6845:1 6868:1 6870:3 6873:1 6891:1 6897:1 6938:1 6959:2 7029:1 7034:1 7035:5 7043:1 7045:2 7068:2 7074:1 7102:1 7120:1 7128:1 7139:1 7149:2 7150:1 7154:1 7157:1 7190:3 7196:1 7200:2 7202:2 7232:1 7249:1 7254:2 7257:1 7260:1 7276:5 7278:1 7295:1 7296:1 7300:1 7309:1 7316:1 7321:1 7363:1 7382:2 7386:1 7387:1 7390:1 7391:1 7392:1 7394:2 7396:2 7397:1 7401:2 7402:3 7403:3 7409:2 7410:6 7411:1 7412:1 7413:2 7427:1 7451:1 7454:1 7474:1 7477:1 7503:1 7509:1 7553:1 7559:1 7567:1 7579:2 7586:1 7613:1 7615:1 7664:1 7681:1 7684:2 7687:1 7690:2 7709:1 7710:5 7716:3 7722:1 7725:1 7731:1 7732:1 7742:2 7764:3 7790:1 7791:1 7793:1 7805:1 7825:1 7846:1 7849:1 7869:1 7876:1 7877:2 7879:1 7891:3 7900:1 7907:1 7915:2 7921:1 7940:1 7947:1 7955:1 7987:1 7998:1 8005:2 8012:1 8019:1 8021:1 8026:2 8032:1 8071:1 8091:1 8093:1 8110:1 8111:2 8135:1 8137:1 8138:1 8194:2 8215:1 8224:1 8233:1 8251:1 8255:5 8263:2 8289:1 8299:1 8320:1 8335:1 8358:1 8425:1 8490:1 8499:1 8507:1 8512:1 8526:4 8575:1 8577:1 8586:3 8604:2 8629:4 8632:1 8674:2 8688:1 8689:1 8711:1 8714:1 8759:1 8770:1 8784:1 8786:1 8791:3 8821:1 8830:3 8831:4 8832:2 8842:1 8850:1 8854:2 8861:1 8888:1 8890:1 8898:1 8901:35 8902:1 8904:1 8908:1 8920:9 8923:18 8929:1 8933:1 8936:1 8943:1 8945:1 8952:1 8978:3 8979:1 9001:1 9014:1 9034:1 9051:1 9059:1 9068:1 9082:2 9085:1 9091:1 9149:3 9153:5 9161:1 9199:1 9206:1 9209:4 9212:1 9230:1 9234:1 9251:1 9272:1 9285:1 9304:1 9341:1 9343:3 9362:1 9368:1 9370:5 9386:2 9405:1 9416:2 9436:1 9444:1 9448:1 9454:1 9468:1 9470:1 9484:16 9511:1 9516:1 9524:2 9525:1 9551:2 9589:1 9594:1 9605:2 9616:1 9630:2 9639:3 9664:1 9672:1 9678:3 9687:3 9694:1 9697:1 9709:2 9711:1 9715:3 9728:1 9732:2 9733:1 9734:1 9738:1 9747:1 9748:2 9754:2 9765:1 9777:2 9778:2 9788:1 9790:1 9791:1 9792:1 9809:2 9829:1 9836:1 9841:3 9848:1 9859:1 9866:1 9875:1 9878:2 9880:1 9881:3 9882:1 9884:2 9885:4 9888:1 9894:1 9897:2 9899:2 9903:3 9919:1 9925:1 9934:2 9944:1 9945:1 9950:1 9951:1 9959:1 9973:1 9977:2 9984:1 10002:2 10019:1 10024:5 10044:1 10053:3 10056:1 10065:1 10067:1 10069:1 10080:1 10088:1 10092:1 10121:1 10128:2 10138:1 10139:1 10144:1 10150:2 10161:3 10162:1 10166:1 10181:1 10192:1 10204:1 10208:3 10209:2 10214:3 10216:1 10218:1 10219:2 10221:3 10223:2 10228:1 10229:2 10230:2 10252:1 10254:1 10255:2 10257:4 10270:1 10272:1 10295:2 10302:1 10308:1 10367:1 10377:2 10386:1 10397:2 10399:1 10410:1 10412:1 10422:1 10438:1 10441:1 10454:1 10461:1 10478:1 10520:3 10554:1 10558:1 10563:1 10565:3 10580:1 10588:5 10610:2 10615:2 10619:1 10627:1 10634:1 10653:1 10662:1 10671:3 10673:1 10695:1 10701:1 10710:1 10726:1 10750:1 10756:1 10768:1 10819:1 10845:1 10846:1 10851:2 10857:2 10858:1 10862:1 10864:2 10879:1 10900:1 10903:1 10906:1 10937:1 10939:1 10942:2 10947:1 10959:1 10975:1 11009:17 11016:1 11034:1 11039:2 11047:4 11056:2 11059:1 11083:1 11091:1 11104:2 11124:1 11154:13 11171:1 11176:2 11189:1 11198:1 11210:5 11218:1 11225:1 11226:1 11229:3 11230:1 11232:1 11249:1 11263:1 11267:1 11316:2 11318:3 11319:1 11359:6 11363:2 11366:4 11368:2 11374:1 11375:1 11382:1 11392:2 11400:2 11402:1 11408:1 11417:1 11422:3 11426:1 11427:1 11429:1 11437:1 11446:1 11464:3 11470:3 11489:1 11492:2 11496:1 11507:1 11513:1 11545:1 11550:1 11551:3 11553:1 11580:9 11582:1 11583:5 11595:1 11597:1 11692:1 11697:2 11703:1 11720:1 11728:1 11754:1 11761:1 11775:4 11789:1 11800:1 11803:1 11826:1 11832:1 11880:1 11897:2 11914:3 11921:1 11926:1 11932:1 11948:1 11955:1 11967:1 11970:1 11994:2 12001:3 12014:1 12043:1 12044:1 12052:2 12072:2 12075:2 12090:1 12098:6 12117:2 12119:3 12121:3 12125:1 12128:1 12145:1 12147:1 12150:1 12160:1 12173:1 12174:2 12197:1 12200:1 12211:4 12229:2 12241:2 12249:6 12266:1 12314:1 12316:1 12322:1 12345:2 12346:2 12347:1 12352:1 12396:1 12408:1 12416:1 12459:1 12465:1 12468:1 12476:1 12492:1 12498:2 12499:1 12512:5 12531:3 12534:5 12549:1 12553:1 12556:2 12558:1 12596:4 12610:1 12623:2 12634:1 12635:2 12642:1 12664:3 12676:2 12706:1 12740:1 12743:1 12770:1 12807:1 12810:1 12816:1 12818:1 12819:1 12821:1 12825:3 12826:1 12850:1 12855:1 12863:1 12867:2 12883:1 12888:1 12892:1 12893:1 12919:2 12951:1 12953:2 12960:1 12965:1 12974:2 12980:1 12981:1 12983:1 12990:1 12991:1 13014:1 13021:3 13057:1 13061:2 13063:5 13067:1 13100:1 13122:1 13125:1 13127:1 13135:1 13138:2 13153:1 13176:2 13204:1 13207:1 13215:1 13218:4 13234:3 13236:1 13252:3 13254:2 13284:1 13297:1 13303:1 13318:3 13324:1 13327:1 13328:4 13341:1 13343:1 13348:1 13352:1 13354:1 13355:1 13363:1 13366:1 13368:5 13369:1 13376:2 13379:5 13382:1 13387:1 13395:1 13403:4 13428:2 13447:5 13454:1 13463:2 13467:1 13507:1 13518:4 13528:1 13532:1 13536:1 13537:2 13576:1 13580:1 13590:3 13592:1 13607:1 13616:1 13620:1 13629:1 13645:1 13652:1 13690:2 13692:2 13717:2 13737:1 13759:1 13766:1 13780:3 13832:2 13834:2 13847:1 13867:1 13872:1 13874:1 13878:1 13913:3 13914:3 13916:17 13923:4 13940:1 13941:1 13956:1 13962:1 13972:2 14002:1 14021:1 14041:1 14043:1 14073:1 14074:1 14082:6 14083:2 14098:1 14105:1 14106:2 14109:1 14130:1 14167:3 14172:1 14198:1 14207:1 14219:2 14222:1 14228:1 14235:1 14248:1 14265:1 14286:1 14292:1 14312:3 14326:1 14329:1 14369:1 14373:2 14379:1 14382:1 14388:1 14399:1 14441:1 14456:1 14506:6 14519:1 14523:1 14527:2 14530:1 14535:1 14546:1 14565:2 14566:3 14588:1 14592:1 14629:1 14660:1 14667:2 14693:1 14705:1 14728:1 14735:1 14746:1 14748:1 14751:2 14775:1 14785:2 14819:1 14870:1 14894:3 14920:1 14926:1 14930:1 14943:1 14948:1 14955:1 14960:1 14970:1 14990:1 15002:2 15013:1 15014:1 15015:1 15017:2 15023:1 15044:1 15045:1 15080:1 15086:1 15088:2 15140:2 15146:1 15154:1 15155:2 15156:6 15162:3 15164:1 15171:1 15178:3 15182:1 15192:3 15195:1 15198:1 15204:3 15214:1 15234:7 15238:1 15247:1 15250:1 15254:2 15266:1 15267:1 15280:1 15301:2 15317:1 15338:3 15343:1 15355:1 15365:1 15380:2 15400:3 15420:1 15428:2 15430:5 15441:1 15450:1 15464:1 15465:2 15466:2 15480:1 15486:1 15502:1 15503:1 15511:1 15514:2 15529:1 15538:2 15576:1 15579:1 15588:1 15589:1 15597:1 15598:1 15599:2 15600:1 15602:1 15606:1 15627:1 15635:1 15636:1 15655:1 15659:1 15663:1 15664:1 15677:1 15683:1 15684:1 15688:2 15691:1 15701:2 15706:1 15707:1 15726:1 15739:7 15750:1 15797:1 15801:1 15821:1 15822:1 15827:1 15851:1 15853:1 15856:2 15857:1 15861:4 15891:1 15906:1 15908:1 15918:1 15921:1 15933:2 15934:3 15938:2 15939:4 15950:1 15970:1 15977:3 15997:1 16008:2 16035:2 16037:1 16043:1 16046:1 16051:1 16063:2 16064:1 16070:2 16107:1 16118:1 16189:1 16192:1 16202:2 16220:1 16246:1 16263:1 16279:1 16339:1 16341:1 16361:1 16382:2 16392:2 16393:1 16401:1 16402:1 16408:1 16412:3 16414:1 16416:1 16424:1 16428:1 16442:2 16467:1 16483:1 16491:1 16495:1 16506:1 16517:1 16525:2 16561:1 16570:1 16583:1 16600:1 16603:1 16612:1 16618:1 16621:1 16631:1 16640:4 16661:1 16675:1 16687:2 16692:1 16718:1 16738:1 16775:4 16828:1 16874:1 16885:1 16892:2 16939:1 16951:1 16956:1 16970:2 17000:3 17005:3 17007:1 17010:1 17012:1 17013:1 17031:1 17037:1 17059:1 17078:1 17098:2 17099:1 17109:3 17137:1 17150:1 17162:1 17163:2 17167:1 17191:1 17194:1 17202:1 17205:1 17207:3 17235:1 17237:1 17240:1 17246:1 17255:1 17280:1 17283:1 17294:1 17347:2 17353:3 17355:3 17360:1 17379:4 17380:1 17385:1 17408:1 17433:3 17435:1 17441:1 17445:1 17448:1 17479:1 17481:1 17488:1 17496:1 17501:3 17508:2 17512:2 17520:2 17546:1 17558:1 17566:2 17591:1 17611:1 17627:1 17633:1 17634:1 17653:1 17662:3 17685:8 17687:7 17689:1 17694:1 17722:2 17734:1 17736:2 17740:2 17758:3 17763:1 17776:2 17783:1 17796:1 17803:1 17813:1 17829:2 17833:1 17835:1 17844:4 17854:2 17864:1 17873:1 17875:1 17878:1 17884:1 17885:3 17889:2 17890:5 17892:1 17896:1 17900:1 17901:1 17902:1 17912:1 17913:5 17919:4 17968:2 17996:1 18009:1 18012:2 18022:2 18024:2 18030:4 18041:1 18060:2 18065:1 18073:1 18096:2 18101:2 18127:2 18145:1 18146:1 18158:1 18171:1 18175:1 18178:2 18182:1 18187:8 18198:2 18199:2 18217:2 18222:1 18225:1 18243:1 18254:1 18263:17 18291:1 18300:5 18301:1 18305:1 18324:2 18341:50 18361:3 18366:1 18390:1 18418:1 18424:1 18426:1 18427:2 18455:1 18460:1 18467:2 18468:1 18469:2 18473:2 18474:3 18477:1 18482:2 18486:1 18501:1 18513:1 18516:1 18518:1 18523:1 18526:1 18530:1 18543:1 18544:1 18565:1 18567:1 18604:1 18610:5 18634:1 18643:1 18648:2 18654:1 18692:1 18696:1 18700:1 18715:1 18762:1 18768:1 18797:1 18798:1 18808:1 18822:2 18826:1 18865:2 18867:1 18870:1 18905:1 18908:1 18916:2 18922:3 18923:1 18927:1 18944:1 18946:3 18968:3 18985:1 18996:1 18997:1 19000:1 19004:2 19006:1 19008:1 19016:1 19020:1 19027:1 19029:1 19042:1 19048:10 19057:1 19072:1 19084:1 19094:2 19106:1 19107:1 19136:1 19143:1 19165:1 19167:2 19170:3 19177:1 19179:2 19182:1 19185:1 19202:1 19206:1 19222:1 19232:1 19240:1 19243:2 19245:2 19271:1 19307:2 19316:1 19331:1 19374:1 19382:2 19385:1 19407:2 19420:1 19425:1 19434:2 19435:1 19440:2 19449:1 19457:1 19461:1 19466:1 19469:3 19473:1 19480:1 19490:1 19497:3 19501:1 19504:1 19521:1 19542:1 19550:1 19564:2 19587:2 19595:1 19601:1 19619:4 19640:1 19675:1 19684:1 19685:1 19692:1 19711:3 19713:1 19715:1 19718:1 19726:1 19730:2 19735:1 19737:1 19759:2 19761:2 19772:1 19775:1 19776:1 19789:2 19805:1 19813:1 19817:1 19819:1 19840:2 19841:2 19877:1 19879:1 19907:1 19926:2 19936:2 19944:1 19956:1 19962:1 19971:2 20012:1 20016:1 20017:2 20020:2 20021:1 20034:1 20037:8 20039:1 20052:1 20070:1 20078:1 20103:1 20118:1 20130:1 20131:1 20151:1 20152:1 20153:2 20160:2 20179:2 20185:1 20191:1 20210:1 20216:1 20249:1 20255:2 20260:1 20261:4 20265:1 20274:1 20307:1 20340:1 20346:1 20382:3 20383:1 20392:1 20420:1 20423:1 20429:1 20439:1 20450:1 20456:3 20467:2 20474:2 20480:1 20488:1 20489:2 20507:1 20523:1 20531:1 20532:3 20579:1 20585:1 20595:1 20621:3 20630:1 20645:3 20649:1 20651:1 20655:3 20676:1 20677:1 20682:1 20693:1 20695:1 20701:1 20749:1 20790:1 20792:9 20797:1 20806:1 20813:1 20821:1 20832:1 20852:1 20860:1 20865:1 20869:1 20878:1 20884:2 20906:1 20912:1 20922:1 20942:1 20946:3 20948:1 20950:2 20952:1 20965:3 20971:1 20976:1 20980:2 20981:1 21013:1 21020:2737 21028:1 21044:1 21046:4 21047:1 21054:2 21066:2 21086:1 21097:1 21108:1 21121:1 21131:1 21136:3 21147:1 21178:3 21201:2 21212:2 21236:1 21239:3 21242:2 21268:3 21277:1 21280:1 21284:3 21287:1 21299:1 21340:1 21341:1 21361:1 21381:1 21384:4 21414:1 21418:1 21442:2 21454:1 21463:1 21474:1 21484:1 21490:1 21494:1 21495:1 21511:1 21539:1 21549:1 21551:2 21554:1 21563:4 21576:1 21586:1 21619:1 21660:1 21661:1 21675:1 21678:3 21728:1 21749:1 21773:1 21779:2 21789:1 21795:2 21797:1 21803:2 21810:1 21819:4 21832:2 21835:1 21836:3 21841:1 21857:1 21867:10 21891:1 21892:1 21894:1 21895:1 21896:12 21909:1 21929:1 21930:3 21934:1 21950:1 21965:1 21970:3 21991:1 21995:2 22000:1 22002:3 22004:2 22008:1 22015:1 22029:2 22060:1 22068:3 22075:1 22089:1 22101:3 22131:1 22133:1 22136:1 22190:1 22194:1 22198:1 22235:1 22244:1 22262:1 22264:10 22272:1 22308:1 22317:1 22340:1 22352:1 22369:1 22375:1 22377:5 22399:1 22422:2 22443:1 22444:1 22467:1 22474:1 22476:1 22478:1 22483:1 22484:1 22485:1 22495:1 22516:1 22534:1 22542:4 22547:1 22556:1 22561:1 22581:2 22582:1 22590:1 22610:1 22616:1 22623:1 22624:1 22644:1 22651:2 22676:1 22680:1 22685:2 22687:2 22701:2 22702:1 22708:6 22737:1 22745:1 22758:1 22775:1 22781:1 22800:10 22809:1 22822:2 22825:2 22844:1 22845:1 22861:1 22863:10 22881:1 22910:1 22922:1 22924:1 22933:1 22945:1 22964:1 22999:1 23005:1 23024:2 23043:4 23045:1 23056:1 23063:1 23105:2 23153:4 23165:1 23166:2 23183:1 23185:1 23198:1 23199:1 23242:1 23245:1 23264:1 23265:1 23312:2 23335:1 23341:1 23369:1 23374:2 23383:1 23399:1 23401:1 23407:1 23439:1 23457:1 23466:1 23490:3 23512:2 23517:1 23522:1 23525:1 23532:9 23542:1 23546:3 23549:1 23550:1 23560:1 23569:5 23574:1 23595:3 23597:1 23605:1 23638:2 23653:2 23657:1 23673:2 23681:1 23682:1 23711:7 23719:1 23722:2 23730:1 23742:1 23743:1 23765:1 23786:1 23803:1 23808:1 23810:1 23832:2 23836:1 23839:1 23843:1 23849:1 23859:3 23873:1 23881:1 23882:1 23886:1 23898:1 23900:1 23940:1 23944:1 23948:1 23968:1 24003:1 24009:1 24055:1 24063:1 24065:4 24070:2 24073:3 24084:3 24087:1 24094:1 24097:1 24100:1 24143:1 24147:1 24148:1 24149:1 24154:2 24164:1 24181:1 24195:1 24201:1 24202:1 24216:1 24218:5 24221:2 24240:1 24255:1 24271:1 24277:1 24310:1 24311:2 24320:1 24328:1 24339:1 24341:1 24344:1 24359:1 24360:2 24363:10 24377:1 24384:1 24385:1 24391:1 24396:1 24402:1 24408:1 24413:1 24426:1 24427:4 24447:1 24472:2 24475:2 24478:1 24482:1 24488:4 24505:1 24542:1 24543:4 24556:2 24563:3 24567:1 24623:1 24649:3 24659:1 24661:1 24662:7 24666:1 24670:2 24682:1 24683:1 24687:1 24700:2 24701:1 24702:1 24703:2 24707:1 24714:1 24719:2 24722:1 24732:1 24734:1 24747:2 24752:2 24774:2 24809:1 24824:4 24825:1 24834:1 24855:1 24858:1 24861:1 24869:2 24872:1 24888:1 24894:1 24908:4 24917:1 24923:1 24935:1 24979:17 24980:2 24984:1 25005:1 25018:1 25021:1 25026:1 25033:1 25047:1 25057:1 25065:1 25071:2 25092:1 25094:2 25101:1 25103:1 25104:1 25106:1 25110:2 25121:2 25125:1 25126:1 25129:8 25139:1 25148:2 25156:3 25168:2 25190:1 25201:1 25206:1 25209:2 25218:1 25233:1 25236:1 25243:1 25245:2 25252:1 25256:1 25270:2 25275:1 25289:6 25303:3 25318:2 25328:1 25340:1 25368:1 25369:1 25387:2 25405:1 25423:1 25459:1 25473:3 25480:1 25485:1 25501:2 25503:1 25526:1 25539:1 25547:1 25561:1 25579:1 25581:1 25588:1 25595:12 25597:1 25598:2 25620:1 25634:1 25643:1 25653:1 25655:1 25667:1 25676:1 25683:1 25689:1 25694:1 25695:2 25705:1 25720:1 25722:1 25732:3 25754:1 25755:5 25780:1 25788:1 25791:1 25804:1 25828:2 25853:1 25860:1 25871:2 25907:1 25928:1 25929:2 25936:2 25954:1 26001:1 26015:1 26016:1 26017:3 26024:1 26030:1 26043:1 26044:1 26056:1 26073:1 26075:2 26094:1 26133:1 26135:2 26149:1 26157:1 26160:2 26165:1 26174:2 26179:3 26184:1 26187:1 26213:1 26230:1 26243:1 26254:3 26255:1 26277:6 26283:1 26287:1 26294:1 26308:1 26309:1 26315:1 26316:2 26319:2 26324:1 26352:2 26359:1 26360:2 26364:1 26415:4 26421:1 26424:19 26426:1 26498:1 26516:1 26532:1 26534:1 26539:1 26605:2 26612:1 26613:1 26624:1 26635:1 26636:1 26642:1 26655:1 26679:1 26694:1 26705:1 26721:1 26748:1 26751:2 26758:2 26794:4 26814:1 26818:1 26878:1 26880:1 26897:2 26920:1 26924:2 26929:1 26931:1 26934:1 26936:1 26938:2 26952:1 26978:1 27003:1 27009:1 27014:1 27022:1 27028:1 27032:1 27070:1 27072:1 27102:1 27104:1 27112:1 27114:5 27122:1 27132:1 27133:1 27141:3 27159:1 27183:1 27198:1 27225:1 27251:3 27262:1 27299:1 27303:5 27360:2 27373:1 27377:1 27388:1 27389:1 27397:5 27398:2 27401:1 27419:1 27427:1 27437:1 27439:2 27447:1 27451:3 27456:2 27488:1 27489:2 27491:1 27502:2 27512:1 27516:1 27522:2 27533:2 27552:1 27569:1 27574:1 27575:1 27595:1 27602:4 27612:2 27618:1 27620:1 27627:1 27641:1 27676:1 27716:1 27727:1 27728:2 27743:1 27753:1 27757:2 27760:1 27763:1 27769:1 27778:1 27804:1 27809:1 27813:1 27817:1 27843:1 27846:1 27851:1 27863:1 27872:2 27881:1 27884:1 27917:3 27933:5 27957:1 27985:1 27989:1 27997:1 28007:1 28015:2 28021:1 28032:3 28043:1 28068:2 28071:1 28074:1 28094:1 28112:1 28132:1 28139:1 28145:4 28174:1 28178:1 28234:1 28242:1 28253:1 28255:1 28273:4 28303:1 28327:2 28331:3 28335:1 28342:1 28348:3 28408:1 28414:1 28442:1 28485:1 28500:1 28503:2 28507:1 28509:7 28512:3 28518:1 28537:1 28540:1 28557:1 28560:1 28563:2 28591:1 28602:1 28608:5 28609:1 28625:1 28635:3 28641:5 28642:1 28652:1 28666:1 28671:1 28680:1 28697:2 28725:6 28728:1 28734:1 28739:1 28740:1 28753:2 28754:1 28778:1 28803:1 28811:3 28847:4 28850:1 28870:2 28872:2 28902:2 28913:1 28937:1 28945:3 28972:1 28981:1 28994:2 28998:4 29029:1 29052:1 29056:1 29060:2 29063:1 29066:1 29080:1 29085:2 29088:2 29102:1 29104:1 29105:1 29109:1 29120:1 29123:1 29128:1 29146:1 29147:1 29155:1 29156:2 29161:1 29165:1 29174:1 29189:6 29195:1 29199:1 29210:1 29212:1 29215:1 29219:1 29261:1 29272:1 29291:1 29316:1 29326:1 29327:1 29332:1 29334:3 29365:9 29374:1 29409:1 29412:1 29417:2 29439:1 29472:2 29483:1 29491:1 29498:1 29503:1 29518:3 29519:2 29527:1 29543:1 29546:2 29564:1 29574:2 29637:3 29653:5 29655:2 29665:1 29675:2 29676:1 29677:4 29679:4 29683:1 29685:1 29711:1 29732:2 29759:1 29766:1 29771:1 29781:3 29792:1 29797:1 29821:3 29842:1 29850:1 29861:2 29867:1 29882:1 29923:1 29928:1 29956:1 29964:1 29979:1 30023:1 30033:1 30051:1 30063:1 30079:1 30085:1 30091:1 30121:1 30123:2 30129:1 30149:1 30160:2 30168:2 30183:2 30198:1 30205:1 30221:1 30235:1 30294:1 30295:2 30308:1 30315:1 30334:1 30367:1 30371:1 30393:2 30399:3 30410:1 30412:1 30415:1 30418:8 30450:2 30451:2 30514:1 30524:19 30525:1 30529:3 30531:1 30540:1 30547:1 30560:2 30643:2 30647:3 30648:3 30651:1 30684:1 30701:1 30703:1 30706:1 30707:1 30719:2 30721:2 30724:1 30728:1 30738:1 30739:1 30741:1 30745:1 30753:1 30757:1 30788:2 30800:1 30818:1 30832:1 30845:1 30846:2 30849:1 30876:1 30879:1 30881:1 30895:1 30901:1 30906:1 30916:1 30958:1 30960:1 30978:1 30997:1 30998:1 31004:1 31021:3 31030:2 31088:7 31104:1 31132:1 31168:3 31176:3 31192:1 31200:1 31204:1 31207:1 31243:1 31259:1 31262:3 31268:1 31302:2 31311:1 31317:1 31349:3 31359:4 31392:1 31400:1 31403:1 31473:1 31476:1 31477:1 31489:4 31493:1 31502:1 31514:1 31526:1 31529:1 31541:1 31544:23 31545:2 31546:2 31549:2 31552:4 31555:1 31556:1 31566:1 31586:1 31587:12 31597:1 31602:1 31603:1 31613:1 31644:1 31646:1 31651:2 31661:1 31662:2 31669:1 31681:1 31697:1 31702:4 31713:4 31718:1 31719:1 31743:1 31754:3 31759:2 31763:1 31766:1 31801:1 31802:1 31806:1 31829:1 31849:1 31854:1 31863:2 31900:1 31901:1 31909:1 31932:1 31944:1 31951:1 31957:2 31959:1 31964:4 31969:1 31971:1 31976:1 31990:1 31994:2 32000:1 32012:1 32028:7 32039:3 32083:1 32110:3 32115:6 32118:1 32119:1 32126:1 32142:1 32146:1 32147:2 32158:1 32163:1 32175:1 32178:1 32179:1 32186:1 32214:3 32225:1 32257:1 32263:3 32269:1 32272:1 32275:1 32279:2 32307:1 32310:4 32314:1 32321:5 32330:1 32342:2 32363:1 32374:1 32381:1 32429:1 32445:1 32471:1 32473:1 32488:1 32505:4 32510:1 32539:2 32543:1 32547:1 32559:1 32582:1 32590:2 32596:1 32605:3 32617:1 32628:1 32642:1 32662:1 32676:3 32684:1 32686:1 32701:1 32713:2 32727:1 32733:6 32735:1 32740:1 32755:2 32781:1 32785:2 32787:1 32811:1 32821:4 32831:2 32891:1 32897:1 32898:1 32902:1 32903:1 32905:3 32910:1 32921:1 32950:1 32957:1 32966:1 32971:1 32972:1 32973:1 32977:1 33021:1
16 26:1 27:1 66:1 78:1 85:4 104:1 109:1 145:1 164:1 173:1 176:1 189:1 191:1 219:1 235:1 262:1 269:4 295:1 318:2 338:1 351:4 375:1 387:1 397:2 398:1 399:2 427:1 434:1 437:1 443:1 468:2 475:1 484:1 502:3 505:1 509:2 525:1 542:1 551:2 567:1 575:1 577:1 581:1 584:1 589:1 591:2 628:1 629:1 636:2 649:3 713:1 723:3 751:2 757:1 762:4 766:1 774:1 779:1 790:1 793:1 805:1 812:1 821:1 832:1 869:2 886:1 891:1 908:1 929:1 937:1 944:1 949:2 957:1 970:1 975:1 984:1 988:1 1000:1 1007:1 1016:1 1035:1 1046:2 1050:1 1051:1 1054:1 1058:2 1068:1 1069:2 1078:3 1080:1 1081:3 1082:6 1084:2 1091:1 1114:1 1116:1 1138:1 1139:6 1143:2 1149:1 1164:1 1170:1 1180:2 1185:1 1202:1 1220:2 1221:1 1240:1 1250:1 1254:1 1259:1 1285:1 1288:1 1301:1 1341:1 1352:1 1353:3 1359:1 1366:1 1368:1 1369:2 1377:2 1387:1 1388:4 1398:2 1406:1 1412:1 1425:1 1426:3 1457:1 1464:1 1466:1 1469:1 1472:4 1475:1 1487:1 1488:2 1489:2 1506:2 1512:1 1524:1 1526:1 1540:1 1546:2 1560:2 1572:1 1574:1 1586:2 1600:2 1630:1 1633:1 1642:1 1676:3 1677:1 1683:1 1689:1 1692:1 1695:1 1711:1 1733:1 1742:6 1754:1 1760:6 1767:2 1773:1 1774:2 1775:1 1776:1 1780:2 1787:1 1791:1 1802:4 1822:1 1835:1 1839:5 1853:1 1863:1 1867:1 1871:2 1879:2 1907:2 1914:1 1919:4 1924:4 1927:2 1928:1 1939:1 1941:1 1944:1 1953:1 1963:4 1966:3 1968:1 1975:1 1976:1 1993:1 2018:1 2038:1 2039:1 2050:2 2053:1 2055:1 2058:1 2069:2 2077:2 2097:1 2098:1 2109:1 2122:1 2127:1 2128:1 2139:1 2142:1 2143:1 2150:1 2156:1 2174:1 2175:1 2180:1 2187:1 2188:1 2201:1 2211:1 2215:1 2219:1 2226:1 2230:1 2232:1 2234:4 2239:1 2241:1 2245:1 2262:1 2263:3 2264:1 2282:1 2317:1 2320:1 2323:1 2339:1 2345:1 2354:2 2358:2 2360:1 2361:2 2368:3 2369:1 2407:1 2414:2 2435:1 2438:1 2439:1 2441:3 2443:1 2444:2 2446:1 2475:4 2501:2 2509:1 2518:1 2531:1 2553:1 2556:1 2566:1 2571:1 2572:3 2584:1 2628:1 2629:1 2630:1 2631:2 2632:4 2637:1 2638:4 2640:1 2641:1 2643:5 2645:1 2647:3 2651:1 2654:1 2660:5 2665:3 2668:6 2687:1 2691:1 2712:1 2728:1 2733:1 2744:1 2754:2 2755:1 2759:1 2762:1 2763:2 2782:1 2790:1 2794:1 2800:1 2808:1 2826:1 2845:3 2856:1 2871:1 2883:2 2909:1 2921:1 2925:1 2927:1 2944:1 2986:1 2994:1 3021:1 3023:1 3062:2 3071:1 3082:4 3092:1 3098:3 3108:1 3117:2 3119:1 3127:1 3130:2 3136:7 3150:1 3151:1 3164:2 3173:1 3177:1 3182:1 3189:3 3193:1 3197:1 3226:1 3237:2 3246:2 3252:1 3254:1 3256:4 3264:2 3314:4 3322:1 3328:1 3336:1 3355:10 3363:7 3392:2 3409:1 3426:24 3435:1 3441:1 3457:1 3459:1 3473:1 3497:1 3505:1 3533:2 3536:1 3542:1 3607:3 3612:1 3613:1 3625:1 3634:1 3639:1 3650:1 3688:1 3689:1 3693:1 3698:1 3700:1 3710:2 3713:4 3721:1 3739:10 3759:1 3764:1 3773:1 3789:1 3809:1 3821:1 3823:6 3863:1 3894:1 3900:1 3906:1 3918:1 3931:2 3941:1 3944:1 3959:1 3965:1 3975:3 3983:2 3985:1 3992:1 4003:4 4041:1 4049:1 4053:3 4056:1 4076:1 4077:1 4089:3 4091:1 4125:1 4144:1 4150:1 4152:3 4156:1 4161:2 4164:1 4165:1 4203:1 4210:1 4235:1 4245:2 4256:1 4266:1 4270:1 4271:3 4297:1 4317:1 4323:2 4325:32 4340:1 4347:1 4361:2 4363:1 4364:7 4367:1 4375:1 4376:2 4377:18 4379:1 4381:4 4391:2 4405:3 4408:1 4418:2 4419:3 4423:2 4425:2 4426:2 4438:1 4439:2 4442:1 4444:1 4463:1 4480:2 4490:1 4491:3 4502:1 4507:1 4537:1 4541:1 4543:1 4544:3 4555:2 4567:2 4570:1 4575:1 4581:1 4587:1 4597:2 4619:1 4622:1 4630:1 4632:1 4633:1 4635:1 4636:1 4643:1 4646:1 4652:1 4655:1 4658:4 4674:4 4678:1 4686:1 4730:1 4734:1 4793:1 4799:3 4810:1 4813:2 4834:2 4852:1 4855:1 4870:2 4876:1 4877:1 4879:1 4880:1 4906:1 4913:1 4924:1 4926:1 4937:1 4978:1 4989:1 5010:8 5027:1 5086:1 5090:1 5098:1 5106:5 5117:1 5120:2 5138:1 5152:4 5155:1 5176:1 5181:2 5198:1 5205:1 5258:1 5268:2 5269:1 5298:1 5331:1 5343:1 5363:2 5367:1 5370:2 5381:1 5390:3 5403:1 5410:3 5433:2 5438:1 5439:1 5497:1 5509:1 5510:1 5514:1 5516:1 5528:1 5545:2 5558:1 5613:1 5617:1 5632:1 5640:2 5643:1 5645:1 5659:13 5660:1 5678:1 5699:2 5729:2 5744:1 5761:1 5784:3 5797:3 5800:1 5802:4 5821:2 5822:2 5823:6 5824:1 5827:1 5828:1 5831:2 5833:1 5840:1 5841:17 5842:1 5844:1 5848:2 5849:3 5860:1 5877:1 5880:3 5936:2 5950:1 5958:1 5968:1 5972:1 6050:1 6060:1 6081:3 6082:3 6089:5 6125:1 6137:1 6142:1 6157:1 6168:2 6169:17 6177:1 6205:1 6216:3 6221:1 6236:1 6255:2 6301:1 6305:1 6322:1 6350:1 6357:1 6371:1 6379:1 6383:1 6394:1 6403:1 6404:2 6462:1 6463:1 6465:1 6469:1 6473:1 6479:1 6480:1 6483:2 6507:1 6515:1 6518:1 6531:2 6540:1 6542:1 6548:1 6568:2 6574:1 6587:1 6611:1 6617:3 6640:2 6647:1 6669:1 6672:1 6673:1 6678:1 6686:1 6707:1 6723:1 6725:1 6728:1 6731:1 6733:1 6753:1 6768:1 6772:1 6776:1 6777:1 6808:1 6826:1 6844:3 6845:1 6868:1 6870:3 6873:1 6883:1 6891:1 6897:1 6938:1 6959:2 7029:1 7034:1 7035:5 7043:1 7045:2 7068:2 7074:1 7102:1 7120:1 7128:1 7139:1 7149:2 7150:1 7154:1 7157:1 7190:4 7196:1 7200:2 7202:2 7232:1 7249:1 7254:2 7257:1 7260:1 7276:5 7278:1 7295:1 7296:1 7300:1 7309:1 7316:1 7321:1 7363:1 7382:2 7386:1 7387:1 7390:1 7391:1 7392:1 7394:2 7396:2 7397:1 7401:2 7402:3 7403:3 7409:2 7410:6 7411:1 7412:1 7413:2 7427:1 7451:1 7454:1 7474:1 7477:1 7503:1 7509:1 7553:1 7559:1 7567:1 7579:2 7586:1 7613:1 7615:1 7664:1 7681:1 7684:2 7687:1 7690:2 7709:1 7710:5 7716:3 7722:1 7725:1 7731:1 7732:1 7742:2 7764:3 7790:1 7791:1 7793:1 7805:1 7825:1 7846:1 7849:1 7869:1 7876:1 7877:2 7879:1 7891:3 7900:1 7907:1 7915:2 7921:1 7940:1 7947:1 7955:1 7987:1 7998:1 8005:2 8012:1 8019:1 8021:1 8026:2 8032:1 8071:1 8091:1 8093:1 8110:1 8111:2 8135:1 8137:2 8138:1 8169:1 8194:2 8215:1 8224:1 8233:1 8251:1 8255:5 8263:2 8289:1 8299:1 8320:1 8335:1 8358:1 8425:1 8490:1 8499:1 8507:1 8512:1 8526:4 8575:1 8577:1 8586:3 8604:2 8629:4 8632:1 8674:2 8688:2 8689:1 8711:1 8714:1 8723:1 8759:1 8770:1 8784:1 8786:1 8791:4 8821:1 8830:3 8831:4 8832:2 8842:1 8850:1 8854:2 8858:1 8861:1 8888:1 8890:2 8898:1 8900:1 8901:36 8902:1 8904:1 8908:2 8920:9 8923:20 8929:1 8933:1 8936:1 8943:1 8945:1 8952:1 8978:4 8979:1 9001:1 9014:1 9034:1 9051:1 9059:1 9068:1 9082:2 9085:1 9091:1 9149:3 9153:5 9161:1 9199:1 9206:1 9209:4 9212:1 9230:1 9234:1 9251:1 9272:1 9285:1 9304:1 9341:1 9343:3 9362:1 9368:1 9370:6 9386:2 9405:1 9416:2 9436:1 9444:1 9448:1 9454:1 9468:1 9470:1 9484:17 9511:1 9516:1 9524:2 9525:1 9551:2 9589:1 9594:1 9605:2 9616:1 9630:2 9639:3 9664:1 9672:1 9678:3 9687:4 9694:1 9697:1 9709:2 9711:1 9715:3 9728:1 9732:2 9733:1 9734:1 9738:1 9747:1 9748:2 9754:2 9765:1 9777:2 9778:2 9788:1 9790:1 9791:1 9792:1 9809:2 9829:1 9836:1 9841:3 9848:1 9859:1 9866:1 9870:1 9875:1 9878:2 9880:1 9881:3 9882:1 9884:2 9885:4 9888:1 9894:1 9897:2 9899:2 9903:3 9919:1 9925:1 9934:2 9944:1 9945:1 9950:1 9951:1 9959:1 9973:1 9977:2 9984:1 10002:2 10019:1 10024:5 10044:1 10053:3 10056:1 10065:1 10067:1 10069:1 10080:1 10088:1 10092:1 10121:1 10128:2 10138:1 10139:1 10144:1 10150:2 10161:3 10162:1 10166:1 10181:1 10192:1 10204:1 10208:4 10209:2 10214:4 10216:1 10218:1 10219:3 10221:3 10223:2 10228:1 10229:2 10230:2 10252:1 10254:1 10255:2 10257:4 10270:1 10272:1 10295:2 10302:1 10308:1 10367:1 10377:2 10386:1 10397:2 10399:1 10410:1 10412:1 10422:1 10438:1 10441:1 10454:1 10461:1 10478:1 10520:3 10554:1 10558:1 10563:1 10565:3 10580:1 10588:6 10610:2 10615:2 10619:1 10627:1 10634:1 10653:1 10662:1 10671:3 10673:1 10695:1 10701:1 10710:1 10726:1 10750:1 10756:1 10768:1 10819:1 10845:1 10846:1 10851:3 10857:2 10858:1 10862:1 10864:2 10879:1 10900:1 10903:1 10906:2 10937:1 10939:1 10942:2 10947:1 10959:1 10975:1 11009:17 11016:1 11034:1 11039:2 11047:4 11056:2 11059:1 11083:1 11091:1 11104:2 11124:1 11154:14 11171:1 11176:2 11189:1 11198:1 11210:5 11218:1 11225:1 11226:1 11229:3 11230:1 11232:1 11249:1 11263:1 11267:1 11316:2 11318:3 11319:1 11359:6 11363:2 11366:4 11368:2 11374:1 11375:1 11382:1 11392:2 11400:2 11402:1 11408:1 11417:1 11422:3 11426:1 11427:1 11429:1 11437:1 11446:1 11464:3 11470:3 11489:1 11492:2 11496:1 11507:1 11513:1 11545:1 11550:1 11551:3 11553:1 11580:9 11582:1 11583:5 11595:1 11597:1 11692:1 11697:2 11703:1 11720:1 11728:1 11754:1 11761:1 11775:4 11789:1 11800:1 11803:1 11826:1 11832:1 11880:1 11897:2 11914:3 11921:1 11926:1 11932:1 11948:1 11955:1 11967:1 11970:1 11994:2 12001:3 12014:1 12043:1 12044:1 12052:2 12072:2 12075:2 12090:1 12098:6 12117:2 12119:3 12120:1 12121:3 12125:1 12128:1 12145:1 12147:1 12150:1 12160:1 12173:1 12174:2 12197:1 12200:1 12211:4 12229:2 12241:2 12249:7 12266:1 12314:1 12316:1 12322:1 12345:2 12346:2 12347:1 12352:1 12362:1 12396:1 12408:1 12416:1 12459:1 12465:1 12468:1 12476:1 12492:1 12498:2 12499:1 12512:6 12531:3 12534:6 12549:1 12553:1 12556:2 12558:1 12562:1 12596:4 12610:1 12623:2 12634:1 12635:2 12642:1 12664:3 12676:2 12706:1 12740:1 12743:1 12753:1 12770:1 12807:1 12810:1 12816:1 12818:1 12819:1 12821:1 12825:4 12826:1 12850:1 12855:1 12863:1 12867:2 12883:1 12888:1 12892:1 12893:1 12919:2 12951:1 12953:2 12960:1 12965:1 12974:2 12980:1 12981:1 12983:1 12990:1 12991:1 13014:1 13021:3 13057:1 13061:2 13063:5 13067:1 13100:1 13122:1 13125:1 13127:1 13135:1 13138:2 13153:1 13176:3 13204:1 13207:1 13215:1 13218:4 13234:3 13236:1 13252:3 13254:2 13284:1 13297:2 13303:1 13318:3 13324:2 13327:1 13328:6 13341:1 13343:1 13348:1 13352:1 13354:1 13355:1 13363:1 13366:1 13368:5 13369:1 13376:2 13379:5 13382:1 13387:1 13395:1 13403:6 13428:2 13447:5 13454:1 13463:2 13467:1 13507:1 13518:4 13528:1 13532:1 13536:1 13537:2 13576:1 13580:1 13590:3 13592:1 13607:1 13616:1 13620:1 13629:1 13645:1 13652:1 13690:2 13692:2 13717:2 13737:1 13759:1 13766:1 13780:3 13832:2 13834:2 13847:1 13867:1 13872:1 13874:1 13878:1 13913:3 13914:3 13916:17 13923:5 13933:1 13940:1 13941:2 13956:1 13962:1 13972:2 14002:1 14021:1 14041:1 14043:1 14073:1 14074:1 14082:7 14083:2 14098:1 14105:1 14106:2 14109:1 14130:1 14167:3 14172:1 14198:1 14207:1 14219:2 14222:1 14228:1 14235:1 14248:1 14265:1 14286:1 14292:1 14312:3 14326:1 14329:1 14369:1 14373:3 14379:1 14382:1 14388:1 14399:1 14441:1 14456:1 14506:6 14519:1 14520:1 14523:1 14527:2 14530:1 14535:1 14546:1 14565:2 14566:3 14588:1 14592:1 14629:1 14660:1 14667:2 14693:1 14705:1 14728:1 14735:2 14746:1 14748:1 14751:2 14775:1 14785:2 14819:1 14870:1 14894:3 14920:1 14926:1 14930:1 14943:1 14948:1 14955:1 14960:1 14970:1 14990:1 15002:2 15013:1 15014:1 15015:1 15017:2 15023:1 15035:1 15044:1 15045:2 15080:1 15086:1 15088:2 15140:2 15146:1 15154:1 15155:2 15156:6 15162:3 15164:1 15171:1 15178:3 15182:1 15192:3 15195:1 15198:1 15204:3 15214:1 15234:7 15238:1 15247:1 15250:1 15254:2 15266:2 15267:1 15280:1 15301:2 15317:1 15338:4 15343:1 15355:1 15365:1 15380:2 15400:3 15420:1 15428:2 15430:6 15441:1 15450:1 15464:1 15465:2 15466:2 15480:1 15486:1 15502:1 15503:1 15511:1 15513:1 15514:2 15529:1 15538:2 15561:1 15576:1 15579:2 15588:1 15589:1 15597:1 15598:1 15599:2 15600:1 15602:1 15606:1 15627:1 15635:1 15636:1 15655:1 15659:1 15663:1 15664:1 15677:1 15683:1 15684:1 15688:2 15691:1 15701:2 15706:1 15707:1 15726:1 15739:7 15750:1 15797:1 15801:1 15821:1 15822:1 15823:1 15827:1 15851:1 15853:2 15856:2 15857:1 15861:4 15891:1 15906:1 15908:1 15918:1 15921:1 15933:2 15934:3 15938:2 15939:5 15950:1 15970:1 15977:3 15997:1 16008:2 16035:2 16037:1 16043:1 16046:1 16051:1 16063:2 16064:1 16070:2 16107:1 16118:1 16189:1 16192:1 16202:2 16220:1 16246:1 16263:1 16279:1 16339:1 16341:1 16361:1 16382:2 16392:2 16393:1 16401:1 16402:1 16408:1 16412:3 16414:1 16416:1 16424:1 16428:1 16442:2 16467:1 16483:1 16491:1 16495:1 16506:1 16517:1 16525:2 16561:1 16570:1 16583:1 16600:1 16603:1 16612:1 16618:1 16621:1 16631:1 16640:4 16661:1 16675:1 16687:2 16692:1 16718:1 16738:1 16775:4 16828:1 16874:1 16885:1 16892:2 16939:1 16951:1 16956:1 16970:2 17000:3 17005:3 17007:1 17010:1 17012:1 17013:1 17031:1 17037:1 17059:1 17078:1 17098:2 17099:1 17109:3 17137:1 17150:1 17162:1 17163:2 17167:1 17191:1 17194:1 17202:1 17205:1 17207:3 17235:1 17237:1 17240:1 17246:1 17255:1 17280:1 17283:1 17294:1 17347:2 17353:3 17355:3 17360:1 17379:4 17380:1 17385:1 17408:1 17433:4 17435:1 17441:1 17445:1 17448:1 17479:1 17481:1 17488:1 17496:1 17501:3 17508:2 17512:2 17520:2 17546:1 17558:1 17566:2 17591:1 17611:1 17627:1 17633:1 17634:1 17653:1 17662:3 17668:1 17685:8 17687:8 17689:1 17694:1 17722:2 17734:1 17736:2 17740:2 17758:3 17763:1 17776:2 17783:1 17796:1 17803:1 17813:1 17829:2 17833:1 17835:1 17844:4 17854:2 17863:1 17864:1 17866:1 17873:1 17875:1 17878:1 17884:1 17885:4 17889:2 17890:5 17892:1 17896:1 17900:1 17901:1 17902:1 17912:1 17913:5 17919:4 17968:2 17996:1 18009:1 18012:2 18022:2 18024:2 18030:4 18041:1 18060:2 18065:1 18073:1 18096:2 18101:2 18127:2 18145:1 18146:1 18149:1 18158:1 18171:1 18175:1 18178:2 18182:1 18187:8 18198:2 18199:2 18217:2 18222:1 18225:1 18243:1 18254:1 18263:17 18291:1 18300:5 18301:1 18305:1 18324:2 18341:50 18361:3 18366:1 18390:1 18418:1 18424:1 18426:1 18427:2 18442:1 18455:1 18460:1 18467:2 18468:1 18469:2 18473:2 18474:4 18477:1 18482:2 18486:1 18501:1 18513:1 18516:1 18518:1 18523:1 18526:1 18530:1 18543:1 18544:1 18565:1 18567:1 18604:1 18610:5 18634:1 18643:1 18648:2 18654:1 18692:1 18696:1 18700:1 18715:1 18762:1 18768:1 18797:1 18798:1 18808:1 18822:2 18826:1 18865:2 18867:1 18870:1 18905:1 18908:1 18916:2 18922:4 18923:1 18927:1 18944:1 18946:3 18968:3 18985:1 18996:1 18997:1 19000:1 19004:2 19006:1 19008:1 19016:1 19020:1 19027:1 19029:1 19042:1 19048:10 19057:1 19072:1 19084:1 19094:2 19106:1 19107:1 19136:1 19143:1 19165:1 19167:2 19170:3 19177:1 19179:2 19182:1 19185:1 19202:1 19206:1 19222:1 19232:1 19240:1 19243:2 19245:2 19271:1 19285:1 19307:3 19316:1 19331:1 19374:1 19382:2 19385:1 19407:2 19420:1 19425:1 19434:2 19435:1 19440:2 19449:2 19457:1 19461:1 19466:1 19469:3 19473:1 19480:1 19489:1 19490:1 19497:3 19501:1 19504:1 19521:1 19542:1 19550:1 19564:2 19587:2 19595:1 19601:1 19619:4 19640:1 19675:1 19684:1 19685:1 19692:1 19711:4 19713:1 19715:1 19718:1 19726:1 19730:2 19735:1 19737:1 19759:2 19761:2 19772:1 19775:1 19776:1 19789:2 19805:1 19813:1 19817:1 19819:1 19834:1 19840:2 19841:2 19877:1 19879:1 19907:1 19926:2 19936:2 19944:1 19956:1 19962:1 19971:2 20012:2 20016:1 20017:2 20020:2 20021:1 20034:1 20037:8 20039:2 20052:1 20070:1 20078:1 20103:1 20118:1 20130:1 20131:1 20151:1 20152:1 20153:2 20160:3 20179:2 20185:2 20191:1 20210:1 20216:1 20249:1 20255:2 20260:1 20261:4 20265:1 20274:1 20307:1 20340:1 20346:1 20382:3 20383:1 20392:1 20420:1 20423:1 20429:1 20439:1 20450:1 20456:3 20467:2 20474:2 20480:1 20488:1 20489:2 20507:1 20523:1 20531:1 20532:3 20579:1 20585:1 20595:1 20621:3 20630:1 20645:4 20649:1 20651:1 20655:3 20676:1 20677:1 20682:1 20693:1 20695:1 20701:1 20749:1 20790:1 20792:9 20797:1 20806:1 20813:1 20821:1 20832:1 20852:1 20860:1 20865:1 20869:1 20878:1 20884:2 20906:1 20912:1 20922:1 20942:1 20946:4 20948:1 20950:2 20952:1 20965:3 20971:1 20976:1 20980:2 20981:1 21013:1 21020:2853 21028:1 21044:1 21046:4 21047:1 21054:2 21066:2 21086:1 21097:1 21108:1 21121:1 21131:1 21136:3 21147:1 21178:3 21201:2 21212:2 21236:1 21239:4 21242:2 21268:3 21277:1 21280:1 21284:3 21287:1 21299:1 21340:1 21341:1 21361:1 21381:1 21384:4 21414:1 21418:1 21442:2 21454:1 21463:1 21474:1 21484:1 21490:1 21494:1 21495:1 21511:1 21539:1 21549:1 21551:2 21554:1 21563:4 21576:1 21586:1 21619:1 21660:1 21661:1 21675:1 21678:3 21728:1 21749:1 21773:1 21779:2 21789:1 21795:2 21797:1 21803:2 21810:1 21819:4 21832:2 21835:1 21836:3 21841:1 21857:1 21867:12 21891:1 21892:1 21894:1 21895:1 21896:14 21909:1 21929:1 21930:4 21934:1 21950:1 21965:1 21970:4 21991:1 21995:2 22000:1 22002:3 22004:2 22008:1 22015:1 22029:2 22060:1 22068:3 22075:1 22089:1 22101:3 22131:1 22133:1 22136:1 22190:1 22194:1 22198:1 22229:1 22235:1 22244:1 22262:1 22264:10 22272:1 22308:1 22317:1 22340:1 22352:1 22369:1 22375:1 22377:5 22396:1 22399:1 22422:2 22443:1 22444:1 22467:1 22474:1 22476:1 22478:1 22483:1 22484:1 22485:1 22495:1 22516:1 22534:1 22542:4 22547:1 22556:1 22561:1 22581:2 22582:1 22590:1 22610:1 22616:1 22623:1 22624:1 22644:1 22651:4 22676:1 22680:1 22685:2 22687:2 22701:2 22702:1 22708:7 22737:1 22745:1 22758:1 22775:1 22781:1 22800:11 22809:1 22822:2 22825:2 22844:1 22845:1 22861:1 22863:11 22881:1 22910:1 22922:1 22924:1 22933:1 22945:1 22964:1 22999:1 23005:1 23024:2 23043:4 23045:2 23056:1 23063:1 23105:2 23153:5 23165:1 23166:3 23183:1 23185:1 23198:1 23199:1 23209:1 23242:1 23245:1 23264:1 23265:1 23312:2 23335:1 23341:1 23369:1 23374:2 23383:1 23399:1 23401:1 23407:1 23439:1 23457:1 23466:1 23490:3 23512:2 23517:1 23522:1 23525:1 23532:10 23542:1 23546:3 23549:1 23550:1 23560:1 23569:5 23574:1 23595:4 23597:1 23605:1 23638:2 23653:2 23657:1 23673:2 23681:1 23682:1 23711:7 23719:1 23722:2 23730:1 23742:1 23743:1 23765:1 23786:1 23803:1 23808:1 23810:1 23832:2 23836:1 23839:1 23843:1 23849:1 23859:3 23873:1 23881:1 23882:1 23886:1 23898:1 23900:1 23940:1 23944:1 23948:1 23968:1 23974:1 24003:1 24009:1 24055:1 24063:1 24065:4 24070:2 24073:3 24084:4 24087:1 24094:1 24097:1 24100:1 24143:1 24147:1 24148:1 24149:1 24154:2 24164:1 24181:1 24195:1 24201:1 24202:1 24216:1 24218:6 24221:2 24240:1 24255:1 24271:1 24277:1 24310:1 24311:2 24320:1 24328:1 24339:1 24341:1 24344:1 24359:1 24360:3 24363:11 24377:1 24384:1 24385:1 24391:1 24396:1 24402:1 24408:1 24413:1 24426:1 24427:4 24447:1 24472:2 24475:2 24478:1 24482:1 24488:4 24505:1 24520:1 24542:1 24543:4 24556:2 24563:3 24567:1 24623:1 24649:3 24659:1 24661:1 24662:7 24666:1 24670:2 24682:2 24683:1 24687:1 24700:2 24701:1 24702:1 24703:2 24707:1 24714:1 24719:2 24722:1 24732:1 24734:1 24747:2 24752:2 24774:2 24809:1 24824:5 24825:1 24834:1 24855:1 24858:1 24861:1 24869:2 24872:1 24888:1 24894:1 24908:4 24917:1 24923:1 24935:1 24979:17 24980:2 24984:1 25005:1 25018:1 25021:1 25026:1 25033:1 25047:1 25057:1 25065:1 25071:2 25092:1 25094:2 25101:1 25103:1 25104:1 25106:1 25110:2 25121:2 25125:1 25126:1 25129:8 25139:1 25148:2 25156:3 25168:2 25190:1 25201:1 25206:1 25209:2 25218:1 25233:1 25236:1 25243:1 25245:2 25252:1 25256:1 25270:2 25275:1 25289:6 25303:3 25318:2 25328:1 25340:1 25368:1 25369:1 25387:2 25405:1 25423:1 25459:1 25473:3 25480:1 25485:1 25494:1 25501:2 25503:1 25526:1 25539:1 25547:1 25561:1 25579:1 25581:1 25588:1 25595:12 25597:1 25598:2 25620:1 25634:2 25643:1 25653:1 25655:1 25667:1 25676:1 25683:1 25689:1 25694:1 25695:2 25705:1 25720:1 25722:1 25732:3 25754:1 25755:5 25780:1 25788:1 25791:1 25804:1 25808:1 25828:2 25853:1 25860:1 25871:2 25907:1 25928:1 25929:2 25936:2 25954:1 26001:1 26015:1 26016:1 26017:4 26024:1 26030:1 26043:1 26044:1 26056:1 26073:1 26075:2 26094:1 26133:1 26135:2 26149:1 26157:1 26160:2 26165:1 26174:2 26179:3 26184:1 26187:1 26213:1 26230:1 26243:1 26254:3 26255:1 26277:6 26283:1 26287:1 26294:1 26308:1 26309:1 26315:1 26316:3 26319:2 26324:1 26352:2 26359:1 26360:2 26364:1 26415:4 26421:1 26424:19 26426:1 26498:1 26516:2 26532:1 26534:1 26539:1 26605:2 26612:1 26613:1 26624:1 26635:1 26636:1 26642:1 26655:1 26679:1 26694:1 26705:1 26721:1 26748:1 26751:2 26758:2 26794:4 26814:1 26818:1 26878:1 26880:1 26897:2 26920:1 26924:2 26929:1 26931:1 26934:1 26936:1 26938:2 26952:1 26978:1 27003:1 27009:1 27014:1 27022:1 27028:1 27032:1 27070:1 27072:1 27085:1 27102:1 27104:1 27112:1 27114:5 27122:1 27132:1 27133:1 27141:3 27159:1 27183:1 27198:1 27225:1 27251:3 27262:1 27299:1 27303:5 27360:2 27373:1 27377:1 27388:1 27389:1 27397:5 27398:2 27401:1 27419:1 27427:1 27437:1 27439:2 27447:1 27451:3 27456:2 27488:1 27489:2 27491:1 27502:2 27512:1 27516:1 27522:2 27533:2 27552:1 27569:1 27574:1 27575:1 27595:1 27602:4 27612:3 27618:1 27620:1 27627:1 27641:1 27676:1 27716:1 27727:1 27728:2 27743:1 27753:1 27757:2 27760:1 27763:1 27769:1 27778:1 27804:1 27809:1 27813:1 27817:1 27843:1 27846:1 27851:1 27863:1 27872:2 27881:1 27884:1 27917:3 27933:5 27957:1 27970:1 27985:1 27989:1 27997:1 28007:1 28015:2 28021:1 28032:4 28033:1 28043:1 28068:2 28071:1 28074:1 28094:1 28112:1 28132:1 28139:1 28145:4 28174:1 28178:1 28234:1 28242:2 28253:1 28255:1 28273:5 28303:1 28327:2 28331:4 28335:1 28342:1 28348:4 28408:1 28414:1 28442:1 28485:1 28500:1 28503:2 28507:1 28509:7 28512:3 28518:1 28537:1 28540:1 28557:1 28560:1 28563:2 28591:1 28602:1 28608:6 28609:1 28625:1 28635:3 28641:5 28642:1 28652:1 28666:1 28671:1 28680:1 28697:2 28725:6 28728:1 28734:1 28739:1 28740:1 28753:2 28754:1 28762:1 28778:1 28803:1 28811:3 28847:4 28850:1 28870:2 28872:2 28902:2 28913:1 28937:1 28945:3 28972:1 28981:1 28994:2 28998:4 29029:1 29052:1 29056:1 29060:2 29063:1 29066:1 29080:1 29085:2 29088:2 29102:1 29104:1 29105:1 29109:1 29120:1 29123:1 29128:1 29146:1 29147:1 29155:1 29156:2 29161:1 29165:1 29174:1 29189:6 29195:1 29199:1 29210:1 29212:1 29215:1 29219:2 29261:1 29272:1 29291:1 29316:1 29326:1 29327:1 29332:1 29334:3 29365:9 29374:1 29409:1 29412:1 29417:2 29439:1 29472:2 29483:1 29491:1 29498:1 29503:1 29518:3 29519:2 29527:1 29543:1 29546:2 29564:1 29574:2 29637:3 29653:5 29655:2 29665:1 29673:1 29675:2 29676:1 29677:4 29679:6 29683:1 29685:1 29711:1 29732:2 29759:1 29766:1 29771:1 29781:3 29792:1 29797:1 29821:3 29842:1 29850:1 29861:2 29867:1 29882:1 29923:1 29928:1 29956:1 29964:1 29979:1 30023:1 30033:1 30051:1 30063:1 30079:1 30085:1 30091:1 30121:1 30123:2 30129:1 30149:1 30160:2 30168:2 30183:2 30198:1 30205:1 30221:1 30235:1 30294:1 30295:2 30308:1 30315:1 30334:1 30367:1 30371:1 30393:2 30399:4 30410:1 30412:1 30415:1 30418:9 30450:2 30451:2 30452:1 30514:1 30524:19 30525:1 30529:3 30531:1 30540:1 30547:1 30560:2 30643:2 30647:3 30648:3 30651:2 30684:1 30698:1 30701:1 30703:1 30706:1 30707:1 30719:2 30721:2 30724:1 30728:1 30738:1 30739:1 30741:1 30745:1 30753:1 30757:3 30788:2 30800:1 30818:1 30832:1 30845:1 30846:2 30849:1 30876:1 30879:1 30881:1 30895:1 30901:1 30906:1 30916:1 30958:1 30960:1 30978:1 30997:1 30998:1 31004:1 31021:3 31030:2 31088:7 31104:1 31132:1 31168:3 31176:3 31192:1 31200:1 31204:1 31207:1 31243:1 31259:1 31262:3 31268:1 31302:2 31311:1 31317:1 31349:3 31359:4 31392:1 31400:1 31403:1 31473:1 31476:1 31477:1 31489:4 31493:1 31502:1 31514:1 31526:3 31529:1 31541:1 31544:24 31545:2 31546:2 31549:2 31552:4 31555:1 31556:1 31566:1 31586:1 31587:13 31597:1 31602:1 31603:1 31613:1 31644:1 31646:1 31651:2 31661:1 31662:2 31669:1 31681:1 31697:1 31702:4 31713:4 31718:1 31719:1 31743:1 31754:3 31759:2 31763:1 31766:1 31801:1 31802:1 31806:1 31829:1 31849:1 31854:1 31863:2 31900:1 31901:1 31909:1 31932:1 31943:1 31944:1 31951:1 31957:2 31959:1 31964:4 31969:1 31971:1 31976:1 31990:1 31994:2 32000:1 32012:1 32028:8 32039:3 32083:1 32110:3 32115:7 32118:1 32119:1 32125:1 32126:1 32142:1 32146:1 32147:2 32158:1 32163:1 32175:1 32178:1 32179:1 32186:1 32214:3 32225:1 32257:1 32263:3 32269:1 32272:1 32275:1 32279:2 32303:1 32307:1 32310:4 32314:1 32321:5 32330:1 32342:2 32363:1 32374:1 32381:1 32429:1 32445:1 32471:2 32473:1 32488:1 32505:4 32510:1 32539:2 32543:1 32547:1 32559:1 32582:1 32590:2 32596:1 32605:3 32617:1 32628:1 32642:1 32662:1 32676:3 32684:1 32686:1 32701:1 32713:2 32727:1 32733:6 32735:1 32740:1 32755:2 32781:1 32785:2 32787:1 32811:1 32821:4 32831:2 32891:1 32897:1 32898:1 32902:1 32903:1 32905:3 32910:1 32921:1 32950:1 32957:2 32966:1 32971:1 32972:1 32973:1 32977:1 33021:1 33038:1
16 10:1 26:1 27:1 28:1 41:1 66:1 78:1 85:4 104:1 109:1 145:1 164:1 173:1 176:1 189:1 191:1 219:1 225:1 232:1 235:1 262:1 269:4 272:1 273:1 295:1 318:2 338:1 351:4 375:1 387:1 397:2 398:1 399:2 427:1 434:1 437:1 443:1 468:2 475:1 484:1 502:3 505:1 509:2 525:1 542:1 551:2 567:1 575:1 577:1 581:1 584:1 589:1 591:2 628:1 629:1 636:2 649:4 709:1 713:2 723:3 751:2 757:1 762:4 766:1 774:1 779:1 790:1 793:1 805:1 812:1 821:1 832:1 869:2 886:1 891:1 908:1 929:1 937:1 944:1 949:2 957:1 962:1 970:1 975:1 984:1 988:1 1000:2 1007:1 1016:1 1035:1 1046:2 1050:1 1051:1 1054:1 1058:2 1068:1 1069:2 1078:3 1080:1 1081:3 1082:6 1084:2 1091:1 1114:1 1116:2 1138:1 1139:6 1143:2 1149:1 1164:1 1170:1 1180:2 1185:1 1202:1 1220:2 1221:1 1240:1 1250:1 1254:1 1259:1 1285:1 1288:1 1301:1 1341:1 1352:1 1353:3 1359:1 1366:1 1368:1 1369:2 1377:2 1387:1 1388:4 1398:2 1406:1 1412:1 1425:1 1426:3 1457:1 1464:1 1466:2 1469:1 1472:4 1475:1 1487:1 1488:4 1489:2 1490:1 1506:3 1512:1 1524:1 1526:1 1535:1 1540:1 1546:3 1560:2 1572:1 1574:1 1586:2 1600:2 1630:1 1633:1 1642:1 1676:3 1677:1 1683:1 1689:1 1692:1 1695:2 1711:1 1733:1 1742:6 1754:1 1760:6 1767:2 1773:1 1774:2 1775:1 1776:1 1780:3 1787:1 1791:1 1802:4 1822:1 1835:1 1839:5 1853:1 1863:1 1867:1 1871:2 1879:2 1907:2 1914:1 1919:4 1924:4 1927:2 1928:1 1939:1 1941:1 1944:1 1953:1 1963:4 1966:3 1968:1 1975:1 1976:1 1993:1 2018:1 2038:1 2039:1 2050:2 2053:1 2055:1 2058:1 2069:3 2077:2 2097:1 2098:1 2109:1 2122:1 2127:1 2128:1 2139:1 2142:1 2143:1 2150:1 2156:1 2165:1 2174:1 2175:1 2180:1 2187:1 2188:1 2201:1 2211:1 2215:1 2219:1 2226:1 2230:1 2232:2 2234:4 2239:1 2241:1 2245:1 2262:1 2263:3 2264:1 2282:1 2317:1 2320:1 2323:1 2339:1 2345:1 2354:2 2358:2 2360:1 2361:2 2368:3 2369:1 2407:1 2414:2 2435:1 2438:1 2439:1 2441:3 2443:1 2444:2 2446:1 2475:4 2501:2 2509:1 2518:1 2531:1 2553:1 2556:1 2566:1 2571:1 2572:3 2584:1 2628:1 2629:1 2630:1 2631:2 2632:4 2637:1 2638:5 2640:1 2641:1 2643:5 2645:1 2647:3 2651:1 2654:1 2660:5 2665:3 2668:6 2687:1 2691:1 2708:1 2712:1 2728:1 2733:1 2744:1 2754:2 2755:1 2759:1 2762:1 2763:2 2773:1 2782:1 2790:1 2794:1 2800:1 2808:1 2826:1 2845:3 2856:1 2871:1 2883:2 2885:1 2909:1 2914:1 2921:1 2925:1 2927:1 2944:1 2986:1 2994:1 3021:1 3023:1 3062:2 3071:1 3082:4 3092:1 3098:3 3108:1 3117:2 3119:1 3127:1 3130:2 3136:7 3150:1 3151:1 3164:2 3173:1 3177:1 3182:1 3189:3 3193:1 3197:1 3226:2 3237:2 3246:2 3252:1 3254:1 3256:4 3264:2 3314:4 3322:1 3328:1 3336:1 3355:11 3363:7 3392:2 3409:1 3426:24 3435:1 3441:1 3449:1 3457:1 3459:1 3473:1 3497:1 3505:1 3532:1 3533:2 3536:1 3542:1 3607:3 3612:1 3613:1 3625:1 3634:1 3639:1 3650:1 3666:1 3688:1 3689:1 3693:1 3698:1 3700:1 3710:2 3713:4 3721:1 3739:10 3759:1 3764:1 3773:1 3789:1 3809:1 3821:1 3823:7 3863:1 3894:1 3900:1 3906:1 3918:1 3931:2 3941:1 3944:1 3959:1 3965:1 3975:3 3983:2 3985:1 3992:1 4003:4 4041:1 4049:1 4053:3 4056:1 4076:1 4077:1 4089:3 4091:2 4125:1 4144:1 4150:1 4152:3 4156:1 4161:2 4164:1 4165:1 4203:1 4210:1 4235:1 4245:2 4256:1 4266:1 4270:1 4271:3 4273:1 4297:1 4317:1 4323:2 4325:34 4340:1 4347:1 4361:2 4363:1 4364:7 4367:1 4375:1 4376:2 4377:19 4379:1 4381:4 4391:2 4405:3 4408:1 4418:2 4419:3 4423:2 4425:2 4426:2 4438:1 4439:2 4442:1 4444:1 4463:1 4480:2 4490:1 4491:3 4498:1 4502:1 4507:1 4537:1 4541:1 4543:1 4544:3 4555:2 4567:2 4570:1 4575:1 4581:1 4587:1 4597:2 4619:1 4622:1 4630:1 4632:1 4633:1 4635:1 4636:1 4643:1 4646:2 4652:1 4655:1 4658:4 4674:4 4678:1 4686:1 4722:1 4730:1 4734:1 4793:1 4799:3 4810:1 4813:3 4823:1 4834:2 4852:1 4855:1 4870:2 4876:1 4877:2 4879:1 4880:1 4906:1 4913:1 4924:1 4926:1 4937:1 4978:1 4989:1 4999:1 5010:9 5027:1 5086:1 5090:2 5098:1 5106:5 5117:1 5120:2 5138:1 5152:5 5155:1 5176:1 5181:2 5195:1 5198:1 5205:1 5258:1 5268:2 5269:1 5298:1 5331:1 5343:2 5363:2 5367:1 5370:2 5381:1 5390:3 5403:1 5410:3 5433:2 5438:1 5439:1 5470:1 5497:1 5509:1 5510:1 5514:1 5516:1 5528:1 5542:1 5545:2 5558:1 5613:1 5617:1 5632:1 5640:2 5643:1 5645:1 5650:1 5659:13 5660:1 5678:1 5699:2 5728:1 5729:2 5744:1 5761:1 5784:3 5797:3 5800:1 5802:4 5821:2 5822:2 5823:6 5824:1 5827:1 5828:1 5831:2 5833:1 5840:1 5841:18 5842:1 5844:1 5848:2 5849:3 5860:2 5877:1 5880:3 5936:2 5950:1 5958:1 5968:1 5972:1 6050:1 6060:1 6081:3 6082:3 6089:5 6125:1 6137:1 6142:1 6157:1 6168:2 6169:18 6177:1 6205:1 6216:3 6221:1 6236:2 6255:2 6301:1 6305:1 6322:1 6350:1 6357:1 6371:1 6379:1 6383:1 6394:1 6403:1 6404:2 6462:1 6463:1 6465:1 6469:1 6473:1 6479:1 6480:1 6483:2 6507:1 6515:1 6518:1 6531:2 6540:1 6542:1 6548:1 6550:2 6568:2 6573:1 6574:1 6587:1 6611:1 6617:3 6640:2 6647:1 6669:1 6672:1 6673:1 6678:1 6686:1 6705:1 6707:1 6723:1 6725:1 6728:1 6731:1 6733:1 6753:1 6768:1 6772:1 6775:1 6776:1 6777:1 6808:1 6826:1 6844:3 6845:1 6868:1 6870:3 6873:1 6883:1 6891:1 6897:1 6938:1 6959:2 7029:1 7034:1 7035:6 7043:1 7045:2 7068:2 7074:1 7102:1 7120:1 7128:1 7139:1 7140:1 7149:2 7150:1 7154:1 7157:1 7190:4 7196:1 7200:2 7202:2 7227:1 7232:1 7249:1 7254:2 7257:1 7260:1 7276:5 7278:1 7295:1 7296:1 7300:1 7309:1 7316:1 7321:1 7338:1 7363:1 7382:2 7386:1 7387:1 7390:1 7391:1 7392:1 7394:2 7396:2 7397:1 7401:2 7402:3 7403:4 7409:2 7410:6 7411:1 7412:1 7413:2 7427:1 7451:1 7454:1 7474:2 7477:1 7480:1 7503:1 7509:1 7553:1 7559:1 7567:1 7579:2 7586:1 7613:1 7615:1 7664:1 7681:1 7684:2 7687:1 7690:3 7709:1 7710:5 7716:3 7722:1 7725:1 7731:1 7732:1 7742:2 7764:3 7790:1 7791:1 7793:1 7805:1 7825:1 7846:1 7849:1 7869:1 7876:1 7877:2 7879:1 7891:3 7897:1 7900:1 7907:3 7915:2 7921:1 7940:1 7947:2 7955:1 7987:1 7998:1 8005:2 8012:1 8019:1 8021:1 8026:2 8032:1 8071:1 8091:1 8093:1 8110:1 8111:2 8135:1 8137:2 8138:1 8169:1 8194:2 8215:1 8224:1 8233:1 8251:1 8255:5 8263:2 8289:1 8299:1 8320:1 8335:1 8358:1 8425:1 8490:1 8499:1 8507:1 8512:1 8526:4 8575:1 8577:1 8586:3 8604:2 8629:4 8632:1 8674:2 8688:2 8689:1 8711:1 8714:1 8723:1 8759:1 8768:1 8770:1 8784:1 8786:1 8791:4 8821:1 8830:3 8831:4 8832:2 8842:1 8850:1 8854:2 8858:1 8861:1 8866:1 8888:1 8890:2 8898:1 8900:1 8901:37 8902:1 8904:1 8908:2 8920:10 8923:20 8929:1 8933:1 8936:1 8943:1 8945:1 8952:1 8978:5 8979:1 9001:1 9014:1 9034:1 9051:1 9059:1 9068:1 9082:2 9085:1 9091:1 9104:1 9143:1 9149:3 9153:5 9161:1 9199:1 9206:1 9209:4 9212:1 9230:1 9234:1 9251:1 9272:1 9285:1 9304:1 9341:1 9343:3 9362:1 9366:1 9368:1 9370:7 9386:2 9394:1 9405:1 9416:2 9436:1 9444:1 9448:1 9454:1 9468:1 9470:1 9484:17 9511:1 9516:1 9524:2 9525:1 9551:2 9589:1 9594:1 9605:2 9616:1 9630:2 9639:4 9664:1 9672:1 9678:3 9687:4 9694:2 9697:1 9709:2 9711:1 9715:3 9728:1 9732:2 9733:1 9734:1 9738:1 9747:1 9748:2 9754:2 9765:1 9777:2 9778:2 9788:1 9790:1 9791:1 9792:1 9809:2 9829:1 9836:1 9841:3 9848:1 9859:1 9866:1 9870:1 9875:1 9878:2 9880:1 9881:3 9882:1 9884:2 9885:4 9888:1 9894:1 9897:2 9899:2 9903:3 9919:1 9925:1 9934:2 9944:1 9945:1 9950:1 9951:1 9959:1 9973:1 9977:2 9984:1 10002:2 10019:1 10024:5 10044:1 10053:3 10056:1 10065:1 10067:1 10069:2 10080:1 10088:1 10092:1 10121:1 10128:2 10138:1 10139:1 10144:1 10150:2 10161:3 10162:1 10166:1 10181:1 10192:1 10204:1 10208:4 10209:2 10214:4 10216:1 10218:1 10219:3 10221:3 10223:2 10228:1 10229:2 10230:2 10252:1 10254:1 10255:2 10257:4 10270:1 10272:1 10295:2 10302:1 10308:1 10354:1 10367:1 10377:2 10386:1 10397:2 10399:2 10410:1 10412:1 10422:1 10438:1 10441:1 10454:1 10461:1 10478:1 10485:1 10495:1 10520:3 10554:1 10558:1 10563:1 10565:3 10580:1 10588:7 10610:2 10615:2 10619:1 10627:1 10634:1 10653:1 10662:1 10671:3 10673:1 10695:1 10701:1 10710:1 10726:1 10750:1 10756:1 10768:1 10800:1 10819:1 10845:1 10846:1 10851:3 10857:2 10858:1 10862:1 10864:2 10879:1 10900:1 10903:1 10906:2 10937:1 10939:1 10942:2 10947:1 10958:1 10959:1 10975:1 11009:18 11016:1 11034:1 11039:2 11047:4 11056:2 11059:1 11083:1 11091:1 11104:2 11124:1 11154:14 11171:1 11176:2 11189:1 11198:1 11210:5 11218:1 11225:1 11226:1 11229:3 11230:1 11232:1 11249:1 11263:1 11267:1 11316:2 11318:3 11319:1 11359:6 11363:2 11366:4 11368:2 11374:2 11375:1 11382:1 11392:2 11400:2 11402:1 11408:1 11417:1 11422:3 11426:1 11427:1 11429:1 11437:1 11446:1 11464:3 11470:3 11489:1 11492:2 11496:1 11507:1 11513:2 11545:1 11550:1 11551:3 11553:1 11580:10 11582:1 11583:5 11595:1 11597:1 11692:1 11697:2 11703:1 11720:1 11728:1 11733:1 11754:3 11761:1 11775:4 11789:1 11800:1 11803:1 11826:1 11832:1 11835:1 11859:1 11880:1 11897:2 11914:4 11921:1 11926:1 11932:1 11948:2 11955:1 11967:1 11970:1 11994:2 12001:4 12014:1 12043:1 12044:1 12052:2 12072:2 12075:2 12090:1 12098:6 12117:2 12119:3 12120:1 12121:3 12125:1 12128:1 12145:1 12147:1 12150:1 12160:1 12173:1 12174:2 12197:1 12200:1 12211:4 12225:1 12229:2 12241:2 12249:7 12266:1 12314:1 12316:1 12322:1 12345:2 12346:2 12347:1 12352:1 12362:1 12396:1 12408:1 12416:1 12459:1 12465:1 12468:1 12476:1 12492:1 12498:2 12499:1 12512:7 12531:3 12534:7 12549:2 12553:1 12556:2 12558:1 12562:1 12571:1 12589:1 12596:4 12610:1 12623:2 12634:1 12635:2 12642:2 12664:3 12676:2 12706:1 12740:1 12743:1 12753:1 12770:1 12807:1 12810:1 12816:1 12818:1 12819:1 12821:1 12825:4 12826:1 12827:1 12850:1 12855:1 12863:1 12867:2 12883:1 12888:1 12892:1 12893:1 12919:2 12951:1 12953:3 12958:1 12960:1 12965:1 12974:2 12980:1 12981:1 12983:1 12990:1 12991:1 13014:1 13021:3 13052:1 13057:1 13061:3 13063:5 13067:1 13070:1 13100:1 13118:1 13122:1 13125:1 13127:1 13135:1 13138:2 13153:1 13176:3 13204:1 13207:1 13215:1 13218:4 13234:3 13236:1 13252:3 13254:2 13284:1 13297:2 13303:1 13318:3 13324:2 13327:1 13328:7 13341:1 13343:1 13348:1 13352:1 13354:1 13355:1 13363:1 13366:1 13368:5 13369:1 13376:2 13379:5 13382:1 13387:1 13395:1 13403:7 13428:2 13447:5 13454:1 13463:2 13467:1 13507:1 13518:4 13528:1 13532:1 13536:1 13537:2 13576:1 13580:1 13590:3 13592:1 13607:1 13616:1 13620:2 13629:1 13645:1 13652:1 13674:1 13690:2 13692:2 13717:2 13737:2 13759:1 13766:1 13780:4 13832:2 13834:2 13847:1 13858:1 13867:1 13872:1 13874:1 13878:1 13913:3 13914:3 13916:18 13923:6 13933:1 13940:1 13941:2 13956:1 13962:1 13972:2 14002:1 14021:1 14041:1 14043:1 14073:1 14074:1 14082:7 14083:2 14098:1 14105:1 14106:3 14109:1 14130:1 14167:3 14172:1 14198:1 14207:1 14219:2 14222:1 14228:1 14235:1 14248:1 14265:1 14286:1 14292:1 14312:3 14326:1 14329:1 14369:1 14373:3 14379:1 14382:1 14387:1 14388:1 14399:1 14441:1 14443:1 14456:1 14506:6 14519:1 14520:1 14523:1 14527:2 14530:1 14535:1 14546:1 14565:2 14566:3 14588:1 14592:2 14629:1 14660:1 14667:2 14693:1 14705:1 14728:1 14735:2 14746:1 14748:1 14751:2 14775:1 14785:2 14810:1 14819:1 14870:1 14894:4 14920:1 14926:1 14930:1 14943:1 14948:1 14955:1 14960:1 14970:1 14990:1 15002:2 15013:1 15014:1 15015:1 15017:2 15023:1 15035:1 15044:1 15045:2 15080:1 15086:1 15088:2 15140:2 15146:1 15154:1 15155:2 15156:6 15162:3 15164:1 15171:1 15178:3 15182:1 15192:3 15195:1 15198:1 15204:3 15214:1 15234:7 15238:1 15247:1 15250:1 15254:2 15266:2 15267:1 15280:2 15301:2 15317:1 15338:4 15343:1 15353:1 15355:1 15365:1 15380:2 15400:3 15420:1 15428:2 15430:6 15441:1 15450:1 15464:1 15465:2 15466:2 15467:1 15480:1 15486:1 15502:1 15503:1 15511:1 15513:1 15514:2 15529:1 15538:2 15561:1 15576:1 15579:2 15588:1 15589:1 15597:1 15598:1 15599:2 15600:1 15602:1 15606:1 15627:1 15635:1 15636:1 15642:1 15655:1 15659:1 15663:1 15664:1 15677:1 15683:1 15684:1 15688:2 15691:1 15701:2 15706:1 15707:1 15726:1 15739:7 15750:1 15797:1 15801:1 15821:1 15822:1 15823:2 15827:2 15851:1 15853:2 15856:2 15857:1 15861:4 15891:1 15906:1 15908:1 15918:1 15921:1 15933:2 15934:3 15938:2 15939:6 15950:1 15970:1 15977:3 15997:1 16008:2 16035:2 16037:1 16043:1 16046:1 16051:1 16063:2 16064:1 16070:2 16107:1 16118:1 16189:1 16192:1 16202:2 16220:1 16246:1 16263:1 16279:1 16339:1 16341:1 16361:1 16382:2 16392:2 16393:1 16401:1 16402:1 16408:1 16412:4 16414:1 16416:1 16424:1 16428:1 16442:2 16444:1 16467:1 16468:1 16483:1 16491:1 16495:1 16506:1 16517:1 16525:2 16561:1 16570:1 16583:1 16600:1 16603:1 16612:1 16618:1 16621:1 16631:1 16640:4 16661:1 16675:1 16687:2 16692:1 16718:1 16738:1 16775:4 16810:1 16828:1 16874:1 16885:1 16892:2 16938:1 16939:1 16951:1 16956:1 16970:2 17000:3 17005:3 17007:1 17010:1 17012:1 17013:1 17031:1 17037:1 17059:2 17078:1 17098:2 17099:1 17109:3 17137:1 17150:1 17162:1 17163:2 17167:1 17191:1 17194:1 17202:1 17205:1 17207:3 17235:1 17237:1 17240:1 17246:1 17255:1 17280:1 17283:1 17294:1 17347:2 17353:3 17355:3 17360:1 17379:4 17380:1 17385:1 17408:1 17433:4 17435:1 17441:1 17445:1 17448:1 17479:1 17481:1 17488:1 17496:1 17501:3 17508:2 17512:2 17520:2 17546:1 17558:1 17566:2 17591:1 17611:1 17627:1 17633:1 17634:1 17653:1 17662:3 17668:1 17685:8 17687:8 17689:1 17694:1 17722:2 17734:1 17736:2 17740:2 17758:3 17763:1 17776:2 17783:1 17796:1 17803:1 17813:1 17826:1 17829:2 17833:1 17835:1 17844:4 17854:3 17863:1 17864:1 17866:2 17873:1 17875:2 17878:1 17884:1 17885:4 17889:2 17890:6 17892:1 17896:2 17900:1 17901:1 17902:1 17912:1 17913:5 17919:4 17968:2 17996:1 18009:1 18012:2 18022:2 18024:2 18030:4 18041:1 18060:2 18065:1 18073:1 18076:1 18096:2 18101:2 18127:2 18145:1 18146:1 18149:1 18158:1 18171:1 18175:1 18178:2 18182:1 18187:8 18198:2 18199:2 18217:2 18222:1 18225:2 18243:1 18254:1 18263:18 18291:1 18292:1 18300:5 18301:1 18305:1 18324:2 18341:52 18361:3 18366:1 18390:1 18418:1 18424:1 18426:1 18427:2 18442:1 18455:1 18460:1 18467:2 18468:1 18469:2 18473:2 18474:4 18477:1 18482:2 18486:1 18501:1 18513:1 18516:1 18518:1 18523:1 18526:1 18530:1 18543:1 18544:1 18565:1 18567:1 18604:1 18610:5 18634:1 18643:1 18648:2 18649:1 18654:1 18692:1 18696:1 18700:1 18715:1 18762:1 18768:1 18797:1 18798:1 18808:1 18822:2 18826:1 18865:2 18867:1 18870:1 18905:1 18908:1 18916:2 18922:4 18923:1 18927:1 18944:1 18946:3 18968:3 18985:1 18996:1 18997:1 19000:1 19004:2 19006:1 19008:1 19016:1 19020:1 19027:1 19029:1 19042:1 19048:10 19057:1 19059:1 19072:1 19084:2 19094:2 19106:1 19107:1 19136:1 19141:1 19143:1 19165:1 19167:2 19170:3 19177:1 19179:2 19182:1 19185:1 19202:1 19206:1 19222:1 19232:1 19240:1 19243:2 19245:2 19271:2 19285:1 19307:3 19316:1 19331:1 19374:1 19382:2 19385:1 19407:2 19420:1 19425:1 19434:2 19435:1 19440:2 19449:2 19457:1 19461:1 19466:1 19469:3 19473:1 19480:1 19489:1 19490:1 19497:3 19501:1 19504:1 19521:1 19542:1 19550:1 19564:2 19587:2 19595:1 19601:1 19619:4 19640:1 19661:1 19675:1 19684:1 19685:1 19692:1 19711:5 19713:1 19715:1 19718:1 19726:1 19730:2 19735:1 19737:1 19757:1 19759:2 19761:2 19772:1 19775:1 19776:1 19789:2 19805:1 19813:1 19817:1 19819:1 19834:1 19840:2 19841:2 19877:1 19879:1 19907:1 19926:2 19936:2 19944:1 19956:1 19962:1 19971:2 20012:2 20016:1 20017:2 20020:2 20021:1 20034:1 20037:9 20039:2 20052:1 20070:1 20078:1 20103:1 20118:1 20130:1 20131:1 20151:1 20152:1 20153:2 20160:3 20179:2 20185:2 20191:1 20210:1 20216:1 20249:1 20255:3 20260:2 20261:4 20265:1 20274:1 20307:1 20340:1 20342:1 20346:1 20382:3 20383:1 20392:1 20420:1 20423:1 20429:1 20439:1 20450:1 20456:3 20467:2 20474:2 20480:1 20488:1 20489:2 20507:1 20523:1 20531:1 20532:3 20579:1 20585:2 20595:1 20621:4 20630:1 20645:4 20649:1 20651:1 20655:3 20676:1 20677:1 20682:1 20693:1 20695:2 20701:1 20749:1 20790:1 20792:10 20797:1 20806:1 20813:1 20821:1 20832:1 20852:1 20860:1 20865:1 20869:1 20878:1 20884:2 20906:1 20912:1 20922:1 20925:1 20942:1 20946:5 20948:1 20950:2 20952:1 20965:3 20971:1 20976:1 20980:2 20981:1 21013:1 21020:2947 21028:1 21044:1 21046:4 21047:1 21054:2 21066:2 21086:1 21097:1 21108:1 21121:1 21131:1 21136:3 21137:1 21147:1 21178:3 21201:2 21212:2 21236:1 21239:4 21242:2 21268:3 21277:1 21280:1 21284:3 21287:1 21299:1 21340:1 21341:1 21346:1 21361:1 21381:1 21384:4 21414:1 21418:1 21442:2 21454:1 21463:1 21474:1 21484:1 21490:1 21494:1 21495:1 21511:1 21539:1 21549:1 21551:2 21554:1 21563:4 21576:1 21586:1 21619:1 21660:1 21661:1 21675:1 21678:3 21728:1 21749:1 21773:1 21779:2 21789:1 21795:2 21797:1 21803:2 21810:1 21819:4 21832:2 21835:1 21836:3 21841:1 21857:1 21867:14 21891:1 21892:1 21894:2 21895:1 21896:15 21909:1 21929:1 21930:4 21934:1 21950:2 21965:1 21970:4 21991:1 21995:2 22000:1 22002:4 22004:2 22008:1 22015:1 22029:2 22030:1 22060:1 22068:3 22075:1 22089:1 22101:3 22131:1 22133:1 22136:1 22190:1 22194:1 22198:1 22229:1 22235:1 22244:1 22262:1 22264:10 22272:1 22290:1 22308:1 22317:1 22323:1 22340:1 22352:1 22369:1 22375:1 22377:6 22396:1 22399:1 22404:1 22422:2 22439:1 22443:1 22444:1 22467:1 22474:1 22476:1 22478:1 22483:1 22484:1 22485:1 22495:1 22516:1 22534:1 22542:4 22547:1 22556:1 22561:1 22581:2 22582:1 22590:1 22610:1 22616:1 22623:1 22624:1 22644:1 22651:4 22676:2 22680:1 22685:2 22687:2 22701:2 22702:1 22708:7 22737:1 22745:1 22758:1 22775:1 22781:1 22800:11 22809:1 22822:2 22825:2 22844:1 22845:1 22861:1 22863:11 22881:1 22910:1 22922:1 22924:1 22931:1 22933:1 22945:1 22964:1 22999:1 23004:1 23005:1 23024:2 23042:1 23043:4 23045:2 23056:1 23063:1 23105:2 23125:1 23153:5 23165:1 23166:3 23183:1 23185:1 23198:1 23199:1 23209:1 23242:1 23245:1 23264:1 23265:1 23312:2 23330:1 23335:1 23341:1 23369:1 23374:2 23383:1 23399:1 23401:1 23407:1 23439:1 23457:1 23466:1 23490:3 23501:1 23512:2 23517:1 23519:1 23522:1 23525:1 23532:11 23542:1 23546:3 23549:2 23550:1 23560:1 23569:5 23574:1 23595:4 23597:1 23605:1 23638:2 23641:1 23653:2 23657:1 23673:2 23681:1 23682:1 23696:1 23711:7 23719:1 23722:2 23730:1 23742:1 23743:1 23765:1 23786:1 23803:1 23808:1 23810:1 23832:2 23836:1 23839:1 23843:1 23849:1 23859:3 23873:1 23881:1 23882:1 23886:1 23898:1 23900:1 23940:1 23944:1 23948:1 23968:1 23974:1 24003:1 24009:1 24055:1 24063:1 24065:4 24070:2 24073:3 24084:4 24087:1 24094:1 24097:1 24100:1 24143:1 24147:1 24148:1 24149:1 24154:2 24164:1 24181:1 24195:1 24201:1 24202:1 24216:1 24218:6 24221:3 24240:1 24255:1 24271:1 24277:1 24310:1 24311:2 24320:1 24328:1 24339:1 24341:1 24344:1 24359:1 24360:3 24363:12 24377:1 24384:2 24385:1 24391:1 24396:1 24402:1 24408:1 24412:1 24413:1 24426:1 24427:5 24447:1 24472:2 24475:2 24478:1 24482:1 24488:4 24505:1 24520:1 24542:1 24543:4 24556:2 24563:3 24567:1 24623:1 24649:3 24659:1 24661:1 24662:8 24666:1 24670:2 24682:2 24683:1 24687:1 24700:2 24701:1 24702:1 24703:2 24707:1 24714:2 24719:2 24722:1 24732:1 24734:1 24747:2 24752:2 24774:2 24809:1 24824:5 24825:1 24834:1 24855:1 24858:1 24861:1 24869:2 24872:1 24888:1 24894:1 24908:4 24917:1 24923:1 24926:1 24935:1 24979:18 24980:2 24984:1 25005:1 25018:1 25021:1 25026:1 25033:1 25047:1 25057:1 25065:1 25071:2 25092:1 25094:2 25101:1 25103:1 25104:1 25106:1 25110:2 25121:2 25125:1 25126:1 25129:8 25139:1 25148:2 25156:3 25168:2 25190:1 25194:1 25201:1 25206:1 25209:2 25218:1 25233:1 25236:1 25243:1 25245:2 25252:1 25256:1 25270:2 25275:1 25289:9 25303:3 25318:2 25328:1 25340:1 25368:1 25369:1 25387:2 25405:1 25406:1 25423:1 25459:1 25473:3 25480:1 25485:1 25494:1 25501:2 25503:1 25526:1 25539:1 25547:1 25561:1 25579:1 25581:1 25588:1 25595:12 25597:1 25598:2 25620:1 25634:2 25643:1 25653:1 25655:1 25667:1 25676:1 25683:1 25689:2 25694:1 25695:2 25705:1 25720:1 25722:1 25732:3 25743:1 25754:1 25755:5 25780:1 25788:1 25791:1 25804:1 25808:1 25828:2 25853:1 25860:1 25871:2 25890:1 25907:1 25912:1 25928:1 25929:2 25936:2 25954:1 26001:1 26015:1 26016:1 26017:5 26024:1 26030:1 26043:1 26044:1 26056:1 26073:1 26075:2 26094:1 26133:1 26135:2 26149:1 26157:1 26160:2 26165:1 26174:2 26179:4 26184:1 26187:1 26213:1 26230:1 26243:1 26254:3 26255:2 26265:1 26277:6 26283:1 26287:1 26294:1 26308:1 26309:1 26315:1 26316:3 26319:2 26324:1 26332:1 26352:2 26359:1 26360:2 26364:1 26415:4 26421:1 26424:20 26426:1 26498:1 26516:2 26530:1 26532:1 26534:1 26539:1 26552:1 26605:2 26609:1 26612:1 26613:1 26624:1 26635:1 26636:1 26642:1 26655:1 26679:1 26694:1 26705:1 26721:1 26724:1 26748:1 26751:2 26758:2 26794:4 26814:1 26818:1 26878:1 26880:1 26897:2 26920:1 26924:2 26929:1 26931:1 26934:1 26936:1 26938:2 26952:1 26978:1 27003:1 27009:1 27014:1 27022:1 27028:1 27032:1 27070:1 27072:1 27085:1 27102:1 27104:1 27112:1 27114:5 27122:1 27132:1 27133:1 27141:3 27159:1 27183:1 27198:1 27225:1 27251:3 27262:1 27299:1 27303:5 27360:2 27373:1 27377:1 27388:1 27389:1 27397:5 27398:2 27401:1 27419:1 27427:1 27437:1 27439:2 27447:1 27451:3 27456:2 27488:1 27489:2 27491:1 27502:2 27512:1 27516:1 27522:2 27533:2 27552:1 27569:1 27574:1 27575:1 27595:1 27602:4 27612:3 27618:1 27620:1 27627:1 27641:1 27642:1 27672:1 27676:1 27716:1 27727:1 27728:2 27743:1 27753:1 27757:2 27760:1 27763:1 27769:1 27778:1 27792:1 27804:1 27809:1 27813:1 27817:1 27843:1 27846:1 27851:1 27863:1 27872:2 27881:1 27884:1 27917:3 27933:5 27957:1 27970:1 27985:1 27989:1 27997:1 28007:1 28015:2 28016:1 28021:1 28032:5 28033:1 28043:1 28068:2 28071:1 28074:1 28094:1 28112:1 28132:1 28139:1 28145:4 28174:1 28178:1 28183:1 28234:1 28242:2 28253:1 28255:1 28273:6 28303:1 28327:2 28331:5 28335:1 28342:1 28348:4 28408:1 28414:1 28442:1 28485:1 28499:1 28500:1 28503:2 28506:1 28507:1 28509:7 28512:3 28518:1 28537:1 28540:1 28557:2 28560:1 28563:2 28591:1 28602:1 28608:6 28609:1 28610:1 28625:1 28635:4 28641:5 28642:1 28652:1 28665:1 28666:1 28671:1 28680:1 28697:2 28725:6 28728:1 28734:1 28739:1 28740:1 28753:2 28754:1 28762:1 28778:2 28803:1 28811:3 28828:1 28847:4 28850:1 28870:2 28872:2 28902:2 28913:1 28937:1 28945:3 28972:1 28981:1 28994:2 28998:4 29029:1 29052:1 29056:1 29060:2 29063:1 29066:1 29080:1 29085:2 29088:2 29102:1 29104:1 29105:1 29109:1 29120:1 29123:1 29128:1 29146:2 29147:1 29155:1 29156:2 29161:1 29165:1 29174:1 29189:6 29195:1 29199:1 29210:1 29212:1 29215:1 29219:2 29261:1 29272:1 29291:1 29316:1 29320:1 29326:1 29327:1 29332:1 29334:3 29365:10 29374:1 29409:1 29412:1 29417:2 29439:1 29472:2 29483:1 29491:1 29498:1 29503:1 29518:3 29519:2 29527:1 29543:1 29546:2 29558:1 29564:1 29574:2 29637:3 29653:5 29655:2 29658:1 29665:1 29673:1 29675:2 29676:1 29677:4 29679:7 29683:1 29685:1 29711:1 29732:2 29759:1 29766:1 29771:1 29781:3 29792:1 29797:1 29821:3 29842:1 29850:1 29861:2 29867:1 29882:1 29923:1 29928:1 29956:1 29964:1 29979:1 30023:1 30033:1 30051:1 30063:1 30079:1 30085:1 30091:1 30121:1 30123:2 30129:1 30149:1 30160:2 30168:2 30183:2 30198:1 30205:1 30221:1 30235:1 30294:1 30295:2 30308:2 30315:1 30334:1 30367:1 30371:1 30393:2 30399:4 30410:1 30412:1 30415:1 30418:9 30450:2 30451:2 30452:1 30514:1 30524:20 30525:1 30529:3 30531:1 30540:1 30547:1 30560:3 30643:2 30647:3 30648:3 30651:2 30684:1 30698:2 30701:1 30703:1 30706:1 30707:1 30719:2 30721:2 30724:1 30728:1 30738:1 30739:1 30741:1 30745:1 30753:1 30757:3 30788:2 30800:1 30818:1 30832:1 30845:1 30846:2 30849:1 30876:1 30879:1 30881:1 30895:1 30901:1 30906:1 30916:1 30927:1 30958:1 30960:1 30978:1 30993:1 30997:1 30998:1 31004:1 31021:3 31023:1 31030:2 31088:7 31104:1 31132:1 31168:3 31176:3 31192:1 31200:1 31204:1 31207:1 31243:1 31259:1 31262:3 31268:1 31302:2 31311:1 31317:1 31349:4 31359:4 31389:1 31392:1 31394:1 31400:1 31403:1 31414:1 31473:1 31476:1 31477:1 31489:4 31493:1 31502:1 31514:1 31526:3 31529:1 31541:1 31544:24 31545:2 31546:2 31549:2 31552:4 31555:1 31556:1 31566:1 31586:1 31587:13 31597:1 31602:1 31603:1 31613:1 31644:1 31646:1 31651:2 31661:1 31662:2 31669:1 31673:1 31681:1 31697:1 31702:4 31713:4 31718:1 31719:1 31743:1 31754:3 31759:2 31763:1 31766:1 31801:1 31802:1 31806:1 31829:1 31849:1 31854:1 31863:2 31900:1 31901:1 31909:1 31932:1 31943:1 31944:1 31951:1 31953:1 31957:2 31959:1 31964:4 31969:1 31971:1 31976:1 31990:1 31994:2 32000:1 32012:1 32028:8 32032:1 32039:3 32083:1 32110:3 32115:8 32118:1 32119:1 32125:1 32126:1 32142:1 32146:1 32147:2 32158:1 32163:1 32175:1 32178:1 32179:1 32186:1 32214:3 32225:1 32257:1 32263:3 32269:1 32272:1 32275:1 32279:2 32303:2 32307:1 32310:4 32314:1 32321:5 32330:1 32342:2 32363:1 32374:1 32381:1 32429:1 32445:1 32471:3 32473:1 32488:1 32505:4 32510:1 32539:2 32543:1 32547:1 32559:1 32582:1 32590:2 32596:1 32605:3 32617:1 32628:1 32642:1 32662:1 32676:3 32684:1 32686:1 32701:1 32713:2 32727:1 32733:6 32735:1 32740:1 32755:2 32781:1 32785:2 32787:1 32811:1 32821:4 32831:2 32835:1 32861:1 32891:1 32897:1 32898:1 32902:1 32903:1 32905:3 32910:1 32921:1 32950:1 32957:2 32966:1 32971:1 32972:1 32973:1 32977:1 33021:1 33038:1
16 10:1 26:1 27:1 28:1 41:1 66:1 78:1 85:4 104:1 109:1 145:1 164:1 173:1 176:1 186:1 189:2 191:1 219:1 225:1 232:1 235:1 262:1 269:4 272:1 273:1 295:1 318:2 338:1 351:4 355:1 375:1 387:1 397:2 398:1 399:2 427:1 434:1 437:1 443:1 459:1 468:2 475:1 484:1 502:3 505:1 509:2 525:1 535:1 542:1 551:2 567:1 575:1 577:1 581:1 584:1 589:1 591:2 628:1 629:1 636:2 649:5 709:1 713:2 723:3 751:2 757:1 762:4 766:1 774:1 779:1 790:1 791:1 793:1 805:1 812:1 821:1 832:1 860:2 869:2 886:1 891:1 908:1 929:1 937:1 944:1 949:2 957:1 962:1 970:1 975:1 984:1 988:1 1000:2 1007:1 1016:1 1035:1 1046:2 1050:1 1051:1 1054:1 1058:2 1068:1 1069:2 1078:3 1080:1 1081:3 1082:6 1084:2 1091:1 1114:1 1116:2 1138:1 1139:6 1143:2 1149:1 1164:1 1170:1 1180:2 1185:1 1202:1 1220:2 1221:1 1240:1 1250:1 1254:1 1259:1 1285:1 1286:1 1288:1 1301:1 1341:1 1352:1 1353:3 1356:1 1359:1 1366:1 1368:1 1369:2 1377:2 1387:1 1388:4 1398:2 1406:1 1412:1 1425:1 1426:3 1457:1 1464:1 1466:2 1469:1 1472:4 1475:1 1487:1 1488:4 1489:2 1490:1 1506:3 1512:1 1524:1 1526:1 1535:1 1540:1 1546:3 1560:2 1572:1 1574:1 1586:2 1600:2 1630:1 1633:1 1642:1 1676:3 1677:1 1683:1 1689:1 1692:1 1695:2 1711:1 1733:1 1742:6 1754:1 1760:6 1767:2 1773:1 1774:2 1775:1 1776:1 1780:3 1787:1 1791:1 1802:4 1822:1 1835:1 1839:5 1853:1 1863:1 1867:1 1871:2 1879:2 1881:1 1907:2 1914:1 1919:4 1924:4 1927:2 1928:1 1939:1 1941:1 1944:1 1953:1 1963:4 1966:3 1968:1 1975:1 1976:1 1985:1 1993:1 2018:1 2038:1 2039:1 2050:2 2053:1 2055:1 2058:1 2069:3 2077:2 2097:1 2098:1 2109:1 2122:1 2127:1 2128:1 2139:1 2142:1 2143:1 2150:1 2156:1 2165:1 2174:1 2175:1 2180:1 2187:1 2188:1 2201:1 2211:1 2215:1 2219:1 2226:1 2230:1 2232:2 2234:4 2239:1 2241:1 2243:1 2245:1 2262:1 2263:3 2264:1 2282:1 2317:1 2320:1 2323:1 2339:1 2345:1 2354:2 2358:2 2360:1 2361:2 2368:3 2369:1 2407:1 2414:2 2435:1 2438:1 2439:1 2441:3 2443:1 2444:2 2446:1 2475:4 2501:2 2509:1 2518:1 2531:1 2553:1 2556:1 2566:1 2571:1 2572:3 2584:1 2628:1 2629:1 2630:1 2631:2 2632:4 2637:1 2638:5 2640:1 2641:1 2643:5 2645:1 2647:4 2651:1 2654:1 2660:5 2665:3 2668:6 2687:1 2691:1 2708:1 2712:1 2728:1 2733:1 2744:1 2754:2 2755:1 2759:1 2762:1 2763:2 2773:1 2782:1 2790:1 2793:1 2794:1 2800:1 2808:1 2826:1 2845:3 2856:1 2871:1 2883:2 2885:1 2909:1 2914:1 2921:1 2925:1 2927:1 2944:1 2986:1 2994:1 3021:1 3023:1 3062:2 3071:1 3082:4 3092:1 3098:3 3108:1 3117:2 3119:1 3127:1 3130:2 3136:9 3150:1 3151:1 3164:2 3170:1 3173:1 3177:1 3182:1 3189:3 3193:1 3197:1 3226:2 3237:2 3246:2 3252:1 3254:1 3256:5 3264:2 3314:4 3322:1 3326:1 3328:1 3336:1 3355:11 3363:7 3392:2 3409:1 3426:27 3435:1 3441:1 3449:1 3457:1 3459:1 3473:1 3497:1 3505:2 3532:1 3533:2 3536:1 3542:1 3607:3 3612:1 3613:1 3625:1 3634:1 3639:1 3650:1 3666:1 3688:1 3689:1 3693:1 3698:1 3700:1 3710:2 3713:4 3721:1 3739:10 3759:1 3764:1 3773:1 3789:1 3809:1 3821:1 3823:7 3863:1 3894:1 3900:1 3906:1 3918:1 3931:2 3941:1 3944:1 3959:1 3965:1 3975:3 3983:2 3985:1 3992:1 4003:4 4041:1 4049:1 4053:3 4056:1 4076:1 4077:1 4089:3 4091:2 4125:1 4140:1 4144:1 4150:1 4152:3 4156:1 4161:2 4164:1 4165:1 4203:1 4210:1 4235:1 4245:2 4256:1 4266:1 4270:2 4271:3 4273:1 4297:1 4317:1 4323:2 4325:35 4331:1 4340:1 4347:1 4361:2 4363:1 4364:7 4367:1 4375:1 4376:2 4377:20 4379:1 4381:4 4391:2 4405:3 4408:1 4418:2 4419:3 4423:2 4425:2 4426:2 4438:1 4439:2 4442:1 4444:1 4463:1 4480:2 4490:1 4491:3 4498:1 4502:1 4507:1 4537:1 4539:2 4541:1 4543:1 4544:3 4555:2 4567:2 4570:1 4575:1 4581:1 4587:1 4597:2 4619:1 4622:1 4630:1 4632:1 4633:1 4635:1 4636:1 4643:1 4646:2 4652:1 4655:1 4658:4 4674:4 4678:1 4686:1 4722:1 4730:1 4734:1 4785:1 4793:1 4799:3 4810:1 4813:3 4823:1 4834:2 4852:1 4855:1 4870:2 4876:1 4877:2 4879:1 4880:1 4906:1 4913:1 4924:1 4926:1 4937:1 4978:1 4989:1 4999:1 5010:9 5027:1 5086:1 5090:2 5098:1 5106:5 5117:1 5120:2 5138:1 5152:6 5155:1 5176:1 5181:2 5195:1 5198:1 5205:1 5258:1 5268:2 5269:1 5298:1 5331:1 5343:2 5363:2 5367:1 5370:2 5381:1 5390:4 5403:1 5410:3 5433:3 5438:2 5439:1 5470:1 5497:1 5509:1 5510:1 5514:1 5516:1 5528:1 5542:1 5545:2 5558:2 5613:1 5617:1 5632:1 5640:2 5643:1 5645:1 5650:1 5659:14 5660:2 5678:1 5699:2 5728:1 5729:2 5744:1 5761:1 5784:3 5797:3 5800:1 5802:4 5821:2 5822:2 5823:6 5824:1 5827:1 5828:1 5831:2 5833:1 5840:1 5841:19 5842:1 5844:1 5848:2 5849:3 5860:2 5877:1 5880:3 5936:2 5950:1 5958:1 5964:1 5968:1 5972:1 6050:1 6060:1 6081:3 6082:3 6089:5 6125:1 6137:1 6142:1 6157:1 6168:2 6169:19 6177:1 6205:1 6216:3 6221:1 6236:2 6255:2 6301:1 6305:1 6322:1 6350:1 6357:2 6371:1 6379:1 6383:1 6394:1 6396:1 6403:1 6404:2 6462:1 6463:1 6465:1 6469:1 6473:1 6479:1 6480:1 6483:2 6507:1 6515:1 6518:1 6531:2 6540:1 6542:1 6548:1 6550:2 6568:2 6573:1 6574:1 6587:1 6611:1 6617:3 6640:2 6647:1 6669:1 6672:1 6673:1 6678:1 6686:1 6705:1 6707:1 6722:1 6723:1 6725:1 6728:1 6731:1 6733:1 6748:1 6753:1 6768:1 6772:1 6775:1 6776:1 6777:1 6808:1 6826:1 6844:3 6845:1 6868:1 6870:3 6873:1 6883:1 6891:1 6897:1 6938:1 6959:2 7029:1 7034:1 7035:7 7043:1 7045:2 7068:2 7074:1 7079:1 7102:1 7120:1 7128:1 7133:1 7139:1 7140:1 7149:2 7150:1 7154:1 7157:1 7161:1 7190:4 7196:1 7200:2 7202:2 7227:1 7232:1 7249:1 7254:2 7257:1 7260:1 7276:5 7278:1 7295:1 7296:1 7300:1 7309:1 7316:1 7321:1 7338:1 7363:1 7382:3 7386:1 7387:1 7390:1 7391:1 7392:1 7394:2 7396:2 7397:1 7401:2 7402:3 7403:4 7409:2 7410:7 7411:1 7412:1 7413:2 7427:1 7451:1 7454:1 7474:3 7477:1 7480:1 7503:1 7509:1 7553:1 7559:1 7567:1 7579:2 7586:1 7613:1 7615:1 7664:1 7681:2 7684:2 7687:1 7690:4 7709:1 7710:5 7716:3 7722:1 7725:1 7731:1 7732:1 7742:2 7763:1 7764:3 7770:2 7790:1 7791:1 7793:1 7805:1 7825:1 7846:1 7849:1 7856:1 7869:1 7876:1 7877:2 7879:1 7891:3 7897:1 7900:1 7907:3 7915:3 7921:1 7940:1 7947:2 7955:1 7987:1 7998:1 8005:2 8012:1 8016:1 8019:1 8021:1 8026:2 8032:1 8071:1 8091:1 8093:1 8110:1 8111:2 8135:1 8137:2 8138:1 8169:1 8194:2 8215:1 8224:1 8233:1 8251:1 8255:5 8263:2 8270:1 8289:1 8299:1 8320:1 8335:1 8358:1 8409:1 8425:1 8442:1 8490:1 8499:1 8507:1 8512:1 8513:1 8526:4 8575:1 8577:1 8586:3 8604:2 8629:4 8632:1 8674:2 8688:2 8689:1 8711:1 8714:1 8723:1 8753:1 8759:1 8768:1 8770:1 8784:1 8786:1 8791:4 8821:1 8830:4 8831:4 8832:2 8842:1 8850:1 8854:2 8858:1 8861:1 8866:1 8888:1 8890:2 8898:1 8900:1 8901:38 8902:1 8904:1 8908:2 8911:1 8920:11 8923:23 8929:1 8933:1 8936:1 8943:1 8945:1 8952:1 8978:5 8979:1 9001:1 9014:1 9034:1 9051:1 9059:1 9068:1 9082:2 9085:1 9091:1 9104:1 9143:1 9149:3 9153:5 9161:1 9199:1 9206:1 9209:5 9212:1 9230:1 9234:1 9251:1 9272:1 9285:1 9304:1 9341:1 9343:3 9362:1 9366:1 9368:1 9370:7 9386:2 9394:1 9405:1 9416:2 9436:1 9444:1 9448:1 9454:1 9468:1 9470:1 9484:17 9511:1 9516:1 9524:2 9525:1 9551:2 9589:1 9594:1 9605:2 9616:1 9630:2 9639:4 9664:1 9672:1 9678:3 9687:4 9694:2 9697:1 9709:2 9711:1 9715:3 9728:1 9732:2 9733:1 9734:1 9738:1 9747:1 9748:2 9754:2 9765:1 9777:2 9778:2 9788:1 9790:1 9791:1 9792:1 9809:2 9829:1 9836:1 9841:3 9848:1 9859:1 9866:1 9870:1 9875:1 9878:2 9880:1 9881:3 9882:2 9884:2 9885:4 9888:1 9894:1 9897:2 9899:2 9903:3 9919:1 9925:1 9934:2 9944:1 9945:1 9950:1 9951:1 9959:1 9973:1 9977:2 9984:1 10002:2 10019:1 10024:5 10044:1 10053:3 10056:1 10065:1 10067:1 10069:2 10080:1 10088:1 10092:1 10121:1 10128:2 10138:1 10139:1 10144:1 10150:2 10161:3 10162:1 10166:1 10181:1 10192:1 10204:1 10208:4 10209:2 10214:4 10216:1 10218:1 10219:3 10221:3 10223:2 10228:1 10229:2 10230:2 10252:2 10254:1 10255:2 10257:4 10270:1 10272:1 10295:2 10302:1 10308:1 10354:1 10359:1 10367:1 10377:2 10386:1 10397:2 10399:2 10410:1 10412:1 10422:1 10438:1 10441:1 10447:1 10454:1 10461:1 10478:1 10485:1 10495:1 10496:1 10520:3 10554:1 10558:1 10563:1 10565:3 10580:1 10588:7 10610:2 10615:3 10619:1 10627:1 10634:1 10653:1 10662:1 10671:3 10673:1 10695:1 10701:1 10710:1 10726:1 10750:1 10756:1 10768:1 10800:1 10819:1 10845:1 10846:1 10851:3 10857:2 10858:1 10862:1 10864:2 10879:1 10900:1 10903:1 10906:2 10937:1 10939:1 10942:2 10947:1 10958:1 10959:1 10975:1 11009:19 11016:1 11034:1 11039:2 11047:4 11056:2 11059:1 11083:1 11091:1 11104:2 11124:1 11154:14 11171:1 11176:2 11189:1 11198:1 11210:5 11218:1 11225:1 11226:1 11229:3 11230:1 11232:1 11249:1 11263:1 11267:1 11276:1 11280:1 11316:2 11318:3 11319:1 11359:6 11363:2 11366:4 11368:2 11374:2 11375:1 11382:1 11392:2 11400:2 11402:1 11408:2 11417:1 11422:3 11426:1 11427:1 11429:1 11437:1 11446:1 11453:1 11464:3 11470:3 11489:1 11492:2 11496:1 11507:1 11513:2 11545:1 11550:1 11551:3 11553:1 11580:10 11582:1 11583:6 11595:1 11597:1 11692:1 11697:2 11703:1 11720:1 11728:1 11733:1 11754:3 11761:1 11775:4 11789:1 11800:1 11803:1 11826:1 11832:1 11835:1 11859:1 11880:1 11897:2 11914:4 11921:1 11926:1 11932:1 11948:2 11955:1 11967:1 11970:1 11994:2 12001:4 12014:1 12043:1 12044:1 12052:2 12072:2 12075:2 12090:1 12098:6 12117:2 12119:4 12120:1 12121:3 12125:1 12128:1 12145:1 12147:1 12150:1 12160:1 12173:1 12174:3 12197:1 12200:1 12211:4 12225:1 12229:2 12241:2 12249:7 12266:1 12314:1 12316:1 12322:1 12345:2 12346:2 12347:1 12352:1 12362:1 12396:1 12408:1 12416:1 12459:1 12465:1 12468:1 12476:1 12492:1 12498:2 12499:1 12512:7 12531:3 12534:7 12549:2 12553:1 12556:2 12558:1 12562:1 12571:1 12589:1 12596:4 12610:1 12623:2 12634:1 12635:2 12642:3 12664:3 12676:3 12706:1 12740:1 12743:1 12753:1 12770:1 12807:1 12810:1 12816:1 12818:1 12819:1 12821:1 12825:4 12826:1 12827:1 12850:1 12855:1 12863:1 12867:2 12883:1 12888:1 12892:1 12893:1 12919:2 12951:1 12953:3 12958:1 12960:1 12965:1 12974:2 12980:1 12981:1 12983:1 12990:1 12991:1 13014:1 13021:3 13052:1 13057:1 13061:3 13063:5 13067:1 13070:1 13100:1 13118:1 13122:1 13125:1 13127:1 13135:1 13138:2 13153:1 13176:3 13204:1 13207:1 13215:1 13218:4 13234:3 13236:1 13251:2 13252:3 13254:2 13263:1 13284:1 13297:3 13303:1 13318:3 13324:2 13327:1 13328:7 13341:1 13343:1 13348:1 13350:1 13352:1 13354:1 13355:1 13363:1 13364:1 13366:1 13368:5 13369:1 13376:2 13379:5 13382:1 13387:1 13395:1 13397:1 13403:7 13428:2 13447:5 13454:1 13463:2 13467:1 13507:1 13518:4 13528:1 13532:1 13536:1 13537:2 13576:1 13580:1 13590:3 13592:1 13607:1 13616:1 13620:2 13629:1 13645:1 13652:1 13674:1 13690:2 13692:2 13717:2 13737:2 13759:1 13766:1 13780:5 13832:2 13834:2 13847:1 13858:1 13867:1 13872:1 13874:1 13878:1 13887:1 13913:3 13914:3 13916:19 13923:6 13933:1 13940:1 13941:2 13956:1 13962:1 13972:2 14002:1 14021:1 14041:1 14043:1 14073:1 14074:1 14082:9 14083:2 14098:1 14105:1 14106:3 14109:1 14130:1 14167:3 14172:1 14198:1 14207:1 14219:2 14222:1 14228:1 14235:1 14248:1 14265:1 14286:2 14292:1 14312:3 14326:2 14329:1 14369:1 14373:3 14379:1 14382:1 14387:1 14388:1 14399:1 14441:1 14443:1 14456:1 14506:6 14519:1 14520:1 14523:1 14527:2 14530:1 14535:1 14546:1 14565:2 14566:4 14588:1 14592:2 14629:1 14660:1 14667:2 14693:1 14705:1 14728:1 14735:2 14746:1 14748:1 14751:2 14775:1 14785:2 14810:1 14819:1 14870:1 14894:5 14920:1 14926:1 14930:1 14943:1 14948:1 14955:1 14960:1 14970:1 14990:1 15002:2 15013:1 15014:1 15015:1 15017:2 15023:1 15035:1 15044:1 15045:2 15080:1 15086:1 15088:2 15140:2 15146:2 15154:1 15155:2 15156:6 15162:4 15164:1 15171:1 15178:3 15182:1 15192:3 15195:1 15198:1 15204:3 15214:1 15234:7 15238:1 15247:1 15250:1 15254:2 15266:2 15267:1 15280:2 15301:2 15317:1 15338:4 15343:1 15353:1 15355:1 15365:1 15380:2 15400:3 15420:1 15428:2 15430:6 15441:1 15450:1 15464:2 15465:2 15466:2 15467:1 15480:1 15486:1 15502:1 15503:1 15511:1 15513:1 15514:2 15529:1 15538:2 15561:1 15576:1 15579:2 15588:1 15589:1 15597:1 15598:1 15599:2 15600:1 15602:1 15606:1 15627:1 15635:1 15636:1 15642:1 15655:1 15659:1 15663:1 15664:1 15677:1 15683:1 15684:1 15688:2 15691:1 15701:2 15706:1 15707:1 15726:1 15739:7 15748:2 15750:1 15754:1 15797:1 15801:1 15821:1 15822:1 15823:2 15827:2 15851:1 15853:2 15856:2 15857:1 15861:4 15891:1 15906:1 15908:1 15918:1 15921:1 15933:2 15934:3 15938:2 15939:6 15950:1 15970:1 15977:3 15997:1 16008:2 16035:2 16037:1 16043:1 16046:1 16051:1 16063:2 16064:1 16070:2 16107:1 16118:1 16189:1 16192:1 16195:1 16202:2 16220:1 16246:1 16263:1 16279:1 16339:1 16341:1 16361:1 16377:1 16382:2 16392:2 16393:1 16401:1 16402:1 16408:1 16412:4 16414:1 16416:1 16424:1 16428:1 16442:2 16444:1 16467:1 16468:1 16483:1 16491:1 16495:1 16506:1 16517:1 16525:2 16561:1 16570:1 16583:1 16597:1 16600:1 16603:1 16612:1 16618:1 16621:1 16631:1 16640:4 16661:1 16675:1 16687:2 16692:1 16718:1 16738:1 16775:4 16789:1 16810:1 16828:1 16874:1 16885:1 16892:2 16938:1 16939:1 16951:1 16956:1 16970:2 17000:3 17005:3 17007:1 17010:1 17012:1 17013:1 17031:1 17037:1 17059:2 17078:1 17098:2 17099:1 17109:3 17137:1 17150:1 17162:1 17163:2 17167:1 17191:1 17194:1 17202:1 17205:1 17207:3 17235:1 17237:1 17240:1 17246:1 17255:1 17280:1 17283:1 17293:1 17294:1 17347:2 17353:3 17355:3 17360:1 17379:4 17380:1 17385:1 17408:1 17433:4 17435:1 17441:1 17445:1 17448:1 17479:1 17481:1 17488:1 17496:1 17501:3 17508:2 17512:2 17520:2 17546:1 17558:1 17566:2 17591:1 17611:1 17627:1 17633:1 17634:1 17653:1 17662:3 17668:1 17685:8 17687:8 17689:1 17694:1 17722:2 17734:1 17736:2 17740:2 17758:3 17763:1 17776:2 17783:1 17796:1 17803:1 17805:1 17813:1 17826:1 17829:3 17833:1 17835:1 17844:4 17854:3 17863:1 17864:1 17866:2 17873:1 17875:2 17878:1 17884:1 17885:4 17889:2 17890:6 17892:1 17896:2 17900:1 17901:1 17902:1 17912:1 17913:5 17919:4 17954:1 17968:2 17996:1 18009:1 18010:1 18012:2 18022:2 18024:2 18030:4 18041:1 18060:2 18065:1 18073:1 18076:1 18096:2 18101:2 18127:2 18145:1 18146:1 18149:1 18158:1 18171:1 18175:1 18178:2 18182:1 18187:8 18198:2 18199:2 18217:2 18222:1 18225:2 18243:1 18254:1 18263:19 18291:1 18292:1 18300:5 18301:1 18305:1 18324:2 18341:54 18361:3 18366:1 18390:1 18418:1 18424:1 18426:1 18427:2 18442:1 18455:1 18456:1 18460:1 18467:2 18468:1 18469:2 18473:2 18474:4 18477:1 18482:2 18486:1 18501:1 18513:1 18516:1 18518:1 18523:1 18526:1 18530:1 18536:1 18543:1 18544:1 18565:1 18567:1 18604:1 18610:5 18634:1 18643:1 18648:2 18649:1 18654:1 18692:1 18696:1 18700:1 18715:1 18762:1 18768:1 18797:1 18798:1 18808:1 18822:2 18826:1 18865:2 18867:1 18870:1 18905:1 18908:1 18916:2 18922:4 18923:1 18927:1 18944:1 18946:3 18968:3 18974:1 18985:1 18996:1 18997:1 19000:1 19004:2 19006:1 19008:1 19016:1 19020:1 19027:1 19029:1 19042:1 19048:11 19057:1 19059:1 19072:1 19084:2 19094:2 19106:1 19107:1 19136:1 19141:1 19143:1 19165:1 19167:2 19170:3 19177:1 19179:2 19182:1 19185:1 19202:1 19206:1 19222:1 19232:1 19240:1 19243:2 19245:2 19271:2 19272:2 19285:1 19298:1 19306:1 19307:3 19316:1 19331:1 19374:1 19382:2 19385:1 19407:2 19409:1 19420:1 19425:1 19434:2 19435:1 19440:3 19449:2 19457:1 19461:1 19466:1 19469:3 19473:1 19480:1 19489:1 19490:1 19497:3 19501:1 19504:1 19521:1 19539:1 19542:1 19550:1 19564:2 19587:2 19595:1 19601:1 19619:4 19640:1 19661:1 19672:1 19675:1 19684:1 19685:1 19692:1 19711:5 19713:1 19715:1 19718:1 19726:1 19730:2 19735:1 19737:1 19757:1 19759:2 19761:2 19772:1 19775:1 19776:1 19789:2 19805:1 19813:1 19817:1 19819:1 19834:1 19840:2 19841:2 19877:1 19879:1 19907:1 19926:2 19936:2 19944:1 19956:1 19962:1 19971:2 20012:2 20016:1 20017:2 20020:2 20021:1 20034:1 20037:9 20039:2 20052:1 20070:2 20078:1 20103:1 20118:1 20130:1 20131:1 20151:1 20152:1 20153:2 20160:3 20179:2 20185:2 20191:1 20209:1 20210:1 20216:1 20249:1 20255:3 20260:2 20261:4 20265:1 20274:1 20307:1 20340:1 20342:1 20346:1 20382:3 20383:1 20392:1 20420:1 20423:1 20429:1 20439:1 20450:1 20456:3 20467:2 20474:2 20480:1 20488:1 20489:2 20507:1 20523:1 20531:1 20532:3 20542:1 20579:1 20585:2 20591:1 20595:1 20621:4 20630:1 20645:4 20649:1 20651:1 20655:3 20676:1 20677:1 20682:1 20693:1 20695:2 20701:1 20749:1 20790:1 20792:10 20797:1 20806:1 20813:1 20821:1 20832:1 20852:1 20860:1 20865:1 20869:1 20878:1 20884:2 20886:1 20906:1 20912:1 20922:1 20925:1 20942:1 20946:5 20948:1 20950:2 20952:1 20965:3 20971:1 20976:1 20980:2 20981:1 21013:1 21020:3071 21028:1 21044:1 21046:4 21047:1 21054:2 21066:2 21086:1 21097:1 21108:1 21121:1 21131:1 21136:3 21137:1 21147:1 21178:3 21201:2 21212:2 21236:1 21239:4 21242:2 21268:3 21277:1 21280:1 21284:3 21287:1 21299:1 21340:1 21341:1 21346:1 21361:1 21381:1 21384:4 21410:1 21414:1 21418:1 21422:1 21442:2 21454:1 21463:1 21474:1 21484:1 21490:1 21494:1 21495:1 21511:1 21539:1 21549:1 21551:2 21554:1 21563:4 21576:1 21586:1 21601:1 21619:1 21660:1 21661:1 21675:1 21678:3 21728:1 21749:1 21773:1 21779:2 21789:1 21795:2 21797:1 21803:2 21810:1 21819:4 21832:2 21835:1 21836:3 21841:1 21857:1 21867:14 21891:1 21892:1 21894:2 21895:1 21896:15 21909:2 21929:1 21930:4 21932:1 21934:1 21950:2 21965:1 21970:4 21991:1 21995:2 22000:1 22002:5 22004:2 22008:1 22015:1 22029:2 22030:1 22060:1 22068:3 22075:1 22089:1 22101:3 22131:1 22133:1 22136:1 22190:1 22194:1 22198:1 22229:1 22235:1 22244:1 22262:1 22264:11 22272:1 22290:1 22308:1 22317:1 22323:1 22340:1 22352:1 22369:1 22375:1 22377:6 22396:1 22399:1 22404:1 22422:2 22439:1 22443:1 22444:1 22467:1 22474:1 22476:1 22478:1 22483:1 22484:1 22485:1 22495:1 22516:1 22534:1 22542:4 22547:1 22556:1 22561:1 22581:3 22582:1 22590:1 22610:2 22616:1 22623:1 22624:1 22644:1 22651:4 22676:2 22680:1 22685:2 22687:2 22701:2 22702:1 22708:7 22737:1 22745:1 22758:1 22775:1 22781:1 22800:12 22809:1 22822:2 22825:2 22844:1 22845:1 22861:1 22863:13 22881:1 22910:1 22922:1 22924:1 22931:1 22933:1 22945:1 22964:1 22999:1 23004:1 23005:1 23024:2 23042:1 23043:4 23045:2 23056:1 23063:1 23105:2 23125:1 23153:5 23165:1 23166:3 23183:1 23185:1 23198:1 23199:1 23209:1 23242:1 23245:1 23264:1 23265:1 23312:2 23330:1 23335:1 23341:1 23369:1 23374:2 23383:1 23399:1 23401:1 23407:1 23439:1 23457:1 23466:1 23490:3 23501:1 23512:2 23517:1 23519:1 23522:1 23525:1 23532:12 23542:1 23546:3 23549:3 23550:1 23560:1 23569:5 23574:1 23595:4 23597:1 23605:1 23638:2 23639:1 23641:1 23653:2 23657:1 23673:2 23681:1 23682:1 23696:1 23711:7 23719:1 23722:2 23730:1 23742:1 23743:1 23765:1 23786:1 23803:1 23808:1 23810:1 23832:2 23836:1 23839:1 23843:1 23849:1 23859:3 23871:1 23873:1 23881:1 23882:1 23886:1 23898:1 23900:1 23940:1 23944:1 23948:1 23968:1 23974:1 24003:1 24009:1 24055:1 24063:1 24065:4 24070:2 24073:3 24084:4 24087:1 24094:1 24097:1 24100:1 24143:1 24147:1 24148:1 24149:1 24154:2 24164:1 24173:1 24181:1 24195:1 24201:1 24202:1 24216:1 24218:6 24221:3 24240:1 24255:1 24271:1 24277:1 24310:1 24311:2 24320:1 24328:1 24339:1 24341:1 24344:1 24359:1 24360:3 24363:12 24377:1 24384:2 24385:1 24391:1 24396:1 24402:1 24408:1 24412:1 24413:1 24426:1 24427:5 24447:1 24472:2 24475:3 24478:1 24482:1 24488:4 24505:1 24520:1 24542:1 24543:4 24556:2 24563:3 24567:1 24623:1 24649:3 24659:1 24661:1 24662:8 24666:2 24670:2 24682:2 24683:1 24687:1 24700:2 24701:1 24702:1 24703:2 24707:1 24714:2 24719:2 24722:1 24732:1 24734:1 24735:1 24747:2 24752:2 24774:2 24809:1 24824:5 24825:1 24834:1 24855:1 24858:1 24861:1 24862:1 24869:2 24872:1 24888:1 24894:1 24908:4 24917:1 24923:1 24926:1 24935:1 24979:19 24980:2 24984:1 25005:1 25018:1 25021:1 25026:1 25033:1 25047:1 25057:1 25065:1 25071:2 25092:1 25094:2 25101:1 25103:1 25104:1 25106:1 25110:2 25121:2 25125:1 25126:1 25129:8 25139:2 25148:2 25156:3 25168:2 25190:1 25194:1 25201:1 25206:1 25209:2 25218:1 25233:1 25236:1 25243:1 25245:2 25252:1 25256:1 25270:2 25275:1 25289:9 25303:3 25318:3 25328:1 25340:1 25368:1 25369:1 25387:2 25405:1 25406:1 25423:1 25459:1 25473:3 25480:1 25485:1 25494:1 25501:2 25503:1 25526:1 25539:1 25547:1 25561:1 25579:1 25581:1 25588:2 25595:13 25597:1 25598:2 25620:1 25634:2 25643:1 25653:1 25655:1 25667:2 25676:1 25683:1 25689:2 25694:1 25695:2 25705:1 25720:1 25722:1 25732:3 25743:1 25748:1 25754:1 25755:5 25780:1 25788:1 25791:1 25804:1 25808:1 25828:2 25845:1 25853:1 25860:1 25871:2 25890:1 25907:1 25912:1 25928:1 25929:2 25936:2 25954:1 26001:1 26015:1 26016:1 26017:5 26024:1 26030:1 26043:1 26044:1 26056:1 26073:1 26075:2 26094:1 26133:1 26135:2 26149:1 26157:1 26160:2 26165:1 26174:2 26179:4 26184:1 26187:1 26206:1 26213:1 26230:1 26243:1 26254:3 26255:3 26265:1 26277:6 26283:1 26287:1 26294:1 26308:1 26309:1 26315:1 26316:3 26319:2 26324:1 26332:1 26352:2 26359:1 26360:2 26364:1 26380:1 26415:4 26421:1 26424:21 26426:1 26498:1 26516:2 26530:1 26532:1 26534:1 26539:1 26552:1 26605:2 26609:1 26612:1 26613:1 26624:1 26635:1 26636:1 26642:1 26655:1 26679:1 26694:1 26705:1 26721:1 26724:1 26748:1 26751:2 26758:2 26794:4 26814:1 26818:1 26878:1 26880:1 26897:2 26920:1 26924:2 26929:1 26931:1 26934:1 26936:1 26938:2 26952:1 26968:1 26978:1 27003:1 27009:1 27014:1 27021:1 27022:1 27028:1 27032:1 27070:1 27072:1 27085:1 27102:1 27104:1 27112:1 27114:5 27122:1 27132:1 27133:1 27141:3 27159:1 27183:1 27198:1 27225:1 27251:3 27262:1 27299:1 27303:5 27360:2 27373:1 27377:1 27388:1 27389:1 27397:5 27398:2 27401:1 27419:1 27427:1 27437:1 27439:2 27447:1 27451:3 27456:2 27488:1 27489:2 27491:1 27502:2 27512:1 27516:1 27522:2 27533:2 27552:1 27569:1 27574:1 27575:1 27595:1 27602:4 27612:3 27618:1 27620:1 27627:1 27641:1 27642:1 27672:1 27673:1 27676:1 27701:1 27716:1 27727:1 27728:2 27743:1 27753:1 27757:2 27760:1 27763:1 27769:1 27778:1 27792:1 27804:1 27809:1 27813:1 27817:1 27843:1 27846:1 27851:1 27863:1 27872:2 27881:1 27884:1 27917:3 27933:5 27957:1 27970:1 27985:1 27989:1 27997:1 28007:1 28015:2 28016:1 28021:1 28032:5 28033:1 28043:1 28068:2 28071:1 28074:1 28094:1 28112:1 28132:1 28139:1 28145:4 28174:1 28178:1 28183:1 28234:1 28242:3 28253:1 28255:1 28273:7 28303:1 28305:1 28327:2 28331:5 28335:1 28342:1 28348:4 28354:1 28408:1 28414:1 28442:1 28485:1 28499:1 28500:1 28503:2 28506:1 28507:1 28509:7 28512:3 28518:1 28537:1 28540:1 28557:2 28560:1 28563:2 28591:1 28602:1 28608:6 28609:1 28610:1 28625:1 28635:4 28641:5 28642:1 28652:2 28665:1 28666:1 28671:1 28680:1 28697:2 28725:6 28728:1 28734:1 28739:1 28740:1 28753:2 28754:1 28762:1 28778:2 28803:1 28811:3 28828:1 28847:5 28850:1 28870:2 28872:2 28902:2 28913:1 28937:1 28945:3 28972:1 28981:1 28994:2 28998:4 29029:1 29052:1 29056:1 29060:2 29063:1 29066:1 29080:1 29085:2 29088:2 29102:1 29104:1 29105:1 29109:1 29120:1 29123:1 29128:1 29146:2 29147:1 29155:1 29156:2 29161:1 29165:1 29174:1 29189:6 29195:1 29199:1 29210:1 29212:1 29215:1 29219:2 29234:1 29261:1 29272:1 29291:1 29302:1 29316:1 29320:1 29326:1 29327:1 29332:1 29334:3 29365:10 29374:1 29409:1 29412:1 29417:2 29439:1 29455:1 29472:2 29483:1 29491:1 29498:1 29503:1 29518:3 29519:2 29527:1 29543:1 29546:2 29558:1 29564:1 29574:2 29623:2 29637:3 29653:5 29655:2 29658:1 29665:1 29673:1 29675:2 29676:1 29677:4 29679:7 29683:1 29685:1 29711:1 29732:2 29759:1 29766:1 29771:1 29781:3 29792:1 29797:1 29821:3 29842:1 29850:1 29855:1 29861:2 29867:1 29882:1 29917:1 29923:1 29928:1 29956:1 29964:1 29979:1 29992:1 30023:1 30033:1 30051:1 30063:1 30079:1 30085:1 30091:1 30121:1 30123:2 30129:1 30149:1 30160:2 30168:2 30183:2 30198:1 30205:1 30221:1 30235:1 30294:2 30295:2 30308:2 30315:1 30334:1 30352:1 30367:1 30371:1 30393:2 30399:4 30410:1 30412:1 30415:1 30418:9 30450:2 30451:2 30452:1 30514:1 30524:21 30525:1 30529:3 30531:1 30540:1 30547:1 30560:3 30643:2 30647:3 30648:3 30651:2 30684:1 30698:2 30701:1 30703:1 30706:1 30707:1 30719:2 30721:2 30724:1 30728:1 30738:1 30739:1 30741:1 30745:2 30753:1 30757:3 30760:1 30788:2 30800:1 30816:1 30818:2 30832:1 30845:1 30846:2 30849:1 30876:1 30879:1 30881:1 30895:1 30901:1 30906:1 30916:1 30927:1 30958:1 30960:1 30978:1 30993:1 30997:1 30998:1 31004:1 31021:3 31023:1 31030:2 31088:7 31104:1 31132:1 31168:3 31176:3 31192:1 31200:2 31204:1 31207:1 31243:1 31259:1 31262:3 31268:1 31302:2 31311:1 31317:1 31349:5 31359:4 31389:1 31392:1 31394:1 31400:1 31403:1 31414:1 31473:1 31476:1 31477:1 31489:4 31493:1 31502:1 31514:1 31526:3 31529:1 31541:1 31544:25 31545:2 31546:2 31549:2 31552:4 31555:1 31556:1 31566:1 31586:1 31587:13 31597:1 31602:1 31603:1 31613:1 31644:1 31646:1 31651:2 31661:1 31662:2 31669:1 31673:1 31681:1 31697:1 31702:4 31713:4 31718:1 31719:2 31743:1 31754:3 31759:2 31763:1 31766:1 31784:1 31801:1 31802:1 31806:1 31829:1 31849:1 31854:1 31863:2 31866:1 31900:1 31901:1 31909:1 31932:1 31943:1 31944:1 31951:1 31953:1 31957:2 31959:1 31964:4 31969:1 31971:1 31976:1 31990:1 31994:2 32000:1 32012:1 32028:8 32032:1 32039:3 32041:1 32083:1 32110:3 32115:8 32118:1 32119:1 32125:1 32126:1 32142:1 32146:2 32147:2 32158:1 32163:1 32175:1 32178:1 32179:1 32186:1 32214:3 32225:1 32241:1 32257:1 32263:3 32269:1 32272:1 32275:1 32279:2 32303:2 32307:1 32310:4 32314:1 32321:5 32330:1 32342:2 32363:1 32374:1 32381:1 32429:1 32445:1 32471:3 32473:1 32488:1 32505:4 32510:1 32539:2 32543:1 32547:1 32559:1 32582:1 32590:2 32596:1 32605:3 32617:1 32628:1 32642:1 32662:1 32676:3 32684:1 32686:1 32701:1 32713:2 32727:1 32733:6 32735:1 32740:1 32755:2 32781:1 32785:2 32787:1 32811:1 32821:5 32831:2 32835:1 32861:1 32891:1 32897:1 32898:1 32902:1 32903:1 32905:5 32910:1 32921:1 32950:1 32957:2 32966:1 32971:1 32972:1 32973:1 32977:1 33021:1 33038:1
16 10:1 26:1 27:1 28:1 41:1 66:1 78:1 85:4 104:1 109:1 145:1 164:1 173:1 176:1 186:1 189:2 191:1 219:1 225:1 232:1 235:1 262:1 269:4 272:1 273:1 295:1 318:3 338:1 351:4 355:1 375:1 387:1 397:2 398:1 399:3 427:1 434:1 437:1 443:1 459:1 468:2 475:1 484:1 502:3 505:1 509:2 525:1 535:1 542:1 551:2 567:1 575:1 577:1 581:1 584:1 589:1 591:2 628:1 629:1 636:2 649:5 709:1 713:3 723:3 751:2 757:1 762:4 766:1 774:1 779:1 790:1 791:1 793:1 805:1 812:1 821:1 832:1 860:2 869:2 886:1 891:1 908:1 929:1 937:1 944:1 949:2 957:1 962:1 970:1 975:1 984:1 988:1 1000:2 1007:1 1016:1 1035:1 1046:2 1050:1 1051:1 1054:1 1058:2 1068:2 1069:2 1078:3 1080:1 1081:3 1082:6 1084:2 1091:1 1113:1 1114:1 1116:2 1136:1 1138:1 1139:6 1143:2 1149:1 1164:1 1170:1 1180:2 1185:1 1202:1 1220:2 1221:1 1240:1 1250:1 1254:1 1259:1 1285:2 1286:1 1288:1 1301:1 1341:1 1352:1 1353:3 1356:1 1359:1 1366:1 1368:1 1369:2 1377:2 1387:1 1388:4 1398:2 1406:1 1412:1 1425:1 1426:3 1457:1 1464:1 1466:2 1469:1 1472:4 1475:1 1487:1 1488:4 1489:2 1490:1 1506:3 1512:1 1524:1 1526:1 1528:1 1535:1 1540:1 1546:3 1560:2 1572:1 1574:1 1586:2 1600:2 1630:1 1633:1 1642:1 1676:3 1677:1 1683:1 1689:1 1692:1 1695:2 1711:1 1733:1 1742:6 1750:1 1754:1 1760:6 1767:2 1773:1 1774:2 1775:1 1776:1 1780:3 1787:1 1791:1 1802:4 1822:1 1835:1 1836:1 1839:5 1853:1 1863:1 1867:2 1871:2 1879:2 1881:1 1907:2 1914:1 1919:4 1924:4 1927:2 1928:1 1939:1 1941:1 1944:1 1953:1 1963:5 1966:3 1968:1 1975:1 1976:1 1985:1 1993:1 2018:1 2038:1 2039:1 2050:2 2053:1 2055:1 2058:1 2069:3 2077:2 2097:1 2098:1 2109:1 2122:1 2127:1 2128:1 2139:1 2142:1 2143:1 2150:1 2156:1 2165:1 2174:1 2175:1 2180:1 2187:1 2188:1 2194:1 2201:1 2211:1 2215:1 2219:1 2226:1 2230:1 2232:2 2234:4 2239:1 2241:1 2243:1 2245:1 2262:1 2263:3 2264:1 2282:1 2291:1 2317:1 2320:1 2323:1 2339:1 2345:1 2354:2 2358:2 2360:1 2361:2 2368:3 2369:1 2407:1 2414:2 2435:1 2438:1 2439:1 2441:3 2443:1 2444:2 2446:1 2475:4 2501:2 2509:2 2518:1 2531:1 2553:1 2556:1 2566:1 2571:1 2572:3 2584:1 2628:1 2629:1 2630:1 2631:2 2632:4 2637:1 2638:5 2640:1 2641:1 2643:5 2645:1 2647:4 2651:1 2654:1 2660:5 2665:3 2666:1 2668:7 2687:1 2691:1 2708:1 2712:1 2728:1 2733:1 2744:1 2754:2 2755:1 2759:1 2762:1 2763:2 2773:1 2782:1 2790:1 2793:1 2794:1 2800:2 2808:1 2825:1 2826:1 2845:5 2856:1 2871:1 2883:2 2885:1 2909:1 2914:1 2921:1 2925:1 2927:1 2944:1 2986:1 2994:1 3021:1 3023:1 3062:2 3071:1 3082:4 3092:1 3098:4 3108:1 3117:2 3119:1 3127:1 3130:2 3136:10 3150:1 3151:1 3164:2 3170:1 3173:1 3177:1 3182:1 3189:3 3193:1 3197:1 3226:2 3237:2 3246:2 3252:1 3254:1 3256:5 3264:2 3314:4 3322:1 3326:1 3328:1 3336:1 3355:11 3363:7 3392:2 3409:1 3426:29 3435:2 3441:1 3449:1 3457:1 3459:1 3473:1 3497:1 3505:2 3532:1 3533:2 3536:1 3542:2 3607:3 3612:1 3613:1 3625:1 3634:1 3639:1 3650:1 3666:1 3688:1 3689:1 3693:1 3698:1 3700:1 3710:2 3713:4 3721:1 3739:10 3759:1 3764:1 3773:1 3789:1 3809:1 3821:1 3823:7 3863:1 3894:1 3900:1 3906:1 3918:1 3931:2 3941:1 3944:1 3959:1 3965:1 3975:3 3983:2 3985:1 3992:1 4003:4 4041:1 4049:1 4053:3 4056:1 4076:1 4077:1 4089:3 4091:2 4125:1 4140:1 4144:1 4150:1 4152:3 4156:2 4161:2 4164:1 4165:1 4185:1 4203:1 4210:1 4235:1 4245:2 4256:1 4266:1 4270:2 4271:3 4273:1 4297:1 4317:1 4323:2 4325:35 4331:1 4340:1 4347:1 4361:2 4363:1 4364:8 4367:1 4375:1 4376:2 4377:21 4379:1 4381:4 4391:2 4405:3 4408:1 4418:2 4419:3 4423:2 4425:2 4426:2 4438:2 4439:2 4442:1 4444:1 4463:1 4480:2 4490:1 4491:3 4498:1 4502:1 4507:1 4537:1 4539:2 4541:1 4543:1 4544:3 4555:2 4567:2 4570:1 4575:1 4581:1 4587:1 4597:2 4619:1 4622:1 4630:1 4632:1 4633:1 4635:1 4636:1 4643:1 4646:2 4652:1 4655:1 4658:4 4674:4 4678:1 4686:1 4722:1 4730:1 4734:1 4785:1 4793:1 4799:3 4810:1 4813:3 4823:1 4834:2 4852:1 4855:1 4870:2 4876:1 4877:2 4879:1 4880:1 4906:1 4913:1 4924:1 4926:1 4937:1 4978:1 4989:1 4999:1 5010:9 5027:1 5086:1 5090:2 5098:1 5106:5 5117:1 5120:2 5138:1 5152:6 5155:1 5176:1 5181:2 5195:1 5198:1 5205:1 5258:1 5268:2 5269:1 5298:1 5331:1 5343:2 5363:2 5367:1 5370:2 5381:1 5390:4 5403:1 5410:3 5433:3 5438:2 5439:1 5470:1 5497:1 5509:1 5510:1 5514:1 5516:1 5528:1 5542:1 5545:2 5558:2 5613:1 5617:1 5632:1 5640:2 5643:1 5645:1 5650:1 5659:15 5660:2 5678:1 5699:2 5728:1 5729:2 5744:1 5761:1 5784:3 5797:3 5800:1 5802:4 5821:2 5822:2 5823:7 5824:1 5827:1 5828:1 5830:1 5831:2 5833:1 5840:1 5841:19 5842:1 5844:1 5848:2 5849:3 5860:2 5877:1 5880:3 5936:2 5950:1 5958:1 5964:1 5968:1 5972:1 6050:1 6060:1 6081:3 6082:3 6089:5 6125:1 6137:1 6142:1 6157:1 6168:2 6169:19 6177:1 6205:1 6216:3 6221:1 6236:2 6255:2 6301:1 6305:1 6322:1 6350:1 6357:2 6371:1 6379:1 6383:1 6394:1 6396:1 6403:1 6404:2 6462:1 6463:1 6465:1 6469:1 6473:1 6479:1 6480:1 6483:2 6507:1 6515:1 6518:1 6531:2 6540:1 6542:1 6548:1 6550:2 6568:2 6573:1 6574:1 6587:1 6611:1 6617:3 6640:2 6647:1 6669:1 6672:1 6673:1 6678:1 6686:1 6705:1 6707:1 6722:1 6723:1 6725:1 6728:1 6731:1 6733:1 6747:1 6748:1 6753:1 6768:1 6772:1 6775:1 6776:1 6777:1 6808:1 6825:1 6826:1 6844:3 6845:1 6868:1 6870:3 6873:1 6883:1 6891:1 6895:1 6897:1 6938:1 6959:2 6992:1 7029:1 7034:2 7035:8 7043:1 7045:2 7068:2 7074:1 7078:1 7079:1 7102:1 7120:1 7128:1 7133:1 7139:1 7140:2 7149:2 7150:1 7154:1 7157:1 7161:1 7190:4 7196:1 7200:2 7202:2 7227:1 7232:1 7249:1 7254:3 7257:1 7260:1 7276:5 7278:1 7295:1 7296:1 7300:1 7309:1 7316:1 7321:1 7338:1 7363:1 7382:4 7386:2 7387:1 7390:1 7391:1 7392:1 7394:2 7396:2 7397:1 7401:2 7402:3 7403:4 7409:2 7410:7 7411:1 7412:1 7413:2 7427:1 7451:1 7454:1 7474:3 7477:1 7480:1 7503:1 7509:1 7553:1 7555:1 7559:1 7567:1 7579:2 7586:1 7613:1 7615:1 7664:1 7681:2 7684:2 7687:1 7690:4 7709:1 7710:5 7716:3 7722:1 7725:1 7731:1 7732:1 7742:2 7763:1 7764:3 7770:2 7790:1 7791:1 7793:1 7805:1 7825:1 7846:1 7849:1 7856:1 7869:1 7876:1 7877:2 7879:1 7891:3 7897:1 7900:1 7907:3 7915:3 7921:1 7940:1 7947:2 7955:1 7987:1 7998:1 8005:2 8012:1 8016:1 8019:1 8021:1 8026:2 8032:1 8071:1 8091:2 8093:1 8110:1 8111:2 8127:1 8135:1 8137:2 8138:1 8169:1 8194:2 8215:1 8224:1 8233:1 8251:1 8255:5 8263:2 8270:1 8289:1 8299:1 8320:1 8335:1 8358:1 8409:1 8425:1 8442:1 8490:1 8499:1 8507:1 8512:1 8513:1 8526:4 8575:1 8577:1 8586:3 8604:2 8629:4 8632:1 8674:2 8688:2 8689:1 8711:1 8714:1 8723:2 8753:1 8759:1 8768:1 8770:1 8784:1 8786:1 8791:4 8821:1 8830:4 8831:5 8832:2 8842:1 8850:1 8854:2 8858:1 8861:1 8866:1 8888:1 8890:2 8898:1 8900:1 8901:39 8902:1 8904:1 8908:2 8911:1 8920:11 8923:25 8929:1 8933:1 8936:1 8943:1 8945:1 8952:1 8978:5 8979:1 9001:1 9014:1 9034:1 9051:1 9059:1 9068:1 9082:2 9085:1 9091:1 9104:1 9143:1 9149:3 9153:6 9161:1 9199:1 9206:1 9209:5 9212:1 9230:1 9234:1 9251:1 9272:1 9285:1 9304:1 9341:1 9343:3 9362:1 9366:1 9368:1 9370:7 9386:2 9394:1 9405:1 9416:2 9436:1 9444:1 9448:1 9454:1 9468:1 9470:1 9484:17 9511:1 9516:1 9524:2 9525:1 9551:2 9589:1 9594:1 9605:2 9616:1 9630:2 9639:4 9664:1 9672:1 9678:3 9687:4 9694:2 9697:1 9709:2 9711:1 9715:3 9728:1 9732:2 9733:1 9734:2 9738:1 9747:1 9748:2 9754:2 9765:1 9777:2 9778:2 9788:1 9790:1 9791:1 9792:1 9809:2 9829:1 9836:1 9841:3 9848:1 9859:1 9866:1 9870:1 9875:1 9878:2 9880:1 9881:3 9882:2 9884:2 9885:5 9888:1 9894:2 9897:2 9899:2 9903:3 9919:1 9925:1 9934:2 9944:1 9945:1 9950:1 9951:1 9959:1 9973:1 9977:2 9984:1 9995:1 10002:3 10019:1 10024:5 10044:1 10053:3 10056:1 10065:1 10067:1 10069:2 10080:1 10088:1 10092:1 10098:1 10121:1 10128:2 10138:1 10139:1 10144:1 10150:2 10161:3 10162:1 10166:1 10181:2 10192:1 10204:1 10208:4 10209:2 10214:4 10216:1 10218:1 10219:4 10221:3 10223:2 10228:1 10229:2 10230:2 10252:2 10254:1 10255:2 10257:4 10270:1 10272:1 10295:2 10302:1 10308:1 10354:1 10359:1 10367:1 10377:2 10386:1 10397:2 10399:2 10410:1 10412:1 10422:1 10438:1 10441:1 10447:1 10454:1 10461:1 10478:1 10485:1 10495:1 10496:1 10520:3 10554:1 10558:2 10563:1 10565:3 10580:1 10588:7 10610:2 10615:3 10619:1 10627:1 10634:1 10653:1 10662:1 10671:3 10673:1 10695:1 10701:1 10710:1 10726:1 10750:1 10756:1 10768:1 10800:1 10819:1 10845:1 10846:1 10851:3 10857:2 10858:1 10862:1 10864:2 10879:1 10900:1 10903:1 10906:2 10937:1 10939:1 10942:2 10947:1 10958:1 10959:1 10975:1 11009:19 11016:1 11034:1 11039:2 11047:4 11056:2 11059:1 11083:1 11091:1 11104:2 11124:1 11133:1 11154:14 11170:2 11171:1 11176:2 11189:1 11198:1 11210:5 11218:1 11225:1 11226:1 11229:3 11230:1 11232:1 11249:1 11263:1 11267:1 11276:1 11280:1 11316:2 11318:3 11319:1 11336:1 11359:7 11363:2 11366:4 11368:2 11374:2 11375:1 11382:1 11392:2 11400:2 11402:1 11408:2 11417:1 11422:3 11426:1 11427:1 11429:1 11437:1 11446:1 11453:1 11464:3 11470:3 11489:1 11492:2 11496:1 11507:1 11513:2 11545:1 11550:1 11551:3 11553:1 11580:10 11582:1 11583:6 11595:1 11597:1 11600:1 11692:1 11697:2 11703:1 11720:1 11728:1 11733:2 11754:3 11761:1 11775:4 11789:1 11800:1 11803:1 11826:1 11832:1 11835:1 11859:1 11880:1 11897:2 11914:4 11921:1 11926:1 11932:1 11948:2 11955:1 11967:2 11970:1 11994:2 12001:5 12014:1 12043:1 12044:1 12052:2 12072:2 12075:2 12090:1 12098:6 12117:2 12119:4 12120:1 12121:3 12125:1 12128:1 12145:1 12147:1 12150:1 12160:1 12173:1 12174:3 12197:1 12200:1 12211:4 12225:1 12229:2 12241:2 12249:7 12266:1 12314:1 12316:1 12322:1 12345:2 12346:2 12347:1 12352:1 12362:1 12392:1 12396:1 12408:1 12416:1 12459:1 12465:1 12468:1 12476:1 12492:1 12498:2 12499:1 12512:7 12531:3 12534:7 12549:2 12553:1 12556:2 12558:1 12562:1 12571:1 12576:2 12589:1 12596:4 12610:1 12623:2 12634:1 12635:2 12642:4 12664:3 12676:3 12706:1 12740:1 12743:1 12753:1 12770:1 12807:1 12810:1 12816:1 12818:1 12819:1 12821:1 12825:4 12826:1 12827:1 12850:1 12855:1 12863:1 12867:2 12883:1 12888:1 12892:1 12893:1 12919:2 12951:1 12953:3 12958:1 12960:1 12965:1 12970:1 12974:2 12980:1 12981:1 12983:1 12990:1 12991:1 13014:1 13021:3 13052:1 13057:1 13061:3 13063:5 13067:1 13070:1 13100:1 13118:1 13122:1 13125:1 13127:1 13135:1 13138:2 13153:1 13176:3 13196:1 13204:1 13207:1 13215:1 13218:4 13234:3 13236:1 13251:2 13252:3 13254:2 13263:1 13284:1 13297:3 13303:1 13318:3 13324:2 13327:1 13328:7 13341:1 13343:1 13348:1 13350:1 13352:1 13354:1 13355:1 13363:1 13364:1 13366:1 13368:6 13369:1 13376:2 13379:6 13382:1 13387:1 13395:1 13397:1 13403:7 13428:2 13447:5 13454:1 13463:2 13467:1 13507:1 13518:4 13528:1 13532:1 13536:1 13537:2 13576:1 13580:1 13590:3 13592:1 13607:1 13616:1 13620:2 13629:1 13645:1 13652:1 13674:1 13690:2 13692:2 13717:2 13737:2 13759:1 13766:1 13780:5 13832:2 13834:2 13847:1 13858:1 13867:1 13872:1 13874:1 13878:1 13887:1 13913:3 13914:3 13916:19 13923:6 13933:1 13940:1 13941:2 13956:1 13962:1 13972:2 14002:1 14021:2 14041:1 14043:1 14073:1 14074:1 14082:9 14083:2 14098:1 14105:1 14106:3 14109:1 14130:1 14167:3 14172:1 14198:1 14207:1 14219:2 14222:1 14228:1 14235:1 14248:2 14265:1 14286:2 14292:1 14312:3 14326:2 14329:1 14369:1 14373:3 14379:1 14382:1 14387:1 14388:1 14399:1 14441:1 14443:1 14456:1 14506:6 14519:1 14520:1 14523:1 14527:2 14528:1 14530:1 14535:1 14546:1 14565:2 14566:4 14588:1 14592:2 14629:1 14660:1 14667:2 14693:1 14705:1 14728:1 14735:2 14746:1 14748:1 14751:2 14775:1 14785:2 14810:1 14819:1 14870:1 14894:5 14920:1 14926:1 14930:1 14943:1 14948:1 14950:1 14955:1 14960:1 14970:1 14990:1 15002:2 15013:1 15014:1 15015:1 15017:2 15023:1 15035:1 15044:1 15045:2 15080:1 15086:1 15088:2 15140:2 15146:2 15154:1 15155:2 15156:6 15162:4 15164:1 15171:2 15178:3 15182:1 15192:3 15195:1 15198:1 15204:3 15214:1 15234:7 15238:1 15247:1 15250:1 15254:2 15266:2 15267:1 15280:2 15301:2 15317:1 15338:4 15343:1 15353:1 15355:1 15365:1 15380:2 15400:3 15420:1 15428:2 15430:6 15441:1 15450:1 15464:2 15465:2 15466:2 15467:1 15480:1 15486:1 15502:1 15503:1 15511:1 15513:1 15514:2 15529:1 15538:2 15561:1 15576:1 15579:2 15588:1 15589:1 15597:1 15598:1 15599:2 15600:1 15602:1 15606:1 15627:1 15635:1 15636:1 15642:1 15655:1 15659:1 15663:1 15664:1 15677:1 15683:1 15684:1 15688:2 15691:1 15701:2 15706:1 15707:1 15726:1 15739:7 15748:2 15750:1 15754:1 15797:1 15801:1 15821:1 15822:1 15823:2 15827:2 15851:1 15853:2 15856:2 15857:1 15861:4 15891:1 15906:1 15908:1 15918:1 15921:1 15933:2 15934:3 15938:2 15939:6 15950:1 15970:2 15977:3 15997:1 16008:2 16035:2 16037:1 16043:1 16046:1 16051:1 16063:2 16064:1 16070:2 16107:1 16118:1 16189:1 16192:1 16195:1 16202:2 16220:1 16246:1 16263:1 16279:1 16339:1 16341:1 16361:1 16377:1 16382:3 16392:2 16393:1 16401:1 16402:1 16408:1 16412:4 16414:1 16416:1 16424:1 16428:1 16442:2 16444:1 16467:1 16468:1 16483:1 16491:1 16495:1 16506:1 16517:1 16525:2 16561:1 16570:1 16583:1 16597:1 16600:1 16603:1 16612:1 16618:1 16621:1 16631:1 16640:4 16661:1 16675:1 16687:2 16692:1 16718:1 16738:1 16775:4 16789:1 16810:1 16828:1 16867:1 16874:1 16885:1 16892:2 16938:1 16939:1 16951:1 16956:1 16970:2 17000:3 17005:3 17007:1 17010:1 17012:1 17013:1 17031:1 17037:1 17059:2 17078:1 17098:2 17099:1 17109:3 17137:1 17150:1 17162:1 17163:2 17167:1 17191:1 17194:1 17202:2 17205:1 17207:3 17235:1 17237:1 17240:1 17246:1 17255:1 17280:1 17283:1 17293:1 17294:1 17347:2 17353:3 17355:4 17360:1 17379:4 17380:1 17385:1 17408:1 17433:4 17435:1 17441:1 17445:1 17448:1 17479:1 17481:1 17488:1 17496:1 17501:3 17508:2 17512:2 17520:2 17546:1 17558:1 17566:2 17591:1 17611:1 17627:1 17633:1 17634:1 17653:1 17662:3 17668:1 17685:8 17687:8 17689:1 17694:1 17722:2 17734:1 17736:2 17740:2 17758:3 17763:1 17776:2 17783:1 17796:1 17803:1 17805:1 17813:1 17826:1 17829:3 17833:1 17835:1 17844:6 17854:3 17863:1 17864:1 17866:2 17873:1 17875:2 17878:1 17884:1 17885:4 17889:2 17890:6 17892:1 17896:2 17900:1 17901:1 17902:1 17912:1 17913:6 17919:4 17954:1 17968:2 17996:1 18009:1 18010:1 18012:2 18021:1 18022:2 18024:2 18030:5 18041:1 18060:2 18065:1 18073:1 18076:2 18096:2 18101:2 18127:2 18145:1 18146:1 18149:1 18158:1 18171:1 18175:1 18178:3 18182:1 18187:8 18198:2 18199:2 18217:2 18222:1 18225:2 18243:1 18254:1 18263:19 18291:1 18292:1 18300:5 18301:1 18305:1 18324:2 18341:55 18361:3 18366:1 18390:1 18418:1 18424:1 18426:1 18427:2 18442:1 18454:1 18455:1 18456:1 18460:1 18467:2 18468:1 18469:2 18473:2 18474:4 18477:1 18482:2 18486:1 18501:1 18513:1 18516:1 18518:1 18523:1 18526:1 18530:1 18536:1 18543:1 18544:1 18565:1 18567:1 18604:1 18610:5 18634:1 18643:1 18648:2 18649:1 18654:1 18692:1 18696:1 18700:1 18715:1 18762:1 18768:1 18797:1 18798:1 18808:1 18822:2 18826:1 18865:2 18867:1 18870:1 18905:1 18908:1 18916:2 18922:4 18923:1 18927:1 18944:1 18946:3 18968:3 18974:1 18985:1 18996:1 18997:1 19000:1 19004:2 19006:1 19008:1 19016:1 19020:1 19027:1 19029:1 19042:1 19047:1 19048:13 19057:1 19059:1 19072:1 19084:2 19094:2 19106:1 19107:1 19136:1 19141:1 19143:1 19165:1 19167:2 19170:3 19177:1 19179:2 19182:1 19185:2 19202:1 19206:1 19222:1 19232:1 19240:1 19243:2 19245:2 19271:2 19272:2 19285:1 19298:1 19306:1 19307:3 19316:1 19331:1 19374:1 19382:2 19385:1 19406:1 19407:2 19409:1 19420:1 19425:1 19434:2 19435:1 19440:3 19449:2 19457:1 19461:1 19466:1 19469:3 19473:1 19480:1 19489:1 19490:1 19497:3 19501:1 19504:1 19521:1 19539:1 19542:1 19550:1 19564:2 19586:1 19587:2 19595:1 19601:1 19619:4 19640:1 19661:1 19664:1 19672:1 19675:1 19684:1 19685:1 19692:1 19711:5 19713:1 19715:1 19718:1 19726:1 19730:2 19735:1 19737:1 19757:1 19759:2 19761:2 19772:1 19775:1 19776:1 19789:2 19805:1 19813:1 19817:1 19819:1 19834:1 19840:2 19841:2 19877:1 19879:1 19907:1 19926:3 19936:2 19944:1 19956:1 19962:1 19971:2 20012:3 20016:1 20017:2 20020:2 20021:1 20034:1 20037:9 20039:2 20052:1 20070:2 20078:1 20103:1 20118:1 20130:1 20131:1 20151:1 20152:1 20153:2 20160:3 20179:2 20185:2 20191:1 20209:1 20210:1 20216:1 20249:1 20255:4 20260:2 20261:4 20265:1 20274:1 20304:1 20307:1 20340:1 20342:1 20346:1 20382:3 20383:1 20392:1 20420:1 20423:1 20429:1 20439:1 20450:1 20456:3 20467:3 20474:2 20480:1 20488:1 20489:2 20507:1 20523:1 20531:1 20532:3 20540:1 20542:1 20579:1 20585:2 20591:1 20595:2 20618:1 20621:4 20630:1 20645:4 20649:1 20651:1 20655:3 20676:1 20677:1 20682:1 20693:1 20695:2 20701:1 20749:1 20790:1 20792:10 20797:1 20806:1 20813:1 20821:1 20832:1 20852:1 20860:1 20865:1 20869:1 20878:1 20884:2 20886:1 20906:1 20912:1 20922:1 20925:1 20942:1 20946:5 20948:1 20950:2 20952:1 20965:3 20971:2 20976:1 20980:2 20981:1 21013:1 21020:3178 21028:1 21044:1 21046:4 21047:1 21054:2 21066:2 21086:1 21097:1 21108:1 21121:1 21131:1 21136:3 21137:1 21147:1 21178:3 21201:2 21212:2 21236:1 21239:4 21242:2 21268:3 21277:1 21280:1 21284:3 21287:1 21299:1 21340:1 21341:1 21346:1 21361:1 21381:1 21384:4 21410:1 21414:1 21418:1 21422:1 21442:2 21454:1 21463:1 21474:1 21484:1 21490:1 21494:1 21495:1 21511:1 21539:1 21549:1 21551:2 21554:1 21563:4 21576:1 21586:1 21601:1 21619:1 21660:1 21661:2 21675:1 21678:3 21728:1 21749:1 21773:1 21779:2 21789:1 21795:2 21797:1 21803:2 21810:1 21819:4 21832:2 21835:1 21836:3 21841:1 21843:1 21857:1 21867:14 21891:1 21892:1 21894:3 21895:1 21896:17 21909:2 21929:1 21930:5 21932:1 21934:1 21950:2 21965:1 21970:4 21991:1 21995:2 22000:1 22002:6 22004:2 22008:1 22015:1 22029:2 22030:1 22060:1 22068:3 22075:1 22089:1 22101:3 22131:1 22133:1 22136:1 22190:1 22194:1 22198:1 22229:1 22235:1 22244:1 22262:1 22264:13 22272:1 22290:1 22308:1 22317:1 22323:1 22340:1 22352:1 22369:1 22375:1 22377:6 22396:1 22399:1 22404:1 22422:2 22439:1 22443:1 22444:1 22467:1 22474:1 22476:1 22478:1 22483:1 22484:1 22485:1 22495:1 22510:1 22516:1 22534:1 22542:4 22547:1 22556:1 22561:1 22581:3 22582:1 22590:1 22610:2 22616:1 22623:1 22624:1 22644:1 22651:4 22676:2 22680:1 22685:2 22687:2 22701:2 22702:1 22708:7 22737:1 22745:1 22758:1 22775:1 22781:1 22800:14 22809:1 22822:2 22825:2 22844:1 22845:1 22861:1 22863:13 22881:1 22910:1 22922:1 22924:1 22931:1 22933:1 22945:1 22964:1 22999:1 23004:1 23005:1 23024:2 23042:1 23043:4 23045:2 23056:1 23063:1 23105:2 23125:1 23153:5 23165:1 23166:3 23183:1 23185:1 23198:1 23199:1 23209:1 23242:1 23245:1 23264:1 23265:1 23312:2 23330:1 23335:1 23341:1 23369:1 23374:2 23383:1 23399:1 23401:1 23407:2 23439:1 23446:1 23457:1 23466:1 23490:3 23501:1 23512:2 23517:1 23519:1 23522:1 23525:1 23532:13 23542:1 23546:3 23549:4 23550:1 23560:2 23569:5 23574:1 23595:4 23597:1 23605:1 23606:1 23638:2 23639:1 23641:1 23653:2 23657:1 23673:2 23681:1 23682:1 23696:1 23711:7 23719:1 23722:2 23730:1 23742:1 23743:1 23765:1 23786:1 23803:1 23808:1 23810:1 23832:2 23836:1 23839:1 23843:1 23849:1 23859:3 23871:1 23873:1 23881:1 23882:1 23886:1 23898:1 23900:1 23940:1 23944:1 23948:1 23968:1 23974:1 24003:1 24009:1 24055:1 24063:1 24065:4 24070:2 24073:3 24084:4 24087:1 24094:1 24097:1 24100:1 24135:1 24143:1 24147:1 24148:1 24149:1 24154:2 24164:1 24173:1 24181:1 24195:1 24201:1 24202:1 24216:1 24218:6 24221:3 24240:1 24245:1 24255:1 24271:1 24277:1 24308:1 24310:1 24311:2 24320:1 24328:1 24339:1 24341:1 24344:1 24359:1 24360:4 24363:13 24377:1 24384:2 24385:1 24391:1 24395:1 24396:1 24402:1 24408:1 24412:1 24413:1 24426:1 24427:5 24447:1 24472:2 24475:3 24478:1 24482:1 24488:4 24505:1 24520:1 24542:1 24543:4 24556:2 24563:3 24567:1 24623:1 24649:4 24659:1 24661:1 24662:8 24666:2 24670:2 24682:2 24683:1 24687:1 24700:2 24701:1 24702:1 24703:2 24707:1 24714:2 24719:2 24722:1 24732:1 24734:1 24735:1 24747:2 24752:2 24774:2 24809:1 24824:5 24825:1 24834:1 24855:1 24858:1 24861:1 24862:1 24869:2 24872:1 24888:1 24894:1 24908:4 24917:1 24923:1 24926:1 24935:1 24979:19 24980:2 24984:1 25005:1 25018:1 25021:1 25026:1 25033:1 25047:1 25057:1 25065:1 25071:2 25092:1 25094:2 25101:1 25103:1 25104:1 25106:1 25110:2 25121:2 25125:1 25126:1 25129:8 25139:2 25148:2 25156:4 25168:2 25190:1 25194:1 25201:1 25206:1 25209:2 25218:1 25233:1 25236:1 25243:1 25245:2 25252:1 25256:1 25270:2 25275:1 25289:9 25303:3 25318:3 25328:1 25340:1 25368:1 25369:1 25387:2 25405:1 25406:1 25423:1 25459:1 25473:3 25480:1 25485:1 25494:1 25501:2 25503:1 25526:1 25539:1 25547:1 25561:1 25579:1 25581:1 25588:2 25595:15 25597:1 25598:2 25620:1 25634:2 25643:1 25653:1 25655:1 25667:2 25676:1 25683:1 25689:3 25694:1 25695:2 25705:1 25720:1 25722:1 25732:3 25743:1 25748:1 25754:1 25755:5 25780:1 25788:1 25791:1 25804:1 25808:1 25828:2 25845:1 25850:1 25853:1 25860:1 25871:2 25890:1 25907:1 25912:1 25928:1 25929:2 25936:2 25944:1 25954:1 26001:1 26015:1 26016:1 26017:5 26024:1 26030:1 26043:1 26044:1 26056:1 26064:1 26073:1 26075:2 26094:1 26133:1 26135:2 26149:1 26157:1 26160:2 26165:1 26174:2 26179:4 26184:1 26187:1 26206:1 26213:1 26230:1 26243:1 26254:3 26255:4 26264:1 26265:1 26277:6 26283:1 26287:1 26294:1 26308:1 26309:1 26315:1 26316:3 26319:2 26324:1 26332:1 26352:2 26359:1 26360:2 26364:1 26380:1 26415:4 26421:1 26424:22 26426:1 26498:1 26516:2 26530:1 26532:1 26534:1 26539:1 26552:1 26605:3 26609:1 26612:2 26613:1 26624:1 26635:1 26636:1 26642:1 26655:1 26676:1 26679:1 26694:1 26705:1 26721:1 26724:1 26748:1 26751:2 26758:2 26794:4 26814:1 26818:1 26847:1 26878:1 26880:1 26897:2 26920:1 26924:2 26929:1 26931:1 26934:1 26936:1 26938:2 26952:1 26968:1 26978:1 27003:1 27009:1 27014:1 27021:1 27022:1 27028:1 27032:1 27070:1 27072:1 27085:1 27102:1 27104:1 27112:1 27114:5 27122:1 27132:1 27133:1 27141:3 27159:1 27183:1 27198:1 27225:1 27251:3 27262:1 27299:1 27303:5 27360:2 27373:1 27377:1 27388:1 27389:1 27397:5 27398:2 27401:1 27419:1 27427:1 27437:1 27439:2 27447:1 27451:3 27456:2 27488:1 27489:2 27491:1 27502:2 27512:1 27516:1 27522:2 27533:2 27552:1 27569:1 27574:1 27575:1 27595:1 27602:4 27612:3 27618:1 27620:1 27627:1 27641:1 27642:1 27672:1 27673:1 27676:1 27684:1 27701:1 27704:1 27716:1 27727:1 27728:2 27743:1 27753:1 27757:2 27760:1 27763:1 27769:1 27778:1 27792:1 27804:1 27809:1 27813:1 27817:1 27843:1 27846:1 27851:1 27863:1 27872:2 27881:1 27884:1 27917:3 27933:5 27957:1 27970:1 27985:1 27989:1 27997:1 28007:1 28015:2 28016:1 28021:1 28032:5 28033:1 28043:1 28068:2 28071:1 28074:1 28094:1 28112:1 28132:1 28139:1 28145:4 28174:1 28178:1 28183:1 28234:1 28242:3 28253:1 28255:1 28273:7 28303:1 28305:1 28327:2 28331:5 28335:1 28342:1 28348:4 28354:1 28408:1 28414:1 28442:1 28485:1 28499:1 28500:1 28503:2 28506:1 28507:1 28509:8 28512:3 28518:1 28537:1 28540:1 28557:3 28560:1 28563:2 28591:1 28602:1 28608:6 28609:1 28610:1 28625:1 28635:4 28641:5 28642:1 28652:2 28665:1 28666:1 28671:1 28680:1 28697:2 28725:6 28728:1 28734:1 28739:1 28740:1 28753:2 28754:1 28762:1 28778:2 28803:1 28811:3 28828:1 28847:5 28850:1 28870:2 28872:2 28875:1 28902:2 28913:1 28937:1 28945:3 28972:1 28981:1 28994:2 28998:4 29029:1 29052:1 29056:1 29060:2 29063:1 29066:1 29080:1 29085:2 29088:2 29102:1 29104:1 29105:1 29109:1 29120:1 29123:1 29128:1 29146:2 29147:1 29155:1 29156:2 29161:1 29165:1 29174:1 29189:6 29195:1 29199:1 29210:1 29212:1 29215:1 29219:2 29234:1 29261:1 29272:1 29291:1 29302:1 29316:1 29320:1 29326:1 29327:1 29332:1 29334:3 29365:10 29374:1 29409:1 29412:1 29417:2 29439:1 29455:1 29472:2 29483:1 29491:1 29498:1 29503:1 29518:3 29519:2 29527:1 29543:1 29546:2 29558:1 29564:1 29574:2 29623:2 29637:3 29653:5 29655:2 29658:1 29665:1 29673:1 29675:2 29676:1 29677:4 29679:7 29683:1 29685:1 29711:1 29732:2 29759:1 29766:1 29771:1 29781:3 29792:1 29797:1 29821:3 29842:1 29850:1 29855:1 29861:2 29867:1 29882:1 29917:1 29923:1 29928:1 29956:1 29964:1 29979:1 29992:1 30023:1 30033:1 30051:1 30063:1 30079:1 30085:1 30091:1 30121:1 30123:2 30129:1 30149:1 30160:2 30168:2 30183:2 30198:1 30205:1 30221:1 30235:1 30294:2 30295:2 30308:2 30315:1 30334:1 30352:1 30367:1 30371:1 30393:2 30399:4 30410:1 30412:1 30415:1 30418:9 30450:2 30451:2 30452:1 30514:1 30524:22 30525:1 30529:3 30531:1 30540:1 30547:1 30560:3 30592:1 30633:1 30643:2 30647:3 30648:3 30651:2 30656:1 30662:1 30684:1 30698:2 30701:1 30703:1 30706:1 30707:1 30719:2 30721:2 30724:2 30728:1 30738:1 30739:1 30740:1 30741:1 30745:2 30753:1 30757:3 30760:1 30788:2 30800:1 30816:1 30818:2 30827:1 30832:1 30845:1 30846:2 30849:1 30876:1 30879:1 30881:1 30895:1 30901:1 30906:1 30907:1 30916:1 30927:1 30958:1 30960:1 30978:1 30993:2 30997:1 30998:1 31004:1 31021:3 31023:1 31030:2 31088:7 31104:1 31120:1 31132:1 31168:3 31176:3 31192:1 31200:2 31204:1 31207:1 31243:1 31259:1 31262:3 31268:1 31302:2 31311:1 31317:1 31349:5 31359:4 31389:1 31392:1 31394:1 31400:1 31403:1 31414:1 31473:1 31476:1 31477:1 31489:4 31493:1 31502:1 31514:1 31526:3 31529:1 31541:1 31544:27 31545:2 31546:2 31549:2 31552:4 31555:1 31556:1 31566:1 31586:1 31587:13 31597:1 31602:1 31603:1 31613:1 31644:1 31645:1 31646:1 31651:2 31661:1 31662:2 31669:1 31673:2 31681:1 31697:1 31702:4 31713:4 31718:1 31719:2 31743:1 31754:3 31758:1 31759:2 31763:1 31766:1 31784:1 31801:1 31802:1 31806:1 31829:1 31849:1 31854:1 31863:2 31866:1 31900:1 31901:1 31909:1 31932:1 31943:1 31944:1 31951:1 31953:1 31957:2 31959:1 31964:4 31969:2 31971:1 31976:1 31990:1 31994:2 32000:1 32012:1 32028:8 32032:1 32039:3 32041:1 32083:1 32110:3 32115:8 32118:1 32119:1 32125:1 32126:1 32142:1 32146:2 32147:2 32158:1 32163:1 32175:1 32178:2 32179:1 32186:1 32214:3 32225:1 32241:1 32257:1 32263:3 32269:1 32272:1 32275:1 32279:2 32303:2 32307:1 32310:4 32314:1 32321:5 32330:1 32342:2 32363:1 32374:1 32381:1 32429:1 32445:1 32471:3 32473:1 32488:1 32505:4 32510:1 32539:2 32543:1 32547:1 32559:1 32582:1 32590:2 32596:1 32605:3 32617:1 32628:1 32642:1 32662:1 32676:3 32684:1 32686:1 32701:1 32713:2 32727:1 32733:6 32735:1 32740:1 32755:2 32781:1 32785:2 32787:1 32811:1 32821:5 32831:2 32835:1 32861:1 32891:1 32897:1 32898:1 32902:1 32903:1 32905:5 32910:1 32921:1 32950:1 32957:2 32966:1 32971:1 32972:1 32973:1 32977:1 33021:1 33038:1
16 10:1 13:1 26:1 27:2 28:1 41:1 66:1 78:1 85:4 104:1 109:1 145:1 164:1 173:1 176:1 186:1 189:2 191:1 219:1 225:1 232:1 235:1 262:1 269:4 272:1 273:1 285:1 295:1 318:3 338:1 351:4 355:1 375:1 387:1 397:2 398:1 399:3 427:1 434:1 437:1 443:1 459:1 468:2 475:1 484:1 502:3 505:2 509:2 525:1 535:1 542:1 551:2 567:1 575:1 577:1 581:1 584:1 589:1 591:2 628:1 629:1 636:2 649:5 709:1 713:3 723:3 751:2 757:1 762:4 766:1 774:1 779:1 790:1 791:1 793:1 805:1 812:1 821:1 832:1 860:2 869:2 886:1 891:1 908:1 929:1 937:1 944:1 949:2 957:1 962:1 970:1 975:2 984:1 988:2 1000:2 1007:1 1016:1 1035:2 1039:1 1046:2 1050:1 1051:1 1054:1 1058:2 1068:2 1069:2 1078:3 1080:1 1081:3 1082:6 1084:2 1091:2 1113:1 1114:1 1116:2 1136:1 1138:1 1139:6 1143:2 1149:1 1164:1 1170:1 1180:2 1185:1 1202:1 1220:2 1221:1 1240:1 1250:1 1254:1 1259:1 1285:2 1286:1 1288:1 1301:2 1341:1 1352:1 1353:3 1356:1 1359:1 1366:1 1368:1 1369:2 1377:2 1387:1 1388:4 1398:2 1406:1 1412:1 1425:1 1426:3 1457:1 1464:1 1466:2 1469:2 1472:4 1475:1 1487:2 1488:4 1489:2 1490:1 1506:3 1512:1 1524:1 1526:1 1528:1 1535:1 1540:1 1544:1 1546:3 1560:2 1572:1 1574:1 1586:2 1600:2 1630:1 1633:1 1642:1 1676:3 1677:1 1683:1 1689:1 1692:1 1695:2 1711:1 1733:1 1742:6 1750:1 1754:1 1760:6 1767:2 1773:1 1774:2 1775:1 1776:1 1780:3 1787:1 1791:1 1802:4 1822:1 1835:1 1836:1 1839:5 1853:1 1863:2 1867:2 1871:2 1879:2 1881:1 1907:2 1914:1 1919:4 1924:4 1927:2 1928:1 1939:1 1941:1 1944:1 1953:1 1963:5 1966:3 1968:1 1975:1 1976:1 1985:1 1993:1 1998:1 2018:1 2038:1 2039:1 2050:2 2053:1 2055:1 2058:1 2069:3 2077:2 2089:1 2097:1 2098:1 2109:1 2122:1 2127:1 2128:1 2134:1 2139:1 2142:1 2143:1 2150:1 2156:1 2165:1 2174:1 2175:1 2180:1 2187:1 2188:1 2192:1 2194:1 2201:1 2211:1 2215:1 2219:1 2226:1 2230:1 2232:2 2234:4 2239:1 2241:1 2243:1 2245:1 2262:1 2263:3 2264:1 2282:1 2291:1 2317:1 2320:1 2323:1 2339:1 2345:1 2354:2 2358:2 2360:1 2361:2 2368:3 2369:1 2407:1 2414:2 2435:1 2438:1 2439:1 2441:3 2443:1 2444:2 2445:1 2446:1 2447:1 2475:4 2501:2 2509:2 2518:1 2531:1 2553:1 2556:1 2566:1 2571:1 2572:3 2584:1 2587:1 2628:2 2629:1 2630:1 2631:2 2632:4 2635:1 2637:1 2638:5 2640:1 2641:1 2643:5 2645:1 2647:4 2651:1 2654:1 2659:1 2660:6 2665:3 2666:1 2668:7 2683:1 2687:2 2691:1 2708:1 2712:1 2728:1 2733:1 2744:1 2754:2 2755:1 2759:1 2762:1 2763:2 2773:1 2782:1 2790:2 2793:1 2794:1 2800:2 2808:1 2825:1 2826:1 2845:5 2856:1 2871:1 2883:2 2885:1 2909:1 2914:1 2921:1 2925:1 2927:1 2944:1 2986:1 2994:1 3021:1 3023:1 3062:2 3071:1 3082:4 3092:1 3098:4 3108:1 3117:2 3119:1 3127:1 3130:3 3136:10 3150:1 3151:1 3161:1 3162:1 3164:2 3170:1 3173:1 3177:1 3182:1 3189:3 3193:1 3197:1 3226:2 3237:2 3246:2 3252:1 3254:1 3256:5 3264:2 3314:4 3322:1 3326:1 3328:1 3336:1 3355:11 3363:7 3392:2 3409:1 3426:30 3435:2 3441:1 3449:1 3457:1 3459:1 3473:1 3497:1 3505:2 3532:1 3533:2 3536:1 3542:2 3607:3 3612:1 3613:1 3625:1 3634:1 3639:2 3650:1 3666:1 3688:1 3689:1 3693:1 3698:1 3700:1 3705:1 3710:2 3713:4 3721:1 3726:1 3739:12 3759:1 3764:1 3773:1 3789:1 3809:1 3821:1 3823:7 3863:1 3894:1 3900:1 3906:1 3917:1 3918:2 3931:2 3941:1 3944:1 3959:1 3965:1 3975:3 3983:2 3985:1 3992:1 4003:4 4041:1 4046:1 4049:1 4053:3 4056:1 4076:1 4077:1 4089:3 4091:2 4125:1 4140:1 4144:1 4150:1 4152:3 4156:2 4161:2 4164:1 4165:1 4185:1 4203:1 4210:1 4235:1 4245:2 4256:1 4266:1 4270:2 4271:4 4273:1 4297:1 4317:1 4323:2 4325:41 4331:1 4340:1 4347:1 4361:2 4363:1 4364:9 4367:1 4375:1 4376:2 4377:23 4379:1 4381:4 4391:2 4405:3 4408:1 4418:2 4419:3 4423:2 4425:2 4426:2 4438:2 4439:2 4442:1 4444:1 4463:1 4480:2 4490:1 4491:3 4498:1 4502:1 4507:1 4534:1 4537:1 4539:2 4541:1 4543:1 4544:3 4555:2 4567:2 4570:1 4575:1 4581:1 4587:1 4597:2 4619:1 4622:1 4630:1 4632:1 4633:1 4635:1 4636:1 4643:1 4646:2 4652:1 4655:1 4658:4 4674:4 4678:1 4686:1 4722:1 4730:1 4734:1 4785:1 4793:1 4799:3 4810:1 4813:3 4823:1 4834:2 4852:1 4855:1 4870:2 4876:1 4877:2 4879:1 4880:1 4906:1 4913:2 4924:1 4926:1 4937:1 4978:1 4989:1 4999:1 5010:11 5027:1 5044:1 5086:1 5090:2 5098:1 5106:5 5117:1 5120:2 5138:1 5152:7 5155:1 5176:1 5181:2 5195:1 5198:1 5205:1 5258:1 5268:2 5269:1 5298:1 5331:1 5343:2 5363:2 5367:1 5370:2 5381:1 5390:4 5403:1 5410:3 5433:3 5438:2 5439:1 5470:1 5497:1 5509:1 5510:1 5514:1 5516:1 5528:1 5542:1 5545:2 5558:2 5613:1 5617:1 5632:1 5640:2 5643:1 5645:1 5650:1 5659:15 5660:2 5678:1 5699:2 5728:1 5729:2 5744:1 5761:1 5784:3 5797:3 5800:1 5802:4 5821:2 5822:3 5823:7 5824:1 5827:1 5828:1 5830:1 5831:2 5833:1 5840:1 5841:20 5842:1 5844:1 5848:2 5849:3 5860:2 5877:1 5880:3 5936:2 5950:1 5958:1 5964:1 5968:1 5972:1 6050:1 6060:1 6081:3 6082:3 6089:5 6125:1 6137:1 6142:1 6157:1 6168:2 6169:20 6177:1 6205:1 6216:3 6221:1 6236:2 6255:3 6301:1 6305:1 6322:1 6350:1 6357:2 6371:1 6379:1 6383:1 6394:1 6396:1 6403:1 6404:2 6413:1 6462:1 6463:1 6465:1 6469:1 6473:1 6479:1 6480:1 6483:2 6507:2 6515:1 6518:1 6531:2 6540:1 6542:1 6548:1 6550:2 6557:1 6568:2 6573:1 6574:1 6587:1 6611:1 6617:5 6640:2 6647:1 6669:1 6672:1 6673:1 6678:1 6686:1 6705:1 6707:1 6722:1 6723:1 6725:1 6728:1 6731:1 6733:1 6747:1 6748:1 6753:1 6768:1 6772:1 6775:1 6776:1 6777:1 6808:1 6825:1 6826:1 6843:1 6844:3 6845:1 6868:1 6870:5 6873:1 6883:1 6891:1 6895:1 6897:1 6938:1 6959:2 6992:1 7029:1 7034:2 7035:8 7043:1 7045:2 7068:2 7074:1 7078:1 7079:1 7102:1 7120:1 7128:1 7133:1 7139:1 7140:2 7149:2 7150:1 7154:1 7157:1 7161:1 7190:4 7196:1 7200:2 7202:2 7227:1 7232:1 7249:1 7254:3 7257:1 7260:1 7276:5 7278:1 7295:1 7296:1 7300:1 7309:1 7316:1 7321:1 7338:1 7363:1 7382:5 7386:2 7387:1 7390:1 7391:1 7392:1 7394:2 7396:2 7397:1 7401:2 7402:3 7403:5 7409:2 7410:7 7411:1 7412:1 7413:2 7427:1 7451:1 7454:1 7474:3 7477:1 7480:1 7503:1 7509:1 7553:1 7555:1 7559:1 7567:1 7579:2 7586:1 7611:1 7613:1 7615:1 7664:1 7681:3 7684:2 7687:1 7690:4 7709:1 7710:5 7716:3 7722:1 7725:1 7731:1 7732:1 7742:2 7763:1 7764:3 7770:2 7790:1 7791:1 7793:1 7805:1 7825:1 7846:1 7849:1 7852:1 7856:1 7869:3 7876:1 7877:2 7879:1 7891:3 7897:1 7900:2 7907:3 7915:3 7921:1 7940:1 7947:3 7955:1 7987:1 7998:1 8005:2 8012:1 8016:1 8019:1 8021:1 8026:2 8032:1 8071:1 8091:2 8093:1 8110:1 8111:2 8127:1 8135:1 8137:2 8138:1 8169:1 8194:2 8215:1 8224:1 8233:1 8251:1 8255:5 8259:1 8263:3 8270:1 8289:1 8299:1 8320:1 8335:1 8358:1 8409:1 8425:1 8436:1 8442:1 8490:1 8499:1 8507:1 8512:1 8513:1 8526:5 8575:1 8577:1 8586:3 8604:2 8629:4 8632:1 8674:2 8688:2 8689:1 8711:1 8714:1 8723:2 8753:1 8759:1 8768:1 8770:1 8784:1 8786:1 8791:4 8821:1 8830:4 8831:5 8832:2 8842:1 8850:1 8854:2 8858:2 8861:1 8866:1 8888:1 8890:2 8898:1 8900:1 8901:42 8902:1 8904:1 8908:2 8911:1 8920:11 8923:26 8929:1 8933:1 8936:1 8943:1 8945:1 8952:1 8978:5 8979:1 9001:1 9014:1 9034:1 9051:1 9058:1 9059:2 9068:1 9082:2 9085:1 9091:1 9104:1 9143:1 9149:3 9153:6 9161:1 9199:1 9206:1 9209:5 9212:1 9230:1 9234:1 9251:1 9272:1 9285:1 9304:1 9341:1 9343:3 9362:1 9366:1 9368:1 9370:7 9386:2 9394:1 9405:1 9416:2 9428:1 9436:1 9444:2 9448:1 9454:1 9468:1 9470:1 9484:17 9511:1 9516:1 9524:2 9525:1 9551:2 9589:1 9594:1 9605:2 9616:1 9630:2 9639:4 9643:1 9664:1 9672:1 9678:3 9687:4 9694:2 9697:1 9709:2 9711:1 9715:3 9728:1 9732:2 9733:1 9734:2 9738:1 9747:1 9748:2 9754:2 9765:1 9777:2 9778:2 9788:1 9790:1 9791:1 9792:1 9809:2 9829:1 9836:1 9841:3 9848:1 9859:1 9866:1 9870:1 9875:1 9878:2 9880:1 9881:3 9882:2 9884:2 9885:5 9888:1 9894:2 9897:2 9899:2 9903:3 9919:1 9925:2 9934:2 9944:1 9945:1 9950:1 9951:1 9959:1 9973:1 9977:2 9984:1 9995:1 10002:3 10019:1 10024:5 10044:1 10053:4 10056:1 10065:1 10067:1 10069:2 10080:1 10088:1 10092:1 10098:1 10121:1 10128:2 10138:1 10139:1 10144:1 10150:3 10161:3 10162:1 10166:1 10181:2 10192:1 10204:1 10208:4 10209:2 10214:4 10216:1 10218:1 10219:4 10221:3 10223:2 10228:1 10229:2 10230:2 10252:3 10254:1 10255:2 10257:4 10270:1 10272:1 10295:2 10302:1 10308:1 10354:1 10359:1 10367:1 10377:2 10386:1 10397:2 10399:2 10410:1 10412:1 10422:1 10438:1 10441:1 10447:1 10454:1 10461:1 10478:1 10485:1 10495:1 10496:1 10520:3 10554:1 10558:2 10563:1 10565:3 10578:1 10580:1 10588:7 10610:2 10615:3 10619:1 10627:1 10634:1 10653:1 10662:1 10671:3 10673:1 10695:1 10696:1 10701:1 10710:1 10726:1 10750:1 10756:1 10768:1 10800:1 10819:1 10845:1 10846:1 10851:3 10857:2 10858:1 10862:1 10864:2 10879:1 10900:2 10903:1 10906:2 10937:1 10939:1 10942:3 10947:1 10958:1 10959:1 10975:1 11009:20 11016:1 11034:1 11039:2 11047:4 11056:2 11059:1 11083:1 11089:1 11091:1 11097:1 11104:2 11124:2 11133:1 11154:14 11170:2 11171:1 11176:2 11189:1 11198:1 11210:5 11218:1 11225:1 11226:1 11229:3 11230:1 11232:1 11249:1 11263:1 11267:1 11276:1 11280:1 11316:2 11318:3 11319:1 11336:1 11359:8 11363:2 11366:4 11368:2 11374:2 11375:1 11382:1 11392:2 11400:2 11402:1 11408:2 11417:2 11422:4 11426:4 11427:1 11429:1 11437:1 11446:1 11453:1 11464:3 11470:3 11489:1 11492:2 11496:1 11507:1 11513:2 11545:1 11550:1 11551:3 11553:1 11580:11 11582:1 11583:6 11595:1 11597:1 11600:1 11692:1 11697:2 11703:1 11720:1 11728:1 11733:2 11754:4 11761:1 11775:4 11789:1 11796:1 11800:1 11803:1 11826:1 11832:1 11835:1 11859:1 11880:1 11897:2 11914:5 11921:1 11926:1 11932:1 11948:2 11955:1 11967:2 11970:1 11994:2 12001:6 12014:1 12043:1 12044:1 12052:2 12072:2 12075:2 12090:1 12098:6 12117:2 12119:4 12120:1 12121:3 12125:1 12128:1 12145:1 12147:1 12150:1 12160:1 12173:1 12174:3 12197:1 12200:1 12211:4 12225:1 12229:2 12241:2 12249:7 12266:1 12314:1 12316:1 12322:1 12345:2 12346:2 12347:1 12352:1 12362:1 12392:1 12396:1 12408:1 12416:1 12459:1 12465:1 12468:1 12476:1 12492:1 12498:2 12499:1 12512:7 12531:3 12534:7 12549:2 12553:1 12556:2 12558:1 12562:1 12571:1 12576:2 12589:1 12596:4 12610:1 12623:2 12634:1 12635:2 12642:5 12659:1 12664:3 12676:3 12692:1 12703:1 12706:1 12707:1 12740:1 12743:1 12749:1 12753:1 12770:1 12787:1 12807:1 12810:1 12816:1 12818:1 12819:1 12821:1 12825:4 12826:1 12827:1 12850:1 12855:1 12863:1 12867:2 12883:1 12888:1 12892:1 12893:1 12919:2 12951:1 12953:3 12958:1 12960:1 12963:2 12965:1 12970:1 12974:2 12980:1 12981:1 12983:1 12990:1 12991:1 13014:1 13021:3 13052:1 13057:1 13061:3 13063:6 13067:1 13070:1 13100:1 13118:1 13122:1 13125:1 13127:1 13135:1 13138:2 13153:1 13176:3 13196:1 13204:1 13207:1 13215:1 13218:5 13234:3 13236:1 13251:2 13252:3 13254:2 13263:1 13284:1 13297:3 13303:1 13318:3 13324:2 13327:1 13328:9 13341:1 13343:1 13348:1 13350:1 13352:1 13354:1 13355:1 13363:1 13364:2 13366:1 13368:6 13369:1 13376:2 13379:6 13382:1 13387:1 13395:1 13397:1 13403:9 13428:2 13447:5 13454:1 13463:2 13467:1 13507:1 13518:4 13528:1 13532:1 13536:1 13537:2 13576:1 13580:1 13590:3 13592:1 13607:1 13616:1 13620:2 13629:1 13645:1 13652:1 13674:1 13690:2 13692:2 13717:2 13737:2 13759:1 13766:1 13780:5 13832:2 13834:2 13847:1 13858:1 13867:1 13872:1 13874:1 13878:1 13887:1 13913:4 13914:4 13916:20 13923:6 13933:1 13940:1 13941:2 13956:2 13962:1 13972:2 14002:1 14021:2 14041:1 14043:1 14073:1 14074:1 14082:9 14083:2 14098:1 14105:1 14106:3 14109:2 14130:1 14167:3 14172:1 14198:1 14207:1 14219:2 14222:1 14228:1 14235:1 14248:2 14265:1 14286:2 14292:1 14312:3 14326:2 14329:1 14369:1 14373:3 14379:1 14382:1 14387:1 14388:1 14399:1 14417:1 14441:1 14443:1 14456:1 14506:6 14519:1 14520:1 14523:1 14527:2 14528:1 14530:1 14535:1 14546:1 14565:2 14566:4 14588:1 14592:2 14629:1 14660:1 14667:2 14693:1 14705:1 14728:1 14735:2 14746:1 14748:1 14751:2 14775:1 14785:2 14810:1 14819:1 14820:1 14870:1 14894:5 14920:1 14926:1 14930:1 14943:1 14948:1 14950:1 14955:1 14960:1 14970:1 14990:2 15002:2 15013:1 15014:1 15015:1 15017:2 15023:1 15035:1 15044:1 15045:2 15080:1 15086:1 15088:2 15140:2 15146:3 15154:1 15155:2 15156:7 15162:4 15164:1 15171:2 15178:3 15182:1 15192:3 15195:1 15198:2 15204:3 15214:1 15234:7 15238:1 15247:1 15250:1 15254:2 15266:2 15267:1 15280:2 15301:2 15317:1 15338:4 15343:1 15353:1 15355:1 15365:1 15380:2 15400:3 15420:1 15428:2 15430:6 15441:1 15450:1 15464:2 15465:2 15466:2 15467:1 15480:3 15486:1 15502:1 15503:1 15511:1 15513:1 15514:2 15529:1 15538:2 15561:1 15576:1 15579:2 15581:1 15588:1 15589:1 15597:1 15598:2 15599:2 15600:2 15602:2 15606:1 15627:1 15635:1 15636:1 15642:1 15655:1 15659:1 15660:1 15663:1 15664:1 15677:1 15683:1 15684:1 15688:2 15691:1 15701:2 15706:1 15707:1 15726:1 15739:8 15748:2 15750:1 15754:1 15797:1 15801:1 15821:1 15822:1 15823:2 15827:2 15851:1 15853:2 15856:2 15857:1 15861:5 15891:1 15906:1 15908:1 15918:1 15921:1 15933:2 15934:3 15938:2 15939:6 15950:2 15970:2 15977:3 15997:1 16008:2 16035:2 16037:1 16043:2 16046:1 16051:1 16063:2 16064:1 16070:2 16091:1 16107:1 16118:1 16189:1 16192:1 16195:1 16202:2 16220:1 16246:1 16263:1 16279:1 16339:1 16341:1 16361:1 16377:1 16382:3 16392:2 16393:1 16401:1 16402:1 16408:1 16412:5 16414:1 16416:1 16424:1 16428:1 16442:2 16444:1 16467:1 16468:1 16483:1 16491:1 16495:1 16506:1 16517:1 16525:2 16561:1 16570:1 16583:1 16597:1 16600:1 16603:1 16612:1 16618:1 16621:2 16631:1 16640:4 16661:1 16675:1 16687:2 16692:1 16718:1 16738:1 16775:4 16789:1 16810:1 16828:1 16867:1 16874:1 16885:1 16892:2 16938:1 16939:1 16951:1 16956:1 16970:2 17000:4 17005:3 17007:1 17010:1 17012:1 17013:1 17031:1 17037:1 17059:2 17078:1 17098:2 17099:1 17109:3 17137:1 17150:1 17162:1 17163:2 17167:1 17170:1 17191:1 17194:1 17202:2 17205:1 17207:3 17235:1 17237:1 17240:1 17246:1 17255:1 17280:1 17283:1 17293:1 17294:1 17347:2 17353:3 17355:4 17360:1 17379:4 17380:1 17385:1 17408:1 17433:4 17435:1 17441:1 17445:1 17448:1 17479:1 17481:1 17488:1 17496:1 17501:3 17508:2 17512:2 17520:2 17546:1 17558:1 17566:2 17591:1 17611:1 17627:1 17633:1 17634:1 17653:1 17662:3 17668:1 17685:8 17687:8 17689:1 17694:1 17722:2 17734:1 17736:2 17740:2 17758:3 17763:1 17776:2 17783:1 17796:1 17803:1 17805:1 17813:1 17826:1 17829:3 17833:1 17835:1 17844:6 17854:3 17863:1 17864:1 17866:2 17873:1 17875:2 17878:1 17881:1 17884:1 17885:5 17889:2 17890:7 17892:1 17896:2 17900:2 17901:1 17902:1 17912:1 17913:6 17919:4 17954:1 17968:2 17996:1 18009:1 18010:1 18012:2 18021:1 18022:2 18024:2 18030:5 18041:1 18060:2 18065:1 18073:1 18076:2 18096:2 18101:2 18127:2 18145:1 18146:1 18149:1 18158:1 18171:1 18175:1 18178:3 18182:1 18187:8 18198:2 18199:2 18217:2 18222:1 18225:4 18243:1 18254:1 18263:20 18268:1 18291:1 18292:1 18300:5 18301:1 18305:1 18324:2 18341:60 18361:3 18366:1 18390:1 18418:1 18424:1 18426:1 18427:3 18442:1 18454:1 18455:1 18456:1 18460:1 18467:2 18468:1 18469:2 18473:2 18474:4 18477:1 18482:2 18486:1 18501:1 18513:1 18516:1 18518:1 18523:1 18526:1 18530:1 18536:1 18543:1 18544:1 18565:1 18567:1 18604:1 18610:5 18634:1 18643:1 18648:2 18649:1 18654:1 18692:1 18696:2 18700:1 18715:1 18762:1 18768:1 18797:1 18798:1 18808:1 18822:2 18826:1 18865:2 18867:1 18870:1 18903:1 18905:1 18908:1 18916:2 18922:4 18923:1 18927:1 18944:1 18946:3 18968:3 18974:1 18985:1 18996:1 18997:1 19000:1 19004:3 19006:1 19008:2 19016:1 19020:1 19027:1 19029:1 19042:3 19047:1 19048:13 19057:1 19059:1 19072:1 19084:2 19094:2 19106:1 19107:2 19136:1 19141:1 19143:2 19165:1 19167:2 19170:3 19177:1 19179:3 19182:1 19185:2 19202:1 19206:1 19222:1 19232:1 19240:1 19243:2 19245:2 19271:2 19272:2 19285:1 19298:1 19306:1 19307:3 19316:1 19331:1 19352:1 19374:1 19376:1 19382:2 19385:1 19406:1 19407:2 19409:1 19420:1 19425:1 19434:2 19435:1 19440:3 19449:2 19457:1 19461:1 19466:1 19469:3 19473:1 19480:1 19489:1 19490:1 19497:3 19501:1 19504:1 19521:2 19539:1 19542:1 19550:1 19564:2 19586:1 19587:2 19595:1 19601:1 19603:1 19619:4 19640:1 19661:1 19664:1 19672:1 19675:1 19684:1 19685:1 19692:1 19711:5 19713:1 19715:1 19718:1 19726:1 19730:2 19735:1 19737:1 19757:1 19759:2 19761:2 19772:1 19775:1 19776:1 19789:2 19805:1 19813:1 19817:1 19819:1 19834:1 19840:2 19841:2 19877:1 19879:1 19907:1 19926:3 19936:2 19944:1 19956:1 19962:1 19971:2 20012:3 20014:1 20016:1 20017:2 20020:2 20021:1 20034:1 20037:11 20039:2 20052:1 20070:2 20072:1 20078:1 20103:1 20118:1 20130:1 20131:1 20151:1 20152:1 20153:2 20160:3 20179:2 20185:2 20191:1 20209:1 20210:1 20216:1 20229:1 20249:1 20255:4 20260:2 20261:4 20265:1 20274:2 20304:1 20307:1 20340:1 20342:1 20346:1 20382:3 20383:1 20392:1 20420:1 20423:1 20429:1 20439:1 20450:1 20456:3 20467:3 20474:2 20480:1 20488:1 20489:2 20507:1 20508:1 20514:1 20523:1 20531:1 20532:3 20540:1 20542:1 20579:1 20585:4 20591:1 20595:2 20618:1 20621:4 20630:1 20645:4 20649:1 20651:1 20655:3 20676:1 20677:1 20682:1 20693:1 20695:2 20701:1 20748:1 20749:1 20790:1 20792:10 20797:1 20806:1 20813:1 20821:1 20832:1 20852:1 20860:1 20865:1 20869:1 20878:1 20884:2 20886:1 20906:1 20912:1 20915:1 20922:1 20925:1 20942:1 20946:5 20948:1 20950:2 20952:1 20965:3 20971:2 20976:1 20980:2 20981:1 21013:1 21020:3245 21028:1 21044:1 21046:4 21047:1 21054:2 21066:2 21086:1 21097:1 21108:1 21121:1 21131:1 21136:3 21137:1 21147:1 21177:1 21178:3 21201:2 21212:2 21236:1 21239:5 21242:2 21268:3 21277:1 21280:1 21284:3 21287:1 21299:1 21340:1 21341:1 21346:1 21361:1 21381:1 21384:5 21390:1 21410:1 21414:1 21418:1 21422:1 21442:3 21454:1 21463:2 21474:1 21484:1 21490:1 21494:1 21495:1 21511:1 21539:1 21549:1 21551:2 21554:1 21563:4 21576:1 21586:1 21601:1 21610:1 21619:1 21660:1 21661:3 21675:1 21678:3 21728:1 21749:1 21773:1 21779:2 21789:1 21795:2 21797:1 21803:2 21810:1 21819:4 21832:2 21835:1 21836:4 21841:1 21843:1 21857:4 21867:16 21891:1 21892:1 21894:3 21895:1 21896:20 21909:2 21929:1 21930:5 21932:1 21934:1 21950:2 21965:1 21970:4 21991:1 21995:2 22000:1 22002:6 22004:2 22008:1 22015:1 22029:2 22030:1 22060:1 22068:3 22075:1 22089:1 22101:3 22131:1 22133:1 22136:1 22190:1 22194:1 22198:1 22229:1 22235:1 22244:1 22262:1 22264:13 22272:1 22290:1 22308:1 22317:1 22323:1 22340:1 22352:1 22369:1 22375:1 22377:7 22396:1 22399:1 22404:1 22422:2 22439:1 22443:1 22444:1 22467:1 22474:1 22476:1 22478:1 22483:1 22484:2 22485:1 22495:1 22510:1 22516:1 22534:1 22542:4 22547:1 22556:1 22561:1 22581:3 22582:1 22590:1 22610:3 22616:1 22623:1 22624:1 22644:1 22651:4 22676:2 22680:1 22685:2 22687:2 22701:2 22702:1 22708:7 22737:1 22745:1 22758:1 22775:1 22781:1 22800:15 22809:1 22822:2 22825:2 22844:1 22845:1 22861:1 22863:13 22881:1 22910:1 22922:1 22924:1 22931:1 22933:1 22945:1 22964:2 22999:1 23004:1 23005:1 23024:2 23042:1 23043:4 23045:2 23056:1 23063:1 23105:2 23125:1 23153:5 23165:1 23166:3 23183:1 23185:1 23198:1 23199:1 23209:1 23242:1 23245:1 23264:2 23265:1 23312:2 23330:1 23335:1 23341:1 23369:1 23374:2 23383:1 23399:1 23401:1 23407:2 23439:1 23446:1 23457:1 23466:1 23490:3 23501:1 23512:2 23517:1 23519:1 23521:1 23522:1 23525:1 23532:13 23542:1 23546:3 23549:5 23550:1 23560:2 23569:5 23574:1 23595:4 23597:1 23605:1 23606:1 23638:2 23639:1 23641:1 23653:2 23657:1 23673:2 23681:1 23682:1 23696:1 23711:8 23719:1 23722:2 23730:1 23742:1 23743:1 23765:1 23786:1 23803:1 23808:1 23810:1 23832:2 23836:1 23839:1 23843:1 23849:1 23859:3 23871:1 23873:1 23881:2 23882:1 23886:1 23892:1 23898:1 23900:1 23940:1 23944:2 23948:1 23968:1 23974:1 24003:1 24009:1 24055:1 24063:1 24065:4 24070:2 24073:3 24084:4 24087:1 24094:1 24097:1 24100:1 24135:1 24143:1 24147:1 24148:1 24149:1 24154:2 24164:1 24173:1 24181:1 24195:1 24201:1 24202:1 24216:2 24218:6 24221:3 24240:1 24245:1 24255:1 24271:1 24277:1 24308:2 24310:1 24311:2 24320:2 24328:1 24339:1 24341:1 24344:1 24359:1 24360:4 24363:15 24377:1 24384:2 24385:2 24391:1 24395:1 24396:1 24402:1 24408:1 24412:1 24413:1 24426:1 24427:5 24441:1 24447:1 24472:2 24475:3 24478:1 24482:1 24488:4 24505:1 24520:1 24542:1 24543:4 24556:2 24563:3 24567:1 24623:1 24649:4 24659:1 24661:1 24662:9 24666:2 24670:2 24682:2 24683:1 24687:1 24700:2 24701:1 24702:2 24703:2 24707:1 24714:2 24719:2 24722:1 24732:1 24734:1 24735:1 24747:2 24752:2 24774:2 24809:1 24824:5 24825:1 24834:1 24855:1 24858:1 24861:1 24862:2 24869:2 24872:1 24877:1 24888:1 24894:1 24908:4 24917:1 24923:1 24926:1 24935:1 24979:20 24980:2 24984:1 25005:1 25018:1 25021:1 25026:1 25033:1 25047:1 25057:1 25065:1 25071:4 25092:1 25094:2 25101:1 25103:1 25104:1 25106:1 25110:2 25121:2 25125:1 25126:1 25129:8 25139:2 25148:2 25156:4 25168:2 25190:1 25194:2 25201:1 25206:1 25209:2 25218:1 25233:1 25236:1 25243:1 25245:2 25252:1 25256:1 25270:2 25275:1 25289:10 25303:4 25318:4 25328:1 25340:1 25368:1 25369:1 25387:2 25405:1 25406:1 25423:1 25459:1 25473:3 25480:1 25485:1 25494:1 25501:2 25503:1 25510:1 25526:1 25539:1 25547:1 25561:1 25579:1 25581:1 25588:2 25595:15 25597:1 25598:2 25620:1 25634:2 25643:1 25653:1 25655:1 25667:2 25676:1 25683:1 25689:3 25694:1 25695:2 25705:1 25720:1 25722:1 25732:3 25743:1 25748:1 25754:1 25755:5 25780:1 25788:1 25791:1 25804:1 25808:1 25828:2 25845:1 25850:1 25853:1 25860:1 25871:2 25890:1 25907:1 25912:1 25928:1 25929:2 25936:2 25944:1 25954:1 26001:1 26015:1 26016:1 26017:5 26024:1 26030:1 26043:1 26044:1 26056:1 26064:1 26073:1 26075:2 26094:1 26133:1 26135:2 26149:1 26157:1 26160:2 26165:1 26174:2 26179:4 26184:1 26187:1 26206:1 26213:1 26230:1 26243:1 26254:3 26255:5 26264:1 26265:1 26277:6 26283:1 26287:1 26294:1 26308:1 26309:1 26315:1 26316:3 26319:2 26324:1 26332:1 26352:2 26359:1 26360:2 26364:1 26380:1 26415:4 26421:1 26424:24 26426:1 26498:1 26516:2 26530:1 26532:1 26534:1 26539:1 26552:1 26605:3 26609:1 26612:2 26613:1 26624:1 26635:1 26636:1 26642:1 26655:1 26676:1 26679:1 26694:1 26705:1 26721:1 26724:1 26748:1 26751:2 26758:2 26794:4 26814:1 26818:1 26847:1 26878:1 26880:1 26897:2 26920:1 26924:2 26929:1 26931:1 26934:1 26936:1 26938:2 26952:1 26968:1 26978:1 27003:1 27009:1 27014:1 27021:1 27022:1 27028:1 27032:1 27070:1 27072:1 27085:1 27102:1 27104:1 27112:1 27114:5 27122:1 27132:1 27133:1 27137:1 27141:3 27159:1 27183:1 27198:1 27225:1 27251:3 27262:1 27299:1 27303:5 27321:1 27360:2 27373:1 27377:1 27388:1 27389:1 27397:5 27398:2 27401:1 27419:1 27427:1 27437:2 27439:2 27447:1 27451:3 27456:2 27488:2 27489:2 27491:1 27502:2 27512:1 27516:1 27522:2 27533:2 27552:1 27569:1 27574:1 27575:1 27595:1 27602:4 27612:3 27618:1 27620:1 27627:1 27641:1 27642:1 27651:1 27672:1 27673:1 27676:1 27684:1 27701:1 27704:1 27716:1 27727:1 27728:2 27743:1 27753:1 27757:2 27760:1 27763:1 27769:1 27778:1 27792:1 27804:1 27809:1 27813:1 27817:1 27843:1 27846:1 27851:1 27863:1 27872:2 27881:1 27884:1 27917:3 27933:5 27957:1 27970:1 27985:1 27989:1 27997:1 28007:1 28015:2 28016:1 28021:1 28032:5 28033:1 28043:1 28068:2 28071:1 28074:1 28094:1 28112:1 28132:1 28139:1 28145:4 28174:1 28178:1 28183:1 28234:1 28242:4 28253:1 28255:1 28273:8 28303:1 28305:1 28327:2 28331:5 28335:1 28342:1 28344:1 28348:4 28354:1 28408:1 28414:1 28442:1 28485:1 28499:1 28500:1 28503:2 28506:1 28507:1 28509:8 28512:3 28518:1 28537:1 28540:1 28557:3 28560:1 28563:2 28591:1 28602:1 28608:6 28609:1 28610:1 28625:1 28635:4 28641:5 28642:2 28652:2 28665:1 28666:1 28671:1 28680:1 28697:2 28725:6 28728:1 28734:1 28739:1 28740:1 28753:2 28754:1 28762:1 28778:2 28803:1 28811:3 28828:1 28847:5 28850:1 28870:2 28872:4 28875:1 28902:2 28913:1 28937:1 28945:3 28972:1 28981:1 28994:2 28996:1 28998:4 29029:1 29052:1 29056:1 29060:2 29063:1 29066:1 29080:1 29085:2 29088:2 29102:1 29104:1 29105:1 29109:1 29120:1 29123:1 29128:1 29146:2 29147:1 29155:1 29156:2 29161:1 29165:1 29174:1 29189:6 29195:1 29199:1 29210:1 29212:1 29215:1 29219:2 29234:1 29261:1 29272:1 29291:1 29302:1 29316:1 29320:1 29326:1 29327:1 29332:1 29334:3 29365:10 29374:1 29409:1 29412:1 29417:2 29439:1 29455:1 29472:2 29483:1 29491:1 29498:1 29503:1 29518:3 29519:2 29527:1 29543:1 29546:2 29558:1 29564:1 29574:2 29623:2 29637:3 29653:5 29655:2 29658:1 29665:1 29673:1 29675:2 29676:1 29677:4 29679:9 29683:1 29685:1 29711:1 29732:2 29759:1 29766:1 29771:1 29781:4 29792:1 29797:1 29815:1 29821:3 29842:1 29850:1 29855:1 29861:2 29867:1 29882:1 29917:1 29923:1 29928:1 29956:1 29964:1 29979:1 29992:1 30023:1 30033:1 30051:1 30063:1 30079:1 30085:1 30091:1 30121:1 30123:2 30129:1 30149:1 30160:2 30168:2 30183:2 30198:1 30205:1 30221:1 30235:1 30294:2 30295:2 30308:2 30311:1 30315:1 30334:1 30352:1 30367:1 30371:2 30393:2 30399:5 30410:1 30412:1 30415:1 30418:9 30450:2 30451:2 30452:1 30514:1 30524:24 30525:1 30529:3 30531:1 30540:1 30547:1 30560:4 30592:1 30633:1 30643:2 30647:3 30648:4 30651:2 30656:1 30662:1 30684:1 30698:2 30701:1 30703:1 30706:1 30707:1 30719:2 30721:2 30724:2 30728:1 30738:1 30739:1 30740:1 30741:1 30745:3 30753:1 30757:3 30760:1 30788:2 30800:1 30816:1 30818:2 30827:1 30832:1 30845:1 30846:2 30849:1 30876:1 30879:1 30881:1 30895:1 30901:1 30906:2 30907:1 30916:1 30927:1 30958:1 30960:1 30978:1 30993:2 30997:1 30998:1 31004:1 31021:3 31023:1 31030:2 31088:9 31104:1 31120:1 31132:1 31168:3 31176:3 31192:1 31200:2 31204:1 31207:1 31243:1 31259:1 31262:3 31268:1 31302:2 31309:1 31311:1 31317:1 31318:1 31349:5 31359:4 31389:1 31392:1 31394:1 31400:1 31403:1 31414:1 31418:1 31473:1 31476:1 31477:1 31489:4 31493:1 31502:1 31514:1 31526:3 31529:1 31541:1 31544:27 31545:2 31546:2 31549:2 31552:4 31555:1 31556:1 31566:1 31586:1 31587:13 31597:1 31602:1 31603:1 31613:1 31644:1 31645:1 31646:1 31651:2 31661:1 31662:2 31669:1 31673:2 31681:1 31697:1 31702:4 31713:4 31718:1 31719:2 31743:1 31754:3 31758:1 31759:2 31763:1 31766:1 31784:1 31801:1 31802:1 31806:1 31829:1 31849:1 31854:1 31863:2 31866:1 31900:1 31901:1 31909:1 31932:1 31943:1 31944:1 31951:1 31953:1 31957:2 31959:1 31964:4 31969:2 31971:1 31976:1 31990:1 31994:2 32000:1 32012:1 32028:8 32032:1 32039:4 32041:1 32083:1 32110:3 32115:8 32118:1 32119:1 32125:1 32126:1 32142:1 32146:2 32147:2 32158:1 32163:1 32175:1 32178:2 32179:1 32186:1 32214:3 32225:1 32241:1 32257:1 32263:3 32269:1 32272:1 32275:1 32279:2 32280:1 32303:2 32307:1 32310:5 32314:1 32321:5 32330:1 32342:2 32363:1 32374:1 32381:1 32429:1 32445:1 32471:3 32473:1 32488:1 32505:4 32510:1 32539:2 32543:1 32547:1 32559:1 32582:1 32590:2 32596:1 32605:3 32617:1 32628:1 32642:1 32644:1 32662:1 32676:3 32684:1 32686:1 32701:1 32713:2 32727:1 32733:6 32735:1 32740:1 32755:2 32781:1 32785:2 32787:1 32811:1 32821:5 32831:2 32835:1 32861:1 32891:1 32894:1 32897:1 32898:1 32902:1 32903:1 32905:5 32910:1 32921:1 32950:1 32957:2 32966:1 32971:1 32972:1 32973:1 32977:1 33021:1 33038:1
16 10:1 13:1 26:1 27:2 28:1 41:1 66:1 78:1 85:4 104:1 109:1 145:1 164:1 173:1 176:1 186:1 189:2 191:1 219:1 225:1 232:1 235:1 262:1 269:4 272:1 273:1 285:1 295:2 318:3 338:1 351:4 355:1 375:1 387:1 397:2 398:1 399:3 427:1 434:1 437:1 443:1 459:1 468:2 475:1 484:1 502:3 505:2 509:2 525:1 535:1 542:1 551:2 567:1 575:1 577:1 581:1 584:1 589:1 591:2 628:1 629:1 636:2 649:5 709:1 713:3 723:3 751:2 757:1 762:4 766:1 774:1 779:1 790:1 791:1 793:1 805:1 812:1 821:1 832:1 860:2 869:2 886:1 891:1 908:1 929:1 937:1 944:1 949:2 957:1 962:1 970:1 975:2 984:1 988:2 1000:2 1007:1 1016:1 1035:2 1039:1 1046:2 1050:1 1051:1 1054:1 1058:2 1068:2 1069:2 1078:3 1080:1 1081:3 1082:6 1084:2 1091:2 1113:1 1114:2 1116:2 1136:1 1138:1 1139:6 1143:2 1149:1 1164:1 1170:1 1180:2 1185:1 1202:1 1220:2 1221:1 1240:1 1250:1 1254:1 1259:1 1285:2 1286:1 1288:1 1301:2 1341:1 1352:1 1353:3 1356:1 1359:1 1366:1 1368:1 1369:2 1377:2 1387:1 1388:4 1398:2 1406:1 1412:1 1425:1 1426:3 1457:1 1464:1 1466:2 1469:2 1472:4 1475:1 1487:2 1488:5 1489:2 1490:1 1506:3 1512:1 1524:1 1526:1 1528:1 1535:1 1540:1 1544:1 1546:3 1560:2 1572:1 1574:1 1586:2 1600:2 1630:1 1633:1 1642:1 1676:3 1677:1 1683:1 1689:1 1692:1 1695:2 1711:1 1733:1 1742:6 1750:1 1754:1 1760:6 1767:2 1773:1 1774:2 1775:1 1776:1 1780:3 1787:1 1791:1 1802:4 1822:1 1835:1 1836:1 1839:5 1853:1 1863:2 1867:2 1871:2 1879:2 1881:1 1907:2 1914:1 1919:4 1924:4 1927:2 1928:1 1939:1 1941:1 1944:1 1953:1 1963:5 1966:3 1968:1 1975:1 1976:1 1985:1 1993:2 1998:1 2018:1 2038:1 2039:1 2050:2 2053:1 2054:1 2055:1 2058:1 2069:3 2077:2 2089:1 2097:1 2098:1 2109:1 2122:1 2127:1 2128:1 2134:1 2139:1 2142:1 2143:1 2150:1 2156:2 2165:1 2174:1 2175:1 2180:1 2187:1 2188:1 2192:1 2194:1 2201:1 2211:1 2215:1 2219:1 2226:1 2230:1 2232:2 2234:4 2239:1 2241:1 2243:1 2245:1 2262:1 2263:3 2264:1 2282:1 2291:1 2317:1 2320:1 2323:1 2339:1 2345:1 2354:2 2358:2 2360:1 2361:2 2368:3 2369:1 2407:1 2414:2 2435:1 2438:1 2439:1 2441:3 2443:1 2444:2 2445:1 2446:1 2447:1 2475:4 2501:2 2509:2 2518:1 2531:1 2553:1 2556:1 2566:1 2571:1 2572:3 2584:1 2587:1 2628:2 2629:1 2630:1 2631:2 2632:4 2635:1 2637:1 2638:6 2640:1 2641:1 2643:5 2645:1 2647:4 2651:1 2654:1 2659:1 2660:6 2665:3 2666:1 2668:7 2683:1 2687:2 2691:1 2708:1 2712:1 2728:1 2733:1 2744:1 2754:2 2755:1 2759:1 2762:1 2763:3 2769:1 2773:1 2782:1 2790:2 2793:1 2794:1 2800:2 2808:1 2825:1 2826:1 2845:5 2856:1 2871:1 2883:2 2885:1 2909:1 2914:1 2921:1 2925:1 2927:1 2944:1 2986:1 2994:1 3021:1 3023:1 3062:2 3071:1 3082:4 3092:1 3098:4 3108:1 3117:2 3119:1 3127:1 3130:3 3136:10 3150:1 3151:1 3161:1 3162:1 3164:2 3170:1 3173:1 3177:1 3182:1 3189:3 3193:1 3197:1 3226:2 3237:2 3246:2 3252:1 3254:1 3256:5 3264:2 3314:4 3322:1 3326:1 3328:1 3336:1 3355:11 3363:7 3392:2 3409:1 3426:30 3435:2 3441:1 3449:1 3457:1 3459:1 3473:1 3497:1 3505:2 3532:1 3533:2 3536:1 3542:2 3607:3 3612:1 3613:1 3625:1 3634:1 3639:2 3650:1 3666:1 3688:1 3689:1 3693:1 3698:1 3700:1 3705:1 3710:2 3713:4 3721:1 3726:1 3739:12 3759:1 3764:1 3773:1 3789:1 3809:1 3821:1 3823:7 3863:1 3894:1 3900:1 3906:1 3917:1 3918:2 3931:2 3941:1 3944:1 3959:1 3965:1 3975:3 3983:2 3985:1 3992:1 4003:4 4041:1 4046:1 4049:1 4053:3 4056:1 4076:1 4077:1 4089:3 4091:2 4125:1 4140:1 4144:1 4150:1 4152:4 4156:2 4161:2 4164:1 4165:1 4185:2 4203:1 4210:1 4235:1 4245:2 4256:1 4266:1 4270:2 4271:4 4273:1 4297:1 4317:1 4323:4 4325:43 4331:1 4340:1 4347:1 4361:2 4363:1 4364:9 4367:1 4375:1 4376:2 4377:26 4379:1 4381:4 4391:2 4405:3 4408:1 4418:2 4419:3 4423:2 4425:2 4426:2 4438:2 4439:2 4442:1 4444:1 4463:1 4480:2 4490:1 4491:3 4498:1 4502:1 4507:1 4534:1 4537:1 4539:2 4541:1 4543:1 4544:3 4555:2 4567:2 4570:1 4575:1 4581:1 4587:1 4597:2 4619:1 4622:1 4630:1 4632:2 4633:1 4635:1 4636:1 4643:1 4646:2 4652:1 4655:1 4658:4 4674:4 4678:1 4686:1 4722:1 4730:1 4734:1 4785:1 4793:1 4799:3 4810:1 4813:3 4823:1 4834:2 4852:1 4855:1 4870:2 4876:1 4877:2 4879:1 4880:1 4906:1 4913:2 4924:1 4926:1 4937:1 4966:1 4978:1 4989:1 4999:1 5010:13 5027:1 5044:1 5086:1 5090:2 5098:1 5106:5 5117:1 5120:2 5138:1 5152:7 5155:1 5176:1 5181:2 5195:1 5198:1 5205:1 5258:1 5268:2 5269:1 5298:1 5331:1 5343:2 5363:2 5367:1 5370:2 5381:1 5390:4 5403:1 5410:3 5433:3 5438:2 5439:1 5470:1 5497:1 5509:1 5510:1 5514:1 5516:1 5528:1 5542:1 5545:2 5558:2 5613:1 5617:1 5632:1 5640:2 5643:1 5645:1 5650:1 5659:16 5660:2 5678:1 5699:2 5728:1 5729:2 5744:1 5750:1 5761:1 5784:3 5797:3 5800:1 5802:4 5821:2 5822:3 5823:8 5824:1 5827:1 5828:1 5830:1 5831:2 5833:1 5840:1 5841:22 5842:1 5844:1 5848:2 5849:3 5860:2 5861:1 5877:1 5880:3 5903:1 5936:2 5950:1 5958:1 5964:1 5968:1 5972:1 6050:1 6060:1 6081:3 6082:3 6089:5 6098:1 6125:1 6137:1 6142:1 6157:1 6168:2 6169:22 6177:1 6205:1 6216:3 6221:1 6236:2 6255:3 6301:1 6305:1 6322:1 6339:1 6350:1 6357:2 6371:1 6379:1 6383:1 6394:1 6396:1 6403:1 6404:2 6413:1 6462:1 6463:1 6465:1 6469:1 6473:1 6479:1 6480:1 6483:2 6507:3 6515:1 6518:1 6531:2 6540:1 6542:1 6548:1 6550:2 6557:1 6568:2 6573:1 6574:1 6587:1 6611:1 6617:5 6640:2 6647:1 6669:1 6672:1 6673:1 6678:1 6686:1 6705:1 6707:1 6722:1 6723:1 6725:1 6728:1 6731:1 6733:1 6747:1 6748:1 6753:1 6768:1 6772:1 6775:1 6776:1 6777:1 6808:1 6825:1 6826:1 6843:1 6844:3 6845:1 6868:1 6870:5 6873:1 6883:1 6891:1 6895:1 6897:1 6938:1 6959:2 6992:1 7029:1 7034:3 7035:8 7043:1 7045:2 7068:2 7074:1 7078:1 7079:1 7102:1 7120:1 7128:1 7133:1 7139:1 7140:2 7146:1 7149:2 7150:1 7154:1 7157:1 7161:1 7190:4 7196:1 7200:2 7202:2 7227:1 7232:1 7249:1 7254:3 7257:1 7260:1 7276:5 7278:1 7295:1 7296:1 7300:1 7309:1 7316:1 7321:1 7338:1 7363:1 7382:6 7386:2 7387:1 7390:1 7391:1 7392:1 7394:2 7396:2 7397:1 7401:2 7402:3 7403:5 7409:2 7410:7 7411:1 7412:1 7413:2 7427:1 7451:1 7454:1 7474:3 7477:1 7480:1 7503:1 7508:1 7509:1 7553:1 7555:1 7559:1 7567:1 7579:2 7586:1 7611:1 7613:1 7615:1 7664:1 7681:3 7684:2 7687:1 7690:4 7709:1 7710:5 7716:3 7722:1 7725:1 7731:1 7732:1 7742:2 7763:1 7764:3 7770:2 7790:1 7791:1 7793:1 7805:1 7825:1 7846:1 7849:1 7852:1 7856:1 7869:3 7876:1 7877:2 7879:1 7891:3 7897:1 7900:2 7907:3 7915:3 7921:1 7940:1 7947:3 7955:1 7987:1 7998:1 8005:2 8012:1 8016:1 8019:1 8021:1 8026:2 8032:1 8071:1 8091:2 8093:1 8110:1 8111:2 8127:1 8135:1 8137:2 8138:1 8169:1 8194:2 8215:1 8224:1 8233:1 8251:1 8255:5 8259:1 8263:3 8270:1 8289:1 8299:1 8320:1 8335:1 8358:1 8399:1 8409:1 8425:1 8436:1 8442:1 8490:1 8499:1 8507:1 8512:1 8513:1 8526:5 8575:1 8577:1 8586:3 8604:2 8629:4 8632:1 8674:2 8688:2 8689:1 8711:1 8714:1 8723:2 8753:1 8759:1 8768:1 8770:1 8784:1 8786:1 8791:4 8821:1 8830:4 8831:5 8832:2 8842:1 8850:1 8854:2 8858:2 8861:1 8866:1 8888:1 8890:2 8898:1 8900:1 8901:43 8902:1 8904:1 8908:2 8911:1 8920:11 8923:26 8929:1 8933:1 8936:1 8943:1 8945:1 8952:1 8978:5 8979:1 9001:1 9014:1 9034:1 9051:1 9058:1 9059:2 9068:1 9082:2 9085:1 9091:1 9104:1 9143:1 9149:3 9153:7 9161:1 9167:1 9199:1 9206:1 9209:5 9212:1 9230:1 9234:1 9251:1 9263:1 9272:1 9285:1 9304:1 9341:1 9343:3 9362:1 9366:1 9368:1 9370:7 9386:2 9394:1 9405:1 9416:2 9428:2 9436:1 9444:2 9448:1 9454:1 9468:1 9470:1 9484:18 9511:1 9516:1 9524:2 9525:1 9551:2 9589:1 9594:1 9605:2 9616:1 9630:2 9639:4 9643:1 9664:1 9672:1 9678:3 9687:4 9694:2 9697:1 9709:2 9711:1 9715:4 9728:1 9732:2 9733:1 9734:2 9738:1 9747:1 9748:2 9754:2 9765:1 9777:2 9778:2 9788:1 9790:1 9791:1 9792:1 9809:2 9829:1 9836:1 9841:3 9848:1 9859:1 9866:1 9870:1 9875:1 9878:2 9880:1 9881:3 9882:2 9884:2 9885:5 9888:1 9894:2 9897:2 9899:2 9903:3 9919:1 9925:2 9934:2 9944:1 9945:1 9950:1 9951:1 9959:1 9973:1 9977:2 9984:1 9995:2 10002:3 10019:1 10024:5 10044:1 10053:5 10056:1 10065:1 10067:1 10069:2 10080:1 10088:1 10092:1 10098:1 10121:1 10128:2 10138:1 10139:1 10144:1 10150:3 10161:3 10162:1 10166:1 10181:2 10192:1 10204:1 10208:4 10209:2 10214:4 10216:1 10218:1 10219:4 10221:3 10223:2 10228:1 10229:2 10230:2 10252:3 10254:1 10255:2 10257:4 10270:1 10272:1 10295:2 10302:1 10308:1 10354:1 10359:1 10367:1 10377:2 10386:1 10397:2 10399:2 10410:1 10412:1 10422:1 10438:1 10441:1 10447:1 10454:1 10461:1 10478:1 10485:2 10495:1 10496:1 10520:3 10554:1 10558:2 10563:1 10565:4 10578:1 10580:1 10588:7 10610:2 10615:3 10619:1 10627:1 10634:1 10653:1 10662:1 10671:3 10673:1 10695:1 10696:1 10701:1 10710:1 10726:1 10750:1 10756:1 10768:1 10800:1 10819:1 10845:1 10846:1 10851:3 10857:2 10858:1 10862:1 10864:2 10879:1 10900:2 10903:1 10906:2 10937:1 10939:1 10942:3 10947:1 10958:1 10959:1 10975:1 11009:22 11016:1 11034:1 11039:2 11047:4 11056:2 11059:1 11083:1 11089:1 11091:1 11097:1 11104:2 11124:2 11133:1 11140:1 11154:14 11170:2 11171:1 11176:2 11189:1 11198:1 11210:5 11218:1 11225:1 11226:1 11229:3 11230:1 11232:1 11249:1 11263:1 11267:1 11276:1 11280:1 11316:2 11318:3 11319:1 11336:1 11359:8 11363:2 11366:4 11368:2 11374:3 11375:1 11382:1 11392:2 11400:3 11402:1 11403:1 11408:2 11417:2 11422:4 11426:4 11427:1 11429:1 11437:1 11446:1 11453:1 11464:3 11470:3 11489:1 11492:2 11496:1 11507:1 11513:2 11545:1 11550:1 11551:3 11553:1 11580:12 11582:1 11583:6 11595:1 11597:1 11600:1 11692:1 11697:2 11703:1 11720:1 11728:1 11733:2 11754:4 11761:1 11775:4 11789:1 11796:1 11800:1 11803:1 11826:1 11832:1 11835:1 11859:1 11880:1 11897:2 11914:5 11921:1 11926:1 11932:1 11948:2 11955:1 11967:2 11970:1 11994:2 12001:7 12012:1 12014:1 12043:1 12044:1 12052:2 12072:3 12075:2 12090:1 12098:6 12117:2 12119:4 12120:1 12121:3 12125:1 12128:1 12145:1 12147:1 12150:1 12160:1 12173:1 12174:3 12197:1 12200:1 12211:4 12225:1 12229:2 12241:2 12249:7 12266:1 12314:1 12316:1 12322:1 12345:2 12346:2 12347:1 12352:1 12362:1 12392:1 12396:1 12408:1 12416:1 12459:1 12465:1 12468:1 12476:1 12492:1 12498:2 12499:1 12510:1 12512:7 12531:4 12534:7 12549:2 12553:1 12556:2 12558:1 12562:1 12571:1 12576:2 12589:1 12596:4 12610:1 12623:2 12634:1 12635:2 12642:5 12659:1 12664:3 12671:1 12676:3 12692:1 12703:1 12706:1 12707:1 12740:1 12743:1 12749:1 12753:1 12770:1 12787:1 12807:1 12810:1 12816:1 12818:1 12819:1 12821:1 12825:4 12826:1 12827:1 12850:1 12855:1 12863:1 12867:2 12883:1 12888:1 12892:1 12893:1 12919:2 12951:1 12953:4 12958:1 12960:1 12963:2 12965:1 12970:1 12974:2 12980:1 12981:1 12983:1 12990:1 12991:1 13014:1 13021:4 13052:1 13057:1 13061:3 13063:6 13067:1 13070:1 13081:2 13100:1 13118:1 13122:1 13125:1 13127:1 13135:1 13138:2 13153:1 13176:3 13196:1 13204:1 13207:1 13215:1 13218:5 13234:3 13236:1 13251:2 13252:3 13254:2 13263:1 13284:1 13297:3 13303:1 13318:3 13324:2 13327:1 13328:9 13341:1 13343:1 13348:1 13350:1 13352:1 13354:1 13355:1 13363:1 13364:3 13366:1 13368:7 13369:1 13376:2 13379:7 13382:1 13387:1 13395:1 13397:1 13403:10 13428:2 13447:5 13454:1 13463:2 13467:1 13507:1 13518:4 13528:1 13532:1 13536:1 13537:2 13576:1 13580:1 13590:3 13592:1 13607:1 13616:1 13620:2 13629:1 13645:1 13652:1 13674:1 13690:2 13692:2 13717:2 13737:2 13759:1 13766:1 13780:5 13832:2 13834:2 13847:1 13858:1 13867:1 13872:1 13874:1 13878:1 13887:1 13913:4 13914:4 13916:22 13921:1 13923:6 13933:1 13940:1 13941:2 13956:2 13962:1 13972:2 14002:1 14021:2 14041:1 14043:1 14073:1 14074:1 14082:9 14083:2 14098:1 14105:1 14106:4 14109:2 14130:1 14167:3 14172:1 14198:1 14207:1 14219:2 14222:1 14228:1 14235:1 14248:2 14265:1 14286:2 14292:1 14312:4 14326:2 14329:1 14369:1 14373:3 14379:1 14382:1 14387:1 14388:1 14399:1 14417:1 14441:1 14443:1 14449:1 14456:1 14506:6 14519:1 14520:1 14523:1 14527:2 14528:1 14530:1 14535:1 14546:1 14565:2 14566:4 14588:1 14592:3 14629:1 14660:1 14667:2 14693:1 14705:1 14728:1 14735:2 14746:1 14748:1 14751:2 14775:1 14785:2 14810:1 14819:1 14820:1 14870:1 14894:5 14896:1 14920:1 14926:1 14930:1 14943:1 14948:1 14950:1 14955:1 14960:1 14970:1 14990:2 15002:2 15013:1 15014:1 15015:1 15017:2 15023:1 15035:1 15044:1 15045:2 15080:1 15086:1 15088:2 15140:2 15146:3 15154:1 15155:2 15156:7 15162:4 15164:1 15171:2 15178:3 15182:1 15192:3 15195:1 15198:2 15204:3 15214:1 15234:7 15238:1 15247:1 15250:1 15254:3 15266:2 15267:1 15280:2 15301:2 15317:1 15338:4 15343:1 15353:1 15355:1 15365:1 15380:2 15400:3 15420:1 15423:1 15428:2 15430:6 15441:1 15450:1 15464:2 15465:2 15466:2 15467:1 15480:3 15486:1 15502:1 15503:1 15511:1 15513:1 15514:2 15529:1 15538:2 15561:1 15576:1 15579:2 15581:1 15588:1 15589:1 15597:1 15598:2 15599:2 15600:2 15602:2 15606:1 15627:1 15635:1 15636:1 15642:1 15655:1 15659:1 15660:1 15663:1 15664:1 15677:1 15683:1 15684:1 15688:2 15691:1 15701:2 15706:1 15707:1 15726:1 15739:8 15748:2 15750:1 15754:1 15797:1 15801:1 15821:1 15822:1 15823:2 15827:2 15851:1 15853:2 15856:2 15857:1 15861:5 15891:1 15906:1 15908:1 15918:1 15921:1 15933:2 15934:3 15938:2 15939:6 15950:2 15970:2 15977:3 15997:1 16008:2 16035:2 16037:1 16043:2 16046:1 16051:1 16063:2 16064:1 16070:2 16091:1 16107:1 16118:1 16189:1 16192:1 16195:1 16202:2 16220:1 16246:1 16263:1 16279:1 16288:1 16310:2 16339:1 16341:1 16361:1 16377:1 16382:3 16392:2 16393:1 16401:1 16402:1 16408:1 16412:5 16414:1 16416:1 16424:1 16428:1 16442:2 16444:1 16467:1 16468:1 16483:1 16491:1 16495:1 16506:1 16517:1 16525:2 16535:1 16561:1 16570:1 16583:1 16597:1 16600:1 16603:1 16612:1 16618:1 16621:2 16631:1 16640:4 16661:1 16675:1 16687:2 16692:1 16718:1 16738:1 16775:4 16789:1 16810:1 16828:1 16867:1 16874:1 16885:1 16892:2 16938:1 16939:1 16951:1 16956:1 16970:2 17000:4 17005:3 17007:2 17010:1 17012:1 17013:1 17031:1 17037:1 17059:2 17078:1 17098:2 17099:1 17109:3 17137:1 17150:1 17162:1 17163:2 17167:1 17170:1 17191:1 17194:1 17202:2 17205:1 17207:3 17235:1 17237:1 17240:1 17245:1 17246:1 17255:1 17280:1 17283:1 17293:1 17294:1 17339:1 17347:2 17353:3 17355:4 17360:1 17379:4 17380:1 17385:1 17408:1 17433:4 17435:2 17441:1 17445:1 17448:1 17479:1 17481:1 17488:1 17496:1 17501:3 17508:2 17512:2 17520:2 17546:1 17558:1 17566:2 17591:1 17611:1 17627:1 17633:1 17634:1 17653:1 17662:3 17668:1 17685:9 17687:8 17689:1 17694:1 17722:2 17734:1 17736:2 17740:2 17758:3 17763:1 17776:2 17783:1 17796:1 17803:1 17805:1 17813:1 17826:1 17829:3 17833:1 17835:1 17844:6 17854:3 17863:1 17864:1 17866:2 17873:1 17875:3 17878:1 17881:1 17884:1 17885:5 17889:2 17890:7 17892:1 17896:2 17900:2 17901:1 17902:1 17912:1 17913:6 17919:4 17954:1 17968:2 17996:1 18009:1 18010:1 18012:2 18021:1 18022:2 18024:2 18030:6 18041:1 18060:2 18065:1 18073:1 18076:2 18096:2 18101:3 18127:2 18145:1 18146:1 18149:1 18158:1 18171:1 18175:1 18178:3 18182:1 18187:8 18198:2 18199:2 18217:2 18222:1 18225:4 18243:1 18254:1 18263:22 18268:1 18291:1 18292:1 18300:5 18301:1 18305:1 18324:2 18341:65 18361:3 18366:1 18390:1 18418:1 18424:1 18426:1 18427:3 18442:1 18454:1 18455:1 18456:1 18460:1 18467:2 18468:1 18469:2 18473:2 18474:4 18477:1 18482:2 18486:2 18501:1 18513:1 18516:1 18518:1 18523:1 18526:1 18530:1 18536:1 18543:1 18544:1 18565:1 18567:1 18604:1 18610:5 18634:1 18643:1 18648:2 18649:1 18654:1 18692:1 18696:2 18700:1 18715:1 18762:1 18768:1 18797:1 18798:1 18808:1 18822:2 18826:1 18865:2 18867:1 18870:1 18903:1 18905:1 18908:1 18916:2 18922:4 18923:1 18927:1 18944:1 18946:3 18968:3 18974:1 18985:1 18996:1 18997:1 19000:1 19004:3 19006:1 19008:2 19016:1 19020:1 19027:1 19029:1 19042:3 19047:1 19048:13 19057:1 19059:1 19072:1 19084:2 19094:2 19106:1 19107:2 19136:1 19141:1 19143:2 19165:1 19167:2 19170:3 19177:1 19179:3 19182:1 19185:2 19202:1 19206:1 19222:1 19232:1 19240:1 19243:2 19245:2 19271:2 19272:2 19285:1 19298:1 19306:1 19307:3 19316:1 19331:1 19352:1 19374:1 19376:1 19382:2 19385:1 19406:1 19407:2 19409:1 19420:1 19425:1 19434:2 19435:1 19440:3 19449:2 19457:1 19461:1 19466:1 19469:3 19473:1 19480:1 19489:1 19490:1 19497:3 19501:1 19504:1 19521:2 19539:1 19542:1 19550:1 19564:2 19586:1 19587:2 19595:1 19601:1 19603:1 19619:4 19640:1 19661:1 19664:1 19672:1 19675:1 19684:1 19685:1 19692:1 19711:5 19713:1 19715:1 19718:1 19726:1 19730:2 19735:1 19737:1 19757:1 19759:2 19761:2 19772:1 19775:1 19776:1 19789:2 19805:1 19813:1 19817:1 19819:1 19834:1 19840:2 19841:2 19877:1 19879:1 19907:1 19926:3 19936:2 19944:1 19956:1 19962:1 19971:3 20012:3 20014:1 20016:1 20017:2 20020:2 20021:2 20022:1 20034:1 20037:13 20039:2 20052:1 20070:2 20072:1 20078:1 20103:1 20118:1 20130:1 20131:1 20136:1 20151:1 20152:1 20153:2 20160:3 20179:2 20185:2 20191:1 20209:1 20210:1 20216:1 20229:1 20249:1 20255:4 20260:2 20261:4 20265:1 20274:2 20304:1 20307:1 20340:1 20342:1 20346:1 20382:3 20383:1 20392:1 20420:1 20423:1 20429:1 20437:1 20439:1 20450:1 20456:3 20467:3 20474:2 20480:1 20488:1 20489:2 20507:1 20508:1 20514:1 20523:1 20531:1 20532:3 20540:1 20542:1 20579:1 20585:4 20591:1 20595:2 20618:1 20621:4 20630:1 20645:4 20649:1 20651:1 20655:3 20676:1 20677:1 20682:1 20693:1 20695:2 20701:1 20748:1 20749:1 20790:1 20792:10 20797:1 20806:1 20813:1 20821:1 20832:1 20852:1 20860:1 20865:1 20869:1 20878:1 20880:1 20883:2 20884:2 20886:1 20906:1 20912:1 20915:1 20922:1 20925:2 20942:1 20946:5 20948:1 20950:2 20952:1 20965:3 20971:2 20976:1 20980:2 20981:1 21013:1 21020:3355 21028:1 21044:1 21046:4 21047:1 21054:2 21066:2 21086:1 21097:1 21108:2 21121:1 21131:1 21136:3 21137:1 21147:1 21177:1 21178:3 21201:2 21212:2 21236:1 21239:5 21242:2 21268:3 21277:1 21280:1 21284:3 21287:1 21299:1 21340:1 21341:1 21346:1 21361:1 21381:1 21384:5 21390:1 21410:1 21414:1 21418:1 21422:1 21442:3 21454:1 21463:2 21474:1 21484:1 21490:1 21494:1 21495:1 21511:1 21539:1 21549:1 21551:2 21554:1 21563:4 21576:2 21586:1 21601:1 21610:1 21619:1 21660:1 21661:4 21675:1 21678:3 21728:1 21749:1 21773:1 21779:2 21789:1 21795:2 21797:1 21803:2 21810:1 21819:4 21832:2 21835:1 21836:4 21841:1 21843:1 21857:4 21867:16 21891:1 21892:1 21894:3 21895:1 21896:22 21909:2 21929:1 21930:5 21932:1 21934:1 21950:2 21965:1 21970:4 21991:1 21995:2 22000:1 22002:6 22004:2 22008:1 22015:1 22029:2 22030:1 22060:1 22068:3 22075:1 22089:1 22101:3 22131:1 22133:1 22136:1 22190:1 22194:1 22198:1 22229:1 22235:1 22244:1 22262:1 22264:13 22272:1 22290:1 22308:1 22317:1 22323:1 22340:1 22352:1 22369:1 22375:1 22377:7 22396:1 22399:1 22404:1 22422:2 22439:1 22443:1 22444:1 22462:1 22467:1 22474:1 22476:1 22478:2 22483:1 22484:2 22485:1 22495:2 22510:1 22516:1 22534:1 22542:4 22547:1 22556:1 22561:1 22581:3 22582:1 22590:1 22610:3 22616:1 22623:1 22624:1 22644:1 22651:5 22676:2 22680:1 22685:2 22687:2 22701:2 22702:1 22708:7 22737:1 22745:1 22758:1 22771:1 22775:1 22781:1 22800:15 22809:1 22822:2 22825:2 22844:1 22845:1 22861:1 22863:13 22881:1 22910:1 22922:1 22924:1 22931:1 22933:1 22945:1 22964:2 22999:1 23004:1 23005:1 23024:2 23042:1 23043:4 23045:2 23056:1 23063:1 23105:2 23125:1 23153:5 23165:1 23166:3 23183:1 23185:1 23198:1 23199:1 23209:1 23242:1 23245:1 23264:2 23265:1 23312:2 23330:1 23335:1 23341:1 23369:1 23374:2 23383:1 23399:1 23401:1 23407:2 23439:1 23446:1 23457:1 23466:1 23490:3 23501:1 23512:2 23517:1 23519:1 23521:1 23522:1 23525:1 23532:13 23542:1 23546:3 23549:5 23550:1 23560:3 23569:5 23574:1 23595:4 23597:1 23605:1 23606:1 23638:2 23639:1 23641:1 23653:2 23657:1 23673:2 23681:1 23682:1 23696:1 23711:8 23719:1 23722:2 23730:1 23742:1 23743:1 23765:1 23786:1 23803:1 23808:1 23810:1 23832:2 23836:1 23839:1 23843:1 23849:1 23859:3 23871:1 23873:1 23881:2 23882:1 23886:1 23892:1 23898:1 23900:1 23940:1 23944:2 23948:1 23968:1 23974:1 24003:1 24009:1 24055:1 24063:1 24065:4 24070:2 24073:3 24084:4 24087:1 24094:1 24097:1 24100:1 24135:1 24143:1 24147:1 24148:1 24149:1 24154:2 24164:1 24173:1 24181:1 24188:1 24195:1 24201:1 24202:1 24216:2 24218:6 24221:3 24240:1 24241:1 24245:1 24255:1 24266:1 24271:1 24277:1 24308:2 24310:1 24311:2 24320:2 24328:1 24339:1 24341:1 24344:1 24359:1 24360:4 24363:17 24377:1 24384:2 24385:2 24391:1 24395:1 24396:1 24402:1 24408:1 24412:1 24413:1 24426:1 24427:5 24441:1 24447:1 24472:2 24475:3 24478:1 24482:1 24488:4 24505:1 24520:1 24542:1 24543:4 24556:2 24563:3 24567:1 24623:1 24649:4 24659:2 24661:1 24662:11 24666:2 24670:2 24682:2 24683:1 24687:1 24700:2 24701:1 24702:2 24703:2 24707:1 24714:2 24719:2 24722:1 24732:1 24734:1 24735:1 24747:2 24752:2 24774:2 24809:1 24824:5 24825:1 24834:1 24855:1 24858:1 24861:1 24862:2 24869:2 24872:1 24877:1 24888:1 24894:1 24904:1 24908:4 24917:1 24923:1 24926:1 24935:1 24979:22 24980:2 24984:1 25005:1 25018:1 25021:1 25026:1 25033:1 25047:1 25057:1 25065:1 25071:4 25092:1 25094:2 25101:1 25103:1 25104:1 25106:1 25110:2 25121:2 25125:1 25126:1 25129:8 25139:2 25148:2 25156:4 25168:2 25190:1 25194:2 25201:1 25206:1 25209:2 25218:1 25233:1 25236:1 25243:1 25245:2 25252:1 25256:1 25270:2 25275:1 25289:10 25303:4 25318:4 25328:1 25340:1 25368:1 25369:1 25387:2 25405:1 25406:1 25423:1 25439:1 25459:1 25473:3 25480:1 25485:1 25494:1 25501:2 25503:1 25510:1 25526:1 25539:1 25547:1 25561:1 25579:1 25581:1 25584:1 25588:2 25595:15 25597:1 25598:2 25620:1 25634:2 25643:1 25653:1 25655:1 25667:2 25676:1 25683:1 25689:3 25694:1 25695:2 25705:1 25720:1 25722:1 25732:3 25743:1 25748:1 25754:1 25755:5 25780:1 25788:1 25791:1 25804:1 25808:1 25828:2 25845:1 25850:1 25853:1 25860:1 25871:2 25890:1 25907:1 25912:1 25928:1 25929:2 25936:2 25944:1 25954:1 26001:1 26015:1 26016:1 26017:5 26024:1 26030:1 26043:1 26044:1 26056:2 26064:1 26073:1 26075:2 26094:1 26133:1 26135:2 26149:1 26157:1 26160:2 26165:1 26174:2 26179:4 26184:1 26187:1 26206:1 26213:1 26230:1 26243:1 26254:3 26255:5 26264:1 26265:1 26277:6 26283:1 26287:1 26294:1 26308:1 26309:1 26315:1 26316:3 26319:2 26324:1 26332:1 26352:2 26359:1 26360:2 26364:1 26380:1 26415:5 26421:1 26424:27 26426:1 26498:1 26516:2 26528:1 26530:1 26532:1 26534:1 26539:1 26552:1 26605:3 26609:1 26612:2 26613:1 26624:1 26635:1 26636:1 26642:1 26655:1 26676:1 26679:1 26694:1 26705:1 26721:1 26724:1 26748:1 26751:2 26758:2 26775:1 26794:4 26814:1 26818:1 26847:1 26878:1 26880:1 26897:2 26920:1 26924:2 26929:1 26931:1 26934:1 26936:1 26938:2 26952:1 26968:1 26978:1 27003:1 27009:1 27014:1 27021:1 27022:1 27028:1 27032:2 27070:1 27072:1 27085:1 27102:1 27104:1 27112:1 27114:5 27122:1 27132:1 27133:1 27137:1 27141:3 27159:2 27183:1 27198:1 27225:1 27228:1 27251:3 27262:1 27299:1 27303:5 27321:1 27360:2 27373:1 27377:1 27388:1 27389:1 27397:5 27398:2 27401:1 27419:1 27427:1 27437:2 27439:2 27447:1 27451:3 27456:2 27460:1 27488:2 27489:2 27491:1 27502:2 27512:1 27516:1 27522:2 27533:2 27552:1 27569:1 27574:1 27575:1 27595:1 27602:4 27612:3 27618:1 27620:1 27627:1 27641:1 27642:1 27651:1 27672:1 27673:1 27676:1 27684:1 27701:1 27704:1 27716:1 27727:1 27728:2 27743:1 27753:1 27757:2 27760:1 27763:1 27769:1 27778:1 27792:1 27804:1 27809:1 27813:1 27817:1 27843:1 27846:1 27851:1 27863:1 27872:2 27881:1 27884:1 27917:3 27933:5 27957:1 27970:1 27985:1 27989:1 27997:1 28007:1 28015:2 28016:1 28021:1 28032:5 28033:1 28043:1 28068:2 28071:1 28074:1 28094:1 28112:2 28132:1 28139:1 28145:4 28174:1 28178:1 28183:1 28234:1 28242:4 28253:1 28255:1 28273:8 28303:1 28305:1 28327:2 28331:5 28335:1 28342:1 28344:1 28348:4 28354:1 28408:1 28414:1 28442:1 28485:1 28499:1 28500:1 28503:2 28506:1 28507:2 28509:8 28512:3 28518:1 28537:1 28540:1 28557:3 28560:1 28563:2 28591:1 28602:1 28608:6 28609:1 28610:1 28625:1 28635:4 28641:5 28642:2 28652:2 28665:1 28666:1 28671:1 28680:1 28697:2 28725:6 28728:1 28734:1 28739:1 28740:1 28753:2 28754:1 28762:1 28778:2 28803:1 28811:3 28828:1 28847:5 28850:1 28870:2 28872:4 28875:1 28902:2 28913:1 28937:1 28945:3 28972:1 28981:1 28994:2 28996:1 28998:4 29029:1 29052:1 29056:1 29060:2 29063:1 29066:1 29080:1 29085:2 29088:2 29102:1 29104:1 29105:1 29109:1 29120:1 29123:1 29128:1 29146:2 29147:1 29155:1 29156:2 29161:1 29165:1 29174:1 29189:6 29195:1 29199:1 29210:1 29212:1 29215:1 29219:2 29234:1 29261:1 29272:1 29291:1 29302:1 29316:1 29320:1 29326:1 29327:1 29332:1 29334:3 29365:10 29374:1 29409:1 29412:1 29417:2 29439:1 29455:1 29472:2 29483:1 29491:1 29498:1 29503:1 29518:3 29519:2 29527:1 29543:1 29546:2 29558:1 29564:1 29574:2 29623:2 29637:3 29653:5 29655:2 29658:1 29665:1 29673:1 29675:2 29676:1 29677:4 29679:9 29683:1 29685:1 29711:1 29732:2 29759:1 29766:1 29771:1 29781:4 29792:1 29797:1 29815:1 29821:3 29842:1 29850:1 29855:1 29861:2 29866:1 29867:1 29882:1 29917:1 29923:1 29928:1 29956:1 29964:1 29979:1 29992:1 30023:1 30033:1 30051:1 30063:1 30079:1 30085:1 30091:1 30121:1 30123:2 30129:1 30149:1 30160:2 30168:2 30183:2 30198:1 30205:1 30221:1 30235:1 30294:2 30295:2 30308:2 30311:1 30315:1 30334:1 30352:1 30367:1 30371:2 30393:2 30399:5 30410:1 30412:1 30415:1 30418:9 30450:2 30451:2 30452:1 30506:1 30514:1 30524:27 30525:1 30529:3 30531:1 30540:1 30547:1 30560:4 30592:1 30633:1 30643:2 30647:3 30648:4 30651:2 30656:1 30662:1 30684:1 30698:2 30701:1 30703:1 30706:1 30707:1 30719:2 30721:2 30724:2 30728:1 30738:1 30739:1 30740:1 30741:1 30745:3 30753:1 30757:3 30760:1 30788:2 30800:1 30816:1 30818:2 30827:1 30832:1 30845:1 30846:2 30849:1 30876:1 30879:1 30881:1 30895:1 30901:1 30906:2 30907:2 30916:1 30927:1 30958:1 30960:1 30978:1 30993:2 30997:1 30998:1 31004:1 31021:3 31023:1 31030:2 31088:9 31104:1 31120:1 31132:1 31168:3 31176:3 31192:1 31200:2 31204:1 31207:1 31243:1 31259:1 31262:3 31268:1 31302:2 31309:1 31311:1 31317:1 31318:1 31349:5 31359:4 31389:1 31392:1 31394:1 31400:1 31403:1 31414:1 31418:1 31473:1 31476:1 31477:1 31489:4 31493:1 31502:1 31514:1 31526:3 31529:1 31541:1 31544:27 31545:2 31546:2 31549:2 31552:4 31555:1 31556:1 31566:1 31586:1 31587:13 31597:1 31602:1 31603:1 31613:1 31644:1 31645:1 31646:1 31651:2 31661:1 31662:2 31669:1 31673:2 31681:1 31697:1 31702:5 31713:4 31718:1 31719:2 31743:1 31754:3 31758:1 31759:2 31763:1 31766:1 31784:1 31801:1 31802:1 31806:1 31829:1 31849:1 31854:1 31863:2 31866:1 31900:1 31901:1 31909:1 31932:1 31943:1 31944:1 31951:1 31953:1 31957:2 31959:1 31964:4 31969:2 31971:1 31976:1 31990:1 31994:2 32000:1 32012:1 32028:8 32032:1 32034:2 32039:4 32041:1 32083:1 32110:3 32115:8 32118:1 32119:1 32125:1 32126:1 32142:1 32146:2 32147:2 32158:1 32163:1 32175:1 32178:2 32179:1 32186:1 32214:3 32225:1 32241:1 32257:1 32263:3 32269:1 32272:1 32275:1 32279:2 32280:1 32303:2 32307:2 32310:5 32314:1 32321:5 32330:1 32342:2 32363:1 32374:1 32381:1 32429:1 32445:1 32471:3 32473:2 32488:1 32505:4 32510:1 32539:2 32543:1 32547:1 32559:1 32582:1 32590:2 32596:1 32605:3 32617:1 32628:1 32642:1 32644:1 32662:1 32676:3 32684:1 32686:1 32701:1 32713:2 32727:1 32733:6 32735:1 32740:1 32755:2 32781:1 32785:3 32787:1 32811:1 32821:5 32831:2 32835:1 32861:1 32891:1 32894:1 32897:1 32898:1 32902:1 32903:1 32905:5 32910:1 32921:1 32950:1 32957:2 32966:1 32971:1 32972:1 32973:1 32977:1 33021:1 33038:1
16 10:1 13:1 26:1 27:2 28:1 41:1 66:1 78:1 85:5 104:1 109:1 145:1 164:1 173:1 175:1 176:1 186:1 189:2 191:1 219:1 225:1 232:1 235:1 262:1 269:4 272:1 273:1 285:1 295:2 318:3 338:1 351:4 355:1 375:1 387:1 397:2 398:1 399:3 427:1 434:1 437:1 443:1 459:1 468:2 475:1 484:1 502:3 505:2 509:2 525:1 535:1 542:1 551:2 567:1 575:1 577:1 581:1 584:1 589:2 591:2 628:1 629:1 636:2 649:5 709:1 713:3 716:1 723:3 751:3 757:1 762:4 766:1 774:1 779:1 790:1 791:1 793:1 805:1 812:1 821:1 832:1 860:2 869:2 886:1 891:1 908:1 929:1 937:1 944:1 949:2 957:1 962:1 970:1 975:2 984:1 988:2 1000:2 1007:1 1016:1 1035:2 1039:1 1046:2 1050:1 1051:1 1054:1 1058:2 1068:2 1069:2 1078:3 1080:1 1081:3 1082:6 1084:2 1091:2 1113:1 1114:2 1116:2 1136:1 1138:1 1139:6 1143:2 1149:1 1164:1 1170:1 1180:2 1185:1 1202:1 1220:2 1221:1 1240:1 1250:1 1254:1 1259:1 1285:2 1286:1 1288:1 1301:2 1341:1 1352:1 1353:3 1356:1 1359:1 1366:1 1368:1 1369:2 1377:2 1387:1 1388:4 1398:2 1406:1 1412:1 1425:2 1426:3 1457:1 1464:1 1466:2 1469:2 1472:4 1475:1 1487:2 1488:5 1489:2 1490:1 1506:3 1512:1 1524:1 1526:1 1528:1 1535:1 1540:1 1544:1 1546:3 1560:2 1572:1 1574:1 1586:2 1600:2 1611:1 1630:1 1633:1 1637:1 1642:1 1650:1 1676:3 1677:1 1683:1 1689:1 1692:1 1695:2 1711:1 1733:1 1742:6 1750:1 1754:1 1760:6 1767:2 1773:1 1774:2 1775:1 1776:1 1780:3 1787:1 1791:1 1797:1 1802:4 1822:1 1835:1 1836:1 1839:6 1853:1 1863:2 1867:2 1871:2 1879:2 1881:1 1907:2 1914:1 1919:4 1924:4 1927:2 1928:1 1939:1 1941:1 1944:1 1953:1 1963:5 1966:3 1968:1 1975:1 1976:1 1985:1 1993:2 1998:1 2018:1 2038:1 2039:1 2050:2 2053:1 2054:1 2055:1 2058:1 2069:3 2077:3 2089:1 2097:1 2098:1 2109:1 2122:1 2127:1 2128:1 2134:1 2139:1 2142:1 2143:1 2150:1 2156:2 2165:1 2174:1 2175:1 2180:1 2187:1 2188:1 2192:1 2194:1 2201:2 2211:1 2215:1 2219:1 2226:1 2230:1 2232:2 2234:4 2239:1 2241:1 2243:1 2245:1 2262:1 2263:3 2264:1 2282:1 2291:1 2317:1 2320:1 2323:1 2339:1 2345:1 2354:2 2358:2 2360:1 2361:2 2368:3 2369:1 2407:1 2414:2 2435:1 2438:1 2439:1 2441:3 2443:1 2444:2 2445:1 2446:1 2447:1 2475:4 2501:2 2509:2 2518:1 2531:1 2553:1 2556:1 2566:1 2571:1 2572:3 2584:1 2587:1 2594:1 2628:2 2629:1 2630:1 2631:2 2632:4 2635:1 2636:1 2637:1 2638:6 2640:1 2641:1 2643:5 2645:1 2647:4 2651:1 2654:1 2659:1 2660:6 2665:3 2666:1 2668:7 2673:1 2674:1 2683:1 2687:2 2691:1 2700:1 2708:1 2712:1 2728:1 2733:1 2744:1 2754:2 2755:1 2759:1 2762:1 2763:3 2769:1 2773:1 2782:1 2790:2 2793:1 2794:1 2800:2 2808:1 2825:1 2826:1 2845:5 2856:1 2871:1 2876:2 2883:2 2885:1 2909:1 2914:1 2921:1 2925:1 2927:1 2944:1 2986:2 2994:1 3021:1 3023:1 3062:2 3071:1 3082:4 3092:1 3098:4 3108:1 3117:2 3119:1 3127:1 3130:3 3136:10 3150:1 3151:1 3161:1 3162:1 3164:2 3170:1 3173:1 3177:1 3182:1 3189:3 3193:1 3197:1 3204:1 3226:2 3237:2 3246:2 3252:1 3254:1 3256:5 3264:4 3314:4 3322:1 3326:1 3328:1 3336:1 3355:12 3363:7 3392:2 3409:1 3426:30 3435:2 3441:1 3449:1 3457:1 3459:1 3473:1 3497:1 3505:2 3532:1 3533:2 3536:1 3542:2 3607:3 3612:1 3613:1 3625:2 3634:1 3639:2 3650:1 3666:1 3688:1 3689:1 3693:1 3698:1 3700:1 3705:1 3710:2 3713:4 3721:1 3726:1 3739:12 3759:1 3764:1 3773:1 3789:2 3809:1 3821:1 3823:7 3842:1 3863:1 3894:1 3900:1 3906:1 3917:1 3918:2 3931:2 3941:1 3944:1 3959:1 3965:1 3971:1 3975:3 3983:2 3985:1 3992:1 4003:4 4041:1 4046:1 4049:1 4053:3 4056:1 4075:1 4076:1 4077:1 4089:3 4091:2 4125:1 4140:1 4144:1 4150:1 4152:4 4156:2 4161:2 4164:1 4165:1 4185:2 4203:1 4210:1 4235:1 4245:2 4256:1 4266:1 4270:2 4271:4 4273:1 4297:1 4317:1 4323:4 4325:43 4331:1 4340:1 4347:1 4361:2 4363:1 4364:9 4367:1 4372:1 4375:1 4376:2 4377:26 4379:2 4381:4 4385:1 4391:2 4405:3 4408:1 4418:2 4419:4 4423:2 4425:2 4426:2 4438:2 4439:2 4442:1 4444:1 4463:1 4480:2 4490:1 4491:3 4498:1 4502:1 4507:1 4534:1 4537:1 4539:2 4541:1 4543:1 4544:3 4555:2 4567:2 4570:1 4575:1 4581:1 4587:1 4595:1 4596:1 4597:2 4619:1 4622:1 4630:1 4632:2 4633:1 4635:1 4636:1 4643:1 4646:2 4652:1 4655:1 4658:4 4674:4 4678:1 4686:1 4722:1 4730:1 4734:1 4785:1 4793:1 4799:3 4810:1 4813:3 4823:1 4834:2 4852:1 4855:1 4870:2 4876:1 4877:2 4879:1 4880:1 4906:1 4913:2 4924:1 4926:1 4937:1 4966:1 4978:1 4989:1 4999:1 5010:13 5027:1 5044:1 5086:1 5090:2 5098:1 5106:5 5117:1 5120:2 5138:1 5152:7 5155:1 5176:1 5181:2 5195:1 5198:1 5205:1 5258:1 5268:2 5269:1 5298:1 5331:1 5343:2 5363:2 5367:1 5370:2 5381:1 5390:4 5403:1 5410:4 5433:3 5438:2 5439:1 5470:1 5497:1 5509:1 5510:1 5514:1 5516:1 5528:1 5542:1 5545:2 5558:2 5613:2 5617:1 5632:1 5640:2 5643:1 5645:1 5650:1 5659:17 5660:2 5678:1 5699:2 5728:1 5729:2 5744:1 5750:1 5761:1 5784:3 5797:3 5800:1 5802:4 5821:2 5822:4 5823:8 5824:1 5827:1 5828:1 5830:1 5831:2 5833:1 5840:1 5841:23 5842:1 5844:1 5848:2 5849:3 5860:2 5861:1 5877:1 5880:3 5903:2 5936:2 5950:1 5958:1 5964:1 5968:1 5972:1 6050:1 6060:1 6081:3 6082:3 6089:5 6098:1 6125:1 6137:1 6142:1 6157:1 6168:2 6169:23 6177:1 6205:1 6216:3 6221:1 6236:2 6255:3 6301:1 6305:1 6322:1 6339:1 6350:1 6357:2 6371:1 6379:1 6383:1 6394:1 6396:1 6403:1 6404:2 6413:1 6462:1 6463:1 6465:1 6469:1 6473:1 6479:1 6480:1 6483:2 6493:1 6507:3 6515:1 6518:1 6531:2 6540:1 6542:1 6548:1 6550:2 6557:1 6568:2 6573:1 6574:1 6587:1 6611:1 6617:5 6640:2 6647:1 6669:1 6672:1 6673:1 6678:1 6686:1 6705:1 6707:1 6722:1 6723:1 6725:1 6728:1 6731:1 6733:1 6747:1 6748:1 6753:1 6768:1 6772:1 6775:1 6776:1 6777:1 6808:1 6825:1 6826:1 6843:1 6844:3 6845:1 6868:1 6870:5 6873:1 6883:1 6891:1 6895:1 6897:1 6912:1 6938:1 6959:2 6992:1 7029:1 7034:3 7035:8 7043:1 7045:2 7068:2 7074:1 7078:1 7079:1 7102:1 7120:1 7128:1 7133:1 7139:1 7140:2 7146:1 7149:2 7150:1 7154:1 7157:1 7161:1 7190:4 7196:1 7200:2 7202:2 7227:1 7232:1 7249:1 7254:3 7257:1 7260:1 7276:5 7278:1 7295:1 7296:1 7300:1 7309:1 7316:1 7321:1 7338:1 7363:1 7382:6 7386:2 7387:1 7390:1 7391:1 7392:1 7394:2 7396:2 7397:1 7401:2 7402:3 7403:5 7409:2 7410:7 7411:1 7412:1 7413:2 7427:1 7451:1 7454:1 7474:3 7477:1 7480:1 7493:1 7503:1 7508:2 7509:1 7553:1 7555:1 7559:1 7567:1 7579:2 7586:1 7611:1 7613:1 7615:1 7664:1 7681:3 7684:2 7687:1 7690:4 7709:1 7710:5 7716:3 7722:1 7725:1 7731:1 7732:1 7742:2 7762:1 7763:1 7764:3 7769:1 7770:2 7790:1 7791:1 7793:1 7805:1 7825:1 7846:1 7849:1 7852:1 7856:1 7869:3 7876:2 7877:2 7879:1 7891:3 7897:1 7900:2 7907:3 7915:3 7921:1 7940:1 7947:3 7955:1 7987:1 7998:1 8005:2 8012:1 8016:1 8019:1 8021:1 8026:2 8032:1 8071:1 8091:2 8093:1 8110:1 8111:2 8127:1 8135:1 8137:2 8138:1 8169:1 8194:2 8215:1 8224:1 8233:2 8251:1 8255:5 8259:1 8263:3 8270:1 8289:1 8299:1 8320:1 8335:1 8358:1 8399:1 8409:1 8425:1 8436:1 8442:1 8490:1 8499:1 8507:1 8512:1 8513:1 8526:5 8575:1 8577:1 8586:3 8604:2 8629:4 8632:1 8674:2 8688:2 8689:1 8711:1 8714:1 8723:2 8753:1 8759:1 8768:1 8770:2 8784:1 8786:1 8791:4 8821:1 8830:4 8831:5 8832:3 8842:1 8850:1 8854:2 8858:2 8861:1 8866:1 8888:1 8890:2 8898:1 8900:1 8901:46 8902:1 8904:1 8908:2 8911:1 8920:12 8923:26 8929:1 8933:1 8936:1 8943:1 8945:1 8952:1 8978:5 8979:1 9001:1 9014:1 9034:1 9051:1 9058:1 9059:2 9068:1 9082:2 9085:1 9091:1 9104:1 9143:1 9149:3 9153:7 9161:1 9167:1 9199:1 9206:1 9209:5 9212:1 9230:1 9234:1 9251:1 9263:1 9272:1 9285:1 9304:1 9341:1 9343:3 9359:2 9362:1 9366:1 9368:1 9370:7 9386:2 9394:1 9405:1 9416:2 9428:2 9436:1 9444:2 9448:1 9454:1 9468:1 9470:1 9484:19 9511:1 9516:1 9524:2 9525:1 9551:2 9589:1 9594:1 9605:2 9616:1 9630:2 9639:4 9643:1 9664:1 9672:1 9678:3 9687:4 9694:2 9697:1 9709:2 9711:1 9715:4 9728:1 9732:2 9733:1 9734:2 9738:1 9747:1 9748:2 9754:2 9765:1 9777:2 9778:2 9788:1 9790:1 9791:1 9792:1 9809:2 9829:1 9836:1 9841:3 9848:1 9859:1 9866:1 9870:1 9875:1 9878:2 9880:1 9881:3 9882:2 9884:2 9885:5 9888:1 9890:1 9894:2 9897:2 9899:2 9903:3 9919:1 9925:2 9934:2 9944:1 9945:1 9950:1 9951:1 9959:1 9973:1 9977:2 9984:1 9995:2 10002:3 10019:1 10024:5 10044:1 10053:5 10056:1 10065:1 10067:1 10069:2 10080:1 10088:1 10092:1 10098:1 10121:1 10128:2 10138:1 10139:1 10144:1 10150:3 10161:3 10162:1 10166:1 10181:2 10192:1 10204:1 10208:4 10209:2 10214:4 10216:1 10218:1 10219:4 10221:3 10223:2 10228:1 10229:2 10230:2 10252:3 10254:1 10255:2 10257:4 10270:1 10272:1 10295:2 10302:1 10308:1 10354:1 10359:1 10367:1 10377:2 10386:1 10397:2 10399:2 10410:1 10412:1 10422:1 10438:1 10441:1 10447:1 10454:1 10461:1 10463:1 10478:1 10485:2 10495:1 10496:1 10520:3 10554:1 10558:2 10563:1 10565:4 10578:1 10580:1 10588:7 10610:2 10615:3 10619:1 10627:1 10634:1 10653:1 10662:1 10671:3 10673:1 10695:1 10696:1 10701:1 10710:2 10726:1 10750:1 10756:1 10768:1 10800:1 10819:1 10842:1 10845:1 10846:1 10851:3 10857:2 10858:1 10862:1 10864:2 10879:1 10900:2 10903:1 10906:2 10937:1 10939:1 10942:3 10947:1 10958:1 10959:1 10975:1 11009:23 11016:1 11034:1 11039:2 11047:4 11056:2 11059:1 11083:1 11089:1 11091:1 11097:1 11102:1 11104:2 11124:2 11133:1 11140:1 11154:14 11170:2 11171:1 11176:2 11189:1 11198:1 11210:5 11218:1 11225:1 11226:1 11229:3 11230:1 11232:1 11249:1 11263:1 11267:1 11276:1 11280:1 11316:2 11318:3 11319:1 11336:1 11359:8 11363:2 11366:4 11368:2 11374:3 11375:1 11382:1 11392:2 11400:3 11402:1 11403:1 11408:2 11417:2 11422:4 11426:4 11427:1 11429:1 11437:1 11446:1 11453:1 11464:3 11470:3 11489:1 11492:2 11496:1 11507:1 11513:2 11545:1 11550:1 11551:3 11553:1 11580:12 11582:1 11583:6 11595:1 11597:1 11600:1 11692:1 11697:2 11703:1 11720:1 11728:1 11733:2 11754:4 11761:1 11775:4 11789:1 11796:1 11800:1 11803:1 11826:1 11832:1 11835:1 11859:1 11880:1 11897:2 11914:5 11921:1 11926:1 11932:1 11948:2 11955:1 11967:2 11970:1 11994:2 12001:7 12012:1 12014:1 12043:1 12044:1 12052:2 12072:3 12075:2 12090:1 12098:6 12117:2 12119:4 12120:1 12121:3 12125:1 12128:1 12145:1 12147:1 12150:1 12160:2 12173:1 12174:3 12197:1 12200:1 12211:4 12225:1 12229:2 12241:2 12249:7 12266:1 12314:1 12316:1 12322:1 12345:2 12346:2 12347:1 12352:1 12362:1 12392:1 12396:1 12408:1 12416:1 12459:1 12465:1 12468:1 12476:1 12492:1 12498:2 12499:1 12510:1 12512:7 12531:4 12534:7 12549:3 12553:1 12556:2 12558:1 12562:1 12571:1 12576:2 12589:1 12596:4 12610:1 12623:2 12634:1 12635:2 12642:5 12659:1 12664:3 12671:1 12676:3 12692:1 12703:1 12706:1 12707:1 12740:1 12743:1 12749:1 12753:1 12770:1 12787:1 12807:1 12810:1 12816:1 12818:1 12819:1 12821:1 12825:4 12826:1 12827:1 12850:1 12855:1 12863:1 12867:2 12883:1 12888:1 12892:1 12893:1 12919:2 12951:1 12953:4 12958:1 12960:1 12963:2 12965:1 12970:1 12974:2 12980:1 12981:1 12983:1 12990:1 12991:1 13014:1 13021:4 13052:1 13057:1 13061:3 13063:6 13067:1 13070:2 13081:3 13100:1 13118:1 13122:1 13125:1 13127:1 13130:1 13135:1 13138:2 13153:1 13176:3 13196:1 13204:1 13207:1 13215:1 13218:5 13233:1 13234:3 13236:1 13251:2 13252:3 13254:2 13263:1 13284:1 13297:3 13303:1 13318:3 13324:2 13327:1 13328:9 13341:1 13343:1 13348:1 13350:1 13352:1 13354:1 13355:1 13363:1 13364:3 13366:1 13368:7 13369:1 13376:2 13379:7 13382:1 13387:1 13395:1 13397:1 13403:10 13428:2 13447:5 13454:1 13463:2 13467:1 13507:1 13518:4 13528:1 13532:1 13536:1 13537:2 13576:1 13580:1 13590:3 13592:1 13607:1 13616:1 13620:2 13629:1 13645:1 13652:1 13664:1 13674:1 13690:2 13692:2 13717:2 13737:2 13759:1 13766:1 13780:5 13832:2 13834:2 13847:1 13858:1 13867:1 13872:1 13874:1 13878:1 13887:1 13913:4 13914:4 13916:23 13921:1 13923:6 13933:1 13940:1 13941:2 13956:2 13962:1 13972:2 14002:1 14007:1 14021:2 14038:1 14041:1 14043:1 14073:1 14074:1 14082:9 14083:2 14098:1 14105:1 14106:4 14109:2 14130:1 14156:1 14167:3 14172:1 14198:1 14207:1 14219:2 14222:1 14228:1 14235:1 14248:2 14265:1 14286:2 14292:1 14312:4 14326:2 14329:1 14369:1 14373:3 14379:1 14381:1 14382:1 14387:1 14388:1 14399:1 14417:1 14441:1 14443:1 14449:1 14456:1 14506:6 14519:1 14520:1 14523:1 14527:2 14528:1 14530:1 14535:1 14546:1 14565:2 14566:4 14588:1 14592:3 14629:1 14660:1 14667:2 14693:1 14705:1 14728:1 14735:2 14746:1 14748:1 14751:2 14775:1 14785:2 14810:1 14819:1 14820:1 14870:1 14894:5 14896:1 14907:1 14920:1 14926:1 14930:1 14943:1 14948:1 14950:1 14955:1 14960:1 14970:1 14990:2 14993:1 15002:2 15013:1 15014:1 15015:1 15017:2 15023:1 15035:1 15044:1 15045:2 15080:1 15086:1 15088:2 15140:2 15146:3 15154:1 15155:2 15156:7 15162:4 15164:1 15171:2 15178:3 15182:1 15192:3 15195:1 15198:2 15204:3 15214:1 15234:7 15238:1 15247:1 15250:1 15254:3 15266:2 15267:1 15280:2 15301:2 15317:1 15338:4 15343:1 15353:1 15355:1 15365:1 15380:2 15400:3 15420:1 15423:1 15428:2 15430:7 15441:1 15450:1 15464:2 15465:2 15466:2 15467:1 15468:1 15480:3 15486:1 15502:1 15503:1 15511:1 15513:1 15514:2 15529:1 15538:2 15561:1 15576:1 15579:2 15581:1 15588:1 15589:1 15597:1 15598:2 15599:2 15600:2 15602:2 15606:1 15627:1 15635:1 15636:1 15639:1 15640:1 15642:1 15655:1 15659:1 15660:1 15663:2 15664:1 15677:1 15683:1 15684:1 15688:2 15691:1 15701:2 15706:1 15707:1 15726:1 15739:8 15748:2 15750:1 15754:1 15797:1 15801:1 15821:1 15822:1 15823:2 15827:2 15851:1 15853:2 15856:2 15857:1 15861:5 15891:1 15906:1 15908:1 15918:1 15921:1 15933:2 15934:3 15938:2 15939:6 15950:2 15970:2 15977:3 15997:1 16008:2 16035:2 16037:1 16043:2 16046:1 16051:1 16063:2 16064:1 16070:2 16091:1 16107:1 16118:1 16189:1 16192:1 16195:1 16202:2 16220:1 16246:1 16263:1 16279:1 16288:1 16310:3 16339:1 16341:1 16361:1 16377:1 16382:3 16392:2 16393:1 16401:1 16402:1 16408:1 16412:5 16414:1 16416:1 16424:1 16428:1 16442:2 16444:1 16467:1 16468:1 16483:1 16491:1 16495:1 16506:1 16517:1 16525:2 16535:1 16561:1 16570:1 16583:1 16597:1 16600:1 16603:1 16612:1 16618:2 16621:2 16631:1 16640:4 16661:2 16675:1 16687:2 16692:1 16718:1 16738:1 16775:4 16789:1 16810:1 16828:1 16867:1 16874:1 16885:1 16892:2 16938:1 16939:1 16951:1 16956:1 16970:2 17000:4 17005:3 17007:2 17010:1 17012:1 17013:1 17031:1 17037:1 17059:2 17078:1 17098:2 17099:1 17109:3 17137:1 17150:1 17162:1 17163:2 17167:1 17170:1 17191:1 17194:1 17202:2 17205:1 17207:4 17235:1 17237:1 17240:1 17245:1 17246:1 17255:1 17280:1 17283:1 17293:1 17294:1 17339:1 17347:2 17353:3 17355:4 17360:1 17379:4 17380:1 17385:1 17408:1 17433:4 17435:2 17441:1 17445:1 17448:1 17479:1 17481:1 17488:1 17496:1 17501:3 17508:2 17512:2 17520:2 17546:1 17558:1 17566:2 17584:1 17591:1 17611:1 17627:1 17628:1 17633:1 17634:1 17653:1 17662:3 17668:1 17685:9 17687:8 17689:1 17694:1 17722:2 17734:1 17736:2 17740:2 17758:3 17763:1 17776:2 17783:1 17796:1 17803:1 17805:1 17813:1 17826:1 17829:3 17833:1 17835:1 17844:6 17854:3 17855:1 17863:1 17864:1 17866:2 17873:1 17875:3 17878:1 17881:1 17884:1 17885:5 17889:2 17890:7 17892:1 17896:2 17900:2 17901:1 17902:1 17912:1 17913:6 17919:4 17954:1 17968:2 17996:1 18009:1 18010:1 18012:2 18021:1 18022:2 18024:2 18030:6 18041:1 18060:2 18065:1 18073:1 18076:2 18096:2 18101:3 18127:2 18145:1 18146:1 18149:1 18158:1 18171:1 18175:1 18178:3 18182:1 18184:1 18187:8 18198:2 18199:2 18217:2 18222:1 18225:4 18243:1 18254:1 18263:23 18268:1 18291:1 18292:1 18300:5 18301:1 18305:1 18324:2 18341:66 18361:3 18366:1 18390:1 18418:1 18424:1 18426:1 18427:3 18442:1 18454:1 18455:1 18456:1 18460:1 18467:2 18468:1 18469:2 18473:2 18474:4 18477:1 18482:2 18484:1 18486:2 18501:1 18513:1 18516:1 18518:1 18523:1 18526:1 18530:1 18536:1 18543:1 18544:1 18565:1 18567:1 18604:1 18610:5 18634:1 18643:1 18648:2 18649:1 18654:2 18692:1 18696:2 18700:1 18715:1 18762:1 18768:1 18797:1 18798:1 18808:1 18822:2 18826:1 18865:2 18867:1 18870:1 18903:1 18905:1 18908:1 18916:3 18922:4 18923:1 18927:1 18944:1 18946:3 18968:3 18974:1 18985:2 18996:1 18997:1 19000:1 19004:3 19006:1 19008:2 19010:1 19016:1 19020:1 19027:1 19029:1 19042:3 19047:1 19048:13 19057:1 19059:1 19072:1 19084:2 19094:2 19106:1 19107:2 19136:1 19141:1 19143:2 19165:1 19167:2 19170:3 19177:1 19179:3 19182:1 19185:2 19202:1 19206:1 19222:1 19232:1 19238:1 19240:1 19243:2 19245:2 19271:2 19272:2 19285:1 19298:1 19306:1 19307:3 19316:1 19331:1 19352:1 19374:1 19376:1 19382:2 19385:1 19406:1 19407:2 19409:1 19420:1 19425:1 19434:2 19435:1 19440:3 19449:2 19457:1 19461:1 19466:1 19469:3 19473:1 19480:1 19489:1 19490:1 19497:3 19501:1 19504:1 19521:2 19539:1 19542:1 19550:1 19564:2 19586:1 19587:2 19595:1 19601:1 19603:1 19619:4 19640:1 19661:1 19664:1 19672:1 19675:1 19684:1 19685:1 19692:1 19711:5 19713:1 19715:1 19718:1 19726:1 19730:2 19731:1 19735:1 19737:1 19757:1 19759:2 19761:2 19772:1 19775:1 19776:1 19789:2 19805:1 19813:1 19814:1 19817:1 19819:1 19834:1 19840:2 19841:2 19877:1 19879:2 19907:1 19926:3 19936:2 19944:1 19956:1 19962:1 19971:3 20012:3 20014:1 20016:1 20017:2 20020:2 20021:2 20022:1 20034:1 20037:13 20039:2 20052:1 20070:2 20072:1 20078:1 20103:1 20118:1 20130:1 20131:1 20136:1 20151:1 20152:1 20153:2 20160:3 20179:2 20185:2 20191:1 20209:1 20210:1 20216:1 20229:1 20249:1 20255:4 20260:2 20261:4 20265:1 20274:2 20304:1 20307:1 20340:1 20342:1 20346:1 20382:3 20383:1 20392:1 20420:1 20423:1 20429:1 20437:1 20439:1 20450:1 20456:3 20467:3 20474:2 20480:1 20488:1 20489:2 20507:1 20508:1 20514:1 20523:1 20531:1 20532:3 20540:1 20542:1 20571:1 20579:1 20585:4 20591:1 20595:2 20618:1 20621:4 20630:1 20645:4 20649:1 20651:1 20655:3 20676:2 20677:1 20682:1 20693:1 20695:2 20701:1 20748:1 20749:1 20790:1 20792:11 20797:1 20806:1 20813:1 20821:1 20832:1 20852:1 20860:1 20865:1 20869:1 20878:1 20880:1 20883:3 20884:2 20886:1 20906:1 20912:1 20915:1 20922:1 20925:2 20942:1 20946:5 20948:1 20950:2 20952:1 20965:4 20971:2 20976:1 20980:2 20981:1 21013:1 21020:3509 21028:1 21044:1 21046:4 21047:1 21054:2 21066:2 21086:1 21097:1 21108:2 21121:1 21131:1 21136:3 21137:1 21147:1 21177:1 21178:3 21201:2 21212:2 21236:1 21239:5 21242:2 21268:3 21277:1 21280:1 21284:3 21287:1 21299:1 21340:1 21341:1 21346:1 21361:1 21381:1 21384:5 21390:1 21410:1 21414:1 21418:1 21422:1 21442:3 21454:1 21463:2 21474:1 21484:1 21490:1 21494:1 21495:1 21511:1 21539:1 21549:1 21551:2 21554:1 21563:4 21576:2 21586:1 21601:1 21610:1 21619:1 21660:1 21661:4 21675:1 21678:3 21728:1 21749:1 21773:1 21779:2 21789:1 21795:2 21797:1 21803:2 21810:1 21819:4 21832:2 21835:1 21836:4 21841:1 21843:1 21857:4 21867:16 21891:1 21892:1 21894:3 21895:1 21896:22 21909:2 21929:1 21930:6 21932:1 21934:1 21950:2 21965:1 21970:4 21991:1 21995:2 22000:1 22002:6 22004:2 22008:1 22015:1 22029:2 22030:1 22060:1 22068:3 22075:1 22089:1 22101:3 22131:1 22133:1 22136:1 22190:1 22194:1 22198:1 22229:1 22235:1 22244:1 22262:1 22264:13 22272:1 22290:1 22308:1 22317:1 22323:1 22340:1 22352:1 22369:1 22375:1 22377:7 22396:1 22399:1 22404:1 22422:2 22439:1 22443:1 22444:1 22462:1 22467:1 22474:1 22476:1 22478:2 22483:1 22484:2 22485:1 22495:2 22510:1 22516:1 22534:1 22542:4 22547:1 22556:1 22561:1 22581:3 22582:1 22590:1 22610:3 22616:1 22623:1 22624:1 22644:1 22651:5 22676:2 22680:1 22685:2 22687:2 22701:2 22702:1 22704:1 22708:7 22737:1 22745:1 22758:1 22771:1 22775:1 22781:1 22800:15 22809:1 22822:2 22825:3 22844:1 22845:1 22861:1 22863:13 22881:1 22910:1 22922:1 22924:1 22931:1 22933:1 22945:1 22964:2 22999:1 23004:1 23005:1 23024:2 23042:1 23043:4 23045:2 23056:1 23063:1 23105:2 23125:1 23153:5 23165:1 23166:3 23183:1 23185:1 23198:1 23199:1 23209:1 23242:1 23245:1 23264:2 23265:1 23312:2 23330:1 23335:1 23341:1 23369:1 23374:2 23383:1 23399:1 23401:1 23407:2 23439:1 23441:1 23446:1 23457:1 23466:1 23490:3 23501:1 23512:2 23517:1 23519:1 23521:1 23522:1 23525:1 23532:13 23540:1 23542:2 23546:3 23549:5 23550:1 23560:3 23569:5 23574:1 23595:4 23597:1 23605:1 23606:1 23638:2 23639:1 23641:1 23653:2 23657:1 23673:2 23681:1 23682:1 23696:1 23711:8 23719:1 23722:2 23730:1 23738:1 23742:1 23743:1 23756:1 23765:1 23786:1 23803:1 23808:1 23810:1 23832:2 23836:1 23839:1 23843:1 23849:1 23859:3 23871:1 23873:1 23881:2 23882:1 23886:1 23892:1 23898:1 23900:1 23940:1 23944:2 23948:1 23968:1 23974:1 24003:1 24009:1 24049:1 24055:1 24063:1 24065:4 24070:2 24073:3 24084:4 24087:1 24094:1 24097:1 24100:1 24135:1 24143:1 24147:1 24148:1 24149:1 24154:2 24164:1 24173:1 24181:1 24188:2 24195:1 24201:1 24202:1 24216:2 24218:6 24221:3 24240:1 24241:1 24245:1 24255:1 24266:1 24271:1 24277:1 24308:2 24310:1 24311:2 24320:2 24328:2 24339:1 24341:1 24344:1 24359:1 24360:4 24363:17 24377:1 24384:2 24385:2 24391:1 24395:1 24396:1 24402:1 24408:1 24412:1 24413:1 24426:1 24427:5 24441:1 24447:1 24472:2 24475:3 24478:1 24482:1 24488:4 24505:1 24520:1 24542:1 24543:4 24556:2 24563:3 24567:1 24623:1 24649:4 24659:2 24661:1 24662:11 24666:3 24670:2 24682:2 24683:1 24687:1 24700:2 24701:1 24702:3 24703:2 24707:1 24714:2 24719:2 24722:1 24732:1 24734:1 24735:1 24747:2 24752:2 24774:2 24809:1 24824:5 24825:1 24834:1 24855:1 24858:1 24861:1 24862:2 24869:2 24872:1 24877:1 24888:1 24894:1 24904:1 24908:4 24917:1 24923:1 24926:1 24935:1 24967:1 24979:23 24980:2 24984:1 25005:1 25018:1 25021:1 25026:2 25033:1 25047:1 25057:1 25065:1 25071:4 25092:1 25094:2 25101:1 25103:1 25104:1 25106:1 25110:2 25121:2 25125:1 25126:1 25129:8 25139:2 25148:2 25156:4 25168:2 25190:1 25194:2 25201:1 25206:1 25209:2 25218:1 25233:1 25236:1 25243:1 25245:2 25252:1 25256:1 25270:2 25275:1 25289:10 25303:4 25313:1 25318:4 25328:1 25340:1 25368:1 25369:1 25387:2 25405:1 25406:1 25423:1 25439:1 25459:1 25473:3 25480:1 25485:1 25494:1 25501:2 25503:1 25510:1 25526:1 25535:1 25539:1 25547:1 25561:1 25579:1 25581:1 25584:1 25588:2 25595:15 25597:1 25598:2 25620:1 25634:2 25643:1 25653:1 25655:1 25667:2 25676:1 25683:1 25689:3 25694:1 25695:2 25697:1 25705:1 25720:1 25722:1 25732:3 25743:1 25748:1 25754:1 25755:5 25780:1 25788:1 25791:1 25804:1 25808:1 25828:2 25845:1 25850:1 25853:1 25860:1 25871:2 25890:1 25907:1 25912:1 25928:1 25929:2 25936:2 25944:1 25954:1 26001:1 26015:1 26016:1 26017:5 26024:1 26030:1 26043:1 26044:1 26056:2 26064:1 26073:1 26075:2 26094:1 26104:1 26133:1 26135:2 26149:1 26157:1 26160:2 26165:1 26174:2 26179:4 26184:1 26187:1 26206:1 26213:1 26230:2 26243:1 26254:3 26255:5 26264:1 26265:1 26277:6 26283:1 26287:1 26294:1 26308:1 26309:1 26315:1 26316:3 26319:2 26324:1 26332:1 26352:2 26359:1 26360:2 26364:1 26380:1 26415:5 26421:1 26424:27 26426:1 26498:1 26516:2 26528:1 26530:2 26532:1 26534:1 26539:1 26552:1 26605:3 26609:1 26612:2 26613:1 26624:1 26635:1 26636:1 26642:1 26655:1 26676:1 26679:1 26694:1 26705:1 26721:1 26724:1 26748:1 26751:2 26758:2 26775:1 26794:4 26814:1 26818:1 26847:1 26878:1 26880:1 26897:2 26920:1 26924:2 26929:1 26931:2 26934:1 26936:1 26938:2 26952:1 26968:1 26978:1 27003:1 27009:1 27014:1 27021:1 27022:1 27028:1 27032:2 27070:1 27072:1 27085:1 27102:1 27104:1 27112:1 27114:6 27122:1 27132:1 27133:1 27137:1 27141:3 27159:2 27183:1 27198:1 27225:1 27228:1 27242:1 27251:3 27262:1 27299:1 27303:5 27321:1 27330:1 27360:2 27373:1 27377:1 27388:1 27389:1 27397:5 27398:2 27401:1 27419:1 27427:1 27437:2 27439:2 27447:1 27451:3 27456:2 27460:1 27488:2 27489:2 27491:1 27502:2 27512:1 27516:1 27522:2 27533:2 27552:1 27569:1 27574:1 27575:1 27595:1 27602:4 27612:3 27618:1 27620:1 27627:1 27641:1 27642:1 27651:1 27672:1 27673:1 27676:1 27684:1 27701:1 27704:1 27716:1 27727:1 27728:2 27743:1 27753:1 27757:2 27760:1 27763:1 27769:1 27778:1 27792:1 27804:1 27809:1 27813:1 27817:1 27843:1 27846:1 27851:1 27863:1 27872:2 27881:1 27884:1 27917:3 27933:5 27957:1 27970:1 27985:1 27989:1 27997:1 28007:1 28015:2 28016:1 28021:1 28032:5 28033:1 28043:1 28068:2 28071:1 28074:1 28094:1 28112:2 28132:1 28139:1 28145:4 28174:1 28178:1 28183:1 28234:1 28242:4 28253:1 28255:1 28273:8 28277:1 28303:1 28305:1 28327:2 28331:5 28335:1 28342:1 28344:1 28348:4 28354:1 28408:1 28414:1 28442:1 28485:1 28499:1 28500:1 28503:2 28506:1 28507:2 28509:8 28512:3 28518:1 28537:1 28540:1 28557:3 28560:1 28563:2 28591:1 28602:1 28608:6 28609:1 28610:1 28625:1 28635:4 28641:5 28642:2 28652:2 28665:1 28666:1 28671:1 28680:1 28697:2 28725:6 28728:1 28734:1 28739:1 28740:1 28753:2 28754:1 28762:1 28778:2 28803:1 28811:3 28828:1 28847:5 28850:1 28870:2 28872:4 28875:1 28902:2 28913:1 28937:1 28945:3 28972:1 28981:1 28994:2 28996:1 28998:4 29029:1 29052:1 29056:1 29060:2 29063:1 29066:1 29080:1 29085:2 29088:2 29102:1 29104:1 29105:1 29109:1 29120:1 29123:1 29128:1 29146:2 29147:1 29155:1 29156:2 29161:1 29165:1 29174:1 29189:6 29195:1 29199:1 29210:1 29212:1 29215:1 29219:2 29234:1 29261:1 29272:2 29291:1 29302:1 29316:1 29320:1 29326:1 29327:1 29332:1 29334:3 29365:11 29374:1 29409:1 29412:1 29417:2 29439:1 29455:1 29472:2 29483:1 29491:1 29498:1 29503:1 29518:3 29519:2 29527:1 29543:1 29546:2 29558:1 29564:1 29574:2 29623:2 29637:3 29653:5 29655:2 29658:1 29665:1 29673:1 29675:2 29676:1 29677:4 29679:9 29683:1 29685:1 29711:1 29732:2 29759:1 29766:1 29771:1 29781:4 29792:1 29797:1 29815:1 29821:3 29842:1 29850:1 29855:1 29861:2 29866:1 29867:1 29882:1 29910:1 29917:1 29923:1 29928:1 29956:1 29964:1 29979:1 29992:1 30023:1 30033:1 30051:1 30063:1 30079:1 30085:1 30091:1 30121:1 30123:2 30129:1 30149:1 30160:2 30168:2 30183:2 30198:1 30205:1 30221:1 30235:1 30240:1 30294:2 30295:2 30308:2 30311:1 30315:1 30334:1 30352:1 30367:1 30371:2 30393:2 30399:5 30410:1 30412:1 30415:1 30418:9 30450:2 30451:2 30452:1 30506:1 30514:1 30524:27 30525:1 30529:3 30531:1 30540:1 30547:1 30560:5 30592:1 30633:1 30643:2 30647:3 30648:4 30651:2 30656:1 30662:1 30667:1 30684:1 30698:2 30701:1 30703:1 30706:1 30707:1 30719:2 30721:2 30724:2 30727:2 30728:1 30738:1 30739:1 30740:1 30741:1 30745:3 30753:1 30757:3 30760:1 30788:2 30800:1 30816:1 30818:2 30827:1 30832:1 30845:1 30846:2 30849:1 30876:1 30879:1 30881:1 30895:1 30901:1 30906:2 30907:2 30916:1 30927:1 30958:1 30960:1 30978:1 30985:1 30993:2 30997:1 30998:1 31004:1 31007:1 31021:3 31023:1 31030:2 31057:1 31088:9 31104:1 31120:1 31132:1 31168:3 31176:3 31192:1 31200:2 31204:1 31207:1 31243:1 31259:1 31262:3 31268:1 31302:2 31309:1 31311:1 31317:1 31318:1 31349:5 31359:4 31389:1 31392:1 31394:1 31400:2 31403:1 31414:1 31418:1 31473:1 31476:1 31477:1 31489:4 31493:1 31502:1 31514:1 31526:3 31529:1 31541:1 31544:28 31545:2 31546:2 31549:3 31552:4 31555:1 31556:1 31566:1 31586:1 31587:13 31597:1 31602:1 31603:1 31613:1 31644:1 31645:1 31646:1 31651:2 31661:1 31662:2 31669:1 31673:2 31681:1 31691:1 31697:1 31702:6 31713:4 31718:1 31719:2 31743:1 31754:3 31758:1 31759:2 31763:1 31766:1 31784:1 31786:1 31801:1 31802:1 31806:1 31829:1 31834:1 31849:1 31854:1 31863:2 31866:1 31900:1 31901:1 31909:1 31932:1 31943:1 31944:1 31951:1 31953:1 31957:2 31959:1 31964:4 31969:2 31971:1 31976:1 31989:1 31990:1 31994:2 32000:1 32012:1 32028:8 32032:1 32034:3 32039:4 32041:1 32083:1 32106:1 32110:3 32115:8 32118:1 32119:1 32125:1 32126:1 32142:1 32146:2 32147:2 32158:1 32163:1 32175:1 32178:2 32179:1 32186:1 32214:3 32225:1 32241:1 32257:1 32263:3 32269:1 32272:1 32275:2 32279:2 32280:1 32303:2 32307:2 32310:5 32314:1 32321:5 32330:1 32342:2 32363:1 32374:1 32381:1 32429:1 32445:1 32471:3 32473:2 32488:1 32505:4 32510:1 32539:2 32543:1 32547:1 32559:1 32582:1 32590:2 32596:1 32605:3 32617:1 32628:1 32642:1 32644:1 32662:1 32676:3 32681:1 32684:1 32686:1 32688:1 32701:1 32713:2 32727:1 32732:1 32733:6 32735:1 32740:1 32755:2 32781:1 32785:3 32787:1 32811:1 32821:5 32831:2 32835:1 32861:1 32891:1 32894:1 32897:1 32898:1 32902:1 32903:1 32905:5 32910:1 32921:1 32950:1 32957:2 32966:1 32971:1 32972:1 32973:1 32977:1 33021:1 33035:1 33038:1
16 10:1 13:1 26:1 27:2 28:1 41:1 66:1 78:1 84:1 85:5 104:1 109:1 145:1 164:1 173:1 175:1 176:2 186:1 189:2 191:1 219:1 225:1 232:2 235:1 262:1 269:4 272:1 273:1 285:1 295:2 318:3 338:1 351:4 355:1 375:1 387:1 397:2 398:1 399:3 418:1 427:1 434:1 437:1 443:1 459:1 468:2 475:1 484:1 502:3 505:2 509:2 525:1 535:1 542:1 551:2 567:1 575:1 577:1 581:1 584:1 589:2 591:2 628:1 629:1 636:2 649:5 709:1 713:3 716:1 723:3 751:3 757:1 762:4 766:1 774:1 779:1 790:1 791:1 793:1 805:1 812:1 821:1 832:1 860:2 869:2 886:1 891:1 908:1 929:1 937:1 944:1 949:2 957:1 962:1 970:1 975:3 984:1 988:2 991:1 1000:2 1007:1 1016:1 1035:2 1039:1 1046:2 1050:1 1051:1 1054:1 1058:2 1068:2 1069:2 1078:3 1080:1 1081:3 1082:6 1084:2 1091:2 1113:1 1114:2 1116:2 1136:1 1138:1 1139:6 1143:2 1149:1 1164:1 1170:1 1180:2 1185:1 1202:1 1220:2 1221:1 1240:1 1250:1 1254:1 1259:1 1285:2 1286:1 1288:1 1301:2 1331:1 1341:1 1352:1 1353:3 1356:1 1359:1 1366:1 1368:1 1369:2 1377:2 1387:1 1388:4 1398:2 1406:1 1409:1 1412:1 1425:2 1426:3 1457:1 1464:1 1466:2 1469:2 1472:4 1475:1 1487:2 1488:5 1489:2 1490:1 1506:3 1512:1 1524:1 1526:1 1528:1 1535:1 1540:1 1544:1 1546:3 1560:2 1572:1 1574:1 1586:2 1600:2 1611:1 1630:1 1633:1 1637:1 1642:1 1650:1 1676:3 1677:1 1683:1 1689:1 1692:1 1695:2 1711:1 1733:1 1742:6 1750:1 1754:1 1760:6 1767:2 1773:1 1774:2 1775:1 1776:1 1780:3 1787:1 1791:1 1797:1 1802:4 1822:1 1835:1 1836:1 1839:8 1853:1 1863:3 1865:1 1866:1 1867:2 1871:2 1879:2 1881:1 1907:2 1914:1 1919:4 1924:4 1927:2 1928:1 1939:1 1941:1 1944:1 1953:1 1963:5 1966:3 1968:1 1975:1 1976:1 1985:1 1993:2 1998:1 2018:1 2038:1 2039:1 2050:2 2053:1 2054:1 2055:1 2058:1 2069:3 2077:4 2089:1 2097:1 2098:1 2109:1 2122:1 2127:1 2128:1 2134:1 2139:1 2142:1 2143:1 2150:1 2156:2 2165:1 2174:1 2175:1 2180:1 2187:1 2188:1 2192:1 2194:1 2201:3 2211:1 2215:1 2219:1 2226:1 2230:1 2232:2 2234:4 2239:1 2241:1 2243:1 2245:1 2262:1 2263:3 2264:1 2282:1 2291:1 2317:1 2320:1 2323:1 2339:1 2345:1 2354:2 2358:2 2360:1 2361:2 2368:3 2369:1 2407:1 2414:2 2435:1 2438:1 2439:1 2441:3 2443:1 2444:2 2445:1 2446:1 2447:1 2475:4 2501:2 2509:2 2518:1 2531:1 2553:1 2556:1 2566:1 2571:1 2572:3 2584:1 2587:1 2594:1 2628:2 2629:1 2630:1 2631:2 2632:4 2635:1 2636:2 2637:1 2638:6 2640:1 2641:1 2643:5 2645:1 2647:4 2651:1 2654:1 2659:1 2660:6 2665:3 2666:1 2668:7 2673:1 2674:1 2683:1 2687:2 2691:1 2695:1 2700:1 2708:1 2712:1 2728:1 2733:1 2744:1 2754:2 2755:1 2759:1 2762:1 2763:3 2769:1 2773:1 2782:1 2790:2 2793:1 2794:1 2800:2 2808:1 2825:1 2826:1 2845:5 2856:1 2871:1 2876:2 2883:2 2885:1 2909:1 2914:1 2921:1 2925:1 2927:1 2944:1 2986:2 2994:1 3021:1 3023:1 3062:2 3071:1 3082:4 3092:1 3098:4 3108:1 3117:2 3119:1 3127:1 3130:3 3136:10 3150:1 3151:1 3161:1 3162:1 3164:2 3170:1 3173:1 3177:1 3182:1 3189:4 3193:1 3197:1 3204:1 3226:2 3237:2 3246:2 3252:1 3254:1 3256:5 3264:4 3314:4 3322:1 3326:1 3328:1 3336:1 3339:1 3355:13 3363:7 3381:1 3392:2 3409:1 3426:30 3435:2 3441:1 3449:1 3457:1 3459:1 3473:1 3488:1 3497:1 3505:2 3532:1 3533:2 3536:1 3542:2 3607:3 3612:1 3613:1 3625:3 3634:1 3639:2 3650:1 3666:1 3688:1 3689:1 3693:1 3697:1 3698:1 3700:1 3705:1 3710:2 3713:4 3721:1 3726:1 3739:13 3759:1 3764:1 3773:1 3789:2 3809:1 3821:1 3823:7 3842:1 3863:1 3894:1 3900:1 3906:1 3917:1 3918:2 3931:2 3941:1 3944:1 3959:1 3965:1 3971:2 3975:3 3983:2 3985:1 3992:1 4003:4 4041:1 4042:1 4046:1 4049:1 4053:3 4056:1 4075:1 4076:1 4077:1 4089:3 4091:2 4125:1 4140:1 4144:1 4150:1 4152:4 4156:2 4161:2 4164:1 4165:1 4185:2 4203:1 4210:1 4235:1 4245:2 4256:1 4266:1 4270:2 4271:4 4273:1 4297:1 4317:1 4323:4 4325:44 4331:1 4340:1 4347:1 4361:2 4363:1 4364:9 4367:1 4372:1 4375:1 4376:2 4377:27 4379:2 4381:6 4385:1 4391:2 4405:3 4408:1 4418:2 4419:4 4423:2 4425:2 4426:2 4438:2 4439:2 4442:1 4444:1 4463:1 4480:2 4490:1 4491:3 4498:1 4502:1 4507:1 4534:1 4537:1 4539:2 4541:1 4543:1 4544:3 4555:2 4567:2 4570:1 4575:1 4581:1 4587:1 4595:1 4596:1 4597:2 4619:1 4622:1 4630:1 4632:2 4633:1 4635:1 4636:1 4643:1 4646:2 4652:1 4655:1 4658:4 4674:4 4678:1 4686:1 4722:1 4730:1 4734:1 4755:1 4785:1 4793:1 4799:3 4810:1 4813:3 4823:1 4834:2 4852:1 4855:1 4870:2 4876:1 4877:2 4879:1 4880:1 4906:1 4913:2 4924:1 4926:1 4937:1 4966:1 4978:1 4989:1 4999:1 5010:14 5027:1 5044:1 5086:1 5090:2 5098:1 5106:5 5117:1 5120:2 5138:1 5152:7 5155:1 5166:1 5176:1 5181:2 5195:1 5198:1 5205:1 5258:1 5268:2 5269:1 5298:1 5331:1 5343:2 5363:2 5367:1 5370:2 5381:1 5390:4 5403:1 5407:1 5410:4 5433:3 5434:1 5438:2 5439:1 5470:1 5497:1 5509:1 5510:1 5514:1 5516:1 5528:1 5542:1 5545:2 5558:2 5613:2 5617:1 5632:1 5640:2 5643:1 5645:1 5650:1 5659:17 5660:2 5678:1 5699:2 5728:1 5729:2 5744:1 5750:1 5761:1 5770:1 5784:3 5797:3 5800:1 5802:4 5821:2 5822:4 5823:8 5824:1 5827:1 5828:1 5830:1 5831:2 5833:1 5840:1 5841:24 5842:1 5844:1 5848:2 5849:3 5860:2 5861:1 5877:1 5880:3 5903:2 5936:2 5950:1 5958:1 5964:1 5968:1 5972:1 5977:1 6050:1 6056:1 6060:1 6081:3 6082:3 6089:5 6098:1 6125:1 6137:1 6142:1 6157:1 6168:2 6169:24 6177:1 6205:1 6215:1 6216:3 6221:1 6236:2 6255:3 6300:1 6301:1 6305:1 6322:1 6339:1 6350:1 6357:2 6371:1 6379:1 6383:1 6394:1 6396:1 6403:1 6404:2 6413:1 6462:1 6463:1 6465:1 6469:1 6473:1 6479:1 6480:1 6483:2 6493:1 6507:4 6515:1 6518:1 6531:2 6540:1 6542:1 6548:1 6550:2 6557:1 6568:2 6573:1 6574:1 6587:1 6611:1 6617:5 6640:2 6647:1 6669:1 6672:1 6673:1 6678:1 6686:1 6705:1 6707:1 6722:1 6723:1 6725:1 6728:1 6731:1 6733:1 6747:1 6748:1 6753:1 6768:1 6772:1 6775:1 6776:1 6777:1 6808:1 6825:1 6826:1 6843:1 6844:3 6845:1 6868:1 6870:5 6873:1 6883:1 6891:1 6895:1 6897:1 6912:1 6938:1 6959:2 6992:1 7029:1 7034:3 7035:9 7043:1 7045:2 7068:2 7074:1 7078:1 7079:1 7102:1 7120:1 7128:1 7133:1 7139:1 7140:2 7146:1 7149:2 7150:1 7154:1 7157:1 7161:1 7190:4 7196:1 7200:2 7202:2 7227:1 7232:1 7249:1 7254:3 7257:1 7260:1 7276:5 7278:1 7295:1 7296:1 7300:1 7309:1 7316:1 7321:1 7338:1 7363:1 7382:6 7386:2 7387:1 7390:1 7391:1 7392:1 7394:2 7396:2 7397:1 7401:2 7402:3 7403:5 7409:2 7410:7 7411:1 7412:1 7413:3 7427:1 7441:1 7451:1 7454:1 7474:3 7477:1 7480:1 7493:1 7503:1 7508:2 7509:1 7553:1 7555:1 7559:1 7567:1 7579:2 7586:1 7611:1 7613:1 7615:1 7664:1 7681:3 7684:2 7687:1 7690:4 7709:1 7710:5 7716:3 7722:1 7725:1 7731:1 7732:1 7742:2 7762:1 7763:1 7764:3 7769:1 7770:2 7790:1 7791:1 7793:1 7805:1 7825:1 7846:1 7849:1 7852:1 7856:1 7869:3 7876:3 7877:2 7879:1 7891:3 7897:1 7900:2 7907:4 7915:3 7921:1 7940:1 7947:3 7955:1 7987:1 7998:1 8005:2 8012:1 8016:1 8019:1 8021:1 8026:2 8032:1 8071:1 8091:2 8093:1 8110:1 8111:2 8127:1 8135:1 8137:2 8138:1 8169:1 8194:2 8215:1 8224:1 8233:2 8251:1 8255:5 8259:1 8263:3 8266:1 8270:1 8289:1 8299:1 8320:1 8335:1 8358:1 8399:1 8409:1 8425:1 8436:1 8442:1 8490:1 8499:1 8507:1 8512:1 8513:1 8526:5 8575:1 8577:1 8586:3 8604:2 8629:4 8632:1 8674:2 8679:1 8688:2 8689:1 8711:1 8714:1 8723:2 8753:1 8759:1 8768:1 8770:2 8784:1 8786:1 8791:4 8821:1 8830:4 8831:5 8832:3 8842:1 8850:1 8854:2 8858:2 8861:1 8866:1 8888:1 8890:2 8898:1 8900:1 8901:47 8902:1 8904:1 8908:2 8911:1 8920:13 8923:26 8929:1 8933:1 8936:1 8943:1 8945:1 8952:1 8978:5 8979:1 9001:1 9014:1 9034:1 9051:1 9058:1 9059:2 9068:1 9082:3 9085:1 9091:1 9104:1 9143:1 9149:4 9153:7 9161:1 9167:1 9199:1 9206:1 9209:5 9212:1 9230:1 9234:1 9251:1 9263:1 9272:1 9285:1 9304:1 9341:1 9343:3 9359:2 9362:1 9366:1 9368:1 9370:7 9386:2 9394:1 9405:1 9416:2 9428:2 9436:1 9444:2 9448:1 9454:1 9468:1 9470:1 9484:21 9501:1 9511:1 9516:2 9524:2 9525:1 9551:2 9589:1 9594:1 9605:2 9616:1 9630:2 9639:4 9643:1 9664:1 9672:1 9678:3 9687:4 9694:3 9697:1 9709:2 9711:2 9715:4 9728:1 9732:2 9733:1 9734:2 9738:1 9747:1 9748:2 9754:2 9765:1 9777:2 9778:2 9785:1 9788:1 9790:1 9791:1 9792:1 9809:2 9829:1 9836:1 9841:3 9848:1 9859:1 9866:1 9870:1 9875:1 9878:2 9880:1 9881:3 9882:2 9884:2 9885:5 9888:1 9890:1 9894:2 9897:2 9899:2 9903:3 9919:1 9925:3 9934:2 9944:1 9945:1 9950:1 9951:1 9959:1 9973:2 9977:2 9984:1 9995:2 10002:3 10019:1 10024:5 10044:1 10053:5 10056:1 10065:1 10067:1 10069:2 10080:1 10088:1 10092:1 10098:1 10121:1 10128:2 10138:1 10139:1 10144:1 10150:3 10161:3 10162:1 10166:1 10181:2 10192:1 10204:1 10208:5 10209:2 10214:4 10216:1 10218:1 10219:4 10221:3 10223:2 10228:1 10229:2 10230:2 10252:3 10254:1 10255:2 10257:4 10270:1 10272:1 10295:2 10302:1 10308:1 10354:1 10359:1 10367:1 10377:2 10386:1 10397:2 10399:2 10410:1 10412:1 10422:1 10438:1 10441:1 10447:1 10454:1 10461:1 10463:1 10478:1 10485:2 10495:1 10496:1 10520:4 10554:1 10558:2 10563:1 10565:4 10578:1 10580:1 10588:7 10610:2 10615:3 10619:1 10627:1 10634:1 10653:1 10662:1 10671:3 10673:1 10695:1 10696:1 10701:1 10710:2 10726:1 10750:1 10756:1 10768:1 10800:1 10819:1 10842:1 10845:1 10846:1 10851:3 10857:2 10858:1 10862:1 10864:2 10879:1 10900:2 10903:1 10906:2 10937:1 10939:1 10942:3 10947:1 10958:1 10959:1 10975:1 11009:24 11016:1 11034:1 11039:2 11047:6 11056:2 11059:1 11083:1 11089:1 11091:1 11097:1 11102:1 11104:2 11124:2 11133:1 11140:1 11154:14 11170:2 11171:1 11176:2 11189:1 11198:1 11210:5 11218:1 11225:1 11226:1 11229:3 11230:1 11232:1 11249:1 11263:1 11267:1 11276:1 11280:1 11316:2 11318:3 11319:1 11336:1 11359:8 11363:2 11366:4 11368:2 11374:3 11375:1 11382:1 11392:2 11400:3 11402:1 11403:1 11408:2 11417:2 11422:4 11426:5 11427:1 11429:1 11437:1 11446:1 11453:1 11464:3 11470:3 11489:1 11492:2 11496:1 11507:1 11513:2 11521:1 11545:1 11550:1 11551:3 11553:1 11580:12 11582:1 11583:6 11595:1 11597:1 11600:1 11692:1 11697:2 11703:1 11720:1 11728:1 11733:2 11754:4 11761:1 11775:4 11789:1 11796:1 11800:1 11803:1 11826:1 11832:1 11835:1 11859:1 11880:1 11897:2 11914:5 11921:1 11926:1 11932:1 11948:2 11955:1 11967:2 11970:1 11994:2 12001:7 12012:1 12014:1 12043:1 12044:1 12052:2 12072:3 12075:2 12090:1 12098:6 12099:1 12117:2 12119:4 12120:1 12121:4 12125:1 12128:1 12145:1 12147:3 12150:1 12160:2 12173:1 12174:3 12197:1 12200:1 12211:4 12225:1 12229:2 12241:2 12249:7 12266:1 12314:1 12316:1 12322:1 12345:2 12346:2 12347:1 12352:1 12362:1 12392:1 12396:1 12408:1 12416:1 12459:1 12465:1 12468:1 12476:1 12492:1 12498:3 12499:1 12510:1 12512:7 12531:4 12534:7 12549:3 12553:1 12556:2 12558:1 12562:1 12571:1 12576:2 12589:1 12596:4 12610:1 12623:2 12634:1 12635:2 12642:5 12659:1 12664:3 12671:1 12676:3 12692:1 12703:1 12706:1 12707:1 12740:1 12743:1 12749:1 12753:1 12770:1 12787:1 12807:1 12810:1 12816:1 12818:1 12819:1 12821:1 12825:4 12826:1 12827:1 12850:1 12855:1 12863:1 12867:2 12880:1 12883:1 12888:1 12892:1 12893:1 12919:2 12951:1 12953:4 12958:1 12960:1 12963:2 12965:1 12970:1 12974:2 12980:1 12981:1 12983:1 12990:1 12991:1 13014:1 13021:4 13052:1 13057:1 13061:3 13063:6 13067:1 13070:2 13081:3 13100:1 13118:1 13122:1 13125:1 13127:1 13130:1 13135:1 13138:2 13153:1 13176:3 13196:1 13204:1 13207:1 13215:1 13218:5 13233:1 13234:3 13236:1 13251:2 13252:3 13254:2 13263:1 13284:1 13297:3 13303:1 13318:3 13324:2 13327:1 13328:9 13341:1 13343:1 13348:1 13350:1 13352:1 13354:1 13355:1 13363:1 13364:3 13366:1 13368:7 13369:1 13376:2 13379:7 13382:1 13387:1 13395:1 13397:1 13403:10 13428:2 13447:5 13454:1 13463:2 13467:1 13507:1 13518:4 13528:1 13532:1 13536:1 13537:2 13576:1 13580:1 13590:3 13592:1 13607:1 13616:1 13620:2 13629:1 13645:1 13652:1 13664:1 13674:1 13690:2 13692:2 13717:2 13737:2 13759:1 13766:1 13780:5 13832:2 13834:2 13847:1 13858:1 13867:1 13872:1 13874:1 13878:1 13887:1 13913:4 13914:4 13916:24 13921:1 13923:6 13933:1 13940:1 13941:2 13956:3 13962:1 13972:2 14002:1 14007:1 14021:2 14038:1 14041:1 14043:1 14073:1 14074:1 14082:9 14083:2 14098:1 14105:1 14106:4 14109:2 14130:1 14156:1 14167:3 14172:1 14198:1 14207:1 14219:2 14222:1 14228:1 14235:1 14248:2 14265:1 14286:2 14292:1 14312:4 14326:2 14329:1 14336:1 14369:1 14373:3 14379:1 14381:1 14382:1 14387:1 14388:1 14399:1 14417:1 14441:1 14443:1 14449:1 14456:1 14506:6 14519:1 14520:1 14523:1 14527:2 14528:1 14530:1 14535:1 14546:1 14565:2 14566:4 14588:1 14592:3 14629:1 14660:1 14667:2 14693:1 14705:1 14728:1 14735:2 14746:1 14748:1 14751:2 14775:1 14785:2 14810:1 14819:1 14820:1 14869:1 14870:1 14894:5 14896:1 14907:1 14920:1 14926:1 14930:1 14943:1 14948:1 14950:1 14955:1 14960:1 14970:1 14990:2 14993:1 15002:2 15013:1 15014:1 15015:1 15017:2 15023:1 15035:1 15044:1 15045:2 15080:1 15086:1 15088:2 15140:2 15146:3 15154:1 15155:2 15156:7 15159:1 15162:4 15164:1 15171:2 15178:3 15182:1 15192:3 15195:1 15198:2 15204:3 15214:1 15234:7 15238:1 15247:1 15250:1 15252:1 15254:3 15266:2 15267:1 15280:2 15301:2 15317:1 15338:5 15343:1 15353:1 15355:1 15365:1 15380:2 15400:3 15420:1 15423:1 15428:2 15430:7 15441:1 15450:1 15464:2 15465:2 15466:2 15467:1 15468:1 15480:4 15486:1 15502:1 15503:1 15511:1 15513:1 15514:2 15529:1 15538:2 15561:1 15576:1 15579:2 15581:1 15588:1 15589:1 15597:1 15598:2 15599:2 15600:2 15602:2 15606:1 15627:1 15635:1 15636:1 15639:1 15640:1 15642:1 15655:1 15659:1 15660:1 15663:2 15664:1 15677:1 15683:1 15684:1 15688:3 15691:1 15701:2 15706:1 15707:1 15726:1 15739:8 15748:2 15750:1 15754:1 15797:1 15801:1 15821:1 15822:1 15823:2 15827:2 15851:1 15853:2 15856:2 15857:1 15861:5 15891:1 15906:1 15908:1 15918:1 15921:1 15933:2 15934:3 15938:2 15939:6 15950:2 15970:2 15977:3 15997:1 16008:2 16035:2 16037:1 16043:2 16046:1 16051:1 16063:2 16064:1 16070:2 16091:1 16107:1 16118:1 16189:1 16192:1 16195:1 16202:2 16220:1 16246:1 16263:1 16279:1 16288:1 16310:3 16339:1 16341:1 16345:1 16361:1 16377:1 16382:3 16392:2 16393:1 16401:1 16402:1 16408:1 16412:5 16414:1 16416:1 16424:1 16428:1 16442:2 16444:1 16467:1 16468:1 16483:1 16491:1 16495:1 16506:1 16517:1 16525:2 16535:1 16561:1 16570:1 16583:1 16597:1 16600:1 16603:1 16612:1 16618:2 16621:2 16631:1 16640:4 16661:2 16675:1 16687:2 16692:1 16718:1 16738:1 16775:4 16789:1 16810:1 16828:1 16867:1 16874:1 16885:1 16892:2 16938:1 16939:1 16951:1 16956:1 16970:2 17000:4 17005:3 17007:2 17010:1 17012:1 17013:1 17031:1 17037:1 17059:2 17073:1 17078:1 17098:2 17099:1 17109:3 17137:1 17150:1 17162:1 17163:2 17167:1 17170:1 17191:1 17194:1 17202:2 17205:1 17207:4 17235:1 17237:2 17240:1 17245:1 17246:1 17255:1 17280:1 17283:1 17293:1 17294:1 17339:1 17347:2 17353:3 17355:4 17360:1 17379:4 17380:1 17385:1 17408:1 17433:5 17435:2 17441:1 17445:1 17448:1 17479:1 17481:1 17488:1 17496:1 17501:4 17508:2 17512:2 17520:2 17546:1 17558:1 17566:2 17584:1 17591:1 17611:1 17627:1 17628:1 17633:1 17634:1 17653:1 17662:3 17668:1 17685:9 17687:8 17689:1 17694:1 17722:2 17734:1 17736:2 17740:2 17758:3 17763:1 17776:2 17783:1 17796:1 17803:1 17805:1 17813:1 17826:1 17829:3 17833:1 17835:1 17844:7 17854:3 17855:1 17863:1 17864:1 17866:2 17873:1 17875:3 17878:1 17881:1 17884:1 17885:5 17889:2 17890:7 17892:1 17896:2 17900:2 17901:1 17902:1 17912:1 17913:6 17919:4 17954:1 17968:2 17996:1 18009:1 18010:1 18012:2 18015:1 18021:1 18022:2 18024:2 18030:6 18041:1 18060:2 18065:1 18073:1 18076:2 18096:2 18101:3 18127:2 18145:1 18146:1 18149:1 18158:1 18171:1 18175:1 18178:3 18182:1 18184:1 18187:8 18198:2 18199:2 18217:3 18222:1 18225:4 18243:1 18254:1 18263:24 18268:1 18291:1 18292:1 18300:5 18301:1 18305:1 18324:2 18341:70 18361:3 18366:1 18390:1 18418:1 18424:1 18426:1 18427:3 18442:1 18454:1 18455:1 18456:1 18460:1 18461:1 18467:2 18468:1 18469:2 18473:3 18474:4 18477:1 18482:2 18484:1 18486:2 18493:1 18501:1 18513:1 18516:1 18518:1 18523:1 18526:1 18530:1 18536:1 18543:1 18544:1 18565:1 18567:1 18604:1 18610:5 18634:1 18643:1 18648:2 18649:1 18654:3 18692:1 18696:2 18700:1 18715:1 18762:1 18768:1 18797:1 18798:1 18808:1 18822:2 18826:1 18865:2 18867:1 18870:1 18903:1 18905:1 18908:1 18916:3 18922:4 18923:1 18927:1 18944:1 18946:3 18959:1 18968:3 18974:1 18985:3 18996:1 18997:1 19000:1 19004:3 19006:1 19008:2 19010:1 19016:1 19020:1 19027:1 19029:1 19042:3 19047:1 19048:13 19057:1 19059:2 19072:1 19084:2 19094:2 19106:1 19107:2 19136:1 19141:1 19143:2 19165:1 19167:2 19170:3 19177:1 19179:3 19182:1 19185:2 19202:1 19206:1 19222:1 19232:1 19235:1 19238:1 19240:1 19243:2 19245:2 19271:2 19272:2 19281:1 19285:1 19298:1 19306:1 19307:3 19313:1 19315:1 19316:1 19331:1 19352:1 19374:1 19376:1 19382:2 19385:1 19406:1 19407:2 19409:1 19420:1 19425:1 19434:2 19435:1 19440:3 19449:2 19455:1 19457:1 19461:1 19466:1 19469:3 19473:1 19480:1 19489:1 19490:1 19497:3 19501:1 19504:1 19521:2 19539:1 19542:1 19550:1 19564:2 19586:1 19587:2 19595:1 19601:1 19603:1 19619:4 19640:1 19661:1 19664:1 19672:1 19675:1 19684:1 19685:1 19692:1 19711:5 19713:1 19715:1 19718:1 19726:1 19730:2 19731:2 19735:1 19737:2 19757:1 19759:2 19761:2 19772:1 19775:1 19776:1 19789:2 19805:1 19813:1 19814:1 19817:1 19819:1 19827:1 19834:1 19840:2 19841:2 19877:1 19879:2 19907:1 19926:3 19936:2 19944:1 19956:1 19962:1 19971:3 20012:3 20014:1 20016:1 20017:2 20020:2 20021:2 20022:1 20034:1 20037:14 20039:2 20052:1 20070:2 20072:1 20078:1 20103:1 20118:1 20130:1 20131:1 20136:1 20151:1 20152:1 20153:2 20160:3 20179:2 20185:2 20191:1 20209:1 20210:1 20216:1 20229:1 20249:1 20255:4 20260:2 20261:4 20265:1 20274:2 20304:1 20307:1 20340:1 20342:1 20346:1 20382:3 20383:1 20392:1 20420:1 20423:1 20429:1 20437:1 20439:1 20450:1 20456:3 20467:3 20474:2 20480:1 20488:1 20489:2 20507:1 20508:1 20514:1 20523:1 20531:1 20532:4 20540:1 20542:1 20571:1 20579:1 20585:4 20591:1 20595:2 20618:1 20621:4 20630:1 20645:4 20649:1 20651:1 20655:3 20676:2 20677:1 20682:1 20693:1 20695:2 20701:1 20748:1 20749:1 20776:1 20790:1 20792:13 20797:1 20806:1 20813:1 20821:1 20832:1 20852:1 20860:1 20865:1 20869:1 20878:1 20880:1 20883:3 20884:2 20886:1 20892:1 20906:1 20912:1 20915:1 20922:1 20925:2 20942:1 20946:5 20948:1 20950:2 20952:1 20965:4 20971:2 20976:1 20980:2 20981:1 21013:1 21020:3586 21028:1 21044:1 21046:4 21047:1 21054:2 21066:2 21086:1 21097:1 21108:2 21121:1 21131:1 21136:3 21137:1 21147:1 21177:1 21178:3 21201:2 21212:2 21236:1 21239:5 21242:2 21268:3 21277:1 21280:1 21284:3 21287:1 21299:1 21315:1 21340:1 21341:1 21346:1 21361:1 21381:1 21384:5 21390:1 21410:1 21414:1 21418:1 21422:1 21442:3 21454:1 21463:2 21474:1 21484:1 21490:1 21494:1 21495:1 21511:1 21539:1 21549:1 21551:2 21554:1 21563:4 21576:2 21586:1 21601:1 21610:1 21619:1 21660:1 21661:4 21675:1 21678:3 21720:1 21728:1 21749:1 21773:1 21779:2 21789:1 21795:2 21797:1 21803:2 21810:1 21819:4 21832:2 21835:1 21836:4 21841:1 21843:1 21857:5 21867:16 21891:1 21892:1 21894:3 21895:1 21896:23 21909:2 21929:1 21930:6 21932:1 21934:1 21950:2 21965:1 21970:5 21991:1 21995:2 22000:1 22002:6 22004:2 22008:1 22015:1 22029:2 22030:1 22060:1 22068:3 22075:1 22089:1 22101:3 22131:1 22133:1 22136:1 22190:1 22194:1 22198:1 22229:1 22235:1 22244:1 22262:1 22264:13 22272:1 22290:1 22308:1 22316:1 22317:1 22323:1 22340:1 22352:1 22369:1 22375:1 22377:7 22396:1 22399:1 22404:1 22422:2 22439:1 22443:1 22444:1 22462:1 22467:1 22474:1 22476:1 22478:2 22483:1 22484:2 22485:1 22495:2 22510:1 22516:1 22534:1 22542:4 22547:1 22556:1 22561:1 22581:3 22582:1 22590:1 22610:3 22616:1 22623:1 22624:1 22644:1 22651:5 22676:2 22680:1 22685:2 22687:2 22701:2 22702:1 22704:1 22708:7 22737:1 22745:1 22758:1 22771:1 22775:1 22781:1 22800:15 22809:1 22822:2 22825:3 22844:1 22845:1 22861:1 22863:13 22881:1 22910:1 22922:1 22924:1 22931:1 22933:1 22945:1 22964:2 22993:1 22999:1 23004:1 23005:1 23024:2 23042:1 23043:4 23045:2 23056:1 23063:1 23105:2 23125:1 23153:5 23165:1 23166:3 23183:1 23185:1 23198:1 23199:1 23209:1 23242:1 23245:1 23264:2 23265:1 23312:2 23330:1 23335:1 23341:1 23369:1 23371:1 23374:2 23383:1 23399:1 23401:1 23407:2 23439:1 23441:1 23446:1 23457:1 23466:1 23490:3 23501:1 23512:2 23517:1 23519:1 23521:1 23522:1 23525:1 23532:13 23540:1 23542:2 23546:3 23547:1 23549:5 23550:1 23560:3 23569:5 23574:1 23595:4 23597:1 23605:1 23606:1 23638:2 23639:1 23641:1 23653:2 23657:1 23673:2 23681:1 23682:1 23696:1 23711:8 23719:1 23722:2 23730:1 23738:1 23742:1 23743:1 23756:1 23765:1 23786:1 23803:1 23808:1 23810:1 23832:3 23836:1 23839:1 23843:1 23849:1 23859:3 23871:1 23873:1 23881:2 23882:1 23886:1 23892:1 23898:1 23900:1 23940:1 23944:3 23948:1 23968:1 23974:1 24003:1 24009:1 24015:1 24049:1 24055:1 24063:1 24065:4 24070:2 24073:3 24084:4 24087:2 24094:1 24097:1 24100:1 24135:1 24143:1 24147:1 24148:1 24149:1 24154:2 24164:1 24173:1 24180:1 24181:1 24186:1 24188:2 24195:1 24201:1 24202:1 24216:2 24218:6 24221:3 24240:1 24241:1 24245:1 24255:1 24266:1 24271:1 24277:1 24305:1 24308:2 24310:1 24311:2 24320:2 24328:2 24339:1 24341:1 24344:1 24359:1 24360:4 24363:18 24377:1 24384:2 24385:2 24391:1 24395:1 24396:1 24402:1 24408:1 24412:1 24413:2 24426:1 24427:5 24441:1 24447:1 24472:2 24475:3 24478:1 24482:1 24488:4 24505:1 24520:1 24542:1 24543:4 24556:2 24563:3 24567:1 24623:1 24649:4 24659:2 24661:1 24662:12 24666:3 24670:2 24682:2 24683:1 24687:1 24700:3 24701:1 24702:3 24703:2 24707:1 24714:2 24719:2 24722:1 24732:1 24734:1 24735:1 24747:2 24752:2 24774:2 24809:1 24824:5 24825:1 24834:1 24855:1 24858:1 24861:1 24862:2 24869:2 24872:1 24877:1 24888:1 24894:1 24904:1 24908:4 24917:1 24923:1 24926:1 24935:1 24967:1 24979:24 24980:2 24984:1 25005:1 25018:1 25021:1 25026:2 25033:1 25047:1 25057:1 25065:1 25071:4 25092:1 25094:2 25101:1 25103:1 25104:1 25106:1 25110:2 25121:2 25125:1 25126:1 25129:8 25137:1 25139:2 25148:2 25156:4 25168:2 25190:1 25194:2 25201:1 25206:1 25209:2 25218:1 25233:1 25236:1 25241:1 25243:1 25245:2 25252:1 25256:1 25270:2 25275:1 25289:10 25303:4 25313:1 25318:4 25328:1 25340:1 25368:1 25369:1 25387:2 25405:1 25406:1 25423:1 25439:1 25459:1 25473:3 25480:1 25485:1 25494:1 25501:2 25503:1 25510:1 25526:1 25535:1 25539:1 25547:1 25561:1 25579:1 25581:1 25584:1 25588:2 25595:15 25597:1 25598:2 25620:1 25630:1 25634:2 25643:1 25653:1 25655:1 25667:2 25676:1 25683:1 25689:3 25694:1 25695:2 25697:1 25705:1 25720:1 25722:1 25732:3 25743:1 25748:1 25754:1 25755:5 25780:1 25788:1 25791:1 25804:1 25808:1 25828:2 25845:1 25850:1 25853:1 25860:1 25871:2 25890:1 25907:1 25912:1 25928:1 25929:2 25936:2 25944:1 25954:1 26001:1 26015:1 26016:1 26017:5 26024:1 26030:1 26043:1 26044:1 26056:2 26064:1 26073:1 26075:2 26094:1 26104:1 26133:1 26135:2 26149:1 26157:1 26160:2 26165:1 26174:2 26179:4 26184:1 26187:1 26206:1 26213:1 26230:2 26243:1 26254:3 26255:5 26264:1 26265:1 26277:6 26283:1 26287:1 26290:1 26294:1 26297:1 26308:1 26309:1 26315:1 26316:3 26319:2 26324:1 26332:1 26352:2 26359:1 26360:2 26364:1 26380:1 26415:5 26421:1 26424:29 26426:1 26498:1 26516:2 26528:1 26530:2 26532:1 26534:1 26539:1 26552:1 26605:3 26609:1 26612:2 26613:1 26624:1 26635:1 26636:1 26642:1 26655:2 26676:1 26679:1 26694:1 26705:1 26721:1 26724:1 26748:1 26751:2 26758:2 26775:1 26794:4 26806:1 26814:1 26818:1 26847:1 26878:1 26880:1 26897:2 26920:1 26924:2 26929:1 26931:2 26934:1 26936:1 26938:2 26952:1 26968:1 26978:1 27003:1 27009:1 27014:1 27021:1 27022:1 27028:1 27032:2 27070:1 27072:1 27085:1 27102:1 27104:1 27112:1 27114:8 27122:1 27132:1 27133:1 27137:1 27141:3 27159:2 27173:1 27183:1 27198:1 27225:1 27228:1 27242:1 27251:3 27262:1 27299:1 27303:5 27321:1 27330:1 27360:2 27373:1 27377:1 27388:1 27389:1 27397:5 27398:2 27401:1 27419:1 27427:1 27437:2 27439:2 27447:1 27451:3 27456:2 27460:1 27488:2 27489:2 27491:1 27502:3 27512:1 27516:1 27522:2 27533:2 27552:1 27569:1 27574:1 27575:1 27595:1 27602:4 27612:3 27618:1 27620:1 27627:1 27641:1 27642:1 27651:1 27672:1 27673:1 27676:1 27684:1 27701:1 27704:1 27716:1 27727:1 27728:2 27743:1 27753:1 27757:3 27760:1 27763:1 27769:1 27778:1 27792:1 27804:1 27809:1 27813:1 27817:1 27843:1 27846:1 27851:1 27863:1 27872:2 27881:1 27884:1 27917:3 27933:5 27957:1 27970:1 27985:1 27989:1 27997:1 28007:1 28015:2 28016:1 28021:1 28032:5 28033:1 28043:1 28068:2 28071:1 28074:1 28094:1 28112:2 28132:1 28139:1 28145:4 28174:1 28178:1 28183:1 28234:1 28242:4 28253:1 28255:1 28273:8 28277:1 28303:1 28305:1 28327:2 28331:5 28335:1 28342:1 28344:1 28348:4 28354:1 28408:1 28414:1 28442:1 28485:1 28499:1 28500:1 28503:2 28506:1 28507:2 28509:8 28512:3 28518:1 28537:1 28540:1 28557:3 28560:1 28563:2 28591:1 28602:1 28608:6 28609:1 28610:1 28625:1 28635:4 28641:6 28642:2 28652:2 28665:1 28666:1 28671:1 28680:1 28697:2 28702:1 28725:6 28728:1 28734:1 28739:1 28740:1 28753:2 28754:1 28762:1 28778:2 28803:1 28811:3 28828:1 28847:5 28850:1 28870:3 28872:4 28875:1 28902:2 28913:1 28937:1 28945:3 28972:1 28981:1 28994:2 28996:1 28998:4 29029:1 29052:1 29056:1 29060:2 29063:1 29066:1 29080:1 29085:2 29088:3 29102:1 29104:1 29105:1 29109:2 29120:1 29123:1 29128:1 29146:2 29147:1 29155:1 29156:2 29161:1 29165:1 29174:1 29189:6 29195:1 29199:1 29210:1 29212:1 29215:1 29219:2 29234:1 29261:1 29272:2 29291:1 29302:1 29316:1 29320:1 29326:1 29327:1 29332:1 29334:3 29365:13 29374:1 29409:1 29412:1 29417:2 29439:1 29455:1 29472:2 29483:1 29491:1 29498:1 29503:1 29518:3 29519:2 29527:1 29543:1 29546:2 29558:1 29564:1 29574:2 29623:2 29637:3 29653:5 29655:2 29658:1 29665:1 29673:1 29675:2 29676:1 29677:4 29679:9 29683:1 29685:1 29711:1 29725:1 29732:2 29759:1 29766:1 29771:1 29781:4 29792:1 29797:1 29815:1 29821:3 29842:1 29850:1 29855:1 29861:2 29866:1 29867:1 29882:1 29910:2 29917:1 29923:1 29928:1 29951:1 29956:1 29964:1 29979:1 29985:1 29992:1 30023:1 30033:1 30051:1 30063:1 30079:1 30085:1 30091:1 30121:1 30123:2 30129:1 30149:1 30160:2 30168:2 30183:2 30198:1 30205:1 30221:1 30235:1 30240:1 30294:2 30295:2 30308:2 30311:1 30315:1 30334:1 30352:1 30367:1 30371:2 30393:2 30399:5 30410:1 30412:1 30415:1 30418:9 30433:1 30450:2 30451:2 30452:1 30506:1 30514:1 30524:29 30525:1 30529:3 30531:1 30540:1 30547:1 30560:5 30592:1 30633:1 30643:2 30647:3 30648:4 30651:2 30656:1 30662:1 30667:1 30684:1 30698:2 30701:1 30703:1 30706:1 30707:1 30719:2 30721:2 30724:2 30727:2 30728:1 30738:1 30739:1 30740:1 30741:1 30745:3 30753:1 30757:3 30760:1 30788:2 30800:1 30816:1 30818:2 30827:1 30832:1 30845:1 30846:2 30849:1 30876:1 30879:1 30881:1 30895:1 30901:1 30906:3 30907:2 30916:1 30927:1 30958:1 30960:1 30978:1 30985:2 30993:2 30997:1 30998:1 31004:1 31007:1 31021:3 31023:1 31030:2 31057:1 31088:11 31104:1 31120:1 31132:1 31168:3 31176:3 31192:1 31200:2 31204:1 31207:1 31243:1 31259:1 31262:3 31268:1 31302:2 31308:1 31309:1 31311:1 31317:1 31318:1 31349:5 31359:4 31389:1 31392:1 31394:1 31400:3 31403:1 31414:1 31418:1 31455:1 31473:1 31476:1 31477:1 31489:4 31493:1 31502:1 31514:1 31526:3 31529:1 31541:1 31544:28 31545:2 31546:2 31549:3 31552:4 31555:1 31556:1 31566:1 31586:1 31587:13 31597:1 31602:1 31603:1 31613:1 31644:1 31645:1 31646:1 31651:2 31661:1 31662:2 31669:1 31673:2 31681:1 31691:1 31697:1 31702:6 31713:4 31718:1 31719:2 31743:1 31754:3 31758:1 31759:2 31763:1 31766:1 31784:1 31786:1 31801:1 31802:1 31806:1 31829:1 31834:1 31849:1 31854:1 31863:2 31866:1 31900:1 31901:1 31909:1 31932:1 31943:1 31944:1 31951:1 31953:1 31957:2 31959:1 31964:4 31969:2 31971:1 31976:1 31989:1 31990:1 31994:2 32000:1 32012:1 32028:8 32032:1 32034:3 32039:4 32041:1 32083:1 32106:1 32110:3 32115:8 32118:1 32119:1 32125:1 32126:1 32142:2 32146:2 32147:2 32158:1 32163:1 32175:1 32178:2 32179:1 32186:1 32214:3 32225:1 32241:1 32257:1 32263:3 32269:1 32272:1 32275:2 32279:2 32280:1 32303:2 32307:2 32310:5 32314:1 32321:5 32330:1 32342:2 32363:1 32374:1 32381:1 32429:1 32439:1 32445:1 32471:3 32473:2 32488:1 32505:4 32510:1 32539:2 32543:1 32547:1 32559:1 32582:1 32590:2 32596:1 32605:3 32617:1 32628:1 32642:1 32644:1 32662:1 32676:3 32681:1 32684:1 32686:1 32688:1 32701:1 32713:2 32727:1 32732:1 32733:6 32735:1 32740:1 32755:2 32781:1 32785:3 32787:1 32811:1 32821:5 32831:2 32835:1 32861:1 32891:1 32894:1 32897:1 32898:1 32902:1 32903:1 32905:5 32910:1 32921:1 32950:1 32957:2 32966:1 32971:1 32972:1 32973:1 32977:1 33021:1 33035:1 33038:1
16 10:1 13:1 26:1 27:2 28:1 41:1 55:1 66:1 72:1 78:1 84:1 85:5 104:1 109:1 145:1 164:1 173:1 175:1 176:3 186:1 189:2 191:1 219:1 225:1 232:2 235:1 262:1 269:4 272:1 273:1 285:1 295:2 318:3 338:1 351:4 355:1 375:1 387:1 397:2 398:1 399:3 418:1 427:1 434:1 437:1 443:1 459:1 468:2 475:1 484:1 502:3 505:2 509:2 525:1 535:1 542:1 551:2 567:1 575:1 577:1 581:1 584:1 589:2 591:2 628:1 629:1 636:2 649:5 709:1 713:3 716:1 723:3 751:3 757:1 762:4 766:1 774:1 779:1 790:1 791:1 793:1 805:1 812:1 821:1 832:1 860:2 869:2 886:1 891:1 908:1 929:1 937:1 944:1 949:2 957:1 962:1 970:1 975:3 984:1 988:2 991:2 1000:2 1007:1 1016:1 1035:2 1039:1 1046:2 1050:1 1051:1 1054:1 1058:2 1068:2 1069:2 1078:3 1080:1 1081:3 1082:6 1084:2 1091:2 1113:1 1114:2 1116:2 1136:1 1138:1 1139:6 1143:2 1149:1 1164:1 1170:1 1180:2 1185:2 1202:1 1220:2 1221:1 1240:1 1250:1 1254:1 1259:1 1285:2 1286:1 1288:1 1301:2 1322:1 1331:1 1341:1 1352:1 1353:3 1356:1 1359:1 1366:2 1368:1 1369:2 1377:2 1387:1 1388:4 1398:2 1406:1 1409:1 1412:1 1425:2 1426:3 1457:1 1464:1 1466:2 1469:2 1472:4 1475:1 1487:2 1488:6 1489:2 1490:1 1506:3 1512:1 1524:1 1526:1 1528:1 1535:1 1540:1 1544:1 1546:3 1560:2 1572:2 1574:1 1586:2 1600:2 1611:1 1630:1 1633:1 1637:1 1642:2 1650:1 1676:3 1677:1 1683:1 1689:1 1692:1 1695:2 1711:1 1733:1 1742:6 1750:1 1754:1 1760:6 1767:2 1773:1 1774:2 1775:1 1776:1 1780:4 1787:1 1791:1 1797:1 1802:4 1822:1 1835:1 1836:1 1839:8 1853:1 1863:3 1865:1 1866:1 1867:2 1871:2 1879:2 1881:1 1907:2 1914:1 1919:4 1924:4 1927:2 1928:1 1939:1 1941:1 1944:1 1953:1 1963:5 1966:3 1968:1 1975:1 1976:1 1985:1 1993:2 1994:1 1998:1 2018:1 2038:1 2039:1 2050:2 2053:1 2054:1 2055:1 2058:1 2069:4 2077:4 2089:1 2097:1 2098:1 2109:1 2122:1 2127:1 2128:1 2134:1 2139:1 2142:1 2143:1 2150:1 2156:2 2157:2 2165:1 2174:1 2175:1 2180:1 2187:1 2188:1 2192:1 2194:1 2201:3 2211:1 2215:1 2219:1 2226:1 2230:1 2232:2 2234:4 2239:1 2241:1 2243:1 2245:1 2262:1 2263:3 2264:1 2282:1 2291:1 2317:1 2320:1 2323:1 2339:1 2345:1 2354:2 2358:2 2360:1 2361:2 2368:3 2369:1 2407:1 2414:2 2435:1 2438:1 2439:1 2441:3 2443:1 2444:2 2445:1 2446:1 2447:1 2475:4 2501:2 2509:2 2518:1 2531:1 2553:1 2556:1 2566:1 2571:1 2572:3 2584:1 2587:1 2588:1 2594:1 2628:2 2629:1 2630:1 2631:2 2632:4 2635:1 2636:2 2637:1 2638:6 2640:1 2641:1 2643:5 2645:1 2647:4 2651:1 2654:1 2659:1 2660:6 2665:3 2666:1 2668:7 2673:1 2674:1 2683:1 2687:2 2691:1 2695:1 2700:1 2708:1 2712:1 2728:1 2733:1 2744:1 2754:2 2755:1 2759:1 2762:1 2763:3 2769:1 2773:1 2782:1 2790:2 2793:1 2794:1 2800:2 2808:1 2825:1 2826:1 2845:5 2856:1 2871:1 2876:2 2883:3 2885:1 2909:1 2914:1 2921:1 2925:1 2927:1 2944:1 2986:2 2994:1 3021:1 3023:1 3062:2 3071:1 3082:4 3092:1 3098:4 3108:1 3117:2 3119:1 3127:1 3130:3 3136:12 3150:1 3151:1 3161:1 3162:1 3164:2 3170:1 3173:1 3177:1 3178:1 3182:1 3189:4 3193:1 3197:1 3204:1 3226:2 3237:2 3246:2 3252:1 3254:1 3256:5 3264:4 3314:4 3322:1 3326:1 3328:1 3336:1 3339:1 3355:14 3363:7 3381:1 3392:2 3409:1 3426:32 3435:2 3441:1 3449:1 3457:1 3459:1 3473:1 3488:1 3497:1 3505:2 3532:1 3533:2 3536:1 3537:1 3542:2 3607:3 3612:1 3613:1 3625:3 3634:1 3639:2 3650:1 3666:1 3688:1 3689:1 3693:1 3697:1 3698:1 3700:1 3705:1 3710:2 3713:4 3721:1 3726:1 3739:13 3759:1 3764:1 3773:1 3789:2 3809:1 3821:1 3823:7 3842:1 3863:1 3894:1 3900:1 3906:1 3917:1 3918:2 3931:3 3941:1 3944:1 3959:1 3965:1 3971:2 3975:3 3983:2 3985:1 3992:1 4003:4 4041:1 4042:1 4046:1 4049:1 4053:3 4056:1 4075:1 4076:1 4077:1 4089:3 4091:2 4125:1 4140:1 4144:1 4150:1 4152:4 4156:2 4161:2 4164:1 4165:1 4185:2 4203:1 4210:1 4235:1 4245:2 4256:1 4266:1 4270:2 4271:4 4273:1 4297:1 4317:1 4323:4 4325:44 4331:1 4340:1 4347:1 4361:2 4363:1 4364:9 4367:1 4372:1 4375:1 4376:2 4377:27 4379:2 4381:6 4385:1 4391:2 4405:3 4408:1 4418:3 4419:4 4423:2 4425:3 4426:2 4438:2 4439:2 4442:2 4444:1 4463:1 4480:2 4490:1 4491:3 4498:1 4502:1 4507:1 4531:1 4534:1 4537:1 4539:2 4541:1 4543:1 4544:3 4555:2 4567:2 4570:1 4575:1 4581:1 4587:1 4595:1 4596:1 4597:2 4619:1 4622:1 4630:1 4632:2 4633:1 4635:1 4636:1 4643:1 4646:2 4652:1 4655:1 4658:4 4674:4 4678:1 4686:1 4722:1 4730:1 4734:1 4755:1 4785:1 4793:1 4799:3 4810:1 4813:3 4823:1 4834:2 4852:1 4855:1 4870:2 4876:2 4877:2 4879:1 4880:1 4906:1 4913:2 4924:1 4926:1 4937:1 4966:1 4978:1 4989:2 4999:1 5010:14 5027:1 5044:1 5086:1 5090:2 5098:1 5106:5 5117:1 5120:2 5138:1 5152:7 5155:1 5166:1 5176:1 5181:2 5184:1 5195:1 5198:1 5205:1 5258:1 5268:2 5269:1 5298:1 5331:2 5343:2 5363:2 5367:1 5370:2 5381:1 5390:4 5403:1 5407:1 5410:4 5433:3 5434:1 5438:2 5439:1 5456:1 5470:1 5497:1 5509:1 5510:1 5514:1 5516:1 5528:1 5542:1 5545:2 5558:2 5613:2 5617:1 5632:1 5640:2 5643:1 5645:1 5650:1 5659:17 5660:2 5678:1 5699:2 5728:1 5729:2 5744:1 5750:1 5761:1 5770:1 5784:3 5797:3 5800:1 5802:4 5821:2 5822:4 5823:8 5824:1 5827:1 5828:1 5830:1 5831:3 5833:1 5840:1 5841:24 5842:1 5844:1 5848:2 5849:3 5860:2 5861:1 5877:1 5880:3 5888:1 5903:2 5936:2 5950:1 5958:1 5964:1 5968:1 5972:1 5977:1 6050:1 6056:1 6060:1 6081:3 6082:3 6089:5 6098:1 6125:1 6137:1 6140:1 6142:1 6157:1 6168:2 6169:24 6177:1 6205:1 6215:1 6216:3 6221:1 6236:2 6255:3 6271:1 6300:1 6301:1 6305:1 6322:1 6339:1 6350:1 6357:2 6371:1 6379:1 6383:1 6394:1 6396:1 6403:1 6404:2 6413:1 6462:1 6463:1 6465:1 6469:1 6473:1 6479:1 6480:1 6483:2 6493:1 6507:4 6515:1 6518:1 6531:2 6540:1 6542:1 6548:1 6550:2 6557:1 6568:2 6573:1 6574:2 6587:1 6598:1 6611:1 6617:5 6640:2 6647:1 6669:1 6672:1 6673:1 6678:1 6686:1 6705:1 6707:1 6722:1 6723:1 6725:1 6728:1 6731:1 6733:1 6747:1 6748:1 6753:1 6768:1 6772:1 6775:1 6776:1 6777:1 6808:1 6825:1 6826:1 6843:1 6844:3 6845:1 6868:1 6870:5 6873:1 6876:1 6883:1 6891:1 6895:2 6897:1 6912:1 6938:1 6958:1 6959:2 6992:1 7029:1 7034:4 7035:9 7043:1 7045:2 7062:1 7068:2 7074:1 7078:1 7079:1 7102:1 7120:1 7128:1 7133:1 7139:1 7140:2 7146:1 7149:2 7150:1 7154:1 7157:1 7161:1 7190:4 7196:1 7200:2 7202:2 7227:1 7232:1 7237:1 7249:1 7254:3 7257:1 7260:1 7276:5 7278:1 7284:1 7295:1 7296:1 7300:1 7309:1 7316:1 7321:1 7338:1 7363:1 7382:6 7386:2 7387:1 7390:1 7391:1 7392:1 7394:2 7396:2 7397:1 7401:2 7402:3 7403:5 7409:3 7410:8 7411:1 7412:1 7413:3 7427:1 7441:1 7451:1 7454:1 7474:3 7477:1 7480:1 7493:1 7503:1 7508:2 7509:1 7553:1 7555:1 7559:1 7567:1 7579:2 7586:1 7611:1 7613:1 7615:1 7664:1 7681:3 7684:2 7687:1 7690:4 7709:1 7710:5 7716:3 7722:1 7725:1 7731:1 7732:1 7742:2 7762:1 7763:1 7764:3 7769:1 7770:2 7790:1 7791:1 7793:1 7805:1 7825:1 7846:1 7849:1 7852:1 7856:1 7869:3 7876:3 7877:2 7879:1 7891:3 7897:1 7900:2 7907:4 7915:3 7921:1 7940:1 7944:1 7947:3 7955:1 7985:1 7987:1 7998:1 8005:2 8012:1 8016:1 8019:1 8021:1 8026:2 8032:1 8071:1 8091:2 8093:1 8110:1 8111:2 8127:1 8135:1 8137:2 8138:1 8146:1 8169:1 8194:2 8215:1 8223:2 8224:1 8233:2 8251:1 8255:5 8259:1 8262:1 8263:3 8266:1 8270:1 8289:1 8299:1 8320:1 8335:1 8358:1 8399:1 8409:1 8425:1 8436:1 8442:1 8490:1 8499:1 8507:1 8512:1 8513:1 8526:5 8575:1 8577:1 8586:3 8604:2 8610:1 8629:5 8632:1 8674:2 8679:1 8688:2 8689:1 8711:1 8714:1 8723:2 8753:1 8759:1 8768:1 8770:2 8784:1 8786:1 8791:4 8806:1 8821:1 8830:4 8831:5 8832:3 8842:1 8850:1 8854:2 8855:1 8858:2 8861:1 8866:1 8888:1 8890:2 8898:1 8900:1 8901:47 8902:1 8904:1 8908:2 8911:1 8920:14 8923:28 8929:1 8933:1 8936:1 8943:1 8945:1 8952:1 8978:6 8979:1 9001:1 9014:1 9034:1 9051:1 9058:1 9059:2 9068:1 9082:3 9085:1 9091:1 9104:1 9143:1 9149:4 9153:7 9161:1 9167:1 9199:1 9206:1 9209:5 9212:1 9230:1 9232:1 9234:1 9251:1 9263:1 9272:1 9285:1 9304:1 9341:1 9343:3 9359:2 9362:1 9366:1 9368:1 9370:7 9386:2 9394:1 9405:1 9416:2 9428:2 9436:1 9444:2 9448:1 9454:1 9468:1 9470:1 9484:23 9501:1 9511:1 9516:2 9524:2 9525:1 9551:2 9589:1 9594:1 9605:2 9616:1 9630:2 9639:4 9643:1 9664:1 9672:1 9678:3 9687:4 9694:3 9697:1 9709:2 9711:2 9715:4 9728:1 9732:2 9733:1 9734:2 9738:1 9747:1 9748:2 9754:2 9765:1 9777:2 9778:2 9785:1 9788:1 9790:1 9791:1 9792:1 9809:2 9811:1 9829:1 9836:1 9841:3 9848:1 9859:1 9866:1 9870:1 9875:1 9878:2 9880:1 9881:3 9882:2 9884:2 9885:5 9888:1 9890:1 9894:2 9897:2 9899:2 9903:3 9919:1 9925:3 9934:2 9944:1 9945:1 9950:1 9951:1 9959:1 9973:2 9977:2 9984:1 9995:2 10002:3 10019:1 10024:5 10044:1 10053:5 10056:1 10065:1 10067:1 10069:2 10080:1 10088:1 10092:1 10098:1 10121:1 10128:2 10138:1 10139:1 10144:1 10150:3 10161:3 10162:1 10166:1 10181:2 10192:1 10204:1 10208:5 10209:2 10214:4 10216:1 10218:1 10219:4 10221:3 10223:2 10228:1 10229:2 10230:2 10252:3 10254:1 10255:2 10257:4 10270:1 10272:1 10295:2 10302:1 10308:1 10354:1 10359:1 10367:1 10377:2 10386:1 10397:2 10399:2 10410:1 10412:1 10422:1 10438:1 10441:1 10447:1 10454:1 10461:1 10463:1 10478:1 10485:3 10495:1 10496:1 10520:4 10554:1 10558:2 10563:1 10565:4 10578:1 10580:1 10588:7 10610:2 10615:3 10619:1 10627:1 10634:1 10653:1 10662:1 10671:3 10673:1 10695:1 10696:1 10701:1 10710:2 10726:1 10750:1 10756:1 10768:1 10800:1 10819:1 10820:1 10842:1 10845:1 10846:1 10851:3 10857:2 10858:1 10862:1 10864:2 10879:1 10900:2 10903:1 10906:2 10920:1 10937:1 10939:1 10942:3 10947:1 10958:1 10959:1 10975:1 11009:24 11016:1 11034:1 11039:2 11047:6 11056:2 11059:1 11083:1 11089:1 11091:1 11097:1 11102:1 11104:2 11124:2 11133:1 11140:1 11154:14 11170:2 11171:1 11176:2 11189:1 11198:1 11209:1 11210:5 11218:1 11225:1 11226:1 11229:3 11230:1 11232:1 11245:1 11249:1 11263:1 11267:1 11276:1 11280:1 11300:1 11316:2 11318:3 11319:1 11336:1 11359:8 11363:2 11366:4 11368:2 11374:3 11375:1 11382:1 11392:2 11400:3 11402:1 11403:1 11408:2 11417:2 11422:4 11426:5 11427:1 11429:1 11437:1 11446:1 11453:1 11464:3 11470:4 11489:1 11492:2 11496:1 11507:1 11513:2 11521:1 11545:1 11550:1 11551:3 11553:1 11580:12 11582:1 11583:6 11595:1 11597:1 11600:1 11692:1 11697:2 11703:1 11720:1 11728:1 11733:2 11754:4 11761:1 11775:4 11789:1 11796:1 11800:1 11803:1 11826:1 11832:1 11835:1 11859:1 11880:1 11897:2 11914:5 11921:1 11926:1 11932:1 11948:2 11955:1 11967:2 11970:1 11994:3 12001:7 12012:1 12014:1 12043:1 12044:1 12052:2 12072:3 12075:2 12090:1 12098:6 12099:1 12117:2 12119:4 12120:1 12121:4 12125:1 12128:1 12145:1 12147:3 12150:1 12160:2 12173:1 12174:3 12197:1 12200:1 12211:4 12225:1 12229:2 12241:2 12249:7 12266:1 12314:1 12316:1 12322:1 12345:2 12346:2 12347:1 12352:1 12362:1 12392:2 12396:1 12408:1 12416:1 12459:2 12465:1 12468:1 12476:1 12492:1 12498:3 12499:1 12510:1 12512:7 12531:4 12534:7 12549:3 12553:1 12556:2 12558:1 12562:1 12571:1 12576:2 12589:1 12596:4 12610:1 12623:2 12634:1 12635:2 12642:5 12659:1 12664:4 12671:1 12676:3 12692:1 12703:1 12706:1 12707:1 12739:1 12740:1 12743:1 12749:1 12753:1 12770:1 12787:1 12807:1 12810:1 12816:1 12818:1 12819:1 12821:1 12825:4 12826:1 12827:1 12850:1 12855:1 12863:1 12867:2 12880:1 12883:1 12888:1 12892:1 12893:1 12919:2 12951:1 12953:4 12958:1 12960:1 12963:2 12965:1 12970:1 12974:2 12980:1 12981:1 12983:1 12990:1 12991:1 13014:1 13021:4 13052:1 13057:1 13061:3 13063:6 13067:1 13070:2 13081:3 13100:1 13118:1 13122:1 13125:1 13127:1 13130:1 13135:1 13138:2 13153:1 13176:3 13196:1 13204:1 13207:1 13215:1 13218:5 13233:1 13234:3 13236:1 13251:2 13252:3 13254:2 13263:1 13284:1 13297:3 13303:1 13318:3 13324:2 13327:1 13328:9 13341:1 13343:1 13348:1 13350:1 13352:1 13354:1 13355:1 13363:1 13364:3 13366:1 13368:7 13369:1 13376:2 13379:7 13382:1 13387:1 13395:1 13397:1 13403:10 13428:2 13447:5 13454:2 13463:2 13467:1 13507:1 13518:4 13528:1 13532:1 13536:1 13537:2 13576:1 13580:1 13590:3 13592:1 13607:1 13616:1 13620:2 13629:1 13645:1 13652:1 13664:1 13674:1 13690:2 13692:2 13717:2 13737:2 13759:1 13766:1 13780:5 13832:2 13834:2 13847:1 13858:1 13867:1 13872:1 13874:1 13878:1 13887:1 13913:4 13914:4 13916:24 13921:1 13923:7 13933:1 13940:1 13941:2 13945:1 13956:3 13962:1 13972:2 14002:1 14007:1 14021:2 14038:1 14041:1 14043:1 14073:1 14074:3 14082:9 14083:2 14098:1 14105:1 14106:4 14109:2 14130:1 14156:1 14167:3 14172:1 14198:1 14207:1 14219:2 14222:1 14228:1 14235:1 14248:2 14265:1 14286:2 14292:1 14312:4 14326:2 14329:1 14336:1 14369:1 14373:3 14379:1 14381:1 14382:1 14387:1 14388:1 14399:1 14417:1 14441:1 14443:1 14449:1 14456:1 14469:1 14506:6 14519:1 14520:1 14523:1 14527:2 14528:1 14530:1 14535:1 14546:1 14565:2 14566:4 14588:1 14592:3 14629:1 14660:1 14667:2 14693:1 14705:1 14728:1 14735:2 14746:1 14748:1 14751:3 14775:1 14785:2 14810:1 14819:1 14820:1 14865:1 14869:1 14870:1 14875:1 14894:5 14896:1 14907:1 14920:1 14926:1 14930:1 14943:1 14948:1 14950:1 14955:1 14960:1 14970:1 14990:2 14993:1 15002:2 15013:1 15014:1 15015:1 15017:2 15023:1 15035:1 15044:1 15045:2 15080:1 15086:1 15088:2 15140:2 15146:3 15154:1 15155:2 15156:7 15159:1 15162:4 15164:1 15171:2 15178:3 15182:1 15192:3 15195:1 15198:2 15204:3 15214:1 15234:7 15238:1 15247:1 15250:1 15252:1 15254:3 15266:2 15267:1 15280:2 15295:1 15301:2 15317:1 15336:1 15338:5 15343:1 15353:1 15355:1 15365:1 15380:2 15400:3 15420:1 15423:1 15428:2 15430:7 15441:1 15450:1 15464:2 15465:2 15466:2 15467:1 15468:1 15480:4 15486:1 15502:1 15503:1 15511:2 15513:1 15514:2 15529:1 15538:2 15561:1 15576:1 15579:2 15581:1 15588:1 15589:1 15597:1 15598:2 15599:2 15600:2 15602:2 15606:1 15627:1 15635:1 15636:1 15639:1 15640:1 15642:1 15655:1 15659:1 15660:1 15663:2 15664:1 15677:1 15683:1 15684:1 15688:3 15691:1 15701:2 15706:1 15707:1 15726:1 15739:8 15748:2 15750:1 15754:1 15797:1 15801:1 15821:2 15822:1 15823:2 15827:2 15851:1 15853:2 15856:2 15857:1 15861:5 15891:1 15906:1 15908:1 15918:1 15921:1 15933:2 15934:3 15938:3 15939:7 15950:2 15970:2 15977:3 15997:1 16008:2 16035:2 16037:1 16043:2 16046:1 16051:1 16063:2 16064:1 16070:2 16074:1 16091:1 16107:1 16118:1 16189:1 16192:1 16195:1 16202:2 16220:1 16246:1 16263:1 16279:1 16288:1 16310:3 16339:1 16341:1 16345:1 16361:1 16362:1 16377:1 16382:3 16392:2 16393:1 16401:1 16402:1 16408:1 16412:5 16414:1 16416:1 16424:1 16428:1 16442:2 16444:1 16467:1 16468:1 16483:1 16491:1 16495:1 16506:1 16517:1 16525:2 16535:1 16561:2 16570:1 16583:1 16597:1 16600:2 16603:1 16612:1 16618:2 16621:2 16631:1 16640:5 16661:2 16675:1 16687:2 16692:1 16718:1 16738:1 16775:4 16789:1 16810:1 16828:1 16867:1 16874:1 16885:1 16892:2 16938:1 16939:1 16951:1 16956:1 16970:2 17000:4 17005:3 17007:2 17010:1 17012:1 17013:1 17031:2 17037:1 17059:2 17073:1 17078:1 17098:2 17099:1 17109:3 17137:1 17150:1 17162:1 17163:2 17167:1 17170:1 17191:1 17194:1 17202:2 17205:1 17207:4 17235:1 17237:2 17240:1 17245:1 17246:1 17255:1 17280:1 17283:1 17293:1 17294:1 17339:1 17347:2 17353:3 17355:4 17360:1 17379:5 17380:1 17385:1 17408:1 17433:5 17435:2 17441:1 17445:1 17448:1 17479:1 17481:1 17488:1 17490:1 17496:1 17501:4 17508:3 17512:2 17520:2 17546:1 17558:1 17566:2 17584:1 17591:1 17611:1 17627:1 17628:1 17633:1 17634:1 17637:1 17653:1 17662:3 17668:1 17685:10 17687:8 17689:1 17694:1 17722:2 17734:1 17736:2 17740:2 17758:3 17763:1 17776:2 17783:1 17796:1 17803:1 17805:1 17813:1 17826:1 17829:3 17833:1 17835:1 17844:7 17854:3 17855:1 17863:1 17864:1 17866:2 17873:1 17875:3 17878:1 17881:1 17884:1 17885:5 17889:2 17890:7 17892:1 17896:2 17900:2 17901:1 17902:1 17912:1 17913:6 17919:4 17954:1 17968:2 17996:1 18009:1 18010:1 18012:2 18015:1 18021:1 18022:2 18024:2 18030:6 18041:1 18060:2 18065:1 18073:1 18076:2 18096:2 18101:3 18127:2 18145:1 18146:1 18149:1 18158:1 18171:1 18175:1 18178:3 18182:1 18184:1 18187:8 18198:2 18199:2 18217:3 18222:1 18225:4 18243:1 18254:1 18263:24 18268:1 18291:1 18292:1 18300:6 18301:1 18305:1 18324:2 18341:70 18361:3 18366:1 18390:1 18418:1 18424:1 18426:1 18427:3 18442:1 18454:1 18455:1 18456:1 18460:1 18461:1 18464:1 18467:2 18468:1 18469:2 18473:3 18474:4 18477:1 18482:3 18484:1 18486:2 18493:1 18501:1 18513:1 18516:1 18518:1 18523:2 18526:1 18530:1 18536:1 18543:1 18544:1 18565:1 18567:1 18604:1 18610:5 18634:1 18643:1 18648:2 18649:1 18654:3 18692:1 18696:2 18700:1 18705:1 18715:1 18762:1 18768:1 18797:1 18798:1 18808:1 18822:2 18826:1 18842:1 18861:1 18865:2 18867:1 18870:1 18903:1 18905:1 18908:1 18916:3 18922:4 18923:1 18927:1 18944:1 18946:3 18959:1 18968:3 18974:1 18985:3 18996:1 18997:1 19000:1 19004:3 19006:1 19008:2 19010:1 19016:1 19020:1 19027:1 19029:1 19042:3 19047:1 19048:13 19057:1 19059:2 19072:1 19084:2 19094:2 19106:1 19107:3 19136:1 19141:1 19143:2 19165:1 19167:2 19170:5 19177:1 19179:3 19182:1 19185:2 19202:1 19206:1 19222:1 19232:1 19235:1 19238:1 19240:1 19243:2 19245:2 19271:2 19272:2 19281:1 19285:1 19298:1 19306:1 19307:3 19313:1 19315:1 19316:1 19331:1 19352:1 19374:1 19376:1 19382:2 19385:1 19406:1 19407:2 19409:1 19420:1 19425:1 19434:2 19435:1 19440:3 19449:2 19455:1 19457:1 19461:1 19466:1 19469:3 19473:1 19480:1 19489:1 19490:1 19497:3 19501:1 19504:1 19521:2 19539:1 19542:1 19550:1 19564:2 19586:1 19587:2 19595:1 19601:1 19603:1 19619:4 19640:1 19661:1 19664:1 19672:1 19675:1 19684:1 19685:1 19692:1 19711:6 19713:2 19715:1 19718:1 19726:1 19730:2 19731:2 19735:1 19737:2 19757:1 19759:2 19761:2 19772:1 19775:1 19776:1 19789:2 19805:1 19813:1 19814:1 19817:1 19819:1 19827:1 19834:1 19840:2 19841:2 19877:1 19879:2 19907:1 19924:2 19926:3 19936:2 19944:1 19956:1 19962:1 19971:3 20012:3 20014:1 20016:1 20017:2 20020:2 20021:2 20022:1 20034:1 20037:14 20039:2 20052:1 20070:2 20072:1 20078:1 20103:1 20118:1 20130:1 20131:1 20136:1 20151:1 20152:1 20153:2 20160:3 20179:2 20185:2 20191:1 20209:1 20210:1 20216:1 20229:1 20249:1 20255:4 20260:2 20261:4 20265:1 20274:2 20304:2 20307:1 20340:1 20342:1 20346:1 20382:3 20383:1 20392:1 20420:1 20423:1 20429:1 20437:1 20439:1 20450:1 20456:3 20467:3 20474:2 20480:1 20488:1 20489:2 20507:1 20508:1 20514:1 20523:1 20531:1 20532:4 20540:1 20542:1 20556:1 20571:1 20579:1 20585:4 20591:1 20595:2 20618:1 20621:4 20630:1 20645:4 20649:1 20651:1 20655:3 20658:1 20676:2 20677:1 20682:1 20693:1 20695:2 20701:1 20748:1 20749:1 20776:1 20790:1 20792:14 20797:1 20806:1 20813:1 20821:1 20822:1 20832:1 20852:1 20860:1 20861:1 20865:1 20869:1 20878:1 20880:1 20883:3 20884:2 20886:1 20892:1 20906:1 20912:1 20915:1 20922:1 20925:2 20942:1 20946:6 20948:1 20950:2 20952:1 20965:4 20971:2 20976:1 20980:2 20981:1 21013:1 21020:3688 21028:1 21044:1 21046:5 21047:1 21054:2 21066:2 21086:1 21097:1 21108:2 21121:1 21131:1 21136:3 21137:1 21147:1 21177:1 21178:3 21201:2 21212:2 21236:1 21239:5 21242:2 21268:3 21277:1 21280:1 21284:3 21287:1 21299:1 21315:1 21340:1 21341:1 21346:1 21361:1 21381:1 21384:5 21390:1 21402:1 21410:1 21414:1 21418:1 21422:1 21442:3 21454:1 21463:2 21474:1 21484:1 21490:1 21494:1 21495:1 21511:1 21539:1 21549:1 21551:2 21554:1 21556:1 21563:4 21576:2 21586:1 21601:1 21610:1 21619:1 21660:1 21661:4 21675:1 21678:3 21720:1 21728:1 21749:1 21773:1 21779:2 21789:1 21795:2 21797:1 21803:2 21810:1 21819:4 21832:2 21835:1 21836:4 21841:1 21843:1 21857:5 21867:16 21891:1 21892:1 21894:3 21895:1 21896:23 21909:2 21929:1 21930:6 21932:1 21934:1 21950:2 21965:1 21970:5 21991:1 21995:2 22000:1 22002:6 22004:2 22008:1 22015:1 22029:2 22030:1 22060:1 22068:3 22075:1 22089:1 22101:3 22131:1 22133:1 22136:1 22190:1 22194:1 22198:1 22229:1 22235:1 22244:1 22262:1 22264:13 22272:1 22290:1 22308:1 22316:1 22317:1 22323:1 22340:1 22352:1 22369:1 22375:1 22377:7 22396:1 22399:1 22404:1 22422:2 22439:1 22443:1 22444:1 22462:1 22467:1 22474:1 22476:1 22478:2 22483:1 22484:2 22485:1 22495:2 22510:1 22516:1 22534:1 22542:4 22547:1 22556:1 22561:1 22581:3 22582:1 22590:1 22610:3 22616:1 22623:1 22624:1 22644:1 22651:5 22676:2 22680:1 22685:2 22687:2 22701:2 22702:1 22704:1 22708:7 22737:1 22745:1 22758:1 22771:1 22775:1 22781:1 22800:15 22809:1 22822:2 22825:3 22844:1 22845:1 22861:1 22863:15 22881:1 22900:1 22910:1 22922:1 22924:1 22931:1 22933:1 22945:1 22964:2 22993:1 22999:1 23003:1 23004:1 23005:1 23024:2 23042:1 23043:4 23045:2 23056:1 23063:1 23105:2 23125:1 23153:5 23165:1 23166:3 23183:1 23185:1 23198:1 23199:1 23209:1 23242:1 23245:1 23264:2 23265:1 23312:2 23330:1 23335:1 23341:1 23369:1 23371:1 23374:2 23383:1 23399:1 23401:1 23407:2 23439:1 23441:1 23446:1 23457:1 23466:1 23490:3 23501:1 23512:2 23517:1 23519:1 23521:1 23522:1 23525:1 23532:14 23540:1 23542:2 23546:3 23547:1 23549:5 23550:1 23560:3 23569:5 23574:1 23595:4 23597:1 23605:1 23606:1 23638:2 23639:1 23641:1 23653:2 23657:1 23673:2 23681:1 23682:1 23696:1 23711:8 23719:1 23722:2 23730:1 23738:1 23742:1 23743:1 23756:1 23765:1 23786:1 23803:1 23808:1 23810:1 23832:3 23836:1 23839:1 23843:1 23849:1 23859:3 23871:1 23873:1 23881:2 23882:1 23885:1 23886:1 23892:1 23898:1 23900:1 23940:1 23944:3 23948:1 23968:1 23974:1 24003:1 24009:1 24015:1 24049:1 24055:1 24063:1 24065:4 24070:2 24073:3 24084:4 24087:2 24094:1 24097:1 24100:1 24135:1 24143:1 24147:1 24148:1 24149:1 24154:2 24164:1 24173:1 24180:1 24181:1 24186:1 24187:1 24188:2 24195:1 24201:1 24202:1 24216:2 24218:6 24221:3 24240:1 24241:1 24245:1 24255:1 24266:1 24271:1 24277:1 24305:1 24308:2 24310:1 24311:2 24320:3 24328:2 24339:1 24341:1 24344:1 24359:1 24360:4 24363:18 24377:1 24384:2 24385:2 24391:1 24395:1 24396:1 24402:1 24408:1 24412:1 24413:2 24426:1 24427:5 24441:1 24447:1 24472:3 24473:1 24475:3 24478:1 24482:1 24488:5 24505:1 24520:1 24542:1 24543:4 24556:2 24563:3 24567:1 24623:1 24649:4 24659:2 24661:1 24662:12 24666:3 24670:2 24682:2 24683:1 24687:1 24700:3 24701:1 24702:3 24703:2 24706:1 24707:1 24712:1 24714:2 24719:2 24722:1 24732:1 24734:1 24735:1 24747:2 24752:2 24758:1 24774:2 24809:1 24824:5 24825:1 24834:1 24855:1 24858:1 24861:1 24862:2 24869:2 24872:1 24877:1 24888:1 24894:1 24904:1 24908:4 24917:1 24923:1 24926:1 24935:1 24967:1 24979:24 24980:2 24984:1 25005:1 25018:1 25021:1 25026:2 25033:1 25047:1 25057:1 25065:1 25071:4 25074:1 25092:1 25094:2 25101:1 25103:1 25104:1 25106:1 25110:2 25121:2 25125:1 25126:1 25129:9 25137:1 25139:2 25148:2 25156:4 25168:2 25190:1 25194:2 25201:1 25206:1 25209:2 25218:1 25233:1 25236:1 25241:1 25243:1 25245:2 25252:1 25256:1 25270:2 25275:1 25289:10 25303:4 25313:1 25318:4 25328:1 25340:1 25368:1 25369:1 25387:2 25405:1 25406:1 25423:1 25439:1 25459:1 25473:3 25480:1 25485:1 25494:1 25501:2 25503:1 25510:1 25526:1 25535:1 25539:1 25547:1 25558:1 25561:1 25579:1 25581:1 25584:1 25588:2 25595:15 25597:1 25598:2 25620:1 25630:1 25634:2 25643:1 25653:1 25655:1 25667:2 25676:1 25683:1 25689:3 25694:1 25695:2 25697:1 25705:1 25720:1 25722:1 25732:3 25743:1 25748:1 25754:1 25755:5 25780:1 25787:1 25788:1 25791:1 25804:1 25808:1 25828:2 25835:1 25845:1 25850:1 25853:1 25860:1 25871:2 25890:1 25907:1 25912:1 25928:1 25929:2 25936:2 25944:1 25954:1 26001:1 26015:1 26016:1 26017:6 26024:1 26030:1 26043:1 26044:1 26056:2 26064:1 26073:1 26075:2 26094:1 26104:1 26133:1 26135:3 26149:1 26157:1 26160:2 26165:1 26174:2 26179:4 26184:1 26187:1 26206:1 26213:1 26230:2 26243:1 26254:3 26255:5 26264:1 26265:1 26277:6 26283:1 26287:1 26290:1 26294:1 26297:1 26308:1 26309:1 26315:1 26316:3 26319:2 26324:1 26332:1 26352:2 26359:1 26360:2 26364:1 26380:1 26415:5 26421:1 26424:29 26426:1 26498:1 26516:2 26528:1 26530:2 26532:1 26534:1 26539:1 26552:1 26605:3 26609:1 26612:2 26613:1 26624:1 26635:1 26636:1 26642:1 26655:2 26676:1 26679:1 26694:1 26705:1 26721:1 26724:1 26748:1 26751:2 26758:2 26775:1 26794:4 26806:1 26814:1 26818:1 26847:1 26878:1 26880:1 26897:2 26920:1 26924:2 26929:1 26931:2 26934:1 26936:1 26938:2 26952:1 26968:1 26978:1 27003:1 27009:1 27014:1 27021:1 27022:1 27028:1 27032:2 27047:1 27070:1 27072:1 27085:1 27097:1 27102:1 27104:1 27112:1 27114:8 27122:1 27132:1 27133:1 27137:1 27141:3 27159:2 27170:1 27173:1 27183:1 27198:1 27225:1 27228:1 27242:1 27251:3 27262:1 27299:1 27303:5 27321:1 27330:1 27360:2 27373:1 27377:1 27388:1 27389:1 27393:1 27397:5 27398:3 27401:1 27419:1 27427:1 27437:2 27439:3 27447:1 27451:3 27456:2 27460:1 27488:2 27489:2 27491:1 27502:3 27512:1 27516:1 27522:2 27533:2 27552:1 27569:1 27574:1 27575:1 27595:1 27602:4 27612:3 27618:1 27620:1 27627:1 27641:1 27642:1 27651:1 27672:1 27673:1 27676:1 27679:1 27684:1 27701:1 27704:1 27716:1 27727:1 27728:2 27743:1 27753:1 27757:3 27760:1 27763:1 27769:1 27778:1 27792:1 27804:1 27809:1 27813:1 27817:1 27843:1 27846:1 27851:1 27863:1 27872:2 27881:1 27884:1 27917:3 27933:5 27957:1 27970:1 27985:1 27989:1 27997:1 28007:1 28015:2 28016:1 28021:1 28032:6 28033:1 28043:1 28068:3 28071:1 28074:1 28094:1 28112:2 28132:1 28139:1 28145:4 28174:1 28178:1 28183:1 28234:1 28242:4 28253:1 28255:1 28273:8 28277:1 28288:1 28303:1 28305:1 28327:2 28331:6 28335:1 28342:1 28344:1 28348:4 28354:1 28408:1 28414:1 28442:1 28485:1 28499:1 28500:1 28503:3 28506:1 28507:2 28509:8 28512:3 28518:1 28524:1 28537:1 28540:1 28557:3 28560:1 28563:2 28591:1 28602:1 28608:6 28609:1 28610:1 28625:1 28635:4 28641:6 28642:2 28652:2 28665:1 28666:1 28671:1 28680:1 28697:2 28702:1 28725:6 28728:1 28734:1 28739:1 28740:1 28753:2 28754:1 28762:1 28778:2 28803:1 28811:3 28828:1 28847:5 28850:1 28870:4 28872:4 28875:1 28902:2 28913:1 28937:1 28945:3 28972:1 28981:1 28994:2 28996:1 28998:4 29029:1 29052:1 29056:1 29060:2 29063:1 29066:1 29080:1 29085:2 29088:3 29102:1 29104:1 29105:1 29109:2 29120:1 29123:1 29128:1 29146:2 29147:1 29155:1 29156:2 29161:1 29165:1 29174:1 29189:6 29195:1 29197:1 29199:1 29210:1 29212:1 29215:1 29219:3 29234:1 29261:1 29272:2 29291:1 29302:1 29316:1 29320:1 29326:1 29327:1 29332:1 29334:3 29365:15 29374:1 29409:1 29412:1 29417:2 29439:1 29455:1 29472:2 29483:1 29491:1 29498:1 29503:1 29518:3 29519:2 29527:1 29543:1 29546:2 29558:1 29564:1 29574:2 29623:2 29637:3 29653:5 29655:2 29658:1 29665:1 29673:1 29675:2 29676:1 29677:4 29679:9 29683:1 29685:1 29711:1 29725:1 29732:2 29759:1 29766:1 29771:1 29781:4 29792:1 29797:1 29815:1 29821:3 29842:1 29850:1 29855:1 29861:2 29866:1 29867:1 29882:1 29910:2 29917:1 29923:2 29928:1 29951:1 29956:1 29964:1 29979:1 29985:1 29992:1 30023:1 30033:1 30051:1 30063:1 30079:1 30085:1 30091:1 30121:1 30123:2 30129:1 30149:1 30160:3 30168:2 30183:2 30198:1 30205:1 30221:1 30235:1 30240:1 30294:2 30295:2 30308:2 30311:1 30315:1 30334:1 30352:1 30364:1 30367:1 30371:2 30393:2 30398:1 30399:5 30410:1 30412:1 30415:1 30418:9 30433:1 30438:1 30450:2 30451:2 30452:1 30506:1 30514:1 30524:29 30525:1 30529:3 30531:1 30540:1 30547:1 30560:5 30585:1 30592:1 30633:1 30643:3 30647:3 30648:4 30651:2 30656:1 30662:1 30667:1 30684:1 30698:2 30701:1 30703:1 30706:1 30707:1 30719:2 30721:2 30724:2 30727:2 30728:1 30738:1 30739:1 30740:1 30741:1 30743:1 30745:3 30753:1 30757:3 30760:1 30788:2 30800:1 30816:1 30818:2 30827:1 30832:1 30845:1 30846:2 30849:1 30855:1 30876:1 30879:1 30881:1 30893:1 30895:1 30901:1 30906:3 30907:2 30916:1 30927:1 30958:2 30960:1 30978:1 30985:2 30986:2 30993:2 30997:1 30998:1 31004:1 31007:1 31021:3 31023:1 31030:2 31057:1 31088:12 31104:1 31120:1 31132:1 31168:3 31176:3 31192:1 31200:2 31204:1 31207:1 31243:1 31259:1 31262:4 31268:1 31302:2 31308:1 31309:1 31311:1 31317:1 31318:1 31349:5 31359:5 31389:1 31392:1 31394:1 31400:3 31403:1 31414:1 31418:1 31455:1 31473:1 31476:1 31477:1 31489:4 31493:1 31502:1 31514:1 31526:3 31529:1 31541:1 31544:28 31545:2 31546:2 31549:3 31552:4 31555:1 31556:1 31566:1 31586:1 31587:13 31597:1 31602:1 31603:1 31613:1 31644:1 31645:1 31646:1 31651:2 31661:1 31662:2 31669:1 31673:2 31681:1 31691:1 31697:1 31702:6 31713:5 31718:1 31719:2 31743:1 31754:3 31758:1 31759:2 31763:1 31766:1 31784:1 31786:1 31801:1 31802:1 31806:1 31829:1 31834:1 31849:1 31854:1 31863:2 31866:1 31900:2 31901:2 31909:1 31932:1 31943:1 31944:1 31951:1 31953:1 31957:2 31959:1 31964:4 31969:2 31971:1 31976:1 31989:1 31990:1 31994:2 32000:1 32012:1 32028:8 32032:1 32034:3 32039:4 32041:1 32083:1 32106:1 32110:3 32115:8 32118:1 32119:1 32125:1 32126:1 32142:2 32146:2 32147:2 32158:1 32163:1 32175:2 32178:2 32179:1 32186:1 32214:3 32225:1 32241:1 32257:1 32263:3 32269:1 32272:1 32275:2 32279:2 32280:1 32303:2 32307:2 32310:5 32314:1 32321:5 32330:1 32342:2 32363:1 32374:1 32381:1 32429:1 32439:1 32445:1 32471:3 32473:2 32488:1 32505:4 32510:1 32522:1 32539:2 32543:1 32547:1 32559:1 32582:1 32590:2 32596:1 32605:3 32617:1 32628:1 32642:1 32644:1 32662:1 32676:3 32681:1 32684:1 32686:1 32688:1 32701:1 32713:2 32727:1 32732:1 32733:6 32735:1 32740:2 32755:2 32781:1 32785:3 32787:1 32811:1 32821:5 32831:2 32835:1 32861:1 32891:1 32894:1 32897:1 32898:1 32902:1 32903:1 32905:5 32910:1 32921:1 32950:1 32957:2 32966:1 32971:1 32972:1 32973:1 32977:1 33021:1 33035:1 33038:1
16 10:1 13:1 26:1 27:2 28:1 41:1 55:1 66:1 72:1 78:1 84:1 85:5 104:1 109:1 145:1 164:1 173:1 175:1 176:4 186:1 189:2 191:1 219:1 225:1 232:3 235:1 262:1 269:4 272:1 273:1 285:1 295:2 318:3 338:1 351:4 355:1 375:1 387:1 397:2 398:1 399:3 418:2 427:1 434:1 437:1 443:1 459:1 468:2 475:1 484:1 502:3 505:2 509:2 525:1 535:1 542:1 551:2 567:1 575:1 577:1 581:1 584:1 589:2 591:2 628:1 629:1 636:2 649:5 709:1 713:3 716:1 723:3 751:3 757:1 762:4 766:1 774:1 779:1 790:1 791:1 793:1 805:1 812:1 821:1 832:1 860:2 869:2 886:1 891:1 908:1 929:1 937:1 944:1 949:2 957:1 962:1 970:1 975:4 984:1 988:3 991:2 1000:2 1007:1 1016:1 1035:2 1039:1 1046:2 1050:1 1051:1 1054:1 1058:2 1068:2 1069:2 1078:3 1080:1 1081:3 1082:6 1084:2 1091:2 1113:1 1114:2 1116:2 1136:1 1138:1 1139:6 1143:2 1149:1 1164:1 1170:1 1180:2 1185:2 1202:1 1220:2 1221:1 1240:1 1250:1 1254:1 1259:1 1285:2 1286:1 1288:1 1301:2 1322:1 1331:2 1341:1 1352:1 1353:3 1356:1 1359:1 1366:2 1368:1 1369:2 1377:2 1387:1 1388:4 1398:2 1406:1 1409:2 1412:1 1425:2 1426:3 1457:1 1464:1 1466:2 1469:2 1472:5 1475:1 1487:2 1488:7 1489:2 1490:1 1506:3 1512:1 1524:1 1526:1 1528:1 1535:1 1540:1 1544:1 1546:3 1560:2 1572:2 1574:1 1586:2 1600:2 1611:1 1630:1 1633:1 1637:1 1642:2 1650:1 1676:3 1677:1 1683:1 1689:1 1692:1 1695:2 1711:1 1733:1 1742:6 1750:1 1754:1 1760:7 1767:2 1773:1 1774:2 1775:1 1776:1 1780:4 1787:1 1791:1 1797:1 1802:5 1822:1 1835:1 1836:1 1839:9 1853:1 1863:3 1865:2 1866:2 1867:2 1871:2 1879:2 1881:1 1907:2 1914:1 1919:5 1924:5 1927:2 1928:1 1939:1 1941:1 1944:1 1953:1 1963:5 1966:3 1968:1 1975:1 1976:1 1985:1 1993:2 1994:1 1998:1 2018:1 2038:1 2039:1 2050:2 2053:1 2054:1 2055:1 2058:1 2069:4 2077:5 2089:1 2097:1 2098:1 2109:1 2122:1 2127:1 2128:1 2134:1 2139:1 2142:1 2143:1 2150:1 2156:2 2157:2 2165:1 2174:1 2175:1 2180:1 2187:1 2188:1 2192:1 2194:1 2201:4 2211:1 2215:1 2219:2 2226:1 2230:1 2232:2 2234:4 2239:1 2241:1 2243:1 2245:1 2262:1 2263:4 2264:1 2282:1 2291:1 2317:1 2320:1 2323:1 2339:1 2345:1 2354:2 2358:2 2360:2 2361:2 2368:3 2369:1 2407:1 2414:2 2435:1 2438:1 2439:1 2441:4 2443:1 2444:2 2445:1 2446:1 2447:1 2475:4 2501:2 2509:2 2518:1 2531:1 2553:1 2556:1 2566:1 2571:1 2572:3 2584:1 2587:1 2588:1 2594:1 2601:1 2628:2 2629:1 2630:1 2631:2 2632:5 2635:1 2636:3 2637:1 2638:6 2640:1 2641:1 2643:6 2645:1 2647:4 2651:2 2654:1 2659:1 2660:6 2665:3 2666:1 2668:7 2673:1 2674:1 2683:1 2687:2 2691:1 2695:2 2700:1 2708:1 2712:1 2728:1 2733:1 2744:1 2754:2 2755:1 2759:1 2762:1 2763:3 2769:1 2773:1 2782:1 2790:2 2793:1 2794:1 2800:2 2808:1 2825:1 2826:1 2845:5 2856:1 2871:1 2876:2 2883:4 2885:1 2909:1 2914:1 2921:1 2925:1 2927:1 2944:1 2986:2 2994:1 3021:1 3023:1 3062:2 3071:1 3082:4 3092:1 3098:4 3108:1 3117:2 3119:1 3127:1 3130:3 3136:12 3150:1 3151:1 3161:1 3162:1 3164:2 3170:1 3173:1 3177:1 3178:1 3182:1 3189:4 3193:1 3197:1 3204:1 3226:2 3237:2 3246:2 3252:1 3254:1 3256:5 3264:4 3314:4 3322:1 3326:1 3328:1 3336:2 3339:1 3355:16 3363:7 3381:1 3392:2 3409:1 3426:32 3435:2 3441:1 3449:1 3457:1 3459:1 3473:1 3488:1 3497:1 3505:2 3532:1 3533:2 3536:1 3537:1 3542:2 3607:3 3612:1 3613:1 3625:3 3634:1 3639:2 3650:1 3666:1 3688:1 3689:1 3693:1 3697:2 3698:1 3700:1 3705:1 3710:2 3713:4 3721:1 3726:2 3739:13 3759:1 3764:1 3773:1 3789:2 3809:1 3821:1 3823:7 3842:1 3863:1 3894:1 3900:1 3906:1 3917:1 3918:2 3931:3 3941:1 3944:1 3959:1 3965:1 3971:3 3975:3 3983:2 3985:1 3992:1 4003:5 4041:1 4042:1 4046:1 4049:1 4053:3 4056:1 4075:1 4076:1 4077:1 4089:3 4091:2 4125:1 4140:1 4144:1 4150:1 4152:5 4156:2 4161:2 4164:2 4165:1 4185:2 4203:1 4210:1 4235:1 4245:2 4256:1 4266:1 4270:2 4271:4 4273:1 4297:1 4317:1 4323:4 4325:44 4331:1 4340:1 4347:1 4361:2 4363:1 4364:9 4367:1 4372:1 4375:1 4376:2 4377:27 4379:2 4381:6 4385:1 4391:2 4405:3 4408:1 4418:3 4419:4 4423:3 4425:4 4426:2 4438:2 4439:2 4442:2 4444:1 4463:1 4480:2 4490:1 4491:3 4498:1 4502:1 4507:1 4531:1 4534:1 4537:1 4539:2 4541:1 4543:1 4544:3 4555:2 4567:2 4570:1 4575:1 4581:1 4587:1 4595:1 4596:1 4597:2 4619:1 4622:1 4630:1 4632:2 4633:1 4635:1 4636:1 4643:1 4646:2 4652:1 4655:1 4658:5 4674:5 4678:1 4686:1 4722:1 4730:1 4734:1 4755:1 4785:1 4793:1 4799:3 4810:1 4813:3 4823:1 4834:2 4852:1 4855:1 4870:2 4876:2 4877:2 4879:1 4880:1 4906:1 4913:2 4923:1 4924:1 4926:1 4937:1 4966:1 4978:1 4989:2 4999:1 5010:14 5027:1 5044:1 5086:1 5090:2 5098:1 5106:5 5117:1 5120:2 5138:1 5152:7 5155:1 5166:1 5176:1 5181:2 5184:1 5195:1 5198:1 5205:1 5258:1 5268:2 5269:1 5298:1 5331:2 5343:2 5363:2 5367:1 5370:2 5381:1 5390:4 5403:1 5407:1 5410:4 5433:3 5434:1 5438:2 5439:1 5456:1 5470:1 5497:1 5509:1 5510:1 5514:1 5516:1 5528:1 5542:1 5545:2 5558:2 5613:2 5617:1 5632:1 5640:2 5643:1 5645:1 5650:1 5659:17 5660:2 5678:1 5699:2 5728:1 5729:2 5744:1 5750:1 5761:1 5770:1 5784:4 5797:3 5800:1 5802:4 5821:2 5822:4 5823:8 5824:1 5827:1 5828:2 5830:1 5831:3 5833:1 5840:1 5841:24 5842:1 5844:1 5848:2 5849:3 5860:2 5861:1 5877:2 5880:3 5888:1 5903:2 5936:2 5950:1 5958:1 5964:1 5968:1 5972:1 5977:2 6050:1 6056:2 6060:1 6081:3 6082:3 6089:5 6098:1 6125:1 6137:1 6140:1 6142:1 6157:1 6168:2 6169:24 6177:1 6205:1 6215:1 6216:3 6221:1 6236:2 6255:3 6271:1 6300:1 6301:1 6305:1 6322:1 6339:1 6350:1 6357:2 6371:1 6379:1 6383:1 6394:1 6396:1 6403:1 6404:2 6413:1 6462:1 6463:1 6465:1 6469:1 6473:1 6479:1 6480:1 6483:2 6493:1 6507:4 6515:1 6518:1 6531:2 6540:1 6542:1 6548:1 6550:2 6557:1 6568:2 6573:1 6574:2 6587:1 6598:1 6611:1 6617:5 6640:2 6647:1 6667:1 6669:1 6672:1 6673:1 6678:1 6686:1 6705:1 6707:1 6722:1 6723:1 6725:1 6728:1 6731:1 6733:1 6747:1 6748:1 6753:1 6768:1 6772:1 6775:1 6776:1 6777:1 6808:1 6825:1 6826:1 6843:1 6844:3 6845:1 6868:1 6870:5 6873:1 6876:1 6883:1 6891:1 6895:2 6897:1 6912:1 6938:1 6958:1 6959:2 6992:1 7029:1 7034:4 7035:9 7043:1 7045:2 7062:1 7068:2 7074:1 7078:1 7079:1 7102:1 7120:1 7128:1 7133:1 7139:1 7140:2 7146:1 7149:2 7150:1 7154:1 7157:1 7161:1 7190:5 7196:1 7200:2 7202:2 7227:1 7232:1 7237:1 7249:1 7254:3 7257:1 7260:2 7276:5 7278:1 7284:1 7295:1 7296:1 7300:1 7309:1 7316:1 7321:1 7338:1 7363:1 7382:6 7386:2 7387:2 7390:1 7391:1 7392:1 7394:2 7396:2 7397:1 7401:2 7402:3 7403:5 7409:3 7410:8 7411:1 7412:1 7413:4 7427:1 7441:2 7451:1 7454:1 7474:3 7477:1 7480:1 7493:1 7503:1 7508:2 7509:1 7553:1 7555:1 7559:1 7567:1 7579:2 7586:1 7611:1 7613:1 7615:1 7664:1 7681:4 7684:2 7687:1 7690:4 7709:1 7710:5 7716:3 7722:1 7725:1 7731:1 7732:1 7742:2 7762:1 7763:1 7764:3 7769:1 7770:2 7790:1 7791:1 7793:1 7805:1 7825:1 7846:1 7849:1 7852:1 7856:1 7869:3 7876:3 7877:2 7879:1 7891:3 7897:1 7900:2 7907:5 7915:3 7921:1 7940:1 7944:1 7947:3 7955:1 7985:1 7987:1 7998:1 8005:2 8012:1 8016:1 8019:1 8021:1 8026:2 8032:1 8071:1 8091:2 8093:1 8110:1 8111:3 8127:1 8135:1 8137:2 8138:1 8146:1 8169:1 8194:2 8215:1 8223:2 8224:1 8233:2 8251:1 8255:5 8259:1 8262:1 8263:3 8266:1 8270:1 8289:1 8299:1 8320:1 8335:1 8358:2 8399:1 8409:1 8425:1 8436:1 8442:1 8490:1 8499:2 8507:1 8512:1 8513:1 8526:5 8575:1 8577:1 8586:4 8604:2 8610:1 8629:5 8632:1 8674:2 8679:2 8688:2 8689:1 8711:2 8714:1 8723:2 8753:1 8759:1 8765:1 8768:1 8770:2 8784:1 8786:1 8791:5 8806:1 8821:1 8830:4 8831:5 8832:3 8842:1 8850:1 8854:2 8855:1 8858:2 8861:1 8866:1 8888:1 8890:2 8898:1 8900:1 8901:50 8902:1 8904:1 8908:2 8911:1 8920:16 8923:28 8929:1 8933:1 8936:1 8943:1 8945:1 8952:1 8978:6 8979:1 9001:1 9014:1 9034:1 9051:1 9058:1 9059:2 9068:1 9082:4 9085:1 9091:1 9104:1 9143:1 9149:4 9153:7 9161:1 9167:1 9199:1 9206:1 9209:5 9212:1 9230:1 9232:1 9234:1 9251:1 9263:1 9272:1 9285:1 9304:1 9341:1 9343:4 9347:1 9359:2 9362:1 9366:1 9368:1 9370:8 9386:2 9394:1 9405:1 9416:2 9428:2 9436:1 9444:2 9448:1 9454:1 9468:1 9470:1 9484:25 9495:1 9501:1 9511:1 9516:2 9524:2 9525:1 9551:2 9589:1 9594:1 9605:2 9616:1 9630:2 9639:4 9643:1 9664:1 9672:1 9678:3 9687:5 9694:3 9697:1 9709:2 9711:2 9715:4 9728:1 9732:2 9733:1 9734:2 9738:1 9747:1 9748:2 9754:2 9765:1 9777:2 9778:2 9785:1 9788:1 9790:1 9791:1 9792:1 9809:2 9811:1 9829:1 9836:1 9841:3 9848:1 9859:1 9866:1 9870:1 9875:1 9878:2 9880:1 9881:3 9882:2 9884:2 9885:5 9888:1 9890:1 9894:2 9897:2 9899:2 9903:3 9919:1 9925:3 9934:2 9944:1 9945:1 9950:1 9951:1 9959:1 9973:3 9977:2 9984:1 9995:2 10002:3 10019:1 10024:5 10044:1 10053:5 10056:1 10065:1 10067:1 10069:2 10080:1 10088:1 10092:1 10098:1 10121:1 10128:2 10138:1 10139:1 10144:1 10150:3 10161:3 10162:1 10166:1 10169:1 10181:2 10192:1 10204:1 10208:6 10209:2 10214:5 10216:1 10218:1 10219:4 10221:3 10223:2 10228:2 10229:2 10230:2 10252:3 10254:1 10255:2 10257:5 10270:1 10272:1 10295:3 10302:1 10308:1 10354:1 10359:1 10367:1 10377:3 10386:1 10397:2 10399:2 10410:1 10412:1 10422:1 10438:1 10441:1 10447:1 10454:1 10461:1 10463:1 10478:1 10485:3 10495:1 10496:1 10520:4 10554:1 10558:2 10563:1 10565:5 10578:1 10580:1 10588:8 10610:2 10615:3 10619:1 10627:1 10634:1 10653:1 10662:1 10671:3 10673:1 10695:1 10696:1 10701:1 10710:2 10726:1 10750:1 10756:1 10768:1 10800:1 10819:1 10820:1 10842:1 10845:1 10846:1 10851:3 10857:2 10858:1 10862:1 10864:2 10879:1 10900:2 10903:1 10906:2 10920:1 10937:1 10939:1 10942:3 10947:1 10958:1 10959:1 10975:1 11009:24 11016:1 11034:1 11039:2 11047:6 11056:2 11059:1 11083:1 11089:2 11091:1 11097:1 11102:1 11104:2 11124:2 11133:1 11140:1 11154:14 11168:1 11170:2 11171:1 11176:2 11189:1 11198:1 11209:1 11210:5 11218:1 11225:1 11226:1 11229:3 11230:1 11232:1 11245:1 11249:1 11263:1 11267:1 11276:1 11280:1 11300:3 11316:2 11318:3 11319:1 11336:1 11359:8 11363:2 11366:4 11368:2 11374:3 11375:1 11382:1 11392:3 11400:3 11402:1 11403:1 11408:2 11417:2 11422:4 11426:5 11427:1 11429:1 11437:1 11446:1 11453:1 11464:3 11470:4 11489:1 11492:2 11496:1 11507:1 11513:2 11521:2 11545:1 11550:1 11551:3 11553:1 11580:12 11582:1 11583:6 11595:1 11597:1 11600:1 11633:1 11692:1 11697:2 11703:1 11720:1 11728:1 11733:2 11754:4 11761:1 11775:4 11789:1 11796:2 11800:1 11803:1 11826:1 11832:1 11835:1 11859:1 11880:1 11897:2 11914:6 11921:1 11926:1 11932:1 11948:2 11955:1 11967:2 11970:1 11994:3 12001:7 12012:1 12014:1 12043:1 12044:1 12052:2 12072:3 12075:2 12090:1 12098:6 12099:2 12117:2 12119:4 12120:1 12121:6 12125:1 12128:1 12145:1 12147:4 12150:1 12160:2 12173:1 12174:3 12197:1 12200:1 12211:4 12225:1 12229:3 12241:2 12247:1 12249:8 12266:1 12314:1 12316:1 12322:1 12345:2 12346:2 12347:1 12352:1 12362:1 12392:2 12396:1 12408:1 12416:1 12459:2 12465:1 12468:1 12476:1 12492:1 12498:3 12499:1 12510:1 12512:8 12531:4 12534:7 12549:3 12553:1 12556:2 12558:1 12562:1 12571:1 12576:2 12589:1 12596:4 12610:1 12623:2 12634:1 12635:2 12642:5 12659:2 12664:4 12671:1 12676:3 12692:1 12703:1 12706:1 12707:1 12736:1 12739:1 12740:1 12743:1 12749:1 12753:1 12770:1 12787:1 12807:1 12810:1 12816:1 12818:1 12819:1 12821:1 12825:5 12826:1 12827:1 12850:1 12855:1 12863:1 12867:2 12880:2 12883:1 12888:1 12892:1 12893:1 12919:2 12951:1 12953:4 12958:1 12960:1 12963:2 12965:1 12970:1 12974:2 12980:1 12981:1 12983:1 12990:1 12991:1 13014:1 13021:5 13052:1 13057:1 13061:3 13063:6 13067:1 13070:2 13078:1 13081:3 13100:1 13118:1 13122:1 13125:1 13127:1 13130:1 13135:1 13138:2 13153:1 13176:3 13196:1 13204:1 13207:1 13215:1 13218:5 13233:1 13234:3 13236:1 13251:2 13252:3 13254:2 13263:1 13277:1 13284:1 13297:3 13303:1 13318:4 13324:2 13327:1 13328:10 13341:1 13343:1 13348:1 13350:1 13352:1 13354:1 13355:1 13363:1 13364:3 13366:1 13368:7 13369:1 13376:2 13379:7 13382:1 13387:1 13395:1 13397:1 13403:11 13428:2 13447:5 13454:2 13463:2 13467:1 13507:1 13518:4 13528:1 13532:1 13536:1 13537:2 13576:1 13577:1 13580:1 13590:3 13592:1 13607:1 13616:1 13620:2 13629:1 13645:1 13652:1 13664:1 13674:1 13690:2 13692:2 13717:2 13737:2 13742:1 13759:1 13766:1 13780:5 13832:2 13834:2 13847:1 13858:1 13867:1 13872:1 13874:1 13878:1 13887:1 13913:4 13914:4 13916:24 13921:1 13923:7 13933:1 13940:1 13941:2 13945:1 13956:3 13962:1 13972:2 14002:1 14007:1 14021:2 14038:1 14041:1 14043:1 14073:1 14074:3 14082:9 14083:2 14098:1 14105:1 14106:4 14109:2 14130:1 14156:1 14167:4 14172:1 14198:1 14207:1 14216:1 14219:2 14222:1 14228:1 14235:1 14248:2 14265:1 14286:2 14292:1 14312:5 14326:2 14329:1 14336:2 14369:1 14373:3 14379:1 14381:1 14382:1 14387:1 14388:1 14399:1 14417:2 14441:1 14443:1 14449:1 14456:1 14469:1 14506:6 14519:1 14520:1 14523:1 14527:2 14528:1 14530:1 14535:1 14546:1 14565:2 14566:4 14588:2 14592:3 14629:1 14660:1 14667:2 14693:1 14705:1 14728:1 14735:2 14746:1 14748:1 14751:3 14775:1 14785:2 14810:1 14819:1 14820:2 14865:1 14869:1 14870:1 14875:1 14894:5 14896:1 14907:1 14920:1 14926:1 14930:1 14943:1 14948:1 14950:1 14955:1 14960:1 14970:2 14990:3 14993:1 15002:2 15013:1 15014:1 15015:1 15017:2 15023:1 15035:1 15044:1 15045:2 15080:1 15086:1 15088:2 15140:2 15146:3 15154:1 15155:2 15156:8 15159:2 15162:4 15164:1 15171:2 15178:3 15182:1 15192:3 15195:1 15198:2 15204:3 15214:1 15234:7 15238:1 15247:1 15250:1 15252:1 15254:3 15266:2 15267:1 15280:2 15295:1 15301:2 15306:1 15317:1 15336:1 15338:6 15343:1 15353:1 15355:1 15365:1 15380:2 15400:3 15420:1 15423:1 15428:2 15430:7 15441:1 15450:1 15464:2 15465:3 15466:2 15467:1 15468:1 15480:4 15486:1 15502:1 15503:1 15511:2 15513:1 15514:2 15529:1 15538:2 15561:1 15576:1 15579:2 15581:1 15588:1 15589:1 15597:1 15598:2 15599:2 15600:2 15602:2 15606:1 15627:1 15635:1 15636:1 15639:1 15640:1 15642:1 15655:1 15659:1 15660:1 15663:2 15664:1 15677:1 15683:1 15684:2 15688:3 15691:1 15701:2 15706:1 15707:1 15726:1 15739:8 15748:2 15750:1 15754:1 15797:1 15801:1 15821:2 15822:1 15823:2 15827:2 15851:1 15853:2 15856:2 15857:1 15861:5 15891:1 15906:1 15908:1 15918:1 15921:1 15933:2 15934:3 15938:3 15939:7 15950:2 15970:2 15977:3 15997:1 16008:2 16035:2 16037:1 16043:2 16046:1 16051:1 16063:2 16064:1 16070:2 16074:1 16091:1 16107:1 16118:1 16189:1 16192:2 16195:1 16202:2 16220:1 16246:1 16263:1 16279:1 16288:1 16310:3 16339:1 16341:1 16345:2 16361:1 16362:1 16377:1 16382:3 16392:2 16393:1 16401:1 16402:1 16408:1 16412:5 16414:1 16416:1 16424:1 16428:1 16442:2 16444:1 16467:1 16468:1 16483:1 16491:1 16495:1 16506:1 16517:1 16525:2 16535:1 16561:2 16570:1 16583:1 16597:1 16600:2 16603:1 16612:1 16618:2 16621:2 16631:1 16640:5 16661:2 16675:1 16687:2 16692:1 16718:1 16738:1 16775:4 16789:1 16810:1 16828:1 16867:1 16874:1 16885:1 16892:2 16938:1 16939:1 16951:1 16956:1 16970:2 17000:4 17005:3 17007:2 17010:1 17012:1 17013:1 17031:2 17037:1 17059:3 17073:1 17078:1 17098:2 17099:1 17109:4 17137:1 17150:1 17162:1 17163:2 17167:1 17170:1 17191:1 17194:1 17202:2 17205:1 17207:4 17235:1 17237:3 17240:1 17245:1 17246:1 17255:1 17280:1 17283:1 17293:1 17294:1 17339:1 17347:2 17353:3 17355:4 17360:1 17379:5 17380:1 17385:1 17408:1 17433:6 17435:2 17441:1 17445:1 17448:1 17479:1 17481:1 17488:1 17490:1 17496:1 17501:4 17508:3 17512:2 17520:2 17546:1 17558:1 17566:2 17584:1 17591:1 17611:1 17627:1 17628:1 17633:1 17634:1 17637:1 17653:1 17662:3 17668:1 17685:11 17687:8 17689:1 17694:1 17722:2 17734:1 17736:2 17740:2 17758:4 17763:1 17776:2 17783:1 17796:1 17803:1 17805:1 17813:1 17826:1 17829:3 17833:1 17835:1 17844:8 17854:3 17855:1 17863:1 17864:1 17866:2 17873:1 17875:4 17878:1 17881:1 17884:1 17885:6 17889:2 17890:7 17892:1 17896:2 17900:2 17901:1 17902:1 17912:1 17913:6 17919:4 17954:1 17968:2 17996:1 18009:1 18010:1 18012:2 18015:2 18021:1 18022:2 18024:2 18030:6 18041:1 18060:2 18065:1 18073:1 18076:2 18096:2 18101:3 18127:2 18145:1 18146:1 18149:1 18158:1 18171:1 18175:1 18178:3 18182:1 18184:1 18187:8 18198:2 18199:2 18217:3 18222:1 18225:4 18243:1 18254:1 18263:24 18268:1 18291:1 18292:1 18300:6 18301:1 18305:1 18324:2 18341:70 18361:3 18366:1 18390:1 18418:1 18424:1 18426:1 18427:3 18442:1 18454:1 18455:1 18456:1 18460:1 18461:1 18464:1 18467:2 18468:1 18469:2 18473:3 18474:6 18477:1 18482:3 18484:1 18486:2 18493:2 18501:1 18513:1 18516:1 18518:1 18523:2 18526:1 18530:1 18536:1 18543:1 18544:1 18565:1 18567:1 18598:1 18604:1 18610:5 18634:1 18643:1 18648:2 18649:1 18654:4 18692:1 18696:2 18700:1 18705:1 18715:1 18762:1 18768:1 18797:1 18798:1 18808:1 18822:2 18826:1 18842:1 18861:1 18865:2 18867:1 18870:1 18903:1 18905:1 18908:2 18916:3 18922:5 18923:1 18927:1 18944:1 18946:3 18959:1 18968:3 18974:1 18985:3 18996:1 18997:1 19000:1 19004:3 19006:1 19008:2 19010:1 19016:1 19020:1 19027:1 19029:1 19042:3 19047:1 19048:13 19057:1 19059:2 19072:1 19084:2 19094:2 19106:1 19107:3 19136:1 19141:1 19143:2 19165:1 19167:2 19170:5 19177:1 19179:3 19182:1 19185:2 19202:1 19206:1 19222:1 19232:1 19235:1 19238:1 19240:1 19243:2 19245:2 19271:2 19272:2 19281:2 19285:1 19298:1 19306:1 19307:3 19313:2 19315:1 19316:1 19331:1 19352:1 19374:1 19376:1 19382:2 19385:1 19406:1 19407:2 19409:1 19420:1 19425:1 19434:2 19435:1 19440:3 19449:2 19455:1 19457:1 19461:1 19466:1 19469:3 19473:1 19480:1 19489:1 19490:1 19497:3 19501:1 19504:1 19521:2 19539:1 19542:1 19550:1 19564:2 19586:1 19587:3 19595:1 19601:1 19603:1 19619:4 19640:1 19661:1 19664:1 19672:1 19675:1 19684:1 19685:1 19692:1 19711:6 19713:2 19715:2 19718:1 19726:1 19730:2 19731:3 19735:1 19737:3 19757:1 19759:2 19761:2 19772:1 19775:1 19776:1 19789:2 19805:1 19813:1 19814:1 19817:1 19819:1 19827:1 19834:1 19840:2 19841:3 19877:1 19879:2 19907:1 19924:2 19926:3 19936:2 19944:1 19956:1 19962:1 19971:3 20012:3 20014:1 20016:1 20017:2 20020:2 20021:2 20022:1 20034:1 20037:14 20039:2 20052:1 20070:2 20072:1 20078:1 20103:1 20118:2 20130:1 20131:1 20136:1 20151:1 20152:1 20153:2 20160:3 20179:2 20185:2 20191:1 20209:1 20210:1 20216:1 20229:1 20249:1 20255:4 20260:2 20261:4 20265:1 20274:2 20304:2 20307:1 20340:1 20342:1 20346:1 20382:3 20383:1 20392:1 20420:1 20423:1 20429:1 20437:1 20439:1 20450:1 20456:3 20467:3 20474:2 20480:1 20488:1 20489:2 20507:1 20508:1 20514:2 20523:1 20528:1 20531:1 20532:4 20540:1 20542:1 20556:1 20571:1 20579:1 20585:4 20591:1 20595:2 20618:1 20621:4 20630:1 20645:5 20649:1 20651:1 20655:3 20658:1 20676:2 20677:1 20682:1 20693:1 20695:2 20701:1 20748:1 20749:1 20776:2 20790:1 20792:17 20797:1 20806:1 20813:1 20821:1 20822:1 20832:1 20852:1 20860:1 20861:1 20865:1 20869:1 20878:1 20880:1 20883:3 20884:2 20886:1 20892:2 20906:1 20912:1 20915:1 20922:1 20925:2 20942:1 20946:6 20948:1 20950:2 20952:1 20965:4 20971:2 20976:1 20980:2 20981:1 21013:1 21020:3767 21028:1 21044:1 21046:5 21047:1 21054:2 21066:2 21086:1 21097:1 21108:2 21121:1 21131:1 21136:3 21137:2 21147:2 21177:1 21178:3 21201:2 21212:2 21236:1 21239:6 21242:2 21268:3 21277:1 21280:1 21284:3 21287:1 21299:1 21315:1 21340:1 21341:1 21346:1 21361:1 21381:1 21384:5 21390:1 21402:2 21410:1 21414:1 21418:1 21422:1 21442:3 21454:1 21463:2 21474:1 21484:1 21490:1 21494:1 21495:1 21503:1 21511:1 21539:1 21549:1 21551:2 21554:1 21556:1 21563:4 21576:2 21586:1 21601:1 21610:2 21619:1 21660:1 21661:4 21675:1 21678:3 21720:1 21728:1 21749:1 21773:1 21779:2 21789:1 21795:2 21797:1 21803:2 21810:1 21819:4 21832:2 21835:1 21836:4 21841:1 21843:1 21853:1 21857:5 21867:18 21891:1 21892:1 21894:3 21895:1 21896:24 21909:2 21929:1 21930:6 21932:1 21934:1 21950:2 21965:1 21970:6 21991:1 21995:2 22000:1 22002:6 22004:2 22008:1 22015:1 22029:2 22030:1 22060:1 22068:3 22075:1 22089:1 22101:3 22131:1 22133:1 22136:1 22190:1 22194:1 22198:1 22229:1 22235:1 22244:1 22262:1 22264:13 22272:1 22290:1 22308:1 22316:2 22317:1 22323:1 22340:1 22352:1 22369:1 22375:1 22377:7 22396:1 22399:1 22404:1 22422:2 22439:1 22443:1 22444:1 22462:1 22467:1 22474:1 22476:1 22478:2 22483:1 22484:2 22485:1 22495:2 22510:1 22516:1 22534:1 22542:4 22547:1 22556:1 22561:1 22581:3 22582:1 22590:1 22610:3 22616:1 22623:1 22624:1 22643:1 22644:1 22651:5 22676:2 22680:1 22685:2 22687:2 22701:2 22702:1 22704:1 22708:8 22737:1 22745:1 22758:1 22771:1 22775:1 22781:1 22800:15 22809:2 22822:2 22825:3 22844:1 22845:1 22861:1 22863:15 22881:1 22900:1 22910:1 22922:1 22924:1 22931:1 22933:1 22945:1 22964:2 22993:1 22999:1 23003:1 23004:1 23005:1 23024:2 23042:1 23043:5 23045:2 23056:1 23063:1 23105:2 23125:1 23153:5 23165:1 23166:3 23183:1 23185:1 23198:1 23199:1 23209:1 23242:1 23245:1 23264:2 23265:1 23312:3 23330:1 23335:1 23341:1 23369:1 23371:1 23374:2 23383:1 23399:1 23401:1 23407:2 23439:1 23441:1 23446:1 23457:1 23466:1 23490:3 23501:1 23512:2 23517:1 23519:1 23521:1 23522:1 23525:1 23532:14 23540:1 23542:2 23543:1 23546:3 23547:1 23549:5 23550:1 23560:3 23569:5 23574:1 23595:5 23597:1 23605:1 23606:1 23638:2 23639:1 23641:1 23653:2 23657:1 23673:2 23681:1 23682:1 23696:1 23711:8 23719:1 23722:2 23730:1 23738:1 23742:2 23743:1 23756:1 23765:1 23786:1 23802:1 23803:1 23808:1 23810:1 23832:3 23836:1 23839:1 23843:1 23849:1 23859:4 23871:1 23873:1 23876:1 23881:2 23882:1 23885:1 23886:1 23892:1 23898:1 23900:1 23940:1 23944:3 23948:1 23968:1 23974:1 24003:1 24009:1 24015:2 24049:1 24055:1 24063:1 24065:4 24070:2 24073:3 24084:5 24087:3 24094:1 24097:1 24100:1 24135:1 24143:1 24147:2 24148:1 24149:1 24154:2 24164:1 24173:1 24180:1 24181:1 24186:2 24187:1 24188:2 24195:1 24201:1 24202:1 24216:2 24218:7 24221:3 24240:1 24241:1 24245:1 24255:1 24266:1 24271:1 24277:1 24305:1 24308:2 24310:1 24311:2 24320:3 24328:2 24339:1 24341:1 24344:1 24359:1 24360:4 24363:18 24375:1 24377:1 24384:2 24385:3 24391:1 24395:1 24396:1 24402:1 24408:1 24412:1 24413:3 24426:1 24427:5 24441:1 24447:1 24472:3 24473:1 24475:3 24478:1 24482:1 24488:5 24505:1 24520:1 24542:1 24543:4 24556:2 24563:3 24567:1 24623:1 24649:4 24659:2 24661:1 24662:12 24666:3 24670:2 24682:2 24683:1 24687:1 24700:4 24701:2 24702:3 24703:2 24706:1 24707:1 24712:1 24714:2 24719:2 24722:1 24732:1 24734:1 24735:1 24747:2 24752:2 24758:1 24774:2 24809:1 24824:5 24825:1 24834:1 24855:1 24858:1 24861:1 24862:2 24869:2 24872:1 24877:1 24888:1 24894:1 24904:1 24908:4 24917:1 24923:1 24926:1 24935:1 24967:1 24979:24 24980:2 24984:1 25005:1 25018:1 25021:1 25026:2 25033:1 25047:1 25057:1 25065:1 25071:4 25074:1 25092:1 25094:2 25101:1 25103:1 25104:1 25106:1 25110:2 25121:2 25125:1 25126:1 25129:9 25137:1 25139:2 25148:2 25156:4 25168:2 25185:1 25190:1 25194:2 25201:1 25206:1 25209:2 25218:1 25233:1 25236:1 25241:2 25243:1 25245:2 25252:1 25256:1 25270:2 25275:1 25289:10 25303:4 25313:1 25318:4 25328:1 25331:1 25340:1 25368:1 25369:1 25387:2 25405:1 25406:1 25423:1 25439:1 25459:1 25473:3 25480:1 25485:1 25494:1 25501:2 25503:1 25510:2 25526:1 25535:1 25539:1 25547:1 25558:1 25561:1 25579:1 25581:1 25584:1 25588:2 25595:15 25597:1 25598:2 25620:1 25630:2 25634:2 25643:1 25653:1 25655:1 25667:2 25668:1 25676:1 25683:1 25689:3 25694:1 25695:2 25697:1 25705:1 25720:1 25722:1 25732:3 25743:1 25748:1 25754:1 25755:5 25780:1 25787:1 25788:1 25791:1 25804:1 25808:1 25828:2 25835:1 25845:1 25850:1 25853:1 25860:1 25871:2 25890:1 25907:1 25912:1 25928:1 25929:2 25936:2 25944:1 25954:1 26001:1 26015:1 26016:1 26017:6 26024:1 26030:1 26043:1 26044:1 26056:2 26064:1 26073:1 26075:2 26094:1 26104:1 26133:2 26135:3 26149:1 26157:1 26160:2 26165:1 26174:2 26179:4 26184:1 26187:1 26206:1 26213:1 26230:2 26243:1 26254:4 26255:5 26264:1 26265:1 26277:6 26283:1 26287:1 26290:1 26294:1 26297:1 26308:1 26309:1 26315:1 26316:4 26319:3 26324:1 26332:1 26352:2 26359:1 26360:2 26364:1 26380:1 26415:5 26421:1 26424:29 26426:1 26498:1 26516:2 26528:1 26530:2 26532:1 26534:1 26539:1 26552:1 26605:3 26609:1 26612:2 26613:1 26624:1 26635:1 26636:1 26642:1 26655:2 26676:1 26679:1 26694:1 26705:1 26721:1 26724:1 26748:1 26751:2 26758:2 26762:1 26775:1 26794:6 26806:2 26814:1 26818:1 26847:1 26878:1 26880:1 26897:2 26920:1 26924:2 26929:1 26931:2 26934:1 26936:1 26938:2 26952:1 26968:1 26978:1 27003:1 27009:1 27014:1 27021:1 27022:1 27028:1 27032:2 27047:1 27070:1 27072:1 27085:1 27097:1 27102:1 27104:1 27112:1 27114:9 27122:1 27132:1 27133:1 27137:1 27141:3 27159:2 27170:1 27173:1 27183:1 27198:1 27225:1 27228:1 27242:1 27251:4 27262:1 27299:1 27303:5 27321:1 27330:1 27360:2 27373:1 27377:1 27388:1 27389:1 27393:1 27397:5 27398:3 27401:1 27419:1 27427:1 27437:2 27439:3 27447:1 27451:4 27456:2 27460:1 27488:2 27489:2 27491:1 27502:3 27512:1 27516:1 27522:2 27533:2 27552:1 27569:1 27574:1 27575:1 27595:1 27602:4 27612:3 27618:1 27620:1 27627:1 27641:1 27642:1 27651:1 27672:1 27673:1 27676:1 27679:1 27684:1 27701:1 27704:1 27716:1 27727:1 27728:2 27743:1 27753:1 27757:3 27760:1 27763:1 27769:1 27778:1 27792:1 27804:1 27809:1 27813:1 27817:1 27843:1 27846:1 27851:1 27863:1 27872:2 27881:1 27884:1 27917:3 27933:5 27949:1 27957:1 27970:1 27985:1 27989:1 27997:1 28007:1 28015:2 28016:1 28021:1 28023:1 28032:6 28033:1 28043:1 28068:3 28071:1 28074:1 28094:1 28112:2 28132:1 28139:1 28145:4 28174:1 28178:1 28183:1 28234:1 28242:4 28253:1 28255:1 28273:8 28277:1 28288:1 28303:1 28305:1 28318:1 28327:2 28331:6 28335:1 28342:1 28344:1 28348:5 28354:1 28408:1 28414:1 28442:1 28485:1 28499:1 28500:1 28503:4 28506:1 28507:2 28509:8 28512:3 28518:1 28524:1 28537:1 28540:1 28557:3 28560:1 28563:2 28591:1 28602:1 28608:6 28609:1 28610:1 28625:1 28635:4 28641:7 28642:2 28652:2 28665:1 28666:1 28671:1 28680:1 28697:2 28702:2 28725:6 28728:1 28734:1 28739:1 28740:1 28753:2 28754:1 28762:1 28778:2 28803:1 28811:3 28828:1 28847:5 28850:1 28870:4 28872:4 28875:1 28902:2 28913:1 28937:1 28945:3 28972:1 28981:1 28994:2 28996:1 28998:4 29029:1 29052:1 29056:1 29060:2 29063:1 29066:1 29080:1 29085:2 29088:3 29102:1 29104:1 29105:1 29109:2 29120:1 29123:1 29128:1 29146:2 29147:1 29155:1 29156:2 29161:1 29165:1 29174:1 29189:6 29195:1 29197:1 29199:1 29210:1 29212:1 29215:1 29219:3 29234:1 29261:1 29272:2 29291:2 29302:1 29316:1 29320:1 29326:1 29327:1 29332:2 29334:4 29365:18 29374:1 29409:1 29412:1 29417:2 29439:1 29455:1 29472:2 29483:1 29491:1 29498:1 29503:1 29518:3 29519:2 29527:1 29543:1 29546:2 29558:1 29564:1 29574:2 29623:2 29637:3 29653:5 29655:2 29658:1 29665:1 29673:1 29675:2 29676:1 29677:4 29679:10 29683:2 29685:1 29711:1 29725:1 29732:2 29759:1 29766:1 29771:1 29781:4 29792:1 29797:1 29815:1 29821:3 29842:1 29850:1 29855:1 29861:2 29866:1 29867:1 29882:1 29910:3 29917:1 29923:2 29928:1 29951:2 29956:1 29964:1 29979:1 29985:2 29992:1 30023:1 30033:1 30051:1 30063:1 30079:1 30085:1 30091:1 30121:1 30123:2 30129:1 30149:1 30160:3 30168:2 30183:2 30198:1 30205:1 30221:1 30235:1 30240:1 30294:2 30295:2 30308:2 30311:1 30315:1 30334:1 30352:1 30364:1 30367:1 30371:2 30393:2 30398:1 30399:6 30410:1 30412:1 30415:1 30418:10 30433:1 30438:1 30450:2 30451:2 30452:1 30506:1 30514:1 30524:29 30525:1 30529:3 30531:1 30540:1 30547:1 30560:5 30585:2 30592:1 30633:1 30643:3 30647:3 30648:4 30651:2 30656:1 30662:1 30667:1 30684:1 30698:2 30701:1 30703:1 30706:1 30707:1 30719:2 30721:2 30724:2 30727:2 30728:1 30738:1 30739:1 30740:1 30741:1 30743:1 30745:3 30753:1 30757:3 30760:1 30788:2 30800:1 30816:1 30818:2 30827:1 30832:1 30845:1 30846:2 30849:1 30855:1 30876:2 30879:1 30881:1 30893:1 30895:1 30901:1 30906:3 30907:2 30916:1 30927:1 30958:2 30960:1 30978:1 30985:3 30986:2 30993:2 30997:1 30998:1 31004:1 31007:1 31021:4 31023:1 31030:2 31057:1 31080:1 31088:14 31104:1 31120:1 31132:1 31168:4 31176:4 31192:1 31200:2 31204:1 31207:1 31243:1 31259:1 31262:4 31268:1 31302:2 31308:1 31309:1 31311:1 31317:1 31318:1 31349:5 31359:5 31389:1 31392:1 31394:1 31400:3 31403:1 31414:1 31418:1 31455:2 31473:1 31476:1 31477:1 31489:4 31493:1 31502:1 31514:1 31526:3 31529:1 31541:1 31544:28 31545:2 31546:2 31549:3 31552:4 31555:1 31556:1 31566:1 31586:1 31587:13 31597:1 31602:1 31603:1 31613:2 31644:1 31645:1 31646:1 31651:2 31661:1 31662:2 31669:1 31673:2 31681:1 31691:1 31697:1 31702:7 31713:5 31718:1 31719:2 31743:1 31754:3 31758:1 31759:2 31763:1 31766:1 31784:1 31786:1 31801:1 31802:1 31806:1 31829:1 31834:1 31849:1 31854:1 31863:2 31866:1 31900:2 31901:2 31909:1 31932:1 31943:1 31944:1 31951:1 31953:1 31957:2 31959:1 31964:4 31969:2 31971:1 31976:1 31989:1 31990:1 31994:2 32000:1 32012:1 32028:10 32032:1 32034:3 32039:4 32041:1 32083:1 32106:1 32110:3 32115:9 32118:2 32119:1 32125:1 32126:1 32142:2 32146:2 32147:3 32158:1 32163:1 32175:2 32178:2 32179:1 32186:1 32214:3 32225:1 32241:1 32257:1 32263:3 32269:1 32272:1 32275:2 32279:2 32280:1 32303:2 32307:2 32310:5 32314:1 32321:5 32330:1 32342:2 32363:1 32374:1 32381:1 32429:1 32439:2 32445:1 32471:3 32473:2 32488:1 32505:4 32510:1 32522:1 32539:2 32543:1 32547:1 32559:1 32582:1 32590:2 32596:1 32605:3 32617:1 32628:1 32642:1 32644:1 32662:1 32676:3 32681:1 32684:1 32686:1 32688:1 32701:1 32713:2 32727:1 32732:1 32733:8 32735:1 32740:2 32755:2 32781:1 32785:3 32787:1 32811:1 32821:5 32831:2 32835:1 32861:1 32891:1 32894:1 32897:1 32898:1 32902:1 32903:1 32905:5 32910:1 32921:1 32950:1 32957:2 32966:1 32971:1 32972:1 32973:1 32977:1 33021:1 33035:1 33038:1
16 10:1 13:1 26:1 27:2 28:1 41:1 55:1 66:1 72:1 78:1 84:1 85:5 104:1 109:1 145:1 164:1 173:1 175:1 176:4 186:1 189:2 191:1 219:1 225:2 232:3 235:1 262:1 269:4 272:1 273:1 285:1 295:2 318:3 338:1 351:4 355:1 375:1 387:1 397:3 398:1 399:3 418:2 427:2 434:1 437:1 443:1 459:1 468:2 475:1 484:1 502:3 505:2 509:2 525:1 535:1 542:1 551:2 567:1 575:1 577:1 581:1 584:1 589:2 591:2 628:1 629:1 636:2 649:5 709:1 713:3 716:1 723:4 751:3 757:2 762:4 766:1 774:1 779:1 790:1 791:1 793:1 805:1 812:1 821:1 832:1 860:2 869:2 886:1 891:2 908:1 929:1 937:1 944:1 949:2 957:1 962:2 970:1 975:4 984:1 986:1 988:3 991:2 1000:2 1007:1 1016:1 1035:2 1039:1 1046:2 1050:1 1051:1 1054:1 1058:2 1068:2 1069:2 1078:3 1080:1 1081:3 1082:6 1084:2 1091:2 1113:1 1114:2 1116:2 1133:1 1136:1 1138:1 1139:6 1143:2 1149:1 1164:1 1165:1 1170:1 1180:2 1185:2 1196:1 1202:1 1220:2 1221:1 1240:1 1250:1 1254:1 1259:1 1285:2 1286:1 1288:1 1301:2 1322:1 1331:2 1341:1 1351:1 1352:1 1353:3 1356:1 1359:1 1366:2 1368:1 1369:2 1377:2 1387:1 1388:4 1398:2 1406:2 1409:2 1412:1 1425:2 1426:3 1457:1 1464:1 1466:2 1469:2 1472:5 1475:1 1487:2 1488:7 1489:2 1490:1 1506:3 1512:1 1524:1 1526:1 1528:1 1535:1 1540:2 1544:1 1546:4 1560:2 1572:2 1574:1 1586:2 1600:2 1611:1 1630:1 1633:1 1636:1 1637:1 1642:2 1650:1 1676:3 1677:1 1683:1 1689:1 1692:1 1695:2 1711:1 1733:1 1742:6 1750:1 1754:1 1760:8 1767:2 1773:1 1774:2 1775:1 1776:1 1780:4 1787:1 1791:1 1797:1 1802:5 1822:1 1835:1 1836:1 1839:10 1853:1 1863:3 1865:2 1866:2 1867:2 1871:2 1872:1 1879:2 1881:1 1899:1 1907:3 1914:1 1919:5 1924:5 1927:2 1928:1 1939:1 1941:2 1944:1 1953:1 1963:5 1966:3 1968:1 1975:1 1976:1 1985:1 1993:2 1994:1 1998:1 2018:1 2038:1 2039:1 2050:2 2053:1 2054:1 2055:1 2058:1 2069:4 2074:1 2077:5 2089:1 2097:1 2098:1 2109:1 2122:1 2127:1 2128:1 2134:1 2139:1 2142:1 2143:1 2150:1 2156:2 2157:2 2165:1 2174:1 2175:1 2180:1 2187:1 2188:1 2192:1 2194:1 2201:4 2211:1 2215:1 2219:2 2226:1 2230:1 2232:2 2234:4 2239:1 2241:1 2243:1 2245:1 2262:1 2263:4 2264:1 2282:1 2291:1 2317:1 2320:1 2323:1 2339:1 2345:1 2354:2 2358:2 2360:2 2361:2 2368:3 2369:1 2386:1 2407:1 2414:2 2435:1 2438:1 2439:1 2441:4 2443:1 2444:2 2445:1 2446:1 2447:1 2475:4 2501:2 2509:2 2518:1 2531:1 2553:1 2556:1 2566:1 2571:1 2572:3 2584:1 2587:1 2588:1 2594:1 2601:1 2628:2 2629:1 2630:1 2631:2 2632:5 2635:1 2636:3 2637:1 2638:6 2640:1 2641:1 2643:6 2645:1 2647:4 2651:2 2654:1 2659:1 2660:6 2665:3 2666:1 2668:8 2673:1 2674:1 2683:1 2687:2 2691:1 2695:2 2700:1 2708:1 2712:1 2728:1 2733:1 2737:1 2744:1 2752:1 2754:2 2755:1 2759:1 2762:1 2763:3 2764:1 2769:1 2773:1 2782:1 2790:2 2793:1 2794:1 2800:2 2808:1 2825:1 2826:1 2845:6 2856:1 2871:1 2876:2 2883:4 2885:1 2909:1 2914:1 2921:1 2925:1 2927:1 2944:1 2986:2 2994:1 3021:1 3023:1 3062:2 3071:1 3082:4 3092:1 3098:5 3108:1 3117:2 3119:1 3127:1 3130:3 3136:12 3150:1 3151:1 3161:1 3162:1 3164:3 3170:1 3173:1 3177:1 3178:1 3182:1 3189:4 3193:1 3197:1 3204:1 3226:2 3228:1 3237:2 3246:2 3252:1 3254:1 3256:5 3264:4 3314:4 3322:1 3326:1 3328:1 3336:2 3339:1 3355:16 3363:7 3365:1 3381:1 3392:2 3409:1 3426:32 3435:2 3441:1 3449:1 3457:1 3459:1 3473:1 3488:1 3497:1 3505:2 3532:1 3533:2 3536:1 3537:1 3542:2 3565:1 3607:3 3612:1 3613:1 3625:3 3634:1 3639:2 3650:1 3666:1 3688:1 3689:1 3693:1 3697:2 3698:1 3700:1 3705:1 3710:2 3713:4 3721:1 3726:2 3739:13 3759:1 3764:1 3773:1 3789:2 3798:1 3809:1 3821:1 3823:7 3842:1 3863:1 3885:1 3894:1 3900:1 3906:1 3917:1 3918:2 3931:3 3941:1 3944:1 3959:1 3965:1 3971:3 3975:3 3983:2 3985:1 3992:1 3993:1 4003:5 4041:1 4042:1 4046:1 4049:1 4053:3 4056:1 4075:1 4076:1 4077:1 4089:3 4091:2 4099:1 4125:1 4140:1 4144:1 4150:1 4152:5 4156:2 4161:2 4164:2 4165:1 4185:2 4203:1 4210:1 4235:1 4245:2 4256:1 4266:1 4270:2 4271:4 4273:1 4297:1 4315:1 4317:1 4323:4 4325:44 4331:1 4340:1 4346:1 4347:1 4361:2 4363:1 4364:9 4367:1 4372:1 4375:1 4376:2 4377:27 4379:2 4381:6 4385:1 4391:2 4405:4 4408:1 4418:3 4419:4 4423:3 4425:4 4426:2 4438:2 4439:2 4442:2 4444:1 4463:1 4480:2 4490:1 4491:3 4498:1 4502:1 4507:1 4531:1 4534:1 4537:1 4539:2 4541:1 4543:1 4544:3 4555:3 4567:2 4570:1 4575:1 4581:1 4587:1 4595:1 4596:1 4597:2 4619:1 4622:1 4630:1 4632:2 4633:1 4635:1 4636:1 4643:2 4646:2 4652:1 4655:1 4658:5 4674:5 4678:1 4686:1 4722:1 4730:1 4734:1 4755:1 4785:1 4793:1 4799:3 4810:1 4813:3 4823:1 4834:2 4852:1 4855:1 4870:2 4876:2 4877:2 4879:1 4880:1 4883:1 4906:1 4913:2 4923:1 4924:1 4926:1 4937:1 4966:1 4978:1 4989:2 4999:1 5010:14 5027:1 5044:1 5086:1 5090:3 5098:1 5106:5 5117:1 5120:2 5138:1 5152:7 5155:1 5166:1 5176:1 5181:2 5184:1 5195:1 5198:1 5203:1 5205:1 5258:1 5268:2 5269:1 5298:1 5331:2 5343:3 5360:1 5362:1 5363:2 5367:1 5370:2 5381:1 5390:4 5403:1 5407:1 5410:4 5433:3 5434:1 5438:2 5439:1 5456:1 5470:1 5497:1 5509:1 5510:1 5514:1 5516:1 5528:1 5542:1 5545:2 5558:2 5613:2 5617:1 5619:1 5632:1 5640:2 5643:1 5645:1 5650:1 5657:1 5659:17 5660:3 5678:1 5699:2 5728:1 5729:2 5744:1 5750:1 5761:1 5770:1 5784:4 5797:4 5800:1 5802:5 5821:2 5822:4 5823:8 5824:1 5827:1 5828:2 5830:1 5831:3 5833:1 5840:1 5841:24 5842:1 5844:1 5848:2 5849:3 5860:2 5861:1 5871:1 5877:2 5880:3 5888:1 5903:2 5936:2 5950:1 5958:1 5964:3 5968:1 5972:1 5977:2 6050:1 6056:2 6060:1 6081:3 6082:3 6088:1 6089:5 6098:1 6125:1 6137:1 6140:1 6142:1 6157:1 6168:2 6169:24 6177:1 6205:1 6215:1 6216:3 6221:1 6236:2 6255:3 6271:1 6300:1 6301:1 6305:1 6322:1 6339:1 6350:1 6357:2 6371:1 6379:1 6383:1 6394:1 6396:1 6403:1 6404:2 6413:1 6462:1 6463:1 6465:1 6469:1 6473:1 6479:1 6480:1 6483:2 6493:1 6507:4 6515:1 6518:1 6531:2 6540:1 6542:1 6548:1 6550:2 6557:1 6568:2 6573:1 6574:2 6587:1 6598:1 6611:1 6617:5 6640:2 6647:2 6667:1 6669:1 6672:1 6673:1 6678:1 6686:1 6705:1 6707:2 6722:1 6723:1 6725:1 6728:1 6731:1 6733:1 6747:2 6748:1 6753:1 6768:1 6772:1 6775:1 6776:1 6777:1 6808:1 6815:1 6825:1 6826:1 6843:1 6844:3 6845:1 6868:1 6870:5 6873:1 6876:1 6883:1 6891:1 6895:2 6897:1 6912:1 6938:1 6958:1 6959:2 6992:1 7004:1 7029:1 7034:5 7035:10 7043:1 7045:2 7062:1 7068:2 7074:1 7078:1 7079:1 7102:1 7120:1 7128:1 7133:1 7139:1 7140:2 7146:1 7149:2 7150:1 7154:1 7157:1 7161:1 7190:5 7196:1 7200:2 7202:2 7227:1 7232:1 7237:1 7249:1 7254:3 7257:1 7260:2 7276:6 7278:1 7284:1 7291:2 7295:1 7296:1 7300:1 7309:1 7316:1 7321:1 7338:1 7363:1 7382:7 7386:2 7387:2 7390:1 7391:1 7392:1 7394:3 7396:2 7397:1 7401:2 7402:3 7403:5 7409:3 7410:8 7411:1 7412:1 7413:4 7427:1 7441:2 7451:1 7454:1 7474:3 7477:1 7480:1 7493:1 7503:1 7508:2 7509:1 7548:1 7553:1 7555:1 7559:1 7567:1 7579:2 7586:1 7611:1 7613:1 7615:1 7664:1 7681:4 7684:2 7687:1 7690:4 7709:1 7710:5 7716:3 7722:1 7725:1 7731:1 7732:1 7742:2 7753:1 7762:1 7763:1 7764:3 7769:1 7770:2 7790:1 7791:1 7793:1 7805:1 7825:1 7846:1 7849:1 7852:1 7856:1 7869:3 7876:3 7877:2 7879:1 7891:3 7897:1 7900:2 7907:5 7915:3 7921:1 7940:1 7944:1 7947:3 7955:1 7985:1 7987:1 7998:1 8005:2 8012:1 8016:1 8019:1 8021:1 8026:2 8032:1 8066:1 8071:1 8091:2 8093:1 8110:1 8111:3 8127:1 8135:1 8137:2 8138:1 8146:1 8169:1 8194:2 8215:1 8223:2 8224:1 8232:1 8233:2 8251:1 8255:5 8259:1 8262:1 8263:3 8266:1 8270:1 8280:1 8287:1 8289:1 8299:1 8320:1 8335:1 8358:2 8399:1 8409:1 8425:1 8434:1 8436:1 8441:1 8442:1 8490:1 8499:2 8507:1 8512:1 8513:1 8526:5 8575:1 8577:1 8586:4 8604:2 8610:1 8629:5 8632:1 8637:1 8664:1 8674:2 8679:2 8688:2 8689:1 8711:2 8714:1 8723:2 8753:1 8759:1 8765:1 8768:1 8770:2 8784:1 8786:1 8791:5 8806:1 8821:1 8830:4 8831:6 8832:3 8842:1 8850:1 8854:2 8855:1 8858:2 8861:1 8866:1 8888:1 8890:2 8898:1 8900:1 8901:51 8902:1 8904:1 8908:2 8911:1 8920:16 8923:28 8929:1 8930:1 8933:1 8936:1 8943:1 8945:1 8952:1 8978:7 8979:1 9001:1 9014:1 9016:1 9025:1 9027:1 9034:1 9051:1 9058:1 9059:2 9068:1 9082:4 9085:1 9091:1 9104:1 9143:1 9149:4 9153:7 9161:1 9167:1 9175:1 9199:1 9206:1 9209:5 9212:1 9219:1 9230:1 9232:1 9234:1 9251:1 9263:1 9272:1 9285:1 9304:1 9341:1 9343:4 9347:1 9359:2 9362:1 9366:1 9368:1 9370:8 9386:3 9394:1 9400:1 9405:1 9416:2 9428:2 9436:1 9444:2 9448:1 9454:1 9468:1 9470:1 9484:25 9495:1 9501:1 9511:1 9516:2 9524:2 9525:1 9529:1 9551:2 9589:1 9594:1 9605:2 9606:1 9616:1 9630:2 9639:4 9643:1 9664:1 9672:1 9678:3 9687:5 9694:3 9697:1 9709:2 9711:2 9715:4 9728:1 9732:2 9733:1 9734:2 9738:1 9747:1 9748:2 9754:2 9765:1 9777:2 9778:2 9785:1 9788:1 9790:1 9791:1 9792:1 9809:2 9811:1 9829:1 9836:1 9841:3 9848:1 9859:1 9866:1 9870:1 9875:1 9878:2 9880:1 9881:3 9882:2 9884:2 9885:5 9888:2 9890:1 9894:2 9897:2 9899:2 9903:3 9919:1 9925:3 9934:2 9944:1 9945:1 9950:1 9951:1 9959:1 9973:5 9977:2 9984:1 9995:2 10002:3 10019:1 10024:5 10044:1 10053:6 10056:1 10065:1 10067:1 10069:2 10080:1 10088:1 10092:1 10098:1 10121:1 10128:2 10138:1 10139:1 10144:1 10150:3 10161:3 10162:1 10166:1 10169:1 10181:2 10192:1 10204:1 10208:6 10209:2 10214:5 10216:1 10218:1 10219:4 10221:3 10223:2 10228:2 10229:2 10230:2 10252:3 10254:1 10255:2 10257:5 10270:1 10272:1 10295:3 10302:1 10308:1 10354:1 10359:1 10367:1 10377:3 10386:1 10397:2 10399:2 10410:1 10412:1 10422:1 10438:1 10441:1 10447:1 10454:1 10461:1 10463:1 10465:1 10478:1 10485:3 10495:1 10496:1 10520:4 10554:1 10558:2 10563:1 10565:5 10578:1 10580:1 10588:8 10610:2 10615:3 10619:1 10627:1 10634:1 10653:1 10662:1 10671:3 10673:1 10695:1 10696:1 10701:1 10710:2 10726:1 10750:1 10756:1 10768:1 10800:1 10819:1 10820:1 10842:1 10845:1 10846:1 10851:3 10857:2 10858:1 10862:1 10864:2 10879:1 10900:2 10903:1 10906:2 10920:1 10937:1 10939:1 10942:3 10947:1 10958:1 10959:1 10975:1 11000:1 11009:24 11016:1 11034:1 11039:2 11047:6 11056:2 11059:1 11083:1 11089:2 11091:1 11095:1 11097:1 11102:1 11104:2 11124:2 11133:1 11140:1 11154:14 11168:1 11170:2 11171:1 11176:2 11189:1 11198:1 11209:1 11210:5 11218:1 11225:1 11226:1 11229:3 11230:1 11232:1 11245:1 11249:1 11263:1 11267:1 11276:1 11280:1 11300:3 11316:2 11318:3 11319:1 11336:1 11359:8 11363:2 11366:4 11368:2 11374:3 11375:1 11382:1 11392:3 11400:3 11402:1 11403:1 11408:2 11417:2 11422:4 11426:5 11427:1 11429:1 11437:1 11446:1 11453:1 11464:3 11470:4 11489:1 11492:2 11496:1 11507:1 11513:2 11521:2 11545:1 11550:1 11551:3 11553:1 11580:12 11582:1 11583:6 11595:1 11597:1 11600:1 11633:1 11692:1 11697:2 11703:1 11720:1 11728:1 11733:2 11754:4 11761:1 11762:1 11775:4 11789:1 11796:2 11800:1 11803:3 11826:1 11832:1 11835:1 11859:2 11880:1 11897:2 11914:6 11921:1 11926:1 11932:1 11948:2 11955:1 11967:2 11970:1 11994:3 12001:7 12012:1 12014:1 12043:1 12044:1 12052:2 12072:3 12075:2 12090:1 12098:6 12099:2 12117:2 12119:4 12120:1 12121:6 12125:1 12128:1 12145:1 12147:4 12150:1 12160:2 12173:1 12174:3 12197:1 12200:1 12211:4 12225:1 12229:3 12241:2 12247:1 12249:8 12266:1 12314:1 12316:1 12322:1 12345:2 12346:2 12347:1 12352:1 12362:1 12392:2 12396:1 12408:1 12416:1 12459:2 12465:1 12468:1 12476:1 12492:1 12498:3 12499:1 12510:2 12512:8 12531:4 12534:7 12549:4 12553:1 12556:2 12558:1 12562:1 12571:1 12576:2 12589:1 12596:4 12610:1 12623:2 12634:1 12635:2 12642:5 12659:2 12664:4 12671:1 12676:3 12692:1 12703:1 12706:1 12707:1 12733:1 12736:1 12739:1 12740:1 12743:1 12749:1 12753:1 12770:2 12787:1 12807:1 12810:1 12816:1 12818:1 12819:1 12821:1 12825:5 12826:1 12827:1 12850:1 12855:1 12863:1 12867:2 12880:2 12883:1 12888:1 12892:1 12893:1 12897:1 12919:2 12951:1 12953:4 12958:1 12960:1 12963:2 12965:1 12970:1 12974:2 12980:1 12981:1 12983:1 12990:1 12991:1 13014:1 13021:5 13052:1 13057:1 13061:3 13063:6 13067:1 13070:3 13078:1 13081:3 13100:1 13118:1 13122:1 13125:1 13127:1 13130:1 13135:1 13138:2 13153:1 13154:1 13176:3 13196:1 13204:1 13207:1 13215:1 13218:5 13233:1 13234:4 13236:1 13251:2 13252:3 13254:2 13263:1 13277:1 13284:1 13297:3 13303:1 13318:4 13324:2 13327:1 13328:10 13341:1 13343:1 13348:1 13350:1 13352:1 13354:1 13355:1 13363:1 13364:3 13366:1 13368:7 13369:1 13376:2 13379:7 13382:1 13387:1 13395:1 13397:1 13403:11 13406:1 13428:2 13447:5 13454:2 13463:2 13467:1 13507:1 13518:4 13528:1 13532:1 13536:1 13537:3 13576:1 13577:1 13580:1 13590:3 13592:1 13607:1 13616:1 13620:3 13629:1 13645:1 13652:1 13664:1 13674:1 13690:2 13692:2 13717:2 13737:3 13742:1 13759:1 13766:1 13780:5 13832:3 13834:2 13847:1 13851:1 13858:1 13867:1 13872:1 13874:1 13878:1 13887:1 13913:4 13914:4 13916:24 13921:1 13923:8 13933:1 13940:1 13941:2 13945:1 13956:3 13962:1 13972:3 13977:1 14002:1 14007:1 14021:2 14038:1 14041:1 14043:1 14073:1 14074:3 14082:9 14083:2 14098:1 14105:1 14106:4 14109:2 14130:1 14156:1 14167:4 14172:1 14188:1 14198:1 14207:1 14216:1 14219:2 14222:1 14228:1 14235:1 14248:2 14265:1 14286:2 14292:1 14312:5 14326:2 14329:1 14336:2 14369:1 14373:3 14379:1 14381:1 14382:1 14387:1 14388:1 14399:1 14417:2 14441:1 14443:1 14449:1 14456:1 14469:1 14506:6 14519:1 14520:1 14523:1 14527:2 14528:1 14530:1 14535:1 14546:1 14565:2 14566:4 14572:1 14588:2 14592:3 14623:1 14629:1 14660:1 14667:2 14682:1 14693:1 14705:1 14728:1 14735:2 14746:1 14748:1 14751:3 14775:1 14785:2 14810:1 14819:1 14820:2 14865:1 14869:1 14870:1 14875:1 14894:5 14896:1 14907:1 14920:1 14926:1 14930:1 14943:1 14948:1 14950:1 14955:1 14960:1 14970:2 14990:3 14993:1 15002:2 15013:1 15014:1 15015:2 15017:2 15023:1 15035:1 15044:1 15045:2 15080:1 15086:1 15088:2 15140:3 15146:3 15154:1 15155:2 15156:9 15159:2 15162:4 15164:1 15168:1 15171:2 15178:3 15182:1 15192:3 15195:1 15198:2 15204:4 15214:1 15234:7 15238:1 15247:1 15250:1 15252:1 15254:3 15266:2 15267:1 15280:2 15295:1 15301:2 15306:1 15317:1 15336:1 15338:6 15343:1 15353:1 15355:1 15365:1 15380:2 15400:3 15420:1 15423:1 15428:2 15430:7 15441:1 15450:1 15464:2 15465:3 15466:2 15467:1 15468:1 15480:4 15486:1 15502:1 15503:1 15511:3 15513:1 15514:2 15529:1 15537:1 15538:2 15561:1 15576:1 15579:2 15581:1 15588:1 15589:1 15597:1 15598:2 15599:2 15600:2 15602:2 15606:1 15627:1 15635:1 15636:1 15639:1 15640:1 15642:2 15655:1 15659:1 15660:1 15663:2 15664:1 15673:1 15677:1 15683:1 15684:2 15688:3 15691:1 15701:2 15706:1 15707:1 15726:1 15739:9 15748:2 15750:1 15754:1 15797:1 15801:1 15821:2 15822:1 15823:2 15827:2 15851:1 15853:2 15856:2 15857:1 15861:5 15891:1 15906:1 15908:1 15918:1 15921:1 15933:2 15934:4 15938:3 15939:8 15950:2 15970:2 15977:3 15997:1 16008:2 16035:2 16037:1 16043:2 16046:1 16051:1 16063:2 16064:1 16070:2 16074:1 16091:1 16107:1 16118:1 16189:1 16192:2 16195:1 16202:2 16220:2 16246:1 16263:1 16279:1 16288:1 16310:3 16322:1 16339:1 16341:1 16345:2 16361:1 16362:1 16377:1 16382:3 16392:2 16393:1 16401:1 16402:1 16408:1 16412:5 16414:1 16416:1 16424:1 16428:1 16442:2 16444:1 16467:1 16468:1 16483:1 16490:1 16491:1 16495:1 16506:1 16517:1 16525:2 16535:1 16561:2 16570:1 16583:1 16597:1 16600:2 16603:1 16612:1 16618:2 16621:2 16631:1 16640:5 16661:2 16675:1 16687:2 16692:1 16718:1 16738:1 16775:4 16789:1 16804:1 16810:1 16828:1 16867:1 16874:1 16885:1 16892:2 16938:1 16939:1 16951:1 16956:1 16970:2 16996:1 17000:4 17005:4 17007:2 17010:1 17012:1 17013:1 17031:2 17037:1 17059:3 17073:1 17078:1 17098:2 17099:1 17109:4 17137:1 17150:1 17162:1 17163:2 17167:1 17170:1 17191:1 17194:1 17202:2 17205:1 17207:4 17224:1 17235:1 17237:3 17240:1 17245:1 17246:1 17255:1 17280:1 17283:1 17293:1 17294:1 17339:1 17347:2 17353:3 17355:4 17359:1 17360:1 17379:5 17380:1 17385:1 17408:1 17433:6 17435:2 17441:1 17445:1 17448:1 17479:1 17481:1 17488:1 17490:1 17496:1 17501:4 17508:3 17512:2 17520:2 17546:1 17558:1 17566:2 17584:1 17591:1 17611:1 17627:1 17628:1 17633:1 17634:1 17637:1 17653:1 17654:1 17662:4 17668:1 17685:11 17687:8 17689:1 17694:1 17722:2 17734:1 17736:2 17740:2 17758:4 17763:1 17776:2 17783:1 17790:1 17796:1 17803:1 17805:1 17813:1 17822:1 17826:1 17829:3 17833:1 17835:1 17844:8 17854:3 17855:1 17863:1 17864:1 17866:2 17873:1 17875:4 17878:1 17881:1 17884:1 17885:6 17889:2 17890:8 17892:1 17896:2 17900:2 17901:1 17902:1 17912:1 17913:6 17919:4 17954:1 17968:2 17996:1 18009:1 18010:1 18012:2 18015:2 18021:1 18022:2 18024:2 18030:6 18041:1 18060:2 18065:1 18073:1 18076:2 18096:2 18101:3 18127:2 18145:1 18146:1 18149:1 18158:1 18171:1 18175:1 18178:3 18182:1 18184:1 18187:8 18198:2 18199:2 18217:3 18222:1 18225:4 18243:1 18254:2 18263:24 18268:1 18291:1 18292:1 18300:6 18301:1 18305:2 18324:2 18341:70 18361:3 18366:1 18390:1 18418:1 18424:1 18426:1 18427:3 18442:1 18454:1 18455:1 18456:1 18460:1 18461:1 18464:1 18467:2 18468:1 18469:2 18473:3 18474:6 18477:1 18482:3 18484:1 18486:2 18493:2 18501:1 18513:1 18516:1 18518:1 18523:2 18526:1 18530:1 18536:1 18543:1 18544:1 18565:1 18567:1 18598:1 18604:1 18610:5 18634:1 18643:1 18648:2 18649:1 18654:4 18692:1 18696:2 18700:1 18705:1 18715:1 18736:1 18762:1 18768:1 18797:1 18798:1 18808:1 18822:2 18826:1 18835:1 18842:1 18861:1 18865:2 18867:1 18870:1 18903:1 18905:1 18908:2 18916:3 18922:5 18923:1 18927:1 18944:2 18946:3 18959:1 18968:3 18974:1 18985:3 18996:1 18997:1 19000:1 19004:3 19006:1 19008:2 19010:1 19016:1 19020:1 19027:1 19029:1 19042:3 19047:1 19048:13 19057:1 19059:2 19072:1 19084:2 19094:2 19106:1 19107:3 19136:1 19141:1 19143:2 19165:1 19167:3 19170:5 19177:1 19179:3 19182:1 19185:2 19202:1 19206:1 19222:1 19232:1 19235:1 19238:1 19240:1 19243:2 19245:2 19271:2 19272:2 19281:2 19285:1 19298:1 19306:1 19307:3 19313:2 19315:1 19316:1 19331:1 19346:1 19352:1 19374:1 19376:1 19382:2 19385:1 19406:1 19407:2 19409:1 19420:1 19425:1 19434:2 19435:1 19440:3 19449:2 19455:1 19457:1 19461:1 19466:1 19469:3 19473:1 19480:1 19489:1 19490:1 19497:3 19501:1 19504:1 19521:2 19539:1 19542:1 19550:1 19564:2 19586:1 19587:3 19595:2 19601:1 19603:1 19619:4 19640:1 19661:1 19664:1 19672:1 19675:1 19684:1 19685:1 19692:1 19711:7 19713:2 19714:1 19715:2 19718:1 19719:1 19726:1 19730:2 19731:3 19735:1 19737:3 19757:1 19759:2 19761:2 19772:1 19775:1 19776:1 19789:2 19805:1 19813:1 19814:1 19817:1 19819:1 19827:1 19834:1 19840:2 19841:3 19877:1 19879:2 19907:1 19924:2 19926:3 19936:2 19942:1 19944:1 19956:1 19962:1 19971:3 20012:3 20014:1 20016:1 20017:2 20020:2 20021:2 20022:1 20034:1 20037:14 20039:2 20052:1 20053:1 20070:2 20072:1 20078:1 20103:1 20118:2 20130:1 20131:1 20136:1 20151:1 20152:1 20153:2 20160:3 20179:2 20185:2 20191:1 20209:1 20210:1 20216:1 20229:1 20249:1 20255:4 20260:2 20261:4 20265:1 20274:2 20304:2 20307:1 20340:1 20342:1 20346:1 20382:3 20383:2 20392:1 20420:1 20423:1 20429:1 20437:1 20439:1 20450:1 20456:3 20467:3 20474:2 20480:1 20488:1 20489:2 20507:1 20508:1 20514:2 20523:1 20528:1 20531:1 20532:4 20540:1 20542:1 20556:1 20571:1 20579:1 20585:4 20591:1 20595:2 20618:1 20621:4 20630:1 20645:5 20649:1 20651:1 20655:3 20658:1 20676:2 20677:1 20682:1 20693:1 20695:2 20701:1 20748:1 20749:1 20776:2 20790:1 20792:18 20797:1 20806:3 20813:1 20821:1 20822:1 20832:1 20852:1 20860:1 20861:1 20865:1 20869:1 20878:1 20880:1 20883:3 20884:2 20886:1 20892:2 20906:1 20912:1 20915:1 20922:1 20925:2 20935:1 20942:1 20946:7 20948:1 20950:2 20952:1 20965:4 20971:2 20976:1 20980:2 20981:1 20986:2 21013:1 21020:3908 21028:1 21044:1 21046:5 21047:1 21054:2 21066:2 21086:1 21097:1 21108:2 21121:1 21131:1 21136:3 21137:2 21147:2 21177:1 21178:3 21179:1 21201:2 21212:2 21236:1 21239:6 21242:2 21268:3 21277:1 21280:1 21284:3 21287:1 21299:1 21315:1 21340:1 21341:1 21346:1 21361:1 21381:1 21384:5 21390:1 21402:2 21410:1 21414:1 21418:1 21422:1 21437:1 21442:3 21454:1 21463:2 21474:1 21484:1 21490:1 21494:1 21495:1 21503:1 21511:1 21539:1 21549:1 21551:2 21554:1 21556:1 21563:4 21576:2 21586:1 21601:1 21610:2 21619:1 21660:1 21661:5 21675:1 21678:4 21720:1 21728:1 21749:1 21773:1 21779:2 21789:1 21795:2 21797:1 21803:2 21810:1 21819:4 21832:2 21835:1 21836:4 21841:1 21843:1 21853:1 21857:5 21867:19 21891:1 21892:1 21894:3 21895:1 21896:25 21909:2 21929:1 21930:6 21932:1 21934:1 21950:2 21965:1 21970:6 21991:1 21995:3 22000:1 22002:6 22004:2 22008:1 22015:1 22029:2 22030:1 22060:2 22068:3 22075:1 22089:1 22101:3 22131:1 22133:1 22136:1 22190:1 22194:1 22198:1 22224:1 22229:1 22235:1 22244:1 22262:1 22264:13 22272:1 22290:1 22308:1 22316:2 22317:2 22323:1 22340:1 22352:1 22369:1 22375:1 22377:8 22396:1 22399:1 22404:1 22422:2 22439:1 22443:1 22444:1 22462:1 22467:1 22474:1 22476:1 22478:2 22483:1 22484:2 22485:1 22495:2 22510:1 22516:1 22534:1 22542:4 22547:1 22556:1 22561:1 22581:3 22582:1 22590:1 22610:3 22616:1 22623:1 22624:1 22643:1 22644:1 22651:5 22676:2 22680:1 22685:2 22687:2 22701:2 22702:1 22704:1 22707:1 22708:8 22737:1 22745:1 22758:1 22771:1 22775:1 22781:1 22800:15 22809:2 22822:2 22825:3 22844:1 22845:1 22861:1 22863:15 22881:1 22900:1 22910:1 22922:1 22924:1 22931:1 22933:1 22945:1 22964:2 22967:1 22993:1 22999:1 23003:1 23004:1 23005:1 23024:2 23042:1 23043:5 23045:2 23056:1 23063:1 23105:2 23125:1 23153:5 23165:1 23166:3 23183:1 23185:1 23198:1 23199:1 23209:1 23242:1 23245:2 23264:2 23265:1 23312:3 23330:1 23335:1 23341:1 23369:1 23371:1 23374:2 23383:1 23399:1 23401:1 23407:2 23439:1 23441:1 23446:1 23457:1 23466:1 23490:4 23501:1 23512:2 23517:1 23519:1 23521:2 23522:1 23525:1 23532:14 23540:2 23542:2 23543:1 23546:3 23547:1 23549:5 23550:1 23560:3 23569:5 23574:1 23595:5 23597:1 23605:1 23606:1 23610:1 23638:2 23639:1 23641:1 23653:2 23657:1 23673:2 23681:1 23682:1 23696:2 23705:1 23711:10 23719:1 23722:2 23730:1 23732:1 23738:1 23742:2 23743:1 23756:1 23765:1 23786:1 23798:1 23802:1 23803:1 23808:1 23810:1 23822:1 23832:3 23836:1 23837:1 23839:1 23843:1 23849:1 23859:4 23871:1 23873:1 23876:1 23881:2 23882:1 23885:1 23886:1 23892:1 23898:1 23900:1 23940:1 23944:3 23948:1 23968:1 23974:1 24003:1 24009:1 24015:2 24049:1 24055:1 24063:1 24065:4 24070:2 24073:4 24084:5 24087:3 24094:1 24097:1 24100:1 24135:1 24143:1 24147:2 24148:1 24149:1 24154:2 24164:1 24173:1 24180:1 24181:1 24186:2 24187:1 24188:2 24195:1 24201:1 24202:1 24216:2 24217:1 24218:8 24221:3 24240:1 24241:1 24245:1 24255:1 24266:1 24271:1 24277:1 24305:1 24308:2 24310:1 24311:2 24320:3 24328:2 24339:1 24341:1 24344:1 24359:1 24360:4 24363:19 24375:1 24377:1 24384:2 24385:3 24391:1 24395:1 24396:1 24402:1 24408:1 24412:1 24413:3 24426:1 24427:5 24441:1 24447:1 24472:3 24473:1 24475:3 24478:1 24482:1 24488:5 24505:1 24520:1 24542:1 24543:4 24556:2 24563:3 24567:1 24623:1 24629:1 24649:4 24659:2 24661:1 24662:12 24666:3 24670:2 24682:2 24683:1 24687:1 24700:4 24701:2 24702:3 24703:2 24706:1 24707:1 24712:1 24714:2 24719:2 24722:1 24732:1 24734:1 24735:1 24747:2 24752:2 24758:1 24774:2 24809:1 24824:5 24825:1 24834:1 24855:1 24858:1 24861:1 24862:2 24869:2 24872:1 24877:1 24888:1 24894:1 24904:1 24908:4 24917:1 24923:1 24926:1 24935:1 24967:1 24979:24 24980:2 24984:1 24997:1 25005:1 25018:1 25021:1 25026:2 25033:1 25047:1 25057:1 25065:1 25071:4 25074:1 25092:1 25094:2 25101:1 25103:1 25104:1 25106:1 25110:2 25121:2 25125:1 25126:1 25129:9 25137:1 25139:2 25148:3 25156:4 25168:2 25185:1 25190:1 25194:2 25201:1 25206:1 25209:2 25218:1 25233:1 25236:1 25241:2 25243:2 25245:2 25252:1 25256:1 25270:2 25273:1 25275:1 25289:12 25303:4 25313:1 25318:4 25328:1 25331:1 25340:1 25368:1 25369:1 25384:1 25387:2 25405:1 25406:1 25423:1 25439:1 25459:1 25473:3 25480:1 25485:1 25494:1 25501:2 25503:1 25510:2 25526:1 25535:1 25539:1 25547:1 25558:1 25561:1 25579:1 25581:1 25584:1 25588:2 25595:15 25597:1 25598:2 25620:1 25630:2 25634:2 25643:1 25653:1 25655:1 25667:2 25668:1 25676:1 25683:1 25689:3 25694:1 25695:2 25697:1 25705:1 25720:1 25722:1 25732:3 25743:1 25748:1 25754:1 25755:5 25780:1 25787:1 25788:1 25791:1 25804:1 25808:1 25828:2 25835:1 25845:1 25850:1 25853:1 25860:1 25871:2 25877:1 25890:1 25895:1 25907:1 25912:1 25928:1 25929:2 25936:2 25944:1 25954:1 26001:1 26015:1 26016:1 26017:7 26024:1 26030:1 26043:1 26044:1 26056:2 26064:1 26073:1 26075:2 26094:1 26104:1 26133:2 26135:3 26149:1 26157:1 26160:2 26165:1 26174:2 26176:1 26179:4 26184:1 26187:1 26206:1 26213:1 26230:2 26243:1 26254:4 26255:5 26264:1 26265:1 26277:6 26283:1 26287:1 26290:1 26294:1 26297:1 26308:1 26309:1 26315:1 26316:4 26319:3 26324:1 26332:1 26352:2 26359:1 26360:3 26364:1 26380:1 26404:1 26415:6 26421:1 26424:29 26426:1 26482:1 26498:1 26516:2 26528:1 26530:2 26532:1 26534:1 26539:1 26552:1 26589:1 26594:1 26605:3 26609:1 26612:2 26613:1 26624:1 26635:1 26636:1 26642:1 26653:1 26655:2 26676:1 26679:1 26694:1 26705:2 26721:1 26724:1 26748:1 26751:2 26758:2 26762:1 26775:1 26794:6 26806:2 26814:1 26818:1 26847:1 26878:1 26880:1 26897:3 26920:1 26924:2 26929:1 26931:2 26934:1 26936:1 26938:2 26952:1 26968:1 26978:1 27003:1 27009:1 27014:1 27021:1 27022:1 27028:1 27032:2 27047:1 27070:1 27072:1 27085:1 27097:1 27102:1 27104:1 27112:1 27114:10 27122:1 27132:1 27133:1 27137:1 27141:3 27159:2 27170:1 27173:1 27183:1 27198:1 27225:1 27228:1 27242:1 27251:4 27262:1 27299:1 27303:5 27321:1 27330:1 27360:2 27373:1 27377:1 27388:1 27389:1 27393:1 27397:5 27398:3 27401:1 27419:1 27427:1 27437:2 27439:3 27447:1 27451:4 27456:2 27460:1 27488:2 27489:2 27491:1 27502:3 27512:1 27516:1 27522:2 27533:2 27552:1 27569:1 27574:1 27575:1 27595:1 27602:4 27612:3 27618:1 27620:1 27627:1 27641:1 27642:1 27651:1 27672:1 27673:1 27676:1 27679:1 27684:1 27685:1 27701:1 27704:1 27716:1 27727:1 27728:2 27743:1 27753:2 27757:3 27760:1 27763:1 27769:1 27778:1 27792:1 27804:1 27809:1 27813:1 27817:1 27843:1 27846:1 27847:1 27851:1 27863:1 27872:2 27881:1 27884:1 27917:3 27933:5 27949:1 27957:1 27970:1 27985:1 27989:1 27997:1 28007:1 28015:2 28016:1 28021:1 28023:1 28032:7 28033:1 28043:1 28068:3 28071:1 28074:1 28094:1 28112:2 28132:1 28139:1 28145:5 28174:1 28178:1 28183:1 28234:1 28242:4 28253:1 28255:1 28273:9 28277:1 28288:1 28303:1 28305:1 28317:1 28318:1 28327:3 28331:7 28335:1 28340:1 28342:1 28344:1 28348:5 28354:1 28372:1 28395:1 28408:1 28414:1 28442:1 28474:1 28485:1 28499:1 28500:1 28503:4 28506:1 28507:3 28509:8 28512:3 28518:1 28524:1 28537:1 28540:1 28557:4 28560:1 28563:2 28591:2 28602:1 28608:6 28609:1 28610:1 28625:2 28635:4 28641:7 28642:2 28652:2 28665:1 28666:1 28670:1 28671:1 28680:1 28697:2 28702:2 28725:6 28728:1 28734:1 28739:2 28740:1 28753:2 28754:1 28762:1 28778:2 28791:1 28803:1 28811:4 28828:1 28847:5 28850:1 28870:4 28872:4 28875:1 28884:1 28902:2 28913:1 28937:1 28945:3 28972:1 28981:1 28994:2 28996:1 28998:4 29029:1 29052:1 29056:1 29060:2 29063:1 29066:1 29080:1 29085:2 29088:3 29102:1 29104:1 29105:1 29109:3 29120:1 29123:1 29128:1 29146:2 29147:1 29155:1 29156:2 29161:1 29165:1 29174:1 29189:6 29195:1 29197:1 29199:1 29205:1 29207:1 29210:1 29212:1 29215:1 29219:3 29234:1 29261:1 29272:2 29284:1 29291:2 29302:1 29316:1 29320:1 29326:1 29327:1 29332:2 29334:4 29365:19 29374:1 29409:1 29410:1 29412:1 29417:2 29439:1 29455:1 29472:2 29483:1 29491:1 29498:1 29503:1 29518:5 29519:2 29527:1 29543:1 29546:2 29558:1 29564:1 29574:2 29623:2 29637:3 29653:5 29655:2 29658:1 29660:1 29665:1 29673:1 29675:2 29676:1 29677:4 29679:10 29683:2 29685:1 29711:1 29725:1 29732:2 29759:1 29764:1 29766:1 29771:1 29781:4 29792:1 29797:1 29815:1 29821:4 29839:1 29842:1 29850:1 29855:1 29861:2 29866:1 29867:1 29882:1 29910:3 29917:1 29923:2 29928:1 29951:2 29956:1 29964:1 29979:1 29985:2 29992:1 30023:1 30033:1 30051:1 30063:1 30079:1 30085:1 30091:1 30121:1 30123:2 30129:1 30149:1 30160:3 30163:1 30168:2 30183:2 30198:1 30205:1 30221:1 30235:1 30240:1 30294:2 30295:2 30308:4 30311:1 30315:1 30334:1 30352:1 30364:1 30367:1 30371:2 30393:2 30398:1 30399:6 30410:1 30412:1 30415:1 30418:10 30433:1 30438:1 30450:2 30451:2 30452:1 30506:1 30514:1 30524:29 30525:1 30529:3 30531:1 30540:1 30547:1 30560:5 30585:2 30592:1 30594:1 30633:1 30643:3 30647:3 30648:4 30651:2 30656:1 30662:1 30667:1 30684:1 30698:2 30701:1 30703:1 30706:1 30707:1 30719:2 30721:3 30724:2 30727:2 30728:1 30738:1 30739:1 30740:1 30741:1 30743:1 30745:3 30753:1 30757:3 30760:1 30765:1 30788:2 30800:1 30816:1 30818:2 30827:1 30832:1 30845:1 30846:2 30849:1 30855:1 30876:2 30879:1 30881:1 30893:1 30895:1 30901:1 30906:3 30907:2 30916:1 30927:1 30958:2 30960:1 30978:1 30985:3 30986:2 30993:2 30997:1 30998:1 31004:1 31007:1 31021:4 31023:1 31030:2 31057:1 31080:1 31088:15 31104:1 31120:1 31132:1 31164:1 31168:4 31176:4 31192:1 31200:2 31204:1 31207:1 31243:1 31259:1 31262:4 31268:1 31284:1 31302:2 31308:1 31309:2 31311:1 31317:1 31318:1 31349:5 31359:5 31389:1 31392:1 31394:1 31400:3 31403:1 31414:1 31418:1 31455:2 31473:1 31476:1 31477:1 31489:4 31493:1 31498:1 31502:1 31514:1 31526:3 31529:1 31541:1 31544:29 31545:2 31546:2 31548:1 31549:3 31552:4 31555:1 31556:1 31566:1 31586:1 31587:13 31597:1 31602:1 31603:1 31613:2 31644:1 31645:1 31646:1 31651:2 31661:1 31662:2 31669:1 31673:2 31681:1 31691:1 31697:1 31702:7 31713:5 31718:1 31719:2 31743:1 31754:4 31758:1 31759:2 31763:1 31766:1 31784:1 31786:2 31801:1 31802:1 31806:1 31824:1 31829:1 31834:1 31849:1 31854:1 31863:2 31866:1 31900:2 31901:2 31909:1 31932:1 31943:1 31944:1 31951:1 31953:1 31957:2 31959:1 31964:4 31969:3 31971:1 31976:1 31989:1 31990:1 31994:2 32000:1 32012:1 32028:10 32032:1 32034:3 32039:4 32041:1 32083:1 32106:1 32107:1 32110:4 32115:9 32118:2 32119:1 32125:1 32126:1 32142:2 32146:2 32147:3 32158:1 32163:1 32175:2 32178:2 32179:1 32186:1 32214:3 32225:1 32241:1 32257:1 32263:3 32269:1 32272:1 32275:2 32279:3 32280:1 32299:1 32303:2 32307:2 32310:5 32314:1 32321:5 32330:1 32342:2 32363:1 32374:1 32381:1 32429:1 32439:2 32445:1 32471:3 32473:2 32488:1 32505:4 32510:1 32522:1 32539:2 32543:1 32547:1 32559:1 32582:1 32590:2 32596:1 32605:3 32617:1 32628:1 32642:1 32644:1 32662:1 32676:3 32681:1 32684:1 32686:1 32688:1 32701:1 32713:2 32727:1 32732:1 32733:8 32735:1 32740:2 32755:2 32781:1 32785:3 32787:2 32806:1 32811:1 32821:5 32831:2 32835:1 32861:1 32891:1 32894:1 32897:1 32898:1 32902:1 32903:1 32905:5 32910:1 32921:1 32950:1 32957:2 32966:1 32971:1 32972:1 32973:2 32977:1 33021:1 33035:1 33038:1
16 10:1 13:1 26:1 27:2 28:1 41:1 55:1 66:1 72:1 78:1 81:1 84:1 85:5 104:1 109:1 124:1 127:1 145:1 164:1 173:1 175:1 176:5 186:1 189:2 191:1 219:1 225:2 232:4 235:1 262:1 269:4 272:1 273:1 285:1 295:2 318:3 338:1 351:4 355:1 375:1 387:1 397:3 398:1 399:3 418:2 427:2 434:1 437:1 443:1 459:1 468:2 475:1 484:1 502:3 505:2 509:2 525:1 535:1 542:1 551:2 567:1 575:1 577:1 581:1 584:1 589:2 591:2 628:1 629:1 636:2 649:5 709:1 713:4 716:1 723:4 751:3 757:2 762:4 766:1 774:1 779:1 790:1 791:1 793:1 805:1 812:1 821:1 832:1 860:2 869:2 886:1 891:2 908:1 929:1 937:1 944:1 949:2 957:1 962:2 970:1 975:5 984:1 986:1 988:3 991:2 994:1 1000:2 1007:1 1016:1 1025:1 1035:2 1039:1 1046:3 1050:1 1051:1 1054:1 1058:2 1068:2 1069:2 1078:3 1080:1 1081:3 1082:6 1084:2 1091:2 1098:1 1113:1 1114:2 1116:2 1133:1 1136:1 1138:1 1139:6 1143:2 1149:1 1164:1 1165:1 1170:1 1180:2 1185:2 1196:1 1202:1 1220:2 1221:1 1240:1 1250:1 1254:1 1259:1 1285:2 1286:1 1288:1 1301:2 1322:1 1331:2 1341:1 1351:1 1352:1 1353:3 1356:1 1359:2 1366:2 1368:1 1369:2 1377:2 1387:1 1388:4 1398:2 1406:2 1409:2 1412:1 1425:2 1426:3 1457:1 1464:1 1466:2 1469:2 1472:5 1475:1 1487:2 1488:7 1489:2 1490:1 1492:1 1506:3 1512:1 1524:1 1526:1 1528:1 1535:1 1540:2 1544:1 1546:4 1560:2 1572:2 1574:1 1586:2 1600:2 1611:1 1630:1 1633:1 1635:1 1636:1 1637:1 1642:2 1650:1 1676:3 1677:1 1683:1 1689:1 1692:1 1695:2 1711:1 1712:1 1733:1 1742:7 1750:1 1754:1 1760:8 1767:3 1773:1 1774:2 1775:1 1776:1 1780:4 1787:1 1791:1 1797:1 1801:1 1802:5 1822:1 1835:1 1836:1 1839:10 1853:1 1863:3 1865:2 1866:2 1867:2 1871:2 1872:1 1879:2 1881:1 1899:1 1907:3 1914:1 1919:5 1924:5 1927:2 1928:1 1939:1 1941:2 1944:2 1953:1 1963:5 1966:3 1968:1 1975:1 1976:1 1985:1 1993:2 1994:1 1998:1 2018:1 2038:1 2039:1 2050:2 2053:1 2054:1 2055:1 2058:1 2069:4 2074:1 2077:6 2089:1 2097:1 2098:1 2109:1 2122:1 2127:1 2128:1 2134:1 2139:1 2142:1 2143:1 2150:1 2156:2 2157:2 2165:1 2174:1 2175:1 2180:1 2187:1 2188:1 2192:1 2194:1 2201:4 2211:1 2215:1 2219:2 2226:1 2230:1 2232:2 2234:5 2239:1 2241:1 2243:1 2245:1 2262:1 2263:4 2264:1 2282:1 2291:1 2317:1 2320:1 2323:1 2339:1 2345:1 2354:2 2358:2 2360:2 2361:2 2368:3 2369:1 2386:1 2407:1 2414:2 2435:1 2438:1 2439:1 2441:4 2443:1 2444:2 2445:1 2446:1 2447:1 2463:1 2475:4 2501:2 2505:1 2509:2 2518:1 2527:1 2531:1 2553:1 2556:1 2566:1 2571:1 2572:3 2584:1 2587:1 2588:1 2594:1 2601:1 2628:2 2629:1 2630:1 2631:2 2632:5 2635:1 2636:3 2637:1 2638:6 2640:1 2641:1 2643:6 2645:1 2647:4 2651:2 2654:1 2659:1 2660:7 2665:3 2666:1 2668:8 2673:1 2674:1 2683:1 2687:2 2691:1 2695:2 2700:1 2706:1 2708:1 2712:1 2728:1 2733:1 2737:1 2744:1 2752:1 2754:2 2755:1 2759:1 2762:1 2763:3 2764:1 2769:1 2773:1 2782:1 2790:2 2793:1 2794:1 2800:2 2808:1 2811:1 2825:1 2826:1 2845:6 2856:1 2871:1 2876:2 2883:4 2885:1 2909:1 2914:1 2921:1 2925:1 2927:1 2944:1 2985:1 2986:2 2994:1 3021:1 3023:1 3062:2 3071:1 3082:5 3092:1 3098:5 3108:1 3117:2 3119:1 3127:1 3130:3 3136:12 3150:1 3151:1 3161:1 3162:2 3164:3 3170:1 3173:1 3177:1 3178:1 3182:1 3189:4 3193:1 3197:1 3204:1 3226:2 3228:1 3237:2 3246:2 3252:2 3254:1 3256:5 3264:4 3314:5 3322:1 3326:1 3328:1 3336:2 3339:1 3355:16 3363:7 3365:1 3381:1 3392:2 3409:1 3426:32 3435:2 3441:1 3449:1 3457:1 3459:1 3473:1 3488:1 3497:1 3505:2 3532:1 3533:2 3536:1 3537:1 3542:2 3565:1 3607:3 3612:1 3613:1 3625:3 3634:1 3639:2 3650:1 3666:1 3688:1 3689:1 3693:1 3697:2 3698:1 3700:1 3705:1 3710:2 3713:4 3721:2 3726:2 3739:13 3759:1 3764:1 3773:1 3789:2 3798:1 3809:1 3821:1 3823:7 3842:1 3863:1 3885:1 3894:1 3900:1 3906:1 3917:1 3918:2 3931:4 3941:1 3944:1 3959:1 3965:1 3971:4 3975:3 3983:2 3985:1 3991:1 3992:1 3993:1 4003:5 4041:1 4042:1 4046:1 4049:1 4053:3 4056:1 4075:1 4076:1 4077:1 4089:3 4091:2 4099:1 4125:1 4134:1 4140:1 4144:1 4150:1 4152:5 4156:2 4161:3 4164:2 4165:1 4185:2 4203:1 4210:1 4235:1 4245:2 4256:1 4266:1 4270:2 4271:4 4273:1 4297:1 4315:1 4317:1 4323:4 4325:47 4331:1 4340:1 4346:1 4347:1 4361:2 4363:1 4364:9 4367:1 4372:1 4375:1 4376:2 4377:30 4379:2 4381:7 4385:1 4391:2 4405:4 4408:1 4418:3 4419:4 4423:3 4425:4 4426:2 4438:2 4439:2 4442:2 4444:1 4463:1 4480:2 4490:1 4491:3 4498:1 4502:1 4507:1 4531:1 4534:1 4537:1 4539:2 4541:1 4543:1 4544:3 4555:3 4567:2 4570:1 4575:1 4581:1 4587:1 4595:1 4596:1 4597:2 4619:1 4622:1 4630:1 4632:2 4633:1 4635:1 4636:1 4643:2 4646:2 4652:1 4655:1 4658:5 4674:5 4678:1 4686:1 4722:1 4730:1 4734:1 4755:1 4767:1 4785:1 4793:1 4799:3 4810:1 4813:3 4823:1 4834:2 4852:1 4855:1 4870:2 4876:2 4877:2 4879:1 4880:1 4883:1 4906:1 4913:2 4923:1 4924:1 4926:1 4937:1 4966:1 4978:1 4989:2 4999:1 5010:15 5027:1 5028:1 5044:1 5086:1 5090:3 5098:1 5106:5 5117:1 5120:2 5138:1 5152:7 5155:1 5166:1 5176:1 5181:2 5184:1 5195:1 5198:1 5203:1 5205:1 5258:1 5268:2 5269:1 5298:1 5331:2 5343:3 5360:1 5362:1 5363:2 5367:1 5370:2 5381:1 5390:4 5403:1 5407:1 5410:4 5433:3 5434:1 5438:2 5439:1 5456:1 5470:1 5497:1 5509:1 5510:1 5514:1 5516:1 5528:1 5542:1 5545:2 5558:2 5613:2 5617:1 5619:1 5632:1 5640:2 5643:1 5645:1 5650:1 5657:1 5659:17 5660:3 5678:1 5699:3 5728:1 5729:2 5744:1 5750:1 5761:1 5770:1 5784:4 5797:5 5800:1 5802:5 5821:2 5822:4 5823:8 5824:1 5827:1 5828:2 5830:1 5831:3 5833:1 5840:1 5841:25 5842:1 5844:1 5848:2 5849:3 5860:2 5861:1 5871:1 5877:2 5880:3 5888:1 5903:2 5936:2 5950:1 5958:1 5964:3 5968:1 5972:1 5977:2 6050:1 6056:2 6060:1 6081:3 6082:3 6088:1 6089:5 6098:1 6122:1 6125:1 6137:1 6140:1 6142:1 6157:1 6168:2 6169:25 6177:1 6205:1 6215:1 6216:3 6221:1 6236:2 6255:4 6271:1 6300:1 6301:1 6305:1 6322:1 6339:1 6350:1 6357:2 6371:1 6379:1 6383:1 6394:1 6396:1 6403:1 6404:2 6413:1 6462:1 6463:1 6465:1 6469:1 6473:1 6479:1 6480:1 6483:2 6493:1 6507:4 6515:1 6518:1 6531:2 6540:1 6542:1 6548:1 6550:2 6557:1 6568:2 6573:1 6574:2 6587:1 6598:1 6611:1 6617:5 6640:2 6647:2 6667:1 6669:1 6672:1 6673:1 6678:1 6686:1 6705:1 6707:2 6722:1 6723:1 6725:1 6728:1 6731:1 6733:1 6747:2 6748:1 6753:1 6768:1 6772:1 6775:1 6776:1 6777:1 6808:1 6815:1 6825:1 6826:1 6843:1 6844:3 6845:1 6868:1 6870:5 6873:1 6876:1 6883:1 6891:1 6895:2 6897:1 6912:1 6938:1 6958:1 6959:2 6992:1 7004:1 7029:1 7034:5 7035:11 7043:1 7045:2 7062:1 7068:2 7074:1 7078:1 7079:1 7102:1 7120:1 7128:1 7133:1 7139:1 7140:2 7146:1 7149:2 7150:1 7154:1 7157:1 7161:1 7190:5 7196:1 7200:2 7202:2 7227:1 7232:1 7237:1 7249:1 7254:3 7257:1 7260:2 7276:6 7278:1 7284:1 7291:2 7295:1 7296:1 7300:1 7309:1 7316:1 7321:1 7338:1 7363:1 7382:7 7386:2 7387:2 7390:1 7391:1 7392:1 7394:3 7396:2 7397:1 7401:2 7402:3 7403:5 7409:3 7410:8 7411:1 7412:2 7413:5 7427:1 7441:3 7451:1 7454:1 7474:3 7477:1 7480:1 7493:1 7503:1 7508:2 7509:1 7548:1 7553:1 7555:1 7559:1 7567:1 7579:2 7586:1 7611:1 7613:1 7615:1 7664:1 7681:4 7684:2 7687:1 7690:4 7709:1 7710:5 7716:3 7722:1 7725:1 7731:1 7732:1 7742:2 7753:1 7762:1 7763:1 7764:3 7769:1 7770:2 7790:1 7791:1 7793:1 7805:1 7825:1 7834:1 7846:1 7849:1 7852:1 7856:1 7869:3 7876:3 7877:2 7879:1 7891:3 7897:1 7900:2 7907:6 7915:3 7921:2 7940:1 7944:1 7947:3 7955:1 7985:1 7987:1 7998:1 8005:2 8012:1 8016:1 8019:1 8021:1 8026:2 8032:1 8066:1 8071:1 8091:2 8093:1 8110:1 8111:3 8127:1 8135:1 8137:2 8138:1 8146:1 8169:1 8194:2 8215:1 8223:2 8224:1 8232:1 8233:2 8251:1 8255:5 8259:2 8262:1 8263:3 8266:1 8270:1 8280:1 8287:1 8289:1 8299:1 8320:1 8335:1 8358:2 8399:1 8409:1 8425:1 8434:1 8436:1 8441:1 8442:1 8490:1 8499:2 8507:1 8512:1 8513:1 8526:5 8575:1 8577:1 8586:4 8604:2 8610:1 8629:5 8632:1 8637:1 8664:1 8668:1 8674:2 8679:2 8688:2 8689:1 8711:2 8714:1 8723:2 8753:1 8759:1 8765:1 8768:1 8770:2 8784:1 8786:1 8791:5 8806:1 8821:1 8830:4 8831:6 8832:3 8842:1 8850:1 8854:2 8855:1 8858:2 8861:1 8866:1 8888:1 8890:2 8898:1 8900:1 8901:52 8902:1 8904:1 8908:2 8911:1 8920:16 8923:28 8929:1 8930:1 8933:1 8936:1 8943:1 8945:1 8952:1 8978:7 8979:1 9001:1 9014:1 9016:1 9025:1 9027:1 9034:1 9051:1 9058:1 9059:2 9068:1 9082:4 9085:1 9091:1 9104:1 9143:1 9149:4 9153:7 9161:1 9167:1 9175:1 9199:1 9206:1 9209:5 9212:1 9219:1 9230:1 9232:1 9234:1 9251:1 9263:1 9272:1 9285:1 9304:1 9341:1 9343:4 9347:1 9359:2 9362:1 9366:1 9368:1 9370:8 9386:3 9394:1 9400:1 9405:1 9416:2 9428:2 9436:1 9444:2 9448:1 9454:1 9468:1 9470:1 9484:27 9495:1 9501:1 9511:1 9516:2 9524:2 9525:1 9529:1 9551:2 9589:1 9594:1 9605:2 9606:1 9616:1 9630:2 9639:4 9643:1 9664:1 9672:1 9678:3 9687:5 9694:3 9697:1 9709:2 9711:2 9715:4 9728:1 9732:2 9733:1 9734:2 9738:1 9747:1 9748:2 9754:2 9765:1 9777:2 9778:2 9784:1 9785:1 9788:1 9790:1 9791:1 9792:1 9809:2 9811:1 9829:1 9836:1 9841:3 9848:1 9859:1 9866:1 9870:1 9875:1 9878:2 9880:1 9881:3 9882:2 9884:2 9885:5 9888:2 9890:1 9894:2 9897:2 9899:2 9903:3 9919:1 9925:3 9934:2 9944:1 9945:1 9950:1 9951:1 9959:1 9973:6 9977:2 9984:1 9995:2 10002:3 10019:1 10024:5 10044:1 10053:6 10056:1 10065:1 10067:1 10069:2 10080:1 10088:1 10092:1 10098:1 10121:1 10128:2 10138:1 10139:2 10144:1 10150:3 10161:3 10162:1 10166:1 10169:1 10170:1 10181:2 10192:1 10204:1 10208:6 10209:2 10214:5 10216:1 10218:1 10219:4 10221:3 10223:2 10228:2 10229:3 10230:2 10252:3 10254:1 10255:2 10257:5 10270:1 10272:1 10295:3 10302:1 10308:1 10354:1 10359:1 10367:1 10377:3 10386:1 10397:2 10399:2 10410:1 10412:1 10422:1 10438:1 10441:1 10447:1 10454:1 10461:1 10463:1 10465:1 10478:1 10485:3 10495:1 10496:1 10520:4 10553:1 10554:1 10558:2 10563:1 10565:5 10578:2 10580:1 10588:8 10610:2 10615:3 10619:1 10627:1 10634:1 10653:1 10662:1 10671:3 10673:1 10695:1 10696:2 10701:1 10710:2 10726:1 10750:2 10756:1 10768:1 10800:1 10819:1 10820:1 10842:1 10845:1 10846:1 10851:3 10857:2 10858:1 10862:1 10864:2 10879:1 10900:2 10903:1 10906:2 10920:1 10937:1 10939:1 10942:3 10947:1 10958:1 10959:1 10975:1 11000:1 11009:25 11016:1 11034:1 11039:2 11047:7 11056:2 11059:1 11083:1 11089:2 11091:1 11095:1 11097:1 11102:1 11104:2 11124:2 11133:1 11140:1 11154:14 11168:1 11170:2 11171:1 11176:3 11189:1 11198:1 11209:1 11210:5 11218:1 11225:1 11226:1 11229:3 11230:1 11232:1 11245:1 11249:1 11263:1 11267:1 11276:1 11280:1 11300:3 11316:2 11318:3 11319:1 11336:1 11359:8 11363:3 11366:4 11368:2 11374:3 11375:1 11378:1 11382:1 11392:3 11400:3 11402:1 11403:1 11408:2 11417:2 11422:4 11426:5 11427:1 11429:1 11437:1 11446:1 11453:1 11464:3 11470:4 11489:1 11492:2 11496:1 11507:1 11513:2 11521:2 11545:1 11550:1 11551:3 11553:1 11580:13 11582:1 11583:6 11595:1 11597:1 11600:1 11633:1 11692:1 11697:2 11703:1 11716:1 11720:1 11728:1 11733:2 11754:4 11761:1 11762:1 11775:4 11789:1 11796:2 11800:1 11803:3 11826:1 11832:1 11835:1 11859:2 11880:1 11897:2 11914:6 11921:1 11926:1 11932:1 11948:2 11955:2 11967:2 11970:1 11989:1 11994:3 12001:7 12012:1 12014:1 12043:1 12044:1 12052:2 12072:3 12075:2 12090:1 12098:6 12099:2 12117:2 12119:4 12120:1 12121:7 12125:1 12128:1 12145:1 12147:4 12150:1 12160:2 12173:1 12174:3 12197:1 12200:1 12211:4 12225:2 12229:3 12241:2 12247:1 12249:8 12266:1 12269:1 12314:1 12316:1 12322:1 12345:2 12346:2 12347:1 12352:1 12362:1 12392:2 12396:1 12408:1 12416:1 12459:2 12465:1 12468:1 12476:1 12492:1 12498:3 12499:1 12501:1 12510:2 12512:8 12531:4 12534:7 12549:4 12553:1 12556:2 12558:1 12562:1 12571:1 12576:2 12589:1 12596:4 12610:1 12623:2 12634:1 12635:2 12642:5 12659:2 12664:4 12671:1 12676:3 12692:1 12703:2 12706:1 12707:1 12733:1 12736:1 12739:1 12740:1 12743:1 12749:1 12753:1 12770:2 12787:1 12807:1 12810:1 12816:1 12818:1 12819:1 12821:1 12825:5 12826:1 12827:1 12850:1 12855:1 12863:1 12867:2 12880:2 12883:1 12888:1 12892:1 12893:1 12897:1 12919:2 12951:1 12953:4 12958:1 12960:1 12963:2 12965:1 12970:1 12974:2 12980:1 12981:1 12983:1 12990:2 12991:1 13014:1 13021:5 13052:1 13057:1 13061:3 13063:7 13067:1 13070:3 13078:1 13081:3 13100:1 13118:1 13122:1 13125:1 13127:1 13130:1 13135:1 13138:2 13153:1 13154:1 13176:3 13196:1 13204:1 13207:1 13215:1 13218:5 13233:1 13234:5 13236:1 13251:2 13252:3 13254:2 13263:1 13277:1 13284:1 13297:3 13303:1 13318:4 13324:2 13327:1 13328:10 13341:1 13343:1 13348:1 13350:1 13352:1 13354:1 13355:1 13363:1 13364:3 13366:1 13368:7 13369:1 13376:2 13379:7 13382:1 13387:2 13395:2 13397:1 13403:11 13406:1 13428:2 13447:5 13454:2 13463:2 13467:1 13507:1 13518:4 13528:1 13532:1 13536:1 13537:3 13551:1 13576:1 13577:1 13580:1 13590:3 13592:1 13607:1 13616:1 13620:3 13629:1 13645:1 13652:1 13664:1 13674:1 13690:2 13692:2 13695:1 13717:2 13737:3 13742:1 13759:1 13766:1 13780:5 13832:3 13834:2 13847:1 13851:1 13858:1 13867:1 13872:1 13874:1 13878:1 13887:1 13913:4 13914:4 13916:25 13921:1 13923:8 13924:1 13933:1 13940:1 13941:2 13945:1 13956:3 13962:1 13972:3 13977:1 14002:1 14007:1 14021:2 14038:1 14041:1 14043:1 14073:1 14074:3 14082:9 14083:2 14098:1 14105:1 14106:4 14109:3 14130:2 14156:1 14167:4 14172:1 14188:1 14198:1 14207:1 14216:1 14219:2 14222:1 14228:1 14235:1 14248:2 14265:1 14286:2 14292:1 14312:5 14326:2 14329:1 14336:2 14369:1 14373:3 14379:1 14381:1 14382:1 14387:1 14388:1 14399:1 14417:2 14441:1 14443:1 14449:1 14456:1 14469:1 14506:6 14519:1 14520:1 14523:1 14527:2 14528:1 14530:1 14535:1 14546:1 14565:2 14566:4 14572:1 14588:2 14592:3 14623:1 14629:1 14660:1 14667:2 14682:1 14693:1 14705:1 14728:1 14735:2 14746:1 14748:1 14751:3 14775:1 14785:2 14810:1 14819:1 14820:2 14865:1 14869:1 14870:1 14875:1 14894:5 14896:1 14907:1 14920:1 14926:1 14930:1 14939:1 14943:1 14948:1 14950:1 14955:1 14960:1 14970:2 14990:3 14993:1 15002:2 15013:1 15014:1 15015:2 15017:2 15023:1 15035:1 15044:1 15045:2 15080:1 15086:1 15088:2 15140:3 15146:3 15154:1 15155:2 15156:9 15159:2 15162:4 15164:1 15168:1 15171:2 15178:3 15182:1 15192:3 15195:1 15198:2 15204:5 15214:1 15234:8 15238:1 15247:1 15250:1 15252:1 15254:3 15266:2 15267:1 15280:2 15295:1 15301:2 15306:1 15313:1 15317:1 15336:1 15338:6 15343:1 15353:1 15355:1 15365:1 15380:2 15400:3 15420:1 15423:1 15428:2 15430:7 15441:1 15450:1 15464:2 15465:3 15466:2 15467:1 15468:1 15480:4 15486:1 15502:1 15503:1 15511:3 15513:1 15514:2 15529:1 15537:1 15538:2 15561:1 15576:1 15579:2 15581:1 15588:1 15589:1 15597:1 15598:2 15599:2 15600:2 15602:2 15606:1 15627:1 15630:1 15635:1 15636:1 15639:1 15640:1 15642:2 15655:1 15659:1 15660:1 15663:2 15664:1 15673:1 15677:1 15683:1 15684:2 15688:3 15691:1 15701:2 15706:1 15707:1 15726:1 15739:9 15748:2 15750:1 15754:1 15797:1 15801:1 15821:2 15822:1 15823:2 15827:2 15851:1 15853:2 15856:2 15857:1 15861:5 15891:1 15906:1 15908:1 15918:1 15921:1 15933:2 15934:5 15938:3 15939:8 15950:2 15970:2 15977:3 15997:1 16008:2 16035:2 16037:1 16043:2 16046:1 16051:1 16063:2 16064:1 16070:2 16074:1 16091:1 16107:1 16118:1 16189:1 16192:2 16194:1 16195:1 16202:2 16220:2 16246:1 16263:1 16279:1 16288:1 16310:3 16322:1 16339:1 16341:1 16345:2 16361:1 16362:1 16377:1 16382:3 16392:2 16393:1 16401:1 16402:1 16408:1 16412:5 16414:1 16416:1 16424:1 16428:1 16442:2 16444:1 16467:1 16468:1 16483:1 16490:1 16491:1 16495:1 16506:1 16517:1 16525:2 16535:1 16561:2 16570:1 16583:1 16597:1 16600:2 16603:2 16612:2 16618:2 16621:2 16631:1 16640:5 16661:2 16675:1 16687:2 16692:1 16718:1 16738:1 16775:4 16789:1 16804:1 16810:1 16828:1 16867:1 16874:1 16885:1 16892:2 16938:1 16939:1 16951:1 16956:1 16970:2 16996:1 17000:4 17005:4 17007:2 17010:1 17012:1 17013:1 17031:2 17037:1 17059:3 17073:1 17076:1 17078:1 17098:2 17099:1 17109:4 17137:1 17150:1 17162:1 17163:2 17167:1 17170:1 17184:1 17191:1 17194:1 17202:2 17205:1 17207:4 17224:1 17235:1 17237:3 17240:1 17245:1 17246:1 17255:1 17280:1 17283:1 17293:1 17294:1 17339:1 17347:2 17353:3 17355:4 17359:1 17360:1 17379:5 17380:1 17385:1 17408:1 17433:6 17435:2 17441:1 17445:1 17448:1 17479:1 17481:1 17488:1 17490:1 17496:1 17498:1 17501:4 17508:3 17509:1 17512:2 17520:2 17546:1 17558:1 17566:2 17584:1 17591:1 17611:1 17627:1 17628:1 17633:1 17634:1 17637:1 17653:1 17654:1 17662:4 17668:1 17685:11 17687:8 17689:1 17694:1 17722:2 17734:1 17736:2 17740:2 17758:4 17763:1 17776:2 17783:1 17790:1 17796:1 17803:1 17805:1 17813:1 17822:1 17826:1 17829:3 17833:1 17835:1 17844:8 17854:3 17855:1 17863:1 17864:1 17866:2 17873:1 17875:4 17878:1 17881:1 17884:1 17885:6 17889:3 17890:9 17892:1 17896:2 17900:2 17901:1 17902:1 17907:1 17912:1 17913:6 17919:4 17954:1 17968:2 17996:1 18009:2 18010:1 18012:2 18015:2 18021:1 18022:2 18024:2 18030:6 18041:2 18060:2 18065:1 18073:1 18076:2 18096:2 18101:3 18127:2 18143:1 18145:1 18146:1 18149:1 18158:1 18171:1 18175:1 18178:3 18182:1 18184:1 18187:9 18198:2 18199:2 18217:4 18222:1 18225:4 18243:1 18254:2 18263:25 18268:1 18291:1 18292:1 18300:6 18301:1 18305:2 18324:2 18341:74 18361:3 18366:1 18390:1 18418:1 18424:1 18426:1 18427:3 18442:1 18454:1 18455:1 18456:1 18459:1 18460:1 18461:1 18464:1 18467:2 18468:1 18469:2 18473:3 18474:6 18477:1 18481:1 18482:4 18484:1 18486:2 18493:2 18501:1 18513:1 18516:1 18518:1 18523:2 18526:1 18530:1 18536:1 18543:1 18544:1 18565:1 18567:1 18596:1 18598:1 18604:1 18610:5 18634:1 18643:1 18648:2 18649:1 18654:5 18692:1 18696:2 18700:1 18705:1 18715:1 18736:1 18762:1 18768:1 18797:1 18798:1 18808:1 18822:2 18826:1 18835:1 18836:1 18842:1 18861:1 18865:2 18867:1 18870:1 18903:1 18905:1 18908:2 18916:4 18922:5 18923:1 18927:1 18944:3 18946:3 18959:1 18968:3 18974:1 18985:3 18996:1 18997:1 19000:1 19004:3 19006:1 19008:2 19010:1 19016:1 19020:1 19027:1 19029:1 19042:3 19047:1 19048:13 19057:1 19059:2 19072:1 19084:2 19094:2 19106:1 19107:3 19134:1 19136:1 19141:1 19143:2 19165:1 19167:3 19170:5 19177:1 19179:3 19182:1 19183:1 19185:2 19202:1 19206:1 19222:1 19232:1 19235:1 19238:1 19240:1 19243:2 19245:2 19271:2 19272:2 19281:2 19285:1 19298:1 19306:1 19307:3 19313:2 19315:1 19316:1 19331:1 19346:1 19352:1 19374:1 19376:2 19382:2 19385:1 19396:1 19406:1 19407:2 19409:1 19420:1 19425:1 19434:2 19435:1 19440:3 19449:2 19455:1 19457:1 19461:1 19466:1 19469:3 19473:1 19480:1 19489:1 19490:1 19497:3 19501:1 19504:1 19521:2 19539:1 19541:1 19542:1 19550:1 19564:2 19586:1 19587:3 19595:2 19601:1 19603:1 19619:4 19640:1 19661:1 19664:1 19672:1 19675:1 19684:1 19685:1 19692:1 19711:7 19713:3 19714:1 19715:2 19718:1 19719:1 19726:1 19730:2 19731:4 19735:1 19737:3 19751:1 19757:2 19759:3 19761:2 19772:1 19775:1 19776:1 19789:2 19805:1 19813:1 19814:1 19817:1 19819:1 19827:1 19834:1 19840:2 19841:3 19877:1 19879:2 19907:1 19910:1 19924:2 19926:3 19936:2 19942:1 19944:1 19956:1 19962:1 19966:1 19971:3 19992:1 20012:3 20014:1 20016:1 20017:2 20020:2 20021:2 20022:1 20034:1 20037:15 20039:2 20052:1 20053:1 20070:2 20072:1 20078:1 20103:1 20118:2 20130:1 20131:1 20136:1 20151:1 20152:1 20153:2 20160:3 20179:2 20185:2 20191:1 20209:1 20210:1 20216:1 20229:1 20249:1 20255:4 20260:2 20261:4 20265:1 20274:2 20304:2 20307:1 20340:1 20342:1 20346:1 20382:3 20383:2 20392:1 20420:1 20423:1 20429:1 20437:1 20439:1 20450:2 20456:3 20467:3 20474:2 20480:1 20488:1 20489:2 20507:1 20508:1 20514:2 20523:1 20528:1 20531:1 20532:4 20540:1 20542:1 20556:1 20571:1 20579:1 20585:4 20591:1 20595:2 20618:1 20621:4 20630:1 20645:5 20649:1 20651:1 20655:3 20658:1 20676:2 20677:1 20682:1 20693:1 20695:2 20701:1 20748:1 20749:1 20776:2 20790:1 20792:22 20797:1 20804:1 20806:3 20813:1 20821:1 20822:1 20832:1 20852:1 20860:1 20861:1 20865:1 20869:1 20878:1 20880:1 20883:3 20884:2 20886:1 20892:2 20906:1 20912:1 20915:1 20922:1 20925:2 20935:1 20942:1 20946:7 20948:1 20950:2 20952:1 20965:4 20971:2 20976:1 20980:2 20981:1 20986:2 21013:1 21020:4011 21028:1 21044:1 21046:5 21047:1 21054:2 21066:2 21086:1 21097:1 21108:2 21121:1 21131:1 21133:1 21136:3 21137:2 21147:2 21177:1 21178:3 21179:1 21201:2 21212:2 21236:1 21239:6 21242:2 21268:3 21277:1 21280:1 21284:3 21287:1 21299:1 21315:1 21340:1 21341:1 21346:1 21361:1 21381:1 21384:5 21390:1 21402:2 21410:1 21414:1 21418:1 21422:1 21437:1 21442:3 21454:1 21463:2 21474:1 21484:1 21490:1 21494:1 21495:1 21503:1 21511:1 21539:1 21549:1 21551:2 21554:1 21556:1 21563:5 21576:2 21586:1 21601:1 21610:2 21619:1 21660:2 21661:5 21675:1 21678:5 21703:1 21720:1 21728:1 21749:1 21773:1 21779:2 21789:1 21795:2 21797:1 21803:2 21810:1 21819:4 21832:2 21835:1 21836:4 21841:1 21843:1 21853:1 21857:5 21867:19 21870:1 21887:1 21891:1 21892:1 21894:3 21895:1 21896:26 21909:2 21922:1 21929:1 21930:6 21932:1 21934:1 21950:2 21965:1 21970:6 21991:1 21995:3 22000:1 22001:1 22002:6 22004:2 22008:1 22015:1 22029:2 22030:1 22060:2 22068:3 22075:1 22089:1 22101:3 22103:1 22131:1 22133:1 22136:1 22144:1 22190:1 22194:1 22198:1 22224:1 22229:1 22235:1 22244:1 22262:1 22264:13 22272:1 22290:1 22308:1 22316:2 22317:2 22323:1 22340:1 22352:1 22357:1 22369:2 22375:1 22377:8 22396:1 22399:1 22404:1 22422:2 22439:1 22443:1 22444:1 22462:1 22467:1 22474:1 22476:1 22478:2 22483:1 22484:2 22485:1 22495:2 22510:1 22516:1 22534:1 22537:1 22542:4 22547:1 22556:1 22561:1 22581:3 22582:1 22590:1 22610:3 22616:1 22623:1 22624:1 22643:2 22644:1 22651:5 22676:2 22680:1 22685:2 22687:2 22701:2 22702:1 22704:1 22707:1 22708:8 22711:1 22737:1 22745:1 22758:1 22771:1 22775:1 22781:1 22787:1 22800:15 22809:2 22822:2 22825:3 22844:1 22845:1 22861:1 22863:15 22881:1 22900:1 22910:1 22922:1 22924:1 22925:1 22931:1 22933:1 22945:1 22964:2 22967:1 22993:1 22999:1 23003:1 23004:1 23005:1 23024:2 23042:1 23043:5 23045:2 23056:1 23063:1 23105:2 23125:1 23153:5 23165:1 23166:3 23183:1 23185:1 23198:1 23199:1 23209:1 23242:1 23245:2 23264:3 23265:1 23307:1 23312:3 23330:1 23335:1 23341:1 23369:1 23371:1 23374:3 23383:1 23399:1 23401:1 23407:2 23408:1 23439:1 23441:1 23446:1 23457:1 23466:1 23490:4 23501:1 23512:2 23517:1 23519:1 23521:2 23522:1 23525:1 23532:14 23540:2 23542:2 23543:1 23546:3 23547:1 23549:5 23550:1 23560:3 23569:5 23574:1 23595:5 23597:1 23605:1 23606:1 23610:1 23638:2 23639:1 23641:1 23653:2 23657:1 23673:2 23681:1 23682:1 23696:2 23705:1 23711:10 23719:1 23722:2 23730:1 23732:1 23735:1 23738:1 23742:2 23743:1 23756:1 23765:1 23778:1 23786:1 23798:1 23802:1 23803:1 23808:1 23810:1 23822:1 23832:3 23836:1 23837:1 23839:1 23843:1 23849:1 23859:4 23871:1 23873:1 23876:1 23881:2 23882:1 23885:1 23886:1 23892:1 23898:1 23900:1 23940:1 23944:3 23948:1 23968:1 23974:1 24003:1 24009:1 24015:2 24049:2 24055:1 24063:2 24065:4 24070:2 24073:4 24084:5 24087:3 24094:1 24097:1 24100:1 24135:1 24143:1 24147:2 24148:1 24149:1 24154:2 24164:1 24173:1 24180:1 24181:1 24186:2 24187:1 24188:2 24195:1 24201:1 24202:1 24216:2 24217:1 24218:8 24221:3 24240:1 24241:1 24245:1 24255:1 24266:1 24271:1 24277:1 24305:1 24308:2 24310:1 24311:2 24312:1 24320:3 24328:2 24339:1 24341:1 24344:1 24359:1 24360:4 24363:20 24375:1 24377:1 24384:2 24385:3 24391:1 24395:1 24396:1 24402:1 24408:1 24412:1 24413:4 24426:1 24427:5 24441:1 24447:1 24472:3 24473:1 24475:3 24478:1 24482:1 24488:5 24505:1 24520:1 24542:1 24543:4 24556:2 24563:3 24567:1 24623:1 24629:1 24649:4 24659:2 24661:1 24662:13 24666:3 24670:2 24682:3 24683:1 24687:1 24700:4 24701:2 24702:3 24703:2 24706:1 24707:1 24712:1 24714:2 24719:2 24722:1 24732:1 24734:2 24735:1 24747:2 24752:2 24758:1 24774:2 24809:1 24824:5 24825:1 24834:1 24855:1 24858:1 24861:1 24862:2 24869:2 24872:1 24877:1 24888:1 24894:1 24904:1 24908:5 24917:1 24923:1 24926:1 24935:1 24967:1 24979:25 24980:2 24984:1 24997:1 25005:1 25018:1 25021:1 25026:2 25033:1 25047:1 25057:1 25065:1 25071:5 25074:1 25092:1 25094:2 25101:1 25103:1 25104:1 25106:1 25110:2 25121:2 25125:1 25126:1 25129:9 25137:1 25139:2 25140:1 25148:3 25156:4 25168:2 25185:1 25190:1 25194:2 25201:1 25206:1 25209:2 25218:1 25233:1 25236:1 25241:3 25243:2 25245:2 25252:1 25256:1 25270:2 25273:1 25275:1 25289:12 25303:4 25313:1 25318:4 25328:1 25331:1 25340:1 25368:1 25369:1 25384:1 25387:2 25405:1 25406:1 25423:1 25439:1 25459:1 25473:3 25480:1 25485:1 25494:1 25501:2 25503:1 25510:2 25526:1 25535:1 25539:1 25547:1 25558:1 25561:1 25579:1 25581:1 25584:1 25588:2 25595:15 25597:1 25598:2 25620:1 25630:2 25634:2 25643:1 25653:1 25655:1 25667:2 25668:1 25676:1 25683:1 25689:4 25694:1 25695:2 25697:1 25705:1 25720:1 25722:1 25732:3 25743:1 25748:1 25754:1 25755:5 25772:1 25780:1 25787:1 25788:1 25791:1 25804:1 25808:1 25828:2 25835:1 25845:1 25850:1 25853:1 25860:1 25871:2 25877:1 25890:1 25895:1 25907:1 25912:1 25928:1 25929:2 25936:2 25944:1 25954:1 26001:1 26015:1 26016:1 26017:7 26024:1 26030:1 26043:1 26044:1 26056:2 26064:1 26073:1 26075:2 26094:1 26104:1 26129:1 26133:2 26135:3 26140:1 26149:1 26157:1 26160:2 26165:1 26174:2 26176:1 26179:4 26184:1 26187:1 26206:1 26213:1 26230:2 26243:1 26254:4 26255:5 26264:2 26265:1 26277:6 26283:1 26287:1 26290:1 26294:1 26297:1 26308:2 26309:1 26315:1 26316:4 26319:3 26324:1 26332:1 26352:2 26359:1 26360:3 26364:1 26380:1 26404:1 26415:6 26421:1 26424:32 26426:1 26482:1 26498:1 26516:2 26528:1 26530:2 26532:1 26534:1 26539:1 26552:1 26589:1 26594:1 26605:3 26609:1 26612:2 26613:1 26624:1 26635:1 26636:1 26642:1 26653:1 26655:2 26676:1 26679:1 26694:1 26705:2 26721:1 26724:1 26727:1 26748:1 26751:2 26758:2 26762:1 26775:1 26794:6 26806:2 26814:1 26818:1 26847:1 26878:1 26880:1 26897:3 26920:1 26923:1 26924:2 26929:1 26931:2 26934:1 26936:1 26938:2 26952:1 26968:2 26978:1 27003:1 27009:1 27014:1 27021:1 27022:1 27028:1 27032:2 27047:1 27070:1 27072:1 27085:1 27097:1 27102:1 27104:1 27112:1 27114:10 27122:1 27132:1 27133:1 27137:2 27141:3 27159:2 27170:1 27173:1 27183:1 27198:1 27225:1 27228:1 27242:1 27251:4 27262:1 27282:1 27299:1 27303:5 27321:1 27330:1 27360:2 27373:1 27377:1 27388:1 27389:1 27393:1 27397:5 27398:3 27401:1 27409:1 27419:1 27427:1 27437:2 27439:3 27447:1 27451:4 27456:2 27460:1 27488:2 27489:2 27491:1 27502:4 27512:1 27516:1 27522:2 27533:2 27552:1 27569:1 27574:1 27575:1 27595:1 27602:4 27612:3 27618:1 27620:1 27627:1 27641:1 27642:1 27651:1 27662:1 27672:1 27673:1 27676:1 27679:1 27684:1 27685:1 27701:1 27704:1 27716:1 27727:1 27728:2 27743:2 27753:2 27757:4 27760:1 27763:1 27769:1 27778:1 27792:1 27804:1 27809:1 27813:1 27817:1 27843:1 27846:1 27847:1 27851:1 27863:1 27867:1 27872:2 27881:1 27884:1 27917:3 27933:5 27949:1 27957:1 27967:1 27970:1 27985:1 27989:1 27997:1 28007:1 28015:2 28016:1 28021:1 28023:1 28032:7 28033:1 28043:1 28068:3 28071:1 28074:1 28094:1 28112:2 28132:1 28139:1 28145:6 28174:1 28178:1 28183:1 28194:1 28234:1 28242:4 28253:1 28255:1 28273:9 28277:1 28288:1 28303:1 28305:1 28317:1 28318:1 28327:3 28331:7 28335:1 28340:1 28342:1 28344:1 28348:5 28354:1 28372:1 28395:1 28408:1 28414:1 28442:1 28443:1 28474:1 28485:1 28499:1 28500:1 28503:4 28506:1 28507:3 28509:8 28512:3 28518:1 28524:1 28537:1 28540:1 28557:5 28560:1 28563:2 28591:2 28602:1 28603:1 28608:6 28609:1 28610:2 28625:2 28635:4 28641:7 28642:2 28652:3 28665:1 28666:1 28670:1 28671:1 28676:1 28680:1 28697:2 28702:3 28725:6 28728:1 28734:1 28739:2 28740:1 28753:2 28754:1 28762:1 28778:2 28791:1 28803:1 28811:4 28828:1 28847:5 28850:1 28870:4 28872:5 28875:1 28884:1 28902:2 28913:1 28937:1 28945:3 28972:1 28981:1 28994:2 28996:1 28998:4 29029:1 29052:1 29056:1 29060:2 29063:1 29066:1 29080:1 29085:2 29088:3 29102:1 29104:1 29105:1 29109:3 29120:1 29123:1 29128:1 29146:2 29147:1 29155:1 29156:2 29161:1 29165:1 29174:1 29189:6 29195:1 29197:1 29199:1 29205:1 29207:1 29210:1 29212:1 29215:1 29219:3 29234:1 29261:1 29272:2 29284:1 29291:2 29302:1 29316:1 29320:1 29326:1 29327:1 29332:2 29334:4 29365:23 29374:1 29409:1 29410:1 29412:1 29417:2 29439:1 29455:1 29472:2 29483:1 29491:1 29498:1 29503:1 29518:5 29519:2 29527:1 29543:1 29546:2 29558:1 29564:1 29574:2 29623:2 29637:3 29653:5 29655:2 29658:1 29660:1 29665:1 29673:1 29675:2 29676:1 29677:4 29679:10 29683:2 29685:1 29711:1 29725:1 29732:2 29759:1 29764:1 29766:1 29771:1 29781:4 29792:1 29797:1 29815:1 29821:4 29828:1 29839:1 29842:1 29850:1 29855:1 29861:2 29866:1 29867:1 29882:1 29910:4 29917:1 29923:2 29928:1 29951:2 29956:1 29964:1 29979:1 29985:3 29992:1 30023:1 30033:1 30051:1 30063:1 30079:1 30085:1 30091:1 30121:1 30123:2 30129:1 30149:1 30160:3 30163:1 30168:2 30183:2 30198:1 30205:1 30221:1 30235:1 30240:1 30294:2 30295:2 30308:4 30311:1 30315:1 30334:1 30352:1 30364:1 30367:1 30371:2 30393:2 30398:1 30399:6 30410:1 30412:1 30415:1 30418:10 30433:1 30438:1 30450:2 30451:2 30452:1 30506:1 30514:1 30524:32 30525:1 30529:3 30531:1 30540:1 30547:1 30560:6 30585:2 30592:1 30594:1 30612:1 30633:1 30643:3 30647:3 30648:4 30651:2 30656:1 30662:1 30667:1 30684:1 30698:2 30701:1 30703:1 30706:1 30707:1 30719:2 30721:3 30724:2 30727:2 30728:1 30738:1 30739:1 30740:1 30741:1 30743:1 30745:3 30753:1 30757:3 30760:1 30765:1 30788:2 30800:1 30816:1 30818:2 30827:1 30832:1 30845:1 30846:2 30849:1 30855:1 30876:2 30879:1 30881:1 30893:1 30895:1 30901:1 30906:3 30907:2 30916:1 30927:1 30958:2 30960:1 30978:1 30985:3 30986:2 30993:2 30997:1 30998:1 31004:1 31007:1 31021:4 31023:1 31030:2 31057:1 31080:1 31088:16 31094:1 31104:1 31120:1 31132:1 31164:1 31168:4 31176:4 31192:1 31200:2 31204:1 31207:1 31243:1 31259:1 31262:4 31268:1 31284:1 31302:2 31308:1 31309:2 31311:1 31317:1 31318:2 31349:5 31359:5 31389:1 31392:1 31394:1 31400:3 31403:1 31414:1 31418:1 31435:1 31455:2 31473:1 31476:1 31477:1 31489:4 31493:1 31498:1 31502:1 31514:1 31526:3 31529:2 31541:1 31544:29 31545:2 31546:2 31548:1 31549:3 31552:4 31555:1 31556:1 31566:1 31586:1 31587:13 31597:1 31602:1 31603:1 31613:2 31644:1 31645:1 31646:1 31651:2 31661:1 31662:2 31669:1 31673:3 31681:1 31691:1 31697:1 31702:7 31713:5 31718:1 31719:2 31743:1 31754:4 31758:1 31759:2 31763:1 31766:1 31784:2 31786:2 31797:1 31801:1 31802:1 31806:1 31824:1 31829:1 31834:1 31849:1 31854:1 31863:2 31866:1 31900:2 31901:2 31909:1 31932:1 31943:1 31944:1 31951:1 31953:1 31957:2 31959:1 31964:4 31969:3 31971:1 31976:1 31989:1 31990:1 31994:2 32000:1 32012:1 32028:11 32032:1 32034:3 32039:4 32041:1 32083:1 32106:1 32107:1 32110:4 32115:9 32118:2 32119:1 32125:1 32126:1 32142:2 32146:2 32147:3 32158:1 32161:1 32163:1 32175:2 32178:2 32179:1 32186:1 32214:3 32225:1 32241:1 32257:1 32263:3 32269:1 32272:1 32275:2 32279:3 32280:1 32299:1 32303:2 32307:2 32310:5 32314:1 32316:1 32321:5 32330:1 32342:2 32363:1 32374:1 32381:1 32414:1 32429:1 32439:2 32445:1 32471:3 32473:2 32488:1 32505:4 32510:1 32522:1 32539:2 32543:1 32547:1 32559:1 32582:1 32590:3 32596:1 32605:3 32617:1 32628:1 32642:1 32644:1 32662:1 32676:3 32681:1 32684:1 32686:1 32688:1 32701:1 32713:2 32727:1 32732:1 32733:8 32735:1 32740:2 32755:2 32781:1 32785:3 32787:2 32806:1 32811:1 32821:5 32831:2 32835:1 32861:1 32891:2 32894:1 32897:1 32898:1 32902:1 32903:1 32905:5 32910:1 32921:1 32950:1 32957:2 32966:1 32971:1 32972:1 32973:2 32977:1 33021:1 33035:1 33038:1
16 10:2 13:1 26:1 27:2 28:1 41:1 55:1 66:1 72:1 78:1 81:1 84:1 85:5 104:1 109:1 124:1 127:1 145:1 164:1 173:1 175:1 176:5 184:1 186:1 189:2 191:1 219:1 225:2 232:4 235:1 262:1 269:4 272:1 273:1 285:1 295:2 304:1 318:3 338:1 351:4 355:1 375:1 387:1 397:3 398:1 399:3 401:1 418:2 427:2 434:1 437:1 443:1 459:1 468:2 475:1 484:1 488:1 502:3 505:2 509:2 525:1 535:2 542:2 551:2 567:1 575:1 577:1 581:1 584:1 589:2 591:2 628:1 629:1 636:2 649:5 667:1 709:1 713:4 716:1 723:4 751:3 757:2 762:4 766:1 774:1 779:1 790:1 791:1 793:1 805:1 812:1 821:1 832:1 860:2 869:2 886:1 891:2 908:1 929:1 937:1 944:1 949:2 957:1 962:2 970:1 975:5 984:1 986:1 988:3 991:2 994:1 1000:2 1007:1 1016:1 1025:1 1035:2 1039:1 1046:3 1050:1 1051:1 1054:1 1058:2 1068:2 1069:2 1078:3 1080:1 1081:3 1082:6 1084:2 1091:2 1098:1 1113:1 1114:2 1116:2 1133:1 1136:1 1138:1 1139:6 1143:2 1149:1 1151:1 1164:1 1165:1 1170:1 1180:2 1185:2 1196:1 1202:1 1213:1 1220:2 1221:1 1240:1 1250:1 1254:1 1259:1 1285:2 1286:1 1288:1 1301:2 1322:1 1331:2 1341:1 1351:1 1352:1 1353:3 1356:1 1359:2 1366:2 1368:1 1369:2 1377:2 1387:1 1388:4 1398:2 1406:2 1409:2 1412:1 1425:3 1426:3 1457:1 1464:1 1466:2 1469:2 1472:6 1475:1 1487:2 1488:8 1489:2 1490:1 1492:1 1506:3 1512:1 1524:1 1526:1 1528:1 1535:1 1540:2 1544:1 1546:4 1547:1 1560:2 1572:2 1574:1 1586:2 1600:2 1611:1 1630:1 1633:1 1635:1 1636:1 1637:1 1642:2 1650:1 1676:3 1677:1 1683:1 1689:1 1692:1 1695:2 1711:1 1712:1 1733:1 1742:7 1750:1 1754:1 1760:9 1767:3 1773:1 1774:2 1775:1 1776:1 1780:4 1787:1 1791:1 1797:1 1801:1 1802:6 1822:1 1835:1 1836:1 1839:10 1853:1 1863:3 1865:2 1866:2 1867:2 1871:2 1872:1 1879:2 1881:1 1899:1 1907:3 1911:1 1914:1 1919:6 1924:6 1927:2 1928:1 1939:1 1941:2 1944:2 1953:1 1963:5 1966:3 1968:1 1975:1 1976:1 1985:1 1993:2 1994:1 1998:1 2018:1 2038:1 2039:1 2050:2 2053:1 2054:1 2055:1 2058:1 2069:4 2074:1 2077:6 2089:1 2097:1 2098:1 2109:2 2122:1 2127:1 2128:1 2134:1 2139:1 2142:1 2143:1 2150:1 2156:2 2157:2 2165:1 2174:2 2175:1 2180:1 2187:1 2188:1 2192:1 2194:1 2201:4 2211:1 2215:1 2219:2 2226:1 2230:1 2232:2 2234:5 2239:1 2241:1 2243:1 2245:1 2262:1 2263:5 2264:1 2282:1 2291:1 2317:1 2320:1 2323:1 2339:1 2345:1 2354:2 2358:2 2360:2 2361:2 2368:3 2369:1 2379:1 2386:1 2407:1 2414:2 2435:1 2438:1 2439:1 2441:4 2443:1 2444:2 2445:1 2446:1 2447:1 2463:1 2475:4 2501:2 2505:1 2509:2 2518:1 2527:1 2531:1 2538:1 2553:1 2556:1 2566:1 2571:1 2572:3 2584:1 2587:1 2588:1 2594:2 2599:1 2601:1 2628:2 2629:1 2630:1 2631:2 2632:6 2635:1 2636:3 2637:1 2638:6 2640:2 2641:1 2643:6 2645:1 2647:5 2651:2 2654:1 2659:1 2660:7 2665:3 2666:1 2668:8 2673:1 2674:1 2683:1 2687:2 2691:1 2695:2 2700:1 2706:1 2708:1 2712:1 2728:1 2733:1 2737:1 2744:1 2752:1 2754:2 2755:1 2759:1 2762:1 2763:3 2764:1 2769:1 2773:1 2782:1 2790:2 2793:1 2794:1 2800:2 2808:1 2811:1 2825:1 2826:1 2836:1 2845:6 2856:1 2871:1 2876:2 2883:4 2885:1 2909:1 2914:1 2921:1 2925:1 2927:1 2944:1 2985:1 2986:2 2994:1 3001:1 3021:1 3023:1 3062:2 3071:1 3082:5 3092:1 3098:5 3108:1 3117:2 3119:1 3127:1 3130:3 3136:12 3150:1 3151:1 3161:1 3162:2 3164:3 3170:2 3173:1 3177:1 3178:1 3182:1 3189:4 3193:1 3197:1 3204:1 3226:2 3228:1 3237:2 3246:2 3252:2 3254:1 3256:5 3264:4 3314:5 3322:1 3326:1 3328:1 3336:2 3339:1 3355:16 3363:7 3365:1 3381:1 3392:2 3409:1 3426:32 3435:2 3441:1 3449:1 3457:1 3459:1 3473:1 3488:1 3497:1 3505:2 3532:1 3533:2 3536:1 3537:1 3542:2 3565:1 3607:3 3612:1 3613:1 3625:3 3634:1 3639:2 3650:1 3666:1 3688:1 3689:1 3693:1 3697:2 3698:1 3700:1 3705:1 3710:2 3713:4 3721:2 3726:2 3739:13 3759:1 3764:1 3773:1 3787:1 3789:2 3798:1 3809:1 3821:1 3823:7 3842:1 3863:1 3885:1 3894:1 3900:1 3906:1 3917:1 3918:2 3931:4 3941:1 3944:1 3959:1 3965:1 3971:4 3975:3 3983:2 3985:1 3991:1 3992:1 3993:1 4003:6 4041:1 4042:1 4046:1 4049:1 4053:3 4056:1 4075:1 4076:1 4077:1 4089:3 4091:2 4099:1 4125:1 4134:1 4140:1 4144:1 4150:1 4152:5 4156:2 4161:3 4164:2 4165:1 4185:2 4194:1 4203:1 4210:1 4235:1 4245:2 4256:1 4266:1 4270:2 4271:4 4273:1 4297:1 4315:1 4317:1 4323:4 4325:48 4331:1 4340:1 4346:1 4347:1 4361:2 4363:1 4364:9 4367:1 4372:1 4375:1 4376:2 4377:30 4379:2 4381:7 4385:1 4391:2 4405:4 4408:1 4418:3 4419:4 4423:3 4425:4 4426:2 4438:2 4439:2 4442:2 4444:1 4463:1 4480:2 4490:1 4491:3 4498:1 4502:1 4507:1 4531:1 4534:1 4537:1 4539:2 4541:1 4543:1 4544:3 4555:3 4567:2 4570:1 4575:1 4581:1 4587:1 4595:1 4596:1 4597:3 4619:1 4622:1 4630:1 4632:2 4633:1 4635:1 4636:1 4643:2 4646:2 4652:1 4655:1 4658:6 4674:6 4678:1 4686:1 4722:1 4730:1 4734:1 4755:1 4767:1 4785:1 4793:1 4799:3 4810:1 4813:3 4823:1 4834:2 4852:1 4855:1 4870:2 4876:2 4877:2 4879:1 4880:1 4883:1 4906:1 4913:2 4923:1 4924:1 4926:1 4937:2 4966:1 4978:1 4989:2 4999:1 5010:15 5021:1 5027:1 5028:1 5044:1 5086:1 5090:3 5098:1 5106:5 5117:1 5120:2 5138:1 5152:7 5155:1 5166:1 5176:1 5181:2 5184:1 5195:1 5198:1 5203:1 5205:1 5258:1 5268:2 5269:1 5298:1 5331:2 5343:3 5360:1 5362:1 5363:2 5367:1 5370:2 5381:1 5390:5 5403:1 5407:1 5410:4 5433:3 5434:1 5438:3 5439:1 5456:1 5470:1 5497:1 5509:1 5510:1 5514:1 5516:1 5528:1 5542:1 5545:2 5558:2 5613:2 5617:1 5619:1 5632:1 5640:2 5643:1 5645:1 5650:1 5657:1 5659:19 5660:3 5678:1 5699:3 5728:1 5729:2 5744:1 5750:1 5761:1 5770:1 5784:4 5797:6 5800:1 5802:5 5806:1 5821:2 5822:4 5823:8 5824:1 5827:1 5828:2 5830:1 5831:3 5833:1 5840:1 5841:25 5842:1 5844:1 5848:2 5849:3 5860:2 5861:1 5871:1 5877:2 5880:3 5884:1 5888:1 5903:2 5936:2 5950:2 5958:1 5964:3 5968:1 5972:1 5977:2 6017:1 6050:1 6056:2 6060:1 6081:3 6082:3 6088:1 6089:5 6098:1 6122:1 6125:1 6137:1 6140:1 6142:1 6157:1 6162:1 6168:2 6169:25 6177:1 6205:1 6215:1 6216:3 6221:1 6236:2 6255:4 6271:1 6300:1 6301:1 6305:1 6315:1 6322:1 6339:1 6350:1 6357:2 6371:1 6379:1 6383:1 6394:1 6396:1 6403:1 6404:2 6413:1 6462:1 6463:1 6465:1 6469:1 6473:1 6479:1 6480:1 6483:2 6493:1 6499:1 6507:4 6515:1 6518:1 6531:2 6540:1 6542:1 6548:1 6550:2 6557:1 6568:2 6573:1 6574:2 6587:1 6598:1 6611:1 6617:5 6640:2 6647:2 6667:1 6669:1 6672:1 6673:1 6678:1 6686:1 6705:1 6707:2 6722:1 6723:1 6725:1 6728:1 6731:1 6733:1 6747:2 6748:1 6753:1 6768:1 6772:1 6775:1 6776:1 6777:1 6808:1 6815:1 6825:1 6826:1 6843:1 6844:3 6845:1 6868:1 6869:1 6870:5 6873:1 6876:1 6881:1 6883:1 6891:1 6895:2 6897:1 6912:1 6938:1 6958:1 6959:2 6992:1 7004:1 7029:1 7034:5 7035:11 7043:1 7045:2 7062:1 7068:2 7074:1 7078:1 7079:1 7102:1 7120:1 7128:1 7133:1 7139:1 7140:2 7146:1 7149:2 7150:1 7154:1 7157:1 7161:1 7190:6 7196:1 7200:2 7202:2 7227:1 7232:1 7237:1 7249:1 7254:3 7257:1 7260:2 7276:6 7278:1 7284:1 7291:2 7295:1 7296:1 7300:1 7309:1 7316:1 7321:1 7338:1 7363:1 7382:7 7386:2 7387:2 7390:1 7391:1 7392:2 7394:3 7396:2 7397:1 7401:2 7402:3 7403:5 7409:4 7410:8 7411:1 7412:2 7413:5 7427:1 7441:3 7451:1 7454:1 7474:3 7477:1 7480:1 7493:1 7503:1 7508:2 7509:1 7548:1 7553:1 7555:1 7559:1 7567:1 7579:2 7586:1 7611:1 7613:1 7615:1 7664:1 7669:1 7681:4 7684:2 7687:1 7690:4 7709:1 7710:5 7716:3 7722:1 7725:1 7731:1 7732:1 7742:2 7753:1 7762:1 7763:1 7764:3 7769:1 7770:2 7790:1 7791:1 7793:1 7805:1 7825:1 7834:1 7846:1 7849:1 7852:1 7856:1 7869:3 7876:3 7877:2 7879:1 7891:3 7897:1 7900:2 7907:7 7909:1 7915:3 7921:2 7940:1 7944:1 7947:3 7955:1 7985:1 7987:1 7998:1 8005:2 8012:1 8016:1 8019:1 8021:1 8026:2 8032:1 8066:1 8071:1 8091:2 8093:1 8110:1 8111:3 8118:1 8127:1 8135:1 8137:2 8138:1 8146:1 8169:2 8194:2 8215:1 8223:2 8224:1 8232:1 8233:2 8251:1 8255:6 8259:2 8262:1 8263:3 8266:1 8270:1 8280:1 8287:1 8289:1 8299:1 8320:1 8335:1 8358:2 8399:1 8409:1 8425:1 8434:1 8436:1 8441:1 8442:1 8490:1 8499:2 8507:1 8512:1 8513:1 8526:5 8575:1 8577:1 8586:4 8604:2 8610:1 8629:5 8632:1 8637:1 8664:1 8668:2 8674:2 8679:2 8688:2 8689:1 8711:2 8714:1 8723:2 8753:1 8759:1 8765:1 8768:1 8770:3 8784:1 8786:1 8791:6 8806:1 8821:1 8830:4 8831:6 8832:3 8842:1 8850:1 8854:2 8855:1 8858:2 8861:1 8866:1 8888:1 8890:2 8898:1 8900:1 8901:56 8902:1 8904:1 8908:2 8911:1 8920:16 8923:28 8929:1 8930:1 8933:1 8936:1 8943:1 8945:1 8949:1 8952:1 8978:7 8979:1 9001:1 9014:1 9016:1 9025:1 9027:1 9034:1 9051:1 9058:1 9059:2 9068:1 9082:4 9085:1 9091:1 9104:1 9143:1 9149:4 9153:8 9161:2 9167:1 9175:1 9199:1 9206:1 9209:5 9212:1 9219:1 9230:1 9232:1 9234:1 9251:1 9263:1 9272:1 9285:1 9304:1 9341:1 9343:4 9347:1 9359:2 9362:1 9366:1 9368:1 9370:9 9386:3 9394:1 9400:1 9405:1 9416:2 9428:2 9436:1 9444:2 9448:1 9454:1 9468:1 9470:1 9484:28 9495:1 9501:1 9511:1 9516:2 9524:2 9525:1 9529:1 9551:2 9589:1 9594:1 9605:2 9606:1 9616:1 9630:2 9639:4 9643:1 9664:1 9672:1 9678:3 9687:6 9694:3 9697:1 9709:2 9711:2 9715:4 9728:1 9732:2 9733:1 9734:2 9738:1 9747:1 9748:2 9754:2 9765:1 9777:2 9778:2 9784:1 9785:1 9788:1 9790:1 9791:1 9792:1 9809:2 9811:1 9824:1 9829:1 9836:1 9841:3 9848:1 9859:1 9866:1 9870:2 9875:2 9878:2 9880:1 9881:3 9882:2 9884:2 9885:5 9888:2 9890:1 9894:2 9897:2 9899:2 9903:3 9919:1 9925:3 9934:2 9944:1 9945:1 9950:1 9951:1 9959:1 9973:6 9977:2 9984:1 9995:2 10002:3 10013:1 10019:1 10024:5 10044:1 10053:6 10056:1 10065:1 10067:1 10069:2 10080:1 10088:1 10092:1 10098:1 10121:1 10128:2 10138:1 10139:2 10144:1 10150:3 10161:3 10162:1 10166:1 10169:1 10170:1 10181:2 10192:1 10204:1 10208:7 10209:2 10214:6 10216:1 10218:1 10219:4 10221:3 10223:2 10228:2 10229:3 10230:2 10252:3 10254:1 10255:2 10257:5 10270:1 10272:1 10295:3 10302:1 10308:1 10354:1 10359:1 10362:1 10367:1 10377:3 10386:1 10397:2 10399:2 10410:1 10412:1 10422:1 10438:1 10441:1 10447:1 10454:1 10461:1 10463:1 10465:1 10478:1 10485:3 10495:1 10496:1 10520:4 10553:1 10554:1 10558:2 10563:1 10565:5 10578:2 10580:1 10588:9 10610:2 10615:3 10619:1 10627:1 10634:3 10645:1 10653:1 10662:1 10671:3 10673:1 10695:1 10696:2 10701:1 10710:2 10726:1 10750:2 10756:1 10768:1 10800:1 10819:1 10820:1 10842:1 10845:1 10846:1 10851:3 10857:2 10858:1 10862:1 10864:2 10879:1 10900:2 10903:1 10906:2 10920:1 10937:1 10939:1 10942:3 10947:1 10958:1 10959:1 10975:1 11000:1 11009:25 11016:1 11034:2 11039:2 11047:7 11056:2 11059:1 11082:1 11083:1 11089:2 11091:1 11095:1 11097:1 11102:1 11104:2 11124:2 11133:1 11140:1 11154:14 11168:1 11170:2 11171:1 11176:3 11189:1 11196:1 11198:1 11209:1 11210:5 11218:1 11225:1 11226:1 11229:3 11230:1 11232:1 11245:1 11249:1 11263:1 11267:1 11276:1 11280:1 11300:3 11316:2 11318:3 11319:1 11336:1 11359:8 11363:3 11366:4 11368:2 11374:3 11375:1 11378:1 11382:1 11392:3 11400:3 11402:1 11403:1 11408:2 11417:2 11422:4 11423:1 11426:5 11427:1 11429:1 11437:1 11446:1 11453:1 11464:3 11470:4 11489:1 11492:2 11496:1 11507:1 11513:2 11521:2 11545:1 11550:1 11551:4 11553:1 11580:13 11582:1 11583:6 11595:1 11597:1 11600:1 11633:1 11692:1 11697:2 11703:1 11716:1 11720:1 11728:1 11731:1 11733:2 11736:1 11754:4 11761:1 11762:1 11775:4 11789:1 11796:2 11800:1 11803:3 11826:1 11832:1 11835:2 11859:2 11880:1 11897:2 11914:6 11921:1 11926:1 11932:3 11948:2 11955:2 11967:2 11970:1 11989:1 11994:3 12001:7 12012:1 12014:1 12043:1 12044:1 12052:2 12072:3 12075:2 12090:1 12098:6 12099:2 12117:2 12119:4 12120:1 12121:8 12125:1 12128:1 12145:1 12147:4 12150:1 12160:2 12173:1 12174:3 12197:1 12200:1 12211:4 12225:2 12229:3 12241:2 12247:1 12249:9 12266:1 12269:2 12314:1 12316:1 12322:1 12345:2 12346:2 12347:1 12352:1 12362:1 12385:1 12392:2 12396:1 12408:1 12416:1 12459:2 12465:1 12468:1 12476:1 12492:1 12498:3 12499:1 12501:1 12510:2 12512:9 12531:4 12534:7 12549:4 12553:1 12556:2 12558:1 12562:1 12571:1 12576:2 12589:1 12596:4 12610:1 12623:2 12626:1 12634:1 12635:2 12642:5 12659:2 12664:4 12671:1 12676:3 12692:1 12703:2 12706:1 12707:1 12733:1 12736:1 12739:1 12740:1 12743:1 12749:1 12753:1 12770:2 12787:1 12807:1 12810:1 12816:1 12818:1 12819:1 12821:1 12825:6 12826:1 12827:1 12850:1 12855:1 12863:1 12867:2 12880:2 12883:1 12888:1 12892:1 12893:1 12897:1 12919:2 12951:1 12953:4 12958:1 12960:1 12963:2 12965:1 12968:1 12970:1 12974:2 12980:1 12981:1 12983:1 12990:2 12991:1 12992:1 13014:1 13021:5 13052:1 13057:1 13061:3 13063:7 13067:1 13070:3 13078:1 13081:3 13100:1 13118:1 13122:1 13125:1 13127:1 13130:1 13135:1 13138:2 13153:1 13154:1 13176:3 13196:1 13204:1 13207:1 13215:1 13218:5 13233:2 13234:6 13236:1 13251:2 13252:3 13254:2 13263:1 13277:1 13284:1 13297:3 13303:1 13318:4 13324:2 13327:1 13328:11 13341:2 13343:1 13348:1 13350:1 13352:1 13354:1 13355:1 13363:1 13364:3 13366:1 13368:8 13369:1 13376:2 13379:8 13382:1 13387:2 13395:2 13397:1 13403:12 13406:1 13428:2 13447:5 13454:2 13463:2 13467:1 13507:1 13518:4 13528:1 13532:1 13536:2 13537:3 13551:1 13576:1 13577:1 13580:1 13590:3 13592:1 13607:1 13616:1 13620:3 13629:1 13645:1 13652:1 13664:2 13674:1 13679:1 13690:2 13692:2 13695:1 13717:2 13737:3 13742:1 13759:1 13766:1 13780:5 13832:3 13834:2 13847:1 13851:1 13858:1 13867:1 13872:1 13874:1 13878:1 13887:1 13913:4 13914:4 13916:25 13921:1 13923:8 13924:1 13933:1 13940:1 13941:2 13945:1 13956:3 13962:1 13972:3 13977:1 14002:1 14007:1 14021:2 14038:1 14041:1 14043:1 14073:1 14074:3 14082:9 14083:2 14084:1 14098:1 14105:1 14106:4 14109:3 14130:2 14156:1 14167:4 14172:1 14188:1 14198:1 14207:1 14216:1 14219:2 14222:1 14228:1 14235:1 14248:2 14265:1 14286:2 14292:1 14312:5 14326:2 14329:1 14336:2 14369:1 14373:3 14379:1 14381:1 14382:1 14387:1 14388:1 14399:1 14417:2 14441:1 14443:1 14449:1 14456:1 14469:1 14506:6 14519:1 14520:1 14523:1 14527:2 14528:1 14530:1 14535:1 14546:1 14565:2 14566:4 14572:1 14588:2 14592:3 14623:1 14629:1 14660:1 14667:2 14682:1 14693:1 14703:1 14705:1 14728:1 14735:2 14746:1 14748:1 14751:3 14764:1 14775:1 14785:2 14810:1 14819:1 14820:2 14865:1 14869:1 14870:1 14875:1 14894:5 14896:1 14907:1 14920:1 14926:1 14930:1 14939:1 14943:1 14948:1 14950:1 14955:1 14960:1 14970:2 14990:3 14993:2 15002:2 15013:1 15014:1 15015:2 15017:2 15023:1 15035:1 15044:1 15045:3 15080:3 15086:1 15088:2 15140:3 15146:3 15154:1 15155:2 15156:9 15159:2 15162:5 15164:1 15168:1 15171:2 15178:3 15182:1 15192:4 15195:1 15198:2 15204:5 15214:1 15216:1 15234:8 15238:1 15247:1 15250:1 15252:1 15254:3 15266:2 15267:1 15280:2 15295:1 15301:2 15306:1 15313:1 15317:1 15336:1 15338:7 15343:1 15353:1 15355:1 15365:1 15368:1 15380:2 15400:3 15420:1 15423:1 15428:2 15430:7 15441:1 15442:1 15450:1 15464:2 15465:4 15466:2 15467:1 15468:1 15480:4 15486:1 15502:1 15503:1 15511:3 15513:1 15514:2 15529:1 15537:1 15538:2 15561:1 15576:1 15579:2 15581:1 15588:1 15589:1 15596:1 15597:1 15598:2 15599:2 15600:2 15602:2 15606:1 15627:1 15630:1 15635:1 15636:1 15639:1 15640:1 15642:2 15655:1 15659:1 15660:1 15663:2 15664:1 15673:1 15677:1 15683:1 15684:2 15688:3 15691:1 15701:2 15706:1 15707:1 15726:1 15739:9 15748:2 15750:1 15754:1 15797:2 15801:1 15821:2 15822:1 15823:2 15827:2 15851:1 15853:2 15856:2 15857:1 15861:5 15891:1 15906:1 15908:1 15918:1 15921:1 15933:2 15934:6 15938:3 15939:8 15950:2 15970:2 15977:3 15997:1 16008:2 16035:2 16037:1 16043:2 16046:1 16051:1 16063:2 16064:1 16070:2 16074:1 16091:1 16107:1 16118:1 16189:1 16192:2 16194:1 16195:1 16202:2 16220:2 16246:1 16263:1 16279:1 16288:1 16310:3 16322:1 16339:1 16341:1 16345:2 16361:1 16362:1 16371:1 16377:1 16382:3 16392:2 16393:1 16401:1 16402:1 16408:1 16412:5 16414:1 16416:1 16424:1 16428:1 16442:2 16444:1 16467:1 16468:1 16483:1 16490:1 16491:1 16495:1 16506:1 16517:1 16525:2 16535:1 16561:2 16570:1 16583:1 16597:1 16600:2 16603:2 16612:2 16618:2 16621:2 16631:1 16640:5 16661:2 16675:1 16687:2 16692:1 16718:1 16738:1 16775:4 16789:1 16804:1 16810:1 16828:1 16858:1 16867:1 16874:1 16885:1 16892:2 16938:1 16939:1 16951:1 16956:1 16970:2 16996:1 17000:4 17005:4 17007:2 17010:1 17012:1 17013:1 17031:2 17037:1 17059:3 17073:1 17076:1 17078:1 17098:2 17099:1 17109:4 17137:1 17150:1 17157:1 17162:1 17163:2 17167:1 17170:1 17184:1 17191:1 17194:1 17202:2 17205:1 17207:4 17224:1 17235:1 17237:3 17240:1 17245:1 17246:1 17255:1 17280:1 17283:1 17293:1 17294:1 17339:1 17347:2 17353:3 17355:4 17359:1 17360:1 17379:5 17380:1 17385:1 17408:1 17433:7 17435:2 17441:1 17445:1 17448:1 17479:1 17481:1 17488:1 17490:1 17496:1 17498:1 17501:4 17508:3 17509:1 17512:2 17520:2 17546:1 17558:1 17566:2 17577:1 17584:1 17591:1 17611:1 17627:1 17628:1 17633:1 17634:1 17637:1 17653:1 17654:1 17662:4 17668:2 17685:12 17687:8 17689:1 17694:1 17722:2 17734:1 17736:2 17740:2 17758:4 17763:1 17776:2 17783:1 17790:1 17796:1 17803:1 17805:1 17813:1 17822:1 17826:1 17829:3 17833:1 17835:1 17844:8 17854:3 17855:1 17863:1 17864:1 17866:2 17872:1 17873:1 17875:4 17878:1 17881:1 17884:1 17885:7 17889:3 17890:9 17892:1 17896:2 17900:2 17901:1 17902:1 17907:1 17909:1 17912:1 17913:6 17919:4 17954:1 17968:2 17996:1 18009:2 18010:1 18012:2 18015:2 18021:1 18022:2 18024:2 18030:6 18041:2 18060:2 18065:1 18073:1 18076:2 18096:2 18101:3 18127:2 18143:1 18145:1 18146:1 18149:2 18158:1 18171:1 18175:1 18178:3 18182:1 18184:1 18187:9 18198:2 18199:2 18217:4 18222:1 18225:4 18243:1 18254:2 18263:25 18268:1 18291:1 18292:1 18300:6 18301:1 18305:2 18324:2 18341:74 18361:3 18366:1 18383:1 18390:1 18418:1 18424:1 18426:1 18427:3 18442:1 18454:1 18455:1 18456:1 18459:1 18460:1 18461:1 18464:1 18465:1 18467:2 18468:1 18469:2 18473:3 18474:7 18477:1 18481:1 18482:4 18484:1 18486:2 18493:2 18501:1 18513:1 18516:1 18518:1 18523:2 18526:1 18530:1 18536:1 18537:1 18543:1 18544:1 18565:1 18567:1 18596:2 18598:1 18604:1 18610:5 18634:1 18643:1 18648:2 18649:1 18654:5 18692:1 18696:2 18700:1 18705:1 18715:1 18736:1 18756:1 18762:1 18768:1 18797:1 18798:1 18808:1 18822:2 18826:1 18835:1 18836:1 18842:1 18861:1 18865:2 18867:1 18870:1 18903:1 18905:1 18908:2 18916:4 18922:6 18923:1 18927:1 18944:3 18946:3 18959:1 18968:3 18974:1 18977:1 18985:3 18996:1 18997:1 19000:1 19004:3 19006:1 19008:2 19010:1 19016:1 19020:1 19027:1 19029:1 19042:3 19047:1 19048:13 19057:1 19059:2 19072:1 19084:2 19094:2 19106:1 19107:3 19134:1 19136:1 19141:1 19143:2 19165:1 19167:3 19170:5 19177:1 19179:3 19182:1 19183:1 19185:2 19202:1 19206:1 19222:1 19232:1 19235:1 19238:1 19240:1 19243:2 19245:2 19271:2 19272:2 19281:2 19285:1 19298:1 19306:1 19307:3 19313:2 19315:1 19316:1 19318:1 19331:1 19346:1 19352:1 19374:1 19376:2 19382:2 19385:1 19396:1 19406:1 19407:2 19409:1 19420:1 19425:1 19434:2 19435:1 19440:3 19449:2 19455:1 19457:1 19461:1 19466:1 19469:3 19473:1 19478:1 19480:1 19482:1 19489:1 19490:1 19497:3 19501:1 19504:1 19521:2 19524:1 19539:1 19541:1 19542:1 19550:1 19564:2 19586:1 19587:3 19595:2 19601:1 19603:1 19619:4 19640:1 19661:1 19664:1 19672:1 19675:1 19684:1 19685:1 19692:1 19711:7 19713:3 19714:1 19715:2 19718:1 19719:1 19726:1 19730:2 19731:4 19735:1 19737:3 19751:1 19757:2 19759:3 19761:2 19772:1 19775:1 19776:1 19789:2 19805:1 19813:1 19814:1 19817:1 19819:1 19822:1 19827:1 19829:1 19834:1 19840:2 19841:4 19877:1 19879:2 19907:1 19910:1 19924:2 19926:3 19936:2 19942:1 19944:1 19956:1 19962:1 19966:1 19971:3 19985:1 19992:1 20012:4 20014:1 20016:1 20017:2 20020:2 20021:2 20022:1 20034:1 20037:15 20039:2 20052:1 20053:1 20070:2 20072:1 20078:1 20103:1 20118:2 20128:1 20130:1 20131:1 20136:1 20151:1 20152:1 20153:2 20160:4 20179:2 20185:2 20191:1 20209:1 20210:1 20216:1 20229:1 20249:1 20255:4 20260:2 20261:4 20265:1 20274:2 20304:2 20307:1 20340:1 20342:1 20346:1 20353:1 20382:3 20383:2 20392:1 20420:1 20423:1 20429:1 20437:1 20439:1 20450:2 20456:3 20467:3 20474:2 20480:1 20488:1 20489:2 20507:1 20508:1 20514:2 20523:1 20528:1 20531:1 20532:4 20540:1 20542:1 20556:1 20571:1 20579:1 20585:4 20591:1 20595:2 20618:1 20621:4 20630:1 20645:6 20649:1 20651:1 20655:3 20658:1 20676:3 20677:1 20682:1 20693:1 20695:2 20701:1 20748:1 20749:1 20776:2 20790:1 20792:23 20797:1 20804:1 20806:3 20813:1 20821:1 20822:1 20832:1 20852:1 20860:1 20861:1 20865:1 20869:1 20878:1 20880:1 20883:3 20884:2 20886:1 20892:2 20906:1 20912:1 20915:1 20922:1 20925:2 20935:1 20942:1 20946:7 20948:1 20950:2 20952:1 20965:4 20971:2 20976:1 20980:2 20981:1 20986:2 21013:1 21020:4112 21028:1 21030:1 21044:1 21046:5 21047:1 21054:2 21066:2 21086:1 21097:1 21108:2 21121:1 21131:1 21133:1 21136:3 21137:2 21147:2 21177:1 21178:3 21179:1 21201:2 21212:2 21236:1 21239:7 21242:2 21268:3 21277:1 21280:1 21284:3 21287:1 21299:1 21315:1 21340:1 21341:1 21346:1 21361:1 21381:1 21384:5 21390:1 21402:2 21410:1 21414:1 21418:1 21422:1 21437:1 21442:3 21454:1 21463:2 21474:1 21484:1 21490:1 21494:1 21495:1 21503:1 21511:1 21535:1 21536:1 21539:1 21549:1 21551:2 21554:1 21556:1 21563:5 21576:2 21586:1 21601:1 21610:2 21619:1 21660:2 21661:5 21675:1 21678:6 21703:1 21720:1 21728:1 21747:1 21749:1 21773:1 21779:2 21789:1 21795:2 21797:1 21803:2 21810:1 21819:4 21832:2 21835:1 21836:4 21841:1 21843:1 21853:1 21857:5 21867:20 21870:1 21887:1 21889:1 21891:1 21892:1 21894:3 21895:1 21896:27 21909:2 21922:1 21929:1 21930:6 21932:1 21934:1 21950:2 21965:1 21970:7 21991:1 21995:3 22000:1 22001:1 22002:6 22004:2 22008:1 22015:1 22029:2 22030:1 22060:2 22068:3 22075:1 22089:1 22101:3 22103:1 22128:1 22131:1 22133:1 22136:1 22144:1 22190:1 22194:1 22198:1 22224:1 22229:1 22235:1 22244:1 22262:1 22264:13 22272:1 22290:1 22308:1 22316:2 22317:2 22323:1 22340:1 22352:1 22357:1 22369:2 22375:1 22377:8 22396:1 22399:1 22404:1 22422:2 22439:1 22443:1 22444:1 22462:1 22467:1 22474:1 22476:1 22478:2 22483:1 22484:2 22485:1 22495:3 22510:1 22516:1 22534:1 22537:1 22542:4 22547:1 22556:1 22561:1 22581:3 22582:1 22590:1 22610:3 22612:1 22616:1 22623:1 22624:1 22643:2 22644:1 22651:5 22676:2 22680:1 22685:2 22687:2 22701:2 22702:1 22704:1 22707:1 22708:8 22711:1 22725:1 22737:1 22745:1 22758:1 22764:1 22771:1 22775:1 22781:1 22787:1 22800:15 22809:2 22822:2 22825:3 22844:1 22845:1 22861:1 22863:15 22881:1 22900:1 22910:1 22922:1 22924:1 22925:1 22931:1 22933:1 22945:1 22964:2 22967:1 22993:1 22999:1 23003:1 23004:1 23005:1 23024:2 23042:1 23043:5 23045:2 23056:1 23063:1 23105:2 23125:1 23153:6 23165:1 23166:4 23183:1 23185:1 23198:1 23199:1 23209:1 23242:1 23245:2 23264:3 23265:1 23307:1 23312:3 23330:1 23335:1 23341:1 23360:1 23369:1 23371:1 23374:3 23383:1 23399:1 23401:1 23407:2 23408:1 23439:1 23441:1 23446:1 23457:1 23466:1 23490:4 23501:1 23512:2 23517:1 23519:1 23521:2 23522:1 23525:1 23532:14 23540:2 23542:2 23543:1 23546:3 23547:1 23549:5 23550:1 23560:3 23569:5 23574:1 23595:6 23597:1 23605:1 23606:1 23610:1 23638:2 23639:1 23641:1 23653:2 23657:1 23673:2 23681:1 23682:1 23696:2 23705:1 23711:10 23718:1 23719:1 23722:2 23730:1 23732:1 23735:1 23738:1 23742:2 23743:1 23756:1 23765:1 23778:1 23786:1 23798:1 23802:1 23803:1 23808:1 23810:1 23822:1 23832:3 23836:1 23837:1 23839:1 23843:1 23849:1 23859:4 23871:1 23873:1 23876:1 23881:2 23882:1 23885:1 23886:1 23891:1 23892:1 23898:1 23900:1 23940:1 23944:3 23948:1 23968:1 23974:1 24003:1 24009:1 24015:2 24040:1 24049:2 24055:1 24063:2 24065:4 24070:2 24073:4 24084:6 24087:3 24094:1 24097:1 24100:1 24135:1 24143:1 24147:2 24148:1 24149:1 24154:2 24164:1 24173:1 24180:1 24181:1 24186:2 24187:1 24188:2 24195:1 24201:1 24202:1 24212:1 24216:2 24217:1 24218:9 24221:3 24240:1 24241:1 24245:1 24255:1 24266:1 24271:1 24277:1 24305:1 24308:2 24310:1 24311:2 24312:1 24320:3 24328:2 24339:1 24341:1 24344:1 24359:1 24360:5 24363:20 24375:1 24377:1 24384:2 24385:3 24391:1 24395:1 24396:1 24402:1 24408:1 24412:1 24413:4 24426:1 24427:5 24441:1 24447:1 24464:1 24472:3 24473:1 24475:3 24478:1 24482:1 24488:5 24505:1 24520:1 24542:1 24543:4 24556:2 24563:3 24567:1 24597:1 24623:1 24629:1 24640:1 24649:4 24659:2 24661:1 24662:13 24666:3 24670:2 24682:3 24683:1 24687:1 24700:4 24701:2 24702:3 24703:2 24706:1 24707:1 24712:1 24714:2 24719:2 24722:1 24732:1 24734:2 24735:1 24747:2 24752:2 24758:1 24774:2 24809:1 24824:5 24825:1 24834:1 24855:1 24858:1 24861:1 24862:2 24869:2 24872:1 24877:1 24888:1 24894:1 24904:1 24908:6 24917:1 24923:1 24926:1 24935:1 24967:1 24979:25 24980:2 24984:1 24997:1 25005:1 25018:1 25021:1 25026:2 25033:1 25047:1 25057:1 25065:1 25071:6 25074:1 25092:1 25094:2 25101:1 25103:1 25104:1 25106:1 25110:2 25121:2 25125:1 25126:1 25129:9 25137:1 25139:2 25140:1 25148:3 25156:4 25168:2 25185:1 25190:1 25194:2 25201:1 25206:1 25209:2 25218:1 25233:1 25236:1 25241:3 25243:2 25245:2 25252:1 25256:1 25270:2 25273:1 25275:1 25289:13 25303:4 25313:2 25318:4 25328:1 25331:1 25340:1 25368:1 25369:1 25384:1 25387:2 25405:1 25406:1 25423:1 25439:1 25459:1 25473:3 25480:1 25485:1 25494:1 25501:2 25503:1 25510:2 25526:1 25535:1 25539:1 25547:1 25558:1 25561:1 25579:1 25581:1 25584:1 25588:2 25595:15 25597:1 25598:2 25620:1 25630:2 25634:2 25643:1 25653:1 25655:1 25667:2 25668:1 25676:1 25683:1 25689:4 25694:1 25695:2 25697:1 25705:1 25720:1 25722:1 25732:4 25743:1 25748:1 25754:1 25755:5 25772:1 25780:1 25787:1 25788:1 25791:1 25804:1 25808:1 25828:2 25835:1 25845:1 25850:1 25853:1 25860:1 25871:2 25877:1 25890:1 25895:1 25907:1 25912:1 25928:1 25929:2 25936:2 25944:1 25954:1 26001:1 26015:1 26016:1 26017:7 26024:1 26030:1 26043:1 26044:1 26056:2 26064:1 26073:1 26075:2 26094:1 26104:1 26129:1 26133:2 26135:3 26140:1 26149:1 26157:1 26160:2 26165:1 26169:1 26174:2 26176:1 26179:4 26184:1 26187:1 26206:1 26213:1 26228:1 26230:2 26243:1 26254:4 26255:5 26264:2 26265:1 26277:6 26283:1 26287:1 26290:1 26294:1 26297:1 26308:2 26309:1 26315:1 26316:5 26319:3 26324:1 26332:1 26352:2 26359:1 26360:3 26364:1 26373:1 26380:1 26404:1 26415:6 26421:1 26424:32 26426:1 26442:1 26482:1 26498:1 26516:2 26528:1 26530:2 26532:1 26534:1 26539:1 26552:1 26589:1 26594:1 26605:3 26609:1 26612:2 26613:1 26624:1 26635:1 26636:1 26642:1 26653:1 26655:2 26676:1 26679:1 26694:1 26705:2 26721:1 26724:1 26727:1 26748:1 26751:2 26758:2 26762:1 26775:1 26779:1 26794:6 26806:2 26814:1 26818:1 26847:1 26878:1 26880:1 26897:3 26920:1 26923:1 26924:2 26929:1 26931:2 26934:1 26936:1 26938:2 26952:1 26968:2 26978:1 27003:1 27009:1 27014:1 27021:1 27022:1 27028:1 27032:2 27047:1 27070:1 27072:1 27085:1 27097:1 27102:1 27104:1 27106:1 27112:1 27114:10 27115:1 27122:1 27132:1 27133:1 27137:2 27141:3 27159:2 27170:1 27173:1 27183:1 27198:1 27225:1 27228:1 27242:1 27251:4 27262:1 27282:1 27299:1 27303:5 27321:1 27330:1 27360:2 27373:1 27377:1 27388:1 27389:1 27393:1 27397:5 27398:3 27401:1 27409:1 27419:1 27427:1 27437:2 27439:3 27447:1 27451:5 27456:2 27460:1 27488:2 27489:2 27491:1 27502:4 27512:1 27516:1 27522:2 27533:2 27552:1 27564:1 27569:1 27574:1 27575:1 27595:1 27602:4 27612:3 27618:1 27620:1 27627:1 27641:1 27642:1 27651:1 27662:1 27672:1 27673:1 27676:1 27679:1 27684:1 27685:1 27701:1 27704:1 27716:1 27727:1 27728:2 27743:2 27753:2 27757:4 27760:1 27763:1 27769:1 27778:1 27792:1 27804:1 27809:1 27813:1 27817:1 27843:1 27846:1 27847:1 27851:1 27863:1 27867:1 27872:2 27881:1 27884:1 27917:3 27933:5 27949:1 27957:1 27967:1 27970:1 27985:1 27987:1 27989:1 27997:1 28007:1 28015:2 28016:1 28021:1 28023:1 28032:7 28033:1 28043:1 28068:3 28071:2 28074:1 28094:1 28112:2 28132:1 28139:1 28145:7 28174:1 28178:1 28183:1 28194:1 28208:1 28234:1 28242:4 28253:1 28255:1 28273:11 28277:1 28288:1 28303:1 28305:1 28317:1 28318:1 28327:3 28331:7 28335:1 28340:1 28342:1 28344:1 28348:6 28354:1 28372:1 28395:1 28408:1 28414:2 28442:1 28443:1 28474:1 28485:1 28499:1 28500:1 28503:4 28506:1 28507:3 28509:8 28512:3 28518:1 28524:1 28537:1 28540:1 28557:5 28560:1 28563:2 28586:1 28591:2 28602:1 28603:1 28608:6 28609:1 28610:2 28625:2 28635:4 28641:7 28642:2 28652:3 28665:1 28666:1 28670:1 28671:1 28676:1 28680:1 28697:2 28702:3 28725:6 28728:1 28734:1 28739:2 28740:1 28753:2 28754:1 28762:1 28778:2 28791:1 28803:1 28811:4 28828:1 28834:1 28847:5 28850:1 28870:4 28872:6 28875:1 28884:1 28902:2 28913:1 28937:1 28945:3 28972:1 28981:1 28994:2 28996:1 28998:4 29029:1 29052:1 29056:1 29060:2 29063:1 29066:1 29080:1 29085:2 29088:3 29102:1 29104:1 29105:1 29109:3 29120:1 29123:1 29128:1 29146:2 29147:1 29148:1 29155:1 29156:2 29161:1 29165:1 29174:1 29189:6 29195:1 29197:1 29199:1 29205:1 29207:1 29210:1 29212:1 29215:1 29219:3 29234:1 29261:1 29272:2 29284:1 29291:2 29302:1 29316:1 29320:1 29326:1 29327:1 29332:2 29334:4 29365:24 29374:1 29409:1 29410:1 29412:1 29417:2 29439:1 29455:1 29472:2 29483:1 29491:1 29498:1 29503:1 29518:5 29519:2 29527:1 29543:1 29546:2 29558:1 29564:1 29574:2 29623:2 29637:3 29653:5 29655:2 29658:1 29660:1 29665:1 29673:1 29675:2 29676:1 29677:4 29679:11 29683:2 29685:1 29711:1 29725:1 29732:2 29759:1 29764:1 29766:1 29771:1 29781:4 29792:1 29797:1 29815:1 29821:4 29828:3 29839:1 29842:1 29850:1 29855:1 29861:2 29866:1 29867:1 29882:1 29910:4 29917:1 29923:2 29928:1 29951:2 29956:1 29964:1 29979:1 29985:3 29992:1 30023:1 30033:1 30051:1 30063:1 30079:1 30085:1 30091:1 30121:1 30123:2 30129:1 30149:1 30160:3 30163:1 30168:2 30183:2 30198:1 30205:1 30221:1 30235:1 30240:1 30294:2 30295:2 30308:4 30311:1 30315:1 30334:1 30352:1 30364:1 30367:1 30371:2 30393:2 30398:1 30399:7 30410:1 30412:1 30415:1 30418:12 30428:1 30433:1 30438:1 30450:2 30451:2 30452:1 30506:1 30514:1 30524:32 30525:1 30529:3 30531:1 30540:1 30547:1 30560:6 30585:2 30592:1 30594:1 30612:1 30633:1 30643:3 30647:3 30648:4 30651:2 30656:1 30662:1 30667:1 30668:1 30684:1 30698:2 30701:1 30703:1 30706:1 30707:1 30719:2 30721:3 30724:2 30727:2 30728:1 30738:1 30739:1 30740:1 30741:1 30743:1 30745:3 30753:1 30757:3 30760:1 30765:1 30788:2 30800:1 30816:1 30818:2 30827:1 30832:1 30845:1 30846:2 30849:1 30855:1 30876:2 30879:1 30881:1 30893:1 30895:1 30901:1 30906:3 30907:2 30916:1 30927:1 30958:2 30960:1 30978:1 30985:3 30986:2 30993:2 30997:1 30998:1 31004:1 31007:1 31021:4 31023:1 31030:2 31057:1 31080:1 31088:16 31094:1 31104:1 31120:1 31132:1 31164:1 31168:4 31176:4 31192:1 31200:2 31204:1 31207:1 31243:1 31259:1 31262:4 31268:1 31284:1 31302:2 31308:1 31309:2 31311:1 31317:1 31318:2 31349:5 31359:5 31389:1 31392:1 31394:1 31400:3 31403:1 31414:1 31418:1 31435:1 31455:2 31473:1 31476:1 31477:1 31489:4 31493:1 31498:1 31502:1 31514:1 31526:3 31529:2 31541:1 31544:31 31545:2 31546:2 31548:1 31549:3 31552:4 31555:1 31556:1 31566:1 31586:1 31587:13 31597:1 31602:1 31603:1 31613:2 31644:1 31645:1 31646:1 31651:2 31661:1 31662:2 31669:1 31673:3 31681:1 31691:1 31697:1 31702:7 31713:5 31718:1 31719:2 31743:1 31754:4 31758:1 31759:2 31763:1 31766:1 31784:2 31786:2 31797:1 31801:1 31802:1 31806:1 31824:1 31829:1 31834:1 31849:1 31854:1 31863:2 31866:1 31900:2 31901:2 31909:1 31919:1 31932:1 31943:1 31944:1 31951:1 31953:1 31957:2 31959:1 31964:4 31969:3 31971:1 31976:1 31989:1 31990:1 31994:2 32000:1 32012:1 32028:12 32032:1 32033:1 32034:3 32039:4 32041:1 32083:1 32106:1 32107:1 32110:4 32115:10 32118:2 32119:1 32123:1 32125:1 32126:1 32142:2 32146:2 32147:3 32158:1 32161:1 32163:1 32175:2 32178:2 32179:1 32186:1 32214:3 32225:1 32241:1 32257:1 32263:3 32269:1 32272:1 32275:2 32279:3 32280:1 32299:1 32303:2 32306:1 32307:2 32310:5 32314:1 32316:1 32318:1 32321:5 32330:1 32342:2 32363:1 32374:1 32381:1 32414:1 32429:1 32439:2 32445:1 32471:3 32473:2 32488:1 32505:4 32510:1 32522:1 32539:2 32543:1 32547:1 32559:1 32582:1 32590:3 32596:1 32605:3 32617:1 32628:1 32642:1 32644:1 32662:1 32676:3 32681:1 32684:1 32686:1 32688:1 32701:1 32713:2 32727:1 32732:1 32733:8 32735:1 32740:2 32755:2 32781:1 32785:3 32787:2 32806:1 32811:1 32821:5 32831:2 32835:1 32861:1 32891:2 32894:1 32895:1 32897:1 32898:1 32902:1 32903:1 32905:6 32910:1 32921:1 32950:1 32957:2 32966:1 32971:1 32972:1 32973:2 32977:1 33021:1 33035:1 33038:1
|
08250e6687d012e542ffc48b504fa064b4b22b93 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.4/macros/percent/%s_v_p.sci | 828217aa1131aa29a87e7f4673e69bfff02b8d1f | [
"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 | 61 | sci | %s_v_p.sci | function h=%s_v_p(s,p)
//!
// Copyright INRIA
h=s/(1+s*p)
|
0393908501505bb471368dd251f15c181a45f714 | 21f228fefe3b4062d03172eb3a7a4857a443a8a3 | /norma.sci | 4e1a1e9868b6789e1ae8b94c16bf1f6f3e6406c4 | [] | no_license | mppinedav/prueba | 263e7e82576773e448ed69cd1a741b14608d390b | 53a630ce2340e5efb3d3705fec6dfb7cf74ea861 | refs/heads/master | 2021-01-17T15:16:05.369062 | 2016-05-05T18:58:09 | 2016-05-05T18:58:09 | 42,672,584 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 161 | sci | norma.sci | function S=norma(A,p);
[f,c]= size(A);
S=0
for i=1:f
for j=1:c
S=S+abs(A(i,j))^(p)
end
end
S=S^(1/p)
endfunction
|
9a4b6389241fdcf5c54dcad31f221c1531b26d5a | d9361899121113cb290a6dac6f988fd5b829b917 | /SistemasLinealesIterativos-5.sci | 586abe5d849e6a464810bfe1b8cc8b66206e082b | [] | no_license | AgustinGurvich/MetodosScilab | 139243d925fe8b7381551d6c65b59f14b2d4069b | 7fe62e9948160cf3fa9aa5844023307678bb79aa | refs/heads/master | 2022-04-11T13:54:44.337939 | 2019-11-29T02:59:07 | 2019-11-29T02:59:07 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 9,101 | sci | SistemasLinealesIterativos-5.sci | //Metodo de Jacobi iterativo
//Recibe la matriz del sistema, el vector solucion, una aproximacion de la solucion y una tolerancia
function y = jacobiItera(A,b,x,eps)
[nA,mA] = size(A)
I = eye(nA,mA)
for k=1:nA-1
[v,i]=max(abs(A(k:nA,k)))
kpivot = k-1+i
temp = A(kpivot,:); A(kpivot,:) = A(k,:); A(k,:) = temp
temp = b(kpivot,:); b(kpivot,:) = b(k,:); b(k,:) = temp
end
N = diag(diag(A))
inversaN = inversa(N)
Norma = I-inversaN*A
n(1) = norm(Norma, 1)
n(2) = norm(Norma, 'inf')
n(3) = norm(Norma, 'fro')
n(4) = norm(Norma)
if min(n) >= 1 then
if max(abs(spec(Norma))) > = 1 then
disp("La solucion no converge para todo punto inicial")
y = %nan
abort
end
end
y = x //Primera iteracion
for i = 1:nA
x(i) = b(i)
suma = 0
for j = 1:nA
if j <> i then
suma = suma + A(i,j)*y(j)
end
end
x(i) = (x(i) - suma)/ A(i,i)
end
while(norm(x-y) > eps) //Comienzo el bucle
y = x
for i = 1:nA
x(i) = b(i)
suma = 0
for j = 1:nA
if j <> i then
suma = suma + A(i,j)*y(j)
end
end
x(i) = (x(i) - suma)/ A(i,i)
end
end
y = x
endfunction
//Metodo de Jacobi matricial
//Recibe la matriz del sistema, el vector solucion, una aproximacion de la solucion y una tolerancia
//La matriz N es la matriz diagonal formada por la diagonal de A
function y = jacobiMat(A,b,x,eps)
[nA,mA] = size(A)
I = eye(nA,mA)
for k=1:nA-1
[v,i]=max(abs(A(k:nA,k)))
kpivot = k-1+i
temp = A(kpivot,:); A(kpivot,:) = A(k,:); A(k,:) = temp
temp = b(kpivot,:); b(kpivot,:) = b(k,:); b(k,:) = temp
end
N = diag(diag(A))
inversaN = inversa(N)
Norma = I-inversaN*A
n(1) = norm(Norma, 1)
n(2) = norm(Norma, 'inf')
n(3) = norm(Norma, 'fro')
n(4) = norm(Norma)
if min(n) >= 1 then
if max(abs(spec(Norma))) > = 1
disp("La solucion no converge para todo punto inicial")
y = %nan
abort
end
end
y = Norma*x+inversaN*b //Hago la primer iteracion con la matriz del metodo para comparar
while(norm(y-x) > eps) then //Actualizo el vector solucion
x = y
y = Norma*x+inversaN*b
end
endfunction
//Metodo de Gauss Seidel iterativo
//Recibe la matriz del sistema, el vector solucion, una aproximacion de la solucion y una tolerancia
function y = gauseidelItera(A,b,x,eps)
[nA,mA] = size(A)
if diagonalDominante(A) == 0 then
I = eye(nA,mA)
for k=1:nA-1
[v,i]=max(abs(A(k:nA,k)))
kpivot = k-1+i
temp = A(kpivot,:); A(kpivot,:) = A(k,:); A(k,:) = temp
temp = b(kpivot,:); b(kpivot,:) = b(k,:); b(k,:) = temp
end
N = A
for i = 1:nA-1
for j = i+1:nA
N(i,j) = 0
end
end
inversaN = inversa(N)
Norma = I-inversaN*A
n(1) = norm(Norma, 1)
n(2) = norm(Norma, 'inf')
n(3) = norm(Norma, 'fro')
n(4) = norm(Norma)
if min(n) >= 1 then
if max(abs(spec(Norma))) > = 1
disp("La solucion no converge para todo punto inicial")
y = %nan
abort
end
end
end
y = x
for i = 1:nA //Primera iteracion
x(i) = b(i)
suma = 0
for j = 1:nA
if j <> i then
suma = suma + A(i,j)*x(j)
end
end
x(i) = (x(i) - suma)/ A(i,i)
end
while(norm(x-y) > eps) //Comienzo el bucle
y = x
for i = 1:nA
x(i) = b(i)
suma = 0
for j = 1:nA
if j <> i then
suma = suma + A(i,j)*x(j)
end
end
x(i) = (x(i) - suma)/ A(i,i)
end
end
y=x
endfunction
//Metodo de Gauss Seidel matricial
//Recibe la matriz del sistema, el vector solucion, una aproximacion de la solucion y una tolerancia
//La matriz N es la triangular inferior de A
function y = gauseidelMat(A,b,x,eps)
[nA,mA] = size(A)
if diagonalDominante(A) == 0 then
I = eye(nA,mA)
for k=1:nA-1
[v,i]=max(abs(A(k:nA,k)))
kpivot = k-1+i
temp = A(kpivot,:); A(kpivot,:) = A(k,:); A(k,:) = temp
temp = b(kpivot,:); b(kpivot,:) = b(k,:); b(k,:) = temp
end
N = A
for i = 1:nA-1
for j = i+1:nA
N(i,j) = 0
end
end
inversaN = inversa(N)
Norma = I-inversaN*A
n(1) = norm(Norma, 1)
n(2) = norm(Norma, 'inf')
n(3) = norm(Norma, 'fro')
n(4) = norm(Norma)
if min(n) >= 1 then
if max(abs(spec(Norma))) > = 1
disp("La solucion no converge para todo punto inicial")
y = %nan
abort
end
end
end
y = Norma*x+inversaN*b //Hago la primer iteracion con la matriz del metodo para comparar
while(norm(y-x) > eps) then //Actualizo el vector solucion
x = y
y = Norma*x+inversaN*b
end
endfunction
//Chequea si una matriz es diagonal dominante
function x = diagonalDominante(A)
[nA,mA] = size(A)
for i = 1:nA
suma = 0
for j = 1:mA
if j <> i then
suma = suma + abs(A(i,j))
end
end
if suma >= abs(A(i,i))
x = 0
return
end
end
x = 1
endfunction
//Calcula la inversa de la matriz A, usando eliminacion gaussiana
function x = inversa(A)
[nA,mA] = size(A)
if nA<>mA then
error('La matriz A debe ser cuadrada')
abort
end
i = eye(nA,nA)
x = gausselim(A,i)
endfunction
// Esta función obtiene la solución del sistema de ecuaciones lineales A*x=b,
// dadas las matrices de coeficientes A y b.
// La función implementa el método de Eliminación Gaussiana sin pivoteo.
function [x,a] = gausselim(A,b)
[nA,mA] = size(A)
[nb,mb] = size(b)
if nA<>mA then
error('gausselim - La matriz A debe ser cuadrada')
abort
elseif mA<>nb then
error('gausselim - dimensiones incompatibles entre A y b')
abort
end
a = [A b] // Matriz aumentada
// Eliminación progresiva
for i = 1:(nA-1)
for j = (i+1):nA
mjk = a(j,i)/a(i,i)
a(j,i)=0
a(j,(i+1):(nA+mb)) = a(j,(i+1):(nA+mb)) - mjk*a(i,(i+1):(nA+mb))
end
end
for k = 1: mb
x(nA,k) = a(nA,nA+k)/a(nA,nA)
for i = (nA-1):-1:1
suma = 0
for j = i+1:nA
suma = suma + a(i,j)*x(j,k)
end
x(i,k) = (a(i,nA+k) - suma) / a(i,i)
end
end
endfunction
// Metodo de sobrerelajacion general
// Recibe la matriz del sistema, el vector solucion, una aproximacion de la solucion,
// un factor de escala y una tolerancia
function y = sobrerelajacion(A,b,x,w,eps)
[n,m] = size(x) // x vector vertical
y = x
for i = 1:n
suma = 0
for j = 1:n
if j <> i then
suma = suma + A(i,j)*x(j)
end
end
x(i) = (1-w)*x(i) + (w * (b(i) - suma)) / A(i,i)
end
while(norm(x-y) > eps) //Comienzo el bucle
y = x
for i = 1:n
suma = 0
for j = 1:n
if j <> i then
suma = suma + A(i,j)*x(j)
end
end
x(i) = (1-w)*x(i) + (w * (b(i) - suma)) / A(i,i)
end
end
y = x
endfunction
// Metodo de sobrerelajacion para sistemas tridiagonales
// Recibe la matriz del sistema, el vector solucion, una aproximacion de la solucion y una tolerancia
// Calcula el factor de escala en base a la norma espectral de la matriz A
function y = sobrerelajacionTri(A,b,x,eps)
normaEspectral = max(abs(spec(A)))
w = 2 / (1 + sqrt(1 - normaEspectral^2)) // w optimo para tridiagonal
[n,m] = size(x) // x vector vertical
y = x
for i = 1:n
suma = 0
for j = i-1:i+1
if i >= 1 & i <= n & j <> i then
suma = suma + A(i,j)*x(j)
end
end
x(i) = (1-w)*x(i) + (w * (b(i) - suma)) / A(i,i)
end
while(norm(x-y) > eps) //Comienzo el bucle
y = x
for i = 1:n
suma = 0
for j = i-1:i+1
if i >= 1 & i <= n & j <> i then
suma = suma + A(i,j)*x(j)
end
end
x(i) = (1-w)*x(i) + (w * (b(i) - suma)) / A(i,i)
end
end
y = x
endfunction
|
fbfa85d9d9fa9fa49ee8368dec54875f9dfd4300 | 449d555969bfd7befe906877abab098c6e63a0e8 | /172/CH8/EX8.4/ex4.sce | 9399182cc2fcc099bb0e23b2075d8112ef3c8a59 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,155 | sce | ex4.sce | //example 4
//entropy change with different assumptions
clear
clc
T1=300 //initial temperature in kelvins
T2=1500 //final temperature in kelvins
P1=200 //initial pressure in kPa
P2=150 //final pressure in kPa
R=0.2598 // in kJ/kg-K
Cp=0.922 //specific heat in kJ/kg-K at constant pressure
dsT2=8.0649 //in kJ/kg-K
dsT1=6.4168 //in kJ/kg-K
dS1=dsT2-dsT1-R*log(P2/P1) //entropy change calculated using ideal gas tables
dS2=integrate('0.88/x-0.0001+0.54*x-0.33*x^2','x',0.3,1.5)-R*log(P2/P1) //entropy change calculated using empirical equation
dS3=Cp*log(T2/T1)-R*log(P2/P1) //entropy change assuming constant specific heat in kJ/kg-K
dS4=1.0767*log(T2/T1)+0.0747 //entropy change assuming specific heat is constant at its value at 990K
printf("\n hence,change in entropy using ideal gas tables is dS1=%.4f kJ/kg-K.\n",dS1)
printf("\n hence,change in entropy using empirical equation is dS2=%.4f kJ/kg-K.\n",dS2)
printf("\n hence,change in entropy using the value of specific heat at 300K is dS3=%.4f kJ/kg-K.\n",dS3)
printf("\n hence,change in entropy assuming specific heat is constant at its value at 900K is dS4=%.4f kJ/kg-K.\n",dS4) |
b362a575ff454925f784175d4981548e9726700c | 449d555969bfd7befe906877abab098c6e63a0e8 | /479/CH2/EX2.9/Example_2_9.sce | 45519a7c297b0cf4577b74dbcb83201e202babc9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 2,848 | sce | Example_2_9.sce | //Chemical Engineering Thermodynamics
//Chapter 2
//P-V-T Relations
//Example 2.9
clear;
clc;
//Given
N1 = 0.7;//Kg mole of CH4
N2 = 0.3;//Kg mole of N2
R = 0.08206;//Gas constant
T = 323;//Temperature in Kelvin
V = 0.04;//Volume in m^3
a1 = 2.280; b1 = 0.0428;//Vanderwaals constants for CH4
a2 = 1.345;b2 = 0.0386;//Vanderwaals constants for N2
Tc1 = 191; Pc1 = 45.8;//Critical temperature in K and pressure of CH4 in atm
Tc2 = 126;Pc2 = 33.5;//Critical temperature in K and pressure of N2 in atm
//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
//To calculate the pressure exerted by the gas mixture
//(i)Using ideal gas law
P = (N1+N2)*((R*T)/V);
mprintf('(i) Pressure exerted by the gas mixture using ideal gas law is %d atm',P);
//(ii)Using Vander waal equation
P1 = ((N1*R*T)/(V-(N1*b1)))-((a1*(N1^2))/(V^2));//Partial pressure of CH4
P2 = ((N2*R*T)/(V-(N2*b2)))-((a2*(N2^2))/(V^2));//Partial pressure of N2
Pt = P1+P2;
mprintf('\n(ii) Pressure exerted by the gas mixture using Vander waal equation is %f atm', Pt);
//(iii)Using Zchart and Dalton's law
Tra = T/Tc1;//reduced temperature of CH4
Trb = T/Tc2;//reduced temperature of N2
//Asssume the pressure
P = [660 732 793 815 831];
for i = 1:5
Pa(i) = N1*P(i);// partial pressure of CH4 for the ith total pressure
Pb(i) = N2*P(i);// partial pressure of N2 for the ith total pressure
Pra(i) = Pa(i)/Pc1;//reduced pressure of CH4 for the ith total pressure
Prb(i) = Pb(i)/Pc2;//reduced pressure of N2 for the ith total pressure
end
//For the above Pr and Tr values compressibility factors from the figure A.2.3 are given as
Za = [1.154 1.280 1.331 1.370 1.390];//Z values of CH4
Zb = [1 1 1 1 1];//Z values of N2
V3 = 0.0421;
for i = 1:5
Pa(i) = Za(i)*N1*((R*T)/V);//partial pressure of CH4 coressponding to the ith total presure
Pb(i) = Zb(i)*N2*((R*T)/V);//partial pressure of N2 coressponding to the ith total pressure
Pt(i) = Pa(i)+Pb(i);//total pressure of the gas mixture
if Pt(i)-P(i) < 15
mprintf('\n(iii) pressure exerted by the gas mixture using Z chart and Dalton Law is %d atm',Pt(i));
else
end
end
//(iv)Using Amagat's law and Z chart
P = [1000 1200 1500 1700];
for i=1:4
Pra(i) = P(i)/Pc1;
Prb(i) = P(i)/Pc2;
end
//For the above Pr and Tr values compressibility factors from the figure A.2.3 are given as
Za = [1.87 2.14 2.52 2.77];
Zb = [1.80 2.10 2.37 2.54];
for i = 1:4
Va(i) = approx((N1*Za(i)*((R*T)/P(i))),4);
Vb(i) = approx((N2*Zb(i)*((R*T)/P(i))),4);
V1(i) = approx((Va(i)+Vb(i)),4);
if V1(i)-V <= 0.003
mprintf('\n(iv) Pressure exerted by the gas mixture using Amagat law and Zchart is %d atm ',P(i));
else
end
end
//end
|
13e23501f24a257f805064520f1151cd265defcd | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.5/Unix-Windows/scilab-2.5/tests/examples/%k.man.tst | dd5237cf7e0e8b9a903fc38dea07f970db55aafd | [
"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 | 39 | tst | %k.man.tst | clear;lines(0);
m=0.4;
%asn(1,m)
%k(m)
|
f4257fd4e241bd5a8eb6d007a8a25ca5ac180d64 | 717ddeb7e700373742c617a95e25a2376565112c | /1766/CH2/EX2.33/EX2_33.sce | 76724be0b5352994349cedbac0555b1348bdec47 | [] | no_license | appucrossroads/Scilab-TBC-Uploads | b7ce9a8665d6253926fa8cc0989cda3c0db8e63d | 1d1c6f68fe7afb15ea12fd38492ec171491f8ce7 | refs/heads/master | 2021-01-22T04:15:15.512674 | 2017-09-19T11:51:56 | 2017-09-19T11:51:56 | 92,444,732 | 0 | 0 | null | 2017-05-25T21:09:20 | 2017-05-25T21:09:19 | null | UTF-8 | Scilab | false | false | 426 | sce | EX2_33.sce | clc;funcprot(0);//Example 2.33
//Initilisation of Variables
R=10^-3;....//radius of solid sphere in m
qg=2*10^9;....//heat genarated by elecric currentin wire at constant rate in W/m^2
K=25;....//thermal conductivity of solid sphere in W/m*degrees celcius
//calculations
T=(qg*R^2)/(4*K);......//increase in center line temparature in degrees celcius
disp(T,"increase in center line temparature in degrees celcius")
|
92fdb421834dffa38951d06e1c9b6b2e6079b861 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1938/CH6/EX6.26/6_26.sce | 622f3e19e84b46cc2460df1e05820dcbb4bde1a2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 825 | sce | 6_26.sce | clc,clear
printf('Example 6.26\n\n')
X_d=0.8,X_q=0.5,R_a=0.02 //armature resistance and synchronous reactance of direct,quadrature axis
//case(i) lag
phi=acos(0.8)
V_t=1
I_a=1//full-load
psi=atan( (V_t*sin(phi)+I_a*X_q)/(V_t*cos(phi)+I_a*R_a) )
delta=psi-phi
I_d=I_a*sin(psi)
I_q=I_a*cos(psi)
E_f=V_t*cos(delta)+I_d*X_d+I_q*R_a
regulation=100*(E_f-V_t)/V_t
printf('percentage regulation at 0.8 pf lag is %.2f percent',regulation)
//case(ii) lead
phi2=-1*acos(0.8) //minus sign because of leading pf
psi2=atan( (V_t*sin(phi2)+I_a*X_q)/(V_t*cos(phi2)+I_a*R_a) )
delta2=psi2-phi2
I_d2=I_a*sin(psi2)
I_q2=I_a*cos(psi2)
E_f2=V_t*cos(delta2)+I_d2*X_d+I_q2*R_a
regulation2=100*(E_f2-V_t)/V_t
printf('\npercentage regulation at 0.8 pf lead is %.2f percent',regulation2)
|
913157ead6141272f19ed1282518537e3412c241 | 0236c44bb28c99f3d8ac65f248a9d9dae4988ac3 | /ZFP/example/testfiles/h5ex_d_zfp.tst | 6bc537f8d180ddfea1bbf6a90d51d69727dd1d24 | [
"BSD-3-Clause",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | hyoklee/hdf5_plugins | b0b7dbccc45eb50de933e5e068ed6284e5a21a08 | 387b0c3a5fbeeda1b0a0ddbd98eb7ad44fac6516 | refs/heads/master | 2023-04-02T18:12:39.068721 | 2021-04-13T02:33:45 | 2021-04-13T02:33:45 | 322,502,977 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 576 | tst | h5ex_d_zfp.tst | zfp filter is available for encoding and decoding.
....Create dataset ................
....Writing zfp compressed data ................
....Close the file and reopen for reading ........
Filter info is available from the dataset creation property
Filter identifier is 32013
Number of parameters is 6 with the value 5570688
To find more about the filter check H5Z-ZFP-0.8.0 (ZFP-0.5.5) github.com/LLNL/H5Z-ZFP
....Reading zfp compressed data ................
Maximum value in DS1 is 1890.0000
zfp filter is available now since H5Dread triggered loading of the filter.
|
63976bb707948ca5c58d7009af6eef3bae3d4ed2 | be2d2a8f4f52eaee8321843e3982b31822f8eb00 | /rzut_ukosny.sce | 3fc1c5a6183e694442d22d14b08eedd31060813d | [] | no_license | betacord/SK | dbe99f8e767a225fffac30935084d001a12facbb | 8ac1f424f85f595285db0f2f47f8a0fb3afa4033 | refs/heads/master | 2020-03-31T21:35:18.805098 | 2018-12-13T13:16:13 | 2018-12-13T13:16:13 | 152,585,930 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 813 | sce | rzut_ukosny.sce | // model rzutu ukosnego: grawitacja, opor powietrza
// parametry
rho = 1.2;
cx = 0.47;
m = 0.056;
R = 0.0343;
S = %pi * R ^ 2;
g = 9.814;
t = [0:0.01:20];
x0 = 0;
y0 = 0;
V0 = 20;
alpha = 45 * %pi / 180;
Vx0 = V0 * cos(alpha);
Vy0 = V0 * sin(alpha);
N0 = [x0;Vx0;y0;Vy0];
// model
function Ndotdot = projectile(t, N)
A = -0.5 * cx * rho * S;
Ndotdot = [N(2);
A * N(2) * abs(N(2)) / m;
N(4);
(-m * g + A * N(4) * abs(N(4))) / m];
endfunction
// rozwiazanie
N = ode(N0, t(1), t, projectile);
// wykres
subplot(131);
plot(N(1, :), N(3, :));
xtitle('Trajektoria ciała', 'x[m]', 'y[m]');
subplot(132);
plot(t, N(2, :));
xtitle('Prędkość pozioma', 't[s]', 'Vx[m/s]');
subplot(133);
plot(t, N(4, :));
xtitle('prędkośc pionowa ciała', 't[s]', 'Vy[m/s]');
|
dea452e1d15efa0a2eac1ffa055974635a4d19a7 | 12aef4b6d7fc5fa64cb0b1e66239f47b59303f79 | /scilab/tic.sce | a24c9b04b400cdd0ad342bd6304a58ad63711c97 | [] | no_license | NatalyaSidun/test-parallel-pde | 29272b30ca234a97ed5694905dd8b2c1bfaf4421 | 47fb07616eeae22f2fccae6cabc9c437eb43ff21 | refs/heads/master | 2021-01-22T02:34:48.717723 | 2012-12-03T10:14:29 | 2012-12-03T10:14:29 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 96 | sce | tic.sce | start = tic();
realtimeinit(1);
realtime(0);
realtime(10);
fin = toc();
mprintf('%.3f\n' , fin); |
6e67b8636906adc5ff51f89115a2d7dd83c0f18d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1553/CH10/EX10.23/10Ex23.sce | 0bd1df494b941817c79a705fd8620de259b8f08f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 10Ex23.sce | //chapter 10 Ex 23
clc;
clear;
close;
numInc=15/100; denDec=8/100;
frac=15/16;
original= frac/((1+numInc)/(1-denDec));
mprintf("The original fraction is: %.2f",original);
|
83cbfb4d1c67fdfcca1abcaa2b318e770eb4c6cd | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/BI1.prev.tst | fcde2725b97c2b35bd7b64834282c18ede8a7675 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | gfis/ramath | 498adfc7a6d353d4775b33020fdf992628e3fbff | b09b48639ddd4709ffb1c729e33f6a4b9ef676b5 | refs/heads/master | 2023-08-17T00:10:37.092379 | 2023-08-04T07:48:00 | 2023-08-04T07:48:00 | 30,116,803 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 94 | tst | BI1.prev.tst | gcd(24,27) = 3
lcm(24,27) = 216
binomial(133,71) = 555687036928510235891585199545206017600
|
641832d3737efc117d0d097e88317a6984d40fbc | 449d555969bfd7befe906877abab098c6e63a0e8 | /3636/CH4/EX4.2/Ex4_2.sce | 9dbeef87b4b335820db772e340f50a48980dcb02 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 311 | sce | Ex4_2.sce | clc;
clear;
del_n0=10^16 //concentration of electrons in cm^-3
tau_n0=5 //excess carrier lifetime in s
tau_n01=5*10^-6 //excess carrier lifetime in micro-s
t=5 //in micro-s
//Calculation
del_nt=del_n0*exp(-t/tau_n0) //in cm^-3
Rn1=del_nt/tau_n01
mprintf("Recombination rate= %.1e cm^-3 s^-1",Rn1)
|
0d82ed47cfb855c9526f950d0bc6e58873a75074 | d465fcea94a1198464d7f8a912244e8a6dcf41f9 | /system/kiks_load.sci | 27154681d97e3952b2287057d784e303c042e953 | [] | no_license | manasdas17/kiks-scilab | 4f4064ed7619cad9e2117a6c0040a51056c938ee | 37dc68914547c9d0f423008d44e973ba296de67b | refs/heads/master | 2021-01-15T14:18:21.918789 | 2009-05-11T05:43:11 | 2009-05-11T05:43:11 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 391 | sci | kiks_load.sci | function [] = kiks_load()
// Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
// !! L.3: Matlab function uigetfile not yet converted, original calling sequence used
[filename,pathname] = uigetfile(makecell([2,1],"*.kad","*.tif"),"Load arena");
if max(size(mtlb_double(filename)))>1 then
arena = [pathname,filename];
kiks_arena(arena);
end;
endfunction
|
4aa12b164babd4beb7aae7c1a73040c1ac959c35 | 449d555969bfd7befe906877abab098c6e63a0e8 | /405/CH4/EX4.3/4_3.sce | ed14991182ed6ffe2fe9bd75cfbe780d84125b33 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,064 | sce | 4_3.sce | clear;
clc;
printf("\t\t\tExample Number 4.3\n\n\n");
// pulsed energy at surface of semi-infinite solid
// illustration4.3
// solution
rho = 7800;// [kg/cubic meter] density of slab
c = 460;// [J/kg degree celsius] constant
alpha = 0.44*10^(-5);// [square meter/s] constant
Ts = 40;// [degree celsius] initial temperature of of slab
x = 0.0;// [m] depth at which temperature is calculated
t = 2;// [s] time after which temperature is calculated
// this problem is a direct application of equation (4-13b)
// we have
Qo_by_A = 10^(7);// [J/square meter] heat flux
To = Ts+(Qo_by_A/(rho*c*(%pi*alpha*t)^(1/2)))*exp(-x^(2)/(4*alpha*t));// [degree celsius] surface temperature at x = 0
printf("surface temperature at x = 0 and at t = 2 second is %f degree celsius",To);
x = 0.002;// [m] depth at which temperature is calculated
T = Ts+(Qo_by_A/(rho*c*(%pi*alpha*t)^(1/2)))*exp(-x^(2)/(4*alpha*t));// [degree celsius] temperature at depth x = 0.002
printf("\n temperature at depth 0.002 m and after 2 second is %f degree celsius",T);
|
495db2995af93945c47abcfbd3fef2d0db508cd1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2126/CH7/EX7.13/13.sce | 926a51a3306da2df18cd30834518699de4c2ec38 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 865 | sce | 13.sce | clc
clear
//input data
s=0.2105 //effective jet speed ratio
Is=203.88 //specific impulse in sec
tp=8 //rocket operation duration i.e. burn out time in sec
g=9.81 //acceleration due to kravity in m/s^2
//calculation
Cj=g*Is //average effective jet velocity in m/s
up=s*Cj //maximum flight speed in m/s
MR=1/exp((up+(g*tp))/Cj) //mass ratio
PMF=1-MR //propellant mass fraction
Zp=(((1+((1-(1/PMF))*log(1/MR)))*Cj*tp)-(0.5*g*tp^2))*10^-3 //powered altitude gain in km
Zc=((0.5*up^2)/g)*10^-3 //coasting altitude gain in km
Z=Zp+Zc //maximum altitude in km
//output
printf('(A)effective jet velocity is %3i m/s\n (B)mass ratio and propellent mass fraction are %3.2f and %3.2f respectively\n (C)maximum flight speed is %3.2f m/s\n (D))altitude gains during powered and coasting flights are %3.3f km and %3.3f km respectively',Cj,MR,PMF,up,Zp,Zc)
|
dca535b56b5632b2cdecf2d031976523f005b8d9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2990/CH6/EX6.12/Ex6_12.sce | d39b9430ef894db732efc11a96265abf8d0035b0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 924 | sce | Ex6_12.sce |
clc; funcprot(0);
// Initialization of Variable
//Part A page 310
f=0.1524;//focal length
S=1.0/10000;//scale
pw=0.3;//side lap
w=0.23;//format width
pl=0.6;
l=0.23;
//calculation
W=(1-pw)/S*w;
H=f/S+300;
disp(H,"height over datum in m");
N2=30/W+1;
N2=round(N2)
disp(N2-1,"no. of flight strips");
L=(1-pl)*1/S*l/1000;
disp(L,"length of each photograph cover in km");
T=3600*L/240.0;
disp(round(T),"exposure time in s");
Ad=T*240e3/60.0/60.0;//adjusted ground distance
N1=40.0e3/Ad+1;
N1=round(N1)
N=N1*N2;
disp(N,"no. of photographs taken");
//Part b page 317
t=3.0/180*%pi;
ya=82.25;
xa=-62.45;
s=220;
f=152.4;//focal length
H=2500.0e3;
h=500.0e3;
//calculation
theta=s-180;
ya_dash=xa*sin(theta*%pi/180)+ya*cos(theta*%pi/180)+f*tan(t)
S=(f/cos(t)-ya_dash*sin(t))/(H-h);
disp(round(1/S),"scale of photograph in 1 in")
disp("answer varies slightly due to round off error")
clear()
|
8b565c6743de0e76aa1ab64a8b35e354b96c0d23 | 449d555969bfd7befe906877abab098c6e63a0e8 | /770/CH1/EX1.11/1_11.sce | 5cf8010790d2e6a31e844e4ae8e1794650e73b55 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 727 | sce | 1_11.sce | clear;
clc;
//Example - 1.11
//Page number - 29
printf("Example - 1.11 and Page number - 29\n\n");
//Given
M_O2 = 31.999;//molecular weight of oxygen
M_N2 = 28.014;//molecular weight of nitrogen
Y = 1.4;//molar heat capacities ratio for air
//Molecular weight of air(21 vol% O2 and 79 vol% N2)is given by
M_air = (0.21*M_O2)+(0.79*M_N2);//(vol% = mol%)
R = 8.314;//[J/mol*K] - Universal gas constant
R = (R*1/M_air);//[kJ/kg*K]
printf(" The value of universal gas constant (R) = %f kJ/kg-K \n",R);
//Y=Cp0/Cv0 and Cp0-Cv0=R
Cv_0 = R/(Y-1);//[kJ/kg*K]
Cp_0 = Y*Cv_0;//[kJ/kg*K]
printf(" The value of Cp_0 for air is %f kJ/kg-K\n',Cp_0);
printf(" The value of Cv_0 for air is %f kJ/kg-K',Cv_0);
|
692df4caa57962d9d7ba201cad5341ac243ea133 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1076/CH5/EX5.3/5_3.sce | b18e0ab3f840796b0dc9b136f49fe8c311475183 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 323 | sce | 5_3.sce | clear;
clc;
l=300;
h1=80;
h2=50;
w=8.28;
T=19620;
//(a)
lc=l+ (2*T * (h1-h2)/(w*l));
dOC=(lc/2)-l;
hOC=w*dOC*dOC/(2*T);
dOP=dOC + (l/2);
hOP=w*dOP*dOP/(2*T);
hPC=hOP-hOC;
hP=hPC+ h2;
mprintf("\nHeight of mid point P above C =%.3f m",hPC);
mprintf("\nHeight of mid point P above water level =%.3f m",hP);
|
05e09ee49fb673d4bd337c53f93499c552048bca | e4381b32d21150427f93b058541bb3343752bb0f | /sablona_A3/vystrizky_A3/pripoj_se.sce | f66448120a131fcabf54dc569cf40290f5f6acde | [] | no_license | pirati-cz/plisty | c095da00bfa89792f8eb676fd5b756fc1454659d | 815dbc58f7a47f1b2740ffa068a2ff5f909ecba8 | refs/heads/master | 2020-12-24T19:04:07.572707 | 2016-05-16T20:52:51 | 2016-05-16T20:52:51 | 58,966,482 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 38,394 | sce | pripoj_se.sce | <SCRIBUSELEMUTF8 W="184.99002332" H="184.246945970001" previewData="iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAOxAAADsQBlSsOGwAACFtJREFUaIHtmXlsXNUVh7/nWe0Zj7eZ8TLeQhIvWXBDGighOMUI2kILlHRJW6A0BQQB0ZZKBSQoVSuEFFoqqFREIa2oVAFFJJCyBoU0BJwmBG/Z7Qx27Hj3eBnP8vbXPwaiMR5vL3Gapv3+mffunHvn/Obec8995wntfS8Z/Jfz8AObN6b9p504U5w3QqzJN5qmMzoyjtVmnco+JYqsJi4EsE3TV1XUOY89FQ6HDafTfup+wqixqIgkKeR5s6YdZHQkwrYt9eR5Paytq+GJJ7YiiyqLK4tYt76WrGx3yn5PP/kaG+68BofDdtpCerqHKAp4UwuZLaGhMV575UMqKktoD/bi92fj9XlQFI3Wo93s33uMaFTkpluv5EBzB40ft/G9m+uw261IoozDYeO9dxs5driT9TfX8fxz27lgYQHXrbvMtDDTMTI6EqGt9SRLlpez5e+7sVqtvL/zAJ0dfTTub0MSFbZtrWfTb17A43Hx/LPvsGN7E/GYhCjKbH76TQLFXrZtqae5McjvN73C2Gjk7Avx+bN58dWHqbtqBQDr1tdOFHm0i0DAh91ho+njNrz+7FPfS6LMmrXLefmFXWRnu4nHJL75nTVkuJymhZhaWkUBLw/9+iasNgsAjz91JwA/u/9bjI6M4/VncdvGa1mxchGra5cSbOvB6bTz+qv1eP3ZpKUJrL58Cbf8+GpcbicLFxfhcjun3ShmQkhOiOPhGOPjsQlBNFcG+kdoPXKSNV9ePqF9cGCMeEyitNxveuxkkoP94Qc2bzwze2ES/vwc/Pk5k9p9/ul3wtPlvEmI/xdyrmFKiKKofLTnKH29w6iKeqr9Xx8eRkm6n44jhzs50d7Pyc5BMy5MwlSwj41GicdlPt7XSmV1CQeb26lcUkpX5yAFRbnk5LjZvesAlVWl9HaHqK27kG1bPiQ310NxqY/jbd2ois5FqxZz5OAJdmxvIDMzg+rlZVQvKTUlxNSM6LqBLMssWFhAPC4jSTL9fcNULymlv2ckYaPpyJKCqmkAuDPTsdmsdJ0YQBRlvD4PoaEwAFXVpQSKvfR2D5kSAfOQR84WyXnkkQf/fM+sZiQ5DmR55hhIjhNJUhgJhdH12T2IphpfltUJPnwelzs9c8YYCQ2F2Vd/hNq6GgDeeeOjT7O2AQgJI8Mgw+VEEASi0Titx7qpqCwmEo6hqDq9vSFKSryUlhcwNhpBlhWiEQmX20FRwEtnxwDZOS48WS62vrybr167CjEuY7FacDrtbH35A678yoppV8qMQg40fYLLnU5jw3F0VcfhtHGopYNINM7KlYtoae4gvyCblqZPWFwRQJQUrDYrjfvbyMzKIB6TMQyDhv3H6e4KIYoyVpuFSDiGMz0hRBBg184WvnHDpWS6M2jcfxxJUnBlpqOrOnl5nhmX+4xCFiwqZDg0TiCQBwKc7Bwiz+fBMAyKSnxEohIVVcWIosyqSyppa+shN8dNT88wBYU5RCIiAIFAHiVlfro6B0nPsCNLE5dfcYkPgFxvJmUL8olHJYaHxylZ7OOTYO9Mbp4fwb7p0RceNJ3ZZTmRFI8e6ZpTv9BQmNGRyKS202XOCbGne4iDzR18YeUiQqFxhDSB995tIBqVKCvPJyPDgc1upaw8n0MtHQAsvbCct/+xj6plpezbc5TSMh/xmEJBUS6erAx6u0OMjURwe9JTnpxnw5xnJB6TECWZ/t4QhUU5hIbC2B127DYr4XCMnpMhertDAPT2DNHZ0Y+uG4THY8iyisNuQxRlSst9hAbH6DoxQGgoTFNDkGBbjykRYGJGrDYrF32xgsLCHDTdoKKqBCFNwNANhDQBq8WCxZr4fy6/ouZUv8tql+H1ZVFS6kcwdKy2xKwZwIn2fsoXFJgWYUpIWXn+qWsLgH3qIZLLPoHiqTeQRRWBuboxif/tY/y5yHkjxHTxob01itORqIi8+cZb/OmPL06y8fmzeOTRH7Lq0irzHs4S00I8Hh+ZzkXERRGnw5PSZnBgjHtuf4q7fnI9ZeX5LKtZgMNpQwAyPRlmfzolp10OEkVxRptg20kkUUZVNaKROGkWgfBYDE3TEQSBmosWUrNi4Wn5YVpIKDSA5nEhWGB8fDSljcvt5N6f38h16y4jLU1IaWMYBju2NxAei+LJcpl1x7yQiqVuIFE42LBxDWuvvmCSTW6Om/zC3GnHGehLVCbX1tVMazcTZ6TSaLdb51Q0UBSVA83ttDQGcbnTuePur5+qI88VRdUMTdOMM14yTYWmahw93EVLUxBRlLHb7SyrKeemW6+aUoCm6YkL4bOPxDFINxJPHZKsEomIDIfCg5ufefN38yZkbDRC/fuH6OsbxmKxUL20jBu/Wzvrt1VxUcGY5jlfkTWiEXH8lvWPXq5pmjovQvZ8cIj2YC91V62goCjP1BgCAgZTCxFFOXr37U+sPtHe1wpnKEY+z0goQtkFhaZFAAipNzkAJEmJ33fPH74dbOs++FnbvAi55vpL2Fd/hL888xYWqwXDMHCm27n4S1UsWFg4u0GmECJLqrjhB49dEWzrnvAgP28xcvHqai5eXW26fyodqqIpd9y66eoDzcG9wIRt8pw9NAqfW1uaqil33fbbrzXsP7Y7lf05KyQZXde1e+968oa99Yd3TGUzaWmFx2K43NH59WwWiHEZVdUxDF1/6BfP/Wj3P5v3AMmViQkJyCrLimS32xyQOJFWmSzrn2msViuaqhv33/f093ftbHophclI8k2aJCozH1/PMppmoGk6v3xw84a339ibSsQkzsoRZU4YcPx4T/tjv/rrvbt2Nr0+227Chjuu+elnS2s2KIoqx2LSvAWRIAiWl/723rOaps3uHd6n/BtXn4Ycnzo4IwAAAABJRU5ErkJggg==" YP="742.682187888267" XP="25.511811023622" COUNT="15" Version="1.4.6">
<FONT NAME="Arial Regular"/>
<FONT NAME="Fira Sans Bold"/>
<FONT NAME="Fira Sans Book"/>
<FONT NAME="Fira Sans ExtraBold"/>
<FONT NAME="Fira Sans Light"/>
<FONT NAME="Fira Sans Medium"/>
<FONT NAME="Fira Sans Regular"/>
<FONT NAME="Lato Light"/>
<FONT NAME="PermianSerifTypeface Italic"/>
<FONT NAME="PermianSerifTypeface Regular"/>
<FONT NAME="PermianSlabSerifTypeface Bold"/>
<COLOR Spot="0" Register="0" NAME="Black" CMYK="#000000ff"/>
<COLOR Spot="0" Register="0" NAME="Cervena" CMYK="#2effe814"/>
<COLOR Spot="0" Register="0" NAME="Cervena2" CMYK="#00e2c600"/>
<COLOR Spot="0" Register="0" NAME="Fialova" CMYK="#78871700"/>
<COLOR Spot="0" Register="0" NAME="Fialova2" CMYK="#44c9201b"/>
<COLOR Spot="0" Register="0" NAME="Modra" CMYK="#ff14000d"/>
<COLOR Spot="0" Register="0" NAME="Oranzova" CMYK="#007fff00"/>
<COLOR Spot="0" Register="0" NAME="Ruzova" CMYK="#02662601"/>
<COLOR Spot="0" Register="0" NAME="Tmaveoranzova" CMYK="#007fff29"/>
<COLOR Spot="0" Register="0" NAME="Tmavomodra" CMYK="#ff140026"/>
<COLOR Spot="0" Register="0" NAME="Tmavozelana" CMYK="#5700d926"/>
<COLOR Spot="0" Register="0" NAME="Tmavozluta" CMYK="#1400c726"/>
<COLOR Spot="0" Register="0" NAME="White" CMYK="#00000000"/>
<COLOR Spot="0" Register="0" NAME="Zelana" CMYK="#5700d900"/>
<COLOR Spot="0" Register="0" NAME="Zelena2" CMYK="#b300d500"/>
<COLOR Spot="0" Register="0" NAME="Zluta" CMYK="#1400c700"/>
<STYLE SCALEV="100" SCOLOR="Black" ALIGN="1" TXTSTP="-0.1" TXTSHX="5" TXTSHY="-5" FSHADE="100" INDENT="0" TXTSTW="-0.1" EFFECT="0" VOR="0" NACH="15" LINESPMode="0" FCOLOR="Black" DROP="0" TXTULP="-0.1" SCALEH="100" TXTULW="-0.1" KERN="0" DROPLIN="2" NAME="Lepitko-H1" FONT="Fira Sans ExtraBold" LINESP="26.0000000000000" SSHADE="100" FIRST="0" BASE="0" FONTSIZE="20" DROPDIST="0" TXTOUT="1" BASEO="0"/>
<STYLE SCALEV="100" SCOLOR="Black" ALIGN="1" TXTSTP="-0.1" TXTSHX="5" TXTSHY="-5" FSHADE="100" INDENT="0" TXTSTW="-0.1" EFFECT="0" VOR="0" NACH="0" LINESPMode="0" FCOLOR="Black" DROP="0" TXTULP="-0.1" SCALEH="100" TXTULW="-0.1" KERN="0" DROPLIN="2" NAME="Lepitko-text" FONT="Fira Sans Regular" LINESP="17.0000000000000" SSHADE="100" FIRST="0" BASE="0" FONTSIZE="13" DROPDIST="0" TXTOUT="1" BASEO="0"/>
<MultiLine Name="Teckovana">
<SubLine LineEnd="0" Dash="3" Width="1.5" LineJoin="0" Shade="100" Color="Black"/>
</MultiLine>
<MultiLine Name="Tenka">
<SubLine LineEnd="0" Dash="1" Width="0.5" LineJoin="0" Shade="100" Color="Black"/>
</MultiLine>
<MultiLine Name="Tenka teckovana">
<SubLine LineEnd="0" Dash="3" Width="0.5" LineJoin="0" Shade="100" Color="Black"/>
</MultiLine>
<MultiLine Name="Tlusta">
<SubLine LineEnd="0" Dash="1" Width="1.5" LineJoin="0" Shade="100" Color="Black"/>
</MultiLine>
<MultiLine Name="Velmi tlusta">
<SubLine LineEnd="0" Dash="1" Width="2.5" LineJoin="0" Shade="100" Color="Black"/>
</MultiLine>
<ITEM TXTULW="-0.1" POCOOR="182.969 134.923 182.969 134.923 182.881 0 182.881 0 182.881 0 182.881 0 0 0.118767 0 0.118767 0 0.118767 0 0.118767 0.119521 182.923 0.119521 182.923 0.119521 182.923 0.119521 182.923 135.572 182.835 135.572 182.835 135.572 182.835 135.572 182.835 182.966 134.919 182.966 134.919 182.966 134.919 182.966 134.919 182.969 134.923 182.969 134.923 " ANNAME="pripoj_se" RADRECT="0" TXTSTP="-0.1" GRTYP="0" PCOLOR="Zelana" TXTSTW="-0.1" ALIGN="0" BACKITEM="-1" WIDTH="182.9687571" XPOS="25.511811023622" EXTRA="0" TopLine="0" NEXTITEM="-1" PRINTABLE="1" HEIGHT="182.9231266" BASEOF="0" isTableItem="0" LANGUAGE="Czech" BACKPAGE="-1" TEXTFLOWMODE="1" TransBlendS="0" IFONT="PermianSerifTypeface Regular" TXTSCALEV="100" textPathFlipped="0" BottomLine="0" PLINEEND="0" BEXTRA="0" GROUPS="" TransBlend="0" NAMEDLST="" TXTOUT="1" AUTOTEXT="0" startArrowIndex="0" PICART="1" YPOS="742.682187888267" NEXTPAGE="-1" isGroupControl="0" NUMCO="24" ISIZE="10" LOCALSCX="1" TXTSCALE="100" LOCK="0" LOCALSCY="1" PRFILE="" TransValueS="0" doOverprint="0" TXTBASE="0" IRENDER="1" fillRule="1" TEXTRA="0" FLOP="0" LINESPMode="0" ROT="0" textPathType="0" RATIO="1" PLINEART="1" TXTSTYLE="0" PCOLOR2="None" COLUMNS="1" TXTSHX="5" TXTKERN="0" TXTSHY="-5" PTYPE="6" LINESP="15" TXTSTROKE="Black" ANNOTATION="0" PLTSHOW="0" DASHS="" BOOKMARK="0" REXTRA="0" LOCKR="0" DASHOFF="0" LOCALX="0" CLIPEDIT="1" ImageClip="" LOCALY="0" EPROF="" FLIPPEDH="0" SHADE2="100" LeftLine="0" PLINEJOIN="0" NUMDASH="0" PFILE2="" PFILE3="" TXTFILLSH="100" TXTFILL="Black" TXTSTRSH="100" PWIDTH="0.5599916902" COCOOR="182.969 134.923 182.969 134.923 182.881 0 182.881 0 182.881 0 182.881 0 0 0.118767 0 0.118767 0 0.118767 0 0.118767 0.119521 182.923 0.119521 182.923 0.119521 182.923 0.119521 182.923 135.572 182.835 135.572 182.835 135.572 182.835 135.572 182.835 182.966 134.919 182.966 134.919 182.966 134.919 182.966 134.919 182.969 134.923 182.969 134.923 " FLIPPEDV="0" RightLine="0" TEXTFLOW="1" SHADE="50" NUMGROUP="0" endArrowIndex="0" COLGAP="0" SCALETYPE="1" EMBEDDED="1" TEXTFLOW2="0" TEXTFLOW3="0" TransValue="0" TXTULP="-0.1" REVERS="0" FRTYPE="3" NUMPO="24"/>
<ITEM TXTULW="-0.1" POCOOR="0 50.6458 0 50.6458 8.56905 46.1333 0.977005 51.8311 8.56905 46.1333 16.1611 40.4355 45.7717 7.58834 40.938 15.1767 45.7717 7.58834 50.6052 0 48.081 1.56977 48.081 1.56977 48.081 1.56977 48.081 1.56977 43.2353 4.34153 45.7966 3.18091 43.2353 4.34153 40.7689 5.45914 35.0937 6.70128 38.4647 6.07667 35.0937 6.70128 31.8326 7.30547 20.352 7.55892 24.1839 7.35388 20.352 7.55892 16.52 7.76382 6.61607 7.16083 6.61607 7.16083 6.61607 7.16083 6.61607 7.16083 7.74018 34.0488 8.31975 29.6246 7.74018 34.0488 7.16061 38.4734 6.02738 42.4338 7.36547 40.2049 6.02738 42.4338 4.68925 44.6631 1.90133 48.3618 3.14596 47.0077 1.90133 48.3618 0.656702 49.7158 0.000224379 50.6456 0.000224379 50.6456 0.000224379 50.6456 0.000224379 50.6456 0 50.6458 0 50.6458 " ANNAME="Kopie path2744 (3)" RADRECT="0" TXTSTP="-0.1" GRTYP="0" PCOLOR="Tmavozelana" TXTSTW="-0.1" ALIGN="0" BACKITEM="-1" WIDTH="50.60516832" XPOS="159.896666023622" EXTRA="0" TopLine="0" NEXTITEM="-1" PRINTABLE="1" HEIGHT="51.83105117" BASEOF="0" isTableItem="0" LANGUAGE="Czech" BACKPAGE="-1" TEXTFLOWMODE="1" TransBlendS="0" IFONT="PermianSerifTypeface Regular" TXTSCALEV="100" textPathFlipped="0" BottomLine="0" PLINEEND="0" BEXTRA="0" GROUPS="" TransBlend="0" NAMEDLST="" TXTOUT="1" AUTOTEXT="0" startArrowIndex="0" PICART="1" YPOS="875.098082688268" NEXTPAGE="-1" isGroupControl="0" NUMCO="48" ISIZE="10" LOCALSCX="1" TXTSCALE="100" LOCK="0" LOCALSCY="1" PRFILE="" TransValueS="0" doOverprint="0" TXTBASE="0" IRENDER="1" fillRule="1" TEXTRA="0" FLOP="0" LINESPMode="0" ROT="0" textPathType="0" RATIO="1" PLINEART="1" TXTSTYLE="0" PCOLOR2="None" COLUMNS="1" TXTSHX="5" TXTKERN="0" TXTSHY="-5" PTYPE="6" LINESP="15" TXTSTROKE="Black" ANNOTATION="0" PLTSHOW="0" DASHS="" BOOKMARK="0" REXTRA="0" LOCKR="0" DASHOFF="0" LOCALX="0" CLIPEDIT="1" ImageClip="" LOCALY="0" EPROF="" FLIPPEDH="0" SHADE2="100" LeftLine="0" PLINEJOIN="0" NUMDASH="0" PFILE2="" PFILE3="" TXTFILLSH="100" TXTFILL="Black" TXTSTRSH="100" PWIDTH="0.01" COCOOR="0 50.6458 0 50.6458 8.56905 46.1333 0.977005 51.8311 8.56905 46.1333 16.1611 40.4355 45.7717 7.58834 40.938 15.1767 45.7717 7.58834 50.6052 0 48.081 1.56977 48.081 1.56977 48.081 1.56977 48.081 1.56977 43.2353 4.34153 45.7966 3.18091 43.2353 4.34153 40.7689 5.45914 35.0937 6.70128 38.4647 6.07667 35.0937 6.70128 31.8326 7.30547 20.352 7.55892 24.1839 7.35388 20.352 7.55892 16.52 7.76382 6.61607 7.16083 6.61607 7.16083 6.61607 7.16083 6.61607 7.16083 7.74018 34.0488 8.31975 29.6246 7.74018 34.0488 7.16061 38.4734 6.02738 42.4338 7.36547 40.2049 6.02738 42.4338 4.68925 44.6631 1.90133 48.3618 3.14596 47.0077 1.90133 48.3618 0.656702 49.7158 0.000224379 50.6456 0.000224379 50.6456 0.000224379 50.6456 0.000224379 50.6456 0 50.6458 0 50.6458 " FLIPPEDV="0" RightLine="0" TEXTFLOW="1" SHADE="50" NUMGROUP="0" endArrowIndex="0" COLGAP="0" SCALETYPE="1" EMBEDDED="1" TEXTFLOW2="0" TEXTFLOW3="0" TransValue="0" TXTULP="-0.1" REVERS="0" FRTYPE="3" NUMPO="48"/>
<ITEM TXTULW="-0.1" POCOOR="0 0 0 0 155.906 0 155.906 0 155.906 0 155.906 0 155.906 155.906 155.906 155.906 155.906 155.906 155.906 155.906 0 155.906 0 155.906 0 155.906 0 155.906 0 0 0 0 " ANNAME="" RADRECT="0" TXTSTP="-0.1" GRTYP="0" PCOLOR="None" TXTSTW="-0.1" ALIGN="1" BACKITEM="-1" WIDTH="155.9055118" XPOS="40.423094023622" relativePaths="1" EXTRA="0" TopLine="0" NEXTITEM="-1" PRINTABLE="1" HEIGHT="155.9055118" BASEOF="0" isTableItem="0" LANGUAGE="Czech" BACKPAGE="-1" TEXTFLOWMODE="0" TransBlendS="0" IFONT="Fira Sans ExtraBold" TXTSCALEV="100" textPathFlipped="0" BottomLine="0" PLINEEND="0" BEXTRA="0" GROUPS="" TransBlend="0" NAMEDLST="" TXTOUT="1" AUTOTEXT="0" startArrowIndex="0" PICART="1" YPOS="756.855416188266" NEXTPAGE="-1" isGroupControl="0" NUMCO="16" ISIZE="14" LOCALSCX="1" TXTSCALE="100" LOCK="0" LOCALSCY="1" PRFILE="" TransValueS="0" doOverprint="0" TXTBASE="0" IRENDER="1" fillRule="1" TEXTRA="0" FLOP="0" LINESPMode="0" ROT="0" textPathType="0" RATIO="1" PLINEART="1" TXTSTYLE="0" PCOLOR2="None" COLUMNS="1" TXTSHX="5" TXTKERN="0" TXTSHY="-5" PTYPE="4" LINESP="16" TXTSTROKE="Black" ANNOTATION="0" PLTSHOW="0" DASHS="" BOOKMARK="0" REXTRA="0" LOCKR="0" DASHOFF="0" LOCALX="0" CLIPEDIT="0" ImageClip="" LOCALY="0" EPROF="" FLIPPEDH="0" SHADE2="100" LeftLine="0" PLINEJOIN="0" NUMDASH="0" PFILE2="" PFILE3="" TXTFILLSH="100" TXTFILL="Black" TXTSTRSH="100" PWIDTH="1" COCOOR="0 0 0 0 155.906 0 155.906 0 155.906 0 155.906 0 155.906 155.906 155.906 155.906 155.906 155.906 155.906 155.906 0 155.906 0 155.906 0 155.906 0 155.906 0 0 0 0 " FLIPPEDV="0" RightLine="0" TEXTFLOW="0" SHADE="100" NUMGROUP="0" endArrowIndex="0" COLGAP="0" SCALETYPE="1" EMBEDDED="1" TEXTFLOW2="0" TEXTFLOW3="0" TransValue="0" TXTULP="-0.1" REVERS="0" FRTYPE="0" NUMPO="16">
<ITEXT PSTYLE="Lepitko-H1" CH="Připoj se"/>
<PARA PARENT="Lepitko-H1"/>
<ITEXT PSTYLE="Lepitko-text" CH="Staň se naším"/>
<PARA PARENT="Lepitko-text"/>
<ITEXT PSTYLE="" CSIZE="13" CH="dobrovolníkem a buď přímo u zdroje" CFONT="Fira Sans Regular"/>
<ITEXT PSTYLE="" CH=" "/>
<PARA ALIGN="1" LINESP="17"/>
<PARA ALIGN="1"/>
</ITEM>
<ITEM TXTULW="-0.1" POCOOR="0 0 0 0 76 0 76 0 76 0 76 0 76 41.3249 76 41.3249 76 41.3249 76 41.3249 0 41.3249 0 41.3249 0 41.3249 0 41.3249 0 0 0 0 " ANNAME="svg4340" RADRECT="0" TXTSTP="-0.1" GRTYP="0" PCOLOR="None" TXTSTW="-0.1" ALIGN="0" BACKITEM="-1" WIDTH="75.99999998" XPOS="77.8089210236221" EXTRA="0" TopLine="0" NEXTITEM="-1" PRINTABLE="1" HEIGHT="41.32494488" groupsLastItem="11" BASEOF="0" isTableItem="0" LANGUAGE="Czech" BACKPAGE="-1" TEXTFLOWMODE="0" TransBlendS="0" IFONT="PermianSerifTypeface Regular" TXTSCALEV="100" textPathFlipped="0" BottomLine="0" PLINEEND="0" BEXTRA="0" GROUPS="31 " TransBlend="0" NAMEDLST="" TXTOUT="1" AUTOTEXT="0" startArrowIndex="0" PICART="1" YPOS="857.262754688268" NEXTPAGE="-1" isGroupControl="1" NUMCO="16" ISIZE="10" LOCALSCX="1" TXTSCALE="100" LOCK="0" LOCALSCY="1" PRFILE="" TransValueS="0" doOverprint="0" TXTBASE="0" IRENDER="1" fillRule="1" TEXTRA="0" FLOP="0" LINESPMode="0" ROT="0" textPathType="0" RATIO="1" PLINEART="1" TXTSTYLE="0" PCOLOR2="None" COLUMNS="1" TXTSHX="5" TXTKERN="0" TXTSHY="-5" PTYPE="6" LINESP="15" TXTSTROKE="Black" ANNOTATION="0" PLTSHOW="0" DASHS="" BOOKMARK="0" REXTRA="0" LOCKR="0" DASHOFF="0" LOCALX="0" CLIPEDIT="1" ImageClip="" LOCALY="0" EPROF="" FLIPPEDH="0" SHADE2="100" LeftLine="0" PLINEJOIN="0" NUMDASH="0" PFILE2="" PFILE3="" TXTFILLSH="100" TXTFILL="Black" TXTSTRSH="100" PWIDTH="0.01" COCOOR="0 0 0 0 0.245488 0 0.245488 0 0.245488 0 0.245488 0 0.245488 0.244694 0.245488 0.244694 0.245488 0.244694 0.245488 0.244694 0 0.244694 0 0.244694 0 0.244694 0 0.244694 0 0 0 0 " FLIPPEDV="0" RightLine="0" TEXTFLOW="0" SHADE="100" NUMGROUP="1" endArrowIndex="0" COLGAP="0" SCALETYPE="1" EMBEDDED="1" TEXTFLOW2="0" TEXTFLOW3="0" TransValue="0" TXTULP="-0.1" REVERS="0" FRTYPE="0" NUMPO="16"/>
<ITEM TXTULW="-0.1" POCOOR="0 0 0 0 76 0 76 0 76 0 76 0 76 41.3249 76 41.3249 76 41.3249 76 41.3249 0 41.3249 0 41.3249 0 41.3249 0 41.3249 0 0 0 0 " ANNAME="layer1" RADRECT="0" TXTSTP="-0.1" GRTYP="0" PCOLOR="None" TXTSTW="-0.1" ALIGN="0" BACKITEM="-1" WIDTH="75.99999998" XPOS="77.8089210236221" EXTRA="0" TopLine="0" NEXTITEM="-1" PRINTABLE="1" HEIGHT="41.32494488" groupsLastItem="10" BASEOF="0" isTableItem="0" LANGUAGE="Czech" BACKPAGE="-1" TEXTFLOWMODE="0" TransBlendS="0" IFONT="PermianSerifTypeface Regular" TXTSCALEV="100" textPathFlipped="0" BottomLine="0" PLINEEND="0" BEXTRA="0" GROUPS="32 31 " TransBlend="0" NAMEDLST="" TXTOUT="1" AUTOTEXT="0" startArrowIndex="0" PICART="1" YPOS="857.262754688268" NEXTPAGE="-1" isGroupControl="1" NUMCO="16" ISIZE="10" LOCALSCX="1" TXTSCALE="100" LOCK="0" LOCALSCY="1" PRFILE="" TransValueS="0" doOverprint="0" TXTBASE="0" IRENDER="1" fillRule="1" TEXTRA="0" FLOP="0" LINESPMode="0" ROT="0" textPathType="0" RATIO="1" PLINEART="1" TXTSTYLE="0" PCOLOR2="None" COLUMNS="1" TXTSHX="5" TXTKERN="0" TXTSHY="-5" PTYPE="6" LINESP="15" TXTSTROKE="Black" ANNOTATION="0" PLTSHOW="0" DASHS="" BOOKMARK="0" REXTRA="0" LOCKR="0" DASHOFF="0" LOCALX="0" CLIPEDIT="1" ImageClip="" LOCALY="0" EPROF="" FLIPPEDH="0" SHADE2="100" LeftLine="0" PLINEJOIN="0" NUMDASH="0" PFILE2="" PFILE3="" TXTFILLSH="100" TXTFILL="Black" TXTSTRSH="100" PWIDTH="0.01" COCOOR="0 0 0 0 0.245488 0 0.245488 0 0.245488 0 0.245488 0 0.245488 0.244694 0.245488 0.244694 0.245488 0.244694 0.245488 0.244694 0 0.244694 0 0.244694 0 0.244694 0 0.244694 0 0 0 0 " FLIPPEDV="0" RightLine="0" TEXTFLOW="0" SHADE="100" NUMGROUP="2" endArrowIndex="0" COLGAP="0" SCALETYPE="1" EMBEDDED="1" TEXTFLOW2="0" TEXTFLOW3="0" TransValue="0" TXTULP="-0.1" REVERS="0" FRTYPE="0" NUMPO="16"/>
<ITEM TXTULW="-0.1" POCOOR="0 0 0 0 76 0 76 0 76 0 76 0 76 41.3249 76 41.3249 76 41.3249 76 41.3249 0 41.3249 0 41.3249 0 41.3249 0 41.3249 0 0 0 0 " ANNAME="g5393" RADRECT="0" TXTSTP="-0.1" GRTYP="0" PCOLOR="None" TXTSTW="-0.1" ALIGN="0" BACKITEM="-1" WIDTH="75.99999998" XPOS="77.8089210236221" EXTRA="0" TopLine="0" NEXTITEM="-1" PRINTABLE="1" HEIGHT="41.32494488" groupsLastItem="9" BASEOF="0" isTableItem="0" LANGUAGE="Czech" BACKPAGE="-1" TEXTFLOWMODE="0" TransBlendS="0" IFONT="PermianSerifTypeface Regular" TXTSCALEV="100" textPathFlipped="0" BottomLine="0" PLINEEND="0" BEXTRA="0" GROUPS="33 32 31 " TransBlend="0" NAMEDLST="" TXTOUT="1" AUTOTEXT="0" startArrowIndex="0" PICART="1" YPOS="857.262754688268" NEXTPAGE="-1" isGroupControl="1" NUMCO="16" ISIZE="10" LOCALSCX="1" TXTSCALE="100" LOCK="0" LOCALSCY="1" PRFILE="" TransValueS="0" doOverprint="0" TXTBASE="0" IRENDER="1" fillRule="1" TEXTRA="0" FLOP="0" LINESPMode="0" ROT="0" textPathType="0" RATIO="1" PLINEART="1" TXTSTYLE="0" PCOLOR2="None" COLUMNS="1" TXTSHX="5" TXTKERN="0" TXTSHY="-5" PTYPE="6" LINESP="15" TXTSTROKE="Black" ANNOTATION="0" PLTSHOW="0" DASHS="" BOOKMARK="0" REXTRA="0" LOCKR="0" DASHOFF="0" LOCALX="0" CLIPEDIT="1" ImageClip="" LOCALY="0" EPROF="" FLIPPEDH="0" SHADE2="100" LeftLine="0" PLINEJOIN="0" NUMDASH="0" PFILE2="" PFILE3="" TXTFILLSH="100" TXTFILL="Black" TXTSTRSH="100" PWIDTH="0.01" COCOOR="0 0 0 0 0.245488 0 0.245488 0 0.245488 0 0.245488 0 0.245488 0.244694 0.245488 0.244694 0.245488 0.244694 0.245488 0.244694 0 0.244694 0 0.244694 0 0.244694 0 0.244694 0 0 0 0 " FLIPPEDV="0" RightLine="0" TEXTFLOW="0" SHADE="100" NUMGROUP="3" endArrowIndex="0" COLGAP="0" SCALETYPE="1" EMBEDDED="1" TEXTFLOW2="0" TEXTFLOW3="0" TransValue="0" TXTULP="-0.1" REVERS="0" FRTYPE="0" NUMPO="16"/>
<ITEM TXTULW="-0.1" POCOOR="8.43495 0 9.82539 0.146817 15.666 0.268185 13.2347 0.268185 15.666 0.268185 18.608 0.268185 24.7039 0.446322 21.6265 0.446322 24.7039 0.446322 27.0252 0.446322 31.0296 0.62446 28.7869 0.62446 31.0296 0.62446 32.8305 0.62446 37.3573 1.15887 35.5093 1.02184 37.3573 1.15887 41.8232 1.48774 45.1913 3.91902 43.848 2.72883 45.1913 3.91902 46.8724 5.41264 46.0947 8.37442 47.8112 6.85144 46.0947 8.37442 43.9187 10.3026 37.6578 13.5404 41.4776 11.8471 37.6578 13.5404 31.8702 16.1068 14.1597 19.5971 22.1646 17.8216 14.1597 19.5971 9.28925 20.6776 2.40971 23.1598 5.09436 21.5722 2.40971 23.1598 0.860188 24.0779 0 26.1001 0 25.09 0 26.1001 0 27.1356 3.01262 29.3065 1.89124 28.3141 3.01262 29.3065 3.72552 29.9408 6.92864 31.2661 5.68942 30.7786 6.92864 31.2661 8.54493 31.9042 15.3636 32.1567 13.0266 31.9277 15.3636 32.1567 17.8322 32.4014 21.9918 32.8712 20.1182 32.5933 " ANNAME=" path2406" RADRECT="0" TXTSTP="-0.1" GRTYP="0" PCOLOR="None" TXTSTW="-0.1" ALIGN="0" BACKITEM="-1" WIDTH="47.81115546" XPOS="105.138559023622" EXTRA="0" TopLine="0" NEXTITEM="-1" PRINTABLE="1" HEIGHT="32.8712477" BASEOF="0" isTableItem="0" LANGUAGE="Czech" BACKPAGE="-1" TEXTFLOWMODE="0" TransBlendS="0" IFONT="PermianSerifTypeface Regular" TXTSCALEV="100" textPathFlipped="0" BottomLine="0" PLINEEND="0" BEXTRA="0" GROUPS="33 32 31 " TransBlend="0" NAMEDLST="" TXTOUT="1" AUTOTEXT="0" startArrowIndex="0" PICART="1" YPOS="864.860021688268" NEXTPAGE="-1" isGroupControl="0" NUMCO="56" ISIZE="10" LOCALSCX="1" TXTSCALE="100" LOCK="0" LOCALSCY="1" PRFILE="" TransValueS="0" doOverprint="0" TXTBASE="0" IRENDER="1" fillRule="1" TEXTRA="0" FLOP="0" LINESPMode="0" ROT="0" textPathType="0" RATIO="1" PLINEART="1" TXTSTYLE="0" PCOLOR2="Black" COLUMNS="1" TXTSHX="5" TXTKERN="0" TXTSHY="-5" PTYPE="7" LINESP="15" TXTSTROKE="Black" ANNOTATION="0" PLTSHOW="0" DASHS="" BOOKMARK="0" REXTRA="0" LOCKR="0" DASHOFF="0" LOCALX="0" CLIPEDIT="1" ImageClip="" LOCALY="0" EPROF="" FLIPPEDH="0" SHADE2="100" LeftLine="0" PLINEJOIN="0" NUMDASH="0" PFILE2="" PFILE3="" TXTFILLSH="100" TXTFILL="Black" TXTSTRSH="100" PWIDTH="1.715636328" COCOOR="8.43495 0 9.82539 0.146817 15.666 0.268185 13.2347 0.268185 15.666 0.268185 18.608 0.268185 24.7039 0.446322 21.6265 0.446322 24.7039 0.446322 27.0252 0.446322 31.0296 0.62446 28.7869 0.62446 31.0296 0.62446 32.8305 0.62446 37.3573 1.15887 35.5093 1.02184 37.3573 1.15887 41.8232 1.48774 45.1913 3.91902 43.848 2.72883 45.1913 3.91902 46.8724 5.41264 46.0947 8.37442 47.8112 6.85144 46.0947 8.37442 43.9187 10.3026 37.6578 13.5404 41.4776 11.8471 37.6578 13.5404 31.8702 16.1068 14.1597 19.5971 22.1646 17.8216 14.1597 19.5971 9.28925 20.6776 2.40971 23.1598 5.09436 21.5722 2.40971 23.1598 0.860188 24.0779 0 26.1001 0 25.09 0 26.1001 0 27.1356 3.01262 29.3065 1.89124 28.3141 3.01262 29.3065 3.72552 29.9408 6.92864 31.2661 5.68942 30.7786 6.92864 31.2661 8.54493 31.9042 15.3636 32.1567 13.0266 31.9277 15.3636 32.1567 17.8322 32.4014 21.9918 32.8712 20.1182 32.5933 " FLIPPEDV="0" RightLine="0" TEXTFLOW="0" SHADE="100" NUMGROUP="3" endArrowIndex="0" COLGAP="0" SCALETYPE="1" EMBEDDED="1" TEXTFLOW2="0" TEXTFLOW3="0" TransValue="0" TXTULP="-0.1" REVERS="0" FRTYPE="3" NUMPO="56"/>
<ITEM TXTULW="-0.1" POCOOR="0.756828 0 0.756828 0 0.873248 0 0.873248 0 0.873248 0 1.29123 0 1.63008 0.754383 1.63008 0.337749 1.63008 0.754383 1.63008 0.754383 1.63008 3.97819 1.63008 3.97819 1.63008 3.97819 1.63008 4.39483 0.873248 4.73258 1.29123 4.73258 0.873248 4.73258 0.873248 4.73258 0.756828 4.73258 0.756828 4.73258 0.756828 4.73258 0.338844 4.73258 0 3.97819 0 4.39483 0 3.97819 0 3.97819 0 0.754383 0 0.754383 0 0.754383 0 0.337749 0.756828 0 0.338844 0 " ANNAME=" rect1318" RADRECT="0.8150383088" TXTSTP="-0.1" GRTYP="0" PCOLOR="Black" TXTSTW="-0.1" ALIGN="0" BACKITEM="-1" WIDTH="1.630076618" XPOS="118.049239023622" EXTRA="0" TopLine="0" NEXTITEM="-1" PRINTABLE="1" HEIGHT="4.732582684" BASEOF="0" isTableItem="0" LANGUAGE="Czech" BACKPAGE="-1" TEXTFLOWMODE="1" TransBlendS="0" IFONT="PermianSerifTypeface Regular" TXTSCALEV="100" textPathFlipped="0" BottomLine="0" PLINEEND="0" BEXTRA="0" GROUPS="33 32 31 " TransBlend="0" NAMEDLST="" TXTOUT="1" AUTOTEXT="0" startArrowIndex="0" PICART="1" YPOS="862.665584688268" NEXTPAGE="-1" isGroupControl="0" NUMCO="16" ISIZE="10" LOCALSCX="1" TXTSCALE="100" LOCK="0" LOCALSCY="1" PRFILE="" TransValueS="0" doOverprint="0" TXTBASE="0" IRENDER="1" fillRule="1" TEXTRA="0" FLOP="0" LINESPMode="0" ROT="0" textPathType="0" RATIO="1" PLINEART="1" TXTSTYLE="0" PCOLOR2="None" COLUMNS="1" TXTSHX="5" TXTKERN="0" TXTSHY="-5" PTYPE="6" LINESP="15" TXTSTROKE="Black" ANNOTATION="0" PLTSHOW="0" DASHS="" BOOKMARK="0" REXTRA="0" LOCKR="0" DASHOFF="0" LOCALX="0" CLIPEDIT="1" ImageClip="" LOCALY="0" EPROF="" FLIPPEDH="0" SHADE2="100" LeftLine="0" PLINEJOIN="0" NUMDASH="0" PFILE2="" PFILE3="" TXTFILLSH="100" TXTFILL="Black" TXTSTRSH="100" PWIDTH="0.1960727232" COCOOR="0 0 0 0 2.0376 0 2.0376 0 2.0376 0 2.0376 0 2.0376 5.91573 2.0376 5.91573 2.0376 5.91573 2.0376 5.91573 0 5.91573 0 5.91573 0 5.91573 0 5.91573 0 0 0 0 " FLIPPEDV="0" RightLine="0" TEXTFLOW="1" SHADE="100" NUMGROUP="3" endArrowIndex="0" COLGAP="0" SCALETYPE="1" EMBEDDED="1" TEXTFLOW2="0" TEXTFLOW3="0" TransValue="0" TXTULP="-0.1" REVERS="0" FRTYPE="3" NUMPO="32"/>
<ITEM TXTULW="-0.1" POCOOR="0.756828 0 0.756828 0 0.873248 0 0.873248 0 0.873248 0 1.29123 0 1.63008 0.754383 1.63008 0.337749 1.63008 0.754383 1.63008 0.754383 1.63008 3.97819 1.63008 3.97819 1.63008 3.97819 1.63008 4.39483 0.873248 4.73258 1.29123 4.73258 0.873248 4.73258 0.873248 4.73258 0.756828 4.73258 0.756828 4.73258 0.756828 4.73258 0.338844 4.73258 0 3.97819 0 4.39483 0 3.97819 0 3.97819 0 0.754383 0 0.754383 0 0.754383 0 0.337749 0.756828 0 0.338844 0 " ANNAME=" rect2333" RADRECT="0.8150383088" TXTSTP="-0.1" GRTYP="0" PCOLOR="Black" TXTSTW="-0.1" ALIGN="0" BACKITEM="-1" WIDTH="1.630076618" XPOS="122.705650023622" EXTRA="0" TopLine="0" NEXTITEM="-1" PRINTABLE="1" HEIGHT="4.732582684" BASEOF="0" isTableItem="0" LANGUAGE="Czech" BACKPAGE="-1" TEXTFLOWMODE="1" TransBlendS="0" IFONT="PermianSerifTypeface Regular" TXTSCALEV="100" textPathFlipped="0" BottomLine="0" PLINEEND="0" BEXTRA="0" GROUPS="33 32 31 " TransBlend="0" NAMEDLST="" TXTOUT="1" AUTOTEXT="0" startArrowIndex="0" PICART="1" YPOS="862.665584688268" NEXTPAGE="-1" isGroupControl="0" NUMCO="16" ISIZE="10" LOCALSCX="1" TXTSCALE="100" LOCK="0" LOCALSCY="1" PRFILE="" TransValueS="0" doOverprint="0" TXTBASE="0" IRENDER="1" fillRule="1" TEXTRA="0" FLOP="0" LINESPMode="0" ROT="0" textPathType="0" RATIO="1" PLINEART="1" TXTSTYLE="0" PCOLOR2="None" COLUMNS="1" TXTSHX="5" TXTKERN="0" TXTSHY="-5" PTYPE="6" LINESP="15" TXTSTROKE="Black" ANNOTATION="0" PLTSHOW="0" DASHS="" BOOKMARK="0" REXTRA="0" LOCKR="0" DASHOFF="0" LOCALX="0" CLIPEDIT="1" ImageClip="" LOCALY="0" EPROF="" FLIPPEDH="0" SHADE2="100" LeftLine="0" PLINEJOIN="0" NUMDASH="0" PFILE2="" PFILE3="" TXTFILLSH="100" TXTFILL="Black" TXTSTRSH="100" PWIDTH="0.1960727232" COCOOR="0 0 0 0 2.0376 0 2.0376 0 2.0376 0 2.0376 0 2.0376 5.91573 2.0376 5.91573 2.0376 5.91573 2.0376 5.91573 0 5.91573 0 5.91573 0 5.91573 0 5.91573 0 0 0 0 " FLIPPEDV="0" RightLine="0" TEXTFLOW="1" SHADE="100" NUMGROUP="3" endArrowIndex="0" COLGAP="0" SCALETYPE="1" EMBEDDED="1" TEXTFLOW2="0" TEXTFLOW3="0" TransValue="0" TXTULP="-0.1" REVERS="0" FRTYPE="3" NUMPO="32"/>
<ITEM TXTULW="-0.1" POCOOR="0.756828 0 0.756828 0 0.873248 0 0.873248 0 0.873248 0 1.29123 0 1.63008 0.754383 1.63008 0.337749 1.63008 0.754383 1.63008 0.754383 1.63008 3.97819 1.63008 3.97819 1.63008 3.97819 1.63008 4.39483 0.873248 4.73258 1.29123 4.73258 0.873248 4.73258 0.873248 4.73258 0.756828 4.73258 0.756828 4.73258 0.756828 4.73258 0.338844 4.73258 0 3.97819 0 4.39483 0 3.97819 0 3.97819 0 0.754383 0 0.754383 0 0.754383 0 0.337749 0.756828 0 0.338844 0 " ANNAME=" rect2337" RADRECT="0.8150383088" TXTSTP="-0.1" GRTYP="0" PCOLOR="Black" TXTSTW="-0.1" ALIGN="0" BACKITEM="-1" WIDTH="1.630076618" XPOS="120.378421023622" EXTRA="0" TopLine="0" NEXTITEM="-1" PRINTABLE="1" HEIGHT="4.732582684" BASEOF="0" isTableItem="0" LANGUAGE="Czech" BACKPAGE="-1" TEXTFLOWMODE="1" TransBlendS="0" IFONT="PermianSerifTypeface Regular" TXTSCALEV="100" textPathFlipped="0" BottomLine="0" PLINEEND="0" BEXTRA="0" GROUPS="33 32 31 " TransBlend="0" NAMEDLST="" TXTOUT="1" AUTOTEXT="0" startArrowIndex="0" PICART="1" YPOS="862.665584688268" NEXTPAGE="-1" isGroupControl="0" NUMCO="16" ISIZE="10" LOCALSCX="1" TXTSCALE="100" LOCK="0" LOCALSCY="1" PRFILE="" TransValueS="0" doOverprint="0" TXTBASE="0" IRENDER="1" fillRule="1" TEXTRA="0" FLOP="0" LINESPMode="0" ROT="0" textPathType="0" RATIO="1" PLINEART="1" TXTSTYLE="0" PCOLOR2="None" COLUMNS="1" TXTSHX="5" TXTKERN="0" TXTSHY="-5" PTYPE="6" LINESP="15" TXTSTROKE="Black" ANNOTATION="0" PLTSHOW="0" DASHS="" BOOKMARK="0" REXTRA="0" LOCKR="0" DASHOFF="0" LOCALX="0" CLIPEDIT="1" ImageClip="" LOCALY="0" EPROF="" FLIPPEDH="0" SHADE2="100" LeftLine="0" PLINEJOIN="0" NUMDASH="0" PFILE2="" PFILE3="" TXTFILLSH="100" TXTFILL="Black" TXTSTRSH="100" PWIDTH="0.1960727232" COCOOR="0 0 0 0 2.0376 0 2.0376 0 2.0376 0 2.0376 0 2.0376 5.91573 2.0376 5.91573 2.0376 5.91573 2.0376 5.91573 0 5.91573 0 5.91573 0 5.91573 0 5.91573 0 0 0 0 " FLIPPEDV="0" RightLine="0" TEXTFLOW="1" SHADE="100" NUMGROUP="3" endArrowIndex="0" COLGAP="0" SCALETYPE="1" EMBEDDED="1" TEXTFLOW2="0" TEXTFLOW3="0" TransValue="0" TXTULP="-0.1" REVERS="0" FRTYPE="3" NUMPO="32"/>
<ITEM TXTULW="-0.1" POCOOR="0 0 0 0 12.5963 0 12.5963 0 12.5963 0 12.5963 0 12.5963 12.1458 12.5963 12.1458 12.5963 12.1458 12.5963 12.1458 0 12.1458 0 12.1458 0 12.1458 0 12.1458 0 0 0 0 " ANNAME=" rect1309" RADRECT="0" TXTSTP="-0.1" GRTYP="0" PCOLOR="White" TXTSTW="-0.1" ALIGN="0" BACKITEM="-1" WIDTH="12.59626083" XPOS="78.2441220236221" EXTRA="0" TopLine="0" NEXTITEM="-1" PRINTABLE="1" HEIGHT="12.14583989" BASEOF="0" isTableItem="0" LANGUAGE="Czech" BACKPAGE="-1" TEXTFLOWMODE="1" TransBlendS="0" IFONT="PermianSerifTypeface Regular" TXTSCALEV="100" textPathFlipped="0" BottomLine="0" PLINEEND="0" BEXTRA="0" GROUPS="33 32 31 " TransBlend="0" NAMEDLST="" TXTOUT="1" AUTOTEXT="0" startArrowIndex="0" PICART="1" YPOS="858.957996688267" NEXTPAGE="-1" isGroupControl="0" NUMCO="16" ISIZE="10" LOCALSCX="1" TXTSCALE="100" LOCK="0" LOCALSCY="1" PRFILE="" TransValueS="0" doOverprint="0" TXTBASE="0" IRENDER="1" fillRule="1" TEXTRA="0" FLOP="0" LINESPMode="0" ROT="0" textPathType="0" RATIO="1" PLINEART="1" TXTSTYLE="0" PCOLOR2="Black" COLUMNS="1" TXTSHX="5" TXTKERN="0" TXTSHY="-5" PTYPE="6" LINESP="15" TXTSTROKE="Black" ANNOTATION="0" PLTSHOW="0" DASHS="" BOOKMARK="0" REXTRA="0" LOCKR="0" DASHOFF="0" LOCALX="0" CLIPEDIT="1" ImageClip="" LOCALY="0" EPROF="" FLIPPEDH="0" SHADE2="100" LeftLine="0" PLINEJOIN="0" NUMDASH="0" PFILE2="" PFILE3="" TXTFILLSH="100" TXTFILL="Black" TXTSTRSH="100" PWIDTH="0.8689943407" COCOOR="0 0 0 0 15.7453 0 15.7453 0 15.7453 0 15.7453 0 15.7453 15.1823 15.7453 15.1823 15.7453 15.1823 15.7453 15.1823 0 15.1823 0 15.1823 0 15.1823 0 15.1823 0 0 0 0 " FLIPPEDV="0" RightLine="0" TEXTFLOW="1" SHADE="100" NUMGROUP="3" endArrowIndex="0" COLGAP="0" SCALETYPE="1" EMBEDDED="1" TEXTFLOW2="0" TEXTFLOW3="0" TransValue="0" TXTULP="-0.1" REVERS="0" FRTYPE="3" NUMPO="16"/>
<ITEM TXTULW="-0.1" POCOOR="1.1371 0 0.50865 0 0 0.812385 0 0.364105 0 0.812385 0 0.812385 0 14.7228 0 14.7228 0 14.7228 0 15.173 1.1371 15.5371 0.50865 15.5371 1.1371 15.5371 1.1371 15.5371 21.7443 15.5371 21.7443 15.5371 21.7443 15.5371 22.3728 15.5371 22.8814 14.7228 22.8814 15.173 22.8814 14.7228 22.8814 14.7228 22.8814 14.0259 22.8814 14.0259 22.8814 14.0259 22.8814 14.0259 27.6164 11.5828 27.6164 11.5828 27.6164 11.5828 27.6164 11.5828 27.6164 3.90924 27.6164 3.90924 27.6164 3.90924 27.6164 3.90924 22.8814 1.51515 22.8814 1.51515 22.8814 1.51515 22.8814 1.51515 22.8814 0.812385 22.8814 0.812385 22.8814 0.812385 22.8814 0.364105 21.7443 0 22.3728 0 21.7443 0 21.7443 0 1.1371 0 1.1371 0 " ANNAME=" rect1311" RADRECT="0" TXTSTP="-0.1" GRTYP="0" PCOLOR="Black" TXTSTW="-0.1" ALIGN="0" BACKITEM="-1" WIDTH="27.61636755" XPOS="90.699963023622" EXTRA="0" TopLine="0" NEXTITEM="-1" PRINTABLE="1" HEIGHT="15.53710654" BASEOF="0" isTableItem="0" LANGUAGE="Czech" BACKPAGE="-1" TEXTFLOWMODE="1" TransBlendS="0" IFONT="PermianSerifTypeface Regular" TXTSCALEV="100" textPathFlipped="0" BottomLine="0" PLINEEND="0" BEXTRA="0" GROUPS="33 32 31 " TransBlend="0" NAMEDLST="" TXTOUT="1" AUTOTEXT="0" startArrowIndex="0" PICART="1" YPOS="857.262754688268" NEXTPAGE="-1" isGroupControl="0" NUMCO="48" ISIZE="10" LOCALSCX="1" TXTSCALE="100" LOCK="0" LOCALSCY="1" PRFILE="" TransValueS="0" doOverprint="0" TXTBASE="0" IRENDER="1" fillRule="1" TEXTRA="0" FLOP="0" LINESPMode="0" ROT="0" textPathType="0" RATIO="1" PLINEART="1" TXTSTYLE="0" PCOLOR2="None" COLUMNS="1" TXTSHX="5" TXTKERN="0" TXTSHY="-5" PTYPE="6" LINESP="15" TXTSTROKE="Black" ANNOTATION="0" PLTSHOW="0" DASHS="" BOOKMARK="0" REXTRA="0" LOCKR="0" DASHOFF="0" LOCALX="0" CLIPEDIT="1" ImageClip="" LOCALY="0" EPROF="" FLIPPEDH="0" SHADE2="100" LeftLine="0" PLINEJOIN="0" NUMDASH="0" PFILE2="" PFILE3="" TXTFILLSH="100" TXTFILL="Black" TXTSTRSH="100" PWIDTH="0.1960727232" COCOOR="1.1371 0 0.50865 0 0 0.812385 0 0.364105 0 0.812385 0 0.812385 0 14.7228 0 14.7228 0 14.7228 0 15.173 1.1371 15.5371 0.50865 15.5371 1.1371 15.5371 1.1371 15.5371 21.7443 15.5371 21.7443 15.5371 21.7443 15.5371 22.3728 15.5371 22.8814 14.7228 22.8814 15.173 22.8814 14.7228 22.8814 14.7228 22.8814 14.0259 22.8814 14.0259 22.8814 14.0259 22.8814 14.0259 27.6164 11.5828 27.6164 11.5828 27.6164 11.5828 27.6164 11.5828 27.6164 3.90924 27.6164 3.90924 27.6164 3.90924 27.6164 3.90924 22.8814 1.51515 22.8814 1.51515 22.8814 1.51515 22.8814 1.51515 22.8814 0.812385 22.8814 0.812385 22.8814 0.812385 22.8814 0.364105 21.7443 0 22.3728 0 21.7443 0 21.7443 0 1.1371 0 1.1371 0 " FLIPPEDV="0" RightLine="0" TEXTFLOW="1" SHADE="100" NUMGROUP="3" endArrowIndex="0" COLGAP="0" SCALETYPE="1" EMBEDDED="1" TEXTFLOW2="0" TEXTFLOW3="0" TransValue="0" TXTULP="-0.1" REVERS="0" FRTYPE="3" NUMPO="48"/>
<ITEM TXTULW="-0.1" POCOOR="0 0 0 0 2.21351 0 2.21351 0 2.21351 0 2.21351 0 2.21351 1.67999 2.21351 1.67999 2.21351 1.67999 2.21351 1.67999 0 1.67999 0 1.67999 0 1.67999 0 1.67999 0 0 0 0 " ANNAME=" rect2229" RADRECT="0" TXTSTP="-0.1" GRTYP="0" PCOLOR="Black" TXTSTW="-0.1" ALIGN="0" BACKITEM="-1" WIDTH="2.213512151" XPOS="83.357723023622" EXTRA="0" TopLine="0" NEXTITEM="-1" PRINTABLE="1" HEIGHT="1.679987572" BASEOF="0" isTableItem="0" LANGUAGE="Czech" BACKPAGE="-1" TEXTFLOWMODE="1" TransBlendS="0" IFONT="PermianSerifTypeface Regular" TXTSCALEV="100" textPathFlipped="0" BottomLine="0" PLINEEND="0" BEXTRA="0" GROUPS="33 32 31 " TransBlend="0" NAMEDLST="" TXTOUT="1" AUTOTEXT="0" startArrowIndex="0" PICART="1" YPOS="862.329687688268" NEXTPAGE="-1" isGroupControl="0" NUMCO="16" ISIZE="10" LOCALSCX="1" TXTSCALE="100" LOCK="0" LOCALSCY="1" PRFILE="" TransValueS="0" doOverprint="0" TXTBASE="0" IRENDER="1" fillRule="1" TEXTRA="0" FLOP="0" LINESPMode="0" ROT="0" textPathType="0" RATIO="1" PLINEART="1" TXTSTYLE="0" PCOLOR2="None" COLUMNS="1" TXTSHX="5" TXTKERN="0" TXTSHY="-5" PTYPE="6" LINESP="15" TXTSTROKE="Black" ANNOTATION="0" PLTSHOW="0" DASHS="" BOOKMARK="0" REXTRA="0" LOCKR="0" DASHOFF="0" LOCALX="0" CLIPEDIT="1" ImageClip="" LOCALY="0" EPROF="" FLIPPEDH="0" SHADE2="100" LeftLine="0" PLINEJOIN="0" NUMDASH="0" PFILE2="" PFILE3="" TXTFILLSH="100" TXTFILL="Black" TXTSTRSH="100" PWIDTH="0.0193608795" COCOOR="0 0 0 0 2.76689 0 2.76689 0 2.76689 0 2.76689 0 2.76689 2.09999 2.76689 2.09999 2.76689 2.09999 2.76689 2.09999 0 2.09999 0 2.09999 0 2.09999 0 2.09999 0 0 0 0 " FLIPPEDV="0" RightLine="0" TEXTFLOW="1" SHADE="100" NUMGROUP="3" endArrowIndex="0" COLGAP="0" SCALETYPE="1" EMBEDDED="1" TEXTFLOW2="0" TEXTFLOW3="0" TransValue="0" TXTULP="-0.1" REVERS="0" FRTYPE="3" NUMPO="16"/>
<ITEM TXTULW="-0.1" POCOOR="0 0 0 0 2.21351 0 2.21351 0 2.21351 0 2.21351 0 2.21351 1.67999 2.21351 1.67999 2.21351 1.67999 2.21351 1.67999 0 1.67999 0 1.67999 0 1.67999 0 1.67999 0 0 0 0 " ANNAME=" rect2231" RADRECT="0" TXTSTP="-0.1" GRTYP="0" PCOLOR="Black" TXTSTW="-0.1" ALIGN="0" BACKITEM="-1" WIDTH="2.213512151" XPOS="83.357723023622" EXTRA="0" TopLine="0" NEXTITEM="-1" PRINTABLE="1" HEIGHT="1.679987572" BASEOF="0" isTableItem="0" LANGUAGE="Czech" BACKPAGE="-1" TEXTFLOWMODE="1" TransBlendS="0" IFONT="PermianSerifTypeface Regular" TXTSCALEV="100" textPathFlipped="0" BottomLine="0" PLINEEND="0" BEXTRA="0" GROUPS="33 32 31 " TransBlend="0" NAMEDLST="" TXTOUT="1" AUTOTEXT="0" startArrowIndex="0" PICART="1" YPOS="866.051565688268" NEXTPAGE="-1" isGroupControl="0" NUMCO="16" ISIZE="10" LOCALSCX="1" TXTSCALE="100" LOCK="0" LOCALSCY="1" PRFILE="" TransValueS="0" doOverprint="0" TXTBASE="0" IRENDER="1" fillRule="1" TEXTRA="0" FLOP="0" LINESPMode="0" ROT="0" textPathType="0" RATIO="1" PLINEART="1" TXTSTYLE="0" PCOLOR2="None" COLUMNS="1" TXTSHX="5" TXTKERN="0" TXTSHY="-5" PTYPE="6" LINESP="15" TXTSTROKE="Black" ANNOTATION="0" PLTSHOW="0" DASHS="" BOOKMARK="0" REXTRA="0" LOCKR="0" DASHOFF="0" LOCALX="0" CLIPEDIT="1" ImageClip="" LOCALY="0" EPROF="" FLIPPEDH="0" SHADE2="100" LeftLine="0" PLINEJOIN="0" NUMDASH="0" PFILE2="" PFILE3="" TXTFILLSH="100" TXTFILL="Black" TXTSTRSH="100" PWIDTH="0.0193608795" COCOOR="0 0 0 0 2.76689 0 2.76689 0 2.76689 0 2.76689 0 2.76689 2.09999 2.76689 2.09999 2.76689 2.09999 2.76689 2.09999 0 2.09999 0 2.09999 0 2.09999 0 2.09999 0 0 0 0 " FLIPPEDV="0" RightLine="0" TEXTFLOW="1" SHADE="100" NUMGROUP="3" endArrowIndex="0" COLGAP="0" SCALETYPE="1" EMBEDDED="1" TEXTFLOW2="0" TEXTFLOW3="0" TransValue="0" TXTULP="-0.1" REVERS="0" FRTYPE="3" NUMPO="16"/>
<ITEM TXTULW="-0.1" POCOOR="0.640389 0 0.640389 0 0.640389 0 0.640389 0 0.640389 0 0.994065 0 1.28078 0.638319 1.28078 0.285786 1.28078 0.638319 1.28078 0.638319 1.28078 2.53234 1.28078 2.53234 1.28078 2.53234 1.28078 2.88487 0.640389 3.17065 0.994065 3.17065 0.640389 3.17065 0.640389 3.17065 0.640389 3.17065 0.640389 3.17065 0.640389 3.17065 0.286712 3.17065 0 2.53234 0 2.88487 0 2.53234 0 2.53234 0 0.638319 0 0.638319 0 0.638319 0 0.285786 0.640389 0 0.286712 0 " ANNAME=" rect2263" RADRECT="0.6403886454" TXTSTP="-0.1" GRTYP="0" PCOLOR="Black" TXTSTW="-0.1" ALIGN="0" BACKITEM="-1" WIDTH="1.280777291" XPOS="86.866039023622" EXTRA="0" TopLine="0" NEXTITEM="-1" PRINTABLE="1" HEIGHT="3.170650303" BASEOF="0" isTableItem="0" LANGUAGE="Czech" BACKPAGE="-1" TEXTFLOWMODE="1" TransBlendS="0" IFONT="PermianSerifTypeface Regular" TXTSCALEV="100" textPathFlipped="0" BottomLine="0" PLINEEND="0" BEXTRA="0" GROUPS="33 32 31 " TransBlend="0" NAMEDLST="" TXTOUT="1" AUTOTEXT="0" startArrowIndex="0" PICART="1" YPOS="863.362493688268" NEXTPAGE="-1" isGroupControl="0" NUMCO="16" ISIZE="10" LOCALSCX="1" TXTSCALE="100" LOCK="0" LOCALSCY="1" PRFILE="" TransValueS="0" doOverprint="0" TXTBASE="0" IRENDER="1" fillRule="1" TEXTRA="0" FLOP="0" LINESPMode="0" ROT="0" textPathType="0" RATIO="1" PLINEART="1" TXTSTYLE="0" PCOLOR2="None" COLUMNS="1" TXTSHX="5" TXTKERN="0" TXTSHY="-5" PTYPE="6" LINESP="15" TXTSTROKE="Black" ANNOTATION="0" PLTSHOW="0" DASHS="" BOOKMARK="0" REXTRA="0" LOCKR="0" DASHOFF="0" LOCALX="0" CLIPEDIT="1" ImageClip="" LOCALY="0" EPROF="" FLIPPEDH="0" SHADE2="100" LeftLine="0" PLINEJOIN="0" NUMDASH="0" PFILE2="" PFILE3="" TXTFILLSH="100" TXTFILL="Black" TXTSTRSH="100" PWIDTH="0.0456771016" COCOOR="0 0 0 0 1.60097 0 1.60097 0 1.60097 0 1.60097 0 1.60097 3.96331 1.60097 3.96331 1.60097 3.96331 1.60097 3.96331 0 3.96331 0 3.96331 0 3.96331 0 3.96331 0 0 0 0 " FLIPPEDV="0" RightLine="0" TEXTFLOW="1" SHADE="100" NUMGROUP="3" endArrowIndex="0" COLGAP="0" SCALETYPE="1" EMBEDDED="1" TEXTFLOW2="0" TEXTFLOW3="0" TransValue="0" TXTULP="-0.1" REVERS="0" FRTYPE="3" NUMPO="32"/>
</SCRIBUSELEMUTF8>
|
08a01c7a6e15d74cd8cb6d9d49f141f064f3a841 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2579/CH5/EX5.17/Ex5_17.txt | abcda7cd60e630d658664d98b4e7c7f273ba837e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 800 | txt | Ex5_17.txt | //Ex:5.17
clc;
clear;
close;
f=1690*1000;// frequency in Hz
d=16*1000;// distance in m
E=15;// dielectric constant
k=5*10^-5;// conductivity in ohms/cm
Eg=0.5*10^-3;// V/m
c=3*10^8;// the speed of ligth in m/s
y=c/f;// wavelength in m
// tan(b)=(E+1)/x=(E+1)/(1.8*10^12*k/f=f*(E+1))/(1.8*10^12*k)
// then b=atan(f*(E+1))/(1.8*10^12*k))
x=1.8*10^12*k/f;
b=(atan((f*(E+1))/(k*1.8*10^12)))*(180/3.14);// in degree
p=((%pi*d)/(x*y))*cos(b*%pi/180);
p1=5.1;// approx. value of p
A=(2+0.3*p1)/(2+p1+0.6*p1^2);
A1=0.15
ps=(Eg*d)/(300*A1);
P=ps^2;// transmitter power in KW
P1=P*1000;// transmitter power in watts
printf("The transmitter power = %f watts", P1);
printf("\n since antenna efficiency is 50 percent, the transmitter must deliver 31.6049*2=63.2098 watts to the antenna."); |
a98d3ef334a2e6c6204479fc6a2361948a3d628a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3523/CH12/EX12.17.3/Ex12_3.sce | b3d58c135ed231036dbd66b06e3db921b9ba52b5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 296 | sce | Ex12_3.sce | //Example 3// Ch 12
clc;
clear;
close;
// given data
l=10*10^3;//core cable length in m
Res=0.5;//insulation resistance in Mohms
R=1.5;//core diameter in cm
R1=3;//sheath diameter in cm
resistivity=Res*2*%pi*l/log(R1/R);
printf("resistivity of the material %e Mohms.m",resistivity )
|
72ed57e733800566df38021d6c57ea9edaba18a3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3772/CH8/EX8.10/Ex8_10.sce | 2e9e0ed2190475c4865f017d89bcc0b90280e550 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 873 | sce | Ex8_10.sce | // Problem 8.10,Page no.213
clc;clear;
close;
L=75 //cm //Legth of Leaf spring
P=8 //KN //Load
y_c=20 //mm //Deflection
sigma=200 //MPa //Bending stress
E=200 //GPa //modulus of Elasticity
//b=12*t
//Calculation
//y_c=sigma*L**2*(4*E*t)**-1
//After substituting values and further simplifying we get
t=200*10**6*(75*10**-2)**2*(4*200*10**9*0.02)**-1*10**2 //Thickness of plate
b=12*t //width of plate
//Now using relation we get
//sigma=3*P*L*(2*n*b*t**2)**-1
//After substituting values and further simplifying we get
n=3*8*10**3*0.75*(2*200*10**6*0.084*0.007**2)**-1
//Y_c=L**2*(8*R)**-1
R=(L*10**-2)**2*(8*y_c*10**-3)**-1 //m //Radius of spring
//Result
printf("The thickness of plate is %.2f",t);printf(" cm")
printf("\n The width of plate is %.2f",b);printf(" cm")
printf("\n The number of plate is %d",ceil(n))
printf("\n The Radius of plate is %.2f m",R)
|
7e94cae722768647e20b493faa1809bd41b83725 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1382/CH2/EX2.43/EX_2_43.SCE | 8e9a50de66ca92467043acd02d93ba21fe5ad494 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,334 | sce | EX_2_43.SCE | // Example 2.43:(a)quiescent current (b) drift in quiescent current
clc;
clear;
close;
Beta1=50;//gain at 25 degree celsius temperture
Beta2=200;//gain at 75 degree celsius temperture
Rb=1;//base resistance in killo ohms
Re=0.1;//emitter resistance in ohms
Ico1=0.01;//leakage current at 25 degree celsius temperture in micro ampere
Ico2=0.045;//leakage current at 75 degree celsius temperture in micro ampere
Vbe1=0.7;//base to emitter voltage 25 degree celsius temperture in micro ampere
Vbe2=0.575;//base to emitter voltage 75 degree celsius temperture in micro ampere
dBeta=Beta2-Beta1;//Change in gain
dIco=Ico2-Ico1;//change in leakage current
dVbe=Vbe2-Vbe1;//change in base to emitter voltage
Ib= (1-Vbe1)/(Rb+(1+Beta1)*Re);//Base current in micro ampere
Ic=Beta1*Ib;//Collector current in milli ampere
S=((1+Beta1)*(1+(Rb/Re)))/(1+Beta1+(Rb/Re));//stability factor
S1=-(Beta1/Re*10^-3)/(1+Beta1+(Rb/Re));//stability factor
S2=(S*Ic*10^-3)/(Beta1*(1+Beta1));//stability factor
dIc= ((S*dIco*10^-6)+(S1*dVbe)+(S2*dBeta))*10^3;//change in collector current
Icn= Ic+dIc;//new collector current in milli ampere
disp(Ic,"quiescent current in milli ampere is")
disp(dIc,"quiescent current drift at temperature 75 degree celsius is in milli ampere")
disp(Icn,"new quiescent current in milli ampere is")
|
28dc68541b881bd8dc483c571bfb072344cfc593 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1364/CH8/EX8.4.1/8_4_1.sce | 9a75f8c4c8794b0f3351f31cff292c6c81ef1aca | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 294 | sce | 8_4_1.sce | clc
//initialisation of variables
g= 981 //cm/sec^2
d= 0.1 //mm
v= 35 //centi-stokes
d1= 10 //mm
d2= 1 //mm
//CALCULATIONS
u= g*d^2*100/(18*v*d1^2)
ub= (d2/d)^2*u
//RESULTS
printf (' rate for diameter 0.1 mm= %.4f cm/sec',u)
printf (' \n rate for diameter 1 mm= %.2f cm/sec',ub)
|
66acc8f9d868b792afa2ba958fe4d1fc7c3267f2 | 1b969fbb81566edd3ef2887c98b61d98b380afd4 | /Rez/bivariate-lcmsr-post_mi/bfas_co_hrz_ind_d/~BivLCM-SR-bfas_co_hrz_ind_d-PLin-VLin.tst | 3de580c8bea36df17f14902e5cf9416ac9f4b546 | [] | no_license | psdlab/life-in-time-values-and-personality | 35fbf5bbe4edd54b429a934caf289fbb0edfefee | 7f6f8e9a6c24f29faa02ee9baffbe8ae556e227e | refs/heads/master | 2020-03-24T22:08:27.964205 | 2019-03-04T17:03:26 | 2019-03-04T17:03:26 | 143,070,821 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 11,974 | tst | ~BivLCM-SR-bfas_co_hrz_ind_d-PLin-VLin.tst |
THE OPTIMIZATION ALGORITHM HAS CHANGED TO THE EM ALGORITHM.
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
1 2 3 4 5
________ ________ ________ ________ ________
1 0.285739D+00
2 -0.364342D-02 0.229751D-02
3 0.266371D-01 0.807083D-04 0.273441D+00
4 0.879109D-03 0.186505D-03 -0.222220D-02 0.231435D-02
5 0.885695D-03 -0.157757D-03 -0.758097D-03 -0.174897D-03 0.313638D-02
6 -0.195569D-03 -0.771350D-04 0.103970D-03 -0.416517D-04 0.147595D-03
7 0.178726D-02 -0.126178D-03 0.465547D-03 -0.583654D-05 0.338276D-03
8 0.157675D-03 0.642205D-04 -0.223989D-03 -0.739021D-04 0.565526D-04
9 -0.163187D+00 0.865527D-02 -0.602707D-01 0.101907D-02 0.710212D-01
10 -0.471416D-01 -0.105334D-01 0.875946D-02 -0.865812D-02 0.144949D+00
11 -0.169174D-01 -0.154789D-01 -0.179881D-01 -0.223283D-01 -0.293859D-01
12 0.471293D+00 -0.184272D-01 -0.770760D+00 0.662127D-01 -0.290666D-01
13 0.218354D-01 -0.134012D-01 0.172360D-01 0.245717D-02 0.277274D-01
14 -0.970239D-01 0.194727D-01 -0.679008D+00 -0.599176D-02 0.443863D-01
15 -0.154207D+01 -0.306804D-01 0.906625D-01 -0.570324D-01 -0.103760D+00
16 -0.338403D-01 -0.815981D-03 -0.974010D-02 0.201135D-02 -0.826658D-03
17 0.949023D-02 0.209924D-03 0.329905D-02 0.555739D-03 -0.452954D-03
18 0.978377D-01 -0.302581D-01 -0.174957D+00 -0.363221D-01 0.424279D-02
19 0.704289D-01 0.161024D-02 0.679384D-01 -0.122215D-02 -0.255400D-01
20 -0.416893D-01 -0.151773D-01 -0.120947D+01 -0.162096D-01 0.227291D-01
21 -0.971319D-01 0.146567D-02 -0.106358D+00 0.637608D-02 0.236009D-01
22 0.259590D-02 0.441714D-03 0.520169D-02 0.311611D-03 -0.515553D-04
23 -0.169587D-01 0.146968D-02 0.634353D-02 -0.821345D-02 -0.107719D-02
24 0.309229D-02 0.125729D-03 -0.122156D-02 0.249258D-03 -0.581939D-04
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
6 7 8 9 10
________ ________ ________ ________ ________
6 0.561331D-03
7 0.617501D-03 0.318475D-02
8 0.698076D-04 -0.815215D-04 0.218386D-02
9 0.506033D-02 0.153963D-01 0.213716D-01 0.287897D+02
10 0.152762D-01 0.236180D-01 0.429676D-02 0.190784D+01 0.167140D+02
11 0.203021D-01 0.577971D-01 0.377900D-01 0.359037D+01 -0.114741D+01
12 -0.417012D-01 -0.512351D-02 0.831653D-01 0.529444D+01 -0.514005D+00
13 0.458671D-01 0.964348D-01 -0.135826D-01 -0.784349D+00 0.370912D+01
14 -0.481006D-02 -0.979128D-03 0.199944D+00 0.322714D+01 0.372977D+01
15 -0.483441D-02 0.329828D-01 -0.486586D-01 -0.263027D+00 -0.744306D+01
16 0.917487D-03 0.184783D-02 -0.216913D-02 0.473064D+00 -0.484072D-01
17 -0.230802D-03 -0.553593D-03 0.350881D-03 -0.104655D+00 -0.459503D-01
18 -0.283414D-01 -0.951347D-01 -0.104718D-01 0.124879D+01 -0.127028D+01
19 -0.262578D-03 0.214933D-01 -0.340649D-02 -0.129192D+01 -0.183789D+01
20 0.288346D-03 -0.466130D-01 -0.120087D+00 0.361195D+01 0.172747D+01
21 0.676309D-03 -0.180099D-01 0.510284D-03 0.163418D+01 0.162581D+01
22 -0.153687D-03 -0.476632D-03 0.762844D-04 -0.215608D-01 -0.862284D-02
23 -0.508614D-03 -0.205666D-02 0.220403D-02 -0.605867D-01 0.212966D-02
24 0.638464D-04 0.200694D-03 -0.535985D-03 -0.113487D-01 -0.180819D-01
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
11 12 13 14 15
________ ________ ________ ________ ________
11 0.355691D+02
12 0.220469D+01 0.221272D+03
13 0.995068D+00 -0.956194D+00 0.125227D+02
14 0.460541D+01 0.174569D+02 0.116348D+01 0.658893D+02
15 -0.187644D+01 0.100901D+02 -0.804273D+00 -0.786789D+01 0.197243D+03
16 0.185028D+00 -0.549008D-02 0.964937D-01 -0.438124D+00 0.143917D+01
17 -0.162965D-01 -0.759464D-01 -0.378096D-01 0.279998D-01 -0.101880D+01
18 -0.331349D+01 0.574345D+01 -0.457996D+01 -0.583152D+01 0.143460D+02
19 0.244965D+01 0.800671D+00 0.438485D+00 -0.164862D+01 0.212049D+01
20 0.583555D+01 -0.418866D+02 -0.136087D+01 -0.255979D+02 0.182113D+02
21 -0.180147D+01 -0.341001D-01 -0.405498D+00 0.137026D+01 -0.205964D+01
22 -0.717323D-01 -0.170750D-01 -0.259051D-01 0.711440D-02 -0.375093D-01
23 0.498832D+00 0.264292D+00 -0.661408D-01 0.357654D+00 0.105246D+00
24 -0.131710D+00 -0.492972D-01 -0.514488D-02 -0.822575D-01 -0.977983D-01
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
16 17 18 19 20
________ ________ ________ ________ ________
16 0.336390D+00
17 -0.250569D-01 0.126782D-01
18 -0.597341D-01 -0.559906D-01 0.134077D+03
19 0.440478D-01 0.882344D-03 -0.585931D+00 0.375778D+01
20 0.190278D+00 -0.149511D+00 0.264359D+02 -0.664423D+00 0.239930D+03
21 0.515957D-01 -0.268270D-02 0.282719D+01 -0.355865D+01 0.146726D+01
22 0.221705D-03 0.118068D-02 -0.694358D+00 -0.740910D-02 -0.230695D+00
23 -0.371081D-02 0.397590D-03 0.475270D+00 0.201668D-01 0.273668D+01
24 0.222249D-02 0.105882D-02 -0.186773D+00 -0.964349D-02 -0.123020D+01
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
21 22 23 24
________ ________ ________ ________
21 0.422820D+01
22 -0.290949D-01 0.817213D-02
23 0.184045D-02 -0.650230D-02 0.426347D+00
24 0.519851D-03 0.212325D-02 -0.386006D-01 0.153540D-01
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
1 2 3 4 5
________ ________ ________ ________ ________
1 1.000
2 -0.142 1.000
3 0.095 0.003 1.000
4 0.034 0.081 -0.088 1.000
5 0.030 -0.059 -0.026 -0.065 1.000
6 -0.015 -0.068 0.008 -0.037 0.111
7 0.059 -0.047 0.016 -0.002 0.107
8 0.006 0.029 -0.009 -0.033 0.022
9 -0.057 0.034 -0.021 0.004 0.236
10 -0.022 -0.054 0.004 -0.044 0.633
11 -0.005 -0.054 -0.006 -0.078 -0.088
12 0.059 -0.026 -0.099 0.093 -0.035
13 0.012 -0.079 0.009 0.014 0.140
14 -0.022 0.050 -0.160 -0.015 0.098
15 -0.205 -0.046 0.012 -0.084 -0.132
16 -0.109 -0.029 -0.032 0.072 -0.025
17 0.158 0.039 0.056 0.103 -0.072
18 0.016 -0.055 -0.029 -0.065 0.007
19 0.068 0.017 0.067 -0.013 -0.235
20 -0.005 -0.020 -0.149 -0.022 0.026
21 -0.088 0.015 -0.099 0.064 0.205
22 0.054 0.102 0.110 0.072 -0.010
23 -0.049 0.047 0.019 -0.261 -0.029
24 0.047 0.021 -0.019 0.042 -0.008
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
6 7 8 9 10
________ ________ ________ ________ ________
6 1.000
7 0.462 1.000
8 0.063 -0.031 1.000
9 0.040 0.051 0.085 1.000
10 0.158 0.102 0.022 0.087 1.000
11 0.144 0.172 0.136 0.112 -0.047
12 -0.118 -0.006 0.120 0.066 -0.008
13 0.547 0.483 -0.082 -0.041 0.256
14 -0.025 -0.002 0.527 0.074 0.112
15 -0.015 0.042 -0.074 -0.003 -0.130
16 0.067 0.056 -0.080 0.152 -0.020
17 -0.087 -0.087 0.067 -0.173 -0.100
18 -0.103 -0.146 -0.019 0.020 -0.027
19 -0.006 0.196 -0.038 -0.124 -0.232
20 0.001 -0.053 -0.166 0.043 0.027
21 0.014 -0.155 0.005 0.148 0.193
22 -0.072 -0.093 0.018 -0.044 -0.023
23 -0.033 -0.056 0.072 -0.017 0.001
24 0.022 0.029 -0.093 -0.017 -0.036
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
11 12 13 14 15
________ ________ ________ ________ ________
11 1.000
12 0.025 1.000
13 0.047 -0.018 1.000
14 0.095 0.145 0.041 1.000
15 -0.022 0.048 -0.016 -0.069 1.000
16 0.053 -0.001 0.047 -0.093 0.177
17 -0.024 -0.045 -0.095 0.031 -0.644
18 -0.048 0.033 -0.112 -0.062 0.088
19 0.212 0.028 0.064 -0.105 0.078
20 0.063 -0.182 -0.025 -0.204 0.084
21 -0.147 -0.001 -0.056 0.082 -0.071
22 -0.133 -0.013 -0.081 0.010 -0.030
23 0.128 0.027 -0.029 0.067 0.011
24 -0.178 -0.027 -0.012 -0.082 -0.056
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
16 17 18 19 20
________ ________ ________ ________ ________
16 1.000
17 -0.384 1.000
18 -0.009 -0.043 1.000
19 0.039 0.004 -0.026 1.000
20 0.021 -0.086 0.147 -0.022 1.000
21 0.043 -0.012 0.119 -0.893 0.046
22 0.004 0.116 -0.663 -0.042 -0.165
23 -0.010 0.005 0.063 0.016 0.271
24 0.031 0.076 -0.130 -0.040 -0.641
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
21 22 23 24
________ ________ ________ ________
21 1.000
22 -0.157 1.000
23 0.001 -0.110 1.000
24 0.002 0.190 -0.477 1.000
|
4c6b51eba5479694692f3f46afeca2acdb821d9a | 449d555969bfd7befe906877abab098c6e63a0e8 | /446/CH4/EX4.6/4_6.sce | e8d685f14aa6bf0d2760f981dcd588d0c7112c8a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 592 | sce | 4_6.sce | clc
clear
disp('Ex-4.6')
printf('The uncertainity in the poisition of electron after it passes through the slit is reduced to width of the slit\n delx=a\n');
printf('The uncertainity in momentum = h/a\n');
printf('Position of landing(angle t) = sin t = tan t = delz/dely =(h/a)/2*pi*a= w/2*pi*a \nwhere w=wavelenghth\n');
printf('Rewriting the above expression a*sint = w/(2*pi)\n which is similar to a*sint = w (neglect 2*pi)as found out by first minimum in diffraction by a slit of width a');
disp('It proves a close connection between wave behaviour and uncertainity principle'); |
bb8e373d4e848972096148c37e714b66aeabcf6b | b513eb49824ff62ddd2289a920c92cfcb362d5f2 | /magister/course_1/litvinov/course_project/scilab/plot.sce | 7dc99811afbcdf146713bde181637055a0ecc0d8 | [] | no_license | kirillin/ifmo | 6264ac42ec2031777145b39d4930f2f645e1d316 | 633919ba09d43814298c3a2145d5d6f72b5b068e | refs/heads/master | 2021-01-12T09:32:27.270130 | 2018-11-18T12:17:46 | 2018-11-18T12:17:46 | 76,181,268 | 3 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 222 | sce | plot.sce | plot([0,1], [0.95, 0.95], "b--")
plot([0,1], [1.05, 1.05], "b--")
plot([t_p, t_p], [0, 2], "r--")
plot([0,1], [1.1, 1.1], "r--")
plot([0,1], [1, 1], "s-")
plot(Q.time, Q.values(:,1), "k")
plot(Q.time, Q.values(:,4), "b")
|
fe1dc9a7bf1386be14df20a4cb695149f8ab66d5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1670/CH7/EX7.2/7_2.sce | 041900836cce27f13e746b8e720bc8f767a9cb1a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 594 | sce | 7_2.sce | //Example 7.2
//Differentiation
//Page no. 232
clc;close;clear;
t=[1,1.1,1.2,1.3,1.4]
I=[8.2277,7.2428,5.9908,4.5260,2.9122]
L=0.05;R=2;h=0.1;
deff('y=f(x)','y=L*i1(x)+R*I(x)')
deff('y=f1(x,h1)','y=(I(x+h1)-I(x-h1))/(2*h)')
deff('y=f2(x,h1)','y=(-I(x+2*h1)+8*I(x+h1)-8*I(x-h1)+I(x-2*h1))/(12*h)')
x=3;h1=1;
i1(x)=f1(x,h1)
E=f(x)
printf('Using Centred Tendency of Order O(h2)\n')
printf('I`(1.2) = %g\n',i1(x))
printf('\n E(1.2) = %g',E)
i1(x)=f2(x,h1)
E=f(x)
printf('\n\n\nUsing Centred Tendency of Order O(h4)\n')
printf('I`(1.2) = %g\n',i1(x))
printf('\n E(1.2) = %g',E) |
905934c508652f15c4b7a9d3d23bec5417f93ab7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2411/CH3/EX3.a.03/Ex3a_a_3.sce | 82a92498f0891dc63184ad925d7bc871d037b9d1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,005 | sce | Ex3a_a_3.sce | // Scilab Code Ex3a.a.3:Page-133 (2008)
clc; clear;
v1 = 80; // Velocity of the body at 3 cm displacement, cm/s
v2 = 60; // Velocity of the body at 4 cm displacement, cm/s
x1 = 3; // Displacement of the body at velocity of 80 cm/s
x2 = 4; // Displacement of the body at velocity of 60 cm/s
// As v = omega*sqrt(a^2 - x^2), solving for a
a = poly(0, 'a');
a = roots(v1^2*(a^2-16) - v2^2*(a^2 - 9));
omega = v1/sqrt(a(1)^2 - x1^2); // Angular ferquency of the oscillations, rad/s
x = a(1); // Maximum displacement, cm
// As x = a*sin(omega*t), solving for t
t_ex = asin(x/a(1))/omega; // Time taken to reach the +ve extremity, s
d = a(1) - 2.5; // Distance of the point from the mean position, cm
t = asin(d/a(1))/omega; // Time taken to travel from mean position to positive extremity, s
printf("\nThe time taken to travel from 2.5 cm from +ve extremity = %5.3f s", t_ex - t);
// Result
// The time taken to travel from 2.5 cm from +ve extremity = 0.052 s |
f2dd51fefe5986d8e9b971d1aa69e72d05637dcf | 449d555969bfd7befe906877abab098c6e63a0e8 | /863/CH6/EX6.2/Ex6_2.txt | bd32f25ccf8a545fc96746ce345579c0e786c86f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 592 | txt | Ex6_2.txt | //Caption:Find circuit components for designing a schmitt trigger circuit
//Ex6.2
clc;
clear;
close;
u=5//Upper trigger point voltage(in volts)
Vbe=0.7//Base emitter voltage(in volts)
I=2//Collector current(in mA)
hfe=100
Vcc=12//Collector voltage(in volt)
Vce=0.2//Saturated collector emitter voltage(in volts)
l=3//Lower trigger point voltage(in volts)
Ve=u-Vbe
Re=Ve/I
Rc=(Vcc-Ve-Vce)/I
i=I/10
R2=u/i
Ib2=I/hfe
I2=u/i
It=Ib2+i
r=(Vcc-u)/It
I1=l/R2
Ie=(l-Vbe)/Re
Rc1=Vcc-(I1*(r+R2))/Ie
R1=r-Rc1
disp(R1,R2,Rc1,Re,'Circuit components are Re,Rc1,R2,R1(in kilo ohm)=') |
a5f9846f06b26d89c778bc489490624d7ebc7887 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2375/CH2/EX2.18/ex2_18.sce | c61b720433d615bd4229e80402bca5a04b1455d9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,500 | sce | ex2_18.sce | // Exa 2.18
clc;
clear;
close;
format('v',6)
// Given data
V_CC= 12;// in V
bita_min= 30;
R1= 15;// in k ohm
R2= 100;// in k ohm
R_C= 2.2;// in kohm
V_BB= -12;// in V
V_BE= 0.7;// in V
// Part (i)
Vi= 12;// in V
V_BEsat= 0.8;// in V
V_CEsat= 0.2;// in V
// Applying KVL to B-E circuit, Vi= I1*R1+V_BEsat or
I1= (Vi-V_BEsat)/R1;// in mA
// Applying KVL to -12 V supply,
I2= (V_BEsat-V_BB)/R2;// in mA
// Applying KVL to input loop,
I_B= I1-I2;// in mA
// Applying KVL to output loop, V_CC= I_C*R_C+V_CEsat or
I_C= (V_CC-V_CEsat)/R_C;// in mA
I_Bmin= I_C/bita_min;// in mA
if I_B>I_Bmin then
disp("Part (a) :")
disp("As the value of I_B ("+string(I_B)+" mA) is greater than the value of I_Bmin ("+string(I_Bmin)+" mA)")
disp("Hence the transistor is in saturation region")
end
Vo= V_CC-I_C*R_C;// in V
disp(Vo,"The output voltage in volts is : ")
// Part (b)
I2= (V_CC+V_BE)/R2;// in mA
// and I1= (V_CC-V_BE)/R1;// in mA (i)
I_B= I_Bmin;// in mA
I1= I2+I_Bmin;// in mA
// Now from eq(i)
R1= (V_CC-V_BE)/I1;// in k ohm
disp("Part (b)")
disp(R1,"The value of R1 in k ohm is : ")
// Part (c)
I_C= 0;// in mA
Vo= V_CC-I_C*R_C;// in V
disp("Part (c) : Transistor is in cutoff")
disp(Vo,"The value of Vo in volts is : ")
// Note: There is some difference between coding output and answer of the book. This is why because in the book the calculate value of I_C is 5.36 mA/ 30 = 0.178 mA while accurate value is 0.179 mA
|
82c260f0d2feae3e1ba6622f9edd32153dfe54bd | 449d555969bfd7befe906877abab098c6e63a0e8 | /587/CH14/EX14.8/example14_8.sce | 4b2affd77459ce950e67f94f338a5e91394236e3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,269 | sce | example14_8.sce | clear;
clc;
//Example14.8[Venting of Helium into the Atmosphere by Diffusion]
//Given:-
D_AB=7.2*10^(-5);//Diffusion coefficient of air in helium[m^2/s]
M_He=4,M_air=29;//Molar masses of helium and air[kg/kmol]
D=0.005;//Internal diameter of tube[m]
L=15;//Length of tube[m]
R1=8.314;//Universal Gas Constant[kPa.m^3/kmol.K]
R2=2.0769;//Universal Gas Constant[kPa.m^3/kg.K]
T=298;///Ambient temperature[K]
//Solution:-
A=%pi*(D^2)/4;//Flow area[m^2]
P_He0=1,P_HeL=0;//Pressure of helium at x=0 i.e. bottom of tube and at x=L i.e. at the top of the tube [atm]
N_He=D_AB*A*(P_He0-P_HeL)*(101.3)/(R1*T*L);
disp("kmol/s",N_He,"The molar flow rate of Helium is")
m_He=N_He*M_He;
disp("kg/s",m_He,"Mass flow rate of helium is")
N_air=-N_He;//Equimolar counter diffusion process
m_air=N_air*M_air;
disp("kg/s",m_air,"The flow rate of air into the pipeline is")
w_air=m_air/(m_air+m_He);
disp("which is negligible",w_air,"Mass fraction of air in the helium pipeline is")
m_net=m_He+m_air;//[kg/s]
//Taking density of mixture at x=0 to be the density of helium as the mass fraction of air at the bottom is very small
rho=P_He0*101.325/(R2*T);//[kg/m^3]
V=m_net/(rho*A);//[m/s]
disp("m/s",V,"The average flow velocity at the bottom of the tube is")
|
0abe12610f59070b5589d1f2ccbb1999865553d2 | e21414fce9a71729f9763fa69473ca6fba9fa299 | /nand2tetris/projects/11/ConvertToBin/test.tst | b5c5f21ce72838636d1df90882e31af26786e501 | [] | no_license | xiema/teocs | 3b5ee716c4f1113bbbb933930cb389db07d95f97 | b067bf8da007d01d9ebe1c02960a4e443c01ebe6 | refs/heads/master | 2022-07-27T11:11:05.710259 | 2022-06-13T03:12:06 | 2022-06-13T03:12:06 | 245,161,160 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 42 | tst | test.tst | set RAM[8000] 54513;
repeat {
vmstep;
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.