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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
98a02f9c03f2f7694c66b3eb5deb9402ed3b13eb | 0592c9e4cfbb77a0755aff6f0c798d9fe31f6ff4 | /nsp/scripts/mpinsp/premia.sce | 9b3515eb0c33e7a998b7abc5dddadff2156a5848 | [] | no_license | FinancialEngineerLab/premia-13-cpp_FICC | e19caa6a9cadb4ad1361053efc0dfc9418071cf9 | e271da627dbfc8c2c1f7e9f700766544f64c72b2 | refs/heads/master | 2023-03-16T11:11:26.830681 | 2016-04-19T05:58:16 | 2016-04-19T05:58:16 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 362 | sce | premia.sce | [test,ilib] = c_link( "libpremiamodel_Interf");
if ~test then
exec('../../loader.sce');
premia_init();
end
load('test-premia-1.bin');
L=P.get_option_values[];
// Maturity
if exists('Maturity') then L(2)(3)=Maturity;end
if exists('Strike') then L(3)(3)=Strike;end
P.set_option_values[L];
P.compute[];
L=P.get_method_results[];
save('/tmp/test-res.bin',L);
|
88408a7f4c66689cc3ba978ee84fa7852c53f7e5 | 4e9df66700bcf9688afe22df0009cdf4a17bc61f | /Scilab_Lab/examples/ex2-5.sci | bba7c1a5f4bc9bf9b351b8fbdd2b136c3710216b | [] | no_license | vmebus/workspace | e18947a1f967e6a3a7dfbc5cce6f92380d8637fc | f251b8a8e6cec30a77c7ef7b4103c5ee6e6d1393 | refs/heads/master | 2021-01-09T21:53:45.183564 | 2015-10-03T06:42:23 | 2015-10-03T06:42:23 | 36,120,248 | 0 | 0 | null | null | null | null | BIG5 | Scilab | false | false | 2,768 | sci | ex2-5.sci | exec t2f.sci
exec f2t.sci
exec eyes.sci
N=2^13;
L=16;
M=N/L;
Rs=2;
Ts=1/Rs;
dt=Ts/L;
fs=1/dt;
T=N*dt;
df=1/T;
Bs=N*df/2;
f=[-fs/2+df/2:df:fs/2];
t=[-T/2+dt/2:dt:T/2];
alpha=0.5;
Hcos=zeros(1,N);
ii=find(abs(f)>(1-alpha)/(2*Ts)&abs(f)<=(1+alpha)/(2*Ts));
Hcos(ii)=Ts/2*(1+cos(%pi*Ts/(alpha+%eps)*(abs(f(ii))-(1-alpha)/(2*Ts))));
ii=find(abs(f)<=(1-alpha)/(2*Ts));
Hcos(ii)=Ts;
Hcoss=sqrt(Hcos);
Hcosr=Hcoss;
EP1=zeros(1,N);
EP2=zeros(1,N);
EP3=zeros(1,N);
EP4=zeros(1,N);
for loop1=1:20;
Eb_N0(loop1)=(loop1-1);
eb_n0(loop1)=10^(Eb_N0(loop1)/10);
Eb=1;
n0=Eb/eb_n0(loop1);
sita=n0*Bs;
n_err=0;
for loop2=1:200;
a=sign(rand(1,M,"normal"));
s1=zeros(1,N);
s1(1:L:N)=a/dt;
S1=t2f(s1,fs);
P1=abs(S1).^2/T;
EP1=EP1*(1-1/loop2)+P1/loop2;
S2=S1.*Hcoss;
s2=real(f2t(S2,fs));
P2=abs(S2).^2/T;
EP2=EP2*(1-1/loop2)+P2/loop2;
S=S2.*Hcosr;
y=real(f2t(S,fs));
nw=sqrt(sita)*rand(1,N,"normal");
sr=s2+nw;
SR=t2f(sr,fs);
S3=SR.*Hcosr;
s3=real(f2t(S3,fs));
P3=abs(S3).^2/T;
EP3=EP3*(1-1/loop2)+P3/loop2;
yy=s3(1:L:N);
aa=sign(yy);;
b=zeros(1,N);
b(L/2:L:N)=aa/dt;
B=t2f(b,fs);
P4=abs(B).^2/T;
EP4=EP4*(1-1/loop2)+P4/loop2;
n_err=n_err+length(find(aa~=a));
end
Pe(loop1)=n_err/(M*loop2);
xset("window",11)
plot(Eb_N0,log10(Pe+%eps),'g');
xlabel('Eb_N0');ylabel('Pe');
title("Pe~Eb_N0");
eb_n0=10.^(Eb_N0/10);
set(gca(),"auto_clear","off");
plot(Eb_N0,log10(0.5*erfc(sqrt(eb_n0))));
mtlb_axis([0,15,-3.5,0]);
xlabel('Eb_N0');ylabel('Pe');
legend('實際','理論');
set(gca(),"auto_clear","on");
end
xset("window",1)
plot(t,s1)
title("發送端輸入碼序列波形")
xlabel("t(ms)")
ylabel("s1(t)(V)")
mtlb_axis([-6,+6,min(s1),max(s1)])
xgrid
xset("window",2)
plot(f,EP1)
title("發送端輸入碼序列功率譜")
xlabel("f(kHz)")
ylabel("W/kHz")
mtlb_axis([-6,+6,0,max(EP1)])
xgrid
xset("window",3)
plot(t,s2)
title("發送濾波器輸出波形")
xlabel("t(ms)")
ylabel("s1(t)(V)")
mtlb_axis([-10,+10,-4,+4])
xgrid
xset("window",4)
plot(f,EP2)
title("發送濾波器輸出功率譜")
xlabel("f(kHz)")
ylabel("W/kHz")
mtlb_axis([-2,+2,0,max(EP2)])
xgrid
xset("window",5)
plot(t,sr)
title("接收濾波器輸入波形")
xlabel("t(ms)")
ylabel("s1(t)(V)")
mtlb_axis([-10,+10,-4,+4])
xgrid
xset("window",6)
plot(f,EP3)
title("接收濾波器輸出功率譜")
xlabel("f(kHz)")
ylabel("W/kHz")
mtlb_axis([-2,+2,0,max(EP3)])
xgrid
xset("window",7)
plot(t,b)
title("接收端採樣判決後碼序列波形")
xlabel("t(ms)")
ylabel("b(t)(V)")
mtlb_axis([-6,+6,min(s1),max(s1)])
xgrid
xset("window",8)
plot(f,EP4)
title("接收端採樣判決後碼序列功率譜")
xlabel("f(kHz)")
ylabel("W/kHz")
mtlb_axis([-6,+6,0,max(EP4)])
xgrid
xset("window",9)
title("不加噪聲接收眼圖")
eyes(y,L,3)
xgrid
xset("window",10)
title("加噪聲接收眼圖")
eyes(s3,L,3)
xgrid
|
aafe02b2e00c8a60ee63f9791ef1a5ba3ca555cc | 194d4cafa290b2fdf3aa87e18ddadcfff70a70d8 | /Rheo.sce | 71962a4057855f93ef2a45c4529377a96b355b9d | [] | no_license | KomalT/tryout60 | cc43d4a5d96b5525e691a907c7ad8c7e61004a3c | ef4cc3e641a77c2cea565035cf033536d91e29ea | refs/heads/master | 2016-08-12T19:05:56.548794 | 2016-05-02T06:15:37 | 2016-05-02T06:15:37 | 55,436,025 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 571 | sce | Rheo.sce |
clc;clear;
x=[0 .002 .006 .012 .018 .024]//m
v=[0 .287 .899 1.915 3.048 4.299]//m/s
Meu=1.8*10^(-5);
plot(x,v,'+')
Z=[x;v];
k0=170;
function v=datafit1(x,k)
v=k*x;
endfunction
for i=1:1:6
yy(i)=datafit1(x(i),k0);
end
function e = myerror(k,Z)
x=Z(1);v=Z(2);
e= v - datafit1(x,k);
endfunction
//disp(yy)
//for i=1:1:6
// yy(i)=myerror(k0,Z);
//end
//disp(yy)
[k,err]=datafit(myerror,Z,k0);
disp(k)
disp(err)
for i=1:1:6
yy(i)=datafit1(x(i),k);
end
plot(x,yy,'g')
x=0;
Tow0=Meu*derivative(datafit1,x)
disp(Tow0)
|
74038a04d89813eeabb7e7563cc1dc961cf953fe | 449d555969bfd7befe906877abab098c6e63a0e8 | /116/CH8/EX8.3/exa8_3.sce | 64197ad3cea786590c1784366ecdf0357d47ea18 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 473 | sce | exa8_3.sce |
//Example 8.3
//Page 393
//Refer to table 8.1 on page 392, also to figure 8.6 on page 391
smf=16
smf=16//dispersion co-efficient of SMF at 1550nm
sw=0.4//spectral width of the source
BDP=[250/(smf*sw)]//assuming line code as NRZ
disp('The BDP of the DS SMF system is determined as')
smf=3.5//dispersion co-efficient of DS SMF at 1550nm
BDP=[250/(smf*sw)]//assuming line code as NRZ
//Result
//BDP = 39 Gbps=km (SMF)
//BDP = 179 Gbps-km (DS SMF)
|
933735915c94ac59a9280de770fc0fd715cb480c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2240/CH29/EX28.4/EX28_4.sce | 8bc7a91a8e4451dcacea9131c10ddf469b8124a2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 367 | sce | EX28_4.sce | // Grob's Basic Electronics 11e
// Chapter No. 28
// Example No. 28_4
clc; clear;
// A transistor has the following currents: Ie is 15 mA, Ib is 60 uA. Calculate Alpha(dc).
// Given data
Ie = 15*10^-3; // Emitter current=15 mAmps
Ib = 60*10^-6; // Base current=60 uAmps
Ic = Ie-Ib;
Adc = Ic/Ie;
disp (Adc,'The Value of Alpha(dc) is')
|
5dee18432e1616102a914ab0bd722b7362496f3a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3665/CH7/EX7.2/Ex7_2.sce | c4588d2b4672549308f17d22590af5a461e8c98a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 589 | sce | Ex7_2.sce | clc//
//
//
//Variable declaration
d=8.92*10^3; //density(kg/m^3)
rho=1.73*10^-8; //resistivity of copper(ohm m)
NA=6.02*10^26; //avagadro number(per k mol)
Aw=63.5; //atomic weight
m=9.1*10^-31; //mass(kg)
e=1.6*10^-19; //charge(coulomb)
//Calculation
n=d*NA/Aw; //density of electrons
mew=1/(rho*n*e); //mobility of electrons(m^2/Vs)
t=m/(n*e^2*rho); //average time of collision(s)
//Result
printf("\n mobility of electrons is %0.3f *10^-2 m V-1 s-1",mew*10^2)
printf("\n average time of collision is %0.2f *10^-14 s",t*10^14)
|
c8e7c67c6c3afbe9730bcc94380d2522036e399a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3784/CH2/EX2.10/Ex2_10.sce | 0f0243c3173468c5428be54e7734b9287ccec68f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 418 | sce | Ex2_10.sce | clc
//variable initialization
P=80e+3 //power in Watt
Va1=440 //voltage in volts
N1=800 //speed in rpm
N2=600 //speed in rpm
Eb1=410 //Given back emf in volts
Vrms=415 //voltage in volts
//solution
Eb2=Eb1*(N2/N1)
Ia1=P/Va1
Ra=(Va1-Eb1)/Ia1
Ia2=0.75*Ia1//As motor is operating at 75% of rated torque
Va2=Eb2+(Ia2*Ra)
a=acosd(Va2*%pi/(3*sqrt(2)*Vrms))
printf('\n\n The Triggering Angle=%0.1f\n\n',a)
|
27ec5c874fbdf067e6e7ef69a42b27b2dadd9202 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1544/CH6/EX6.5/Ch06Ex5.sce | 2376d04143b72ee9baed01696339c403a66bb367 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 313 | sce | Ch06Ex5.sce | // Scilab code Ex6.5: Pg 206 (2008)
clc; clear;
V = 240; // Rms vlaue of alternating voltage, volt
V_m = sqrt(2)*V; // Peak value of alternating voltage, volt
printf("\nThe amplitude of household %3d volt supply = %5.1f volt", V, V_m);
// Result
// The amplitude of household 240 volt supply = 339.4 volt
|
35d4bbae4d09b6655c37ad4ee138667d55497167 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2141/CH12/EX12.19/Ex12_19.sce | 73cd00b5c8f2f41236896df093d618f44b9d8e92 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 507 | sce | Ex12_19.sce |
clc
//initialisation of variables
Tair=260*720 //R
Tprod=1520*1980 //R
Vair=300 //ft/sec
Vprod=450 //ft/sec
Tfuel=120 //F
FA=0.0211 //lbm fuel/lbm air
Hr=-105076+6355 //Btu/lb mole fuel
Hp=-2174656+54243 //Btu/lbm mole fuel
P=114.23 //mole
m=4.76 //mole air
n=47888//mole
q=28.95//mole
p1=0.0211//mole
//CALCULATIONS
N=-(-Hr+Hp)/n//moles O2/mole fuel
M=m*N //mole
FAIdeal=P/(M*q)
n=(FAIdeal/p1)*100//per cent
//RESULTS
printf('The comustion chamber of a gas turbine=% f per cent',n)
|
e4ee90a06e6ef3c427996b95cd1a37e7e18fe27c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1172/CH6/EX6.10/Example6_10.sce | 95eaefc194e9e7c5b98152e07edb8ea7e9bbf832 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 378 | sce | Example6_10.sce | clc
//Given that
c = 3e8 // speed of light in m/s
m_0 = 1 // atomic mass in amu
m = 3 * m_0 // relativistic mass
// sample problem 10 page No. 225
printf("\n \n\n # Problem 10 # \n")
printf("\n Standard formula used l = l_o * sqrt ( 1- (v/c)^2)")
v = c * sqrt(1- (m_0 / m)^2) // calculation of Velocity of particle
printf ("\n Velocity of particle is %f c.", v / c )
|
2b110757e34108576583a74e3f7eab621ed024da | 9c56678e62b7b8200d1d54c7b1462db3010168c5 | /scilab_proj/function6.sce | 1236ce8fee7a62564ddb1dbaf24b189b9cd699ca | [] | no_license | rajroshansharma/scilab_project | 5a6b91215bd6d1c4abf652bb440dc6558b3ca607 | b80d3dcb9eef67f0755e05adbef4a7fa3c333afa | refs/heads/master | 2022-11-07T06:40:16.372703 | 2020-06-26T06:23:31 | 2020-06-26T06:23:31 | 275,082,037 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,127 | sce | function6.sce | //programm for array addittion
x = [3,4,3,3];
y = [3,44,25,3];
b =[];
function b = addmat(x,y)
if length(x) <> length(y) then
disp("addition cant be performed");
else
for i=1:length(x)
b(i) = x(i) + y(i);
disp(b(i));
end
end
endfunction
//programm for array multiplication
function b = mulmat(x,y)
if length(x) <> length(y) then
disp("multiplication cant be performed");
else
for i=1:length(x)
b(i) = x(i) * y(i);
disp(b(i));
end
end
endfunction
//programm for subtraction
function b = submat(x,y)
if length(x) <> length(y) then
disp("Subtraction cant be performed");
else
for i=1:length(x)
b(i) = x(i) - y(i);
disp(b(i));
end
end
endfunction
//programm for division
function b = divmat(x,y)
if length(x) <> length(y) then
disp("division cant be performed");
else
for i=1:length(x)
b(i) = x(i) / y(i);
disp(b(i));
end
end
endfunction
|
d152bdc3abb9a6195b938ece6c54754b7ee14623 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3819/CH4/EX4.2/Ex4_2.sce | 771b3f377dd6d7f404dd1a12bfd82c27d71f98f3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 537 | sce | Ex4_2.sce | // A Textbook of Fluid Mecahnics and Hydraulic Machines - By R K Bansal
// Chapter 4-Buoyancy and Floatation
// Problem 4.2
//Given Data Set in the Problem
dens=1000
g=9.81
d=0.6
l=5
SG=0.7
r=0.3
//W=theta angle
//calculations
//Equating the Area of ADCA from using geometry,we get;
function[f] = F(W)
f=0.1979-((%pi*0.3^2*(1-W/180))+0.3^2*cos(W/180*%pi)*sin(W/180*%pi))
endfunction
W= 10;
W = fsolve(W,F)
//so, h=r+r*cos(theta)
h=r+r*cos(W/180*%pi)
mprintf("\nThe depth of wooden log in water is %f m\n",h)
|
351f320fcae9654c25318eb8fbbb02d272ea21bb | 449d555969bfd7befe906877abab098c6e63a0e8 | /2498/CH1/EX1.9/ex1_9.sce | 35eccbefabbb68bc5fcaf757eb2aa051c0775f6f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 253 | sce | ex1_9.sce | // Exa 1.9
clc;
clear;
close;
format('v',6)
// Given data
N_D= 5*10^28/(2*10^8);
// The Fermi level, E_F= E_C if,
N_C= N_D;
// Formula N_C= 4.82*10^21*T^(3/2)
T= (N_C/(4.82*10^21))^(2/3);// in K
disp(T,"The value of temperature in K is : ")
|
33f39c907caf2b26c145969f7f476abb31575f8e | 449d555969bfd7befe906877abab098c6e63a0e8 | /3860/CH2/EX2.11/Ex2_11.sce | 17d2bde3bdf82f61cb6a7fd3da06f0627eef193c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 347 | sce | Ex2_11.sce | //Example 2.11: Finding full adder expressions
clc // Clears the console
disp('For the full adder C is used as Cin ')
disp('Cout = a''bc + ab''c + abc'' + abc')
disp('s = a''b''c + a''bc'' + ab''c'' + abc')
disp('The simplified expression of Cout is as given below')
disp('Cout = bc + ac + ab')
disp('s is already in minimum SOP form')
|
591953d3f3def5bfc84fe2bdc5f144130da76564 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2666/CH12/EX12.5/12_5.sce | f67c3c558eebc8b5c0c031b4ca5378958ddd5056 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 298 | sce | 12_5.sce | clc
//initialisation of variables
p=5//ft
p1=200//ft
t1=70//F
t2=10//F
h1=23.90//ft
h2=79.36//hp
s1=0.17015//ft
p2=84.82//psia
h3=87.87//Btu
g=42.4//ft
//CALCULATIONS
W=p*p1/(h2-h1)//lb per min
W1=W*(h3-h2)//Btu per min
H=W1/g//hp
//RESULTS
printf('the horse power is =% f hp',H)
|
02923b66fa90d9728c8793999a9ab10f2cf51db2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2126/CH5/EX5.19/19.sce | 52caef4be761064668a5bef54792ff0f0ccef912 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,777 | sce | 19.sce | clc
clear
//Input data
Mx=2 //Mach number before the shock
a1=3 //Diffuser area ratio
Pox=0.1 //Stagnation pressure before shock in bar
Tx=300 //Temperature before the shock in K
k=1.4 //Adiabatic constant
//Calculation
t1=0.555 //Static to stagnation temperature ratio before shock from isentropic gas tables @Mx,k=1.4
Tox=Tx/t1 //Stagnation temperature before shock in K
p1=0.128 //Static to stagnation pressure ratio before shock from isentropic gas tables @Mx,k=1.4
Px=Pox*p1 //Pressure before the shock in bar
My=0.577 //Mach number after the shock
p2=4.5 //Pressure ratio after and before the shock from gas tables @Mx
Py=Px*p2 //Pressure just after the shock in bar
t2=1.687 //Temperature ratio after and before the shock from gas tables @Mx
Ty=Tx*t2 //Temperature ratio after the shock in K
p3=0.721 //Stagnation pressure ratio after and before shock from gas tables @Mx
Poy=Pox*p3 //Stagnation pressure after shock in kPa
a2=1.2195 //Ratio of area after shock to throat area after shock from gas tables @My
a3=a2*a1 //Ratio of exit area to throat area at exit
M2=0.16 //Exit mach number from gas tables @a3
t3=0.9946 //Static to stagnation temperature ratio at exit from isentropic gas tables @Mx
T2=Tox*t3 //Exit Temperature in K, Since Tox=Toy=T02 in case of diffuser
p4=0.982 //Static to stagnation pressure ratio at exit from isentropic gas tables @Mx
P2=Poy*p4 //Exit pressure in bar, Calculation mistake in textbook
eff=((((Tox/Tx)*(Poy/Pox)^((k-1)/k))-1)/(((k-1)/2)*Mx^2))*100 //Diffuser efficiency including shock in percent
//Output
printf('(A)At the diffuser exit:\n Mach number is %3.2f\n Pressure is %3.3f bar\n Temperature is %3.2f K\n (B)Diffuser efficiency including shock is %3.3f percent',M2,P2,T2,eff)
|
f848aa2cc99cf8f0ed5608cb4e65cd897ac02fb0 | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/MX17.prev.tst | ad3fd7e1ae73f0c14140129f3e8a745ba3c07686 | [
"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 | 356 | tst | MX17.prev.tst | [[0,-5,3,5],[3,5,0,-5],[5,0,5,-3],[5,-3,5,0]],det=-81 [18,21,19,28], chain 8 => [92,19,101,122] => [818,-239,599,908] => [7532,-3281,4361,7802] => [68498,-32819,36059,69308] => [618812,-305141,314861,621242] => [5576498,-2775479,2804639,5583788] => [50210252,-25066841,25154321,50232122] => [451957778,-225864059,226126499,452023388]
elapsed time: 289 s
|
a98ec9fa9f0a01b037853654c0fb4ab9a1309d23 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1583/CH3/EX3.10/NNID_Ex_3_10.sce | 09a417e587ffe69fccda47117bc3c97f43645766 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | NNID_Ex_3_10.sce | clc
//Chapter 3:Design of low noise networks
//example 3.10 page no 86
//given
ensqr=8*10^-16//noise voltage
insqr=9*10^-25//rms noise current
Rs=10*10^4//sourse resistance
k=1.37*10^-23//Boltzmmans constant
T=290//tempreture
F=(ensqr+(insqr*Rs^2))/(4*k*T*Rs)//amplifier noise factor
disp(F,'the amplifier noise factor is ')
|
3ab1c6c5802eeff7e57166e5edbc25430c1d351b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2507/CH12/EX12.5/Ex12_5.sce | 02e869346c00ba18f6f4232a6f1cc7147dd66da9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 492 | sce | Ex12_5.sce | clc
clear
printf("Example 12.5 | Page number 420 \n\n");
//Find the Orsat analysis of the combustion products
//Given Data
nCO2 = 3.8 //Number of moles of CO2
nN2 = 31.6 //Number of moles of N2
nO2 = 2.2 //Number of moles of O2
//Solution
n = nCO2 + nN2 + nO2
xCO2 = nCO2/n //mole fraction of CO2
xN2 = nN2/n //mole fraction of N2
xO2 = nO2/n //mole fraction of O2
printf("xCO2 = %.1f %% \n",xCO2*100)
printf("xN2 = %.1f %% \n",xN2*100)
printf("xO2 = %.1f %% \n",xO2*100)
|
04ef7ec2392043c81e4b1cad52ba5de8e7c324a3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /545/CH4/EX4.18/ch_4_eg_18.sce | d53689ee47ee44517875181f34acfac1f5b37213 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,378 | sce | ch_4_eg_18.sce | clc
disp("the solution of eg 4.18-->Non- Isothermal Plug Flow Reactor")
T=294.15
//rxn A-->B
R=8.314, rho=980.9, MW=200, U=1900, Cp=15.7, H_rxn=92900, T1=388.71, mdot=1.26, dia=2.54*10^-2, E=108847 //given data
b=E/(R*T1),k1=5.64*10^13*exp(-b), A=%pi*dia^2/4, na0=mdot*1000/MW, Ts=388.71
k=k1*exp(b*(1-T1/T))
//dX_by_dV=ra/na0
//dX_by_dV=k*(1-X)/F
//from energX balance
//mdot*Cp*dT_by_dz+ra*A*H_RXN-q=0
//q=U*%pi*dia*(Ts-T)
//-mdot*Cp*dT_by_dV+4*U/dia*(Ts-T)-ra*H_rxn=0
F=mdot/rho
t1=A*k1/F
s1=mdot*Cp/A
s2=4*U/dia
s3=H_rxn*t1
function dX_by_dz=fg1(z,X,T),
dX_by_dz=t1*(1-X)*exp(b*(1-T1/T))
endfunction
function dT_by_dz=fd1(z,X,T),
ra=na0/A*(t1*(1-X)*exp(b*(1-T1/T)))
dT_by_dz=(ra*H_rxn-s2*(Ts-T))/-s1
endfunction
X=0,T=294.15
for z=0:.1:350,
h=.1 //szep incremenz of 0.1
k1=h*fg1(z,X,T)
l1=h*fd1(z,X,T)
k2=h*fg1(z+h/2,X+k1/2,T+l1/2)
l2=h*fd1(z+h/2,X+k1/2,T+l1/2)
k3=h*fg1(z+h/2,X+k2/2,T+l2/2)
l3=h*fd1(z+h/2,X+k2/2,T+l2/2)
k4=h*fg1(z+h,X+k3,T+l3)
l4=h*fd1(z+h,X+k3,T+l3)
X=X+(k1+2*k2+2*k3+k4)/6
T=T+(l1+2*l2+2*l3+l4)/6
//condition for height calc. for 90% conversion
if X>.9 &X<.9005 then disp(z,"the height of the tower required for 90% conversion in mtrs is"); break
end
end |
ffa7f78f47698ab564a1601cfd572ba79a0456e7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3769/CH16/EX16.9/Ex16_9.sce | 98d9543059a084d3915c37b1ef251807b0ce6598 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 235 | sce | Ex16_9.sce | clear
//Given
f=-10.0 //cm
u=-25.0 //cm
h1=3
//Calculation
v=1/((1/f)-(1/u))
h2=(-v*h1)/u
A=h2**2
//Result
printf("\n Area enclosed by the image of the wire is %0.3f cm**2", A)
|
bcb053aeb787d126385d1f4c8a8509d512d70366 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2300/CH3/EX3.11.1/Ex3_1.sce | 05cd35166083ce0d3c01aacc95d14db58f3208c5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex3_1.sce |
//scilab 5.4.1
//WINDOWS 7 Operating System
//chapter 3 PROPERTIES OF SEMICONDUCTORS
//example 1
clc
//Given data
T=300; //K
ni=1.5*10^16; //Intrinsic carrier concentartion per m^3
yn=0.13; //Electron mobility in m^2/(V*s)
yp=0.05; //Hole mobility in m^2/(V*s)
e=1.6*10^-19; //Charge of electron in C
//Required Formula
Gi=e*ni*(yn+yp); //Intrinsic conductivity
Ri=1/Gi; //Intrinsic resistivity
disp('S/m',Gi,'Intrinsic conductivity=');
disp('ohm*meter',Ri,'Intrinsic resistivity=');
//End
|
e3c15d9256eaa1d7e784a8cb59e8056596cb97aa | 573df9bfca39973c9bf2fa36f6e5af2643d7771e | /scilab/interpolação/exemplo_interpolação.sce | d3703b299fb4500b4595437db6f45e67fee7c15d | [] | no_license | DCC-CN/152cn | ef92c691edabe211b1a552dbb963f9fd9ceec94a | 4fe0b02f961f37935a1335b5eac22d81400fa609 | refs/heads/master | 2016-08-13T01:34:17.966430 | 2015-04-07T07:31:58 | 2015-04-07T07:31:58 | 44,502,526 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 4,026 | sce | exemplo_interpolação.sce | // limpar a janela de comandos
clc;
// limpa as variáveis
clear;
// carga de todos os programas sci de um diretório
getd('.')
getd('../lib')
function exemplo_plot_interp(P, a, b, control, caption)
fig = scf(control); // Define o controle de figura
clf(control); // Limpa a figura
fig.figure_name = caption;
plot(x, y, 'ro');
//
// linspace(a,b,n) retorna um vetor com n valores (pontos) igualmente
// espaçados entre a e b
//
inter_x = linspace(a, b, 100);
inter_y = horner(Px, inter_x);
plot(inter_x, inter_y, 'b-');
legend('amostra', pol2str(Px));
endfunction
mode(0);
mprintf("\nExemplos de interpolação polinomial:\n");
//----------------------------------------------------------------------------
exemplo = "### Exemplo 1: Interpolação linear versus polinomial"
mprintf("\n================================================================\n");
mprintf("%s\n", exemplo);
x=[1 10 20 30 40];
y=[1 30 -10 20 40];
xi = -1:0.1:45;
fig = scf(0);
clf(0);
fig.figure_name = exemplo;
plot(x,y,'ro');
yi=interpln([x;y],xi);
plot(xi,yi,'g-');
//-----------------------------------------------------------------------------
// Interpolação pelo método de Newton
Px = poly_Newton(x, y);
yi = horner(Px, xi);
plot(xi,yi, 'b-');
legend("amostra", "interp. linear", pol2str(Px), "in_lower_left");
mprintf(">>> Veja o gráfico\n");
mprintf("\n================================================================\n");
mprintf("### Exemplo 2: Polinômios interpoladores\n");
x = [ 0 5 10 15]
y = [ 1.792 1.519 1.308 1.114]
// Pontos a serem definidos
inter_x = [8 12]
//-----------------------------------------------------------------------------
// Interpolação pelo método de Lagrange
mprintf("\n----------------------------------------------------------------\n");
Px = poly_Lagrange(x, y);
//
// horner(P, x) resolve o polinômio P para cada valor de x [substituição y=P(x)]
//
inter_y = horner(Px, inter_x);
mprintf("\nPolinômio interpolador pelo método de Lagrange:\n");
mprintf("P(x) = %s\n", pol2str(Px));
disp(inter_y, "y_inter = P(x_inter)");
//-----------------------------------------------------------------------------
// Interpolação pelo método de Newton
mprintf("\n----------------------------------------------------------------\n");
Px = poly_Newton(x, y, %T);
inter_y = horner(Px, inter_x);
mprintf("\nPolinômio interpolador pelo método de Newton:\n");
mprintf("P(x) = %s\n", pol2str(Px));
disp(inter_y, "y_inter = P(x_inter)");
//-----------------------------------------------------------------------------
// Interpolação pelo método de Gregory-Newton
exemplo = "Polinômio interpolador pelo método de Gregory-Newton";
mprintf("\n----------------------------------------------------------------\n");
Px = poly_Gregory_Newton(x, y, %T);
inter_y = horner(Px, inter_x);
mprintf("\n%s:\n", exemplo);
mprintf("P(x) = %s\n", pol2str(Px));
disp(inter_y, "y_inter = P(x_inter)");
exemplo_plot_interp(Px, x(1), x($), 1, exemplo);
//=============================================================================
exemplo = "### Exemplo 3: Ex. do livro pág. 136";
mprintf("\n================================================================\n");
mprintf("%s\n", exemplo);
x = [ 0.1 0.3 0.4 0.6 0.7]
y = [ 0.3162 0.5477 0.6325 0.7746 0.8387]
Px = poly_Newton(x, y, %T)
// Definição do ponto de interpolação
z = 0.2
r = horner(Px, z)
exemplo_plot_interp(Px, x(1), x($), 2, exemplo);
//=============================================================================
exemplo = "### Exemplo 4: Ex. do livro pág. 143";
mprintf("\n================================================================\n");
mprintf("%s\n", exemplo);
x = [ 110 120 130]
y = [ 2.0410 2.0790 2.1140]
Px = poly_Gregory_Newton(x, y, %T)
// Definição do ponto de interpolação
z = 115
r = horner(Px, z)
exemplo_plot_interp(Px, x(1), x($), 3, exemplo);
//----------------------------------------------------------------------------
|
3c7f0898326f0630e872d87914c10ca10bc49149 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3827/CH3/EX3.7/Ex3_7.sce | d33266de076daeb2349a5846c3124b4cbd754be1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 363 | sce | Ex3_7.sce | //EX3_7: Simplify (A′ + B′ + C′)(A′ + B′ + C)(B′ + C)(A + C)(A + B + C)
//clears the screen
clc
//clears already existing variables
clear
disp('(A′ + B′ + C′)(A′ + B′ + C)(B′ + C)(A + C)(A + B + C)')
disp('= (A′ + B′)(B′ + C)(A + C)(A + B + C)')
disp('= (A′ + B′)(B′ + C)(A + C)')
disp('= (A′ + B′)(A + C)')
|
ec3e33253dc80b101333d418fda7d768ad510ee9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1439/CH15/EX15.3/15_3.sce | 641f96c8b46bdc9458cf393279c7d6fde6a3e7f7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 162 | sce | 15_3.sce | clc
//initialisation of variables
n= 2
C= 0.01 //M
//CALCULATIONS
r= 10^(-0.509*n*sqrt(C))
//RESULTS
printf ('mean ionic activity coefficient = %.2f ',r)
|
c9e949de73f627e1c2eba7cd3dfb0601e4400d4f | c6196553a0199f808a6ec5cdb7c257bffc4e1832 | /TP_Intro/3_Filtrage.sce | 5519edef537fa99eb69a45f4339b7b95209ea971 | [] | no_license | rianaR/T.I.A | 034b5e503145e54460fa17404c4b51524e269dd8 | b1a3011f4d4101cbe163399c9f46abd31c4977e5 | refs/heads/master | 2021-01-10T05:09:03.931399 | 2015-11-05T08:55:45 | 2015-11-05T08:55:45 | 43,305,164 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,583 | sce | 3_Filtrage.sce | clear();
// 3.2 Applications
img = imread('images/lena.bmp');
// filtre h1 => filtre moyenneur
h1 = ones(3,3)/9;
// filtre h2 => détection des contours
h2 = [ 0,1,0;
1,-4,1;
0,1,0];
img_h1 = imfilter(img, h1);
img_h2 = imfilter(img, h2);
// sauvegarde des images
imwrite(img_h1, 'lena_h1_filter.jpg');
imwrite(img_h2, 'lena_h2_filter.jpg');
// moyenne nullle (pour le bruit à venir)
noise_mean = 0;
// écart-type 20
noise_sigma = 20;
// variance calculée à partir de l'écart-type
noise_var = noise_sigma^2;
// bruit additif aléatoire distribution gaussienne moyenne nulle écart-type 20
// version "à la main"
noisy_img = img + noise_sigma * rand(img,"normal") + noise_mean;
// filtre moyenneur
mean_filter_1 = imfilter(noisy_img, h1);
// filtre médian
median_filter_1 = MedianFilter(noisy_img, [3 3]);
// sauvegarde des images
imwrite(noisy_img, 'lena_noise.jpg');
imwrite(mean_filter_1, 'lena_noise_mean_filter.jpg');
imwrite(median_filter_1, 'lena_noise_median_filter.jpg');
// version en utiliant imnoise mais visiblement ça donne de moins bons résultats
//noisy_img_gaussian = img + imnoise(img, 'gaussian', noise_mean, noise_var);
// bruit poivre et sel
noisy_img_salt = imnoise(img, 'salt & pepper', 0.1);
// filtre moyenneur
mean_filter_2 = imfilter(noisy_img_salt, h1);
// filtre médian
median_filter_2 = MedianFilter(noisy_img_salt, [3 3]);
// sauvegarde des images
imwrite(noisy_img_salt, 'lena_salt.jpg');
imwrite(mean_filter_2, 'lena_salt_mean_filter.jpg');
imwrite(median_filter_2, 'lena_salt_median_filter.jpg');
|
f8ea43458e24a105f04b705624cc9f53fa057574 | 4b23780b6d64c6c05ac10deda01521b98af8284f | /Item04/A2.sce | 46cc7abab096db1fae10b2bc0ae25059c7c9603c | [] | no_license | SumrainChan/Numerical-Calculation-Collection | 7ab48f125e2b2a16906270f894adb0760d15b55f | d583df6ba68ba25962c7f08985c0f0c70e53b051 | refs/heads/master | 2020-07-10T13:07:07.093579 | 2019-08-25T09:11:48 | 2019-08-25T09:11:48 | 204,269,639 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 44 | sce | A2.sce | A2 = A
for i=1:500
A2(i, i) = 1
end
|
8da6109375cdde349f5e934f14ac2ffa8a870c39 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3176/CH5/EX5.3/Ex5_3.sce | eb734546f13fd6f4834939da3cee5997b98e37da | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 7,709 | sce | Ex5_3.sce | //Ex5_3
// Illustration of Order Statistic filter
//To impliment the Following Order Statistic Restoration filter
// (I)Median (II)MAX (III)MIN (IV)Mid Point (V)Alpha trimmed.
// 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).
function [f]=arithmetic_mean(v,m,n)
w=fspecial('average',m);
f=imfilter(v,w);
endfunction
function [f]=geometric_mean1(g,m,n);//gmean1() is used to filter an image using Geometric mean filter
size1=m;
q=m*n;
g=double(g);
[nr,nc]=size(g);
temp=zeros(nr+2*floor(size1/2),nc+2*floor(size1/2));
temp(ceil(size1/2):nr+ceil(size1/2)-1,ceil(size1/2):nc+ceil(size1/2)-1)=g(1:$,1:$)
temp=temp+1;
for i=ceil(size1/2):nr+ceil(size1/2)-1
for j=ceil(size1/2):nc+ceil(size1/2)-1
t=temp(i-floor(size1/2):1:i+floor(size1/2),j-floor(size1/2):1:j+floor(size1/2)) ;
temp2(i,j)=prod(t);
end
end
temp3=temp2.^(1/q);
nn=temp3(ceil(size1/2):nr+ceil(size1/2)-1,ceil(size1/2):nc+ceil(size1/2)-1)
f1=nn-1;
f=mat2gray(f1)
endfunction
function [f]=restoration_filter(v,type,m,n,Q,d)
if argn(2) ==2
m=7;n=7;Q=1.5;d=10;
elseif argn(2)==5
Q=parameter;d=parameter;
elseif argn(2)==4
Q=1.5;d=2;
else
disp('wrong number of inputs');
end
select type
case'median'
f=MedianFilter(v,[m n]);
case'MIN'
size1=m;
[nr,nc]=size(v);
temp=zeros(nr+2*floor(size1/2),nc+2*floor(size1/2));
temp(ceil(size1/2):nr+ceil(size1/2)-1,ceil(size1/2):nc+ceil(size1/2)-1)=v(1:$,1:$);
for i=ceil(size1/2):nr+ceil(size1/2)-1
for j=ceil(size1/2):nc+ceil(size1/2)-1
t=temp(i-floor(size1/2):1:i+floor(size1/2),j-floor(size1/2):1:j+floor(size1/2)) ;
y=gsort(t);
temp2(i-floor(size1/2),j-floor(size1/2))=min(y);
end
end
f=mat2gray(temp2);
case'MAX'
size1=m;
[nr,nc]=size(v);
temp=zeros(nr+2*floor(size1/2),nc+2*floor(size1/2));
temp(ceil(size1/2):nr+ceil(size1/2)-1,ceil(size1/2):nc+ceil(size1/2)-1)=v(1:$,1:$);
for i=ceil(size1/2):nr+ceil(size1/2)-1
for j=ceil(size1/2):nc+ceil(size1/2)-1
t=temp(i-floor(size1/2):1:i+floor(size1/2),j-floor(size1/2):1:j+floor(size1/2)) ;
y=gsort(t);
temp2(i-floor(size1/2),j-floor(size1/2))=max(y);
end
end
f=mat2gray(temp2);
case'Mid_Point'
size1=m;
[nr,nc]=size(v);
temp=zeros(nr+2*floor(size1/2),nc+2*floor(size1/2));
temp(ceil(size1/2):nr+ceil(size1/2)-1,ceil(size1/2):nc+ceil(size1/2)-1)=v(1:$,1:$);
for i=ceil(size1/2):nr+ceil(size1/2)-1
for j=ceil(size1/2):nc+ceil(size1/2)-1
t=temp(i-floor(size1/2):1:i+floor(size1/2),j-floor(size1/2):1:j+floor(size1/2)) ;
y=gsort(t);
temp2(i-floor(size1/2),j-floor(size1/2))=0.5*(min(y)+max(y));
end
end
f=mat2gray(temp2);
else
disp('Unknownfiltertype.')
end
endfunction
function [f]=alphatrim(g,m,n,d)//alphatrim()is used to filter an image using alpha-trimmed mean filter
size1=m;
[nr,nc]=size(g);
temp=zeros(nr+2*floor(size1/2),nc+2*floor(size1/2));
temp(ceil(size1/2):nr+ceil(size1/2)-1,ceil(size1/2):nc+ceil(size1/2)-1)=g(1:$,1:$)
for i=ceil(size1/2):nr+ceil(size1/2)-1
for j=ceil(size1/2):nc+ceil(size1/2)-1
t=temp(i-floor(size1/2):1:i+floor(size1/2),j-floor(size1/2):1:j+floor(size1/2))
y=gsort(t);
a=y(:)
b=a';
t1=b(1+d/2:$-d/2);
temp2(i-floor(size1/2),j-floor(size1/2))=mean(t1);
end
end
f=mat2gray(temp2)
endfunction
///////////////////////////////////// Main Programm ////////////////////
gray=imread("Ex5_3.tif");
//gray=rgb2gray(a);
//gray=im2double(gray);
figure,ShowImage(gray,'Gray Image');
title('Original Image');
[M,N]=size(gray);
/////////////////////////////////// Median Filter ////////////////////
v=imnoise(gray,'salt & pepper',0.1);
figure,ShowImage(v,'Noisy Image');
title('Original Image with Salt & Pepper Noise');
//Filtering the corrupted image with median filter
h=restoration_filter(v,'median',3,3);
figure,ShowImage(h,'Recovered Image');
title('Recovered Image with Median Filter');
//Filtering the corrupted image with median filter
h1=restoration_filter(h,'median',3,3);
figure,ShowImage(h1,'Recovered Image');
title('Recovered Image with Median Filter');
//Filtering the corrupted image with median filter
h2=restoration_filter(h1,'median',3,3);
figure,ShowImage(h2,'Recovered Image');
title('Recovered Image with Median Filter');
/////////////////////////////////// MAX Filter ////////////////////
temp(1:M,1:N)=0.5;
r3=imnoise(temp,'salt & pepper',0.1); // Generate salt & pepper Noise
gray_noise_pepper=gray; // Add Pepper Noise Only
[r c]=find(r3==0);
for i=1:length(r)
gray_noise_pepper(r(i),c(i)) = 0;
end
figure,ShowImage(gray_noise_pepper,'Noisy Image');
title('Noisy Image with Pepper Noise');
//Filtering the Salt Noise corrupted image with MAX filter
h=restoration_filter(gray_noise_pepper,'MAX',3,3);
figure,ShowImage(h,'Recovered Image');
title('Recovered Image with MAX Filter');
//////////////////////////////////// MIN Filter ////////////////////
temp(1:M,1:N)=0.5;
r3=imnoise(temp,'salt & pepper',0.1); // Generate salt & pepper Noise
gray_noise_salt=gray; // Add salt Noise Only
[r c]=find(r3==1);
for i=1:length(r)
gray_noise_salt(r(i),c(i)) = 255;
end
figure,ShowImage(gray_noise_salt,'Noisy Image');
title('Noisy Image');
//Filtering the Salt Noise corrupted image with MIN filter
h=restoration_filter(gray_noise_salt,'MIN',3,3);
figure,ShowImage(h,'Recovered Image');
title('Recovered Image with MIN Filter');
///////////////////////////////////// Mid-Point Filter ////////////////////
//v=imnoise(gray,'gaussian',0,0.02);
//figure,ShowImage(v,'Noisy Image');
//title('Image with Gaussian Noise');
////Filtering the Salt Noise corrupted image with Mid-Point filter
//h=restoration_filter(v,'Mid_Point',3,3);
//figure,ShowImage(h,'Recovered Image');
//title('Recovered Image with Mid_Point Filter');
///////////////////////////////// Alpha Trimmed Filter ////////////////////
v=imnoise(gray,'gaussian',0,0.02);
v=imnoise(v,'salt & pepper',0.05);
figure,ShowImage(v,'Noisy Image');
title('Image with Gaussian and Salt&Pepper Noise');
m=5;n=5;d=5;
[f]=arithmetic_mean(v,m,n); // Filtering with Arithmetical mean
figure,ShowImage(f,'Recovered Image');
title('Recovered Image with Arithmetical Mean Filter');
[f]=geometric_mean1(v,m,n); // Filtering with Geometric mean
figure,ShowImage(f,'Recovered Image');
title('Recovered Image with Geometric Mean Filter');
//Filtering the corrupted image with median filter
h=restoration_filter(v,'median',5,5); // Filtering with median Filtering
figure,ShowImage(h,'Recovered Image');
title('Recovered Image with Median Filter');
f=alphatrim(v,m,n,d); // Filtering with alphatrim Filtering
figure,ShowImage(f,'Recovered Image');
title('Recovered Image with Alpha Trimmed Filter'); |
2a89736315421956dd6643f4a5fe6d826d9e5afb | b29e9715ab76b6f89609c32edd36f81a0dcf6a39 | /ketpic2escifiles6/Rotatedata.sci | 845cac17b6d4571b3c303fa509bf01f9542ca6f6 | [] | no_license | ketpic/ketcindy-scilab-support | e1646488aa840f86c198818ea518c24a66b71f81 | 3df21192d25809ce980cd036a5ef9f97b53aa918 | refs/heads/master | 2021-05-11T11:40:49.725978 | 2018-01-16T14:02:21 | 2018-01-16T14:02:21 | 117,643,554 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 717 | sci | Rotatedata.sci | // 08.05.23 Koshikawa
// 08.09.20
// 15.04.12
function OutL=Rotatedata(varargin)
Nargs=length(varargin);
ML=varargin(1);
ML=Flattenlist(ML);
Theta=varargin(2);
if Nargs==2,
Pt=[0,0]
else
Pt=varargin(3);
end
Cx=Pt(1);Cy=Pt(2);
OutL=[];
for N=1:length(ML)
GL=Op(N,ML);
Out=[];
for I=1:size(GL,1)
Tmp=GL(I,:);
X1=Tmp(1);
Y1=Tmp(2);
if Tmp==[%inf,%inf]
X2=X1;
Y2=Y1;
else
X2=Cx+(X1-Cx)*cos(Theta)-(Y1-Cy)*sin(Theta);
Y2=Cy+(X1-Cx)*sin(Theta)+(Y1-Cy)*cos(Theta);
end;
Out=[Out;X2,Y2];
end;
OutL=Mixadd(OutL,Out);
end;
if length(OutL)==1
OutL=Op(1,OutL);
end;
endfunction
|
83a5dfef687cff8f491d01b9852fa4bf1edca208 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1760/CH2/EX2.112/EX2_112.sce | 8cbbe25a4efb733523a536c5cb6aca7d4752d816 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 378 | sce | EX2_112.sce | //EXAMPLE 2-112 PG NO-148
I=5;
R=25;
Z=50;
Z1=40;
R1=[Z^2-R^2-1600]/50;
disp('i) RESISTANCE (R1) is = '+string (R1) +' ohm ')
X1=[1600-R1^2]^0.5;
disp('ii) INDUCTANCE (X1) is = '+string (X1) +' ohm ')
Pc=I*I*R1;
disp('iii) Power (Pc) is = '+string (Pc) +' W ');
P=I*I*(R+R1);
disp('iv) Power (P) is = '+string (P) +' W ');
|
5f806c022361c179aea7bfeaf29dfe7ffecd32ef | 449d555969bfd7befe906877abab098c6e63a0e8 | /1301/CH40/EX40.7/ex40_7.sce | a199d8d730902a889e245ea0c1917fd8fddf0289 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 201 | sce | ex40_7.sce | clc;
r=6.4*10^6; //radius in metre
v=(4/3)*%pi*r*r*r; //calculating volume
m=6.0*10^24; //mass in kg
d=m/v; //calculating density
disp(d,"Density in kg/m cube = "); //displaying result |
2203e158746d7a63022b5711f8f01ccbd9aa0666 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1868/CH4/EX4.1/Ch04Ex1.sce | 80d669647d4700a9adc9c7bc0cfeb8764b07e34b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 747 | sce | Ch04Ex1.sce | // Scilab code Ex4.1: Pg 109 (2005)
clc; clear;
I = 10; // Electric current, A
t = 3600; // Time, s
q = I*t; // Electric charge liberated, C
mm_Ba = 137; // Molar mass of Barium, g
mm_Cl = 35.5; // Molar mass of Chlorine, g
valence_Ba = 2; // Valence electrons of Barium
valence_Cl = 1; // Valence electrons of Chlorine
// Using Faraday’s law of electrolysis, we have
m_Ba = (q*mm_Ba)/(96500*valence_Ba); // Mass of Barium obtained, g
m_Cl = (q*mm_Cl)/(96500*valence_Cl); // Mass of Chlorine obtained, g
printf("\nMass of Barium obtained = %4.1f g", m_Ba);
printf("\nMass of Chlorine obtained = %4.1f g", m_Cl);
// Result
// Mass of Barium obtained = 25.6 g
// Mass of Chlorine obtained = 13.2 g
|
4e390cb72f65e1c82bf49b5184fd6f81d2c9e12a | 449d555969bfd7befe906877abab098c6e63a0e8 | /2252/CH9/EX9.5/Ex9_5.sce | cca135052947324152575f2da6a46a21eadf8af3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 241 | sce | Ex9_5.sce |
Pout=30D+3//output
e=.86//efficiency
Pin=Pout/e//input
Vl=440//line voltage
pf=.83//power factor
Il=Pin/(sqrt(3)*Vl*pf)
mprintf("Line current=%f A\n", Il)
Iph=Il/sqrt(3)//motor is delta connected
mprintf("Phase current=%f A", Iph)
|
02ce64286eb4c2dd6651830a6ba1fa1974d017ed | 449d555969bfd7befe906877abab098c6e63a0e8 | /551/CH13/EX13.31/31.sce | 9fac4a29d4667ce1322e9e0b43b93947c7c2808a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 393 | sce | 31.sce | clc
cp=0.92;
cv=0.75;
y=1.22; //y=cp/cv
p1=1; //bar
p2=p1;
p3=4; //bar
p4=16; //bar
T2=300; //K
T3=T2*(p3/p2)^((y-1)/y);
T4=p4/p3*T3;
T1=T4/(p4/p1)^((y-1)/y);
disp("(i) Work done per kg of gas ")
Q_supplied=cv*(T4-T3);
Q_rejected=cp*(T1-T2);
W=Q_supplied-Q_rejected;
disp("W=")
disp(W)
disp("kJ/kg")
disp("(ii) Efficiency of the cycle =")
n=W/Q_supplied;
disp(n) |
8b2cd1207b91a58d66144574a74b65e68ddef841 | 449d555969bfd7befe906877abab098c6e63a0e8 | /929/CH6/EX6.16/Example6_16.sce | b0b17948c2045de661daefafa71a1f0aa09562b3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 393 | sce | Example6_16.sce | //Example 6.16
clear;
clc;
A0=10;
fB=100*10^6;
brec=1.5*10^3;
rn=50;
R2=brec-(rn*A0);
R1=R2/(A0-1);
printf("(a) Redisigned Current Feedback Amplifier of Example 6.15 :");
printf("\n R1=%.f ohms",R1);
printf("\n R2=%.2f kohms",R2*10^(-3));
z0=0.75*10^6;
T0=(1/brec)*z0;
epsilon=-100/T0;
printf("\n\n(b) Percentage dc gain error=%.1f",epsilon); |
f76260458de54a6ea05315ca1b42a395ac0eb4f8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3136/CH6/EX6.7/Ex6_7.sce | fbb6862be0ffdee9a2851938b67aee589d1b732d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 4,135 | sce | Ex6_7.sce | clear all; clc;
disp("Inlet Configuration selection: Mr1,t=0.75 and ßf1=25 degrees")
M_r1t=0.75
beta_f1=25*%pi/180
M_1t=M_r1t*sin(beta_f1)
printf(" M_1t=%0.3f",M_1t)
disp("T1=To1/(1=((k-1))*(M_lt^2)/2")
T1=530/(1+0.2*(0.317^2))
printf("\n Thus the value of T1= %0.1fR",T1)
a1=(1.4*53.33*32.2*519.6)^0.5
printf("\n a1= %0.2f ft/s",a1)//answer provided here is more accurate
V_1t=0.317*1117.6
printf("\n V1=%0.1f ft/s",V_1t)
W_1t=0.75*1117.6
printf("\n W_1t= %0.1f ft/s",W_1t)
U_1t=[(838.2^2)-(354.3^2)]^0.5
printf("\n U_1t= %0.1f ft/s",U_1t)
omega=1623
U_1t=759.6
r_1t=U_1t/omega
printf("\n So we have r_1t= %0.3f ft=5.6in",r_1t)
//let x=k/k-1
x=3.5
po1=14.7
T_1=519.6
T_o1=530
p1=po1*[(T_1/T_o1)^x]
printf("\n So we have p1= %0.1f psia",p1)
p1=13.7
R=53.33
T1=519.6
rho1=(p1*144)/(R*T_1)
printf("\n rho1= %0.4f lbm/ft^3",rho1)
m=17
rho1=0.0713
V1=354.3
A1=m/(rho1*V1)
printf("\n A1= %0.3f ft^2=96.9 in ^2,assuming uniform inlet flow.\n\n",A1)
disp("From pi*[(r_1t^2)-(r_1h^2)]=A1")
disp("We have r_1h={[(r_1t^2)-A1]/pi}^0.5=0.72 in")
disp("U_1h=97.0 ft/s")
disp("ß_f1,h=taninverse(V_1h/U_1h)")
V_1h=354.3
U_1h=97
beta_f1h=(atan(V_1h/U_1h))*180/%pi
printf(" ßf1= %0.1f degrees",beta_f1h)
disp("(B) Outlet Configuration From")
Cp=0.24
To1=530
//let y=(k-1)/k=0.2857
y=0.2857
//let m=po2/po1
m=2.5
H_ad=Cp*To1*778*[(m)^(y)-1]
printf(" H_ad=H_ad=Cp*To1*778[(po2/po1)^((k-1)/k)-1] %0.0f ft-lbf/lbm ",H_ad)
m=17
rho1=0.0713
Q1=m/rho1
printf("\n Q1=%0.1f ft^3/s",Q1)
N=15500
H_ad=29614
Q1=238.4
Ns=N*(Q1^0.5)/((H_ad)^0.75)
printf("\n We obtain specific speed %0.0f rpm*{(ft^3/s)^0.5}(ft-lbf/lbm)^0.75 ",Ns)
disp("Fom figure 6.7 we have estimated Eta_c=0.87 and Ds=D2*(H_ad)/(Q1^0.5)=1.50")
D2=1.5*(238.4^0.5)/(29614^0.25)
printf("\n D2=%0.4f ft=21.2 inches or r2=10.6 in. and U2=r2*omega=1433.7 ft/s",D2)
disp("Referring to figure 6.16c,we have T_sso3=T_o1*(po3/po1)^((k-1)/k)")
//((k-1)/k)=x
x=0.2857
T_o1=530
//let l=po3/po1
l=2.5
T_sso3=T_o1*(l^x)
printf(" T_sso3= %0.1f R ",T_sso3)
disp("From Eta_c=(T_sso3-(T_o1))/(To3-To1) we have To2=To3")
//let l=To2/To3
l=(1/0.87)*(688.6-530)+530
printf(" To2/To3 %0.1fR",l)
disp("Also from Etam=U2*Vu2/[Cp*(T_o2-T_o1)]")
Vu2=0.95*0.24*778*32.2*(712.3-530)/(1433.7)
printf(" With the estimated Eta_m=0.95,Vu2=%0.1f ft/s",Vu2)
disp("Flow coefficient φ=Vm2/U2=0.30 ")
Vm2=0.3*1433.7
printf(" Vm2=%0.1f ft/s",Vm2)
disp("W2=[Vm2^2+(U2-Vu2)^2]^0.5=827.9 ft/s")
disp("V2=[Vu2^2+Vm2^2]^0.5=844.1 ft/s")
W1t=838.2
W2=827.9
Df=W1t/W2
printf(" Hence we have diffusion factor Df=%0.3f. The value is less than 1.9 which is okay.",Df)
disp("The impeller efiiciency can be estiamted form the losses fraction X=(1-Eta_imp)/(1-Eta_c) is approximately =0.6 ")
Eta_imp=1-0.6*(1-0.87)
printf("\n Eta_imp %0.3f",Eta_imp)
disp("Hence from Eta_imp=(T_so2-T_o1)/(T_o2-T_o1),we have T_so2=T_o1+Eta_imp*(To2-T_o1)=698R and po2=po1*(T_so2/T_o1)^(k/(k-1))")
po1=14.7
T_so2=698.1
T_o1=530
//Let x=(k/(k-1))
x=3.5
po2=po1*(T_so2/T_o1)^x
printf(" po2=%0.2f psia ",po2)
disp("Then from the energy equation we have T2=T_o2-V2^2/(2*Cp)=653.0R")
disp("Hence p2=p02*(T2/To2)^(k/(k-1))=28.4psia and rho2=p2/(R*T2)=0.117lbm/ft^3")
disp("Selecting Zb=16 and using the Stanitz fromula for the slip coefficient we have Vdash_u2=Vu2+0.63*pi*U2/Zb")
Vu2=726.3
U2=1433.7
Zb=16
Vdash_u2=Vu2+0.63*%pi*U2/Zb
printf(" Vdash_u2= %0.1f ft/s",Vdash_u2)
disp("tanß_b2=Vm2/(U2-Vdash_u2)")
Vm2=430.1
U2=1433.7
Vdash_u2=903.6
tan_beta_b2=Vm2/(U2-Vdash_u2)
printf(" tanß_b2=%0.2f ",tan_beta_b2)
betab2=(atan(tan_beta_b2))*180/%pi
printf("\n ß_b2= %0.0f degrees",betab2)
disp("With blade thickness t=0.15,contraction factor is determined")
Zb=16
t=0.15
betab2=39*%pi/180
D2=21.3
epsilon2=1-[(Zb*t)/(sin(betab2))]/(%pi*D2)
printf(" Thus epsilon2= %0.2f",epsilon2)
disp("Hence from the mass equation we can determine b2")
b2=17/(0.117*430.1*%pi*1.765*0.94)
printf(" b2=%0.4f=0.7 8inch",b2)
|
2fe521dc86e640611cac285801412f975f506240 | b29e9715ab76b6f89609c32edd36f81a0dcf6a39 | /ketpicscifiles6/Objsurf.sci | 15543b8a33f92c5a1706bc65e6efff36c3e9600b | [] | no_license | ketpic/ketcindy-scilab-support | e1646488aa840f86c198818ea518c24a66b71f81 | 3df21192d25809ce980cd036a5ef9f97b53aa918 | refs/heads/master | 2021-05-11T11:40:49.725978 | 2018-01-16T14:02:21 | 2018-01-16T14:02:21 | 117,643,554 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,582 | sci | Objsurf.sci | // s : 2014.06.22
// e : 2014.07.18
// Objsurf, Objthicksurf : Range argments changed
// 2014.09.07 Objjoin added
function Out=Objsurf(varargin)
global OBJFIGNO OBJJOIN
Args=varargin;
Nargs=length(Args);
Sel=Args(Nargs); Nargs=Nargs-1;
Rf=Args(1);
N=2;
Mg=0; Ng=0;
if type(Args(N))==1 then
if length(Args(N))>2 then
U=Args(N);
Mg=length(U)-1;
N=N+1;
elseif length(Args(N))==2 then
Intab=Args(N);
Ag=Intab(1); Bg=Intab(2);
N=N+1;
else
Ag=Args(N); Bg=Args(N+1);
N=N+2;
end;
else // when type(Args(N))==10
Tmp0=Args(N);
Tmp=mtlb_findstr("=",Tmp0);
if length(Tmp)>0 then
Tmp0=part(Tmp0,(Tmp+1):length(Tmp0));
end;
Intab=evstr(Tmp0);
Ag=Intab(1); Bg=Intab(2);
N=N+1;
end;
if type(Args(N))==1 then
if length(Args(N))>2 then
V=Args(N);
Ng=length(V)-1;
N=N+1;
elseif length(Args(N))==2 then
Intab=Args(N);
Cg=Intab(1); Dg=Intab(2);
N=N+1;
else
Cg=Args(N); Dg=Args(N+1);
N=N+2;
end;
else // when type(Args(N))==10
Tmp0=Args(N);
Tmp=mtlb_findstr("=",Tmp0);
if length(Tmp)>0 then
Tmp0=part(Tmp0,(Tmp+1):length(Tmp0));
end;
Intab=evstr(Tmp0);
Cg=Intab(1); Dg=Intab(2);
N=N+1;
end;
if Mg==0 then
Mg=Args(N);
N=N+1;
U=[];
for J=1:(Mg+1)
U=[U,Ag+(J-1)/Mg*(Bg-Ag)];
end;
end;
if Ng==0 then
Ng=Args(N);
V=[];
for K=1:(Ng+1)
V=[V,Cg+(K-1)/Ng*(Dg-Cg)];
end;
end;
Objname(); // // 140907
PL=list();
for J=1:(Mg+1)
for K=1:(Ng+1)
P=Rf(U(J),V(K));
Np=Writeobjpoint(P)
PL=lstcat(PL,list([P,Np]));
end;
end;
Idx=1:(Ng+1):(Ng+1)*Mg+1;
Pus=Mixsub(Idx,PL);
Idx=(Ng+1):(Ng+1):(Ng+1)*(Mg+1);
Pue=Mixsub(Idx,PL);
Idx=1:1:Ng+1;
Pvs=Mixsub(Idx,PL);
Idx=(Ng+1)*Mg+1:1:(Ng+1)*(Mg+1);
Pve=Mixsub(Idx,PL);
Printobjstr("vt 0 0");
Printobjstr("vt 1 0");
Printobjstr("vt 1 1");
Printobjstr("vt 0 1");
for J=1:Mg
for K=1:Ng
P1=sprintf("%1d",Op(4,PL((Ng+1)*(J-1)+K)))
P2=sprintf("%1d",Op(4,PL((Ng+1)*J+K)))
P3=sprintf("%1d",Op(4,PL((Ng+1)*J+K+1)))
P4=sprintf("%1d",Op(4,PL((Ng+1)*(J-1)+K+1)))
N1=""; N2=""; N3=""; N4="";
if Sel=="+" then // 6.22
Str="f "+P1+"/1/"+N1+" "+P2+"/2/"+N2+" ";
Str=Str+P3+"/3/"+N3+" "+P4+"/4/"+N4;
else
Str="f "+P1+"/1/"+N1+" "+P4+"/4/"+N4+" ";
Str=Str+P3+"/3/"+N3+" "+P2+"/2/",N2;
end;
Printobjstr(Str)
end;
end;
Out=list(U,V,Pus,Pue,Pvs,Pve)
endfunction
|
bb8dc135862175f49b06d60c54fdc4611bcd71b9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /551/CH15/EX15.31/31.sce | fad4432eacd2a315c59197d317892bcc8648edbc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 233 | sce | 31.sce | clc
T1=91; //K
T2=303; //K
e1=0.03;
e2=0.03;
d1=0.3; //m
d2=0.45; //m
a=5.67*10^(-8);
F_12=1;
Q=4*%pi*(d1/2)^2*a*(T1^4-T2^4)/( ((1-e1)/e1) + 1/F_12 + ((1-e2)/e2)*d1^2/d2^2);
disp("Rate of heat flow =")
disp(Q)
disp("W") |
262c265ec78a205e25a9fc5bc80632697a8b6286 | 2d52e11c7b61898224f065e3bbf4433c814c9fe1 | /measurement/array-operations/vless2.sci | ec570bd89c55098bea9e8f56ba91ca4c1e0248b7 | [
"MIT"
] | permissive | quepas/performance-estimation-array-operations | b6954d753c83d235f12c5d97fa82bcc38656cf5e | b209ba5efebf5dee60ec5fca0fa711ca2e766e17 | refs/heads/master | 2021-01-24T13:24:52.734940 | 2018-05-12T15:18:20 | 2018-05-12T15:18:20 | 123,173,497 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 106 | sci | vless2.sci | // Element-wise comparision of two vectors (less then)
function vless2(V1, V2)
R = V1 < V2;
endfunction |
07d54f2bde1e34953e7b2c2677abd0e8357f8345 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2090/CH3/EX3.6/Chapter3_Example6.sce | 0a6144c0f35491df7a6fe169e63e7c81637fecad | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 734 | sce | Chapter3_Example6.sce | clc
clear
//Input data
t=25;//The temperature of both reactants and products in degree centigrade
p=1;//The pressure of both reactants and products in bar
//Calculations
h=0;//Enthalpy of all elements at given temp and pressure
hf1=-103.85;//The enthalpy of the compound C3H8 in the reactants side at given temp and pressure in MJ/kmol
hf2=-393.52;//The enthalpy of carbondioxide for the given temp and pressure in MJ/kmol
hf3=-285.8;//The enthalpy of the water for the given temp and pressure in MJ/kmol
hf4=[3*hf2]+[4*hf3];//Total enthalpy in the products side in MJ/kmol
Q=hf4-hf1;//The heat transfer per mole of fuel in MJ/kmol fuel
//Output
printf(' The heat transfer per mole of fuel = %3.2f kJ/mol fuel',Q)
|
0bcbe68eda975b81a5118cb47816155268b96d37 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1184/CH9/EX9.2/Ex9_2.sce | 5c25786823761f2aa5292526f3214bbda38b2da6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 201 | sce | Ex9_2.sce | //Example 9-2,Page No - 324
clear
clc
R = 100*10^3
T = 273+25
B = 20*10^3
k = 1.38*10^-23
Vn=(4*k*T*B*R)^0.5
printf('The noise voltage across 100k resistor is %.2f microvolt',Vn*10^6)
|
c3d8c41a1e2b8494691f98352d68f7e6b48eee85 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2276/CH5/EX5.8/chapter5_ex8.sce | 87c216b0b7408cf5fe6efe8d846467bae35868f4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,800 | sce | chapter5_ex8.sce | clc
clear
//input
r1=100;//resistance in branch 1 in ohms
r2=10;//resistance in branch 2 in ohms
l2=0.07;//inductance in branch 2 in henry
r3=10;//resistance in branch 3 in ohms
c3=100*(10^-6);//capacitance in branch 3 in farad
//branches 1,2 and 3 are in parallel with each other
v=250;//supply voltage in volts
f=50;//supply frequency in hertz
//calculations
it=v/r1;//total current in branch 1 in amperes
ii1=it;//since resistive branch
iq1=0;//since resistive branch
z2=((r2^2)+((2*%pi*f*l2)^2))^0.5;//impedance of branch 2 in ohms
i2=v/z2;//current in branch 2 in amperes
cos2=r2/z2;//cosine of phase angle
phi2=(180/%pi)*acos(cos2);//phase angle in degree
ii2=i2*cos2;//in phase component of branch2 in amperes
iq2=-i2*sin(acos(cos2));//quadrature component of branch 2 in amperes
z3=((r3^2)+((1/(2*%pi*f*c3))^2))^0.5;//impedance of branch 3 in ohms
i3=v/z3;//current in branch 3 in amperes
cos3=r3/z3;//cosine of the phase angle
phi3=(180/%pi)*acos(cos3);//phase angle in degrees
ii3=i3*cos3;//in phase component of branch 3 in amperes
iq3=i3*sin(acos(cos2));//quadrature component of branch 3 in amperes
ii=ii1+ii2+ii3;//total in phase component in amperes
iq=iq1+iq2+iq3;//total quadrature component in amperes
it=((ii^2)+(iq^2))^0.5;//total current in amperes
cost=ii/it;//cosine of total phase angle
phit=(180/%pi)*acos(cost);//phase angle in degrees
zs=v/it;//equivalent series impedance in ohms
rs=zs*cost;//equivalent series resistance in ohms
xs=zs*sin(acos(cost));//equivalent series reactance in ohms
l=(xs*1000)/(2*%pi*f);//inductance in millihenry
//output
mprintf('the total current is %3.2f A lagging by %3.0f degrees and the equivalent series circuit would be a resistive inductive circuit of %3.1f ohms and %3.0f mH',it,phit,rs,l )
|
9302194222f0e28f12466028f277ef681d7c1e14 | 449d555969bfd7befe906877abab098c6e63a0e8 | /995/CH4/EX4.7/Ex4_7.sce | 225af740291167dc82c3a3f75cc27521d5700286 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 197 | sce | Ex4_7.sce | //Ex:4.7
clc;
clear;
close;
c=1*10^-6;
f1=100;
f2=10000;
X_c1=1/(2*%pi*f1*c);
X_c2=1/(2*%pi*f2*c);
printf("Reactance at 100Hz = %f mA",X_c1);
printf("\n Reactance at 10kHz = %f mA",X_c2); |
a67c003609435d88b7a569cd5600c2e6e6cab77c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1655/CH4/EX4.15.9/Example_4_15_9.sce | 300892f8f52206f831eb24e9830b082c401b85fd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 376 | sce | Example_4_15_9.sce | // Example 4.15.9 page 4.41
clc;
clear;
RSW=0.0012; //relative spectral width
lamda=0.85d-6; //wavelength
L=1; //distance in km (assumed)
M=100; //material dispersion parameter in ps/nm/km (assumed)
sigma_lamda=RSW*lamda;
sigmaM=sigma_lamda*L*M*10^6; //computing rms pulse broadning.
printf("\nRMS pulse broadning is %.3f ns/km.",sigmaM);
|
5167609548ef268a7a6221897bed675b12c1a7e8 | 5a05d7e1b331922620afe242e4393f426335f2e3 | /macros/bilinear.sci | d1ee3f7dba2d9894a9c481c07e103cadc3a85fe8 | [] | no_license | sauravdekhtawala/FOSSEE-Signal-Processing-Toolbox | 2728cf855f58886c7c4a9317cc00784ba8cd8a5b | 91f8045f58b6b96dbaaf2d4400586660b92d461c | refs/heads/master | 2022-04-19T17:33:22.731810 | 2020-04-22T12:17:41 | 2020-04-22T12:17:41 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,767 | sci | bilinear.sci | // Copyright (C) 2018 - IIT Bombay - FOSSEE
//
// This file must be used under the terms of the CeCILL.
// This source file is licensed as described in the file COPYING, which
// you should have received as part of this distribution. The terms
// are also available at
// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
// Original Source : https://octave.sourceforge.io/signal/
// Modifieded by:Sonu Sharma, RGIT Mumbai
// Organization: FOSSEE, IIT Bombay
// Email: toolbox@scilab.in
function [Zz, Zp, Zg] = bilinear(Sz, Sp, Sg, T)
//Transforms a s-plane filter (Analog) into a z-plane filter (Digital) using Bilinear transformation
//Calling Sequence
// [Zb, Za] = bilinear(Sb, Sa, T)
// [Zb, Zb] = bilinear(Sz, Sp, Sg, T)
// [Zz, Zp, Zg] = bilinear(...)
//Prameters
//Sb: Numerator coefficient vector in s-domain
//Sa: denumerator coefficient vector s-domain
//Sz: zeros in s-plane
//Sp: poles in s-plane
//Sg: gain in s-domain
//T: Sampling period (double)
//Zb: Numerator coefficient vector in z-domain
//Za: denumerator coefficient vector z-domain
//Zz: zeros in z-plane
//Zp: poles in z-plane
//Zg: gain in z-domain
//Description:
//a filter design can be transformed from the s-plane to the z-plane while maintaining the band edges by means of the bilinear transform. This maps the left hand side of the s-plane into the interior of the unit circle in z-plane. The mapping is highly non-linear, so you must design your filter with band edges in the s-plane positioned at 2/T tan(w*T/2) so that they will be positioned at w after the bilinear transform is complete.
//It does following transformation from s-plane to z-plane
// 2 z-1
// s -> - ----
// T z+1
//Examples
//[b a] = bilinear ([1 2 3], [4 5 6], 1, 1)
//Output :
// a =
//
// 1. 7.3333333 17.666667 14.
// b =
//
// 0. - 0.1666667 - 0.3333333 2.5
funcprot(0);
[nargout nargin] = argn();
ieee(2);
if nargin==3
T = Sg;
[Sz, Sp, Sg] = tf2zp(Sz, Sp);
elseif nargin~=4
error("bilinear: invalid number of inputs")
end
p = length(Sp);
z = length(Sz);
if z > p | p==0
error("bilinear: must have at least as many poles as zeros in s-plane");
end
// ---------------- ------------------------- ------------------------
// Bilinear zero: (2+xT)/(2-xT) pole: (2+xT)/(2-xT)
// 2 z-1 pole: -1 zero: -1
// S -> - --- gain: (2-xT)/T gain: (2-xT)/T
// T z+1
// ---------------- ------------------------- ------------------------
Zg = real(Sg * prod((2-Sz*T)/T) / prod((2-Sp*T)/T));
if Zg == 0 & nargout == 3 then
error("bilinear: invalid value of gain due to zero(s) at infinity avoid z-p-g form and use tf form ")
end
Zp = (2+Sp*T)./(2-Sp*T);
SZp = size(Zp);
if isempty(Sz)
Zz = -ones(SZp(1), SZp(2));
else
Zz = [(2+Sz*T)./(2-Sz*T)];
Zz = postpad(Zz, p, -1);
end
if nargout==2
// zero at infinity
Zz1 = [];
for i=1:length(Zz)
if Zz(i) ~= %inf
Zz1 = [Zz1 Zz(i)];
end
end
Zz = Zz1;
if Zg == 0
z = %z;
bi = (2*(z - 1))/(T*(z + 1));
Hs = Sg * real(poly(Sz, "s"))/real(poly(Sp, "s"));
Hz = horner(Hs, bi);
b = coeff(Hz.num);
a = coeff(Hz.den);
Zg = b($)/a($);
end
[Zz, Zp] = zp2tf(Zz, Zp, Zg);
Zz = prepad(Zz, length(Zp));
end
ieee(0);
endfunction
|
9bbb0a341a1ff2209fe312a11998d75753a688f2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3769/CH3/EX3.25/Ex3_25.sce | 995f82922e0163b6a3894cb41f71e39567dea3af | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 251 | sce | Ex3_25.sce | clear
//Given
a=0.1 //m
A=800
e=8.854*10**-12
//Calculation
b=A*a**2.5*(sqrt(2)-1)
q=e*b
//Result
printf("\n (a) The flux through the cube is %0.2f Nm**2C-1",b)
printf("\n The charge within the cube is %0.2f *10**-12 C",q*10**12)
|
b0c83b56d7319dd4951a4177767d18d84d6be353 | 449d555969bfd7befe906877abab098c6e63a0e8 | /761/CH18/EX18.7/18_7.sce | 4915420fc14535cd7ec46bba8d238dbb5cf448e6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 263 | sce | 18_7.sce | clc;
// page no 682
// prob no 18.7
// refer ex no 18.3 and 18.6
Pr_dBm=-62;//power at the receiver in dBm
Pn_dBm=-100;//thermal noise power in dBm
// carrier to noise ratio in dB is given as
C_N=Pr_dBm -Pn_dBm;
disp('dB',C_N,'Carrier to noise ratio is'); |
67c06b2dc00a9431a74a97cdaa42f49e5e517c99 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1442/CH15/EX15.3/15_3.sce | c15ae567ab59b92f94cf91b6cf1b892a34eb307c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 245 | sce | 15_3.sce | clc
//initialisation of variables
nw= 9 //kmol
na= 1 //kmol
//CALCULATIONS
dh= 75*nw^2/(na+1.8*nw)^2
Q= -75*na*nw/(nw+1.8*na)
//RESULTS
printf (' difference in enthalpy= %.2f kJ/kg',dh)
printf (' \n amount of heat removed= %.1f kJ',Q)
|
49137fdc5ceedd494946920afd538e49b7aa6006 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1553/CH21/EX21.7/21Ex7.sce | fc010fabad0cd95954d90060b664bfb0f586766e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 173 | sce | 21Ex7.sce | //chapter 21 Ex 7
clc;
clear;
close;
t=16;
p=100; //assuming principle=100
rate=((100*p)/(p*t));
mprintf("The rate percent per annum will be %.2f percent",rate);
|
eb3cf63b4e3c322594b028fa5f92111605b3ea6b | 449d555969bfd7befe906877abab098c6e63a0e8 | /191/CH7/EX7.4/Example7_4.sce | 36a6dc582ef9180e3d409c180318784c76beaa2f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,228 | sce | Example7_4.sce | //Illustraion of Taylor Series for approximation
//It needs symbolic toolbox
clc;
clear;
close();
cd ~/Desktop/maxima_symbolic;
exec symbolic.sce
y0 = 1;
x0 = 0;
y1_0 = -y0^2/(1+x0);
y2_0 = (2*y0^3+y0^2)/((1+x0)^2);
y3_0 = -(6*y0^4 + 6*y0^3 + 2*y0^2)/((1+x0)^3);
//similarly
y4_0 = 88;
y5_0 = -694;
y6_0 = 6578;
y7_0 = -72792;
syms r h;
format('v',10);
yxr = 1 - r*h + (y2_0*(r*h)^2)/factorial(2) - (y3_0*(r*h)^3)/factorial(3) + (y4_0*(r*h)^4)/factorial(4) - (y5_0*(r*h)^5)/factorial(5) +(y6_0*(r*h)^6)/factorial(6) - (y7_0*(r*h)^7)/factorial(7);
yxr_5d = 1 - r*h + (y2_0*(r*h)^2)/factorial(2) + (y3_0*(r*h)^3)/factorial(3) + (y4_0*(r*h)^4)/factorial(4);
h = 0.05;
r = 1;
yx1 = eval(yxr_5d);
format('v',8);
disp(dbl(yx1), 'Value when r = 1 :');
syms r h;
format('v',10);
yxr = 1 - r*h + (y2_0*(r*h)^2)/factorial(2) - (y3_0*(r*h)^3)/factorial(3) + (y4_0*(r*h)^4)/factorial(4) - (y5_0*(r*h)^5)/factorial(5) +(y6_0*(r*h)^6)/factorial(6) - (y7_0*(r*h)^7)/factorial(7);
yxr_5d = 1 - r*h + (y2_0*(r*h)^2)/factorial(2) + (y3_0*(r*h)^3)/factorial(3) + (y4_0*(r*h)^4)/factorial(4) + (y5_0*(r*h)^5)/factorial(5) ;
h = 0.05;
r = 2;
yx1 = eval(yxr_5d);
format('v',8);
disp(dbl(yx1), 'Value when r = 2 :') |
e80280d45320f1dd865be96757f7d676dd0a660d | 449d555969bfd7befe906877abab098c6e63a0e8 | /2243/CH3/EX3.10/Ex3_10.sce | 6d3131909ccbddf00f0178656c3eff18575adcfe | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 355 | sce | Ex3_10.sce | clc();
clear;
//Given:
lambda = 6000; // wavelength in A
mu = 1; //refractive index for air
// Fringe pattern having 100 fringes per cm
betaa = 0.01; // fringe width in cm
// And,We know betaa = lambda/(2*mu*alpha) , so
// 1 A = 1.0*10^-8 cm
alpha = lambda*10^-8/(2*mu*betaa); // wedge angle in rad
printf("Wedge angle = %.3f rad",alpha);
|
d2dce51d4b2221292fefde37ad2ddc0c6f60a745 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3594/CH6/EX6.4/6_4.sce | f3710b2bf7e6af3e26ab32f147b48f3419a68c14 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 431 | sce | 6_4.sce |
clc
//given
ratio=1.25
u=.675
P=12//hp
//W=P*%pi*(r1^2-r2^2); Total axal thrust.
//M=u*W*(r1+r2); Total friction moemnt
//reducing the two equations and using ratio=1.25(r1=1.25*r2) we get, M=u*21.2*r2^3
ReqM=65//lb ft
RM=ReqM*12//lb in
r2=(RM/(u*P*%pi*(1.25^2-1)))^(1/3)
r1=1.25*r2
d1=r1*2
d2=r2*2
printf("The dimensions of the friction surfaces are:\nOuter Diameter= %.1f in\nInner Diameter= %.1f in\n",d1,d2)
|
404c3caa001283a95ef6c025223ae4041ef866dd | 449d555969bfd7befe906877abab098c6e63a0e8 | /1895/CH8/EX8.21/EXAMPLE8_21.SCE | 11b3dbc4aedaebaa97d27340f2441223bd6a91f5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,297 | sce | EXAMPLE8_21.SCE | //ANALOG AND DIGITAL COMMUNICATION
//BY Dr.SANJAY SHARMA
//CHAPTER 7
//WAVEFORM CODING TECHNIQUES
clear all;
clc;
printf("EXAMPLE 8.21(PAGENO 416)");
//given
SbyN_dB = 30//signal to noise ratio
f_s = 8000//sampling rate
//calculations
//for Sbyn_dB = 1.76 + 20*logq
x1 = (1 / 20)*(SbyN_dB - 1.76)
q1 = exp(x1*log(10))//quantizing level for first case
v1 = log2(q1)// number of bits for first case
f_PCM1 = (v1 / 2) * f_s//minimum required bandwidth for first case
//for SbyN = 20logq - 10.1
x2 = (1/20) * (SbyN_dB + 10.1)
q2 = exp(x2*log(10))//quantizing level for second case
v2 = log2(q2)// number of bits for second case
f_PCM2 = (v2 / 2) * f_s//minimum required bandwidth for second case
//results
printf("\n\ni.a.Minimum number of quantizing levels for first case = %.2f ",q1);
printf("\n\n b.Number of bits for first case =%.2f ",v1);
printf("\n\n c.Minimum system bandwidth required for first case = %.2f hz",f_PCM1);
printf("\n\nii.a.Minimum number of quantizing levels for second case = %.2f ",q2);
printf("\n\n b.Number of bits for second case =%.2f ",v2);
printf("\n\n c.Minimum system bandwidth required for second case = %.2f hz",f_PCM2);
printf("\n\nNote:In the text book they took approximation in\nquantization levels and number bits")
|
599d70e2e45fff5fb5d0e2eb99a46713ba7af38a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3440/CH2/EX2.1/Ex2_1.sce | f7f94a9fd9e3cc42f8570919076c6e96aaba1f3a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 250 | sce | Ex2_1.sce | clc
T=300 //K
k=8.617*10^-5 //eV/K
q=1.6*10**-19 //C
m0=0.91*10^-30//kg
un=1000*10^-4//m^2/Vs
vth=2.28*10**7//cm/sec
mn=0.26*m0
disp(mn)
tauc=(mn*un)/q
disp(tauc,"mean free time in sec is")
l=vth*tauc
disp(l,"mean free path in cm is")
|
2404d5a5bb4f610a339889ecf35d7d0aabae8fa0 | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/ngram/5.14_20.tst | 65cfa86eae16e094694a40a5fc39217cc9c27648 | [] | 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 | 660,102 | tst | 5.14_20.tst | 14 146:1 186:1 748:1 1051:1 1381:1 1731:1 1945:1 2462:1 2627:1 2886:1 4109:1 4198:1 4710:1 4796:1 4894:1 5322:1 5349:1 5451:1 5702:1 5947:1 6405:1 6409:1 6429:1 6723:1 6810:1 7181:1 7285:1 7400:2 7465:1 7499:1 7773:1 8352:1 8900:1 9532:1 9823:1 9878:1 10218:1 10457:1 10480:1 10871:1 10892:1 10970:1 10985:1 11047:1 11368:1 11874:1 11990:1 12346:1 12582:1 12798:1 12800:1 13803:1 13928:1 14366:1 14382:1 14513:1 14516:1 14622:1 14762:1 14785:2 14804:1 14851:1 15183:1 15307:1 15480:35 15496:1 15570:1 15646:1 15658:1 15955:1 16206:1 16313:1 17048:1 17113:1 17485:1 17580:1 18043:1 18093:1 18116:1 18654:1 18931:1 19210:2 19230:1 19561:1 19564:1 19683:1 19773:1 19902:1 20270:1 20304:1 20318:1 20327:1 20962:1 21150:1 21588:1 21627:1 21760:1 22611:1 22864:1 23027:1 23248:1 23305:1 23430:1 23558:1 23971:1 24168:1 24385:1
14 59:1 146:1 186:2 318:1 320:1 450:1 748:1 764:1 814:1 831:1 851:1 889:1 914:1 922:1 949:1 1023:1 1051:1 1153:1 1220:1 1369:1 1381:1 1510:1 1591:1 1603:1 1617:2 1731:1 1759:1 1882:1 1908:1 1938:1 1945:1 1954:2 2172:1 2178:1 2462:3 2480:1 2507:1 2513:1 2587:1 2627:1 2886:1 3002:1 3020:1 3072:1 3077:2 3206:1 3328:1 3462:1 3641:1 3886:1 3909:1 4107:1 4109:1 4190:1 4198:1 4519:1 4551:1 4622:1 4710:1 4796:1 4876:1 4889:1 4894:1 5093:1 5192:1 5322:2 5349:2 5451:2 5492:1 5533:1 5599:1 5702:2 5947:1 6050:1 6139:1 6237:1 6365:1 6381:1 6382:1 6405:1 6409:1 6429:4 6448:1 6459:1 6526:1 6723:1 6810:1 6937:1 7027:1 7096:1 7181:1 7235:1 7285:3 7391:1 7400:3 7465:1 7499:1 7510:1 7571:1 7572:1 7702:1 7754:1 7773:3 7787:1 8005:1 8099:1 8162:1 8171:1 8249:1 8296:1 8352:2 8443:1 8714:1 8809:1 8812:1 8814:1 8900:1 8901:1 8979:1 9022:1 9120:1 9466:1 9488:1 9532:3 9562:1 9619:1 9716:1 9772:1 9818:1 9823:1 9878:1 9890:1 10022:2 10169:1 10218:1 10324:1 10457:1 10480:3 10818:1 10823:1 10871:1 10879:1 10892:1 10970:1 10985:1 11047:2 11062:1 11126:1 11159:1 11215:1 11273:1 11286:1 11325:1 11352:1 11353:1 11368:1 11447:1 11584:1 11708:1 11712:1 11739:1 11790:1 11813:1 11853:1 11874:1 11906:1 11979:1 11990:1 11992:1 12346:2 12488:1 12582:1 12583:1 12652:1 12741:1 12797:1 12798:1 12800:2 12839:1 12988:1 13033:1 13153:1 13449:1 13489:1 13502:1 13647:1 13719:1 13803:2 13928:1 13979:1 14071:1 14130:1 14178:1 14279:1 14332:1 14366:1 14382:1 14422:1 14496:1 14513:1 14516:1 14622:1 14678:1 14740:1 14762:1 14785:2 14804:1 14851:1 15080:1 15134:1 15142:1 15183:1 15307:1 15480:116 15496:1 15556:1 15570:1 15574:1 15646:1 15647:1 15652:1 15655:1 15658:1 15662:1 15935:1 15949:1 15955:1 16051:1 16054:1 16121:1 16206:1 16262:1 16306:1 16313:1 16409:1 16485:1 16593:1 16763:1 16861:1 16970:1 17048:1 17113:1 17362:1 17424:1 17485:1 17580:1 17623:1 18043:2 18058:1 18093:1 18116:1 18166:1 18369:1 18370:1 18491:1 18654:1 18929:1 18931:1 19210:2 19230:1 19339:1 19561:1 19564:1 19612:1 19644:1 19683:1 19762:1 19773:1 19804:1 19902:1 19966:1 20138:1 20258:1 20270:1 20304:1 20318:1 20327:1 20344:2 20464:1 20529:1 20621:1 20668:2 20949:1 20962:1 21065:1 21089:1 21100:1 21150:1 21350:1 21539:1 21588:1 21627:1 21760:1 21774:1 22007:1 22024:1 22048:2 22119:1 22163:1 22223:1 22229:1 22434:1 22466:1 22551:1 22585:1 22611:1 22690:1 22699:1 22734:1 22755:1 22828:1 22864:1 22874:1 22937:1 23011:1 23027:1 23248:1 23305:1 23430:2 23433:1 23466:1 23558:1 23586:1 23603:2 23713:1 23940:1 23971:1 24168:1 24385:1 24568:1
14 59:1 146:1 186:2 318:1 320:1 450:1 457:1 565:1 699:1 748:1 764:1 814:1 831:1 851:1 889:1 911:1 914:1 922:1 949:1 1023:1 1051:1 1114:1 1153:1 1220:1 1259:1 1285:1 1369:1 1381:2 1425:1 1452:1 1510:1 1526:1 1564:1 1591:1 1603:1 1617:2 1731:1 1759:1 1766:2 1882:1 1891:1 1908:1 1938:1 1945:1 1954:2 2040:1 2172:1 2178:1 2321:1 2389:1 2462:4 2480:1 2507:1 2513:1 2587:1 2627:1 2802:1 2844:1 2854:1 2886:1 3002:1 3020:1 3072:1 3077:2 3131:1 3179:1 3206:1 3234:1 3297:1 3326:1 3328:1 3462:1 3641:2 3776:1 3886:1 3909:1 4107:2 4109:1 4190:1 4198:1 4237:1 4375:1 4512:1 4519:1 4539:1 4551:1 4572:1 4622:1 4667:1 4683:1 4710:1 4796:1 4876:1 4889:1 4894:1 5071:1 5093:1 5192:1 5322:3 5325:1 5342:1 5347:1 5349:2 5451:2 5492:1 5533:1 5599:1 5702:2 5726:1 5947:1 5968:1 6050:1 6056:1 6116:1 6139:1 6183:2 6237:1 6365:1 6381:1 6382:1 6405:1 6409:1 6429:4 6448:1 6459:1 6526:1 6723:1 6810:2 6839:1 6859:1 6937:1 7027:1 7054:1 7068:2 7096:1 7165:1 7181:1 7235:1 7285:3 7391:1 7400:3 7430:1 7465:2 7499:1 7510:1 7571:1 7572:1 7656:1 7702:1 7712:1 7741:1 7754:1 7768:1 7773:3 7787:1 7912:1 8002:1 8005:1 8082:1 8099:1 8162:1 8171:1 8207:1 8234:2 8249:1 8279:1 8296:1 8352:2 8383:1 8443:1 8567:1 8582:1 8598:1 8714:2 8726:1 8759:1 8782:1 8802:1 8809:2 8812:1 8814:1 8900:1 8901:1 8979:1 9022:1 9102:1 9120:1 9142:1 9455:1 9466:1 9488:1 9532:3 9562:1 9619:1 9688:1 9716:1 9772:1 9810:1 9818:1 9823:2 9878:1 9890:1 10022:2 10090:1 10169:1 10218:1 10324:1 10457:1 10480:4 10659:1 10818:1 10823:1 10847:1 10871:2 10879:1 10892:1 10897:1 10970:1 10985:1 11047:2 11062:1 11126:1 11159:1 11215:1 11273:1 11286:1 11325:1 11352:1 11353:1 11368:1 11447:1 11459:1 11463:1 11526:1 11584:1 11607:1 11708:1 11712:1 11739:1 11790:1 11813:1 11853:1 11874:1 11906:1 11937:1 11979:1 11990:1 11992:1 12245:1 12346:2 12381:1 12387:1 12488:1 12491:1 12582:1 12583:1 12652:1 12685:1 12740:1 12741:1 12754:1 12797:2 12798:1 12800:2 12839:1 12950:1 12988:1 13033:1 13153:1 13304:1 13428:1 13449:1 13489:2 13502:1 13647:2 13719:1 13733:1 13803:2 13819:1 13928:2 13979:1 13994:1 13996:1 14031:1 14071:1 14130:1 14178:1 14262:1 14279:1 14317:1 14332:1 14366:1 14371:1 14382:1 14422:1 14476:1 14477:1 14496:2 14513:1 14516:1 14622:1 14678:1 14740:1 14744:1 14762:1 14785:2 14804:1 14837:1 14851:1 14962:1 14976:1 15035:1 15080:1 15134:2 15142:1 15183:1 15184:1 15205:1 15307:4 15460:1 15480:204 15496:1 15556:1 15570:1 15574:1 15642:1 15646:1 15647:1 15652:1 15655:1 15658:1 15662:1 15742:2 15776:1 15816:1 15929:1 15935:1 15949:1 15955:1 16042:2 16051:1 16054:1 16115:1 16121:1 16171:1 16206:1 16262:1 16306:1 16313:1 16370:1 16409:1 16485:1 16593:2 16654:1 16693:1 16718:1 16744:1 16763:1 16861:1 16867:1 16882:1 16970:1 17048:1 17113:1 17237:1 17275:1 17316:1 17362:1 17424:1 17485:1 17580:1 17623:1 17772:1 17822:1 17855:1 17916:1 17983:1 18025:1 18028:1 18043:2 18058:1 18079:1 18093:1 18116:1 18166:1 18369:1 18370:1 18491:1 18654:1 18732:1 18742:1 18792:1 18856:1 18857:1 18862:1 18929:1 18931:1 19060:1 19080:1 19210:2 19230:1 19337:2 19339:1 19561:1 19564:1 19612:1 19644:1 19683:1 19716:1 19762:1 19773:1 19804:1 19810:1 19902:1 19966:1 20109:1 20138:1 20258:1 20270:1 20304:1 20318:1 20327:1 20337:1 20344:2 20399:1 20442:1 20464:1 20502:1 20529:1 20621:1 20668:2 20733:1 20738:1 20785:1 20887:1 20949:1 20962:1 21012:1 21065:1 21089:1 21100:1 21150:1 21350:1 21473:1 21539:1 21588:1 21610:2 21627:1 21684:1 21760:4 21774:1 21787:1 21916:1 22007:1 22024:1 22027:1 22048:2 22119:1 22163:1 22223:1 22229:1 22331:1 22360:1 22410:1 22431:1 22434:1 22466:1 22520:1 22551:1 22585:1 22601:1 22611:1 22690:2 22699:1 22715:1 22734:1 22755:1 22786:1 22787:1 22815:1 22828:1 22864:1 22874:1 22937:1 23011:1 23027:1 23039:1 23248:1 23284:1 23305:1 23430:3 23433:1 23466:1 23558:1 23586:1 23603:2 23647:1 23655:1 23713:1 23739:1 23775:1 23777:1 23836:1 23866:1 23923:1 23940:1 23971:2 24168:1 24266:2 24385:1 24530:1 24568:1
14 59:1 146:1 186:2 230:1 318:1 320:1 450:1 457:1 541:1 565:1 699:1 748:1 764:1 814:1 831:1 851:1 889:1 911:1 914:1 922:1 949:1 1011:1 1023:1 1051:1 1114:1 1153:1 1220:1 1259:1 1285:1 1369:1 1381:2 1398:1 1425:1 1452:1 1507:1 1510:1 1526:1 1564:1 1591:1 1603:1 1617:2 1731:1 1759:1 1766:2 1882:2 1883:1 1891:1 1908:1 1938:1 1945:1 1954:2 1976:1 2040:1 2061:1 2172:1 2178:1 2286:1 2321:1 2389:1 2390:1 2426:1 2451:1 2462:5 2480:2 2507:2 2513:1 2587:1 2627:1 2802:1 2844:1 2854:1 2886:1 3002:1 3020:1 3072:1 3077:2 3131:1 3133:1 3153:1 3179:1 3206:1 3234:1 3297:1 3326:1 3328:1 3462:1 3641:3 3776:1 3841:1 3886:1 3889:1 3909:1 3976:1 4107:2 4109:1 4190:1 4198:3 4237:1 4375:1 4497:1 4512:1 4519:1 4539:1 4551:1 4572:1 4622:1 4667:1 4683:1 4710:1 4796:1 4876:2 4889:1 4894:1 5049:1 5071:1 5093:1 5192:1 5247:1 5322:3 5325:2 5342:1 5347:1 5349:2 5350:1 5451:2 5492:1 5533:1 5599:1 5702:2 5726:1 5947:1 5968:1 6005:1 6050:1 6056:1 6112:1 6116:1 6139:1 6183:2 6237:1 6365:1 6381:1 6382:1 6405:1 6409:1 6429:5 6448:1 6449:1 6451:1 6459:1 6526:1 6723:1 6810:2 6824:1 6839:1 6859:1 6937:1 7027:1 7054:1 7068:2 7096:1 7137:1 7165:1 7181:1 7216:1 7235:1 7285:3 7391:2 7400:3 7430:1 7465:2 7499:1 7510:1 7571:1 7572:1 7581:1 7656:1 7702:1 7712:1 7741:1 7754:1 7761:1 7768:1 7773:3 7787:1 7868:1 7912:1 7972:1 8002:1 8005:1 8070:1 8082:1 8099:1 8162:1 8171:1 8206:1 8207:1 8234:2 8249:2 8279:1 8284:1 8296:1 8352:2 8383:1 8443:1 8508:1 8567:1 8568:1 8574:1 8582:1 8598:1 8714:2 8726:1 8759:1 8782:1 8802:1 8809:2 8812:1 8814:1 8900:1 8901:1 8979:1 8998:1 9022:1 9102:1 9120:1 9142:1 9252:1 9441:1 9455:1 9466:1 9488:1 9532:3 9562:2 9619:1 9688:1 9716:1 9772:1 9810:1 9818:1 9823:2 9878:1 9890:1 10022:2 10090:1 10169:1 10218:1 10324:1 10457:1 10480:5 10659:1 10818:1 10823:1 10847:1 10871:2 10879:1 10892:1 10897:1 10970:1 10985:1 11047:2 11062:1 11126:1 11159:1 11187:1 11215:1 11273:1 11286:1 11325:1 11352:1 11353:1 11368:1 11447:1 11459:1 11463:1 11526:1 11584:1 11607:1 11708:2 11712:1 11739:1 11790:1 11813:1 11853:1 11874:1 11906:1 11937:1 11976:1 11979:1 11990:1 11992:1 12115:1 12245:1 12346:2 12381:1 12387:1 12444:1 12488:1 12491:1 12582:1 12583:1 12652:1 12685:1 12723:1 12739:1 12740:1 12741:2 12754:1 12797:2 12798:1 12800:2 12839:1 12950:1 12988:1 13033:1 13153:1 13288:1 13304:1 13336:1 13428:1 13449:1 13470:1 13489:2 13502:1 13647:2 13719:1 13733:1 13760:1 13803:2 13819:2 13835:1 13928:2 13979:1 13986:1 13994:1 13996:1 14031:1 14071:2 14130:1 14178:1 14262:1 14279:1 14317:1 14329:1 14332:2 14366:1 14371:1 14382:1 14422:1 14476:1 14477:1 14496:3 14513:1 14516:1 14622:1 14677:1 14678:1 14740:1 14744:1 14762:1 14763:1 14785:2 14804:1 14810:1 14837:2 14844:1 14851:1 14864:1 14956:1 14962:1 14976:1 15035:1 15080:1 15134:3 15135:1 15142:1 15183:1 15184:1 15205:2 15307:4 15460:1 15480:251 15496:1 15556:1 15570:1 15574:1 15642:1 15646:1 15647:1 15652:1 15655:1 15658:1 15661:1 15662:1 15742:2 15776:2 15816:1 15929:1 15935:1 15949:1 15955:1 16042:2 16051:1 16054:1 16115:1 16121:1 16171:1 16206:1 16262:1 16306:1 16313:1 16370:1 16387:1 16409:1 16485:1 16593:2 16654:1 16693:1 16718:1 16727:1 16744:1 16763:1 16815:1 16861:1 16867:1 16882:1 16970:1 17048:1 17113:1 17237:1 17275:1 17311:1 17316:1 17362:1 17424:1 17485:1 17580:1 17623:1 17768:1 17772:1 17822:1 17839:1 17855:1 17916:2 17983:1 18025:1 18028:1 18043:2 18058:1 18069:1 18079:1 18093:1 18116:1 18166:1 18210:1 18369:1 18370:1 18491:1 18568:1 18654:1 18732:1 18742:1 18792:2 18856:1 18857:1 18862:1 18929:1 18931:1 18941:1 19024:1 19033:1 19060:1 19080:1 19210:2 19230:1 19292:1 19337:2 19339:1 19471:1 19561:1 19564:1 19612:1 19644:1 19683:1 19716:1 19762:1 19773:1 19804:1 19810:1 19902:1 19966:1 20109:1 20138:1 20258:1 20270:2 20278:1 20304:1 20318:1 20327:1 20337:1 20344:2 20399:1 20406:1 20442:2 20464:1 20502:1 20529:1 20621:1 20668:2 20733:1 20738:2 20742:1 20785:2 20887:1 20949:1 20962:1 21012:1 21065:1 21089:1 21100:1 21111:1 21146:1 21150:1 21350:1 21473:1 21539:1 21557:1 21588:1 21610:2 21627:1 21684:1 21760:4 21774:1 21787:1 21838:1 21916:1 22007:1 22024:1 22027:1 22048:2 22119:1 22163:1 22223:1 22229:1 22331:1 22360:1 22410:1 22431:1 22434:1 22466:1 22520:1 22551:2 22585:1 22601:1 22611:1 22690:2 22699:1 22715:1 22734:1 22736:1 22755:1 22786:2 22787:1 22802:1 22809:1 22815:1 22828:1 22864:1 22874:1 22937:1 23011:1 23027:1 23039:1 23089:1 23237:1 23248:1 23284:1 23305:1 23404:1 23430:3 23431:1 23433:1 23466:1 23524:1 23558:1 23586:1 23603:2 23647:2 23655:1 23713:1 23739:1 23775:1 23777:1 23836:1 23862:1 23866:1 23923:1 23940:1 23971:2 24168:1 24266:2 24373:1 24385:1 24401:1 24482:1 24503:1 24530:1 24536:1 24568:1
14 59:1 146:1 185:1 186:2 230:1 318:1 320:1 450:1 457:1 541:1 565:1 699:1 748:1 764:1 814:1 831:1 851:1 889:1 911:1 914:1 922:1 949:1 1011:1 1023:1 1046:1 1051:1 1114:1 1153:1 1220:1 1259:1 1285:1 1332:1 1369:1 1381:2 1398:1 1401:1 1425:1 1452:1 1507:1 1510:1 1517:1 1526:1 1564:1 1591:1 1603:1 1617:2 1731:1 1759:1 1766:2 1809:1 1879:1 1882:2 1883:1 1891:1 1908:1 1938:1 1945:1 1954:2 1976:2 2028:1 2040:1 2061:1 2149:1 2172:1 2178:1 2229:1 2286:1 2321:1 2389:1 2390:2 2426:1 2451:1 2462:7 2480:2 2507:2 2513:1 2565:1 2587:1 2627:1 2802:1 2844:1 2854:1 2886:1 3002:1 3020:1 3049:1 3072:1 3077:2 3131:1 3133:1 3153:1 3179:1 3206:1 3234:1 3297:1 3326:1 3328:1 3408:1 3462:1 3494:1 3615:1 3641:3 3776:1 3841:1 3886:1 3889:1 3909:1 3938:1 3976:1 3995:1 3998:1 4061:1 4107:2 4109:1 4190:1 4198:3 4237:1 4375:1 4497:1 4512:1 4519:1 4539:1 4551:1 4572:1 4622:1 4667:1 4683:1 4710:1 4796:1 4876:2 4889:1 4894:1 5049:1 5071:1 5088:1 5093:1 5192:1 5247:1 5308:1 5322:3 5325:2 5337:1 5342:1 5347:1 5349:2 5350:1 5451:3 5492:1 5533:1 5599:1 5702:2 5726:1 5874:1 5947:1 5968:1 6005:2 6050:1 6056:1 6112:1 6116:1 6139:1 6183:2 6237:1 6289:1 6365:1 6381:1 6382:1 6405:1 6409:1 6429:6 6448:1 6449:1 6451:1 6459:1 6526:1 6669:1 6723:1 6794:1 6810:2 6824:1 6839:1 6854:1 6859:2 6937:1 7027:1 7054:1 7068:2 7096:1 7137:1 7165:1 7181:1 7216:1 7235:1 7285:3 7391:2 7400:4 7430:1 7461:1 7465:2 7499:1 7510:1 7571:1 7572:1 7581:1 7656:1 7702:1 7712:1 7741:1 7754:1 7761:1 7768:1 7773:3 7787:1 7868:2 7912:1 7972:1 7988:1 8002:1 8005:1 8070:1 8082:1 8099:1 8162:1 8171:1 8206:2 8207:1 8234:2 8249:2 8279:1 8284:1 8285:1 8296:1 8352:2 8383:1 8443:1 8508:1 8567:1 8568:2 8574:1 8582:1 8598:1 8714:2 8726:1 8759:1 8782:1 8802:1 8809:2 8812:1 8814:1 8831:1 8878:1 8891:1 8900:1 8901:1 8911:1 8979:1 8998:1 9002:1 9022:1 9101:1 9102:1 9120:1 9142:1 9185:1 9252:1 9441:1 9455:1 9466:1 9488:1 9532:3 9562:2 9619:1 9622:1 9688:1 9716:1 9772:1 9810:1 9818:1 9823:2 9878:1 9890:1 10022:2 10090:1 10169:1 10204:1 10218:1 10324:1 10384:1 10457:1 10480:7 10598:1 10659:1 10818:1 10823:1 10847:1 10871:2 10879:1 10892:1 10897:1 10898:1 10961:1 10970:1 10985:1 11047:2 11062:1 11126:1 11159:1 11187:1 11215:1 11273:1 11286:1 11325:1 11341:1 11352:1 11353:1 11368:1 11400:1 11430:1 11447:1 11459:1 11463:1 11526:1 11584:1 11607:1 11708:2 11712:1 11739:1 11790:1 11813:1 11853:1 11874:1 11906:1 11937:1 11976:1 11979:1 11990:1 11992:1 12115:1 12245:1 12346:2 12381:1 12387:1 12444:1 12486:1 12488:1 12491:1 12582:1 12583:1 12614:1 12652:1 12685:1 12723:1 12739:1 12740:1 12741:2 12748:1 12754:1 12797:2 12798:1 12800:2 12839:1 12950:1 12988:1 13033:1 13058:1 13153:1 13288:1 13304:1 13336:1 13428:1 13437:1 13449:1 13470:1 13489:2 13502:1 13647:2 13682:1 13719:1 13733:1 13760:1 13803:2 13819:2 13835:1 13928:2 13979:1 13986:1 13994:1 13996:1 14031:1 14051:1 14071:2 14130:1 14178:2 14262:1 14279:1 14317:1 14329:1 14332:2 14366:1 14371:1 14382:1 14422:1 14476:1 14477:1 14496:3 14513:1 14516:1 14622:1 14649:1 14677:1 14678:1 14740:2 14744:1 14762:1 14763:1 14785:2 14802:1 14804:1 14810:1 14837:2 14844:1 14851:1 14864:1 14956:1 14962:1 14976:1 15035:1 15080:1 15134:3 15135:1 15142:1 15183:1 15184:2 15205:2 15282:1 15307:4 15360:1 15405:1 15460:1 15480:309 15496:1 15556:1 15570:1 15574:1 15642:1 15646:1 15647:1 15649:1 15652:1 15655:2 15658:1 15661:1 15662:1 15742:2 15776:3 15816:1 15929:1 15935:1 15949:2 15955:1 15997:1 16042:2 16051:1 16054:1 16115:1 16118:1 16121:1 16154:1 16171:1 16206:1 16262:1 16306:1 16313:1 16370:1 16387:1 16409:1 16485:1 16503:1 16593:2 16630:1 16654:1 16693:1 16718:1 16727:1 16744:1 16753:1 16763:1 16780:1 16815:1 16861:1 16867:1 16882:1 16970:1 17048:1 17113:1 17237:1 17275:1 17311:1 17316:1 17362:1 17424:1 17485:1 17553:1 17580:1 17623:1 17678:1 17768:1 17772:1 17822:1 17839:1 17855:1 17865:1 17916:2 17943:1 17983:1 18025:1 18028:1 18043:2 18058:1 18069:1 18079:1 18093:1 18116:1 18166:1 18210:1 18266:1 18369:1 18370:1 18491:1 18568:1 18654:1 18732:1 18742:1 18792:2 18856:1 18857:1 18862:1 18929:1 18931:1 18941:1 19024:1 19033:1 19060:1 19080:1 19108:1 19205:1 19210:2 19230:1 19292:2 19293:1 19337:2 19339:1 19471:1 19487:1 19561:1 19564:1 19612:1 19644:1 19683:1 19716:1 19762:1 19773:1 19804:1 19810:1 19847:1 19902:1 19966:1 20084:1 20109:1 20138:1 20226:1 20258:2 20270:2 20278:1 20304:1 20318:2 20327:1 20331:2 20332:1 20337:1 20341:1 20344:2 20383:1 20398:1 20399:1 20406:1 20442:2 20447:1 20464:1 20502:1 20529:1 20621:1 20631:1 20668:2 20733:1 20738:2 20742:1 20761:1 20785:2 20887:1 20949:2 20962:1 21012:1 21065:1 21089:1 21100:1 21111:1 21146:1 21150:1 21350:1 21473:1 21539:1 21557:1 21588:1 21610:2 21627:1 21684:1 21760:4 21773:1 21774:1 21787:1 21838:1 21916:2 22007:1 22024:1 22027:1 22048:2 22119:1 22163:1 22208:1 22223:1 22229:1 22256:1 22263:1 22279:1 22331:2 22360:1 22410:1 22431:1 22434:1 22466:1 22520:1 22551:2 22585:1 22601:1 22611:1 22690:2 22699:1 22715:1 22734:1 22736:1 22755:2 22786:2 22787:1 22802:1 22809:1 22815:1 22820:1 22828:1 22864:1 22874:1 22937:1 22942:1 23011:1 23027:1 23039:1 23089:1 23237:1 23248:1 23284:1 23305:1 23392:1 23404:1 23424:1 23430:3 23431:1 23433:1 23466:1 23524:1 23558:1 23586:1 23588:1 23603:2 23647:2 23655:1 23713:1 23739:1 23775:1 23777:1 23835:1 23836:1 23862:1 23866:1 23923:1 23940:1 23971:2 24039:1 24143:1 24168:1 24170:1 24266:2 24286:1 24370:1 24373:1 24385:1 24401:1 24476:1 24482:1 24503:1 24530:1 24536:1 24568:1
14 59:1 146:1 185:1 186:3 230:1 318:1 320:1 450:1 457:1 541:1 565:1 699:1 704:1 748:1 764:2 814:1 831:1 851:2 881:1 889:1 911:1 914:1 922:1 949:1 1011:1 1023:1 1046:1 1051:1 1055:1 1059:1 1114:1 1153:1 1171:1 1220:2 1259:2 1285:1 1332:1 1369:1 1381:2 1398:1 1401:1 1425:1 1452:1 1507:1 1510:1 1517:1 1526:1 1564:1 1591:1 1603:1 1617:2 1627:1 1731:1 1759:1 1766:2 1809:1 1879:1 1880:1 1882:2 1883:1 1885:1 1891:1 1908:1 1938:1 1945:1 1954:2 1968:1 1973:1 1976:2 2028:1 2040:1 2061:1 2149:1 2172:1 2178:1 2226:1 2229:1 2286:1 2295:1 2321:1 2389:1 2390:2 2426:1 2448:1 2451:1 2462:7 2480:2 2486:1 2507:3 2513:1 2519:1 2565:1 2587:1 2627:1 2742:1 2785:1 2802:2 2844:1 2849:1 2854:1 2886:1 3002:1 3003:1 3020:1 3049:1 3072:1 3077:2 3131:1 3133:1 3153:1 3179:1 3206:1 3234:1 3297:2 3326:1 3328:1 3408:2 3462:1 3494:1 3499:1 3615:1 3641:4 3678:1 3776:1 3841:1 3886:1 3889:1 3909:2 3938:1 3967:1 3976:1 3995:1 3998:1 4061:1 4107:2 4109:1 4136:1 4190:1 4198:3 4212:1 4237:1 4340:1 4375:2 4399:1 4497:1 4512:1 4519:1 4539:1 4551:1 4572:1 4622:1 4667:1 4683:1 4710:1 4796:1 4876:2 4889:1 4894:1 5049:1 5071:2 5088:1 5093:1 5192:1 5247:1 5258:1 5308:1 5322:3 5325:2 5332:1 5337:1 5342:1 5347:1 5349:3 5350:1 5354:1 5451:4 5492:1 5530:1 5533:1 5585:1 5599:1 5702:3 5726:1 5807:1 5874:1 5939:1 5947:1 5968:1 6005:2 6050:1 6056:1 6112:1 6116:1 6126:1 6139:1 6183:2 6237:1 6289:1 6311:1 6365:1 6381:1 6382:1 6405:1 6409:1 6429:8 6448:1 6449:1 6451:2 6459:1 6468:1 6526:1 6669:1 6675:1 6723:1 6794:1 6810:2 6824:1 6839:1 6854:1 6859:2 6937:1 7027:1 7054:1 7068:2 7096:1 7137:1 7165:1 7169:1 7170:1 7178:1 7179:1 7181:1 7199:1 7216:1 7235:1 7285:3 7379:1 7391:2 7400:5 7430:1 7456:1 7461:1 7465:2 7499:1 7510:1 7527:1 7571:2 7572:1 7581:1 7648:1 7656:1 7702:1 7712:1 7741:1 7754:1 7761:1 7768:1 7773:3 7787:1 7868:2 7912:1 7972:1 7988:1 8002:1 8005:1 8049:1 8065:1 8070:1 8081:1 8082:1 8099:2 8162:1 8171:1 8206:3 8207:1 8234:4 8249:2 8279:1 8284:1 8285:1 8296:1 8352:3 8383:1 8443:1 8508:1 8567:1 8568:2 8574:1 8582:1 8598:2 8714:2 8726:1 8727:1 8759:2 8782:1 8783:1 8802:1 8809:2 8812:1 8814:2 8831:2 8878:1 8891:1 8900:1 8901:1 8911:1 8979:1 8998:1 9002:1 9022:1 9067:1 9101:1 9102:2 9120:1 9142:1 9185:1 9252:1 9440:1 9441:1 9455:2 9466:1 9488:1 9532:3 9562:2 9575:1 9599:1 9619:1 9622:1 9688:1 9716:1 9772:1 9810:1 9818:1 9823:2 9878:1 9890:1 9918:1 9963:1 10022:2 10052:1 10090:1 10169:1 10204:1 10218:1 10232:1 10324:1 10384:1 10457:1 10480:7 10598:1 10659:1 10818:1 10823:1 10847:1 10851:1 10871:2 10879:1 10892:1 10897:1 10898:1 10961:1 10970:1 10985:1 11046:1 11047:3 11062:1 11103:1 11126:1 11159:1 11187:1 11215:2 11273:2 11286:1 11325:1 11341:1 11352:1 11353:1 11368:1 11400:1 11430:1 11447:1 11459:1 11463:1 11526:1 11584:2 11607:1 11708:2 11712:1 11739:1 11790:1 11812:1 11813:1 11833:1 11853:1 11874:1 11906:1 11937:1 11976:1 11979:1 11990:1 11992:1 12115:1 12184:1 12245:1 12346:3 12381:2 12387:1 12396:1 12444:1 12486:1 12488:1 12491:1 12556:1 12575:1 12582:1 12583:1 12614:1 12652:1 12685:1 12723:1 12739:1 12740:1 12741:2 12748:1 12754:1 12797:2 12798:1 12800:3 12839:1 12881:1 12950:1 12988:1 13032:1 13033:1 13058:1 13104:1 13153:2 13207:1 13225:1 13288:1 13304:1 13336:1 13428:1 13437:1 13445:1 13449:1 13470:1 13489:2 13502:1 13561:1 13647:2 13682:1 13719:1 13733:1 13760:1 13803:3 13819:3 13835:2 13928:2 13979:1 13986:1 13989:1 13994:1 13996:1 14031:1 14051:1 14071:2 14130:1 14178:2 14262:1 14279:1 14317:1 14329:1 14332:2 14366:1 14371:2 14382:1 14422:1 14476:1 14477:1 14496:4 14513:1 14516:1 14582:1 14622:1 14649:1 14665:1 14677:1 14678:1 14740:2 14744:1 14762:1 14763:1 14774:1 14785:2 14802:1 14804:1 14807:1 14810:1 14837:2 14844:1 14849:1 14851:1 14864:1 14871:1 14956:1 14962:1 14976:1 14981:1 15035:1 15080:1 15134:4 15135:1 15137:1 15142:1 15171:1 15183:1 15184:3 15205:3 15282:1 15307:5 15360:1 15405:1 15452:1 15460:1 15480:394 15492:1 15496:1 15556:1 15570:1 15574:1 15642:1 15646:1 15647:1 15649:1 15652:1 15655:2 15658:1 15661:1 15662:1 15742:2 15743:1 15776:4 15816:1 15929:1 15935:1 15943:1 15949:2 15955:1 15997:1 16042:2 16051:1 16054:1 16115:2 16118:1 16121:1 16151:1 16154:1 16171:1 16206:1 16262:1 16273:2 16306:2 16313:1 16370:1 16387:2 16409:1 16426:1 16485:1 16495:1 16503:1 16593:2 16630:1 16654:1 16659:1 16670:1 16693:1 16718:1 16727:1 16732:1 16744:1 16753:1 16763:1 16780:1 16815:2 16861:1 16862:1 16867:1 16882:1 16970:1 16975:1 17048:1 17057:1 17113:1 17237:2 17275:1 17311:1 17316:1 17346:1 17362:2 17404:1 17424:1 17485:1 17491:1 17553:1 17580:1 17623:1 17678:1 17725:1 17768:1 17772:1 17822:1 17839:1 17855:2 17865:1 17916:3 17943:1 17983:1 18009:1 18025:1 18028:1 18043:3 18058:1 18069:1 18079:1 18093:1 18116:1 18166:1 18168:1 18210:1 18266:1 18369:1 18370:1 18378:1 18454:1 18491:1 18511:1 18568:1 18654:1 18704:1 18727:1 18732:1 18742:1 18748:1 18792:2 18856:2 18857:1 18862:2 18929:1 18931:1 18941:2 19024:1 19033:1 19060:1 19080:1 19108:1 19205:1 19210:2 19230:1 19292:3 19293:1 19337:2 19339:1 19422:1 19471:1 19487:1 19561:1 19562:1 19564:1 19612:1 19644:1 19683:1 19716:1 19762:2 19773:1 19804:1 19810:1 19847:1 19902:1 19966:1 20084:2 20109:1 20138:1 20226:1 20251:1 20258:2 20270:2 20275:1 20278:1 20304:1 20318:3 20327:1 20331:2 20332:2 20334:1 20337:1 20341:1 20344:2 20378:1 20383:1 20398:1 20399:1 20406:1 20441:1 20442:2 20447:2 20464:1 20469:1 20502:1 20529:1 20619:1 20621:1 20631:1 20668:2 20733:1 20738:2 20742:1 20761:1 20785:3 20887:1 20949:2 20962:1 21012:1 21065:2 21089:1 21100:1 21108:1 21111:1 21146:1 21150:1 21209:1 21225:1 21350:1 21473:1 21529:1 21539:1 21557:1 21588:1 21602:1 21610:2 21627:1 21684:1 21760:5 21773:1 21774:1 21782:1 21784:1 21787:1 21812:1 21838:1 21914:1 21916:3 22007:1 22024:1 22027:1 22048:2 22080:1 22109:1 22119:1 22163:2 22208:1 22223:1 22229:1 22245:1 22256:1 22263:1 22279:1 22331:4 22360:1 22410:1 22415:1 22431:1 22434:1 22466:1 22520:2 22551:3 22561:1 22585:1 22601:1 22611:1 22617:1 22690:2 22699:2 22715:1 22734:1 22736:1 22755:3 22786:2 22787:1 22802:1 22809:1 22815:1 22820:1 22828:1 22846:1 22864:1 22874:1 22937:1 22942:1 23011:1 23027:1 23039:1 23089:1 23109:1 23237:1 23248:1 23284:1 23305:1 23333:1 23349:1 23392:1 23404:1 23424:1 23430:7 23431:1 23433:1 23466:1 23524:1 23558:1 23586:1 23588:1 23603:2 23647:2 23655:1 23712:1 23713:1 23733:1 23739:1 23767:1 23775:3 23777:1 23835:1 23836:1 23862:1 23866:3 23923:1 23940:1 23971:2 24039:2 24081:1 24126:1 24143:1 24168:1 24170:1 24266:2 24286:1 24370:1 24373:1 24385:1 24401:2 24476:1 24482:1 24503:2 24530:1 24536:1 24568:1
14 59:1 71:1 146:1 185:1 186:3 230:1 314:1 318:1 320:1 336:1 346:1 450:1 457:2 524:1 527:1 541:1 565:1 592:1 699:1 704:1 732:1 748:1 759:1 764:2 814:1 831:1 851:2 881:1 889:1 895:1 911:1 914:1 922:1 949:1 1011:1 1023:1 1046:2 1048:1 1051:1 1055:1 1059:1 1114:1 1125:1 1153:1 1171:1 1220:3 1259:2 1285:1 1297:1 1332:2 1369:1 1381:2 1398:1 1401:1 1425:1 1452:1 1507:2 1510:1 1517:2 1526:1 1545:1 1564:3 1591:1 1603:1 1616:1 1617:3 1627:1 1731:1 1737:1 1759:1 1766:2 1809:1 1842:1 1879:1 1880:1 1882:2 1883:1 1885:1 1891:1 1908:1 1912:1 1938:1 1945:2 1954:2 1955:1 1968:1 1973:1 1976:2 2028:1 2040:1 2061:1 2149:1 2164:1 2172:1 2178:1 2183:1 2226:1 2229:1 2286:1 2295:1 2321:1 2389:1 2390:2 2426:1 2448:1 2451:1 2462:10 2480:2 2486:1 2507:5 2513:1 2519:1 2565:1 2587:1 2627:1 2742:1 2785:1 2801:1 2802:3 2844:1 2849:1 2854:1 2886:1 3002:1 3003:1 3020:1 3049:1 3072:1 3077:3 3131:1 3133:1 3153:1 3173:1 3179:1 3206:1 3225:1 3234:1 3297:2 3326:1 3328:1 3408:2 3462:1 3494:1 3499:1 3518:1 3522:1 3572:1 3615:1 3641:4 3678:1 3776:1 3841:1 3886:1 3889:1 3909:2 3938:1 3967:1 3976:1 3984:1 3995:1 3998:1 4061:1 4107:4 4109:1 4136:1 4190:1 4198:3 4212:1 4213:1 4237:1 4340:1 4371:1 4375:3 4399:1 4497:1 4512:1 4519:1 4539:1 4551:1 4572:1 4609:1 4622:1 4667:1 4683:1 4710:1 4796:1 4821:1 4876:2 4889:1 4894:1 5049:1 5071:2 5088:1 5093:1 5192:1 5247:1 5254:1 5258:1 5308:1 5322:3 5325:2 5332:1 5337:1 5338:1 5342:1 5347:1 5349:3 5350:1 5354:2 5451:4 5492:1 5500:1 5530:1 5533:1 5585:1 5599:1 5688:1 5702:3 5726:1 5788:1 5807:1 5828:1 5865:1 5874:1 5878:1 5939:1 5947:1 5968:1 6005:2 6050:1 6056:1 6087:1 6112:1 6116:1 6126:1 6139:1 6183:2 6237:2 6289:1 6311:2 6365:1 6381:1 6382:1 6405:1 6409:1 6410:1 6429:10 6434:1 6448:1 6449:1 6451:3 6459:1 6468:1 6491:1 6492:1 6526:1 6669:1 6675:1 6723:1 6794:1 6810:2 6824:1 6839:1 6854:2 6859:2 6937:1 7016:1 7027:1 7054:1 7068:2 7096:1 7137:1 7157:1 7165:1 7169:1 7170:1 7178:2 7179:1 7181:1 7194:1 7199:1 7202:1 7215:1 7216:1 7235:1 7285:4 7379:1 7391:2 7400:5 7430:1 7443:1 7456:1 7461:1 7464:1 7465:2 7499:1 7510:1 7527:1 7571:2 7572:1 7581:2 7648:1 7656:1 7702:1 7712:1 7741:1 7754:1 7761:1 7768:1 7773:4 7787:1 7820:1 7868:2 7912:1 7972:1 7988:2 8002:1 8005:1 8049:1 8065:1 8070:2 8081:1 8082:1 8099:2 8162:2 8171:1 8175:1 8206:3 8207:1 8234:4 8249:2 8279:1 8284:1 8285:1 8296:1 8317:1 8352:3 8355:1 8383:1 8443:1 8508:1 8567:1 8568:2 8574:1 8582:1 8593:1 8598:3 8623:1 8657:1 8690:1 8702:1 8714:2 8726:1 8727:1 8759:3 8761:1 8782:1 8783:1 8800:1 8802:1 8809:2 8812:1 8814:3 8831:2 8878:1 8891:2 8900:1 8901:1 8911:1 8916:1 8979:1 8998:1 9002:1 9022:1 9067:1 9101:1 9102:3 9120:1 9142:1 9185:1 9252:2 9336:1 9363:1 9440:2 9441:1 9455:3 9466:1 9488:1 9495:1 9532:4 9550:1 9562:2 9575:1 9599:1 9619:1 9622:1 9688:2 9716:2 9772:1 9810:1 9818:1 9823:2 9878:1 9890:1 9918:1 9922:1 9963:1 10022:3 10052:2 10090:1 10169:1 10204:1 10218:1 10232:1 10324:1 10369:1 10384:1 10457:1 10480:9 10598:1 10648:1 10659:1 10818:1 10823:2 10843:1 10847:2 10851:1 10871:2 10879:1 10892:1 10897:1 10898:1 10961:1 10970:1 10985:1 11016:1 11046:1 11047:3 11056:1 11062:1 11103:1 11126:1 11159:2 11187:1 11215:3 11273:2 11284:1 11286:1 11325:1 11341:1 11352:1 11353:1 11368:1 11400:1 11430:1 11447:1 11459:1 11463:1 11526:1 11584:2 11607:1 11708:2 11712:1 11739:1 11790:1 11792:1 11812:2 11813:1 11833:1 11853:1 11874:1 11906:1 11937:1 11976:1 11979:1 11990:1 11992:1 12115:1 12182:1 12184:1 12245:1 12346:3 12364:1 12381:3 12387:1 12396:1 12444:1 12486:1 12488:2 12491:1 12556:1 12575:1 12582:1 12583:1 12614:1 12652:1 12685:1 12723:1 12739:1 12740:1 12741:3 12748:1 12754:1 12797:2 12798:1 12800:3 12839:1 12881:1 12945:1 12950:1 12988:1 13032:1 13033:1 13058:1 13104:1 13153:2 13181:1 13207:1 13225:2 13288:1 13304:1 13336:1 13428:1 13437:1 13445:1 13449:1 13470:1 13489:2 13502:1 13525:1 13561:1 13620:1 13647:2 13664:1 13682:1 13719:1 13733:1 13760:1 13803:3 13819:3 13835:4 13928:2 13970:1 13979:1 13986:1 13989:2 13994:1 13996:1 14031:1 14051:1 14071:2 14130:1 14178:2 14207:1 14231:1 14262:1 14279:1 14317:1 14329:1 14332:2 14366:1 14371:2 14382:1 14422:1 14476:2 14477:1 14496:4 14513:1 14516:1 14522:1 14577:1 14582:1 14622:1 14630:1 14635:1 14649:1 14665:1 14677:2 14678:1 14696:1 14740:2 14744:1 14762:1 14763:1 14774:1 14785:2 14802:1 14804:1 14807:1 14810:1 14837:2 14844:1 14849:1 14851:1 14864:1 14871:1 14956:1 14962:1 14976:1 14981:1 15035:1 15080:1 15111:1 15134:4 15135:1 15137:1 15142:1 15171:1 15183:1 15184:3 15205:3 15282:1 15283:1 15307:6 15354:1 15360:1 15405:1 15452:1 15460:2 15480:438 15492:1 15496:1 15556:1 15570:1 15574:1 15642:2 15646:1 15647:1 15649:1 15652:1 15655:3 15658:1 15661:1 15662:1 15738:1 15742:2 15743:1 15776:4 15816:1 15929:1 15935:1 15943:1 15949:3 15955:1 15997:1 16042:2 16051:1 16054:1 16115:2 16118:1 16121:3 16151:1 16154:1 16171:1 16206:1 16228:1 16262:1 16273:2 16306:2 16313:1 16341:1 16370:1 16387:4 16409:2 16426:1 16485:1 16495:1 16503:1 16548:1 16593:2 16603:1 16630:2 16654:1 16659:1 16670:1 16679:1 16693:1 16718:1 16727:1 16732:1 16735:1 16744:1 16753:1 16763:1 16780:1 16815:4 16861:1 16862:1 16867:1 16882:1 16970:1 16975:1 17048:1 17057:1 17113:1 17237:3 17275:1 17311:2 17316:1 17320:1 17346:1 17362:3 17404:1 17424:1 17485:1 17491:1 17553:1 17569:1 17580:1 17623:1 17678:1 17725:1 17768:1 17772:1 17822:1 17839:1 17855:2 17865:1 17916:3 17943:1 17955:1 17958:1 17980:1 17983:1 18009:2 18025:1 18028:1 18043:3 18058:1 18069:1 18079:1 18093:1 18116:1 18146:1 18166:1 18168:1 18181:1 18210:1 18266:1 18369:1 18370:2 18378:1 18454:1 18491:1 18511:1 18568:1 18654:1 18704:1 18727:1 18732:2 18742:1 18748:1 18792:2 18856:3 18857:1 18862:3 18929:1 18931:1 18941:4 19024:1 19033:1 19060:1 19080:1 19098:1 19108:1 19205:1 19210:2 19230:1 19292:3 19293:1 19337:2 19339:1 19395:1 19422:1 19471:1 19487:1 19561:1 19562:1 19564:1 19612:1 19644:1 19683:1 19716:1 19762:3 19773:1 19792:1 19804:1 19810:2 19847:1 19902:1 19912:1 19962:1 19966:1 20015:1 20084:3 20109:1 20138:1 20223:1 20224:1 20226:1 20239:1 20251:1 20258:2 20267:1 20270:2 20275:1 20278:1 20304:1 20317:1 20318:3 20327:1 20331:2 20332:2 20334:1 20337:1 20341:1 20344:3 20378:3 20383:1 20398:1 20399:1 20406:1 20441:1 20442:2 20447:2 20464:1 20469:1 20502:1 20529:1 20619:1 20621:1 20627:1 20631:1 20668:3 20733:1 20738:2 20742:2 20761:1 20785:3 20853:1 20887:1 20949:2 20962:1 21012:1 21065:2 21089:1 21100:1 21108:1 21111:1 21146:1 21150:1 21173:1 21209:1 21218:1 21224:1 21225:1 21350:1 21473:1 21485:1 21529:1 21539:2 21557:2 21588:1 21602:2 21610:2 21627:1 21684:1 21760:6 21773:1 21774:1 21782:1 21783:1 21784:1 21787:1 21812:1 21830:1 21838:1 21914:1 21916:4 21926:1 21997:1 22007:1 22024:1 22027:1 22048:3 22080:1 22109:1 22119:1 22163:2 22208:1 22223:1 22229:1 22245:1 22256:1 22263:1 22279:1 22331:4 22360:1 22410:1 22415:1 22417:1 22431:1 22434:1 22466:1 22472:1 22520:3 22551:3 22561:1 22585:1 22601:1 22611:1 22617:1 22690:2 22699:3 22707:1 22715:1 22734:1 22736:1 22755:4 22786:2 22787:1 22795:1 22802:1 22809:1 22815:1 22820:1 22822:1 22828:1 22846:1 22864:1 22874:1 22937:1 22942:1 23001:1 23011:1 23027:1 23039:1 23089:2 23109:1 23167:1 23237:1 23248:1 23284:1 23305:1 23333:1 23349:1 23385:1 23392:1 23404:1 23424:1 23430:11 23431:1 23433:1 23466:2 23491:1 23524:1 23551:2 23558:1 23586:1 23588:1 23603:3 23646:1 23647:2 23655:1 23685:1 23712:1 23713:1 23720:1 23733:1 23739:1 23767:1 23775:3 23777:1 23835:1 23836:1 23862:1 23866:3 23923:1 23940:1 23971:2 24039:2 24081:1 24126:1 24143:1 24168:1 24170:2 24179:1 24265:1 24266:2 24286:1 24370:1 24373:1 24385:1 24394:1 24401:2 24476:1 24477:1 24482:1 24503:2 24525:1 24530:1 24536:1 24538:1 24568:1
14 59:1 71:1 146:1 185:1 186:4 204:1 230:1 314:1 318:1 320:1 336:1 346:1 450:1 457:2 524:1 525:1 527:1 541:1 565:1 592:1 699:1 704:2 732:1 748:1 759:1 764:2 814:1 831:1 851:2 881:1 889:1 895:1 911:1 914:1 922:1 949:1 1011:1 1023:1 1046:2 1048:1 1051:1 1055:1 1059:2 1114:1 1125:1 1153:1 1171:2 1220:3 1259:2 1285:1 1297:1 1321:1 1332:2 1369:1 1381:2 1398:1 1401:1 1425:1 1452:1 1507:2 1510:1 1517:2 1526:1 1545:1 1564:3 1591:1 1603:1 1616:1 1617:3 1627:1 1710:1 1731:1 1737:1 1759:1 1766:2 1809:1 1842:1 1879:1 1880:1 1882:2 1883:1 1885:1 1891:1 1908:1 1910:1 1912:1 1938:1 1945:2 1954:2 1955:1 1968:1 1973:1 1976:2 2028:1 2040:1 2061:1 2128:1 2149:1 2157:1 2164:1 2172:1 2178:1 2183:1 2226:2 2229:1 2286:1 2295:1 2321:2 2383:1 2389:1 2390:2 2425:1 2426:1 2448:1 2451:1 2462:11 2480:2 2486:1 2507:5 2513:1 2519:1 2565:1 2587:1 2627:1 2704:1 2742:1 2785:1 2801:1 2802:3 2844:1 2849:1 2854:1 2886:1 2980:1 3002:1 3003:1 3020:1 3049:1 3072:1 3077:3 3131:1 3132:1 3133:1 3153:1 3173:1 3179:1 3206:1 3225:1 3234:1 3297:2 3326:1 3328:1 3408:2 3462:1 3494:1 3499:1 3518:1 3522:1 3572:1 3581:1 3615:1 3641:4 3678:1 3776:1 3786:1 3804:1 3841:1 3886:1 3889:1 3909:2 3938:1 3964:1 3967:1 3976:1 3984:1 3995:1 3998:1 4046:1 4061:1 4107:5 4109:1 4136:1 4154:1 4183:1 4190:1 4198:3 4212:2 4213:1 4237:1 4340:1 4353:1 4368:1 4371:1 4375:4 4399:1 4497:1 4498:1 4512:1 4519:1 4539:1 4551:1 4572:1 4609:1 4622:1 4667:1 4683:1 4710:1 4796:1 4821:1 4876:2 4889:1 4894:1 5049:1 5071:2 5088:1 5093:1 5100:1 5192:1 5224:1 5247:1 5254:1 5258:1 5308:1 5322:3 5325:2 5332:1 5337:1 5338:1 5342:1 5347:1 5349:3 5350:1 5352:1 5354:2 5451:4 5492:1 5500:1 5530:1 5533:1 5585:1 5595:1 5599:1 5688:1 5702:3 5726:1 5788:1 5807:1 5828:1 5865:1 5874:1 5878:1 5939:1 5947:2 5948:1 5968:1 6005:2 6050:1 6056:1 6087:1 6112:1 6116:1 6126:1 6139:1 6183:2 6235:1 6237:2 6289:1 6311:2 6365:1 6381:1 6382:1 6405:1 6409:1 6410:1 6429:10 6434:1 6448:1 6449:1 6451:3 6459:1 6468:1 6491:1 6492:1 6526:1 6669:1 6675:1 6723:1 6794:1 6796:1 6810:2 6824:1 6839:1 6854:2 6859:2 6937:1 7016:1 7027:1 7054:1 7059:1 7068:2 7096:1 7137:1 7157:1 7165:1 7169:1 7170:1 7177:1 7178:2 7179:1 7181:1 7194:1 7199:1 7202:1 7215:1 7216:1 7235:1 7285:4 7379:1 7391:2 7400:6 7409:1 7430:1 7443:1 7456:1 7461:1 7464:1 7465:2 7499:1 7510:1 7527:1 7571:3 7572:1 7581:2 7615:1 7648:2 7656:1 7702:1 7712:2 7741:1 7754:1 7761:1 7768:1 7773:4 7782:1 7787:1 7810:1 7820:1 7868:2 7912:1 7972:1 7988:2 8002:1 8005:1 8049:1 8065:1 8070:2 8081:1 8082:1 8099:3 8162:2 8171:1 8175:1 8206:3 8207:1 8234:4 8249:2 8279:1 8284:1 8285:1 8296:1 8304:1 8317:1 8352:3 8355:1 8383:1 8443:1 8508:1 8567:1 8568:2 8574:1 8582:1 8593:1 8598:4 8623:1 8657:1 8690:1 8702:1 8714:2 8726:1 8727:1 8759:4 8761:1 8782:1 8783:1 8800:1 8802:1 8809:3 8812:1 8814:3 8831:2 8832:1 8833:1 8878:1 8891:2 8900:1 8901:1 8911:1 8916:1 8944:1 8968:1 8979:1 8998:1 9002:1 9022:1 9067:1 9101:1 9102:3 9120:1 9142:1 9185:1 9222:1 9252:2 9336:1 9363:1 9377:1 9440:2 9441:1 9455:3 9466:1 9488:2 9495:1 9532:4 9550:1 9562:2 9563:1 9575:1 9599:1 9607:1 9619:1 9622:1 9682:1 9688:2 9716:2 9772:1 9810:1 9818:1 9823:2 9878:1 9890:1 9918:1 9922:1 9963:1 10022:3 10045:1 10052:2 10090:1 10169:1 10204:1 10211:1 10218:1 10232:1 10324:1 10369:1 10384:1 10457:1 10480:9 10531:1 10598:1 10648:1 10651:1 10659:1 10818:1 10823:2 10843:1 10847:2 10851:1 10871:2 10879:1 10892:1 10897:1 10898:1 10961:1 10962:1 10970:1 10981:1 10985:1 11016:1 11046:1 11047:3 11056:1 11062:1 11103:1 11118:1 11126:1 11159:2 11187:1 11215:4 11223:1 11273:3 11284:1 11286:1 11297:1 11325:1 11341:1 11352:1 11353:1 11368:1 11400:1 11408:1 11430:1 11447:1 11459:1 11463:1 11486:1 11526:1 11584:2 11607:1 11638:1 11708:2 11712:1 11739:1 11790:1 11792:1 11812:2 11813:1 11833:1 11853:1 11874:1 11906:1 11937:1 11976:1 11979:1 11990:1 11992:1 12099:1 12115:1 12182:1 12184:1 12245:1 12289:1 12338:1 12346:3 12364:1 12372:1 12381:3 12387:1 12396:1 12444:1 12486:1 12488:2 12491:1 12556:2 12575:1 12582:1 12583:1 12614:1 12623:1 12652:1 12685:1 12723:1 12739:1 12740:1 12741:4 12748:1 12754:1 12797:2 12798:1 12800:3 12839:1 12881:1 12945:1 12950:1 12988:1 13032:1 13033:1 13058:1 13104:2 13153:2 13181:1 13207:1 13225:3 13288:1 13304:1 13311:1 13336:1 13362:1 13428:1 13437:1 13445:1 13449:1 13452:1 13470:1 13489:2 13502:1 13525:1 13561:1 13620:1 13647:2 13664:1 13682:1 13719:1 13733:1 13760:1 13766:1 13803:3 13819:3 13835:4 13888:1 13928:2 13970:1 13979:1 13986:1 13989:3 13994:1 13996:1 14000:1 14031:1 14051:1 14071:2 14073:1 14077:1 14088:1 14130:1 14178:3 14207:1 14231:1 14262:1 14279:1 14300:1 14317:1 14329:1 14332:2 14334:1 14366:1 14371:2 14382:1 14395:1 14422:1 14465:1 14476:2 14477:1 14496:4 14513:1 14516:2 14522:1 14577:1 14582:1 14622:1 14630:1 14635:1 14649:1 14665:1 14672:1 14677:2 14678:1 14696:1 14719:1 14740:3 14744:1 14762:1 14763:1 14774:1 14785:2 14802:1 14804:1 14807:1 14810:1 14837:2 14844:1 14849:2 14851:1 14864:1 14871:1 14877:1 14885:1 14946:1 14956:1 14962:1 14976:1 14981:1 15035:1 15080:1 15111:1 15134:4 15135:1 15137:1 15142:1 15171:1 15183:1 15184:3 15205:3 15251:1 15282:1 15283:1 15307:7 15354:1 15360:1 15405:1 15445:1 15452:1 15460:2 15480:487 15492:2 15496:1 15556:1 15570:1 15574:1 15617:1 15642:2 15646:1 15647:1 15649:1 15652:1 15655:3 15658:1 15661:1 15662:1 15738:1 15742:2 15743:1 15776:4 15816:1 15929:1 15935:1 15943:1 15949:3 15955:1 15997:1 16042:2 16051:1 16054:1 16115:3 16118:1 16121:3 16151:1 16154:1 16171:1 16206:1 16228:1 16262:1 16273:2 16306:2 16313:1 16341:1 16370:1 16387:4 16409:2 16426:1 16474:1 16484:1 16485:1 16495:1 16500:1 16503:1 16548:1 16593:2 16603:1 16630:2 16654:1 16659:1 16670:1 16679:1 16693:1 16718:1 16727:1 16732:1 16735:1 16744:1 16753:1 16763:1 16780:1 16787:1 16815:4 16861:1 16862:1 16867:1 16882:1 16897:1 16970:1 16975:1 17048:1 17057:1 17113:1 17237:3 17275:1 17311:2 17316:1 17320:1 17346:1 17362:3 17367:1 17404:1 17424:1 17485:1 17491:1 17553:1 17569:1 17580:1 17623:1 17660:1 17678:1 17725:1 17768:1 17772:1 17822:1 17839:1 17855:3 17865:1 17908:1 17910:1 17916:3 17927:1 17943:1 17955:1 17958:1 17980:1 17983:1 17995:1 18009:2 18025:1 18028:1 18043:3 18058:1 18069:1 18079:1 18093:1 18116:1 18146:1 18166:1 18168:2 18174:1 18181:1 18210:1 18266:1 18366:1 18369:1 18370:2 18378:1 18410:1 18454:1 18491:1 18498:1 18511:1 18568:1 18587:1 18654:1 18704:1 18727:1 18732:2 18742:1 18748:1 18792:2 18856:4 18857:1 18862:3 18880:1 18929:1 18931:1 18941:4 19024:1 19033:1 19059:1 19060:1 19080:1 19098:1 19108:1 19205:1 19210:2 19230:1 19292:3 19293:1 19328:1 19337:2 19339:1 19395:1 19422:1 19438:1 19471:1 19487:1 19561:1 19562:1 19564:1 19612:1 19644:1 19683:1 19706:1 19716:1 19762:4 19767:1 19773:1 19792:1 19804:1 19810:2 19837:1 19847:1 19902:1 19912:1 19962:1 19966:1 20015:1 20040:1 20084:3 20096:1 20109:1 20138:1 20223:1 20224:1 20226:1 20239:1 20251:1 20258:2 20266:1 20267:1 20270:2 20275:1 20278:1 20304:1 20317:1 20318:4 20326:1 20327:1 20331:2 20332:2 20334:2 20337:1 20341:1 20344:3 20378:3 20383:1 20398:1 20399:1 20406:1 20441:1 20442:2 20447:3 20464:1 20469:1 20502:1 20512:1 20529:1 20619:1 20621:1 20627:1 20631:1 20659:1 20668:3 20733:1 20738:2 20742:2 20761:1 20785:3 20853:1 20887:1 20949:2 20962:1 21012:1 21065:2 21089:1 21100:1 21108:2 21111:1 21146:1 21150:1 21173:1 21209:2 21218:1 21224:1 21225:2 21293:1 21337:1 21350:1 21473:1 21485:1 21529:2 21539:2 21557:2 21561:1 21588:1 21602:2 21610:2 21627:1 21650:1 21684:1 21760:7 21773:1 21774:1 21782:2 21783:1 21784:1 21787:1 21812:1 21830:1 21838:1 21914:1 21916:5 21926:1 21997:1 22007:1 22024:1 22027:1 22048:3 22080:1 22109:1 22119:1 22163:2 22208:1 22218:1 22223:1 22229:1 22245:1 22256:1 22263:1 22279:1 22331:4 22360:1 22410:1 22415:1 22417:1 22431:1 22434:1 22466:1 22472:1 22513:1 22520:3 22551:3 22561:1 22585:1 22601:1 22611:1 22617:1 22646:1 22690:3 22699:3 22707:1 22715:1 22734:1 22736:1 22755:4 22786:2 22787:1 22795:1 22802:1 22809:1 22815:1 22820:1 22822:1 22828:1 22846:1 22864:1 22874:1 22937:1 22942:1 22982:1 23001:1 23011:1 23027:1 23039:1 23089:2 23109:2 23167:1 23237:1 23248:1 23284:2 23305:1 23314:1 23333:1 23349:1 23385:1 23392:1 23404:1 23424:1 23430:12 23431:1 23433:1 23466:2 23491:1 23524:1 23551:2 23558:1 23586:1 23588:1 23603:3 23646:1 23647:2 23655:2 23685:1 23712:1 23713:1 23720:1 23733:1 23739:1 23767:1 23775:3 23777:1 23835:1 23836:1 23862:1 23866:3 23923:1 23940:1 23971:2 23993:1 24039:2 24081:1 24096:1 24126:2 24143:1 24168:1 24170:2 24179:1 24251:1 24265:1 24266:2 24286:1 24296:1 24307:1 24370:1 24373:1 24385:1 24394:1 24401:2 24411:1 24476:1 24477:1 24482:1 24503:2 24525:1 24530:1 24536:1 24538:1 24568:1
14 59:1 71:1 146:1 185:2 186:4 204:1 230:1 254:1 265:1 314:1 318:1 320:1 336:1 346:1 450:1 457:3 524:1 525:1 527:1 541:1 565:1 592:1 699:1 704:2 732:1 748:1 759:1 764:2 814:1 831:1 851:2 881:1 889:1 895:1 911:1 914:1 922:1 949:1 1011:1 1021:1 1023:1 1046:2 1048:1 1051:1 1055:1 1059:2 1114:1 1125:1 1153:1 1171:2 1220:3 1259:2 1264:1 1285:1 1297:1 1321:1 1332:2 1369:1 1381:2 1398:1 1401:2 1425:1 1452:1 1507:2 1510:1 1517:3 1526:1 1545:1 1564:3 1591:1 1603:1 1616:1 1617:3 1627:1 1628:1 1710:1 1731:1 1737:1 1759:1 1766:2 1809:2 1842:1 1879:1 1880:1 1882:2 1883:1 1885:1 1891:1 1908:1 1910:1 1912:1 1938:1 1945:2 1954:2 1955:1 1968:2 1973:1 1976:2 2015:1 2028:1 2040:1 2061:1 2128:1 2149:1 2157:1 2164:1 2172:1 2178:1 2183:1 2226:2 2229:1 2286:1 2295:1 2321:2 2383:1 2389:1 2390:2 2419:1 2425:1 2426:1 2448:1 2451:1 2462:12 2464:1 2480:2 2486:1 2507:5 2513:1 2519:2 2565:1 2587:1 2627:1 2704:1 2742:1 2785:1 2798:1 2801:1 2802:3 2844:1 2849:1 2854:1 2886:1 2980:1 3002:1 3003:1 3020:1 3027:1 3049:1 3072:1 3077:3 3131:1 3132:1 3133:1 3153:1 3173:1 3179:1 3184:1 3206:1 3221:1 3225:1 3234:2 3297:2 3326:1 3328:1 3408:2 3462:1 3494:1 3499:1 3518:1 3522:1 3572:1 3581:1 3606:1 3615:1 3641:5 3678:1 3776:1 3786:1 3804:1 3841:1 3886:1 3889:1 3909:2 3938:1 3964:1 3967:1 3976:1 3984:1 3995:2 3998:2 4046:1 4061:1 4107:6 4109:1 4136:1 4154:1 4183:1 4190:1 4198:3 4212:2 4213:1 4237:1 4340:1 4353:1 4368:1 4371:1 4375:4 4399:1 4497:1 4498:1 4512:1 4519:1 4539:1 4551:1 4572:1 4586:1 4609:1 4622:1 4667:1 4683:1 4710:1 4796:1 4821:1 4876:2 4889:1 4894:1 5000:1 5049:1 5071:2 5088:1 5093:1 5100:1 5192:1 5224:1 5247:1 5254:1 5258:1 5308:2 5322:3 5325:2 5332:1 5337:1 5338:1 5342:1 5347:1 5349:3 5350:1 5352:1 5354:3 5451:5 5492:1 5500:1 5530:1 5533:1 5585:1 5595:1 5599:1 5688:1 5702:3 5726:1 5746:1 5788:1 5807:1 5828:1 5865:1 5874:1 5878:1 5939:1 5947:2 5948:1 5968:1 6005:2 6050:1 6056:1 6087:1 6112:1 6116:1 6126:1 6139:1 6183:2 6194:1 6235:1 6237:2 6289:1 6293:1 6311:3 6365:1 6381:1 6382:1 6405:1 6409:1 6410:1 6429:11 6434:1 6448:1 6449:1 6451:3 6459:1 6468:1 6491:1 6492:1 6526:1 6554:1 6667:1 6669:1 6675:1 6707:1 6723:1 6794:1 6796:1 6810:2 6824:1 6839:1 6854:2 6859:2 6937:1 7016:1 7027:1 7054:1 7059:1 7068:2 7096:1 7116:1 7137:1 7157:1 7165:1 7169:1 7170:1 7177:1 7178:2 7179:1 7181:1 7194:1 7199:1 7202:1 7215:1 7216:1 7235:1 7285:4 7322:1 7379:1 7391:2 7400:6 7409:1 7430:1 7443:1 7450:1 7456:1 7459:1 7461:1 7464:1 7465:2 7499:1 7510:1 7527:1 7571:3 7572:1 7581:2 7615:1 7648:2 7656:1 7702:1 7712:2 7741:1 7753:1 7754:1 7761:1 7768:1 7773:4 7782:1 7787:1 7810:1 7820:1 7868:2 7905:1 7912:1 7972:1 7988:2 8002:1 8005:1 8049:1 8065:2 8070:2 8081:2 8082:1 8099:3 8162:3 8171:1 8175:1 8206:3 8207:1 8229:1 8234:4 8249:2 8279:1 8282:1 8284:1 8285:2 8296:1 8304:1 8317:1 8328:1 8352:3 8355:1 8383:1 8443:1 8469:1 8508:1 8567:1 8568:2 8574:1 8582:1 8593:1 8598:4 8603:1 8623:1 8657:1 8690:1 8702:1 8714:3 8726:1 8727:1 8753:1 8759:4 8761:1 8782:1 8783:1 8800:1 8802:1 8809:4 8812:1 8814:3 8831:2 8832:1 8833:1 8878:1 8891:2 8900:1 8901:1 8911:1 8916:1 8944:1 8968:1 8979:1 8998:1 9002:1 9022:1 9062:1 9067:1 9101:2 9102:3 9120:1 9142:1 9185:1 9222:1 9252:2 9336:1 9363:1 9377:1 9440:2 9441:1 9455:3 9462:1 9466:1 9488:2 9495:1 9532:4 9550:1 9562:2 9563:1 9575:1 9599:1 9607:1 9619:1 9622:1 9682:1 9688:2 9691:1 9716:2 9772:1 9810:1 9818:1 9823:2 9878:1 9890:1 9918:1 9922:1 9963:1 10022:3 10045:1 10052:2 10090:2 10169:1 10204:1 10211:1 10218:1 10232:1 10324:1 10369:1 10384:2 10457:1 10480:10 10531:1 10551:1 10598:2 10648:1 10651:1 10659:1 10818:1 10823:2 10843:1 10847:2 10851:1 10871:2 10879:1 10892:1 10897:1 10898:1 10961:1 10962:1 10970:1 10981:1 10985:1 11016:1 11046:1 11047:3 11056:1 11062:1 11103:1 11118:1 11126:1 11159:2 11187:1 11215:4 11223:1 11273:3 11284:1 11286:1 11297:1 11325:1 11341:1 11352:1 11353:1 11368:1 11400:1 11408:1 11430:2 11447:1 11459:1 11463:1 11486:1 11526:1 11584:2 11607:1 11638:1 11708:2 11712:1 11739:1 11790:1 11792:1 11812:2 11813:1 11833:1 11853:1 11874:1 11906:1 11937:1 11976:1 11979:1 11990:1 11992:1 12099:1 12115:1 12182:1 12184:1 12245:1 12289:1 12338:1 12346:3 12364:1 12372:1 12381:3 12387:1 12396:1 12444:1 12486:1 12488:2 12491:1 12556:2 12575:1 12582:1 12583:1 12614:2 12623:1 12652:1 12685:1 12723:1 12739:1 12740:1 12741:4 12748:1 12754:1 12797:3 12798:1 12800:3 12839:1 12881:1 12943:1 12945:1 12950:1 12988:1 13032:1 13033:1 13058:1 13104:2 13153:3 13181:1 13207:1 13225:3 13288:1 13304:1 13311:1 13328:1 13336:1 13362:1 13428:1 13437:1 13445:1 13449:1 13452:1 13470:1 13489:3 13502:1 13525:1 13561:1 13620:1 13647:3 13664:1 13682:1 13719:1 13733:1 13760:1 13766:1 13803:3 13819:4 13835:4 13888:1 13928:2 13929:1 13970:1 13979:1 13986:1 13989:3 13994:1 13996:1 14000:1 14031:1 14051:2 14071:2 14073:1 14077:1 14088:1 14130:1 14178:4 14207:1 14231:1 14262:1 14279:1 14300:1 14317:1 14329:1 14332:2 14334:1 14366:1 14371:2 14382:1 14391:1 14395:1 14422:1 14465:1 14476:3 14477:1 14496:5 14513:1 14516:2 14522:1 14549:1 14577:1 14582:1 14622:1 14630:1 14635:1 14649:1 14665:1 14672:1 14677:2 14678:1 14696:1 14719:1 14740:3 14744:1 14762:1 14763:1 14774:1 14785:2 14802:1 14804:1 14807:1 14810:1 14837:2 14844:1 14849:2 14851:1 14864:1 14871:1 14877:1 14885:1 14946:1 14956:1 14962:1 14976:1 14981:1 15035:1 15080:1 15105:1 15111:1 15134:5 15135:1 15137:1 15142:1 15160:1 15171:1 15183:1 15184:3 15205:4 15240:1 15251:1 15282:2 15283:1 15287:1 15307:9 15354:1 15360:1 15396:1 15405:1 15445:1 15452:1 15460:2 15480:544 15492:2 15496:1 15556:1 15570:1 15574:1 15610:1 15617:1 15642:2 15646:1 15647:1 15649:1 15652:1 15655:3 15658:1 15661:1 15662:1 15738:1 15742:2 15743:1 15776:4 15816:1 15929:1 15935:1 15943:1 15949:3 15955:1 15997:1 16042:2 16051:1 16054:1 16115:3 16118:1 16121:3 16151:1 16154:2 16171:1 16206:1 16228:1 16262:1 16273:2 16306:2 16313:1 16341:1 16370:1 16387:4 16409:2 16426:1 16474:1 16484:1 16485:1 16488:1 16495:1 16500:1 16503:1 16548:1 16593:2 16603:1 16630:2 16654:1 16659:1 16670:1 16679:1 16693:1 16718:1 16726:1 16727:1 16732:1 16735:1 16744:1 16753:1 16763:1 16780:1 16787:1 16809:1 16815:4 16855:1 16861:1 16862:1 16867:1 16882:1 16897:1 16921:1 16970:1 16975:1 17048:1 17057:1 17085:1 17113:1 17185:1 17237:3 17275:2 17311:2 17316:1 17320:1 17346:1 17362:3 17366:1 17367:1 17404:1 17424:1 17485:1 17491:1 17499:1 17553:1 17569:1 17580:1 17616:1 17623:1 17660:1 17678:2 17725:1 17768:1 17772:1 17822:1 17839:1 17855:3 17865:1 17890:1 17908:1 17910:1 17916:4 17927:1 17943:1 17955:1 17958:1 17980:1 17983:1 17995:1 18009:3 18025:1 18028:1 18043:3 18058:1 18069:1 18079:1 18093:1 18116:1 18146:1 18166:1 18168:2 18174:1 18181:1 18210:1 18266:1 18366:1 18369:1 18370:2 18378:1 18410:1 18454:1 18491:1 18498:1 18511:1 18568:1 18587:1 18654:1 18704:1 18727:1 18732:2 18742:1 18748:1 18792:2 18856:4 18857:1 18862:3 18880:1 18929:1 18931:1 18941:4 19024:1 19033:1 19059:1 19060:1 19080:1 19098:1 19108:1 19172:1 19205:2 19210:2 19230:1 19275:1 19292:3 19293:1 19328:1 19337:3 19339:1 19395:1 19422:1 19438:1 19471:1 19487:2 19559:1 19561:1 19562:1 19564:1 19612:1 19644:1 19683:1 19706:1 19716:1 19762:4 19767:1 19773:1 19792:1 19804:1 19805:1 19810:2 19837:1 19847:1 19902:1 19912:1 19962:1 19966:1 20015:1 20040:1 20084:3 20096:1 20109:1 20138:1 20223:1 20224:1 20226:1 20239:1 20251:1 20258:2 20266:1 20267:1 20270:2 20275:1 20278:1 20304:1 20317:1 20318:4 20326:1 20327:1 20331:2 20332:2 20334:2 20337:1 20341:1 20344:3 20378:3 20383:2 20398:2 20399:1 20406:1 20435:1 20441:1 20442:3 20447:3 20464:1 20469:1 20502:1 20512:1 20529:1 20576:1 20619:1 20621:1 20627:1 20631:2 20659:1 20668:3 20733:1 20738:2 20742:2 20761:2 20785:4 20829:1 20853:1 20887:1 20949:2 20962:1 21012:1 21056:1 21065:2 21089:1 21100:1 21108:2 21111:1 21146:1 21150:2 21173:1 21198:1 21208:1 21209:2 21218:1 21224:1 21225:2 21293:1 21337:1 21350:1 21473:1 21480:1 21485:1 21529:2 21539:2 21557:2 21561:1 21586:1 21588:1 21602:2 21610:3 21627:1 21650:1 21684:1 21760:9 21773:2 21774:1 21782:2 21783:1 21784:1 21787:1 21812:1 21830:1 21838:1 21878:1 21904:1 21914:1 21916:5 21926:1 21997:1 21998:1 22007:1 22024:1 22027:1 22048:3 22080:1 22109:1 22119:1 22163:3 22208:1 22218:1 22223:1 22229:1 22245:1 22256:1 22263:1 22279:1 22331:4 22360:1 22410:1 22415:1 22417:1 22431:1 22434:1 22465:1 22466:1 22472:1 22493:1 22513:1 22520:3 22551:3 22561:1 22585:1 22601:1 22611:1 22617:1 22646:1 22669:1 22690:4 22699:3 22707:1 22715:1 22734:1 22736:1 22755:4 22786:2 22787:1 22795:1 22802:1 22803:1 22809:1 22812:1 22815:1 22820:1 22822:1 22828:1 22846:1 22864:1 22874:1 22937:1 22942:1 22982:1 23001:1 23011:1 23027:1 23039:1 23089:2 23109:2 23167:1 23237:1 23248:1 23284:2 23295:1 23305:1 23314:1 23333:1 23349:1 23385:1 23392:1 23393:1 23404:1 23424:1 23430:12 23431:1 23433:1 23466:3 23491:1 23524:1 23551:2 23558:1 23586:1 23588:1 23603:3 23626:1 23646:1 23647:2 23655:2 23659:1 23685:1 23712:1 23713:1 23720:1 23733:1 23739:1 23767:1 23768:1 23775:3 23777:1 23835:2 23836:1 23858:1 23862:1 23866:3 23923:1 23940:1 23971:2 23993:1 24039:2 24081:1 24096:1 24126:2 24137:1 24143:1 24168:1 24170:2 24179:1 24251:1 24265:1 24266:3 24286:1 24296:1 24307:1 24370:1 24373:1 24385:1 24394:1 24401:2 24411:1 24476:1 24477:1 24482:1 24503:2 24525:1 24530:1 24536:1 24538:1 24568:1
14 59:1 71:1 146:1 185:2 186:4 204:1 230:1 239:1 254:1 265:1 295:1 314:1 318:1 320:1 336:1 346:1 450:1 457:3 524:1 525:1 527:1 541:1 565:1 592:1 699:1 704:2 732:1 748:1 759:1 764:2 814:1 831:1 851:2 869:1 881:1 889:1 895:1 911:1 914:1 922:1 946:1 949:1 1011:1 1021:1 1023:1 1046:2 1048:1 1051:1 1055:1 1059:2 1114:1 1125:1 1153:1 1171:2 1220:4 1229:1 1259:2 1264:2 1285:1 1297:1 1321:1 1332:2 1369:1 1381:2 1398:1 1401:2 1413:1 1425:1 1452:1 1507:2 1510:1 1517:3 1526:1 1545:1 1564:3 1591:1 1603:1 1616:1 1617:3 1627:1 1628:1 1701:1 1710:1 1731:1 1737:1 1759:1 1766:2 1781:1 1809:2 1842:1 1879:1 1880:1 1882:2 1883:1 1885:1 1891:1 1908:1 1910:1 1912:1 1938:1 1945:2 1954:2 1955:1 1968:2 1973:1 1976:2 2015:1 2028:1 2040:1 2061:1 2065:1 2128:1 2131:1 2149:1 2157:1 2164:1 2172:1 2178:1 2183:1 2198:1 2226:2 2229:1 2234:1 2286:1 2295:1 2321:2 2366:1 2383:1 2389:1 2390:2 2419:1 2425:1 2426:1 2448:1 2451:1 2462:14 2464:1 2480:2 2486:1 2507:5 2513:1 2519:2 2565:2 2587:1 2597:1 2627:1 2704:1 2709:1 2742:1 2785:1 2798:1 2801:1 2802:3 2844:1 2848:1 2849:1 2854:1 2886:1 2980:1 3002:1 3003:1 3020:1 3027:1 3049:1 3061:1 3072:1 3077:3 3131:1 3132:1 3133:1 3147:1 3153:1 3173:1 3179:1 3184:1 3206:1 3221:1 3225:1 3234:2 3297:2 3326:1 3328:1 3369:1 3372:1 3408:2 3414:1 3462:1 3494:1 3499:1 3518:1 3522:1 3572:1 3581:1 3598:1 3606:1 3615:1 3641:6 3678:1 3776:1 3786:1 3804:1 3841:1 3886:1 3889:1 3909:2 3938:1 3964:1 3967:1 3976:1 3984:1 3995:2 3998:2 4046:1 4061:1 4107:6 4109:1 4136:1 4154:1 4183:1 4190:1 4198:3 4212:2 4213:1 4236:1 4237:1 4244:1 4340:1 4353:1 4368:1 4371:1 4375:4 4399:1 4497:1 4498:1 4512:1 4519:1 4539:1 4551:1 4572:1 4586:1 4609:1 4622:1 4667:1 4683:1 4710:1 4796:1 4821:1 4876:2 4889:1 4894:1 5000:1 5016:1 5049:1 5071:2 5088:1 5093:1 5100:1 5192:1 5224:1 5247:1 5248:1 5254:1 5258:1 5283:1 5308:2 5322:3 5325:2 5326:1 5332:1 5337:1 5338:1 5342:1 5347:1 5349:4 5350:1 5352:1 5354:3 5451:5 5492:1 5500:1 5530:1 5533:1 5534:1 5535:1 5585:1 5595:1 5599:1 5610:1 5688:1 5702:3 5726:1 5746:1 5788:1 5807:1 5813:2 5828:1 5865:1 5874:1 5878:1 5939:1 5947:3 5948:1 5968:1 6005:2 6050:1 6056:1 6087:1 6112:1 6116:1 6126:1 6139:1 6183:2 6194:1 6235:1 6237:2 6289:1 6293:1 6311:3 6365:1 6378:1 6381:1 6382:1 6386:1 6405:1 6407:1 6409:1 6410:1 6429:11 6434:1 6448:1 6449:1 6451:3 6459:1 6468:1 6491:1 6492:1 6526:1 6554:1 6560:1 6667:1 6669:1 6675:1 6707:1 6723:1 6794:1 6796:1 6810:2 6824:1 6839:1 6854:3 6859:2 6937:1 6981:1 7016:1 7027:1 7054:1 7059:2 7068:2 7096:1 7116:1 7137:1 7157:1 7165:1 7169:3 7170:1 7177:1 7178:2 7179:1 7181:1 7194:1 7199:1 7202:1 7215:1 7216:1 7235:1 7246:2 7285:4 7322:1 7379:1 7391:2 7400:7 7409:1 7414:1 7430:1 7443:1 7450:1 7456:1 7457:3 7459:1 7461:1 7464:1 7465:2 7499:1 7510:1 7527:1 7571:3 7572:1 7581:2 7615:1 7648:2 7656:1 7702:1 7712:2 7741:1 7753:1 7754:1 7761:1 7768:1 7773:4 7782:1 7787:1 7810:1 7820:1 7868:2 7905:1 7912:1 7950:1 7972:1 7988:2 8002:1 8005:1 8049:1 8065:2 8070:2 8081:2 8082:1 8099:3 8162:3 8171:1 8175:1 8195:1 8206:3 8207:1 8229:1 8234:5 8249:2 8279:1 8282:1 8284:1 8285:2 8296:1 8304:1 8317:1 8328:1 8352:3 8355:1 8383:1 8387:1 8443:1 8469:1 8508:1 8567:1 8568:2 8574:1 8582:1 8593:1 8598:4 8603:1 8623:1 8656:1 8657:1 8672:1 8690:1 8702:1 8714:3 8726:1 8727:2 8753:1 8759:4 8761:1 8782:1 8783:1 8800:1 8802:1 8809:4 8812:1 8814:4 8831:2 8832:1 8833:1 8836:1 8878:1 8891:2 8900:1 8901:1 8911:1 8916:1 8944:1 8968:1 8979:1 8998:1 9000:1 9002:1 9022:1 9062:1 9067:1 9101:2 9102:3 9120:1 9142:1 9181:1 9185:1 9222:1 9252:2 9336:1 9346:1 9363:1 9377:1 9440:2 9441:1 9455:3 9462:1 9466:1 9488:2 9495:1 9532:4 9550:1 9562:2 9563:1 9575:1 9599:1 9607:1 9619:1 9622:1 9682:1 9688:2 9691:1 9716:2 9772:1 9810:1 9818:1 9823:2 9878:1 9890:1 9918:1 9922:1 9963:1 10022:3 10045:1 10052:2 10053:1 10054:1 10090:2 10169:1 10204:1 10211:1 10218:1 10232:1 10316:1 10324:1 10369:1 10384:2 10457:1 10480:12 10531:1 10551:1 10576:1 10598:2 10648:1 10651:1 10659:1 10818:1 10823:2 10843:1 10847:5 10851:1 10871:2 10879:1 10892:1 10897:1 10898:1 10961:1 10962:1 10970:1 10974:3 10981:1 10985:1 10987:1 11016:1 11046:1 11047:3 11056:1 11062:1 11103:1 11118:1 11126:1 11159:2 11187:1 11215:4 11223:1 11273:3 11284:1 11286:1 11297:1 11325:1 11341:1 11352:1 11353:1 11368:1 11400:1 11405:1 11408:1 11415:1 11430:2 11447:1 11449:1 11459:1 11463:1 11486:1 11526:1 11584:2 11607:1 11638:1 11708:2 11712:1 11739:1 11790:1 11792:1 11812:2 11813:1 11833:1 11853:1 11874:1 11906:1 11937:1 11976:1 11979:1 11990:1 11992:1 12099:2 12114:1 12115:1 12182:1 12184:1 12218:1 12245:1 12276:1 12289:1 12338:1 12346:3 12364:1 12372:1 12381:3 12387:1 12396:1 12444:1 12486:1 12488:2 12491:1 12556:2 12575:1 12582:1 12583:1 12614:2 12623:1 12652:1 12685:1 12723:1 12739:1 12740:1 12741:4 12748:1 12754:1 12797:3 12798:1 12800:3 12839:1 12846:1 12881:1 12943:1 12945:1 12950:1 12988:1 12989:1 13014:1 13032:1 13033:1 13058:1 13104:2 13153:4 13181:1 13207:1 13225:3 13238:1 13288:1 13295:1 13304:1 13311:1 13328:1 13336:1 13362:1 13428:1 13437:1 13445:1 13449:1 13452:1 13470:1 13489:3 13502:1 13525:1 13561:1 13620:1 13647:3 13662:1 13664:1 13682:1 13719:1 13733:1 13760:1 13765:1 13766:1 13803:3 13819:4 13835:4 13888:1 13908:1 13928:2 13929:1 13931:1 13936:1 13970:1 13979:1 13986:1 13989:3 13994:1 13996:1 14000:1 14031:1 14051:2 14071:2 14073:1 14077:1 14088:1 14130:1 14178:4 14207:1 14231:1 14262:1 14279:1 14300:1 14317:1 14329:1 14332:2 14334:1 14366:1 14371:2 14382:1 14391:1 14395:1 14422:1 14465:1 14476:3 14477:1 14496:5 14513:1 14516:2 14522:1 14549:1 14577:1 14582:1 14622:1 14630:1 14635:1 14649:1 14665:1 14672:1 14677:2 14678:1 14696:1 14719:1 14727:1 14740:3 14744:1 14762:1 14763:1 14774:1 14776:1 14785:2 14802:1 14804:1 14807:1 14810:1 14837:2 14844:1 14849:2 14851:1 14864:1 14871:1 14877:1 14885:2 14946:1 14956:1 14962:1 14976:1 14981:1 15035:1 15080:1 15105:1 15111:1 15134:5 15135:1 15137:1 15142:1 15160:1 15171:2 15183:1 15184:3 15201:1 15205:4 15233:1 15240:1 15251:1 15282:2 15283:1 15287:1 15307:9 15344:1 15354:1 15360:1 15396:1 15405:1 15444:1 15445:2 15452:1 15460:2 15480:585 15492:2 15496:1 15556:1 15570:1 15574:1 15595:1 15610:1 15617:2 15625:1 15638:1 15642:2 15646:1 15647:1 15649:2 15652:1 15655:3 15658:1 15661:1 15662:1 15738:1 15742:2 15743:1 15776:5 15816:1 15929:1 15935:1 15943:1 15949:3 15955:1 15997:2 16036:1 16042:2 16051:1 16054:1 16115:4 16118:1 16121:3 16151:1 16154:2 16171:1 16206:1 16228:1 16262:1 16273:2 16306:2 16313:1 16341:1 16370:1 16387:4 16409:2 16426:1 16474:1 16484:1 16485:1 16488:1 16495:1 16500:2 16503:1 16548:1 16577:1 16593:2 16603:1 16630:2 16654:1 16659:1 16670:1 16679:1 16681:3 16693:1 16718:1 16726:1 16727:1 16732:1 16735:1 16744:1 16753:1 16763:1 16780:1 16787:1 16809:1 16815:4 16853:1 16855:1 16861:1 16862:1 16867:1 16882:1 16897:1 16921:1 16970:1 16975:1 17048:1 17057:1 17085:1 17113:1 17185:1 17237:3 17275:2 17276:1 17311:2 17316:1 17320:1 17331:1 17346:1 17362:4 17366:1 17367:1 17404:1 17424:2 17485:1 17491:1 17499:1 17553:1 17569:1 17580:1 17605:1 17616:1 17623:1 17631:1 17660:1 17678:2 17712:1 17725:1 17768:1 17772:1 17792:1 17822:1 17834:2 17839:1 17855:4 17865:1 17890:1 17908:1 17910:1 17916:4 17927:1 17943:1 17955:1 17958:1 17962:1 17980:1 17983:1 17995:1 18009:3 18025:1 18028:1 18043:3 18053:1 18058:1 18069:1 18079:1 18092:1 18093:1 18116:1 18146:1 18166:1 18168:2 18174:1 18181:1 18210:1 18266:1 18366:1 18369:1 18370:2 18375:1 18378:1 18410:1 18454:1 18485:1 18491:1 18498:1 18511:1 18568:1 18587:1 18654:1 18664:1 18665:1 18674:1 18704:1 18727:1 18732:5 18742:1 18748:1 18792:2 18856:4 18857:1 18862:3 18880:1 18881:1 18882:1 18929:1 18931:1 18941:4 19024:1 19033:2 19059:1 19060:1 19080:1 19098:1 19108:1 19172:1 19205:2 19207:1 19210:2 19226:1 19230:1 19275:1 19292:3 19293:1 19328:1 19337:3 19339:1 19395:1 19422:1 19438:1 19471:2 19487:2 19559:1 19561:1 19562:1 19564:1 19586:1 19612:1 19644:1 19683:1 19706:1 19716:1 19762:4 19767:1 19773:1 19792:1 19804:1 19805:1 19810:3 19837:1 19847:1 19902:1 19912:1 19962:1 19966:1 20015:1 20040:1 20084:3 20096:2 20109:1 20138:1 20223:1 20224:1 20226:1 20239:1 20251:1 20258:2 20266:1 20267:1 20270:2 20275:1 20278:1 20304:1 20317:1 20318:5 20326:1 20327:1 20331:2 20332:2 20334:2 20337:1 20341:1 20344:3 20378:3 20383:2 20398:2 20399:1 20406:1 20413:1 20435:1 20441:1 20442:3 20447:4 20464:1 20469:1 20502:1 20512:1 20529:1 20576:2 20619:1 20621:1 20627:1 20631:2 20659:1 20668:3 20733:1 20738:2 20742:2 20761:2 20785:4 20829:1 20853:1 20887:1 20949:2 20962:1 21012:1 21056:1 21065:2 21089:1 21100:1 21108:4 21111:1 21146:1 21150:2 21173:1 21198:1 21208:1 21209:2 21218:1 21224:1 21225:2 21249:1 21293:2 21337:1 21350:1 21473:1 21480:1 21485:1 21529:2 21539:2 21557:3 21561:2 21586:1 21588:1 21602:2 21610:3 21613:1 21627:1 21630:1 21650:1 21684:1 21760:9 21773:2 21774:1 21782:2 21783:1 21784:1 21787:1 21812:1 21830:1 21838:1 21878:1 21904:1 21914:1 21916:5 21926:1 21997:1 21998:1 22007:1 22024:1 22027:1 22048:3 22080:1 22109:1 22119:1 22163:4 22208:1 22218:1 22223:1 22229:1 22245:1 22247:1 22256:1 22263:1 22279:1 22281:1 22315:1 22331:4 22360:1 22410:1 22415:1 22417:1 22431:1 22434:2 22465:1 22466:1 22472:1 22493:1 22513:1 22517:1 22520:3 22548:1 22551:3 22561:1 22585:1 22601:1 22611:1 22617:1 22646:1 22655:1 22669:1 22690:4 22699:3 22707:1 22715:1 22734:1 22736:1 22755:4 22760:1 22786:2 22787:1 22795:1 22802:1 22803:1 22809:1 22812:1 22815:1 22820:1 22822:1 22828:1 22846:1 22864:1 22874:1 22937:1 22942:1 22982:1 23001:1 23011:1 23027:1 23039:1 23076:1 23089:2 23109:2 23151:1 23167:1 23188:1 23237:1 23248:1 23284:2 23295:1 23298:1 23305:1 23314:1 23333:1 23349:1 23385:1 23392:1 23393:1 23404:2 23424:1 23430:14 23431:1 23433:1 23466:3 23491:1 23524:1 23551:2 23558:1 23586:1 23588:1 23603:3 23616:1 23626:1 23646:1 23647:2 23655:2 23659:1 23685:1 23712:1 23713:1 23720:1 23733:1 23739:1 23767:1 23768:1 23775:3 23777:2 23835:2 23836:1 23858:1 23862:1 23866:4 23923:1 23940:1 23971:2 23993:1 24039:2 24081:1 24096:1 24126:2 24137:1 24143:1 24168:1 24170:2 24179:1 24251:1 24265:1 24266:3 24286:1 24296:1 24307:1 24370:1 24373:1 24385:1 24394:1 24401:2 24411:1 24476:1 24477:1 24482:1 24503:2 24525:1 24530:1 24536:1 24538:1 24568:1
14 56:1 59:1 71:1 146:1 185:3 186:4 204:1 230:1 239:1 254:1 265:1 295:1 314:1 318:1 320:1 336:1 346:1 407:1 450:1 457:3 524:1 525:1 527:2 541:1 565:1 592:2 699:1 704:2 713:1 732:1 748:1 759:1 764:2 814:1 831:1 851:2 869:1 875:1 881:1 889:1 895:1 911:1 914:1 922:1 946:1 949:1 1011:1 1021:1 1023:1 1046:2 1048:1 1051:2 1055:1 1059:2 1114:1 1125:1 1153:1 1171:3 1220:4 1229:1 1259:2 1264:2 1285:1 1297:1 1321:1 1332:2 1369:1 1381:2 1398:1 1401:3 1413:1 1425:1 1452:1 1507:4 1510:1 1517:4 1526:1 1545:2 1564:3 1591:2 1603:1 1616:1 1617:3 1627:1 1628:1 1701:1 1710:1 1731:1 1737:1 1759:1 1766:2 1781:1 1809:3 1842:1 1879:1 1880:1 1882:2 1883:1 1885:1 1891:1 1908:1 1910:1 1912:2 1938:1 1945:2 1954:3 1955:1 1963:1 1968:2 1973:1 1976:2 2015:1 2028:1 2040:1 2061:1 2065:1 2128:1 2131:1 2149:1 2157:1 2164:1 2172:1 2178:1 2183:2 2198:1 2226:2 2229:1 2234:1 2286:1 2295:1 2321:2 2325:1 2366:1 2383:1 2389:1 2390:2 2419:1 2425:1 2426:1 2448:1 2451:1 2462:15 2464:1 2480:2 2486:1 2504:1 2507:5 2513:1 2519:2 2530:1 2565:2 2587:1 2597:1 2627:1 2704:1 2709:1 2742:1 2785:1 2798:2 2801:1 2802:3 2844:1 2848:1 2849:1 2854:1 2886:1 2980:1 3002:1 3003:1 3020:1 3027:1 3049:2 3061:1 3072:1 3077:3 3131:1 3132:1 3133:1 3147:2 3153:1 3173:1 3179:1 3184:1 3206:1 3221:1 3225:1 3234:2 3297:2 3326:1 3328:1 3369:1 3372:1 3408:2 3414:1 3462:1 3494:1 3499:1 3518:1 3522:1 3572:1 3581:1 3598:1 3606:1 3615:1 3641:6 3678:1 3776:1 3786:1 3804:1 3841:1 3886:1 3889:1 3909:2 3938:2 3964:1 3967:1 3976:1 3984:1 3995:3 3998:3 4046:1 4061:1 4062:1 4107:7 4109:1 4136:1 4154:1 4183:1 4190:1 4198:3 4211:1 4212:2 4213:1 4236:1 4237:1 4244:1 4340:1 4353:1 4368:1 4371:1 4375:4 4399:1 4497:1 4498:1 4512:1 4519:1 4539:1 4551:1 4572:1 4586:1 4609:1 4622:1 4667:1 4668:1 4683:1 4710:1 4796:1 4821:1 4876:2 4889:1 4894:1 5000:1 5016:1 5049:1 5071:2 5088:1 5093:1 5100:1 5192:1 5224:1 5247:1 5248:1 5254:1 5258:1 5283:1 5308:2 5313:1 5322:3 5325:2 5326:1 5332:1 5337:1 5338:1 5342:1 5347:1 5349:4 5350:1 5352:1 5354:3 5451:5 5492:1 5500:1 5530:1 5533:1 5534:1 5535:1 5585:1 5595:1 5599:1 5610:1 5674:1 5688:1 5702:3 5726:1 5746:2 5788:2 5807:1 5813:2 5828:1 5865:2 5874:1 5878:1 5900:1 5939:1 5947:3 5948:1 5968:1 6005:2 6050:1 6056:1 6087:1 6112:1 6116:1 6126:1 6139:1 6183:2 6194:1 6235:1 6237:2 6289:1 6293:1 6311:3 6365:1 6378:1 6381:1 6382:1 6386:1 6405:1 6407:1 6409:1 6410:1 6429:13 6434:1 6448:1 6449:1 6451:3 6459:1 6468:1 6491:1 6492:1 6526:1 6554:1 6560:1 6667:1 6669:1 6675:1 6707:1 6723:1 6794:1 6796:1 6810:2 6824:1 6839:1 6854:4 6859:2 6937:1 6981:1 7016:1 7021:1 7027:1 7054:1 7059:2 7068:2 7096:1 7116:1 7137:1 7157:1 7165:1 7169:3 7170:1 7177:1 7178:2 7179:1 7181:1 7194:1 7199:1 7202:1 7215:1 7216:1 7235:1 7246:2 7285:5 7322:1 7379:1 7391:2 7400:7 7409:1 7414:1 7430:1 7443:1 7450:2 7456:1 7457:3 7459:2 7460:1 7461:1 7464:1 7465:2 7499:1 7510:1 7527:1 7571:3 7572:1 7581:4 7615:1 7626:1 7648:2 7656:1 7702:1 7712:2 7741:1 7753:1 7754:1 7761:1 7768:1 7773:5 7782:1 7787:1 7810:1 7820:1 7868:2 7905:1 7912:1 7950:1 7972:1 7988:2 8002:1 8005:1 8049:1 8065:2 8070:4 8081:2 8082:2 8099:3 8162:3 8171:1 8175:1 8176:1 8195:1 8206:3 8207:1 8229:2 8234:5 8249:2 8279:1 8282:1 8284:1 8285:3 8296:1 8304:1 8317:1 8328:1 8352:3 8355:1 8383:1 8387:1 8443:1 8469:2 8508:1 8567:1 8568:2 8574:1 8582:1 8593:1 8598:4 8603:1 8623:1 8656:1 8657:1 8672:1 8690:1 8692:1 8702:2 8714:3 8726:1 8727:2 8753:2 8759:5 8761:1 8782:1 8783:1 8800:1 8802:1 8809:4 8812:1 8814:4 8831:2 8832:1 8833:1 8836:1 8878:1 8891:3 8900:1 8901:1 8911:1 8916:1 8944:1 8968:1 8979:1 8998:1 9000:1 9002:2 9022:1 9062:1 9067:1 9101:3 9102:3 9120:1 9142:1 9181:1 9185:1 9222:1 9252:4 9336:1 9346:1 9363:1 9377:1 9440:2 9441:1 9455:3 9462:2 9466:1 9488:2 9495:1 9532:5 9550:1 9562:2 9563:1 9575:1 9599:1 9607:1 9619:1 9622:1 9682:1 9688:2 9691:1 9700:1 9716:2 9772:1 9810:1 9818:1 9823:2 9878:1 9890:1 9918:1 9922:1 9963:1 10022:3 10045:1 10052:2 10053:2 10054:2 10090:2 10169:1 10204:1 10211:1 10218:1 10232:1 10316:1 10318:1 10324:1 10369:1 10384:3 10457:1 10465:1 10480:13 10531:1 10551:1 10576:1 10598:2 10648:1 10651:1 10659:1 10722:1 10818:1 10823:2 10843:1 10847:5 10851:1 10871:2 10879:1 10892:1 10897:1 10898:1 10961:1 10962:1 10970:1 10974:3 10981:1 10985:1 10987:1 11016:1 11046:1 11047:3 11056:1 11062:1 11103:1 11118:1 11126:1 11159:2 11187:1 11215:5 11223:1 11273:3 11284:1 11286:1 11297:1 11325:1 11341:1 11352:1 11353:1 11368:1 11400:1 11405:1 11408:1 11415:1 11430:3 11447:1 11449:1 11459:1 11463:1 11486:1 11526:1 11584:2 11607:1 11638:1 11643:1 11708:2 11712:2 11739:1 11790:1 11792:1 11812:2 11813:1 11833:1 11853:1 11874:1 11906:1 11937:1 11976:1 11979:1 11990:1 11992:1 12078:1 12099:2 12114:1 12115:1 12182:1 12184:1 12218:1 12245:1 12276:2 12289:1 12338:1 12346:3 12364:1 12372:1 12381:3 12387:1 12396:1 12416:1 12444:1 12486:1 12488:2 12491:1 12556:2 12575:1 12582:1 12583:1 12614:3 12623:1 12652:1 12685:1 12723:1 12739:1 12740:1 12741:4 12748:1 12754:1 12797:3 12798:1 12800:3 12839:1 12846:1 12881:1 12943:1 12945:2 12950:1 12961:1 12988:1 12989:1 13014:1 13032:1 13033:1 13058:1 13104:2 13153:4 13181:1 13207:1 13225:3 13238:1 13288:1 13295:1 13304:1 13311:1 13328:1 13336:1 13362:1 13428:1 13437:1 13445:1 13449:1 13452:1 13470:1 13489:3 13502:1 13505:1 13525:1 13561:1 13620:1 13647:3 13662:1 13664:2 13682:1 13719:1 13733:1 13760:1 13765:1 13766:1 13803:3 13819:4 13835:4 13888:1 13895:1 13908:1 13928:2 13929:1 13931:1 13936:1 13970:1 13979:1 13986:1 13989:3 13994:1 13996:1 14000:1 14031:1 14051:3 14071:2 14073:1 14077:1 14088:1 14130:1 14178:4 14204:1 14207:1 14229:1 14231:2 14262:1 14279:1 14300:1 14317:1 14329:1 14332:2 14334:1 14365:1 14366:1 14371:2 14382:1 14386:1 14391:2 14395:1 14422:1 14465:1 14476:3 14477:1 14496:5 14513:1 14516:2 14522:1 14549:1 14576:1 14577:1 14582:1 14622:1 14630:1 14635:1 14648:1 14649:1 14665:1 14672:1 14677:4 14678:1 14696:1 14719:1 14727:1 14740:3 14744:1 14762:1 14763:1 14774:1 14776:1 14785:2 14802:1 14804:1 14807:1 14810:1 14837:2 14844:1 14849:2 14851:1 14864:1 14871:1 14877:1 14885:2 14946:1 14956:1 14962:1 14976:1 14981:1 15035:1 15080:1 15105:1 15111:1 15134:5 15135:1 15137:1 15142:1 15160:1 15171:2 15183:1 15184:3 15201:1 15205:4 15233:1 15240:1 15251:1 15282:2 15283:1 15287:1 15307:11 15344:1 15354:1 15360:1 15396:1 15405:2 15444:1 15445:2 15452:1 15460:2 15480:638 15492:2 15496:1 15556:1 15570:1 15574:1 15591:1 15595:1 15610:2 15617:2 15625:1 15638:1 15642:2 15646:1 15647:1 15649:2 15652:1 15655:3 15658:1 15661:1 15662:1 15723:1 15738:1 15742:2 15743:1 15776:6 15816:1 15929:1 15935:1 15943:1 15949:3 15955:1 15997:2 16036:1 16042:2 16051:1 16054:1 16115:4 16118:1 16121:4 16151:1 16154:3 16171:1 16206:1 16228:1 16254:1 16262:1 16273:2 16306:2 16313:1 16341:1 16370:1 16387:4 16409:2 16426:1 16438:1 16474:1 16484:1 16485:1 16488:1 16495:1 16500:2 16503:1 16548:1 16577:1 16593:2 16603:1 16630:3 16654:1 16659:1 16670:1 16679:1 16681:3 16693:1 16718:1 16726:2 16727:1 16732:1 16735:1 16744:1 16753:1 16754:1 16763:1 16780:1 16787:1 16809:1 16815:4 16853:1 16855:2 16861:1 16862:1 16867:1 16882:1 16897:1 16921:1 16970:1 16975:1 17048:1 17057:1 17085:2 17113:1 17185:1 17188:1 17237:3 17275:2 17276:1 17311:2 17316:1 17320:1 17331:1 17346:1 17362:4 17366:1 17367:1 17387:2 17404:1 17424:2 17485:1 17491:1 17499:1 17553:1 17569:1 17580:1 17602:1 17605:1 17616:2 17623:1 17631:1 17660:1 17678:3 17712:1 17725:1 17768:1 17772:1 17792:1 17822:1 17834:2 17839:1 17855:4 17865:1 17890:1 17908:1 17910:1 17916:4 17927:1 17943:1 17955:1 17958:2 17962:1 17980:1 17983:1 17995:1 18009:3 18025:1 18028:1 18043:3 18053:1 18058:1 18069:1 18079:1 18092:1 18093:1 18116:1 18146:1 18166:2 18168:2 18174:1 18181:1 18197:1 18210:1 18266:1 18366:1 18369:1 18370:2 18375:1 18378:1 18410:1 18454:1 18485:1 18491:1 18498:1 18511:1 18568:1 18587:1 18654:1 18664:1 18665:1 18674:1 18704:1 18727:1 18732:5 18742:1 18748:1 18792:2 18856:4 18857:1 18862:3 18880:1 18881:1 18882:1 18929:1 18931:1 18941:4 19024:1 19033:2 19059:1 19060:1 19080:1 19098:2 19108:2 19172:1 19205:3 19207:1 19210:2 19226:1 19230:1 19275:2 19292:4 19293:1 19302:1 19328:1 19337:3 19339:1 19392:1 19395:2 19422:1 19438:1 19471:2 19487:3 19559:1 19561:1 19562:1 19564:1 19586:1 19603:1 19612:1 19644:1 19683:1 19706:1 19716:1 19762:5 19767:1 19773:1 19792:1 19804:1 19805:1 19810:3 19837:1 19847:1 19902:1 19912:1 19962:1 19966:1 20015:1 20040:1 20084:3 20096:2 20109:1 20138:1 20165:1 20223:1 20224:1 20226:1 20239:1 20251:1 20258:2 20266:1 20267:1 20270:2 20275:1 20278:1 20304:1 20317:1 20318:5 20326:1 20327:1 20331:2 20332:2 20334:2 20337:1 20341:1 20344:3 20378:3 20383:3 20398:3 20399:1 20406:1 20411:1 20413:1 20435:1 20441:1 20442:3 20447:4 20464:1 20469:1 20502:1 20512:1 20529:1 20576:2 20619:1 20621:1 20627:1 20631:3 20659:1 20668:3 20733:1 20738:2 20742:4 20761:3 20785:4 20829:1 20853:1 20887:1 20949:3 20962:1 21012:1 21056:1 21065:2 21089:1 21100:1 21108:4 21111:1 21123:1 21146:1 21150:4 21173:1 21198:1 21208:1 21209:2 21218:1 21224:1 21225:2 21249:1 21293:2 21337:1 21350:1 21473:1 21480:1 21485:1 21529:2 21539:2 21557:3 21561:2 21586:1 21588:1 21602:2 21610:3 21613:1 21627:1 21630:1 21650:1 21684:1 21760:11 21773:3 21774:1 21782:3 21783:1 21784:1 21787:1 21812:1 21830:1 21831:1 21838:1 21878:1 21904:1 21914:1 21916:5 21926:1 21997:1 21998:1 22007:1 22024:1 22027:1 22048:3 22080:1 22109:1 22119:1 22163:4 22179:1 22208:1 22218:1 22223:1 22229:1 22245:1 22247:1 22256:1 22263:1 22279:1 22281:1 22315:1 22331:4 22360:1 22410:1 22415:1 22417:1 22431:1 22434:2 22465:1 22466:1 22472:1 22493:1 22513:1 22517:1 22520:3 22548:1 22551:3 22561:1 22585:1 22601:1 22611:1 22617:1 22646:1 22655:1 22669:1 22690:4 22699:3 22707:1 22715:1 22734:1 22736:1 22755:4 22760:2 22786:2 22787:1 22795:1 22802:1 22803:1 22809:1 22812:1 22815:1 22820:1 22822:1 22828:1 22846:1 22864:1 22874:2 22937:1 22942:1 22982:1 23001:1 23011:1 23027:1 23039:1 23076:1 23089:4 23109:3 23151:1 23167:1 23188:1 23237:1 23248:1 23284:2 23295:1 23298:1 23300:1 23305:1 23314:1 23333:1 23349:1 23385:1 23392:1 23393:2 23404:2 23424:1 23430:14 23431:1 23433:1 23466:3 23491:1 23524:1 23551:2 23558:1 23586:1 23588:1 23603:3 23616:1 23626:1 23646:1 23647:2 23655:2 23659:2 23685:1 23712:1 23713:1 23720:1 23733:1 23739:1 23767:1 23768:1 23775:3 23777:2 23797:1 23835:3 23836:1 23858:1 23862:1 23866:4 23923:1 23940:1 23971:2 23993:1 24039:2 24081:1 24096:1 24126:2 24137:1 24143:1 24168:1 24170:3 24179:1 24251:1 24265:1 24266:3 24286:1 24296:1 24307:1 24370:1 24373:1 24385:1 24394:1 24401:3 24411:1 24476:2 24477:1 24482:1 24503:2 24525:1 24530:1 24536:1 24538:1 24568:1
14 56:1 59:1 71:1 146:1 185:3 186:5 204:1 216:1 223:1 230:1 239:1 254:1 265:1 295:1 296:1 314:1 318:1 320:1 336:1 346:1 407:1 450:1 457:3 524:1 525:1 527:2 541:1 565:1 592:2 699:1 704:2 713:1 732:1 748:1 759:1 764:2 802:1 814:2 831:2 834:1 851:2 869:1 875:1 881:1 888:1 889:1 895:1 911:1 914:1 922:1 946:1 949:1 1011:1 1021:1 1023:2 1044:1 1046:2 1048:1 1051:2 1055:1 1059:2 1114:1 1125:1 1127:1 1153:1 1171:3 1220:4 1226:1 1229:1 1259:2 1264:3 1285:1 1297:1 1299:1 1301:1 1321:1 1332:2 1369:1 1381:2 1398:1 1401:3 1413:1 1425:1 1452:1 1507:5 1510:1 1517:4 1526:1 1545:2 1564:3 1591:3 1603:1 1616:1 1617:3 1627:1 1628:1 1659:1 1701:1 1710:1 1731:2 1737:1 1759:1 1766:2 1781:1 1809:3 1842:1 1879:1 1880:1 1882:2 1883:1 1885:1 1891:1 1908:1 1910:2 1912:2 1938:1 1945:3 1954:4 1955:1 1963:1 1968:2 1973:1 1976:2 2015:1 2028:1 2040:1 2061:1 2065:1 2128:1 2131:1 2149:1 2157:1 2164:1 2172:1 2178:1 2183:2 2198:1 2226:2 2229:1 2234:1 2286:1 2295:1 2321:2 2325:1 2366:2 2383:2 2389:1 2390:2 2394:1 2419:1 2425:1 2426:1 2448:1 2451:1 2462:17 2464:1 2480:2 2486:1 2504:1 2507:6 2513:1 2519:3 2530:1 2565:3 2587:1 2597:1 2627:1 2704:1 2709:1 2742:1 2785:1 2798:2 2801:1 2802:3 2844:1 2848:2 2849:1 2854:1 2886:1 2980:1 3002:1 3003:1 3020:1 3027:1 3049:2 3061:1 3072:1 3077:3 3131:1 3132:1 3133:1 3147:2 3153:1 3173:1 3179:1 3184:2 3206:1 3213:1 3221:2 3225:1 3234:3 3245:1 3297:2 3312:1 3326:1 3328:1 3351:1 3369:1 3372:1 3408:2 3414:1 3462:1 3494:1 3499:1 3518:1 3522:1 3572:1 3581:1 3598:1 3606:1 3612:1 3615:1 3618:2 3641:7 3678:1 3679:1 3735:1 3774:1 3776:1 3786:1 3804:1 3841:1 3886:2 3889:1 3909:2 3938:2 3964:1 3967:1 3976:1 3984:1 3995:3 3998:3 4046:1 4061:1 4062:1 4107:9 4109:1 4136:1 4154:1 4183:1 4190:1 4198:3 4211:1 4212:2 4213:1 4236:1 4237:1 4238:1 4244:2 4340:1 4353:1 4354:1 4368:1 4371:1 4375:4 4399:1 4497:1 4498:1 4512:1 4519:2 4539:1 4551:1 4572:1 4586:1 4609:1 4622:1 4667:1 4668:1 4683:1 4710:1 4796:1 4821:1 4876:2 4889:1 4894:1 5000:1 5016:1 5049:2 5071:2 5088:1 5093:1 5100:1 5192:1 5224:1 5247:1 5248:1 5254:1 5258:1 5283:1 5308:2 5313:1 5322:3 5325:2 5326:1 5332:1 5337:1 5338:1 5342:1 5347:1 5349:5 5350:1 5352:1 5354:3 5451:5 5492:1 5500:1 5529:1 5530:1 5533:1 5534:1 5535:1 5585:1 5595:1 5599:1 5604:1 5610:1 5674:1 5686:1 5688:1 5702:4 5726:1 5746:2 5783:1 5788:2 5807:1 5813:2 5828:1 5865:2 5874:1 5878:1 5900:1 5939:1 5947:3 5948:1 5968:1 6005:2 6047:1 6050:1 6056:1 6087:1 6112:1 6116:1 6126:1 6139:1 6183:2 6194:1 6235:1 6237:2 6289:1 6293:1 6311:3 6364:1 6365:2 6378:1 6381:1 6382:1 6386:1 6405:1 6407:1 6409:1 6410:1 6429:15 6434:1 6448:1 6449:1 6451:4 6459:1 6468:1 6491:1 6492:1 6526:1 6554:1 6560:1 6578:1 6661:1 6667:1 6669:1 6675:1 6707:1 6723:1 6789:1 6794:1 6796:2 6810:2 6824:1 6839:1 6854:4 6859:3 6908:1 6937:1 6981:2 7016:1 7021:1 7027:1 7054:1 7059:2 7068:2 7096:1 7097:1 7116:1 7122:1 7137:1 7157:1 7165:1 7166:1 7169:3 7170:1 7177:1 7178:2 7179:1 7181:1 7194:1 7199:1 7202:1 7215:1 7216:1 7235:1 7246:2 7285:5 7322:1 7379:1 7391:2 7400:8 7409:1 7414:1 7430:1 7443:1 7450:2 7456:1 7457:4 7459:2 7460:1 7461:1 7464:1 7465:2 7499:1 7510:1 7527:1 7571:3 7572:1 7581:5 7589:1 7615:1 7622:1 7626:1 7638:1 7648:2 7656:1 7702:1 7712:2 7741:1 7753:1 7754:1 7761:1 7768:1 7773:5 7782:1 7787:1 7810:1 7820:1 7868:2 7905:1 7912:1 7930:1 7950:1 7972:1 7988:2 8002:1 8005:1 8049:1 8065:3 8070:5 8081:3 8082:2 8099:3 8162:3 8171:1 8175:1 8176:1 8195:1 8206:3 8207:1 8229:2 8234:6 8249:2 8279:1 8282:1 8284:1 8285:3 8296:1 8304:1 8311:1 8317:1 8328:1 8352:3 8355:1 8357:1 8383:1 8387:2 8443:1 8469:3 8508:1 8567:1 8568:2 8574:1 8582:1 8593:1 8597:1 8598:4 8603:1 8614:1 8623:1 8656:1 8657:1 8672:1 8681:1 8690:1 8692:1 8702:2 8714:3 8726:1 8727:2 8753:2 8759:5 8761:1 8782:1 8783:1 8800:1 8802:1 8809:4 8812:1 8814:5 8831:2 8832:2 8833:1 8836:1 8878:1 8891:4 8900:1 8901:1 8911:1 8916:1 8944:1 8968:1 8979:1 8993:1 8998:1 9000:1 9002:2 9022:1 9062:2 9067:1 9101:3 9102:3 9120:1 9142:1 9173:1 9181:1 9185:1 9222:1 9240:1 9252:5 9336:1 9346:1 9363:1 9377:1 9440:2 9441:1 9455:3 9462:2 9466:1 9488:2 9495:1 9532:5 9550:1 9562:2 9563:1 9575:1 9599:1 9607:1 9619:1 9622:1 9682:1 9683:1 9688:2 9690:1 9691:1 9700:1 9716:2 9772:1 9810:1 9818:1 9823:2 9859:1 9878:1 9890:1 9918:1 9922:1 9963:1 10022:3 10045:1 10052:2 10053:2 10054:2 10090:3 10169:2 10204:1 10211:1 10218:1 10232:1 10316:1 10318:1 10324:1 10369:1 10384:3 10457:1 10465:1 10480:15 10531:1 10537:1 10551:1 10576:1 10598:2 10648:1 10651:1 10659:1 10722:1 10818:1 10823:2 10843:1 10847:6 10851:1 10871:2 10879:1 10892:1 10897:1 10898:1 10912:1 10961:1 10962:1 10970:1 10974:4 10981:1 10985:1 10987:1 11016:1 11046:1 11047:3 11056:1 11062:1 11103:1 11118:1 11126:1 11159:2 11186:1 11187:1 11215:5 11223:1 11273:3 11284:1 11286:1 11297:1 11325:1 11341:1 11352:1 11353:1 11368:1 11375:1 11400:1 11405:1 11408:1 11415:1 11430:3 11447:1 11449:1 11451:1 11459:1 11463:1 11486:1 11526:1 11584:2 11607:1 11638:1 11643:1 11708:2 11712:2 11739:1 11790:1 11792:1 11812:2 11813:1 11818:1 11833:1 11853:1 11864:1 11874:1 11906:1 11937:1 11976:1 11979:1 11990:1 11992:1 12078:1 12099:3 12114:1 12115:1 12182:1 12184:1 12218:1 12245:1 12276:2 12289:1 12338:1 12346:3 12364:2 12372:1 12381:3 12387:1 12396:1 12416:1 12444:1 12486:1 12488:2 12491:1 12556:2 12575:1 12582:1 12583:1 12614:3 12623:1 12652:1 12662:1 12685:1 12723:1 12739:1 12740:1 12741:4 12748:1 12754:1 12797:3 12798:1 12800:3 12839:1 12846:1 12881:1 12943:1 12945:2 12950:1 12961:1 12988:1 12989:1 13014:1 13032:1 13033:1 13058:1 13104:2 13153:5 13181:1 13205:1 13207:1 13225:3 13238:1 13259:1 13288:1 13295:1 13304:1 13311:1 13328:2 13336:1 13362:1 13428:1 13437:1 13445:2 13449:1 13452:1 13462:1 13470:1 13482:1 13489:3 13502:1 13505:1 13525:1 13561:1 13620:1 13637:1 13647:3 13662:2 13664:2 13682:1 13719:1 13733:1 13760:1 13765:2 13766:1 13803:3 13819:5 13835:4 13888:1 13895:1 13908:1 13928:2 13929:1 13931:1 13936:1 13970:1 13979:1 13986:1 13989:3 13994:1 13996:1 14000:1 14031:1 14035:1 14051:3 14071:2 14073:1 14077:1 14088:1 14127:1 14130:1 14178:4 14204:1 14207:1 14229:2 14231:2 14252:1 14262:1 14279:1 14300:2 14317:1 14329:1 14332:2 14334:1 14365:1 14366:1 14371:2 14382:1 14386:1 14391:2 14395:1 14404:1 14422:1 14434:1 14465:1 14476:3 14477:2 14496:6 14513:1 14516:2 14522:1 14549:1 14576:1 14577:1 14582:1 14622:1 14630:1 14635:1 14648:1 14649:1 14650:1 14657:1 14665:1 14672:1 14677:5 14678:1 14696:1 14711:1 14719:1 14727:1 14740:3 14744:1 14762:1 14763:1 14764:1 14774:1 14776:1 14785:2 14802:1 14804:1 14807:1 14810:1 14837:2 14844:1 14849:2 14851:1 14864:1 14871:1 14877:1 14885:3 14946:1 14956:1 14962:1 14976:1 14981:1 15035:1 15080:1 15105:2 15111:1 15123:1 15134:6 15135:1 15137:1 15142:1 15160:1 15171:2 15183:1 15184:3 15197:1 15201:1 15205:5 15233:1 15240:1 15251:1 15282:2 15283:1 15287:1 15307:13 15312:1 15344:1 15354:1 15360:1 15396:1 15405:2 15444:1 15445:2 15452:1 15460:2 15480:694 15492:2 15496:1 15556:1 15570:1 15574:1 15591:1 15595:1 15610:2 15617:2 15625:1 15638:1 15642:2 15646:1 15647:1 15649:3 15652:1 15655:3 15658:1 15661:1 15662:2 15723:1 15738:1 15742:2 15743:1 15763:1 15776:6 15816:1 15929:1 15935:1 15943:1 15949:3 15955:1 15997:3 16036:1 16042:2 16051:1 16054:2 16074:1 16115:4 16118:1 16121:4 16151:1 16154:3 16171:1 16206:1 16228:1 16254:1 16262:2 16273:2 16306:2 16310:1 16313:1 16341:1 16370:1 16387:4 16409:2 16426:1 16438:1 16474:1 16484:1 16485:1 16488:1 16495:1 16500:2 16503:1 16548:1 16577:1 16593:2 16603:1 16630:3 16654:1 16659:1 16670:1 16679:1 16681:4 16693:1 16718:1 16726:2 16727:1 16732:1 16735:1 16744:1 16753:1 16754:1 16763:1 16780:1 16787:1 16809:1 16815:4 16853:1 16855:2 16861:2 16862:1 16867:1 16875:1 16882:1 16897:1 16921:1 16970:1 16975:1 17048:1 17057:1 17085:2 17113:1 17136:1 17175:1 17185:1 17188:1 17237:3 17275:3 17276:1 17311:3 17316:1 17320:1 17331:1 17346:1 17362:5 17366:2 17367:1 17387:2 17404:1 17424:2 17485:1 17491:1 17499:1 17553:1 17569:1 17580:1 17602:1 17605:1 17616:2 17623:1 17631:1 17660:1 17678:3 17712:1 17725:1 17768:1 17772:1 17792:1 17822:1 17827:1 17834:2 17839:1 17855:4 17865:1 17890:1 17908:1 17910:1 17916:5 17927:1 17943:1 17955:1 17958:2 17962:1 17980:1 17983:1 17995:1 18009:3 18025:1 18028:1 18043:3 18053:2 18058:1 18069:1 18079:1 18092:1 18093:1 18116:1 18130:1 18146:1 18166:2 18168:2 18174:1 18181:1 18197:1 18210:1 18266:1 18366:1 18369:1 18370:2 18375:1 18378:1 18406:1 18410:1 18454:1 18485:1 18491:1 18498:1 18511:2 18523:1 18568:1 18578:1 18587:1 18654:1 18664:1 18665:1 18674:1 18702:1 18704:1 18727:1 18732:6 18742:1 18748:1 18792:2 18856:4 18857:1 18862:3 18880:1 18881:2 18882:1 18901:1 18929:1 18931:1 18941:4 19024:1 19033:2 19059:1 19060:1 19080:1 19098:2 19108:2 19172:1 19205:3 19207:2 19210:2 19226:1 19230:1 19275:2 19292:4 19293:1 19302:1 19303:1 19328:1 19337:4 19339:1 19392:1 19395:2 19422:1 19438:1 19471:2 19487:3 19507:1 19544:1 19559:2 19561:1 19562:1 19564:1 19586:1 19603:1 19612:1 19644:1 19683:1 19706:1 19716:1 19762:5 19767:1 19773:1 19792:1 19804:1 19805:1 19810:3 19837:1 19847:1 19902:1 19912:1 19962:1 19966:1 20015:1 20040:1 20084:3 20096:2 20109:1 20138:1 20165:1 20208:1 20223:1 20224:1 20226:1 20239:1 20251:1 20258:2 20266:1 20267:1 20270:2 20275:1 20278:1 20304:1 20317:1 20318:6 20326:1 20327:1 20331:2 20332:2 20334:2 20337:1 20338:1 20341:1 20344:3 20371:1 20378:3 20383:3 20398:3 20399:1 20406:1 20411:1 20413:1 20435:1 20441:1 20442:4 20447:5 20464:1 20469:1 20470:1 20502:1 20512:1 20529:1 20576:3 20619:1 20621:1 20627:1 20631:3 20659:1 20668:3 20727:1 20733:1 20738:2 20742:5 20761:3 20785:5 20829:2 20853:1 20871:1 20872:1 20887:1 20949:3 20962:2 20973:1 20995:1 21012:1 21056:1 21065:2 21089:1 21100:1 21108:4 21111:1 21123:1 21139:1 21146:1 21150:4 21173:1 21198:2 21208:1 21209:2 21218:1 21219:1 21224:1 21225:2 21249:1 21293:2 21337:2 21350:1 21473:1 21480:1 21485:1 21529:2 21539:2 21557:3 21561:2 21586:1 21588:1 21602:2 21610:4 21613:1 21627:1 21630:1 21642:1 21650:1 21684:1 21760:13 21773:3 21774:1 21782:3 21783:1 21784:1 21787:1 21812:1 21830:1 21831:1 21838:1 21878:1 21904:1 21914:1 21916:5 21926:1 21997:1 21998:1 22007:1 22024:1 22027:1 22037:1 22048:3 22080:1 22109:1 22119:1 22163:5 22179:1 22208:1 22218:1 22223:1 22229:1 22245:1 22247:1 22256:1 22263:1 22279:1 22281:1 22315:1 22331:5 22360:1 22410:1 22415:1 22417:1 22431:1 22434:2 22465:1 22466:1 22472:1 22493:1 22513:1 22517:1 22520:3 22548:1 22551:3 22561:1 22585:1 22601:1 22611:2 22617:1 22646:1 22655:1 22669:2 22690:4 22699:3 22707:1 22715:1 22734:1 22736:1 22755:4 22760:2 22786:2 22787:1 22795:1 22802:1 22803:2 22809:1 22812:1 22815:1 22820:1 22822:1 22828:1 22846:1 22864:1 22865:1 22874:2 22937:1 22942:1 22982:1 23000:1 23001:1 23011:1 23027:1 23039:1 23075:1 23076:1 23089:5 23109:3 23151:1 23167:1 23188:1 23237:1 23248:1 23284:2 23295:1 23298:2 23300:1 23305:1 23314:1 23333:1 23349:1 23384:1 23385:1 23392:1 23393:2 23404:2 23424:1 23430:15 23431:1 23433:1 23466:3 23491:1 23521:1 23524:1 23551:2 23558:1 23586:2 23588:1 23603:3 23616:1 23626:2 23646:1 23647:2 23655:2 23659:2 23685:1 23712:1 23713:1 23720:1 23733:1 23739:1 23767:1 23768:1 23775:4 23777:2 23797:1 23835:3 23836:1 23858:2 23862:1 23866:4 23923:1 23940:1 23971:2 23993:1 24039:2 24081:1 24096:1 24126:2 24137:1 24143:1 24168:1 24170:4 24179:1 24251:1 24265:1 24266:4 24286:1 24296:1 24307:1 24370:1 24373:1 24385:1 24394:1 24401:3 24411:1 24476:2 24477:1 24482:1 24503:3 24525:1 24530:1 24536:1 24538:1 24568:1
14 56:1 59:1 71:1 146:1 185:4 186:5 188:1 204:1 216:1 223:1 224:1 230:1 239:1 254:2 265:1 295:1 296:1 314:1 318:1 320:1 336:1 346:1 407:1 450:1 457:3 524:1 525:1 527:2 541:1 565:1 592:2 699:1 704:2 713:1 732:1 748:1 759:1 764:2 802:1 814:2 831:2 834:1 851:2 869:1 875:1 881:1 888:1 889:1 895:1 911:1 914:1 922:1 946:1 949:1 1009:1 1011:1 1021:1 1023:2 1044:1 1046:2 1048:1 1051:3 1055:1 1059:2 1114:1 1125:1 1127:1 1153:1 1155:1 1171:3 1172:1 1220:4 1226:1 1229:1 1259:2 1264:3 1285:1 1297:1 1299:1 1301:1 1321:1 1332:2 1369:1 1381:2 1398:1 1401:4 1405:1 1413:1 1425:1 1452:1 1507:5 1510:1 1517:4 1526:1 1545:2 1564:4 1591:3 1603:1 1616:1 1617:3 1627:1 1628:1 1659:1 1701:1 1710:1 1731:2 1737:1 1759:1 1766:3 1781:1 1809:3 1842:1 1879:1 1880:1 1882:2 1883:1 1885:1 1888:1 1891:1 1908:1 1910:2 1912:2 1938:1 1945:3 1954:4 1955:1 1963:1 1968:3 1973:1 1976:2 2015:1 2028:1 2040:1 2061:1 2065:1 2076:1 2128:1 2131:1 2149:1 2157:1 2164:1 2172:1 2178:1 2183:2 2198:1 2226:2 2229:1 2234:1 2274:1 2286:1 2295:1 2303:1 2321:2 2325:1 2366:2 2383:2 2389:1 2390:2 2394:1 2419:1 2425:1 2426:1 2448:1 2451:1 2462:18 2464:1 2480:2 2486:1 2504:1 2507:6 2513:1 2519:4 2530:1 2565:3 2587:1 2597:1 2627:1 2638:1 2704:1 2709:1 2742:2 2785:1 2798:2 2801:1 2802:3 2844:1 2848:2 2849:1 2854:1 2886:3 2980:1 3002:1 3003:1 3020:1 3027:1 3049:2 3061:1 3072:1 3077:3 3090:1 3131:1 3132:1 3133:1 3147:2 3153:1 3173:1 3179:1 3184:3 3204:1 3206:1 3213:1 3221:3 3225:1 3234:4 3245:1 3297:2 3312:1 3326:1 3328:1 3351:1 3369:1 3372:1 3408:2 3414:1 3462:1 3494:1 3499:1 3518:1 3522:1 3572:1 3581:1 3598:1 3606:1 3612:1 3615:1 3618:2 3641:8 3660:1 3678:1 3679:1 3735:1 3774:1 3776:1 3786:1 3804:1 3841:1 3886:2 3889:1 3909:2 3938:2 3964:1 3967:1 3976:1 3984:1 3995:4 3998:4 4005:2 4046:1 4061:1 4062:1 4102:1 4107:11 4109:1 4136:1 4154:1 4183:1 4190:1 4198:4 4211:1 4212:2 4213:1 4236:1 4237:1 4238:1 4244:2 4325:1 4340:1 4353:1 4354:1 4368:1 4371:1 4375:5 4399:1 4413:1 4497:1 4498:1 4512:1 4519:2 4539:1 4551:1 4572:1 4586:1 4609:1 4622:1 4667:1 4668:1 4683:2 4710:1 4796:2 4820:1 4821:1 4832:1 4876:2 4889:1 4894:1 5000:1 5016:1 5044:1 5049:2 5071:2 5088:1 5093:1 5100:1 5192:1 5224:1 5247:1 5248:1 5254:1 5258:1 5283:1 5308:2 5313:1 5322:3 5325:2 5326:1 5332:1 5337:2 5338:1 5342:1 5347:3 5349:5 5350:1 5352:1 5354:3 5451:6 5492:1 5500:1 5520:1 5529:1 5530:1 5533:1 5534:1 5535:1 5585:1 5595:1 5599:1 5604:1 5610:1 5674:1 5686:1 5688:1 5702:5 5726:1 5746:2 5783:1 5788:2 5807:1 5813:2 5828:1 5865:2 5874:2 5878:1 5900:1 5939:1 5947:3 5948:1 5968:1 6005:2 6047:1 6050:1 6056:1 6087:1 6112:1 6116:1 6126:1 6139:1 6183:3 6194:1 6235:1 6237:2 6289:1 6293:1 6311:3 6364:1 6365:2 6378:1 6381:1 6382:1 6386:1 6405:1 6407:1 6409:1 6410:1 6416:1 6429:16 6434:1 6448:1 6449:1 6451:4 6459:1 6468:1 6491:1 6492:1 6526:1 6554:1 6560:1 6578:1 6619:2 6661:1 6667:1 6669:1 6675:1 6707:1 6723:2 6789:1 6794:1 6796:2 6810:2 6824:1 6839:1 6854:4 6859:4 6908:1 6920:1 6937:1 6981:2 7016:1 7021:1 7027:1 7045:1 7054:1 7059:2 7068:3 7096:1 7097:1 7116:1 7122:1 7137:1 7157:1 7165:1 7166:1 7169:3 7170:1 7177:1 7178:2 7179:1 7181:1 7194:1 7199:1 7202:1 7215:1 7216:1 7235:1 7246:2 7285:6 7322:1 7379:1 7391:2 7400:8 7409:1 7414:1 7430:1 7443:1 7450:2 7456:1 7457:4 7459:2 7460:1 7461:1 7464:1 7465:2 7499:1 7510:1 7527:1 7571:3 7572:1 7581:5 7589:1 7615:1 7622:1 7626:1 7638:1 7648:2 7656:1 7702:1 7712:2 7741:1 7753:1 7754:1 7761:1 7768:1 7773:6 7782:1 7787:1 7810:1 7820:1 7868:2 7905:1 7912:1 7930:1 7950:1 7972:1 7988:2 8002:1 8005:1 8049:1 8065:4 8070:5 8081:4 8082:2 8099:3 8162:3 8171:1 8175:1 8176:1 8195:1 8206:4 8207:1 8229:2 8234:6 8249:2 8279:1 8282:1 8284:1 8285:4 8296:1 8304:1 8311:1 8317:1 8328:2 8352:3 8355:1 8357:1 8383:1 8387:2 8428:1 8443:1 8469:3 8508:1 8567:1 8568:2 8574:1 8582:1 8583:1 8593:1 8597:1 8598:5 8603:1 8614:1 8623:1 8656:1 8657:1 8672:1 8681:1 8690:1 8692:1 8702:2 8714:3 8726:1 8727:2 8753:2 8759:5 8761:1 8782:1 8783:1 8800:1 8802:2 8809:4 8812:1 8814:5 8831:2 8832:2 8833:1 8836:1 8878:1 8891:4 8900:2 8901:1 8911:1 8916:1 8944:1 8968:1 8979:1 8993:1 8996:1 8998:1 9000:1 9002:3 9022:1 9062:2 9067:1 9101:4 9102:3 9120:1 9142:1 9173:1 9181:1 9185:1 9222:1 9240:1 9252:5 9336:1 9346:1 9363:1 9377:1 9419:1 9440:2 9441:1 9455:4 9462:2 9466:1 9488:2 9495:1 9532:6 9550:1 9562:2 9563:1 9575:1 9599:1 9607:1 9619:1 9622:1 9682:1 9683:1 9688:2 9690:1 9691:1 9700:1 9710:2 9716:2 9723:2 9772:1 9810:1 9818:1 9823:2 9859:1 9878:1 9890:1 9918:1 9922:1 9963:1 10022:3 10045:1 10052:2 10053:2 10054:2 10090:4 10169:2 10176:1 10204:1 10211:1 10218:2 10232:1 10316:1 10318:1 10324:1 10369:1 10384:4 10457:1 10465:1 10480:16 10531:1 10537:1 10551:1 10576:1 10598:2 10648:1 10651:1 10659:1 10719:1 10722:1 10818:1 10823:2 10843:1 10847:6 10851:1 10871:2 10879:1 10892:1 10897:1 10898:1 10912:1 10961:1 10962:1 10970:1 10974:4 10981:1 10985:1 10987:1 11016:1 11046:1 11047:4 11056:1 11062:1 11103:1 11118:1 11126:1 11159:2 11186:1 11187:1 11215:5 11223:1 11273:3 11284:1 11286:1 11297:1 11325:2 11341:1 11352:1 11353:1 11368:1 11375:1 11400:1 11405:1 11408:1 11415:1 11430:4 11447:1 11449:1 11451:1 11459:1 11463:1 11486:1 11526:1 11584:2 11607:1 11638:1 11643:1 11708:2 11712:2 11739:1 11790:1 11792:1 11812:2 11813:1 11818:1 11833:1 11853:1 11864:1 11874:1 11906:1 11932:1 11937:1 11976:1 11979:1 11990:1 11992:1 12078:1 12099:3 12114:1 12115:1 12182:1 12184:1 12218:1 12229:1 12245:1 12276:2 12289:1 12338:1 12346:4 12364:2 12372:1 12381:3 12387:1 12396:1 12416:1 12444:1 12486:1 12488:2 12491:1 12556:2 12575:1 12582:1 12583:1 12614:4 12623:1 12652:1 12662:1 12685:1 12723:1 12739:1 12740:1 12741:4 12748:1 12754:1 12797:3 12798:1 12800:3 12801:1 12839:1 12842:1 12843:1 12846:1 12881:1 12943:1 12945:2 12950:1 12961:1 12988:2 12989:1 13014:1 13032:1 13033:1 13058:1 13104:2 13153:5 13181:1 13205:1 13207:1 13225:3 13238:1 13259:1 13288:1 13295:1 13304:1 13311:1 13328:3 13336:1 13362:1 13428:1 13437:1 13445:2 13449:1 13452:1 13453:1 13462:1 13470:1 13482:1 13489:3 13502:1 13505:2 13525:1 13561:1 13620:1 13637:1 13647:3 13662:2 13664:2 13680:1 13682:1 13719:1 13733:2 13760:1 13765:2 13766:1 13803:4 13819:7 13835:4 13888:1 13895:1 13908:1 13928:2 13929:1 13931:1 13936:1 13970:1 13979:1 13986:1 13989:3 13994:1 13995:1 13996:2 14000:1 14031:1 14035:1 14051:4 14071:2 14073:1 14077:1 14088:1 14127:1 14130:1 14178:5 14204:1 14207:1 14229:2 14231:2 14252:1 14262:1 14279:1 14300:2 14317:1 14329:1 14332:2 14334:1 14365:1 14366:3 14371:2 14382:3 14386:1 14391:2 14395:1 14404:1 14422:1 14434:1 14465:1 14476:3 14477:2 14496:7 14513:1 14516:4 14522:1 14549:1 14576:1 14577:1 14582:1 14622:1 14630:1 14635:1 14648:1 14649:1 14650:1 14657:1 14665:2 14672:1 14677:5 14678:1 14696:1 14711:1 14719:1 14727:1 14740:3 14744:1 14762:1 14763:1 14764:1 14774:1 14776:1 14785:2 14802:1 14804:1 14807:1 14810:1 14837:2 14844:1 14849:2 14851:1 14864:1 14871:1 14877:1 14885:3 14946:1 14956:1 14962:1 14976:1 14981:1 14987:1 15035:1 15080:1 15105:2 15111:1 15123:1 15134:7 15135:1 15137:1 15142:1 15160:1 15171:2 15183:1 15184:3 15197:1 15201:1 15205:7 15233:1 15240:1 15251:1 15269:2 15282:2 15283:1 15287:1 15307:15 15312:1 15344:1 15354:1 15360:1 15396:2 15405:3 15444:1 15445:2 15452:1 15460:2 15480:747 15492:2 15496:1 15556:1 15570:1 15574:1 15591:1 15595:1 15610:2 15617:2 15625:1 15638:1 15642:2 15646:1 15647:1 15649:3 15652:1 15655:3 15658:1 15661:1 15662:3 15723:1 15738:1 15742:2 15743:1 15763:1 15776:7 15816:1 15929:1 15935:1 15943:1 15949:3 15955:1 15997:3 16036:1 16042:3 16051:1 16054:2 16074:1 16115:4 16118:1 16121:5 16151:1 16154:4 16171:1 16206:1 16228:1 16254:1 16262:2 16273:2 16302:1 16306:2 16310:1 16313:1 16341:1 16370:1 16387:4 16409:2 16426:1 16438:1 16474:1 16479:1 16484:1 16485:1 16488:1 16495:1 16500:2 16503:1 16548:1 16577:1 16593:2 16603:1 16630:3 16654:2 16659:1 16670:1 16679:1 16681:4 16693:1 16718:1 16726:2 16727:1 16732:1 16735:1 16744:1 16753:1 16754:1 16763:1 16780:1 16787:1 16809:1 16815:4 16853:1 16855:2 16861:2 16862:1 16867:1 16875:1 16882:1 16895:1 16897:1 16921:2 16970:1 16975:1 17048:1 17057:1 17085:2 17113:1 17136:1 17175:1 17185:1 17188:1 17237:4 17275:4 17276:1 17311:3 17316:1 17320:1 17331:1 17346:1 17362:5 17366:2 17367:1 17387:3 17404:1 17424:2 17485:1 17491:1 17499:1 17553:1 17569:1 17580:1 17602:1 17605:1 17616:2 17623:1 17631:1 17660:1 17678:4 17712:1 17725:1 17768:1 17772:1 17792:1 17822:1 17827:1 17834:2 17839:1 17855:4 17865:1 17890:1 17908:1 17910:1 17916:7 17927:1 17943:2 17955:1 17958:3 17962:1 17980:1 17983:1 17995:1 18009:3 18025:2 18028:1 18038:1 18043:3 18053:2 18058:1 18064:1 18069:1 18079:1 18092:1 18093:3 18116:1 18130:1 18146:1 18166:2 18168:2 18174:1 18181:1 18197:1 18210:1 18266:1 18366:1 18369:1 18370:2 18375:1 18378:1 18406:1 18410:1 18454:1 18478:1 18485:1 18491:1 18498:1 18511:2 18523:1 18568:1 18578:1 18587:1 18654:1 18664:1 18665:1 18674:1 18702:1 18704:1 18727:1 18732:6 18742:1 18748:1 18792:2 18856:5 18857:1 18862:4 18880:1 18881:2 18882:1 18901:2 18929:1 18931:1 18941:4 19024:1 19033:2 19059:1 19060:2 19080:1 19098:2 19108:3 19172:1 19193:1 19205:3 19207:2 19210:3 19226:1 19230:1 19275:2 19292:5 19293:1 19294:1 19302:1 19303:1 19328:1 19337:5 19339:1 19365:1 19392:1 19395:2 19422:1 19438:1 19471:2 19487:4 19507:1 19544:1 19559:3 19561:1 19562:1 19564:1 19586:1 19603:1 19612:1 19644:1 19683:1 19706:1 19716:1 19762:5 19767:1 19773:1 19792:1 19804:1 19805:1 19810:3 19837:1 19847:1 19902:1 19912:1 19962:1 19966:1 20015:1 20040:1 20084:3 20096:2 20109:1 20138:1 20165:1 20208:1 20223:1 20224:1 20226:1 20239:1 20251:1 20258:2 20266:1 20267:1 20270:2 20275:1 20278:1 20304:1 20316:1 20317:1 20318:6 20326:1 20327:1 20331:3 20332:2 20334:2 20337:1 20338:1 20341:1 20343:2 20344:3 20371:1 20378:3 20383:3 20398:4 20399:1 20406:1 20411:1 20413:1 20435:1 20441:1 20442:6 20447:5 20464:1 20469:1 20470:1 20502:1 20512:1 20529:1 20576:3 20619:1 20621:1 20627:1 20631:4 20659:1 20668:3 20727:1 20733:1 20738:2 20742:5 20761:4 20785:7 20829:4 20853:1 20871:1 20872:1 20887:1 20949:3 20962:2 20973:1 20995:1 21012:1 21056:1 21065:2 21089:1 21100:1 21108:4 21111:1 21123:1 21139:1 21146:1 21150:4 21173:1 21198:2 21199:2 21208:2 21209:2 21218:1 21219:1 21224:1 21225:2 21249:1 21293:2 21337:2 21350:1 21473:1 21480:1 21485:1 21529:2 21539:2 21557:3 21561:2 21586:1 21588:1 21602:2 21610:5 21613:1 21627:1 21630:1 21642:1 21650:1 21684:1 21760:15 21773:4 21774:1 21782:3 21783:1 21784:1 21787:1 21812:1 21830:1 21831:1 21838:1 21878:1 21904:1 21914:1 21916:5 21926:1 21997:1 21998:1 22007:1 22024:1 22027:1 22037:1 22048:3 22080:1 22109:1 22119:1 22163:5 22179:1 22208:1 22218:1 22223:1 22229:1 22245:1 22247:1 22256:1 22263:1 22279:1 22281:1 22315:1 22331:5 22360:1 22410:1 22415:1 22417:1 22431:1 22434:2 22465:1 22466:1 22472:1 22493:1 22513:1 22517:1 22520:4 22534:1 22548:1 22551:3 22561:1 22585:1 22601:1 22611:2 22617:1 22646:1 22647:1 22655:1 22669:3 22690:4 22699:4 22707:1 22715:1 22734:1 22736:1 22755:4 22760:2 22786:2 22787:1 22795:1 22802:1 22803:4 22809:1 22812:1 22815:1 22820:1 22822:1 22828:1 22846:1 22864:1 22865:1 22874:2 22895:1 22937:1 22942:1 22982:1 23000:1 23001:1 23011:1 23027:2 23039:1 23075:1 23076:1 23089:5 23109:3 23151:1 23167:1 23188:1 23237:1 23248:1 23284:2 23295:1 23298:2 23300:1 23305:1 23314:1 23333:1 23349:1 23384:1 23385:1 23392:1 23393:2 23404:2 23424:1 23430:15 23431:1 23433:1 23466:3 23491:1 23521:1 23524:1 23551:2 23558:1 23586:2 23588:1 23603:3 23610:2 23616:1 23626:4 23646:1 23647:2 23655:2 23659:2 23685:1 23712:1 23713:1 23720:1 23733:1 23739:1 23767:1 23768:1 23775:4 23777:2 23797:1 23835:4 23836:1 23858:2 23862:1 23866:4 23923:1 23940:1 23971:2 23993:1 24039:2 24081:1 24096:1 24126:2 24129:1 24137:1 24143:1 24168:1 24170:4 24179:1 24251:1 24265:1 24266:5 24271:1 24286:1 24296:1 24307:1 24370:1 24373:1 24385:1 24394:1 24401:3 24411:1 24476:2 24477:1 24482:1 24503:3 24525:1 24530:1 24536:2 24538:1 24568:1
14 56:1 59:1 71:1 96:1 146:1 163:1 185:4 186:5 188:1 204:1 216:1 219:1 223:1 224:1 230:1 239:1 254:3 265:1 295:1 296:2 314:1 318:1 320:1 323:1 336:1 346:1 407:1 450:1 457:3 524:1 525:1 527:3 541:1 565:1 592:2 699:1 704:2 713:1 732:1 748:1 759:1 764:2 802:1 814:2 831:2 834:1 851:2 869:1 875:1 881:1 888:1 889:1 895:1 909:1 911:1 914:1 922:1 946:1 949:1 1009:1 1011:1 1021:1 1023:2 1044:1 1046:2 1048:1 1051:3 1055:1 1059:2 1114:1 1125:1 1127:1 1153:1 1155:1 1171:3 1172:1 1220:4 1226:1 1229:1 1259:2 1264:3 1285:1 1293:1 1297:1 1299:1 1301:1 1321:1 1332:2 1369:1 1381:2 1398:1 1401:4 1405:1 1413:1 1425:1 1452:1 1507:5 1510:1 1517:4 1526:1 1545:2 1564:5 1589:1 1591:3 1603:1 1616:1 1617:3 1627:1 1628:1 1659:1 1701:1 1710:1 1731:2 1737:1 1759:1 1766:4 1781:1 1809:3 1818:1 1834:1 1838:1 1842:1 1879:1 1880:1 1882:2 1883:1 1885:1 1888:1 1891:1 1908:1 1910:2 1912:3 1938:1 1945:3 1954:4 1955:1 1963:1 1968:3 1970:1 1973:1 1976:2 1991:1 2015:1 2028:1 2040:1 2053:1 2061:1 2065:1 2076:1 2077:1 2128:1 2131:1 2149:1 2157:1 2164:1 2172:1 2178:1 2183:2 2193:1 2198:1 2226:2 2229:1 2234:1 2274:1 2275:1 2277:1 2286:1 2295:1 2303:1 2321:2 2325:1 2366:2 2383:2 2389:1 2390:2 2394:1 2419:1 2425:1 2426:1 2448:1 2451:1 2462:19 2464:1 2480:2 2486:1 2504:1 2507:7 2513:1 2519:4 2530:1 2565:3 2587:1 2597:1 2627:2 2638:1 2704:1 2709:1 2731:1 2736:1 2742:2 2785:1 2798:2 2801:1 2802:4 2844:1 2848:2 2849:1 2854:1 2886:3 2980:1 3002:1 3003:1 3020:1 3027:1 3049:2 3060:1 3061:1 3072:1 3077:4 3090:1 3131:1 3132:1 3133:1 3147:2 3153:1 3173:1 3179:1 3184:4 3204:1 3206:1 3213:1 3221:3 3225:1 3234:5 3245:1 3297:2 3304:1 3312:1 3324:1 3326:1 3328:1 3332:1 3351:1 3369:1 3372:1 3407:1 3408:2 3414:1 3462:1 3494:1 3499:1 3518:1 3522:1 3562:1 3572:1 3581:1 3598:1 3606:1 3612:1 3615:1 3618:2 3641:8 3660:1 3678:1 3679:1 3735:1 3774:1 3776:1 3786:1 3804:1 3841:1 3878:1 3886:3 3889:1 3909:2 3938:2 3964:1 3966:1 3967:1 3976:1 3984:1 3995:4 3998:4 4005:2 4012:1 4046:1 4061:1 4062:1 4093:1 4102:1 4107:12 4109:1 4136:1 4154:1 4183:1 4190:1 4198:4 4211:1 4212:3 4213:1 4229:1 4236:2 4237:1 4238:1 4244:2 4268:1 4325:1 4340:1 4353:1 4354:1 4368:1 4371:1 4375:5 4376:1 4399:1 4413:1 4423:1 4497:1 4498:1 4512:1 4518:1 4519:3 4539:1 4551:1 4572:1 4586:1 4599:1 4609:1 4622:1 4667:1 4668:1 4683:2 4710:1 4784:1 4792:1 4796:2 4820:1 4821:1 4832:1 4853:1 4876:2 4889:1 4894:1 4901:1 5000:1 5016:1 5044:1 5049:2 5071:2 5088:1 5093:1 5095:1 5100:1 5192:1 5224:1 5247:1 5248:1 5254:1 5258:1 5283:1 5308:2 5313:1 5322:4 5325:2 5326:1 5332:1 5337:2 5338:1 5342:1 5347:4 5349:5 5350:1 5352:1 5354:3 5451:6 5492:1 5500:1 5520:1 5529:1 5530:1 5533:1 5534:1 5535:1 5585:1 5595:1 5599:1 5604:1 5610:1 5674:1 5683:1 5686:1 5688:1 5702:5 5711:1 5721:1 5726:1 5746:2 5783:1 5788:2 5807:1 5813:2 5828:1 5865:3 5874:2 5878:1 5900:1 5931:1 5939:1 5947:3 5948:1 5968:1 5998:1 6005:2 6047:1 6050:1 6056:1 6087:1 6112:1 6116:1 6126:1 6139:1 6183:4 6194:1 6235:1 6237:2 6289:1 6293:1 6311:3 6364:2 6365:3 6378:1 6381:1 6382:1 6386:1 6405:1 6407:1 6409:1 6410:1 6416:1 6429:17 6434:1 6448:1 6449:1 6451:4 6459:1 6468:1 6491:1 6492:1 6493:1 6526:1 6554:1 6560:1 6578:1 6619:2 6661:2 6667:1 6669:1 6675:1 6707:1 6723:2 6789:1 6794:1 6796:2 6810:2 6824:1 6839:1 6854:4 6859:4 6908:1 6920:1 6937:1 6981:2 7016:1 7021:1 7027:1 7045:1 7054:1 7059:2 7068:4 7096:1 7097:1 7116:1 7122:1 7137:1 7157:1 7165:1 7166:1 7169:3 7170:1 7177:1 7178:2 7179:1 7181:1 7194:1 7199:1 7202:1 7215:1 7216:1 7221:1 7235:1 7246:2 7285:7 7322:1 7361:1 7379:1 7391:2 7400:8 7409:1 7414:1 7430:1 7443:1 7450:2 7456:2 7457:4 7459:2 7460:1 7461:1 7464:1 7465:2 7499:1 7510:1 7527:1 7571:3 7572:1 7581:5 7589:1 7614:1 7615:1 7622:1 7626:1 7638:1 7648:2 7656:1 7702:1 7712:2 7741:1 7753:1 7754:1 7761:1 7768:1 7773:7 7782:1 7787:1 7799:1 7803:1 7810:1 7820:1 7868:2 7905:1 7908:1 7912:1 7930:1 7950:1 7972:1 7988:2 8002:1 8005:1 8049:1 8065:4 8070:5 8081:4 8082:2 8099:3 8162:3 8171:1 8175:1 8176:1 8195:1 8206:4 8207:1 8229:2 8234:6 8249:2 8279:1 8282:1 8284:1 8285:4 8296:1 8304:1 8311:1 8317:1 8328:3 8352:3 8355:1 8357:1 8383:1 8387:2 8428:1 8443:2 8469:3 8508:1 8567:1 8568:2 8574:1 8582:1 8583:1 8593:1 8597:1 8598:5 8603:1 8614:1 8623:1 8656:1 8657:1 8672:1 8681:1 8690:1 8692:1 8702:2 8714:3 8726:1 8727:2 8753:2 8759:6 8761:1 8782:2 8783:1 8800:1 8802:3 8809:4 8812:1 8814:5 8831:2 8832:2 8833:1 8836:1 8878:1 8891:4 8900:2 8901:1 8911:1 8916:1 8944:1 8968:1 8979:1 8993:1 8996:1 8998:1 9000:1 9002:3 9022:1 9062:2 9067:1 9101:4 9102:4 9120:1 9142:2 9173:1 9181:1 9185:1 9222:1 9240:2 9252:5 9336:1 9346:1 9363:1 9377:1 9419:1 9440:2 9441:1 9455:5 9462:2 9466:1 9488:3 9495:1 9497:1 9532:7 9550:2 9562:2 9563:1 9575:1 9599:1 9607:1 9619:1 9622:1 9682:2 9683:1 9688:2 9690:1 9691:1 9700:1 9710:2 9716:2 9723:2 9772:1 9810:1 9818:1 9823:2 9824:1 9859:1 9867:1 9878:1 9881:1 9890:1 9918:1 9922:1 9924:1 9949:1 9963:1 10022:3 10040:1 10045:1 10052:2 10053:2 10054:2 10090:5 10169:3 10176:1 10204:1 10211:1 10218:2 10232:1 10316:1 10318:1 10324:1 10369:1 10384:4 10457:1 10465:1 10480:16 10503:1 10531:1 10537:1 10551:1 10576:1 10598:2 10648:1 10651:2 10659:1 10707:1 10719:1 10722:1 10758:1 10818:1 10823:2 10843:1 10847:6 10851:2 10871:2 10879:1 10892:1 10897:1 10898:1 10912:1 10951:1 10961:1 10962:1 10970:1 10974:4 10981:1 10985:1 10987:1 11013:1 11016:1 11046:1 11047:4 11056:1 11062:1 11103:1 11118:1 11126:1 11159:2 11186:1 11187:1 11215:5 11223:1 11273:3 11284:1 11286:1 11297:1 11301:1 11325:2 11337:1 11341:1 11352:1 11353:1 11368:1 11375:1 11400:1 11405:1 11408:1 11415:1 11430:4 11447:1 11449:1 11451:2 11459:1 11463:1 11486:1 11526:1 11584:2 11607:1 11638:1 11643:1 11708:2 11712:2 11739:1 11790:1 11792:1 11812:2 11813:1 11818:1 11833:1 11853:1 11864:1 11874:1 11906:1 11932:1 11937:1 11976:1 11979:1 11990:1 11992:1 12078:1 12099:3 12114:1 12115:1 12126:1 12144:1 12182:1 12184:1 12218:1 12229:1 12245:1 12276:2 12289:1 12338:1 12346:4 12364:2 12372:1 12381:4 12387:1 12396:1 12416:1 12444:1 12486:1 12488:2 12491:1 12556:2 12575:1 12582:1 12583:1 12614:4 12623:1 12652:1 12662:2 12685:1 12723:1 12739:1 12740:1 12741:4 12748:1 12754:1 12797:3 12798:1 12800:3 12801:1 12839:1 12842:1 12843:1 12846:1 12881:1 12943:1 12945:2 12950:1 12961:1 12988:2 12989:1 13014:1 13025:1 13032:1 13033:1 13058:1 13104:2 13153:5 13156:1 13181:1 13205:1 13207:1 13225:3 13238:1 13259:1 13288:1 13295:1 13304:1 13311:1 13328:4 13336:1 13362:1 13406:1 13428:1 13437:1 13445:2 13449:1 13452:1 13453:1 13462:1 13470:1 13482:1 13489:3 13502:1 13505:2 13525:1 13561:1 13620:1 13637:1 13647:3 13662:2 13664:2 13680:1 13682:1 13688:1 13719:1 13729:1 13733:2 13760:1 13765:2 13766:1 13803:4 13819:7 13835:4 13857:1 13865:1 13888:1 13895:1 13908:1 13926:1 13928:2 13929:1 13931:1 13936:1 13947:1 13970:1 13979:1 13986:1 13989:3 13994:1 13995:1 13996:2 14000:1 14031:1 14035:1 14051:4 14071:2 14073:1 14077:1 14088:1 14097:1 14127:2 14130:1 14178:5 14204:2 14207:1 14229:2 14231:2 14252:1 14262:1 14279:1 14300:2 14317:1 14329:1 14332:2 14334:1 14365:1 14366:3 14371:2 14382:3 14386:1 14391:2 14395:1 14403:1 14404:1 14417:1 14422:1 14434:1 14443:1 14465:1 14476:3 14477:2 14496:7 14513:1 14516:4 14522:1 14549:1 14576:1 14577:1 14582:1 14622:1 14630:1 14635:1 14648:1 14649:1 14650:1 14657:1 14665:2 14672:1 14677:5 14678:1 14696:1 14711:1 14719:1 14727:1 14740:3 14744:1 14747:1 14762:1 14763:1 14764:1 14774:1 14776:1 14785:2 14802:1 14804:1 14807:1 14810:1 14837:2 14844:1 14849:2 14851:1 14864:1 14871:1 14877:1 14885:3 14934:1 14946:1 14956:1 14962:1 14976:1 14981:1 14987:1 14991:1 15035:1 15080:1 15105:2 15111:1 15123:1 15134:7 15135:1 15137:1 15142:1 15160:1 15169:1 15171:2 15183:1 15184:3 15197:1 15201:1 15205:7 15233:1 15240:1 15251:1 15269:3 15282:2 15283:1 15287:1 15307:16 15312:1 15344:1 15354:2 15360:1 15396:3 15405:3 15444:1 15445:2 15452:1 15460:2 15480:891 15492:2 15496:1 15556:1 15570:1 15574:1 15591:1 15595:1 15610:2 15617:2 15625:1 15638:1 15642:2 15646:1 15647:1 15649:3 15652:1 15655:3 15658:1 15661:1 15662:3 15723:1 15738:1 15742:2 15743:1 15763:1 15776:7 15814:1 15816:2 15929:2 15935:1 15943:1 15949:3 15955:1 15997:3 16036:1 16042:4 16051:1 16054:2 16074:1 16102:1 16115:4 16118:1 16121:6 16151:1 16152:1 16154:4 16171:1 16206:1 16228:1 16254:1 16262:3 16273:2 16302:1 16306:2 16310:1 16313:1 16341:1 16370:1 16387:4 16409:3 16426:1 16438:1 16474:1 16479:1 16484:2 16485:1 16488:1 16495:1 16500:2 16503:1 16548:1 16577:1 16593:2 16603:1 16630:3 16654:2 16659:1 16670:1 16679:1 16681:4 16693:1 16718:1 16726:2 16727:1 16732:1 16735:1 16744:1 16753:1 16754:1 16761:1 16763:1 16780:1 16787:1 16809:1 16815:4 16853:1 16855:2 16861:3 16862:1 16867:1 16871:1 16875:1 16882:1 16895:1 16897:1 16921:4 16970:1 16971:1 16975:1 17048:1 17057:1 17066:1 17085:2 17113:1 17136:1 17175:1 17185:1 17188:1 17237:4 17248:1 17275:5 17276:1 17311:3 17316:2 17320:1 17331:1 17346:1 17362:5 17366:2 17367:1 17387:3 17403:1 17404:1 17424:2 17485:1 17491:1 17499:1 17520:1 17553:1 17569:1 17580:1 17602:1 17605:1 17616:2 17623:1 17631:1 17660:1 17678:4 17712:1 17725:1 17768:1 17772:1 17792:1 17822:1 17827:1 17834:2 17839:1 17855:4 17865:1 17890:1 17908:1 17910:1 17916:7 17919:1 17924:1 17927:1 17943:2 17955:1 17958:4 17962:1 17980:1 17983:1 17995:1 18009:3 18016:1 18025:2 18028:1 18035:1 18038:1 18041:1 18043:3 18053:2 18058:1 18064:1 18069:1 18079:1 18092:1 18093:3 18116:1 18130:1 18146:1 18166:2 18168:2 18174:1 18181:1 18197:1 18210:1 18248:1 18266:1 18366:1 18369:1 18370:2 18375:2 18378:1 18406:1 18410:1 18414:1 18436:1 18454:1 18478:1 18485:1 18491:1 18498:1 18511:2 18523:1 18568:1 18578:1 18587:1 18654:1 18664:1 18665:1 18674:1 18702:2 18704:1 18727:2 18732:6 18742:1 18748:1 18792:2 18816:1 18856:5 18857:1 18862:5 18880:1 18881:2 18882:1 18884:1 18901:2 18929:1 18931:1 18941:4 19024:1 19033:3 19059:1 19060:2 19080:1 19098:3 19108:3 19126:1 19172:1 19193:1 19205:3 19207:2 19210:3 19226:2 19230:1 19275:2 19292:5 19293:1 19294:1 19302:1 19303:1 19322:1 19328:1 19335:1 19337:5 19339:1 19365:1 19392:1 19395:2 19422:1 19438:1 19440:1 19443:1 19471:2 19475:1 19487:4 19507:1 19544:1 19559:3 19561:1 19562:1 19564:1 19586:1 19603:1 19612:1 19644:1 19683:1 19706:1 19716:1 19762:5 19767:1 19773:1 19792:1 19804:1 19805:1 19810:3 19837:1 19847:1 19902:1 19912:1 19962:1 19966:1 20015:1 20040:1 20084:3 20096:2 20109:1 20118:1 20138:1 20165:1 20208:1 20223:1 20224:1 20226:1 20239:1 20251:1 20258:2 20266:1 20267:1 20270:2 20275:1 20278:1 20304:1 20316:1 20317:1 20318:6 20326:1 20327:1 20331:3 20332:2 20334:2 20337:1 20338:1 20341:1 20343:2 20344:3 20371:1 20378:3 20383:3 20398:4 20399:1 20406:1 20411:1 20413:1 20435:1 20441:1 20442:6 20447:5 20448:1 20464:1 20469:1 20470:1 20502:1 20512:1 20529:1 20560:1 20576:3 20595:1 20619:1 20621:1 20627:1 20631:4 20659:1 20668:4 20727:1 20733:1 20738:2 20742:5 20761:4 20785:7 20829:4 20853:1 20871:1 20872:1 20887:1 20949:3 20962:2 20973:2 20995:1 21012:1 21056:1 21065:2 21089:1 21100:1 21108:4 21111:1 21112:1 21123:1 21139:1 21146:1 21150:4 21173:1 21198:2 21199:3 21208:2 21209:2 21218:1 21219:1 21224:1 21225:2 21249:1 21293:2 21337:2 21350:1 21473:1 21480:1 21485:1 21529:2 21539:3 21557:4 21561:2 21582:1 21586:1 21588:1 21602:2 21610:7 21613:1 21627:1 21630:1 21642:1 21650:1 21684:1 21741:1 21760:16 21773:4 21774:1 21782:3 21783:1 21784:1 21787:1 21812:1 21830:1 21831:1 21838:1 21844:1 21856:1 21878:1 21904:1 21914:1 21916:5 21926:1 21995:1 21996:1 21997:1 21998:1 22007:1 22024:1 22027:2 22037:1 22048:3 22080:1 22109:1 22119:1 22163:5 22179:1 22208:1 22218:1 22223:1 22229:1 22245:1 22247:1 22256:1 22263:1 22279:1 22281:1 22315:1 22331:5 22360:1 22410:1 22415:1 22417:1 22431:1 22434:2 22465:1 22466:1 22472:1 22491:1 22493:1 22504:1 22513:1 22517:1 22520:4 22534:1 22548:1 22551:3 22561:1 22585:1 22601:1 22611:2 22617:1 22646:1 22647:1 22655:1 22669:3 22690:4 22699:4 22707:1 22715:1 22730:1 22734:1 22736:1 22749:1 22755:4 22756:1 22760:2 22786:2 22787:1 22795:2 22802:1 22803:4 22809:1 22812:1 22815:1 22820:1 22822:1 22828:1 22846:1 22864:1 22865:1 22874:2 22895:1 22937:1 22942:1 22982:1 23000:1 23001:1 23011:1 23027:2 23039:1 23075:1 23076:1 23084:1 23089:5 23109:3 23151:1 23167:1 23188:1 23237:1 23248:1 23264:1 23284:2 23295:1 23298:2 23300:1 23305:1 23314:1 23333:1 23349:1 23384:2 23385:1 23392:1 23393:2 23404:3 23413:1 23424:1 23430:15 23431:1 23433:1 23466:3 23491:1 23521:1 23524:1 23551:2 23558:1 23586:3 23588:1 23603:3 23610:2 23616:1 23626:4 23646:1 23647:2 23655:2 23659:2 23685:1 23703:1 23712:1 23713:1 23720:1 23733:1 23736:1 23739:1 23767:1 23768:1 23775:4 23777:2 23797:1 23835:4 23836:1 23858:2 23862:1 23866:4 23891:1 23923:1 23940:1 23971:2 23993:1 24039:2 24081:1 24096:1 24100:1 24126:2 24128:1 24129:1 24137:1 24143:1 24168:1 24170:4 24179:1 24251:1 24265:1 24266:5 24271:1 24286:1 24296:1 24307:1 24370:1 24373:1 24385:1 24394:1 24401:3 24411:1 24476:2 24477:1 24482:1 24503:3 24525:1 24530:1 24536:2 24538:1 24568:1
14 56:1 59:1 71:1 96:1 146:1 163:1 185:4 186:6 188:1 197:1 204:1 216:1 219:1 223:1 224:1 230:1 239:1 254:3 265:1 295:1 296:2 314:1 318:1 320:2 323:1 336:1 346:1 379:1 407:1 450:1 457:3 501:1 524:1 525:1 527:4 541:1 565:1 592:2 699:1 704:2 713:1 732:1 748:1 759:1 764:2 802:1 814:2 831:2 834:1 851:3 869:1 875:1 881:1 888:1 889:1 895:1 909:1 911:1 914:1 922:1 946:1 949:1 1009:1 1011:1 1021:1 1023:2 1044:1 1046:2 1048:1 1051:3 1055:1 1059:2 1114:1 1125:1 1127:1 1153:1 1155:1 1171:3 1172:1 1217:1 1220:4 1226:1 1229:1 1259:3 1264:3 1285:1 1293:1 1297:1 1299:1 1301:1 1321:1 1332:2 1369:1 1381:2 1398:1 1401:4 1405:1 1413:1 1425:1 1452:1 1507:5 1510:1 1517:4 1526:1 1545:2 1564:5 1589:1 1591:3 1603:1 1616:1 1617:3 1627:1 1628:1 1659:1 1701:1 1710:1 1731:2 1737:1 1754:1 1759:1 1766:4 1781:1 1809:3 1818:1 1834:1 1838:2 1842:1 1879:1 1880:1 1882:2 1883:2 1885:1 1888:1 1891:1 1908:1 1910:2 1912:3 1938:1 1945:3 1954:4 1955:1 1963:1 1968:3 1970:1 1973:1 1976:2 1991:1 2015:1 2028:1 2040:1 2049:1 2053:1 2061:1 2065:1 2076:1 2077:1 2128:1 2131:1 2134:1 2149:1 2157:1 2164:1 2172:1 2178:1 2183:2 2193:1 2198:1 2226:2 2229:1 2234:1 2274:1 2275:1 2277:1 2286:1 2295:1 2303:1 2321:2 2325:1 2366:2 2383:3 2389:1 2390:2 2394:1 2419:1 2425:1 2426:1 2448:1 2451:1 2462:20 2464:1 2480:2 2486:1 2504:1 2507:7 2513:1 2519:4 2530:1 2565:3 2587:1 2597:1 2627:2 2638:1 2704:1 2709:1 2731:1 2736:1 2742:2 2785:1 2798:2 2801:1 2802:4 2844:1 2848:2 2849:1 2854:1 2886:3 2901:1 2980:1 3002:1 3003:1 3020:2 3027:1 3049:2 3060:1 3061:1 3072:1 3077:4 3090:1 3131:1 3132:1 3133:1 3147:2 3153:1 3173:1 3179:1 3184:4 3204:1 3206:1 3213:1 3221:3 3225:1 3234:5 3245:1 3297:2 3304:1 3312:1 3324:1 3326:1 3328:1 3332:1 3351:1 3369:1 3372:1 3375:1 3407:1 3408:2 3414:1 3462:1 3494:1 3499:1 3518:1 3522:1 3562:1 3572:1 3581:1 3598:1 3606:1 3612:1 3615:1 3618:2 3641:8 3649:1 3660:1 3678:1 3679:1 3735:1 3774:1 3776:1 3786:1 3804:1 3837:1 3841:1 3878:1 3886:3 3889:1 3909:2 3938:2 3964:1 3966:1 3967:1 3976:1 3984:1 3995:4 3998:4 4005:2 4012:1 4046:1 4061:1 4062:2 4083:1 4093:1 4102:1 4107:12 4109:1 4136:2 4154:1 4183:1 4190:1 4198:4 4211:1 4212:3 4213:1 4218:1 4229:1 4236:2 4237:1 4238:1 4244:2 4268:1 4325:1 4340:1 4353:1 4354:1 4368:1 4371:1 4375:5 4376:1 4399:1 4400:1 4413:1 4423:1 4497:1 4498:1 4512:1 4518:1 4519:3 4539:1 4551:1 4572:1 4586:1 4599:1 4609:1 4622:1 4667:1 4668:1 4683:2 4684:1 4710:1 4784:1 4792:1 4796:2 4820:1 4821:1 4832:1 4853:1 4876:2 4889:2 4894:1 4901:1 5000:1 5016:1 5044:1 5049:2 5071:2 5088:1 5093:1 5095:1 5100:1 5192:1 5224:1 5247:1 5248:1 5254:1 5258:1 5283:1 5308:2 5313:1 5322:4 5325:3 5326:1 5332:1 5337:2 5338:1 5342:1 5347:4 5349:5 5350:1 5352:1 5354:3 5451:6 5492:1 5500:1 5520:1 5529:1 5530:1 5533:2 5534:1 5535:1 5585:1 5595:1 5599:2 5604:1 5610:1 5674:1 5683:1 5686:2 5688:1 5702:6 5711:1 5721:1 5726:1 5730:1 5746:2 5783:1 5788:2 5807:1 5813:2 5828:1 5865:3 5874:2 5878:1 5900:1 5931:1 5939:1 5947:3 5948:1 5968:1 5998:1 6005:2 6047:1 6050:1 6056:1 6087:1 6112:1 6116:1 6126:1 6131:1 6139:2 6183:4 6194:1 6235:1 6237:2 6289:1 6293:1 6311:3 6364:2 6365:3 6378:1 6381:1 6382:1 6386:1 6405:1 6407:1 6409:1 6410:1 6416:1 6429:17 6434:1 6448:1 6449:1 6451:4 6459:2 6468:1 6491:1 6492:1 6493:1 6526:2 6554:1 6560:1 6578:1 6619:2 6661:2 6667:1 6669:1 6675:1 6707:1 6716:1 6723:2 6789:1 6794:1 6796:2 6804:1 6810:2 6824:1 6839:1 6854:4 6859:5 6908:1 6920:1 6937:1 6981:2 7016:1 7021:1 7027:1 7045:1 7054:1 7059:2 7068:4 7096:1 7097:1 7116:1 7122:1 7137:1 7157:1 7165:1 7166:1 7169:3 7170:1 7177:1 7178:2 7179:1 7181:1 7194:1 7199:1 7202:1 7215:1 7216:1 7221:1 7235:1 7246:2 7285:7 7322:1 7360:1 7361:1 7379:1 7391:2 7400:8 7409:1 7414:1 7430:1 7443:1 7450:2 7456:3 7457:4 7459:2 7460:1 7461:1 7464:1 7465:2 7499:1 7510:1 7527:1 7571:3 7572:1 7581:5 7589:1 7614:1 7615:1 7622:1 7626:1 7638:1 7648:2 7656:1 7702:1 7712:2 7741:1 7753:1 7754:1 7761:1 7768:1 7773:7 7782:1 7787:1 7799:1 7803:1 7810:1 7820:1 7860:1 7868:2 7905:1 7908:1 7912:1 7929:1 7930:1 7950:1 7972:1 7988:2 8002:1 8005:1 8049:1 8065:4 8070:5 8081:4 8082:2 8099:3 8162:4 8171:1 8175:1 8176:2 8195:1 8206:5 8207:1 8229:2 8234:6 8249:2 8279:1 8282:1 8284:1 8285:4 8296:1 8304:1 8311:1 8317:1 8328:3 8352:3 8355:1 8357:1 8383:1 8387:2 8428:1 8443:2 8469:3 8508:1 8567:1 8568:2 8574:1 8582:1 8583:1 8593:1 8597:1 8598:5 8603:1 8614:1 8623:1 8656:1 8657:1 8672:1 8681:1 8690:1 8692:1 8702:2 8714:3 8726:1 8727:2 8753:2 8759:6 8761:1 8782:2 8783:1 8800:1 8802:3 8809:4 8812:1 8814:5 8831:2 8832:3 8833:1 8836:1 8878:1 8891:4 8900:2 8901:1 8911:1 8916:1 8944:1 8968:1 8979:1 8993:1 8996:1 8998:1 9000:1 9002:3 9022:1 9062:2 9067:1 9101:4 9102:4 9120:1 9138:1 9142:2 9166:1 9173:1 9181:1 9185:1 9222:1 9240:2 9252:5 9336:1 9346:1 9363:1 9377:1 9400:1 9419:1 9440:2 9441:1 9455:5 9462:2 9466:1 9488:3 9495:1 9497:1 9532:7 9550:2 9562:2 9563:1 9575:1 9599:1 9607:1 9619:1 9622:1 9682:2 9683:1 9688:2 9690:1 9691:1 9700:1 9710:2 9716:2 9723:2 9743:1 9772:1 9810:1 9818:1 9823:2 9824:1 9859:1 9867:1 9877:1 9878:1 9881:1 9890:1 9918:1 9922:1 9924:1 9949:1 9963:1 10022:3 10040:1 10045:1 10052:2 10053:2 10054:2 10090:5 10169:3 10176:1 10204:1 10211:1 10218:2 10232:1 10316:1 10318:2 10324:1 10369:1 10384:4 10457:1 10465:1 10480:16 10503:1 10531:2 10537:1 10551:1 10576:1 10598:2 10648:1 10651:3 10659:1 10707:1 10719:1 10722:1 10758:1 10818:1 10823:2 10843:1 10847:6 10851:2 10871:2 10879:1 10892:1 10897:1 10898:1 10912:1 10951:1 10961:1 10962:1 10970:1 10974:4 10981:1 10985:1 10987:1 11013:1 11016:1 11046:1 11047:4 11056:1 11062:1 11103:3 11118:1 11126:1 11159:2 11163:1 11186:1 11187:1 11215:5 11223:1 11273:3 11284:1 11286:1 11297:1 11301:1 11325:2 11337:1 11341:1 11352:1 11353:1 11368:1 11375:1 11400:1 11405:1 11408:1 11415:1 11430:4 11447:1 11449:1 11451:2 11459:1 11463:1 11486:1 11526:1 11584:2 11607:1 11638:1 11643:1 11708:2 11712:2 11739:2 11790:1 11792:1 11812:2 11813:1 11818:1 11833:1 11853:1 11864:1 11874:1 11900:1 11906:2 11932:1 11937:1 11976:1 11979:1 11990:1 11992:1 12078:1 12099:3 12114:1 12115:1 12126:1 12144:2 12182:1 12184:1 12218:1 12229:1 12245:1 12276:2 12289:1 12338:1 12346:4 12364:2 12365:1 12372:1 12381:4 12387:1 12396:1 12416:1 12444:1 12486:1 12488:2 12491:1 12556:2 12575:1 12582:1 12583:1 12614:4 12623:1 12652:1 12662:2 12685:1 12723:1 12739:1 12740:1 12741:4 12748:1 12754:1 12797:3 12798:1 12800:3 12801:1 12839:1 12842:1 12843:1 12846:1 12881:1 12930:1 12943:1 12945:2 12950:1 12961:1 12988:2 12989:1 13014:1 13025:1 13032:1 13033:1 13058:1 13104:3 13153:5 13156:1 13181:1 13205:1 13207:1 13225:3 13238:1 13259:1 13288:1 13295:1 13304:1 13311:1 13328:4 13336:1 13362:1 13406:1 13428:1 13437:1 13445:2 13449:1 13452:1 13453:1 13462:1 13470:1 13471:1 13482:1 13489:3 13502:1 13505:2 13525:1 13561:1 13620:1 13637:1 13647:3 13662:2 13664:2 13680:1 13682:1 13688:1 13719:1 13729:1 13733:2 13760:1 13765:2 13766:1 13803:4 13819:7 13835:4 13857:1 13865:1 13888:1 13895:2 13908:1 13926:1 13928:2 13929:1 13931:1 13936:1 13947:1 13970:1 13979:1 13986:1 13989:3 13994:1 13995:1 13996:2 14000:1 14030:1 14031:1 14035:1 14051:4 14071:2 14073:1 14077:1 14088:1 14097:1 14127:2 14130:1 14178:5 14204:2 14207:1 14229:2 14231:2 14252:1 14262:1 14279:1 14300:2 14317:1 14329:1 14332:2 14334:1 14341:1 14365:1 14366:3 14371:2 14382:3 14386:1 14391:2 14395:1 14403:1 14404:1 14417:1 14422:2 14434:1 14443:1 14465:1 14476:3 14477:2 14496:7 14513:1 14516:4 14522:1 14541:1 14549:1 14556:1 14576:1 14577:1 14582:1 14622:1 14630:3 14635:1 14648:1 14649:1 14650:1 14654:1 14657:1 14665:2 14672:1 14677:5 14678:2 14696:1 14711:1 14719:1 14727:1 14740:3 14744:1 14747:2 14762:1 14763:1 14764:1 14774:1 14776:1 14785:2 14802:1 14804:1 14807:1 14810:1 14837:3 14844:1 14849:2 14851:1 14864:1 14871:1 14877:1 14885:3 14934:1 14946:1 14956:1 14962:1 14976:1 14981:1 14987:1 14991:1 15035:1 15080:2 15105:2 15111:1 15123:1 15134:7 15135:1 15137:1 15142:1 15160:1 15169:1 15171:2 15183:1 15184:3 15197:1 15201:1 15205:7 15233:1 15240:1 15251:1 15269:3 15282:2 15283:1 15287:1 15307:16 15312:1 15344:1 15354:2 15360:1 15396:3 15405:3 15444:1 15445:2 15452:1 15460:2 15480:943 15492:2 15496:1 15556:1 15570:1 15574:1 15591:1 15595:1 15610:2 15617:2 15625:1 15638:1 15642:2 15646:1 15647:1 15649:3 15652:1 15655:3 15658:1 15661:1 15662:3 15723:1 15738:1 15742:2 15743:1 15763:1 15776:8 15814:1 15816:2 15929:2 15935:1 15943:1 15949:3 15955:1 15997:3 16008:1 16036:1 16042:4 16051:1 16054:2 16074:1 16102:1 16115:4 16118:1 16121:8 16151:1 16152:1 16154:4 16171:1 16206:1 16228:1 16254:1 16262:3 16273:2 16302:1 16306:2 16310:1 16313:1 16318:1 16341:1 16370:1 16387:4 16409:3 16426:1 16438:1 16474:1 16479:1 16484:3 16485:1 16488:1 16495:1 16500:2 16503:1 16548:1 16577:1 16593:2 16603:1 16630:3 16654:2 16659:1 16670:1 16679:1 16681:4 16693:1 16718:1 16726:2 16727:1 16732:1 16735:1 16744:1 16753:1 16754:1 16761:1 16763:1 16778:1 16780:1 16787:1 16809:1 16815:4 16853:1 16855:2 16861:3 16862:2 16867:1 16871:1 16875:1 16882:1 16895:1 16897:1 16921:4 16970:1 16971:1 16975:1 17048:1 17057:2 17066:1 17085:2 17113:1 17136:1 17175:1 17181:1 17185:1 17188:1 17237:4 17248:1 17275:5 17276:1 17311:3 17316:2 17320:1 17331:1 17346:1 17362:5 17366:2 17367:1 17387:4 17403:1 17404:1 17424:2 17485:1 17491:1 17499:1 17520:1 17553:1 17569:1 17580:1 17602:1 17605:1 17616:2 17623:1 17631:1 17660:1 17678:4 17712:1 17725:1 17768:1 17772:1 17774:1 17792:1 17822:1 17827:1 17834:2 17839:1 17855:4 17865:1 17890:1 17908:1 17910:1 17916:7 17919:1 17924:1 17927:1 17943:2 17955:3 17958:4 17962:1 17979:1 17980:1 17983:1 17995:1 18009:3 18016:1 18025:2 18028:1 18035:1 18038:1 18041:1 18043:3 18053:2 18058:1 18064:1 18069:1 18079:1 18092:1 18093:3 18116:1 18130:1 18146:1 18166:2 18168:2 18174:1 18181:1 18197:1 18210:1 18248:1 18266:1 18366:1 18369:1 18370:2 18375:2 18378:1 18406:1 18410:1 18414:1 18436:1 18454:1 18474:1 18478:1 18485:1 18491:1 18498:1 18511:2 18523:1 18568:1 18578:1 18587:1 18616:1 18654:1 18664:1 18665:1 18674:1 18702:2 18704:1 18727:2 18732:6 18742:1 18748:1 18792:3 18816:1 18856:5 18857:1 18862:5 18880:1 18881:2 18882:1 18884:1 18901:2 18929:1 18931:1 18941:4 19024:1 19033:4 19059:1 19060:2 19080:1 19098:3 19108:3 19126:1 19153:1 19172:1 19193:1 19205:3 19207:2 19210:3 19226:2 19230:1 19250:1 19275:2 19292:6 19293:1 19294:1 19302:1 19303:1 19322:1 19328:1 19335:1 19337:5 19339:1 19365:1 19392:1 19395:2 19422:1 19438:1 19440:1 19443:2 19471:3 19475:1 19487:4 19507:1 19544:1 19559:3 19561:1 19562:1 19564:1 19586:1 19603:1 19612:1 19644:1 19683:1 19706:1 19716:1 19762:5 19767:1 19773:1 19792:1 19804:1 19805:1 19810:3 19837:1 19847:1 19902:1 19912:1 19962:1 19966:1 20015:1 20040:1 20084:3 20096:2 20109:1 20118:1 20138:1 20165:1 20208:1 20223:1 20224:1 20226:1 20239:1 20251:1 20258:2 20266:1 20267:1 20270:2 20275:1 20278:1 20304:1 20316:1 20317:1 20318:6 20326:1 20327:2 20331:3 20332:2 20334:2 20337:1 20338:1 20341:1 20343:2 20344:3 20353:1 20371:1 20378:3 20383:3 20398:4 20399:1 20406:1 20411:1 20413:1 20435:1 20441:1 20442:6 20447:5 20448:1 20464:1 20469:1 20470:1 20502:1 20512:1 20529:1 20560:1 20576:3 20595:1 20619:1 20621:1 20627:1 20631:4 20659:1 20668:4 20727:1 20733:1 20738:3 20742:5 20761:4 20785:7 20818:1 20829:4 20853:1 20871:1 20872:1 20887:1 20949:3 20962:2 20973:2 20995:1 21012:1 21021:1 21056:1 21065:2 21089:1 21100:1 21108:4 21111:1 21112:1 21123:1 21139:1 21146:1 21150:4 21173:1 21198:2 21199:3 21208:2 21209:2 21218:1 21219:1 21224:1 21225:2 21249:1 21293:2 21337:3 21350:1 21473:1 21480:1 21485:1 21529:2 21539:3 21557:5 21561:2 21582:1 21586:1 21588:1 21602:2 21610:7 21613:1 21627:1 21630:1 21642:1 21650:1 21684:1 21741:1 21760:16 21773:4 21774:1 21782:3 21783:1 21784:1 21787:1 21812:1 21830:1 21831:1 21838:1 21844:1 21856:1 21878:1 21887:1 21904:1 21914:1 21916:5 21926:1 21995:1 21996:1 21997:1 21998:1 22007:1 22010:1 22024:1 22027:2 22037:1 22048:3 22080:1 22109:1 22119:1 22163:5 22179:1 22208:1 22218:1 22223:2 22229:1 22245:1 22247:1 22256:1 22263:1 22279:1 22281:1 22315:1 22331:5 22360:1 22410:1 22415:1 22417:1 22431:1 22434:2 22465:1 22466:1 22472:1 22481:1 22491:1 22493:1 22504:1 22513:1 22517:1 22520:4 22534:1 22548:1 22551:4 22561:1 22585:1 22601:1 22611:2 22617:1 22646:1 22647:1 22655:1 22669:3 22690:4 22699:4 22707:1 22715:1 22730:1 22734:1 22736:1 22749:2 22755:4 22756:1 22760:2 22786:3 22787:1 22795:2 22802:1 22803:4 22809:1 22812:1 22815:1 22820:1 22822:1 22828:1 22846:1 22864:1 22865:1 22866:1 22874:2 22895:1 22905:1 22937:1 22942:1 22982:1 23000:1 23001:1 23011:1 23027:2 23039:1 23075:1 23076:1 23084:1 23089:5 23109:3 23151:1 23167:1 23175:1 23188:1 23237:1 23248:1 23256:1 23264:1 23284:2 23293:1 23295:1 23298:2 23300:1 23305:1 23314:1 23333:1 23349:1 23384:2 23385:1 23392:1 23393:2 23404:4 23413:1 23424:1 23430:15 23431:1 23433:1 23466:4 23491:1 23521:1 23524:1 23551:2 23558:1 23586:3 23588:1 23592:1 23603:3 23610:2 23616:1 23626:4 23646:1 23647:3 23655:2 23659:2 23685:1 23703:1 23712:1 23713:1 23720:1 23733:1 23736:1 23739:1 23767:1 23768:1 23775:4 23777:2 23797:1 23835:4 23836:1 23858:2 23862:1 23866:4 23891:1 23923:1 23940:2 23971:2 23974:1 23993:1 24004:1 24039:2 24081:1 24096:1 24100:1 24126:2 24128:1 24129:1 24137:1 24143:1 24164:1 24168:1 24170:4 24179:1 24251:1 24265:1 24266:5 24271:1 24286:1 24296:1 24307:1 24350:1 24370:1 24373:1 24385:1 24394:1 24401:4 24411:1 24476:2 24477:1 24482:1 24483:1 24503:3 24525:1 24530:1 24536:2 24538:1 24568:1
14 30:1 56:1 59:1 71:1 75:1 96:1 146:1 163:1 185:4 186:6 188:1 197:1 204:1 216:1 219:1 223:1 224:1 230:1 239:1 254:3 265:1 295:1 296:3 314:1 318:2 320:2 323:1 336:1 346:1 379:1 407:1 450:1 457:4 501:1 524:1 525:1 527:4 541:1 565:1 592:2 607:1 699:1 704:2 713:1 732:1 748:1 759:2 764:2 802:1 814:2 831:2 834:2 851:3 869:2 875:1 881:1 888:1 889:1 895:1 909:1 911:1 914:1 922:1 946:1 949:1 1009:1 1011:2 1021:1 1023:2 1044:1 1046:2 1048:1 1051:3 1055:1 1059:2 1094:1 1114:1 1125:1 1127:1 1153:2 1155:1 1171:3 1172:1 1217:1 1220:4 1226:1 1229:1 1259:3 1264:3 1285:1 1293:1 1297:1 1299:1 1301:1 1321:1 1332:2 1369:1 1381:2 1398:1 1401:4 1405:1 1413:1 1425:1 1452:1 1507:5 1510:1 1517:4 1526:1 1545:2 1564:5 1589:1 1591:3 1603:1 1616:1 1617:3 1627:1 1628:1 1659:1 1683:1 1701:1 1710:1 1731:3 1737:1 1754:1 1759:1 1766:4 1781:1 1809:3 1818:1 1834:1 1838:2 1842:1 1856:1 1879:1 1880:1 1882:2 1883:2 1885:1 1888:1 1891:1 1908:1 1910:2 1912:3 1938:2 1945:4 1954:4 1955:1 1957:1 1963:1 1965:1 1968:3 1970:1 1973:1 1976:3 1991:1 2015:1 2028:1 2040:1 2049:1 2053:1 2061:1 2065:1 2076:1 2077:1 2128:1 2131:1 2134:1 2149:1 2157:1 2164:1 2172:1 2178:1 2183:2 2193:1 2198:1 2226:2 2229:1 2234:1 2274:1 2275:1 2277:1 2286:2 2295:1 2303:1 2321:2 2325:1 2366:2 2383:3 2389:1 2390:2 2394:1 2419:1 2425:1 2426:1 2448:1 2451:1 2462:21 2464:1 2480:2 2486:1 2504:1 2507:7 2513:1 2519:5 2530:1 2565:3 2587:1 2597:2 2627:2 2638:1 2704:1 2709:1 2731:1 2736:1 2742:2 2785:1 2798:2 2801:1 2802:5 2844:1 2848:2 2849:1 2854:1 2886:3 2901:1 2979:1 2980:1 3002:1 3003:1 3020:3 3027:1 3041:1 3049:2 3060:1 3061:1 3072:1 3077:5 3090:1 3131:1 3132:1 3133:1 3147:2 3153:1 3173:1 3179:1 3184:4 3204:1 3206:1 3213:1 3221:3 3225:1 3234:5 3245:1 3297:2 3304:1 3312:1 3324:1 3326:1 3328:1 3332:1 3351:1 3369:1 3372:1 3375:1 3407:1 3408:2 3414:1 3462:1 3494:1 3499:1 3518:1 3522:1 3562:1 3572:1 3581:2 3598:1 3606:1 3612:1 3615:1 3618:2 3641:9 3649:1 3660:1 3678:1 3679:1 3707:1 3735:1 3774:1 3776:1 3786:1 3804:1 3837:1 3841:1 3878:1 3886:3 3889:1 3909:2 3938:4 3964:1 3966:1 3967:1 3976:1 3984:1 3995:4 3998:4 4005:2 4012:1 4046:1 4061:1 4062:2 4083:1 4093:1 4102:1 4107:12 4109:1 4136:2 4154:1 4183:1 4190:1 4198:5 4211:1 4212:3 4213:1 4218:1 4229:1 4236:2 4237:1 4238:1 4244:2 4268:1 4325:1 4340:1 4353:1 4354:1 4368:1 4371:1 4375:5 4376:1 4399:1 4400:1 4413:1 4423:1 4497:1 4498:1 4512:1 4518:1 4519:3 4539:1 4541:1 4551:1 4572:1 4586:1 4599:1 4609:1 4621:1 4622:1 4667:1 4668:1 4683:2 4684:1 4710:1 4734:1 4784:1 4792:1 4796:2 4820:1 4821:1 4832:1 4853:1 4876:2 4889:2 4894:1 4901:1 5000:1 5016:1 5044:1 5049:2 5071:2 5088:1 5093:1 5095:1 5100:1 5192:1 5224:1 5247:1 5248:1 5253:1 5254:1 5258:1 5283:1 5308:2 5313:1 5322:4 5325:3 5326:1 5332:2 5337:2 5338:1 5342:1 5347:4 5349:5 5350:1 5352:3 5354:3 5451:7 5492:1 5500:1 5520:1 5529:1 5530:1 5533:2 5534:1 5535:1 5585:1 5595:1 5599:3 5604:1 5610:1 5674:1 5683:1 5686:2 5688:1 5702:6 5711:1 5721:1 5726:1 5730:1 5746:2 5783:1 5788:2 5807:1 5813:2 5828:1 5865:3 5874:2 5878:1 5900:1 5931:1 5939:1 5947:3 5948:1 5952:1 5968:1 5998:1 6005:2 6042:1 6047:1 6050:1 6056:1 6087:1 6112:1 6116:1 6126:1 6131:1 6139:2 6183:4 6194:1 6235:1 6237:2 6289:1 6293:1 6311:3 6364:2 6365:3 6378:1 6381:1 6382:1 6386:2 6405:1 6407:1 6409:1 6410:1 6416:1 6429:21 6434:1 6448:1 6449:1 6451:4 6459:3 6468:1 6491:1 6492:1 6493:1 6526:3 6532:1 6554:1 6560:1 6578:1 6619:2 6661:2 6667:1 6669:1 6675:1 6707:1 6716:1 6723:2 6781:1 6789:1 6794:1 6796:2 6804:1 6810:2 6824:1 6839:1 6847:1 6854:4 6859:6 6908:1 6920:1 6937:1 6981:2 7016:1 7021:1 7027:1 7045:1 7054:1 7059:2 7068:4 7096:1 7097:1 7116:1 7122:1 7137:1 7157:1 7165:1 7166:1 7169:3 7170:1 7177:1 7178:2 7179:1 7181:1 7194:1 7199:1 7202:1 7215:1 7216:1 7221:1 7235:1 7246:2 7285:8 7322:1 7360:1 7361:1 7379:1 7391:2 7400:8 7402:1 7409:1 7414:1 7430:1 7443:1 7450:2 7456:3 7457:4 7459:2 7460:1 7461:1 7464:1 7465:2 7499:1 7510:1 7527:1 7571:4 7572:1 7581:5 7589:1 7614:1 7615:1 7622:1 7626:1 7638:1 7648:2 7656:1 7702:1 7712:2 7741:1 7753:2 7754:1 7761:1 7768:1 7773:8 7782:1 7787:1 7799:1 7803:1 7804:1 7810:1 7820:1 7860:1 7868:2 7905:1 7908:1 7912:1 7929:1 7930:1 7950:1 7972:1 7979:1 7988:3 8002:1 8005:1 8049:1 8065:6 8070:5 8081:5 8082:3 8099:4 8162:4 8171:1 8175:1 8176:3 8195:1 8206:5 8207:1 8229:2 8234:7 8249:2 8279:1 8282:1 8284:1 8285:4 8296:1 8304:1 8311:1 8317:1 8328:3 8352:3 8355:1 8357:1 8383:1 8387:2 8428:1 8433:1 8443:2 8469:3 8508:1 8567:1 8568:2 8574:1 8582:1 8583:1 8593:1 8597:1 8598:5 8603:1 8614:1 8623:1 8656:1 8657:1 8672:1 8681:1 8690:1 8692:1 8702:2 8714:3 8726:1 8727:2 8736:1 8753:2 8759:6 8761:1 8782:2 8783:1 8800:1 8802:3 8809:4 8812:1 8814:5 8831:2 8832:3 8833:3 8836:1 8878:1 8891:4 8900:2 8901:1 8911:1 8916:1 8944:1 8968:1 8979:1 8993:1 8996:1 8998:2 9000:1 9002:3 9022:1 9038:1 9062:2 9063:1 9067:1 9101:4 9102:5 9120:2 9127:1 9138:1 9142:2 9166:1 9173:1 9181:1 9185:1 9222:1 9240:2 9252:5 9336:1 9346:1 9363:1 9377:1 9400:1 9403:1 9419:1 9440:2 9441:1 9455:5 9462:2 9466:1 9488:3 9495:1 9497:1 9532:8 9550:2 9562:2 9563:1 9575:1 9599:1 9607:1 9619:1 9622:1 9682:2 9683:1 9688:2 9690:1 9691:1 9700:1 9710:2 9716:2 9723:2 9729:1 9743:1 9772:1 9810:1 9818:1 9823:2 9824:1 9850:1 9859:1 9867:1 9877:1 9878:1 9881:1 9890:1 9918:1 9922:1 9924:1 9949:1 9963:1 10022:3 10040:1 10042:1 10045:1 10052:2 10053:2 10054:2 10090:5 10169:3 10176:1 10204:1 10211:1 10218:2 10232:1 10316:1 10318:2 10324:1 10369:1 10384:4 10457:1 10465:1 10480:18 10502:1 10503:1 10531:2 10537:1 10551:1 10576:1 10598:2 10648:1 10651:3 10659:1 10707:1 10719:1 10722:1 10757:1 10758:1 10818:1 10823:2 10843:1 10847:6 10851:2 10871:2 10879:1 10892:1 10897:1 10898:1 10912:1 10951:1 10953:1 10961:1 10962:1 10970:1 10974:4 10981:1 10985:1 10987:1 11013:1 11016:1 11036:1 11046:1 11047:5 11056:1 11062:1 11103:3 11118:1 11126:1 11159:2 11163:2 11186:1 11187:1 11215:5 11223:3 11235:1 11273:4 11284:1 11286:1 11297:1 11301:1 11325:2 11329:1 11337:1 11341:1 11352:1 11353:1 11368:1 11375:1 11400:1 11405:1 11408:1 11415:1 11430:4 11447:1 11449:1 11451:2 11459:1 11463:1 11486:1 11526:1 11584:2 11607:1 11638:1 11643:1 11653:1 11708:2 11712:2 11739:2 11790:1 11792:1 11812:2 11813:1 11818:1 11833:1 11853:1 11864:1 11874:1 11900:1 11906:2 11932:1 11937:1 11976:1 11979:1 11990:1 11992:1 11994:1 12038:1 12050:2 12078:1 12099:3 12114:1 12115:1 12126:1 12144:2 12181:1 12182:1 12184:1 12218:1 12229:1 12245:1 12276:2 12289:1 12338:1 12346:5 12364:2 12365:2 12372:1 12375:1 12381:4 12387:1 12396:1 12416:1 12444:1 12486:1 12488:2 12490:1 12491:1 12512:1 12555:1 12556:2 12575:1 12582:1 12583:1 12614:4 12623:1 12652:1 12662:2 12685:1 12723:1 12739:2 12740:1 12741:4 12748:1 12754:1 12797:3 12798:1 12800:4 12801:1 12839:1 12842:1 12843:1 12846:1 12881:1 12930:1 12942:1 12943:1 12945:2 12950:1 12961:1 12988:2 12989:1 13014:1 13025:1 13032:1 13033:1 13058:1 13104:3 13153:6 13156:1 13181:1 13205:1 13207:1 13225:3 13238:1 13259:1 13288:1 13295:2 13304:1 13311:2 13328:4 13333:1 13336:1 13345:1 13362:1 13390:1 13406:1 13417:1 13428:1 13437:1 13445:2 13449:2 13452:1 13453:1 13462:1 13470:1 13471:1 13482:1 13489:3 13502:1 13505:2 13525:1 13561:1 13620:1 13637:1 13647:3 13662:2 13664:2 13680:1 13682:1 13688:1 13719:2 13729:1 13733:2 13760:1 13765:2 13766:1 13803:5 13819:7 13835:4 13857:1 13865:1 13888:1 13895:2 13908:1 13926:1 13928:2 13929:1 13931:1 13936:1 13947:1 13970:1 13979:1 13986:1 13989:3 13994:1 13995:1 13996:2 14000:1 14024:1 14026:1 14030:1 14031:1 14035:1 14051:4 14071:2 14073:1 14077:1 14088:1 14097:1 14119:1 14127:2 14130:1 14178:5 14204:2 14207:1 14229:2 14231:2 14252:1 14262:1 14279:1 14300:2 14317:1 14329:1 14332:2 14334:1 14341:1 14365:1 14366:3 14371:2 14380:1 14382:3 14386:1 14387:1 14391:2 14395:1 14403:1 14404:1 14417:1 14422:2 14434:1 14443:1 14465:1 14476:4 14477:2 14496:7 14513:1 14516:4 14522:1 14541:1 14549:1 14556:1 14576:1 14577:1 14582:1 14622:1 14630:3 14635:1 14648:1 14649:1 14650:1 14654:1 14657:1 14665:2 14672:1 14677:5 14678:3 14691:1 14696:1 14711:1 14719:1 14727:1 14734:1 14740:3 14744:1 14747:2 14762:2 14763:1 14764:1 14765:1 14774:1 14776:1 14785:3 14802:1 14804:1 14807:1 14810:1 14837:4 14844:1 14849:2 14851:1 14864:1 14871:1 14877:1 14882:1 14885:3 14934:1 14946:3 14956:2 14962:1 14976:1 14981:1 14987:1 14991:1 15030:1 15035:1 15080:2 15087:1 15105:2 15111:1 15123:1 15134:7 15135:1 15137:2 15142:1 15160:1 15169:1 15171:2 15183:1 15184:3 15197:1 15201:1 15205:7 15233:1 15240:1 15251:1 15269:3 15282:2 15283:1 15287:1 15307:19 15312:1 15344:1 15354:2 15360:1 15396:3 15405:3 15444:1 15445:2 15452:1 15460:2 15480:1020 15492:2 15496:1 15556:2 15568:1 15570:1 15574:1 15591:1 15595:1 15610:2 15617:2 15625:1 15638:1 15639:1 15642:2 15646:1 15647:1 15649:3 15652:1 15655:3 15658:1 15661:1 15662:4 15723:1 15738:1 15742:2 15743:1 15763:1 15776:8 15790:1 15814:1 15816:2 15871:1 15929:2 15935:1 15943:1 15949:3 15955:1 15997:3 16008:1 16036:1 16042:4 16051:1 16054:3 16074:1 16102:1 16115:4 16118:1 16121:8 16151:1 16152:1 16154:4 16171:1 16206:1 16228:1 16254:1 16262:3 16273:2 16302:1 16306:2 16310:1 16313:1 16318:1 16341:1 16370:1 16387:4 16409:3 16426:1 16438:1 16474:1 16479:1 16484:3 16485:1 16488:1 16495:1 16500:2 16503:1 16548:1 16577:1 16593:2 16603:1 16630:3 16652:1 16654:2 16659:1 16670:1 16679:1 16681:4 16693:1 16718:1 16726:2 16727:1 16732:1 16735:1 16744:1 16753:1 16754:1 16761:1 16763:1 16778:1 16780:1 16787:1 16809:1 16815:4 16853:1 16855:2 16861:3 16862:2 16867:1 16871:1 16875:1 16882:1 16895:1 16897:1 16921:4 16970:1 16971:1 16975:1 17048:1 17057:2 17066:1 17085:2 17113:1 17136:1 17175:1 17181:1 17185:1 17188:1 17237:4 17248:1 17275:5 17276:1 17311:3 17316:2 17320:1 17331:1 17346:1 17362:5 17366:2 17367:1 17387:6 17403:1 17404:1 17424:2 17485:1 17491:1 17499:1 17520:1 17553:1 17569:1 17580:1 17602:1 17605:1 17616:2 17623:2 17631:1 17660:1 17678:4 17712:1 17725:1 17730:1 17768:1 17772:1 17774:1 17792:1 17822:1 17827:1 17834:2 17839:1 17855:4 17865:1 17890:1 17908:1 17910:1 17916:7 17919:1 17924:1 17927:1 17943:2 17955:3 17958:4 17962:1 17979:1 17980:1 17983:1 17995:3 18009:3 18016:1 18025:2 18028:1 18035:1 18038:1 18041:1 18043:3 18053:2 18058:1 18064:1 18069:1 18079:1 18092:1 18093:3 18116:1 18130:1 18146:1 18166:2 18168:2 18174:1 18181:1 18197:1 18208:1 18210:1 18248:1 18266:1 18339:1 18366:1 18369:2 18370:2 18375:2 18378:1 18406:1 18410:1 18414:1 18436:1 18454:1 18474:1 18478:1 18485:1 18491:1 18498:1 18511:2 18523:1 18567:1 18568:1 18578:1 18587:1 18616:1 18654:1 18664:1 18665:1 18674:1 18702:2 18704:1 18727:2 18732:6 18742:1 18748:1 18792:3 18816:1 18856:5 18857:1 18862:5 18880:1 18881:2 18882:1 18884:1 18901:2 18929:1 18931:1 18941:4 18949:1 19024:1 19033:4 19059:1 19060:2 19080:1 19098:3 19108:3 19126:1 19136:1 19153:1 19172:1 19193:1 19205:3 19207:2 19210:3 19226:2 19230:1 19249:1 19250:1 19275:2 19292:6 19293:1 19294:1 19302:1 19303:1 19322:1 19328:2 19335:1 19337:5 19339:1 19365:1 19392:1 19395:2 19422:1 19438:1 19440:1 19443:2 19469:1 19471:3 19475:1 19487:4 19507:1 19544:1 19559:3 19561:1 19562:1 19564:1 19586:1 19603:1 19612:1 19637:1 19644:1 19683:1 19702:1 19706:1 19716:1 19745:1 19762:5 19767:1 19773:1 19792:1 19804:1 19805:1 19810:3 19837:1 19847:1 19902:1 19912:1 19928:1 19962:1 19966:1 20015:1 20040:1 20084:3 20096:2 20109:2 20118:1 20138:1 20165:1 20208:1 20223:1 20224:1 20226:1 20239:1 20251:1 20258:2 20266:1 20267:1 20270:2 20275:1 20278:1 20304:1 20316:1 20317:1 20318:6 20326:1 20327:2 20331:3 20332:2 20334:2 20337:1 20338:1 20341:1 20343:2 20344:4 20353:1 20371:1 20378:3 20383:3 20398:4 20399:1 20406:1 20411:1 20413:1 20435:1 20436:1 20441:1 20442:6 20447:5 20448:1 20464:1 20469:1 20470:1 20502:1 20512:1 20529:1 20560:1 20576:3 20595:1 20619:1 20621:1 20627:1 20631:4 20659:1 20668:4 20694:1 20696:1 20727:1 20733:1 20738:3 20742:5 20761:4 20785:7 20818:1 20829:4 20853:1 20871:1 20872:1 20887:1 20949:5 20962:3 20973:2 20995:1 21012:1 21021:1 21056:1 21062:1 21065:2 21089:1 21100:1 21108:4 21111:1 21112:1 21123:1 21134:1 21139:1 21146:1 21150:4 21173:1 21198:3 21199:3 21208:2 21209:2 21218:1 21219:1 21224:1 21225:2 21249:1 21293:2 21337:3 21350:1 21473:1 21480:1 21485:1 21529:2 21539:3 21557:5 21561:2 21582:1 21584:1 21586:1 21588:1 21602:2 21610:7 21613:1 21627:1 21630:1 21642:1 21645:1 21650:1 21684:1 21741:1 21760:19 21773:4 21774:1 21782:3 21783:1 21784:1 21787:1 21812:1 21830:1 21831:1 21838:1 21844:1 21856:1 21878:1 21887:1 21904:1 21914:1 21916:5 21926:1 21995:1 21996:1 21997:1 21998:1 22007:1 22010:1 22024:1 22027:2 22037:1 22048:3 22080:1 22109:1 22119:1 22123:1 22163:6 22179:1 22208:1 22218:1 22223:2 22229:1 22245:2 22247:1 22256:1 22263:1 22279:1 22281:1 22315:1 22331:6 22360:1 22410:2 22415:1 22417:1 22431:1 22434:2 22465:1 22466:1 22472:1 22481:1 22491:1 22493:1 22504:1 22513:1 22517:1 22520:4 22534:1 22548:1 22551:4 22561:1 22585:1 22601:1 22611:3 22617:1 22646:2 22647:1 22655:1 22669:3 22690:4 22699:5 22707:1 22715:1 22730:1 22734:1 22736:1 22749:2 22755:4 22756:1 22760:2 22786:3 22787:1 22795:2 22802:1 22803:4 22809:1 22812:1 22815:1 22820:1 22822:1 22828:1 22846:1 22864:1 22865:1 22866:1 22874:2 22895:1 22905:1 22937:1 22942:1 22982:1 23000:1 23001:1 23011:1 23027:2 23039:1 23075:1 23076:1 23084:1 23089:5 23109:3 23151:1 23167:1 23175:1 23188:1 23237:2 23248:1 23256:1 23264:1 23284:2 23293:1 23295:1 23298:2 23300:1 23305:1 23314:1 23333:1 23349:1 23384:2 23385:1 23392:1 23393:2 23404:4 23413:1 23424:1 23430:15 23431:1 23433:1 23466:4 23491:1 23521:1 23524:1 23551:2 23558:1 23586:3 23588:1 23592:1 23603:4 23610:2 23616:1 23626:4 23646:1 23647:4 23655:2 23659:2 23685:1 23703:1 23712:1 23713:1 23720:1 23733:1 23736:1 23739:2 23767:1 23768:1 23775:5 23777:2 23797:1 23835:4 23836:1 23858:2 23862:1 23866:4 23891:1 23923:1 23940:2 23967:1 23971:2 23974:1 23993:1 24004:1 24039:2 24081:1 24096:1 24100:1 24126:2 24128:1 24129:1 24132:1 24137:1 24143:1 24164:1 24168:1 24170:4 24179:1 24213:1 24251:1 24265:1 24266:5 24271:1 24286:1 24296:1 24307:1 24350:1 24370:1 24373:1 24385:1 24394:1 24401:4 24411:1 24438:1 24476:4 24477:1 24482:1 24483:1 24503:3 24525:1 24530:1 24536:2 24538:1 24568:1
14 30:1 56:1 59:1 71:1 75:1 96:1 146:1 163:1 185:4 186:6 188:1 197:1 204:1 216:1 219:1 223:1 224:1 230:1 239:1 254:3 265:1 295:1 296:3 314:1 318:2 320:2 323:1 336:1 346:1 379:1 407:3 450:1 457:4 501:1 524:1 525:1 527:4 541:1 565:1 592:2 607:1 663:1 699:1 704:2 713:1 732:1 748:1 759:3 764:2 802:1 814:2 831:2 834:2 851:3 869:2 875:1 881:1 888:1 889:1 895:1 909:1 911:1 914:1 922:1 942:1 946:1 949:1 1009:1 1011:2 1021:1 1023:2 1044:1 1045:1 1046:2 1048:1 1051:4 1053:1 1055:1 1059:2 1094:2 1114:1 1124:1 1125:1 1127:1 1141:1 1153:2 1155:1 1171:3 1172:2 1217:1 1220:4 1226:1 1229:1 1259:4 1264:3 1285:1 1293:1 1297:1 1299:1 1301:1 1321:1 1332:3 1369:1 1381:3 1398:1 1401:4 1405:1 1413:1 1425:1 1448:1 1452:1 1507:5 1510:1 1517:4 1526:1 1538:1 1545:2 1564:5 1589:1 1591:4 1603:1 1616:1 1617:3 1621:1 1627:1 1628:1 1659:1 1683:1 1701:1 1710:1 1731:3 1737:1 1754:1 1759:1 1766:5 1781:1 1809:3 1818:1 1834:1 1838:2 1842:1 1856:2 1879:1 1880:1 1882:2 1883:2 1885:1 1888:1 1891:1 1908:1 1910:2 1912:3 1938:2 1941:1 1945:4 1947:1 1954:5 1955:1 1957:1 1963:3 1965:1 1968:4 1970:1 1973:1 1976:3 1991:1 2015:1 2028:1 2040:1 2042:1 2049:1 2053:1 2061:1 2065:1 2076:2 2077:1 2128:1 2131:1 2134:1 2149:1 2157:1 2164:1 2172:1 2178:1 2183:2 2193:1 2198:1 2226:2 2229:1 2234:1 2274:1 2275:1 2277:1 2286:2 2295:1 2303:1 2321:3 2325:3 2366:2 2383:3 2389:1 2390:2 2394:1 2419:1 2425:1 2426:1 2448:1 2451:1 2462:23 2464:1 2480:2 2486:1 2504:1 2507:7 2513:1 2519:5 2530:1 2565:4 2587:1 2597:2 2627:2 2638:1 2704:1 2709:1 2731:1 2736:2 2742:2 2785:2 2798:2 2801:1 2802:5 2844:1 2848:2 2849:1 2854:1 2855:1 2886:4 2901:1 2919:1 2954:2 2979:1 2980:1 3002:1 3003:1 3020:3 3027:1 3041:1 3049:2 3060:1 3061:1 3064:1 3072:1 3077:5 3090:1 3116:1 3131:1 3132:1 3133:1 3147:2 3153:1 3173:1 3179:1 3184:5 3204:1 3206:1 3213:1 3221:3 3225:1 3234:5 3245:1 3295:1 3297:2 3304:1 3312:1 3324:1 3326:1 3328:1 3332:1 3351:1 3369:1 3372:1 3375:1 3407:2 3408:2 3414:1 3416:1 3462:1 3494:1 3499:1 3518:1 3522:1 3562:1 3572:1 3581:2 3598:1 3606:1 3612:1 3615:1 3618:2 3641:9 3649:1 3660:1 3678:2 3679:1 3707:1 3735:1 3774:1 3776:1 3786:1 3804:1 3837:1 3841:1 3878:1 3886:3 3889:1 3907:1 3909:2 3938:5 3963:1 3964:1 3966:1 3967:1 3976:1 3984:1 3995:4 3998:4 4005:2 4012:1 4046:1 4061:1 4062:2 4083:1 4093:1 4102:1 4107:12 4109:1 4136:2 4145:1 4154:1 4183:1 4190:1 4198:6 4211:1 4212:3 4213:1 4218:1 4221:1 4225:1 4229:1 4236:2 4237:1 4238:1 4244:2 4268:1 4325:1 4340:1 4353:1 4354:1 4368:1 4371:1 4375:5 4376:1 4399:1 4400:1 4413:1 4423:1 4497:1 4498:1 4512:1 4518:2 4519:3 4539:1 4541:1 4551:1 4572:1 4586:1 4599:1 4609:1 4621:1 4622:1 4667:1 4668:1 4683:2 4684:1 4710:1 4724:1 4734:1 4784:1 4792:1 4796:2 4820:1 4821:1 4832:1 4853:1 4876:2 4889:2 4894:1 4901:1 5000:1 5016:1 5044:1 5049:2 5071:3 5088:1 5093:1 5095:1 5100:1 5192:1 5203:1 5224:1 5247:1 5248:1 5253:1 5254:1 5258:1 5283:1 5308:2 5313:1 5322:4 5325:4 5326:1 5332:3 5337:2 5338:1 5340:1 5342:1 5347:4 5349:6 5350:1 5352:3 5354:3 5451:7 5492:1 5500:1 5520:1 5529:1 5530:1 5533:2 5534:1 5535:1 5585:1 5595:1 5599:3 5604:1 5610:1 5674:1 5683:1 5686:2 5688:1 5702:6 5711:1 5721:1 5726:1 5730:1 5746:2 5783:1 5788:2 5807:1 5813:2 5828:1 5865:3 5874:2 5878:1 5900:1 5931:1 5939:1 5947:3 5948:1 5952:1 5968:1 5998:1 6005:2 6042:1 6045:1 6047:1 6050:1 6056:1 6087:1 6112:1 6116:1 6126:1 6131:1 6139:2 6175:1 6183:5 6194:1 6235:1 6237:2 6289:1 6293:1 6311:3 6355:1 6364:2 6365:3 6378:1 6381:1 6382:1 6386:2 6405:1 6407:1 6409:1 6410:1 6416:2 6429:27 6434:1 6448:1 6449:1 6451:4 6459:3 6468:1 6486:1 6491:1 6492:1 6493:1 6525:1 6526:3 6532:1 6554:1 6560:1 6578:1 6619:2 6661:2 6667:1 6669:1 6675:1 6707:1 6716:1 6723:2 6781:1 6789:1 6794:1 6796:2 6804:1 6810:3 6824:1 6839:1 6847:1 6854:4 6859:7 6908:1 6920:1 6937:1 6981:2 7016:1 7021:1 7027:1 7045:1 7054:3 7059:2 7068:5 7096:1 7097:1 7116:1 7122:1 7137:1 7157:1 7165:1 7166:1 7169:3 7170:1 7177:1 7178:2 7179:1 7181:1 7190:1 7194:1 7199:1 7202:1 7215:1 7216:1 7221:1 7235:1 7246:2 7285:9 7322:1 7360:1 7361:1 7379:1 7391:2 7400:8 7402:1 7409:1 7414:1 7427:1 7430:1 7443:1 7450:2 7456:3 7457:4 7459:2 7460:1 7461:1 7464:1 7465:2 7499:1 7510:1 7527:1 7553:1 7571:4 7572:1 7581:5 7589:1 7614:1 7615:1 7622:1 7626:1 7638:1 7648:2 7656:1 7702:1 7712:3 7741:1 7753:2 7754:1 7761:1 7768:1 7773:9 7782:1 7787:2 7799:1 7803:1 7804:1 7810:1 7820:1 7860:1 7868:2 7905:1 7908:1 7912:1 7929:1 7930:1 7950:2 7964:1 7972:1 7979:1 7988:3 8002:1 8005:1 8049:1 8065:6 8070:5 8081:5 8082:4 8099:4 8162:4 8171:1 8175:1 8176:5 8195:1 8206:5 8207:1 8229:2 8234:8 8249:2 8256:1 8279:1 8282:1 8284:1 8285:4 8296:1 8304:1 8311:1 8317:1 8328:3 8352:4 8355:1 8357:2 8383:1 8387:2 8428:1 8433:1 8443:2 8469:5 8508:1 8567:1 8568:2 8574:1 8582:1 8583:1 8593:1 8597:2 8598:5 8603:1 8614:1 8623:1 8635:1 8656:1 8657:1 8672:1 8681:1 8690:1 8692:1 8702:2 8714:3 8726:1 8727:2 8731:1 8736:1 8753:2 8759:6 8761:1 8771:1 8782:2 8783:1 8800:1 8802:4 8809:4 8812:1 8814:5 8831:2 8832:3 8833:3 8836:1 8878:2 8891:4 8900:2 8901:1 8911:1 8916:1 8944:1 8968:1 8979:1 8993:1 8996:1 8998:2 9000:1 9002:3 9022:1 9038:1 9058:1 9062:2 9063:1 9067:1 9101:4 9102:5 9120:3 9127:1 9138:1 9142:2 9166:1 9173:1 9181:1 9185:1 9222:1 9240:2 9252:5 9336:1 9346:1 9363:1 9377:1 9392:1 9400:1 9403:2 9419:1 9440:2 9441:1 9455:5 9462:2 9466:1 9488:4 9495:1 9497:1 9532:9 9550:2 9562:2 9563:1 9575:1 9599:1 9607:1 9619:1 9622:1 9682:2 9683:1 9688:2 9690:1 9691:1 9700:1 9710:2 9716:2 9723:3 9729:1 9743:1 9772:1 9810:1 9818:1 9823:3 9824:1 9850:1 9859:1 9867:1 9877:1 9878:1 9881:1 9890:1 9918:1 9922:1 9924:2 9944:1 9949:1 9963:1 10022:3 10040:1 10042:2 10045:1 10052:2 10053:2 10054:2 10090:5 10169:3 10176:1 10204:1 10211:1 10218:2 10232:1 10316:1 10318:2 10324:1 10369:1 10384:4 10457:1 10465:1 10480:20 10502:1 10503:2 10531:2 10537:1 10551:1 10576:1 10598:2 10648:1 10651:3 10659:1 10707:1 10719:1 10722:1 10757:1 10758:1 10818:1 10823:2 10843:1 10847:8 10851:2 10871:3 10879:1 10892:1 10897:1 10898:2 10912:1 10951:1 10953:1 10961:1 10962:2 10970:1 10974:4 10981:1 10985:1 10987:1 11013:1 11016:1 11036:1 11046:1 11047:5 11056:1 11062:1 11103:3 11118:2 11126:1 11159:2 11163:2 11186:1 11187:1 11215:5 11223:3 11235:2 11273:4 11280:1 11284:1 11286:1 11297:1 11301:1 11325:2 11329:1 11337:2 11341:1 11346:1 11352:1 11353:1 11368:1 11375:1 11400:1 11405:1 11408:1 11415:1 11430:4 11447:2 11449:1 11451:2 11459:1 11463:1 11486:1 11509:1 11526:1 11584:2 11607:1 11638:1 11640:1 11643:1 11653:1 11708:2 11712:3 11739:2 11790:1 11792:1 11807:1 11812:2 11813:1 11818:1 11833:1 11853:1 11864:2 11874:1 11900:1 11906:2 11932:1 11937:1 11976:1 11979:1 11990:1 11992:1 11994:1 12038:1 12050:2 12078:1 12084:1 12099:3 12114:1 12115:1 12126:1 12144:2 12181:1 12182:1 12184:1 12218:1 12229:1 12245:1 12276:2 12289:1 12338:1 12346:5 12364:2 12365:2 12372:1 12375:1 12381:4 12387:1 12396:1 12416:1 12425:1 12444:1 12486:1 12488:2 12490:1 12491:1 12512:1 12555:1 12556:2 12575:2 12582:1 12583:1 12614:4 12623:1 12641:1 12652:1 12662:2 12685:1 12723:1 12739:2 12740:1 12741:4 12748:1 12754:1 12797:3 12798:1 12800:4 12801:1 12837:1 12839:1 12842:1 12843:1 12846:1 12881:1 12930:1 12942:2 12943:1 12945:2 12950:1 12961:1 12985:1 12988:2 12989:1 13014:1 13025:1 13032:1 13033:1 13058:1 13104:3 13125:1 13153:6 13156:1 13181:1 13205:1 13207:1 13212:1 13225:3 13238:1 13259:1 13288:1 13295:2 13304:1 13311:2 13328:5 13333:1 13336:1 13345:1 13362:1 13390:2 13406:1 13417:1 13428:1 13434:1 13437:1 13445:2 13449:2 13452:1 13453:1 13462:1 13470:1 13471:1 13482:1 13489:3 13502:1 13505:2 13525:1 13561:1 13590:1 13620:1 13637:1 13647:3 13662:2 13664:2 13680:1 13682:1 13688:1 13719:3 13729:1 13733:2 13760:1 13765:2 13766:1 13778:1 13803:5 13819:7 13835:4 13857:1 13865:1 13888:1 13895:2 13908:2 13926:1 13928:3 13929:1 13931:1 13936:1 13947:1 13970:1 13979:2 13986:1 13989:3 13994:1 13995:1 13996:2 14000:1 14024:1 14026:2 14030:1 14031:1 14035:2 14051:4 14071:2 14073:1 14077:1 14088:1 14097:1 14119:1 14127:2 14130:1 14178:5 14204:2 14207:1 14227:1 14229:2 14231:2 14252:1 14262:1 14279:1 14300:2 14317:1 14329:1 14332:2 14334:1 14341:1 14365:1 14366:4 14371:3 14380:1 14382:4 14383:1 14386:1 14387:1 14391:2 14395:1 14403:1 14404:1 14417:1 14422:2 14434:1 14443:1 14465:2 14476:4 14477:2 14496:7 14513:1 14516:4 14522:1 14541:1 14549:1 14556:1 14576:1 14577:1 14582:1 14622:1 14630:3 14635:1 14648:1 14649:1 14650:1 14654:1 14657:1 14665:2 14672:1 14677:5 14678:3 14691:2 14696:1 14711:1 14719:1 14727:1 14734:1 14740:3 14744:1 14747:2 14762:2 14763:1 14764:1 14765:1 14768:1 14774:1 14776:1 14785:3 14802:1 14804:1 14807:1 14810:1 14837:4 14844:1 14849:2 14851:1 14864:1 14871:1 14877:1 14882:1 14885:3 14934:1 14946:3 14956:2 14962:1 14976:1 14981:1 14987:1 14991:1 15002:1 15030:2 15035:1 15080:2 15087:1 15105:2 15111:1 15123:1 15134:7 15135:1 15137:3 15142:1 15160:1 15169:1 15171:2 15183:1 15184:3 15197:1 15201:1 15205:7 15233:1 15240:1 15251:1 15269:3 15282:2 15283:1 15287:1 15307:22 15312:1 15344:1 15354:2 15360:1 15396:3 15405:3 15444:1 15445:2 15452:1 15460:3 15480:1127 15483:1 15492:2 15496:1 15556:2 15568:1 15570:1 15574:1 15591:1 15595:1 15599:1 15610:3 15617:2 15625:1 15638:1 15639:2 15642:2 15646:1 15647:1 15649:3 15652:1 15655:3 15658:1 15661:1 15662:4 15723:1 15738:1 15742:2 15743:1 15763:2 15776:8 15790:1 15814:1 15816:2 15871:1 15884:1 15929:2 15935:1 15943:1 15949:3 15955:1 15997:3 16008:1 16036:1 16042:5 16051:1 16054:3 16074:1 16102:1 16103:1 16115:4 16118:1 16121:8 16151:1 16152:2 16154:4 16171:1 16187:1 16206:1 16228:1 16254:1 16262:3 16270:1 16273:2 16274:1 16302:1 16306:2 16310:1 16313:1 16318:1 16341:1 16370:1 16387:4 16409:3 16426:1 16438:1 16474:1 16479:1 16484:3 16485:1 16488:1 16495:1 16500:2 16503:1 16548:1 16577:2 16593:2 16603:1 16605:1 16630:3 16652:2 16654:3 16659:1 16670:1 16679:1 16681:4 16693:1 16718:1 16726:2 16727:1 16732:1 16735:1 16743:1 16744:1 16753:1 16754:1 16761:1 16763:1 16778:1 16780:1 16787:2 16809:1 16815:4 16853:1 16855:2 16861:3 16862:2 16867:2 16871:1 16875:1 16882:1 16895:1 16897:1 16921:4 16970:1 16971:1 16975:1 17048:1 17057:2 17058:1 17066:1 17085:2 17113:1 17136:1 17166:1 17175:1 17181:1 17185:1 17188:1 17237:4 17248:1 17269:1 17275:5 17276:2 17311:3 17316:2 17320:1 17331:1 17346:2 17347:1 17362:5 17366:2 17367:1 17387:6 17403:1 17404:1 17424:2 17470:1 17485:1 17491:1 17499:1 17520:1 17553:2 17569:1 17580:1 17602:1 17605:1 17616:2 17623:3 17631:1 17660:1 17678:4 17712:1 17725:2 17730:1 17735:1 17768:1 17772:2 17774:1 17792:1 17808:1 17822:1 17827:1 17834:2 17838:1 17839:1 17855:4 17865:1 17890:1 17908:1 17910:1 17916:7 17919:1 17924:1 17927:1 17943:2 17955:3 17958:4 17962:2 17978:1 17979:1 17980:1 17983:1 17995:3 18009:3 18016:1 18025:2 18028:1 18035:1 18038:1 18041:1 18043:4 18053:2 18058:1 18064:1 18069:1 18079:1 18092:1 18093:3 18116:1 18130:1 18146:1 18166:3 18168:2 18174:1 18181:1 18197:1 18208:2 18210:1 18248:1 18266:1 18339:1 18356:1 18366:1 18367:1 18369:2 18370:2 18375:2 18378:1 18379:1 18406:1 18410:1 18414:1 18436:1 18447:1 18454:1 18474:1 18478:1 18485:1 18491:1 18498:1 18511:3 18523:1 18539:1 18567:1 18568:1 18578:1 18587:1 18616:2 18629:1 18654:1 18664:1 18665:1 18674:2 18702:3 18704:1 18727:2 18732:7 18742:1 18748:1 18792:3 18800:1 18816:1 18856:5 18857:1 18862:5 18880:1 18881:2 18882:1 18884:1 18901:2 18929:1 18931:1 18934:1 18941:4 18949:1 19011:1 19024:1 19033:4 19059:1 19060:2 19080:1 19098:3 19108:3 19126:2 19136:2 19153:2 19172:1 19193:1 19205:3 19207:2 19210:3 19226:2 19230:1 19249:1 19250:1 19275:2 19292:6 19293:1 19294:1 19302:1 19303:1 19322:1 19328:2 19331:1 19335:1 19337:5 19339:1 19365:1 19392:2 19395:2 19422:1 19438:1 19440:1 19443:2 19469:1 19471:3 19475:1 19487:4 19507:1 19517:1 19544:1 19559:3 19561:1 19562:1 19564:1 19586:1 19603:1 19610:1 19612:1 19637:1 19644:1 19683:1 19702:1 19706:1 19716:1 19745:1 19762:5 19767:1 19773:1 19792:1 19804:1 19805:1 19810:4 19837:1 19847:1 19902:1 19912:1 19928:1 19962:1 19966:1 20004:1 20015:1 20040:1 20084:4 20096:2 20109:3 20118:1 20138:1 20165:1 20208:1 20223:1 20224:1 20226:1 20239:1 20251:1 20258:2 20266:1 20267:1 20270:2 20275:1 20278:1 20304:1 20316:1 20317:2 20318:6 20326:1 20327:2 20331:3 20332:2 20334:2 20336:1 20337:3 20338:1 20341:1 20343:2 20344:5 20353:1 20371:1 20378:3 20383:3 20398:4 20399:1 20406:1 20411:1 20413:1 20435:1 20436:1 20441:1 20442:6 20447:5 20448:1 20464:1 20469:1 20470:1 20502:1 20505:1 20512:2 20529:1 20560:1 20576:3 20595:1 20619:1 20621:1 20627:1 20631:4 20659:1 20668:4 20694:1 20696:1 20727:1 20733:1 20738:3 20742:5 20761:4 20785:7 20818:1 20829:4 20853:1 20871:1 20872:1 20874:1 20887:1 20890:1 20949:7 20962:3 20973:2 20995:1 21012:1 21021:1 21056:1 21062:1 21065:2 21089:1 21100:1 21107:1 21108:4 21111:1 21112:1 21123:2 21134:1 21139:1 21146:1 21150:4 21173:1 21198:3 21199:3 21208:2 21209:2 21218:1 21219:1 21224:1 21225:2 21245:1 21249:1 21293:2 21337:3 21350:1 21473:1 21480:1 21485:1 21529:2 21539:3 21557:5 21561:2 21582:1 21584:1 21586:1 21588:1 21602:2 21610:7 21613:1 21627:1 21630:1 21633:1 21642:1 21645:1 21650:1 21684:1 21723:1 21741:1 21760:22 21773:4 21774:1 21782:3 21783:1 21784:1 21787:2 21812:1 21830:1 21831:2 21838:1 21844:1 21856:1 21878:1 21887:1 21904:1 21914:1 21916:5 21926:1 21995:1 21996:1 21997:1 21998:1 22007:1 22010:1 22024:1 22027:2 22037:1 22041:1 22048:3 22080:1 22109:1 22119:1 22123:1 22163:6 22179:1 22208:1 22218:1 22223:2 22229:1 22245:3 22247:1 22256:1 22263:1 22279:1 22281:1 22315:1 22328:1 22331:7 22360:1 22383:1 22410:2 22415:1 22417:1 22431:1 22434:2 22465:1 22466:1 22472:1 22481:1 22491:1 22493:1 22504:1 22513:1 22517:1 22520:4 22534:1 22548:1 22551:4 22561:1 22585:1 22598:1 22601:1 22611:3 22617:1 22644:1 22646:2 22647:1 22655:1 22669:3 22690:4 22699:6 22707:1 22715:1 22730:1 22734:1 22736:1 22749:2 22755:4 22756:1 22760:2 22761:1 22786:3 22787:1 22795:2 22802:1 22803:4 22809:1 22812:1 22815:1 22820:1 22822:1 22828:1 22846:1 22864:1 22865:1 22866:1 22874:3 22895:1 22905:1 22937:1 22942:1 22982:1 23000:1 23001:1 23011:1 23027:2 23039:1 23075:1 23076:1 23084:1 23089:5 23109:3 23125:1 23151:1 23167:1 23175:1 23188:1 23237:2 23248:1 23256:1 23263:1 23264:1 23284:2 23293:1 23295:1 23298:2 23300:1 23305:1 23314:1 23333:1 23335:1 23344:2 23349:1 23384:2 23385:1 23392:1 23393:2 23404:4 23413:1 23416:1 23424:1 23430:15 23431:1 23433:1 23466:4 23491:1 23521:1 23524:1 23551:2 23558:1 23586:3 23588:1 23592:1 23603:4 23610:2 23616:2 23623:1 23626:4 23646:1 23647:4 23655:3 23659:2 23676:1 23685:1 23703:1 23712:1 23713:1 23720:1 23733:1 23736:1 23739:2 23767:1 23768:1 23775:6 23777:2 23784:1 23797:2 23835:4 23836:1 23858:2 23862:1 23866:4 23891:1 23923:1 23940:2 23967:1 23971:3 23974:1 23993:1 23994:1 24004:1 24039:2 24076:1 24081:1 24096:1 24100:1 24126:2 24128:1 24129:1 24132:1 24137:1 24143:1 24164:1 24168:1 24170:4 24179:1 24213:1 24251:1 24265:1 24266:6 24271:1 24286:1 24296:1 24307:1 24350:1 24370:1 24373:1 24385:1 24394:1 24401:5 24411:1 24438:1 24476:5 24477:1 24482:1 24483:1 24487:1 24503:3 24525:1 24530:3 24536:2 24538:1 24568:1
14 30:1 56:1 59:1 71:1 75:1 96:1 146:1 157:1 163:1 185:4 186:6 188:1 197:1 204:1 216:1 219:1 223:1 224:1 230:1 239:1 254:3 265:1 295:1 296:4 314:1 318:2 320:2 323:1 336:1 346:1 379:1 407:3 450:1 457:4 501:2 524:1 525:1 527:4 541:1 565:1 592:2 607:1 663:1 699:1 704:2 713:1 714:1 732:1 748:1 759:3 763:1 764:2 802:1 814:4 831:2 834:2 838:1 851:3 864:1 869:2 875:1 881:1 888:1 889:1 895:1 909:1 911:1 914:1 922:1 942:1 946:1 949:1 965:1 1009:1 1011:2 1021:1 1023:2 1044:1 1045:1 1046:2 1048:1 1051:4 1053:1 1055:1 1059:2 1094:3 1114:1 1124:1 1125:1 1127:1 1128:1 1141:1 1153:2 1155:1 1171:3 1172:2 1217:1 1220:4 1226:1 1229:1 1259:4 1264:3 1285:1 1293:1 1297:1 1299:1 1301:1 1321:1 1332:3 1369:1 1381:3 1398:1 1401:4 1405:1 1413:1 1425:1 1448:1 1452:1 1507:6 1510:1 1517:4 1526:1 1535:1 1538:1 1545:2 1564:5 1589:1 1591:4 1603:1 1616:1 1617:3 1621:1 1627:1 1628:1 1659:1 1683:1 1701:1 1710:1 1731:3 1737:1 1754:1 1759:1 1766:7 1781:1 1809:3 1818:1 1834:1 1838:2 1842:1 1856:2 1879:1 1880:1 1882:2 1883:2 1885:1 1888:1 1891:1 1908:1 1910:2 1911:1 1912:3 1938:2 1941:1 1945:4 1947:1 1954:5 1955:1 1957:1 1963:3 1965:1 1968:4 1970:1 1973:1 1976:3 1991:1 2000:1 2015:1 2028:1 2040:2 2042:1 2049:1 2053:1 2061:1 2065:1 2076:2 2077:1 2128:1 2131:1 2134:2 2149:1 2157:1 2164:1 2172:1 2178:1 2183:2 2193:1 2198:1 2226:2 2229:1 2234:1 2274:1 2275:1 2277:1 2286:2 2295:1 2303:1 2321:3 2325:3 2366:2 2372:1 2383:3 2389:1 2390:3 2394:1 2419:1 2425:1 2426:1 2448:1 2451:3 2462:25 2464:1 2465:1 2480:2 2486:1 2504:1 2507:7 2513:2 2519:5 2530:1 2565:4 2587:1 2597:2 2627:3 2638:1 2704:1 2709:1 2731:2 2736:3 2742:2 2785:2 2798:2 2801:1 2802:5 2837:1 2844:1 2848:2 2849:1 2854:1 2855:1 2886:5 2901:1 2919:2 2954:2 2979:1 2980:1 3002:1 3003:1 3020:3 3027:1 3041:1 3042:1 3049:2 3060:1 3061:1 3064:1 3072:1 3077:5 3090:1 3098:1 3116:1 3131:1 3132:1 3133:1 3147:2 3153:1 3173:1 3179:1 3184:6 3204:1 3206:2 3213:1 3221:3 3225:1 3234:5 3245:1 3266:1 3287:1 3295:1 3297:3 3304:1 3312:1 3324:1 3326:1 3328:1 3332:1 3351:1 3369:1 3372:1 3375:1 3407:2 3408:2 3414:1 3416:1 3462:1 3494:1 3499:1 3518:1 3522:1 3525:1 3562:1 3572:1 3581:2 3598:1 3606:1 3612:1 3615:1 3618:2 3641:10 3649:1 3660:1 3678:2 3679:1 3707:1 3735:1 3744:1 3766:1 3774:1 3776:1 3783:1 3786:1 3804:1 3831:1 3837:2 3841:1 3878:1 3886:3 3889:1 3907:1 3908:1 3909:2 3938:5 3963:1 3964:1 3966:1 3967:1 3976:1 3984:1 3995:4 3998:4 4005:2 4012:1 4046:1 4061:1 4062:2 4083:1 4093:1 4102:1 4107:13 4109:1 4136:2 4145:1 4154:1 4183:1 4190:1 4198:7 4211:1 4212:3 4213:1 4218:1 4221:1 4223:1 4225:1 4229:1 4236:2 4237:1 4238:1 4244:2 4268:1 4325:1 4340:1 4353:1 4354:1 4368:1 4371:1 4375:5 4376:1 4399:1 4400:1 4413:2 4423:1 4497:1 4498:2 4512:1 4518:2 4519:3 4539:1 4541:1 4551:1 4572:1 4586:1 4599:1 4609:1 4621:1 4622:1 4667:1 4668:1 4683:2 4684:2 4710:1 4724:1 4734:1 4784:1 4792:1 4796:2 4814:1 4820:1 4821:1 4832:1 4853:1 4876:2 4889:2 4892:1 4894:2 4901:1 5000:1 5016:1 5044:1 5047:1 5049:2 5071:3 5088:2 5093:1 5095:1 5100:1 5192:1 5203:1 5224:1 5247:1 5248:1 5253:1 5254:1 5258:1 5283:1 5308:2 5313:1 5322:4 5325:4 5326:1 5332:3 5337:2 5338:1 5339:1 5340:1 5342:1 5347:5 5349:6 5350:1 5352:3 5354:3 5451:7 5492:1 5500:1 5520:1 5529:1 5530:1 5533:2 5534:1 5535:1 5585:1 5595:1 5599:3 5604:1 5610:1 5674:1 5681:1 5683:1 5686:2 5688:1 5702:6 5711:1 5721:1 5726:1 5730:1 5746:2 5783:1 5788:2 5807:1 5813:2 5828:1 5865:3 5874:2 5878:1 5900:1 5931:1 5939:1 5947:3 5948:1 5952:1 5968:1 5998:1 6005:2 6034:1 6042:1 6045:1 6046:1 6047:2 6050:1 6056:1 6062:1 6087:1 6112:1 6116:1 6126:1 6131:1 6139:2 6145:1 6175:1 6183:7 6194:1 6235:1 6237:2 6289:1 6293:1 6311:3 6355:1 6364:2 6365:3 6373:1 6378:1 6381:1 6382:1 6386:2 6405:1 6407:1 6409:1 6410:1 6416:2 6417:1 6429:28 6434:1 6448:1 6449:3 6451:4 6459:3 6468:1 6475:1 6486:1 6491:1 6492:1 6493:1 6525:1 6526:3 6532:1 6554:1 6560:1 6578:1 6619:2 6661:2 6667:1 6669:1 6675:1 6678:1 6707:1 6716:2 6723:3 6781:1 6789:1 6794:1 6796:2 6804:1 6810:3 6824:2 6839:1 6843:1 6847:1 6854:4 6859:8 6908:3 6920:1 6937:1 6981:2 7016:1 7021:1 7027:1 7045:1 7054:3 7059:2 7068:7 7096:1 7097:1 7116:1 7122:1 7137:1 7157:1 7165:1 7166:1 7169:3 7170:1 7177:1 7178:2 7179:1 7181:1 7190:1 7194:1 7199:1 7202:1 7215:1 7216:1 7221:1 7235:1 7245:1 7246:2 7285:9 7322:1 7360:1 7361:2 7379:1 7391:2 7400:8 7402:1 7409:1 7414:1 7418:1 7427:1 7430:1 7443:1 7450:2 7456:3 7457:4 7459:2 7460:1 7461:1 7464:1 7465:2 7499:1 7510:1 7527:1 7553:1 7554:1 7571:4 7572:1 7581:6 7589:1 7614:2 7615:1 7622:1 7626:1 7638:1 7648:2 7656:1 7658:1 7702:1 7712:3 7741:1 7742:1 7753:2 7754:1 7761:1 7768:1 7773:9 7782:1 7787:2 7799:1 7803:1 7804:1 7810:1 7820:1 7860:1 7868:2 7905:1 7908:1 7912:1 7929:2 7930:1 7950:2 7964:1 7972:1 7979:1 7982:1 7988:4 8002:1 8005:1 8049:1 8065:6 8070:6 8081:6 8082:4 8099:4 8162:4 8171:1 8174:1 8175:1 8176:6 8195:1 8206:5 8207:1 8229:2 8234:8 8249:2 8256:1 8279:1 8282:1 8284:1 8285:4 8296:1 8304:1 8311:1 8317:1 8318:1 8328:3 8352:4 8355:1 8357:2 8383:1 8387:2 8428:1 8433:1 8443:2 8469:6 8508:1 8567:1 8568:2 8574:1 8582:1 8583:1 8593:1 8597:3 8598:5 8603:1 8614:1 8623:1 8635:1 8656:1 8657:1 8672:1 8681:2 8690:1 8692:1 8702:2 8714:3 8726:1 8727:2 8731:1 8736:1 8753:2 8759:7 8761:1 8771:1 8782:2 8783:1 8800:1 8802:6 8809:4 8812:1 8814:5 8831:2 8832:3 8833:3 8836:1 8878:2 8891:4 8900:2 8901:1 8911:1 8916:1 8944:1 8968:1 8979:1 8993:1 8996:1 8998:2 9000:1 9002:3 9022:1 9038:1 9058:1 9062:2 9063:1 9067:1 9084:1 9101:4 9102:5 9120:3 9127:1 9138:1 9142:2 9166:1 9173:1 9181:1 9185:2 9222:1 9240:2 9252:6 9336:1 9346:1 9363:1 9377:1 9392:1 9400:1 9403:2 9419:1 9440:2 9441:1 9455:5 9462:2 9466:1 9488:4 9495:1 9497:1 9532:9 9550:2 9562:2 9563:2 9575:1 9599:1 9607:1 9619:1 9622:2 9624:1 9645:1 9682:3 9683:1 9688:2 9690:1 9691:1 9700:1 9710:2 9716:2 9723:3 9729:1 9743:1 9772:1 9810:1 9818:1 9823:3 9824:1 9850:1 9859:2 9867:1 9877:1 9878:1 9881:1 9890:1 9891:1 9918:1 9922:1 9924:2 9944:1 9949:1 9963:1 9999:1 10022:3 10040:1 10042:2 10045:1 10052:2 10053:2 10054:2 10074:1 10090:5 10169:3 10176:1 10204:1 10211:1 10218:3 10232:1 10316:1 10318:2 10324:1 10369:1 10384:4 10457:1 10465:1 10480:21 10502:1 10503:2 10531:2 10537:1 10551:1 10576:1 10597:1 10598:2 10648:2 10651:4 10659:1 10667:1 10707:1 10719:1 10722:1 10757:1 10758:1 10818:1 10823:2 10843:1 10847:8 10851:2 10862:1 10871:3 10879:1 10892:1 10897:1 10898:2 10912:1 10951:1 10953:1 10961:2 10962:2 10970:1 10974:4 10981:1 10985:1 10987:1 10993:1 11013:1 11016:1 11036:1 11046:1 11047:5 11050:1 11056:1 11062:1 11103:3 11118:2 11126:1 11159:2 11163:2 11173:1 11186:1 11187:2 11215:5 11223:3 11235:2 11273:4 11280:1 11283:1 11284:1 11286:1 11297:1 11301:1 11325:2 11329:1 11337:2 11341:1 11346:1 11352:1 11353:1 11368:1 11375:3 11400:1 11405:1 11408:1 11415:1 11430:4 11447:2 11449:1 11451:2 11459:1 11463:1 11486:1 11509:1 11526:1 11584:2 11607:1 11638:1 11640:1 11643:1 11653:1 11708:2 11712:3 11739:2 11790:1 11792:1 11801:1 11807:1 11812:2 11813:1 11818:1 11833:1 11853:1 11864:3 11874:1 11876:1 11900:1 11906:2 11932:1 11937:1 11976:1 11979:1 11990:1 11992:1 11994:1 12038:1 12050:3 12078:1 12084:1 12099:3 12114:1 12115:1 12126:1 12144:2 12181:1 12182:1 12184:1 12218:1 12229:1 12245:1 12276:2 12289:1 12323:1 12328:1 12338:1 12346:5 12364:2 12365:2 12372:1 12375:1 12381:4 12387:1 12396:1 12416:1 12425:1 12444:1 12486:2 12488:2 12490:1 12491:1 12512:1 12555:1 12556:2 12575:2 12582:1 12583:1 12585:1 12614:4 12623:1 12641:1 12652:2 12662:3 12685:1 12723:2 12739:2 12740:1 12741:4 12748:1 12754:1 12797:3 12798:1 12800:4 12801:1 12837:1 12839:1 12842:1 12843:1 12846:1 12881:1 12930:1 12942:2 12943:1 12945:2 12950:1 12961:1 12985:1 12988:3 12989:1 13014:1 13025:1 13032:1 13033:1 13058:2 13104:3 13125:1 13142:1 13153:7 13156:1 13181:1 13205:1 13207:1 13212:1 13225:3 13238:1 13259:1 13288:1 13295:2 13304:1 13311:2 13328:6 13333:1 13336:1 13345:1 13362:1 13390:2 13406:1 13417:1 13428:1 13434:1 13437:1 13445:3 13449:2 13452:1 13453:1 13462:1 13470:1 13471:1 13482:1 13489:3 13502:1 13505:2 13525:1 13561:1 13590:1 13620:1 13637:3 13647:3 13662:2 13664:2 13680:1 13682:1 13688:1 13719:3 13729:1 13733:2 13760:1 13765:2 13766:1 13778:1 13803:5 13807:1 13819:7 13835:4 13857:1 13858:1 13865:1 13876:1 13888:1 13895:2 13908:2 13926:1 13928:3 13929:1 13931:1 13936:1 13947:1 13970:1 13979:2 13986:1 13989:3 13994:1 13995:1 13996:2 14000:1 14024:1 14026:2 14030:1 14031:1 14035:2 14050:1 14051:4 14071:2 14073:1 14077:1 14088:1 14097:1 14119:1 14127:2 14130:1 14178:6 14204:2 14207:1 14227:1 14229:3 14231:2 14252:1 14262:1 14279:1 14286:1 14300:2 14317:1 14329:1 14332:2 14334:1 14341:1 14365:1 14366:5 14371:3 14380:1 14382:5 14383:2 14386:1 14387:2 14391:2 14395:1 14403:1 14404:1 14417:1 14422:2 14434:1 14443:1 14465:2 14476:4 14477:2 14496:8 14513:1 14516:5 14522:1 14541:1 14549:1 14556:1 14576:1 14577:1 14582:1 14622:1 14630:4 14635:1 14648:1 14649:1 14650:1 14654:1 14657:1 14665:2 14672:2 14677:6 14678:3 14691:2 14696:1 14711:1 14719:2 14727:1 14734:1 14740:4 14744:1 14747:3 14762:2 14763:1 14764:1 14765:1 14768:1 14774:1 14776:1 14785:3 14802:1 14804:1 14807:1 14810:1 14837:4 14844:1 14849:2 14851:1 14864:1 14871:1 14877:1 14882:1 14885:3 14934:2 14946:3 14956:2 14962:1 14976:1 14981:1 14987:1 14991:1 15002:1 15030:2 15035:1 15080:2 15087:1 15105:2 15111:1 15123:1 15134:8 15135:1 15137:3 15142:1 15160:1 15169:1 15171:2 15183:1 15184:3 15197:1 15201:1 15205:7 15233:1 15240:1 15251:1 15269:3 15282:2 15283:1 15287:1 15307:25 15312:3 15344:1 15354:2 15360:1 15396:3 15405:3 15444:1 15445:2 15452:1 15460:3 15480:1178 15483:1 15492:2 15496:1 15508:1 15556:2 15560:1 15568:1 15570:1 15574:1 15591:1 15595:1 15599:1 15610:3 15617:2 15625:1 15638:1 15639:2 15642:2 15646:1 15647:1 15649:3 15652:1 15655:3 15658:1 15661:1 15662:5 15684:1 15723:1 15738:1 15742:2 15743:1 15763:3 15776:9 15790:1 15814:1 15816:2 15853:1 15871:1 15875:1 15884:1 15929:2 15935:1 15943:1 15949:3 15955:1 15997:3 16008:1 16036:1 16042:6 16051:1 16054:4 16074:1 16102:1 16103:1 16111:1 16115:4 16118:1 16121:9 16147:1 16151:1 16152:2 16154:4 16161:1 16171:1 16187:1 16206:1 16228:1 16254:1 16262:3 16270:1 16273:2 16274:1 16302:1 16306:2 16308:1 16310:1 16313:1 16318:1 16341:1 16370:1 16387:4 16409:3 16426:1 16428:1 16438:1 16474:1 16479:1 16484:4 16485:2 16488:1 16495:1 16500:2 16503:2 16548:1 16577:2 16593:2 16603:1 16605:1 16625:1 16630:3 16652:2 16654:3 16659:1 16670:1 16679:1 16681:4 16682:1 16693:1 16718:1 16726:2 16727:1 16729:1 16732:1 16735:1 16743:1 16744:2 16753:1 16754:1 16761:1 16763:1 16778:2 16780:1 16787:2 16809:1 16815:4 16853:1 16855:2 16861:3 16862:2 16867:2 16871:1 16875:1 16882:1 16895:1 16897:1 16921:4 16964:1 16970:1 16971:1 16975:1 17043:1 17048:1 17057:2 17058:1 17066:1 17085:2 17113:1 17136:2 17166:1 17175:1 17181:1 17185:1 17188:1 17237:4 17246:1 17248:1 17269:1 17275:5 17276:2 17298:1 17311:3 17316:2 17320:1 17331:1 17346:2 17347:1 17357:1 17362:5 17366:2 17367:1 17387:6 17403:1 17404:1 17424:2 17470:1 17485:1 17491:1 17499:1 17520:1 17553:2 17569:1 17580:1 17602:1 17605:1 17608:1 17616:2 17623:3 17626:1 17631:1 17649:1 17660:1 17678:4 17712:1 17725:2 17730:1 17735:1 17768:1 17772:2 17774:1 17792:1 17808:1 17822:1 17827:1 17834:2 17838:1 17839:1 17853:1 17855:4 17865:1 17890:1 17908:1 17910:1 17916:7 17919:1 17921:1 17922:1 17924:1 17927:1 17943:2 17955:4 17958:4 17962:2 17978:1 17979:1 17980:1 17983:1 17995:3 18009:3 18016:1 18025:2 18028:1 18035:1 18038:2 18041:1 18043:4 18053:2 18058:1 18064:1 18069:1 18079:1 18092:1 18093:4 18116:1 18130:1 18146:1 18166:3 18168:2 18174:1 18181:1 18189:1 18197:1 18208:2 18210:2 18248:1 18266:1 18339:1 18356:1 18366:1 18367:1 18369:2 18370:2 18375:2 18378:1 18379:1 18406:1 18410:1 18414:1 18423:1 18436:1 18447:1 18454:1 18474:1 18478:1 18485:1 18491:1 18498:1 18511:3 18523:1 18539:1 18567:1 18568:1 18578:1 18587:1 18616:2 18623:1 18629:1 18654:1 18664:1 18665:1 18674:2 18702:4 18704:1 18727:2 18732:7 18742:1 18748:1 18792:3 18800:1 18816:1 18856:5 18857:1 18862:5 18880:1 18881:2 18882:1 18884:1 18901:2 18929:1 18931:1 18934:1 18941:4 18949:1 19011:1 19024:1 19033:4 19056:1 19059:1 19060:2 19080:1 19098:3 19108:3 19126:2 19134:1 19136:2 19148:1 19153:2 19172:1 19193:1 19205:3 19207:2 19210:4 19226:2 19230:1 19249:1 19250:1 19275:2 19292:6 19293:1 19294:1 19302:1 19303:1 19322:1 19328:2 19331:1 19335:1 19337:5 19339:2 19365:1 19392:2 19395:2 19402:1 19422:1 19438:2 19440:1 19443:2 19469:1 19471:3 19475:1 19487:4 19507:1 19517:1 19522:1 19544:2 19559:3 19561:1 19562:1 19564:1 19586:1 19603:1 19610:1 19612:1 19637:1 19644:1 19683:1 19702:1 19706:1 19716:1 19745:1 19762:5 19767:1 19773:1 19792:1 19804:1 19805:1 19810:4 19837:1 19847:1 19902:1 19912:1 19928:1 19962:1 19966:1 20000:1 20004:1 20015:1 20040:2 20084:4 20096:2 20103:1 20109:3 20118:1 20138:1 20165:1 20208:1 20223:1 20224:1 20226:1 20239:1 20251:1 20258:2 20266:1 20267:1 20270:2 20275:1 20278:1 20304:1 20316:1 20317:2 20318:6 20326:1 20327:2 20331:3 20332:2 20334:2 20336:1 20337:3 20338:1 20341:1 20343:3 20344:5 20353:1 20371:1 20378:3 20383:3 20398:4 20399:1 20406:1 20411:1 20413:1 20435:1 20436:1 20441:1 20442:6 20447:5 20448:1 20464:1 20469:1 20470:1 20502:1 20505:1 20512:2 20529:1 20560:1 20576:3 20595:1 20619:1 20621:1 20627:1 20631:4 20659:1 20668:4 20694:1 20696:1 20727:1 20733:1 20738:3 20742:6 20761:4 20762:1 20785:7 20818:1 20829:4 20853:1 20871:1 20872:2 20874:1 20887:1 20890:1 20949:8 20962:3 20973:2 20995:1 21012:1 21021:1 21056:1 21062:1 21065:2 21089:1 21100:1 21107:2 21108:4 21111:1 21112:1 21123:2 21134:1 21139:1 21146:1 21150:4 21173:1 21198:3 21199:3 21208:2 21209:2 21218:1 21219:1 21224:1 21225:2 21245:1 21249:1 21293:2 21337:3 21350:1 21380:1 21473:1 21480:1 21485:1 21529:2 21539:3 21557:5 21561:2 21582:2 21584:1 21586:1 21588:1 21602:2 21610:7 21613:1 21627:1 21630:1 21633:1 21642:2 21645:1 21650:1 21684:1 21703:1 21718:1 21723:1 21741:1 21760:25 21773:4 21774:1 21782:3 21783:1 21784:1 21787:2 21812:1 21830:1 21831:2 21838:1 21844:1 21856:1 21868:1 21878:1 21887:1 21904:1 21914:1 21916:5 21922:1 21926:1 21927:1 21995:2 21996:1 21997:1 21998:1 22007:1 22010:1 22024:1 22027:2 22037:1 22041:1 22048:3 22080:1 22109:1 22119:1 22123:1 22163:7 22179:1 22208:1 22218:1 22223:2 22229:1 22245:3 22247:1 22256:1 22263:1 22279:1 22281:1 22315:1 22328:1 22331:7 22360:1 22383:1 22410:2 22415:1 22417:1 22431:1 22434:2 22465:1 22466:2 22472:1 22481:1 22491:1 22493:1 22504:1 22513:1 22517:1 22520:4 22534:1 22548:1 22551:4 22561:1 22585:1 22598:1 22601:1 22611:3 22617:1 22644:1 22646:2 22647:1 22655:1 22662:1 22669:3 22690:4 22699:6 22707:1 22709:1 22715:1 22730:1 22734:1 22736:1 22749:2 22755:4 22756:1 22759:1 22760:2 22761:1 22786:3 22787:1 22795:2 22802:1 22803:4 22809:1 22812:1 22815:1 22820:1 22822:1 22828:1 22831:1 22846:1 22864:1 22865:1 22866:1 22874:3 22876:1 22895:1 22905:2 22937:1 22942:1 22982:1 23000:1 23001:1 23011:1 23027:3 23039:1 23064:1 23075:1 23076:1 23084:1 23089:6 23109:4 23125:1 23127:1 23151:1 23167:1 23175:1 23188:1 23237:2 23248:1 23256:1 23263:1 23264:1 23284:2 23293:1 23295:1 23298:2 23300:1 23305:1 23314:2 23333:1 23335:1 23344:2 23349:1 23360:1 23378:1 23384:2 23385:1 23392:1 23393:2 23404:4 23413:1 23416:1 23424:1 23430:15 23431:1 23433:1 23456:1 23466:4 23491:1 23521:1 23524:1 23551:2 23558:1 23586:3 23588:1 23592:1 23603:4 23610:3 23616:3 23623:1 23626:4 23646:1 23647:4 23655:3 23659:2 23676:1 23685:1 23703:1 23712:1 23713:1 23720:1 23733:1 23736:1 23739:2 23767:1 23768:1 23775:6 23777:2 23784:1 23797:2 23835:4 23836:1 23840:1 23858:2 23862:1 23866:4 23891:1 23923:1 23940:2 23967:1 23971:3 23974:2 23993:1 23994:1 24004:1 24039:2 24070:1 24076:1 24081:1 24096:1 24100:1 24126:2 24128:1 24129:1 24132:1 24137:1 24143:1 24164:1 24168:1 24170:4 24179:1 24213:1 24251:1 24265:1 24266:6 24271:1 24286:1 24296:1 24307:1 24350:1 24370:2 24373:1 24385:1 24394:1 24401:6 24411:2 24438:1 24463:1 24476:5 24477:1 24482:1 24483:3 24487:1 24503:4 24525:1 24530:3 24536:2 24538:1 24568:1
14 30:1 56:1 59:1 71:1 75:1 96:2 146:1 157:1 163:1 185:4 186:7 188:1 197:1 204:1 216:1 219:1 223:1 224:1 230:1 239:1 254:3 265:1 295:1 296:4 314:1 318:2 320:2 323:1 336:1 346:1 379:1 407:3 450:1 457:4 501:2 524:1 525:1 527:4 541:1 565:1 592:2 607:1 663:1 699:1 704:2 708:1 713:1 714:1 732:1 748:1 759:3 762:1 763:1 764:2 802:1 814:4 831:2 834:2 838:1 851:3 864:1 869:2 875:1 881:1 888:1 889:1 895:1 909:1 911:1 914:1 922:1 927:1 942:1 946:1 949:1 965:1 1009:1 1011:2 1021:1 1023:2 1044:1 1045:1 1046:3 1048:1 1051:4 1053:1 1055:1 1059:2 1094:3 1114:1 1124:1 1125:1 1127:1 1128:1 1141:1 1153:2 1155:1 1168:1 1171:3 1172:2 1217:1 1220:4 1226:1 1229:1 1256:1 1259:4 1264:3 1285:1 1293:1 1297:1 1299:1 1301:1 1321:1 1332:3 1356:1 1369:1 1381:3 1398:1 1401:4 1405:1 1413:1 1425:1 1448:1 1452:1 1507:6 1510:1 1517:4 1526:1 1535:1 1538:1 1545:2 1564:5 1589:1 1591:4 1603:1 1616:1 1617:3 1621:1 1622:1 1627:1 1628:1 1654:1 1659:1 1683:1 1701:1 1710:1 1731:4 1737:1 1754:1 1759:1 1766:7 1781:1 1785:1 1809:3 1818:1 1826:1 1834:1 1838:2 1842:1 1856:2 1879:1 1880:1 1882:2 1883:2 1885:2 1888:1 1891:1 1908:1 1910:2 1911:1 1912:3 1938:3 1941:1 1945:5 1947:1 1954:5 1955:1 1957:1 1963:3 1965:1 1968:4 1970:2 1973:2 1976:3 1991:1 2000:1 2015:1 2028:1 2040:2 2042:1 2049:1 2051:1 2053:1 2061:1 2065:1 2076:2 2077:1 2128:1 2131:1 2134:2 2149:1 2157:1 2164:1 2172:1 2178:1 2183:2 2193:1 2198:1 2226:2 2229:1 2234:1 2274:1 2275:2 2277:1 2286:2 2295:1 2298:1 2303:1 2321:3 2325:3 2366:2 2372:1 2383:3 2389:1 2390:3 2394:1 2419:1 2425:1 2426:1 2448:1 2451:3 2462:25 2464:1 2465:1 2480:2 2486:1 2504:1 2507:7 2513:2 2519:5 2530:1 2565:4 2587:2 2597:2 2627:3 2638:1 2704:1 2709:1 2731:3 2736:4 2742:2 2785:2 2798:2 2801:1 2802:5 2834:1 2837:1 2844:1 2848:2 2849:1 2854:1 2855:1 2886:6 2901:1 2919:2 2954:2 2979:1 2980:1 3002:1 3003:1 3020:3 3027:1 3041:1 3042:1 3049:2 3060:1 3061:1 3064:1 3072:1 3077:6 3090:1 3098:1 3116:1 3131:1 3132:1 3133:1 3147:2 3153:1 3173:1 3179:1 3184:7 3204:1 3206:2 3213:1 3221:3 3225:1 3231:1 3234:5 3245:1 3266:1 3287:1 3295:1 3297:4 3304:1 3312:1 3324:1 3326:1 3328:1 3332:1 3351:1 3353:1 3369:1 3372:1 3375:1 3407:2 3408:2 3414:1 3416:1 3462:1 3494:1 3499:1 3518:1 3522:1 3525:1 3546:1 3562:1 3572:1 3581:2 3598:1 3606:1 3612:1 3615:1 3618:2 3641:11 3649:1 3660:1 3678:2 3679:1 3707:1 3712:1 3735:1 3744:1 3766:1 3774:1 3776:1 3783:1 3786:1 3804:1 3831:1 3837:2 3841:1 3878:1 3886:3 3889:1 3907:1 3908:1 3909:2 3938:6 3963:1 3964:1 3966:1 3967:1 3976:1 3984:1 3995:4 3998:4 4005:2 4012:1 4046:1 4061:1 4062:2 4083:1 4093:1 4102:1 4107:14 4109:1 4136:2 4145:1 4154:1 4183:1 4190:1 4198:7 4211:1 4212:4 4213:1 4218:1 4221:1 4223:1 4224:1 4225:1 4229:1 4236:2 4237:1 4238:1 4244:2 4268:1 4325:1 4332:1 4340:1 4353:1 4354:1 4368:1 4371:1 4375:5 4376:1 4399:1 4400:1 4413:2 4423:1 4497:1 4498:2 4512:1 4518:2 4519:3 4539:1 4541:1 4551:1 4572:1 4586:1 4599:1 4609:1 4621:1 4622:1 4667:1 4668:1 4683:2 4684:2 4710:1 4724:1 4734:1 4759:1 4784:1 4792:1 4796:3 4814:1 4820:1 4821:1 4832:2 4853:1 4876:2 4889:2 4892:1 4894:2 4901:1 5000:1 5016:1 5044:1 5047:1 5049:2 5071:3 5088:2 5093:1 5095:1 5100:1 5192:1 5201:1 5203:1 5224:1 5247:1 5248:1 5253:1 5254:1 5258:1 5283:1 5308:2 5313:1 5322:4 5325:4 5326:1 5332:3 5337:2 5338:1 5339:1 5340:1 5342:1 5347:5 5349:7 5350:1 5352:3 5354:3 5451:8 5492:1 5500:1 5520:1 5529:1 5530:1 5533:2 5534:1 5535:1 5585:1 5595:1 5599:3 5604:1 5610:1 5674:1 5681:1 5683:1 5686:2 5688:1 5702:7 5711:1 5721:1 5726:1 5730:1 5746:2 5783:1 5788:2 5807:1 5813:2 5828:1 5865:3 5874:2 5878:1 5900:1 5931:1 5939:1 5947:3 5948:1 5952:1 5968:1 5998:1 6005:2 6034:1 6042:1 6045:1 6046:1 6047:2 6050:1 6056:1 6062:1 6071:1 6087:1 6112:1 6116:1 6126:1 6131:1 6139:2 6145:1 6175:1 6183:7 6194:1 6235:1 6237:2 6289:1 6293:1 6311:3 6355:1 6364:2 6365:3 6373:1 6378:1 6381:1 6382:1 6386:2 6405:1 6407:1 6409:1 6410:1 6416:2 6417:1 6429:32 6434:1 6448:1 6449:3 6451:4 6459:3 6468:1 6475:1 6486:1 6491:1 6492:1 6493:1 6525:1 6526:3 6532:1 6554:1 6560:1 6578:1 6619:2 6661:2 6667:1 6669:1 6675:1 6678:1 6707:1 6716:2 6723:4 6756:1 6781:1 6789:1 6794:1 6796:2 6804:1 6810:3 6824:2 6839:1 6843:1 6847:1 6854:4 6859:8 6908:3 6920:1 6937:1 6981:2 7016:1 7021:1 7027:2 7045:1 7054:3 7059:2 7068:7 7096:1 7097:1 7116:1 7122:1 7137:1 7157:1 7165:1 7166:1 7169:3 7170:1 7177:1 7178:2 7179:1 7181:1 7190:1 7194:1 7199:1 7202:1 7215:1 7216:1 7221:1 7235:1 7245:1 7246:2 7285:10 7303:1 7322:1 7360:1 7361:2 7379:1 7391:2 7400:8 7402:1 7409:1 7414:1 7418:2 7427:1 7430:1 7438:1 7443:1 7450:2 7456:3 7457:4 7459:2 7460:1 7461:1 7464:1 7465:2 7499:1 7510:1 7527:1 7553:1 7554:2 7571:4 7572:1 7581:6 7589:1 7614:2 7615:1 7622:1 7626:1 7638:1 7648:2 7656:1 7658:2 7682:1 7702:1 7712:3 7741:1 7742:1 7753:2 7754:1 7761:1 7768:1 7773:10 7782:1 7787:2 7799:1 7803:1 7804:1 7810:1 7820:1 7860:1 7868:2 7887:1 7905:1 7908:1 7912:1 7929:2 7930:1 7950:2 7964:1 7972:1 7979:1 7982:1 7988:5 8002:1 8005:1 8049:1 8065:6 8070:6 8081:6 8082:4 8099:4 8162:4 8171:2 8174:1 8175:1 8176:7 8195:1 8206:5 8207:1 8229:2 8234:8 8249:2 8256:1 8279:1 8282:1 8284:1 8285:4 8296:1 8304:1 8311:1 8317:1 8318:1 8328:3 8352:5 8355:1 8357:2 8359:1 8383:1 8387:2 8428:1 8433:1 8443:2 8469:6 8508:1 8567:1 8568:2 8574:1 8582:1 8583:1 8593:1 8597:3 8598:5 8603:1 8614:1 8623:1 8630:1 8635:1 8656:1 8657:1 8672:1 8681:2 8690:1 8692:1 8702:2 8714:3 8726:1 8727:2 8731:1 8736:1 8753:2 8759:7 8761:1 8771:1 8782:2 8783:1 8800:1 8802:6 8809:4 8812:1 8814:5 8831:2 8832:3 8833:3 8836:1 8878:2 8891:4 8900:3 8901:1 8911:1 8916:1 8944:1 8968:1 8979:1 8993:1 8996:1 8998:2 9000:1 9002:3 9022:1 9038:1 9058:1 9062:2 9063:1 9067:1 9084:1 9101:4 9102:5 9120:3 9127:1 9138:1 9142:2 9156:1 9166:1 9173:1 9181:1 9185:2 9222:1 9240:2 9252:6 9336:1 9346:1 9363:1 9377:1 9392:1 9400:1 9403:2 9419:1 9440:2 9441:1 9455:5 9462:2 9466:1 9488:4 9495:1 9497:1 9532:10 9536:1 9550:2 9562:2 9563:2 9575:2 9599:1 9607:1 9619:1 9622:2 9624:1 9645:1 9682:4 9683:1 9688:2 9690:1 9691:1 9700:1 9710:2 9716:2 9723:3 9729:1 9743:1 9772:1 9810:1 9818:1 9823:3 9824:1 9850:1 9859:2 9867:1 9877:1 9878:1 9881:1 9890:1 9891:1 9918:1 9922:1 9924:2 9944:1 9949:1 9963:1 9999:1 10022:3 10040:1 10042:2 10045:1 10052:2 10053:2 10054:2 10074:2 10090:5 10169:3 10176:1 10204:1 10211:1 10218:4 10232:1 10278:1 10316:1 10318:2 10319:1 10324:1 10329:1 10369:1 10384:4 10457:1 10465:1 10480:21 10502:1 10503:2 10531:2 10537:1 10551:1 10576:1 10597:1 10598:3 10648:2 10651:4 10659:1 10667:1 10707:1 10719:1 10722:1 10757:1 10758:1 10818:1 10823:2 10843:1 10847:9 10851:2 10862:1 10871:3 10879:1 10892:1 10897:1 10898:2 10912:1 10951:1 10953:1 10961:2 10962:2 10970:1 10974:4 10981:1 10985:1 10987:1 10993:1 11013:1 11016:1 11036:1 11046:1 11047:6 11050:1 11056:1 11062:1 11103:3 11118:2 11126:1 11159:2 11163:2 11173:1 11186:1 11187:2 11215:5 11223:3 11235:2 11273:4 11280:1 11283:1 11284:1 11286:1 11297:1 11301:1 11325:2 11329:1 11337:2 11341:1 11346:1 11352:1 11353:1 11368:1 11375:3 11394:1 11400:1 11405:1 11408:1 11415:1 11430:4 11447:2 11449:1 11451:2 11459:1 11463:1 11486:1 11509:1 11526:1 11584:2 11600:1 11607:1 11638:2 11640:1 11643:1 11653:1 11708:2 11712:3 11739:2 11747:1 11790:1 11792:1 11801:2 11807:1 11812:2 11813:1 11818:1 11832:1 11833:1 11843:1 11853:1 11864:3 11874:1 11876:1 11900:1 11906:2 11932:1 11937:1 11976:1 11979:1 11990:1 11992:1 11994:1 12038:1 12050:4 12078:1 12084:1 12099:3 12114:1 12115:1 12126:1 12131:1 12144:2 12146:1 12181:1 12182:1 12184:1 12218:1 12229:1 12245:1 12276:2 12289:1 12323:1 12328:1 12338:1 12346:6 12364:2 12365:2 12372:1 12375:1 12381:4 12387:1 12396:1 12416:1 12425:1 12444:1 12486:2 12488:2 12490:1 12491:1 12512:1 12555:1 12556:3 12575:3 12582:1 12583:1 12585:1 12614:4 12623:1 12641:1 12652:2 12662:3 12685:1 12723:2 12739:2 12740:1 12741:4 12748:1 12754:1 12797:3 12798:1 12800:5 12801:1 12837:1 12839:1 12842:1 12843:1 12846:1 12881:1 12930:1 12942:2 12943:1 12945:2 12946:1 12950:1 12961:1 12985:2 12988:5 12989:1 13014:1 13025:1 13032:1 13033:1 13058:2 13094:1 13104:3 13125:1 13128:1 13142:1 13153:7 13156:1 13181:1 13205:1 13207:1 13212:1 13225:3 13238:1 13259:1 13288:1 13295:2 13304:1 13311:2 13328:7 13333:1 13336:1 13345:1 13362:1 13390:2 13406:1 13417:1 13428:1 13434:1 13437:1 13445:3 13449:2 13452:1 13453:1 13462:1 13470:1 13471:1 13482:1 13489:3 13502:1 13505:2 13525:1 13561:1 13590:1 13620:1 13637:3 13647:3 13662:2 13664:2 13680:3 13682:1 13688:1 13719:3 13729:1 13733:2 13760:1 13765:2 13766:1 13778:1 13803:6 13807:2 13819:7 13835:4 13857:1 13858:1 13865:1 13871:1 13876:1 13888:1 13895:2 13908:2 13926:1 13928:3 13929:1 13931:1 13936:1 13947:1 13970:1 13979:2 13986:1 13989:3 13994:1 13995:1 13996:2 14000:1 14024:1 14026:2 14030:1 14031:1 14035:2 14050:1 14051:4 14071:2 14073:1 14077:1 14088:1 14097:1 14119:1 14127:2 14130:1 14178:6 14204:2 14207:1 14227:1 14229:3 14231:2 14252:1 14262:1 14279:1 14286:1 14300:2 14317:1 14329:1 14332:2 14334:1 14341:1 14365:1 14366:6 14371:3 14380:1 14382:6 14383:2 14386:1 14387:2 14391:2 14395:1 14403:1 14404:1 14417:1 14422:2 14434:1 14443:1 14465:2 14476:4 14477:3 14496:9 14513:1 14516:6 14522:1 14541:1 14549:1 14556:1 14576:1 14577:1 14582:1 14622:1 14630:4 14635:1 14648:1 14649:1 14650:1 14654:1 14657:1 14665:2 14672:2 14677:6 14678:3 14691:2 14696:1 14711:1 14717:1 14719:3 14727:1 14734:1 14740:4 14744:1 14747:4 14762:3 14763:1 14764:1 14765:1 14768:1 14774:1 14776:1 14785:3 14802:1 14804:1 14807:1 14810:1 14824:1 14837:4 14844:1 14849:2 14851:1 14864:1 14871:1 14877:1 14882:1 14885:3 14934:2 14946:3 14956:2 14962:1 14976:1 14981:1 14987:1 14991:1 15002:1 15030:2 15035:1 15080:2 15087:1 15105:2 15111:1 15123:1 15134:9 15135:1 15137:3 15142:1 15160:1 15169:1 15171:2 15183:1 15184:3 15197:1 15201:1 15205:7 15233:1 15240:1 15251:1 15269:3 15282:3 15283:1 15287:1 15307:27 15312:3 15344:1 15354:2 15360:1 15396:3 15405:3 15444:1 15445:2 15452:1 15460:3 15480:1275 15483:2 15492:2 15496:1 15508:1 15556:2 15560:1 15568:1 15570:1 15574:1 15591:1 15595:1 15599:2 15610:3 15617:2 15623:1 15625:1 15638:1 15639:2 15642:2 15646:1 15647:1 15649:3 15652:1 15655:3 15658:1 15661:1 15662:5 15684:1 15723:1 15738:1 15742:2 15743:1 15763:3 15776:9 15790:1 15814:1 15816:2 15853:1 15871:1 15875:1 15884:1 15929:2 15935:1 15943:1 15949:3 15955:1 15997:3 16008:1 16036:1 16042:6 16051:1 16054:4 16074:1 16079:1 16102:1 16103:1 16111:1 16115:4 16118:1 16121:10 16147:1 16151:1 16152:2 16154:4 16161:1 16171:1 16187:1 16206:1 16228:1 16254:1 16262:3 16270:1 16273:2 16274:1 16302:1 16306:2 16308:1 16310:1 16313:1 16318:1 16341:1 16370:1 16387:4 16402:1 16409:4 16426:1 16428:1 16438:1 16474:1 16479:1 16484:4 16485:4 16488:1 16495:1 16500:2 16503:2 16506:1 16548:1 16577:2 16593:2 16603:1 16605:1 16625:1 16630:3 16652:2 16654:3 16659:1 16670:1 16679:1 16681:4 16682:1 16693:1 16718:1 16726:2 16727:1 16729:1 16732:1 16735:1 16743:1 16744:2 16753:1 16754:1 16761:1 16763:1 16778:2 16780:1 16787:2 16809:1 16815:4 16853:1 16855:2 16861:3 16862:2 16867:2 16871:1 16875:1 16882:1 16895:1 16897:1 16921:4 16964:1 16970:1 16971:1 16975:1 17001:1 17043:1 17048:1 17057:2 17058:1 17066:1 17085:2 17113:1 17136:2 17166:1 17175:1 17181:1 17185:1 17188:1 17237:4 17246:2 17248:1 17269:1 17275:5 17276:2 17298:1 17303:1 17311:3 17316:2 17320:1 17331:1 17346:2 17347:1 17357:1 17362:5 17366:2 17367:1 17387:7 17403:1 17404:1 17424:2 17470:1 17485:1 17491:1 17499:1 17520:1 17553:2 17569:1 17580:1 17602:1 17605:1 17608:1 17616:2 17623:3 17626:1 17631:1 17649:1 17660:1 17678:4 17706:1 17712:1 17725:2 17730:1 17735:1 17768:1 17772:2 17774:1 17792:1 17808:1 17822:1 17827:1 17834:2 17838:1 17839:1 17853:1 17855:4 17865:1 17890:1 17908:1 17910:1 17916:7 17919:1 17921:1 17922:1 17924:1 17927:1 17943:2 17955:4 17958:4 17962:2 17969:1 17975:1 17978:1 17979:1 17980:1 17983:1 17995:3 18009:3 18016:1 18025:2 18028:1 18035:1 18038:2 18041:1 18043:5 18053:2 18058:1 18064:1 18069:1 18079:1 18092:1 18093:5 18116:1 18130:1 18146:1 18166:3 18168:3 18174:1 18181:1 18189:1 18197:1 18208:2 18210:2 18248:1 18266:1 18339:1 18356:1 18366:1 18367:1 18369:2 18370:2 18375:2 18378:1 18379:1 18406:1 18410:1 18414:1 18423:1 18436:1 18447:1 18454:1 18474:1 18478:1 18485:1 18491:1 18498:1 18511:3 18513:1 18523:1 18539:1 18567:1 18568:1 18578:1 18587:1 18616:3 18623:1 18629:1 18631:1 18654:1 18664:1 18665:1 18674:2 18702:4 18704:1 18727:2 18732:7 18742:1 18748:1 18792:3 18800:1 18816:1 18856:5 18857:1 18862:5 18880:1 18881:2 18882:1 18884:1 18901:2 18929:1 18931:2 18934:1 18941:4 18949:1 19011:1 19024:1 19033:4 19056:1 19059:1 19060:2 19080:1 19098:3 19108:3 19126:2 19134:2 19136:2 19146:1 19148:1 19153:2 19172:1 19193:1 19205:3 19207:2 19210:5 19226:2 19230:1 19249:1 19250:1 19275:2 19292:6 19293:1 19294:1 19302:1 19303:1 19322:1 19328:2 19331:1 19335:1 19337:5 19339:2 19365:1 19386:1 19392:2 19395:2 19402:1 19422:1 19425:1 19438:2 19440:1 19443:3 19469:1 19471:3 19475:1 19487:4 19507:1 19517:1 19522:1 19544:2 19559:3 19561:1 19562:1 19564:1 19586:1 19603:1 19610:1 19612:1 19613:1 19637:1 19644:1 19683:1 19702:1 19706:1 19716:1 19730:1 19745:1 19762:5 19767:1 19773:1 19792:1 19804:1 19805:1 19810:5 19837:1 19847:1 19897:1 19902:1 19912:1 19928:2 19962:1 19966:2 20000:1 20004:1 20015:1 20040:3 20080:1 20084:4 20096:2 20103:1 20109:3 20118:1 20138:1 20165:1 20208:1 20223:1 20224:1 20226:1 20239:1 20251:1 20253:1 20258:2 20266:1 20267:1 20270:2 20275:1 20278:1 20304:1 20316:1 20317:2 20318:6 20326:1 20327:2 20331:3 20332:2 20334:2 20336:1 20337:3 20338:1 20341:1 20343:4 20344:5 20350:1 20353:1 20371:1 20373:1 20378:3 20383:3 20398:4 20399:2 20406:1 20411:1 20413:1 20435:1 20436:1 20441:1 20442:6 20447:5 20448:2 20464:1 20469:1 20470:1 20502:1 20505:1 20512:2 20529:2 20560:1 20576:3 20595:1 20619:1 20621:1 20627:1 20631:4 20659:1 20668:5 20686:1 20694:1 20696:1 20727:1 20733:1 20738:3 20742:6 20761:4 20762:1 20785:7 20818:1 20829:4 20853:1 20871:1 20872:2 20874:1 20887:1 20890:1 20949:11 20962:4 20973:2 20995:1 21012:1 21021:1 21056:1 21062:1 21065:2 21089:1 21100:1 21107:2 21108:5 21111:1 21112:1 21123:2 21134:1 21139:1 21146:1 21150:4 21173:1 21198:3 21199:3 21208:2 21209:2 21218:1 21219:1 21224:1 21225:2 21228:1 21245:1 21249:1 21293:2 21337:3 21350:1 21380:1 21473:1 21480:1 21485:1 21529:2 21539:4 21543:1 21557:5 21561:2 21582:3 21584:1 21586:1 21588:1 21602:2 21610:7 21613:1 21627:1 21630:1 21633:1 21642:2 21645:1 21650:1 21684:1 21697:1 21703:1 21718:1 21723:1 21741:1 21760:27 21773:4 21774:1 21782:3 21783:1 21784:1 21787:2 21812:1 21830:1 21831:2 21838:1 21844:1 21856:1 21868:1 21878:1 21887:1 21904:1 21914:1 21916:5 21922:1 21926:1 21927:1 21944:1 21995:3 21996:1 21997:1 21998:1 22007:1 22010:1 22024:1 22027:2 22037:1 22041:1 22048:3 22080:1 22109:1 22119:1 22123:1 22163:7 22179:1 22208:1 22218:1 22223:2 22229:1 22245:3 22247:1 22256:1 22263:1 22279:1 22281:1 22315:1 22328:1 22331:7 22360:1 22383:1 22410:2 22415:1 22417:1 22431:1 22434:2 22465:1 22466:2 22472:1 22481:1 22491:1 22493:1 22504:1 22513:1 22517:1 22520:4 22534:1 22548:1 22551:4 22561:1 22585:1 22598:1 22601:1 22611:4 22617:1 22644:1 22646:2 22647:1 22655:1 22662:1 22669:3 22690:4 22699:6 22707:1 22709:1 22715:1 22730:1 22734:2 22736:1 22749:2 22755:4 22756:1 22759:1 22760:2 22761:1 22786:3 22787:1 22795:2 22802:1 22803:4 22809:1 22812:1 22815:1 22820:1 22822:1 22828:1 22830:1 22831:1 22846:1 22864:1 22865:1 22866:1 22874:3 22876:1 22895:1 22905:2 22914:1 22937:1 22942:1 22982:1 23000:1 23001:1 23011:1 23027:4 23039:1 23064:1 23075:1 23076:1 23084:1 23089:6 23109:5 23125:1 23127:2 23151:1 23167:1 23175:1 23188:1 23237:3 23248:1 23256:1 23263:1 23264:1 23284:2 23293:1 23295:1 23298:2 23299:1 23300:1 23305:1 23314:3 23333:1 23335:1 23344:3 23349:1 23360:2 23378:1 23384:2 23385:1 23392:1 23393:2 23404:4 23413:1 23416:1 23424:1 23430:15 23431:1 23433:1 23456:1 23466:4 23491:1 23521:1 23524:1 23551:2 23558:1 23586:3 23588:1 23592:1 23603:4 23610:4 23616:3 23623:1 23626:4 23646:1 23647:4 23655:3 23659:2 23676:1 23685:1 23703:1 23712:1 23713:1 23720:1 23733:1 23736:1 23739:2 23767:1 23768:1 23775:6 23777:2 23784:1 23797:2 23835:4 23836:1 23840:1 23858:2 23862:1 23866:4 23891:1 23923:1 23940:2 23967:1 23971:3 23974:2 23993:1 23994:1 24003:1 24004:1 24039:2 24070:2 24076:1 24081:1 24095:1 24096:1 24100:1 24126:2 24128:1 24129:1 24132:1 24137:1 24143:1 24164:1 24168:1 24170:4 24179:1 24213:1 24251:1 24257:1 24265:1 24266:6 24271:1 24286:1 24296:1 24307:1 24350:1 24370:2 24373:1 24385:1 24394:1 24401:6 24411:3 24438:1 24463:1 24476:5 24477:1 24482:1 24483:3 24487:2 24503:5 24525:1 24530:3 24536:2 24538:1 24568:1
14 30:1 56:1 59:1 71:1 75:1 96:2 146:1 157:1 163:1 185:4 186:7 188:1 197:1 204:1 216:1 219:1 223:1 224:1 230:1 239:1 254:4 256:1 265:1 295:1 296:5 314:1 318:2 320:2 323:1 336:1 346:1 379:1 407:3 450:1 457:4 501:2 524:1 525:1 527:4 541:1 545:1 565:1 592:2 607:1 663:1 699:1 704:2 708:1 713:1 714:1 724:1 732:1 748:1 759:3 762:1 763:1 764:2 802:1 814:5 831:2 834:2 838:1 851:3 864:1 869:2 875:1 881:1 888:1 889:1 895:1 909:1 911:1 914:1 922:1 927:1 942:1 946:1 949:1 965:1 980:1 1009:1 1011:2 1021:1 1023:2 1044:1 1045:1 1046:3 1048:1 1051:5 1053:1 1055:1 1059:2 1094:3 1114:1 1124:1 1125:1 1127:1 1128:1 1141:1 1153:2 1155:1 1168:1 1171:3 1172:2 1217:1 1220:4 1226:1 1229:2 1256:1 1259:4 1264:4 1285:1 1293:1 1297:1 1299:1 1301:1 1321:1 1332:3 1356:1 1360:2 1369:1 1381:3 1398:1 1401:4 1405:1 1413:1 1425:1 1448:1 1452:1 1470:1 1507:6 1510:1 1517:5 1526:1 1535:1 1538:1 1545:2 1564:5 1589:1 1591:4 1603:1 1616:1 1617:3 1621:1 1622:1 1627:1 1628:1 1654:1 1659:1 1683:1 1701:1 1710:1 1731:4 1737:1 1754:1 1759:1 1766:7 1781:2 1785:1 1809:3 1818:1 1826:2 1834:1 1838:2 1842:1 1846:2 1856:2 1874:1 1879:1 1880:1 1882:2 1883:2 1885:2 1888:1 1891:1 1908:1 1910:2 1911:1 1912:3 1938:3 1941:1 1945:5 1947:1 1954:5 1955:1 1957:1 1963:3 1965:1 1968:4 1970:2 1973:2 1976:3 1991:1 2000:1 2015:1 2028:1 2040:2 2042:1 2047:1 2049:1 2051:1 2053:1 2061:1 2065:2 2076:2 2077:1 2128:1 2131:1 2134:2 2149:1 2157:1 2164:1 2172:1 2178:1 2183:2 2193:1 2198:1 2226:2 2229:1 2234:2 2274:1 2275:2 2277:1 2286:2 2295:1 2298:1 2303:1 2321:3 2325:3 2333:1 2366:3 2372:1 2380:1 2383:3 2389:1 2390:5 2394:1 2419:1 2425:1 2426:1 2448:1 2451:3 2462:27 2464:1 2465:1 2480:2 2486:1 2504:1 2507:7 2513:2 2519:6 2530:1 2565:5 2576:1 2587:2 2597:2 2627:3 2638:1 2704:1 2709:1 2731:3 2736:5 2742:2 2779:2 2785:2 2798:2 2801:1 2802:5 2826:1 2834:1 2837:1 2844:1 2848:3 2849:1 2854:1 2855:1 2886:6 2901:1 2919:2 2954:2 2979:1 2980:1 3002:1 3003:1 3020:3 3027:1 3041:1 3042:1 3049:2 3060:1 3061:1 3064:1 3072:1 3077:6 3090:1 3098:1 3116:1 3131:1 3132:1 3133:1 3147:2 3149:1 3153:1 3173:1 3179:1 3184:8 3204:1 3206:2 3213:1 3221:3 3225:1 3231:1 3234:5 3245:1 3266:1 3287:1 3295:1 3297:4 3304:1 3312:1 3324:1 3326:1 3328:1 3332:1 3351:1 3353:1 3369:1 3372:1 3375:1 3407:2 3408:2 3414:1 3416:1 3462:1 3494:1 3499:1 3518:1 3522:1 3525:1 3546:1 3562:1 3572:1 3581:2 3588:1 3598:1 3606:1 3612:1 3615:1 3618:2 3641:12 3649:1 3660:1 3678:2 3679:1 3707:1 3712:1 3735:1 3744:1 3766:1 3774:1 3776:1 3783:1 3786:1 3804:1 3831:1 3837:2 3841:1 3878:1 3886:3 3889:1 3907:1 3908:1 3909:2 3938:6 3963:1 3964:1 3966:1 3967:1 3976:1 3984:1 3995:4 3998:4 4005:2 4012:1 4046:1 4061:1 4062:2 4083:1 4091:2 4093:1 4102:1 4107:15 4109:1 4136:2 4145:1 4154:1 4183:1 4190:1 4198:9 4211:1 4212:4 4213:1 4218:1 4221:1 4223:1 4224:1 4225:1 4229:1 4234:1 4236:3 4237:1 4238:1 4244:3 4268:1 4325:1 4332:1 4340:1 4353:1 4354:1 4368:1 4371:1 4375:5 4376:1 4399:1 4400:1 4413:2 4423:1 4471:1 4497:1 4498:2 4512:1 4518:3 4519:3 4539:1 4541:1 4551:1 4572:1 4586:1 4587:1 4599:2 4609:1 4621:1 4622:1 4667:1 4668:1 4683:2 4684:2 4710:1 4724:1 4734:1 4759:1 4773:1 4784:1 4792:1 4796:3 4814:1 4820:1 4821:2 4832:2 4853:1 4876:2 4889:2 4892:1 4894:2 4901:1 5000:1 5016:1 5044:1 5047:1 5049:3 5071:3 5088:2 5093:1 5095:1 5100:1 5192:1 5201:1 5203:1 5224:1 5247:1 5248:1 5253:1 5254:1 5258:1 5283:1 5308:2 5313:1 5322:4 5325:4 5326:1 5332:5 5337:2 5338:1 5339:1 5340:1 5342:1 5347:5 5349:8 5350:1 5352:3 5354:3 5451:8 5492:1 5500:1 5520:1 5529:1 5530:1 5533:2 5534:1 5535:1 5585:1 5595:1 5599:3 5604:1 5610:2 5674:1 5681:1 5683:1 5686:2 5688:1 5702:7 5711:1 5721:1 5726:1 5730:1 5746:3 5783:1 5788:2 5807:1 5813:2 5828:1 5865:3 5874:2 5878:2 5900:1 5931:1 5939:1 5947:4 5948:1 5952:1 5968:1 5998:1 6005:2 6034:1 6042:1 6045:1 6046:1 6047:2 6049:1 6050:1 6056:1 6062:1 6071:1 6087:1 6112:1 6116:1 6126:1 6131:1 6139:2 6145:1 6175:1 6183:7 6194:1 6235:1 6237:2 6289:1 6293:1 6311:3 6355:1 6364:2 6365:4 6373:1 6378:1 6381:1 6382:1 6386:2 6405:1 6407:1 6409:1 6410:1 6416:2 6417:1 6429:32 6434:1 6448:1 6449:3 6451:4 6459:3 6468:1 6475:1 6486:1 6491:1 6492:1 6493:1 6525:1 6526:3 6532:1 6554:1 6560:1 6578:1 6597:1 6616:1 6619:2 6661:2 6667:1 6669:1 6675:1 6678:1 6707:1 6716:2 6723:4 6756:1 6781:1 6789:1 6794:1 6796:2 6804:1 6810:3 6824:4 6839:1 6843:1 6847:1 6854:4 6859:10 6908:4 6920:1 6937:1 6981:3 7016:1 7021:1 7027:2 7045:1 7054:3 7059:2 7068:7 7096:1 7097:1 7116:1 7122:1 7137:1 7157:2 7165:1 7166:1 7169:3 7170:1 7177:1 7178:2 7179:1 7181:1 7190:1 7194:1 7199:1 7202:1 7215:1 7216:1 7221:1 7235:1 7245:1 7246:2 7285:11 7303:1 7322:1 7360:1 7361:2 7379:1 7391:2 7400:9 7402:1 7409:1 7414:1 7418:2 7427:1 7430:1 7438:1 7443:1 7450:2 7456:3 7457:5 7459:2 7460:1 7461:1 7464:1 7465:2 7499:1 7510:1 7527:1 7553:1 7554:2 7571:4 7572:1 7581:6 7589:1 7614:2 7615:1 7622:1 7626:1 7638:1 7648:2 7656:1 7658:2 7670:1 7682:1 7702:1 7712:3 7741:1 7742:1 7753:2 7754:1 7761:1 7768:1 7773:11 7782:1 7787:2 7799:1 7803:1 7804:1 7810:1 7820:1 7860:1 7868:2 7887:1 7905:1 7908:1 7912:1 7929:2 7930:1 7950:2 7964:1 7972:1 7979:1 7982:1 7988:5 8002:1 8005:1 8049:1 8065:7 8070:6 8081:7 8082:4 8099:4 8162:4 8171:2 8174:1 8175:1 8176:7 8195:1 8206:5 8207:1 8229:2 8230:1 8234:9 8249:2 8256:1 8279:1 8282:1 8284:1 8285:4 8296:1 8304:1 8311:1 8317:1 8318:1 8328:4 8352:5 8355:1 8357:2 8359:1 8383:1 8387:3 8428:1 8433:1 8443:2 8469:6 8508:1 8567:1 8568:2 8574:1 8582:1 8583:1 8593:1 8597:3 8598:5 8603:1 8614:1 8623:1 8630:1 8635:1 8656:2 8657:1 8672:1 8681:2 8690:1 8692:1 8702:2 8714:3 8726:1 8727:3 8731:1 8736:1 8753:3 8759:7 8761:1 8771:1 8782:2 8783:1 8800:1 8802:6 8809:4 8812:1 8814:5 8831:2 8832:3 8833:3 8836:1 8878:2 8891:4 8900:3 8901:1 8910:1 8911:1 8916:1 8944:1 8968:1 8979:1 8983:1 8993:1 8996:1 8998:2 9000:1 9002:3 9022:1 9038:1 9058:1 9062:2 9063:1 9067:1 9084:1 9101:4 9102:5 9120:3 9127:1 9138:1 9142:2 9156:1 9166:1 9173:1 9181:1 9185:2 9222:1 9240:2 9252:6 9336:1 9346:1 9363:1 9377:1 9392:1 9400:1 9403:2 9419:1 9440:2 9441:1 9455:5 9462:2 9466:1 9488:4 9495:1 9497:1 9532:11 9536:1 9550:2 9562:2 9563:2 9575:2 9599:1 9607:1 9619:1 9622:2 9624:1 9645:1 9653:1 9682:4 9683:1 9688:2 9690:1 9691:1 9698:1 9700:1 9710:2 9716:2 9723:3 9729:1 9738:1 9743:1 9772:1 9810:1 9818:1 9823:3 9824:1 9850:1 9859:2 9867:1 9877:1 9878:1 9881:1 9890:1 9891:1 9918:1 9922:1 9924:3 9944:1 9949:1 9963:1 9999:1 10022:3 10040:1 10042:2 10045:1 10052:2 10053:2 10054:2 10074:2 10090:5 10169:3 10176:1 10204:1 10211:1 10218:4 10232:1 10278:1 10316:1 10318:2 10319:1 10324:1 10329:1 10369:1 10384:4 10457:1 10465:1 10480:23 10502:1 10503:3 10531:2 10537:1 10551:1 10576:1 10597:1 10598:3 10648:2 10651:4 10659:1 10667:1 10707:1 10719:1 10722:1 10725:2 10757:1 10758:1 10792:1 10818:1 10823:2 10843:1 10847:10 10851:2 10862:1 10871:3 10879:1 10892:1 10897:1 10898:2 10912:1 10951:1 10952:1 10953:1 10961:3 10962:2 10970:1 10974:5 10981:1 10985:2 10987:1 10993:1 11013:1 11016:1 11036:1 11046:1 11047:6 11050:1 11056:1 11062:1 11103:3 11118:2 11126:1 11159:2 11163:2 11168:2 11173:1 11186:1 11187:4 11211:1 11215:5 11223:3 11235:2 11273:4 11280:1 11283:1 11284:1 11286:1 11297:1 11301:1 11325:3 11329:1 11337:3 11341:1 11346:1 11352:1 11353:1 11368:2 11375:4 11394:1 11400:1 11405:2 11408:1 11415:1 11430:4 11447:2 11449:1 11451:2 11459:1 11463:1 11486:1 11509:1 11526:1 11584:2 11600:1 11607:1 11638:2 11640:1 11643:1 11653:1 11708:2 11712:3 11739:2 11747:1 11790:1 11792:1 11801:2 11807:1 11812:2 11813:1 11818:1 11823:1 11832:1 11833:1 11843:1 11853:1 11864:3 11874:1 11876:1 11900:1 11906:2 11932:1 11937:1 11974:1 11976:1 11979:1 11990:1 11992:1 11994:1 12038:1 12050:4 12078:1 12084:1 12099:4 12114:1 12115:1 12126:1 12131:1 12144:2 12146:1 12181:1 12182:1 12184:1 12218:1 12229:1 12245:1 12276:2 12289:1 12323:1 12328:1 12338:1 12346:6 12364:2 12365:2 12372:1 12375:1 12381:4 12387:1 12396:1 12416:1 12425:1 12444:1 12486:2 12488:2 12490:1 12491:1 12512:1 12555:1 12556:3 12575:3 12582:1 12583:1 12585:1 12586:1 12614:4 12623:1 12641:1 12652:2 12662:3 12685:1 12698:1 12723:4 12739:2 12740:1 12741:4 12748:1 12754:1 12797:3 12798:2 12800:5 12801:1 12837:1 12839:1 12842:1 12843:1 12846:2 12881:1 12930:1 12942:2 12943:1 12945:2 12946:1 12950:1 12961:1 12985:2 12988:5 12989:1 13014:2 13025:1 13032:1 13033:1 13058:2 13094:1 13104:3 13125:1 13128:1 13140:1 13142:1 13153:8 13156:1 13181:1 13205:1 13207:1 13212:1 13225:3 13238:1 13259:1 13288:1 13295:2 13304:1 13311:2 13328:8 13333:1 13334:1 13336:1 13345:1 13362:1 13390:2 13406:1 13417:1 13428:1 13434:1 13435:1 13437:1 13445:3 13446:1 13449:2 13452:1 13453:1 13462:1 13470:1 13471:1 13482:1 13489:3 13502:1 13505:2 13525:1 13535:1 13561:1 13590:1 13620:1 13637:4 13647:3 13662:3 13664:2 13680:4 13682:2 13688:1 13719:3 13729:1 13733:2 13760:1 13765:3 13766:1 13778:1 13803:6 13807:2 13819:8 13835:4 13857:1 13858:1 13865:1 13871:1 13876:1 13888:1 13895:2 13908:2 13926:1 13928:3 13929:1 13931:1 13936:1 13947:1 13970:1 13979:2 13986:1 13989:3 13994:1 13995:1 13996:2 14000:1 14024:1 14026:2 14030:1 14031:1 14035:2 14050:1 14051:4 14071:2 14073:1 14077:1 14088:1 14097:1 14119:1 14127:2 14130:1 14178:6 14204:2 14207:1 14227:1 14229:3 14231:2 14252:1 14262:1 14279:1 14286:1 14300:2 14317:1 14329:1 14332:2 14334:1 14341:1 14365:2 14366:6 14371:3 14380:1 14382:6 14383:2 14386:1 14387:2 14391:2 14395:1 14403:1 14404:1 14417:1 14422:2 14434:1 14443:1 14465:2 14476:4 14477:3 14496:9 14513:1 14516:6 14522:1 14541:1 14549:1 14553:1 14556:1 14576:1 14577:1 14582:1 14622:1 14630:4 14635:1 14648:1 14649:1 14650:1 14654:1 14657:1 14665:2 14672:2 14677:6 14678:3 14691:2 14696:1 14711:1 14717:1 14719:3 14727:1 14734:1 14740:4 14744:1 14747:4 14762:3 14763:1 14764:1 14765:1 14768:1 14774:1 14776:1 14785:4 14802:1 14804:1 14807:1 14810:1 14824:1 14837:4 14844:1 14849:2 14851:1 14864:2 14871:1 14877:1 14882:1 14885:4 14934:2 14938:1 14946:3 14956:2 14962:1 14976:1 14981:1 14987:1 14991:1 15002:1 15030:2 15035:1 15080:2 15087:1 15090:1 15105:2 15111:1 15123:1 15134:9 15135:1 15137:4 15142:1 15160:1 15169:1 15171:3 15183:1 15184:3 15197:1 15201:2 15205:8 15233:2 15240:1 15251:1 15269:3 15282:3 15283:1 15287:1 15307:27 15312:4 15344:1 15354:2 15360:1 15374:1 15396:4 15405:3 15444:1 15445:2 15452:1 15460:3 15480:1324 15483:2 15492:2 15496:1 15508:1 15556:2 15560:1 15568:1 15570:1 15574:1 15591:1 15595:1 15599:2 15610:3 15617:2 15623:1 15625:1 15638:2 15639:2 15642:2 15646:1 15647:1 15649:4 15652:1 15655:3 15658:1 15661:1 15662:5 15684:1 15723:1 15738:1 15742:2 15743:1 15763:3 15776:9 15790:1 15814:1 15816:2 15853:1 15871:1 15875:1 15884:1 15929:2 15935:1 15943:1 15949:3 15955:1 15997:4 16008:1 16036:1 16042:6 16051:1 16054:4 16074:1 16079:1 16102:1 16103:1 16111:1 16115:4 16118:1 16121:10 16147:1 16151:1 16152:3 16154:4 16161:1 16171:1 16187:1 16206:1 16228:1 16254:1 16262:3 16270:1 16273:2 16274:1 16302:1 16306:2 16308:1 16310:1 16313:1 16318:1 16341:1 16370:1 16387:4 16402:1 16409:4 16426:1 16428:1 16438:1 16474:1 16479:1 16484:4 16485:4 16488:1 16495:1 16500:2 16503:2 16506:1 16509:1 16548:1 16577:2 16593:2 16603:1 16605:1 16625:1 16630:3 16652:2 16654:3 16659:1 16670:1 16679:1 16681:5 16682:1 16693:1 16718:1 16726:2 16727:1 16729:1 16732:1 16735:1 16743:1 16744:2 16753:1 16754:1 16761:1 16763:1 16778:2 16780:1 16787:2 16809:1 16815:4 16853:1 16855:2 16861:3 16862:2 16867:2 16871:1 16875:1 16882:1 16895:1 16897:1 16921:5 16964:1 16970:1 16971:1 16975:1 17001:1 17030:1 17037:1 17043:1 17048:1 17057:2 17058:1 17066:1 17085:2 17113:1 17136:2 17137:2 17166:1 17175:1 17181:1 17185:1 17188:1 17237:4 17246:2 17248:1 17269:1 17275:5 17276:3 17298:1 17303:1 17311:3 17316:2 17320:1 17331:2 17346:2 17347:1 17357:1 17362:5 17366:2 17367:1 17387:7 17403:1 17404:1 17424:2 17470:1 17485:2 17491:1 17499:1 17520:1 17553:2 17569:1 17580:1 17602:1 17605:1 17608:1 17616:2 17623:3 17626:1 17631:1 17649:1 17660:1 17678:4 17706:1 17712:1 17724:2 17725:2 17730:1 17735:2 17768:1 17772:2 17774:1 17792:1 17808:1 17822:1 17827:1 17834:2 17838:1 17839:1 17853:1 17855:4 17865:1 17890:1 17908:1 17910:1 17916:8 17919:1 17921:1 17922:1 17924:1 17927:1 17943:2 17955:4 17958:4 17962:2 17969:1 17975:1 17978:1 17979:1 17980:1 17983:1 17995:3 18009:3 18016:1 18025:2 18028:1 18035:1 18038:2 18041:1 18043:5 18053:3 18058:1 18064:1 18069:1 18079:1 18092:1 18093:5 18116:1 18130:1 18146:1 18166:3 18168:3 18174:1 18177:1 18181:1 18189:1 18197:1 18208:2 18210:2 18248:1 18266:1 18313:2 18339:1 18356:1 18366:1 18367:1 18369:2 18370:2 18375:3 18378:1 18379:1 18406:1 18410:1 18414:1 18423:1 18436:1 18447:1 18454:1 18474:1 18478:1 18485:2 18491:1 18498:1 18511:3 18513:1 18523:1 18539:1 18567:1 18568:1 18578:1 18580:1 18587:1 18616:3 18623:1 18629:1 18631:1 18654:1 18664:1 18665:1 18674:2 18702:4 18704:1 18727:2 18732:8 18736:1 18742:1 18748:1 18792:3 18800:1 18816:1 18856:5 18857:1 18862:5 18880:1 18881:3 18882:1 18884:1 18901:2 18929:1 18930:1 18931:2 18934:1 18941:4 18949:1 19011:1 19024:1 19033:4 19056:1 19059:1 19060:2 19080:1 19085:1 19098:3 19108:3 19126:2 19134:2 19136:2 19146:1 19148:1 19153:2 19172:1 19193:1 19205:3 19207:3 19210:5 19226:3 19230:1 19249:1 19250:1 19275:2 19292:6 19293:1 19294:1 19302:2 19303:1 19322:1 19328:2 19331:1 19335:1 19337:5 19339:2 19365:1 19386:1 19392:2 19395:2 19402:1 19422:1 19425:1 19438:2 19440:1 19443:3 19453:1 19469:1 19471:3 19475:1 19487:4 19507:1 19517:1 19522:1 19544:2 19559:3 19561:1 19562:1 19564:1 19586:1 19603:1 19610:1 19612:1 19613:1 19637:1 19644:1 19683:1 19702:1 19706:1 19716:1 19730:1 19745:1 19762:5 19767:1 19773:1 19792:1 19804:1 19805:1 19810:5 19813:1 19837:1 19847:1 19897:1 19901:1 19902:1 19912:1 19928:2 19962:1 19966:2 20000:1 20004:1 20015:1 20040:3 20080:1 20084:4 20096:2 20103:1 20109:3 20111:1 20118:1 20138:1 20165:1 20208:1 20223:1 20224:1 20226:1 20239:1 20251:1 20253:1 20258:2 20266:1 20267:1 20270:2 20275:1 20278:1 20304:1 20316:1 20317:2 20318:7 20326:1 20327:2 20331:3 20332:2 20334:3 20336:1 20337:3 20338:1 20341:1 20343:4 20344:5 20350:1 20353:1 20371:1 20373:1 20378:3 20383:3 20398:4 20399:2 20406:1 20411:1 20413:1 20435:1 20436:1 20441:1 20442:7 20447:6 20448:2 20464:1 20469:1 20470:1 20502:1 20505:1 20512:2 20529:2 20560:1 20576:4 20595:1 20619:1 20621:1 20627:1 20631:4 20659:1 20668:5 20686:1 20694:1 20696:1 20727:1 20733:1 20738:3 20742:6 20761:4 20762:1 20785:8 20818:1 20829:5 20853:1 20871:1 20872:2 20874:1 20887:1 20890:1 20930:1 20949:11 20962:4 20973:2 20995:1 21012:1 21021:1 21056:1 21062:1 21065:2 21089:1 21100:1 21107:2 21108:5 21111:1 21112:1 21113:1 21123:2 21134:1 21139:1 21146:1 21150:4 21173:1 21198:4 21199:3 21208:2 21209:3 21218:1 21219:1 21224:1 21225:2 21228:1 21245:1 21249:1 21293:2 21337:3 21350:1 21361:1 21380:1 21473:1 21480:1 21485:1 21520:1 21529:2 21539:4 21543:1 21556:1 21557:5 21561:2 21582:3 21584:1 21586:1 21588:1 21602:2 21610:7 21613:1 21622:1 21627:1 21630:1 21633:1 21642:2 21645:1 21650:1 21684:1 21697:1 21703:1 21718:1 21723:1 21741:1 21760:27 21773:4 21774:1 21782:3 21783:1 21784:1 21787:2 21812:1 21830:1 21831:2 21838:1 21844:1 21856:1 21868:1 21878:1 21887:1 21904:1 21914:1 21916:5 21922:1 21926:1 21927:1 21944:1 21995:3 21996:1 21997:1 21998:1 22007:1 22010:1 22024:1 22027:2 22037:1 22041:1 22048:3 22080:1 22109:1 22119:1 22123:1 22163:8 22179:1 22208:1 22218:1 22223:2 22229:1 22245:4 22247:1 22256:1 22263:1 22279:1 22281:1 22315:1 22328:1 22331:8 22360:1 22383:1 22410:2 22415:1 22417:1 22431:1 22434:2 22465:1 22466:2 22472:1 22481:1 22491:1 22493:1 22504:1 22513:1 22517:2 22520:4 22534:1 22548:1 22551:4 22561:1 22585:1 22598:1 22601:1 22611:4 22617:1 22644:1 22646:2 22647:1 22655:1 22662:1 22669:3 22690:4 22699:6 22707:1 22709:1 22715:1 22730:1 22734:2 22736:1 22749:2 22755:4 22756:1 22759:2 22760:2 22761:1 22786:3 22787:1 22795:2 22802:1 22803:5 22809:1 22812:1 22815:1 22820:1 22822:1 22828:1 22830:1 22831:1 22846:1 22864:1 22865:1 22866:1 22874:3 22876:1 22895:1 22905:2 22914:1 22937:1 22942:1 22982:1 23000:1 23001:1 23011:1 23027:4 23039:1 23064:1 23075:1 23076:2 23084:1 23089:6 23109:6 23125:1 23127:2 23151:1 23167:1 23175:1 23188:1 23237:3 23248:1 23256:1 23263:1 23264:1 23284:2 23293:1 23295:1 23298:3 23299:1 23300:1 23305:1 23314:3 23333:1 23335:1 23344:3 23349:1 23360:2 23378:1 23384:2 23385:1 23392:1 23393:2 23404:4 23413:1 23416:1 23424:1 23430:16 23431:1 23433:1 23456:1 23466:4 23476:1 23491:1 23521:1 23524:1 23551:2 23558:1 23586:4 23588:1 23592:1 23603:4 23610:4 23616:4 23623:1 23626:5 23646:1 23647:4 23655:3 23659:2 23676:1 23685:1 23703:1 23712:1 23713:1 23720:1 23733:1 23736:1 23739:2 23767:1 23768:1 23775:7 23777:2 23784:1 23797:2 23835:4 23836:1 23840:1 23858:3 23862:1 23865:1 23866:5 23891:1 23923:1 23940:2 23967:1 23971:3 23974:3 23993:1 23994:1 24003:1 24004:1 24039:2 24070:2 24076:1 24081:1 24095:1 24096:1 24100:1 24126:3 24128:1 24129:1 24132:1 24137:1 24143:1 24164:1 24168:1 24170:4 24179:1 24213:1 24251:1 24257:1 24265:1 24266:6 24271:1 24286:1 24296:1 24307:1 24330:1 24350:1 24370:2 24373:1 24385:1 24394:1 24401:6 24411:3 24438:1 24463:1 24476:5 24477:1 24482:1 24483:3 24487:2 24503:6 24525:1 24530:3 24536:2 24538:1 24568:1
14 30:1 56:1 59:1 71:1 75:1 96:2 146:1 157:1 163:1 185:5 186:7 188:1 197:1 204:1 216:1 219:1 223:1 224:1 230:1 239:1 242:1 247:1 254:5 256:1 265:1 295:1 296:6 314:1 318:2 320:2 323:1 336:1 346:1 379:1 407:3 450:1 457:5 501:2 524:1 525:1 527:4 541:1 545:1 565:1 592:2 607:1 663:1 699:1 704:2 708:1 713:1 714:1 724:1 732:1 748:1 759:3 762:1 763:1 764:2 789:1 802:1 814:5 831:2 834:2 838:1 851:3 864:1 869:2 875:1 881:1 888:1 889:1 895:1 909:1 911:1 914:1 922:1 927:1 942:1 946:1 949:1 965:1 980:1 1009:1 1011:2 1021:1 1023:2 1044:1 1045:1 1046:3 1048:1 1051:5 1053:1 1055:1 1059:2 1094:3 1114:1 1124:1 1125:1 1127:1 1128:1 1141:1 1153:2 1155:1 1168:1 1171:3 1172:2 1217:1 1220:4 1226:1 1229:2 1256:2 1259:5 1264:4 1285:1 1293:1 1297:1 1299:1 1301:1 1321:1 1332:3 1356:2 1360:2 1369:1 1381:3 1398:1 1401:5 1405:1 1413:1 1425:1 1448:1 1452:1 1470:1 1507:6 1510:1 1517:5 1526:1 1535:1 1538:1 1545:2 1564:5 1589:1 1591:4 1603:1 1616:1 1617:3 1621:1 1622:2 1627:1 1628:1 1654:2 1659:1 1683:1 1701:1 1710:1 1731:4 1737:1 1754:1 1759:1 1766:8 1781:2 1785:1 1809:3 1818:1 1826:2 1834:1 1838:2 1842:1 1846:2 1856:2 1874:1 1879:1 1880:1 1882:2 1883:2 1885:2 1888:1 1891:1 1908:1 1910:2 1911:1 1912:3 1938:3 1941:1 1945:5 1947:1 1954:5 1955:1 1957:1 1963:3 1965:1 1968:4 1970:2 1973:2 1976:3 1991:1 2000:1 2015:1 2028:1 2040:2 2042:1 2047:1 2049:1 2051:2 2053:1 2061:1 2065:2 2071:1 2076:2 2077:1 2128:1 2131:1 2134:2 2149:1 2157:1 2164:1 2172:1 2178:1 2183:2 2193:1 2198:1 2226:2 2229:1 2234:2 2274:1 2275:2 2277:1 2286:2 2295:1 2298:1 2303:1 2321:4 2325:3 2333:1 2366:3 2372:1 2380:1 2383:3 2389:1 2390:5 2394:1 2419:1 2425:1 2426:1 2448:1 2451:3 2462:29 2464:1 2465:1 2480:2 2486:1 2504:1 2507:7 2513:2 2519:6 2530:1 2565:5 2576:1 2587:2 2597:2 2627:3 2638:1 2704:1 2709:1 2731:3 2736:7 2742:2 2779:2 2785:2 2798:2 2801:1 2802:5 2826:1 2834:1 2837:1 2844:1 2848:3 2849:1 2854:2 2855:1 2886:6 2901:1 2919:2 2954:2 2979:1 2980:1 3002:1 3003:1 3020:3 3027:1 3041:1 3042:1 3049:2 3060:1 3061:1 3064:1 3072:1 3077:6 3090:1 3098:1 3116:1 3131:1 3132:1 3133:1 3147:2 3149:1 3153:1 3173:1 3179:1 3184:10 3204:1 3206:2 3213:1 3221:3 3225:1 3231:1 3234:5 3245:1 3266:1 3287:1 3295:1 3297:4 3304:1 3312:1 3324:1 3326:1 3328:1 3332:1 3351:1 3353:1 3369:1 3372:1 3375:1 3407:2 3408:2 3414:1 3416:1 3462:1 3494:1 3499:1 3518:1 3522:1 3525:1 3546:2 3547:1 3562:1 3572:1 3581:2 3588:1 3598:1 3606:1 3612:1 3615:1 3618:2 3631:1 3641:12 3649:1 3660:1 3678:2 3679:1 3707:1 3712:1 3735:1 3744:1 3766:1 3774:1 3776:1 3783:1 3786:1 3804:1 3831:1 3837:2 3841:1 3878:1 3886:3 3889:1 3907:1 3908:1 3909:2 3938:6 3963:1 3964:1 3966:1 3967:1 3976:1 3984:1 3995:5 3998:5 4005:2 4012:1 4046:1 4051:1 4061:1 4062:2 4083:1 4091:2 4093:1 4102:1 4107:16 4109:1 4136:3 4145:1 4154:1 4183:1 4190:1 4198:9 4211:1 4212:4 4213:1 4218:1 4221:1 4223:1 4224:1 4225:1 4229:1 4234:1 4236:3 4237:1 4238:1 4244:3 4268:1 4325:1 4332:1 4333:1 4340:1 4353:1 4354:1 4368:1 4371:1 4375:5 4376:1 4399:1 4400:1 4413:2 4423:1 4471:1 4497:1 4498:2 4512:1 4518:3 4519:3 4539:1 4541:1 4551:1 4572:1 4586:1 4587:1 4599:2 4609:1 4621:1 4622:1 4667:1 4668:1 4683:2 4684:2 4710:1 4724:1 4734:1 4759:1 4773:1 4784:1 4792:1 4796:3 4814:1 4820:1 4821:2 4832:2 4853:1 4876:2 4889:2 4892:1 4894:2 4901:1 4986:1 5000:1 5016:1 5044:1 5047:1 5049:3 5071:3 5077:1 5088:2 5093:1 5095:1 5100:1 5127:1 5192:1 5201:1 5203:1 5224:1 5247:1 5248:1 5253:1 5254:1 5258:1 5283:1 5308:2 5313:1 5322:5 5325:4 5326:1 5332:5 5337:2 5338:1 5339:2 5340:1 5342:1 5344:1 5347:6 5349:8 5350:1 5352:3 5354:3 5451:8 5492:1 5500:1 5520:1 5529:1 5530:1 5533:2 5534:1 5535:1 5585:1 5595:1 5599:3 5604:1 5610:2 5674:1 5681:2 5683:1 5686:3 5688:1 5702:7 5711:1 5721:1 5726:1 5730:1 5746:3 5783:1 5788:2 5807:1 5813:2 5828:1 5865:3 5874:2 5878:2 5900:1 5931:1 5939:1 5947:4 5948:2 5952:1 5968:1 5998:1 6005:2 6034:1 6042:1 6045:1 6046:1 6047:2 6049:1 6050:1 6056:1 6062:1 6071:1 6087:1 6112:1 6116:1 6126:1 6131:1 6139:2 6145:1 6175:1 6183:8 6194:1 6235:1 6237:2 6289:1 6293:1 6311:3 6355:1 6364:2 6365:4 6373:1 6378:1 6381:1 6382:1 6386:2 6405:1 6407:1 6409:1 6410:1 6416:2 6417:1 6429:32 6434:1 6448:1 6449:3 6451:4 6459:3 6468:1 6475:1 6486:1 6491:1 6492:1 6493:1 6525:1 6526:3 6532:1 6554:1 6560:1 6578:1 6597:1 6616:1 6619:2 6661:2 6667:1 6669:1 6675:1 6678:1 6707:1 6716:2 6723:4 6756:1 6781:1 6789:1 6794:1 6796:2 6802:1 6804:1 6810:3 6824:4 6839:1 6843:1 6847:1 6854:4 6859:11 6908:4 6920:1 6937:1 6981:3 7016:1 7021:1 7027:2 7045:1 7054:3 7059:2 7068:8 7096:1 7097:1 7116:1 7122:1 7137:1 7157:2 7165:1 7166:1 7169:3 7170:1 7177:1 7178:2 7179:1 7181:1 7190:1 7194:1 7199:1 7202:1 7215:1 7216:1 7221:1 7235:1 7245:1 7246:2 7285:11 7303:1 7322:1 7360:1 7361:4 7379:1 7391:2 7400:9 7402:1 7409:1 7414:1 7418:2 7427:1 7430:1 7432:1 7438:1 7443:1 7450:3 7456:3 7457:5 7459:2 7460:1 7461:1 7464:1 7465:2 7499:1 7510:1 7527:1 7553:1 7554:2 7564:1 7571:4 7572:1 7581:6 7589:1 7614:3 7615:1 7622:1 7626:1 7638:1 7648:2 7656:1 7658:2 7670:1 7682:1 7702:1 7712:4 7741:1 7742:1 7753:2 7754:1 7761:1 7768:1 7773:11 7782:1 7787:2 7799:1 7803:1 7804:1 7810:1 7820:1 7860:2 7868:2 7887:1 7905:1 7908:1 7912:1 7929:3 7930:1 7950:2 7964:1 7972:1 7979:1 7982:1 7988:5 8002:1 8005:1 8049:1 8065:7 8070:6 8081:7 8082:4 8099:4 8162:4 8171:2 8174:1 8175:1 8176:7 8195:1 8206:5 8207:1 8229:2 8230:1 8234:9 8249:2 8256:1 8279:1 8282:1 8284:1 8285:5 8296:1 8304:1 8311:1 8317:1 8318:1 8328:5 8352:5 8355:1 8357:2 8359:2 8383:1 8387:3 8428:1 8433:1 8443:2 8469:7 8508:1 8567:1 8568:2 8574:1 8582:1 8583:1 8593:1 8597:3 8598:5 8603:1 8614:1 8623:1 8630:1 8635:1 8656:2 8657:1 8672:1 8681:2 8690:1 8692:1 8702:2 8709:1 8714:3 8726:1 8727:3 8731:1 8736:1 8753:3 8759:7 8761:1 8771:1 8782:2 8783:1 8800:1 8802:7 8809:4 8812:1 8814:5 8831:2 8832:3 8833:3 8836:1 8878:2 8891:4 8900:3 8901:1 8910:1 8911:1 8916:1 8944:1 8968:1 8979:1 8983:1 8993:1 8996:1 8998:2 9000:1 9002:4 9022:1 9038:1 9058:1 9062:2 9063:1 9067:1 9084:1 9097:1 9101:5 9102:5 9120:3 9127:1 9132:1 9138:1 9140:1 9142:2 9156:1 9166:1 9173:1 9181:1 9185:3 9222:1 9240:2 9252:6 9313:1 9318:1 9336:1 9346:1 9363:1 9377:1 9392:1 9400:1 9403:2 9419:1 9440:2 9441:1 9455:5 9462:2 9466:1 9488:4 9495:1 9497:1 9532:11 9536:1 9550:2 9562:2 9563:2 9575:2 9599:1 9607:1 9619:1 9622:2 9624:1 9645:1 9653:1 9682:5 9683:1 9688:2 9690:1 9691:1 9698:1 9700:1 9710:2 9716:2 9723:3 9729:1 9738:1 9743:1 9772:1 9810:1 9818:1 9823:3 9824:1 9850:1 9859:2 9867:1 9877:1 9878:1 9881:1 9884:1 9890:1 9891:1 9918:2 9922:1 9924:3 9944:1 9949:1 9963:1 9999:1 10022:3 10040:1 10042:2 10045:1 10052:2 10053:2 10054:2 10074:2 10090:5 10169:3 10176:1 10204:1 10211:1 10218:4 10232:1 10278:1 10316:1 10318:2 10319:1 10324:1 10329:1 10369:1 10384:5 10457:1 10465:1 10480:24 10502:1 10503:3 10531:2 10537:1 10551:1 10576:1 10597:1 10598:3 10617:1 10648:2 10651:4 10659:1 10667:1 10707:1 10719:1 10722:1 10725:2 10757:1 10758:1 10792:1 10818:1 10823:2 10843:1 10847:10 10851:3 10862:1 10871:3 10879:1 10892:1 10897:1 10898:2 10912:1 10951:1 10952:1 10953:1 10961:3 10962:2 10970:1 10974:5 10981:1 10985:2 10987:1 10993:1 11013:1 11016:1 11036:1 11046:1 11047:6 11050:1 11056:1 11062:1 11103:3 11118:2 11126:1 11159:2 11163:2 11168:2 11173:1 11186:1 11187:4 11211:1 11215:5 11223:3 11235:2 11273:4 11280:1 11283:1 11284:1 11286:1 11297:1 11301:1 11325:3 11329:1 11337:3 11341:1 11346:1 11352:1 11353:1 11368:2 11375:4 11394:1 11400:1 11405:2 11408:1 11415:1 11430:5 11447:2 11449:1 11451:2 11459:1 11463:1 11486:1 11509:1 11526:1 11584:2 11600:1 11607:1 11638:2 11640:1 11643:1 11653:1 11708:2 11712:3 11739:2 11747:1 11790:1 11792:1 11801:2 11807:1 11812:2 11813:1 11818:1 11823:1 11832:1 11833:1 11843:1 11853:1 11864:3 11874:1 11876:1 11900:1 11906:2 11932:1 11937:1 11966:1 11974:1 11976:1 11979:1 11990:1 11992:1 11994:1 12038:1 12050:4 12078:1 12084:1 12099:4 12114:1 12115:1 12126:1 12131:1 12144:2 12146:1 12181:1 12182:1 12184:1 12218:1 12229:1 12245:1 12276:2 12289:1 12323:1 12328:1 12337:1 12338:1 12346:6 12364:2 12365:2 12372:1 12375:1 12381:4 12387:1 12396:1 12416:1 12425:1 12444:1 12486:2 12488:2 12490:1 12491:1 12512:1 12555:1 12556:3 12573:1 12575:3 12582:1 12583:1 12585:1 12586:1 12614:5 12623:1 12641:1 12652:2 12662:3 12685:1 12698:1 12723:4 12739:2 12740:1 12741:4 12748:1 12754:1 12797:3 12798:2 12800:5 12801:1 12822:1 12837:1 12839:1 12842:1 12843:1 12846:2 12881:1 12930:1 12942:2 12943:1 12945:2 12946:1 12950:1 12961:1 12985:2 12988:5 12989:1 13014:2 13025:1 13032:1 13033:1 13058:2 13072:1 13094:1 13104:3 13125:1 13128:1 13140:1 13142:1 13153:8 13156:1 13181:1 13205:1 13207:1 13212:1 13225:3 13238:1 13259:1 13288:1 13295:2 13304:1 13311:2 13328:10 13333:1 13334:1 13336:1 13345:1 13362:1 13390:2 13406:1 13417:1 13428:1 13434:1 13435:1 13437:1 13445:3 13446:1 13449:2 13452:1 13453:1 13454:1 13462:1 13470:1 13471:1 13482:1 13489:3 13502:1 13505:2 13525:1 13535:1 13561:1 13590:1 13615:1 13620:1 13637:4 13647:3 13662:3 13664:2 13680:4 13682:2 13688:1 13703:1 13719:3 13729:1 13733:2 13760:1 13765:3 13766:1 13778:1 13803:6 13807:2 13819:8 13835:4 13857:1 13858:1 13865:1 13871:2 13876:1 13888:1 13895:2 13907:1 13908:2 13926:1 13928:3 13929:1 13931:1 13936:1 13947:1 13970:1 13979:2 13986:1 13989:3 13994:1 13995:1 13996:2 14000:1 14024:1 14026:2 14030:1 14031:1 14035:2 14041:1 14050:2 14051:5 14071:2 14073:1 14077:1 14088:1 14097:1 14119:1 14127:2 14130:1 14178:6 14204:2 14207:1 14227:1 14229:3 14231:2 14252:1 14262:1 14279:1 14286:1 14300:2 14317:1 14329:1 14332:2 14334:1 14341:1 14365:2 14366:6 14371:4 14380:1 14382:6 14383:2 14386:1 14387:2 14391:2 14395:1 14403:1 14404:1 14417:1 14422:2 14434:1 14443:1 14465:2 14476:5 14477:3 14496:9 14513:1 14516:6 14522:1 14541:1 14549:1 14553:1 14556:1 14576:1 14577:1 14582:1 14622:1 14630:4 14635:1 14648:1 14649:1 14650:1 14654:1 14657:1 14665:2 14672:2 14677:6 14678:3 14691:2 14696:1 14711:1 14717:1 14719:3 14727:1 14734:1 14740:4 14744:1 14747:6 14762:3 14763:1 14764:1 14765:1 14768:1 14774:1 14776:1 14785:4 14802:1 14804:1 14807:1 14810:1 14824:1 14837:4 14844:1 14849:2 14851:1 14864:3 14871:1 14877:1 14882:1 14885:4 14934:2 14938:1 14946:3 14956:2 14962:1 14976:1 14981:1 14987:1 14991:1 15002:1 15030:2 15035:1 15080:2 15087:1 15090:1 15100:1 15105:2 15111:1 15123:1 15134:9 15135:1 15137:4 15142:1 15160:1 15169:1 15171:3 15183:1 15184:3 15197:1 15201:2 15205:8 15233:2 15240:1 15251:1 15269:3 15282:3 15283:1 15287:1 15307:29 15312:4 15344:1 15354:2 15360:1 15374:1 15396:5 15405:4 15444:1 15445:2 15452:1 15460:3 15480:1367 15483:2 15492:2 15496:1 15508:1 15556:2 15560:1 15568:1 15570:1 15574:1 15591:1 15595:1 15599:2 15610:3 15617:2 15623:1 15625:1 15638:2 15639:2 15642:2 15645:1 15646:1 15647:1 15649:4 15652:1 15655:3 15658:1 15661:1 15662:5 15684:1 15723:1 15738:1 15742:2 15743:1 15763:3 15776:9 15790:1 15814:1 15816:2 15853:1 15871:1 15875:1 15884:1 15927:1 15929:2 15935:1 15943:1 15949:3 15955:1 15997:4 16008:1 16036:1 16042:7 16051:1 16054:4 16074:1 16077:1 16079:1 16102:1 16103:1 16111:1 16112:1 16115:4 16118:1 16121:10 16147:1 16151:2 16152:3 16154:5 16161:1 16171:1 16187:1 16206:1 16228:1 16254:1 16262:3 16270:1 16273:2 16274:1 16302:1 16306:2 16308:1 16310:1 16313:1 16318:1 16341:1 16370:1 16387:4 16402:1 16409:4 16426:1 16428:1 16438:1 16474:1 16479:1 16484:4 16485:4 16488:1 16495:1 16500:2 16503:2 16506:1 16509:1 16534:1 16548:1 16577:2 16593:2 16603:1 16605:1 16625:1 16630:3 16652:2 16654:3 16659:1 16670:1 16679:1 16681:5 16682:1 16693:1 16718:1 16726:3 16727:1 16729:1 16732:1 16735:1 16743:1 16744:2 16753:1 16754:1 16761:1 16763:1 16778:2 16780:1 16787:2 16809:1 16815:4 16853:1 16855:2 16861:3 16862:2 16867:2 16871:1 16875:1 16882:1 16895:1 16897:1 16921:5 16964:1 16970:1 16971:1 16975:1 17001:1 17030:1 17037:1 17043:1 17048:1 17057:2 17058:1 17066:1 17085:2 17113:1 17136:3 17137:2 17166:1 17175:1 17181:1 17185:1 17188:1 17237:4 17246:2 17248:1 17269:1 17275:5 17276:3 17298:1 17303:1 17311:3 17316:2 17320:1 17331:2 17346:2 17347:1 17357:1 17362:5 17366:2 17367:1 17387:7 17403:1 17404:1 17424:2 17470:1 17485:2 17491:2 17499:1 17520:1 17553:2 17569:1 17580:1 17602:1 17605:1 17608:1 17616:2 17623:3 17626:1 17631:1 17649:1 17660:1 17678:5 17706:2 17712:1 17724:2 17725:2 17730:1 17735:2 17768:1 17772:2 17774:1 17792:1 17808:1 17822:1 17826:1 17827:1 17834:2 17838:1 17839:1 17853:2 17855:4 17862:1 17865:1 17890:1 17908:1 17910:1 17916:8 17919:1 17921:1 17922:1 17924:1 17927:1 17943:2 17955:4 17958:4 17962:2 17969:1 17975:1 17978:1 17979:1 17980:1 17983:1 17995:3 18009:3 18016:1 18025:2 18028:1 18035:1 18037:1 18038:2 18041:1 18043:5 18053:3 18058:1 18064:1 18069:1 18079:1 18092:1 18093:5 18116:1 18130:1 18146:1 18166:3 18168:3 18174:1 18177:1 18181:1 18189:1 18197:1 18208:2 18210:2 18248:1 18266:1 18313:2 18339:1 18356:1 18366:1 18367:1 18369:2 18370:2 18375:3 18378:1 18379:1 18406:1 18410:1 18414:1 18423:1 18436:1 18447:1 18454:1 18474:1 18478:1 18485:2 18491:1 18498:1 18511:3 18513:1 18523:1 18539:1 18567:1 18568:1 18578:1 18580:1 18587:1 18616:3 18623:1 18629:1 18631:1 18654:2 18664:1 18665:1 18674:2 18702:4 18704:1 18727:3 18732:8 18736:1 18742:2 18748:1 18784:1 18792:3 18800:1 18816:1 18856:5 18857:1 18862:5 18880:1 18881:3 18882:1 18884:1 18901:2 18929:1 18930:1 18931:2 18934:1 18941:4 18949:1 19011:1 19024:1 19033:4 19056:1 19059:1 19060:2 19080:1 19085:1 19098:3 19108:4 19126:2 19134:2 19136:2 19146:1 19148:1 19153:2 19172:1 19193:1 19205:3 19207:3 19210:5 19226:3 19230:1 19249:1 19250:1 19275:2 19292:6 19293:1 19294:1 19302:2 19303:1 19322:1 19328:2 19331:1 19335:1 19337:5 19339:2 19359:1 19365:1 19386:1 19392:2 19395:2 19402:1 19422:1 19425:1 19438:2 19440:1 19443:3 19446:1 19453:1 19469:1 19471:3 19475:1 19487:5 19507:1 19517:1 19522:1 19544:3 19559:3 19561:1 19562:1 19564:1 19586:1 19603:1 19610:1 19612:1 19613:1 19637:1 19644:1 19683:1 19702:1 19706:1 19716:1 19730:2 19745:1 19762:5 19767:1 19773:1 19792:1 19804:1 19805:1 19810:5 19813:1 19837:1 19847:1 19897:1 19901:1 19902:1 19912:1 19928:3 19962:1 19966:2 20000:1 20004:1 20015:1 20040:3 20080:1 20084:4 20096:2 20103:1 20109:4 20111:1 20118:1 20138:1 20165:1 20208:1 20223:1 20224:1 20226:1 20239:1 20251:1 20253:1 20258:2 20266:1 20267:1 20270:3 20275:1 20278:1 20304:1 20316:1 20317:2 20318:7 20326:1 20327:2 20331:3 20332:2 20334:3 20336:1 20337:3 20338:1 20341:1 20343:4 20344:5 20350:1 20353:1 20371:1 20373:1 20378:4 20380:1 20383:3 20398:5 20399:2 20406:1 20411:1 20413:1 20435:1 20436:1 20441:1 20442:7 20447:6 20448:2 20464:1 20469:2 20470:1 20502:1 20505:1 20512:2 20529:2 20560:1 20576:4 20595:1 20619:1 20621:1 20627:1 20631:5 20659:1 20668:5 20686:1 20694:1 20696:1 20727:1 20733:1 20738:3 20742:6 20761:5 20762:1 20785:8 20818:1 20829:5 20853:1 20871:1 20872:2 20874:1 20887:1 20890:1 20930:1 20949:11 20962:4 20973:2 20995:1 21012:1 21021:1 21056:1 21062:1 21065:2 21089:1 21100:1 21107:2 21108:5 21111:1 21112:1 21113:1 21123:2 21134:1 21139:1 21146:1 21150:4 21173:1 21198:4 21199:3 21208:2 21209:3 21218:1 21219:1 21224:1 21225:2 21228:1 21245:1 21249:1 21293:2 21337:3 21350:1 21361:1 21380:1 21473:1 21480:1 21485:1 21520:1 21529:2 21539:4 21543:1 21556:1 21557:5 21561:2 21582:3 21584:1 21586:1 21588:1 21602:2 21610:7 21613:1 21622:1 21627:1 21630:1 21633:1 21642:3 21645:1 21650:1 21684:1 21697:1 21703:1 21718:1 21723:1 21741:1 21760:29 21773:5 21774:1 21782:3 21783:1 21784:1 21787:2 21812:1 21830:1 21831:2 21838:1 21844:1 21856:1 21868:1 21878:1 21887:1 21904:1 21914:2 21916:5 21922:1 21926:1 21927:1 21944:1 21995:3 21996:1 21997:1 21998:1 22007:1 22010:1 22016:1 22024:1 22027:2 22037:1 22041:1 22048:3 22080:1 22109:1 22119:1 22123:1 22163:8 22179:1 22208:1 22218:1 22223:2 22229:1 22245:4 22247:1 22256:1 22263:1 22279:1 22281:1 22315:1 22328:1 22331:8 22360:1 22383:1 22410:2 22415:1 22417:1 22431:1 22434:2 22460:1 22465:1 22466:2 22472:1 22481:1 22491:1 22493:1 22504:1 22513:1 22517:2 22520:4 22534:1 22548:1 22551:4 22561:1 22585:1 22598:1 22601:1 22602:1 22611:4 22617:1 22644:1 22646:2 22647:1 22655:1 22662:1 22669:3 22690:4 22699:6 22707:1 22709:1 22715:1 22730:1 22734:2 22736:1 22749:2 22755:4 22756:1 22759:2 22760:2 22761:1 22786:3 22787:1 22795:2 22802:1 22803:5 22809:1 22812:1 22815:1 22820:1 22822:1 22828:1 22830:1 22831:1 22846:1 22864:1 22865:1 22866:1 22874:3 22876:1 22895:1 22905:2 22914:1 22937:1 22942:1 22982:1 23000:1 23001:1 23011:1 23027:4 23039:1 23064:1 23075:1 23076:2 23084:1 23089:6 23109:6 23125:1 23127:2 23151:1 23166:1 23167:1 23175:1 23188:1 23237:3 23248:1 23256:1 23263:1 23264:1 23284:3 23293:1 23295:1 23298:3 23299:1 23300:1 23305:1 23314:3 23333:1 23335:1 23344:3 23349:1 23360:2 23378:1 23384:2 23385:1 23392:1 23393:2 23404:4 23413:1 23416:1 23424:1 23430:16 23431:1 23433:1 23456:1 23466:4 23476:1 23491:1 23521:1 23524:1 23551:2 23558:1 23586:4 23588:1 23592:1 23603:4 23610:4 23616:5 23623:1 23626:5 23646:1 23647:4 23655:3 23659:2 23676:1 23685:1 23703:1 23712:1 23713:1 23720:1 23733:1 23736:1 23739:2 23767:1 23768:1 23775:7 23777:2 23784:1 23797:2 23835:5 23836:1 23840:1 23853:1 23858:3 23862:1 23865:1 23866:5 23891:1 23923:1 23940:2 23967:1 23971:3 23974:3 23993:1 23994:1 24003:1 24004:1 24039:2 24070:2 24076:1 24081:1 24095:1 24096:1 24100:1 24126:3 24128:1 24129:1 24132:1 24137:1 24143:1 24164:1 24168:1 24170:4 24179:1 24213:1 24251:1 24257:1 24265:1 24266:6 24267:1 24271:1 24286:1 24296:1 24307:1 24330:1 24341:1 24350:1 24370:2 24373:1 24385:1 24394:1 24401:6 24411:3 24438:1 24463:1 24476:5 24477:1 24478:1 24482:1 24483:3 24487:2 24503:6 24525:1 24530:3 24536:2 24538:1 24568:1
14 9:1 30:1 56:1 59:1 71:1 75:1 96:2 146:1 157:1 163:1 185:5 186:7 188:1 197:1 204:1 216:1 219:1 223:1 224:1 230:1 239:1 242:1 247:1 254:7 256:1 265:1 295:1 296:6 314:1 318:2 320:2 323:1 336:1 346:1 375:1 379:1 407:3 450:1 457:5 501:2 524:1 525:1 527:4 541:1 545:1 565:1 592:2 607:1 636:1 663:1 699:1 704:2 708:1 713:1 714:1 724:1 732:1 748:1 759:3 762:1 763:1 764:2 785:2 789:1 802:1 814:5 831:2 834:2 838:1 851:3 864:1 869:2 875:1 881:1 888:1 889:1 895:1 900:2 909:1 911:1 914:1 922:1 927:1 942:1 946:1 949:1 965:1 980:1 1009:1 1011:2 1021:1 1023:2 1044:1 1045:1 1046:3 1048:1 1051:5 1053:1 1055:1 1059:2 1094:3 1095:1 1114:1 1124:1 1125:1 1127:1 1128:1 1141:1 1153:2 1155:1 1168:1 1171:3 1172:2 1217:1 1220:4 1226:1 1229:2 1256:2 1259:5 1264:4 1285:1 1292:1 1293:1 1297:1 1299:1 1301:1 1321:1 1332:3 1356:2 1360:2 1369:1 1381:3 1398:1 1401:5 1405:1 1413:1 1425:1 1448:1 1452:1 1453:1 1470:1 1507:6 1510:1 1517:5 1526:1 1535:1 1538:1 1545:2 1564:5 1585:1 1589:1 1591:4 1603:1 1616:1 1617:3 1621:1 1622:2 1627:1 1628:1 1654:2 1659:1 1683:1 1701:1 1710:1 1715:1 1730:1 1731:4 1737:1 1754:1 1759:1 1766:8 1781:2 1785:1 1798:1 1809:3 1818:1 1826:2 1834:1 1838:2 1842:1 1846:2 1856:2 1874:1 1879:1 1880:1 1882:2 1883:2 1885:2 1888:1 1891:1 1908:1 1910:2 1911:1 1912:3 1938:3 1941:1 1942:1 1945:5 1947:1 1953:1 1954:5 1955:1 1957:1 1963:3 1965:1 1968:4 1970:2 1973:2 1976:3 1991:1 2000:1 2015:1 2028:1 2040:2 2042:1 2047:1 2049:1 2051:2 2053:1 2061:1 2065:2 2071:1 2076:2 2077:1 2128:1 2131:1 2134:2 2149:1 2157:1 2164:1 2172:1 2178:1 2183:2 2193:1 2198:1 2226:2 2229:1 2234:2 2274:1 2275:2 2277:1 2286:2 2295:1 2298:1 2303:1 2321:4 2325:3 2333:1 2366:3 2372:1 2380:1 2383:4 2389:1 2390:5 2394:1 2419:1 2425:1 2426:1 2448:1 2451:3 2462:30 2464:1 2465:1 2480:2 2486:1 2504:1 2507:8 2513:2 2519:7 2530:1 2565:5 2576:2 2587:2 2597:2 2627:3 2638:1 2704:1 2706:1 2709:1 2731:3 2736:7 2742:2 2770:1 2779:2 2780:2 2785:2 2798:2 2801:1 2802:5 2821:1 2826:1 2834:1 2837:1 2844:1 2848:3 2849:1 2854:2 2855:1 2886:6 2901:1 2919:2 2954:2 2979:1 2980:1 2994:1 3002:1 3003:1 3020:3 3027:1 3041:1 3042:1 3049:2 3060:1 3061:1 3064:1 3072:1 3077:6 3090:1 3098:1 3116:1 3131:1 3132:1 3133:1 3147:2 3149:1 3153:1 3173:1 3179:1 3184:11 3204:1 3206:2 3213:1 3221:3 3225:1 3231:1 3234:5 3245:1 3266:1 3285:1 3287:2 3295:1 3297:4 3304:1 3312:1 3324:1 3326:1 3328:1 3332:1 3342:1 3351:1 3353:1 3369:1 3372:1 3375:1 3404:1 3407:2 3408:2 3414:1 3416:1 3462:1 3494:1 3499:1 3518:1 3519:1 3520:1 3522:1 3525:1 3546:2 3547:1 3562:1 3572:1 3581:2 3588:1 3598:1 3606:1 3612:1 3615:1 3618:2 3631:1 3641:12 3649:1 3660:1 3678:2 3679:1 3707:1 3712:1 3735:1 3744:1 3766:1 3774:1 3776:1 3783:1 3786:1 3804:1 3831:1 3837:2 3841:1 3878:1 3886:3 3889:1 3907:2 3908:1 3909:2 3938:6 3963:1 3964:1 3966:1 3967:1 3976:1 3984:1 3995:5 3998:5 4005:2 4012:1 4046:1 4051:1 4060:1 4061:1 4062:2 4083:1 4091:2 4093:1 4102:1 4107:16 4109:1 4136:3 4145:1 4154:1 4183:1 4186:1 4190:1 4198:9 4211:1 4212:5 4213:1 4218:1 4221:1 4223:1 4224:1 4225:1 4229:1 4234:1 4236:4 4237:1 4238:1 4244:3 4268:1 4325:1 4332:1 4333:1 4340:1 4353:1 4354:1 4368:1 4371:1 4375:5 4376:1 4399:1 4400:1 4413:2 4423:1 4471:1 4497:1 4498:2 4512:1 4518:3 4519:3 4534:2 4539:1 4541:1 4551:1 4572:1 4586:1 4587:1 4592:1 4599:2 4609:1 4621:1 4622:1 4667:1 4668:1 4683:2 4684:2 4710:2 4722:1 4724:1 4734:1 4759:1 4773:1 4784:1 4792:1 4796:3 4814:1 4820:1 4821:2 4832:2 4853:1 4876:2 4889:2 4892:1 4894:2 4901:2 4931:1 4986:1 5000:1 5003:2 5016:1 5044:1 5047:1 5049:3 5071:3 5077:1 5088:2 5093:1 5095:1 5100:1 5127:1 5192:1 5201:1 5203:1 5224:1 5247:1 5248:1 5253:1 5254:1 5258:1 5283:1 5308:3 5313:1 5322:5 5325:4 5326:1 5332:5 5333:2 5337:2 5338:1 5339:2 5340:1 5342:1 5344:1 5347:6 5349:8 5350:1 5352:3 5354:3 5451:8 5492:1 5500:1 5520:1 5529:1 5530:1 5533:2 5534:1 5535:1 5585:1 5595:1 5599:3 5604:1 5610:2 5674:1 5681:2 5683:1 5686:3 5688:2 5702:8 5711:1 5719:1 5721:1 5726:1 5730:1 5746:3 5783:1 5788:2 5807:1 5813:2 5828:1 5865:3 5874:2 5878:2 5900:1 5931:2 5939:1 5947:4 5948:2 5952:1 5968:1 5998:1 6005:2 6034:1 6042:1 6045:1 6046:1 6047:2 6049:1 6050:1 6056:1 6062:1 6071:1 6087:1 6112:1 6116:1 6126:1 6131:1 6139:2 6145:1 6175:1 6183:8 6194:1 6235:1 6237:2 6289:1 6293:1 6311:3 6355:1 6364:2 6365:4 6373:1 6378:1 6381:1 6382:1 6386:2 6405:1 6407:1 6409:1 6410:1 6416:2 6417:1 6422:1 6429:34 6434:1 6448:1 6449:3 6451:5 6459:3 6468:1 6475:1 6486:1 6491:1 6492:1 6493:1 6525:1 6526:3 6532:1 6554:1 6560:1 6578:1 6597:1 6616:1 6619:2 6661:2 6667:1 6669:1 6675:1 6678:1 6707:1 6716:2 6723:4 6756:1 6781:1 6789:1 6794:1 6796:2 6802:1 6804:1 6810:3 6824:4 6839:1 6843:1 6847:1 6854:4 6859:11 6908:4 6920:1 6937:1 6981:4 7016:1 7021:1 7027:2 7045:1 7054:3 7059:2 7068:8 7096:1 7097:1 7116:1 7122:1 7137:1 7157:2 7165:1 7166:1 7169:3 7170:1 7177:1 7178:2 7179:1 7181:1 7190:1 7194:1 7199:1 7202:1 7215:1 7216:1 7221:1 7235:1 7245:1 7246:2 7251:1 7285:11 7303:1 7322:1 7360:1 7361:4 7377:1 7379:1 7391:2 7400:9 7402:1 7409:1 7414:1 7418:2 7427:2 7430:1 7432:1 7438:1 7443:1 7450:3 7456:3 7457:5 7459:2 7460:1 7461:2 7462:1 7464:1 7465:2 7499:1 7510:1 7527:1 7553:1 7554:2 7564:1 7571:4 7572:1 7581:6 7589:1 7614:3 7615:1 7622:1 7626:1 7638:1 7648:2 7656:1 7658:2 7670:1 7682:1 7702:1 7712:4 7741:1 7742:1 7753:2 7754:1 7761:1 7768:1 7773:11 7782:1 7787:3 7799:1 7803:1 7804:1 7810:1 7820:1 7860:2 7868:2 7887:1 7905:1 7908:1 7912:1 7929:3 7930:1 7950:3 7964:2 7972:1 7979:1 7982:1 7988:5 7999:1 8002:1 8005:1 8049:1 8065:8 8070:6 8081:8 8082:4 8099:4 8162:4 8171:2 8174:1 8175:1 8176:7 8195:1 8206:5 8207:1 8229:2 8230:1 8234:10 8249:2 8256:1 8279:1 8282:1 8284:1 8285:5 8296:1 8304:1 8311:1 8317:1 8318:1 8328:5 8343:1 8352:5 8355:1 8357:2 8359:2 8361:1 8383:1 8387:3 8428:1 8433:3 8443:2 8469:7 8508:1 8567:1 8568:2 8574:1 8582:1 8583:1 8593:1 8597:3 8598:5 8603:1 8614:1 8623:1 8630:1 8635:1 8656:3 8657:1 8672:1 8681:2 8690:1 8692:1 8702:2 8709:1 8714:3 8726:1 8727:3 8731:1 8736:3 8753:3 8759:7 8761:1 8771:1 8782:2 8783:1 8800:2 8802:7 8809:4 8812:1 8814:5 8831:2 8832:4 8833:3 8836:1 8878:2 8891:4 8900:3 8901:1 8910:1 8911:1 8914:1 8916:1 8944:1 8968:1 8979:1 8983:1 8993:1 8996:1 8998:2 9000:1 9002:4 9022:1 9038:1 9058:1 9060:1 9062:2 9063:1 9067:1 9084:1 9097:1 9101:5 9102:5 9120:4 9127:1 9132:1 9138:1 9140:1 9142:2 9156:1 9166:1 9173:1 9181:1 9185:3 9222:1 9240:2 9252:6 9313:1 9318:1 9336:1 9346:1 9363:1 9377:1 9392:1 9400:1 9403:2 9419:1 9440:2 9441:1 9455:5 9462:2 9466:1 9488:5 9495:1 9497:1 9532:11 9536:1 9550:2 9562:2 9563:2 9575:2 9596:1 9599:1 9607:1 9619:1 9622:2 9624:1 9645:1 9653:1 9682:5 9683:1 9688:2 9690:1 9691:1 9698:1 9700:1 9710:2 9716:2 9723:3 9729:1 9738:1 9743:1 9772:1 9810:1 9818:1 9823:3 9824:1 9850:1 9859:2 9867:1 9877:1 9878:1 9881:1 9884:1 9890:1 9891:1 9918:2 9922:1 9924:3 9944:1 9949:1 9963:1 9999:1 10022:3 10040:1 10042:2 10045:1 10052:2 10053:2 10054:2 10074:2 10090:5 10169:4 10176:1 10204:1 10211:1 10218:4 10232:1 10254:1 10278:1 10316:1 10318:2 10319:1 10324:1 10329:1 10369:1 10384:5 10457:1 10465:1 10480:25 10502:1 10503:3 10531:3 10537:1 10551:1 10576:1 10597:1 10598:3 10617:1 10648:2 10651:4 10659:1 10667:1 10707:1 10713:1 10719:1 10722:1 10725:2 10757:1 10758:1 10772:1 10792:1 10818:1 10823:2 10837:1 10843:1 10847:11 10851:3 10862:1 10871:3 10879:1 10887:1 10892:1 10897:1 10898:2 10912:1 10951:1 10952:1 10953:1 10961:3 10962:2 10970:1 10974:5 10979:2 10981:1 10985:2 10987:1 10993:1 11013:1 11016:1 11036:1 11046:1 11047:6 11050:1 11056:2 11062:1 11103:3 11118:2 11126:1 11159:2 11163:2 11168:2 11173:1 11186:2 11187:4 11201:1 11211:1 11215:5 11223:3 11235:2 11273:4 11280:2 11283:1 11284:1 11286:1 11297:1 11301:1 11325:3 11329:1 11337:3 11341:1 11344:1 11346:1 11352:1 11353:1 11368:2 11375:4 11394:1 11400:1 11405:2 11408:1 11415:1 11430:5 11447:3 11449:1 11451:2 11459:1 11463:1 11486:1 11509:2 11526:1 11584:2 11600:1 11607:1 11638:2 11640:1 11643:1 11653:1 11705:1 11708:2 11712:3 11739:2 11747:1 11790:1 11792:1 11801:2 11807:1 11812:2 11813:1 11818:1 11823:1 11832:1 11833:1 11834:1 11843:1 11853:1 11864:3 11874:1 11876:1 11900:1 11906:2 11932:1 11937:1 11966:1 11974:1 11976:1 11979:1 11985:1 11990:1 11992:1 11994:1 12038:1 12050:4 12078:1 12084:1 12099:4 12114:1 12115:1 12126:1 12131:1 12144:2 12146:1 12178:1 12181:1 12182:1 12184:1 12218:1 12229:1 12245:1 12276:2 12289:1 12323:1 12328:1 12337:1 12338:1 12346:6 12364:2 12365:2 12372:1 12375:1 12381:4 12387:1 12396:1 12416:1 12425:1 12440:1 12444:1 12486:2 12488:2 12490:1 12491:1 12512:1 12555:1 12556:3 12573:1 12575:3 12582:1 12583:1 12585:1 12586:1 12614:5 12623:1 12635:2 12641:1 12652:2 12662:3 12685:1 12698:1 12723:4 12739:2 12740:1 12741:4 12748:1 12754:1 12797:3 12798:2 12800:5 12801:1 12822:1 12837:1 12839:1 12842:1 12843:1 12846:2 12881:2 12930:1 12942:2 12943:1 12945:2 12946:1 12950:1 12961:1 12985:2 12988:5 12989:1 13014:2 13025:1 13032:1 13033:1 13058:2 13072:1 13094:1 13104:3 13125:1 13128:1 13140:1 13142:1 13153:8 13156:1 13181:1 13205:1 13207:1 13212:1 13225:3 13238:1 13259:1 13288:1 13295:2 13304:1 13311:2 13328:10 13333:1 13334:1 13336:1 13345:1 13362:1 13390:2 13406:1 13417:1 13428:1 13434:1 13435:1 13437:1 13445:3 13446:1 13449:2 13452:1 13453:1 13454:1 13462:1 13470:1 13471:1 13482:1 13489:3 13502:1 13505:2 13525:1 13535:1 13561:1 13590:1 13593:2 13615:1 13620:1 13637:4 13647:3 13662:3 13664:2 13680:4 13682:2 13688:1 13703:1 13707:1 13719:4 13729:1 13733:2 13760:1 13765:3 13766:1 13778:1 13803:6 13807:2 13819:9 13823:1 13835:4 13857:1 13858:1 13865:1 13871:2 13876:1 13888:1 13895:2 13907:1 13908:2 13926:1 13928:3 13929:1 13931:1 13936:1 13947:1 13970:2 13979:3 13986:1 13989:3 13994:1 13995:1 13996:2 14000:1 14024:1 14026:2 14030:1 14031:1 14035:2 14041:1 14050:2 14051:5 14071:2 14073:1 14077:1 14088:1 14097:2 14119:1 14127:2 14130:1 14178:6 14204:2 14207:1 14227:1 14229:3 14231:2 14252:1 14262:1 14279:1 14286:1 14300:2 14317:1 14329:1 14332:2 14334:1 14341:1 14365:2 14366:6 14371:4 14380:1 14382:6 14383:2 14386:1 14387:2 14391:2 14395:1 14403:1 14404:1 14417:1 14422:2 14434:1 14443:1 14465:2 14476:5 14477:3 14496:9 14513:1 14516:6 14522:1 14541:1 14549:1 14553:1 14556:1 14576:1 14577:1 14582:1 14622:1 14630:4 14635:1 14648:1 14649:1 14650:1 14654:1 14657:1 14665:2 14672:2 14674:1 14677:6 14678:3 14691:2 14696:1 14711:1 14717:1 14719:3 14727:1 14734:1 14740:4 14744:1 14747:7 14751:1 14762:3 14763:1 14764:1 14765:1 14768:1 14774:1 14776:1 14785:4 14802:1 14804:1 14807:1 14810:1 14824:1 14837:4 14844:1 14849:2 14851:1 14864:4 14871:1 14877:1 14882:1 14885:4 14934:2 14938:2 14946:3 14956:2 14962:1 14976:1 14981:1 14987:1 14991:1 15002:1 15030:2 15035:1 15040:1 15073:1 15080:2 15087:1 15090:1 15100:1 15105:2 15111:1 15123:2 15134:9 15135:1 15137:5 15142:1 15160:1 15169:1 15171:3 15183:1 15184:3 15197:1 15201:2 15205:9 15233:2 15240:1 15251:1 15269:3 15282:3 15283:1 15287:1 15303:1 15307:29 15312:4 15344:1 15354:2 15360:1 15374:1 15396:5 15405:4 15423:1 15444:1 15445:2 15452:1 15460:3 15480:1496 15483:2 15492:2 15496:1 15508:1 15518:1 15556:2 15560:1 15568:1 15570:1 15574:1 15591:1 15595:1 15599:2 15610:3 15617:2 15623:1 15625:1 15638:2 15639:2 15642:2 15645:1 15646:1 15647:1 15649:4 15652:1 15655:3 15658:1 15661:1 15662:5 15678:1 15684:1 15723:1 15738:1 15742:2 15743:1 15763:3 15776:9 15790:1 15814:1 15816:2 15853:1 15871:1 15875:1 15884:1 15927:1 15929:2 15935:1 15943:1 15949:3 15955:1 15997:4 16008:1 16036:1 16042:7 16051:1 16052:1 16054:4 16074:1 16077:1 16079:1 16094:1 16102:1 16103:1 16111:1 16112:1 16115:4 16118:1 16121:10 16147:1 16151:2 16152:3 16154:5 16161:1 16171:1 16187:1 16206:1 16228:1 16254:1 16262:3 16270:1 16273:2 16274:1 16302:1 16306:2 16308:1 16310:1 16313:1 16318:1 16341:1 16370:1 16387:4 16402:1 16409:4 16426:1 16428:1 16438:1 16474:1 16479:1 16484:4 16485:4 16488:1 16495:1 16500:2 16503:2 16506:1 16509:1 16534:1 16548:1 16577:2 16593:2 16603:1 16605:1 16623:1 16625:1 16630:3 16643:1 16652:2 16654:3 16659:1 16665:1 16670:1 16679:1 16681:5 16682:1 16693:1 16718:1 16726:3 16727:1 16729:1 16732:1 16735:1 16743:1 16744:2 16753:2 16754:1 16761:1 16763:1 16778:2 16780:1 16787:2 16809:1 16815:4 16817:1 16853:1 16855:2 16861:4 16862:2 16867:2 16871:1 16875:1 16882:1 16895:1 16897:1 16921:6 16964:1 16970:1 16971:1 16975:1 17001:1 17030:1 17037:1 17043:1 17048:1 17057:2 17058:1 17066:1 17085:2 17090:1 17113:1 17136:3 17137:2 17166:1 17175:1 17181:1 17185:1 17188:1 17237:4 17246:2 17248:1 17269:1 17275:5 17276:3 17286:1 17298:1 17303:1 17311:3 17316:2 17320:1 17331:2 17346:2 17347:1 17357:1 17362:5 17366:2 17367:1 17387:7 17403:1 17404:1 17424:2 17470:1 17485:2 17491:2 17499:1 17520:1 17553:2 17569:1 17580:1 17602:1 17605:1 17608:1 17616:2 17623:4 17626:1 17631:1 17649:1 17660:1 17678:5 17706:2 17712:1 17724:2 17725:2 17730:1 17735:2 17742:2 17768:1 17772:2 17774:1 17792:1 17808:1 17822:1 17826:1 17827:1 17834:2 17838:1 17839:1 17853:2 17855:4 17862:1 17865:1 17890:1 17908:1 17910:1 17915:1 17916:9 17919:1 17921:2 17922:1 17924:1 17927:1 17943:2 17955:4 17958:4 17962:2 17969:1 17975:1 17978:1 17979:1 17980:1 17983:1 17995:3 18009:3 18016:1 18025:2 18028:1 18035:1 18037:1 18038:2 18041:2 18043:5 18053:3 18058:1 18064:1 18068:2 18069:1 18079:1 18092:1 18093:5 18116:1 18130:1 18146:1 18166:3 18168:3 18174:1 18177:1 18181:1 18189:1 18197:1 18208:2 18210:2 18248:1 18266:1 18313:2 18339:1 18356:1 18366:1 18367:1 18369:2 18370:2 18375:4 18378:1 18379:1 18406:1 18410:1 18414:1 18423:1 18436:1 18447:1 18454:1 18474:1 18478:1 18485:2 18491:1 18498:1 18511:3 18513:1 18523:1 18539:1 18567:1 18568:1 18578:1 18580:1 18587:1 18616:3 18623:1 18629:1 18631:1 18654:2 18664:1 18665:1 18674:2 18702:4 18704:1 18727:3 18732:8 18736:1 18742:2 18748:1 18754:1 18784:1 18792:3 18800:1 18816:1 18856:5 18857:1 18862:5 18880:1 18881:3 18882:1 18884:1 18886:1 18901:2 18905:1 18929:1 18930:1 18931:2 18934:1 18938:1 18941:4 18949:1 19011:1 19024:1 19033:4 19043:1 19056:1 19059:1 19060:2 19080:1 19085:1 19098:3 19108:4 19126:2 19134:2 19136:2 19145:1 19146:1 19148:1 19153:2 19172:1 19183:1 19193:1 19205:3 19207:3 19210:5 19226:3 19230:1 19249:1 19250:1 19275:2 19292:6 19293:1 19294:1 19302:2 19303:1 19322:1 19328:2 19331:1 19335:1 19337:5 19339:2 19359:1 19365:1 19386:1 19392:2 19395:2 19402:1 19422:1 19425:1 19438:2 19440:1 19443:3 19446:1 19453:1 19469:1 19471:3 19475:1 19487:5 19507:1 19517:1 19522:1 19544:3 19559:3 19561:1 19562:1 19564:1 19586:1 19603:1 19610:1 19612:1 19613:1 19637:1 19644:1 19645:1 19683:1 19702:1 19706:1 19716:1 19730:2 19745:1 19762:5 19767:1 19773:1 19792:1 19804:1 19805:1 19810:5 19813:2 19837:1 19847:1 19849:1 19897:1 19901:1 19902:1 19912:1 19928:3 19962:1 19966:2 19992:1 20000:1 20004:1 20015:1 20034:1 20040:3 20080:1 20084:4 20096:2 20103:1 20109:4 20111:1 20118:1 20138:1 20165:1 20208:1 20223:1 20224:1 20226:1 20235:1 20239:1 20247:1 20251:1 20253:1 20258:2 20266:1 20267:1 20270:4 20275:1 20278:1 20304:1 20316:1 20317:2 20318:7 20326:1 20327:2 20331:3 20332:3 20333:1 20334:3 20336:1 20337:3 20338:1 20341:1 20343:4 20344:5 20350:1 20353:1 20371:1 20373:1 20378:4 20380:1 20383:3 20398:5 20399:2 20406:1 20411:1 20413:1 20435:1 20436:1 20441:1 20442:7 20447:6 20448:2 20464:1 20469:2 20470:1 20496:2 20502:1 20505:1 20512:2 20529:2 20560:1 20576:4 20595:2 20619:1 20621:1 20627:1 20631:5 20659:1 20668:5 20686:1 20694:1 20696:1 20727:1 20733:1 20738:3 20742:6 20761:5 20762:1 20785:9 20818:1 20829:5 20853:1 20871:1 20872:2 20874:1 20887:1 20890:1 20930:1 20949:11 20962:4 20973:2 20995:1 21012:1 21021:1 21056:1 21062:1 21065:2 21089:1 21100:1 21107:2 21108:5 21111:1 21112:1 21113:1 21123:2 21134:1 21139:1 21146:1 21150:5 21173:1 21198:4 21199:3 21208:2 21209:3 21218:1 21219:1 21224:1 21225:2 21228:1 21245:1 21249:1 21293:2 21306:1 21327:1 21337:4 21350:1 21353:1 21361:1 21380:1 21402:1 21473:1 21480:1 21485:1 21520:1 21529:2 21539:4 21543:1 21556:1 21557:5 21561:2 21582:3 21584:1 21586:1 21588:1 21602:2 21610:7 21613:1 21622:1 21627:1 21630:1 21633:1 21642:3 21645:1 21650:1 21684:1 21697:1 21703:1 21718:1 21723:1 21741:1 21760:29 21773:5 21774:1 21782:3 21783:1 21784:1 21787:2 21812:1 21830:1 21831:2 21838:1 21844:1 21856:1 21868:1 21878:2 21887:1 21904:1 21914:2 21916:5 21922:1 21926:1 21927:1 21944:1 21995:3 21996:1 21997:1 21998:1 22007:1 22010:1 22016:1 22024:1 22027:2 22037:1 22041:1 22048:3 22080:1 22109:1 22119:1 22123:1 22163:8 22179:1 22208:1 22218:1 22223:2 22229:1 22243:1 22245:5 22247:1 22256:1 22263:1 22279:1 22281:1 22315:1 22328:1 22331:10 22360:1 22383:1 22410:2 22415:1 22417:1 22431:1 22434:2 22460:1 22465:1 22466:2 22472:1 22481:1 22491:1 22493:1 22504:1 22513:1 22517:2 22520:4 22534:1 22548:1 22551:4 22561:1 22585:1 22598:1 22601:1 22602:1 22611:4 22617:1 22644:1 22646:2 22647:1 22655:1 22662:1 22669:3 22690:4 22699:7 22707:1 22709:1 22715:1 22730:1 22734:2 22736:1 22749:2 22755:4 22756:1 22759:2 22760:2 22761:1 22786:3 22787:1 22795:2 22802:1 22803:5 22809:1 22812:1 22815:1 22820:1 22822:1 22828:1 22830:1 22831:1 22846:1 22864:1 22865:1 22866:1 22874:3 22876:1 22895:1 22905:2 22914:1 22937:1 22942:1 22982:1 23000:1 23001:1 23011:1 23027:4 23032:1 23039:1 23064:2 23075:1 23076:3 23084:1 23089:6 23109:7 23118:1 23125:1 23127:2 23151:1 23155:1 23166:1 23167:1 23175:1 23188:1 23196:2 23201:1 23237:3 23248:1 23256:1 23263:1 23264:1 23284:3 23293:1 23295:1 23298:3 23299:1 23300:1 23305:1 23314:3 23333:1 23335:1 23344:4 23349:1 23360:2 23378:1 23384:2 23385:1 23392:1 23393:2 23404:4 23413:1 23416:1 23424:1 23430:16 23431:1 23433:1 23456:1 23466:4 23476:1 23491:1 23496:1 23521:1 23524:1 23551:2 23558:1 23586:4 23588:1 23592:1 23603:4 23610:4 23616:5 23623:1 23626:5 23646:1 23647:4 23655:3 23659:2 23676:1 23685:1 23703:1 23712:1 23713:1 23720:1 23733:1 23736:1 23739:2 23744:1 23767:1 23768:1 23775:9 23777:2 23784:1 23797:2 23835:5 23836:1 23840:1 23853:1 23858:4 23862:1 23865:1 23866:6 23885:1 23891:1 23923:1 23940:2 23967:1 23971:3 23974:3 23993:1 23994:1 24003:1 24004:1 24039:3 24054:1 24070:2 24076:1 24081:1 24095:1 24096:1 24100:1 24126:3 24128:1 24129:1 24132:1 24137:1 24143:1 24164:1 24168:1 24170:4 24179:1 24213:1 24251:1 24257:1 24265:1 24266:6 24267:1 24271:1 24286:1 24296:1 24307:1 24330:1 24332:1 24341:1 24350:1 24370:2 24373:1 24385:1 24394:1 24401:6 24407:1 24411:3 24438:3 24463:1 24476:5 24477:1 24478:1 24482:1 24483:3 24487:3 24503:6 24525:1 24530:3 24536:2 24538:1 24568:1
14 9:1 30:1 56:1 59:1 71:1 75:1 96:2 146:1 157:2 163:1 185:5 186:7 188:1 196:1 197:1 204:1 216:1 219:1 223:1 224:1 230:1 239:1 242:1 243:1 247:1 254:7 256:1 260:1 265:1 270:1 295:1 296:6 314:1 318:2 320:2 323:1 336:1 346:2 375:1 379:1 407:3 450:1 457:6 501:2 524:1 525:1 527:5 541:1 545:1 565:1 592:2 607:1 636:1 663:1 699:1 704:2 708:1 713:1 714:1 724:1 732:1 748:1 759:3 762:1 763:1 764:2 785:2 789:1 802:1 811:1 814:5 831:2 834:2 838:1 851:3 864:1 869:2 875:1 881:1 888:1 889:1 895:1 900:2 907:1 909:1 911:1 914:1 922:1 927:1 942:1 946:1 949:1 965:1 980:1 1009:2 1011:2 1021:1 1023:2 1044:1 1045:1 1046:3 1048:1 1051:5 1053:1 1055:1 1059:2 1094:3 1095:1 1114:1 1124:1 1125:1 1127:1 1128:1 1141:1 1153:2 1155:1 1168:1 1171:3 1172:2 1187:1 1205:1 1217:1 1220:4 1226:1 1229:2 1256:2 1259:5 1264:4 1285:1 1292:1 1293:1 1297:1 1299:1 1301:1 1321:1 1332:3 1356:2 1360:2 1369:1 1381:3 1398:1 1401:5 1405:1 1413:1 1425:1 1448:1 1452:1 1453:1 1470:1 1507:6 1510:1 1517:5 1526:1 1535:1 1536:1 1538:1 1545:2 1564:5 1585:1 1589:1 1591:4 1603:1 1616:1 1617:3 1621:1 1622:2 1627:1 1628:1 1654:2 1659:1 1683:1 1701:1 1710:1 1715:1 1730:1 1731:4 1737:1 1754:1 1759:1 1766:8 1781:2 1785:1 1798:1 1809:3 1818:1 1826:2 1834:1 1838:2 1842:1 1846:2 1856:2 1874:1 1879:1 1880:1 1882:2 1883:2 1885:2 1888:1 1891:1 1908:1 1910:2 1911:1 1912:3 1938:3 1941:1 1942:1 1945:5 1947:1 1953:1 1954:5 1955:1 1957:1 1963:3 1965:1 1968:4 1970:2 1973:2 1976:3 1978:1 1991:1 2000:1 2015:1 2028:1 2040:2 2042:1 2047:1 2049:1 2051:2 2053:1 2061:1 2065:2 2071:1 2076:2 2077:1 2128:1 2131:1 2134:2 2149:1 2157:1 2164:1 2172:1 2178:1 2183:2 2193:1 2198:1 2226:2 2229:1 2234:2 2274:1 2275:2 2277:1 2286:2 2295:1 2298:1 2303:1 2321:4 2325:3 2333:1 2349:1 2366:3 2372:1 2380:1 2383:4 2389:1 2390:5 2394:1 2400:1 2419:1 2425:1 2426:1 2448:1 2451:3 2462:31 2464:1 2465:1 2480:2 2486:1 2504:1 2507:10 2513:2 2519:7 2530:1 2565:5 2576:2 2587:2 2597:2 2627:3 2638:1 2704:1 2706:1 2709:1 2731:3 2736:7 2742:2 2770:1 2779:2 2780:2 2785:2 2798:2 2801:1 2802:6 2821:1 2826:1 2834:1 2837:1 2844:1 2848:3 2849:1 2854:2 2855:1 2886:6 2895:1 2901:1 2919:2 2954:2 2979:1 2980:1 2994:1 3002:1 3003:1 3020:3 3027:1 3041:1 3042:1 3049:2 3060:1 3061:1 3064:1 3072:1 3077:6 3090:1 3098:1 3099:1 3116:1 3131:1 3132:1 3133:1 3147:2 3149:1 3153:1 3173:1 3179:1 3184:11 3204:1 3206:2 3213:1 3221:3 3225:1 3231:1 3234:5 3245:1 3266:1 3285:1 3287:2 3292:1 3295:1 3297:4 3304:1 3312:1 3324:1 3326:1 3328:1 3332:1 3342:1 3351:1 3353:1 3369:2 3372:1 3375:1 3379:1 3404:1 3407:2 3408:2 3414:1 3416:1 3462:1 3494:1 3499:1 3518:1 3519:1 3520:1 3522:1 3525:1 3546:2 3547:1 3562:1 3572:1 3581:2 3588:1 3598:1 3606:1 3612:1 3615:1 3618:2 3631:1 3641:12 3649:1 3660:1 3677:1 3678:3 3679:1 3707:1 3712:1 3735:1 3744:1 3766:1 3774:1 3776:1 3783:1 3786:1 3804:1 3831:1 3837:3 3841:1 3878:1 3886:3 3889:1 3907:2 3908:1 3909:2 3938:6 3963:1 3964:1 3966:1 3967:1 3976:1 3984:2 3995:5 3998:5 4005:2 4012:1 4026:1 4046:1 4051:1 4060:1 4061:1 4062:2 4083:1 4091:2 4093:1 4102:1 4107:16 4109:1 4136:3 4145:1 4154:1 4183:1 4186:1 4190:1 4198:9 4211:1 4212:5 4213:1 4218:1 4221:1 4223:1 4224:1 4225:1 4229:1 4234:1 4236:4 4237:1 4238:1 4244:3 4268:1 4325:1 4332:1 4333:1 4340:1 4353:1 4354:1 4368:1 4371:2 4375:5 4376:1 4399:1 4400:1 4413:2 4423:1 4471:1 4497:1 4498:2 4505:1 4512:1 4518:3 4519:3 4534:2 4539:1 4541:1 4542:1 4551:1 4572:1 4586:1 4587:1 4592:1 4599:2 4609:1 4611:1 4621:1 4622:1 4655:1 4667:1 4668:1 4683:2 4684:2 4710:2 4722:1 4724:1 4734:1 4759:1 4773:1 4784:1 4792:1 4796:3 4814:1 4820:1 4821:2 4832:2 4853:1 4876:2 4889:2 4892:1 4894:2 4901:2 4931:1 4986:1 5000:1 5003:2 5016:1 5024:1 5044:1 5047:1 5049:3 5071:3 5077:1 5088:2 5093:1 5095:1 5100:1 5127:1 5192:1 5201:1 5203:1 5224:1 5247:1 5248:1 5253:1 5254:1 5258:1 5283:1 5308:3 5313:1 5322:5 5325:4 5326:1 5332:5 5333:2 5337:2 5338:1 5339:2 5340:1 5342:1 5344:1 5347:6 5349:8 5350:1 5352:3 5354:3 5451:8 5492:1 5500:1 5520:1 5529:1 5530:1 5533:2 5534:1 5535:1 5585:1 5595:1 5599:3 5604:1 5610:2 5627:1 5674:1 5681:2 5683:1 5686:3 5688:2 5702:8 5711:1 5719:1 5721:1 5726:1 5730:1 5746:3 5783:1 5788:2 5807:1 5813:2 5828:1 5865:3 5874:2 5878:3 5900:1 5931:2 5939:1 5947:5 5948:2 5952:1 5968:1 5998:1 6005:2 6034:1 6042:1 6045:1 6046:1 6047:2 6049:1 6050:1 6056:1 6062:1 6071:1 6087:1 6112:1 6116:1 6126:1 6131:1 6139:2 6145:1 6175:1 6183:8 6194:1 6235:1 6237:2 6289:1 6293:1 6311:3 6355:1 6364:2 6365:4 6373:1 6378:1 6381:1 6382:1 6386:2 6405:1 6407:1 6409:1 6410:1 6412:1 6416:2 6417:1 6422:1 6429:35 6433:1 6434:1 6448:1 6449:3 6451:7 6459:3 6468:1 6475:1 6486:1 6491:1 6492:1 6493:1 6525:1 6526:3 6532:1 6554:1 6560:1 6578:1 6597:1 6616:1 6619:2 6661:2 6667:1 6669:1 6675:1 6678:1 6707:1 6716:2 6723:4 6756:1 6781:1 6789:1 6794:1 6796:2 6802:1 6804:1 6810:3 6824:4 6834:1 6839:1 6843:1 6847:1 6854:4 6859:11 6908:4 6920:1 6937:1 6981:4 7016:1 7021:1 7027:2 7045:1 7054:3 7059:2 7068:8 7096:1 7097:1 7104:1 7108:1 7116:1 7122:1 7137:1 7157:3 7165:1 7166:1 7169:3 7170:1 7177:1 7178:2 7179:1 7181:2 7182:1 7190:1 7194:1 7199:1 7202:1 7215:1 7216:1 7221:1 7235:1 7245:1 7246:2 7251:1 7268:1 7273:1 7285:11 7303:1 7322:1 7360:1 7361:4 7377:1 7379:1 7391:2 7400:9 7402:1 7409:1 7414:1 7418:2 7427:2 7430:1 7432:1 7438:2 7443:1 7450:3 7456:3 7457:5 7459:2 7460:1 7461:3 7462:1 7464:2 7465:2 7499:1 7510:1 7527:1 7553:1 7554:2 7564:1 7571:4 7572:1 7576:1 7581:6 7589:1 7614:3 7615:1 7622:1 7626:1 7638:1 7648:2 7656:1 7658:2 7670:1 7682:1 7702:1 7709:1 7712:4 7741:1 7742:1 7753:2 7754:1 7761:1 7768:1 7773:11 7782:1 7787:3 7799:1 7803:1 7804:1 7810:1 7820:2 7860:2 7868:2 7872:1 7887:1 7905:1 7908:1 7912:1 7929:3 7930:1 7950:3 7964:2 7972:1 7979:1 7982:1 7988:5 7999:1 8002:1 8005:1 8049:1 8065:8 8070:6 8081:8 8082:4 8099:4 8162:4 8171:2 8174:1 8175:1 8176:8 8189:1 8195:1 8206:5 8207:1 8229:2 8230:1 8234:10 8249:2 8256:1 8279:1 8282:1 8284:1 8285:5 8296:1 8304:1 8311:1 8317:1 8318:1 8328:5 8343:1 8352:5 8355:1 8357:2 8359:2 8361:1 8383:1 8387:3 8428:1 8433:3 8443:2 8469:7 8472:1 8508:1 8553:1 8567:1 8568:2 8574:1 8582:1 8583:1 8593:2 8597:3 8598:5 8603:1 8614:1 8623:1 8630:1 8635:1 8656:3 8657:1 8672:1 8681:2 8690:2 8692:1 8702:2 8709:1 8714:3 8726:1 8727:3 8731:1 8736:3 8753:3 8759:7 8761:1 8771:1 8782:2 8783:1 8795:1 8800:2 8802:7 8809:4 8812:1 8814:5 8831:2 8832:4 8833:3 8836:1 8878:2 8891:4 8900:3 8901:1 8910:1 8911:1 8914:1 8916:2 8944:1 8968:1 8979:1 8983:1 8993:1 8996:1 8998:2 9000:1 9002:4 9022:1 9027:1 9038:1 9058:1 9060:1 9062:2 9063:1 9067:1 9084:1 9097:1 9101:5 9102:6 9120:4 9127:1 9132:1 9138:1 9140:1 9142:2 9156:1 9166:1 9173:1 9181:1 9185:3 9222:1 9240:2 9243:1 9252:6 9263:1 9313:1 9318:1 9336:1 9346:1 9363:1 9377:2 9392:1 9400:1 9403:2 9419:1 9440:2 9441:1 9455:5 9462:2 9466:1 9488:5 9495:1 9497:1 9532:11 9536:1 9550:2 9562:2 9563:2 9575:2 9596:1 9599:1 9607:1 9619:1 9622:2 9624:1 9645:1 9653:1 9682:5 9683:1 9688:2 9690:1 9691:1 9698:1 9700:1 9710:2 9716:2 9723:3 9729:1 9738:1 9743:1 9772:1 9810:1 9818:1 9823:3 9824:1 9850:1 9859:2 9867:1 9877:1 9878:1 9881:1 9884:1 9890:1 9891:1 9918:2 9922:1 9924:3 9944:1 9949:1 9963:1 9999:1 10022:3 10040:1 10042:2 10045:1 10052:2 10053:2 10054:2 10074:2 10090:5 10169:4 10172:1 10176:1 10204:1 10211:1 10218:4 10232:1 10254:1 10278:1 10316:1 10318:2 10319:1 10324:1 10329:1 10369:1 10384:5 10406:1 10457:1 10465:1 10480:26 10502:1 10503:3 10524:1 10530:1 10531:3 10537:1 10551:1 10576:1 10597:1 10598:3 10617:1 10648:2 10651:4 10659:1 10667:1 10707:1 10713:1 10719:1 10722:1 10725:2 10757:1 10758:1 10772:1 10792:1 10818:1 10823:2 10837:1 10843:1 10847:11 10851:3 10862:1 10871:3 10872:1 10879:1 10887:1 10892:1 10897:1 10898:2 10912:1 10951:1 10952:1 10953:1 10961:3 10962:2 10970:1 10974:5 10979:2 10981:1 10985:2 10987:1 10993:1 11013:1 11016:1 11036:1 11046:1 11047:6 11050:1 11056:2 11062:1 11103:3 11118:2 11126:1 11159:2 11163:2 11168:2 11173:1 11186:2 11187:4 11201:1 11211:2 11215:5 11223:3 11235:2 11273:4 11280:2 11283:1 11284:1 11286:1 11297:1 11301:1 11325:3 11329:1 11337:3 11341:1 11344:1 11346:1 11349:1 11352:1 11353:1 11368:2 11375:4 11394:1 11400:1 11405:2 11408:1 11415:1 11430:5 11447:3 11449:1 11451:2 11459:1 11463:1 11486:1 11509:2 11526:1 11584:2 11600:1 11607:1 11638:3 11640:1 11643:1 11653:1 11705:1 11708:2 11712:3 11739:2 11742:1 11747:1 11790:1 11792:1 11801:2 11807:1 11812:2 11813:1 11818:1 11823:1 11832:1 11833:1 11834:1 11843:1 11853:1 11857:1 11864:3 11874:1 11876:1 11900:1 11906:2 11932:1 11937:1 11966:1 11974:1 11976:1 11979:1 11985:1 11990:1 11992:1 11994:1 12038:1 12050:4 12078:1 12084:1 12099:4 12114:1 12115:1 12126:1 12131:1 12144:2 12145:1 12146:1 12178:1 12181:1 12182:2 12184:1 12218:1 12229:1 12245:1 12276:2 12289:1 12323:1 12328:1 12337:1 12338:1 12346:6 12364:2 12365:2 12372:1 12375:1 12381:4 12387:1 12396:1 12416:1 12425:1 12432:1 12440:1 12444:1 12486:2 12488:2 12490:1 12491:1 12512:1 12555:1 12556:3 12573:1 12575:3 12582:1 12583:1 12585:1 12586:1 12614:5 12623:1 12635:2 12641:1 12652:2 12662:3 12672:1 12685:1 12698:1 12723:4 12739:2 12740:1 12741:5 12748:1 12754:1 12797:3 12798:2 12800:5 12801:1 12822:1 12837:1 12839:1 12842:1 12843:1 12846:2 12881:2 12930:1 12942:2 12943:1 12945:2 12946:1 12950:2 12954:1 12961:1 12985:2 12988:5 12989:1 13014:2 13025:1 13032:1 13033:1 13058:2 13072:1 13094:1 13104:3 13125:1 13128:1 13140:1 13142:1 13153:8 13156:1 13181:1 13205:1 13207:1 13212:1 13225:3 13238:1 13259:1 13288:1 13295:2 13304:1 13311:2 13328:10 13333:2 13334:1 13336:1 13345:1 13362:1 13390:2 13406:1 13417:1 13428:1 13434:1 13435:1 13437:1 13445:3 13446:1 13449:2 13452:1 13453:1 13454:1 13462:1 13470:1 13471:1 13482:1 13489:3 13502:1 13505:2 13525:2 13535:1 13561:1 13590:1 13593:2 13615:1 13620:1 13637:4 13647:3 13662:3 13664:2 13680:4 13682:2 13688:1 13703:1 13707:1 13719:4 13729:1 13733:2 13760:1 13765:3 13766:1 13778:1 13803:6 13807:2 13819:10 13823:1 13835:6 13857:1 13858:1 13865:1 13871:2 13876:1 13888:2 13895:2 13907:1 13908:2 13926:1 13928:3 13929:1 13931:1 13936:1 13947:1 13970:2 13979:3 13986:1 13989:3 13994:1 13995:1 13996:2 14000:1 14024:2 14026:2 14030:1 14031:1 14035:2 14041:1 14050:2 14051:5 14071:2 14073:1 14077:1 14088:1 14097:2 14119:2 14127:2 14130:1 14178:6 14204:2 14207:1 14227:1 14229:3 14231:2 14252:1 14262:1 14279:1 14286:1 14300:2 14317:1 14329:1 14332:2 14334:1 14341:1 14365:2 14366:6 14371:4 14380:1 14382:6 14383:2 14386:1 14387:2 14391:2 14395:1 14403:1 14404:1 14417:1 14422:2 14434:1 14443:1 14465:2 14476:6 14477:3 14496:9 14513:1 14516:6 14522:1 14541:1 14549:1 14553:1 14556:1 14576:1 14577:2 14582:1 14622:1 14630:4 14635:1 14648:1 14649:1 14650:1 14654:1 14657:1 14665:2 14672:2 14674:1 14677:6 14678:3 14691:2 14696:1 14711:1 14717:1 14719:4 14727:1 14734:1 14740:4 14744:1 14747:7 14751:1 14762:3 14763:1 14764:1 14765:2 14768:1 14774:1 14776:1 14785:4 14802:1 14804:1 14807:1 14810:1 14824:1 14837:4 14844:1 14849:2 14851:1 14864:5 14871:1 14877:1 14882:1 14885:5 14934:2 14938:2 14946:3 14956:2 14962:1 14976:1 14981:2 14987:1 14991:1 15002:1 15030:2 15035:1 15040:1 15073:1 15080:2 15087:1 15090:1 15097:1 15100:1 15105:2 15111:1 15123:3 15134:9 15135:1 15137:5 15142:1 15160:1 15166:1 15169:1 15171:3 15183:1 15184:3 15197:1 15201:2 15205:10 15233:2 15240:1 15251:1 15269:3 15282:3 15283:1 15287:1 15303:1 15307:30 15312:4 15322:1 15344:1 15354:2 15360:1 15374:1 15396:5 15405:4 15423:1 15444:1 15445:2 15452:1 15460:3 15480:1570 15483:2 15492:2 15496:1 15508:1 15518:1 15556:2 15560:1 15568:1 15570:1 15574:1 15591:1 15595:1 15599:2 15610:3 15617:2 15623:1 15625:1 15638:3 15639:2 15642:2 15645:1 15646:1 15647:1 15649:4 15652:1 15655:3 15658:1 15661:1 15662:5 15678:1 15684:1 15723:1 15738:1 15742:2 15743:1 15763:3 15773:1 15776:9 15790:1 15814:1 15816:2 15847:1 15853:1 15871:1 15875:1 15884:1 15896:1 15927:1 15929:2 15935:1 15943:1 15949:3 15955:1 15997:4 16008:1 16036:1 16042:7 16051:1 16052:1 16054:4 16074:1 16077:1 16079:1 16094:1 16102:1 16103:1 16111:1 16112:1 16115:4 16118:1 16121:10 16147:1 16151:2 16152:3 16154:5 16161:1 16171:1 16187:1 16206:1 16228:1 16254:1 16262:3 16270:1 16273:2 16274:1 16283:1 16302:1 16306:2 16308:1 16310:1 16313:1 16318:1 16341:1 16370:1 16387:6 16402:1 16409:4 16426:1 16428:1 16438:1 16458:1 16474:1 16479:1 16484:4 16485:4 16488:1 16495:1 16500:2 16503:2 16506:1 16509:1 16534:1 16548:1 16577:2 16593:2 16603:1 16605:1 16623:1 16625:1 16630:3 16643:1 16652:2 16654:3 16659:1 16665:1 16670:1 16679:1 16681:5 16682:1 16693:1 16718:1 16726:3 16727:1 16729:1 16732:1 16735:1 16743:1 16744:2 16753:3 16754:1 16761:1 16763:1 16778:2 16780:1 16787:2 16809:1 16815:6 16817:1 16853:1 16855:2 16861:4 16862:2 16867:2 16871:1 16875:1 16882:1 16895:1 16897:1 16921:7 16946:1 16964:1 16970:1 16971:1 16975:1 17001:1 17030:1 17037:1 17043:1 17048:1 17057:2 17058:1 17066:1 17085:2 17090:1 17107:1 17113:1 17136:4 17137:2 17166:1 17175:1 17181:1 17185:1 17188:1 17237:4 17246:2 17248:1 17269:1 17275:5 17276:3 17286:1 17298:1 17303:1 17311:3 17316:2 17320:1 17331:2 17346:2 17347:1 17357:1 17362:5 17366:2 17367:1 17387:7 17403:1 17404:1 17424:2 17470:1 17485:2 17491:2 17499:1 17520:1 17553:2 17569:1 17580:1 17602:1 17605:1 17608:1 17616:2 17623:4 17626:1 17631:1 17649:1 17660:1 17678:5 17706:2 17712:1 17724:2 17725:2 17730:1 17735:2 17742:2 17768:1 17772:2 17774:1 17792:1 17808:1 17822:1 17826:1 17827:1 17834:2 17838:1 17839:1 17853:2 17855:4 17857:1 17862:1 17865:1 17890:1 17900:1 17908:1 17910:1 17915:1 17916:10 17919:1 17921:2 17922:1 17924:1 17927:2 17943:2 17955:4 17958:4 17962:2 17969:1 17975:1 17978:1 17979:1 17980:1 17983:1 17995:3 18009:3 18016:1 18025:2 18028:1 18035:1 18037:1 18038:2 18041:2 18043:5 18053:3 18058:1 18064:1 18068:2 18069:1 18079:1 18092:1 18093:5 18116:1 18130:1 18146:1 18165:1 18166:3 18168:3 18174:1 18177:1 18181:1 18189:1 18197:1 18208:2 18210:2 18248:1 18266:1 18313:2 18339:1 18356:1 18366:1 18367:1 18369:2 18370:2 18375:4 18378:1 18379:1 18406:1 18410:2 18414:1 18423:1 18436:1 18447:1 18454:1 18474:1 18478:1 18485:2 18491:1 18498:1 18504:1 18511:3 18513:1 18523:1 18539:1 18567:1 18568:1 18578:1 18580:1 18587:1 18616:3 18623:1 18629:1 18631:1 18654:2 18664:1 18665:1 18674:2 18702:4 18704:1 18727:3 18732:8 18736:1 18742:2 18747:1 18748:1 18754:1 18784:1 18792:3 18800:1 18816:1 18856:5 18857:1 18862:5 18880:1 18881:3 18882:1 18884:1 18886:1 18901:2 18905:1 18929:1 18930:1 18931:2 18934:1 18938:2 18941:6 18949:1 19011:1 19024:1 19033:4 19043:1 19056:1 19059:1 19060:2 19080:1 19085:1 19098:3 19108:4 19126:2 19134:2 19136:2 19145:1 19146:1 19148:1 19153:2 19172:1 19183:1 19193:1 19205:3 19207:3 19210:5 19226:3 19230:1 19249:1 19250:1 19275:2 19292:6 19293:1 19294:1 19302:2 19303:1 19322:1 19328:2 19331:1 19335:1 19337:5 19339:2 19359:1 19365:1 19368:1 19386:1 19392:2 19395:2 19402:1 19422:1 19425:1 19438:2 19440:1 19443:4 19446:1 19453:1 19469:1 19471:3 19475:1 19487:5 19507:1 19517:1 19522:1 19544:3 19559:3 19561:1 19562:1 19564:1 19586:1 19603:1 19610:1 19612:1 19613:1 19637:1 19644:1 19645:1 19683:1 19702:1 19706:1 19716:1 19730:2 19745:1 19762:5 19767:1 19773:1 19792:1 19804:1 19805:1 19810:5 19813:2 19837:1 19847:1 19849:1 19897:1 19901:1 19902:1 19912:1 19928:3 19962:1 19966:2 19992:1 20000:1 20004:1 20015:2 20034:1 20040:4 20080:1 20084:4 20096:2 20103:1 20109:4 20111:1 20118:1 20138:1 20165:1 20180:1 20208:1 20223:1 20224:1 20226:1 20235:1 20239:1 20247:1 20251:1 20253:1 20258:2 20266:1 20267:1 20270:4 20275:1 20278:1 20304:1 20316:1 20317:2 20318:7 20320:1 20326:1 20327:2 20331:3 20332:3 20333:1 20334:4 20336:1 20337:3 20338:1 20341:1 20343:4 20344:5 20350:1 20353:1 20356:1 20371:1 20373:1 20378:4 20380:1 20383:3 20398:5 20399:2 20406:1 20411:1 20413:1 20435:1 20436:1 20441:1 20442:9 20447:6 20448:2 20464:1 20469:2 20470:1 20496:3 20502:1 20505:1 20512:2 20529:2 20560:1 20576:4 20595:2 20619:1 20621:1 20627:1 20631:5 20659:1 20668:5 20686:1 20694:1 20696:1 20718:1 20727:1 20733:1 20738:3 20740:1 20742:6 20761:5 20762:1 20785:11 20818:1 20829:6 20831:1 20853:1 20871:1 20872:2 20874:1 20887:1 20890:1 20930:1 20949:11 20962:4 20973:2 20995:1 21012:1 21021:2 21056:1 21062:1 21065:2 21089:1 21100:1 21107:2 21108:5 21111:1 21112:1 21113:1 21123:2 21134:1 21139:1 21146:1 21150:5 21173:1 21198:5 21199:3 21208:2 21209:4 21218:1 21219:1 21224:1 21225:2 21228:1 21245:1 21249:1 21258:1 21293:2 21306:1 21327:1 21337:4 21350:1 21353:1 21361:1 21380:1 21402:1 21473:1 21480:1 21485:2 21508:1 21520:1 21529:2 21539:4 21543:1 21556:1 21557:5 21561:2 21582:3 21584:1 21586:1 21588:1 21602:2 21610:7 21613:1 21622:1 21627:1 21630:1 21633:1 21642:3 21645:1 21650:1 21663:1 21684:1 21697:1 21703:1 21718:1 21723:1 21741:1 21760:30 21773:5 21774:1 21782:3 21783:1 21784:1 21787:2 21812:1 21830:1 21831:2 21838:1 21844:1 21856:1 21868:1 21878:2 21887:1 21904:1 21914:2 21916:5 21922:1 21926:1 21927:1 21944:1 21995:3 21996:1 21997:1 21998:1 22007:1 22010:1 22016:1 22024:1 22027:2 22037:1 22041:1 22048:3 22080:1 22094:1 22109:1 22119:1 22123:1 22163:8 22179:1 22208:1 22218:1 22223:2 22229:1 22243:1 22245:5 22247:1 22256:1 22263:1 22279:1 22281:1 22315:1 22325:1 22328:1 22331:11 22360:1 22378:1 22383:1 22410:2 22415:1 22417:1 22431:1 22434:2 22460:1 22465:1 22466:2 22472:1 22481:1 22491:1 22493:1 22504:1 22513:1 22517:2 22520:4 22534:1 22548:2 22551:4 22561:1 22585:1 22598:1 22601:1 22602:1 22611:4 22617:1 22627:1 22644:1 22646:2 22647:1 22655:1 22662:1 22669:3 22690:4 22699:7 22707:2 22709:1 22715:1 22730:1 22734:2 22736:1 22749:2 22755:4 22756:1 22759:2 22760:2 22761:1 22786:4 22787:1 22795:2 22802:1 22803:6 22809:1 22812:1 22815:1 22818:1 22820:1 22822:1 22828:1 22830:1 22831:1 22846:1 22864:1 22865:1 22866:1 22874:3 22876:1 22895:1 22905:2 22914:1 22937:1 22942:1 22982:1 23000:1 23001:1 23003:1 23011:1 23027:4 23032:1 23039:1 23064:2 23071:1 23075:1 23076:3 23084:1 23089:6 23109:7 23118:1 23125:1 23127:2 23151:1 23155:1 23166:1 23167:2 23175:1 23188:1 23196:2 23201:1 23237:3 23248:1 23256:1 23263:1 23264:1 23284:3 23293:1 23295:1 23298:3 23299:1 23300:1 23305:1 23314:4 23333:1 23335:1 23344:4 23349:1 23360:2 23378:1 23384:2 23385:2 23392:1 23393:2 23404:4 23413:1 23416:1 23424:1 23430:20 23431:1 23433:1 23456:1 23466:4 23476:1 23491:1 23496:1 23521:1 23524:1 23551:2 23558:1 23586:4 23588:1 23592:1 23603:4 23610:4 23616:5 23623:1 23626:6 23646:1 23647:4 23655:3 23659:2 23676:1 23685:1 23703:1 23712:1 23713:1 23720:1 23733:1 23736:1 23739:3 23744:1 23767:1 23768:1 23775:10 23777:2 23784:1 23797:2 23835:5 23836:1 23840:1 23847:1 23853:1 23858:4 23862:1 23865:1 23866:6 23885:1 23891:1 23923:1 23940:2 23949:1 23967:1 23971:3 23974:3 23993:1 23994:1 24003:1 24004:1 24039:3 24054:1 24070:2 24076:1 24081:1 24095:1 24096:1 24100:1 24126:4 24128:1 24129:1 24132:1 24137:1 24143:1 24164:1 24168:1 24170:4 24179:1 24213:1 24239:1 24251:1 24257:1 24265:2 24266:6 24267:1 24271:1 24280:1 24286:1 24296:1 24307:2 24330:1 24332:1 24341:1 24350:1 24370:2 24373:1 24385:1 24394:1 24398:1 24401:6 24407:1 24410:1 24411:4 24412:1 24438:3 24463:1 24476:5 24477:2 24478:1 24482:1 24483:4 24487:3 24503:6 24525:2 24530:3 24536:2 24538:1 24568:1
14 9:1 30:1 56:1 59:1 71:1 75:1 96:2 146:1 157:2 163:1 185:5 186:7 188:1 196:1 197:1 204:1 216:1 219:1 223:1 224:1 230:1 239:1 242:1 243:1 247:1 254:7 256:1 260:1 265:1 270:1 295:1 296:6 308:1 314:1 318:2 320:2 323:1 336:1 346:2 375:1 379:1 407:3 450:1 457:8 501:2 524:1 525:1 527:5 541:1 545:1 565:1 592:2 607:1 619:1 636:1 663:1 699:1 704:2 708:1 713:1 714:1 724:1 732:2 748:1 759:3 762:1 763:1 764:2 766:1 785:3 789:1 802:1 811:1 814:5 831:2 834:2 838:1 851:3 864:2 869:2 875:1 881:1 888:1 889:1 895:1 900:2 907:1 909:1 911:1 914:1 922:1 927:1 932:1 942:1 946:1 949:1 965:1 980:1 1009:2 1011:2 1021:1 1023:2 1044:1 1045:1 1046:3 1048:1 1051:5 1053:1 1055:1 1059:2 1094:3 1095:1 1114:1 1124:1 1125:1 1127:1 1128:1 1141:1 1153:2 1155:1 1168:1 1171:3 1172:2 1187:1 1205:1 1217:1 1220:5 1226:1 1229:2 1256:2 1259:6 1264:4 1278:1 1285:1 1292:1 1293:2 1297:1 1299:1 1301:1 1321:1 1332:3 1356:2 1360:2 1369:1 1381:4 1398:1 1401:5 1405:1 1413:1 1425:2 1448:1 1452:1 1453:1 1470:1 1507:6 1510:1 1517:5 1526:1 1535:1 1536:1 1538:1 1545:2 1564:5 1585:1 1589:2 1591:4 1603:1 1616:2 1617:3 1621:1 1622:2 1627:1 1628:1 1640:1 1654:2 1659:1 1683:1 1701:1 1703:1 1710:1 1715:1 1730:1 1731:4 1737:1 1754:1 1759:1 1766:8 1781:2 1785:1 1798:1 1809:3 1818:1 1826:2 1834:1 1838:2 1842:1 1846:2 1856:2 1874:1 1879:1 1880:1 1882:2 1883:2 1885:2 1888:1 1891:1 1904:1 1908:1 1910:2 1911:1 1912:3 1938:4 1941:1 1942:2 1945:5 1947:1 1953:1 1954:5 1955:2 1957:1 1963:3 1965:1 1968:4 1970:2 1973:2 1976:3 1978:1 1991:1 2000:1 2015:1 2028:1 2040:2 2042:1 2047:1 2049:1 2051:2 2053:1 2061:1 2065:2 2071:1 2076:2 2077:1 2128:1 2131:1 2134:2 2149:1 2157:1 2164:1 2172:1 2178:1 2183:2 2193:1 2198:1 2226:2 2229:1 2234:2 2274:1 2275:2 2277:1 2286:2 2295:1 2298:1 2303:1 2321:4 2325:3 2333:1 2349:1 2366:3 2372:1 2380:1 2383:4 2389:1 2390:6 2394:1 2400:1 2419:1 2425:1 2426:1 2448:1 2451:3 2462:32 2464:2 2465:1 2469:1 2480:2 2486:1 2504:1 2507:10 2513:2 2519:7 2530:1 2565:5 2576:2 2587:2 2597:2 2627:3 2638:1 2691:1 2704:1 2706:1 2709:1 2731:3 2736:7 2742:2 2770:1 2779:2 2780:2 2785:2 2798:2 2801:1 2802:7 2821:1 2826:1 2834:1 2837:1 2844:1 2848:3 2849:1 2854:2 2855:1 2886:6 2895:1 2901:1 2919:2 2954:2 2979:1 2980:1 2994:1 3002:1 3003:1 3020:3 3027:1 3041:1 3042:1 3049:2 3060:1 3061:1 3064:1 3072:1 3077:6 3090:1 3098:1 3099:2 3116:1 3131:1 3132:1 3133:1 3147:2 3149:1 3153:1 3173:1 3179:1 3183:1 3184:11 3204:1 3206:2 3213:1 3221:4 3225:1 3231:1 3234:5 3245:1 3266:1 3285:1 3287:2 3292:1 3295:1 3297:4 3304:1 3312:1 3324:1 3326:2 3328:1 3332:1 3342:1 3351:1 3353:1 3369:2 3372:1 3375:1 3379:1 3404:1 3407:2 3408:2 3414:1 3416:1 3462:1 3494:1 3499:1 3518:1 3519:1 3520:1 3522:1 3525:1 3546:2 3547:1 3562:1 3572:1 3581:2 3588:1 3598:1 3606:1 3612:1 3615:1 3618:2 3631:1 3641:12 3649:1 3660:1 3677:1 3678:3 3679:1 3707:1 3712:1 3735:1 3744:1 3766:1 3774:1 3776:1 3783:1 3786:1 3804:1 3831:1 3837:3 3841:1 3878:1 3886:3 3889:1 3907:2 3908:1 3909:2 3918:1 3938:6 3963:1 3964:1 3966:1 3967:1 3976:1 3984:2 3995:5 3998:5 4005:2 4012:1 4026:1 4046:1 4051:1 4060:1 4061:1 4062:2 4083:1 4091:2 4093:1 4102:1 4107:17 4109:1 4136:3 4145:1 4154:1 4183:1 4186:1 4190:1 4198:9 4211:1 4212:5 4213:1 4218:1 4221:1 4223:1 4224:1 4225:1 4229:1 4234:1 4236:4 4237:1 4238:2 4244:3 4268:1 4325:1 4332:1 4333:1 4340:1 4353:1 4354:1 4368:1 4371:2 4375:5 4376:1 4399:1 4400:1 4413:2 4423:1 4460:1 4471:1 4497:1 4498:2 4505:1 4512:1 4518:3 4519:3 4534:2 4539:1 4541:1 4542:1 4551:1 4566:1 4572:2 4586:1 4587:1 4592:1 4599:2 4609:1 4611:1 4621:1 4622:1 4655:1 4667:1 4668:1 4683:2 4684:2 4710:2 4722:1 4724:1 4734:1 4759:1 4773:1 4784:1 4792:1 4796:3 4814:1 4820:1 4821:2 4832:2 4853:1 4876:2 4889:2 4892:1 4894:2 4901:2 4931:1 4986:1 5000:1 5003:2 5016:1 5024:1 5044:1 5047:1 5049:3 5071:3 5077:1 5088:2 5093:1 5095:1 5100:1 5127:1 5192:1 5201:1 5203:1 5224:1 5247:1 5248:1 5253:1 5254:1 5258:1 5283:1 5308:3 5313:1 5322:7 5325:4 5326:1 5332:5 5333:2 5337:2 5338:1 5339:2 5340:1 5342:1 5344:1 5347:6 5349:9 5350:1 5352:4 5354:3 5451:9 5492:1 5500:1 5520:1 5529:1 5530:1 5531:1 5533:2 5534:1 5535:1 5585:1 5595:1 5599:3 5604:1 5610:2 5627:1 5674:1 5681:2 5683:1 5686:3 5688:2 5702:8 5711:1 5719:1 5721:1 5726:1 5730:1 5746:3 5783:1 5788:2 5807:1 5813:2 5828:1 5865:3 5874:2 5878:3 5900:1 5931:2 5939:1 5947:5 5948:2 5952:1 5968:1 5998:1 6005:2 6034:1 6042:1 6045:1 6046:1 6047:2 6049:1 6050:1 6056:1 6062:1 6071:1 6087:1 6112:1 6116:1 6126:1 6131:1 6139:2 6145:1 6175:1 6183:8 6187:1 6194:1 6235:1 6237:2 6289:1 6293:1 6311:3 6355:1 6364:2 6365:4 6373:1 6378:1 6381:1 6382:1 6386:2 6405:1 6407:1 6409:1 6410:1 6412:1 6416:2 6417:1 6422:1 6429:39 6433:1 6434:1 6448:1 6449:3 6451:7 6459:3 6468:1 6475:1 6486:1 6491:1 6492:1 6493:1 6525:1 6526:3 6532:1 6554:1 6560:1 6578:1 6589:1 6597:1 6616:1 6619:2 6661:2 6667:1 6669:1 6675:1 6678:1 6685:1 6707:1 6716:2 6723:4 6756:1 6781:1 6789:1 6794:2 6796:2 6802:1 6804:1 6810:4 6824:4 6834:1 6839:1 6843:1 6847:1 6854:4 6859:13 6908:4 6920:1 6937:1 6981:4 7016:1 7021:1 7027:2 7045:1 7054:4 7059:2 7068:8 7096:1 7097:1 7104:1 7108:1 7116:1 7122:1 7137:1 7157:3 7160:1 7165:1 7166:1 7169:3 7170:1 7177:1 7178:2 7179:1 7181:2 7182:1 7190:1 7194:1 7199:1 7202:1 7215:1 7216:1 7221:1 7235:1 7245:1 7246:2 7251:1 7268:1 7273:1 7285:11 7303:1 7322:1 7360:1 7361:5 7377:1 7379:1 7382:1 7391:2 7400:9 7402:1 7409:1 7414:1 7418:2 7419:1 7427:2 7430:1 7432:1 7438:2 7443:1 7450:4 7456:3 7457:5 7459:2 7460:1 7461:4 7462:1 7464:2 7465:2 7499:1 7510:1 7527:1 7552:1 7553:1 7554:2 7564:1 7571:4 7572:1 7576:1 7581:6 7589:1 7605:1 7614:3 7615:1 7622:1 7626:1 7638:1 7648:2 7656:1 7658:3 7670:1 7682:1 7701:1 7702:1 7709:1 7712:4 7741:1 7742:1 7753:2 7754:1 7761:1 7768:1 7773:11 7778:1 7782:1 7787:4 7799:1 7803:1 7804:1 7810:1 7820:3 7860:2 7868:2 7872:1 7887:1 7905:1 7908:1 7912:1 7929:3 7930:1 7950:3 7964:2 7972:1 7979:1 7982:1 7988:5 7999:1 8002:1 8005:1 8049:1 8065:8 8070:6 8081:8 8082:4 8099:4 8158:1 8162:4 8171:2 8174:1 8175:2 8176:8 8189:1 8195:1 8206:5 8207:1 8229:2 8230:1 8234:11 8249:2 8256:1 8279:1 8282:1 8284:1 8285:5 8296:1 8304:1 8311:1 8317:1 8318:1 8328:5 8343:1 8348:1 8352:6 8355:1 8357:2 8359:2 8361:1 8383:1 8387:3 8428:1 8433:3 8443:2 8469:8 8472:1 8508:1 8553:2 8567:2 8568:2 8574:1 8582:1 8583:1 8593:2 8597:3 8598:5 8603:1 8614:1 8623:1 8630:1 8635:1 8656:3 8657:1 8672:1 8681:2 8690:2 8692:1 8702:2 8709:1 8714:3 8726:1 8727:3 8731:1 8736:3 8753:3 8759:7 8761:1 8771:1 8782:2 8783:1 8795:2 8800:2 8802:7 8809:4 8812:1 8814:6 8831:2 8832:4 8833:4 8836:1 8878:2 8891:5 8900:3 8901:1 8910:1 8911:1 8914:1 8916:4 8944:1 8968:1 8979:1 8983:1 8993:1 8996:1 8998:2 9000:1 9002:4 9022:1 9027:1 9038:1 9058:1 9060:1 9062:2 9063:1 9067:1 9084:1 9097:1 9101:5 9102:7 9120:4 9127:1 9132:1 9138:1 9140:1 9142:2 9156:1 9166:1 9173:1 9181:1 9185:3 9222:1 9240:2 9243:1 9252:6 9263:1 9313:1 9318:1 9336:1 9346:1 9363:1 9377:2 9392:1 9400:1 9403:2 9419:1 9440:2 9441:1 9455:5 9462:2 9466:1 9488:6 9495:1 9497:1 9532:11 9536:1 9550:2 9562:2 9563:2 9575:2 9596:1 9599:1 9607:1 9619:1 9622:2 9624:1 9645:1 9653:1 9682:5 9683:1 9688:2 9690:1 9691:1 9697:1 9698:1 9700:1 9710:2 9716:2 9723:3 9729:1 9738:1 9743:1 9772:1 9810:2 9818:1 9823:4 9824:1 9850:1 9859:2 9867:1 9877:1 9878:1 9881:1 9884:1 9890:1 9891:1 9918:3 9922:1 9924:3 9944:1 9949:1 9963:1 9999:1 10022:3 10040:2 10042:2 10045:1 10052:2 10053:2 10054:2 10070:1 10073:1 10074:3 10090:5 10169:4 10172:1 10176:1 10204:1 10211:1 10218:4 10220:1 10232:1 10254:1 10278:1 10316:1 10318:2 10319:1 10324:1 10329:1 10369:1 10370:1 10384:5 10406:1 10457:1 10465:1 10480:27 10502:1 10503:3 10524:1 10530:1 10531:3 10537:1 10551:1 10576:1 10597:1 10598:4 10617:1 10648:2 10651:4 10659:1 10667:1 10707:1 10713:1 10719:1 10722:1 10725:2 10757:1 10758:1 10772:1 10792:1 10809:1 10818:1 10823:2 10837:1 10843:1 10847:11 10851:4 10862:1 10871:3 10872:1 10879:1 10887:1 10892:1 10897:1 10898:2 10912:1 10951:1 10952:1 10953:1 10961:3 10962:2 10970:1 10974:5 10979:2 10981:1 10985:2 10987:1 10993:1 11013:1 11016:1 11036:1 11046:2 11047:6 11050:1 11056:2 11062:1 11103:3 11118:2 11126:1 11159:2 11163:3 11168:2 11173:1 11186:2 11187:4 11188:1 11201:1 11211:2 11215:5 11223:3 11235:2 11273:4 11280:2 11283:1 11284:1 11286:1 11297:1 11301:1 11325:3 11329:1 11337:3 11341:1 11344:1 11346:1 11348:1 11349:2 11352:1 11353:1 11368:2 11375:4 11394:1 11400:1 11405:2 11408:1 11415:1 11430:5 11447:4 11449:1 11451:2 11459:2 11463:2 11486:1 11507:1 11509:2 11526:2 11584:2 11600:1 11607:1 11638:3 11640:1 11643:1 11653:1 11655:1 11705:1 11708:2 11712:3 11739:2 11742:1 11747:1 11790:1 11792:1 11800:1 11801:3 11807:1 11812:2 11813:1 11818:1 11823:1 11832:1 11833:1 11834:1 11843:1 11853:1 11857:2 11864:3 11874:1 11876:1 11900:1 11906:2 11932:1 11937:1 11966:1 11974:1 11976:1 11979:1 11985:1 11990:1 11992:1 11994:1 12038:1 12050:4 12078:1 12084:1 12099:4 12114:1 12115:1 12126:1 12131:1 12144:2 12145:1 12146:1 12178:1 12181:1 12182:2 12184:1 12218:1 12229:1 12245:1 12276:2 12287:1 12289:1 12323:1 12328:1 12337:1 12338:1 12346:6 12364:2 12365:2 12372:1 12375:1 12381:4 12387:2 12396:1 12416:1 12425:1 12432:1 12440:1 12444:1 12486:2 12488:2 12490:1 12491:1 12512:1 12555:1 12556:3 12573:1 12575:3 12582:1 12583:1 12585:1 12586:1 12614:5 12623:1 12635:2 12641:1 12652:2 12662:3 12672:1 12685:1 12698:1 12723:4 12739:2 12740:1 12741:5 12748:1 12754:1 12797:3 12798:2 12800:5 12801:1 12822:1 12837:1 12839:1 12842:1 12843:1 12846:2 12881:2 12930:1 12942:2 12943:1 12945:2 12946:1 12950:3 12954:2 12961:1 12985:2 12988:5 12989:1 13014:2 13025:1 13032:1 13033:1 13058:2 13072:1 13094:1 13104:3 13125:1 13128:1 13140:1 13142:1 13153:8 13156:1 13181:1 13205:1 13207:2 13212:1 13225:3 13238:1 13259:1 13288:1 13295:2 13304:1 13311:2 13328:11 13333:2 13334:1 13336:1 13345:1 13362:1 13390:2 13406:1 13410:1 13417:1 13428:1 13431:1 13434:1 13435:1 13437:1 13445:3 13446:1 13449:2 13452:2 13453:1 13454:1 13462:1 13470:1 13471:1 13482:1 13489:3 13502:1 13505:2 13525:2 13535:1 13542:1 13561:1 13590:1 13593:2 13615:1 13620:1 13637:4 13647:3 13662:3 13664:2 13680:4 13682:2 13688:1 13703:1 13707:1 13719:4 13729:1 13732:1 13733:2 13760:1 13765:3 13766:1 13778:1 13780:1 13803:6 13807:2 13819:10 13823:1 13835:6 13857:1 13858:1 13865:1 13871:2 13876:1 13888:2 13895:2 13907:1 13908:2 13926:1 13928:4 13929:1 13931:1 13936:1 13947:1 13970:2 13979:4 13986:1 13989:3 13994:2 13995:1 13996:2 14000:1 14024:2 14026:2 14030:1 14031:1 14035:2 14041:1 14050:3 14051:5 14071:2 14073:1 14077:1 14088:1 14097:2 14119:3 14127:2 14130:1 14178:6 14204:2 14207:1 14227:1 14229:3 14231:2 14252:1 14262:1 14279:1 14286:1 14300:2 14317:1 14329:1 14332:2 14334:1 14341:1 14365:2 14366:6 14371:4 14380:1 14382:6 14383:2 14386:1 14387:2 14391:2 14395:1 14403:1 14404:1 14417:1 14422:2 14434:1 14443:1 14465:2 14476:8 14477:3 14496:9 14513:1 14516:6 14522:1 14541:1 14549:1 14553:1 14556:1 14576:1 14577:2 14582:1 14583:1 14596:1 14622:1 14630:4 14635:1 14648:1 14649:1 14650:1 14654:1 14657:1 14665:2 14672:2 14674:1 14677:6 14678:3 14691:2 14696:1 14711:1 14717:1 14719:4 14727:1 14734:1 14740:4 14744:1 14747:8 14751:1 14762:3 14763:1 14764:1 14765:3 14768:1 14774:1 14776:1 14785:4 14802:1 14804:1 14807:1 14810:1 14824:1 14837:4 14844:1 14849:2 14851:1 14864:5 14871:1 14877:1 14882:1 14885:5 14934:2 14938:2 14946:3 14956:2 14962:1 14976:1 14981:2 14987:1 14991:1 15002:1 15030:2 15035:2 15040:1 15073:1 15080:2 15087:1 15090:1 15097:1 15098:1 15100:1 15105:2 15111:1 15123:3 15134:9 15135:1 15137:5 15142:1 15160:1 15166:1 15169:1 15171:3 15183:1 15184:4 15197:1 15201:2 15205:10 15233:2 15240:1 15251:1 15269:4 15282:4 15283:1 15287:1 15303:1 15307:32 15312:4 15322:1 15326:1 15344:1 15354:2 15360:1 15374:1 15396:5 15405:4 15423:1 15444:1 15445:2 15452:1 15453:1 15460:3 15480:1647 15483:2 15492:2 15496:1 15508:1 15518:1 15524:1 15556:2 15560:1 15568:1 15570:1 15574:1 15591:1 15595:1 15599:2 15610:3 15617:2 15623:1 15625:1 15638:3 15639:2 15642:2 15645:1 15646:1 15647:1 15649:4 15652:1 15655:3 15658:1 15661:1 15662:6 15678:1 15684:1 15723:1 15738:1 15742:2 15743:1 15763:3 15773:1 15776:9 15790:1 15814:1 15816:2 15847:1 15853:1 15871:1 15875:1 15884:1 15896:1 15927:1 15929:3 15935:2 15943:1 15949:3 15955:1 15984:1 15997:4 16008:1 16019:1 16036:1 16042:7 16051:1 16052:1 16054:4 16059:1 16074:1 16077:1 16079:1 16094:1 16102:1 16103:1 16111:1 16112:1 16115:4 16118:1 16121:10 16147:1 16151:2 16152:3 16154:5 16161:1 16171:1 16179:1 16187:1 16206:1 16228:1 16254:1 16262:3 16267:1 16270:1 16273:2 16274:1 16283:1 16302:1 16306:2 16308:1 16310:1 16313:1 16318:1 16341:1 16370:2 16387:6 16402:1 16409:4 16426:1 16428:1 16438:1 16458:1 16474:1 16479:1 16484:4 16485:4 16488:1 16495:2 16500:2 16503:2 16506:1 16509:1 16534:1 16548:1 16577:2 16593:2 16603:1 16605:1 16611:1 16623:1 16625:1 16630:3 16643:1 16652:2 16654:3 16659:1 16665:1 16670:1 16679:1 16681:5 16682:1 16693:1 16718:2 16726:4 16727:1 16729:1 16732:1 16735:1 16743:1 16744:2 16753:4 16754:1 16761:1 16763:1 16777:1 16778:2 16780:1 16787:2 16792:1 16809:1 16815:6 16817:1 16853:1 16855:2 16861:4 16862:2 16867:3 16871:1 16875:1 16882:1 16895:1 16897:1 16921:7 16946:1 16964:1 16970:1 16971:1 16975:1 17001:1 17030:1 17037:1 17043:1 17048:1 17057:2 17058:1 17066:1 17085:2 17090:1 17107:1 17113:1 17136:4 17137:2 17166:1 17175:1 17181:1 17185:1 17188:1 17237:4 17246:2 17248:1 17269:1 17275:5 17276:3 17286:1 17298:1 17303:1 17311:3 17316:2 17320:1 17331:2 17346:2 17347:1 17357:1 17362:6 17366:2 17367:1 17387:7 17403:1 17404:1 17424:2 17470:1 17485:2 17491:3 17499:1 17520:1 17553:2 17569:1 17580:1 17602:1 17605:1 17608:1 17616:2 17623:4 17626:1 17631:1 17649:1 17658:1 17660:1 17678:5 17706:2 17712:1 17724:2 17725:2 17730:1 17735:2 17742:2 17768:1 17772:2 17774:1 17775:1 17792:1 17808:1 17822:1 17826:1 17827:1 17834:2 17838:1 17839:1 17853:2 17855:4 17857:1 17862:1 17865:1 17890:1 17900:1 17908:1 17910:1 17915:1 17916:10 17919:1 17921:2 17922:1 17924:1 17927:2 17943:2 17955:4 17958:4 17962:2 17969:1 17975:1 17978:1 17979:1 17980:1 17983:1 17995:4 18009:3 18016:1 18025:2 18028:1 18035:1 18037:1 18038:2 18041:2 18043:6 18053:3 18058:1 18064:1 18068:2 18069:1 18079:1 18092:1 18093:5 18116:1 18130:1 18146:1 18165:1 18166:3 18168:3 18174:1 18177:1 18181:1 18189:1 18197:1 18208:2 18210:2 18215:1 18248:1 18266:1 18313:2 18339:1 18356:1 18360:1 18366:1 18367:1 18369:2 18370:2 18375:4 18378:1 18379:1 18406:1 18409:1 18410:2 18414:1 18423:1 18436:1 18447:1 18454:1 18474:1 18478:1 18479:1 18485:2 18491:1 18498:1 18504:1 18511:3 18513:1 18523:1 18539:1 18567:1 18568:1 18578:1 18580:1 18587:1 18616:3 18623:1 18629:1 18631:1 18654:2 18664:1 18665:1 18674:2 18702:4 18704:1 18727:4 18732:8 18736:1 18742:2 18747:1 18748:1 18754:1 18755:1 18784:1 18792:3 18800:1 18816:1 18856:5 18857:1 18862:5 18880:1 18881:3 18882:1 18884:1 18886:1 18901:2 18905:1 18929:1 18930:1 18931:2 18934:1 18938:2 18941:6 18949:1 18980:1 19011:1 19024:1 19033:4 19043:1 19056:1 19059:1 19060:2 19080:1 19085:1 19098:3 19108:4 19126:2 19134:3 19136:2 19139:1 19145:1 19146:1 19148:1 19153:2 19172:1 19183:1 19193:2 19205:3 19207:3 19210:5 19226:3 19230:1 19249:1 19250:1 19275:2 19292:6 19293:1 19294:1 19302:2 19303:1 19322:1 19328:2 19331:1 19335:1 19337:5 19339:2 19359:1 19365:1 19368:1 19386:1 19391:1 19392:2 19395:2 19402:1 19412:1 19422:1 19425:1 19438:2 19440:1 19443:4 19446:1 19453:1 19469:1 19471:3 19475:1 19487:5 19507:1 19517:1 19522:1 19544:3 19559:4 19561:1 19562:1 19564:1 19586:1 19603:1 19610:1 19612:1 19613:1 19637:1 19644:1 19645:1 19683:1 19702:1 19706:1 19716:1 19730:2 19745:1 19753:1 19762:5 19767:1 19773:1 19792:1 19804:1 19805:1 19810:5 19813:2 19837:1 19844:1 19847:1 19849:1 19897:1 19901:1 19902:1 19912:1 19928:3 19962:1 19966:2 19992:1 20000:1 20004:1 20015:2 20034:1 20040:4 20080:1 20084:4 20096:2 20103:1 20109:4 20111:1 20118:1 20137:1 20138:1 20165:1 20180:1 20208:1 20223:1 20224:1 20226:1 20235:1 20239:1 20247:2 20251:1 20253:1 20258:2 20261:1 20266:1 20267:1 20270:4 20275:1 20278:1 20293:1 20304:1 20316:1 20317:2 20318:7 20320:1 20326:1 20327:2 20331:3 20332:3 20333:1 20334:4 20336:1 20337:4 20338:1 20341:1 20343:4 20344:5 20350:1 20353:1 20356:1 20371:1 20373:1 20378:5 20380:1 20383:3 20398:5 20399:2 20406:1 20411:1 20413:1 20435:1 20436:1 20441:1 20442:9 20447:6 20448:2 20464:1 20469:3 20470:1 20496:3 20502:2 20505:1 20512:2 20529:2 20560:1 20576:4 20595:2 20619:1 20621:1 20627:1 20631:5 20659:1 20668:5 20686:1 20694:1 20696:1 20717:1 20718:2 20727:1 20733:1 20738:3 20740:1 20742:6 20761:5 20762:1 20785:11 20818:1 20829:6 20831:1 20853:1 20871:1 20872:2 20874:1 20887:2 20890:1 20930:1 20949:11 20962:4 20973:2 20995:1 21012:1 21021:2 21056:1 21062:1 21065:2 21089:1 21100:1 21107:2 21108:5 21111:1 21112:1 21113:1 21123:2 21134:1 21139:1 21146:1 21150:5 21173:1 21198:5 21199:4 21208:2 21209:4 21218:2 21219:1 21224:1 21225:2 21228:1 21245:1 21249:1 21258:1 21293:2 21306:1 21327:1 21337:4 21350:1 21353:1 21361:2 21380:1 21402:1 21473:1 21480:1 21485:2 21486:1 21508:1 21520:1 21529:2 21539:4 21543:1 21556:1 21557:5 21561:2 21567:1 21582:3 21584:1 21586:1 21588:1 21595:1 21602:2 21610:7 21613:1 21622:1 21627:1 21630:1 21633:1 21642:3 21645:1 21650:1 21663:1 21684:2 21697:1 21703:1 21718:1 21723:1 21741:1 21760:32 21773:5 21774:1 21782:3 21783:1 21784:1 21787:2 21791:1 21812:1 21830:1 21831:2 21838:1 21844:1 21856:1 21868:1 21878:2 21887:1 21904:1 21914:2 21916:6 21922:1 21926:1 21927:1 21944:1 21995:3 21996:1 21997:1 21998:1 22007:1 22010:1 22016:1 22024:1 22027:3 22037:1 22041:1 22048:3 22080:1 22094:1 22109:1 22119:2 22123:1 22142:1 22163:8 22179:1 22208:1 22218:1 22223:2 22229:1 22233:1 22243:1 22245:5 22247:1 22251:1 22256:1 22263:1 22279:1 22281:1 22315:1 22325:1 22328:1 22331:12 22360:1 22368:1 22376:2 22378:1 22383:1 22410:2 22415:1 22417:1 22431:1 22434:2 22455:1 22460:1 22465:1 22466:2 22472:1 22481:1 22491:1 22493:1 22504:1 22513:1 22517:2 22520:4 22534:1 22548:2 22551:4 22561:1 22585:1 22598:1 22601:1 22602:1 22611:4 22617:1 22627:1 22644:1 22646:2 22647:1 22655:1 22662:1 22669:4 22690:4 22699:7 22707:2 22709:1 22715:1 22730:1 22734:2 22736:1 22749:2 22755:4 22756:1 22759:2 22760:2 22761:1 22786:4 22787:1 22795:2 22802:1 22803:6 22809:1 22812:1 22815:1 22818:1 22820:1 22822:1 22828:1 22830:1 22831:1 22846:1 22864:1 22865:1 22866:1 22874:3 22876:1 22895:1 22905:2 22914:1 22937:1 22942:1 22982:1 23000:1 23001:1 23003:1 23011:1 23027:4 23032:1 23039:1 23064:2 23071:1 23075:1 23076:3 23084:1 23089:6 23109:8 23118:1 23125:1 23127:3 23151:1 23155:1 23166:1 23167:2 23175:1 23188:1 23196:2 23201:1 23237:3 23248:1 23256:1 23263:1 23264:1 23284:3 23293:1 23295:1 23298:3 23299:1 23300:1 23305:1 23314:4 23333:1 23335:1 23341:1 23344:4 23349:1 23360:3 23363:1 23378:1 23384:2 23385:2 23392:1 23393:2 23404:4 23413:1 23416:1 23424:1 23430:21 23431:1 23433:1 23456:2 23466:4 23476:1 23491:1 23496:1 23521:1 23524:1 23551:2 23558:1 23586:4 23588:1 23592:1 23603:4 23610:4 23616:6 23623:1 23626:6 23646:1 23647:4 23655:4 23659:2 23676:1 23685:1 23703:1 23712:1 23713:1 23720:1 23722:1 23733:1 23736:1 23739:3 23744:1 23767:1 23768:1 23775:11 23777:2 23784:1 23797:2 23835:5 23836:1 23840:1 23847:1 23853:1 23858:4 23862:1 23865:1 23866:6 23885:1 23891:1 23923:1 23940:2 23949:1 23967:1 23971:3 23974:3 23993:1 23994:1 24003:1 24004:1 24039:3 24054:1 24070:3 24076:1 24081:1 24095:1 24096:1 24100:1 24126:4 24128:1 24129:1 24132:1 24137:1 24143:1 24164:1 24168:1 24170:5 24179:1 24213:1 24225:1 24239:1 24251:1 24257:1 24265:2 24266:6 24267:1 24271:1 24280:1 24286:1 24287:1 24292:1 24296:1 24307:2 24330:1 24332:1 24341:1 24350:1 24370:2 24373:1 24385:1 24394:1 24398:1 24401:6 24407:1 24410:1 24411:4 24412:1 24438:3 24463:1 24476:5 24477:2 24478:1 24482:1 24483:4 24487:3 24503:6 24525:2 24530:4 24536:2 24538:1 24568:1
14 9:1 30:1 56:1 59:1 71:1 75:1 96:2 146:1 157:2 163:1 185:6 186:7 188:1 196:1 197:1 204:1 216:1 219:1 223:1 224:1 230:1 239:1 242:1 243:1 247:1 254:8 256:1 260:1 265:1 270:1 295:1 296:6 308:1 314:1 318:2 320:2 323:1 336:1 346:2 375:1 376:1 379:1 407:3 450:1 457:9 501:2 524:1 525:1 527:5 541:1 545:1 565:1 592:2 607:1 619:1 636:1 663:1 699:1 704:2 708:1 713:1 714:1 724:1 731:1 732:2 748:1 759:4 762:1 763:1 764:2 766:1 785:3 789:1 802:1 811:1 814:5 831:2 834:2 838:1 851:3 864:2 869:2 875:1 881:1 884:1 888:1 889:1 895:1 900:2 907:1 909:1 911:1 914:1 922:1 927:1 932:1 942:1 946:1 949:1 965:1 980:1 1009:2 1011:2 1021:1 1023:2 1044:1 1045:1 1046:3 1048:1 1051:5 1053:1 1055:1 1059:3 1094:3 1095:1 1114:1 1124:1 1125:1 1127:1 1128:1 1141:1 1153:2 1155:1 1168:1 1171:4 1172:2 1187:1 1205:1 1217:1 1220:5 1226:1 1229:2 1256:2 1259:6 1264:4 1278:1 1285:1 1292:1 1293:2 1297:1 1299:1 1301:1 1321:1 1332:3 1356:2 1360:2 1369:1 1381:4 1398:1 1401:6 1405:1 1413:1 1425:2 1448:1 1452:1 1453:1 1470:1 1507:6 1510:1 1517:5 1526:1 1535:1 1536:1 1538:1 1545:2 1564:5 1585:1 1589:2 1591:4 1603:1 1616:2 1617:3 1621:1 1622:2 1627:1 1628:1 1640:1 1654:2 1659:1 1683:1 1701:1 1703:1 1710:1 1715:1 1730:1 1731:5 1737:1 1754:1 1759:1 1766:8 1781:2 1785:1 1798:1 1809:4 1818:1 1826:3 1834:1 1838:2 1842:1 1846:2 1856:3 1863:1 1874:1 1879:1 1880:1 1882:2 1883:2 1885:2 1888:1 1891:1 1904:2 1908:1 1910:2 1911:1 1912:3 1938:4 1941:1 1942:2 1945:6 1947:1 1953:1 1954:5 1955:2 1957:1 1963:3 1965:2 1968:4 1970:2 1973:2 1976:3 1978:1 1991:1 2000:1 2015:1 2028:1 2040:2 2042:1 2047:1 2049:1 2051:2 2053:1 2061:1 2065:2 2071:1 2076:2 2077:1 2128:1 2131:1 2134:2 2149:1 2157:1 2164:1 2172:1 2178:1 2183:2 2193:1 2198:1 2226:3 2229:1 2234:2 2274:1 2275:2 2277:1 2286:2 2295:1 2298:1 2303:1 2321:4 2325:3 2333:1 2349:1 2366:3 2372:1 2380:1 2383:4 2389:1 2390:6 2394:1 2400:1 2419:2 2425:1 2426:1 2448:1 2451:3 2462:32 2464:2 2465:1 2469:1 2470:1 2480:2 2486:1 2504:1 2507:10 2513:2 2519:8 2530:1 2565:5 2576:2 2587:2 2597:2 2627:3 2638:1 2691:1 2704:1 2706:1 2709:1 2731:3 2736:8 2742:2 2770:1 2779:2 2780:2 2785:2 2798:2 2801:1 2802:8 2821:1 2826:1 2834:1 2837:1 2844:1 2848:3 2849:1 2854:2 2855:1 2886:6 2895:1 2901:1 2919:2 2954:2 2979:1 2980:1 2994:1 3002:1 3003:1 3020:3 3027:1 3041:1 3042:1 3049:3 3060:1 3061:1 3064:1 3072:1 3077:6 3090:1 3098:1 3099:2 3116:1 3131:1 3132:1 3133:1 3147:2 3149:1 3153:1 3173:1 3179:1 3183:1 3184:12 3204:1 3206:2 3213:1 3221:4 3225:1 3231:1 3234:5 3245:1 3248:1 3266:1 3285:1 3287:2 3292:1 3295:1 3297:4 3304:1 3312:1 3324:1 3326:2 3328:1 3332:1 3342:1 3351:1 3353:1 3369:2 3372:1 3375:1 3379:1 3404:1 3407:2 3408:2 3414:1 3416:1 3462:1 3494:1 3499:1 3518:2 3519:1 3520:1 3522:1 3525:1 3546:2 3547:1 3562:1 3572:1 3581:2 3588:1 3598:1 3606:1 3612:1 3615:1 3618:2 3631:1 3641:13 3649:1 3660:1 3677:1 3678:3 3679:1 3707:1 3712:1 3735:1 3744:1 3766:1 3774:1 3776:1 3783:1 3786:1 3804:1 3831:1 3837:3 3841:1 3878:1 3886:3 3889:1 3907:2 3908:1 3909:2 3918:1 3938:6 3963:1 3964:1 3966:1 3967:1 3976:1 3984:2 3995:6 3998:6 4005:2 4012:1 4026:1 4046:1 4051:1 4060:1 4061:1 4062:2 4083:1 4091:2 4093:1 4102:1 4107:17 4108:1 4109:1 4136:3 4145:1 4154:1 4183:1 4186:1 4190:1 4195:1 4198:10 4211:1 4212:5 4213:1 4218:1 4221:1 4223:1 4224:1 4225:1 4229:1 4234:1 4236:4 4237:1 4238:3 4244:3 4268:1 4325:1 4332:1 4333:1 4340:1 4353:1 4354:1 4368:1 4371:2 4375:5 4376:1 4399:1 4400:1 4413:2 4423:1 4460:1 4471:1 4497:1 4498:2 4505:1 4512:1 4518:4 4519:3 4534:2 4539:1 4541:1 4542:1 4551:1 4566:1 4569:1 4572:2 4586:1 4587:1 4592:1 4599:3 4609:2 4611:1 4621:1 4622:1 4655:1 4667:1 4668:1 4683:2 4684:2 4710:2 4722:1 4724:1 4734:1 4759:1 4773:1 4784:1 4792:1 4796:3 4814:1 4820:1 4821:2 4832:2 4853:1 4876:2 4889:2 4892:1 4894:2 4901:2 4931:1 4986:1 5000:1 5003:2 5016:1 5024:1 5044:1 5047:1 5049:3 5071:3 5077:1 5088:2 5093:1 5095:1 5100:1 5127:1 5192:1 5201:1 5203:1 5224:1 5247:1 5248:1 5253:1 5254:1 5258:1 5283:1 5308:3 5313:1 5322:8 5325:4 5326:1 5332:5 5333:2 5337:3 5338:1 5339:2 5340:1 5342:1 5344:1 5347:6 5349:9 5350:1 5352:4 5354:3 5451:9 5492:1 5500:1 5520:1 5529:1 5530:1 5531:1 5533:2 5534:1 5535:1 5585:1 5595:1 5599:3 5604:1 5610:2 5627:1 5674:1 5681:2 5683:1 5686:3 5688:3 5702:8 5711:1 5719:1 5721:1 5726:1 5730:1 5746:3 5783:1 5788:2 5807:1 5813:2 5828:1 5865:3 5874:3 5878:3 5889:1 5900:1 5931:2 5939:1 5947:5 5948:2 5952:1 5968:2 5998:1 6005:2 6034:1 6042:1 6045:1 6046:1 6047:2 6049:1 6050:1 6056:1 6062:1 6071:1 6087:1 6112:1 6116:1 6126:1 6131:1 6139:2 6145:1 6175:1 6183:8 6187:1 6194:1 6235:1 6237:2 6289:1 6293:1 6311:3 6355:2 6364:2 6365:4 6373:1 6378:1 6381:1 6382:1 6386:2 6405:1 6407:1 6409:1 6410:1 6412:1 6416:2 6417:1 6422:1 6429:41 6433:1 6434:1 6448:1 6449:3 6451:7 6459:3 6468:1 6475:1 6486:1 6491:1 6492:1 6493:1 6525:1 6526:3 6532:2 6554:1 6560:1 6578:1 6589:1 6597:1 6616:1 6619:2 6661:2 6667:1 6669:1 6675:1 6678:1 6685:1 6707:1 6715:1 6716:2 6723:4 6756:1 6781:1 6789:1 6794:2 6796:2 6802:1 6804:1 6810:4 6824:4 6834:1 6839:1 6843:1 6847:1 6854:4 6859:13 6908:4 6920:1 6937:1 6981:4 6991:1 7016:1 7021:1 7027:2 7045:1 7054:5 7059:2 7068:8 7096:1 7097:1 7104:1 7108:1 7116:1 7122:1 7137:1 7157:3 7160:1 7163:1 7165:1 7166:1 7169:3 7170:1 7177:1 7178:2 7179:1 7181:2 7182:1 7190:1 7194:1 7199:1 7202:1 7215:1 7216:1 7221:1 7235:1 7245:1 7246:2 7251:1 7268:1 7273:1 7285:11 7303:1 7322:1 7360:1 7361:5 7377:1 7379:1 7382:1 7391:2 7400:10 7402:1 7409:1 7414:1 7418:2 7419:1 7427:2 7430:1 7432:1 7435:1 7438:2 7443:1 7445:1 7450:4 7451:1 7456:3 7457:5 7459:2 7460:1 7461:4 7462:1 7464:2 7465:2 7499:1 7510:1 7527:1 7552:1 7553:1 7554:2 7564:1 7571:4 7572:1 7576:1 7581:6 7588:1 7589:1 7605:1 7614:3 7615:1 7622:1 7626:1 7638:1 7648:3 7656:1 7658:3 7670:1 7682:1 7701:1 7702:1 7709:1 7712:4 7741:1 7742:1 7753:2 7754:1 7761:1 7768:1 7773:11 7778:1 7782:1 7787:4 7799:1 7803:1 7804:1 7810:1 7820:3 7860:2 7868:2 7872:1 7887:1 7905:1 7908:1 7912:1 7929:3 7930:1 7950:3 7964:2 7972:1 7979:1 7982:1 7988:5 7999:1 8002:1 8005:1 8049:1 8065:9 8070:6 8081:9 8082:4 8099:4 8158:1 8162:4 8171:2 8174:1 8175:2 8176:8 8189:1 8195:1 8206:5 8207:1 8229:2 8230:1 8234:11 8249:2 8256:1 8279:1 8282:1 8284:1 8285:6 8296:1 8304:1 8311:1 8317:1 8318:1 8328:6 8343:1 8348:1 8352:6 8355:1 8357:2 8359:2 8361:1 8376:1 8383:1 8387:3 8428:1 8433:3 8443:2 8469:8 8472:1 8508:1 8553:2 8567:2 8568:2 8574:1 8582:1 8583:1 8593:2 8597:3 8598:5 8603:1 8614:1 8623:1 8630:1 8635:1 8637:1 8656:3 8657:1 8672:1 8681:2 8690:2 8692:1 8702:2 8709:1 8714:3 8726:1 8727:3 8731:1 8736:3 8753:3 8759:7 8761:1 8771:1 8782:2 8783:1 8795:2 8800:2 8802:7 8809:5 8812:1 8814:6 8831:2 8832:4 8833:4 8836:1 8878:2 8891:5 8900:3 8901:1 8910:1 8911:1 8914:1 8916:4 8944:1 8968:1 8979:1 8983:2 8993:1 8996:1 8998:2 9000:1 9002:4 9022:1 9027:1 9038:1 9058:2 9060:1 9062:2 9063:1 9067:1 9084:1 9097:1 9101:6 9102:8 9120:4 9127:1 9132:1 9138:1 9140:1 9142:2 9156:1 9166:1 9173:1 9181:1 9185:3 9222:1 9240:2 9243:1 9252:6 9263:1 9313:2 9318:1 9336:1 9346:1 9363:1 9377:2 9392:1 9400:1 9403:3 9419:1 9440:2 9441:1 9455:5 9462:2 9466:1 9488:6 9495:1 9497:1 9532:11 9536:1 9550:2 9562:2 9563:2 9565:1 9575:2 9596:1 9599:1 9607:1 9619:1 9622:2 9624:1 9645:1 9653:1 9682:5 9683:1 9688:2 9690:1 9691:1 9697:1 9698:1 9700:1 9710:2 9716:2 9723:3 9729:1 9738:1 9743:1 9756:1 9772:1 9810:2 9818:1 9823:4 9824:1 9850:1 9859:2 9867:1 9877:1 9878:1 9881:1 9884:1 9890:1 9891:1 9918:3 9922:1 9924:4 9941:1 9944:1 9949:1 9963:1 9999:1 10022:3 10040:2 10042:2 10045:1 10052:2 10053:2 10054:2 10070:1 10073:1 10074:3 10090:5 10126:1 10169:4 10172:1 10176:1 10204:1 10211:1 10218:4 10220:1 10232:1 10254:1 10278:1 10316:1 10318:2 10319:1 10324:1 10329:1 10369:1 10370:1 10384:6 10406:1 10457:1 10465:1 10480:27 10502:1 10503:4 10524:1 10530:1 10531:3 10537:1 10551:1 10576:1 10597:1 10598:4 10617:1 10648:2 10651:4 10654:1 10659:1 10667:1 10707:1 10713:1 10719:1 10722:1 10725:2 10757:1 10758:1 10772:1 10792:1 10809:1 10818:1 10823:2 10837:1 10843:1 10847:11 10851:4 10862:1 10871:3 10872:1 10879:1 10887:1 10892:1 10897:1 10898:2 10912:1 10951:1 10952:1 10953:1 10961:3 10962:2 10970:1 10974:5 10979:2 10981:1 10985:2 10987:1 10993:1 11013:1 11016:1 11036:1 11046:2 11047:6 11050:1 11056:2 11062:1 11103:3 11118:2 11126:1 11159:2 11163:3 11168:2 11173:1 11186:2 11187:4 11188:1 11201:1 11211:2 11215:6 11223:3 11235:2 11273:4 11280:2 11283:1 11284:1 11286:1 11297:1 11301:1 11325:3 11329:1 11337:4 11341:1 11344:1 11345:1 11346:1 11348:1 11349:2 11352:1 11353:1 11368:2 11375:4 11394:1 11400:1 11405:2 11408:1 11415:1 11430:6 11447:4 11449:1 11451:2 11459:2 11463:2 11486:1 11507:1 11509:2 11526:2 11584:2 11600:1 11607:1 11638:3 11640:1 11643:1 11653:1 11655:1 11705:1 11708:2 11712:3 11727:1 11739:2 11742:1 11747:1 11790:1 11792:1 11800:1 11801:3 11807:1 11812:2 11813:1 11818:1 11823:1 11832:1 11833:1 11834:1 11843:1 11853:1 11857:2 11864:3 11874:1 11876:1 11900:1 11906:2 11932:1 11937:1 11966:1 11974:1 11976:1 11979:1 11985:1 11990:1 11992:1 11994:1 12038:1 12050:4 12076:1 12078:1 12084:1 12099:4 12114:1 12115:1 12126:1 12131:1 12144:2 12145:1 12146:1 12178:1 12181:1 12182:2 12184:1 12218:1 12229:1 12245:1 12276:2 12287:1 12289:1 12323:1 12328:1 12337:1 12338:1 12346:6 12364:2 12365:2 12372:1 12375:1 12381:4 12387:2 12396:1 12416:1 12425:1 12427:1 12432:1 12440:1 12444:1 12452:1 12486:2 12488:2 12490:1 12491:1 12512:1 12555:1 12556:3 12573:1 12575:3 12582:1 12583:1 12585:1 12586:1 12594:1 12614:6 12623:1 12635:2 12641:1 12652:2 12662:3 12672:1 12685:1 12698:1 12723:4 12739:2 12740:1 12741:5 12748:1 12754:1 12797:3 12798:2 12800:5 12801:1 12822:1 12837:1 12839:1 12842:1 12843:1 12846:2 12881:2 12930:1 12942:2 12943:1 12945:2 12946:1 12950:3 12954:2 12961:1 12985:2 12988:5 12989:1 13014:2 13025:1 13032:1 13033:1 13058:2 13072:1 13094:1 13104:3 13125:1 13128:1 13140:1 13142:1 13153:9 13156:1 13181:1 13187:1 13205:1 13207:2 13212:1 13225:3 13238:1 13259:1 13288:1 13295:2 13304:1 13311:2 13328:12 13333:2 13334:1 13336:1 13345:1 13362:1 13390:3 13406:1 13410:1 13417:1 13428:1 13431:1 13434:1 13435:1 13437:1 13445:3 13446:1 13449:2 13452:2 13453:1 13454:1 13462:1 13470:1 13471:1 13482:1 13489:3 13502:1 13505:2 13525:2 13535:1 13542:1 13561:1 13590:1 13593:2 13615:1 13620:1 13637:4 13647:3 13662:3 13664:2 13668:1 13680:4 13682:2 13688:1 13703:1 13707:1 13719:4 13729:1 13732:1 13733:2 13760:1 13765:3 13766:1 13778:1 13780:1 13803:6 13807:2 13819:11 13823:1 13835:6 13857:1 13858:1 13865:2 13871:2 13876:1 13888:2 13895:2 13907:1 13908:2 13926:1 13928:4 13929:1 13931:1 13936:1 13947:1 13970:3 13979:4 13986:1 13989:3 13994:2 13995:1 13996:2 14000:1 14024:2 14026:2 14030:1 14031:1 14035:2 14041:1 14050:3 14051:6 14071:2 14073:1 14077:1 14088:1 14097:3 14119:3 14127:2 14130:1 14178:6 14204:2 14207:1 14227:1 14229:3 14231:2 14252:1 14262:1 14265:1 14279:1 14286:1 14300:2 14317:1 14329:1 14332:2 14334:1 14341:1 14365:2 14366:6 14371:4 14380:1 14382:6 14383:2 14386:1 14387:2 14391:2 14395:1 14403:1 14404:1 14417:1 14422:2 14434:1 14443:1 14465:2 14476:9 14477:3 14496:9 14513:1 14516:6 14522:1 14541:1 14549:1 14553:1 14556:1 14576:1 14577:2 14582:1 14583:1 14596:1 14622:1 14630:4 14635:1 14648:1 14649:1 14650:1 14654:1 14657:1 14665:2 14672:2 14674:1 14677:6 14678:3 14691:2 14696:1 14711:1 14717:1 14719:4 14727:1 14734:1 14740:4 14744:1 14747:8 14751:1 14762:4 14763:1 14764:1 14765:3 14768:1 14774:1 14776:1 14785:4 14802:1 14804:1 14807:1 14810:1 14824:1 14837:4 14844:1 14849:2 14851:1 14864:5 14871:1 14877:1 14882:1 14885:5 14934:2 14938:2 14946:3 14956:2 14962:1 14976:1 14981:2 14982:1 14987:1 14991:1 15002:1 15030:2 15035:2 15040:1 15073:1 15080:2 15087:1 15090:2 15097:1 15098:1 15100:1 15105:2 15111:1 15123:3 15134:9 15135:1 15137:5 15142:1 15160:1 15166:1 15169:1 15171:3 15183:1 15184:4 15197:1 15201:2 15205:11 15233:2 15240:1 15251:2 15269:5 15282:4 15283:1 15287:1 15303:1 15307:33 15312:4 15322:1 15326:1 15344:1 15354:2 15360:1 15374:1 15396:6 15405:4 15423:1 15444:1 15445:2 15452:1 15453:1 15460:3 15480:1737 15483:2 15492:2 15496:1 15508:1 15518:1 15524:1 15556:2 15560:1 15568:1 15570:1 15574:1 15591:1 15595:1 15599:2 15610:3 15617:2 15623:1 15625:1 15638:3 15639:2 15642:2 15645:1 15646:1 15647:1 15649:4 15652:1 15655:3 15658:1 15661:1 15662:6 15678:1 15684:1 15723:1 15738:1 15742:2 15743:1 15763:3 15773:1 15776:9 15790:1 15814:1 15816:2 15847:1 15853:1 15871:1 15875:1 15884:1 15896:1 15927:1 15929:3 15935:2 15938:1 15943:1 15949:3 15955:1 15966:1 15984:1 15997:4 16008:1 16019:1 16036:1 16042:7 16051:1 16052:1 16054:4 16059:1 16074:1 16077:1 16079:1 16094:1 16102:1 16103:1 16111:1 16112:1 16115:4 16118:1 16121:10 16147:1 16151:2 16152:3 16154:6 16161:1 16171:1 16179:1 16187:1 16206:1 16228:1 16254:1 16262:3 16267:1 16270:1 16271:1 16273:2 16274:1 16283:1 16302:1 16306:2 16308:1 16310:1 16313:1 16318:1 16341:1 16370:3 16387:6 16402:1 16409:4 16426:1 16428:1 16438:1 16458:1 16474:1 16479:1 16484:4 16485:4 16488:1 16490:1 16495:3 16500:2 16503:2 16506:1 16509:1 16534:1 16548:1 16577:2 16593:2 16603:1 16605:1 16611:1 16623:1 16625:1 16630:3 16643:1 16652:2 16654:3 16659:1 16665:1 16670:1 16679:1 16681:5 16682:1 16693:1 16718:2 16726:4 16727:1 16729:1 16732:1 16733:1 16735:1 16743:1 16744:2 16753:4 16754:1 16761:1 16763:1 16777:1 16778:2 16780:1 16787:2 16792:1 16809:1 16815:6 16817:1 16853:1 16855:2 16861:4 16862:2 16867:4 16871:1 16875:1 16882:1 16895:1 16897:1 16921:8 16946:1 16964:1 16970:1 16971:1 16975:1 17001:2 17030:1 17037:1 17043:1 17048:1 17057:2 17058:1 17066:2 17085:2 17090:1 17107:1 17113:1 17136:4 17137:2 17166:1 17175:1 17181:1 17185:1 17187:1 17188:1 17237:4 17246:2 17248:1 17269:1 17275:5 17276:3 17286:1 17298:1 17303:1 17311:3 17316:2 17320:1 17331:2 17346:2 17347:1 17357:1 17362:6 17363:1 17366:2 17367:1 17387:7 17403:1 17404:1 17424:2 17470:1 17485:2 17491:3 17499:1 17520:1 17553:2 17569:1 17580:1 17602:1 17605:1 17608:1 17616:2 17622:1 17623:4 17626:1 17631:1 17649:1 17658:1 17660:1 17678:6 17706:2 17712:1 17724:2 17725:2 17730:1 17735:2 17742:2 17768:1 17772:2 17774:1 17775:1 17792:1 17808:1 17822:1 17826:1 17827:1 17834:2 17838:1 17839:1 17853:2 17855:4 17857:1 17862:1 17865:1 17890:1 17900:1 17908:1 17910:1 17915:1 17916:11 17919:1 17921:2 17922:1 17924:2 17927:2 17943:3 17955:4 17958:4 17962:2 17969:1 17975:1 17978:1 17979:1 17980:1 17983:1 17995:4 18009:3 18016:1 18025:2 18028:1 18035:1 18037:1 18038:2 18041:2 18043:6 18053:3 18058:1 18064:1 18068:2 18069:1 18079:1 18092:1 18093:5 18116:1 18130:1 18146:1 18165:1 18166:3 18168:3 18174:2 18177:1 18181:1 18189:1 18197:1 18208:3 18210:2 18215:1 18248:1 18266:1 18313:2 18339:1 18356:1 18360:1 18366:1 18367:1 18369:2 18370:2 18375:4 18378:1 18379:1 18406:2 18409:1 18410:2 18414:1 18423:1 18436:1 18447:1 18454:1 18468:1 18474:1 18478:1 18479:1 18485:2 18491:1 18498:1 18504:1 18511:3 18513:1 18523:1 18539:1 18567:1 18568:1 18578:1 18580:1 18587:1 18616:3 18623:1 18629:1 18631:1 18654:2 18664:1 18665:1 18674:2 18702:4 18704:1 18727:4 18732:8 18736:1 18742:2 18747:1 18748:1 18754:1 18755:1 18784:1 18792:3 18800:1 18816:1 18856:5 18857:1 18862:5 18880:1 18881:3 18882:1 18884:1 18886:1 18901:2 18905:1 18929:1 18930:1 18931:2 18934:1 18938:2 18941:6 18949:1 18980:1 19011:1 19024:1 19033:4 19043:1 19048:1 19056:1 19059:1 19060:2 19080:1 19085:1 19098:3 19108:4 19126:2 19134:3 19136:2 19139:1 19145:1 19146:1 19148:1 19153:2 19172:1 19183:1 19193:2 19205:3 19207:3 19210:5 19226:3 19230:1 19249:1 19250:1 19275:2 19292:6 19293:1 19294:1 19302:2 19303:1 19322:1 19328:2 19331:1 19335:1 19337:5 19339:2 19359:1 19365:1 19368:1 19386:1 19391:1 19392:2 19395:2 19402:1 19412:1 19422:1 19425:1 19438:2 19440:1 19443:4 19446:1 19453:1 19469:1 19471:3 19475:1 19486:1 19487:6 19507:1 19517:1 19522:1 19544:3 19559:4 19561:1 19562:1 19564:1 19586:1 19603:1 19610:1 19612:1 19613:1 19637:1 19644:1 19645:1 19683:1 19702:1 19706:1 19710:1 19716:1 19730:2 19745:1 19753:1 19762:6 19767:1 19773:1 19792:1 19804:1 19805:1 19810:5 19813:2 19837:1 19844:1 19847:1 19849:1 19897:1 19901:1 19902:1 19912:1 19928:3 19962:1 19966:2 19992:1 20000:1 20004:1 20015:2 20034:1 20040:4 20080:1 20083:1 20084:4 20096:2 20103:1 20109:4 20111:1 20118:1 20137:1 20138:1 20165:1 20180:1 20208:1 20223:1 20224:1 20226:1 20235:1 20239:1 20247:2 20251:1 20253:1 20258:2 20261:1 20266:1 20267:1 20270:4 20275:1 20278:1 20293:1 20304:1 20316:1 20317:2 20318:8 20320:1 20326:2 20327:2 20331:3 20332:3 20333:1 20334:4 20336:1 20337:5 20338:1 20341:1 20343:4 20344:5 20350:1 20353:1 20356:1 20371:1 20373:1 20378:5 20380:1 20383:3 20398:6 20399:3 20406:1 20411:1 20413:1 20435:1 20436:1 20440:1 20441:1 20442:10 20447:7 20448:2 20464:1 20469:3 20470:1 20496:3 20502:3 20505:1 20512:3 20529:2 20560:1 20576:4 20595:3 20619:1 20621:1 20627:1 20631:6 20659:1 20668:5 20686:1 20694:1 20696:1 20717:1 20718:2 20727:1 20733:1 20738:3 20740:1 20742:6 20761:6 20762:1 20785:12 20818:1 20829:7 20831:1 20853:1 20871:1 20872:2 20874:1 20887:2 20890:1 20930:1 20949:11 20962:5 20973:2 20995:1 21012:1 21021:2 21056:1 21062:2 21065:2 21089:1 21100:1 21107:2 21108:5 21111:1 21112:1 21113:1 21123:2 21134:1 21139:1 21146:1 21150:5 21173:1 21198:6 21199:5 21208:2 21209:4 21218:2 21219:1 21224:1 21225:2 21228:1 21245:1 21249:1 21258:1 21293:2 21306:1 21327:1 21337:4 21350:1 21353:1 21361:2 21380:1 21402:1 21434:1 21473:1 21480:1 21485:2 21486:1 21508:1 21520:1 21529:2 21539:4 21543:1 21556:1 21557:5 21561:2 21567:1 21582:3 21584:1 21586:1 21588:1 21595:1 21602:2 21610:7 21613:1 21622:1 21627:1 21630:1 21633:1 21642:3 21645:1 21650:1 21663:1 21684:2 21697:1 21703:1 21718:1 21723:1 21741:1 21760:33 21773:6 21774:1 21782:4 21783:1 21784:1 21787:2 21791:1 21812:1 21830:1 21831:2 21838:1 21844:1 21856:1 21868:1 21878:2 21887:1 21904:1 21914:2 21916:6 21922:1 21926:1 21927:1 21944:1 21995:3 21996:1 21997:1 21998:1 22007:1 22010:1 22016:1 22024:1 22027:3 22035:1 22037:1 22041:1 22048:3 22078:1 22080:1 22094:1 22109:1 22119:2 22123:1 22142:1 22163:9 22179:1 22208:1 22218:1 22223:2 22229:1 22233:1 22243:1 22245:5 22247:1 22251:1 22256:1 22263:1 22279:1 22281:1 22315:1 22325:1 22328:1 22331:12 22360:1 22368:1 22376:3 22378:1 22383:1 22410:2 22415:1 22417:1 22431:1 22434:2 22455:1 22460:1 22465:1 22466:2 22472:1 22481:1 22491:1 22493:1 22504:1 22513:1 22517:2 22520:4 22534:1 22548:2 22551:4 22561:1 22585:1 22598:1 22601:1 22602:1 22611:5 22617:1 22627:1 22644:1 22646:2 22647:1 22655:1 22662:1 22669:4 22690:5 22699:7 22707:2 22709:1 22715:1 22730:1 22734:2 22736:1 22749:2 22755:4 22756:1 22759:2 22760:2 22761:1 22786:4 22787:1 22795:2 22802:1 22803:7 22809:1 22812:1 22815:1 22818:1 22820:1 22822:1 22828:1 22830:1 22831:1 22846:1 22864:1 22865:1 22866:1 22874:3 22876:1 22895:1 22903:1 22905:2 22914:1 22937:1 22942:1 22982:1 23000:1 23001:1 23003:1 23011:1 23027:4 23032:1 23039:1 23064:2 23071:1 23075:1 23076:3 23084:1 23089:6 23109:8 23118:1 23125:2 23127:3 23151:1 23155:1 23166:1 23167:2 23175:1 23188:1 23196:2 23201:1 23226:1 23237:3 23248:1 23256:1 23263:1 23264:1 23284:3 23293:1 23295:1 23298:3 23299:1 23300:1 23305:1 23314:4 23333:1 23335:1 23341:1 23344:4 23349:1 23360:3 23363:1 23378:1 23384:2 23385:2 23392:1 23393:2 23404:4 23413:1 23416:1 23424:1 23430:22 23431:1 23433:1 23456:2 23466:4 23476:1 23491:1 23496:1 23521:1 23524:1 23551:2 23558:1 23586:4 23588:1 23592:1 23603:4 23610:4 23616:6 23623:1 23626:7 23646:1 23647:4 23655:4 23659:2 23676:1 23685:1 23703:1 23712:1 23713:1 23720:2 23722:1 23733:1 23736:1 23739:3 23744:1 23767:1 23768:1 23775:11 23777:2 23784:1 23797:2 23835:6 23836:1 23840:1 23847:1 23853:1 23858:4 23862:1 23865:1 23866:6 23871:1 23885:1 23891:1 23923:1 23940:2 23949:1 23952:1 23967:1 23971:3 23974:4 23993:1 23994:1 24003:1 24004:1 24039:3 24054:1 24070:3 24076:1 24081:1 24095:1 24096:2 24100:1 24126:4 24128:1 24129:1 24132:1 24137:1 24143:1 24151:1 24164:1 24168:1 24170:5 24179:1 24213:1 24225:1 24239:1 24251:1 24257:1 24265:2 24266:6 24267:1 24271:1 24280:1 24286:1 24287:1 24292:1 24296:1 24307:2 24330:1 24332:1 24341:2 24350:1 24370:2 24373:1 24385:1 24394:1 24398:1 24401:6 24407:1 24410:1 24411:4 24412:1 24438:3 24463:1 24476:5 24477:2 24478:1 24482:1 24483:4 24487:3 24503:6 24525:2 24530:5 24536:2 24538:1 24568:1
14 9:2 30:1 56:1 59:1 71:1 75:1 96:2 146:1 157:2 163:1 185:6 186:8 188:1 196:1 197:1 204:1 216:1 219:1 223:2 224:1 230:1 239:1 242:1 243:1 247:1 254:8 256:1 260:1 265:1 270:1 295:1 296:6 308:1 314:1 318:2 320:2 323:1 336:1 346:2 375:1 376:1 379:1 407:3 450:1 457:9 501:2 510:1 524:1 525:1 527:6 541:1 545:1 565:3 592:2 599:1 607:1 619:1 636:1 663:1 699:1 704:2 708:3 713:1 714:1 724:1 731:1 732:2 748:2 753:1 759:4 762:1 763:1 764:2 766:1 772:1 785:4 789:1 802:1 811:1 814:5 831:2 834:2 838:1 851:3 864:2 869:2 875:1 880:1 881:1 884:1 888:1 889:1 895:1 900:2 907:1 909:1 911:1 914:1 922:1 927:1 932:1 933:1 942:1 946:1 949:1 965:1 980:1 1009:2 1011:2 1021:1 1023:2 1044:1 1045:1 1046:3 1048:1 1051:5 1053:1 1055:1 1059:3 1068:1 1077:1 1094:3 1095:1 1114:1 1124:1 1125:1 1127:1 1128:1 1141:1 1153:2 1155:1 1168:1 1171:4 1172:2 1187:1 1205:1 1217:1 1220:5 1226:1 1229:2 1256:2 1259:6 1264:4 1278:1 1285:1 1292:1 1293:2 1297:1 1299:1 1301:1 1321:1 1332:4 1344:1 1356:2 1360:3 1369:1 1381:4 1398:1 1401:6 1405:1 1413:1 1424:1 1425:2 1448:1 1452:1 1453:1 1470:1 1507:6 1510:1 1517:5 1526:1 1529:1 1535:1 1536:1 1538:2 1545:2 1564:5 1585:1 1589:2 1591:4 1603:1 1616:2 1617:3 1621:1 1622:2 1626:1 1627:1 1628:1 1640:1 1654:2 1659:1 1674:1 1683:1 1701:1 1703:1 1710:1 1715:1 1730:1 1731:5 1737:1 1754:1 1759:1 1766:9 1781:2 1785:1 1798:1 1809:4 1818:1 1826:4 1834:1 1838:3 1842:1 1846:3 1856:3 1863:1 1874:1 1879:1 1880:1 1882:2 1883:2 1885:2 1888:1 1891:1 1904:2 1908:1 1910:2 1911:1 1912:3 1938:4 1941:1 1942:2 1945:6 1947:2 1953:1 1954:5 1955:2 1957:1 1963:3 1965:2 1968:5 1970:2 1973:2 1976:3 1978:1 1991:1 2000:1 2009:1 2015:1 2020:1 2028:1 2040:2 2042:1 2047:1 2049:1 2051:2 2053:1 2061:1 2065:2 2071:1 2076:2 2077:1 2112:1 2128:1 2131:1 2134:2 2149:1 2157:1 2164:1 2172:1 2178:2 2183:2 2193:1 2198:1 2226:3 2229:1 2234:2 2274:1 2275:2 2277:1 2286:2 2295:1 2298:1 2303:1 2321:4 2325:3 2333:1 2349:1 2366:3 2372:1 2380:1 2381:1 2383:4 2389:1 2390:6 2394:1 2400:1 2414:1 2419:2 2425:1 2426:1 2448:1 2451:3 2462:33 2464:2 2465:1 2469:1 2470:1 2480:2 2486:1 2504:1 2507:10 2513:2 2519:9 2530:2 2565:5 2576:2 2587:2 2593:1 2597:2 2627:3 2638:1 2691:1 2704:1 2706:1 2709:1 2731:3 2736:9 2742:2 2770:1 2779:2 2780:3 2785:2 2787:1 2798:2 2801:1 2802:10 2821:1 2826:1 2834:1 2837:1 2844:1 2848:3 2849:1 2854:2 2855:1 2886:8 2895:1 2901:1 2919:2 2936:1 2954:2 2979:1 2980:1 2994:1 3002:1 3003:1 3020:3 3027:1 3041:1 3042:1 3049:3 3050:1 3060:1 3061:1 3064:1 3072:1 3077:6 3090:1 3098:1 3099:2 3116:1 3131:1 3132:1 3133:1 3147:2 3149:1 3153:1 3173:1 3179:1 3183:1 3184:13 3204:1 3206:2 3213:2 3221:4 3225:1 3231:1 3234:5 3245:1 3248:1 3266:1 3285:1 3287:2 3292:1 3295:1 3297:4 3304:1 3312:1 3315:1 3324:1 3326:2 3328:1 3332:1 3342:1 3351:1 3353:1 3369:2 3372:1 3375:1 3379:1 3404:1 3407:2 3408:2 3414:1 3416:1 3462:1 3494:1 3499:1 3518:2 3519:1 3520:1 3522:1 3524:1 3525:1 3545:1 3546:2 3547:1 3562:1 3572:1 3581:2 3588:1 3598:1 3606:1 3612:1 3615:1 3618:2 3631:1 3641:14 3649:1 3660:1 3677:1 3678:3 3679:1 3707:1 3712:1 3735:1 3744:1 3766:1 3774:1 3776:1 3783:1 3786:1 3804:1 3831:1 3837:3 3841:1 3854:1 3878:1 3886:3 3889:1 3907:2 3908:1 3909:2 3918:1 3938:6 3963:1 3964:1 3966:1 3967:1 3976:1 3984:2 3995:6 3998:6 4005:2 4012:1 4026:1 4046:1 4051:1 4060:1 4061:1 4062:2 4083:1 4091:2 4093:1 4102:1 4107:17 4108:3 4109:1 4128:1 4136:3 4145:1 4154:1 4183:1 4186:1 4190:1 4195:1 4198:10 4211:2 4212:5 4213:3 4216:1 4218:2 4221:1 4223:1 4224:1 4225:1 4229:1 4234:1 4236:4 4237:1 4238:4 4244:3 4268:1 4305:1 4325:1 4332:1 4333:1 4340:1 4353:1 4354:1 4368:1 4371:2 4375:5 4376:1 4382:1 4399:1 4400:1 4409:1 4413:2 4423:1 4434:1 4447:2 4460:1 4471:1 4497:1 4498:2 4505:1 4512:1 4518:5 4519:3 4534:2 4539:1 4541:1 4542:1 4551:1 4566:1 4569:1 4572:2 4581:1 4586:1 4587:1 4592:1 4599:4 4609:2 4611:1 4621:1 4622:1 4636:1 4655:1 4667:1 4668:1 4673:1 4683:2 4684:2 4710:2 4722:1 4724:1 4734:1 4744:1 4759:1 4773:1 4784:1 4792:1 4796:3 4814:1 4820:1 4821:2 4825:1 4832:2 4853:1 4876:2 4889:2 4892:1 4894:2 4901:2 4931:1 4986:1 5000:1 5003:2 5016:2 5024:1 5044:1 5047:1 5049:3 5071:3 5077:1 5088:2 5093:1 5095:1 5100:1 5127:1 5187:1 5192:1 5201:1 5203:1 5224:1 5232:1 5247:1 5248:1 5253:1 5254:1 5258:1 5283:1 5308:4 5313:1 5322:8 5325:5 5326:1 5332:5 5333:2 5337:3 5338:1 5339:2 5340:1 5342:1 5344:1 5347:6 5349:12 5350:1 5352:4 5354:4 5451:9 5492:1 5500:1 5520:1 5529:1 5530:1 5531:1 5533:2 5534:1 5535:1 5585:1 5595:1 5599:3 5604:1 5610:2 5627:1 5674:1 5681:2 5683:1 5686:4 5688:3 5702:10 5711:1 5719:1 5721:1 5726:1 5730:1 5746:3 5752:1 5783:1 5788:2 5807:1 5813:2 5815:1 5828:1 5860:1 5865:3 5874:3 5878:3 5889:1 5900:1 5931:2 5939:1 5947:5 5948:2 5952:1 5968:2 5998:1 6005:2 6034:1 6042:1 6045:1 6046:1 6047:2 6049:1 6050:1 6056:1 6062:1 6071:1 6079:1 6087:1 6112:1 6116:1 6126:1 6131:1 6139:2 6145:1 6151:1 6175:2 6183:9 6187:1 6194:1 6235:1 6237:2 6289:1 6293:1 6311:4 6355:2 6364:2 6365:5 6373:1 6378:1 6381:1 6382:1 6386:2 6405:1 6407:1 6409:1 6410:1 6412:1 6416:2 6417:1 6422:1 6429:43 6433:1 6434:1 6440:1 6448:1 6449:3 6451:7 6459:3 6468:1 6475:1 6486:1 6491:1 6492:1 6493:1 6525:1 6526:3 6532:2 6554:1 6560:1 6578:1 6589:1 6597:1 6616:1 6619:2 6643:1 6661:2 6667:1 6669:1 6675:1 6678:1 6685:1 6707:2 6715:1 6716:2 6723:5 6756:1 6781:1 6789:1 6791:1 6794:2 6796:2 6802:1 6804:1 6810:4 6824:4 6834:1 6839:1 6843:1 6846:1 6847:1 6854:4 6859:13 6908:4 6920:1 6937:1 6981:4 6991:1 7016:1 7021:1 7027:2 7038:1 7045:1 7047:1 7054:5 7059:2 7068:9 7096:2 7097:1 7104:1 7108:1 7116:1 7122:1 7137:1 7157:3 7160:1 7163:1 7165:1 7166:1 7169:3 7170:1 7177:1 7178:2 7179:1 7181:2 7182:1 7190:1 7194:1 7199:1 7202:1 7215:1 7216:1 7221:1 7235:1 7245:1 7246:2 7251:1 7268:1 7273:1 7285:11 7303:1 7322:1 7360:1 7361:5 7377:1 7379:1 7382:1 7391:2 7400:10 7402:1 7409:1 7414:1 7418:2 7419:1 7427:2 7430:1 7432:1 7435:1 7438:2 7443:1 7445:1 7450:5 7451:1 7456:3 7457:5 7459:2 7460:1 7461:4 7462:1 7464:2 7465:2 7471:1 7499:1 7510:1 7527:1 7552:1 7553:1 7554:2 7564:2 7571:4 7572:1 7576:1 7581:6 7588:1 7589:1 7605:1 7614:3 7615:1 7622:1 7626:1 7638:1 7648:3 7656:1 7658:3 7670:1 7682:1 7701:1 7702:1 7709:1 7712:4 7741:1 7742:1 7743:1 7753:3 7754:1 7761:1 7768:1 7773:11 7778:1 7782:1 7787:4 7799:1 7803:1 7804:1 7810:1 7820:3 7860:2 7868:2 7872:1 7880:1 7887:2 7905:1 7908:1 7912:1 7929:3 7930:1 7950:3 7964:2 7972:1 7979:1 7982:1 7988:5 7999:1 8002:1 8005:1 8049:1 8065:10 8070:6 8079:1 8081:10 8082:4 8099:4 8158:1 8162:4 8171:2 8174:1 8175:2 8176:8 8189:1 8195:1 8206:5 8207:1 8216:1 8229:2 8230:1 8234:12 8249:2 8256:1 8279:1 8282:1 8284:1 8285:6 8296:1 8304:1 8311:2 8317:1 8318:1 8320:1 8328:6 8332:1 8343:1 8348:1 8350:1 8352:6 8355:1 8357:2 8359:2 8361:1 8376:1 8383:1 8387:4 8428:1 8433:3 8443:2 8469:9 8472:1 8508:1 8553:2 8567:2 8568:2 8574:1 8582:1 8583:1 8593:2 8597:3 8598:5 8603:1 8605:1 8614:1 8617:1 8623:1 8630:1 8635:1 8637:1 8656:3 8657:1 8672:1 8681:2 8690:2 8692:1 8702:2 8709:1 8711:1 8714:3 8726:1 8727:3 8731:1 8736:3 8753:3 8759:7 8761:1 8771:1 8778:1 8782:2 8783:1 8795:2 8800:2 8802:8 8809:5 8812:1 8814:6 8831:2 8832:4 8833:4 8836:1 8849:1 8878:2 8891:5 8900:3 8901:1 8910:1 8911:1 8914:1 8916:4 8944:1 8968:1 8979:1 8983:2 8993:1 8996:1 8998:2 9000:1 9002:4 9022:1 9027:1 9038:1 9058:3 9060:1 9062:2 9063:1 9067:1 9084:1 9097:1 9101:6 9102:9 9120:4 9127:2 9132:1 9138:1 9140:1 9142:2 9149:1 9156:1 9166:1 9173:1 9181:1 9185:3 9222:1 9239:1 9240:2 9243:1 9252:6 9263:1 9313:2 9318:1 9336:1 9346:1 9363:1 9377:2 9392:1 9400:1 9403:3 9419:1 9440:2 9441:1 9455:5 9462:2 9466:1 9488:6 9495:1 9497:1 9532:11 9536:2 9550:2 9562:2 9563:2 9565:1 9575:2 9596:1 9599:1 9607:1 9619:1 9622:2 9624:1 9645:1 9653:1 9682:5 9683:1 9688:2 9690:1 9691:1 9697:1 9698:1 9700:1 9710:2 9716:2 9723:3 9729:1 9738:1 9743:1 9756:1 9772:2 9810:2 9818:1 9823:4 9824:1 9850:1 9859:2 9867:1 9877:1 9878:1 9881:1 9884:1 9890:1 9891:1 9918:3 9922:1 9924:5 9941:1 9944:1 9949:1 9963:1 9974:1 9999:1 10022:3 10040:2 10042:2 10045:1 10052:2 10053:2 10054:2 10070:1 10073:1 10074:3 10090:5 10126:1 10169:4 10172:1 10176:1 10204:1 10211:1 10218:5 10220:1 10232:1 10254:1 10278:3 10316:1 10318:2 10319:1 10324:1 10329:1 10360:1 10369:1 10370:1 10384:6 10406:1 10457:1 10465:1 10480:28 10502:1 10503:5 10524:1 10530:1 10531:3 10537:1 10539:1 10551:1 10576:1 10597:1 10598:4 10617:1 10648:2 10651:4 10654:1 10659:1 10667:1 10707:1 10713:1 10719:1 10722:1 10725:3 10757:1 10758:1 10772:1 10792:1 10809:1 10818:1 10823:2 10837:1 10843:1 10847:11 10851:4 10862:1 10871:3 10872:1 10879:1 10887:1 10892:1 10897:1 10898:2 10912:1 10951:1 10952:1 10953:1 10961:3 10962:2 10970:1 10974:5 10979:2 10981:1 10985:2 10987:1 10993:1 11013:1 11016:1 11036:1 11046:3 11047:6 11050:1 11056:2 11062:1 11087:1 11103:4 11118:2 11126:1 11159:2 11163:3 11168:3 11173:1 11186:2 11187:4 11188:1 11201:1 11211:2 11215:6 11223:3 11235:2 11273:4 11280:2 11283:1 11284:1 11286:1 11297:1 11301:1 11325:3 11329:1 11337:5 11341:1 11344:1 11345:1 11346:1 11348:1 11349:2 11352:1 11353:1 11368:2 11375:4 11394:1 11400:1 11405:2 11408:1 11415:1 11430:6 11447:4 11449:1 11451:2 11459:2 11463:2 11486:1 11507:1 11509:2 11526:2 11584:2 11600:1 11607:1 11632:1 11638:3 11640:1 11643:1 11653:1 11655:1 11705:1 11708:2 11712:3 11727:1 11739:2 11742:1 11747:1 11790:1 11792:1 11800:1 11801:3 11807:1 11812:2 11813:1 11818:1 11823:1 11832:1 11833:1 11834:1 11843:1 11853:1 11857:2 11864:3 11874:1 11876:1 11900:1 11906:2 11932:1 11937:1 11966:1 11974:1 11976:1 11979:1 11985:1 11990:1 11992:1 11994:1 11998:2 12038:1 12050:5 12065:1 12076:1 12078:1 12084:1 12095:1 12099:4 12114:1 12115:1 12126:1 12131:1 12144:3 12145:1 12146:1 12178:1 12181:1 12182:2 12184:1 12197:1 12218:1 12229:1 12245:1 12276:2 12287:1 12289:1 12323:1 12328:1 12337:1 12338:1 12346:6 12364:2 12365:2 12366:1 12372:1 12375:1 12381:4 12387:2 12396:1 12416:1 12425:1 12427:1 12432:1 12440:1 12444:1 12452:1 12486:2 12488:2 12490:1 12491:1 12512:1 12555:1 12556:3 12573:1 12575:3 12582:1 12583:1 12585:1 12586:1 12594:1 12614:6 12623:1 12635:2 12641:1 12652:2 12661:1 12662:3 12672:1 12685:1 12698:1 12723:4 12739:2 12740:1 12741:5 12748:2 12754:1 12774:1 12797:3 12798:2 12800:5 12801:1 12822:1 12837:1 12839:1 12842:1 12843:1 12846:2 12881:2 12930:1 12942:2 12943:1 12944:1 12945:2 12946:1 12950:5 12954:2 12961:2 12985:2 12988:5 12989:1 13014:2 13025:1 13032:1 13033:1 13058:2 13072:1 13094:1 13104:3 13125:1 13128:1 13140:1 13142:1 13153:9 13156:1 13181:1 13187:1 13205:1 13207:3 13212:1 13225:3 13238:1 13259:1 13288:1 13295:2 13304:1 13311:2 13328:13 13333:2 13334:1 13336:1 13345:1 13362:1 13390:3 13406:1 13410:1 13417:1 13428:1 13431:1 13434:1 13435:1 13437:1 13445:3 13446:1 13449:2 13452:2 13453:1 13454:1 13462:1 13470:1 13471:1 13482:1 13489:3 13502:1 13505:2 13525:2 13535:1 13542:1 13561:1 13590:1 13593:2 13615:1 13620:1 13637:4 13647:3 13662:3 13664:2 13668:1 13671:1 13680:4 13682:2 13688:1 13703:1 13707:1 13708:1 13719:4 13729:1 13732:1 13733:2 13740:1 13760:1 13765:3 13766:1 13778:1 13780:1 13803:6 13807:2 13819:12 13823:2 13835:6 13857:1 13858:1 13865:2 13871:2 13876:1 13888:2 13895:2 13907:1 13908:2 13926:1 13928:4 13929:1 13931:1 13936:1 13947:1 13953:1 13970:3 13979:4 13986:1 13989:3 13994:2 13995:1 13996:2 14000:1 14024:2 14026:2 14030:1 14031:1 14035:2 14041:1 14050:3 14051:6 14071:2 14073:1 14077:1 14088:1 14097:3 14119:3 14127:2 14130:1 14178:6 14204:2 14207:1 14227:1 14229:3 14231:2 14252:1 14262:1 14265:1 14279:1 14286:1 14300:2 14317:1 14329:1 14332:2 14334:1 14341:1 14365:2 14366:8 14371:4 14380:1 14382:8 14383:2 14386:1 14387:2 14391:2 14395:1 14403:1 14404:1 14417:1 14422:2 14434:1 14443:1 14465:2 14476:9 14477:3 14496:10 14513:1 14516:7 14522:1 14541:1 14549:1 14553:1 14556:1 14564:1 14576:2 14577:2 14582:1 14583:1 14596:1 14610:1 14622:1 14630:4 14635:1 14648:1 14649:1 14650:1 14654:1 14657:1 14665:2 14672:3 14674:1 14677:6 14678:3 14691:2 14696:1 14711:1 14717:1 14719:4 14727:1 14734:1 14740:4 14744:1 14747:8 14751:1 14762:4 14763:1 14764:1 14765:3 14768:1 14774:1 14776:1 14785:4 14802:1 14804:1 14807:1 14810:1 14824:1 14837:4 14844:1 14849:2 14851:1 14853:1 14864:5 14871:1 14877:1 14882:1 14885:5 14934:2 14938:2 14946:3 14956:2 14962:1 14976:1 14981:2 14982:1 14987:1 14991:1 15002:1 15030:2 15035:2 15040:2 15067:1 15073:1 15080:2 15087:1 15090:2 15097:1 15098:1 15100:1 15105:2 15111:1 15123:3 15134:10 15135:1 15137:6 15142:1 15160:2 15166:1 15169:1 15171:3 15183:1 15184:4 15197:1 15201:2 15205:12 15233:2 15240:1 15251:2 15269:5 15282:4 15283:1 15287:1 15303:1 15307:35 15312:4 15322:1 15326:1 15344:1 15354:2 15360:1 15374:1 15396:6 15405:4 15423:1 15444:1 15445:2 15452:1 15453:1 15460:3 15480:1888 15483:2 15492:2 15496:1 15508:1 15518:1 15524:1 15556:2 15560:1 15568:1 15570:1 15574:1 15591:1 15595:1 15599:2 15610:3 15617:2 15623:1 15625:1 15638:3 15639:3 15642:2 15645:1 15646:1 15647:1 15649:4 15652:1 15655:3 15658:1 15661:1 15662:6 15678:1 15684:1 15723:1 15738:1 15742:2 15743:1 15763:3 15773:1 15776:9 15790:1 15814:1 15816:2 15847:1 15853:1 15871:2 15875:1 15884:1 15896:1 15927:1 15929:3 15935:2 15938:1 15943:1 15949:3 15955:1 15957:1 15960:1 15966:1 15984:1 15994:1 15997:4 16008:1 16019:1 16036:1 16042:7 16043:1 16051:1 16052:1 16054:4 16059:1 16074:1 16077:1 16079:1 16094:1 16102:1 16103:1 16111:1 16112:1 16115:4 16118:1 16121:10 16147:1 16151:2 16152:3 16154:6 16161:1 16171:1 16179:1 16187:1 16206:1 16228:1 16254:1 16262:3 16267:1 16270:1 16271:1 16273:2 16274:1 16277:1 16283:1 16287:1 16300:1 16302:1 16306:2 16308:1 16309:1 16310:1 16313:1 16318:1 16341:1 16370:3 16387:6 16402:1 16409:4 16412:1 16426:1 16428:1 16438:1 16458:1 16474:1 16479:1 16484:4 16485:4 16488:1 16490:1 16495:3 16500:2 16503:2 16506:1 16509:1 16534:1 16548:1 16577:2 16593:2 16603:1 16605:1 16611:1 16620:1 16623:1 16625:1 16630:3 16643:1 16652:2 16654:3 16659:1 16665:1 16670:1 16679:1 16681:5 16682:1 16693:1 16718:2 16726:5 16727:1 16729:1 16732:1 16733:1 16735:1 16743:1 16744:2 16753:4 16754:1 16761:1 16763:1 16777:1 16778:2 16780:1 16787:2 16792:1 16809:1 16815:6 16817:1 16853:1 16855:2 16861:4 16862:2 16867:4 16871:1 16875:1 16882:1 16895:1 16897:1 16921:8 16946:1 16964:1 16970:1 16971:1 16975:1 17001:3 17030:1 17037:1 17043:1 17048:1 17057:2 17058:1 17066:2 17085:2 17090:1 17107:1 17113:2 17136:4 17137:4 17166:1 17175:1 17181:1 17185:1 17187:1 17188:1 17237:4 17246:2 17248:1 17269:1 17275:5 17276:4 17286:1 17288:1 17298:1 17303:1 17311:3 17316:2 17320:1 17331:2 17346:2 17347:1 17357:1 17362:6 17363:1 17366:2 17367:1 17387:7 17403:1 17404:1 17424:2 17440:1 17470:1 17485:2 17491:3 17499:1 17515:1 17520:1 17553:2 17563:1 17569:1 17575:1 17580:1 17602:1 17605:1 17608:1 17616:2 17622:1 17623:4 17626:1 17631:1 17641:1 17649:1 17658:1 17660:1 17678:6 17706:2 17712:1 17724:2 17725:2 17730:1 17735:2 17742:2 17743:1 17768:1 17772:2 17774:2 17775:1 17792:1 17808:1 17822:1 17826:1 17827:1 17834:2 17838:1 17839:1 17853:2 17855:4 17857:1 17862:1 17865:1 17886:1 17890:1 17900:1 17908:1 17910:1 17915:2 17916:12 17919:1 17921:3 17922:1 17924:2 17927:2 17943:3 17955:4 17958:4 17962:2 17969:1 17975:1 17978:1 17979:1 17980:1 17983:1 17995:4 18009:4 18016:1 18025:2 18028:1 18035:1 18037:1 18038:2 18041:2 18042:1 18043:7 18053:4 18058:1 18064:1 18068:3 18069:1 18073:1 18079:1 18092:1 18093:6 18116:1 18130:1 18146:1 18165:1 18166:3 18168:3 18174:2 18177:1 18181:1 18189:1 18197:2 18208:3 18210:2 18215:1 18248:1 18249:1 18266:1 18313:2 18339:1 18356:1 18360:1 18366:1 18367:1 18369:2 18370:2 18375:4 18378:1 18379:1 18406:3 18409:1 18410:2 18414:1 18423:1 18436:1 18447:1 18454:1 18468:1 18469:1 18474:2 18478:1 18479:1 18485:2 18491:1 18498:1 18504:1 18509:1 18511:3 18513:1 18523:1 18539:1 18567:1 18568:1 18570:1 18572:1 18578:1 18580:1 18587:1 18602:1 18616:3 18623:1 18629:1 18631:1 18645:1 18654:2 18664:1 18665:1 18674:2 18702:4 18704:1 18727:4 18732:8 18736:1 18742:2 18747:1 18748:1 18754:1 18755:1 18784:1 18792:3 18800:1 18816:1 18849:1 18856:5 18857:1 18862:5 18880:1 18881:3 18882:1 18884:1 18886:1 18901:2 18905:1 18916:1 18929:1 18930:1 18931:2 18934:1 18938:2 18941:6 18949:1 18980:1 19011:1 19024:1 19033:4 19043:1 19048:1 19056:1 19059:1 19060:2 19080:1 19085:1 19098:3 19108:4 19126:2 19134:3 19136:2 19139:1 19145:1 19146:1 19148:1 19153:2 19172:1 19183:1 19193:2 19205:3 19207:3 19210:6 19226:3 19230:1 19249:1 19250:1 19267:1 19275:2 19292:6 19293:1 19294:1 19302:2 19303:1 19322:1 19328:2 19331:1 19335:1 19337:5 19339:2 19359:1 19365:1 19368:1 19373:2 19386:1 19391:1 19392:2 19395:2 19402:1 19412:1 19422:1 19425:1 19438:2 19440:1 19443:5 19446:1 19453:1 19469:1 19471:3 19475:1 19486:1 19487:6 19490:1 19507:1 19517:1 19522:1 19532:1 19544:3 19559:4 19561:1 19562:1 19564:1 19586:1 19603:1 19610:1 19612:1 19613:1 19637:1 19644:1 19645:1 19678:1 19683:1 19702:1 19706:1 19710:1 19716:1 19730:2 19745:1 19753:1 19762:6 19767:1 19773:1 19792:1 19804:1 19805:2 19810:5 19813:2 19837:1 19844:1 19847:1 19849:1 19897:3 19901:1 19902:1 19909:1 19912:1 19924:1 19928:3 19962:1 19966:2 19972:1 19992:1 20000:1 20004:1 20015:2 20034:1 20040:4 20080:3 20083:1 20084:5 20096:2 20103:1 20109:4 20111:1 20118:1 20137:1 20138:1 20165:1 20180:1 20208:1 20223:1 20224:1 20226:1 20235:1 20239:1 20247:2 20251:1 20253:1 20258:2 20261:1 20266:1 20267:1 20270:4 20275:1 20278:1 20293:1 20304:1 20316:1 20317:3 20318:8 20320:1 20326:2 20327:3 20331:3 20332:3 20333:1 20334:4 20336:1 20337:5 20338:1 20341:1 20343:5 20344:5 20350:1 20353:1 20356:1 20371:1 20373:1 20378:5 20380:1 20383:3 20398:6 20399:3 20406:1 20411:1 20413:1 20435:1 20436:1 20440:1 20441:2 20442:10 20447:7 20448:2 20464:1 20469:3 20470:1 20496:3 20502:3 20505:1 20512:3 20529:2 20560:1 20576:4 20595:3 20611:1 20619:1 20621:1 20627:1 20631:6 20659:1 20668:5 20686:1 20694:1 20696:1 20717:1 20718:2 20727:1 20733:1 20738:3 20740:1 20742:6 20761:6 20762:1 20785:13 20787:1 20818:1 20829:7 20831:1 20853:1 20871:1 20872:2 20874:1 20887:2 20890:1 20930:1 20949:11 20962:5 20973:2 20995:1 21012:1 21021:2 21056:1 21062:2 21065:2 21077:1 21089:1 21100:1 21107:2 21108:5 21111:1 21112:1 21113:1 21123:2 21134:1 21138:1 21139:1 21146:1 21150:6 21173:1 21198:6 21199:5 21208:2 21209:4 21218:2 21219:1 21224:1 21225:2 21227:1 21228:1 21245:1 21249:1 21258:1 21293:2 21306:1 21327:1 21337:4 21350:1 21353:1 21361:2 21380:1 21402:1 21434:1 21473:1 21480:1 21485:2 21486:1 21508:1 21520:1 21529:2 21539:4 21543:1 21556:1 21557:5 21561:2 21567:1 21571:1 21582:3 21584:1 21586:1 21588:1 21595:1 21602:2 21610:7 21613:1 21622:1 21627:1 21630:1 21633:1 21642:3 21645:1 21650:1 21663:1 21684:2 21697:1 21703:1 21718:1 21723:1 21741:1 21760:35 21773:6 21774:1 21782:4 21783:1 21784:1 21787:2 21791:1 21812:1 21830:1 21831:2 21838:1 21844:1 21846:1 21856:1 21868:1 21878:2 21887:2 21904:1 21914:2 21916:6 21922:1 21926:1 21927:1 21944:1 21948:1 21995:3 21996:1 21997:1 21998:1 22007:1 22010:1 22016:1 22024:1 22027:3 22035:1 22037:1 22041:1 22048:3 22078:1 22080:1 22094:1 22109:1 22119:2 22123:1 22142:1 22163:9 22179:1 22208:1 22218:1 22223:2 22229:2 22233:1 22243:1 22245:6 22247:1 22251:1 22256:1 22263:1 22279:1 22281:1 22315:1 22325:1 22328:1 22331:13 22360:1 22368:1 22376:3 22378:1 22383:1 22410:2 22415:1 22417:1 22431:1 22434:2 22455:1 22460:1 22465:1 22466:2 22472:1 22481:1 22491:1 22493:1 22504:1 22513:1 22517:2 22520:4 22534:1 22548:2 22551:4 22552:1 22561:1 22585:1 22587:1 22598:1 22601:1 22602:1 22611:5 22617:1 22627:1 22644:1 22646:2 22647:1 22655:1 22658:1 22662:1 22669:4 22690:5 22699:7 22707:2 22709:1 22715:1 22730:1 22734:2 22736:1 22749:3 22755:4 22756:1 22759:2 22760:2 22761:1 22786:4 22787:1 22795:2 22802:1 22803:7 22809:1 22812:1 22815:1 22818:1 22820:1 22822:1 22828:1 22830:1 22831:1 22846:2 22864:1 22865:1 22866:1 22874:3 22876:1 22895:1 22903:1 22905:2 22914:1 22916:1 22931:1 22937:1 22942:1 22948:1 22982:1 23000:1 23001:1 23003:1 23011:1 23027:5 23032:1 23039:1 23064:2 23071:1 23075:1 23076:3 23084:1 23089:6 23109:10 23118:1 23125:2 23127:3 23143:1 23151:1 23155:1 23166:1 23167:2 23175:1 23188:1 23196:2 23201:1 23226:1 23237:4 23248:1 23256:1 23263:1 23264:1 23284:3 23293:1 23295:1 23298:3 23299:1 23300:1 23305:1 23314:4 23333:1 23335:1 23341:1 23344:4 23349:1 23360:3 23363:1 23378:1 23384:3 23385:2 23386:1 23392:1 23393:2 23404:4 23413:1 23416:1 23424:2 23430:22 23431:1 23433:2 23435:1 23456:2 23466:4 23476:1 23491:1 23496:1 23521:1 23524:1 23551:2 23558:1 23586:5 23588:1 23592:1 23603:4 23610:5 23616:6 23623:1 23626:7 23646:1 23647:4 23655:4 23659:2 23676:1 23685:1 23703:1 23712:1 23713:1 23719:1 23720:2 23722:1 23723:1 23733:1 23736:1 23739:3 23741:2 23744:1 23767:1 23768:1 23775:12 23777:2 23784:1 23797:2 23828:1 23835:6 23836:1 23840:1 23847:1 23853:1 23858:4 23862:1 23865:1 23866:7 23871:1 23885:1 23891:1 23923:1 23940:2 23949:1 23952:1 23967:1 23971:3 23974:4 23993:1 23994:1 24003:1 24004:1 24039:3 24054:1 24070:3 24076:1 24081:1 24095:1 24096:2 24100:1 24126:4 24128:1 24129:1 24132:1 24137:2 24143:1 24151:1 24162:1 24164:1 24168:1 24170:5 24179:1 24213:1 24225:1 24239:1 24251:1 24257:1 24265:2 24266:6 24267:1 24271:1 24275:1 24276:1 24280:1 24286:1 24287:1 24292:1 24296:1 24307:2 24326:1 24330:1 24332:1 24341:2 24350:1 24370:2 24373:1 24385:1 24394:1 24398:1 24401:6 24407:1 24410:1 24411:4 24412:1 24438:3 24441:1 24463:1 24476:5 24477:2 24478:1 24482:1 24483:4 24487:3 24503:6 24525:2 24530:5 24536:2 24538:1 24568:1
14 9:2 30:1 56:1 59:1 71:1 75:1 96:2 146:1 157:2 163:1 185:6 186:8 188:1 196:1 197:1 204:1 216:1 219:1 223:2 224:1 230:1 239:1 242:1 243:1 247:1 253:1 254:8 256:1 260:1 265:1 270:1 282:1 295:1 296:6 308:1 314:1 318:2 320:2 323:1 336:1 346:2 375:1 376:1 379:1 407:3 450:1 457:9 501:2 510:1 524:1 525:1 527:6 541:1 545:1 547:1 565:3 592:2 599:1 607:1 619:1 636:1 663:1 699:1 704:2 708:3 713:1 714:1 724:1 731:1 732:2 748:3 753:1 759:4 762:1 763:1 764:2 766:1 772:1 777:1 785:4 789:1 802:1 811:1 814:5 831:2 834:2 838:1 851:3 864:2 869:2 875:1 880:1 881:1 884:1 888:1 889:1 892:1 895:1 900:2 907:1 909:1 911:1 914:1 922:1 927:1 932:1 933:1 942:1 946:1 949:1 965:1 969:1 980:2 1000:1 1009:2 1011:2 1021:1 1023:2 1044:1 1045:1 1046:3 1048:1 1051:6 1053:1 1055:1 1059:3 1068:1 1077:1 1094:3 1095:1 1114:1 1124:1 1125:1 1127:1 1128:1 1141:1 1153:2 1155:1 1168:1 1171:4 1172:2 1187:1 1205:1 1217:1 1220:5 1226:1 1229:2 1256:2 1259:6 1264:4 1278:1 1285:1 1292:1 1293:2 1297:1 1299:1 1301:1 1321:1 1332:4 1344:1 1356:2 1360:3 1369:1 1381:5 1398:1 1401:6 1405:1 1413:1 1424:1 1425:2 1448:1 1452:1 1453:1 1470:1 1507:6 1510:1 1517:5 1526:1 1529:1 1535:1 1536:1 1538:2 1545:2 1546:1 1564:5 1585:1 1589:2 1591:4 1603:1 1616:2 1617:3 1621:1 1622:2 1626:1 1627:1 1628:1 1629:1 1640:1 1654:2 1659:1 1674:1 1683:1 1701:1 1703:1 1710:1 1715:1 1727:1 1730:1 1731:5 1737:1 1745:1 1754:1 1759:1 1766:9 1781:2 1785:1 1798:1 1809:4 1818:1 1826:4 1834:1 1838:3 1842:1 1846:3 1856:3 1863:1 1874:1 1879:1 1880:1 1882:2 1883:2 1885:2 1888:1 1891:1 1904:2 1908:1 1910:2 1911:1 1912:3 1938:4 1941:1 1942:2 1945:7 1947:2 1953:1 1954:5 1955:2 1957:1 1960:1 1963:3 1965:2 1968:6 1970:2 1973:2 1976:3 1978:1 1991:1 2000:1 2009:1 2015:1 2020:1 2028:1 2040:2 2042:1 2047:1 2049:1 2051:2 2053:1 2061:1 2065:2 2071:1 2076:2 2077:1 2112:1 2128:1 2131:1 2134:2 2149:1 2157:1 2164:1 2172:2 2178:2 2183:2 2193:1 2198:1 2226:3 2229:1 2234:2 2274:1 2275:2 2277:1 2286:2 2295:1 2298:1 2303:1 2305:1 2321:4 2325:3 2333:1 2349:1 2358:1 2366:3 2372:1 2380:1 2381:1 2383:4 2389:1 2390:6 2394:1 2400:1 2414:1 2419:2 2425:1 2426:1 2448:1 2451:3 2462:36 2464:2 2465:1 2469:1 2470:1 2480:2 2486:1 2504:1 2507:10 2513:2 2519:9 2530:2 2565:5 2576:2 2587:2 2593:1 2597:2 2627:3 2638:1 2691:1 2704:1 2706:1 2709:1 2731:3 2736:9 2742:2 2770:1 2779:2 2780:3 2785:2 2787:1 2798:2 2801:1 2802:10 2821:1 2826:1 2834:1 2837:1 2844:1 2848:3 2849:1 2854:2 2855:1 2886:9 2895:1 2901:1 2919:2 2936:1 2954:2 2979:1 2980:1 2994:1 3002:1 3003:1 3020:3 3027:1 3041:1 3042:1 3049:3 3050:1 3060:1 3061:1 3064:1 3072:1 3077:6 3090:1 3098:1 3099:2 3113:1 3116:1 3131:1 3132:1 3133:1 3147:2 3149:1 3153:1 3173:1 3179:1 3183:1 3184:13 3204:1 3206:2 3213:2 3221:4 3225:1 3231:1 3234:5 3245:1 3248:1 3266:1 3285:1 3287:2 3292:1 3295:1 3297:4 3304:1 3312:1 3315:1 3324:1 3326:2 3328:1 3332:1 3342:1 3351:1 3353:1 3369:3 3372:1 3375:1 3379:1 3404:1 3407:2 3408:2 3414:1 3416:1 3418:1 3462:1 3494:1 3499:1 3518:2 3519:1 3520:1 3522:1 3524:1 3525:1 3545:1 3546:2 3547:1 3562:1 3563:1 3572:1 3581:2 3588:1 3598:1 3606:1 3612:1 3615:1 3618:2 3631:1 3641:14 3649:1 3660:1 3677:1 3678:3 3679:1 3707:1 3712:1 3735:1 3744:1 3766:1 3774:1 3776:1 3783:1 3786:1 3804:1 3831:1 3837:3 3841:1 3854:1 3878:1 3886:3 3889:1 3907:2 3908:1 3909:2 3918:2 3938:6 3963:1 3964:1 3966:1 3967:1 3976:1 3984:2 3995:6 3998:6 4005:2 4012:1 4026:1 4046:1 4051:1 4060:1 4061:1 4062:2 4083:1 4091:2 4093:1 4102:1 4107:18 4108:3 4109:1 4128:1 4136:3 4145:1 4154:1 4183:1 4186:1 4190:2 4195:1 4198:10 4211:2 4212:5 4213:3 4216:1 4218:2 4221:1 4223:1 4224:1 4225:1 4229:1 4234:1 4236:4 4237:2 4238:4 4244:3 4268:1 4305:1 4325:1 4332:1 4333:1 4340:1 4353:1 4354:1 4368:1 4371:2 4375:5 4376:1 4382:1 4399:1 4400:1 4409:1 4413:2 4423:1 4434:1 4447:2 4460:1 4469:1 4471:2 4497:1 4498:3 4505:1 4512:1 4518:5 4519:3 4534:2 4539:1 4541:1 4542:1 4551:1 4566:1 4569:1 4572:2 4581:1 4586:1 4587:1 4592:1 4599:4 4608:1 4609:2 4611:1 4621:1 4622:1 4636:1 4655:1 4667:1 4668:1 4673:1 4683:2 4684:2 4710:2 4722:1 4724:1 4734:1 4744:1 4759:1 4773:1 4784:1 4792:1 4796:3 4814:1 4820:1 4821:2 4825:1 4832:2 4853:1 4876:2 4889:2 4892:1 4894:2 4901:2 4909:1 4931:1 4963:1 4986:1 5000:1 5003:2 5016:2 5024:1 5044:1 5047:1 5049:3 5071:3 5077:1 5088:2 5093:1 5095:1 5100:1 5127:1 5187:1 5192:1 5201:1 5203:1 5224:1 5232:1 5247:1 5248:1 5253:1 5254:1 5258:1 5283:1 5308:4 5313:1 5322:9 5325:5 5326:1 5332:5 5333:2 5337:3 5338:1 5339:2 5340:1 5342:1 5344:1 5347:6 5349:13 5350:1 5352:4 5354:4 5451:10 5484:1 5492:1 5500:1 5520:1 5529:1 5530:1 5531:1 5533:2 5534:1 5535:1 5585:1 5595:1 5599:3 5604:1 5610:2 5627:1 5674:1 5681:2 5683:1 5686:4 5688:3 5702:10 5711:1 5719:2 5721:1 5726:1 5730:1 5746:3 5752:1 5783:1 5788:2 5807:2 5813:2 5815:1 5828:1 5860:1 5865:3 5874:3 5878:3 5889:1 5900:1 5931:2 5939:1 5947:6 5948:2 5952:1 5968:2 5998:1 6005:2 6034:1 6042:1 6045:1 6046:1 6047:2 6049:1 6050:1 6056:1 6062:1 6071:1 6079:1 6087:1 6112:2 6116:1 6126:1 6131:1 6139:2 6145:1 6151:1 6175:2 6183:9 6187:1 6194:1 6207:1 6235:1 6237:2 6289:1 6293:1 6311:4 6355:2 6364:2 6365:6 6373:1 6378:1 6381:1 6382:1 6386:2 6405:1 6407:1 6409:1 6410:1 6412:1 6416:2 6417:1 6422:1 6429:46 6433:1 6434:1 6440:1 6448:1 6449:3 6451:7 6459:3 6468:1 6475:1 6486:1 6491:1 6492:1 6493:1 6525:1 6526:3 6532:2 6542:1 6554:1 6560:1 6578:1 6589:1 6597:1 6616:1 6619:2 6643:1 6661:2 6667:1 6669:1 6675:1 6678:1 6685:1 6707:2 6715:1 6716:2 6723:5 6756:1 6781:1 6789:1 6791:1 6794:2 6796:2 6802:1 6804:1 6810:5 6824:4 6834:1 6839:2 6843:1 6846:1 6847:1 6854:4 6859:15 6908:4 6911:1 6920:1 6937:1 6981:4 6991:1 7016:1 7021:1 7027:2 7033:1 7038:1 7045:1 7047:1 7054:5 7059:2 7068:9 7096:2 7097:1 7104:1 7108:1 7116:1 7122:1 7137:1 7157:3 7160:1 7163:1 7165:1 7166:1 7169:3 7170:2 7177:1 7178:2 7179:1 7181:2 7182:1 7190:1 7194:1 7199:1 7202:1 7215:1 7216:2 7221:1 7235:1 7245:1 7246:2 7251:1 7268:1 7273:1 7285:12 7303:1 7322:1 7360:1 7361:5 7363:1 7377:1 7379:1 7382:1 7391:2 7400:10 7402:1 7409:1 7414:1 7418:2 7419:1 7427:2 7430:1 7432:1 7435:1 7438:2 7443:1 7445:1 7450:5 7451:1 7456:3 7457:5 7459:2 7460:1 7461:5 7462:1 7464:2 7465:2 7471:1 7487:1 7499:1 7510:1 7527:1 7552:1 7553:1 7554:2 7564:2 7571:4 7572:1 7576:1 7581:7 7588:1 7589:1 7605:1 7614:3 7615:1 7622:1 7626:1 7638:1 7648:3 7656:1 7658:3 7670:1 7682:1 7701:1 7702:1 7709:1 7712:4 7741:1 7742:1 7743:1 7753:3 7754:1 7761:1 7768:1 7773:12 7778:1 7782:1 7787:4 7799:1 7803:1 7804:1 7810:1 7820:3 7860:2 7868:2 7872:1 7880:1 7887:2 7905:1 7908:1 7912:1 7929:3 7930:1 7950:3 7964:2 7972:1 7979:1 7982:1 7988:5 7999:1 8002:1 8005:1 8030:1 8049:1 8065:10 8070:7 8079:1 8081:10 8082:5 8099:4 8158:1 8162:4 8171:3 8174:1 8175:2 8176:9 8189:2 8195:1 8206:5 8207:1 8216:1 8229:2 8230:1 8234:13 8249:2 8256:1 8272:1 8279:1 8282:1 8284:1 8285:6 8296:1 8304:1 8311:2 8317:1 8318:1 8320:1 8328:6 8332:1 8343:1 8348:1 8350:1 8352:7 8355:1 8357:2 8359:2 8361:1 8376:1 8383:1 8387:4 8428:1 8433:3 8443:2 8469:9 8471:1 8472:1 8508:1 8553:2 8567:2 8568:2 8574:1 8582:1 8583:1 8593:2 8597:3 8598:5 8603:1 8605:1 8614:1 8617:1 8623:1 8630:1 8635:1 8637:1 8656:3 8657:1 8670:1 8672:1 8681:2 8690:2 8692:1 8702:2 8709:1 8711:1 8714:3 8726:1 8727:3 8731:1 8736:3 8753:3 8759:7 8761:1 8771:1 8778:1 8782:2 8783:1 8795:2 8800:2 8802:8 8809:5 8812:1 8814:6 8830:1 8831:2 8832:4 8833:4 8836:1 8849:1 8878:2 8891:5 8900:3 8901:1 8910:2 8911:1 8914:1 8916:5 8944:1 8968:1 8979:1 8983:2 8993:1 8996:1 8998:2 9000:1 9002:4 9022:1 9027:1 9038:1 9058:3 9060:1 9062:2 9063:1 9067:1 9084:1 9097:1 9101:6 9102:9 9120:4 9127:2 9132:1 9138:1 9140:1 9142:2 9149:1 9156:1 9166:1 9173:1 9181:1 9185:3 9222:1 9227:1 9239:1 9240:2 9243:1 9252:7 9263:1 9313:2 9318:1 9336:1 9346:1 9363:1 9377:2 9392:1 9400:1 9403:3 9419:1 9426:1 9440:2 9441:1 9455:5 9462:2 9466:1 9488:6 9495:1 9497:1 9532:12 9536:2 9550:2 9562:2 9563:3 9565:1 9575:2 9596:1 9599:1 9607:1 9619:1 9622:2 9624:1 9645:1 9653:1 9656:1 9682:5 9683:1 9688:2 9690:1 9691:1 9697:1 9698:1 9700:1 9710:2 9716:2 9723:3 9729:2 9738:1 9743:1 9756:1 9772:2 9810:2 9818:1 9823:5 9824:1 9850:1 9859:2 9867:1 9877:1 9878:1 9881:1 9884:1 9890:1 9891:1 9918:3 9922:1 9924:5 9941:1 9944:1 9949:1 9958:1 9963:1 9974:1 9999:1 10022:3 10040:2 10042:2 10045:1 10052:2 10053:2 10054:2 10070:1 10073:1 10074:3 10090:5 10117:1 10126:1 10169:4 10172:1 10176:1 10204:1 10211:1 10218:5 10220:1 10232:1 10254:1 10278:3 10311:1 10316:1 10318:2 10319:1 10324:1 10329:1 10355:1 10360:1 10369:1 10370:1 10384:6 10406:1 10457:1 10465:1 10480:29 10502:1 10503:5 10524:1 10530:1 10531:3 10537:1 10539:1 10551:1 10576:1 10597:1 10598:4 10617:1 10648:2 10651:6 10654:1 10659:1 10667:1 10707:1 10713:1 10719:1 10722:1 10725:3 10757:1 10758:1 10772:1 10792:1 10809:1 10818:1 10823:2 10837:1 10843:1 10847:11 10851:4 10862:1 10871:4 10872:1 10879:1 10887:1 10892:1 10897:1 10898:2 10912:1 10951:1 10952:1 10953:1 10961:3 10962:2 10970:2 10974:5 10979:2 10981:1 10985:3 10987:1 10993:1 11013:1 11016:1 11036:1 11046:5 11047:7 11050:1 11056:2 11062:1 11087:1 11103:4 11118:2 11126:1 11159:2 11163:3 11168:3 11173:1 11186:2 11187:4 11188:1 11201:1 11211:3 11215:6 11223:3 11235:2 11266:1 11273:4 11280:2 11283:1 11284:1 11286:1 11297:1 11301:1 11325:3 11329:1 11337:5 11341:1 11344:1 11345:1 11346:1 11348:1 11349:2 11352:1 11353:1 11368:4 11375:4 11394:1 11400:2 11405:2 11408:1 11415:1 11430:6 11447:4 11449:1 11451:2 11459:2 11463:2 11479:1 11486:1 11507:1 11509:2 11526:2 11584:2 11600:1 11607:1 11632:1 11638:4 11640:1 11643:1 11653:1 11655:1 11705:1 11708:2 11712:3 11727:1 11739:2 11742:1 11747:1 11790:1 11792:1 11800:1 11801:3 11807:1 11812:2 11813:1 11818:1 11823:1 11832:1 11833:1 11834:1 11843:1 11853:1 11856:1 11857:2 11864:3 11874:1 11876:1 11900:1 11906:2 11932:1 11937:1 11966:1 11974:1 11976:1 11979:1 11985:1 11990:1 11992:1 11994:1 11998:2 12038:1 12050:5 12065:1 12076:1 12078:1 12084:1 12095:1 12099:4 12114:1 12115:1 12126:1 12131:1 12144:3 12145:1 12146:1 12178:1 12181:1 12182:2 12184:1 12197:1 12218:1 12229:1 12245:1 12276:2 12287:1 12289:1 12323:1 12328:1 12337:1 12338:1 12346:7 12364:2 12365:2 12366:1 12372:1 12375:1 12381:4 12387:2 12396:1 12416:1 12425:1 12427:1 12432:1 12440:1 12444:1 12452:1 12486:2 12488:2 12490:1 12491:1 12512:1 12555:1 12556:3 12573:1 12575:3 12582:1 12583:1 12585:1 12586:1 12594:1 12614:6 12623:1 12635:2 12641:1 12652:2 12661:1 12662:3 12672:1 12683:1 12685:1 12698:1 12723:4 12739:2 12740:1 12741:5 12748:2 12754:1 12774:1 12797:3 12798:3 12800:5 12801:1 12822:1 12837:1 12839:1 12842:1 12843:1 12846:2 12881:2 12930:1 12942:2 12943:1 12944:1 12945:2 12946:1 12950:5 12954:2 12961:2 12971:1 12985:2 12988:5 12989:1 13014:2 13025:1 13032:1 13033:2 13058:2 13072:1 13094:1 13104:3 13125:1 13128:1 13140:1 13142:1 13153:9 13156:1 13181:1 13187:1 13205:1 13207:5 13212:1 13225:3 13238:1 13259:1 13288:1 13295:2 13304:1 13311:2 13328:13 13333:2 13334:1 13336:1 13345:1 13362:1 13390:3 13406:1 13410:1 13417:1 13428:2 13431:1 13434:1 13435:1 13437:1 13445:3 13446:1 13449:2 13452:2 13453:2 13454:1 13462:1 13470:1 13471:1 13482:1 13489:3 13502:1 13505:2 13525:2 13535:1 13542:1 13561:1 13590:1 13593:2 13615:1 13620:1 13637:4 13647:3 13662:3 13664:2 13668:1 13671:1 13680:5 13682:2 13688:1 13703:1 13707:1 13708:1 13718:1 13719:4 13729:1 13732:1 13733:2 13740:1 13760:1 13765:3 13766:1 13778:1 13780:1 13803:7 13807:2 13819:12 13823:2 13835:6 13857:1 13858:1 13865:2 13871:2 13876:1 13888:3 13895:2 13907:1 13908:2 13926:1 13928:5 13929:1 13931:1 13936:1 13947:1 13953:1 13970:3 13979:4 13986:1 13989:3 13994:2 13995:1 13996:2 14000:1 14024:2 14026:2 14030:1 14031:1 14035:2 14041:1 14050:3 14051:6 14055:1 14071:2 14072:1 14073:1 14077:1 14088:1 14097:3 14119:3 14127:2 14130:1 14137:1 14178:7 14204:2 14207:1 14227:1 14229:3 14231:2 14252:1 14262:1 14265:1 14279:1 14286:1 14300:2 14317:1 14329:1 14332:2 14334:1 14341:1 14365:3 14366:9 14371:4 14380:1 14382:9 14383:2 14385:1 14386:1 14387:2 14391:2 14395:1 14403:1 14404:1 14417:1 14422:2 14434:1 14443:2 14465:2 14476:9 14477:3 14496:10 14513:1 14516:7 14522:1 14541:1 14549:1 14553:1 14556:1 14564:1 14576:2 14577:2 14582:1 14583:1 14596:1 14610:1 14622:1 14630:4 14635:1 14648:1 14649:1 14650:1 14654:1 14657:1 14665:2 14672:3 14674:1 14677:7 14678:3 14691:2 14696:1 14711:1 14717:1 14719:5 14727:1 14734:1 14740:4 14744:1 14747:8 14751:1 14762:4 14763:1 14764:1 14765:3 14768:1 14774:1 14776:1 14785:5 14802:1 14804:1 14807:1 14810:1 14824:1 14837:4 14844:1 14849:2 14851:1 14853:1 14864:5 14871:1 14877:1 14882:1 14885:5 14919:1 14934:2 14938:2 14946:3 14956:2 14962:1 14976:1 14981:2 14982:1 14987:1 14991:1 15002:1 15030:2 15035:2 15040:2 15067:1 15073:1 15080:2 15087:1 15090:2 15097:1 15098:1 15100:1 15105:2 15111:1 15123:3 15133:1 15134:10 15135:1 15137:6 15142:1 15160:2 15166:1 15169:1 15171:3 15183:1 15184:5 15196:1 15197:1 15201:2 15205:12 15233:2 15240:1 15251:2 15269:5 15282:4 15283:1 15287:1 15303:1 15307:37 15312:4 15322:1 15326:1 15344:1 15354:2 15360:1 15371:2 15374:1 15396:6 15405:4 15423:1 15424:1 15444:1 15445:2 15452:1 15453:1 15460:3 15480:1967 15483:2 15492:2 15496:1 15508:1 15518:1 15524:1 15556:2 15560:1 15568:1 15570:1 15574:1 15591:1 15595:1 15599:2 15610:3 15617:2 15623:1 15625:1 15638:3 15639:3 15642:2 15645:1 15646:1 15647:1 15649:4 15652:1 15655:3 15658:1 15661:1 15662:6 15678:2 15684:1 15723:1 15738:1 15742:2 15743:1 15763:3 15773:1 15776:9 15790:1 15814:1 15816:2 15847:1 15853:1 15871:2 15875:1 15884:1 15896:1 15927:1 15929:4 15935:2 15938:1 15943:1 15949:3 15955:1 15957:1 15960:1 15966:1 15984:1 15994:1 15997:4 16008:1 16019:1 16036:1 16042:7 16043:1 16051:1 16052:1 16054:4 16059:1 16074:1 16077:1 16079:1 16094:1 16102:1 16103:1 16111:1 16112:1 16115:4 16118:1 16121:10 16147:1 16151:2 16152:3 16154:6 16161:1 16171:1 16179:1 16187:1 16206:2 16228:1 16254:1 16262:3 16267:1 16268:2 16270:1 16271:1 16273:2 16274:1 16277:1 16283:1 16287:1 16300:1 16302:1 16306:2 16308:1 16309:1 16310:1 16313:1 16318:1 16341:1 16370:3 16387:6 16402:1 16409:4 16412:2 16426:1 16428:1 16438:1 16458:1 16474:1 16479:1 16484:6 16485:4 16488:1 16490:1 16495:3 16500:2 16503:2 16506:1 16509:1 16534:1 16547:1 16548:1 16577:2 16593:2 16603:1 16605:1 16611:1 16620:1 16623:1 16625:1 16630:3 16643:1 16652:2 16654:3 16659:1 16665:1 16670:1 16679:1 16681:5 16682:1 16693:1 16718:2 16726:5 16727:1 16729:1 16732:1 16733:1 16735:1 16743:1 16744:2 16753:5 16754:1 16761:1 16763:1 16777:1 16778:2 16780:1 16787:2 16792:1 16809:1 16815:6 16817:1 16853:1 16855:2 16861:4 16862:2 16867:4 16871:1 16875:1 16882:1 16895:1 16897:2 16921:9 16946:1 16964:1 16970:1 16971:1 16975:1 17001:3 17011:1 17030:2 17037:1 17043:1 17048:1 17057:2 17058:1 17066:2 17085:2 17090:1 17107:1 17113:2 17136:4 17137:4 17166:1 17175:1 17181:1 17185:1 17187:1 17188:1 17237:4 17246:2 17248:1 17269:1 17275:5 17276:4 17286:1 17288:1 17296:1 17298:1 17303:1 17311:3 17316:2 17320:1 17331:2 17346:2 17347:1 17357:1 17362:6 17363:1 17366:2 17367:1 17387:7 17403:1 17404:1 17424:2 17440:1 17470:1 17485:4 17491:3 17492:1 17499:1 17515:1 17520:1 17553:2 17563:1 17569:1 17575:1 17580:1 17602:1 17605:1 17608:1 17616:2 17622:1 17623:4 17626:1 17631:2 17641:1 17649:1 17658:1 17660:1 17678:6 17706:2 17712:1 17724:2 17725:2 17730:1 17735:2 17742:2 17743:1 17768:1 17772:2 17774:2 17775:1 17792:1 17808:1 17822:1 17826:1 17827:1 17834:2 17838:1 17839:1 17853:2 17855:4 17857:1 17862:1 17865:1 17886:1 17890:1 17900:1 17906:1 17908:1 17910:1 17915:2 17916:12 17919:1 17921:3 17922:1 17924:2 17925:1 17927:3 17943:3 17955:4 17958:4 17962:2 17969:1 17975:1 17978:1 17979:1 17980:1 17983:2 17995:4 18009:4 18016:1 18025:2 18028:1 18035:1 18037:1 18038:2 18041:2 18042:1 18043:8 18053:4 18058:1 18064:1 18068:3 18069:1 18073:1 18079:1 18092:1 18093:6 18116:1 18130:1 18146:1 18165:1 18166:3 18168:3 18174:2 18177:1 18181:1 18189:1 18197:2 18208:3 18210:2 18215:1 18248:1 18249:1 18266:1 18313:2 18339:1 18356:1 18358:1 18360:1 18366:1 18367:1 18369:2 18370:2 18375:4 18378:2 18379:1 18406:3 18409:1 18410:3 18414:1 18423:1 18436:1 18447:1 18454:1 18468:1 18469:2 18474:2 18478:1 18479:1 18485:2 18491:1 18498:1 18504:1 18509:1 18511:3 18513:1 18523:1 18539:1 18567:1 18568:1 18570:1 18572:1 18578:1 18580:1 18587:1 18602:1 18616:3 18617:1 18623:1 18629:1 18631:1 18645:1 18654:2 18664:1 18665:1 18674:2 18702:4 18704:1 18727:4 18732:8 18736:1 18742:2 18747:1 18748:1 18754:1 18755:1 18784:1 18792:3 18800:1 18816:1 18821:1 18849:1 18856:5 18857:1 18862:5 18880:1 18881:3 18882:1 18884:1 18886:1 18901:2 18905:1 18916:1 18929:1 18930:1 18931:2 18934:1 18938:2 18941:6 18949:1 18980:1 19011:1 19024:1 19033:4 19043:1 19048:1 19056:1 19059:1 19060:2 19076:1 19080:1 19085:1 19098:3 19108:4 19126:2 19134:3 19136:2 19139:1 19145:1 19146:1 19148:1 19153:2 19172:1 19183:1 19193:2 19205:3 19207:3 19210:6 19226:3 19230:1 19249:1 19250:1 19258:1 19267:1 19275:2 19292:6 19293:1 19294:1 19302:3 19303:1 19322:1 19328:2 19331:1 19335:1 19337:5 19339:2 19359:1 19365:1 19368:1 19373:2 19374:1 19386:1 19391:1 19392:2 19395:2 19402:1 19412:1 19422:1 19425:1 19438:3 19440:1 19443:5 19446:1 19453:1 19469:1 19471:3 19475:1 19486:1 19487:6 19490:1 19507:1 19517:1 19522:1 19532:1 19544:3 19559:4 19561:1 19562:1 19564:1 19586:1 19603:1 19610:1 19612:1 19613:1 19637:1 19638:1 19644:1 19645:1 19678:1 19683:1 19702:1 19706:1 19710:1 19716:1 19730:2 19745:1 19753:1 19762:6 19767:1 19773:1 19792:1 19804:1 19805:2 19810:5 19813:2 19837:1 19844:1 19847:1 19849:1 19886:1 19897:3 19901:1 19902:2 19909:1 19912:1 19924:1 19928:3 19962:1 19966:2 19972:1 19992:1 20000:1 20004:1 20015:2 20034:1 20040:5 20072:1 20080:3 20083:1 20084:5 20096:2 20103:1 20109:4 20111:1 20118:1 20128:1 20137:1 20138:1 20165:1 20180:1 20208:1 20223:1 20224:1 20226:1 20235:1 20239:1 20247:2 20251:1 20252:1 20253:1 20258:2 20261:1 20266:1 20267:1 20270:4 20275:1 20278:1 20293:1 20304:1 20316:1 20317:3 20318:8 20320:1 20326:2 20327:4 20331:3 20332:3 20333:1 20334:4 20336:1 20337:5 20338:1 20341:1 20343:5 20344:5 20350:1 20353:1 20356:1 20371:1 20373:1 20378:5 20380:1 20383:3 20398:6 20399:3 20406:1 20411:1 20413:1 20435:1 20436:1 20440:1 20441:2 20442:10 20447:7 20448:2 20464:1 20469:3 20470:1 20496:3 20502:3 20505:1 20512:3 20529:2 20560:1 20576:4 20595:3 20611:1 20619:1 20621:1 20627:1 20629:2 20631:6 20659:1 20668:5 20686:1 20694:1 20696:1 20717:1 20718:2 20727:1 20733:1 20738:3 20740:1 20742:7 20761:6 20762:1 20785:13 20787:1 20818:1 20829:7 20831:1 20853:1 20871:1 20872:2 20874:1 20887:2 20890:1 20930:1 20936:1 20949:11 20962:5 20973:2 20995:1 21012:1 21021:2 21056:1 21062:2 21065:2 21077:1 21089:1 21100:2 21107:2 21108:5 21111:1 21112:1 21113:1 21123:2 21134:1 21138:1 21139:1 21146:1 21150:6 21173:1 21198:7 21199:5 21208:2 21209:4 21218:2 21219:1 21224:1 21225:2 21227:1 21228:1 21245:1 21249:1 21258:1 21293:2 21306:1 21327:1 21337:4 21350:1 21353:1 21361:4 21380:1 21402:1 21434:1 21473:1 21480:1 21485:2 21486:1 21508:1 21520:1 21529:2 21539:4 21543:1 21546:1 21556:1 21557:5 21561:2 21567:1 21571:1 21582:3 21584:1 21586:1 21588:1 21595:1 21602:2 21610:7 21613:1 21622:1 21627:1 21630:1 21633:1 21642:3 21644:1 21645:1 21650:1 21663:2 21684:2 21697:1 21703:1 21718:1 21723:1 21741:1 21760:37 21773:6 21774:1 21782:4 21783:1 21784:1 21787:2 21791:1 21812:1 21830:1 21831:2 21838:1 21844:1 21846:1 21856:1 21868:1 21878:2 21887:2 21904:1 21914:2 21916:6 21922:1 21926:1 21927:1 21944:1 21948:1 21995:3 21996:1 21997:1 21998:1 22007:1 22010:1 22016:1 22024:1 22027:4 22035:1 22037:1 22041:1 22048:3 22078:1 22080:1 22094:1 22109:1 22119:2 22123:1 22142:1 22163:9 22179:1 22192:1 22208:1 22218:1 22223:2 22229:2 22233:1 22243:1 22245:6 22247:1 22251:1 22256:1 22263:1 22279:2 22281:1 22315:1 22325:1 22328:1 22331:14 22340:1 22360:1 22368:1 22376:3 22378:1 22383:1 22410:2 22415:1 22417:1 22431:1 22434:2 22455:1 22460:1 22465:1 22466:3 22472:1 22478:1 22481:1 22491:1 22493:1 22504:1 22513:1 22517:2 22520:4 22534:2 22548:3 22551:4 22552:1 22561:1 22585:1 22587:1 22598:1 22601:1 22602:1 22611:5 22617:1 22627:1 22644:1 22646:2 22647:1 22655:1 22658:1 22662:1 22669:4 22690:5 22699:7 22707:2 22709:1 22715:1 22730:1 22734:2 22736:1 22749:3 22755:4 22756:1 22759:2 22760:2 22761:1 22786:4 22787:1 22795:2 22799:1 22802:1 22803:7 22809:1 22812:1 22815:1 22818:1 22820:1 22822:1 22828:1 22830:2 22831:2 22846:2 22864:1 22865:1 22866:1 22874:3 22876:1 22895:1 22903:1 22905:2 22914:1 22916:2 22924:1 22931:1 22937:1 22942:1 22948:1 22982:1 23000:1 23001:1 23003:1 23011:1 23027:5 23032:1 23039:1 23064:2 23071:1 23075:1 23076:3 23084:1 23089:7 23109:10 23118:1 23125:2 23127:3 23143:1 23151:1 23155:1 23166:1 23167:2 23175:1 23188:1 23196:2 23201:1 23226:1 23237:4 23248:1 23256:1 23263:1 23264:1 23284:3 23293:1 23295:1 23298:3 23299:1 23300:1 23305:1 23314:5 23331:1 23333:1 23335:1 23341:1 23344:4 23349:1 23360:3 23363:1 23378:1 23384:3 23385:2 23386:1 23392:1 23393:2 23404:4 23413:1 23416:1 23424:2 23430:23 23431:2 23433:2 23435:1 23456:2 23466:4 23476:1 23491:1 23496:1 23521:1 23524:1 23551:2 23558:1 23586:6 23588:1 23592:1 23603:4 23610:5 23616:6 23623:1 23626:7 23646:1 23647:4 23655:4 23659:2 23676:1 23685:1 23703:1 23712:1 23713:1 23719:1 23720:2 23722:1 23723:1 23733:1 23736:1 23739:3 23741:3 23744:1 23767:1 23768:1 23775:13 23777:2 23784:1 23797:2 23828:1 23835:6 23836:1 23840:1 23847:1 23853:1 23858:5 23862:1 23865:1 23866:8 23871:1 23885:1 23891:1 23893:1 23923:1 23940:2 23949:1 23952:1 23967:1 23971:4 23974:4 23991:1 23993:1 23994:1 24003:1 24004:1 24034:1 24039:3 24054:1 24070:3 24076:1 24081:1 24095:1 24096:2 24100:1 24126:4 24128:1 24129:1 24132:1 24137:2 24143:1 24151:1 24162:2 24164:1 24168:1 24170:5 24179:1 24213:1 24225:1 24239:1 24251:1 24257:1 24265:2 24266:7 24267:1 24271:1 24274:1 24275:1 24276:1 24280:1 24286:1 24287:1 24292:1 24296:1 24307:2 24326:1 24330:1 24332:1 24341:2 24350:1 24370:3 24373:1 24385:1 24394:1 24398:1 24401:6 24407:1 24410:1 24411:5 24412:1 24438:3 24441:1 24463:1 24473:1 24476:5 24477:2 24478:1 24482:1 24483:4 24487:3 24503:7 24525:2 24530:5 24536:2 24538:1 24568:1
14 9:2 30:1 56:1 59:1 71:1 75:1 96:2 146:1 157:2 162:1 163:1 185:6 186:8 188:1 196:1 197:1 204:1 216:1 219:1 223:2 224:1 230:1 239:1 242:1 243:1 247:1 253:1 254:8 256:1 260:1 265:1 270:1 282:1 295:1 296:6 308:1 314:1 318:3 320:2 323:1 336:1 346:2 375:1 376:1 379:1 407:3 450:1 457:9 469:1 501:2 510:1 524:1 525:1 527:6 541:1 545:2 547:1 565:3 592:2 599:1 607:1 619:1 636:1 663:1 699:1 704:2 708:3 713:1 714:1 724:1 731:1 732:2 748:3 749:1 753:1 759:5 762:1 763:1 764:2 766:1 772:1 777:1 785:4 789:1 802:1 811:1 814:5 831:2 834:2 838:1 851:3 864:2 869:2 875:1 880:1 881:1 884:1 888:1 889:1 892:1 895:1 900:2 907:1 909:1 911:1 914:1 922:1 927:1 932:1 933:1 942:1 946:1 949:1 965:1 969:2 980:2 1000:1 1009:2 1011:2 1021:1 1023:2 1044:1 1045:1 1046:3 1048:1 1051:6 1053:1 1055:1 1059:3 1068:1 1077:1 1094:3 1095:1 1114:1 1124:1 1125:1 1127:1 1128:1 1141:1 1153:2 1155:1 1168:1 1171:4 1172:2 1187:1 1205:1 1217:1 1220:5 1226:1 1229:2 1256:2 1259:6 1264:4 1278:1 1285:1 1292:1 1293:2 1297:1 1299:1 1301:1 1321:1 1332:4 1344:1 1356:2 1360:3 1369:1 1381:5 1398:1 1401:6 1405:1 1413:1 1424:1 1425:2 1448:1 1452:1 1453:1 1470:1 1507:6 1510:1 1517:5 1526:1 1529:1 1535:1 1536:1 1538:2 1545:2 1546:1 1564:5 1585:1 1589:2 1591:4 1603:1 1616:2 1617:3 1621:1 1622:2 1626:1 1627:1 1628:1 1629:1 1640:1 1654:2 1659:1 1673:1 1674:1 1683:1 1701:1 1703:1 1710:1 1715:1 1727:1 1730:1 1731:5 1737:1 1745:1 1754:1 1759:1 1766:9 1781:2 1785:1 1798:1 1809:4 1818:1 1826:4 1834:1 1838:3 1842:1 1846:3 1856:4 1863:1 1874:2 1879:1 1880:1 1882:2 1883:2 1885:2 1888:1 1891:1 1904:2 1908:1 1910:2 1911:1 1912:3 1938:4 1941:1 1942:2 1945:7 1947:3 1953:1 1954:5 1955:2 1957:1 1960:1 1963:3 1965:3 1968:6 1970:2 1973:2 1976:4 1978:1 1991:1 2000:1 2009:1 2015:1 2020:1 2028:1 2040:2 2042:1 2047:1 2049:1 2051:2 2053:1 2061:1 2065:2 2071:1 2076:2 2077:1 2112:1 2128:1 2131:1 2134:2 2149:1 2157:1 2164:1 2172:2 2178:2 2183:2 2193:1 2198:1 2208:1 2226:3 2229:1 2234:2 2254:1 2274:1 2275:2 2277:1 2286:2 2295:1 2298:1 2303:1 2305:1 2321:4 2325:3 2333:1 2349:1 2358:1 2366:3 2372:1 2380:2 2381:1 2383:4 2389:1 2390:6 2394:1 2400:1 2414:1 2419:2 2425:1 2426:1 2448:1 2451:3 2462:37 2464:2 2465:1 2469:1 2470:1 2480:2 2486:1 2504:1 2507:10 2513:2 2519:10 2530:2 2565:5 2576:2 2587:2 2593:1 2597:2 2627:3 2638:1 2691:1 2704:1 2706:1 2709:1 2731:3 2736:9 2742:2 2770:1 2779:2 2780:3 2785:2 2787:1 2798:2 2801:1 2802:10 2821:1 2826:1 2834:2 2837:1 2844:1 2848:3 2849:1 2854:2 2855:2 2886:10 2895:1 2901:1 2919:2 2936:1 2954:2 2979:1 2980:1 2994:1 3002:1 3003:1 3020:4 3027:1 3041:1 3042:1 3049:3 3050:1 3060:1 3061:1 3064:1 3072:1 3077:6 3090:1 3098:1 3099:2 3113:1 3116:1 3131:1 3132:1 3133:1 3147:2 3149:1 3153:1 3173:1 3179:1 3183:1 3184:13 3204:1 3206:2 3213:2 3221:4 3223:1 3225:1 3231:1 3234:5 3245:1 3248:1 3266:1 3285:1 3287:2 3292:1 3295:1 3297:5 3304:1 3312:1 3315:1 3324:1 3326:2 3328:1 3332:1 3342:1 3351:1 3353:1 3369:3 3372:1 3375:1 3379:1 3404:1 3407:2 3408:2 3414:1 3416:1 3418:1 3462:1 3494:1 3499:1 3518:2 3519:1 3520:1 3522:1 3524:1 3525:1 3545:1 3546:2 3547:1 3562:1 3563:1 3572:1 3581:2 3588:2 3598:1 3606:1 3612:1 3615:1 3618:2 3631:1 3641:15 3649:1 3660:1 3677:1 3678:3 3679:1 3687:1 3707:1 3712:2 3735:1 3738:1 3744:1 3766:1 3774:1 3776:1 3783:1 3786:1 3804:1 3831:1 3837:3 3841:1 3854:1 3878:1 3886:3 3889:1 3907:2 3908:2 3909:2 3918:2 3938:6 3963:1 3964:1 3966:1 3967:1 3976:1 3984:2 3995:6 3998:6 4005:2 4012:1 4026:1 4046:1 4051:1 4060:1 4061:1 4062:2 4083:1 4091:2 4093:1 4102:1 4107:19 4108:3 4109:1 4120:1 4128:1 4136:3 4145:1 4154:1 4163:1 4183:1 4186:1 4190:2 4195:1 4198:11 4211:3 4212:5 4213:3 4216:1 4218:2 4221:1 4223:1 4224:1 4225:1 4229:1 4234:1 4236:4 4237:2 4238:4 4244:3 4268:1 4305:1 4325:1 4332:2 4333:1 4340:1 4353:1 4354:1 4368:1 4371:2 4374:1 4375:5 4376:1 4382:1 4399:1 4400:1 4409:1 4413:2 4423:1 4434:1 4447:2 4460:1 4464:1 4469:1 4471:2 4497:1 4498:3 4505:1 4512:1 4518:5 4519:3 4534:2 4539:1 4541:1 4542:1 4551:1 4566:1 4569:1 4572:2 4581:1 4586:1 4587:1 4592:1 4599:4 4608:1 4609:2 4611:1 4621:1 4622:1 4636:1 4655:1 4667:1 4668:1 4673:1 4683:2 4684:2 4710:3 4722:1 4724:1 4734:1 4744:1 4759:1 4773:1 4784:1 4792:1 4796:3 4814:1 4820:1 4821:2 4825:1 4832:2 4853:1 4876:2 4889:2 4892:1 4894:2 4901:2 4909:1 4931:1 4963:1 4986:1 5000:1 5003:2 5016:2 5024:1 5044:1 5047:1 5049:3 5071:3 5077:1 5088:2 5093:1 5095:1 5100:2 5127:1 5187:1 5192:1 5201:2 5203:1 5224:1 5232:1 5247:1 5248:1 5253:1 5254:1 5258:1 5283:1 5308:4 5310:1 5313:1 5322:9 5325:5 5326:1 5332:5 5333:2 5337:3 5338:1 5339:2 5340:1 5342:1 5344:1 5347:6 5349:13 5350:1 5352:5 5354:4 5451:10 5484:1 5488:1 5492:1 5500:1 5520:2 5529:1 5530:1 5531:1 5533:2 5534:1 5535:1 5585:1 5595:1 5599:4 5604:1 5610:2 5627:1 5670:1 5674:1 5681:2 5683:1 5686:4 5688:3 5702:10 5711:1 5719:2 5721:1 5726:1 5730:1 5746:3 5752:1 5783:1 5788:2 5807:2 5813:2 5815:1 5828:1 5849:1 5860:1 5865:3 5874:3 5878:3 5889:1 5900:1 5931:2 5939:1 5947:6 5948:2 5952:1 5968:2 5998:1 6005:2 6034:1 6042:1 6045:1 6046:1 6047:2 6049:1 6050:1 6056:1 6062:1 6071:1 6079:1 6087:1 6112:2 6116:1 6126:1 6128:1 6131:1 6139:2 6145:1 6151:1 6175:2 6183:9 6187:1 6194:1 6207:1 6235:1 6237:2 6289:1 6293:1 6311:4 6355:3 6364:2 6365:7 6373:1 6378:1 6381:1 6382:1 6386:2 6405:1 6407:1 6409:1 6410:1 6412:1 6416:2 6417:1 6422:1 6429:48 6433:1 6434:1 6440:1 6448:1 6449:3 6451:7 6459:4 6468:1 6475:1 6486:1 6491:1 6492:1 6493:1 6525:1 6526:4 6532:2 6542:1 6554:1 6560:1 6578:1 6589:1 6597:1 6616:1 6619:2 6643:1 6661:3 6667:1 6669:1 6675:1 6678:1 6685:1 6707:2 6711:1 6715:1 6716:2 6723:5 6756:1 6769:1 6781:1 6789:1 6791:1 6794:2 6796:2 6802:1 6804:1 6810:5 6824:4 6834:1 6839:2 6843:1 6846:1 6847:1 6854:4 6859:16 6908:4 6911:1 6920:1 6937:1 6981:4 6991:1 7016:1 7021:1 7022:1 7027:2 7033:1 7038:1 7045:1 7047:1 7054:5 7059:2 7068:9 7096:2 7097:1 7104:1 7108:1 7116:1 7122:1 7137:1 7157:3 7160:1 7163:1 7165:1 7166:1 7169:3 7170:2 7177:1 7178:2 7179:1 7181:2 7182:1 7190:1 7194:1 7199:1 7202:1 7215:1 7216:2 7221:1 7235:1 7245:1 7246:2 7251:1 7268:1 7273:1 7285:12 7303:1 7322:1 7360:1 7361:5 7363:1 7377:1 7379:1 7382:1 7391:2 7400:10 7402:1 7409:2 7414:1 7418:2 7419:1 7427:2 7430:1 7432:1 7435:1 7438:2 7443:1 7445:1 7450:5 7451:1 7456:3 7457:5 7459:2 7460:1 7461:6 7462:1 7464:2 7465:2 7471:1 7487:1 7499:1 7510:1 7527:1 7552:1 7553:1 7554:2 7564:2 7571:4 7572:1 7576:1 7581:7 7588:1 7589:1 7605:1 7614:3 7615:1 7622:1 7626:1 7638:1 7648:3 7656:1 7658:3 7670:1 7671:1 7682:2 7701:1 7702:1 7709:1 7712:4 7741:1 7742:1 7743:1 7753:3 7754:1 7761:1 7768:1 7773:12 7778:1 7782:1 7787:4 7799:1 7803:1 7804:1 7810:2 7820:3 7841:1 7860:2 7868:2 7872:1 7880:1 7887:2 7905:1 7908:1 7912:1 7929:3 7930:1 7950:3 7964:2 7972:1 7979:1 7982:1 7988:5 7999:1 8002:1 8005:1 8030:1 8049:1 8065:11 8070:7 8079:1 8081:11 8082:5 8099:4 8158:1 8162:4 8171:3 8174:1 8175:2 8176:9 8189:2 8195:1 8206:5 8207:1 8216:1 8229:2 8230:1 8234:15 8249:2 8256:1 8272:1 8279:1 8282:1 8284:1 8285:6 8296:1 8304:2 8311:2 8317:1 8318:1 8320:1 8328:6 8332:1 8343:1 8348:1 8350:1 8352:7 8355:1 8357:2 8359:2 8361:1 8376:1 8383:1 8387:4 8404:1 8428:1 8433:3 8443:2 8469:9 8471:1 8472:1 8508:1 8553:2 8567:2 8568:2 8574:1 8582:1 8583:1 8593:2 8597:3 8598:6 8603:1 8605:1 8614:1 8617:1 8623:1 8630:1 8635:1 8637:1 8656:3 8657:1 8670:1 8672:1 8681:2 8690:2 8692:1 8702:2 8709:1 8711:1 8714:3 8726:1 8727:3 8731:1 8736:3 8753:3 8759:8 8761:1 8771:1 8778:1 8782:2 8783:1 8785:1 8795:2 8800:2 8802:8 8809:5 8812:1 8814:6 8830:1 8831:2 8832:4 8833:5 8836:1 8849:1 8878:2 8891:6 8900:3 8901:1 8910:3 8911:1 8914:1 8916:6 8944:1 8968:1 8974:1 8979:1 8983:2 8993:1 8996:1 8998:2 8999:1 9000:1 9002:4 9022:1 9027:1 9038:1 9058:4 9060:1 9062:2 9063:1 9067:1 9084:1 9097:1 9101:6 9102:9 9120:4 9127:2 9132:1 9138:1 9140:1 9142:2 9149:1 9156:1 9166:1 9173:1 9181:1 9185:3 9222:2 9227:1 9239:1 9240:2 9243:1 9252:7 9263:1 9313:2 9318:1 9336:1 9346:1 9363:1 9377:2 9392:1 9400:1 9403:4 9419:1 9426:1 9440:2 9441:1 9455:6 9462:2 9466:1 9488:7 9495:1 9497:1 9532:12 9536:2 9550:3 9562:2 9563:3 9565:1 9575:2 9596:1 9599:1 9607:1 9619:1 9622:2 9624:1 9645:1 9653:1 9656:1 9682:6 9683:1 9688:2 9690:1 9691:1 9697:1 9698:1 9700:1 9710:2 9716:2 9723:3 9729:2 9738:2 9743:1 9756:1 9772:2 9810:2 9818:1 9823:5 9824:1 9850:1 9859:2 9867:1 9877:1 9878:1 9881:1 9884:1 9890:1 9891:1 9918:3 9922:1 9924:5 9941:1 9944:1 9949:1 9958:1 9963:1 9974:1 9999:1 10022:3 10037:1 10040:2 10042:2 10045:1 10046:1 10052:2 10053:2 10054:2 10070:1 10073:1 10074:3 10090:5 10117:1 10126:1 10169:4 10172:1 10176:1 10204:1 10211:1 10218:5 10220:1 10232:1 10254:1 10278:3 10311:1 10316:1 10318:2 10319:1 10324:1 10329:1 10353:1 10355:1 10360:1 10369:1 10370:1 10384:6 10406:1 10457:1 10465:1 10480:30 10502:1 10503:5 10524:1 10530:1 10531:3 10537:1 10539:1 10551:1 10554:1 10576:1 10597:1 10598:5 10617:1 10648:2 10651:6 10654:1 10659:1 10667:1 10707:1 10713:1 10719:1 10722:1 10725:3 10757:1 10758:1 10772:1 10792:1 10809:1 10818:1 10823:2 10837:1 10843:1 10847:11 10851:4 10862:1 10871:4 10872:1 10879:1 10887:1 10892:1 10897:1 10898:2 10912:1 10951:1 10952:1 10953:1 10961:4 10962:2 10970:2 10974:5 10979:2 10981:1 10985:3 10987:1 10993:2 11013:1 11016:1 11036:1 11046:5 11047:7 11050:1 11056:2 11062:1 11087:1 11103:4 11118:2 11126:1 11155:1 11159:2 11163:3 11168:3 11173:1 11186:2 11187:4 11188:1 11201:1 11211:3 11215:6 11223:3 11235:2 11266:1 11273:4 11280:2 11283:1 11284:1 11286:1 11297:1 11301:1 11325:3 11329:1 11337:5 11341:1 11344:1 11345:1 11346:1 11348:1 11349:2 11352:1 11353:1 11368:4 11375:4 11394:1 11400:2 11405:2 11408:1 11415:1 11430:6 11447:4 11449:1 11451:2 11459:2 11463:2 11479:1 11486:1 11507:1 11509:2 11526:2 11584:2 11600:1 11607:1 11632:1 11638:4 11640:1 11643:1 11653:1 11655:1 11705:1 11708:2 11712:3 11727:1 11739:2 11742:1 11747:1 11790:1 11792:1 11800:1 11801:3 11807:1 11812:2 11813:1 11818:1 11823:1 11832:1 11833:1 11834:1 11843:1 11853:1 11856:1 11857:2 11864:3 11874:1 11876:1 11900:1 11906:2 11932:1 11937:1 11966:1 11974:2 11976:1 11979:1 11985:1 11990:1 11992:1 11994:1 11998:2 12033:1 12038:1 12050:5 12065:1 12076:1 12078:1 12084:1 12095:1 12099:4 12114:1 12115:1 12126:1 12131:1 12144:3 12145:1 12146:2 12178:1 12181:1 12182:2 12184:1 12197:1 12218:1 12229:1 12245:1 12276:2 12287:1 12289:1 12323:1 12328:1 12337:1 12338:1 12346:7 12364:2 12365:2 12366:1 12372:1 12375:1 12381:5 12387:2 12396:1 12416:1 12425:1 12427:1 12432:1 12440:1 12444:1 12452:1 12456:1 12486:2 12488:2 12490:1 12491:1 12512:1 12555:1 12556:3 12573:1 12575:3 12582:1 12583:1 12585:1 12586:1 12594:1 12614:6 12623:1 12635:2 12641:1 12652:2 12661:1 12662:3 12672:1 12683:1 12685:1 12698:2 12723:4 12739:2 12740:2 12741:5 12748:2 12754:1 12774:1 12797:3 12798:3 12800:5 12801:1 12822:1 12837:1 12839:1 12842:1 12843:1 12846:2 12881:2 12930:1 12942:2 12943:1 12944:1 12945:2 12946:1 12950:5 12954:2 12961:2 12971:1 12985:2 12988:5 12989:1 13014:2 13025:1 13032:1 13033:2 13058:2 13062:1 13072:1 13094:1 13104:3 13125:1 13128:1 13140:2 13142:2 13153:10 13156:1 13181:1 13187:1 13205:1 13207:5 13212:1 13225:3 13229:1 13238:1 13259:1 13288:1 13295:2 13304:1 13311:2 13328:13 13333:3 13334:1 13336:1 13342:1 13345:1 13362:1 13390:4 13406:1 13410:1 13417:1 13428:2 13431:1 13434:1 13435:1 13437:1 13445:3 13446:1 13449:2 13452:2 13453:2 13454:1 13459:1 13462:1 13470:1 13471:1 13482:1 13489:3 13502:1 13505:2 13525:2 13535:1 13542:1 13561:1 13590:1 13593:2 13615:1 13620:1 13637:4 13647:3 13662:3 13664:2 13668:1 13671:1 13680:5 13682:2 13688:1 13703:1 13707:1 13708:1 13718:1 13719:4 13729:1 13732:1 13733:2 13740:1 13760:1 13765:3 13766:1 13778:1 13780:1 13803:7 13807:3 13819:12 13823:2 13835:6 13857:1 13858:1 13865:2 13871:2 13876:1 13888:3 13895:2 13907:1 13908:2 13926:1 13928:5 13929:1 13931:1 13936:1 13947:1 13953:1 13970:3 13979:4 13986:1 13989:3 13994:2 13995:1 13996:2 14000:1 14007:1 14024:3 14026:2 14030:1 14031:1 14035:2 14041:1 14050:3 14051:6 14055:1 14071:2 14072:1 14073:1 14077:2 14088:1 14097:3 14119:3 14127:2 14130:1 14137:1 14178:7 14181:1 14204:2 14207:1 14227:1 14229:3 14231:2 14252:1 14262:1 14265:1 14279:1 14286:1 14300:2 14305:1 14317:1 14329:1 14332:2 14334:1 14341:1 14365:3 14366:10 14371:5 14380:1 14382:10 14383:2 14385:1 14386:1 14387:2 14391:2 14395:1 14403:1 14404:1 14417:1 14422:2 14434:1 14443:2 14465:2 14476:9 14477:3 14496:11 14513:1 14516:7 14522:1 14541:1 14544:1 14549:1 14553:1 14556:1 14564:1 14576:2 14577:2 14582:1 14583:1 14596:1 14610:1 14622:1 14630:4 14635:2 14648:1 14649:1 14650:1 14654:1 14657:1 14665:2 14672:3 14674:1 14677:7 14678:4 14691:2 14696:1 14711:1 14717:1 14719:5 14727:1 14734:1 14740:4 14744:1 14747:8 14751:1 14762:4 14763:1 14764:1 14765:3 14768:1 14774:1 14776:1 14785:5 14802:1 14804:1 14807:1 14810:1 14824:1 14837:4 14844:1 14849:2 14851:1 14853:1 14864:5 14871:1 14877:1 14882:2 14885:5 14919:1 14934:2 14938:2 14946:3 14956:2 14962:1 14976:1 14981:2 14982:1 14987:1 14991:1 15002:1 15011:1 15030:2 15035:2 15040:2 15067:1 15073:1 15080:2 15087:1 15090:2 15097:1 15098:1 15100:1 15105:2 15111:1 15123:3 15133:1 15134:11 15135:1 15137:7 15142:1 15144:1 15160:2 15166:1 15169:1 15171:3 15183:1 15184:5 15196:1 15197:1 15201:2 15205:12 15233:2 15240:1 15251:2 15269:5 15282:5 15283:1 15287:1 15303:1 15307:39 15312:4 15322:1 15326:1 15344:1 15354:2 15360:1 15371:2 15374:1 15396:6 15405:4 15423:1 15424:1 15444:1 15445:2 15452:1 15453:1 15460:3 15480:2021 15483:2 15492:2 15496:1 15508:1 15518:1 15524:1 15554:1 15556:2 15560:1 15568:1 15570:1 15574:1 15591:1 15595:1 15599:2 15610:3 15617:2 15623:1 15625:1 15638:3 15639:3 15642:2 15645:1 15646:1 15647:1 15649:4 15652:1 15655:4 15658:1 15661:1 15662:6 15678:2 15684:1 15723:1 15738:1 15742:2 15743:1 15763:3 15773:1 15776:9 15790:1 15814:1 15816:2 15847:1 15853:1 15871:2 15875:1 15884:1 15896:1 15927:1 15929:4 15935:2 15938:1 15943:1 15949:4 15955:1 15957:1 15960:1 15966:1 15984:1 15994:1 15997:4 16008:1 16019:1 16036:1 16042:7 16043:1 16051:1 16052:1 16054:4 16059:1 16074:1 16077:1 16079:1 16094:1 16102:1 16103:1 16111:1 16112:1 16115:4 16118:1 16121:10 16147:1 16151:2 16152:4 16154:6 16161:1 16171:1 16179:1 16187:1 16206:2 16228:1 16254:1 16262:3 16267:1 16268:2 16270:1 16271:1 16273:2 16274:1 16277:1 16283:2 16287:1 16300:1 16302:1 16306:2 16308:1 16309:1 16310:1 16313:1 16318:1 16341:1 16370:3 16376:1 16387:6 16402:1 16409:4 16412:2 16426:1 16428:1 16438:1 16458:1 16474:1 16479:1 16484:6 16485:4 16488:1 16490:1 16495:3 16500:2 16503:2 16506:1 16509:2 16534:1 16547:1 16548:1 16577:2 16593:2 16603:1 16605:1 16611:1 16620:1 16623:1 16625:1 16630:3 16643:1 16652:2 16654:3 16659:1 16665:1 16670:1 16679:1 16681:5 16682:1 16693:1 16718:2 16726:5 16727:1 16729:1 16732:1 16733:1 16735:1 16743:1 16744:2 16753:6 16754:1 16761:1 16763:1 16777:1 16778:2 16780:1 16787:2 16792:1 16809:1 16815:6 16817:1 16853:1 16855:2 16861:4 16862:2 16867:4 16871:1 16875:1 16882:1 16895:1 16897:2 16919:1 16921:9 16946:1 16964:1 16970:1 16971:1 16975:1 17001:3 17011:1 17013:1 17030:2 17037:1 17043:1 17048:1 17057:2 17058:1 17066:2 17085:2 17090:1 17107:1 17113:2 17136:4 17137:4 17166:1 17175:1 17176:1 17181:1 17185:1 17187:1 17188:1 17237:5 17246:2 17248:1 17269:1 17275:5 17276:5 17286:1 17288:1 17296:1 17298:1 17303:1 17311:3 17316:2 17320:1 17331:2 17346:2 17347:1 17357:1 17362:6 17363:1 17366:2 17367:1 17387:8 17403:1 17404:1 17424:2 17440:1 17470:1 17485:4 17491:3 17492:1 17499:1 17515:1 17520:1 17553:2 17563:1 17569:1 17575:1 17580:1 17602:1 17605:1 17608:1 17616:2 17622:1 17623:4 17626:1 17631:2 17641:1 17649:1 17658:1 17660:1 17678:6 17706:2 17712:1 17724:2 17725:2 17730:1 17735:2 17742:2 17743:1 17768:1 17772:2 17774:2 17775:1 17792:1 17808:1 17822:1 17826:1 17827:1 17834:2 17838:1 17839:1 17853:2 17855:4 17857:1 17862:1 17865:1 17886:1 17890:1 17900:1 17906:1 17908:1 17910:1 17915:2 17916:12 17919:1 17921:3 17922:1 17924:2 17925:1 17927:3 17943:3 17955:4 17958:4 17962:2 17969:1 17975:1 17978:1 17979:1 17980:1 17983:2 17995:5 18009:4 18016:1 18025:2 18028:1 18035:1 18037:1 18038:2 18041:2 18042:1 18043:8 18053:4 18058:1 18064:1 18068:3 18069:1 18073:1 18079:1 18092:1 18093:6 18116:1 18130:1 18146:1 18165:1 18166:3 18168:3 18174:2 18177:1 18181:1 18189:1 18193:1 18197:2 18208:4 18210:2 18215:1 18248:1 18249:1 18266:1 18313:2 18339:1 18356:1 18358:1 18360:1 18366:2 18367:1 18369:3 18370:2 18375:4 18378:2 18379:1 18406:3 18409:1 18410:3 18414:1 18423:1 18436:1 18447:1 18454:1 18468:1 18469:2 18474:2 18478:1 18479:1 18485:2 18491:1 18498:2 18504:1 18509:1 18511:3 18513:1 18523:1 18539:1 18567:1 18568:1 18570:1 18572:1 18578:1 18580:1 18587:1 18602:1 18616:3 18617:1 18623:1 18629:1 18631:1 18645:1 18654:2 18664:1 18665:1 18674:2 18700:1 18702:4 18704:1 18727:4 18732:8 18736:1 18742:2 18747:1 18748:1 18754:1 18755:1 18768:1 18784:1 18792:3 18800:2 18816:1 18821:1 18849:1 18856:6 18857:1 18862:6 18880:1 18881:3 18882:1 18884:1 18886:1 18901:2 18905:1 18916:1 18929:1 18930:2 18931:2 18934:1 18938:2 18941:6 18949:1 18980:1 19011:1 19024:1 19033:4 19043:1 19048:1 19056:2 19059:1 19060:2 19076:1 19080:1 19085:2 19098:3 19108:4 19126:2 19134:3 19136:2 19139:1 19145:1 19146:1 19148:1 19150:1 19153:2 19172:1 19183:1 19193:2 19205:3 19207:3 19210:6 19226:3 19230:1 19249:1 19250:1 19258:1 19267:1 19275:2 19292:6 19293:1 19294:1 19302:3 19303:1 19322:1 19328:2 19331:1 19335:1 19337:5 19339:2 19359:1 19365:1 19368:1 19373:2 19374:1 19386:1 19391:1 19392:2 19395:2 19402:1 19412:1 19422:1 19425:1 19438:3 19440:1 19443:5 19446:1 19453:1 19469:1 19471:3 19475:1 19486:2 19487:6 19490:1 19507:1 19517:1 19522:1 19532:1 19544:3 19559:4 19561:1 19562:1 19564:1 19586:1 19587:1 19603:1 19610:1 19612:1 19613:1 19637:1 19638:1 19644:1 19645:1 19678:1 19683:1 19702:1 19706:1 19710:1 19714:1 19716:1 19730:2 19745:1 19753:1 19762:6 19767:1 19773:1 19792:1 19804:1 19805:2 19810:5 19813:2 19837:1 19844:1 19847:1 19849:1 19886:1 19897:3 19901:1 19902:2 19909:1 19912:1 19924:1 19928:3 19962:1 19966:2 19972:1 19992:1 20000:1 20004:1 20015:2 20034:1 20040:5 20072:1 20080:3 20083:1 20084:5 20096:2 20098:1 20103:1 20108:1 20109:4 20111:1 20118:1 20128:1 20137:1 20138:1 20165:1 20180:1 20208:1 20223:1 20224:1 20226:1 20235:1 20239:1 20247:2 20251:1 20252:1 20253:1 20258:2 20261:1 20266:1 20267:1 20270:4 20275:1 20278:1 20293:1 20304:1 20316:1 20317:3 20318:8 20319:1 20320:1 20326:2 20327:4 20331:3 20332:3 20333:1 20334:4 20336:1 20337:5 20338:1 20341:1 20343:6 20344:6 20350:1 20353:1 20356:1 20371:1 20373:1 20378:5 20380:1 20383:3 20398:6 20399:3 20406:1 20411:1 20413:1 20424:1 20435:1 20436:1 20440:1 20441:2 20442:10 20447:7 20448:2 20464:1 20469:3 20470:1 20496:3 20502:3 20505:1 20512:3 20529:2 20552:1 20560:1 20576:4 20595:3 20611:1 20614:1 20619:1 20621:1 20627:1 20629:2 20631:6 20653:1 20659:1 20668:5 20686:1 20694:1 20696:1 20717:1 20718:2 20727:1 20733:1 20738:3 20740:1 20742:7 20761:6 20762:1 20785:13 20787:1 20818:1 20829:7 20831:1 20853:1 20871:1 20872:2 20874:1 20887:2 20890:1 20930:1 20936:1 20949:11 20962:5 20973:2 20995:1 21012:1 21021:2 21056:1 21062:2 21065:2 21077:1 21089:1 21100:2 21107:2 21108:5 21111:1 21112:1 21113:1 21123:2 21133:1 21134:1 21138:1 21139:1 21146:1 21150:6 21173:1 21198:7 21199:5 21208:2 21209:4 21218:2 21219:1 21224:1 21225:2 21227:1 21228:1 21245:1 21249:1 21258:1 21293:2 21306:1 21327:1 21337:4 21350:1 21353:1 21359:1 21361:4 21380:1 21400:1 21402:1 21434:1 21473:1 21480:1 21485:2 21486:1 21508:1 21520:1 21529:3 21539:4 21543:1 21546:1 21556:1 21557:5 21561:2 21567:1 21571:1 21582:3 21584:1 21586:1 21588:1 21595:1 21602:2 21610:7 21613:1 21622:1 21627:1 21630:1 21633:1 21642:3 21644:1 21645:1 21650:1 21663:2 21675:1 21684:2 21697:1 21703:1 21718:1 21723:1 21741:1 21760:39 21773:6 21774:1 21782:4 21783:1 21784:1 21787:2 21791:1 21794:1 21812:1 21830:1 21831:2 21838:1 21844:1 21846:1 21856:1 21868:1 21878:2 21887:2 21904:1 21914:2 21916:6 21922:1 21926:1 21927:1 21944:1 21948:1 21995:3 21996:1 21997:1 21998:1 22007:1 22010:1 22016:1 22024:1 22027:4 22035:1 22037:1 22041:1 22048:3 22078:1 22080:1 22094:1 22109:1 22119:2 22123:1 22142:1 22163:10 22179:1 22192:1 22208:1 22215:1 22218:1 22223:2 22229:2 22233:1 22243:1 22245:7 22247:1 22251:1 22256:1 22263:1 22279:2 22281:1 22315:1 22320:1 22325:1 22328:1 22331:16 22340:1 22360:1 22368:1 22376:3 22378:1 22383:1 22410:2 22415:1 22417:1 22431:1 22434:2 22455:1 22460:1 22465:1 22466:3 22472:1 22478:1 22481:1 22491:1 22493:1 22504:1 22513:1 22517:2 22520:5 22534:2 22548:3 22551:4 22552:1 22561:1 22585:1 22587:1 22598:1 22601:1 22602:1 22611:5 22617:1 22623:1 22627:1 22644:1 22646:2 22647:1 22655:1 22658:1 22662:1 22669:4 22690:5 22699:7 22707:2 22709:1 22715:1 22730:1 22734:2 22736:1 22749:3 22755:5 22756:1 22759:4 22760:2 22761:1 22786:4 22787:1 22795:2 22799:1 22802:1 22803:7 22809:1 22812:1 22815:1 22818:1 22820:1 22822:1 22828:1 22830:2 22831:2 22846:2 22864:1 22865:1 22866:1 22874:3 22876:1 22895:1 22903:1 22905:2 22914:1 22916:2 22924:1 22931:1 22937:1 22942:1 22948:1 22982:1 23000:1 23001:1 23003:1 23011:1 23027:5 23032:1 23039:1 23064:2 23071:1 23075:1 23076:3 23084:1 23089:7 23109:10 23118:1 23125:3 23127:3 23143:1 23151:1 23155:1 23166:1 23167:2 23175:1 23185:1 23188:1 23196:2 23201:1 23226:1 23237:4 23248:1 23256:1 23263:1 23264:1 23284:3 23293:1 23295:1 23298:3 23299:1 23300:1 23305:1 23314:5 23331:1 23333:1 23335:1 23341:1 23344:4 23349:1 23360:3 23363:1 23378:1 23384:3 23385:2 23386:1 23392:1 23393:2 23404:4 23413:2 23416:1 23424:2 23430:23 23431:2 23433:2 23435:1 23456:2 23466:4 23476:2 23491:1 23496:1 23521:1 23524:1 23551:2 23558:1 23586:7 23588:1 23592:1 23603:5 23609:1 23610:5 23616:6 23623:1 23626:7 23646:1 23647:4 23655:4 23659:2 23674:1 23676:1 23685:1 23703:1 23712:1 23713:1 23719:1 23720:2 23722:1 23723:1 23733:1 23736:1 23739:3 23741:3 23744:1 23767:1 23768:1 23775:15 23777:2 23784:1 23797:2 23828:1 23835:6 23836:1 23840:1 23847:1 23853:1 23858:5 23862:1 23865:1 23866:9 23869:1 23871:1 23885:1 23891:1 23893:1 23923:1 23940:2 23949:1 23952:1 23967:1 23971:4 23974:4 23991:1 23993:1 23994:1 24003:1 24004:1 24034:1 24039:3 24054:1 24070:3 24076:1 24081:1 24095:1 24096:2 24100:1 24126:4 24128:1 24129:1 24132:1 24137:2 24143:1 24151:1 24162:2 24164:1 24168:1 24170:5 24179:1 24213:1 24225:1 24239:1 24251:1 24257:1 24265:2 24266:7 24267:1 24271:1 24274:1 24275:1 24276:1 24280:1 24286:1 24287:1 24292:1 24296:1 24307:2 24326:1 24330:2 24332:1 24341:2 24350:1 24370:3 24373:1 24385:1 24394:1 24398:1 24401:6 24407:1 24410:1 24411:5 24412:1 24438:3 24441:1 24463:1 24473:1 24476:5 24477:2 24478:1 24482:1 24483:4 24487:3 24503:7 24525:2 24530:5 24536:2 24538:1 24568:1
14 9:2 30:1 56:1 59:1 71:1 75:1 96:2 112:1 146:1 157:2 162:1 163:1 185:7 186:8 188:1 196:1 197:1 204:1 216:1 219:1 223:2 224:1 230:1 233:1 239:1 242:1 243:1 247:1 253:1 254:8 256:1 260:1 265:1 270:1 282:1 295:1 296:7 308:1 314:1 318:3 320:2 323:1 336:1 346:2 375:1 376:1 379:1 407:3 450:1 457:9 469:1 501:2 510:1 524:1 525:1 527:6 541:1 545:2 547:1 565:3 592:2 599:1 607:1 619:1 636:1 663:1 699:1 704:2 708:3 713:1 714:1 721:1 724:1 731:1 732:2 748:3 749:1 753:1 759:5 762:1 763:1 764:2 766:1 772:1 777:1 785:4 789:2 802:1 811:1 814:5 831:3 834:2 838:1 851:3 864:2 869:2 875:1 880:1 881:1 884:1 888:1 889:1 892:1 895:2 900:2 907:1 909:1 911:1 914:1 922:1 927:1 932:1 933:1 942:1 946:1 949:1 965:1 969:2 980:2 1000:1 1009:2 1011:2 1021:1 1023:2 1044:1 1045:1 1046:3 1048:1 1051:6 1053:1 1055:1 1059:3 1068:1 1077:1 1094:3 1095:1 1098:1 1114:1 1124:1 1125:1 1127:1 1128:1 1141:1 1153:2 1155:1 1160:1 1168:1 1171:4 1172:3 1187:1 1205:1 1217:1 1220:5 1226:1 1229:2 1256:2 1259:6 1264:4 1278:1 1285:1 1292:1 1293:2 1297:1 1299:1 1301:1 1321:1 1332:4 1344:1 1356:2 1360:3 1369:1 1381:5 1398:1 1401:7 1405:1 1413:1 1424:1 1425:2 1448:1 1452:1 1453:1 1470:1 1507:7 1510:1 1517:5 1526:1 1529:1 1535:1 1536:1 1538:2 1545:2 1546:1 1564:5 1585:1 1589:2 1591:4 1603:1 1616:2 1617:3 1621:1 1622:2 1626:1 1627:1 1628:1 1629:1 1640:1 1654:2 1659:1 1673:1 1674:1 1683:1 1701:1 1703:1 1710:1 1715:1 1727:1 1730:1 1731:5 1737:1 1745:1 1754:1 1759:1 1766:10 1781:2 1785:1 1798:1 1809:5 1818:1 1826:4 1834:1 1838:3 1842:1 1846:3 1856:4 1863:1 1874:2 1879:1 1880:1 1882:2 1883:2 1885:2 1888:1 1891:1 1904:2 1908:1 1910:2 1911:1 1912:3 1938:4 1941:1 1942:2 1945:7 1947:3 1953:1 1954:5 1955:2 1957:1 1960:1 1963:3 1965:3 1968:6 1970:2 1973:2 1976:4 1978:1 1991:1 2000:1 2009:1 2015:1 2020:1 2028:1 2040:2 2042:1 2047:1 2049:1 2051:2 2053:1 2061:1 2065:2 2071:1 2076:2 2077:1 2112:1 2128:1 2131:1 2134:2 2149:1 2157:1 2164:1 2172:2 2178:2 2183:2 2193:1 2198:1 2208:1 2226:3 2229:1 2234:2 2254:1 2274:1 2275:2 2277:1 2286:2 2295:1 2298:1 2303:1 2305:1 2321:5 2325:3 2333:1 2349:1 2358:1 2366:3 2372:1 2380:2 2381:1 2383:4 2389:1 2390:6 2394:1 2400:1 2414:1 2419:2 2425:1 2426:1 2448:1 2451:3 2462:39 2464:2 2465:1 2469:1 2470:1 2480:2 2486:1 2504:1 2507:10 2513:2 2519:10 2530:2 2565:5 2576:2 2587:2 2593:1 2597:2 2627:3 2638:1 2691:1 2704:1 2706:1 2709:1 2731:3 2736:9 2742:2 2770:1 2779:2 2780:3 2785:2 2787:1 2798:2 2801:1 2802:10 2821:1 2826:1 2834:2 2837:1 2844:1 2848:3 2849:1 2854:2 2855:2 2886:10 2895:1 2901:1 2919:2 2936:1 2954:2 2979:1 2980:1 2994:1 3002:1 3003:1 3020:4 3027:1 3041:1 3042:1 3049:4 3050:1 3060:1 3061:1 3064:1 3072:1 3077:6 3090:1 3098:1 3099:2 3113:1 3116:1 3131:1 3132:1 3133:1 3147:2 3149:1 3153:1 3173:1 3179:1 3183:1 3184:13 3204:1 3206:2 3213:2 3221:4 3223:1 3225:1 3231:1 3234:5 3245:1 3248:1 3266:1 3285:1 3287:2 3292:1 3295:1 3297:5 3304:1 3312:1 3315:1 3324:1 3326:2 3328:1 3332:1 3342:1 3351:1 3353:1 3369:3 3372:1 3375:1 3379:1 3404:1 3407:2 3408:2 3414:1 3416:1 3418:1 3462:1 3494:1 3499:1 3518:2 3519:1 3520:1 3522:1 3524:1 3525:1 3545:1 3546:2 3547:1 3562:1 3563:1 3572:1 3581:2 3588:2 3598:1 3606:1 3612:1 3615:1 3618:2 3631:1 3641:15 3649:1 3660:1 3677:1 3678:3 3679:1 3687:1 3707:1 3712:2 3735:1 3738:1 3744:1 3766:1 3774:1 3776:1 3783:1 3786:1 3804:1 3831:1 3837:4 3841:1 3854:1 3878:1 3886:3 3889:1 3907:2 3908:2 3909:2 3918:2 3938:6 3963:1 3964:1 3966:1 3967:1 3976:1 3984:2 3995:7 3998:7 4005:2 4012:1 4026:1 4046:1 4051:1 4060:1 4061:1 4062:2 4083:1 4091:2 4093:1 4102:1 4107:19 4108:3 4109:1 4120:1 4128:1 4136:3 4145:1 4154:1 4163:1 4183:1 4186:1 4190:2 4195:1 4198:11 4211:3 4212:6 4213:3 4216:1 4218:2 4221:1 4223:1 4224:1 4225:1 4229:1 4234:1 4236:4 4237:2 4238:4 4244:3 4268:1 4305:1 4325:1 4332:2 4333:1 4340:1 4353:1 4354:1 4368:1 4371:2 4374:1 4375:6 4376:1 4382:1 4399:1 4400:1 4409:1 4413:2 4423:1 4434:1 4447:2 4460:1 4464:1 4469:1 4471:2 4497:1 4498:3 4505:1 4512:1 4518:5 4519:3 4534:2 4539:1 4541:1 4542:1 4551:1 4566:1 4569:1 4572:2 4581:1 4586:1 4587:1 4592:1 4599:4 4608:1 4609:2 4611:1 4621:1 4622:1 4636:1 4655:1 4667:1 4668:1 4673:1 4683:2 4684:2 4710:3 4722:1 4724:1 4734:1 4744:1 4759:1 4773:1 4784:1 4792:1 4796:3 4814:1 4820:1 4821:2 4825:1 4832:2 4853:1 4876:2 4889:2 4892:1 4894:2 4901:2 4909:1 4931:1 4963:1 4986:1 4993:1 5000:1 5003:2 5016:2 5024:1 5044:1 5047:1 5049:3 5071:3 5077:1 5088:2 5093:1 5095:1 5100:2 5127:1 5187:1 5192:1 5201:2 5203:1 5224:1 5232:1 5247:1 5248:1 5253:1 5254:1 5258:1 5283:1 5308:5 5310:1 5313:1 5322:9 5325:5 5326:1 5332:5 5333:2 5337:3 5338:1 5339:2 5340:1 5342:1 5344:1 5347:6 5349:13 5350:1 5352:5 5354:4 5451:10 5484:1 5488:1 5492:1 5500:1 5520:2 5529:1 5530:1 5531:1 5533:2 5534:1 5535:1 5585:1 5595:1 5599:4 5604:1 5610:2 5627:1 5640:1 5670:1 5674:1 5681:2 5683:1 5686:4 5688:3 5702:10 5711:1 5712:1 5719:2 5721:1 5726:1 5730:1 5746:3 5752:1 5783:1 5788:2 5807:2 5813:2 5815:1 5828:1 5849:1 5860:1 5865:3 5874:3 5878:3 5889:1 5900:1 5931:2 5939:1 5947:6 5948:2 5952:1 5968:2 5998:1 6005:2 6034:1 6042:1 6045:1 6046:1 6047:2 6049:1 6050:1 6056:1 6062:1 6071:1 6079:1 6087:1 6112:2 6116:1 6126:1 6128:1 6131:1 6139:2 6145:1 6151:1 6175:2 6183:10 6187:1 6194:1 6207:1 6235:1 6237:2 6289:1 6293:1 6311:4 6355:3 6364:2 6365:8 6373:1 6378:1 6381:1 6382:1 6386:2 6405:1 6407:1 6409:1 6410:1 6412:1 6416:2 6417:1 6422:1 6429:48 6433:1 6434:1 6440:1 6448:1 6449:3 6451:7 6459:4 6468:1 6475:1 6486:1 6491:1 6492:1 6493:1 6525:1 6526:4 6532:2 6542:1 6554:1 6560:1 6578:1 6589:1 6597:1 6616:1 6619:2 6643:1 6661:3 6667:1 6669:1 6675:1 6678:1 6685:1 6687:1 6707:2 6711:1 6715:1 6716:2 6723:5 6756:1 6769:1 6781:1 6789:1 6791:1 6794:2 6796:2 6802:1 6804:1 6810:5 6824:4 6834:1 6839:2 6843:1 6846:1 6847:1 6854:4 6859:16 6908:4 6911:1 6920:1 6937:1 6981:4 6991:1 7016:1 7021:1 7022:1 7027:2 7033:1 7038:1 7045:1 7047:1 7054:5 7059:2 7068:10 7096:2 7097:1 7104:1 7108:1 7116:1 7122:1 7137:1 7157:3 7160:1 7163:1 7165:1 7166:1 7169:3 7170:2 7177:1 7178:2 7179:1 7181:2 7182:1 7190:1 7194:1 7199:1 7202:1 7215:1 7216:2 7221:1 7235:1 7245:1 7246:2 7251:1 7268:1 7273:1 7285:12 7303:1 7322:1 7360:1 7361:5 7363:1 7374:1 7377:1 7379:1 7382:1 7391:2 7400:10 7402:1 7409:2 7414:1 7418:2 7419:1 7427:2 7430:1 7432:1 7435:1 7438:2 7443:1 7444:1 7445:1 7450:5 7451:1 7456:3 7457:5 7459:2 7460:1 7461:6 7462:1 7464:2 7465:2 7471:1 7487:1 7499:1 7510:1 7527:1 7552:1 7553:1 7554:2 7564:2 7571:4 7572:1 7576:1 7581:8 7588:1 7589:1 7605:1 7614:3 7615:1 7622:1 7626:1 7638:1 7648:3 7656:1 7658:3 7670:1 7671:1 7682:2 7701:1 7702:1 7709:1 7712:5 7741:1 7742:1 7743:1 7753:3 7754:1 7761:1 7768:1 7773:12 7778:1 7782:1 7787:4 7799:1 7803:1 7804:1 7810:2 7820:3 7841:1 7860:2 7868:2 7872:1 7880:1 7887:2 7905:1 7908:1 7912:1 7929:3 7930:1 7950:3 7964:2 7972:1 7979:1 7982:1 7988:5 7999:1 8002:1 8005:1 8030:1 8049:1 8065:11 8070:8 8079:1 8081:11 8082:6 8099:4 8107:1 8110:1 8158:1 8162:4 8171:3 8174:1 8175:3 8176:10 8189:2 8195:1 8206:5 8207:1 8216:1 8229:2 8230:1 8234:15 8249:2 8256:1 8272:1 8279:1 8282:1 8284:1 8285:7 8296:1 8304:2 8311:2 8317:1 8318:1 8320:1 8328:6 8332:1 8343:1 8348:1 8350:1 8352:7 8355:1 8357:2 8359:2 8361:1 8376:1 8383:1 8387:4 8404:1 8428:1 8433:3 8443:2 8469:9 8471:1 8472:1 8508:1 8553:2 8567:2 8568:2 8574:1 8582:1 8583:1 8593:2 8597:3 8598:7 8603:1 8605:1 8614:1 8617:1 8623:1 8630:1 8632:1 8635:1 8637:1 8656:3 8657:1 8670:1 8672:1 8681:2 8690:2 8692:1 8702:2 8709:1 8711:1 8714:3 8719:1 8726:1 8727:3 8731:1 8736:3 8753:3 8759:9 8761:1 8771:1 8778:1 8782:2 8783:1 8785:1 8795:2 8800:2 8802:9 8809:5 8812:1 8814:6 8830:1 8831:2 8832:4 8833:5 8836:1 8849:1 8878:2 8891:7 8900:3 8901:1 8910:3 8911:1 8914:1 8916:6 8944:1 8968:1 8974:1 8979:1 8983:2 8993:1 8996:1 8998:2 8999:1 9000:1 9002:4 9022:1 9027:1 9038:1 9058:4 9060:1 9062:2 9063:1 9067:1 9084:1 9097:1 9101:7 9102:9 9120:4 9127:2 9132:1 9138:1 9140:1 9142:2 9149:1 9156:1 9166:1 9173:1 9181:1 9185:3 9222:2 9227:1 9239:1 9240:2 9243:1 9252:8 9263:1 9313:2 9318:1 9336:1 9346:1 9363:1 9377:2 9392:1 9400:1 9403:4 9419:1 9426:1 9440:2 9441:1 9455:7 9462:2 9466:1 9488:7 9495:1 9497:1 9532:12 9536:2 9550:3 9562:2 9563:3 9565:1 9575:2 9596:1 9599:1 9607:1 9619:1 9622:2 9624:1 9645:1 9653:1 9656:1 9682:6 9683:1 9688:2 9690:1 9691:1 9697:1 9698:1 9700:1 9710:2 9716:2 9723:3 9729:2 9738:2 9743:1 9756:1 9772:2 9810:2 9818:1 9823:5 9824:1 9850:1 9859:2 9867:1 9877:1 9878:1 9881:1 9884:1 9890:1 9891:1 9918:3 9922:1 9924:5 9941:1 9944:1 9949:1 9958:1 9963:1 9974:1 9999:1 10021:1 10022:3 10037:1 10040:2 10042:2 10045:1 10046:1 10052:2 10053:2 10054:2 10070:1 10073:1 10074:3 10090:5 10117:1 10126:1 10169:4 10172:1 10176:1 10204:1 10211:1 10218:6 10220:1 10232:1 10254:1 10278:3 10311:1 10316:1 10318:2 10319:1 10324:1 10329:1 10353:1 10355:1 10360:1 10369:1 10370:1 10384:7 10406:1 10457:1 10465:1 10480:32 10502:1 10503:5 10524:1 10530:1 10531:3 10537:1 10539:1 10540:1 10551:1 10554:1 10576:1 10597:1 10598:5 10600:1 10617:1 10648:2 10651:6 10654:1 10659:1 10667:1 10707:1 10713:1 10719:1 10722:1 10725:3 10757:1 10758:1 10772:1 10792:1 10809:1 10818:1 10823:2 10837:1 10843:1 10847:11 10851:4 10862:1 10871:4 10872:1 10879:1 10887:1 10892:1 10897:1 10898:2 10912:2 10951:2 10952:1 10953:1 10961:4 10962:2 10970:2 10974:5 10979:2 10981:1 10985:3 10987:1 10993:2 11013:1 11016:1 11036:1 11046:5 11047:7 11050:1 11056:2 11062:1 11087:1 11103:4 11118:2 11126:1 11155:1 11159:2 11163:3 11168:3 11173:2 11186:2 11187:4 11188:1 11201:1 11211:3 11215:6 11223:3 11235:2 11266:1 11273:4 11280:2 11283:1 11284:1 11286:1 11297:1 11301:1 11325:3 11329:1 11337:5 11341:1 11344:1 11345:1 11346:1 11348:1 11349:2 11352:1 11353:1 11368:4 11375:4 11394:1 11400:2 11405:2 11408:1 11415:1 11430:7 11447:4 11449:1 11451:2 11459:2 11463:2 11479:1 11486:1 11507:1 11509:2 11526:2 11584:2 11600:1 11607:1 11632:1 11638:4 11640:1 11643:1 11653:1 11655:1 11705:1 11708:2 11712:3 11727:1 11739:2 11742:1 11747:1 11790:1 11792:1 11800:1 11801:3 11807:1 11812:2 11813:1 11818:1 11823:1 11830:1 11832:1 11833:1 11834:1 11843:1 11853:1 11856:1 11857:2 11864:3 11874:1 11876:1 11883:1 11900:1 11906:2 11932:1 11937:1 11960:1 11966:1 11974:2 11976:1 11979:1 11985:1 11990:1 11992:1 11994:1 11998:2 12033:1 12038:1 12050:5 12065:1 12076:1 12078:1 12084:1 12095:1 12099:4 12114:1 12115:1 12126:1 12131:1 12144:3 12145:1 12146:2 12178:1 12181:1 12182:2 12184:1 12197:1 12218:1 12229:1 12245:1 12276:2 12287:1 12289:1 12323:1 12328:1 12337:1 12338:1 12346:7 12364:2 12365:2 12366:1 12372:1 12375:1 12381:5 12387:2 12396:1 12416:1 12425:1 12427:1 12432:1 12440:1 12444:1 12452:1 12456:1 12486:2 12488:2 12490:1 12491:1 12512:1 12542:1 12555:1 12556:4 12573:1 12575:3 12582:1 12583:1 12585:1 12586:1 12594:1 12614:7 12623:1 12635:2 12641:1 12652:2 12661:1 12662:3 12672:1 12683:1 12685:1 12698:2 12723:4 12739:2 12740:2 12741:5 12748:2 12754:1 12774:1 12797:3 12798:3 12800:5 12801:1 12822:1 12837:1 12839:1 12842:1 12843:1 12846:2 12881:2 12930:1 12942:2 12943:1 12944:1 12945:2 12946:1 12950:5 12954:2 12961:2 12971:1 12985:2 12988:5 12989:1 13014:2 13025:1 13032:1 13033:2 13058:2 13062:1 13072:1 13094:1 13104:3 13125:1 13128:1 13140:2 13142:2 13153:10 13156:1 13181:1 13187:1 13205:1 13207:5 13212:1 13225:4 13229:1 13238:1 13259:1 13288:1 13295:2 13304:1 13311:2 13324:1 13328:13 13333:3 13334:1 13336:1 13342:1 13345:1 13362:1 13390:4 13406:1 13410:1 13417:1 13428:2 13431:1 13434:1 13435:1 13437:1 13445:3 13446:1 13449:2 13452:2 13453:2 13454:1 13459:1 13462:1 13470:1 13471:1 13482:1 13489:3 13502:1 13505:2 13525:2 13535:1 13542:1 13561:1 13590:1 13593:2 13615:1 13620:1 13637:4 13647:3 13662:3 13664:2 13668:1 13671:1 13680:5 13682:2 13688:1 13703:1 13707:1 13708:1 13718:1 13719:4 13729:1 13732:1 13733:2 13740:1 13760:1 13765:3 13766:1 13778:1 13780:1 13803:7 13807:3 13819:12 13823:2 13835:6 13857:1 13858:1 13865:2 13871:2 13876:1 13888:3 13895:2 13907:1 13908:2 13926:1 13928:5 13929:1 13931:1 13936:1 13947:1 13953:1 13970:3 13979:4 13986:1 13989:4 13994:2 13995:1 13996:2 14000:1 14007:1 14024:3 14026:2 14030:1 14031:1 14035:2 14041:1 14050:3 14051:7 14055:1 14071:2 14072:1 14073:1 14077:2 14088:1 14097:4 14119:3 14127:2 14130:1 14137:1 14178:8 14181:1 14204:2 14207:1 14218:1 14227:1 14229:3 14231:2 14252:2 14262:1 14265:1 14279:1 14286:1 14300:2 14305:1 14317:1 14329:1 14332:2 14334:1 14341:1 14365:3 14366:10 14371:5 14380:1 14382:10 14383:2 14385:1 14386:1 14387:2 14391:2 14395:1 14403:1 14404:1 14417:1 14422:2 14434:1 14443:2 14465:2 14476:9 14477:3 14496:11 14513:1 14516:8 14522:1 14541:1 14544:1 14549:1 14553:1 14556:1 14564:1 14576:2 14577:2 14582:1 14583:1 14596:1 14610:1 14622:1 14630:4 14635:2 14648:1 14649:1 14650:2 14654:1 14657:1 14665:2 14672:3 14674:1 14677:8 14678:4 14691:2 14696:1 14711:1 14717:1 14719:5 14727:1 14734:1 14740:4 14744:1 14747:8 14751:1 14762:4 14763:1 14764:1 14765:3 14768:1 14774:1 14776:1 14785:5 14802:1 14804:1 14807:1 14810:1 14824:1 14837:5 14844:1 14849:2 14851:1 14853:1 14864:5 14871:1 14877:1 14882:2 14885:5 14919:1 14934:2 14938:2 14946:3 14956:2 14962:1 14976:1 14981:2 14982:1 14987:1 14991:1 15002:1 15011:1 15015:1 15030:2 15035:2 15040:2 15067:1 15073:1 15080:2 15087:1 15089:1 15090:2 15097:1 15098:1 15100:1 15105:2 15111:1 15123:3 15133:1 15134:11 15135:1 15137:7 15142:1 15144:1 15160:2 15166:1 15169:1 15171:3 15183:1 15184:5 15196:1 15197:1 15201:2 15205:12 15233:2 15240:1 15251:2 15269:5 15282:5 15283:1 15287:1 15303:1 15307:39 15312:4 15322:1 15326:1 15344:1 15354:2 15360:1 15371:2 15374:1 15396:6 15405:5 15423:1 15424:1 15436:1 15444:1 15445:2 15452:1 15453:1 15460:3 15480:2071 15483:2 15492:2 15496:1 15508:1 15518:1 15524:1 15554:1 15556:2 15560:1 15568:1 15570:1 15574:1 15591:1 15595:1 15599:2 15610:3 15617:2 15623:1 15625:1 15638:3 15639:3 15642:2 15645:1 15646:1 15647:1 15649:4 15652:1 15655:5 15658:1 15661:1 15662:7 15678:2 15684:1 15723:1 15738:1 15742:2 15743:1 15763:3 15773:1 15776:9 15790:1 15814:1 15816:2 15847:1 15853:1 15869:1 15871:2 15875:1 15884:1 15896:1 15927:1 15929:4 15935:2 15938:1 15943:1 15949:5 15955:1 15957:1 15960:1 15966:1 15984:1 15994:1 15997:4 16008:1 16019:1 16036:1 16042:7 16043:2 16051:1 16052:1 16054:5 16056:1 16059:1 16074:1 16077:1 16078:1 16079:1 16094:1 16102:1 16103:1 16111:1 16112:1 16115:4 16118:1 16121:10 16147:1 16151:2 16152:4 16154:7 16161:1 16171:1 16179:1 16187:1 16206:2 16228:1 16254:1 16262:3 16267:1 16268:2 16270:1 16271:1 16273:2 16274:1 16277:1 16283:2 16287:1 16300:1 16302:1 16306:2 16308:1 16309:1 16310:1 16313:1 16318:1 16341:1 16370:3 16376:1 16387:6 16402:1 16409:4 16412:2 16426:1 16428:1 16438:1 16458:1 16474:1 16479:1 16484:6 16485:4 16488:1 16490:1 16495:3 16500:2 16503:2 16506:1 16509:2 16534:1 16547:1 16548:1 16577:2 16593:2 16603:1 16605:1 16611:1 16620:1 16623:1 16625:1 16630:3 16643:1 16652:2 16654:3 16659:1 16665:1 16670:1 16679:1 16681:5 16682:1 16693:1 16718:2 16726:5 16727:1 16729:1 16732:1 16733:1 16735:1 16743:1 16744:2 16753:6 16754:1 16761:1 16763:1 16777:1 16778:2 16780:1 16787:2 16792:1 16809:1 16815:6 16817:1 16853:1 16855:2 16861:4 16862:2 16867:4 16871:1 16875:1 16882:1 16895:1 16897:2 16919:1 16921:9 16946:1 16964:1 16970:1 16971:1 16975:1 17001:3 17011:1 17013:1 17030:2 17037:1 17043:1 17048:1 17057:2 17058:1 17066:2 17085:2 17090:1 17107:1 17113:2 17123:1 17131:1 17136:5 17137:4 17166:1 17175:1 17176:1 17181:1 17185:1 17187:1 17188:1 17221:1 17237:6 17246:2 17248:1 17269:1 17275:5 17276:5 17286:1 17288:1 17296:1 17298:1 17303:1 17311:3 17316:2 17320:1 17331:2 17346:2 17347:1 17348:1 17357:1 17362:6 17363:1 17366:2 17367:1 17387:8 17403:1 17404:1 17424:2 17440:1 17470:1 17485:4 17491:3 17492:1 17499:1 17515:1 17520:1 17553:2 17563:1 17569:1 17575:1 17580:1 17602:1 17605:1 17608:1 17616:2 17622:1 17623:4 17626:1 17631:2 17641:1 17649:1 17658:1 17660:1 17678:7 17706:2 17712:1 17724:2 17725:2 17730:1 17735:3 17742:2 17743:1 17768:1 17772:2 17774:2 17775:1 17792:1 17808:1 17822:1 17826:1 17827:1 17834:2 17838:1 17839:1 17853:2 17855:4 17857:1 17862:1 17865:1 17886:1 17890:1 17900:1 17906:1 17908:1 17910:1 17915:2 17916:12 17919:1 17921:3 17922:1 17924:2 17925:1 17927:3 17943:3 17955:4 17958:4 17962:2 17969:1 17975:1 17978:1 17979:1 17980:1 17983:2 17995:5 18009:4 18016:1 18025:2 18028:1 18035:1 18037:1 18038:2 18041:2 18042:1 18043:8 18053:4 18058:1 18064:1 18068:3 18069:1 18073:1 18079:1 18092:1 18093:7 18116:1 18130:2 18146:1 18165:1 18166:3 18168:4 18174:2 18177:1 18181:1 18189:1 18193:1 18197:2 18208:4 18210:2 18215:1 18248:1 18249:1 18266:1 18313:2 18339:1 18356:1 18358:1 18360:1 18366:2 18367:1 18369:3 18370:2 18375:4 18378:2 18379:1 18406:3 18409:1 18410:3 18414:1 18423:1 18436:1 18447:1 18454:1 18468:1 18469:2 18474:2 18478:1 18479:1 18485:2 18491:1 18498:2 18504:1 18509:1 18511:3 18513:1 18523:1 18539:1 18555:1 18567:1 18568:1 18570:1 18572:1 18578:1 18580:1 18587:1 18602:1 18616:3 18617:1 18623:1 18629:1 18631:1 18645:1 18654:2 18664:1 18665:1 18674:2 18700:1 18702:4 18704:1 18727:4 18732:8 18736:1 18742:2 18747:1 18748:1 18754:1 18755:1 18768:1 18784:1 18792:3 18800:2 18816:1 18821:1 18849:1 18856:7 18857:1 18862:7 18867:1 18880:1 18881:3 18882:1 18884:1 18886:1 18901:2 18905:1 18916:1 18929:1 18930:2 18931:2 18934:1 18938:2 18941:6 18949:1 18980:1 19011:1 19024:1 19033:4 19043:1 19048:1 19056:2 19059:1 19060:2 19076:1 19080:1 19085:2 19098:3 19108:5 19126:2 19134:3 19136:2 19139:1 19145:1 19146:1 19148:1 19150:1 19153:2 19172:1 19183:1 19193:2 19205:3 19207:3 19210:7 19226:3 19230:1 19249:1 19250:1 19258:1 19267:1 19275:2 19292:6 19293:1 19294:1 19302:3 19303:1 19322:1 19328:2 19331:1 19335:1 19337:5 19339:2 19354:1 19359:1 19365:1 19368:1 19373:2 19374:1 19386:1 19391:1 19392:2 19395:2 19402:1 19412:1 19422:1 19425:1 19438:3 19440:1 19443:5 19446:1 19453:1 19469:1 19471:3 19475:1 19486:2 19487:7 19490:1 19507:1 19517:1 19522:1 19532:1 19544:4 19559:4 19561:1 19562:1 19564:1 19586:1 19587:1 19603:1 19610:1 19612:1 19613:1 19637:1 19638:1 19644:1 19645:1 19678:1 19683:1 19702:1 19706:1 19710:1 19714:1 19716:1 19730:2 19745:1 19753:1 19757:1 19762:6 19767:1 19773:1 19792:1 19804:1 19805:2 19810:5 19813:2 19837:1 19844:1 19847:1 19849:1 19886:1 19897:3 19901:1 19902:2 19909:1 19912:1 19924:1 19928:3 19962:1 19966:2 19972:1 19992:1 20000:1 20004:1 20015:2 20034:1 20040:5 20072:1 20080:3 20083:1 20084:5 20096:2 20098:1 20103:1 20108:1 20109:5 20111:1 20118:1 20128:1 20137:1 20138:1 20165:1 20180:1 20208:1 20223:1 20224:1 20226:1 20227:1 20235:1 20239:1 20247:2 20251:1 20252:1 20253:1 20258:2 20261:1 20266:1 20267:1 20270:4 20275:1 20278:1 20293:1 20304:1 20316:1 20317:3 20318:8 20319:1 20320:1 20326:2 20327:4 20331:3 20332:3 20333:1 20334:4 20336:1 20337:5 20338:1 20341:1 20343:7 20344:7 20350:1 20353:1 20356:1 20371:1 20373:1 20378:5 20380:1 20383:3 20398:7 20399:3 20406:1 20411:1 20413:1 20424:1 20435:1 20436:1 20440:1 20441:2 20442:10 20447:7 20448:2 20464:1 20469:3 20470:1 20496:3 20502:3 20505:1 20512:3 20529:2 20552:1 20560:1 20576:4 20595:4 20611:1 20614:1 20619:1 20621:1 20627:1 20629:2 20631:7 20653:1 20659:1 20668:5 20686:1 20694:1 20696:1 20717:1 20718:2 20727:1 20733:1 20738:3 20740:1 20742:8 20761:7 20762:1 20769:1 20785:13 20787:1 20818:1 20829:7 20831:1 20853:1 20871:1 20872:2 20874:1 20887:2 20890:1 20930:1 20936:1 20949:11 20962:5 20973:2 20995:1 21011:1 21012:1 21021:2 21056:1 21062:2 21065:2 21077:1 21089:1 21099:1 21100:2 21107:2 21108:6 21111:1 21112:1 21113:1 21123:2 21133:1 21134:2 21138:1 21139:1 21146:1 21150:6 21173:1 21198:7 21199:5 21208:2 21209:4 21218:2 21219:1 21224:1 21225:2 21227:2 21228:1 21245:1 21249:1 21258:1 21293:2 21306:1 21327:1 21337:4 21350:1 21353:1 21359:1 21361:4 21380:1 21400:1 21402:1 21434:1 21473:1 21480:1 21485:2 21486:1 21490:1 21508:1 21520:1 21529:3 21539:4 21543:1 21546:1 21556:1 21557:5 21561:2 21567:1 21571:1 21582:3 21584:1 21586:1 21588:1 21595:1 21602:2 21610:7 21613:1 21622:1 21627:1 21630:1 21633:1 21642:4 21644:1 21645:1 21650:1 21663:2 21675:1 21684:2 21697:1 21703:1 21718:1 21723:1 21741:1 21760:39 21773:7 21774:1 21782:4 21783:1 21784:1 21787:2 21791:1 21794:1 21812:1 21830:1 21831:2 21838:1 21844:1 21846:1 21856:1 21868:1 21878:2 21887:2 21904:1 21914:2 21916:6 21922:1 21926:1 21927:1 21943:1 21944:1 21948:1 21982:1 21995:3 21996:1 21997:1 21998:1 22007:1 22010:1 22016:1 22024:1 22027:4 22035:1 22037:1 22041:1 22048:3 22078:1 22080:1 22094:1 22109:1 22119:2 22123:1 22132:1 22142:1 22163:10 22179:1 22192:1 22208:1 22215:1 22218:1 22223:2 22229:2 22233:1 22243:1 22245:7 22247:1 22251:1 22256:1 22263:1 22279:2 22281:1 22315:1 22320:1 22325:1 22328:1 22331:16 22340:1 22360:1 22368:1 22376:3 22378:1 22383:1 22410:2 22415:1 22417:1 22431:1 22434:2 22455:1 22460:1 22465:1 22466:3 22472:1 22478:1 22481:1 22491:1 22493:1 22504:1 22513:1 22517:2 22520:6 22534:2 22548:3 22551:4 22552:1 22561:1 22585:1 22587:1 22598:1 22601:1 22602:1 22611:5 22617:1 22623:1 22627:1 22644:1 22646:2 22647:1 22655:1 22658:1 22662:1 22669:4 22690:5 22699:7 22707:2 22709:1 22715:1 22730:1 22734:2 22736:1 22749:3 22755:7 22756:1 22759:4 22760:2 22761:1 22786:5 22787:1 22795:2 22799:1 22802:1 22803:7 22809:1 22812:1 22815:1 22818:1 22820:1 22822:1 22828:1 22830:2 22831:2 22846:2 22864:1 22865:1 22866:1 22874:3 22876:1 22895:1 22903:1 22905:2 22914:1 22916:2 22924:1 22931:1 22937:1 22942:1 22948:1 22982:1 23000:2 23001:1 23003:1 23011:1 23027:5 23032:1 23039:1 23064:2 23071:1 23075:1 23076:3 23084:1 23089:8 23109:11 23118:1 23125:3 23127:3 23143:1 23151:1 23155:1 23166:1 23167:2 23175:1 23185:1 23188:1 23196:2 23201:1 23226:1 23237:4 23248:1 23256:1 23263:1 23264:1 23284:3 23293:1 23295:1 23298:3 23299:1 23300:1 23305:1 23307:1 23314:5 23331:1 23333:1 23335:1 23341:1 23344:4 23349:1 23360:3 23363:1 23378:1 23384:3 23385:2 23386:1 23392:1 23393:2 23404:4 23413:2 23416:1 23424:2 23430:23 23431:2 23433:2 23435:1 23456:2 23466:4 23476:2 23491:1 23496:1 23507:1 23521:1 23524:1 23551:2 23558:1 23586:8 23588:1 23592:1 23603:5 23609:1 23610:6 23616:6 23620:1 23623:2 23626:7 23646:1 23647:5 23655:4 23659:2 23674:1 23676:1 23685:1 23703:1 23712:1 23713:1 23719:1 23720:2 23722:1 23723:1 23733:1 23736:1 23739:3 23741:3 23744:1 23767:1 23768:1 23775:15 23777:2 23784:1 23797:2 23828:1 23835:7 23836:1 23840:1 23847:1 23853:1 23858:5 23862:1 23865:1 23866:9 23869:1 23871:1 23885:2 23891:1 23893:1 23923:1 23940:2 23949:1 23950:1 23952:1 23967:1 23971:4 23974:4 23991:1 23993:1 23994:1 24003:1 24004:1 24034:1 24039:3 24054:1 24070:3 24076:1 24081:1 24095:1 24096:2 24100:1 24126:4 24128:1 24129:1 24132:1 24137:2 24143:1 24151:1 24162:2 24164:1 24168:1 24170:6 24179:1 24213:1 24225:1 24239:1 24251:1 24257:1 24265:2 24266:7 24267:1 24271:1 24274:1 24275:1 24276:1 24280:1 24286:1 24287:1 24292:1 24296:1 24307:2 24326:1 24330:2 24332:1 24341:2 24350:1 24370:3 24373:1 24385:1 24394:1 24398:1 24401:6 24407:1 24410:1 24411:5 24412:1 24438:3 24441:1 24463:1 24473:1 24476:5 24477:2 24478:1 24482:1 24483:5 24487:3 24503:7 24525:2 24530:5 24536:2 24538:1 24568:1
14 9:2 30:1 34:1 56:1 59:1 71:1 75:1 96:2 112:1 146:1 157:2 162:1 163:1 185:7 186:8 188:1 196:1 197:1 204:1 216:1 219:1 223:2 224:1 230:1 233:1 239:1 242:1 243:1 247:1 253:1 254:9 256:1 260:1 265:1 270:1 282:1 295:1 296:7 308:1 314:1 318:3 320:2 323:1 336:1 346:2 375:1 376:2 379:1 407:3 450:1 457:9 469:1 501:2 510:1 524:1 525:1 527:6 541:1 545:2 547:1 565:3 592:2 599:1 607:1 619:1 636:1 663:1 699:1 704:2 708:4 713:1 714:1 721:1 724:1 731:1 732:2 748:3 749:1 753:1 759:6 762:1 763:1 764:2 766:1 772:1 777:1 779:1 785:4 789:2 802:1 811:1 814:5 831:3 834:2 838:1 851:3 864:2 869:2 875:1 880:1 881:1 884:2 888:1 889:2 892:1 895:2 900:2 907:1 909:1 911:1 914:1 922:1 927:1 932:1 933:1 942:1 946:1 949:1 965:1 969:2 980:2 1000:1 1009:2 1011:2 1021:1 1023:2 1044:1 1045:1 1046:3 1048:1 1051:7 1053:1 1055:1 1059:4 1068:1 1077:1 1094:3 1095:1 1098:1 1114:1 1124:1 1125:1 1127:1 1128:1 1141:1 1153:2 1155:1 1160:1 1168:1 1171:5 1172:3 1187:1 1205:1 1217:1 1220:5 1226:1 1229:2 1256:2 1259:6 1264:4 1278:1 1285:1 1292:1 1293:2 1297:1 1299:1 1301:1 1321:1 1332:4 1344:1 1356:2 1360:3 1369:1 1381:5 1398:1 1401:7 1405:1 1413:1 1424:1 1425:2 1448:1 1452:1 1453:1 1470:1 1507:7 1510:1 1517:5 1526:1 1529:1 1535:1 1536:1 1538:2 1545:2 1546:1 1564:5 1585:1 1589:2 1591:4 1603:1 1616:2 1617:3 1621:1 1622:2 1626:1 1627:1 1628:1 1629:1 1640:1 1654:2 1659:1 1673:1 1674:1 1683:1 1701:1 1703:1 1710:1 1715:1 1727:1 1730:1 1731:5 1737:1 1745:1 1754:1 1759:1 1766:11 1781:2 1785:1 1798:1 1809:5 1818:1 1826:4 1834:1 1838:3 1842:1 1846:3 1856:6 1863:1 1874:2 1879:1 1880:1 1882:2 1883:2 1885:2 1888:1 1891:1 1904:2 1908:1 1910:2 1911:1 1912:3 1938:4 1941:1 1942:2 1945:7 1947:3 1953:1 1954:5 1955:2 1957:1 1960:1 1963:3 1965:3 1968:6 1970:2 1973:2 1976:4 1978:1 1991:1 2000:1 2009:1 2015:1 2020:1 2028:1 2040:2 2042:1 2047:1 2049:1 2051:2 2053:1 2061:1 2065:2 2071:1 2076:2 2077:1 2112:1 2128:1 2131:1 2134:2 2149:1 2157:1 2164:1 2172:2 2178:2 2183:2 2193:1 2198:1 2208:1 2226:4 2229:1 2234:2 2254:1 2274:1 2275:2 2277:1 2286:2 2295:1 2298:1 2303:1 2305:1 2321:5 2325:3 2333:1 2349:1 2358:1 2366:3 2372:1 2380:2 2381:1 2383:4 2389:1 2390:7 2394:1 2400:1 2414:1 2419:2 2425:1 2426:1 2433:1 2448:1 2451:3 2462:41 2464:2 2465:1 2469:1 2470:1 2480:2 2486:1 2504:1 2507:10 2513:2 2519:11 2530:2 2565:5 2576:2 2587:2 2593:1 2597:2 2627:4 2638:1 2691:1 2704:1 2706:1 2709:1 2731:3 2736:9 2742:2 2754:1 2770:1 2779:3 2780:3 2785:2 2787:1 2798:2 2801:1 2802:10 2821:1 2826:1 2834:2 2837:1 2844:1 2848:3 2849:1 2854:2 2855:2 2886:10 2895:1 2901:1 2919:3 2936:1 2954:2 2979:1 2980:1 2994:1 3002:1 3003:1 3020:4 3027:1 3041:1 3042:1 3049:4 3050:1 3060:1 3061:1 3064:1 3072:1 3077:6 3090:1 3098:1 3099:2 3113:1 3116:1 3131:1 3132:1 3133:1 3147:2 3149:1 3153:1 3173:1 3179:1 3183:1 3184:13 3204:1 3206:2 3213:2 3221:4 3223:1 3225:1 3231:1 3234:6 3245:1 3248:1 3266:1 3285:1 3287:2 3292:1 3295:1 3297:5 3304:1 3312:1 3315:1 3322:1 3324:1 3326:2 3328:1 3332:1 3342:1 3351:1 3353:1 3369:3 3372:1 3375:1 3379:1 3404:1 3407:2 3408:2 3414:1 3416:2 3418:1 3462:1 3494:1 3499:1 3518:2 3519:1 3520:1 3522:1 3524:1 3525:1 3545:1 3546:2 3547:1 3562:1 3563:1 3572:1 3581:2 3588:2 3598:1 3606:1 3612:1 3615:1 3618:2 3631:1 3641:16 3649:1 3660:1 3667:1 3677:1 3678:3 3679:1 3687:1 3707:1 3712:2 3735:1 3738:1 3744:1 3766:1 3774:1 3776:1 3783:1 3786:1 3804:1 3831:1 3837:4 3841:1 3854:1 3878:1 3886:3 3889:1 3907:3 3908:2 3909:2 3915:1 3918:2 3938:6 3963:3 3964:1 3966:1 3967:1 3976:1 3979:1 3984:2 3995:7 3998:7 4005:2 4012:1 4026:1 4046:1 4051:1 4060:1 4061:1 4062:2 4083:1 4091:2 4093:1 4102:1 4107:20 4108:4 4109:1 4120:2 4128:1 4136:3 4145:1 4154:1 4163:1 4183:1 4186:1 4190:2 4195:1 4198:13 4211:3 4212:6 4213:3 4216:1 4218:2 4221:1 4223:1 4224:1 4225:1 4229:1 4234:1 4236:4 4237:2 4238:4 4244:3 4268:1 4305:1 4325:1 4332:2 4333:1 4340:1 4353:1 4354:1 4368:1 4371:2 4374:2 4375:6 4376:1 4382:1 4399:1 4400:1 4409:1 4413:2 4423:1 4434:1 4447:2 4460:1 4464:1 4469:1 4471:2 4497:1 4498:3 4505:1 4512:1 4518:5 4519:3 4534:2 4539:1 4541:1 4542:1 4551:1 4566:1 4569:2 4572:2 4581:1 4586:1 4587:1 4592:1 4599:4 4608:1 4609:2 4611:1 4621:1 4622:1 4636:1 4655:1 4667:1 4668:1 4673:1 4683:2 4684:2 4710:3 4722:1 4724:1 4734:1 4744:1 4759:1 4773:1 4784:1 4792:1 4796:3 4814:1 4820:1 4821:2 4825:1 4832:2 4853:1 4876:2 4889:2 4892:1 4894:3 4901:2 4909:1 4931:1 4963:1 4986:1 4993:1 5000:1 5003:2 5016:2 5024:1 5044:1 5047:1 5049:3 5071:3 5077:1 5088:2 5093:1 5095:1 5100:2 5127:1 5146:1 5187:1 5192:1 5201:2 5202:1 5203:1 5224:1 5232:1 5247:1 5248:1 5253:1 5254:1 5258:1 5262:1 5283:1 5308:5 5310:1 5313:1 5322:9 5325:5 5326:2 5332:6 5333:3 5337:3 5338:1 5339:2 5340:2 5342:1 5344:1 5347:6 5349:13 5350:1 5352:5 5354:4 5451:10 5484:1 5488:1 5492:1 5500:1 5520:2 5529:1 5530:1 5531:1 5533:2 5534:1 5535:1 5585:1 5595:1 5599:4 5604:1 5610:2 5627:1 5640:1 5670:1 5674:1 5681:2 5683:1 5686:4 5688:3 5702:10 5711:1 5712:1 5719:2 5721:1 5726:1 5730:1 5746:3 5752:1 5783:1 5788:2 5807:2 5813:2 5815:1 5828:1 5849:1 5860:1 5865:3 5871:1 5874:3 5878:3 5889:1 5900:1 5931:2 5939:1 5947:6 5948:2 5952:1 5968:2 5998:1 6005:2 6034:1 6042:1 6045:1 6046:1 6047:2 6049:1 6050:1 6056:1 6062:1 6071:1 6079:1 6087:1 6112:2 6116:1 6126:1 6128:1 6131:1 6139:2 6145:1 6151:1 6175:2 6183:11 6187:1 6194:1 6207:1 6235:1 6237:2 6289:1 6293:1 6311:4 6355:3 6364:2 6365:8 6373:1 6378:1 6381:2 6382:1 6386:2 6405:1 6407:1 6409:1 6410:1 6412:1 6416:2 6417:1 6418:1 6422:1 6429:48 6433:1 6434:1 6440:1 6448:1 6449:3 6451:7 6459:4 6468:1 6475:1 6486:1 6491:1 6492:1 6493:1 6525:1 6526:4 6532:2 6542:1 6554:1 6560:1 6578:1 6589:1 6597:1 6616:1 6619:2 6643:1 6661:3 6667:1 6669:1 6675:1 6678:1 6685:1 6687:1 6707:2 6711:1 6715:1 6716:2 6723:5 6756:1 6769:1 6781:1 6789:1 6791:1 6794:3 6796:2 6802:1 6804:1 6810:5 6824:4 6834:1 6839:2 6843:1 6846:1 6847:1 6854:4 6859:16 6908:4 6911:1 6920:1 6937:1 6981:4 6991:1 7016:1 7021:1 7022:1 7027:2 7033:1 7038:1 7045:1 7047:1 7054:6 7059:2 7068:11 7096:2 7097:1 7104:1 7108:1 7116:1 7122:1 7132:1 7137:1 7157:4 7160:1 7163:1 7165:1 7166:1 7169:3 7170:2 7177:1 7178:2 7179:1 7181:2 7182:1 7190:1 7194:1 7199:1 7202:1 7215:1 7216:2 7221:1 7235:1 7245:1 7246:2 7251:1 7268:1 7273:1 7285:13 7303:1 7322:1 7360:1 7361:5 7363:1 7374:1 7377:1 7379:1 7382:1 7391:2 7400:11 7402:1 7409:2 7414:1 7418:2 7419:1 7427:2 7430:1 7432:1 7435:1 7438:3 7443:1 7444:1 7445:1 7450:5 7451:1 7456:3 7457:5 7459:2 7460:1 7461:6 7462:1 7464:2 7465:2 7471:1 7487:1 7499:1 7510:2 7527:1 7550:1 7552:1 7553:1 7554:2 7564:2 7571:4 7572:1 7576:1 7581:8 7588:1 7589:1 7605:1 7614:3 7615:1 7622:1 7626:1 7638:1 7648:4 7656:1 7658:3 7670:1 7671:1 7682:2 7701:1 7702:1 7709:1 7712:5 7741:1 7742:1 7743:1 7753:3 7754:1 7761:1 7768:1 7773:13 7778:1 7782:1 7787:4 7799:1 7803:1 7804:1 7810:2 7820:3 7841:2 7860:2 7868:2 7872:1 7880:1 7887:3 7905:1 7908:1 7912:1 7929:3 7930:1 7950:3 7964:2 7972:1 7979:1 7982:1 7988:5 7999:1 8002:1 8005:1 8023:1 8030:1 8049:1 8065:12 8070:8 8079:1 8081:12 8082:6 8099:4 8107:1 8110:1 8140:1 8158:1 8162:4 8171:3 8174:1 8175:3 8176:10 8189:2 8195:1 8206:5 8207:1 8216:1 8229:2 8230:1 8234:18 8235:1 8249:2 8256:1 8272:1 8279:1 8282:1 8284:1 8285:7 8296:1 8304:2 8311:2 8317:1 8318:1 8320:1 8328:6 8332:1 8343:1 8348:1 8350:1 8352:7 8355:1 8357:2 8359:2 8361:1 8376:1 8383:1 8387:4 8404:2 8428:1 8433:3 8437:1 8443:2 8469:9 8471:1 8472:1 8508:1 8553:2 8567:2 8568:2 8574:1 8582:1 8583:1 8593:2 8597:3 8598:8 8603:1 8605:1 8614:1 8617:1 8623:1 8630:1 8632:1 8635:1 8637:1 8656:3 8657:1 8670:1 8672:1 8681:2 8690:2 8692:1 8702:2 8709:1 8711:1 8714:3 8719:1 8726:1 8727:3 8731:1 8736:3 8753:3 8759:9 8761:1 8771:1 8778:1 8782:2 8783:1 8785:1 8795:2 8800:2 8802:10 8809:5 8812:1 8814:6 8830:1 8831:2 8832:4 8833:5 8836:1 8849:1 8878:2 8891:7 8900:3 8901:1 8910:3 8911:1 8914:1 8916:6 8944:1 8968:1 8974:2 8979:1 8983:2 8993:1 8996:1 8998:2 8999:1 9000:1 9002:4 9022:1 9027:1 9038:1 9058:4 9060:1 9062:2 9063:1 9067:1 9084:1 9097:1 9101:7 9102:9 9120:4 9127:2 9132:1 9138:1 9140:1 9142:2 9149:1 9156:1 9166:1 9173:1 9181:1 9185:3 9222:2 9227:1 9239:1 9240:2 9243:1 9252:8 9263:1 9313:2 9318:1 9336:1 9338:1 9346:1 9363:1 9377:2 9392:1 9400:1 9403:5 9419:1 9426:1 9440:2 9441:1 9455:8 9462:2 9466:1 9488:7 9495:1 9497:1 9532:13 9536:2 9550:4 9562:2 9563:3 9565:2 9575:2 9596:1 9599:1 9607:1 9619:1 9622:2 9624:1 9645:1 9653:1 9656:2 9682:6 9683:1 9688:2 9690:1 9691:1 9697:1 9698:1 9700:1 9710:2 9716:2 9723:3 9729:2 9738:2 9743:1 9756:1 9772:2 9810:2 9818:1 9823:5 9824:1 9850:1 9859:2 9867:1 9877:1 9878:1 9881:1 9884:1 9890:1 9891:1 9900:1 9918:3 9922:1 9923:1 9924:5 9941:2 9944:1 9949:1 9958:1 9963:1 9974:1 9999:1 10021:1 10022:3 10037:1 10040:2 10042:2 10045:1 10046:1 10052:2 10053:2 10054:2 10070:1 10073:1 10074:3 10090:5 10117:1 10126:1 10169:4 10172:1 10176:1 10204:1 10211:1 10218:6 10220:1 10232:1 10254:1 10278:4 10311:1 10316:1 10318:2 10319:1 10324:1 10329:1 10353:1 10355:1 10360:2 10369:1 10370:1 10384:7 10406:1 10457:1 10465:1 10480:33 10502:1 10503:5 10524:1 10530:1 10531:3 10537:1 10539:1 10540:1 10551:1 10554:1 10576:1 10597:1 10598:5 10600:1 10617:2 10648:2 10651:6 10654:1 10659:1 10667:1 10707:1 10713:1 10719:1 10722:1 10725:3 10757:1 10758:1 10772:1 10792:1 10809:1 10818:1 10823:2 10837:1 10843:1 10847:11 10851:4 10862:1 10871:4 10872:1 10879:1 10887:1 10892:1 10897:1 10898:2 10912:2 10951:2 10952:1 10953:1 10961:4 10962:2 10970:2 10974:5 10979:2 10981:1 10985:3 10987:1 10993:2 11013:1 11016:1 11036:1 11046:5 11047:7 11050:1 11056:2 11062:1 11087:1 11103:4 11118:2 11126:1 11155:1 11159:2 11163:3 11168:3 11173:2 11186:2 11187:4 11188:1 11201:1 11211:3 11215:7 11223:3 11235:2 11266:1 11273:4 11280:2 11283:1 11284:1 11286:1 11297:1 11301:1 11325:3 11329:1 11337:5 11341:1 11344:1 11345:1 11346:1 11347:1 11348:1 11349:2 11352:2 11353:1 11368:4 11375:4 11394:1 11400:2 11405:2 11408:1 11415:1 11430:7 11447:4 11449:1 11451:2 11459:2 11463:2 11479:1 11486:1 11507:1 11509:2 11526:2 11584:3 11600:1 11607:1 11632:1 11638:4 11640:1 11643:1 11653:1 11655:1 11705:1 11708:2 11712:4 11727:1 11739:2 11742:1 11747:1 11790:1 11792:1 11800:1 11801:3 11807:1 11812:2 11813:1 11818:1 11823:1 11830:1 11832:1 11833:1 11834:1 11843:1 11853:1 11856:1 11857:2 11864:3 11874:1 11876:1 11883:1 11900:1 11906:2 11932:1 11937:1 11960:1 11966:1 11974:2 11976:2 11979:1 11985:1 11990:1 11992:1 11994:1 11998:2 12033:1 12038:1 12050:5 12065:1 12076:2 12078:1 12084:1 12095:1 12097:1 12099:4 12114:1 12115:1 12126:1 12131:1 12144:3 12145:1 12146:2 12178:1 12181:1 12182:2 12184:1 12197:1 12218:1 12229:1 12245:1 12276:2 12287:1 12289:1 12323:1 12328:1 12337:1 12338:1 12346:7 12364:2 12365:2 12366:1 12372:1 12375:1 12381:6 12387:2 12396:1 12416:1 12425:1 12427:2 12432:1 12440:1 12444:1 12452:2 12456:1 12468:1 12483:1 12486:2 12488:2 12490:1 12491:1 12512:1 12542:1 12555:1 12556:4 12573:1 12575:3 12582:1 12583:1 12585:1 12586:1 12594:1 12614:7 12623:1 12635:2 12641:1 12652:2 12661:1 12662:3 12672:1 12683:1 12685:1 12698:2 12723:4 12739:2 12740:2 12741:5 12748:2 12754:1 12774:1 12797:3 12798:3 12800:5 12801:1 12822:1 12837:1 12839:2 12842:1 12843:1 12846:2 12874:1 12881:2 12930:1 12942:2 12943:1 12944:1 12945:2 12946:1 12950:5 12954:2 12961:2 12971:1 12980:1 12985:2 12988:5 12989:1 13014:2 13025:1 13032:1 13033:2 13058:2 13062:1 13072:1 13094:1 13104:3 13125:1 13128:1 13140:2 13142:2 13153:10 13156:1 13181:1 13187:1 13205:1 13207:5 13212:1 13225:4 13229:1 13238:1 13258:1 13259:1 13288:1 13295:2 13304:1 13311:2 13324:1 13328:13 13333:3 13334:1 13336:1 13342:1 13345:1 13362:1 13390:5 13406:1 13410:1 13417:1 13428:2 13431:1 13434:1 13435:1 13437:1 13445:3 13446:1 13449:3 13452:2 13453:2 13454:1 13459:1 13462:1 13470:1 13471:1 13482:1 13489:3 13502:1 13505:2 13525:2 13535:1 13542:1 13560:1 13561:1 13590:1 13593:2 13614:1 13615:1 13620:1 13637:4 13647:3 13662:3 13664:2 13668:1 13671:1 13680:5 13682:2 13688:1 13703:1 13707:1 13708:1 13718:1 13719:4 13729:1 13732:1 13733:2 13740:1 13760:1 13765:3 13766:1 13778:1 13780:1 13803:7 13807:3 13819:12 13823:2 13835:6 13857:1 13858:1 13865:2 13871:2 13876:1 13888:3 13895:2 13907:1 13908:2 13926:1 13928:5 13929:1 13931:1 13936:1 13947:1 13953:1 13970:3 13979:4 13986:1 13989:4 13994:2 13995:1 13996:2 14000:1 14007:2 14024:3 14026:2 14030:1 14031:1 14035:2 14041:1 14050:3 14051:7 14055:1 14071:2 14072:1 14073:1 14077:2 14088:1 14097:4 14119:3 14127:2 14130:1 14137:1 14178:8 14181:2 14204:2 14207:1 14218:1 14227:1 14229:3 14231:2 14252:2 14262:1 14265:2 14279:1 14286:1 14300:2 14302:1 14305:1 14317:1 14329:1 14332:3 14334:1 14341:1 14365:4 14366:10 14371:5 14380:1 14382:10 14383:3 14385:1 14386:1 14387:2 14391:2 14395:1 14403:1 14404:1 14417:1 14422:2 14434:1 14443:2 14465:2 14476:9 14477:3 14496:12 14513:1 14516:8 14522:1 14541:1 14544:1 14549:1 14553:1 14556:1 14564:1 14576:2 14577:2 14582:1 14583:1 14596:1 14610:1 14622:1 14630:4 14635:3 14638:1 14648:1 14649:1 14650:2 14654:1 14657:1 14665:2 14672:3 14674:1 14677:8 14678:4 14691:2 14696:1 14711:1 14717:1 14719:5 14727:1 14734:1 14740:4 14744:1 14747:9 14751:1 14762:4 14763:1 14764:1 14765:3 14768:1 14774:1 14776:1 14785:5 14802:1 14804:1 14807:1 14810:1 14824:1 14837:6 14844:1 14849:2 14851:1 14853:1 14864:5 14871:1 14877:1 14882:2 14885:5 14919:1 14934:2 14938:2 14946:3 14956:2 14962:1 14976:1 14981:2 14982:2 14987:1 14991:1 15002:1 15011:1 15015:1 15030:2 15035:2 15040:2 15067:1 15073:1 15080:2 15087:1 15089:1 15090:2 15097:1 15098:1 15100:1 15105:2 15111:1 15123:3 15133:1 15134:12 15135:1 15137:7 15142:1 15144:1 15160:2 15166:1 15169:1 15171:3 15183:1 15184:5 15196:1 15197:1 15201:2 15205:12 15233:2 15240:1 15251:2 15269:5 15282:5 15283:1 15287:1 15303:1 15307:40 15312:4 15322:1 15326:1 15344:1 15354:2 15360:1 15371:2 15374:1 15384:1 15396:6 15405:5 15409:1 15423:1 15424:1 15436:1 15444:1 15445:2 15452:1 15453:1 15460:3 15480:2145 15483:2 15492:2 15496:1 15507:1 15508:1 15518:1 15524:1 15554:1 15556:2 15560:1 15568:1 15570:1 15574:1 15591:1 15595:1 15599:2 15610:3 15617:2 15623:1 15625:1 15638:3 15639:3 15641:1 15642:2 15645:1 15646:1 15647:1 15649:4 15652:1 15655:5 15658:1 15661:1 15662:7 15678:2 15684:1 15723:1 15738:1 15742:2 15743:1 15763:3 15773:1 15776:9 15790:1 15814:1 15816:2 15847:1 15853:1 15855:1 15869:1 15871:2 15875:1 15884:1 15896:1 15927:1 15929:4 15935:2 15938:1 15943:1 15949:5 15955:1 15957:1 15960:1 15966:2 15984:1 15994:1 15997:4 16008:1 16019:1 16036:1 16042:8 16043:2 16051:1 16052:1 16054:5 16056:1 16059:1 16074:1 16077:1 16078:1 16079:1 16094:1 16102:1 16103:1 16111:1 16112:1 16115:4 16118:1 16121:10 16147:1 16151:2 16152:5 16154:7 16161:1 16171:1 16179:1 16187:1 16206:2 16228:1 16254:1 16262:3 16267:1 16268:2 16270:1 16271:1 16273:2 16274:2 16277:1 16283:2 16287:1 16300:1 16302:1 16306:2 16308:1 16309:1 16310:1 16313:1 16318:1 16341:1 16370:3 16376:1 16387:6 16402:1 16409:4 16412:2 16426:1 16428:1 16438:1 16458:1 16474:1 16479:1 16484:6 16485:4 16488:1 16490:2 16495:3 16500:2 16503:2 16506:1 16509:2 16534:2 16547:1 16548:1 16577:2 16593:2 16603:1 16605:1 16611:1 16620:1 16623:1 16625:1 16630:3 16643:1 16652:2 16654:3 16659:1 16665:1 16670:1 16673:1 16679:1 16681:5 16682:1 16693:1 16718:2 16726:5 16727:1 16729:1 16732:1 16733:1 16735:1 16743:1 16744:2 16753:6 16754:1 16761:1 16763:1 16777:1 16778:2 16780:1 16787:2 16792:1 16809:1 16815:6 16817:1 16853:1 16855:2 16861:4 16862:2 16867:4 16871:1 16875:1 16882:1 16895:1 16897:2 16919:1 16921:9 16928:1 16946:1 16964:1 16970:1 16971:1 16975:1 17001:3 17011:1 17013:1 17030:2 17037:1 17043:1 17048:1 17057:2 17058:1 17066:2 17085:2 17090:1 17107:1 17113:2 17123:1 17131:1 17136:5 17137:4 17166:1 17175:1 17176:1 17181:1 17185:1 17187:1 17188:1 17221:1 17237:7 17246:2 17248:1 17269:1 17275:6 17276:5 17286:1 17288:1 17296:1 17298:1 17303:1 17311:3 17316:2 17320:1 17331:2 17346:2 17347:1 17348:1 17357:1 17362:6 17363:2 17366:2 17367:1 17387:8 17403:1 17404:1 17424:2 17440:1 17470:1 17485:4 17491:3 17492:1 17499:1 17515:1 17520:1 17553:2 17563:1 17569:1 17575:1 17580:1 17602:1 17605:1 17608:1 17616:2 17622:1 17623:4 17626:1 17631:2 17641:1 17649:1 17658:1 17660:1 17678:7 17706:2 17712:1 17724:3 17725:2 17730:1 17735:3 17739:1 17742:2 17743:1 17768:1 17772:2 17774:2 17775:1 17792:1 17795:1 17808:1 17822:1 17826:1 17827:1 17834:2 17838:2 17839:1 17853:2 17855:4 17857:1 17862:1 17865:1 17886:2 17890:1 17900:1 17906:1 17908:1 17910:1 17915:2 17916:12 17919:1 17921:3 17922:1 17924:2 17925:1 17927:3 17943:3 17955:4 17958:4 17962:2 17969:1 17975:1 17978:1 17979:1 17980:1 17983:2 17995:5 18009:4 18016:1 18025:2 18028:1 18035:1 18037:1 18038:2 18041:2 18042:1 18043:8 18053:4 18058:1 18064:1 18068:3 18069:1 18073:1 18079:1 18092:1 18093:7 18116:1 18130:2 18146:1 18165:1 18166:4 18168:4 18174:2 18177:1 18181:1 18189:1 18193:1 18197:2 18208:5 18210:2 18215:1 18248:1 18249:1 18266:1 18313:2 18320:1 18339:1 18356:1 18358:1 18360:1 18366:2 18367:1 18369:3 18370:2 18375:4 18378:2 18379:1 18406:3 18409:1 18410:3 18414:1 18423:1 18436:1 18447:1 18454:1 18468:1 18469:2 18474:2 18478:1 18479:1 18485:2 18491:1 18498:2 18504:1 18509:1 18511:3 18513:1 18523:1 18539:1 18555:1 18567:1 18568:1 18570:1 18572:1 18578:1 18580:1 18587:1 18602:1 18616:3 18617:1 18623:1 18629:1 18631:1 18645:1 18654:2 18664:1 18665:1 18674:2 18700:1 18702:4 18704:1 18727:4 18732:8 18736:1 18742:2 18747:1 18748:1 18754:1 18755:1 18768:1 18784:1 18792:3 18800:2 18805:1 18816:1 18821:1 18849:1 18856:8 18857:1 18862:8 18867:1 18880:1 18881:3 18882:1 18884:1 18886:1 18901:2 18905:1 18916:1 18929:1 18930:2 18931:2 18934:1 18938:2 18941:6 18949:1 18980:1 19001:1 19011:1 19024:1 19033:4 19043:1 19048:1 19056:2 19059:1 19060:2 19076:1 19080:1 19085:2 19098:3 19108:5 19126:2 19134:3 19136:2 19139:1 19145:1 19146:1 19148:1 19150:1 19153:2 19172:1 19183:1 19193:2 19205:3 19207:3 19210:7 19226:3 19230:1 19249:1 19250:1 19258:1 19267:1 19275:2 19292:6 19293:1 19294:1 19302:4 19303:1 19322:1 19328:2 19331:1 19335:1 19337:5 19339:2 19354:1 19359:1 19365:1 19368:1 19373:2 19374:1 19386:1 19391:1 19392:2 19395:2 19402:1 19412:1 19416:1 19422:1 19425:1 19438:3 19440:1 19443:5 19446:1 19453:1 19469:1 19471:3 19475:1 19486:2 19487:7 19490:1 19507:1 19517:1 19522:1 19532:1 19544:4 19559:4 19561:1 19562:1 19564:1 19586:1 19587:1 19603:1 19610:1 19612:1 19613:1 19637:1 19638:1 19644:2 19645:1 19678:1 19683:1 19702:1 19706:1 19710:1 19714:1 19716:1 19730:2 19745:1 19753:1 19757:1 19762:7 19767:1 19773:1 19792:1 19804:1 19805:2 19810:5 19813:2 19837:1 19844:1 19847:1 19849:1 19886:1 19897:4 19901:1 19902:2 19909:1 19912:1 19924:1 19928:3 19962:1 19966:2 19972:1 19992:1 20000:1 20004:1 20015:2 20034:1 20040:5 20072:1 20080:4 20083:1 20084:5 20096:2 20098:1 20103:1 20108:1 20109:5 20111:1 20118:1 20128:1 20137:1 20138:1 20152:1 20165:1 20180:1 20208:1 20223:1 20224:1 20226:1 20227:1 20235:1 20239:1 20247:2 20251:1 20252:1 20253:1 20258:2 20261:1 20266:1 20267:1 20270:4 20275:1 20278:1 20293:1 20304:1 20316:2 20317:3 20318:9 20319:1 20320:1 20326:3 20327:4 20331:3 20332:3 20333:1 20334:4 20336:1 20337:6 20338:1 20341:1 20343:7 20344:7 20350:1 20353:1 20356:1 20371:1 20373:1 20378:5 20380:1 20383:3 20398:7 20399:3 20406:1 20411:1 20413:1 20424:1 20435:1 20436:1 20440:1 20441:2 20442:10 20447:8 20448:2 20464:1 20469:3 20470:1 20496:3 20502:3 20505:1 20510:1 20512:4 20529:2 20552:1 20560:1 20576:4 20595:4 20611:1 20614:1 20619:1 20621:1 20627:1 20629:2 20631:7 20653:1 20659:1 20668:5 20686:1 20694:1 20696:1 20717:1 20718:2 20727:1 20733:1 20738:3 20740:1 20742:8 20745:1 20761:7 20762:1 20769:1 20785:13 20787:1 20812:1 20818:1 20829:7 20831:1 20850:1 20853:1 20871:1 20872:2 20874:1 20887:2 20890:2 20930:1 20936:1 20949:11 20962:5 20973:2 20995:1 21011:1 21012:1 21021:2 21056:1 21062:2 21065:2 21077:1 21089:1 21099:1 21100:2 21107:2 21108:6 21111:1 21112:1 21113:1 21123:2 21133:1 21134:2 21138:1 21139:1 21146:1 21150:6 21173:1 21198:7 21199:5 21208:2 21209:4 21218:2 21219:1 21224:1 21225:2 21227:2 21228:1 21245:1 21249:1 21258:1 21293:2 21306:1 21327:1 21337:4 21350:1 21353:1 21359:1 21361:4 21380:1 21400:1 21402:1 21434:2 21473:1 21480:1 21485:2 21486:1 21490:1 21508:1 21520:1 21529:4 21539:4 21543:1 21546:1 21556:1 21557:5 21561:2 21567:1 21571:1 21582:3 21584:1 21586:1 21588:1 21595:1 21602:2 21610:7 21613:1 21622:1 21627:1 21630:1 21633:1 21642:4 21644:1 21645:1 21650:1 21663:2 21675:1 21684:2 21697:1 21703:1 21718:1 21723:1 21741:1 21760:40 21773:7 21774:1 21782:5 21783:1 21784:1 21787:2 21791:1 21794:1 21812:1 21830:1 21831:2 21838:1 21844:1 21846:1 21856:1 21868:1 21878:2 21887:2 21904:1 21914:2 21916:6 21922:1 21926:1 21927:1 21943:1 21944:1 21948:1 21982:1 21995:3 21996:1 21997:1 21998:1 22007:1 22010:1 22016:1 22024:1 22027:4 22035:1 22037:1 22041:1 22048:3 22078:1 22080:1 22094:1 22109:1 22119:2 22123:1 22132:1 22142:1 22144:1 22163:10 22179:1 22192:1 22208:1 22211:1 22215:1 22218:1 22223:2 22229:2 22233:1 22243:1 22245:7 22247:1 22251:1 22256:1 22263:1 22279:2 22281:1 22315:1 22320:1 22325:1 22328:1 22331:19 22334:1 22340:1 22360:1 22368:1 22376:3 22378:1 22383:1 22410:2 22415:1 22417:1 22431:1 22434:2 22455:1 22460:1 22465:1 22466:3 22472:1 22478:1 22481:1 22491:1 22493:1 22504:1 22513:1 22517:2 22520:7 22534:2 22548:3 22551:4 22552:1 22561:1 22585:1 22587:1 22598:1 22601:1 22602:1 22611:5 22617:1 22623:1 22627:1 22644:2 22646:2 22647:1 22655:1 22658:1 22662:1 22669:4 22690:5 22699:7 22707:2 22709:1 22715:1 22730:1 22734:2 22736:1 22749:3 22755:8 22756:1 22759:4 22760:2 22761:1 22779:1 22786:6 22787:1 22795:2 22799:1 22802:1 22803:7 22809:1 22812:1 22815:1 22818:1 22820:1 22822:1 22828:1 22830:2 22831:2 22846:2 22864:1 22865:1 22866:1 22874:3 22876:1 22895:1 22902:1 22903:1 22905:2 22914:1 22916:2 22924:1 22931:1 22937:1 22942:1 22948:1 22982:1 23000:2 23001:1 23003:1 23011:1 23027:5 23032:1 23039:1 23064:2 23071:1 23075:1 23076:3 23084:1 23089:8 23109:12 23118:1 23125:3 23127:3 23143:1 23151:1 23155:1 23166:1 23167:2 23175:1 23185:1 23188:1 23196:2 23201:1 23226:1 23237:4 23248:1 23256:1 23263:1 23264:1 23284:3 23293:1 23295:1 23298:3 23299:1 23300:2 23305:1 23307:1 23314:5 23331:1 23333:1 23335:1 23341:1 23344:5 23349:1 23360:3 23361:1 23363:1 23378:1 23384:3 23385:2 23386:2 23392:1 23393:2 23404:4 23413:2 23416:1 23424:2 23430:24 23431:2 23433:2 23435:1 23456:2 23466:4 23476:2 23491:1 23496:1 23507:1 23521:1 23524:1 23551:2 23558:1 23586:8 23588:1 23592:1 23603:5 23609:1 23610:6 23616:6 23620:1 23623:2 23626:7 23646:1 23647:6 23655:4 23659:2 23674:1 23676:1 23685:1 23703:1 23712:1 23713:1 23719:1 23720:2 23722:1 23723:1 23733:1 23736:1 23739:3 23741:3 23744:1 23767:1 23768:1 23775:18 23777:2 23784:1 23797:2 23828:1 23835:7 23836:1 23840:1 23847:1 23853:1 23858:6 23862:1 23865:1 23866:9 23869:1 23871:1 23885:2 23891:1 23893:1 23923:1 23940:2 23949:1 23950:1 23952:1 23967:1 23971:4 23974:4 23991:1 23993:1 23994:1 24003:1 24004:1 24034:1 24039:3 24051:1 24054:1 24070:3 24076:1 24081:1 24095:1 24096:3 24100:1 24126:4 24128:1 24129:1 24132:1 24137:2 24143:1 24151:1 24162:2 24164:1 24168:1 24170:6 24179:1 24213:1 24225:1 24239:1 24251:1 24257:1 24265:2 24266:8 24267:1 24271:1 24274:1 24275:1 24276:1 24280:1 24286:1 24287:1 24292:1 24296:1 24307:2 24326:1 24330:2 24332:1 24341:3 24350:1 24370:3 24373:1 24385:1 24394:1 24398:1 24401:6 24407:1 24410:1 24411:5 24412:1 24438:3 24441:1 24463:1 24473:1 24476:5 24477:2 24478:1 24482:1 24483:5 24485:1 24487:4 24503:7 24525:2 24530:6 24536:2 24538:1 24568:1
14 9:2 30:1 34:1 56:1 59:1 71:1 75:1 96:2 112:1 146:1 157:4 162:1 163:1 185:7 186:9 188:2 196:1 197:1 204:1 216:1 219:2 223:2 224:1 230:1 233:1 239:1 242:1 243:1 247:1 253:1 254:9 256:1 260:1 265:1 270:1 282:1 295:1 296:7 308:1 314:1 318:3 320:2 323:1 336:1 346:2 375:1 376:2 379:1 407:3 450:1 457:10 469:1 501:3 510:1 524:1 525:1 527:6 541:1 545:2 547:1 565:3 592:2 599:1 607:1 619:1 636:1 663:1 699:1 704:2 708:4 713:1 714:1 721:1 724:1 731:1 732:2 748:3 749:1 753:1 759:7 762:1 763:1 764:2 766:1 772:1 777:1 779:1 785:4 789:2 802:1 811:1 814:6 831:3 833:1 834:3 838:1 851:3 864:2 869:2 875:1 880:1 881:1 884:2 888:1 889:2 892:1 895:2 900:2 907:1 909:1 911:1 914:2 922:1 927:1 932:1 933:1 942:1 946:2 949:1 965:1 969:2 980:2 1000:1 1009:2 1011:2 1021:1 1023:2 1044:1 1045:1 1046:3 1048:1 1051:7 1053:1 1055:1 1059:4 1068:1 1077:1 1094:3 1095:1 1098:1 1114:1 1124:1 1125:1 1127:1 1128:1 1141:1 1153:2 1155:1 1160:1 1168:1 1171:6 1172:3 1187:1 1205:1 1217:1 1220:5 1226:1 1229:2 1256:2 1259:6 1264:4 1278:1 1285:1 1292:1 1293:2 1297:1 1299:1 1301:1 1321:1 1332:4 1344:1 1356:2 1360:3 1369:1 1381:5 1398:1 1401:7 1405:1 1413:1 1424:1 1425:2 1439:1 1448:1 1452:1 1453:1 1470:1 1507:7 1510:1 1517:5 1526:1 1529:1 1535:1 1536:1 1538:2 1545:2 1546:1 1564:5 1570:1 1585:1 1589:2 1591:4 1603:1 1616:2 1617:3 1621:1 1622:2 1626:1 1627:1 1628:1 1629:1 1640:1 1654:2 1659:1 1673:1 1674:1 1683:1 1701:1 1703:1 1710:1 1715:1 1723:1 1727:1 1730:1 1731:6 1737:1 1745:1 1754:1 1759:1 1766:11 1781:2 1785:1 1798:1 1809:5 1818:1 1826:4 1834:1 1838:3 1842:1 1846:3 1856:7 1863:1 1874:2 1879:1 1880:1 1882:2 1883:2 1885:2 1888:1 1891:1 1904:2 1908:1 1910:2 1911:1 1912:4 1938:4 1941:1 1942:2 1945:9 1947:3 1953:1 1954:5 1955:2 1957:1 1960:1 1963:3 1965:3 1968:6 1970:2 1973:2 1976:4 1978:1 1991:1 2000:1 2009:1 2015:1 2020:1 2028:1 2040:2 2042:1 2047:1 2049:1 2051:2 2053:1 2061:1 2065:2 2071:1 2076:2 2077:1 2112:1 2128:1 2131:1 2134:3 2149:1 2157:1 2164:1 2172:2 2178:2 2183:2 2193:1 2198:1 2208:1 2226:4 2229:1 2234:2 2254:1 2274:2 2275:2 2277:1 2286:2 2295:1 2298:1 2303:1 2305:1 2321:5 2325:3 2333:1 2349:1 2358:1 2366:3 2372:1 2380:2 2381:1 2383:5 2389:1 2390:7 2394:1 2400:1 2414:1 2419:2 2425:1 2426:1 2433:1 2448:1 2451:3 2462:44 2464:2 2465:1 2469:1 2470:1 2480:2 2486:1 2504:1 2507:10 2513:2 2519:11 2529:1 2530:2 2565:5 2576:2 2587:2 2593:1 2597:2 2627:4 2638:1 2691:1 2704:1 2706:1 2709:1 2731:3 2736:9 2742:2 2746:1 2754:1 2770:1 2779:3 2780:3 2785:2 2787:1 2798:2 2801:1 2802:10 2821:1 2826:1 2834:2 2837:1 2844:1 2846:1 2848:3 2849:1 2854:2 2855:2 2886:11 2895:1 2901:1 2919:3 2936:1 2954:2 2979:1 2980:1 2994:1 3002:2 3003:1 3020:4 3027:1 3041:1 3042:1 3049:4 3050:1 3060:1 3061:1 3064:1 3072:1 3077:6 3090:1 3098:1 3099:2 3113:1 3116:1 3131:1 3132:1 3133:1 3147:2 3149:1 3153:1 3173:1 3179:1 3183:1 3184:14 3204:1 3206:2 3213:2 3221:4 3223:1 3225:1 3231:1 3234:6 3245:1 3248:1 3266:1 3285:1 3287:2 3292:1 3295:2 3297:5 3304:1 3312:1 3315:1 3322:1 3324:1 3326:2 3328:2 3332:1 3342:1 3351:1 3353:1 3369:3 3372:1 3375:1 3379:1 3404:1 3407:2 3408:2 3414:1 3416:2 3418:1 3462:1 3494:1 3499:1 3518:2 3519:1 3520:1 3522:1 3524:1 3525:1 3545:1 3546:2 3547:2 3562:1 3563:1 3572:1 3581:2 3588:2 3598:1 3606:1 3612:1 3615:1 3618:3 3631:1 3641:16 3649:1 3660:1 3667:1 3677:1 3678:3 3679:1 3687:1 3707:1 3712:2 3735:1 3738:1 3744:1 3766:1 3774:1 3776:1 3783:1 3786:1 3804:1 3831:1 3837:4 3841:1 3854:1 3878:1 3886:3 3889:1 3907:3 3908:3 3909:2 3915:1 3918:2 3938:6 3963:3 3964:1 3966:1 3967:1 3976:1 3979:1 3984:2 3995:7 3998:7 4005:2 4012:1 4026:1 4046:1 4051:1 4060:1 4061:1 4062:2 4083:1 4091:2 4093:1 4102:1 4107:20 4108:4 4109:1 4120:2 4128:1 4136:3 4145:1 4154:1 4163:2 4183:1 4186:1 4190:2 4195:1 4198:15 4211:3 4212:6 4213:3 4216:1 4218:3 4221:1 4223:1 4224:1 4225:1 4229:1 4234:1 4236:4 4237:2 4238:4 4244:3 4268:1 4305:1 4325:1 4332:2 4333:1 4340:1 4353:1 4354:1 4368:1 4371:2 4374:2 4375:6 4376:1 4382:1 4399:1 4400:1 4409:1 4413:2 4423:1 4434:1 4447:2 4460:1 4464:1 4469:1 4471:2 4497:1 4498:3 4505:1 4512:1 4518:5 4519:3 4525:1 4534:2 4539:1 4541:1 4542:1 4551:1 4566:1 4569:2 4572:2 4581:1 4586:1 4587:1 4592:1 4599:4 4608:1 4609:2 4611:1 4620:1 4621:1 4622:1 4636:1 4655:1 4667:1 4668:1 4673:1 4683:2 4684:3 4710:3 4722:1 4724:1 4734:1 4744:1 4759:1 4773:1 4784:1 4792:1 4796:4 4814:1 4820:1 4821:2 4825:1 4829:1 4832:2 4853:1 4876:2 4889:2 4892:1 4894:3 4901:2 4909:1 4931:1 4963:1 4986:1 4993:1 5000:1 5003:2 5016:3 5024:1 5037:1 5044:1 5047:1 5049:3 5071:4 5072:1 5077:1 5088:2 5093:1 5095:1 5100:2 5124:1 5127:1 5146:1 5187:1 5192:1 5201:2 5202:1 5203:1 5224:1 5232:1 5247:1 5248:1 5253:1 5254:1 5258:2 5262:1 5269:1 5283:1 5308:5 5310:1 5313:1 5322:9 5325:5 5326:2 5332:6 5333:3 5337:4 5338:2 5339:2 5340:3 5342:1 5344:1 5347:6 5349:13 5350:1 5352:5 5354:4 5451:11 5484:1 5488:1 5492:1 5500:1 5520:2 5529:1 5530:1 5531:1 5533:2 5534:1 5535:1 5585:1 5595:1 5599:4 5604:1 5608:1 5610:2 5627:1 5640:1 5670:1 5674:1 5681:2 5683:1 5686:4 5688:3 5702:11 5711:1 5712:1 5719:2 5721:1 5726:1 5730:1 5746:3 5752:1 5783:1 5788:2 5807:2 5813:2 5815:1 5828:1 5849:1 5860:1 5865:3 5871:1 5874:3 5878:3 5889:1 5900:1 5931:2 5939:1 5947:6 5948:3 5952:1 5968:2 5998:1 6005:2 6017:1 6034:1 6042:1 6044:1 6045:1 6046:1 6047:2 6049:1 6050:1 6056:1 6062:1 6071:1 6079:1 6087:1 6112:2 6116:2 6126:1 6128:1 6131:1 6139:2 6145:2 6151:1 6175:2 6183:11 6187:1 6194:1 6207:1 6235:1 6237:2 6289:1 6293:1 6311:4 6324:1 6355:3 6364:2 6365:8 6373:1 6378:1 6381:2 6382:2 6386:2 6402:1 6405:1 6407:1 6409:1 6410:1 6412:1 6416:2 6417:1 6418:1 6422:1 6429:50 6433:1 6434:1 6440:1 6448:1 6449:3 6451:7 6459:4 6468:1 6475:1 6486:1 6491:1 6492:1 6493:1 6510:1 6525:1 6526:4 6532:2 6542:1 6554:1 6560:1 6578:1 6589:1 6597:1 6616:1 6619:2 6643:1 6661:3 6667:1 6669:1 6675:1 6678:2 6685:1 6687:1 6706:1 6707:2 6711:2 6715:1 6716:3 6723:5 6756:1 6769:1 6781:1 6789:1 6791:1 6794:3 6796:2 6802:1 6804:1 6810:5 6824:4 6834:1 6839:2 6843:1 6846:1 6847:1 6854:4 6859:16 6908:4 6911:1 6920:1 6931:1 6937:1 6981:4 6991:1 7016:1 7021:1 7022:1 7027:2 7033:1 7038:1 7045:1 7047:1 7054:6 7059:2 7068:11 7096:2 7097:1 7104:1 7108:1 7116:1 7122:1 7132:1 7137:1 7157:4 7160:1 7163:1 7165:1 7166:1 7169:3 7170:2 7177:1 7178:2 7179:1 7181:2 7182:1 7190:1 7194:1 7199:1 7202:1 7215:1 7216:2 7221:1 7235:1 7245:1 7246:2 7251:1 7268:1 7273:1 7285:13 7303:2 7322:1 7360:1 7361:6 7363:1 7374:1 7377:1 7379:1 7382:2 7391:2 7400:11 7402:2 7409:2 7414:1 7418:2 7419:1 7427:2 7430:1 7432:1 7435:1 7438:3 7443:1 7444:1 7445:1 7450:5 7451:1 7456:3 7457:5 7459:2 7460:1 7461:6 7462:1 7464:2 7465:2 7471:1 7487:1 7499:1 7510:2 7527:1 7550:1 7552:1 7553:2 7554:2 7564:2 7571:5 7572:1 7576:1 7581:8 7588:1 7589:1 7605:1 7614:3 7615:1 7622:1 7626:1 7638:1 7648:4 7656:1 7658:3 7670:1 7671:1 7682:2 7686:1 7701:1 7702:1 7709:1 7712:5 7741:1 7742:1 7743:1 7751:1 7753:3 7754:1 7761:1 7768:1 7773:13 7778:1 7782:1 7787:4 7799:1 7803:1 7804:1 7810:2 7816:1 7820:3 7841:2 7860:2 7868:2 7872:1 7880:1 7887:3 7905:1 7908:1 7912:1 7923:1 7929:4 7930:1 7950:3 7964:2 7972:1 7979:1 7982:1 7988:5 7999:1 8002:1 8005:1 8023:1 8030:1 8049:1 8065:12 8070:8 8079:1 8081:12 8082:7 8099:5 8107:1 8110:1 8140:1 8158:1 8162:4 8171:3 8174:1 8175:3 8176:11 8189:2 8195:1 8206:5 8207:2 8216:1 8229:2 8230:1 8234:18 8235:1 8249:2 8256:1 8272:1 8279:1 8282:1 8284:1 8285:7 8296:1 8304:2 8311:2 8317:1 8318:1 8320:1 8328:6 8332:1 8339:1 8343:1 8348:1 8350:1 8352:7 8355:1 8357:2 8359:2 8361:1 8376:1 8383:1 8387:4 8404:2 8428:1 8433:3 8437:1 8443:2 8469:9 8471:1 8472:1 8508:1 8553:2 8567:2 8568:2 8574:1 8582:1 8583:1 8593:2 8597:3 8598:8 8603:1 8605:1 8614:1 8617:1 8623:1 8630:1 8632:1 8635:1 8637:1 8656:3 8657:1 8670:1 8672:1 8681:2 8690:2 8692:1 8702:2 8709:1 8711:1 8714:3 8719:1 8726:1 8727:3 8731:1 8736:4 8753:3 8759:9 8761:1 8771:1 8773:1 8778:1 8782:2 8783:1 8785:1 8794:1 8795:2 8800:2 8802:10 8809:5 8812:1 8814:6 8822:1 8830:1 8831:2 8832:5 8833:5 8836:1 8849:1 8878:2 8891:8 8900:4 8901:1 8910:3 8911:1 8914:1 8916:6 8944:1 8955:1 8968:1 8974:2 8979:1 8983:2 8993:1 8996:1 8998:2 8999:1 9000:1 9002:4 9022:1 9027:1 9038:1 9058:4 9060:1 9062:2 9063:1 9067:1 9084:1 9097:1 9101:7 9102:9 9120:4 9123:1 9127:2 9132:1 9138:1 9140:1 9142:2 9149:1 9156:1 9166:1 9173:1 9181:1 9183:1 9185:3 9222:2 9227:1 9239:1 9240:2 9243:1 9252:8 9263:1 9313:2 9318:1 9336:1 9338:1 9346:1 9363:1 9377:2 9392:1 9400:1 9403:6 9419:1 9426:1 9440:2 9441:1 9455:8 9462:2 9466:1 9488:7 9495:1 9497:1 9532:13 9536:2 9547:1 9550:4 9562:2 9563:3 9565:2 9575:2 9596:1 9599:1 9607:1 9619:1 9622:2 9624:1 9645:1 9653:1 9656:2 9682:6 9683:1 9688:2 9690:1 9691:1 9697:1 9698:1 9700:1 9710:2 9716:2 9723:3 9729:2 9738:2 9743:1 9745:1 9756:1 9772:2 9810:2 9818:1 9823:5 9824:1 9850:1 9859:2 9867:1 9877:1 9878:1 9881:1 9884:1 9890:1 9891:1 9900:1 9918:3 9922:1 9923:1 9924:5 9941:2 9944:1 9949:1 9958:1 9963:1 9974:1 9999:1 10021:1 10022:3 10037:1 10040:2 10042:2 10045:1 10046:1 10052:2 10053:2 10054:2 10070:1 10073:1 10074:3 10090:5 10117:1 10126:1 10169:4 10172:1 10176:1 10204:1 10211:1 10217:1 10218:6 10220:1 10232:1 10254:1 10278:4 10311:1 10316:1 10318:2 10319:1 10324:1 10329:1 10353:1 10355:1 10360:2 10369:1 10370:1 10384:7 10406:1 10457:1 10465:1 10480:36 10502:1 10503:5 10524:1 10530:1 10531:4 10537:1 10539:1 10540:1 10551:1 10554:2 10576:1 10597:1 10598:5 10600:1 10617:2 10648:2 10651:6 10654:1 10659:1 10667:1 10707:1 10713:1 10719:1 10722:1 10725:3 10757:1 10758:1 10772:1 10792:1 10809:1 10818:1 10823:2 10837:1 10843:1 10847:11 10851:4 10862:1 10871:4 10872:1 10879:1 10887:1 10892:1 10897:1 10898:2 10912:2 10951:2 10952:1 10953:1 10961:4 10962:2 10970:2 10974:5 10979:2 10981:1 10985:3 10987:1 10993:3 11013:1 11016:1 11036:1 11046:6 11047:8 11050:1 11056:2 11062:1 11087:1 11103:4 11118:2 11126:1 11155:2 11159:2 11163:3 11168:3 11173:2 11186:2 11187:4 11188:1 11201:1 11211:3 11215:8 11223:3 11235:2 11266:1 11273:5 11280:2 11283:1 11284:1 11286:1 11297:1 11301:1 11325:3 11329:1 11337:5 11341:1 11344:1 11345:1 11346:1 11347:1 11348:1 11349:2 11352:2 11353:1 11368:4 11375:4 11394:1 11400:2 11405:2 11408:1 11415:1 11430:7 11447:4 11449:1 11451:2 11459:2 11463:2 11479:1 11486:1 11507:1 11509:2 11526:2 11584:3 11600:1 11607:1 11609:1 11632:1 11638:4 11640:1 11643:1 11653:1 11655:1 11705:1 11708:2 11712:4 11727:1 11739:2 11742:1 11747:1 11759:1 11790:1 11792:1 11800:1 11801:3 11807:1 11812:2 11813:1 11818:1 11823:1 11830:1 11832:1 11833:1 11834:1 11843:1 11853:1 11856:1 11857:2 11864:3 11874:1 11876:1 11883:1 11900:1 11906:2 11932:1 11937:1 11949:1 11960:1 11966:1 11974:2 11976:2 11979:1 11985:1 11990:1 11992:1 11994:1 11998:2 12033:1 12038:1 12050:5 12065:1 12076:2 12078:1 12084:1 12095:1 12097:1 12099:4 12114:1 12115:1 12126:1 12131:1 12144:3 12145:1 12146:2 12178:1 12181:1 12182:2 12184:1 12197:1 12218:1 12229:1 12245:1 12276:2 12287:1 12289:1 12323:1 12328:1 12337:1 12338:1 12346:8 12364:2 12365:2 12366:1 12372:1 12375:1 12381:6 12387:2 12396:1 12416:1 12425:1 12427:2 12432:1 12440:1 12444:1 12452:2 12456:1 12468:1 12483:1 12486:2 12488:2 12490:1 12491:1 12512:1 12542:1 12555:1 12556:4 12573:1 12575:3 12582:1 12583:2 12585:1 12586:1 12594:1 12614:7 12623:1 12635:2 12641:1 12652:2 12661:1 12662:3 12672:1 12683:1 12685:1 12698:2 12723:4 12739:2 12740:2 12741:5 12748:2 12754:1 12774:1 12797:3 12798:3 12800:5 12801:1 12822:1 12837:1 12839:2 12842:1 12843:1 12846:2 12874:1 12881:2 12930:1 12942:2 12943:1 12944:1 12945:2 12946:1 12950:5 12954:2 12961:2 12971:1 12980:1 12985:2 12988:6 12989:1 13014:2 13025:1 13032:1 13033:2 13058:2 13062:1 13072:1 13082:1 13094:1 13104:3 13125:1 13128:1 13140:2 13142:2 13153:10 13156:1 13171:1 13181:1 13187:1 13205:1 13206:1 13207:6 13212:1 13225:4 13229:1 13238:1 13258:1 13259:1 13288:1 13295:2 13304:1 13311:2 13324:1 13328:13 13333:3 13334:1 13336:1 13342:1 13345:1 13347:1 13362:1 13390:6 13406:1 13410:1 13417:1 13428:2 13431:1 13434:1 13435:1 13437:1 13445:3 13446:1 13449:3 13452:2 13453:2 13454:1 13459:1 13462:1 13470:1 13471:1 13482:1 13489:3 13502:1 13505:2 13525:2 13535:1 13542:1 13560:1 13561:1 13590:1 13593:2 13614:1 13615:1 13620:1 13637:4 13647:3 13662:3 13664:2 13668:1 13671:1 13680:5 13682:2 13688:2 13703:1 13707:1 13708:1 13718:1 13719:4 13729:1 13732:1 13733:2 13740:1 13760:1 13765:3 13766:1 13778:1 13780:1 13803:8 13807:3 13819:12 13823:2 13835:6 13857:1 13858:1 13865:2 13871:2 13876:1 13888:3 13895:2 13907:1 13908:2 13926:1 13928:5 13929:1 13931:1 13936:1 13947:1 13953:1 13970:3 13979:4 13986:1 13989:4 13994:2 13995:1 13996:2 14000:1 14007:2 14024:3 14026:2 14030:1 14031:1 14035:2 14041:1 14050:3 14051:7 14055:1 14071:2 14072:1 14073:1 14077:2 14088:1 14097:4 14114:1 14119:3 14127:2 14130:1 14137:1 14178:10 14181:2 14202:1 14204:2 14207:1 14218:1 14227:1 14229:3 14231:2 14252:2 14262:1 14265:2 14279:1 14286:1 14300:2 14302:1 14305:1 14317:1 14329:1 14332:3 14334:1 14341:1 14365:4 14366:11 14371:5 14380:1 14382:11 14383:3 14385:1 14386:1 14387:2 14391:2 14395:1 14403:1 14404:1 14417:1 14422:2 14434:1 14443:2 14465:2 14476:10 14477:3 14496:12 14503:1 14513:1 14516:9 14522:1 14541:1 14544:1 14549:1 14553:1 14556:1 14558:1 14564:1 14576:2 14577:2 14582:1 14583:1 14596:1 14610:1 14622:1 14630:4 14635:3 14638:1 14648:1 14649:1 14650:2 14654:1 14657:1 14665:2 14672:3 14674:1 14677:8 14678:4 14691:2 14696:1 14711:1 14717:1 14719:5 14727:1 14734:1 14740:6 14744:1 14747:10 14751:1 14762:5 14763:1 14764:1 14765:3 14768:1 14774:1 14776:1 14785:5 14802:1 14804:1 14807:1 14810:1 14824:1 14837:6 14844:1 14849:2 14851:1 14853:1 14864:5 14871:1 14877:1 14882:2 14885:5 14919:1 14934:2 14938:2 14946:3 14956:2 14962:1 14976:1 14981:2 14982:2 14987:1 14991:1 15002:1 15011:1 15015:1 15030:2 15035:2 15040:2 15067:1 15073:1 15080:2 15087:1 15089:1 15090:2 15097:1 15098:1 15100:1 15105:2 15111:1 15123:3 15133:1 15134:12 15135:1 15137:7 15142:1 15144:1 15160:2 15166:1 15169:1 15171:3 15183:1 15184:5 15196:1 15197:1 15201:2 15205:12 15233:2 15240:1 15251:2 15269:5 15282:5 15283:1 15287:1 15303:1 15307:42 15312:5 15322:1 15326:1 15344:1 15354:2 15360:1 15371:2 15374:1 15384:1 15396:6 15405:5 15409:1 15423:1 15424:1 15436:1 15444:1 15445:2 15452:2 15453:1 15460:3 15480:2214 15483:2 15492:2 15496:1 15507:1 15508:1 15518:1 15524:1 15554:1 15556:2 15560:1 15568:1 15570:1 15574:1 15591:1 15595:1 15599:2 15610:4 15617:2 15623:1 15625:1 15638:3 15639:4 15641:1 15642:2 15645:1 15646:1 15647:1 15649:4 15652:1 15655:6 15658:1 15661:1 15662:7 15678:2 15684:1 15723:1 15738:1 15742:2 15743:1 15763:3 15773:1 15776:10 15790:1 15814:1 15816:2 15847:1 15853:1 15855:1 15866:1 15869:1 15871:2 15875:1 15884:1 15896:1 15927:1 15929:4 15935:2 15938:1 15943:1 15949:6 15955:1 15957:1 15960:1 15966:2 15984:1 15994:1 15997:4 16008:1 16019:1 16036:1 16042:8 16043:2 16051:1 16052:1 16054:6 16056:1 16059:1 16074:1 16077:1 16078:1 16079:1 16094:1 16102:1 16103:1 16111:1 16112:1 16115:4 16118:1 16121:10 16147:1 16151:2 16152:5 16154:7 16161:1 16171:1 16177:1 16179:1 16187:1 16206:2 16228:1 16239:1 16254:1 16262:3 16267:1 16268:2 16270:1 16271:1 16273:2 16274:2 16277:1 16283:2 16287:1 16300:1 16302:2 16306:2 16308:1 16309:1 16310:1 16313:1 16318:1 16337:1 16341:1 16358:1 16370:3 16376:1 16387:6 16402:1 16409:4 16412:2 16426:1 16428:1 16438:1 16458:1 16474:1 16479:1 16484:6 16485:5 16488:1 16490:2 16495:3 16500:2 16503:2 16506:1 16509:2 16534:2 16547:1 16548:1 16577:2 16593:3 16603:1 16605:1 16611:1 16620:1 16623:1 16625:1 16630:3 16643:1 16652:2 16654:3 16659:1 16665:1 16670:1 16673:1 16679:1 16681:5 16682:1 16693:1 16718:2 16726:5 16727:1 16729:1 16732:1 16733:1 16735:1 16743:1 16744:3 16753:6 16754:1 16761:1 16763:1 16775:1 16777:1 16778:2 16780:1 16787:2 16792:1 16809:1 16815:6 16817:1 16853:1 16855:2 16861:4 16862:2 16867:4 16871:1 16875:1 16882:1 16895:1 16897:2 16919:1 16921:9 16928:1 16946:1 16964:1 16970:1 16971:1 16975:1 17001:3 17011:1 17013:1 17030:2 17037:1 17043:1 17048:1 17057:2 17058:1 17066:2 17085:2 17090:1 17107:1 17113:2 17123:1 17131:1 17136:5 17137:4 17166:1 17175:1 17176:1 17181:1 17185:1 17187:1 17188:1 17221:1 17237:7 17246:2 17248:1 17269:1 17275:6 17276:5 17286:1 17288:1 17296:1 17298:1 17303:1 17311:3 17316:2 17320:1 17331:2 17346:2 17347:1 17348:1 17357:1 17362:6 17363:2 17366:2 17367:1 17368:1 17387:9 17403:1 17404:1 17424:2 17440:1 17470:1 17485:4 17491:3 17492:1 17499:1 17515:1 17520:1 17553:2 17563:1 17569:1 17575:1 17580:1 17602:2 17605:1 17608:1 17616:2 17622:1 17623:4 17626:1 17631:2 17641:1 17649:1 17658:1 17660:1 17678:7 17706:2 17712:1 17724:3 17725:2 17730:1 17735:3 17739:1 17742:2 17743:1 17768:1 17772:2 17774:2 17775:1 17792:1 17795:1 17808:1 17822:1 17826:1 17827:1 17834:2 17838:2 17839:1 17852:1 17853:2 17855:4 17857:1 17862:1 17865:1 17886:2 17890:1 17900:1 17906:1 17908:1 17910:1 17915:2 17916:12 17919:1 17921:3 17922:1 17924:2 17925:1 17927:3 17943:3 17955:4 17956:1 17958:4 17962:2 17969:1 17975:1 17978:1 17979:1 17980:2 17983:2 17995:5 18009:4 18016:1 18025:2 18028:1 18035:1 18037:1 18038:2 18041:2 18042:1 18043:8 18053:4 18058:1 18064:1 18068:3 18069:1 18073:1 18079:1 18088:1 18092:1 18093:8 18116:1 18130:2 18146:1 18159:1 18165:1 18166:4 18168:4 18174:2 18177:1 18181:1 18189:1 18193:1 18197:2 18208:5 18210:2 18215:1 18248:1 18249:1 18266:1 18313:2 18320:1 18339:1 18356:1 18358:1 18360:1 18366:2 18367:1 18369:3 18370:2 18375:4 18378:2 18379:1 18406:3 18409:1 18410:3 18414:2 18423:1 18436:1 18447:1 18454:1 18468:1 18469:2 18474:3 18478:1 18479:2 18485:2 18491:2 18498:2 18504:1 18509:1 18511:3 18513:1 18523:1 18539:1 18555:1 18567:1 18568:1 18570:1 18572:1 18578:1 18580:1 18587:1 18602:1 18616:3 18617:1 18623:1 18629:1 18631:1 18645:1 18654:2 18664:1 18665:1 18674:2 18700:1 18702:4 18704:1 18727:4 18732:8 18736:1 18742:2 18747:1 18748:1 18750:1 18754:1 18755:1 18768:1 18784:1 18792:3 18800:2 18805:1 18816:1 18821:1 18849:1 18856:8 18857:1 18862:8 18867:1 18880:1 18881:3 18882:1 18884:1 18886:1 18901:2 18905:1 18916:1 18929:1 18930:2 18931:3 18934:1 18938:2 18941:6 18949:1 18980:1 19001:1 19011:1 19024:2 19033:4 19043:1 19048:1 19056:3 19059:1 19060:2 19076:1 19080:1 19085:2 19098:3 19108:5 19126:2 19134:3 19136:2 19139:1 19145:1 19146:1 19148:1 19150:1 19153:2 19172:1 19183:1 19193:2 19205:3 19207:3 19210:8 19226:3 19230:1 19249:1 19250:1 19258:1 19267:1 19275:2 19292:6 19293:1 19294:1 19302:4 19303:1 19322:1 19328:2 19331:1 19335:1 19337:5 19339:2 19354:1 19359:1 19365:1 19368:1 19373:2 19374:1 19386:1 19391:1 19392:2 19395:2 19402:1 19412:1 19416:1 19422:1 19425:1 19438:3 19440:1 19443:5 19446:1 19453:1 19469:1 19471:3 19475:1 19486:2 19487:7 19490:1 19507:1 19517:1 19522:1 19532:1 19544:4 19559:4 19561:1 19562:1 19564:1 19586:1 19587:1 19603:1 19610:1 19612:1 19613:1 19637:1 19638:1 19644:2 19645:1 19678:1 19683:1 19702:1 19706:1 19710:1 19714:1 19716:1 19730:2 19745:1 19753:1 19755:1 19757:1 19762:8 19767:1 19773:1 19792:1 19804:1 19805:2 19810:5 19813:2 19837:1 19844:1 19847:1 19849:1 19886:1 19897:4 19901:1 19902:2 19909:1 19912:1 19924:1 19928:3 19962:1 19966:2 19972:1 19992:1 20000:1 20004:1 20015:2 20034:1 20040:5 20072:1 20080:4 20083:1 20084:5 20096:2 20098:1 20103:1 20108:1 20109:5 20111:1 20118:1 20128:1 20137:1 20138:1 20152:1 20165:1 20180:1 20208:1 20218:1 20223:1 20224:1 20226:1 20227:1 20235:1 20239:1 20247:2 20251:1 20252:1 20253:1 20258:2 20261:1 20266:1 20267:1 20270:4 20275:1 20278:1 20293:1 20304:1 20316:2 20317:3 20318:9 20319:1 20320:1 20326:3 20327:4 20331:3 20332:4 20333:1 20334:5 20336:1 20337:6 20338:1 20341:1 20343:8 20344:7 20350:1 20353:1 20356:1 20371:1 20373:1 20378:5 20380:1 20383:3 20391:1 20397:1 20398:7 20399:3 20406:1 20411:1 20413:1 20424:1 20435:1 20436:1 20440:1 20441:2 20442:10 20447:8 20448:3 20464:1 20469:3 20470:1 20496:3 20502:3 20505:1 20510:1 20512:4 20529:2 20552:1 20560:1 20576:4 20595:4 20611:1 20614:1 20619:1 20621:1 20627:1 20629:2 20631:7 20653:1 20659:1 20668:5 20686:1 20694:1 20696:1 20717:1 20718:2 20727:1 20733:1 20738:3 20740:1 20742:8 20745:1 20761:7 20762:1 20769:1 20785:13 20787:1 20812:1 20818:1 20829:7 20831:1 20850:1 20853:1 20871:1 20872:2 20874:1 20887:2 20890:2 20930:1 20936:1 20949:12 20962:6 20973:2 20995:1 21007:1 21011:1 21012:1 21017:1 21021:2 21056:1 21062:2 21065:2 21077:1 21089:1 21099:1 21100:2 21107:2 21108:6 21111:1 21112:1 21113:1 21123:2 21133:1 21134:2 21138:1 21139:1 21146:1 21150:6 21173:1 21198:7 21199:5 21208:2 21209:5 21218:2 21219:1 21224:1 21225:2 21227:2 21228:1 21245:1 21249:1 21258:1 21293:2 21306:1 21312:1 21327:1 21337:5 21350:1 21353:1 21359:1 21361:4 21380:1 21400:1 21402:1 21410:1 21430:1 21434:2 21473:1 21480:1 21482:1 21485:2 21486:1 21490:1 21508:1 21520:1 21529:4 21539:4 21543:1 21546:1 21556:1 21557:5 21561:2 21567:1 21571:1 21582:3 21584:1 21586:1 21588:1 21595:1 21602:2 21610:7 21613:1 21622:1 21627:1 21630:1 21633:1 21642:4 21644:1 21645:1 21650:1 21663:2 21675:1 21684:2 21697:1 21703:1 21718:1 21723:1 21741:1 21760:42 21773:7 21774:1 21782:5 21783:1 21784:1 21787:2 21791:1 21794:1 21812:1 21830:1 21831:2 21838:1 21844:1 21846:1 21856:1 21868:1 21878:2 21887:2 21904:1 21914:2 21916:6 21922:1 21926:1 21927:1 21943:1 21944:1 21948:1 21982:1 21995:3 21996:1 21997:1 21998:1 22007:1 22010:1 22015:1 22016:1 22024:1 22027:4 22035:1 22037:1 22041:1 22048:3 22078:1 22080:1 22094:1 22109:1 22119:2 22123:1 22132:1 22142:1 22144:1 22163:10 22179:1 22192:1 22208:1 22211:1 22215:1 22218:1 22223:2 22229:2 22233:1 22243:1 22245:7 22247:1 22251:1 22256:1 22263:1 22279:2 22281:1 22315:1 22320:1 22325:1 22328:1 22331:19 22334:1 22340:1 22360:1 22368:1 22376:3 22378:1 22383:1 22410:2 22415:1 22417:1 22431:1 22434:2 22455:1 22460:1 22465:1 22466:3 22472:1 22478:1 22481:1 22491:1 22493:1 22504:1 22513:1 22517:2 22520:7 22534:2 22548:3 22551:4 22552:1 22561:1 22585:1 22587:1 22598:1 22601:1 22602:1 22611:6 22617:1 22623:1 22627:1 22644:2 22646:2 22647:1 22655:1 22658:1 22662:1 22669:4 22690:5 22699:7 22707:2 22709:1 22715:1 22730:1 22734:2 22736:1 22749:3 22755:9 22756:1 22759:4 22760:2 22761:1 22769:1 22779:1 22786:6 22787:1 22795:2 22799:1 22802:1 22803:7 22809:1 22812:1 22815:1 22818:1 22820:1 22822:1 22828:1 22830:2 22831:2 22846:2 22864:1 22865:1 22866:1 22874:3 22876:1 22895:1 22902:1 22903:1 22905:2 22914:1 22916:2 22924:1 22931:1 22937:1 22942:1 22948:1 22982:1 23000:3 23001:1 23003:1 23011:1 23027:5 23032:1 23039:1 23064:2 23071:1 23075:1 23076:3 23084:1 23089:8 23109:13 23118:1 23125:3 23127:3 23128:1 23143:1 23151:1 23155:1 23166:1 23167:2 23175:1 23185:1 23188:1 23196:2 23198:1 23201:1 23226:1 23237:4 23248:1 23256:1 23263:1 23264:1 23284:3 23293:1 23295:1 23298:3 23299:1 23300:2 23305:1 23307:1 23314:5 23331:1 23333:1 23335:1 23341:1 23344:5 23349:1 23360:3 23361:1 23363:1 23378:1 23384:3 23385:2 23386:2 23391:1 23392:1 23393:2 23404:4 23413:2 23416:1 23424:2 23430:24 23431:2 23433:2 23435:1 23456:2 23466:4 23476:2 23491:1 23496:1 23507:1 23521:1 23524:1 23551:2 23558:1 23586:8 23588:1 23592:1 23603:5 23609:1 23610:7 23616:6 23620:1 23623:2 23626:7 23646:1 23647:6 23655:4 23659:2 23674:1 23676:1 23685:1 23703:1 23712:1 23713:1 23719:1 23720:2 23722:1 23723:1 23733:1 23736:1 23739:3 23741:4 23744:1 23767:1 23768:1 23775:18 23777:2 23784:1 23797:2 23828:1 23835:7 23836:1 23840:1 23847:1 23853:1 23858:6 23862:1 23865:1 23866:9 23869:1 23871:1 23885:2 23891:1 23893:1 23923:1 23940:2 23949:1 23950:1 23952:1 23967:1 23971:4 23974:4 23991:1 23993:1 23994:1 24003:1 24004:1 24034:1 24039:4 24051:1 24054:1 24070:3 24076:1 24081:1 24095:1 24096:3 24100:1 24126:5 24128:1 24129:1 24132:1 24137:2 24143:1 24151:1 24162:2 24164:1 24168:1 24170:7 24179:1 24213:1 24225:1 24239:1 24251:1 24257:1 24265:2 24266:8 24267:1 24271:1 24274:1 24275:1 24276:1 24280:1 24286:1 24287:1 24292:1 24296:1 24307:2 24326:1 24330:2 24332:1 24341:3 24350:1 24370:3 24373:1 24385:1 24394:1 24398:1 24401:6 24407:1 24410:1 24411:5 24412:1 24438:3 24441:1 24463:1 24473:1 24476:5 24477:2 24478:1 24482:1 24483:5 24485:1 24487:4 24503:7 24525:2 24530:6 24536:3 24538:1 24568:1
14 9:2 30:1 34:1 56:1 59:1 71:1 75:1 96:3 112:1 146:1 157:4 162:1 163:1 185:8 186:9 188:2 196:1 197:1 204:1 216:1 219:3 223:2 224:1 230:1 233:1 239:1 242:1 243:1 247:1 253:1 254:9 256:1 260:2 265:1 270:1 282:1 295:1 296:7 308:1 314:1 318:3 320:2 323:1 336:1 346:2 375:1 376:2 379:1 407:3 450:1 457:10 469:1 501:3 510:1 524:1 525:1 527:6 541:1 545:2 547:1 565:3 592:2 599:1 607:1 619:1 636:1 663:1 699:1 704:2 708:4 713:1 714:1 721:1 724:1 731:1 732:2 748:3 749:1 753:1 759:7 762:1 763:1 764:2 766:1 772:1 777:1 779:1 785:4 789:2 802:1 811:1 814:6 831:3 833:1 834:3 838:1 851:3 864:2 869:2 875:1 880:1 881:1 884:2 888:1 889:2 892:1 895:2 900:2 907:1 909:1 911:1 912:1 914:2 922:1 927:1 932:1 933:1 942:1 946:2 949:1 965:1 969:2 980:2 1000:1 1009:3 1011:2 1021:1 1023:2 1044:1 1045:1 1046:3 1048:1 1051:7 1053:1 1055:1 1059:4 1068:1 1077:1 1094:3 1095:1 1098:1 1114:1 1124:1 1125:1 1127:1 1128:1 1141:1 1153:2 1155:1 1160:1 1168:1 1171:6 1172:3 1187:3 1205:1 1217:1 1220:5 1226:1 1229:2 1256:2 1259:6 1264:4 1278:1 1285:1 1292:1 1293:2 1297:1 1299:1 1301:1 1321:1 1332:4 1344:1 1356:2 1360:3 1369:1 1381:5 1398:1 1401:8 1405:1 1413:1 1424:1 1425:2 1439:1 1448:1 1452:1 1453:1 1470:1 1507:7 1510:1 1517:5 1526:1 1529:1 1535:1 1536:1 1538:2 1545:2 1546:1 1564:5 1570:1 1585:1 1589:2 1591:4 1603:1 1616:2 1617:3 1621:1 1622:2 1626:1 1627:1 1628:1 1629:1 1640:1 1654:2 1659:1 1673:1 1674:1 1683:1 1701:1 1703:1 1710:1 1715:1 1723:1 1727:1 1730:1 1731:6 1737:1 1745:1 1754:1 1759:1 1766:11 1781:2 1785:1 1798:1 1809:6 1818:1 1826:4 1829:1 1834:1 1838:3 1842:1 1846:3 1856:7 1863:1 1874:2 1879:1 1880:1 1882:2 1883:2 1885:2 1888:1 1891:2 1904:2 1908:1 1910:2 1911:1 1912:4 1938:4 1941:1 1942:2 1945:9 1947:3 1953:1 1954:5 1955:2 1957:1 1960:1 1963:3 1965:3 1968:6 1970:2 1973:2 1976:4 1978:1 1991:1 2000:1 2009:1 2015:1 2020:1 2028:1 2040:2 2042:1 2047:1 2049:1 2051:2 2053:1 2061:1 2065:2 2071:1 2076:2 2077:2 2112:1 2128:1 2129:1 2131:1 2134:3 2149:1 2157:1 2164:1 2172:2 2178:2 2183:2 2193:1 2198:1 2208:1 2226:4 2229:1 2234:2 2254:1 2274:2 2275:2 2277:1 2286:2 2295:1 2298:1 2303:1 2305:1 2321:5 2325:3 2333:1 2349:1 2358:1 2366:3 2372:1 2380:2 2381:1 2383:5 2389:1 2390:7 2394:1 2400:1 2414:1 2419:2 2425:1 2426:1 2433:1 2448:1 2451:3 2462:46 2464:2 2465:1 2469:1 2470:1 2480:2 2486:1 2504:1 2507:11 2513:2 2519:11 2529:1 2530:2 2565:5 2576:2 2587:2 2593:1 2597:2 2609:1 2627:4 2638:1 2691:1 2704:1 2706:1 2709:1 2731:3 2736:11 2742:2 2746:1 2754:1 2762:1 2770:1 2779:3 2780:3 2785:2 2787:1 2798:2 2801:1 2802:10 2821:1 2826:1 2834:2 2837:1 2844:1 2846:1 2848:3 2849:1 2854:2 2855:2 2879:1 2886:11 2895:1 2901:1 2919:3 2936:1 2954:2 2979:1 2980:1 2994:1 3002:2 3003:1 3020:4 3027:1 3041:1 3042:1 3049:5 3050:1 3060:1 3061:1 3064:1 3072:1 3076:1 3077:7 3090:1 3098:1 3099:2 3113:1 3116:1 3131:1 3132:1 3133:1 3147:3 3149:1 3153:1 3173:1 3179:1 3183:1 3184:16 3204:1 3206:2 3213:2 3221:4 3223:1 3225:1 3231:1 3234:7 3245:1 3248:1 3266:1 3285:1 3287:2 3292:1 3295:2 3297:5 3304:1 3310:2 3312:1 3315:1 3322:1 3324:1 3326:3 3328:2 3332:1 3342:1 3351:1 3353:1 3369:3 3372:1 3375:1 3379:1 3404:1 3407:2 3408:2 3414:1 3416:2 3418:1 3462:1 3494:1 3499:1 3518:2 3519:1 3520:1 3522:1 3524:1 3525:1 3545:1 3546:2 3547:2 3562:1 3563:1 3572:1 3581:2 3588:2 3598:1 3606:1 3612:1 3615:1 3618:3 3631:1 3641:16 3649:1 3660:1 3667:1 3677:1 3678:3 3679:1 3687:1 3707:1 3712:2 3735:1 3738:1 3741:1 3744:1 3766:1 3774:1 3776:1 3783:1 3786:1 3804:1 3831:1 3837:4 3841:1 3854:1 3878:1 3886:3 3889:1 3907:3 3908:3 3909:2 3915:1 3918:2 3938:6 3963:3 3964:1 3966:1 3967:1 3976:1 3979:1 3984:2 3995:8 3998:8 4005:2 4012:1 4026:1 4046:1 4051:1 4060:1 4061:1 4062:3 4083:1 4091:2 4093:1 4102:1 4107:20 4108:4 4109:1 4120:2 4128:1 4136:3 4145:1 4154:1 4163:2 4183:1 4186:1 4190:2 4195:1 4198:15 4211:3 4212:6 4213:3 4216:1 4218:3 4221:1 4223:1 4224:1 4225:1 4229:1 4234:1 4236:4 4237:2 4238:4 4244:3 4268:1 4305:1 4325:1 4332:2 4333:1 4340:1 4353:1 4354:1 4368:1 4371:2 4374:2 4375:6 4376:1 4382:1 4399:1 4400:1 4409:1 4413:2 4423:1 4434:1 4447:2 4460:1 4464:1 4469:1 4471:2 4497:1 4498:3 4505:1 4512:1 4518:5 4519:3 4525:1 4534:2 4539:1 4541:1 4542:1 4551:1 4566:1 4569:2 4572:2 4581:1 4586:1 4587:1 4592:1 4599:4 4608:1 4609:2 4611:1 4620:1 4621:1 4622:1 4636:1 4655:1 4667:1 4668:1 4673:1 4683:2 4684:3 4710:3 4722:1 4724:1 4734:1 4744:1 4759:1 4768:1 4773:1 4784:1 4792:1 4796:4 4814:2 4820:1 4821:2 4825:1 4829:1 4832:2 4853:1 4876:2 4889:2 4892:1 4894:3 4901:2 4909:1 4931:1 4963:1 4986:1 4993:1 5000:1 5003:2 5016:3 5024:1 5037:1 5044:1 5047:1 5049:3 5071:4 5072:1 5076:1 5077:1 5088:2 5093:1 5095:1 5100:2 5124:1 5127:1 5146:1 5187:1 5192:1 5201:2 5202:1 5203:1 5224:1 5232:1 5247:1 5248:1 5253:1 5254:1 5258:2 5262:1 5269:1 5283:1 5308:5 5310:1 5313:1 5322:9 5325:5 5326:2 5332:6 5333:3 5337:4 5338:2 5339:2 5340:3 5342:1 5344:1 5347:6 5349:13 5350:1 5352:5 5354:4 5451:11 5484:1 5488:1 5492:1 5500:1 5520:2 5529:1 5530:1 5531:1 5533:2 5534:1 5535:1 5585:1 5595:1 5599:4 5604:1 5608:1 5610:2 5627:1 5640:1 5670:1 5674:1 5681:2 5683:1 5686:4 5688:3 5702:11 5711:1 5712:1 5719:2 5721:1 5726:1 5730:1 5746:3 5752:1 5783:1 5788:2 5807:2 5813:2 5815:1 5828:1 5849:1 5860:1 5865:3 5871:1 5874:3 5878:3 5889:1 5900:1 5931:2 5939:1 5947:6 5948:3 5952:1 5968:2 5998:1 6005:2 6017:1 6034:1 6042:1 6044:1 6045:1 6046:1 6047:2 6049:1 6050:1 6056:1 6062:1 6071:1 6079:1 6087:1 6112:3 6116:2 6126:1 6128:1 6131:1 6139:2 6145:2 6151:1 6175:2 6183:11 6187:1 6194:1 6207:1 6235:1 6237:2 6289:1 6293:1 6311:4 6324:1 6355:3 6364:2 6365:9 6373:1 6378:1 6381:2 6382:2 6386:2 6402:1 6405:1 6407:1 6409:1 6410:1 6412:1 6416:2 6417:1 6418:1 6422:1 6429:50 6433:1 6434:1 6436:1 6440:1 6448:1 6449:3 6451:8 6459:4 6468:1 6475:1 6486:1 6491:1 6492:1 6493:1 6510:1 6525:1 6526:4 6532:2 6542:1 6554:1 6560:1 6578:1 6589:1 6597:1 6616:1 6619:2 6643:1 6661:3 6667:1 6669:1 6675:1 6678:2 6685:1 6687:1 6706:1 6707:2 6711:2 6715:1 6716:3 6723:5 6756:1 6769:1 6781:1 6789:1 6791:1 6794:3 6796:2 6802:1 6804:1 6810:5 6824:4 6834:1 6839:3 6843:1 6846:1 6847:1 6854:4 6859:17 6908:4 6911:1 6920:1 6931:1 6937:1 6981:4 6991:1 7016:1 7021:1 7022:1 7027:2 7033:1 7038:1 7045:1 7047:1 7054:6 7059:2 7068:11 7096:2 7097:1 7104:1 7108:1 7116:1 7122:1 7132:1 7137:1 7157:4 7160:1 7163:1 7165:1 7166:1 7169:3 7170:2 7177:1 7178:2 7179:1 7181:2 7182:1 7190:1 7194:1 7199:1 7202:1 7215:1 7216:3 7221:1 7235:1 7245:1 7246:2 7251:1 7268:1 7273:1 7285:14 7303:2 7322:1 7360:1 7361:6 7363:1 7374:1 7377:1 7379:1 7382:2 7391:2 7400:11 7402:2 7409:2 7414:1 7418:2 7419:1 7427:2 7430:1 7432:3 7435:1 7438:3 7443:1 7444:1 7445:1 7450:5 7451:1 7456:3 7457:5 7459:2 7460:1 7461:7 7462:1 7464:2 7465:2 7471:1 7487:1 7499:1 7510:2 7527:1 7550:1 7552:1 7553:2 7554:2 7564:2 7571:5 7572:1 7576:1 7581:8 7588:1 7589:1 7605:1 7614:3 7615:1 7622:1 7626:1 7638:1 7648:4 7656:1 7658:3 7670:1 7671:1 7682:2 7686:1 7701:1 7702:1 7709:1 7712:5 7741:1 7742:1 7743:1 7751:1 7753:3 7754:1 7761:1 7768:1 7773:14 7778:1 7782:1 7787:4 7799:1 7803:1 7804:1 7810:2 7816:1 7820:3 7841:2 7860:2 7868:2 7872:1 7880:1 7887:3 7905:1 7908:1 7912:1 7923:1 7929:4 7930:1 7950:3 7964:2 7972:1 7979:1 7982:1 7988:5 7999:1 8002:1 8005:1 8023:1 8030:1 8049:1 8065:12 8070:8 8079:1 8081:12 8082:8 8099:5 8107:1 8110:1 8140:1 8158:1 8162:4 8171:3 8174:1 8175:3 8176:11 8189:2 8195:1 8206:5 8207:3 8216:1 8229:2 8230:1 8234:18 8235:1 8249:2 8256:1 8272:2 8279:1 8282:1 8284:1 8285:8 8296:2 8304:2 8311:2 8317:1 8318:1 8320:1 8328:6 8332:1 8339:1 8343:1 8348:1 8350:1 8352:7 8355:1 8357:2 8359:4 8361:1 8364:2 8376:1 8383:1 8387:4 8404:2 8428:1 8433:3 8437:1 8443:2 8469:10 8471:1 8472:1 8508:1 8553:2 8567:2 8568:2 8574:1 8582:2 8583:1 8593:2 8597:3 8598:8 8603:1 8605:1 8614:1 8617:1 8618:1 8623:1 8630:1 8632:1 8635:1 8637:1 8656:3 8657:1 8670:1 8672:1 8681:2 8690:2 8692:1 8702:2 8709:1 8711:1 8714:3 8719:1 8726:1 8727:3 8731:1 8736:4 8753:3 8759:9 8761:1 8771:1 8773:1 8778:1 8782:3 8783:1 8785:1 8794:1 8795:2 8800:2 8802:10 8809:5 8812:1 8814:6 8822:1 8830:1 8831:2 8832:5 8833:5 8836:1 8849:1 8878:2 8891:8 8900:4 8901:1 8910:4 8911:1 8914:2 8916:6 8944:1 8955:1 8968:1 8974:2 8979:1 8983:2 8993:1 8996:1 8998:2 8999:1 9000:1 9002:5 9022:1 9027:1 9038:1 9058:4 9060:1 9062:2 9063:1 9067:1 9084:1 9097:1 9101:9 9102:9 9120:4 9123:1 9127:2 9132:1 9138:1 9140:1 9142:2 9149:1 9156:1 9166:1 9173:1 9181:1 9183:1 9185:3 9192:1 9222:2 9227:1 9239:1 9240:2 9243:1 9252:8 9263:1 9313:2 9318:1 9336:1 9338:1 9346:1 9363:1 9377:4 9392:1 9400:1 9403:6 9419:1 9426:1 9440:2 9441:1 9455:8 9462:2 9466:1 9488:7 9495:1 9497:1 9532:14 9536:2 9547:1 9550:4 9562:2 9563:3 9565:2 9575:2 9596:1 9599:1 9607:1 9619:1 9622:2 9624:1 9645:1 9653:1 9656:2 9682:6 9683:1 9688:2 9690:1 9691:1 9697:1 9698:1 9700:1 9710:2 9716:2 9723:3 9729:2 9738:2 9743:1 9745:1 9756:1 9772:2 9810:3 9818:1 9823:5 9824:1 9850:1 9859:2 9867:1 9877:1 9878:1 9881:1 9884:1 9890:1 9891:1 9900:1 9918:3 9922:1 9923:1 9924:5 9941:2 9944:1 9949:1 9958:1 9963:1 9974:1 9999:1 10021:1 10022:3 10037:1 10040:2 10042:2 10045:1 10046:1 10052:2 10053:3 10054:3 10070:1 10073:1 10074:3 10090:6 10117:1 10126:1 10169:5 10172:1 10176:1 10204:1 10211:1 10217:1 10218:6 10220:1 10232:1 10254:1 10278:4 10311:1 10316:1 10318:3 10319:1 10324:1 10329:1 10353:1 10355:1 10360:2 10369:1 10370:1 10384:8 10406:1 10457:1 10465:1 10480:37 10502:1 10503:5 10524:1 10530:1 10531:4 10537:1 10539:1 10540:1 10551:1 10554:2 10576:1 10597:1 10598:5 10600:1 10617:2 10648:2 10651:7 10654:1 10659:1 10667:1 10707:1 10713:1 10719:1 10722:1 10725:3 10757:1 10758:1 10772:1 10792:1 10809:1 10818:1 10823:2 10837:1 10843:1 10847:11 10851:4 10862:1 10871:4 10872:1 10879:1 10887:1 10892:1 10897:1 10898:2 10912:2 10951:2 10952:1 10953:1 10961:4 10962:2 10970:2 10974:5 10979:2 10981:1 10985:3 10987:1 10993:3 11013:1 11014:1 11016:1 11036:1 11046:6 11047:8 11050:1 11056:2 11062:1 11087:1 11103:4 11118:2 11126:1 11155:2 11159:2 11163:3 11168:3 11173:2 11186:2 11187:4 11188:1 11201:1 11211:3 11215:8 11223:3 11235:2 11266:1 11273:5 11280:2 11283:1 11284:1 11286:1 11297:1 11301:1 11325:3 11329:1 11337:5 11341:1 11344:1 11345:1 11346:1 11347:1 11348:1 11349:2 11352:2 11353:1 11368:4 11375:4 11394:1 11400:2 11405:2 11408:1 11415:1 11430:8 11447:4 11449:1 11451:2 11459:3 11463:2 11479:1 11486:1 11507:1 11509:2 11526:2 11584:3 11600:1 11607:1 11609:1 11632:1 11638:4 11640:1 11643:1 11653:1 11655:1 11705:1 11708:2 11712:4 11727:1 11739:2 11742:1 11747:1 11759:1 11790:1 11792:1 11800:1 11801:3 11807:1 11812:2 11813:2 11818:1 11823:1 11830:1 11832:1 11833:1 11834:1 11843:1 11853:1 11856:1 11857:2 11864:3 11874:1 11876:1 11883:1 11900:1 11906:2 11932:1 11937:1 11949:1 11960:1 11966:1 11974:2 11976:2 11979:1 11985:1 11990:1 11992:1 11994:1 11998:2 12033:1 12038:1 12050:5 12065:1 12076:2 12078:1 12084:1 12095:1 12097:1 12099:4 12114:1 12115:1 12126:1 12131:1 12144:3 12145:1 12146:2 12178:1 12181:1 12182:2 12184:1 12197:1 12218:1 12227:1 12229:1 12245:1 12276:3 12287:1 12289:1 12323:1 12328:1 12337:1 12338:1 12346:8 12364:2 12365:2 12366:1 12372:1 12375:1 12381:6 12387:2 12390:1 12396:1 12416:1 12425:1 12427:2 12432:1 12440:1 12444:1 12452:2 12456:1 12468:1 12483:1 12486:2 12488:2 12490:1 12491:1 12512:1 12542:1 12555:1 12556:4 12573:1 12575:3 12582:1 12583:2 12585:1 12586:1 12594:1 12614:8 12623:1 12627:1 12635:2 12641:1 12652:2 12661:1 12662:3 12672:1 12683:1 12685:1 12698:2 12723:4 12739:2 12740:2 12741:5 12748:2 12754:1 12774:1 12797:3 12798:3 12800:5 12801:1 12822:1 12837:1 12839:2 12842:1 12843:1 12846:2 12874:1 12881:2 12930:1 12942:2 12943:1 12944:1 12945:2 12946:1 12950:5 12954:2 12961:2 12971:1 12980:1 12985:2 12988:6 12989:1 13014:2 13025:1 13032:1 13033:2 13058:2 13062:1 13072:1 13082:1 13094:1 13104:3 13125:2 13128:1 13140:3 13142:2 13153:10 13156:1 13171:1 13181:1 13187:1 13205:1 13206:1 13207:6 13212:1 13225:4 13229:1 13238:1 13258:1 13259:1 13288:1 13295:2 13304:1 13311:2 13324:1 13328:15 13333:3 13334:1 13336:1 13342:1 13345:1 13347:1 13362:1 13390:6 13406:1 13410:1 13417:1 13428:2 13431:1 13434:1 13435:1 13437:1 13445:3 13446:1 13449:3 13452:2 13453:2 13454:1 13459:1 13462:1 13466:1 13470:1 13471:1 13482:1 13489:3 13502:1 13505:2 13525:2 13535:1 13542:1 13560:1 13561:1 13590:1 13593:2 13614:1 13615:1 13620:1 13637:4 13647:3 13662:3 13664:2 13668:1 13671:1 13680:5 13682:2 13688:3 13703:1 13707:1 13708:1 13718:1 13719:4 13729:1 13732:1 13733:2 13740:1 13760:1 13765:3 13766:1 13778:1 13780:1 13803:8 13807:3 13819:12 13823:2 13835:6 13857:1 13858:1 13865:2 13871:2 13876:1 13888:3 13895:3 13907:1 13908:2 13926:1 13928:5 13929:1 13931:1 13936:1 13947:1 13953:1 13970:3 13979:4 13986:1 13989:4 13994:3 13995:1 13996:2 14000:1 14007:2 14024:3 14026:2 14030:1 14031:2 14035:2 14041:1 14050:3 14051:8 14055:1 14071:2 14072:1 14073:1 14077:2 14088:1 14097:4 14114:1 14119:3 14127:2 14130:1 14137:1 14178:11 14181:2 14202:1 14204:2 14207:1 14218:1 14227:1 14229:3 14231:2 14252:2 14262:1 14265:2 14279:1 14286:1 14300:2 14302:1 14305:1 14317:1 14329:1 14332:3 14334:1 14341:1 14365:4 14366:11 14371:5 14380:1 14381:1 14382:12 14383:3 14385:1 14386:1 14387:2 14391:2 14395:1 14403:1 14404:1 14417:1 14422:2 14434:1 14443:2 14465:2 14476:10 14477:3 14496:12 14503:1 14513:1 14516:10 14522:1 14541:1 14544:1 14549:1 14553:1 14556:1 14558:1 14564:1 14576:2 14577:2 14582:1 14583:1 14596:1 14610:1 14622:1 14630:4 14635:3 14638:1 14648:1 14649:1 14650:2 14654:1 14657:1 14665:2 14672:3 14674:1 14677:8 14678:4 14691:2 14696:1 14711:1 14717:1 14719:5 14727:1 14734:1 14740:7 14744:1 14747:10 14751:1 14762:5 14763:1 14764:1 14765:3 14768:1 14774:1 14776:1 14785:5 14802:1 14804:1 14807:1 14810:1 14824:1 14837:6 14844:1 14849:2 14851:1 14853:1 14856:1 14864:5 14871:1 14877:1 14882:2 14885:5 14919:1 14934:2 14938:2 14946:3 14956:2 14962:1 14976:1 14981:2 14982:2 14987:1 14991:1 15002:1 15011:1 15015:1 15030:2 15035:2 15040:2 15067:1 15073:1 15080:2 15087:1 15089:1 15090:2 15097:1 15098:1 15100:1 15105:2 15111:1 15123:3 15133:1 15134:12 15135:1 15137:7 15142:1 15144:1 15160:2 15166:1 15169:1 15171:3 15183:1 15184:5 15196:1 15197:1 15201:2 15205:12 15233:2 15240:1 15251:2 15269:5 15282:5 15283:1 15287:1 15303:1 15307:44 15312:5 15322:1 15326:1 15344:1 15354:2 15360:1 15371:2 15374:1 15384:1 15396:6 15405:6 15409:1 15423:1 15424:1 15436:1 15444:1 15445:2 15452:2 15453:1 15460:3 15480:2273 15483:2 15492:2 15496:1 15507:1 15508:1 15518:1 15524:1 15554:1 15556:2 15560:1 15568:1 15570:1 15574:1 15591:1 15595:1 15599:2 15610:4 15617:3 15623:1 15625:1 15638:3 15639:4 15641:1 15642:2 15645:1 15646:1 15647:1 15649:4 15652:1 15655:6 15658:1 15661:1 15662:7 15678:2 15684:1 15723:1 15738:1 15742:2 15743:1 15763:3 15773:1 15776:11 15790:1 15814:1 15816:2 15847:1 15853:1 15855:1 15866:1 15869:1 15871:2 15875:1 15884:1 15896:1 15927:1 15929:4 15935:2 15938:1 15943:1 15949:6 15955:1 15957:1 15960:1 15966:2 15984:1 15994:1 15997:4 16008:1 16019:1 16036:1 16042:8 16043:2 16051:1 16052:1 16054:6 16056:1 16059:1 16074:1 16077:3 16078:1 16079:1 16094:1 16102:1 16103:1 16111:1 16112:1 16115:4 16118:1 16121:10 16139:1 16147:1 16151:2 16152:7 16154:8 16161:1 16171:1 16177:1 16179:1 16187:1 16206:2 16228:1 16239:1 16254:1 16262:3 16267:1 16268:2 16270:1 16271:1 16273:2 16274:2 16277:1 16283:2 16287:1 16300:1 16302:2 16306:2 16308:1 16309:1 16310:1 16313:1 16318:1 16337:1 16341:1 16358:1 16370:3 16376:1 16387:6 16402:1 16409:4 16412:2 16426:1 16428:1 16438:1 16458:1 16474:1 16479:1 16484:7 16485:5 16488:1 16490:2 16495:3 16500:3 16503:2 16506:1 16509:2 16534:2 16547:1 16548:1 16577:2 16593:4 16603:1 16605:1 16611:1 16620:1 16623:1 16625:1 16630:3 16643:1 16652:2 16654:3 16659:1 16665:1 16670:1 16673:1 16679:1 16681:5 16682:1 16693:1 16718:2 16726:5 16727:1 16729:1 16732:1 16733:1 16735:1 16743:1 16744:4 16753:7 16754:1 16761:1 16763:1 16775:1 16777:1 16778:2 16780:1 16787:2 16792:1 16809:1 16815:6 16817:1 16853:1 16855:2 16861:5 16862:2 16867:5 16871:1 16875:1 16882:1 16895:1 16897:2 16919:1 16921:9 16928:1 16946:2 16964:1 16970:1 16971:1 16975:1 17001:3 17011:1 17013:1 17030:2 17037:1 17043:1 17048:1 17057:2 17058:1 17066:2 17085:2 17090:1 17107:1 17113:2 17123:1 17131:1 17136:5 17137:4 17166:1 17175:1 17176:1 17181:1 17185:1 17187:1 17188:1 17221:1 17237:7 17246:2 17248:1 17269:1 17275:7 17276:5 17286:1 17288:1 17296:1 17298:1 17303:1 17311:3 17316:2 17320:1 17331:2 17346:2 17347:1 17348:1 17357:1 17362:6 17363:2 17366:2 17367:1 17368:1 17387:9 17403:1 17404:1 17424:2 17440:1 17470:1 17485:4 17491:3 17492:1 17499:1 17515:1 17520:1 17553:2 17563:1 17569:1 17575:1 17580:1 17602:2 17605:1 17608:1 17616:2 17622:1 17623:4 17626:1 17631:2 17641:1 17645:1 17649:1 17658:1 17660:1 17678:8 17689:1 17706:2 17712:1 17724:3 17725:2 17730:1 17735:3 17739:1 17742:2 17743:1 17768:1 17772:2 17774:2 17775:1 17792:1 17795:1 17808:1 17822:1 17826:1 17827:1 17834:2 17838:2 17839:1 17852:1 17853:2 17855:4 17857:1 17862:1 17865:1 17886:2 17890:1 17900:1 17906:1 17908:1 17910:1 17915:2 17916:12 17919:1 17921:3 17922:1 17924:2 17925:1 17927:3 17943:3 17955:4 17956:1 17958:4 17962:2 17969:1 17975:1 17978:1 17979:1 17980:2 17983:3 17995:5 18009:4 18016:1 18025:2 18028:1 18035:1 18037:1 18038:2 18041:2 18042:1 18043:8 18053:4 18058:1 18064:1 18068:3 18069:1 18073:1 18079:1 18088:1 18092:1 18093:8 18116:1 18130:2 18146:1 18159:1 18165:1 18166:4 18168:4 18174:2 18177:1 18181:1 18189:1 18193:1 18197:2 18208:5 18210:2 18215:1 18248:1 18249:1 18266:1 18313:2 18320:1 18339:1 18356:1 18358:1 18360:1 18366:2 18367:1 18369:3 18370:2 18375:4 18378:2 18379:1 18406:3 18409:1 18410:3 18414:3 18423:1 18436:1 18447:1 18454:1 18468:1 18469:2 18474:3 18478:1 18479:2 18485:2 18491:2 18498:2 18504:1 18509:1 18511:3 18513:1 18523:1 18539:1 18555:1 18567:1 18568:1 18570:1 18572:1 18578:1 18580:1 18587:1 18602:1 18616:3 18617:1 18623:1 18629:1 18631:1 18645:1 18654:2 18661:1 18664:1 18665:1 18674:2 18700:1 18702:4 18704:1 18727:4 18732:8 18736:1 18742:2 18747:1 18748:1 18750:1 18754:1 18755:1 18768:1 18784:1 18792:3 18800:2 18805:1 18816:1 18821:1 18849:1 18856:8 18857:1 18862:8 18867:1 18880:1 18881:3 18882:1 18884:1 18886:1 18901:2 18905:1 18916:1 18929:1 18930:2 18931:3 18934:1 18938:2 18941:6 18949:1 18980:1 19001:1 19011:1 19024:2 19033:4 19043:1 19048:1 19056:3 19059:1 19060:2 19076:1 19080:1 19085:2 19098:3 19108:6 19126:2 19134:3 19136:2 19139:1 19145:1 19146:1 19148:1 19150:1 19153:2 19172:1 19183:1 19193:2 19205:3 19207:3 19210:8 19226:3 19230:1 19249:1 19250:1 19258:1 19267:1 19275:2 19292:6 19293:1 19294:1 19302:4 19303:1 19322:1 19328:2 19331:1 19335:1 19337:5 19339:2 19354:1 19359:1 19365:1 19368:1 19373:2 19374:1 19386:1 19391:1 19392:2 19395:2 19402:1 19412:1 19416:1 19422:1 19425:1 19438:3 19440:1 19443:5 19446:1 19453:1 19469:1 19471:3 19475:1 19486:2 19487:8 19490:1 19507:1 19508:1 19517:1 19522:1 19532:1 19544:4 19559:4 19561:1 19562:1 19564:1 19570:1 19575:1 19586:1 19587:1 19603:1 19610:1 19612:1 19613:1 19637:1 19638:1 19644:2 19645:1 19657:1 19678:1 19683:1 19702:1 19706:1 19710:1 19714:1 19716:1 19730:2 19745:1 19753:1 19755:1 19757:1 19762:8 19767:1 19773:1 19789:1 19792:1 19804:1 19805:2 19810:5 19813:2 19837:1 19844:1 19847:1 19849:1 19886:1 19897:4 19901:1 19902:2 19909:1 19912:1 19924:1 19928:3 19962:1 19966:2 19972:1 19992:1 20000:1 20004:1 20015:2 20034:1 20040:5 20072:1 20080:4 20083:1 20084:5 20096:2 20098:1 20103:1 20108:1 20109:5 20111:1 20118:1 20128:1 20137:1 20138:1 20152:1 20165:1 20180:1 20208:1 20218:1 20223:1 20224:1 20226:1 20227:1 20235:1 20239:1 20247:2 20251:1 20252:1 20253:1 20258:2 20261:1 20266:1 20267:1 20270:4 20275:1 20278:1 20293:1 20304:1 20316:2 20317:3 20318:9 20319:1 20320:1 20326:3 20327:4 20331:3 20332:4 20333:1 20334:5 20336:1 20337:6 20338:2 20341:1 20343:8 20344:7 20350:1 20353:1 20356:1 20371:1 20373:1 20378:5 20380:1 20383:3 20391:1 20397:1 20398:8 20399:3 20406:1 20411:2 20413:1 20424:1 20435:1 20436:1 20440:1 20441:2 20442:10 20447:8 20448:4 20464:1 20469:3 20470:1 20496:3 20502:3 20505:1 20510:1 20512:4 20529:2 20552:1 20560:1 20576:4 20595:4 20611:1 20614:1 20619:1 20621:1 20627:1 20629:2 20631:8 20653:1 20659:1 20668:5 20686:1 20694:1 20696:1 20717:1 20718:2 20727:1 20733:1 20738:3 20740:1 20742:8 20745:1 20761:8 20762:1 20769:1 20785:13 20787:1 20812:1 20818:1 20829:7 20831:1 20846:1 20850:1 20853:1 20871:1 20872:2 20874:1 20887:2 20890:2 20930:1 20936:1 20949:12 20962:6 20973:2 20995:1 21007:1 21011:1 21012:1 21017:1 21021:2 21056:1 21062:2 21065:2 21077:1 21089:1 21099:1 21100:2 21107:2 21108:6 21111:1 21112:2 21113:1 21123:2 21133:1 21134:2 21138:1 21139:1 21146:1 21150:6 21173:1 21198:7 21199:5 21208:2 21209:5 21218:2 21219:1 21224:1 21225:2 21227:2 21228:1 21245:1 21249:1 21258:1 21293:3 21306:1 21312:1 21327:1 21337:5 21350:1 21353:1 21359:1 21361:4 21380:1 21400:1 21402:1 21410:1 21430:1 21434:2 21473:1 21480:1 21482:1 21485:2 21486:1 21490:1 21508:1 21520:1 21529:4 21539:4 21543:1 21546:1 21556:1 21557:5 21561:2 21567:1 21571:1 21581:1 21582:3 21584:1 21586:1 21588:1 21595:1 21602:2 21610:7 21613:1 21622:1 21627:1 21630:1 21633:1 21642:4 21644:1 21645:1 21650:1 21663:2 21675:1 21684:2 21697:1 21703:2 21718:1 21723:1 21741:1 21760:44 21773:8 21774:1 21782:5 21783:1 21784:1 21787:2 21791:1 21794:1 21812:1 21830:1 21831:2 21838:1 21844:1 21846:1 21856:1 21868:1 21878:2 21887:2 21904:1 21914:2 21916:6 21922:1 21926:1 21927:1 21943:1 21944:1 21948:1 21982:1 21995:3 21996:1 21997:1 21998:1 22007:1 22010:1 22015:1 22016:1 22024:1 22027:4 22035:1 22037:1 22041:1 22048:3 22078:1 22080:1 22094:1 22109:1 22119:2 22123:1 22132:1 22142:1 22144:1 22163:10 22179:1 22192:1 22208:1 22211:1 22215:1 22218:1 22223:2 22229:2 22233:1 22243:1 22245:7 22247:1 22251:1 22256:1 22263:1 22279:2 22281:1 22315:1 22320:1 22325:3 22328:1 22331:19 22334:1 22340:1 22360:1 22368:1 22376:3 22378:1 22383:1 22410:2 22415:1 22417:1 22431:1 22434:2 22455:1 22460:1 22465:1 22466:3 22472:1 22478:1 22481:1 22485:1 22491:1 22493:1 22504:1 22513:1 22517:2 22520:7 22534:2 22548:3 22551:5 22552:1 22561:1 22585:1 22587:1 22598:1 22601:1 22602:1 22611:6 22617:1 22623:1 22627:1 22644:2 22646:2 22647:1 22655:1 22658:1 22662:1 22669:4 22690:5 22699:7 22707:2 22709:1 22715:1 22730:1 22734:2 22736:1 22749:3 22755:9 22756:1 22759:5 22760:3 22761:2 22769:1 22779:1 22786:6 22787:1 22795:2 22799:1 22802:1 22803:7 22809:1 22812:1 22815:1 22818:1 22820:1 22822:1 22828:1 22830:2 22831:2 22846:2 22864:1 22865:1 22866:1 22874:3 22876:1 22895:1 22902:1 22903:1 22905:2 22914:1 22916:2 22924:1 22931:1 22937:1 22942:1 22948:1 22982:1 23000:3 23001:1 23003:1 23011:1 23027:5 23032:1 23039:1 23064:2 23071:1 23075:1 23076:3 23084:1 23089:8 23109:13 23118:1 23125:3 23127:3 23128:1 23143:1 23151:1 23155:1 23166:1 23167:2 23175:1 23185:1 23188:1 23196:2 23198:1 23201:1 23226:1 23237:4 23248:1 23256:1 23263:1 23264:1 23284:3 23293:1 23295:1 23298:3 23299:1 23300:2 23305:1 23307:1 23314:5 23331:1 23333:1 23335:1 23341:1 23344:5 23349:1 23360:3 23361:1 23363:1 23378:1 23384:3 23385:2 23386:2 23391:1 23392:1 23393:2 23404:4 23413:2 23416:1 23424:2 23430:24 23431:3 23433:2 23435:1 23456:2 23466:4 23476:2 23491:1 23496:1 23507:1 23521:1 23524:1 23551:2 23558:1 23586:9 23588:1 23592:1 23603:5 23609:1 23610:7 23616:6 23620:1 23623:2 23626:7 23633:1 23646:1 23647:6 23655:4 23659:2 23674:1 23676:1 23685:1 23703:1 23712:1 23713:1 23719:1 23720:2 23722:1 23723:1 23733:1 23736:1 23739:3 23741:4 23744:1 23767:1 23768:1 23775:18 23777:2 23784:1 23797:2 23828:1 23835:8 23836:1 23840:1 23847:1 23853:1 23858:6 23862:1 23865:1 23866:9 23869:1 23871:1 23885:2 23891:1 23893:1 23923:1 23940:2 23949:1 23950:1 23952:1 23967:1 23971:4 23974:4 23991:1 23993:1 23994:1 24003:1 24004:1 24025:1 24034:1 24039:4 24051:1 24054:1 24070:3 24076:1 24081:1 24095:1 24096:3 24100:1 24126:5 24128:1 24129:1 24132:1 24137:2 24143:1 24151:1 24162:2 24164:1 24168:1 24170:7 24179:1 24213:1 24225:1 24239:1 24251:1 24257:1 24265:2 24266:8 24267:1 24271:1 24274:1 24275:1 24276:1 24280:1 24286:1 24287:1 24292:1 24296:1 24307:2 24326:1 24330:2 24332:1 24341:3 24350:1 24370:3 24373:1 24385:1 24394:1 24398:1 24401:6 24407:1 24410:1 24411:5 24412:1 24438:3 24441:1 24463:1 24473:1 24476:5 24477:2 24478:1 24482:1 24483:5 24485:1 24487:4 24503:7 24525:2 24530:6 24536:3 24538:1 24568:1
14 9:2 30:2 34:1 56:1 59:1 71:1 75:1 96:3 112:1 146:1 157:4 162:1 163:1 185:9 186:9 188:2 196:1 197:1 204:1 216:1 219:3 223:2 224:1 230:1 233:1 239:1 242:1 243:1 247:1 253:1 254:9 256:1 260:2 265:1 270:1 282:1 295:1 296:8 308:1 314:1 318:3 320:2 323:1 336:1 346:2 375:1 376:2 379:1 384:1 407:3 450:1 457:11 469:1 501:3 510:1 524:1 525:1 527:6 541:2 545:2 547:1 565:3 592:2 599:1 607:1 619:1 636:1 663:1 677:1 693:1 698:1 699:1 704:2 708:5 713:1 714:1 721:1 724:1 731:1 732:2 748:3 749:1 753:1 759:7 762:1 763:1 764:2 766:1 772:1 777:1 779:1 785:4 789:2 802:1 811:1 814:7 831:3 833:1 834:3 838:1 851:3 864:2 869:2 875:1 880:1 881:1 884:2 888:1 889:2 892:1 895:2 900:2 907:1 909:1 911:1 912:1 914:2 922:1 927:1 932:1 933:1 942:1 946:2 949:1 965:2 969:2 980:2 1000:1 1009:3 1011:2 1021:1 1023:2 1044:1 1045:1 1046:3 1048:1 1051:7 1053:1 1055:1 1059:4 1068:1 1077:1 1094:3 1095:1 1098:1 1114:1 1124:1 1125:1 1127:1 1128:1 1141:1 1153:2 1155:1 1160:2 1168:1 1171:6 1172:3 1187:3 1205:1 1217:1 1220:5 1226:1 1229:2 1256:2 1259:6 1264:4 1278:1 1285:1 1292:1 1293:2 1297:1 1299:1 1301:1 1321:1 1332:4 1344:1 1356:2 1360:3 1369:1 1372:1 1381:5 1398:1 1401:9 1405:1 1413:1 1424:1 1425:2 1439:1 1448:1 1452:1 1453:1 1470:1 1507:8 1510:1 1517:5 1526:1 1529:1 1535:1 1536:1 1538:2 1545:2 1546:1 1564:5 1570:1 1585:1 1589:2 1591:4 1603:1 1616:2 1617:3 1621:1 1622:2 1626:1 1627:1 1628:1 1629:1 1640:1 1654:2 1659:1 1673:1 1674:1 1683:1 1701:1 1703:1 1710:1 1715:1 1723:1 1727:1 1730:1 1731:6 1737:1 1745:1 1753:1 1754:1 1759:1 1766:12 1770:1 1781:2 1785:1 1798:1 1809:7 1818:1 1826:4 1829:1 1834:1 1838:3 1842:1 1846:3 1856:7 1863:1 1874:2 1879:1 1880:1 1882:2 1883:2 1885:2 1888:1 1891:2 1904:2 1908:1 1910:2 1911:1 1912:4 1938:4 1939:1 1941:2 1942:2 1945:9 1947:3 1953:1 1954:5 1955:2 1957:1 1960:1 1963:3 1965:3 1968:6 1970:2 1973:2 1976:4 1978:1 1991:1 2000:1 2009:1 2015:1 2020:1 2028:1 2040:2 2042:1 2047:1 2049:1 2051:2 2053:1 2061:1 2065:2 2071:1 2076:2 2077:2 2112:1 2128:1 2129:1 2131:1 2134:3 2149:1 2157:1 2164:1 2172:2 2178:2 2183:2 2193:1 2198:1 2208:1 2226:4 2229:1 2234:2 2254:1 2274:2 2275:2 2277:1 2286:2 2295:1 2298:1 2303:1 2305:1 2321:5 2325:3 2333:1 2349:1 2358:1 2366:3 2372:1 2380:2 2381:1 2383:5 2389:1 2390:7 2394:1 2400:1 2414:1 2419:2 2425:1 2426:1 2433:1 2448:1 2451:3 2462:47 2464:2 2465:1 2469:1 2470:1 2480:2 2486:1 2504:1 2507:11 2513:2 2519:12 2529:1 2530:2 2565:5 2576:2 2587:2 2593:1 2597:2 2609:1 2627:5 2638:1 2691:1 2704:1 2706:1 2709:1 2731:3 2736:11 2742:2 2746:1 2754:1 2762:1 2770:1 2779:3 2780:3 2785:2 2787:1 2798:2 2801:1 2802:10 2821:1 2826:1 2834:2 2837:1 2844:1 2846:1 2848:3 2849:1 2854:2 2855:2 2879:1 2886:11 2895:1 2901:1 2919:3 2936:1 2954:2 2979:1 2980:1 2994:1 3002:2 3003:1 3020:4 3027:1 3041:1 3042:1 3049:5 3050:1 3060:1 3061:1 3064:1 3072:1 3076:1 3077:7 3090:1 3098:1 3099:2 3113:1 3116:1 3131:1 3132:1 3133:1 3147:3 3149:1 3153:1 3171:1 3173:1 3179:1 3183:1 3184:16 3204:1 3206:2 3213:2 3221:4 3223:1 3225:1 3231:1 3234:7 3245:1 3248:1 3266:1 3285:1 3287:2 3292:1 3295:2 3297:5 3304:1 3310:2 3312:1 3315:1 3322:2 3324:1 3326:3 3328:2 3332:1 3342:1 3351:1 3353:1 3369:3 3372:1 3375:1 3379:1 3404:1 3407:2 3408:2 3414:1 3416:2 3418:1 3462:1 3494:1 3499:1 3518:2 3519:1 3520:1 3522:1 3524:1 3525:1 3545:1 3546:2 3547:2 3562:1 3563:1 3572:1 3581:3 3588:2 3598:1 3606:1 3612:1 3615:1 3618:3 3631:1 3641:16 3649:1 3660:1 3667:1 3677:1 3678:3 3679:1 3687:1 3707:1 3712:2 3735:1 3738:1 3741:1 3744:1 3766:1 3774:1 3776:1 3783:1 3786:1 3804:1 3831:1 3837:4 3841:1 3854:1 3878:1 3886:3 3889:1 3898:1 3907:3 3908:3 3909:2 3915:2 3918:2 3938:7 3940:1 3963:3 3964:1 3966:1 3967:1 3976:1 3979:1 3984:2 3995:9 3998:9 4005:2 4012:1 4026:1 4046:1 4051:1 4060:1 4061:1 4062:3 4083:1 4091:2 4093:1 4102:1 4107:20 4108:4 4109:1 4120:2 4128:1 4131:1 4136:3 4145:1 4154:1 4163:2 4183:1 4186:1 4190:2 4195:1 4198:15 4211:3 4212:6 4213:3 4216:1 4218:3 4221:1 4223:1 4224:1 4225:1 4229:1 4234:1 4236:4 4237:2 4238:4 4244:3 4268:1 4305:1 4325:1 4332:2 4333:1 4340:1 4353:1 4354:1 4368:1 4371:2 4374:2 4375:6 4376:1 4382:1 4399:1 4400:1 4409:1 4413:2 4423:1 4434:1 4447:2 4460:1 4464:1 4469:1 4471:2 4497:1 4498:3 4505:1 4512:1 4518:5 4519:3 4525:1 4534:2 4539:1 4541:1 4542:1 4551:1 4566:1 4569:2 4572:2 4581:1 4586:1 4587:1 4592:1 4599:4 4608:1 4609:2 4611:1 4620:1 4621:1 4622:1 4636:1 4655:1 4667:1 4668:1 4673:1 4683:2 4684:3 4710:3 4722:1 4724:1 4734:1 4744:1 4759:1 4768:1 4773:1 4784:1 4792:1 4796:4 4814:2 4820:1 4821:2 4825:1 4829:1 4832:2 4853:1 4876:2 4889:2 4892:1 4894:4 4901:2 4909:1 4931:1 4963:1 4986:1 4993:1 5000:1 5003:2 5016:3 5024:1 5029:1 5037:1 5044:1 5047:1 5049:3 5067:1 5071:4 5072:2 5076:1 5077:1 5088:2 5093:1 5095:1 5100:2 5124:1 5127:1 5146:1 5187:1 5192:1 5201:2 5202:1 5203:1 5224:1 5232:1 5247:1 5248:2 5253:1 5254:1 5258:2 5262:1 5269:1 5283:1 5308:6 5310:1 5313:1 5322:9 5325:5 5326:2 5332:6 5333:3 5337:4 5338:2 5339:2 5340:3 5342:1 5344:1 5347:6 5349:13 5350:1 5352:5 5354:4 5449:1 5451:11 5484:1 5488:1 5492:1 5500:1 5520:2 5529:1 5530:1 5531:1 5533:2 5534:1 5535:1 5585:1 5595:1 5599:4 5604:1 5608:1 5610:2 5627:1 5640:1 5670:1 5674:1 5681:2 5683:1 5686:4 5688:3 5702:11 5711:1 5712:1 5719:2 5721:1 5726:1 5730:1 5746:3 5752:1 5783:1 5788:2 5807:2 5813:2 5815:1 5828:1 5849:1 5860:1 5865:3 5871:1 5874:3 5878:3 5889:1 5900:1 5931:2 5939:1 5947:6 5948:3 5952:1 5968:2 5998:1 6005:2 6017:1 6034:1 6042:1 6044:1 6045:1 6046:1 6047:3 6049:1 6050:1 6056:1 6062:1 6071:1 6079:1 6087:1 6112:3 6116:2 6126:1 6128:1 6131:1 6139:2 6145:2 6151:1 6175:2 6183:12 6187:1 6194:1 6207:1 6235:1 6237:2 6289:1 6293:1 6311:4 6324:1 6352:1 6355:3 6364:2 6365:10 6373:1 6378:1 6381:2 6382:2 6386:2 6389:1 6402:2 6405:1 6407:1 6409:1 6410:1 6412:1 6416:2 6417:1 6418:1 6422:1 6429:51 6433:1 6434:1 6436:1 6440:1 6448:1 6449:3 6451:8 6459:4 6468:1 6475:1 6486:1 6491:1 6492:1 6493:1 6510:1 6516:1 6525:1 6526:4 6532:2 6542:1 6554:1 6560:1 6578:1 6589:1 6597:1 6616:1 6619:2 6643:1 6661:3 6667:1 6669:1 6675:1 6678:2 6685:1 6687:1 6706:1 6707:2 6711:2 6715:1 6716:3 6723:5 6756:1 6769:1 6781:1 6789:1 6791:1 6794:3 6796:2 6802:1 6804:1 6810:5 6824:4 6834:1 6839:3 6843:1 6846:1 6847:1 6854:4 6859:17 6908:5 6911:1 6920:1 6931:1 6937:1 6981:4 6991:1 7016:1 7021:1 7022:1 7027:2 7033:1 7038:1 7045:1 7047:1 7054:6 7059:2 7068:12 7096:2 7097:1 7104:1 7108:1 7116:1 7122:1 7132:1 7137:1 7157:4 7160:1 7163:1 7165:1 7166:1 7169:3 7170:2 7177:1 7178:2 7179:1 7181:2 7182:1 7190:1 7194:1 7199:1 7202:1 7215:1 7216:3 7221:1 7235:1 7245:1 7246:2 7251:1 7268:1 7273:1 7285:14 7303:2 7322:1 7360:1 7361:6 7363:1 7374:1 7377:1 7379:1 7382:2 7391:2 7400:11 7402:2 7409:2 7414:1 7418:2 7419:2 7427:2 7430:1 7432:3 7435:1 7438:3 7443:1 7444:1 7445:1 7450:5 7451:1 7456:3 7457:5 7459:2 7460:1 7461:7 7462:1 7464:2 7465:2 7471:1 7487:1 7499:2 7510:2 7527:1 7550:1 7552:1 7553:2 7554:2 7564:2 7571:5 7572:1 7576:1 7581:9 7588:1 7589:1 7605:1 7614:3 7615:1 7622:1 7626:1 7638:1 7648:4 7656:1 7658:3 7670:1 7671:1 7682:2 7686:1 7701:1 7702:1 7709:1 7712:5 7741:1 7742:1 7743:1 7750:1 7751:1 7753:3 7754:1 7761:1 7768:1 7773:14 7778:1 7782:1 7787:4 7799:1 7803:1 7804:1 7810:2 7816:1 7820:3 7841:2 7860:2 7868:2 7872:1 7880:1 7887:4 7905:1 7908:1 7912:1 7923:1 7929:4 7930:1 7950:3 7964:2 7972:1 7979:1 7982:1 7988:6 7999:1 8002:1 8005:1 8023:2 8030:1 8049:1 8065:13 8070:9 8079:1 8081:13 8082:8 8099:5 8107:1 8110:1 8140:1 8158:1 8162:4 8171:3 8174:1 8175:3 8176:12 8189:2 8195:1 8206:5 8207:3 8216:1 8229:2 8230:1 8234:19 8235:1 8249:2 8256:1 8272:2 8279:1 8282:1 8284:1 8285:9 8296:2 8304:2 8311:2 8317:1 8318:1 8320:1 8328:6 8332:1 8339:1 8343:1 8348:1 8350:1 8352:7 8355:1 8357:2 8359:4 8361:1 8364:2 8376:1 8383:1 8387:4 8404:2 8428:1 8433:3 8437:1 8443:2 8469:10 8471:1 8472:1 8508:1 8553:2 8567:2 8568:2 8574:1 8582:2 8583:1 8593:2 8597:3 8598:8 8603:1 8605:1 8614:1 8617:1 8618:1 8623:1 8630:1 8632:1 8635:1 8637:1 8656:3 8657:1 8670:1 8672:1 8681:3 8690:2 8692:1 8702:2 8709:1 8711:1 8714:3 8719:1 8726:1 8727:3 8731:1 8736:4 8753:3 8759:9 8761:1 8771:1 8773:2 8778:1 8782:3 8783:1 8785:1 8794:1 8795:2 8800:2 8802:11 8809:5 8812:1 8814:6 8822:1 8830:1 8831:2 8832:5 8833:5 8836:1 8849:1 8878:2 8891:8 8900:4 8901:1 8910:4 8911:1 8914:2 8916:6 8944:1 8955:1 8968:1 8971:1 8974:2 8979:1 8983:2 8993:1 8996:1 8998:2 8999:1 9000:1 9002:6 9022:1 9027:1 9038:1 9058:4 9060:1 9062:2 9063:1 9067:1 9084:1 9097:1 9101:10 9102:9 9120:4 9123:1 9127:2 9132:1 9138:1 9140:1 9142:2 9149:1 9156:1 9166:1 9173:1 9181:1 9183:1 9185:3 9192:1 9222:2 9227:1 9239:1 9240:2 9243:1 9252:9 9263:1 9313:2 9318:1 9336:1 9338:1 9346:1 9363:1 9370:1 9377:4 9392:1 9400:1 9403:6 9419:1 9426:1 9440:2 9441:1 9455:8 9462:2 9466:1 9488:7 9495:1 9497:1 9532:14 9536:2 9547:1 9550:4 9562:2 9563:3 9565:2 9575:2 9596:1 9599:1 9607:1 9619:1 9622:2 9624:1 9645:1 9653:1 9656:2 9682:6 9683:1 9688:2 9690:1 9691:1 9697:1 9698:1 9700:1 9710:2 9716:2 9723:3 9729:2 9738:2 9743:1 9745:1 9756:1 9772:2 9810:3 9818:1 9823:5 9824:1 9850:1 9859:3 9867:1 9877:1 9878:2 9881:1 9884:1 9890:1 9891:1 9900:1 9918:3 9922:1 9923:1 9924:5 9941:2 9944:1 9949:1 9958:1 9963:1 9974:1 9999:1 10021:1 10022:3 10037:1 10040:2 10042:2 10045:1 10046:1 10052:2 10053:3 10054:3 10070:1 10073:1 10074:3 10090:6 10117:1 10126:1 10169:5 10172:1 10176:1 10198:1 10204:1 10211:1 10217:1 10218:6 10220:1 10232:1 10254:1 10278:5 10311:1 10316:1 10318:3 10319:1 10324:1 10329:1 10353:1 10355:1 10360:2 10369:1 10370:1 10384:9 10406:1 10457:2 10465:1 10480:38 10502:1 10503:5 10524:1 10530:1 10531:4 10537:1 10539:1 10540:3 10551:1 10554:2 10576:1 10587:1 10589:1 10593:1 10597:1 10598:5 10600:2 10617:2 10648:2 10651:7 10654:1 10659:1 10667:1 10707:1 10713:1 10719:1 10722:1 10725:3 10757:1 10758:1 10772:1 10792:1 10809:1 10815:1 10818:1 10823:2 10837:1 10843:1 10847:11 10851:4 10862:1 10871:4 10872:1 10879:1 10887:1 10892:1 10897:1 10898:2 10912:2 10951:2 10952:1 10953:1 10961:4 10962:2 10970:2 10974:5 10979:2 10981:1 10985:3 10987:1 10993:3 11013:1 11014:1 11016:1 11036:1 11046:6 11047:8 11050:1 11056:2 11062:1 11087:1 11103:4 11118:2 11126:1 11155:2 11159:2 11163:3 11168:3 11173:3 11186:2 11187:4 11188:1 11201:1 11211:3 11215:8 11223:4 11235:2 11266:1 11273:5 11280:2 11283:1 11284:1 11286:1 11297:1 11301:1 11325:3 11329:1 11337:5 11341:1 11344:1 11345:1 11346:1 11347:1 11348:1 11349:2 11352:2 11353:1 11368:4 11375:5 11394:1 11400:2 11405:2 11408:1 11415:1 11430:9 11447:4 11449:1 11451:2 11459:3 11463:2 11479:1 11486:1 11507:1 11509:2 11526:2 11540:1 11584:3 11600:1 11607:1 11609:1 11632:1 11638:4 11640:1 11643:1 11653:1 11655:1 11705:1 11708:2 11712:4 11727:1 11739:2 11742:1 11747:1 11759:1 11790:1 11792:1 11800:1 11801:3 11807:1 11812:2 11813:2 11818:1 11823:1 11830:1 11832:1 11833:1 11834:1 11843:1 11853:1 11856:1 11857:2 11864:4 11874:1 11876:1 11883:2 11900:1 11906:2 11932:1 11937:1 11949:1 11960:1 11966:1 11974:2 11976:2 11979:1 11985:1 11990:1 11992:1 11994:1 11998:2 12033:1 12038:1 12050:5 12065:1 12076:2 12078:1 12084:1 12095:1 12097:2 12099:4 12114:1 12115:1 12126:1 12131:1 12144:3 12145:1 12146:2 12178:1 12181:1 12182:2 12184:1 12197:1 12218:1 12227:1 12229:1 12245:1 12276:3 12287:1 12289:1 12323:1 12328:1 12337:1 12338:1 12346:8 12364:2 12365:2 12366:1 12372:1 12375:1 12381:6 12387:2 12390:1 12396:1 12416:1 12425:1 12427:2 12432:1 12440:1 12444:1 12452:2 12456:1 12468:1 12483:1 12486:2 12488:2 12490:2 12491:1 12512:1 12542:1 12555:1 12556:4 12573:1 12575:3 12582:1 12583:2 12585:1 12586:1 12594:1 12614:9 12623:1 12627:1 12635:2 12641:1 12652:2 12661:1 12662:4 12672:1 12683:1 12685:1 12698:2 12723:4 12739:2 12740:2 12741:5 12748:2 12754:1 12774:1 12797:3 12798:3 12800:5 12801:1 12822:1 12837:1 12839:2 12842:1 12843:1 12846:2 12874:1 12881:2 12930:1 12942:2 12943:1 12944:1 12945:2 12946:1 12950:5 12954:2 12961:2 12971:1 12980:1 12985:2 12988:6 12989:1 13014:2 13025:1 13032:1 13033:2 13058:2 13062:1 13072:1 13082:1 13094:1 13104:3 13125:2 13128:1 13140:3 13142:2 13153:10 13156:1 13171:1 13181:1 13187:1 13205:1 13206:1 13207:6 13212:1 13225:4 13229:1 13238:1 13258:1 13259:1 13267:1 13288:1 13295:2 13304:1 13311:3 13324:1 13328:15 13333:3 13334:1 13336:1 13342:2 13345:1 13347:1 13362:1 13390:6 13406:1 13410:1 13417:1 13428:2 13431:1 13434:1 13435:1 13437:1 13445:3 13446:1 13449:3 13452:2 13453:2 13454:1 13459:1 13462:1 13466:1 13470:1 13471:1 13482:1 13489:3 13502:1 13505:2 13523:1 13525:2 13535:1 13542:1 13560:1 13561:1 13590:1 13593:2 13614:1 13615:1 13620:1 13623:1 13637:5 13647:3 13662:3 13664:2 13668:1 13671:1 13680:5 13682:2 13688:3 13703:1 13707:1 13708:1 13718:1 13719:4 13729:1 13732:1 13733:2 13740:1 13760:1 13765:3 13766:1 13778:1 13780:1 13803:8 13807:3 13819:12 13823:2 13835:6 13857:1 13858:1 13865:2 13871:2 13876:1 13888:3 13895:3 13907:1 13908:2 13926:1 13928:5 13929:1 13931:1 13936:1 13947:1 13953:1 13970:3 13979:4 13986:1 13989:4 13994:3 13995:1 13996:2 14000:1 14007:2 14024:3 14026:2 14030:1 14031:2 14035:2 14041:1 14050:3 14051:9 14055:1 14071:2 14072:1 14073:1 14077:2 14088:1 14097:4 14114:1 14119:3 14127:2 14130:1 14137:1 14165:1 14178:11 14181:2 14202:1 14204:2 14207:1 14218:1 14227:1 14229:4 14231:2 14252:2 14262:1 14265:2 14279:1 14286:1 14300:2 14302:1 14305:1 14317:1 14329:1 14332:3 14334:1 14341:1 14365:4 14366:11 14371:5 14380:1 14381:1 14382:12 14383:3 14385:1 14386:1 14387:2 14391:2 14395:1 14403:1 14404:1 14417:1 14422:2 14434:1 14443:2 14465:2 14476:11 14477:3 14496:12 14503:1 14513:1 14516:10 14522:1 14541:1 14544:1 14549:1 14553:1 14556:1 14558:1 14564:1 14576:2 14577:2 14582:1 14583:1 14596:1 14610:1 14622:1 14630:4 14635:3 14638:1 14648:1 14649:1 14650:2 14654:1 14657:2 14665:2 14672:3 14674:1 14677:9 14678:4 14691:2 14696:1 14711:1 14717:1 14719:5 14727:1 14734:1 14740:7 14744:1 14747:10 14751:1 14762:5 14763:1 14764:1 14765:3 14768:1 14774:1 14776:1 14785:5 14802:1 14804:2 14807:1 14810:1 14824:1 14837:6 14844:1 14849:2 14851:1 14853:1 14856:1 14864:5 14871:1 14877:1 14882:2 14885:5 14919:1 14934:2 14938:2 14946:4 14956:2 14962:1 14976:1 14981:2 14982:2 14987:1 14991:1 15002:1 15011:1 15015:1 15030:2 15035:2 15040:2 15067:1 15073:1 15080:2 15087:1 15089:1 15090:2 15097:1 15098:1 15100:1 15105:2 15111:1 15123:3 15133:1 15134:12 15135:1 15137:8 15142:1 15144:1 15160:2 15166:1 15169:1 15171:3 15183:2 15184:5 15196:1 15197:1 15201:2 15205:12 15233:2 15240:1 15251:2 15269:6 15282:5 15283:1 15287:1 15303:1 15307:45 15312:6 15322:1 15326:1 15344:1 15354:2 15360:1 15371:2 15374:1 15384:1 15396:6 15405:7 15409:1 15423:1 15424:1 15436:1 15444:1 15445:2 15452:2 15453:1 15460:3 15480:2309 15483:2 15492:2 15496:1 15507:1 15508:1 15510:1 15518:1 15524:1 15554:1 15556:2 15560:1 15568:1 15570:2 15574:1 15591:1 15595:1 15599:2 15610:4 15617:3 15623:1 15625:1 15638:4 15639:4 15641:1 15642:2 15645:1 15646:1 15647:1 15649:4 15652:1 15655:6 15658:1 15661:1 15662:7 15678:2 15684:1 15723:1 15738:1 15742:2 15743:1 15763:3 15773:1 15776:11 15790:1 15814:1 15816:2 15847:1 15853:1 15855:1 15866:1 15869:1 15871:2 15875:1 15884:1 15896:2 15927:1 15929:4 15935:2 15938:1 15943:1 15949:6 15955:1 15957:1 15960:1 15966:2 15984:1 15994:1 15997:4 16008:1 16019:1 16036:1 16042:8 16043:3 16051:1 16052:1 16054:6 16056:1 16059:1 16064:1 16074:1 16077:3 16078:1 16079:1 16094:1 16102:1 16103:1 16111:1 16112:1 16115:4 16118:1 16121:10 16139:1 16147:1 16151:2 16152:7 16154:9 16161:1 16171:1 16177:1 16179:1 16187:1 16206:2 16228:1 16239:1 16254:1 16262:3 16267:1 16268:2 16270:1 16271:1 16273:2 16274:2 16277:1 16283:2 16287:1 16300:1 16302:2 16306:2 16308:1 16309:1 16310:1 16313:1 16318:1 16337:1 16341:1 16358:1 16370:3 16376:1 16387:6 16402:1 16409:4 16412:2 16413:1 16426:1 16428:1 16438:1 16458:1 16474:1 16479:1 16484:7 16485:5 16488:1 16490:2 16495:3 16500:3 16503:2 16506:1 16509:2 16534:2 16547:1 16548:1 16577:2 16593:4 16603:1 16605:1 16611:1 16620:1 16623:1 16625:1 16630:3 16643:1 16652:2 16654:3 16659:1 16665:1 16670:1 16673:1 16679:1 16681:5 16682:1 16693:1 16718:2 16726:5 16727:1 16729:1 16732:1 16733:1 16735:1 16743:1 16744:4 16753:7 16754:1 16761:1 16763:1 16775:1 16777:1 16778:2 16780:1 16787:2 16792:1 16809:1 16815:6 16817:1 16853:1 16855:2 16861:5 16862:2 16867:5 16871:1 16875:1 16882:1 16895:1 16897:2 16919:1 16921:9 16928:1 16946:2 16964:1 16970:1 16971:1 16975:1 17001:3 17011:1 17013:1 17030:2 17037:1 17043:1 17048:1 17057:2 17058:1 17066:2 17083:1 17085:2 17090:1 17107:1 17113:2 17123:1 17131:1 17136:7 17137:4 17166:1 17175:1 17176:1 17181:1 17185:1 17187:1 17188:1 17221:1 17237:7 17246:2 17248:1 17269:1 17275:7 17276:5 17286:1 17288:1 17296:1 17298:1 17303:1 17311:3 17316:2 17320:1 17331:2 17346:2 17347:1 17348:1 17357:1 17362:6 17363:2 17366:2 17367:1 17368:1 17386:1 17387:10 17403:1 17404:1 17424:2 17440:1 17470:1 17485:4 17491:3 17492:1 17499:1 17515:1 17520:1 17553:2 17559:1 17563:1 17569:1 17575:1 17580:1 17602:2 17605:1 17608:1 17616:2 17622:1 17623:4 17626:1 17631:2 17641:1 17645:1 17649:1 17658:1 17660:1 17678:9 17689:1 17706:2 17712:1 17724:3 17725:2 17730:1 17735:3 17739:1 17742:2 17743:1 17768:1 17772:2 17774:2 17775:1 17792:1 17795:1 17808:1 17822:1 17826:1 17827:1 17834:2 17838:2 17839:1 17852:1 17853:2 17855:4 17857:1 17862:1 17865:1 17886:2 17890:1 17900:1 17906:1 17908:1 17910:1 17915:2 17916:12 17919:1 17921:3 17922:1 17924:2 17925:1 17927:3 17943:3 17955:4 17956:1 17958:4 17962:2 17969:1 17975:1 17978:1 17979:1 17980:2 17983:3 17995:5 18009:4 18016:1 18025:2 18028:1 18035:1 18037:1 18038:2 18041:2 18042:1 18043:8 18053:4 18058:1 18064:1 18068:3 18069:1 18073:1 18079:1 18088:1 18092:1 18093:8 18116:1 18130:2 18146:1 18159:1 18165:1 18166:4 18168:4 18174:2 18177:1 18181:1 18189:1 18193:1 18197:2 18208:5 18210:2 18215:1 18248:1 18249:1 18266:1 18282:1 18313:2 18320:1 18339:2 18356:1 18358:1 18360:1 18366:2 18367:1 18369:3 18370:2 18375:4 18378:2 18379:1 18406:3 18409:1 18410:3 18414:3 18423:1 18436:1 18447:1 18454:1 18468:1 18469:2 18474:3 18478:1 18479:2 18482:1 18485:2 18491:2 18498:2 18504:1 18509:1 18511:3 18513:1 18523:1 18539:1 18555:1 18567:1 18568:1 18570:1 18572:1 18578:1 18580:1 18587:1 18602:1 18616:3 18617:1 18623:1 18629:1 18631:1 18645:1 18654:2 18661:1 18664:1 18665:1 18674:2 18700:1 18702:4 18704:1 18727:4 18732:8 18736:1 18742:2 18747:1 18748:1 18750:1 18754:1 18755:1 18768:1 18784:1 18792:3 18800:2 18805:1 18816:1 18821:1 18849:1 18856:8 18857:1 18862:8 18867:1 18880:1 18881:3 18882:1 18884:1 18886:1 18901:2 18905:1 18916:1 18929:1 18930:2 18931:3 18934:1 18938:2 18941:6 18949:1 18974:1 18980:1 19001:1 19011:1 19024:2 19033:4 19043:1 19048:1 19056:3 19059:1 19060:2 19076:1 19080:1 19085:2 19098:3 19108:7 19126:2 19134:3 19136:2 19139:1 19145:1 19146:1 19148:1 19150:1 19153:3 19172:1 19183:1 19193:2 19205:3 19207:3 19210:9 19226:3 19230:1 19249:1 19250:1 19258:1 19263:1 19267:1 19275:2 19292:6 19293:1 19294:1 19302:4 19303:1 19322:1 19328:3 19331:1 19335:1 19337:5 19339:2 19354:1 19359:1 19365:1 19368:1 19373:2 19374:1 19386:1 19391:1 19392:2 19395:2 19402:1 19412:1 19416:1 19422:1 19425:1 19438:3 19440:1 19443:5 19446:1 19453:1 19469:1 19471:3 19475:1 19486:2 19487:9 19490:1 19507:1 19508:1 19517:1 19522:1 19532:1 19544:5 19559:4 19561:1 19562:1 19564:1 19570:1 19575:1 19586:1 19587:1 19603:1 19610:1 19612:1 19613:1 19637:1 19638:1 19644:2 19645:1 19657:1 19678:1 19683:1 19702:1 19706:1 19710:1 19714:1 19716:2 19730:2 19745:1 19753:1 19755:1 19757:2 19758:1 19762:8 19767:1 19773:1 19787:1 19789:1 19792:1 19804:1 19805:2 19810:5 19813:2 19837:1 19844:1 19847:1 19849:1 19886:1 19897:5 19901:1 19902:2 19909:1 19912:1 19924:1 19928:3 19962:1 19966:2 19972:1 19992:1 20000:1 20004:1 20015:2 20034:1 20040:5 20072:1 20080:5 20083:1 20084:5 20096:2 20098:1 20099:1 20103:1 20108:1 20109:5 20111:1 20118:1 20128:1 20137:1 20138:1 20152:1 20165:1 20180:1 20208:1 20218:1 20223:1 20224:1 20226:1 20227:1 20235:1 20239:1 20247:2 20251:1 20252:1 20253:1 20258:2 20261:1 20266:1 20267:1 20270:4 20275:1 20278:1 20293:1 20304:1 20316:2 20317:3 20318:9 20319:1 20320:1 20326:3 20327:4 20331:3 20332:4 20333:1 20334:5 20336:1 20337:6 20338:2 20341:1 20343:8 20344:7 20350:1 20353:1 20356:1 20371:1 20373:1 20378:5 20380:1 20383:3 20391:1 20397:1 20398:9 20399:3 20406:1 20411:2 20413:1 20424:1 20435:1 20436:1 20440:1 20441:2 20442:10 20447:8 20448:4 20464:1 20469:3 20470:1 20485:1 20496:3 20502:3 20505:1 20510:1 20512:4 20529:2 20552:1 20560:1 20576:4 20595:4 20611:1 20614:1 20619:1 20621:1 20627:1 20629:2 20631:9 20653:1 20659:1 20668:5 20686:1 20694:1 20696:1 20717:1 20718:2 20727:1 20733:1 20738:3 20740:1 20742:9 20745:1 20760:1 20761:9 20762:1 20769:1 20785:13 20787:1 20805:1 20812:1 20818:1 20829:7 20831:1 20846:1 20850:1 20853:1 20871:1 20872:3 20874:1 20887:2 20890:2 20928:1 20930:1 20936:1 20949:12 20962:6 20973:2 20995:1 21007:1 21011:1 21012:1 21017:1 21021:2 21056:1 21062:2 21065:2 21077:1 21089:1 21099:1 21100:2 21107:2 21108:6 21111:1 21112:2 21113:1 21123:2 21133:1 21134:3 21138:1 21139:1 21146:1 21150:6 21173:1 21198:7 21199:5 21208:2 21209:5 21218:2 21219:1 21224:1 21225:2 21227:2 21228:1 21245:1 21249:1 21258:1 21266:1 21293:3 21306:1 21312:1 21327:1 21337:5 21350:1 21353:1 21359:1 21361:4 21380:1 21400:1 21402:1 21410:1 21430:1 21434:2 21473:1 21480:1 21482:1 21485:2 21486:1 21490:1 21508:1 21520:1 21529:4 21539:4 21543:1 21546:1 21556:1 21557:5 21561:2 21567:1 21571:1 21575:1 21581:1 21582:3 21584:1 21586:1 21588:1 21595:1 21602:2 21610:7 21613:1 21622:1 21627:1 21630:1 21633:1 21642:5 21644:1 21645:1 21650:1 21663:2 21675:1 21684:2 21697:1 21703:2 21718:1 21723:1 21741:1 21760:45 21773:9 21774:1 21782:5 21783:1 21784:1 21787:2 21791:1 21794:1 21812:1 21830:1 21831:2 21838:1 21844:1 21846:1 21856:1 21868:1 21878:2 21887:2 21904:1 21914:2 21916:6 21922:1 21926:1 21927:1 21943:1 21944:1 21947:1 21948:1 21982:1 21995:3 21996:1 21997:1 21998:1 22007:1 22010:1 22015:1 22016:1 22024:1 22027:4 22035:1 22037:1 22041:1 22048:3 22078:1 22080:1 22094:1 22109:1 22119:2 22123:1 22132:1 22142:1 22144:1 22163:10 22179:1 22192:1 22208:1 22211:1 22215:1 22218:1 22223:2 22229:2 22233:1 22243:1 22245:8 22247:1 22251:1 22256:1 22263:1 22279:2 22281:1 22315:1 22320:1 22325:3 22328:1 22331:20 22334:1 22340:1 22360:1 22368:1 22376:4 22378:1 22383:1 22388:1 22410:2 22415:1 22417:1 22431:1 22434:2 22455:1 22460:1 22465:1 22466:3 22472:1 22478:1 22481:1 22485:1 22491:1 22493:1 22504:1 22513:1 22517:2 22520:7 22534:2 22548:3 22551:5 22552:1 22561:1 22585:1 22587:1 22598:1 22601:1 22602:1 22611:6 22617:1 22623:1 22627:1 22644:2 22646:3 22647:1 22655:1 22658:1 22662:1 22669:4 22690:5 22699:7 22707:2 22709:1 22715:1 22730:1 22734:2 22736:1 22749:3 22755:9 22756:1 22759:5 22760:3 22761:2 22769:1 22779:1 22786:6 22787:1 22795:2 22799:1 22802:1 22803:7 22809:1 22812:1 22815:1 22818:1 22820:1 22822:1 22828:1 22830:2 22831:3 22846:2 22864:1 22865:1 22866:1 22874:3 22876:1 22895:1 22902:1 22903:1 22905:2 22914:1 22916:2 22924:1 22931:1 22937:1 22942:1 22948:1 22982:1 23000:3 23001:1 23003:1 23011:1 23027:5 23032:1 23039:1 23064:2 23071:1 23075:1 23076:3 23084:1 23089:9 23109:14 23118:1 23125:3 23127:3 23128:1 23143:1 23151:1 23155:1 23166:1 23167:2 23175:1 23185:1 23188:1 23196:2 23198:1 23201:1 23226:1 23237:4 23248:1 23256:1 23263:1 23264:1 23284:3 23293:1 23295:1 23298:3 23299:1 23300:3 23305:1 23307:1 23314:5 23316:1 23331:1 23333:1 23335:1 23341:1 23344:5 23349:1 23360:3 23361:1 23363:1 23378:1 23384:3 23385:2 23386:2 23391:1 23392:1 23393:2 23404:4 23413:2 23416:1 23424:2 23430:24 23431:3 23433:2 23435:1 23456:2 23466:4 23476:2 23491:1 23496:1 23507:1 23521:1 23524:1 23551:2 23558:1 23586:10 23588:1 23592:1 23603:5 23609:1 23610:7 23616:6 23620:1 23623:2 23626:7 23633:1 23646:1 23647:6 23655:4 23659:2 23674:1 23676:1 23685:1 23703:1 23712:1 23713:1 23719:1 23720:2 23722:1 23723:1 23733:1 23736:1 23739:3 23741:4 23744:1 23767:1 23768:1 23775:19 23777:2 23784:1 23797:2 23828:1 23835:9 23836:1 23840:1 23847:1 23853:1 23858:7 23862:1 23865:1 23866:10 23869:1 23871:1 23885:2 23891:1 23893:1 23923:1 23940:2 23949:1 23950:1 23952:1 23967:1 23971:4 23974:4 23991:1 23993:1 23994:1 24003:1 24004:1 24025:1 24034:1 24039:4 24051:1 24054:1 24070:3 24076:1 24081:1 24095:1 24096:3 24100:1 24126:5 24128:1 24129:1 24132:1 24137:2 24143:1 24151:1 24162:2 24164:1 24168:1 24170:7 24179:1 24213:1 24225:1 24239:1 24251:1 24257:1 24265:2 24266:8 24267:1 24271:1 24274:1 24275:1 24276:1 24280:1 24286:1 24287:1 24292:1 24296:1 24307:2 24326:1 24330:2 24332:1 24341:3 24350:1 24370:3 24373:1 24385:1 24394:1 24398:1 24401:6 24407:1 24410:1 24411:5 24412:1 24438:3 24441:1 24463:1 24473:1 24476:6 24477:2 24478:1 24482:1 24483:5 24485:2 24487:4 24503:8 24525:3 24530:6 24536:3 24538:1 24568:1
14 9:2 30:2 34:1 56:1 59:1 71:1 75:1 96:3 112:1 146:1 157:4 162:1 163:1 185:9 186:9 188:2 196:1 197:1 204:1 209:1 216:1 219:3 223:2 224:1 230:1 233:1 239:1 242:1 243:1 247:1 253:1 254:9 256:1 260:2 265:1 270:1 282:1 295:1 296:9 308:1 314:1 318:3 320:2 323:1 336:1 339:1 346:2 375:2 376:2 379:1 384:1 407:3 450:1 457:11 469:1 501:3 510:1 515:1 524:1 525:1 527:6 541:2 545:2 547:1 565:3 592:2 599:1 607:1 619:1 636:1 663:1 677:1 693:1 698:1 699:1 704:2 708:5 713:1 714:1 721:1 724:1 731:1 732:2 748:4 749:1 753:1 759:7 762:1 763:1 764:2 766:1 772:1 777:1 779:1 785:5 789:2 802:1 811:1 814:7 831:3 833:1 834:3 838:3 851:3 864:2 869:3 875:1 877:1 880:1 881:1 884:2 888:1 889:2 892:1 895:2 900:2 907:1 909:1 911:1 912:1 914:2 922:1 927:1 932:1 933:1 942:1 946:2 949:1 965:2 969:2 980:2 1000:1 1009:3 1011:2 1021:1 1023:2 1044:1 1045:1 1046:3 1048:1 1051:7 1053:1 1055:1 1059:4 1068:1 1077:1 1094:3 1095:1 1098:1 1114:2 1124:1 1125:1 1127:1 1128:1 1134:1 1141:1 1153:2 1155:1 1160:2 1168:1 1171:6 1172:3 1187:3 1205:1 1217:1 1220:5 1226:1 1229:2 1256:2 1259:6 1264:4 1278:1 1285:1 1292:1 1293:2 1297:1 1299:1 1301:1 1321:1 1332:4 1344:1 1356:2 1360:3 1369:1 1372:1 1381:5 1395:1 1398:1 1401:9 1405:1 1413:1 1424:1 1425:2 1439:1 1448:1 1452:1 1453:1 1470:1 1507:8 1510:1 1517:5 1526:2 1529:1 1535:1 1536:1 1538:2 1545:2 1546:1 1564:5 1570:1 1585:1 1589:2 1591:4 1603:1 1605:1 1616:2 1617:3 1621:1 1622:2 1626:1 1627:1 1628:1 1629:1 1640:1 1654:2 1659:1 1673:1 1674:1 1683:1 1701:1 1703:1 1710:1 1715:1 1723:1 1727:1 1730:1 1731:7 1737:1 1745:1 1753:1 1754:1 1759:1 1766:12 1770:1 1781:2 1785:1 1798:1 1809:7 1818:1 1826:5 1829:1 1834:1 1838:3 1842:1 1846:3 1856:7 1863:1 1874:2 1879:1 1880:1 1881:1 1882:2 1883:2 1885:2 1888:1 1891:2 1904:2 1908:1 1910:2 1911:1 1912:4 1938:4 1939:1 1941:2 1942:2 1945:10 1947:3 1953:1 1954:5 1955:2 1957:1 1960:1 1963:3 1965:3 1968:6 1970:2 1973:2 1976:4 1978:1 1991:1 2000:1 2009:1 2015:1 2020:1 2028:1 2040:2 2041:1 2042:1 2047:1 2049:1 2051:2 2053:1 2061:2 2065:2 2071:1 2076:2 2077:2 2112:1 2128:1 2129:1 2131:1 2134:3 2149:1 2157:1 2164:1 2172:2 2178:2 2183:2 2193:1 2198:1 2208:1 2226:4 2229:1 2234:2 2254:1 2274:2 2275:2 2277:1 2286:2 2295:1 2298:1 2303:1 2305:1 2321:6 2325:3 2333:1 2349:1 2358:1 2366:3 2372:1 2380:2 2381:1 2383:5 2389:1 2390:7 2394:1 2400:1 2414:1 2419:2 2425:1 2426:1 2433:1 2445:1 2448:1 2451:5 2462:49 2464:2 2465:1 2469:1 2470:1 2480:2 2486:1 2504:1 2507:11 2513:2 2519:12 2529:1 2530:2 2565:5 2576:2 2587:2 2593:1 2597:2 2609:1 2627:5 2638:1 2691:1 2704:1 2706:1 2709:1 2731:3 2736:11 2742:2 2746:1 2754:1 2762:1 2770:1 2779:3 2780:3 2785:2 2787:1 2798:2 2801:1 2802:10 2821:1 2826:1 2834:3 2837:1 2844:1 2846:1 2848:3 2849:1 2854:2 2855:2 2879:1 2886:11 2895:1 2901:1 2919:3 2936:1 2954:2 2979:1 2980:1 2994:1 3002:2 3003:1 3020:4 3027:1 3041:1 3042:1 3049:5 3050:1 3060:1 3061:1 3064:1 3072:1 3076:1 3077:7 3090:1 3098:1 3099:2 3113:1 3116:1 3131:1 3132:1 3133:1 3147:3 3149:1 3153:1 3171:1 3173:1 3179:1 3183:1 3184:16 3204:1 3206:2 3213:2 3221:4 3223:1 3225:1 3231:1 3234:7 3245:1 3248:1 3253:1 3256:1 3266:1 3285:1 3287:2 3292:1 3295:3 3297:5 3304:1 3310:2 3312:1 3315:1 3316:1 3322:2 3324:1 3326:4 3328:2 3332:1 3342:1 3351:1 3353:1 3369:3 3372:1 3375:1 3379:1 3404:1 3407:2 3408:2 3414:1 3416:2 3418:1 3462:1 3494:1 3499:1 3518:2 3519:1 3520:1 3522:1 3524:1 3525:1 3531:1 3545:1 3546:2 3547:2 3562:1 3563:1 3572:1 3581:3 3588:2 3598:1 3606:1 3612:1 3615:1 3618:3 3631:1 3641:16 3649:1 3660:1 3667:1 3677:1 3678:3 3679:1 3687:1 3707:1 3712:3 3735:1 3738:1 3741:1 3744:1 3766:1 3774:1 3776:1 3783:1 3786:1 3804:1 3831:1 3837:4 3841:1 3854:1 3878:1 3886:3 3889:1 3898:1 3907:3 3908:3 3909:2 3915:2 3918:2 3938:7 3940:1 3963:4 3964:1 3966:1 3967:1 3976:1 3979:1 3984:2 3995:9 3998:9 4005:2 4011:1 4012:1 4026:1 4033:1 4046:1 4051:1 4060:1 4061:1 4062:3 4083:1 4091:2 4093:1 4102:1 4107:20 4108:4 4109:1 4120:2 4128:1 4131:1 4136:3 4145:1 4154:1 4163:2 4183:1 4186:1 4190:2 4195:1 4198:15 4211:3 4212:7 4213:3 4216:1 4218:3 4221:1 4223:1 4224:1 4225:1 4229:1 4234:2 4236:4 4237:3 4238:4 4244:3 4268:1 4305:1 4325:1 4332:3 4333:1 4340:1 4353:1 4354:1 4368:1 4371:2 4374:2 4375:6 4376:1 4382:1 4399:1 4400:1 4409:1 4413:2 4423:1 4429:1 4432:1 4434:1 4447:2 4460:1 4464:1 4469:1 4471:2 4473:1 4497:1 4498:3 4505:1 4512:1 4518:5 4519:3 4525:1 4534:2 4539:1 4541:1 4542:1 4551:1 4566:1 4569:2 4572:2 4581:1 4586:1 4587:1 4592:1 4599:4 4608:1 4609:2 4611:1 4620:1 4621:1 4622:1 4636:1 4647:1 4655:1 4667:1 4668:1 4673:1 4683:2 4684:3 4710:3 4722:1 4724:1 4734:1 4744:1 4759:1 4768:1 4773:1 4784:1 4792:1 4796:4 4814:2 4820:1 4821:2 4822:1 4825:1 4829:1 4832:2 4853:1 4876:2 4889:2 4892:1 4894:4 4901:2 4909:1 4931:1 4963:1 4986:1 4993:1 5000:1 5003:2 5016:3 5024:1 5029:1 5037:1 5044:1 5047:2 5049:4 5067:1 5071:4 5072:3 5076:1 5077:1 5088:2 5093:1 5095:1 5100:2 5124:1 5127:1 5146:1 5187:1 5192:1 5201:3 5202:1 5203:1 5224:1 5232:1 5247:2 5248:2 5253:1 5254:1 5258:2 5262:1 5269:1 5283:1 5308:6 5310:1 5313:1 5322:9 5325:5 5326:2 5332:6 5333:3 5337:4 5338:2 5339:2 5340:4 5342:1 5344:1 5347:6 5349:13 5350:1 5352:5 5354:4 5449:1 5451:11 5484:1 5488:1 5492:1 5500:1 5520:2 5529:1 5530:1 5531:1 5533:2 5534:1 5535:1 5585:1 5595:1 5599:4 5604:1 5608:1 5610:2 5627:1 5640:1 5670:1 5674:1 5681:2 5683:1 5686:4 5687:1 5688:3 5702:11 5711:1 5712:1 5719:2 5721:1 5726:1 5730:1 5746:3 5752:1 5774:1 5783:2 5788:2 5807:2 5813:3 5815:1 5828:1 5849:1 5860:1 5865:3 5871:1 5874:3 5878:3 5889:1 5900:1 5931:2 5939:1 5943:1 5947:6 5948:3 5952:1 5968:2 5998:1 6005:2 6017:1 6034:1 6042:1 6044:1 6045:1 6046:1 6047:3 6049:1 6050:1 6056:1 6062:1 6071:1 6079:1 6087:1 6112:3 6116:2 6126:1 6128:1 6130:1 6131:1 6139:2 6145:2 6151:1 6175:2 6183:12 6187:1 6194:1 6207:1 6235:1 6237:2 6289:1 6293:1 6311:4 6324:1 6352:1 6355:3 6364:2 6365:10 6373:1 6378:1 6381:2 6382:2 6386:3 6389:1 6402:3 6405:1 6407:1 6409:1 6410:1 6412:1 6416:2 6417:1 6418:1 6422:1 6429:52 6433:1 6434:1 6436:1 6440:1 6448:1 6449:5 6451:8 6459:4 6468:1 6475:1 6486:1 6491:1 6492:1 6493:1 6510:1 6516:1 6525:1 6526:4 6532:2 6542:1 6554:1 6560:1 6578:1 6589:1 6597:1 6616:1 6619:2 6643:1 6661:3 6667:1 6669:1 6675:1 6678:2 6685:1 6687:1 6706:1 6707:3 6711:2 6715:1 6716:3 6723:5 6756:1 6769:1 6781:1 6789:1 6791:1 6794:3 6796:2 6802:1 6804:1 6809:1 6810:5 6824:4 6834:1 6839:3 6843:1 6846:1 6847:1 6854:4 6859:18 6908:5 6911:1 6920:1 6931:1 6937:1 6981:4 6991:1 7016:1 7021:1 7022:1 7027:2 7033:1 7038:1 7045:1 7047:1 7054:6 7059:2 7068:12 7096:2 7097:1 7104:1 7108:1 7116:1 7122:1 7124:1 7132:1 7137:1 7157:4 7160:1 7163:1 7164:1 7165:1 7166:2 7169:4 7170:2 7177:1 7178:2 7179:1 7181:2 7182:1 7190:1 7194:1 7199:1 7202:1 7215:1 7216:3 7221:1 7235:1 7245:1 7246:3 7251:1 7268:1 7273:1 7285:14 7303:2 7322:1 7341:1 7360:1 7361:6 7363:1 7374:1 7377:1 7379:1 7382:2 7391:2 7400:11 7402:2 7409:2 7410:1 7414:1 7418:2 7419:2 7427:2 7430:1 7432:3 7435:1 7438:3 7443:1 7444:1 7445:1 7450:5 7451:1 7456:3 7457:5 7459:2 7460:1 7461:7 7462:1 7464:2 7465:2 7471:1 7478:1 7487:1 7499:2 7510:2 7527:1 7550:1 7552:1 7553:3 7554:2 7564:2 7571:5 7572:1 7576:1 7581:9 7588:1 7589:1 7605:1 7614:3 7615:1 7622:1 7626:1 7638:1 7648:4 7656:1 7658:3 7670:1 7671:1 7682:2 7686:2 7701:1 7702:1 7709:1 7712:6 7741:1 7742:1 7743:1 7750:1 7751:1 7753:4 7754:1 7761:1 7763:1 7768:1 7773:14 7778:1 7782:1 7787:4 7799:1 7803:1 7804:1 7810:3 7816:1 7820:3 7841:2 7860:2 7868:2 7872:1 7880:1 7887:4 7894:1 7905:1 7908:1 7912:1 7923:1 7929:4 7930:1 7950:3 7964:3 7972:1 7976:1 7979:1 7982:1 7988:7 7999:1 8002:1 8005:1 8023:2 8030:1 8049:1 8065:13 8070:9 8079:1 8081:13 8082:9 8099:5 8107:1 8110:1 8140:1 8158:1 8162:4 8171:3 8174:1 8175:3 8176:13 8189:2 8195:1 8206:5 8207:3 8216:2 8229:2 8230:1 8234:21 8235:1 8249:2 8256:1 8272:2 8279:1 8282:1 8284:1 8285:9 8296:2 8304:2 8311:2 8314:1 8317:1 8318:1 8320:1 8328:6 8332:1 8339:1 8343:1 8348:1 8350:1 8352:7 8355:1 8357:2 8359:4 8361:1 8364:2 8376:1 8383:1 8387:4 8404:2 8428:1 8433:3 8437:1 8443:2 8469:10 8471:1 8472:1 8508:1 8553:2 8567:2 8568:2 8574:1 8582:2 8583:1 8593:2 8597:3 8598:8 8603:1 8605:1 8614:1 8617:1 8618:1 8623:1 8630:1 8632:1 8635:1 8637:1 8656:3 8657:1 8670:1 8672:1 8681:3 8690:2 8692:1 8702:2 8709:1 8711:1 8714:3 8719:1 8726:1 8727:3 8731:1 8736:5 8753:3 8759:9 8761:1 8771:1 8773:3 8778:1 8782:3 8783:1 8785:1 8794:1 8795:2 8800:2 8802:11 8809:5 8812:1 8814:6 8822:2 8830:1 8831:2 8832:5 8833:5 8836:1 8849:1 8856:1 8878:2 8891:10 8900:4 8901:1 8910:4 8911:1 8914:2 8916:7 8944:1 8955:1 8968:1 8971:1 8974:2 8979:1 8983:2 8993:1 8996:1 8998:2 8999:1 9000:1 9002:6 9012:1 9014:1 9022:1 9027:1 9038:1 9043:1 9058:4 9060:1 9062:2 9063:1 9067:2 9084:1 9093:1 9097:1 9101:10 9102:9 9120:5 9123:1 9127:2 9132:1 9138:1 9140:1 9142:2 9149:1 9156:1 9165:1 9166:1 9173:1 9181:1 9183:1 9185:3 9192:1 9222:3 9227:1 9239:1 9240:2 9243:1 9252:9 9263:1 9274:1 9313:2 9318:2 9336:1 9338:1 9346:1 9363:1 9370:1 9377:4 9392:1 9400:1 9403:6 9419:1 9426:1 9440:2 9441:1 9455:9 9462:2 9466:1 9488:8 9495:1 9497:1 9532:14 9536:3 9547:1 9550:4 9562:2 9563:3 9565:2 9575:2 9596:1 9599:1 9607:1 9619:1 9622:2 9624:1 9645:1 9653:1 9656:2 9682:6 9683:1 9688:2 9690:1 9691:1 9697:1 9698:1 9700:1 9710:2 9716:2 9723:3 9729:2 9738:2 9743:1 9745:1 9756:1 9772:2 9810:4 9818:1 9823:5 9824:1 9850:1 9859:3 9867:1 9877:1 9878:3 9881:1 9884:1 9890:1 9891:1 9900:1 9918:3 9922:1 9923:1 9924:5 9941:2 9944:1 9949:1 9950:1 9958:1 9963:1 9974:1 9999:1 10021:1 10022:3 10037:1 10040:2 10042:2 10045:1 10046:1 10052:2 10053:3 10054:3 10070:1 10073:1 10074:3 10090:6 10117:1 10126:1 10169:5 10172:1 10176:1 10196:1 10198:1 10204:1 10211:1 10217:1 10218:6 10220:1 10232:1 10247:1 10254:1 10278:5 10311:1 10316:1 10318:3 10319:1 10324:1 10329:1 10353:1 10355:1 10360:2 10369:1 10370:1 10384:9 10406:1 10457:2 10465:1 10480:40 10502:1 10503:5 10524:1 10530:1 10531:4 10537:1 10539:1 10540:3 10551:1 10554:2 10576:1 10587:1 10589:1 10593:1 10597:1 10598:6 10600:2 10617:2 10648:2 10651:7 10654:1 10659:1 10667:1 10707:1 10713:1 10719:1 10722:1 10725:3 10757:1 10758:1 10772:1 10792:1 10809:1 10815:1 10818:1 10823:2 10837:1 10843:1 10847:11 10851:4 10862:1 10871:4 10872:1 10879:1 10887:1 10892:1 10897:2 10898:2 10912:2 10951:2 10952:1 10953:1 10961:4 10962:2 10970:2 10974:5 10979:2 10981:1 10985:4 10987:1 10993:3 11013:1 11014:1 11016:1 11019:1 11036:1 11046:6 11047:8 11050:1 11056:2 11062:1 11087:1 11103:4 11118:2 11126:1 11155:2 11159:2 11163:3 11168:3 11173:3 11186:2 11187:4 11188:1 11201:1 11211:3 11215:8 11223:4 11235:2 11266:1 11273:5 11280:3 11283:1 11284:2 11286:1 11297:1 11301:1 11325:3 11329:1 11337:5 11341:1 11344:1 11345:1 11346:1 11347:1 11348:1 11349:2 11352:2 11353:1 11368:5 11375:5 11394:1 11400:2 11405:2 11408:1 11415:1 11430:9 11447:4 11449:1 11451:2 11459:4 11463:2 11479:1 11486:1 11507:1 11509:3 11526:2 11540:1 11584:3 11600:1 11607:1 11609:1 11632:1 11638:5 11640:1 11643:1 11653:1 11655:1 11690:1 11705:1 11708:2 11712:5 11727:1 11739:2 11742:1 11747:1 11759:1 11790:1 11792:1 11800:1 11801:3 11807:1 11812:2 11813:2 11818:1 11823:1 11830:1 11832:1 11833:1 11834:1 11843:1 11853:1 11856:1 11857:2 11864:4 11874:1 11876:1 11883:2 11900:1 11906:2 11932:1 11937:1 11949:1 11960:1 11966:1 11974:2 11976:2 11979:1 11985:1 11990:1 11992:1 11994:1 11998:2 12033:1 12038:1 12050:5 12065:1 12076:2 12078:1 12084:1 12092:1 12095:1 12097:2 12099:4 12114:1 12115:1 12126:1 12131:1 12144:3 12145:1 12146:3 12178:1 12181:1 12182:2 12184:1 12197:1 12218:1 12227:1 12229:1 12245:1 12276:3 12287:2 12289:1 12323:1 12328:1 12337:1 12338:1 12346:8 12364:2 12365:2 12366:1 12372:1 12375:1 12381:7 12387:2 12390:2 12396:1 12416:1 12425:1 12427:2 12432:1 12440:1 12444:1 12452:2 12456:1 12468:1 12483:1 12486:2 12488:2 12490:2 12491:1 12512:1 12542:1 12555:1 12556:5 12573:1 12575:3 12582:1 12583:2 12584:1 12585:1 12586:1 12594:1 12614:9 12623:1 12627:2 12635:2 12641:1 12652:2 12661:1 12662:4 12672:1 12683:1 12685:1 12698:2 12723:4 12739:2 12740:2 12741:5 12748:2 12754:1 12774:1 12797:3 12798:4 12800:5 12801:1 12822:2 12837:1 12839:2 12842:1 12843:1 12846:2 12874:1 12881:2 12930:1 12942:2 12943:1 12944:1 12945:2 12946:1 12950:5 12954:2 12961:2 12971:1 12980:1 12985:2 12988:6 12989:1 13014:2 13025:1 13032:1 13033:2 13058:2 13062:1 13072:1 13082:1 13094:1 13104:3 13125:2 13128:1 13140:4 13142:2 13153:10 13156:1 13159:1 13171:1 13181:1 13187:1 13205:1 13206:1 13207:6 13212:1 13225:4 13229:1 13238:1 13258:1 13259:1 13267:1 13288:1 13295:2 13304:1 13311:3 13324:1 13328:16 13333:3 13334:1 13336:1 13342:2 13345:1 13347:1 13362:1 13390:6 13393:1 13406:1 13410:1 13417:1 13428:2 13431:1 13434:1 13435:1 13437:1 13445:3 13446:1 13449:3 13452:2 13453:2 13454:1 13459:1 13462:1 13466:1 13470:1 13471:1 13476:1 13482:1 13489:3 13502:1 13505:2 13523:1 13525:2 13535:1 13542:1 13560:1 13561:1 13590:1 13593:2 13614:1 13615:1 13620:1 13623:1 13637:5 13640:1 13644:1 13647:3 13651:1 13662:3 13664:2 13668:1 13671:1 13680:5 13682:2 13688:3 13703:1 13707:1 13708:1 13718:1 13719:5 13729:1 13732:1 13733:2 13740:1 13760:1 13765:3 13766:1 13778:1 13780:1 13803:8 13807:4 13819:12 13823:2 13835:6 13857:1 13858:1 13865:2 13871:2 13876:1 13888:4 13895:3 13907:2 13908:2 13926:1 13928:5 13929:1 13931:1 13936:1 13947:1 13953:1 13970:3 13979:4 13986:1 13989:4 13994:4 13995:1 13996:2 14000:1 14007:2 14024:3 14026:2 14030:1 14031:3 14035:2 14041:1 14050:3 14051:9 14055:1 14062:1 14071:2 14072:1 14073:1 14077:3 14088:1 14097:4 14114:1 14119:3 14127:2 14130:1 14137:1 14165:1 14178:11 14181:2 14202:1 14204:2 14207:1 14218:1 14227:1 14229:4 14231:2 14252:2 14262:1 14265:2 14279:1 14286:1 14300:2 14302:1 14305:1 14317:1 14329:1 14332:3 14334:1 14341:1 14365:4 14366:11 14371:5 14380:1 14381:1 14382:12 14383:3 14385:1 14386:1 14387:2 14391:2 14395:2 14403:1 14404:1 14417:1 14422:2 14434:1 14443:2 14465:2 14476:11 14477:3 14496:12 14503:1 14513:1 14516:10 14522:1 14541:1 14544:1 14549:1 14553:1 14556:1 14558:1 14564:1 14576:2 14577:2 14582:2 14583:1 14596:2 14610:1 14622:1 14630:4 14635:3 14638:1 14648:1 14649:1 14650:2 14654:1 14657:2 14665:2 14672:3 14674:1 14677:9 14678:4 14691:2 14696:1 14711:1 14717:1 14719:6 14727:1 14734:1 14740:7 14744:1 14747:10 14751:1 14762:6 14763:1 14764:1 14765:3 14768:1 14774:1 14776:1 14785:6 14802:1 14804:3 14807:1 14810:1 14824:1 14837:6 14844:1 14849:2 14851:1 14853:1 14856:1 14864:5 14871:1 14877:1 14882:2 14885:5 14919:1 14934:2 14938:2 14946:4 14956:2 14962:1 14976:1 14981:2 14982:2 14987:1 14991:1 15002:1 15011:1 15015:1 15030:2 15035:2 15040:2 15067:1 15073:1 15080:2 15087:1 15089:1 15090:2 15097:1 15098:1 15100:2 15105:2 15111:1 15123:3 15133:1 15134:12 15135:1 15137:9 15142:1 15144:1 15160:3 15166:1 15169:1 15171:3 15183:2 15184:6 15196:1 15197:1 15201:2 15205:12 15233:2 15240:1 15251:2 15269:6 15282:6 15283:1 15287:1 15303:1 15307:46 15312:6 15322:1 15326:1 15344:1 15354:2 15360:1 15371:2 15374:1 15384:1 15396:6 15405:7 15409:1 15423:1 15424:1 15436:1 15438:1 15444:1 15445:2 15452:2 15453:1 15460:3 15480:2379 15483:2 15492:2 15496:1 15507:1 15508:1 15510:1 15518:1 15524:1 15554:1 15556:2 15560:1 15568:1 15570:2 15574:1 15591:1 15595:1 15599:2 15610:4 15617:3 15623:1 15625:1 15638:4 15639:4 15641:1 15642:2 15645:1 15646:1 15647:1 15649:4 15652:1 15655:6 15658:1 15661:1 15662:8 15678:2 15684:1 15723:1 15738:1 15742:2 15743:1 15763:3 15773:1 15776:12 15790:1 15814:1 15816:2 15847:1 15853:1 15855:1 15866:1 15869:1 15871:2 15875:1 15884:1 15896:2 15927:1 15929:4 15935:2 15938:1 15943:1 15949:6 15955:1 15957:1 15960:1 15966:2 15984:1 15994:1 15997:4 16008:1 16019:1 16036:1 16042:8 16043:3 16051:1 16052:1 16054:7 16056:1 16059:1 16064:1 16074:2 16077:3 16078:1 16079:1 16094:1 16102:1 16103:1 16111:1 16112:1 16115:4 16118:1 16121:10 16139:1 16147:1 16151:2 16152:8 16154:9 16161:1 16171:1 16177:2 16179:1 16187:1 16206:2 16228:1 16239:1 16254:1 16262:3 16267:1 16268:2 16270:1 16271:1 16273:2 16274:2 16277:1 16283:2 16287:1 16296:1 16300:1 16302:2 16306:2 16308:1 16309:1 16310:1 16313:1 16318:1 16337:1 16341:1 16358:1 16370:3 16376:1 16387:6 16402:1 16409:4 16412:2 16413:1 16426:1 16428:1 16438:1 16458:1 16474:1 16479:1 16484:7 16485:5 16488:1 16490:2 16495:3 16500:3 16503:2 16506:1 16509:2 16534:2 16547:1 16548:1 16557:1 16577:2 16593:4 16603:1 16605:1 16611:1 16620:1 16623:1 16625:1 16630:3 16643:1 16652:2 16654:3 16659:1 16665:1 16670:1 16673:1 16679:1 16681:5 16682:1 16693:1 16718:2 16726:5 16727:1 16729:1 16732:1 16733:1 16735:1 16743:1 16744:4 16753:7 16754:1 16761:1 16763:1 16775:1 16777:1 16778:2 16780:1 16787:2 16792:1 16809:1 16815:6 16817:1 16853:1 16855:2 16861:5 16862:2 16867:5 16871:1 16875:1 16882:1 16895:1 16897:2 16919:1 16921:9 16928:1 16946:2 16964:1 16970:1 16971:1 16975:1 17001:4 17011:1 17013:1 17030:2 17037:1 17043:1 17046:1 17048:1 17057:2 17058:1 17066:2 17083:1 17085:2 17090:1 17107:1 17113:2 17123:1 17131:1 17136:7 17137:4 17166:1 17175:1 17176:1 17181:1 17185:1 17187:1 17188:1 17221:1 17237:7 17246:2 17248:1 17253:1 17269:2 17275:7 17276:5 17286:1 17288:1 17296:1 17298:1 17303:1 17311:3 17316:2 17320:1 17331:2 17335:1 17346:2 17347:1 17348:1 17357:1 17362:6 17363:2 17366:2 17367:1 17368:1 17386:2 17387:10 17403:1 17404:1 17424:2 17440:1 17470:1 17485:5 17491:3 17492:1 17499:1 17515:1 17520:1 17553:2 17559:1 17563:1 17569:1 17575:1 17580:1 17602:2 17605:1 17608:1 17616:2 17620:1 17622:1 17623:5 17626:1 17631:2 17641:1 17645:1 17649:1 17658:1 17660:1 17668:1 17678:9 17689:1 17706:2 17712:1 17724:3 17725:2 17730:1 17735:3 17739:1 17742:2 17743:1 17768:1 17772:2 17774:2 17775:1 17788:1 17792:1 17795:1 17808:1 17822:1 17826:1 17827:1 17834:3 17838:2 17839:1 17852:2 17853:2 17855:4 17857:1 17862:1 17865:1 17886:2 17890:1 17900:1 17906:1 17908:1 17910:1 17915:2 17916:12 17919:1 17921:3 17922:1 17924:2 17925:1 17927:4 17943:3 17955:4 17956:1 17958:4 17962:2 17969:1 17975:1 17978:1 17979:1 17980:2 17983:3 17995:5 18009:4 18016:1 18025:2 18028:1 18035:1 18037:1 18038:2 18041:2 18042:1 18043:8 18053:4 18058:1 18064:1 18068:3 18069:1 18073:1 18079:1 18088:1 18092:1 18093:8 18116:1 18130:2 18146:1 18159:1 18165:1 18166:5 18168:5 18174:2 18177:1 18181:1 18189:1 18193:1 18197:2 18201:1 18208:5 18209:1 18210:2 18215:1 18248:1 18249:1 18266:1 18282:1 18313:2 18320:1 18339:2 18356:1 18357:1 18358:1 18360:1 18366:2 18367:1 18369:3 18370:2 18375:4 18378:2 18379:1 18406:3 18409:1 18410:4 18414:3 18423:1 18436:1 18447:1 18454:1 18468:1 18469:2 18474:3 18478:1 18479:3 18482:1 18485:2 18491:2 18498:2 18504:1 18509:1 18511:3 18513:1 18523:1 18539:1 18555:1 18567:1 18568:1 18570:1 18572:1 18578:1 18580:1 18585:1 18587:1 18602:1 18616:3 18617:1 18623:1 18629:1 18631:1 18645:1 18654:2 18661:1 18664:1 18665:1 18674:2 18700:1 18702:5 18704:1 18727:4 18732:8 18736:1 18742:2 18747:1 18748:1 18750:1 18754:1 18755:1 18768:1 18784:1 18792:3 18800:2 18805:1 18816:1 18821:1 18849:1 18856:8 18857:2 18862:9 18867:1 18880:1 18881:3 18882:1 18884:1 18886:1 18901:2 18904:1 18905:1 18916:1 18929:1 18930:2 18931:3 18934:1 18938:2 18941:6 18949:1 18974:1 18980:1 19001:1 19011:1 19024:2 19033:4 19043:1 19048:1 19056:3 19059:1 19060:2 19076:1 19080:2 19085:2 19098:3 19108:7 19126:2 19134:3 19136:2 19139:1 19145:1 19146:1 19148:1 19150:1 19153:3 19172:1 19183:1 19193:2 19205:3 19207:3 19210:10 19226:3 19230:1 19249:1 19250:1 19258:1 19263:1 19267:1 19275:2 19292:7 19293:1 19294:1 19302:4 19303:1 19322:1 19328:3 19331:1 19335:1 19337:5 19339:2 19354:1 19359:1 19365:1 19368:1 19373:2 19374:1 19386:1 19391:1 19392:2 19395:2 19402:1 19412:1 19416:1 19422:1 19425:2 19438:3 19440:1 19443:5 19446:1 19453:1 19469:1 19471:3 19475:1 19480:1 19486:2 19487:9 19490:1 19507:1 19508:1 19517:1 19522:1 19532:1 19544:5 19559:4 19561:1 19562:1 19564:1 19570:1 19575:1 19586:1 19587:1 19603:1 19606:1 19610:1 19612:1 19613:1 19637:1 19638:1 19644:2 19645:1 19657:1 19678:1 19683:1 19702:1 19706:1 19710:1 19714:1 19716:2 19730:2 19745:1 19753:1 19755:1 19757:2 19758:1 19762:8 19767:1 19773:1 19787:1 19789:1 19792:1 19804:1 19805:3 19810:5 19813:2 19837:1 19844:1 19847:1 19849:1 19886:1 19897:5 19901:1 19902:2 19909:1 19912:1 19924:1 19925:1 19928:3 19962:1 19966:2 19972:1 19992:1 20000:1 20004:1 20015:2 20034:1 20040:6 20072:1 20080:5 20083:1 20084:5 20096:2 20098:1 20099:1 20103:1 20108:1 20109:6 20111:1 20118:1 20128:1 20137:1 20138:1 20152:1 20165:1 20180:1 20208:1 20218:1 20223:1 20224:1 20226:1 20227:1 20235:1 20239:1 20247:2 20251:1 20252:2 20253:1 20258:2 20261:1 20266:1 20267:1 20270:4 20275:1 20278:1 20293:1 20304:1 20316:2 20317:3 20318:9 20319:1 20320:1 20326:3 20327:4 20331:3 20332:4 20333:1 20334:5 20336:1 20337:6 20338:2 20341:2 20343:8 20344:7 20350:1 20353:1 20356:1 20371:1 20373:1 20378:5 20380:1 20383:3 20391:1 20397:1 20398:9 20399:3 20406:1 20411:2 20413:1 20424:1 20435:1 20436:1 20440:1 20441:2 20442:10 20447:8 20448:4 20464:1 20469:3 20470:1 20485:1 20496:3 20502:3 20505:1 20510:1 20512:4 20529:2 20552:1 20560:1 20576:4 20595:4 20596:1 20611:1 20614:1 20619:1 20621:1 20627:1 20629:2 20631:9 20653:1 20659:1 20668:5 20686:1 20694:1 20696:1 20717:1 20718:2 20727:1 20733:1 20738:3 20740:1 20742:9 20745:1 20760:1 20761:9 20762:1 20769:1 20785:13 20787:1 20805:1 20812:1 20818:1 20829:7 20831:1 20846:1 20850:1 20853:1 20871:1 20872:3 20873:1 20874:1 20887:2 20890:2 20928:1 20930:1 20936:1 20949:12 20962:7 20973:2 20995:1 21007:1 21011:1 21012:2 21017:1 21021:2 21056:1 21062:2 21065:2 21074:1 21077:1 21089:1 21099:1 21100:2 21107:2 21108:7 21111:1 21112:2 21113:1 21123:2 21133:1 21134:3 21138:1 21139:1 21146:1 21150:6 21173:1 21198:8 21199:5 21208:2 21209:5 21218:2 21219:1 21224:1 21225:2 21227:2 21228:1 21245:1 21249:1 21258:1 21266:1 21293:3 21306:1 21312:1 21327:1 21337:5 21350:1 21353:1 21359:1 21361:4 21380:1 21400:1 21402:1 21410:1 21430:1 21434:2 21473:1 21480:1 21482:1 21485:2 21486:1 21490:1 21508:1 21520:1 21529:4 21539:4 21543:1 21546:1 21556:1 21557:5 21561:2 21567:1 21571:1 21575:1 21581:1 21582:3 21584:1 21586:1 21588:1 21595:1 21602:2 21610:7 21612:1 21613:1 21622:1 21627:1 21630:1 21633:1 21642:5 21644:1 21645:1 21650:1 21663:2 21675:1 21684:2 21697:2 21703:2 21718:1 21723:1 21737:1 21741:1 21760:46 21773:10 21774:1 21782:5 21783:1 21784:1 21787:2 21791:1 21794:1 21812:1 21830:1 21831:2 21838:1 21844:1 21846:1 21856:1 21868:1 21878:2 21887:2 21904:1 21914:2 21916:7 21922:1 21926:1 21927:1 21943:1 21944:1 21947:1 21948:1 21982:1 21995:3 21996:1 21997:1 21998:1 22007:1 22010:1 22015:1 22016:1 22024:1 22027:4 22035:1 22037:1 22041:1 22048:3 22078:1 22080:1 22094:1 22109:1 22119:2 22123:1 22132:1 22142:1 22144:1 22153:1 22163:10 22179:1 22192:1 22208:1 22211:1 22215:1 22218:1 22223:2 22229:2 22233:1 22243:1 22245:9 22247:1 22251:1 22256:1 22263:1 22279:2 22281:1 22315:1 22320:1 22325:3 22328:1 22331:22 22334:1 22340:1 22360:1 22368:1 22376:4 22378:1 22383:1 22388:1 22410:2 22415:1 22417:1 22431:1 22434:2 22449:1 22455:1 22460:1 22465:1 22466:3 22472:1 22478:1 22481:1 22485:1 22491:1 22493:1 22504:1 22513:1 22517:2 22520:7 22534:2 22538:1 22548:3 22551:5 22552:1 22561:1 22585:1 22587:1 22593:1 22598:1 22601:1 22602:1 22611:7 22617:1 22623:1 22627:1 22644:2 22646:3 22647:1 22655:1 22658:1 22662:1 22669:4 22690:5 22699:8 22707:2 22709:1 22715:1 22730:1 22734:2 22736:1 22749:3 22755:9 22756:1 22759:6 22760:3 22761:3 22769:1 22779:1 22786:6 22787:1 22795:2 22799:1 22802:1 22803:7 22809:1 22812:1 22815:1 22818:1 22820:1 22822:1 22828:1 22830:2 22831:3 22846:2 22864:1 22865:1 22866:1 22874:3 22876:1 22895:1 22902:1 22903:1 22905:2 22914:1 22916:2 22924:1 22931:1 22937:1 22942:1 22948:1 22982:1 23000:3 23001:1 23003:1 23011:1 23027:5 23032:1 23039:1 23064:2 23071:1 23075:1 23076:3 23084:1 23089:9 23109:14 23118:1 23125:3 23127:3 23128:1 23143:1 23151:1 23155:1 23166:1 23167:2 23175:1 23185:1 23188:1 23196:2 23198:1 23201:1 23226:1 23237:4 23248:1 23256:1 23263:1 23264:1 23284:4 23293:1 23295:1 23298:3 23299:1 23300:3 23305:1 23307:1 23314:6 23316:1 23331:1 23333:1 23335:1 23341:1 23344:5 23349:1 23360:3 23361:1 23363:1 23378:1 23384:3 23385:2 23386:2 23391:1 23392:1 23393:2 23404:4 23413:2 23416:1 23424:2 23430:27 23431:3 23433:2 23435:1 23456:2 23466:4 23476:2 23491:1 23496:1 23507:1 23521:1 23524:1 23551:2 23558:1 23586:10 23588:1 23592:1 23603:5 23609:1 23610:7 23616:6 23620:1 23623:2 23626:7 23633:1 23646:1 23647:6 23655:4 23659:2 23674:1 23676:1 23685:1 23703:1 23711:1 23712:1 23713:1 23719:1 23720:2 23722:1 23723:1 23733:1 23736:1 23739:3 23741:4 23744:1 23767:1 23768:1 23775:21 23777:2 23784:1 23797:2 23828:1 23835:9 23836:1 23840:1 23847:1 23853:1 23858:7 23862:1 23865:1 23866:11 23869:1 23871:1 23885:2 23891:1 23893:1 23923:1 23940:2 23949:1 23950:1 23952:1 23967:1 23971:4 23974:4 23991:1 23993:1 23994:1 24002:1 24003:2 24004:1 24025:1 24034:1 24039:4 24051:1 24054:1 24070:3 24076:1 24081:1 24095:1 24096:3 24100:1 24110:2 24126:5 24128:1 24129:1 24132:1 24137:3 24143:1 24150:1 24151:1 24162:2 24164:1 24168:1 24170:8 24179:1 24213:1 24225:1 24239:1 24251:1 24257:1 24265:2 24266:8 24267:1 24271:1 24274:1 24275:1 24276:1 24280:1 24286:1 24287:1 24292:1 24296:1 24307:2 24326:1 24330:2 24332:1 24341:3 24350:1 24370:3 24373:1 24385:1 24394:1 24398:1 24401:6 24407:1 24410:1 24411:6 24412:1 24438:3 24441:1 24463:1 24473:1 24476:6 24477:2 24478:1 24482:1 24483:5 24485:2 24487:4 24503:9 24525:3 24530:6 24536:3 24538:1 24568:1
14 1:1 9:2 30:2 34:1 56:1 59:1 71:1 75:1 96:3 112:2 146:1 157:4 162:1 163:1 185:11 186:9 188:2 196:1 197:2 204:1 209:1 216:1 219:3 223:2 224:1 230:1 233:1 239:1 242:1 243:1 247:1 253:1 254:9 256:1 260:2 265:1 270:1 282:1 295:1 296:10 308:1 314:1 318:3 320:2 323:1 336:1 339:1 346:2 375:2 376:2 379:1 384:1 396:1 407:3 450:1 457:11 469:1 501:3 510:1 515:1 524:1 525:1 527:6 541:2 545:2 547:1 565:3 592:2 599:1 607:1 619:1 636:1 663:1 677:1 693:1 698:1 699:1 704:2 708:5 713:1 714:1 721:1 724:1 731:1 732:2 748:4 749:1 753:1 759:7 762:1 763:1 764:2 766:1 772:1 777:1 779:1 785:5 789:2 802:1 811:1 814:7 831:3 833:1 834:3 838:3 851:3 864:2 869:3 875:1 877:1 880:1 881:1 884:2 888:1 889:2 892:1 895:2 900:2 907:1 909:1 911:1 912:1 914:2 922:1 927:1 932:1 933:1 942:1 946:2 949:1 965:2 969:2 980:2 1000:1 1009:3 1011:2 1021:1 1023:2 1044:1 1045:1 1046:3 1048:1 1051:7 1053:1 1055:1 1059:4 1068:1 1077:1 1094:3 1095:1 1098:1 1114:2 1124:1 1125:1 1127:1 1128:1 1134:1 1141:1 1153:2 1155:1 1160:2 1168:1 1171:6 1172:3 1187:3 1205:1 1217:1 1220:5 1226:1 1227:1 1229:2 1256:2 1259:6 1264:4 1278:1 1285:1 1292:1 1293:2 1297:1 1299:1 1301:1 1321:1 1332:4 1344:1 1356:2 1360:3 1369:1 1372:1 1381:5 1395:1 1398:1 1401:11 1405:1 1413:1 1424:1 1425:2 1439:1 1448:1 1452:1 1453:1 1470:1 1507:9 1510:1 1517:5 1526:2 1529:1 1535:1 1536:1 1538:2 1545:2 1546:1 1564:5 1570:1 1585:1 1589:2 1591:4 1603:1 1605:1 1616:2 1617:3 1621:1 1622:2 1626:1 1627:1 1628:1 1629:1 1640:1 1654:2 1659:1 1673:1 1674:1 1683:2 1701:1 1703:1 1710:1 1715:1 1723:1 1727:1 1730:1 1731:7 1737:1 1745:1 1753:1 1754:1 1759:1 1766:12 1770:1 1772:1 1781:2 1785:1 1796:1 1798:1 1809:8 1818:1 1826:5 1829:1 1834:1 1838:3 1842:1 1846:3 1856:7 1863:1 1874:2 1876:1 1879:1 1880:1 1881:1 1882:2 1883:2 1885:2 1888:1 1891:2 1904:2 1908:1 1910:2 1911:1 1912:4 1938:4 1939:1 1941:2 1942:2 1945:10 1947:3 1953:1 1954:5 1955:2 1957:1 1960:1 1961:1 1963:3 1965:3 1968:6 1970:2 1973:2 1976:4 1978:1 1991:1 2000:1 2009:1 2015:1 2020:1 2028:1 2040:2 2041:1 2042:1 2047:1 2049:1 2051:2 2053:1 2061:2 2065:2 2071:1 2076:2 2077:2 2112:1 2128:1 2129:1 2131:2 2134:3 2149:1 2157:1 2164:1 2172:2 2178:2 2183:2 2193:1 2198:1 2208:1 2226:4 2229:1 2234:2 2254:1 2274:2 2275:2 2277:1 2286:2 2295:1 2298:1 2303:1 2305:1 2321:6 2325:3 2333:1 2349:1 2358:1 2366:3 2372:1 2380:2 2381:1 2383:5 2389:1 2390:7 2394:1 2400:1 2414:1 2419:2 2425:1 2426:1 2433:1 2445:1 2448:1 2451:5 2462:50 2464:2 2465:1 2469:1 2470:1 2480:2 2486:1 2504:1 2507:11 2513:2 2519:12 2529:1 2530:2 2565:5 2576:2 2587:2 2593:1 2597:2 2609:1 2627:5 2638:1 2691:1 2704:1 2706:1 2709:1 2731:3 2736:11 2742:2 2746:1 2754:1 2762:1 2770:1 2779:3 2780:3 2785:2 2787:1 2798:2 2801:1 2802:10 2821:1 2826:1 2834:3 2837:1 2844:1 2846:1 2848:3 2849:1 2854:2 2855:2 2879:1 2886:11 2895:1 2901:1 2919:3 2936:1 2954:2 2979:1 2980:1 2994:1 3002:2 3003:1 3020:4 3027:1 3041:1 3042:1 3049:6 3050:1 3060:1 3061:2 3064:1 3072:1 3076:1 3077:7 3090:1 3098:1 3099:2 3113:1 3116:1 3131:1 3132:1 3133:1 3147:3 3149:1 3153:1 3171:1 3173:1 3179:1 3183:1 3184:16 3204:1 3206:2 3213:2 3221:4 3223:1 3225:1 3231:1 3234:7 3245:1 3248:1 3253:1 3256:1 3266:1 3285:1 3287:2 3292:1 3295:3 3297:5 3304:1 3310:2 3312:1 3315:1 3316:1 3322:2 3324:1 3326:4 3328:2 3332:1 3342:1 3351:1 3353:1 3369:3 3372:1 3375:1 3379:1 3404:1 3407:2 3408:2 3414:1 3416:2 3418:1 3462:1 3494:1 3499:1 3518:2 3519:1 3520:1 3522:1 3524:1 3525:1 3531:1 3545:1 3546:2 3547:2 3562:1 3563:1 3572:1 3581:3 3588:2 3598:1 3606:1 3612:1 3615:1 3618:3 3631:1 3641:16 3649:1 3660:1 3667:1 3677:1 3678:3 3679:1 3687:1 3707:1 3712:3 3735:1 3738:1 3741:1 3744:1 3766:1 3774:1 3776:1 3783:1 3786:1 3804:1 3831:1 3837:5 3841:1 3854:1 3878:1 3886:3 3889:1 3898:1 3907:3 3908:3 3909:2 3915:2 3918:2 3938:7 3940:1 3963:4 3964:1 3966:1 3967:1 3976:1 3979:1 3984:2 3995:11 3998:11 4005:2 4011:1 4012:1 4026:1 4033:1 4046:1 4051:1 4060:1 4061:1 4062:3 4083:1 4091:2 4093:1 4102:1 4107:20 4108:4 4109:1 4120:2 4128:1 4131:1 4136:3 4145:1 4154:1 4163:2 4183:1 4186:1 4190:2 4195:1 4198:15 4211:3 4212:7 4213:3 4216:1 4218:3 4221:1 4223:1 4224:1 4225:1 4229:1 4234:2 4236:4 4237:3 4238:4 4244:3 4268:1 4305:1 4325:1 4332:3 4333:1 4336:1 4340:1 4353:1 4354:1 4368:1 4371:2 4374:2 4375:6 4376:1 4382:1 4399:1 4400:1 4409:1 4413:2 4423:1 4429:1 4432:1 4434:1 4447:2 4460:1 4464:1 4469:1 4471:2 4473:1 4479:1 4497:1 4498:3 4505:1 4512:1 4518:5 4519:3 4525:1 4534:2 4539:1 4541:1 4542:1 4551:1 4566:1 4569:2 4572:2 4581:1 4586:1 4587:1 4592:1 4599:4 4608:1 4609:2 4611:1 4620:1 4621:1 4622:1 4636:1 4647:1 4655:1 4667:1 4668:1 4673:1 4683:2 4684:3 4710:3 4722:1 4724:1 4734:1 4742:1 4744:1 4759:1 4768:1 4773:1 4784:1 4792:1 4796:4 4814:2 4820:1 4821:2 4822:1 4825:1 4829:1 4832:2 4853:1 4876:2 4889:2 4892:1 4894:4 4901:2 4909:1 4931:1 4963:1 4969:1 4986:1 4993:1 5000:1 5003:2 5016:3 5024:1 5029:1 5037:1 5044:1 5047:3 5049:4 5067:1 5071:4 5072:3 5076:1 5077:1 5088:2 5093:1 5095:1 5100:2 5124:1 5127:1 5146:1 5187:1 5192:1 5201:3 5202:1 5203:1 5224:1 5232:1 5247:2 5248:2 5253:1 5254:1 5258:2 5262:1 5269:1 5283:1 5308:6 5310:1 5313:1 5322:9 5325:5 5326:2 5332:6 5333:3 5337:4 5338:2 5339:2 5340:4 5342:1 5344:1 5347:6 5349:13 5350:1 5352:5 5354:4 5449:1 5451:11 5484:1 5488:1 5492:1 5500:1 5520:2 5529:1 5530:1 5531:1 5533:2 5534:1 5535:1 5585:1 5595:1 5599:4 5604:1 5608:1 5610:2 5627:1 5640:1 5670:1 5674:1 5681:2 5683:1 5686:4 5687:1 5688:3 5702:11 5711:1 5712:1 5719:2 5721:1 5726:1 5730:1 5746:3 5752:1 5774:2 5783:2 5788:2 5807:2 5813:3 5815:2 5828:1 5849:1 5860:1 5865:3 5871:1 5874:3 5878:3 5889:1 5900:1 5931:2 5939:1 5943:1 5947:7 5948:3 5952:1 5968:2 5998:1 6005:2 6017:1 6034:1 6042:1 6044:1 6045:1 6046:1 6047:3 6049:1 6050:1 6056:1 6062:1 6071:1 6079:1 6087:1 6112:3 6116:2 6126:1 6128:1 6130:1 6131:1 6139:2 6145:2 6151:1 6175:2 6183:12 6187:1 6194:1 6207:1 6235:1 6237:2 6289:1 6293:1 6311:4 6324:1 6352:1 6355:3 6364:2 6365:10 6373:1 6378:1 6381:2 6382:2 6386:3 6389:1 6402:3 6405:1 6407:1 6409:1 6410:1 6412:1 6416:2 6417:1 6418:1 6422:1 6429:53 6433:1 6434:1 6436:1 6440:1 6448:1 6449:5 6451:8 6459:4 6468:1 6475:1 6486:1 6491:1 6492:1 6493:1 6510:1 6516:1 6525:1 6526:4 6532:2 6542:1 6554:1 6560:1 6578:1 6589:1 6597:1 6616:1 6619:2 6643:1 6661:3 6667:1 6669:1 6675:1 6678:2 6685:1 6687:1 6706:1 6707:3 6711:2 6715:1 6716:3 6723:5 6756:1 6769:1 6781:1 6789:1 6791:1 6794:3 6796:2 6802:1 6804:1 6809:1 6810:5 6824:4 6834:1 6839:3 6843:1 6846:1 6847:1 6854:5 6859:18 6908:5 6911:1 6920:1 6931:1 6937:1 6981:4 6991:1 7016:1 7021:1 7022:1 7027:2 7033:1 7038:1 7045:1 7047:1 7054:6 7059:2 7068:12 7096:2 7097:1 7104:1 7108:1 7116:1 7122:1 7124:1 7132:1 7137:1 7157:4 7160:1 7163:1 7164:2 7165:1 7166:2 7169:4 7170:2 7177:1 7178:2 7179:1 7181:2 7182:1 7190:1 7194:1 7199:1 7202:1 7215:1 7216:3 7221:1 7235:1 7245:1 7246:3 7251:1 7268:1 7273:1 7285:14 7303:2 7322:1 7341:1 7360:1 7361:6 7363:1 7374:1 7377:1 7379:1 7382:2 7391:2 7400:11 7402:2 7409:2 7410:1 7414:1 7418:2 7419:2 7427:2 7430:1 7432:3 7435:1 7438:3 7443:1 7444:1 7445:1 7450:5 7451:1 7456:3 7457:5 7459:2 7460:1 7461:7 7462:1 7464:2 7465:2 7471:1 7478:1 7487:1 7499:2 7510:2 7527:1 7550:1 7552:1 7553:3 7554:2 7564:2 7571:5 7572:1 7576:1 7581:10 7588:1 7589:1 7605:1 7614:3 7615:1 7622:1 7626:1 7638:1 7648:4 7656:1 7658:3 7670:1 7671:1 7682:2 7686:2 7701:1 7702:1 7709:1 7712:6 7741:1 7742:1 7743:1 7750:1 7751:1 7753:4 7754:1 7761:1 7763:1 7768:1 7773:14 7778:1 7782:1 7787:4 7799:1 7803:1 7804:1 7810:3 7816:1 7820:3 7841:2 7860:2 7868:2 7872:1 7880:1 7887:4 7894:1 7905:1 7908:1 7912:1 7923:1 7929:4 7930:1 7950:3 7964:3 7972:1 7976:1 7979:1 7982:1 7988:7 7999:1 8002:1 8005:1 8023:2 8030:1 8049:1 8065:13 8070:10 8079:1 8080:1 8081:13 8082:9 8099:5 8107:1 8110:1 8140:1 8158:1 8162:4 8171:3 8174:1 8175:3 8176:13 8177:1 8189:2 8195:1 8206:5 8207:3 8216:2 8229:2 8230:1 8234:21 8235:1 8249:2 8256:1 8272:2 8279:1 8282:1 8284:1 8285:11 8296:2 8304:2 8311:2 8314:1 8317:1 8318:1 8320:1 8328:6 8332:1 8339:1 8343:1 8348:1 8350:1 8352:7 8355:1 8357:2 8359:4 8361:1 8364:2 8376:1 8383:1 8387:4 8404:2 8428:1 8433:3 8437:1 8443:2 8469:10 8471:1 8472:1 8508:1 8553:2 8567:2 8568:2 8574:1 8582:2 8583:1 8593:2 8597:3 8598:8 8603:1 8605:1 8614:1 8617:1 8618:1 8623:1 8630:1 8632:1 8635:1 8637:1 8656:3 8657:1 8670:1 8672:1 8681:4 8690:2 8692:1 8693:1 8702:2 8709:1 8711:1 8714:3 8719:1 8726:1 8727:3 8731:1 8736:5 8753:3 8759:9 8761:1 8771:1 8773:3 8778:1 8782:3 8783:1 8785:1 8794:1 8795:2 8800:2 8802:11 8809:5 8812:1 8814:6 8822:2 8830:1 8831:2 8832:5 8833:5 8836:1 8849:1 8856:1 8878:2 8891:10 8900:4 8901:1 8910:4 8911:1 8914:2 8916:8 8944:1 8955:1 8968:1 8971:1 8974:2 8979:1 8983:2 8993:1 8996:1 8998:2 8999:1 9000:1 9002:7 9012:1 9014:1 9017:1 9022:1 9027:1 9038:1 9043:1 9058:4 9060:1 9062:2 9063:2 9067:2 9084:1 9093:1 9097:1 9101:12 9102:9 9120:5 9123:1 9127:2 9132:1 9138:1 9140:1 9142:2 9149:1 9156:1 9165:1 9166:1 9173:1 9181:1 9183:1 9185:3 9192:1 9222:3 9227:1 9239:1 9240:2 9243:1 9252:10 9263:1 9274:1 9313:2 9318:2 9336:1 9338:1 9346:1 9363:1 9370:1 9377:4 9392:1 9400:1 9403:6 9419:1 9426:1 9440:2 9441:1 9455:9 9462:2 9466:1 9488:8 9495:1 9497:1 9532:14 9536:3 9547:1 9550:4 9562:2 9563:3 9565:2 9575:2 9596:1 9599:1 9607:1 9619:1 9622:2 9624:1 9645:1 9653:1 9656:2 9682:6 9683:1 9688:2 9690:1 9691:1 9697:1 9698:1 9700:1 9710:2 9716:2 9723:3 9729:2 9738:2 9743:1 9745:1 9756:1 9772:2 9810:4 9818:1 9823:5 9824:1 9850:1 9859:3 9867:1 9877:1 9878:3 9881:1 9884:1 9890:1 9891:1 9900:1 9918:3 9922:1 9923:1 9924:5 9941:2 9944:1 9949:1 9950:1 9958:1 9963:1 9974:1 9999:1 10021:1 10022:3 10037:1 10040:2 10042:2 10045:1 10046:1 10052:2 10053:3 10054:3 10070:1 10073:1 10074:3 10090:6 10117:1 10126:1 10169:5 10172:1 10176:1 10196:1 10198:1 10204:1 10211:1 10217:1 10218:6 10220:1 10232:1 10247:1 10254:1 10278:5 10311:1 10316:1 10318:3 10319:1 10324:1 10329:1 10353:1 10355:1 10360:2 10369:1 10370:2 10384:11 10406:1 10457:2 10465:1 10480:41 10502:1 10503:5 10524:1 10530:1 10531:4 10537:1 10539:1 10540:3 10551:1 10554:2 10576:2 10587:1 10589:1 10593:1 10597:1 10598:6 10600:2 10617:2 10635:1 10648:2 10651:7 10654:1 10659:1 10667:1 10707:1 10713:1 10719:1 10722:1 10725:3 10757:1 10758:1 10772:1 10792:1 10809:1 10815:1 10818:1 10823:2 10837:1 10843:1 10847:11 10851:4 10862:1 10871:4 10872:1 10879:1 10887:1 10892:1 10897:2 10898:2 10912:2 10951:2 10952:1 10953:1 10961:4 10962:2 10970:2 10974:5 10979:2 10981:1 10985:4 10987:1 10993:3 11013:1 11014:1 11016:1 11019:1 11036:1 11046:6 11047:8 11050:1 11056:2 11062:1 11087:1 11103:4 11118:2 11126:1 11155:2 11159:2 11163:3 11168:3 11173:3 11186:2 11187:4 11188:1 11201:1 11211:3 11215:8 11223:4 11235:2 11266:1 11273:5 11280:3 11283:1 11284:2 11286:1 11297:1 11301:1 11325:3 11329:1 11337:5 11341:1 11344:1 11345:1 11346:1 11347:1 11348:1 11349:2 11352:2 11353:1 11368:5 11375:5 11394:1 11400:2 11405:2 11408:1 11415:1 11430:11 11447:4 11449:1 11451:2 11459:4 11463:2 11479:1 11486:1 11507:1 11509:3 11526:2 11540:1 11584:3 11600:1 11606:1 11607:1 11609:1 11632:1 11638:5 11640:1 11643:1 11653:1 11655:1 11690:1 11705:1 11708:2 11712:5 11727:1 11739:2 11742:1 11747:1 11759:1 11790:1 11792:1 11800:1 11801:3 11807:1 11812:2 11813:2 11818:1 11823:1 11830:1 11832:1 11833:1 11834:1 11843:1 11853:1 11856:1 11857:2 11864:4 11874:1 11876:1 11883:2 11900:1 11906:2 11932:1 11937:1 11949:1 11960:1 11966:1 11974:2 11976:2 11979:1 11985:1 11990:1 11992:1 11994:1 11998:2 12033:1 12038:1 12050:5 12065:1 12076:2 12078:1 12084:1 12092:1 12095:1 12097:2 12099:4 12114:1 12115:1 12126:1 12131:1 12144:3 12145:1 12146:3 12178:1 12181:1 12182:2 12184:1 12197:1 12218:1 12227:1 12229:1 12245:1 12276:3 12287:2 12289:1 12323:1 12328:1 12337:1 12338:1 12346:8 12364:2 12365:2 12366:1 12372:1 12375:1 12381:7 12387:2 12390:2 12396:1 12416:1 12425:1 12427:2 12432:1 12440:1 12444:1 12452:2 12456:1 12468:1 12483:1 12486:2 12488:2 12490:2 12491:1 12512:1 12542:1 12555:1 12556:5 12573:1 12575:3 12582:1 12583:2 12584:1 12585:1 12586:1 12594:1 12614:11 12623:1 12627:2 12635:2 12641:1 12652:2 12661:1 12662:5 12672:1 12683:1 12685:1 12698:2 12723:4 12739:2 12740:2 12741:5 12748:2 12754:1 12774:1 12797:3 12798:4 12800:5 12801:1 12822:2 12837:1 12839:2 12842:1 12843:1 12846:2 12874:1 12881:2 12930:1 12942:2 12943:1 12944:1 12945:2 12946:1 12950:5 12954:2 12961:2 12971:1 12980:1 12985:2 12988:6 12989:2 13014:2 13025:1 13032:1 13033:2 13058:2 13062:1 13072:1 13082:1 13094:1 13104:3 13125:2 13128:1 13140:4 13142:2 13153:10 13156:1 13159:1 13171:1 13181:1 13187:1 13205:1 13206:1 13207:6 13212:1 13225:4 13229:1 13238:1 13258:1 13259:1 13267:1 13288:1 13295:2 13304:1 13311:3 13324:1 13328:16 13333:3 13334:1 13336:1 13342:2 13345:1 13347:1 13362:1 13390:6 13393:1 13406:1 13410:1 13417:1 13428:2 13431:1 13434:1 13435:1 13437:1 13445:3 13446:1 13449:3 13452:2 13453:2 13454:1 13459:1 13462:1 13466:1 13470:1 13471:1 13476:1 13482:1 13489:3 13502:1 13505:2 13523:1 13525:2 13535:1 13542:1 13560:1 13561:1 13590:1 13593:2 13614:1 13615:1 13620:1 13623:1 13637:5 13640:1 13644:1 13647:3 13651:1 13662:3 13664:2 13668:1 13671:1 13680:5 13682:2 13688:3 13703:1 13707:1 13708:1 13718:1 13719:5 13729:1 13732:1 13733:2 13740:1 13760:1 13765:3 13766:1 13778:1 13780:1 13803:8 13807:4 13819:12 13823:2 13835:6 13857:1 13858:1 13865:2 13871:2 13876:1 13888:4 13895:3 13907:2 13908:2 13926:1 13928:5 13929:1 13931:1 13936:1 13947:1 13953:1 13970:3 13979:4 13986:1 13989:4 13994:4 13995:1 13996:2 14000:1 14007:2 14024:3 14026:3 14030:1 14031:3 14035:2 14041:1 14050:3 14051:11 14055:1 14062:1 14071:2 14072:1 14073:1 14077:3 14088:1 14097:4 14114:1 14119:3 14127:2 14130:1 14137:1 14165:1 14178:12 14181:2 14202:1 14204:2 14207:1 14218:1 14227:1 14229:5 14231:2 14252:2 14262:1 14265:2 14279:1 14286:1 14300:2 14302:1 14305:1 14317:1 14329:1 14332:3 14334:1 14341:1 14365:4 14366:11 14371:5 14380:1 14381:1 14382:12 14383:3 14385:1 14386:1 14387:2 14391:2 14395:2 14403:1 14404:1 14417:1 14422:2 14434:1 14443:2 14465:2 14475:1 14476:11 14477:3 14496:12 14503:1 14513:1 14516:11 14522:1 14541:1 14544:1 14549:1 14553:1 14556:1 14558:1 14564:1 14576:2 14577:2 14582:2 14583:1 14596:2 14610:1 14622:1 14630:4 14635:3 14638:1 14648:1 14649:1 14650:2 14654:1 14657:2 14665:2 14672:3 14674:1 14677:10 14678:4 14691:3 14696:1 14711:1 14717:1 14719:6 14727:1 14734:1 14740:7 14744:1 14747:10 14751:1 14762:6 14763:1 14764:1 14765:3 14768:1 14774:1 14776:1 14785:6 14802:1 14804:3 14807:1 14810:1 14824:1 14837:7 14844:1 14849:2 14851:1 14853:1 14856:1 14864:5 14871:1 14877:1 14882:2 14885:5 14914:1 14919:1 14934:2 14938:2 14946:4 14956:2 14962:1 14976:1 14981:2 14982:2 14987:1 14991:1 15002:1 15011:1 15015:1 15030:2 15035:2 15040:2 15067:1 15073:1 15080:2 15087:1 15089:1 15090:2 15097:1 15098:1 15100:2 15105:2 15111:1 15123:3 15133:1 15134:12 15135:1 15137:9 15142:1 15144:1 15160:3 15166:1 15169:1 15171:3 15183:2 15184:6 15196:1 15197:1 15201:2 15205:12 15233:2 15240:1 15251:2 15269:6 15282:6 15283:1 15287:1 15303:1 15307:47 15312:6 15322:1 15326:1 15344:1 15354:2 15360:1 15371:2 15374:1 15384:1 15396:6 15405:9 15409:1 15423:1 15424:1 15436:1 15438:1 15444:1 15445:2 15452:2 15453:1 15460:3 15480:2397 15483:2 15492:2 15496:1 15507:1 15508:1 15510:1 15518:1 15524:1 15554:1 15556:2 15560:1 15568:1 15570:2 15574:1 15591:1 15595:1 15599:2 15610:4 15617:4 15623:1 15625:2 15638:4 15639:4 15641:1 15642:2 15645:1 15646:2 15647:1 15649:4 15652:1 15655:6 15658:2 15661:1 15662:8 15678:2 15684:1 15723:1 15738:1 15739:1 15742:2 15743:1 15763:3 15773:1 15776:13 15790:1 15814:1 15816:2 15847:1 15853:1 15855:1 15866:1 15869:1 15871:2 15875:1 15884:1 15896:2 15927:1 15929:4 15935:2 15938:1 15943:1 15949:6 15955:1 15957:1 15960:1 15966:2 15984:1 15994:1 15997:4 16008:1 16019:1 16036:1 16042:8 16043:3 16051:1 16052:1 16054:7 16056:1 16059:1 16064:1 16074:2 16077:3 16078:1 16079:1 16094:1 16102:1 16103:1 16111:1 16112:1 16115:5 16118:1 16121:10 16139:1 16147:1 16151:2 16152:8 16154:11 16161:1 16171:1 16177:2 16179:1 16187:1 16206:2 16228:1 16239:1 16254:1 16262:3 16267:1 16268:2 16270:1 16271:1 16273:2 16274:2 16277:1 16283:2 16287:1 16296:1 16300:1 16302:2 16306:2 16308:1 16309:1 16310:1 16313:1 16318:1 16337:1 16341:1 16358:1 16370:3 16376:1 16387:6 16402:1 16409:4 16412:2 16413:1 16426:1 16428:1 16438:1 16458:1 16474:1 16479:1 16484:7 16485:5 16488:1 16490:2 16495:3 16500:4 16503:2 16506:1 16509:2 16534:2 16547:1 16548:1 16557:1 16577:2 16593:4 16603:1 16605:1 16611:1 16620:1 16623:1 16625:1 16630:3 16633:1 16643:1 16652:2 16654:3 16659:1 16665:1 16670:1 16673:1 16679:1 16681:5 16682:1 16693:1 16718:2 16726:5 16727:1 16729:1 16732:1 16733:1 16735:1 16743:1 16744:5 16753:7 16754:1 16761:1 16763:1 16775:1 16777:1 16778:2 16780:1 16787:2 16792:1 16809:1 16815:6 16817:1 16853:1 16855:2 16861:5 16862:2 16867:5 16871:1 16875:1 16882:1 16895:1 16897:2 16919:1 16921:9 16928:1 16946:2 16964:1 16970:1 16971:1 16975:1 17001:4 17011:1 17013:1 17030:2 17037:1 17043:1 17046:1 17048:1 17057:2 17058:1 17066:2 17083:1 17085:2 17090:1 17107:1 17113:2 17123:1 17131:1 17136:8 17137:4 17166:1 17175:1 17176:1 17181:1 17185:1 17187:1 17188:1 17221:2 17237:7 17246:2 17248:1 17253:1 17269:2 17275:7 17276:5 17286:1 17288:1 17296:1 17298:1 17303:1 17311:3 17316:2 17320:1 17331:2 17335:1 17346:2 17347:1 17348:1 17357:1 17362:6 17363:2 17366:2 17367:1 17368:1 17386:2 17387:10 17403:1 17404:1 17424:2 17440:1 17470:1 17485:5 17491:3 17492:1 17499:1 17515:1 17520:1 17553:2 17559:1 17563:1 17569:1 17575:1 17580:1 17602:2 17605:1 17608:1 17616:2 17620:1 17622:1 17623:5 17626:1 17631:2 17641:1 17645:1 17649:1 17658:1 17660:1 17668:1 17678:11 17689:1 17706:2 17712:1 17724:3 17725:2 17730:1 17735:3 17739:1 17742:2 17743:1 17768:1 17772:2 17774:2 17775:1 17788:1 17792:1 17795:1 17808:1 17822:1 17826:1 17827:1 17834:3 17838:2 17839:1 17852:2 17853:2 17855:5 17857:1 17862:1 17865:1 17886:2 17890:1 17900:1 17906:1 17908:1 17910:1 17915:2 17916:12 17919:1 17921:3 17922:1 17924:2 17925:1 17927:4 17943:3 17955:4 17956:1 17958:4 17962:2 17969:1 17975:1 17978:1 17979:1 17980:2 17983:3 17995:5 18009:4 18016:1 18025:2 18028:1 18035:1 18037:1 18038:2 18041:2 18042:1 18043:8 18053:4 18058:1 18064:1 18068:3 18069:1 18073:1 18079:1 18088:1 18092:1 18093:8 18116:1 18130:2 18146:1 18159:1 18165:1 18166:5 18168:5 18174:2 18177:1 18181:1 18189:1 18193:1 18197:2 18201:1 18208:5 18209:1 18210:2 18215:1 18237:1 18248:1 18249:1 18266:1 18282:1 18313:2 18320:1 18339:2 18356:1 18357:1 18358:1 18360:2 18366:2 18367:1 18369:3 18370:2 18375:4 18378:2 18379:1 18406:3 18409:1 18410:4 18414:3 18423:1 18436:1 18447:1 18454:1 18468:1 18469:2 18474:3 18478:1 18479:3 18482:1 18485:2 18491:2 18498:2 18504:1 18509:1 18511:3 18513:1 18523:1 18537:1 18539:1 18555:1 18567:1 18568:1 18570:1 18572:1 18578:1 18580:1 18585:1 18587:1 18602:1 18616:3 18617:1 18623:1 18629:1 18631:1 18645:1 18654:2 18661:1 18664:1 18665:1 18674:2 18700:1 18702:5 18704:1 18727:4 18732:8 18736:1 18742:2 18747:1 18748:1 18750:1 18754:1 18755:1 18768:1 18784:1 18792:3 18800:2 18805:1 18816:1 18821:1 18849:1 18856:8 18857:2 18862:9 18867:1 18880:1 18881:3 18882:1 18884:1 18886:1 18901:2 18904:1 18905:1 18916:1 18929:1 18930:2 18931:3 18934:1 18938:2 18941:6 18949:1 18974:1 18980:1 19001:1 19011:1 19024:2 19033:4 19043:1 19048:1 19056:3 19059:1 19060:2 19076:1 19080:2 19085:2 19098:3 19108:9 19126:2 19134:3 19136:3 19139:1 19145:1 19146:1 19148:1 19150:1 19153:3 19172:1 19183:1 19193:3 19205:3 19207:3 19210:10 19226:3 19230:1 19249:1 19250:1 19258:1 19263:1 19267:1 19275:2 19292:7 19293:1 19294:1 19302:4 19303:1 19322:1 19328:3 19331:1 19335:1 19337:5 19339:2 19354:1 19359:1 19365:1 19368:1 19373:2 19374:1 19386:1 19391:1 19392:2 19395:2 19402:1 19412:1 19416:1 19422:1 19425:2 19438:3 19440:1 19443:5 19446:1 19453:1 19469:1 19471:3 19475:1 19480:1 19486:2 19487:11 19490:1 19507:1 19508:1 19517:1 19522:1 19532:1 19544:6 19559:4 19561:1 19562:1 19564:1 19570:1 19575:1 19586:1 19587:1 19603:1 19606:1 19610:1 19612:1 19613:1 19637:1 19638:1 19644:2 19645:1 19657:1 19678:1 19683:1 19702:1 19706:1 19710:1 19714:1 19716:2 19730:2 19745:1 19753:1 19755:1 19757:2 19758:1 19762:8 19767:1 19773:1 19787:1 19789:1 19792:1 19804:1 19805:3 19810:5 19813:2 19837:1 19844:1 19847:1 19849:1 19886:1 19897:5 19901:1 19902:2 19909:1 19912:1 19924:1 19925:1 19928:3 19962:1 19966:2 19972:1 19992:1 20000:1 20004:1 20015:2 20034:1 20040:6 20072:1 20080:5 20083:1 20084:5 20096:2 20098:1 20099:1 20103:1 20108:1 20109:6 20111:1 20118:1 20128:1 20137:1 20138:1 20152:1 20165:1 20180:1 20208:1 20218:1 20223:1 20224:1 20226:2 20227:1 20235:1 20239:1 20247:2 20251:1 20252:2 20253:1 20258:2 20261:1 20266:1 20267:1 20270:4 20275:1 20278:1 20293:1 20304:1 20316:2 20317:3 20318:9 20319:1 20320:1 20326:3 20327:4 20331:3 20332:4 20333:1 20334:5 20336:1 20337:6 20338:2 20341:2 20343:8 20344:7 20350:1 20353:1 20356:1 20371:1 20373:1 20378:5 20380:1 20383:3 20391:1 20397:1 20398:11 20399:3 20406:1 20411:2 20413:1 20424:1 20435:1 20436:1 20440:1 20441:2 20442:10 20447:8 20448:4 20464:1 20469:3 20470:1 20485:1 20496:3 20502:3 20505:1 20510:1 20512:4 20529:2 20552:1 20560:1 20576:4 20595:4 20596:1 20611:1 20614:1 20619:1 20621:1 20627:1 20629:2 20631:11 20653:1 20659:1 20668:5 20686:1 20694:1 20696:1 20717:1 20718:2 20727:1 20733:1 20738:3 20740:1 20742:10 20745:1 20760:1 20761:11 20762:1 20769:2 20785:13 20787:1 20805:1 20812:1 20818:1 20829:7 20831:1 20846:1 20850:1 20853:1 20871:1 20872:3 20873:1 20874:1 20887:2 20890:2 20928:1 20930:1 20936:1 20949:12 20962:7 20973:2 20995:1 21007:1 21011:1 21012:2 21017:1 21021:3 21056:1 21062:2 21065:2 21074:1 21077:1 21089:1 21099:2 21100:2 21107:2 21108:7 21111:1 21112:2 21113:1 21123:2 21133:1 21134:3 21138:1 21139:1 21146:1 21150:6 21173:1 21198:8 21199:5 21208:2 21209:5 21218:2 21219:1 21224:1 21225:2 21227:2 21228:1 21245:1 21249:1 21258:1 21266:1 21293:4 21306:1 21312:1 21327:1 21337:5 21350:1 21353:1 21359:1 21361:4 21380:1 21400:1 21402:1 21410:1 21430:1 21434:2 21473:1 21480:1 21482:1 21485:2 21486:1 21490:1 21508:1 21520:1 21529:4 21539:4 21543:1 21546:1 21556:1 21557:5 21561:2 21567:1 21571:1 21575:1 21581:1 21582:3 21584:1 21586:1 21588:1 21595:1 21602:2 21610:7 21612:1 21613:1 21622:1 21627:1 21630:1 21633:1 21642:6 21644:1 21645:1 21650:1 21663:2 21675:1 21684:2 21697:2 21703:2 21718:1 21723:1 21737:1 21741:1 21760:47 21773:12 21774:1 21782:5 21783:1 21784:1 21787:2 21791:1 21794:1 21812:1 21830:1 21831:2 21838:1 21844:1 21846:1 21856:1 21868:1 21878:2 21887:2 21904:1 21914:2 21916:7 21922:1 21926:1 21927:1 21943:1 21944:1 21947:1 21948:1 21982:1 21995:3 21996:1 21997:1 21998:1 22007:1 22010:1 22015:1 22016:1 22024:1 22027:4 22035:1 22037:1 22041:1 22048:3 22078:1 22080:1 22094:1 22109:1 22119:2 22123:1 22132:1 22142:1 22144:1 22153:1 22163:10 22179:1 22192:1 22208:1 22211:1 22215:1 22218:1 22223:2 22229:2 22233:1 22243:1 22245:9 22247:1 22251:1 22256:1 22263:1 22279:2 22281:1 22315:1 22320:1 22325:3 22328:1 22331:22 22334:1 22340:1 22360:1 22368:1 22376:4 22378:1 22383:1 22388:1 22410:2 22415:1 22417:1 22431:1 22434:2 22449:1 22455:1 22460:1 22465:1 22466:3 22472:1 22478:1 22481:1 22485:1 22491:1 22493:1 22504:1 22513:1 22517:2 22520:7 22534:2 22538:1 22548:3 22551:5 22552:1 22561:1 22585:1 22587:1 22593:1 22598:1 22601:1 22602:1 22611:7 22617:1 22623:1 22627:1 22644:2 22646:3 22647:1 22655:2 22658:1 22662:1 22669:4 22690:5 22699:8 22707:2 22709:1 22715:1 22730:1 22734:2 22736:1 22749:3 22755:9 22756:1 22759:6 22760:3 22761:3 22769:1 22779:1 22786:7 22787:1 22795:2 22799:1 22802:1 22803:7 22809:1 22812:1 22815:1 22818:1 22820:1 22822:1 22828:1 22830:2 22831:3 22846:2 22864:1 22865:1 22866:1 22874:3 22876:1 22895:1 22902:1 22903:1 22905:2 22914:1 22916:2 22924:1 22931:1 22937:1 22942:1 22948:1 22982:1 23000:3 23001:1 23003:1 23011:1 23027:5 23032:1 23039:1 23064:2 23071:1 23075:1 23076:3 23084:1 23089:10 23109:14 23118:1 23123:1 23125:3 23127:3 23128:1 23143:1 23151:1 23155:1 23166:1 23167:2 23175:1 23185:1 23188:1 23196:2 23198:1 23201:1 23226:1 23237:4 23248:1 23256:1 23263:1 23264:1 23284:4 23293:1 23295:1 23298:3 23299:1 23300:3 23305:1 23307:1 23314:6 23316:1 23331:1 23333:1 23335:1 23341:1 23344:5 23349:1 23360:3 23361:1 23363:1 23378:1 23384:3 23385:2 23386:2 23391:1 23392:1 23393:2 23404:4 23413:2 23416:1 23424:2 23430:28 23431:3 23433:2 23435:1 23456:2 23466:4 23476:2 23491:1 23496:1 23507:1 23521:1 23524:1 23551:2 23558:1 23586:10 23588:1 23592:1 23603:5 23609:1 23610:7 23616:6 23620:1 23623:2 23626:7 23633:1 23646:1 23647:7 23655:4 23659:2 23670:1 23674:1 23676:1 23685:1 23703:1 23711:1 23712:1 23713:1 23719:1 23720:2 23722:1 23723:1 23733:1 23736:1 23739:3 23741:4 23744:1 23767:1 23768:1 23775:21 23777:2 23784:1 23797:2 23828:1 23835:11 23836:1 23840:1 23847:1 23853:1 23858:7 23862:1 23865:1 23866:11 23869:1 23871:1 23885:2 23891:1 23893:1 23923:1 23940:2 23949:2 23950:1 23952:1 23967:1 23971:4 23974:4 23991:1 23993:1 23994:1 24002:1 24003:2 24004:1 24025:1 24034:1 24039:4 24051:1 24054:1 24070:3 24076:1 24081:1 24095:1 24096:3 24100:1 24110:2 24126:5 24128:1 24129:1 24132:1 24137:3 24143:1 24150:1 24151:1 24162:2 24164:1 24168:1 24170:8 24179:1 24213:1 24225:1 24239:1 24251:1 24257:1 24265:2 24266:8 24267:1 24271:1 24274:1 24275:1 24276:1 24280:1 24286:1 24287:1 24292:1 24296:1 24307:2 24326:1 24330:2 24332:1 24341:3 24350:1 24370:3 24373:1 24385:1 24394:1 24398:1 24401:6 24407:1 24410:1 24411:6 24412:1 24438:3 24441:1 24463:1 24473:1 24476:6 24477:2 24478:1 24482:1 24483:6 24485:2 24487:4 24503:9 24525:3 24530:6 24536:3 24538:1 24568:1
14 1:1 9:2 30:2 34:1 56:1 59:1 71:1 75:1 96:3 112:3 146:1 157:4 162:1 163:1 185:11 186:9 188:3 196:1 197:2 204:1 209:1 216:1 219:3 223:2 224:1 230:1 233:1 239:1 242:1 243:1 247:1 253:1 254:9 256:1 260:2 265:1 270:1 282:1 295:2 296:10 308:1 314:1 318:3 320:2 323:1 336:1 339:1 346:2 375:2 376:2 379:1 384:1 396:1 407:3 450:1 457:11 469:1 501:3 510:1 515:1 524:1 525:1 527:6 541:2 545:2 547:1 565:3 592:2 599:1 607:1 619:1 636:1 663:1 677:1 693:1 698:1 699:1 704:2 708:5 713:1 714:1 721:1 724:1 731:1 732:2 748:4 749:1 753:1 759:7 762:1 763:1 764:3 766:1 772:1 777:1 779:1 784:1 785:5 789:2 802:1 811:1 814:7 831:3 833:1 834:3 838:3 851:3 864:2 869:3 875:1 877:1 880:1 881:1 884:2 888:1 889:2 892:1 895:2 900:2 907:1 909:1 911:1 912:1 914:2 922:1 927:1 932:1 933:1 942:1 946:3 949:1 965:2 969:2 980:2 1000:1 1009:3 1011:2 1021:1 1023:2 1044:1 1045:1 1046:3 1048:1 1051:7 1053:1 1055:1 1059:4 1068:1 1077:1 1094:3 1095:1 1098:1 1114:2 1124:1 1125:1 1127:1 1128:1 1134:1 1141:1 1153:2 1155:1 1160:2 1168:1 1171:6 1172:3 1187:3 1205:1 1217:1 1220:5 1226:1 1227:1 1229:2 1256:2 1259:7 1264:4 1278:1 1285:1 1292:1 1293:2 1297:1 1299:1 1301:1 1321:1 1332:4 1344:1 1356:2 1360:3 1369:1 1372:1 1381:5 1395:1 1398:1 1401:11 1405:1 1413:1 1424:1 1425:2 1427:1 1439:1 1448:1 1452:1 1453:1 1470:1 1507:10 1510:1 1517:5 1526:2 1529:1 1535:1 1536:1 1538:2 1545:2 1546:1 1564:5 1570:1 1585:1 1589:2 1591:4 1603:1 1605:1 1616:2 1617:3 1621:1 1622:2 1626:1 1627:1 1628:1 1629:1 1640:1 1654:2 1659:1 1673:1 1674:1 1683:2 1701:1 1703:1 1710:1 1715:1 1723:1 1727:1 1730:1 1731:7 1737:1 1745:1 1753:1 1754:1 1759:1 1766:12 1770:1 1772:1 1781:2 1785:1 1796:1 1798:1 1809:8 1818:1 1826:5 1829:1 1834:1 1838:3 1842:1 1846:3 1856:7 1863:1 1874:3 1876:1 1879:1 1880:1 1881:1 1882:2 1883:3 1885:2 1888:1 1891:2 1904:2 1908:1 1910:2 1911:1 1912:4 1938:4 1939:1 1941:2 1942:2 1945:10 1947:3 1953:1 1954:5 1955:2 1957:1 1960:1 1961:1 1963:3 1965:3 1968:6 1970:2 1973:2 1976:4 1978:1 1991:1 2000:1 2009:1 2015:1 2020:1 2028:1 2040:2 2041:1 2042:1 2047:1 2049:1 2051:2 2053:1 2061:2 2065:2 2071:1 2076:2 2077:2 2112:1 2128:1 2129:1 2131:2 2134:3 2149:1 2157:1 2164:1 2172:2 2178:2 2183:2 2193:2 2198:1 2208:1 2211:1 2226:4 2229:1 2234:2 2254:1 2274:2 2275:2 2277:1 2286:2 2295:1 2298:1 2303:1 2305:1 2321:6 2325:3 2333:1 2349:1 2358:1 2366:3 2372:1 2380:2 2381:1 2383:5 2389:1 2390:7 2394:1 2400:1 2414:1 2419:2 2425:1 2426:1 2433:1 2445:1 2448:1 2451:5 2462:52 2464:2 2465:1 2469:1 2470:1 2480:2 2486:1 2504:1 2507:11 2513:2 2519:13 2529:1 2530:2 2565:6 2576:2 2587:2 2593:1 2597:2 2609:1 2627:5 2638:1 2691:1 2704:1 2706:1 2709:2 2731:3 2736:11 2742:2 2746:1 2754:1 2762:1 2770:1 2779:3 2780:3 2785:2 2787:1 2798:2 2801:1 2802:10 2821:1 2826:1 2834:3 2837:1 2844:1 2846:1 2848:3 2849:1 2854:2 2855:2 2879:1 2886:11 2895:1 2901:1 2919:3 2936:1 2954:2 2979:1 2980:1 2994:1 3002:2 3003:1 3020:4 3027:1 3041:1 3042:1 3049:6 3050:1 3060:1 3061:2 3064:1 3072:1 3076:1 3077:7 3090:1 3098:1 3099:2 3113:1 3116:1 3131:1 3132:1 3133:1 3147:3 3149:1 3153:1 3171:1 3173:1 3179:1 3183:1 3184:16 3204:1 3206:2 3213:2 3221:4 3223:1 3225:1 3231:1 3234:8 3245:1 3248:1 3253:1 3256:1 3266:1 3285:1 3287:2 3292:1 3295:3 3297:5 3304:1 3309:1 3310:2 3312:1 3315:1 3316:1 3322:2 3324:1 3326:4 3328:2 3332:1 3342:1 3351:1 3353:1 3369:3 3372:1 3375:1 3379:1 3404:1 3407:2 3408:2 3414:1 3416:2 3418:1 3462:1 3494:1 3499:1 3518:2 3519:1 3520:1 3522:1 3524:1 3525:1 3531:1 3545:1 3546:2 3547:2 3562:1 3563:1 3572:1 3581:3 3588:3 3598:2 3606:1 3612:1 3615:1 3618:3 3631:1 3641:16 3649:1 3660:1 3667:1 3677:1 3678:3 3679:1 3687:1 3707:1 3712:3 3735:1 3738:1 3741:1 3744:1 3766:1 3774:1 3776:1 3783:1 3786:1 3804:1 3831:1 3837:5 3841:1 3854:1 3878:1 3886:3 3889:1 3898:1 3907:3 3908:3 3909:3 3915:3 3918:2 3938:7 3940:1 3963:4 3964:1 3966:1 3967:1 3976:1 3979:1 3984:2 3995:11 3998:11 4005:2 4011:1 4012:1 4026:1 4033:1 4046:2 4051:1 4060:1 4061:2 4062:3 4083:1 4091:2 4093:1 4102:1 4107:20 4108:4 4109:1 4120:2 4128:1 4131:1 4136:3 4145:1 4154:1 4163:2 4183:1 4186:1 4190:2 4195:1 4198:15 4211:3 4212:7 4213:3 4216:2 4218:3 4221:1 4223:1 4224:1 4225:1 4229:1 4234:2 4236:4 4237:3 4238:4 4244:3 4268:1 4305:1 4325:1 4332:3 4333:1 4336:1 4340:1 4353:1 4354:1 4368:1 4371:2 4374:2 4375:6 4376:1 4382:1 4399:1 4400:1 4409:1 4413:2 4423:1 4429:1 4432:1 4434:1 4447:3 4460:1 4464:1 4469:1 4471:2 4473:1 4479:1 4497:1 4498:3 4505:1 4512:1 4518:5 4519:3 4525:1 4534:2 4539:1 4541:1 4542:1 4551:1 4566:1 4569:2 4572:2 4581:1 4586:1 4587:1 4592:1 4599:4 4608:1 4609:2 4611:1 4620:1 4621:1 4622:1 4636:1 4647:1 4655:1 4667:1 4668:1 4673:1 4683:2 4684:3 4710:3 4722:1 4724:1 4734:1 4742:1 4744:1 4759:1 4768:1 4773:1 4784:1 4792:1 4796:4 4814:2 4820:1 4821:2 4822:1 4825:1 4829:1 4832:2 4853:1 4876:2 4889:2 4892:1 4894:4 4901:2 4909:1 4931:1 4963:1 4969:1 4986:1 4993:1 5000:1 5003:2 5016:3 5024:1 5029:1 5037:1 5044:1 5047:3 5049:4 5067:1 5071:4 5072:4 5076:1 5077:1 5088:2 5093:1 5095:1 5100:2 5124:1 5127:1 5146:1 5187:1 5192:1 5201:3 5202:1 5203:1 5224:1 5232:1 5247:2 5248:2 5253:1 5254:1 5258:2 5262:2 5269:1 5283:1 5308:6 5310:1 5313:1 5322:9 5325:5 5326:3 5332:6 5333:3 5337:4 5338:2 5339:2 5340:4 5342:1 5344:1 5347:7 5349:14 5350:1 5352:5 5354:4 5449:2 5451:12 5484:1 5488:1 5492:1 5500:1 5520:2 5529:1 5530:1 5531:1 5533:2 5534:2 5535:1 5585:1 5595:1 5599:4 5604:1 5608:1 5610:2 5627:1 5640:1 5670:1 5674:1 5681:2 5683:1 5686:4 5687:1 5688:3 5702:11 5711:1 5712:1 5719:2 5721:1 5726:1 5730:1 5746:3 5752:1 5774:2 5783:2 5788:2 5807:2 5813:3 5815:2 5828:1 5849:1 5860:1 5865:3 5871:1 5874:3 5878:3 5889:1 5900:1 5931:2 5939:1 5943:1 5947:7 5948:3 5952:1 5968:2 5998:1 6005:2 6017:1 6034:1 6042:1 6044:1 6045:1 6046:1 6047:3 6049:1 6050:1 6056:1 6062:1 6071:1 6079:1 6087:1 6112:3 6116:2 6126:1 6128:1 6130:1 6131:1 6139:2 6145:2 6151:1 6175:2 6183:12 6187:1 6194:1 6201:1 6207:1 6235:1 6237:2 6289:1 6293:1 6311:4 6324:1 6352:1 6355:3 6364:2 6365:10 6373:1 6378:1 6381:2 6382:2 6386:3 6389:1 6402:4 6405:1 6407:1 6409:1 6410:1 6412:1 6416:2 6417:1 6418:1 6422:1 6429:53 6433:1 6434:1 6436:1 6440:1 6448:1 6449:5 6451:8 6459:4 6462:1 6468:1 6475:1 6486:1 6491:1 6492:1 6493:1 6497:1 6510:1 6516:1 6525:1 6526:4 6532:2 6542:1 6554:1 6560:1 6578:1 6589:1 6597:1 6616:1 6619:2 6643:1 6661:3 6667:1 6669:1 6675:1 6678:2 6685:1 6687:1 6706:1 6707:3 6711:2 6715:1 6716:3 6723:5 6756:1 6769:1 6781:1 6789:1 6791:1 6794:3 6796:2 6802:1 6804:1 6809:1 6810:5 6824:4 6834:1 6839:3 6843:1 6846:1 6847:1 6854:5 6859:19 6908:5 6911:1 6920:2 6931:1 6934:2 6937:1 6981:4 6991:1 7016:1 7021:1 7022:1 7027:2 7033:1 7038:1 7045:1 7047:1 7054:6 7059:2 7068:12 7096:2 7097:1 7104:1 7108:1 7116:1 7122:1 7124:1 7132:1 7137:1 7157:4 7160:1 7163:1 7164:2 7165:1 7166:2 7169:4 7170:2 7177:1 7178:2 7179:1 7181:2 7182:1 7190:1 7194:1 7199:1 7202:1 7215:1 7216:3 7221:1 7235:1 7245:1 7246:3 7251:1 7268:1 7273:1 7285:14 7303:2 7322:1 7341:1 7360:1 7361:6 7363:1 7374:1 7377:1 7379:1 7382:2 7391:2 7400:12 7402:2 7409:2 7410:1 7414:1 7418:2 7419:2 7427:2 7430:1 7432:3 7435:1 7438:3 7443:1 7444:1 7445:1 7450:5 7451:1 7456:3 7457:6 7459:2 7460:1 7461:7 7462:1 7464:2 7465:2 7471:1 7478:1 7487:1 7491:1 7499:2 7510:2 7527:1 7550:1 7552:1 7553:3 7554:2 7564:2 7571:5 7572:1 7576:1 7581:11 7588:2 7589:1 7605:1 7614:3 7615:1 7622:1 7626:1 7638:1 7648:4 7656:1 7658:3 7670:1 7671:1 7682:2 7686:2 7701:1 7702:1 7709:1 7712:6 7741:1 7742:1 7743:1 7750:1 7751:1 7753:4 7754:1 7761:1 7763:1 7768:1 7773:14 7778:1 7782:1 7787:4 7799:1 7803:1 7804:1 7810:3 7816:1 7820:3 7841:2 7860:2 7868:2 7872:1 7880:1 7887:4 7894:2 7905:1 7908:1 7912:1 7923:1 7929:4 7930:1 7950:3 7964:3 7972:1 7976:1 7979:1 7982:1 7988:8 7999:1 8002:1 8005:1 8023:2 8030:1 8049:1 8065:13 8070:11 8079:1 8080:1 8081:13 8082:9 8099:5 8107:1 8110:1 8140:1 8158:1 8162:4 8171:3 8174:1 8175:3 8176:13 8177:1 8189:2 8195:1 8206:5 8207:3 8216:2 8229:2 8230:1 8234:22 8235:1 8249:2 8256:1 8266:1 8272:2 8279:1 8282:1 8284:1 8285:11 8296:2 8304:2 8311:2 8314:1 8317:1 8318:1 8320:1 8328:6 8332:1 8339:1 8343:1 8348:1 8350:1 8352:7 8355:1 8357:2 8359:4 8361:1 8364:2 8376:1 8383:1 8387:5 8404:2 8428:1 8433:3 8437:1 8443:2 8469:10 8471:1 8472:1 8508:1 8553:2 8567:2 8568:2 8574:1 8582:2 8583:1 8593:2 8597:3 8598:8 8603:1 8605:1 8614:1 8617:1 8618:1 8623:1 8630:1 8632:1 8635:1 8637:1 8656:3 8657:1 8669:1 8670:1 8672:1 8681:5 8690:2 8692:1 8693:1 8702:2 8709:1 8711:1 8714:3 8719:1 8726:1 8727:3 8731:1 8736:5 8753:3 8759:9 8761:1 8771:1 8773:4 8778:1 8782:3 8783:1 8785:1 8794:1 8795:2 8800:2 8802:11 8809:5 8812:1 8814:6 8822:2 8826:1 8830:1 8831:2 8832:5 8833:5 8836:1 8849:1 8856:1 8878:2 8879:2 8891:10 8900:4 8901:1 8910:4 8911:1 8914:2 8916:8 8937:1 8944:1 8955:1 8968:1 8971:1 8974:2 8979:1 8983:2 8993:1 8996:1 8998:2 8999:1 9000:1 9002:7 9012:1 9014:1 9017:1 9022:1 9027:1 9038:1 9043:1 9058:4 9060:1 9062:2 9063:2 9067:2 9084:1 9093:1 9097:1 9101:12 9102:9 9120:5 9123:2 9127:2 9132:1 9138:1 9140:1 9142:2 9149:1 9156:1 9165:1 9166:1 9173:1 9181:1 9183:1 9185:3 9192:1 9222:3 9227:1 9239:1 9240:2 9243:1 9252:11 9263:1 9274:1 9313:2 9318:2 9336:1 9338:1 9346:1 9363:1 9370:1 9377:4 9392:1 9400:1 9403:6 9419:1 9426:1 9440:2 9441:1 9455:9 9462:2 9465:1 9466:1 9488:8 9495:1 9497:1 9524:1 9525:1 9532:14 9536:3 9547:1 9550:4 9562:2 9563:3 9565:2 9575:2 9590:2 9596:1 9599:1 9607:1 9619:1 9622:2 9624:1 9645:1 9653:1 9656:2 9682:6 9683:1 9688:2 9690:1 9691:1 9697:1 9698:1 9700:1 9710:2 9716:2 9723:3 9729:2 9738:2 9743:1 9745:1 9756:1 9772:2 9810:4 9818:1 9823:5 9824:1 9850:1 9859:3 9867:1 9877:1 9878:4 9881:1 9884:1 9890:1 9891:1 9900:1 9918:3 9922:1 9923:1 9924:5 9941:2 9944:1 9949:1 9950:1 9951:1 9958:1 9963:1 9974:1 9999:1 10021:1 10022:3 10037:1 10040:2 10042:2 10045:1 10046:1 10052:2 10053:3 10054:3 10067:1 10070:1 10073:1 10074:3 10090:7 10117:1 10126:1 10169:5 10172:1 10176:1 10196:1 10198:1 10204:1 10211:1 10217:1 10218:6 10220:1 10232:1 10247:1 10254:1 10278:5 10311:1 10316:1 10318:3 10319:1 10324:1 10329:1 10353:1 10355:1 10360:2 10369:1 10370:2 10384:11 10406:1 10457:2 10465:1 10480:43 10502:1 10503:5 10524:1 10530:1 10531:4 10537:1 10539:1 10540:3 10551:1 10554:2 10576:2 10587:1 10589:1 10593:1 10597:1 10598:6 10600:2 10617:2 10635:1 10648:2 10651:7 10654:1 10659:1 10667:1 10701:1 10707:1 10713:1 10719:1 10722:1 10725:3 10757:1 10758:1 10772:1 10792:1 10809:1 10815:1 10818:1 10823:2 10837:1 10843:1 10847:12 10851:4 10862:1 10871:4 10872:1 10879:1 10887:1 10892:1 10897:2 10898:2 10912:2 10951:2 10952:1 10953:1 10961:4 10962:2 10970:2 10974:6 10979:2 10981:1 10985:4 10987:1 10993:3 11013:1 11014:1 11016:1 11019:1 11036:1 11046:7 11047:9 11050:1 11056:2 11062:1 11080:1 11087:1 11103:4 11118:2 11126:1 11155:2 11159:2 11163:4 11168:3 11173:3 11186:2 11187:4 11188:1 11201:1 11211:3 11215:8 11223:4 11235:2 11266:1 11273:5 11280:3 11283:1 11284:2 11286:1 11297:1 11301:1 11325:3 11329:1 11337:5 11341:1 11344:1 11345:1 11346:1 11347:1 11348:1 11349:2 11352:2 11353:1 11368:5 11375:5 11394:1 11400:2 11405:2 11408:1 11415:1 11430:11 11447:4 11449:2 11451:2 11459:4 11463:2 11479:1 11486:1 11507:1 11509:3 11526:2 11540:1 11584:4 11600:1 11606:1 11607:1 11609:1 11632:1 11638:5 11640:2 11643:1 11653:1 11655:1 11690:1 11705:1 11708:2 11712:5 11727:1 11739:2 11742:1 11747:1 11757:1 11759:1 11790:1 11792:1 11800:1 11801:3 11807:1 11812:2 11813:2 11818:1 11823:1 11830:1 11832:1 11833:1 11834:1 11843:1 11853:1 11856:1 11857:2 11864:4 11874:1 11876:1 11883:2 11900:1 11906:2 11932:1 11937:1 11949:1 11960:2 11966:1 11974:2 11976:2 11979:1 11984:1 11985:1 11990:1 11992:1 11994:1 11998:2 12033:1 12038:1 12050:5 12065:1 12076:2 12078:1 12084:1 12092:1 12095:1 12097:2 12099:4 12114:2 12115:1 12118:1 12126:1 12131:1 12144:3 12145:1 12146:3 12178:1 12181:1 12182:2 12184:1 12197:1 12218:2 12227:1 12229:1 12245:1 12276:3 12287:2 12289:1 12323:1 12328:1 12337:1 12338:1 12346:9 12364:2 12365:2 12366:1 12372:1 12375:1 12381:7 12387:2 12390:2 12396:1 12416:1 12425:1 12427:2 12432:1 12440:1 12444:1 12452:2 12456:1 12468:1 12483:1 12486:2 12488:2 12490:2 12491:1 12512:1 12542:1 12555:1 12556:5 12573:1 12575:3 12582:1 12583:2 12584:1 12585:1 12586:1 12594:1 12614:11 12623:1 12627:2 12635:2 12641:1 12652:2 12661:1 12662:6 12672:1 12683:1 12685:1 12698:2 12723:4 12739:2 12740:2 12741:6 12748:2 12754:1 12774:1 12797:3 12798:4 12800:5 12801:1 12822:2 12837:1 12839:2 12842:1 12843:1 12846:2 12874:1 12881:2 12930:1 12942:2 12943:1 12944:1 12945:2 12946:1 12950:5 12954:2 12961:2 12971:1 12980:1 12985:2 12988:6 12989:2 13013:1 13014:2 13025:1 13032:1 13033:2 13058:2 13062:1 13072:1 13082:1 13094:1 13104:3 13125:2 13128:1 13140:4 13142:2 13153:10 13156:1 13159:1 13171:1 13181:1 13187:1 13205:1 13206:1 13207:7 13212:1 13225:4 13229:1 13238:1 13258:1 13259:1 13267:1 13288:1 13295:3 13304:1 13311:3 13324:1 13328:16 13333:3 13334:1 13336:1 13342:2 13344:1 13345:1 13347:1 13362:1 13390:6 13393:1 13406:1 13410:1 13417:1 13428:2 13431:1 13434:2 13435:1 13437:1 13445:3 13446:1 13449:3 13452:2 13453:2 13454:1 13459:1 13462:1 13466:1 13470:1 13471:1 13476:1 13482:1 13489:3 13502:1 13505:2 13523:1 13525:2 13535:1 13542:1 13560:1 13561:1 13590:1 13593:2 13607:1 13614:1 13615:1 13620:1 13623:1 13637:5 13640:1 13644:1 13647:3 13651:1 13662:3 13664:2 13668:1 13671:1 13680:5 13682:2 13688:3 13703:1 13707:1 13708:1 13718:1 13719:5 13729:1 13732:1 13733:2 13740:1 13760:1 13765:3 13766:1 13778:1 13780:1 13803:9 13807:4 13819:12 13823:2 13835:6 13857:1 13858:1 13865:2 13871:2 13876:1 13888:4 13895:3 13901:1 13907:2 13908:2 13926:1 13928:5 13929:1 13931:2 13936:1 13947:1 13953:1 13970:3 13979:4 13986:1 13989:4 13994:4 13995:1 13996:2 14000:1 14007:2 14024:3 14026:3 14030:1 14031:3 14035:2 14041:1 14050:3 14051:11 14055:1 14062:1 14071:2 14072:1 14073:1 14077:3 14088:1 14097:4 14114:1 14119:3 14127:2 14130:1 14137:1 14143:1 14165:1 14178:13 14181:2 14202:1 14204:2 14207:1 14218:1 14227:1 14229:6 14231:2 14252:2 14262:1 14264:1 14265:2 14279:1 14286:1 14300:2 14302:1 14305:1 14317:1 14329:2 14332:3 14333:2 14334:1 14341:1 14365:4 14366:11 14371:5 14380:1 14381:1 14382:12 14383:3 14385:1 14386:1 14387:2 14391:2 14395:2 14403:1 14404:1 14417:1 14422:2 14434:1 14443:2 14465:2 14475:1 14476:11 14477:3 14496:12 14503:1 14513:1 14516:11 14522:1 14541:1 14544:1 14549:1 14553:1 14556:1 14558:1 14564:1 14568:1 14576:2 14577:2 14582:2 14583:1 14596:2 14610:2 14622:1 14630:4 14635:3 14638:1 14648:1 14649:1 14650:2 14654:1 14657:2 14665:2 14672:3 14674:1 14677:11 14678:4 14691:3 14696:1 14711:1 14717:1 14719:6 14727:1 14734:1 14740:8 14744:1 14747:10 14751:1 14762:6 14763:1 14764:1 14765:3 14768:1 14774:1 14776:2 14785:6 14802:1 14804:4 14807:1 14810:1 14824:1 14837:7 14844:1 14849:2 14851:1 14853:1 14856:1 14864:5 14871:1 14877:1 14882:2 14885:5 14914:1 14919:1 14934:2 14938:2 14946:4 14956:2 14962:1 14976:1 14981:2 14982:2 14987:1 14991:1 15002:1 15011:1 15015:1 15030:2 15035:2 15040:2 15067:1 15073:1 15080:2 15087:1 15089:1 15090:2 15097:1 15098:1 15100:2 15105:2 15111:1 15123:3 15133:1 15134:12 15135:1 15137:9 15142:1 15144:1 15160:3 15164:1 15166:1 15169:1 15171:3 15183:2 15184:6 15196:1 15197:1 15201:2 15205:12 15233:2 15240:1 15251:2 15269:6 15282:6 15283:1 15287:1 15303:1 15307:47 15312:6 15322:1 15326:1 15344:1 15354:2 15360:1 15371:3 15374:1 15384:1 15396:6 15405:9 15409:1 15423:1 15424:1 15436:1 15438:1 15444:1 15445:2 15452:2 15453:1 15460:3 15480:2477 15483:2 15492:2 15496:1 15507:1 15508:1 15510:1 15518:1 15524:1 15554:1 15556:2 15560:1 15568:1 15570:2 15574:1 15591:1 15595:1 15599:2 15610:4 15617:4 15623:1 15625:2 15638:4 15639:5 15641:1 15642:2 15645:1 15646:2 15647:1 15649:5 15652:1 15655:6 15658:2 15661:1 15662:8 15678:2 15684:1 15723:1 15738:1 15739:1 15742:2 15743:1 15763:3 15773:1 15776:13 15790:1 15793:1 15814:1 15816:2 15847:1 15853:1 15855:1 15866:2 15869:1 15871:2 15875:1 15884:1 15896:2 15927:1 15929:4 15935:2 15938:1 15943:1 15949:6 15955:1 15957:1 15960:1 15966:2 15984:1 15994:1 15997:5 16008:1 16019:1 16036:1 16042:8 16043:3 16051:1 16052:1 16054:7 16056:1 16059:1 16064:1 16074:2 16077:3 16078:1 16079:1 16094:1 16102:1 16103:1 16111:1 16112:1 16115:5 16118:1 16121:10 16139:1 16147:1 16151:2 16152:9 16154:11 16161:1 16171:1 16177:2 16179:1 16187:1 16206:2 16228:1 16239:1 16254:1 16262:3 16267:1 16268:3 16270:1 16271:1 16273:2 16274:2 16277:1 16283:2 16287:1 16296:1 16300:1 16302:3 16306:2 16308:1 16309:1 16310:1 16313:1 16318:1 16337:1 16341:1 16358:1 16370:3 16372:1 16376:1 16387:6 16402:1 16409:4 16412:2 16413:1 16426:1 16428:1 16438:1 16458:1 16474:1 16479:1 16484:7 16485:5 16488:1 16490:2 16495:3 16500:4 16503:2 16506:1 16509:2 16514:1 16534:2 16547:1 16548:1 16557:1 16577:2 16593:4 16603:1 16605:1 16611:1 16620:1 16623:1 16625:1 16630:3 16633:1 16637:1 16643:1 16652:2 16654:3 16659:1 16665:1 16670:1 16673:1 16679:1 16681:6 16682:1 16693:1 16712:1 16718:3 16726:5 16727:1 16729:1 16732:1 16733:1 16735:1 16743:1 16744:5 16753:7 16754:1 16761:1 16763:1 16775:1 16777:1 16778:2 16780:1 16787:2 16792:1 16794:2 16809:1 16815:6 16817:1 16853:1 16855:2 16861:5 16862:2 16867:6 16871:1 16875:1 16882:1 16895:1 16897:2 16919:1 16921:9 16928:1 16946:2 16964:1 16970:1 16971:1 16975:1 17001:4 17011:1 17013:1 17030:2 17037:1 17043:1 17046:1 17048:1 17057:2 17058:1 17066:2 17083:1 17085:2 17090:1 17107:1 17113:2 17123:1 17131:1 17136:8 17137:4 17166:1 17174:1 17175:1 17176:1 17181:1 17185:1 17187:1 17188:1 17221:3 17237:7 17246:2 17248:1 17253:1 17269:2 17275:8 17276:5 17286:1 17288:1 17296:1 17298:1 17303:1 17311:3 17316:2 17320:1 17331:2 17335:1 17346:2 17347:1 17348:1 17357:1 17362:6 17363:2 17366:2 17367:1 17368:1 17386:2 17387:11 17403:1 17404:1 17424:2 17440:1 17470:1 17485:5 17491:3 17492:1 17499:1 17515:1 17520:1 17523:1 17553:2 17559:1 17563:1 17569:1 17575:1 17580:1 17602:2 17605:1 17608:1 17616:2 17620:1 17622:1 17623:5 17626:1 17631:3 17641:1 17645:1 17649:1 17658:1 17660:1 17668:1 17678:11 17689:1 17706:2 17712:1 17724:3 17725:2 17730:1 17735:3 17739:1 17742:2 17743:1 17768:1 17772:2 17774:2 17775:1 17788:1 17792:2 17795:1 17808:1 17822:1 17826:1 17827:1 17834:3 17838:2 17839:1 17852:2 17853:2 17855:5 17857:1 17862:1 17865:1 17886:2 17890:1 17900:1 17906:1 17908:1 17910:1 17915:2 17916:12 17919:1 17921:3 17922:1 17924:2 17925:1 17927:4 17943:3 17955:4 17956:1 17958:4 17962:2 17969:1 17975:1 17978:1 17979:1 17980:2 17983:3 17995:5 18009:4 18016:1 18025:2 18028:1 18035:2 18037:1 18038:2 18041:2 18042:1 18043:8 18053:5 18058:1 18064:1 18068:3 18069:1 18073:1 18079:1 18088:1 18092:2 18093:8 18116:1 18130:2 18146:1 18159:1 18165:1 18166:5 18168:5 18174:2 18177:1 18181:1 18189:1 18193:1 18197:2 18201:1 18208:5 18209:1 18210:2 18215:1 18237:1 18248:1 18249:1 18266:1 18282:1 18313:2 18320:1 18339:2 18356:1 18357:1 18358:1 18360:2 18366:2 18367:1 18369:3 18370:2 18375:4 18378:2 18379:1 18406:3 18409:1 18410:4 18414:3 18423:1 18436:1 18447:1 18454:1 18468:1 18469:2 18474:3 18478:1 18479:3 18482:1 18485:2 18491:2 18498:2 18504:1 18509:1 18511:3 18513:1 18523:1 18537:1 18539:1 18555:1 18567:2 18568:1 18570:1 18572:1 18578:1 18580:1 18585:1 18587:1 18602:1 18616:3 18617:1 18623:1 18629:1 18631:1 18645:1 18654:2 18661:1 18664:1 18665:1 18674:2 18700:1 18702:5 18704:1 18727:4 18732:9 18736:1 18742:2 18747:1 18748:1 18750:1 18754:1 18755:1 18768:1 18784:1 18792:3 18800:2 18805:1 18816:2 18821:1 18849:1 18856:8 18857:2 18862:9 18867:1 18880:1 18881:3 18882:1 18884:1 18886:1 18901:2 18904:1 18905:1 18916:1 18929:1 18930:3 18931:3 18934:1 18938:2 18941:6 18949:1 18974:1 18980:1 19001:1 19011:1 19024:2 19033:4 19043:1 19048:1 19056:3 19059:1 19060:2 19076:1 19080:2 19085:2 19098:3 19108:9 19126:2 19134:3 19136:3 19139:1 19145:1 19146:1 19148:1 19150:1 19153:3 19172:1 19183:1 19193:3 19205:3 19207:3 19210:10 19226:3 19230:1 19249:1 19250:1 19258:1 19263:1 19267:1 19275:2 19292:7 19293:1 19294:1 19302:4 19303:1 19322:1 19328:3 19331:1 19335:1 19337:5 19339:2 19354:1 19359:1 19365:1 19368:1 19373:3 19374:1 19386:1 19391:1 19392:2 19395:2 19402:1 19412:1 19416:1 19422:1 19425:2 19438:3 19440:1 19443:5 19446:1 19453:1 19469:1 19471:3 19475:1 19480:1 19486:2 19487:11 19490:1 19507:1 19508:1 19517:1 19522:1 19532:1 19544:6 19559:4 19561:1 19562:1 19564:1 19570:1 19575:1 19586:1 19587:1 19603:1 19606:1 19610:1 19612:1 19613:1 19637:1 19638:1 19644:2 19645:1 19657:2 19678:1 19683:1 19702:1 19706:1 19710:1 19714:1 19716:2 19730:2 19745:1 19753:1 19755:1 19757:2 19758:1 19762:8 19767:1 19773:1 19787:1 19789:1 19792:1 19804:1 19805:3 19810:5 19813:2 19837:1 19844:1 19847:1 19849:1 19886:1 19897:5 19901:1 19902:2 19909:1 19912:1 19924:1 19925:1 19928:3 19962:1 19966:2 19972:1 19992:1 20000:1 20003:1 20004:1 20015:2 20034:1 20040:6 20069:1 20072:1 20080:5 20083:1 20084:5 20096:2 20098:1 20099:1 20103:1 20108:1 20109:6 20111:1 20118:1 20128:1 20137:1 20138:1 20152:1 20165:1 20180:1 20208:1 20218:1 20223:1 20224:1 20226:2 20227:1 20235:1 20239:1 20247:2 20251:1 20252:2 20253:1 20258:2 20261:1 20266:1 20267:1 20270:4 20275:1 20278:1 20293:1 20304:1 20316:2 20317:3 20318:10 20319:1 20320:1 20326:3 20327:4 20331:3 20332:4 20333:1 20334:5 20336:1 20337:6 20338:3 20341:2 20343:8 20344:7 20350:1 20353:1 20356:1 20371:1 20373:1 20378:5 20380:1 20383:3 20391:1 20397:1 20398:11 20399:3 20406:1 20411:2 20413:1 20424:1 20435:1 20436:1 20440:1 20441:2 20442:10 20447:9 20448:4 20464:1 20469:3 20470:1 20485:1 20496:3 20502:3 20505:1 20510:1 20512:4 20529:2 20545:1 20552:1 20560:1 20576:4 20595:4 20596:1 20611:1 20614:1 20616:1 20619:1 20621:1 20627:1 20629:2 20631:11 20653:1 20659:1 20668:5 20686:1 20694:1 20696:1 20717:1 20718:2 20727:1 20733:1 20738:3 20740:1 20742:11 20745:1 20760:1 20761:11 20762:1 20769:2 20785:13 20787:1 20805:1 20812:1 20818:1 20829:7 20831:1 20846:1 20850:2 20853:1 20871:1 20872:3 20873:1 20874:1 20877:1 20887:2 20890:2 20928:1 20930:1 20936:1 20949:12 20962:7 20973:2 20995:1 21007:1 21011:1 21012:2 21017:1 21021:3 21033:1 21056:1 21062:2 21065:3 21074:1 21077:1 21089:1 21099:2 21100:2 21107:2 21108:7 21111:1 21112:2 21113:1 21123:2 21133:1 21134:3 21138:1 21139:1 21146:1 21150:6 21163:1 21173:1 21198:8 21199:5 21208:2 21209:5 21218:2 21219:1 21224:1 21225:2 21227:2 21228:1 21245:1 21249:1 21258:1 21266:1 21293:4 21306:1 21312:1 21327:1 21337:5 21349:1 21350:1 21353:1 21359:1 21361:4 21380:1 21400:1 21402:1 21410:1 21430:1 21434:2 21473:1 21480:1 21482:1 21485:2 21486:1 21490:1 21508:1 21520:1 21529:4 21539:4 21543:1 21546:1 21556:1 21557:5 21561:3 21567:1 21571:1 21575:1 21581:2 21582:3 21584:1 21586:1 21588:1 21595:1 21602:2 21610:7 21612:1 21613:1 21622:1 21627:1 21630:2 21633:1 21642:6 21644:1 21645:1 21650:1 21663:2 21675:1 21684:2 21697:2 21703:2 21718:1 21723:1 21737:1 21741:1 21760:47 21773:12 21774:1 21782:5 21783:1 21784:1 21787:2 21791:1 21794:1 21812:1 21816:1 21830:1 21831:2 21838:1 21844:1 21846:1 21856:1 21868:1 21878:2 21887:2 21904:1 21914:2 21916:7 21922:1 21926:1 21927:1 21943:1 21944:1 21947:1 21948:1 21982:1 21995:3 21996:1 21997:1 21998:1 22007:1 22010:1 22015:1 22016:1 22024:1 22027:4 22035:1 22037:1 22041:1 22048:3 22078:1 22080:1 22094:1 22109:1 22119:2 22123:1 22132:1 22142:1 22144:1 22153:1 22163:10 22179:1 22192:1 22208:1 22211:1 22215:1 22218:1 22223:2 22229:2 22233:1 22243:1 22245:9 22247:1 22251:1 22256:1 22263:1 22279:2 22281:1 22315:1 22320:1 22325:3 22328:1 22331:23 22334:1 22340:1 22360:1 22368:1 22376:4 22378:1 22383:1 22388:1 22393:1 22410:2 22415:1 22417:1 22431:1 22434:2 22449:1 22455:1 22460:1 22465:1 22466:3 22472:1 22478:1 22481:1 22485:1 22491:1 22493:1 22504:1 22513:1 22517:2 22520:7 22534:3 22538:1 22548:3 22551:5 22552:1 22561:1 22585:1 22587:1 22593:1 22598:1 22601:1 22602:1 22611:7 22617:1 22623:1 22627:1 22644:2 22646:3 22647:1 22655:2 22658:1 22662:1 22669:4 22690:5 22699:8 22707:2 22709:1 22715:1 22730:1 22734:2 22736:1 22749:3 22755:9 22756:1 22759:6 22760:3 22761:3 22769:1 22779:1 22786:7 22787:1 22795:2 22799:1 22802:1 22803:7 22809:1 22812:1 22815:1 22818:1 22820:1 22822:1 22828:1 22830:2 22831:3 22846:2 22864:1 22865:1 22866:1 22874:3 22876:1 22882:1 22895:1 22902:1 22903:2 22905:2 22914:1 22916:2 22924:1 22931:1 22937:1 22942:1 22948:1 22982:1 23000:3 23001:1 23003:1 23011:1 23027:5 23032:1 23039:1 23064:2 23071:1 23075:1 23076:3 23084:1 23089:11 23109:14 23118:1 23123:1 23125:3 23127:3 23128:1 23143:1 23151:1 23155:1 23166:1 23167:2 23175:1 23185:1 23188:1 23196:2 23198:2 23201:1 23226:1 23237:4 23248:1 23256:1 23262:1 23263:1 23264:1 23284:4 23293:1 23295:1 23298:3 23299:1 23300:3 23305:1 23307:1 23314:6 23316:1 23331:1 23333:1 23335:1 23341:1 23344:5 23349:1 23360:3 23361:1 23363:1 23378:1 23384:3 23385:2 23386:2 23391:1 23392:1 23393:2 23404:4 23410:1 23413:2 23416:1 23424:2 23430:28 23431:3 23433:2 23435:1 23449:1 23456:2 23466:4 23476:3 23491:1 23496:1 23507:1 23521:1 23524:1 23551:2 23558:1 23586:10 23588:1 23592:2 23603:5 23609:1 23610:7 23616:6 23620:1 23623:2 23626:7 23632:1 23633:1 23646:1 23647:7 23655:4 23659:2 23670:1 23674:1 23676:1 23685:1 23703:1 23711:1 23712:1 23713:1 23719:1 23720:2 23722:1 23723:1 23733:1 23736:1 23739:3 23741:4 23744:1 23751:1 23767:1 23768:1 23775:22 23777:2 23784:1 23787:1 23797:2 23828:1 23835:11 23836:1 23840:1 23847:1 23853:1 23858:8 23862:1 23865:1 23866:12 23869:1 23871:1 23885:2 23891:1 23893:1 23923:1 23940:2 23949:2 23950:1 23952:1 23967:1 23971:4 23974:4 23991:1 23993:1 23994:1 24002:1 24003:2 24004:1 24025:1 24034:1 24039:4 24051:1 24054:1 24070:3 24076:1 24081:1 24095:1 24096:3 24100:1 24110:2 24126:5 24128:1 24129:1 24132:1 24137:3 24143:1 24150:1 24151:1 24162:2 24164:1 24168:1 24170:8 24179:1 24213:1 24225:1 24239:1 24251:1 24257:1 24265:2 24266:8 24267:1 24271:1 24274:1 24275:1 24276:1 24280:1 24286:1 24287:1 24292:1 24296:1 24307:3 24326:1 24330:3 24332:1 24341:3 24350:1 24370:3 24373:1 24385:1 24394:1 24398:1 24401:6 24407:1 24410:1 24411:6 24412:1 24423:1 24438:3 24441:1 24463:1 24473:1 24476:6 24477:2 24478:1 24482:1 24483:6 24485:3 24487:4 24503:9 24525:3 24530:6 24536:3 24538:1 24568:1
14 1:1 9:2 30:2 34:1 56:1 59:1 71:1 75:1 96:3 112:3 146:1 157:4 162:1 163:1 185:11 186:9 188:3 196:1 197:2 204:1 209:1 216:1 219:3 223:2 224:1 230:1 233:1 239:1 242:1 243:1 247:1 253:1 254:9 256:1 260:2 265:1 270:1 282:1 295:2 296:11 298:1 308:1 314:1 318:3 320:2 323:1 336:1 339:1 346:2 375:2 376:2 379:1 384:1 396:1 407:4 450:1 457:11 469:1 501:3 510:1 515:1 524:1 525:1 527:7 541:2 545:2 547:1 565:3 592:2 599:1 607:1 619:1 636:1 663:1 677:1 693:1 698:1 699:1 704:2 708:6 713:1 714:1 719:1 721:1 724:1 731:1 732:2 748:4 749:1 753:1 759:7 762:1 763:1 764:3 766:1 772:1 777:1 779:1 784:1 785:5 789:2 802:1 811:1 814:7 831:4 833:1 834:3 838:3 851:3 864:3 869:3 875:1 877:1 880:1 881:1 884:2 888:1 889:2 892:1 895:3 900:2 907:2 909:1 911:1 912:1 914:2 922:1 927:1 932:1 933:1 942:1 946:3 949:1 965:2 969:2 980:2 1000:1 1009:3 1011:2 1021:1 1023:2 1044:1 1045:1 1046:3 1048:1 1051:7 1053:1 1055:1 1059:4 1068:1 1077:1 1094:3 1095:1 1098:1 1110:1 1114:2 1124:1 1125:1 1127:1 1128:1 1134:1 1141:2 1153:2 1155:1 1160:3 1168:1 1171:6 1172:3 1187:3 1205:1 1217:1 1220:6 1226:1 1227:1 1229:2 1256:2 1259:7 1264:5 1274:1 1278:1 1285:1 1292:1 1293:2 1297:2 1299:1 1301:1 1316:1 1321:1 1332:4 1344:1 1356:2 1360:3 1369:1 1372:1 1381:5 1392:1 1395:1 1398:1 1401:11 1405:1 1413:1 1424:1 1425:2 1427:1 1439:1 1448:2 1452:1 1453:1 1470:1 1507:10 1510:1 1517:5 1526:2 1529:1 1535:1 1536:1 1538:2 1545:2 1546:1 1564:5 1570:1 1585:1 1589:2 1591:4 1603:1 1605:1 1616:2 1617:3 1621:1 1622:2 1626:1 1627:1 1628:1 1629:1 1640:1 1654:2 1659:1 1673:1 1674:1 1683:2 1701:1 1703:1 1710:1 1715:1 1723:1 1727:1 1730:1 1731:8 1737:1 1745:1 1753:1 1754:1 1759:1 1766:12 1770:1 1772:1 1781:2 1785:1 1796:1 1798:1 1809:8 1818:1 1826:5 1829:1 1834:1 1838:3 1842:1 1846:3 1856:7 1863:1 1874:3 1876:1 1877:1 1879:1 1880:1 1881:1 1882:2 1883:3 1885:2 1888:1 1891:2 1904:2 1908:1 1910:2 1911:1 1912:4 1929:1 1938:4 1939:1 1941:2 1942:2 1945:11 1947:3 1953:1 1954:5 1955:2 1957:1 1960:1 1961:1 1963:4 1965:3 1968:6 1970:2 1973:2 1976:4 1978:1 1991:1 2000:1 2009:1 2015:1 2020:1 2028:1 2040:2 2041:1 2042:1 2047:1 2049:1 2051:2 2053:1 2061:2 2065:2 2071:1 2076:2 2077:2 2112:1 2128:1 2129:1 2131:2 2134:3 2138:1 2149:1 2157:1 2164:1 2172:2 2178:2 2183:2 2193:2 2198:1 2208:1 2211:2 2226:4 2229:1 2234:2 2254:1 2274:2 2275:2 2277:1 2286:2 2295:1 2298:1 2303:1 2305:1 2321:6 2325:4 2333:1 2349:1 2358:1 2366:4 2372:1 2380:2 2381:1 2383:5 2389:1 2390:9 2394:1 2400:1 2414:1 2419:2 2423:1 2425:1 2426:1 2433:1 2445:1 2448:1 2451:5 2462:54 2464:2 2465:1 2469:1 2470:1 2480:2 2486:1 2504:1 2507:11 2513:2 2519:13 2529:1 2530:2 2565:7 2576:2 2587:2 2593:1 2597:3 2609:1 2618:1 2627:5 2638:1 2691:1 2704:1 2706:1 2709:2 2731:3 2736:12 2742:2 2746:1 2754:1 2762:1 2770:1 2779:3 2780:3 2785:2 2787:1 2798:2 2801:1 2802:11 2821:1 2826:1 2834:3 2837:1 2844:1 2846:1 2848:4 2849:1 2854:2 2855:2 2879:1 2886:12 2895:1 2901:1 2919:3 2934:1 2936:1 2954:2 2979:1 2980:1 2994:1 3002:2 3003:1 3020:4 3027:1 3041:1 3042:1 3049:6 3050:1 3060:1 3061:2 3064:1 3072:1 3076:1 3077:7 3090:1 3098:1 3099:2 3113:1 3116:2 3131:1 3132:1 3133:2 3147:3 3149:1 3153:1 3171:1 3173:1 3179:1 3183:1 3184:17 3204:1 3206:2 3213:2 3221:4 3223:1 3225:1 3231:1 3234:8 3245:1 3248:1 3253:1 3256:1 3266:1 3285:1 3287:2 3292:1 3295:3 3297:5 3304:1 3309:1 3310:2 3312:1 3315:1 3316:1 3322:2 3324:1 3326:4 3328:2 3332:1 3342:1 3351:1 3353:1 3369:3 3372:1 3375:1 3379:1 3404:1 3407:2 3408:2 3414:1 3416:2 3418:1 3462:1 3494:1 3499:1 3518:2 3519:1 3520:1 3522:1 3524:1 3525:1 3531:1 3545:1 3546:2 3547:2 3562:1 3563:1 3572:1 3581:3 3588:3 3598:2 3606:1 3612:1 3615:1 3618:3 3631:1 3641:16 3649:1 3660:1 3667:1 3677:1 3678:3 3679:1 3687:1 3707:1 3712:3 3730:1 3735:1 3738:1 3741:1 3744:1 3766:1 3774:1 3776:1 3783:1 3786:1 3804:1 3831:1 3837:5 3841:1 3854:1 3878:1 3886:3 3889:1 3898:1 3907:3 3908:3 3909:3 3915:4 3918:2 3927:1 3938:8 3940:1 3963:4 3964:1 3966:1 3967:1 3976:1 3979:1 3984:2 3995:11 3998:11 4005:2 4011:1 4012:1 4026:1 4033:1 4046:2 4051:1 4060:1 4061:2 4062:3 4083:1 4091:2 4093:1 4102:1 4107:20 4108:4 4109:1 4120:2 4128:1 4131:1 4136:3 4145:2 4154:1 4163:2 4183:1 4186:1 4190:2 4194:1 4195:1 4198:17 4206:1 4211:3 4212:7 4213:3 4216:2 4218:3 4221:1 4223:1 4224:1 4225:1 4229:1 4234:2 4236:5 4237:3 4238:4 4244:4 4268:1 4305:1 4325:1 4332:3 4333:1 4336:1 4340:1 4353:1 4354:1 4368:1 4371:2 4374:2 4375:6 4376:1 4382:1 4399:1 4400:1 4409:1 4413:2 4423:1 4429:1 4432:1 4434:1 4447:3 4460:1 4464:1 4469:1 4471:2 4473:1 4479:1 4497:1 4498:3 4505:1 4512:1 4518:5 4519:3 4525:1 4534:2 4539:1 4541:1 4542:2 4551:1 4566:1 4569:2 4572:2 4581:1 4586:1 4587:2 4592:1 4599:4 4608:1 4609:2 4611:1 4620:1 4621:1 4622:1 4636:1 4647:1 4655:2 4667:1 4668:1 4673:1 4683:2 4684:3 4710:3 4722:1 4724:1 4734:1 4742:1 4744:1 4759:1 4768:1 4773:1 4784:1 4792:1 4796:4 4814:3 4818:1 4820:1 4821:2 4822:1 4825:1 4829:1 4832:2 4853:1 4876:2 4889:2 4892:1 4894:4 4901:2 4909:1 4931:1 4963:1 4969:1 4986:2 4993:1 5000:1 5003:2 5016:3 5024:1 5029:1 5037:1 5044:1 5047:4 5049:5 5067:1 5071:4 5072:4 5076:1 5077:1 5088:2 5093:1 5095:1 5100:2 5124:1 5127:1 5146:2 5187:1 5192:1 5201:3 5202:1 5203:1 5224:1 5232:1 5247:3 5248:2 5253:1 5254:1 5258:2 5262:2 5269:1 5283:1 5308:6 5310:1 5313:1 5322:10 5325:6 5326:3 5332:6 5333:3 5337:4 5338:2 5339:2 5340:4 5342:1 5344:1 5347:7 5349:15 5350:1 5352:6 5354:4 5449:2 5451:12 5484:1 5488:1 5492:1 5500:1 5520:2 5529:1 5530:1 5531:1 5533:2 5534:2 5535:1 5585:1 5595:1 5599:4 5604:1 5608:1 5610:3 5627:1 5640:1 5670:1 5674:1 5681:2 5683:1 5686:4 5687:1 5688:3 5702:11 5703:1 5711:1 5712:1 5719:2 5721:1 5726:1 5730:1 5746:3 5752:1 5774:2 5783:3 5788:2 5807:2 5813:3 5815:2 5828:1 5849:1 5860:2 5865:3 5871:1 5874:3 5878:3 5889:1 5900:1 5931:2 5939:1 5943:1 5947:8 5948:3 5952:1 5968:2 5998:1 6005:2 6017:1 6034:1 6042:1 6044:1 6045:1 6046:1 6047:3 6049:1 6050:1 6056:1 6062:1 6071:1 6079:1 6087:1 6112:3 6116:2 6126:1 6128:1 6130:1 6131:1 6139:2 6145:2 6151:1 6154:1 6175:2 6183:12 6187:1 6194:1 6201:1 6207:1 6235:1 6237:2 6289:1 6293:1 6311:4 6324:1 6352:1 6355:3 6364:2 6365:11 6373:1 6378:1 6381:2 6382:2 6386:3 6389:1 6402:4 6405:1 6407:1 6409:1 6410:1 6412:1 6416:2 6417:1 6418:1 6422:1 6429:55 6433:1 6434:1 6436:1 6440:1 6448:1 6449:5 6451:8 6459:4 6462:1 6468:1 6475:1 6486:1 6491:1 6492:1 6493:1 6497:1 6510:1 6516:1 6525:1 6526:4 6532:2 6542:1 6554:1 6560:1 6578:1 6589:1 6591:1 6597:1 6616:1 6619:2 6643:2 6661:3 6667:1 6669:1 6675:1 6678:2 6685:1 6687:1 6706:1 6707:3 6711:2 6715:1 6716:3 6723:6 6756:1 6769:1 6781:1 6789:1 6791:1 6794:3 6796:2 6802:1 6804:1 6809:1 6810:5 6818:1 6824:5 6834:1 6839:3 6843:1 6846:1 6847:1 6854:5 6859:19 6908:5 6911:1 6920:2 6931:1 6934:2 6937:1 6981:5 6991:1 7016:1 7021:1 7022:1 7027:2 7033:1 7038:1 7045:1 7047:1 7054:6 7059:2 7068:12 7096:2 7097:1 7104:1 7108:1 7116:1 7122:1 7124:1 7132:1 7137:1 7157:4 7160:1 7163:1 7164:2 7165:1 7166:3 7169:4 7170:2 7177:1 7178:2 7179:1 7181:2 7182:1 7190:1 7194:1 7199:1 7202:1 7215:1 7216:3 7221:1 7235:1 7245:1 7246:3 7251:1 7268:1 7273:1 7285:14 7303:2 7322:1 7341:1 7360:1 7361:6 7363:1 7374:1 7377:1 7379:1 7382:2 7391:2 7400:13 7402:2 7409:2 7410:1 7414:1 7418:2 7419:2 7427:2 7430:1 7432:3 7435:1 7438:3 7443:2 7444:1 7445:1 7450:5 7451:1 7456:3 7457:7 7459:2 7460:1 7461:7 7462:1 7464:2 7465:2 7471:1 7478:1 7487:1 7491:1 7499:2 7510:2 7527:1 7550:1 7552:1 7553:3 7554:2 7564:2 7571:5 7572:1 7576:1 7581:11 7588:2 7589:1 7605:1 7614:3 7615:1 7622:1 7626:1 7638:1 7648:4 7656:1 7658:3 7670:1 7671:1 7682:2 7686:2 7701:1 7702:1 7709:1 7712:6 7741:1 7742:1 7743:1 7750:1 7751:1 7753:4 7754:1 7761:1 7763:1 7768:1 7773:14 7778:1 7782:1 7787:4 7799:1 7803:1 7804:1 7810:3 7816:1 7820:3 7841:2 7860:2 7868:2 7872:1 7880:2 7887:4 7894:2 7905:1 7908:1 7912:1 7923:1 7929:4 7930:1 7950:3 7964:3 7972:1 7976:1 7979:1 7982:1 7988:8 7999:1 8002:1 8005:1 8023:2 8030:1 8049:1 8065:13 8070:11 8079:1 8080:1 8081:13 8082:10 8099:5 8107:1 8110:1 8140:1 8158:1 8162:4 8171:3 8174:1 8175:3 8176:14 8177:1 8189:2 8195:1 8206:5 8207:3 8216:2 8229:2 8230:1 8234:22 8235:1 8249:2 8256:1 8266:1 8272:2 8279:1 8282:1 8284:1 8285:11 8296:2 8304:2 8311:2 8314:1 8317:1 8318:1 8320:1 8328:6 8332:1 8339:1 8343:1 8348:1 8350:1 8352:7 8355:1 8357:2 8359:4 8361:1 8364:2 8376:1 8383:1 8387:6 8404:2 8428:1 8433:3 8437:2 8443:2 8469:10 8471:1 8472:1 8508:1 8551:1 8553:2 8567:2 8568:2 8574:1 8582:2 8583:1 8593:2 8597:4 8598:8 8603:1 8605:1 8614:1 8617:1 8618:1 8623:1 8630:1 8632:1 8635:1 8637:1 8656:4 8657:1 8669:1 8670:1 8672:1 8681:5 8690:2 8692:1 8693:1 8702:2 8709:1 8711:1 8714:3 8719:1 8726:1 8727:3 8731:2 8736:5 8753:3 8759:9 8761:1 8762:1 8771:1 8773:4 8778:1 8782:3 8783:1 8785:1 8794:1 8795:2 8800:2 8802:11 8809:5 8812:1 8814:7 8822:2 8826:1 8830:1 8831:2 8832:5 8833:5 8836:1 8849:1 8856:1 8878:2 8879:2 8891:11 8900:4 8901:1 8910:4 8911:1 8914:2 8916:8 8937:1 8944:1 8955:1 8968:1 8971:1 8974:2 8979:1 8983:2 8993:1 8996:1 8998:2 8999:1 9000:1 9002:7 9012:1 9014:1 9017:1 9022:1 9027:1 9038:1 9043:1 9058:4 9060:1 9062:2 9063:2 9067:2 9084:1 9093:1 9097:1 9101:12 9102:10 9120:5 9123:2 9127:2 9132:1 9138:1 9140:1 9142:2 9149:1 9156:1 9165:1 9166:1 9173:1 9181:1 9183:1 9185:3 9192:1 9210:1 9222:3 9227:1 9239:1 9240:2 9243:1 9252:11 9263:1 9274:1 9313:2 9318:2 9336:1 9338:1 9346:1 9363:1 9370:1 9377:4 9392:1 9400:1 9403:6 9419:1 9426:1 9440:2 9441:1 9455:9 9462:2 9465:1 9466:1 9488:8 9495:1 9497:1 9524:1 9525:1 9532:14 9536:3 9547:1 9550:4 9562:2 9563:3 9565:2 9575:2 9590:2 9596:1 9599:1 9607:1 9611:1 9619:1 9622:2 9624:1 9625:1 9645:1 9653:1 9656:2 9682:6 9683:1 9688:2 9690:1 9691:1 9697:1 9698:1 9700:1 9710:2 9716:2 9723:4 9729:2 9738:2 9743:1 9745:1 9756:1 9772:2 9810:4 9818:1 9823:5 9824:1 9850:1 9859:3 9867:1 9877:1 9878:4 9881:1 9884:1 9890:1 9891:1 9900:1 9918:3 9922:1 9923:1 9924:5 9941:2 9944:1 9946:1 9949:1 9950:1 9951:1 9958:1 9963:1 9974:1 9999:1 10021:1 10022:3 10037:1 10040:2 10042:2 10045:1 10046:1 10052:2 10053:3 10054:3 10067:1 10070:1 10073:1 10074:3 10090:7 10117:1 10126:1 10169:5 10172:1 10176:1 10196:1 10198:1 10204:1 10211:1 10217:1 10218:7 10220:1 10232:1 10247:1 10254:1 10278:6 10311:1 10316:1 10318:3 10319:1 10324:1 10329:1 10353:1 10355:1 10360:2 10369:1 10370:2 10384:11 10406:1 10457:2 10465:1 10480:45 10502:1 10503:5 10524:1 10530:1 10531:4 10537:1 10539:1 10540:4 10543:1 10551:1 10554:2 10576:2 10587:1 10589:1 10593:1 10597:1 10598:6 10600:3 10617:2 10635:1 10648:2 10651:7 10654:1 10659:1 10667:1 10701:1 10707:1 10713:1 10719:1 10722:1 10725:3 10757:1 10758:1 10761:1 10772:1 10792:1 10809:1 10815:1 10818:1 10823:2 10837:1 10843:1 10846:2 10847:13 10851:4 10862:1 10871:4 10872:2 10879:1 10887:1 10892:1 10897:2 10898:2 10912:2 10922:1 10924:1 10951:2 10952:1 10953:1 10961:4 10962:2 10970:2 10974:7 10979:2 10981:1 10985:4 10987:1 10993:3 11013:1 11014:1 11016:1 11019:1 11030:1 11036:1 11046:8 11047:9 11050:1 11056:2 11062:1 11080:1 11087:1 11103:4 11118:2 11126:1 11155:2 11159:2 11163:4 11168:3 11173:3 11186:2 11187:6 11188:1 11201:1 11211:3 11215:8 11223:4 11235:2 11266:1 11273:5 11280:3 11283:1 11284:2 11286:1 11297:1 11301:1 11325:3 11329:1 11337:5 11341:1 11344:1 11345:1 11346:1 11347:1 11348:1 11349:2 11352:2 11353:1 11368:5 11375:5 11394:1 11400:2 11405:2 11408:1 11415:1 11430:11 11447:4 11449:2 11451:2 11459:4 11463:2 11479:1 11486:1 11497:1 11507:1 11509:3 11526:2 11540:1 11584:4 11600:1 11606:1 11607:1 11609:1 11632:1 11638:5 11640:3 11643:1 11653:1 11655:1 11690:1 11705:1 11708:2 11712:5 11727:1 11739:2 11742:2 11747:1 11757:1 11759:1 11790:1 11792:1 11800:1 11801:3 11807:1 11812:2 11813:2 11818:1 11823:1 11830:1 11832:1 11833:1 11834:1 11843:1 11853:1 11856:1 11857:2 11864:4 11874:1 11876:1 11881:1 11883:3 11900:1 11906:2 11932:1 11937:1 11949:1 11960:2 11966:1 11974:2 11976:2 11979:1 11984:1 11985:1 11990:1 11992:1 11994:1 11998:2 12001:1 12033:1 12038:1 12050:5 12065:1 12076:2 12078:1 12084:2 12092:1 12095:1 12097:2 12099:4 12114:2 12115:1 12118:1 12126:1 12131:1 12144:3 12145:1 12146:3 12178:1 12181:1 12182:2 12184:1 12197:1 12218:2 12227:1 12229:1 12245:1 12276:3 12287:2 12289:1 12323:1 12328:1 12337:1 12338:1 12346:9 12364:2 12365:2 12366:2 12372:1 12375:1 12381:7 12387:2 12390:2 12396:1 12416:1 12425:1 12427:2 12432:1 12440:1 12444:1 12452:2 12456:1 12468:1 12483:1 12486:2 12488:2 12490:2 12491:1 12512:1 12542:1 12555:1 12556:5 12573:1 12575:3 12582:1 12583:2 12584:1 12585:1 12586:1 12594:1 12614:11 12623:1 12627:2 12635:2 12641:1 12652:2 12661:1 12662:6 12672:2 12683:1 12685:1 12698:2 12723:5 12739:2 12740:2 12741:6 12748:2 12754:1 12774:1 12797:3 12798:4 12800:5 12801:1 12822:2 12837:1 12839:2 12842:1 12843:1 12846:2 12874:1 12881:2 12898:1 12930:1 12942:2 12943:1 12944:1 12945:2 12946:1 12950:5 12954:2 12961:2 12971:1 12980:1 12985:2 12988:6 12989:2 13013:1 13014:3 13025:1 13032:1 13033:2 13037:1 13058:2 13062:1 13072:1 13082:1 13094:1 13104:3 13125:2 13128:1 13140:4 13142:2 13153:10 13156:1 13159:1 13171:1 13181:1 13187:1 13205:1 13206:1 13207:8 13212:1 13225:4 13229:1 13238:1 13258:1 13259:1 13267:1 13288:1 13295:3 13301:1 13304:1 13311:3 13324:1 13328:17 13333:3 13334:1 13336:1 13342:2 13344:1 13345:1 13347:1 13362:1 13390:6 13393:1 13406:1 13410:1 13417:1 13428:2 13431:1 13434:2 13435:1 13437:1 13445:3 13446:1 13449:3 13452:2 13453:2 13454:1 13459:1 13462:1 13466:1 13470:1 13471:1 13476:1 13482:1 13489:3 13502:1 13505:2 13523:1 13525:2 13535:1 13542:1 13560:1 13561:1 13590:1 13593:2 13607:1 13614:1 13615:1 13620:1 13623:1 13637:5 13640:1 13644:1 13647:3 13651:1 13662:4 13664:2 13668:1 13671:1 13680:5 13682:2 13688:3 13703:2 13707:1 13708:1 13718:1 13719:5 13729:1 13732:1 13733:2 13740:1 13760:1 13765:4 13766:1 13778:2 13780:1 13803:9 13807:4 13819:12 13823:2 13835:6 13857:1 13858:1 13865:2 13871:2 13876:1 13888:4 13895:3 13901:1 13907:2 13908:2 13926:1 13928:5 13929:1 13931:2 13936:1 13947:1 13953:1 13970:3 13979:4 13986:1 13989:4 13994:4 13995:1 13996:2 14000:1 14007:2 14024:3 14026:3 14030:1 14031:3 14035:2 14041:1 14050:3 14051:11 14055:1 14062:1 14070:1 14071:2 14072:1 14073:1 14077:3 14088:1 14097:4 14114:1 14119:4 14127:2 14130:1 14137:1 14143:1 14165:1 14167:1 14178:13 14181:2 14202:1 14204:2 14207:1 14218:1 14227:1 14229:6 14231:2 14252:2 14262:1 14264:1 14265:2 14279:1 14286:1 14300:2 14302:1 14305:1 14317:1 14329:2 14332:3 14333:2 14334:1 14341:1 14365:4 14366:12 14371:5 14380:1 14381:1 14382:13 14383:3 14385:1 14386:1 14387:2 14391:2 14395:2 14403:1 14404:1 14417:1 14422:2 14434:1 14443:2 14465:2 14475:1 14476:11 14477:3 14496:12 14503:1 14513:1 14516:12 14522:1 14541:1 14544:1 14549:1 14553:1 14556:1 14558:1 14564:1 14568:1 14576:2 14577:2 14582:2 14583:1 14595:1 14596:2 14610:2 14622:1 14630:4 14635:3 14638:1 14648:1 14649:1 14650:2 14654:1 14657:2 14665:2 14672:3 14674:1 14677:11 14678:4 14691:3 14696:1 14711:1 14717:1 14719:6 14727:1 14734:1 14740:8 14744:1 14747:10 14751:1 14762:7 14763:1 14764:1 14765:3 14768:1 14774:1 14776:3 14785:6 14802:1 14804:4 14807:1 14810:1 14824:1 14837:7 14844:1 14849:2 14851:1 14853:1 14856:1 14864:5 14871:1 14877:1 14882:2 14885:5 14903:1 14914:1 14919:1 14934:2 14938:2 14946:4 14956:2 14962:1 14976:1 14981:2 14982:2 14987:1 14991:1 15002:1 15011:1 15015:1 15030:2 15035:2 15040:2 15067:1 15073:1 15080:2 15087:1 15089:1 15090:2 15097:1 15098:1 15100:2 15105:2 15111:1 15123:3 15133:1 15134:12 15135:1 15137:9 15142:1 15144:1 15160:3 15164:1 15166:1 15169:1 15171:3 15183:2 15184:6 15196:1 15197:1 15201:3 15205:12 15233:2 15234:1 15240:1 15251:2 15269:6 15282:6 15283:1 15287:1 15303:1 15307:48 15312:6 15322:1 15326:1 15344:2 15354:2 15360:1 15371:4 15374:1 15384:1 15396:6 15405:9 15409:1 15423:1 15424:1 15436:1 15438:1 15444:1 15445:2 15452:2 15453:1 15460:3 15480:2549 15483:2 15492:2 15496:1 15507:1 15508:1 15510:1 15518:1 15524:1 15554:1 15556:2 15560:1 15568:1 15570:2 15574:1 15591:1 15595:1 15599:2 15601:1 15610:4 15617:4 15623:1 15625:2 15638:4 15639:5 15641:1 15642:2 15645:1 15646:2 15647:1 15649:6 15652:1 15655:6 15658:2 15661:1 15662:9 15678:2 15684:1 15723:1 15738:1 15739:1 15742:2 15743:1 15763:3 15773:1 15776:14 15790:1 15793:1 15814:1 15816:2 15840:1 15847:1 15853:1 15855:1 15866:2 15869:1 15871:2 15875:1 15884:1 15896:2 15927:2 15929:4 15935:2 15938:1 15943:1 15949:6 15955:1 15957:1 15960:1 15961:1 15966:2 15984:1 15994:1 15997:6 16008:1 16019:1 16036:1 16042:8 16043:3 16051:1 16052:1 16054:8 16056:1 16059:1 16064:1 16074:3 16077:3 16078:1 16079:1 16094:1 16102:2 16103:1 16111:1 16112:1 16115:5 16118:1 16121:10 16139:1 16147:1 16151:2 16152:9 16154:11 16161:1 16171:1 16177:2 16179:1 16187:1 16206:2 16228:1 16239:1 16254:1 16262:3 16267:1 16268:4 16270:1 16271:1 16273:2 16274:2 16277:1 16283:2 16287:1 16296:1 16300:1 16302:3 16306:2 16308:1 16309:1 16310:1 16313:1 16318:1 16337:1 16341:1 16358:1 16370:3 16372:1 16376:1 16387:6 16402:1 16409:4 16412:2 16413:1 16426:1 16428:1 16438:1 16458:1 16474:1 16479:1 16484:7 16485:5 16488:1 16490:2 16495:3 16500:4 16503:2 16506:1 16509:2 16514:1 16534:2 16547:1 16548:1 16557:1 16577:2 16593:4 16603:1 16605:1 16611:1 16620:1 16623:1 16625:1 16630:3 16633:1 16637:1 16643:1 16652:2 16654:3 16659:1 16665:1 16670:1 16673:1 16679:1 16681:7 16682:1 16693:1 16712:1 16718:3 16726:5 16727:1 16729:1 16732:1 16733:1 16735:2 16743:2 16744:5 16753:7 16754:1 16761:1 16763:1 16775:1 16777:1 16778:2 16780:1 16787:2 16792:1 16794:2 16809:1 16815:6 16817:1 16853:1 16855:2 16861:5 16862:2 16867:6 16871:1 16875:1 16882:1 16895:1 16897:2 16908:1 16919:1 16921:9 16928:1 16946:2 16964:1 16970:1 16971:1 16975:1 17001:4 17011:1 17013:1 17030:2 17037:1 17043:1 17046:1 17048:1 17057:2 17058:1 17066:2 17083:1 17085:2 17090:1 17107:1 17113:2 17123:1 17131:1 17136:8 17137:4 17166:1 17174:1 17175:1 17176:1 17181:1 17185:1 17187:1 17188:1 17221:3 17237:7 17246:2 17248:1 17253:1 17269:2 17275:8 17276:6 17286:1 17288:1 17296:1 17298:1 17303:1 17311:3 17316:2 17320:1 17331:3 17335:1 17343:1 17346:2 17347:1 17348:1 17357:1 17362:7 17363:2 17366:2 17367:1 17368:1 17386:2 17387:11 17403:1 17404:1 17424:3 17440:1 17470:1 17485:5 17491:3 17492:1 17499:1 17515:1 17520:1 17523:1 17553:2 17559:1 17563:1 17569:1 17575:1 17580:1 17602:2 17605:1 17608:1 17616:2 17620:1 17622:1 17623:5 17626:1 17631:3 17641:1 17645:1 17649:1 17658:1 17660:1 17668:1 17678:11 17689:1 17706:2 17712:1 17724:3 17725:2 17730:1 17735:3 17739:1 17742:2 17743:1 17768:1 17772:2 17774:3 17775:1 17788:1 17792:2 17795:1 17808:1 17822:1 17826:1 17827:1 17834:3 17835:1 17838:2 17839:1 17852:2 17853:2 17855:5 17857:1 17862:1 17865:1 17886:2 17890:1 17900:1 17906:1 17908:1 17910:1 17915:2 17916:12 17919:1 17921:3 17922:1 17924:2 17925:1 17927:4 17943:3 17955:4 17956:1 17958:4 17962:2 17969:1 17975:1 17978:1 17979:1 17980:2 17983:3 17994:1 17995:5 18009:4 18016:1 18025:2 18028:1 18035:2 18037:1 18038:2 18041:2 18042:1 18043:8 18053:6 18058:1 18064:1 18068:3 18069:1 18073:1 18079:1 18088:1 18092:2 18093:9 18116:1 18130:2 18146:1 18159:1 18165:1 18166:5 18168:5 18174:2 18177:1 18181:1 18189:1 18193:1 18197:2 18201:1 18208:5 18209:1 18210:2 18215:1 18237:1 18247:2 18248:1 18249:1 18266:1 18282:1 18313:2 18320:1 18339:2 18356:1 18357:1 18358:1 18360:2 18366:2 18367:2 18369:3 18370:2 18375:5 18378:2 18379:1 18406:3 18409:1 18410:4 18414:3 18423:1 18436:1 18447:1 18454:1 18468:1 18469:2 18474:3 18478:1 18479:3 18482:1 18485:3 18491:2 18498:2 18504:1 18509:1 18511:3 18513:1 18523:1 18537:1 18539:2 18555:1 18567:2 18568:1 18570:1 18572:1 18578:1 18580:1 18585:1 18587:1 18600:2 18602:1 18616:3 18617:1 18623:1 18629:1 18631:1 18645:1 18654:2 18661:1 18664:1 18665:1 18674:2 18700:1 18702:6 18704:1 18727:4 18732:10 18736:1 18742:2 18747:1 18748:1 18750:1 18754:1 18755:1 18768:1 18784:1 18792:3 18800:2 18805:1 18816:2 18821:1 18849:1 18856:8 18857:2 18862:9 18867:1 18880:1 18881:4 18882:1 18884:1 18886:1 18901:2 18904:1 18905:1 18916:1 18929:1 18930:3 18931:3 18934:1 18938:2 18941:6 18949:1 18974:1 18980:1 19001:1 19011:1 19024:2 19033:4 19043:1 19048:1 19056:3 19059:1 19060:2 19076:1 19080:2 19085:2 19098:3 19108:9 19126:2 19134:3 19136:3 19139:1 19145:1 19146:1 19148:1 19150:1 19153:3 19172:1 19183:1 19193:3 19205:3 19207:4 19210:11 19226:4 19230:1 19249:1 19250:1 19258:1 19263:1 19267:1 19275:2 19292:8 19293:1 19294:1 19302:4 19303:1 19322:1 19328:3 19331:1 19335:1 19337:5 19339:2 19354:1 19359:1 19365:1 19368:1 19373:3 19374:1 19386:1 19391:1 19392:2 19395:2 19402:1 19412:1 19416:1 19422:1 19425:2 19438:3 19440:1 19443:6 19446:1 19453:1 19461:1 19469:1 19471:3 19475:1 19480:1 19486:2 19487:11 19490:1 19507:1 19508:2 19517:1 19522:1 19532:1 19544:6 19559:4 19561:1 19562:1 19564:1 19570:1 19575:1 19586:1 19587:1 19603:1 19606:1 19610:1 19612:1 19613:1 19637:1 19638:1 19644:2 19645:1 19657:2 19678:1 19683:1 19702:1 19706:1 19710:1 19714:1 19716:2 19730:2 19745:1 19753:1 19755:1 19757:3 19758:1 19762:8 19767:1 19773:1 19787:1 19789:1 19792:1 19804:1 19805:3 19810:5 19813:2 19837:1 19844:1 19847:1 19849:1 19886:1 19897:6 19901:1 19902:2 19909:1 19912:2 19924:1 19925:1 19928:3 19962:1 19966:2 19972:1 19992:1 20000:1 20003:1 20004:1 20015:2 20034:1 20040:6 20069:1 20072:1 20080:6 20083:1 20084:5 20096:2 20098:1 20099:1 20103:1 20108:1 20109:6 20111:1 20118:1 20128:1 20137:1 20138:1 20152:1 20165:1 20180:1 20208:1 20218:1 20223:1 20224:1 20226:2 20227:1 20235:1 20239:1 20247:2 20251:1 20252:2 20253:1 20258:2 20261:1 20266:1 20267:1 20270:4 20275:1 20278:1 20293:1 20304:1 20316:2 20317:3 20318:11 20319:1 20320:1 20326:3 20327:4 20331:3 20332:4 20333:1 20334:5 20336:1 20337:6 20338:3 20341:2 20343:9 20344:7 20350:1 20353:1 20356:1 20371:1 20373:1 20378:5 20380:1 20383:3 20391:1 20397:1 20398:11 20399:3 20406:1 20411:2 20413:1 20424:1 20435:1 20436:1 20440:1 20441:2 20442:10 20447:10 20448:4 20464:1 20469:3 20470:1 20485:1 20496:3 20502:3 20505:1 20510:1 20512:4 20529:2 20545:1 20552:1 20560:1 20576:5 20595:4 20596:1 20611:1 20614:1 20616:1 20619:1 20621:2 20627:1 20629:2 20631:11 20653:1 20659:1 20668:5 20686:1 20694:1 20696:1 20717:1 20718:2 20727:1 20733:1 20738:3 20740:1 20742:11 20745:1 20760:1 20761:11 20762:1 20769:2 20785:13 20787:1 20805:1 20812:1 20818:1 20829:7 20831:1 20846:1 20850:2 20853:1 20871:1 20872:3 20873:1 20874:1 20875:1 20877:1 20887:2 20890:2 20928:1 20930:1 20936:1 20949:13 20962:8 20973:2 20995:1 21007:1 21011:1 21012:2 21013:1 21017:1 21021:3 21033:1 21056:1 21062:2 21065:3 21074:1 21077:1 21089:1 21099:2 21100:2 21107:2 21108:7 21111:1 21112:2 21113:1 21123:2 21133:1 21134:4 21138:1 21139:1 21146:1 21150:6 21163:1 21173:1 21198:8 21199:5 21208:2 21209:5 21218:2 21219:1 21224:1 21225:2 21227:2 21228:1 21245:1 21249:1 21258:2 21266:1 21293:4 21306:1 21312:1 21327:1 21337:5 21349:1 21350:1 21353:1 21359:1 21361:4 21380:1 21400:1 21402:1 21410:1 21430:1 21434:2 21473:1 21480:1 21482:1 21485:2 21486:1 21490:2 21508:1 21520:1 21529:4 21539:4 21543:1 21546:1 21556:1 21557:5 21561:3 21567:1 21571:1 21575:1 21581:2 21582:3 21584:1 21586:1 21588:1 21595:1 21602:2 21610:7 21612:1 21613:2 21622:2 21627:1 21630:2 21633:1 21642:6 21644:1 21645:1 21650:1 21663:2 21675:1 21684:2 21697:2 21703:3 21718:1 21723:1 21737:1 21741:1 21760:48 21773:12 21774:1 21782:5 21783:1 21784:1 21787:2 21791:1 21794:1 21812:1 21816:1 21830:1 21831:3 21838:1 21844:1 21846:1 21856:1 21868:1 21878:2 21887:3 21904:1 21914:2 21916:7 21922:1 21926:1 21927:1 21943:1 21944:1 21947:1 21948:1 21982:1 21995:3 21996:1 21997:1 21998:1 22006:1 22007:1 22010:1 22015:1 22016:2 22024:1 22027:4 22035:1 22037:1 22041:1 22048:3 22078:1 22080:1 22094:1 22109:1 22119:2 22123:1 22132:1 22142:1 22144:1 22153:1 22163:10 22179:1 22192:1 22208:1 22211:1 22215:1 22218:1 22223:2 22229:2 22233:1 22243:1 22245:9 22247:1 22251:1 22256:1 22263:1 22279:2 22281:1 22315:1 22320:1 22325:3 22328:1 22331:23 22334:1 22340:1 22360:1 22368:1 22376:4 22378:1 22383:1 22388:1 22393:1 22410:2 22415:1 22417:1 22423:1 22431:1 22434:3 22437:1 22449:1 22455:1 22460:1 22465:1 22466:3 22472:1 22478:1 22481:1 22485:1 22491:1 22493:1 22504:1 22513:1 22517:2 22520:7 22534:3 22538:1 22548:3 22551:5 22552:1 22561:1 22585:1 22587:1 22593:1 22598:1 22601:1 22602:2 22611:8 22617:1 22623:1 22627:1 22644:2 22646:3 22647:1 22655:2 22658:2 22662:1 22669:4 22690:5 22699:8 22707:2 22709:1 22715:1 22730:1 22734:2 22736:1 22749:3 22755:9 22756:1 22759:6 22760:3 22761:3 22769:1 22779:1 22786:7 22787:1 22795:2 22799:1 22802:1 22803:7 22809:1 22812:1 22815:1 22818:1 22820:1 22822:1 22823:1 22828:1 22830:2 22831:3 22846:2 22864:1 22865:1 22866:1 22867:1 22874:3 22876:1 22882:1 22895:1 22902:1 22903:2 22905:2 22914:1 22916:2 22924:1 22931:1 22937:1 22942:1 22948:1 22982:1 23000:3 23001:1 23003:1 23011:1 23027:6 23032:1 23039:1 23064:2 23071:1 23075:1 23076:4 23084:1 23089:11 23109:16 23118:1 23123:1 23125:3 23127:3 23128:1 23143:1 23151:1 23155:1 23166:1 23167:2 23175:1 23185:1 23188:1 23196:2 23198:2 23201:1 23226:1 23237:4 23248:1 23256:1 23262:1 23263:1 23264:1 23284:4 23293:1 23295:1 23298:4 23299:1 23300:4 23305:1 23307:1 23314:6 23316:1 23331:1 23333:1 23335:1 23341:1 23344:5 23349:1 23357:1 23360:3 23361:1 23363:1 23378:1 23384:3 23385:2 23386:2 23391:1 23392:1 23393:2 23404:4 23410:1 23413:2 23416:1 23424:2 23430:29 23431:3 23433:2 23435:1 23449:1 23456:2 23466:4 23476:3 23491:1 23496:1 23507:1 23521:1 23524:1 23551:2 23558:1 23586:11 23588:1 23592:2 23603:5 23609:1 23610:8 23616:7 23620:1 23623:2 23626:7 23632:1 23633:1 23646:1 23647:7 23655:4 23659:2 23670:1 23674:1 23676:1 23685:1 23703:1 23711:1 23712:1 23713:1 23719:1 23720:2 23722:1 23723:1 23733:1 23736:1 23739:4 23741:4 23744:1 23751:1 23767:1 23768:1 23775:22 23777:2 23784:1 23787:1 23797:3 23828:1 23835:11 23836:1 23840:1 23847:1 23853:1 23858:8 23862:1 23865:1 23866:12 23869:1 23871:1 23885:2 23891:1 23893:1 23923:1 23940:2 23949:2 23950:1 23952:1 23967:1 23971:4 23974:4 23991:1 23993:1 23994:1 24002:1 24003:2 24004:1 24025:1 24034:1 24039:4 24051:1 24054:1 24070:3 24076:1 24081:1 24095:1 24096:3 24100:1 24110:2 24126:5 24128:1 24129:1 24132:1 24137:3 24143:1 24150:1 24151:1 24162:2 24164:1 24168:1 24170:9 24179:1 24213:1 24225:1 24239:1 24251:1 24257:1 24265:2 24266:8 24267:1 24271:1 24274:1 24275:1 24276:1 24280:1 24286:1 24287:1 24292:1 24296:1 24307:3 24314:1 24326:1 24330:3 24332:1 24341:4 24350:1 24370:3 24373:1 24385:1 24394:1 24398:1 24401:7 24407:1 24410:1 24411:6 24412:1 24423:1 24438:3 24441:1 24463:1 24473:1 24476:7 24477:2 24478:1 24482:1 24483:6 24485:4 24487:4 24503:9 24525:3 24530:6 24536:3 24538:1 24568:1
14 1:1 9:2 30:2 34:1 56:1 59:1 71:1 75:1 96:3 112:3 146:1 157:4 162:1 163:1 185:11 186:9 188:3 196:1 197:2 204:1 209:1 216:1 219:3 223:2 224:1 230:1 233:1 239:1 242:1 243:1 247:1 253:1 254:9 256:1 260:2 265:1 270:1 282:1 295:3 296:11 298:1 308:1 314:1 318:3 320:2 323:1 336:1 339:1 346:2 375:2 376:2 379:1 384:1 396:1 407:4 448:1 450:1 457:12 469:1 501:3 510:1 515:1 524:1 525:1 527:7 541:2 545:2 547:1 565:3 592:2 599:1 607:1 619:1 636:1 649:1 663:1 677:1 693:1 698:1 699:1 704:2 708:6 713:1 714:1 719:1 721:1 724:1 731:1 732:2 748:4 749:1 753:1 759:7 762:1 763:1 764:3 766:1 772:1 777:1 779:1 784:1 785:5 789:2 802:1 811:1 814:7 831:4 833:1 834:4 838:3 851:3 864:3 869:3 875:1 877:1 880:1 881:1 884:2 888:1 889:2 892:3 895:3 900:2 907:2 909:1 911:1 912:1 914:2 922:1 927:1 932:1 933:1 942:1 946:4 949:1 965:2 969:2 980:2 1000:1 1009:3 1011:2 1021:1 1023:2 1044:1 1045:1 1046:3 1048:1 1051:7 1053:1 1055:1 1059:4 1068:1 1077:1 1094:3 1095:2 1098:1 1110:1 1114:2 1124:1 1125:1 1127:1 1128:1 1134:1 1141:2 1153:2 1155:1 1160:3 1168:1 1171:6 1172:3 1187:3 1205:1 1217:1 1220:7 1226:1 1227:1 1229:2 1256:3 1259:8 1264:5 1274:1 1278:1 1285:1 1292:1 1293:2 1297:2 1299:1 1301:1 1316:1 1321:1 1332:4 1344:1 1356:3 1360:3 1369:1 1372:1 1381:5 1392:1 1395:1 1398:1 1401:11 1405:1 1413:1 1424:1 1425:2 1427:1 1439:1 1448:2 1452:1 1453:1 1470:1 1507:10 1510:1 1517:5 1526:2 1529:1 1535:1 1536:1 1538:2 1545:2 1546:1 1564:5 1570:2 1585:1 1589:2 1591:4 1603:1 1605:1 1608:1 1616:2 1617:3 1621:1 1622:2 1626:2 1627:1 1628:1 1629:2 1640:1 1654:2 1659:1 1673:1 1674:1 1676:1 1683:2 1701:1 1703:1 1710:1 1715:1 1723:1 1727:1 1730:1 1731:9 1737:1 1745:1 1753:1 1754:1 1759:1 1766:12 1770:1 1772:1 1781:2 1785:1 1796:1 1798:1 1809:8 1818:1 1826:5 1829:1 1834:1 1838:3 1842:1 1846:3 1856:7 1863:1 1874:3 1876:1 1877:1 1879:1 1880:1 1881:1 1882:2 1883:3 1885:2 1888:1 1891:2 1904:2 1908:1 1910:2 1911:1 1912:4 1929:1 1938:4 1939:1 1941:2 1942:2 1945:12 1947:3 1953:1 1954:6 1955:2 1957:1 1960:1 1961:1 1963:5 1965:3 1968:8 1970:2 1973:2 1976:4 1978:1 1991:1 2000:1 2009:1 2015:1 2020:1 2028:1 2040:2 2041:1 2042:1 2047:1 2049:1 2051:2 2053:1 2061:2 2065:2 2071:2 2076:2 2077:2 2085:1 2112:1 2128:1 2129:1 2131:2 2134:3 2138:1 2149:1 2155:1 2157:1 2164:1 2172:2 2178:2 2183:2 2193:2 2198:1 2208:1 2211:2 2226:4 2229:1 2234:2 2254:1 2274:3 2275:2 2277:1 2286:2 2295:1 2298:1 2303:1 2305:1 2321:6 2323:1 2325:4 2333:1 2349:1 2358:1 2366:4 2372:1 2380:2 2381:2 2383:5 2389:1 2390:9 2394:1 2400:1 2414:1 2419:2 2423:1 2425:1 2426:1 2433:1 2445:1 2448:1 2451:5 2462:56 2464:2 2465:1 2469:1 2470:1 2480:2 2486:1 2504:1 2507:11 2513:2 2519:13 2529:1 2530:2 2538:1 2565:7 2576:2 2587:2 2593:1 2597:4 2609:1 2618:1 2627:5 2638:1 2691:1 2704:1 2706:1 2709:3 2731:3 2736:12 2742:2 2746:1 2754:1 2762:1 2770:1 2779:3 2780:3 2785:2 2787:1 2798:2 2801:1 2802:11 2821:1 2826:1 2834:3 2837:1 2844:1 2846:2 2848:4 2849:1 2854:2 2855:2 2879:1 2886:12 2895:1 2901:1 2919:3 2934:1 2936:1 2954:2 2979:1 2980:1 2994:1 3002:2 3003:1 3020:4 3027:1 3041:1 3042:1 3049:6 3050:1 3060:1 3061:2 3064:1 3072:1 3076:1 3077:7 3090:1 3098:1 3099:2 3113:1 3116:2 3131:1 3132:1 3133:2 3147:3 3149:1 3153:1 3171:1 3173:1 3174:1 3179:1 3183:1 3184:17 3204:1 3206:2 3213:2 3221:4 3223:1 3225:1 3231:1 3234:8 3245:1 3248:1 3253:1 3256:1 3266:1 3285:1 3287:2 3292:1 3295:3 3297:6 3304:1 3309:1 3310:2 3312:2 3315:1 3316:1 3322:2 3324:1 3326:4 3328:2 3332:1 3342:1 3351:1 3353:1 3369:4 3372:1 3375:1 3379:1 3404:1 3407:2 3408:2 3414:1 3416:2 3418:1 3438:1 3462:1 3494:1 3499:1 3518:2 3519:1 3520:1 3522:1 3524:1 3525:1 3531:1 3545:1 3546:2 3547:3 3562:1 3563:1 3572:1 3581:3 3588:3 3598:3 3606:1 3612:1 3615:1 3618:3 3631:1 3641:16 3649:1 3660:1 3667:1 3677:1 3678:3 3679:1 3687:1 3707:1 3712:3 3730:1 3735:1 3738:1 3741:1 3744:1 3766:1 3774:1 3776:1 3783:1 3786:1 3804:1 3831:1 3833:1 3837:5 3841:1 3854:1 3878:1 3886:3 3889:1 3898:1 3907:3 3908:3 3909:3 3915:4 3918:2 3927:1 3938:8 3940:1 3963:4 3964:1 3966:1 3967:1 3976:1 3979:1 3984:2 3991:1 3995:11 3998:11 4005:2 4011:1 4012:1 4026:1 4033:1 4046:2 4051:1 4060:1 4061:2 4062:3 4083:1 4091:2 4093:1 4102:1 4107:20 4108:4 4109:1 4120:2 4128:1 4131:1 4136:4 4145:2 4154:1 4163:3 4183:1 4186:1 4190:2 4194:1 4195:1 4198:18 4206:1 4211:3 4212:8 4213:3 4216:3 4218:3 4221:1 4223:1 4224:1 4225:1 4229:1 4234:2 4236:6 4237:3 4238:4 4244:4 4268:1 4298:1 4305:1 4325:1 4332:3 4333:2 4336:1 4340:1 4353:1 4354:1 4368:1 4371:2 4374:2 4375:6 4376:1 4382:1 4399:1 4400:1 4409:1 4413:2 4423:1 4429:1 4432:1 4434:1 4447:3 4460:1 4464:1 4469:1 4471:2 4473:1 4479:1 4497:1 4498:3 4505:1 4512:1 4518:5 4519:3 4525:1 4534:2 4539:1 4541:1 4542:2 4551:1 4566:1 4569:2 4572:2 4581:1 4586:1 4587:2 4592:1 4599:4 4608:1 4609:2 4611:1 4620:1 4621:1 4622:1 4636:1 4647:1 4655:2 4667:1 4668:1 4673:1 4683:2 4684:3 4710:3 4722:1 4724:1 4734:1 4742:1 4744:1 4759:1 4768:1 4773:1 4784:1 4792:1 4793:1 4796:4 4814:3 4818:1 4820:1 4821:2 4822:1 4825:1 4829:1 4832:2 4853:1 4876:2 4889:2 4892:1 4894:4 4901:2 4909:1 4931:1 4963:1 4969:1 4986:2 4993:1 5000:1 5003:2 5016:3 5024:1 5029:1 5037:1 5044:1 5047:4 5049:6 5067:1 5071:5 5072:5 5076:1 5077:1 5088:2 5093:1 5095:1 5100:2 5124:1 5127:1 5146:2 5187:1 5192:1 5201:3 5202:1 5203:1 5224:1 5232:1 5247:3 5248:2 5253:1 5254:1 5258:2 5262:2 5269:1 5283:1 5308:6 5310:1 5313:1 5322:10 5325:6 5326:4 5332:6 5333:3 5337:5 5338:2 5339:2 5340:5 5342:1 5344:2 5347:7 5349:16 5350:1 5352:6 5354:4 5449:2 5451:12 5484:1 5488:1 5492:1 5500:1 5520:2 5529:1 5530:1 5531:1 5533:2 5534:3 5535:2 5540:1 5585:1 5595:1 5599:4 5604:1 5608:1 5610:3 5618:1 5627:1 5640:1 5670:1 5674:1 5681:2 5683:1 5686:4 5687:1 5688:3 5702:11 5703:1 5711:1 5712:1 5719:2 5721:1 5726:1 5730:1 5746:3 5752:1 5774:2 5783:3 5788:2 5807:2 5813:3 5815:2 5828:1 5849:1 5860:2 5865:3 5871:1 5874:3 5878:4 5889:1 5900:1 5931:2 5939:1 5943:1 5947:9 5948:3 5952:1 5968:2 5998:1 6005:2 6017:2 6034:1 6042:1 6044:1 6045:1 6046:1 6047:3 6049:1 6050:1 6056:1 6062:1 6071:1 6079:1 6087:1 6112:3 6116:2 6126:1 6128:1 6130:1 6131:1 6139:2 6145:2 6151:1 6154:1 6175:2 6183:12 6187:1 6194:1 6201:1 6207:1 6235:1 6237:2 6289:1 6293:1 6311:4 6324:1 6352:1 6354:1 6355:3 6364:2 6365:11 6366:1 6373:1 6378:1 6381:2 6382:2 6386:3 6389:1 6402:5 6405:1 6407:2 6409:1 6410:1 6412:1 6416:2 6417:1 6418:1 6422:1 6429:60 6433:1 6434:1 6436:1 6440:1 6448:1 6449:5 6451:8 6459:4 6462:1 6468:1 6475:1 6486:1 6491:1 6492:1 6493:1 6497:1 6510:1 6516:1 6525:1 6526:4 6532:3 6542:1 6554:1 6560:2 6578:1 6587:1 6589:1 6591:1 6597:1 6616:1 6619:2 6643:2 6661:3 6667:1 6669:1 6675:1 6678:2 6685:1 6687:1 6706:2 6707:3 6711:3 6715:1 6716:3 6723:6 6756:1 6769:1 6781:1 6789:1 6791:1 6794:3 6796:2 6802:1 6804:1 6809:1 6810:5 6818:1 6824:5 6834:1 6839:4 6843:1 6846:1 6847:1 6854:5 6859:19 6908:5 6911:1 6920:2 6931:1 6934:2 6937:1 6981:5 6991:1 7016:1 7021:1 7022:1 7027:2 7033:1 7038:1 7045:1 7047:1 7054:6 7059:2 7068:12 7096:2 7097:1 7104:1 7108:1 7116:1 7122:1 7124:1 7132:1 7137:1 7157:5 7160:1 7163:1 7164:2 7165:1 7166:3 7169:4 7170:2 7177:1 7178:2 7179:1 7181:2 7182:1 7190:1 7194:1 7199:1 7202:1 7215:1 7216:3 7221:1 7235:1 7245:1 7246:3 7251:1 7268:1 7273:1 7285:14 7303:2 7322:1 7341:1 7360:1 7361:6 7363:1 7374:1 7377:1 7379:1 7382:2 7391:2 7400:13 7402:2 7409:2 7410:1 7414:1 7418:2 7419:2 7427:2 7430:1 7432:3 7435:1 7438:3 7443:2 7444:1 7445:1 7450:5 7451:1 7456:3 7457:9 7459:2 7460:1 7461:7 7462:1 7464:2 7465:2 7471:1 7478:1 7487:1 7491:1 7499:2 7510:2 7527:1 7533:1 7550:1 7552:1 7553:3 7554:2 7564:2 7571:5 7572:1 7576:1 7581:11 7588:2 7589:1 7605:1 7614:3 7615:1 7622:1 7626:1 7638:1 7648:4 7656:1 7658:3 7670:1 7671:1 7682:2 7686:2 7701:1 7702:1 7709:1 7712:6 7741:1 7742:1 7743:1 7746:1 7750:1 7751:1 7753:4 7754:1 7761:1 7763:1 7768:1 7773:14 7778:1 7782:1 7787:4 7799:1 7803:1 7804:2 7810:3 7816:2 7820:3 7841:2 7860:3 7868:2 7872:1 7880:2 7887:4 7894:2 7905:1 7908:1 7912:1 7921:1 7923:2 7929:4 7930:1 7950:3 7964:3 7972:1 7976:1 7979:1 7982:1 7988:9 7999:1 8002:1 8005:1 8023:2 8030:1 8049:1 8065:13 8070:11 8079:1 8080:1 8081:13 8082:10 8099:5 8107:1 8110:1 8140:1 8158:1 8162:4 8171:3 8174:1 8175:4 8176:14 8177:1 8189:2 8195:2 8206:5 8207:3 8216:2 8229:2 8230:1 8234:23 8235:1 8249:2 8256:1 8266:1 8272:2 8279:1 8282:1 8284:1 8285:11 8296:2 8304:2 8311:2 8314:1 8317:1 8318:1 8320:1 8328:6 8332:1 8339:1 8343:1 8348:1 8350:1 8352:8 8355:1 8357:2 8359:4 8361:1 8364:2 8376:1 8383:1 8387:7 8404:2 8428:1 8433:3 8437:2 8443:2 8469:10 8471:1 8472:1 8508:1 8551:1 8553:2 8567:2 8568:2 8574:1 8582:2 8583:1 8593:2 8597:4 8598:8 8603:1 8605:1 8614:1 8617:1 8618:1 8623:1 8630:1 8632:1 8635:1 8637:1 8656:4 8657:1 8669:1 8670:1 8672:2 8681:5 8690:2 8692:1 8693:1 8702:2 8709:1 8711:1 8714:3 8719:1 8726:1 8727:3 8731:2 8736:5 8753:3 8759:9 8761:1 8762:1 8771:1 8773:5 8778:1 8782:3 8783:1 8785:1 8794:1 8795:2 8800:2 8802:11 8809:5 8812:1 8814:8 8822:2 8826:1 8830:1 8831:2 8832:5 8833:5 8836:1 8849:1 8856:1 8878:2 8879:2 8891:11 8900:4 8901:1 8910:5 8911:1 8914:2 8916:8 8937:1 8944:1 8955:1 8968:1 8971:1 8974:2 8979:1 8983:2 8993:1 8996:2 8998:2 8999:1 9000:1 9002:7 9012:1 9014:1 9017:1 9022:1 9027:1 9038:1 9043:1 9058:4 9060:1 9062:2 9063:2 9067:2 9084:1 9093:1 9097:1 9101:12 9102:10 9120:5 9123:3 9127:2 9132:2 9138:1 9140:1 9142:2 9149:1 9156:1 9165:1 9166:1 9173:1 9181:2 9183:1 9185:3 9192:1 9210:1 9222:3 9227:1 9239:1 9240:2 9243:1 9252:11 9263:1 9274:1 9313:2 9318:2 9336:1 9338:1 9346:1 9356:1 9363:1 9370:1 9377:4 9392:1 9400:1 9403:6 9419:1 9426:1 9440:3 9441:1 9455:9 9462:2 9465:1 9466:1 9488:8 9495:1 9497:1 9524:1 9525:1 9532:14 9536:3 9547:1 9550:4 9562:2 9563:3 9565:2 9575:2 9590:2 9596:1 9599:1 9607:1 9611:1 9619:1 9622:2 9624:1 9625:1 9645:1 9653:1 9656:2 9682:6 9683:1 9688:2 9690:1 9691:1 9697:1 9698:1 9700:1 9710:2 9716:2 9723:4 9729:2 9738:2 9743:1 9745:1 9756:1 9772:2 9810:4 9818:1 9823:5 9824:1 9850:1 9859:3 9867:1 9877:1 9878:4 9881:1 9884:1 9890:1 9891:1 9900:1 9918:3 9922:1 9923:1 9924:5 9941:2 9944:1 9946:1 9949:1 9950:1 9951:1 9958:1 9963:1 9974:1 9999:1 10021:1 10022:3 10037:1 10040:2 10042:2 10045:1 10046:1 10052:2 10053:3 10054:3 10067:1 10070:1 10073:1 10074:3 10090:7 10117:1 10126:1 10169:5 10172:1 10176:1 10196:1 10198:1 10204:1 10211:1 10217:2 10218:7 10220:1 10232:1 10247:1 10254:1 10278:6 10287:1 10311:1 10316:2 10318:3 10319:1 10324:1 10329:1 10353:1 10355:1 10360:2 10369:1 10370:2 10384:11 10406:1 10457:2 10465:1 10480:46 10487:1 10502:1 10503:5 10524:1 10530:1 10531:4 10537:1 10539:1 10540:4 10543:1 10551:1 10554:3 10576:2 10587:1 10589:1 10593:1 10597:1 10598:6 10600:3 10617:2 10635:1 10648:2 10651:7 10654:1 10659:1 10667:1 10668:1 10701:1 10707:1 10713:1 10719:1 10722:1 10725:3 10757:1 10758:1 10761:1 10772:1 10792:1 10809:1 10815:1 10818:1 10823:2 10837:1 10843:1 10846:2 10847:15 10851:4 10862:1 10871:4 10872:2 10879:1 10887:2 10892:1 10897:2 10898:2 10912:2 10922:1 10924:1 10951:2 10952:1 10953:1 10961:4 10962:2 10970:2 10974:9 10979:2 10981:1 10985:4 10987:2 10993:3 11013:1 11014:1 11016:1 11019:1 11030:1 11036:1 11046:8 11047:9 11050:1 11056:2 11062:1 11080:1 11087:1 11103:4 11118:2 11126:1 11155:3 11159:2 11163:4 11168:3 11173:3 11186:2 11187:6 11188:1 11201:1 11211:3 11215:8 11223:4 11235:3 11245:1 11266:1 11273:5 11280:3 11283:1 11284:2 11286:1 11297:1 11301:1 11325:3 11329:1 11337:5 11341:1 11344:1 11345:1 11346:1 11347:1 11348:1 11349:2 11352:2 11353:1 11368:5 11375:5 11394:1 11400:2 11405:2 11408:1 11415:1 11430:11 11447:4 11449:3 11451:2 11459:4 11463:2 11479:1 11486:1 11497:1 11507:1 11509:3 11526:2 11540:1 11584:4 11600:1 11606:1 11607:1 11609:1 11632:1 11638:5 11640:3 11643:1 11653:1 11655:1 11690:1 11705:1 11708:2 11712:5 11717:1 11727:1 11739:2 11742:2 11747:1 11757:1 11759:1 11790:1 11792:1 11800:1 11801:3 11807:1 11812:3 11813:2 11818:1 11823:1 11830:1 11832:1 11833:1 11834:1 11843:1 11853:1 11856:1 11857:2 11864:4 11874:1 11876:1 11881:1 11883:3 11900:1 11906:2 11932:1 11937:1 11949:1 11960:2 11966:2 11974:2 11976:2 11979:1 11984:1 11985:1 11990:1 11992:1 11994:1 11998:2 12001:1 12033:1 12038:1 12050:5 12065:1 12076:2 12078:1 12084:2 12092:1 12095:1 12097:2 12099:4 12114:3 12115:1 12118:1 12126:1 12129:1 12131:1 12144:3 12145:1 12146:3 12178:1 12181:1 12182:2 12184:1 12197:1 12218:3 12227:1 12229:1 12245:1 12276:3 12287:2 12289:1 12323:1 12328:1 12337:1 12338:1 12346:9 12364:2 12365:2 12366:2 12372:1 12375:1 12381:7 12387:2 12390:2 12396:1 12416:1 12425:1 12427:2 12432:1 12440:1 12444:1 12452:2 12456:1 12468:1 12483:1 12486:2 12488:2 12490:2 12491:1 12512:1 12542:1 12555:1 12556:5 12573:1 12575:3 12582:1 12583:2 12584:1 12585:1 12586:1 12594:1 12614:11 12623:2 12627:2 12635:2 12641:1 12643:1 12652:2 12661:1 12662:6 12672:2 12683:1 12685:1 12698:2 12716:2 12723:5 12739:2 12740:2 12741:6 12746:1 12748:2 12754:1 12774:1 12797:3 12798:4 12800:5 12801:1 12822:2 12837:1 12839:2 12842:1 12843:1 12846:2 12874:1 12881:2 12898:1 12930:1 12942:3 12943:1 12944:1 12945:2 12946:1 12950:5 12954:2 12961:2 12971:1 12980:1 12985:2 12988:6 12989:3 13013:1 13014:3 13025:1 13032:1 13033:2 13037:1 13058:2 13062:1 13072:2 13082:1 13094:1 13104:3 13125:2 13128:1 13140:4 13142:2 13153:10 13156:1 13159:1 13171:1 13181:1 13187:1 13205:1 13206:1 13207:8 13212:1 13225:4 13229:1 13238:2 13258:1 13259:1 13267:1 13288:1 13295:4 13301:1 13304:1 13311:3 13324:1 13328:17 13333:3 13334:1 13336:1 13342:2 13344:1 13345:1 13347:1 13362:1 13390:6 13393:1 13406:1 13410:1 13417:1 13428:2 13431:1 13434:2 13435:1 13437:1 13445:3 13446:1 13449:3 13452:2 13453:2 13454:1 13459:1 13462:1 13466:1 13470:1 13471:1 13476:1 13482:1 13489:3 13502:1 13505:2 13523:1 13525:3 13535:1 13542:1 13560:1 13561:1 13590:1 13593:2 13607:1 13614:1 13615:1 13620:1 13623:1 13637:5 13640:1 13644:1 13647:3 13651:1 13662:4 13664:2 13668:1 13671:1 13680:5 13682:2 13688:3 13689:1 13703:2 13707:1 13708:1 13718:1 13719:5 13729:1 13732:1 13733:2 13740:1 13760:1 13765:4 13766:1 13778:2 13780:1 13803:9 13807:4 13819:12 13823:2 13835:6 13857:1 13858:1 13865:2 13871:2 13876:1 13888:4 13895:3 13901:1 13907:2 13908:2 13926:1 13928:5 13929:1 13931:3 13936:1 13947:1 13953:1 13970:3 13979:4 13986:1 13989:4 13994:4 13995:1 13996:2 14000:1 14007:2 14024:3 14026:3 14030:1 14031:3 14035:2 14041:1 14050:3 14051:11 14055:1 14062:1 14070:1 14071:2 14072:1 14073:1 14077:3 14088:1 14097:4 14114:1 14119:4 14127:2 14130:1 14137:1 14143:1 14165:1 14167:1 14178:13 14181:2 14202:1 14204:2 14207:1 14218:1 14227:1 14229:6 14231:2 14252:2 14262:1 14264:1 14265:2 14279:1 14286:1 14300:2 14302:1 14305:1 14317:1 14329:2 14332:3 14333:2 14334:1 14341:1 14365:4 14366:12 14371:5 14380:1 14381:1 14382:13 14383:3 14385:1 14386:1 14387:2 14391:2 14395:2 14403:1 14404:1 14417:1 14422:2 14434:1 14443:2 14465:2 14475:1 14476:12 14477:3 14496:12 14503:1 14513:1 14516:13 14522:1 14541:1 14544:1 14549:1 14553:1 14555:1 14556:1 14558:1 14564:1 14568:1 14576:2 14577:2 14582:2 14583:1 14595:1 14596:2 14610:2 14622:1 14630:4 14635:3 14638:1 14648:1 14649:1 14650:2 14654:1 14657:2 14665:2 14672:3 14674:1 14677:11 14678:4 14691:3 14696:1 14711:1 14717:1 14719:6 14727:1 14734:1 14740:8 14744:1 14747:10 14751:1 14762:8 14763:1 14764:1 14765:3 14768:1 14774:1 14776:3 14785:6 14792:1 14802:1 14804:4 14807:1 14810:1 14824:1 14837:7 14844:2 14849:2 14851:1 14853:1 14856:1 14864:5 14871:1 14877:1 14882:2 14885:5 14903:1 14914:1 14919:1 14934:2 14938:2 14946:4 14956:2 14962:1 14976:1 14981:2 14982:2 14987:1 14991:1 15002:1 15011:1 15015:1 15030:2 15035:2 15040:2 15067:1 15073:1 15080:2 15087:1 15089:1 15090:2 15097:1 15098:1 15100:2 15105:2 15107:1 15111:1 15123:3 15133:1 15134:12 15135:1 15137:9 15142:1 15144:1 15160:3 15164:1 15166:1 15169:1 15171:3 15183:2 15184:6 15196:1 15197:1 15201:4 15205:12 15233:2 15234:1 15240:1 15251:2 15269:6 15282:6 15283:1 15287:1 15303:1 15307:49 15312:6 15322:1 15326:1 15344:3 15354:2 15360:1 15371:4 15374:1 15384:1 15396:6 15405:9 15409:1 15423:1 15424:1 15436:1 15438:1 15444:1 15445:2 15452:2 15453:1 15460:3 15469:1 15480:2591 15483:2 15492:2 15496:1 15507:1 15508:1 15510:1 15518:1 15524:1 15554:1 15556:2 15560:1 15568:1 15570:2 15574:1 15591:1 15595:1 15599:2 15601:1 15610:4 15617:5 15623:1 15625:2 15638:4 15639:5 15641:1 15642:2 15645:1 15646:2 15647:1 15649:6 15652:1 15655:7 15658:2 15661:1 15662:9 15678:2 15684:1 15723:1 15738:1 15739:1 15742:2 15743:1 15763:3 15773:1 15776:14 15790:1 15793:1 15800:1 15814:1 15816:2 15840:1 15847:1 15853:1 15855:1 15866:2 15869:1 15871:2 15875:1 15884:1 15896:2 15927:2 15929:4 15935:2 15938:1 15943:1 15949:7 15955:1 15957:1 15960:1 15961:1 15966:2 15984:1 15994:1 15997:6 16008:1 16019:1 16036:1 16042:8 16043:3 16046:1 16051:1 16052:1 16054:8 16056:1 16059:1 16064:1 16074:3 16077:3 16078:1 16079:1 16094:1 16102:2 16103:1 16111:1 16112:1 16115:6 16118:1 16121:10 16139:1 16147:1 16151:2 16152:9 16154:11 16161:1 16171:1 16177:2 16179:1 16187:1 16206:2 16228:1 16239:1 16254:1 16262:3 16267:1 16268:4 16270:1 16271:1 16273:2 16274:2 16277:1 16283:2 16287:1 16296:1 16300:1 16302:3 16306:2 16308:1 16309:1 16310:1 16313:1 16318:1 16337:1 16341:1 16358:1 16370:3 16372:1 16376:1 16387:6 16402:1 16409:4 16412:2 16413:1 16426:1 16428:1 16438:1 16458:1 16474:1 16479:1 16484:7 16485:5 16488:1 16490:2 16495:3 16500:5 16503:2 16506:1 16509:2 16514:1 16534:2 16547:1 16548:1 16557:1 16577:2 16593:4 16603:1 16605:1 16611:1 16620:1 16623:1 16625:1 16630:3 16633:1 16637:1 16643:1 16652:3 16654:3 16659:1 16665:1 16670:1 16673:1 16679:1 16681:9 16682:1 16693:1 16712:1 16718:3 16726:5 16727:1 16729:1 16732:1 16733:1 16735:2 16743:2 16744:5 16753:7 16754:1 16761:1 16763:1 16775:1 16777:1 16778:2 16780:1 16787:2 16792:1 16794:2 16809:1 16815:6 16817:1 16853:1 16855:2 16861:5 16862:2 16867:6 16871:1 16875:1 16882:1 16895:1 16897:2 16908:1 16919:1 16921:9 16928:1 16946:2 16964:1 16965:2 16970:1 16971:1 16975:1 17001:4 17011:1 17013:1 17030:2 17037:1 17043:1 17046:1 17048:1 17057:2 17058:1 17066:2 17082:1 17083:1 17085:2 17090:1 17107:1 17113:2 17123:1 17131:1 17136:8 17137:4 17166:1 17174:1 17175:1 17176:1 17181:1 17185:1 17187:1 17188:1 17221:3 17237:7 17246:2 17248:1 17253:1 17269:2 17275:8 17276:6 17286:1 17288:1 17296:1 17298:1 17301:1 17303:1 17311:3 17316:2 17320:1 17331:4 17335:1 17343:1 17346:2 17347:1 17348:1 17357:1 17362:8 17363:2 17366:2 17367:1 17368:1 17386:2 17387:11 17403:1 17404:1 17424:4 17436:1 17440:1 17470:1 17485:5 17491:3 17492:1 17499:1 17515:1 17520:1 17523:1 17553:2 17559:1 17563:1 17569:1 17575:1 17580:1 17602:2 17605:2 17608:1 17616:2 17620:1 17622:1 17623:5 17626:1 17631:4 17641:1 17645:1 17649:1 17658:1 17660:1 17668:1 17678:11 17689:1 17706:2 17712:2 17724:3 17725:2 17730:1 17735:3 17739:1 17742:2 17743:1 17768:1 17772:2 17774:3 17775:1 17788:1 17792:3 17795:1 17808:1 17822:1 17826:1 17827:1 17834:3 17835:1 17838:2 17839:1 17852:3 17853:2 17855:6 17857:1 17862:2 17865:1 17886:2 17890:1 17900:1 17906:1 17908:1 17910:1 17915:2 17916:12 17919:1 17921:3 17922:1 17924:2 17925:1 17927:4 17943:3 17955:4 17956:2 17958:4 17962:2 17969:1 17975:1 17978:1 17979:1 17980:2 17983:4 17994:1 17995:5 18009:4 18016:1 18025:2 18028:1 18035:2 18037:1 18038:2 18041:2 18042:1 18043:9 18053:7 18058:1 18064:1 18068:3 18069:1 18073:1 18079:1 18088:1 18092:3 18093:10 18116:1 18130:2 18146:1 18159:1 18165:1 18166:5 18168:5 18174:3 18177:1 18181:1 18189:1 18193:1 18197:2 18201:1 18208:5 18209:1 18210:2 18215:1 18237:1 18247:2 18248:1 18249:1 18266:1 18282:1 18313:2 18320:1 18339:2 18356:1 18357:1 18358:1 18360:2 18366:2 18367:2 18369:3 18370:2 18375:6 18378:2 18379:1 18397:1 18406:3 18409:1 18410:4 18414:3 18423:1 18436:1 18447:1 18454:1 18468:1 18469:2 18474:3 18478:1 18479:3 18482:1 18485:4 18491:2 18498:2 18504:1 18509:1 18511:3 18513:1 18523:1 18537:1 18539:2 18554:1 18555:1 18567:2 18568:1 18570:1 18572:1 18578:2 18580:1 18585:1 18587:1 18600:2 18602:1 18616:3 18617:1 18623:1 18629:1 18631:1 18645:1 18654:2 18661:1 18664:1 18665:1 18674:2 18700:1 18702:6 18704:1 18727:4 18732:12 18736:1 18742:2 18747:1 18748:1 18750:1 18754:1 18755:1 18768:1 18784:1 18792:3 18800:2 18805:1 18816:2 18821:1 18849:1 18856:8 18857:2 18862:9 18867:1 18880:1 18881:4 18882:1 18884:1 18886:1 18901:2 18904:1 18905:1 18916:1 18929:1 18930:3 18931:4 18934:1 18938:2 18941:6 18949:1 18974:1 18980:1 19001:1 19011:1 19024:2 19033:4 19043:1 19048:1 19056:3 19059:1 19060:2 19076:1 19080:2 19085:2 19098:3 19108:9 19126:2 19134:3 19136:3 19139:1 19145:1 19146:1 19148:1 19150:1 19153:3 19172:1 19183:2 19193:3 19205:3 19207:4 19210:12 19226:4 19230:1 19237:1 19249:1 19250:1 19258:1 19263:1 19267:1 19275:2 19292:8 19293:1 19294:1 19302:4 19303:1 19322:1 19328:3 19331:1 19335:1 19337:5 19339:2 19354:1 19359:1 19365:1 19368:1 19373:3 19374:1 19386:1 19391:1 19392:2 19395:2 19402:1 19412:1 19416:1 19422:1 19425:2 19438:3 19440:1 19443:6 19446:1 19453:1 19461:1 19469:1 19471:3 19475:1 19480:1 19486:2 19487:11 19490:1 19507:1 19508:2 19517:1 19522:1 19532:1 19544:6 19559:4 19561:1 19562:1 19564:1 19570:1 19575:1 19586:1 19587:1 19603:1 19606:1 19610:1 19612:1 19613:1 19637:1 19638:1 19644:2 19645:1 19657:2 19678:1 19683:1 19702:1 19706:1 19710:1 19714:1 19716:2 19730:2 19745:1 19753:1 19755:1 19757:3 19758:1 19762:8 19767:1 19773:1 19787:1 19789:1 19792:1 19804:1 19805:3 19810:6 19813:2 19837:1 19844:1 19847:1 19849:1 19886:1 19897:6 19901:1 19902:2 19909:1 19912:2 19924:1 19925:1 19928:3 19962:1 19966:2 19972:1 19974:1 19992:1 20000:1 20003:1 20004:1 20015:2 20034:1 20040:6 20069:1 20072:1 20080:6 20083:1 20084:5 20096:2 20098:1 20099:1 20103:1 20108:1 20109:6 20111:1 20118:1 20128:1 20137:1 20138:1 20152:1 20165:1 20180:1 20198:1 20208:1 20218:1 20223:1 20224:1 20226:2 20227:1 20235:1 20239:1 20241:1 20247:2 20251:1 20252:2 20253:1 20258:2 20261:1 20266:1 20267:1 20268:1 20270:4 20275:1 20278:1 20293:1 20304:1 20316:2 20317:3 20318:11 20319:1 20320:1 20326:3 20327:4 20331:3 20332:4 20333:1 20334:5 20336:1 20337:6 20338:3 20341:2 20343:10 20344:7 20350:1 20353:1 20356:1 20371:1 20373:1 20378:5 20380:1 20383:3 20391:1 20397:2 20398:11 20399:3 20406:1 20411:2 20413:1 20424:1 20435:1 20436:1 20440:1 20441:2 20442:10 20447:10 20448:5 20464:1 20469:3 20470:1 20485:1 20496:3 20502:3 20505:1 20510:1 20512:4 20529:2 20545:1 20552:1 20560:1 20576:5 20595:4 20596:1 20611:1 20614:1 20616:1 20619:1 20620:1 20621:2 20627:1 20629:2 20631:11 20653:1 20659:1 20668:5 20686:1 20694:1 20696:1 20717:1 20718:2 20727:1 20733:1 20738:3 20740:1 20742:11 20745:1 20760:1 20761:11 20762:1 20769:2 20785:13 20787:1 20805:1 20812:1 20818:1 20829:7 20831:1 20846:1 20850:2 20853:1 20871:1 20872:3 20873:1 20874:1 20875:1 20877:1 20887:2 20890:2 20928:1 20930:1 20936:1 20949:13 20962:9 20973:2 20995:1 21007:1 21011:1 21012:2 21013:1 21017:1 21021:3 21033:1 21056:1 21062:3 21065:3 21074:1 21077:1 21079:1 21089:1 21099:2 21100:2 21107:2 21108:7 21111:1 21112:2 21113:1 21123:2 21133:1 21134:4 21138:1 21139:1 21146:2 21150:6 21163:1 21173:1 21198:9 21199:5 21208:2 21209:5 21218:2 21219:1 21224:1 21225:2 21227:2 21228:1 21245:1 21249:1 21258:2 21266:1 21293:5 21306:1 21312:1 21327:1 21337:5 21349:1 21350:1 21353:1 21359:1 21361:4 21380:1 21400:1 21402:1 21410:1 21430:1 21434:2 21473:1 21480:1 21482:1 21485:2 21486:1 21490:2 21508:1 21515:1 21520:1 21529:4 21539:4 21543:1 21546:1 21556:1 21557:5 21561:4 21567:1 21571:1 21575:1 21581:2 21582:3 21584:1 21586:1 21588:1 21595:1 21602:2 21610:7 21612:1 21613:3 21622:2 21627:1 21630:3 21633:1 21642:6 21644:1 21645:1 21650:1 21663:2 21675:1 21684:2 21697:3 21703:3 21718:1 21723:1 21737:1 21741:1 21760:49 21773:12 21774:1 21782:5 21783:1 21784:2 21787:2 21791:1 21794:1 21812:1 21816:1 21830:1 21831:3 21838:1 21844:1 21846:1 21856:1 21868:1 21878:2 21887:3 21904:1 21914:2 21916:8 21922:1 21926:1 21927:1 21943:1 21944:1 21947:1 21948:1 21982:1 21995:3 21996:1 21997:1 21998:1 22006:1 22007:1 22010:1 22015:1 22016:2 22024:1 22027:4 22035:1 22037:1 22041:2 22048:3 22078:1 22080:1 22094:1 22109:1 22119:2 22123:1 22132:1 22142:1 22144:1 22153:1 22163:10 22179:1 22192:1 22208:1 22211:1 22215:1 22218:1 22223:2 22229:2 22233:1 22243:1 22245:9 22247:1 22251:1 22256:1 22263:1 22279:2 22281:1 22315:1 22320:1 22325:3 22328:1 22331:24 22334:1 22340:1 22360:1 22368:1 22376:4 22378:1 22383:1 22388:1 22393:1 22399:1 22410:2 22415:1 22417:1 22423:1 22431:1 22434:4 22437:1 22449:1 22455:1 22460:1 22465:1 22466:3 22472:1 22474:1 22478:1 22481:1 22485:1 22491:1 22493:1 22504:1 22513:1 22517:2 22520:7 22534:3 22538:1 22548:4 22551:5 22552:1 22561:1 22585:1 22587:1 22593:1 22598:1 22601:1 22602:2 22611:9 22617:1 22623:1 22627:1 22644:2 22646:3 22647:1 22655:2 22658:2 22662:1 22669:4 22677:1 22690:5 22699:8 22707:2 22709:1 22715:1 22721:1 22730:1 22734:2 22736:1 22749:3 22755:10 22756:1 22759:6 22760:3 22761:3 22769:1 22779:1 22786:7 22787:1 22795:2 22799:1 22802:1 22803:7 22809:1 22811:1 22812:1 22815:1 22818:1 22820:1 22822:1 22823:1 22828:1 22830:2 22831:3 22846:2 22864:1 22865:1 22866:1 22867:1 22874:3 22876:1 22882:1 22895:1 22902:1 22903:2 22905:2 22914:1 22916:2 22924:1 22931:1 22937:1 22942:1 22948:1 22982:1 23000:3 23001:1 23003:1 23011:1 23027:6 23032:1 23039:1 23064:2 23071:1 23075:1 23076:4 23084:1 23089:11 23109:16 23118:1 23123:1 23125:3 23127:3 23128:1 23143:1 23151:2 23155:1 23166:1 23167:2 23175:1 23185:1 23188:2 23196:2 23198:2 23201:1 23226:1 23237:4 23248:1 23256:1 23262:1 23263:1 23264:1 23284:4 23293:1 23295:1 23298:4 23299:1 23300:4 23305:1 23307:1 23314:6 23316:1 23331:1 23333:1 23335:1 23341:1 23344:5 23349:1 23357:1 23360:3 23361:1 23363:1 23366:1 23378:1 23384:3 23385:2 23386:2 23391:1 23392:1 23393:2 23404:4 23410:1 23413:2 23416:1 23424:2 23430:30 23431:3 23433:2 23435:1 23449:1 23456:2 23466:4 23476:3 23491:1 23496:1 23507:1 23521:1 23524:1 23551:3 23558:1 23586:11 23588:1 23592:2 23603:5 23609:1 23610:9 23616:7 23620:1 23623:2 23626:7 23632:1 23633:1 23646:1 23647:7 23655:4 23659:2 23670:1 23674:1 23676:1 23685:1 23703:1 23711:1 23712:1 23713:1 23719:1 23720:2 23722:1 23723:1 23733:1 23736:1 23739:4 23741:5 23744:1 23751:1 23767:1 23768:1 23775:23 23777:2 23784:1 23787:1 23797:3 23828:1 23835:11 23836:1 23840:1 23847:1 23853:1 23858:8 23862:1 23865:1 23866:13 23869:1 23871:1 23885:2 23891:1 23893:1 23900:1 23923:1 23940:2 23949:2 23950:1 23952:1 23967:1 23971:4 23974:4 23991:1 23993:1 23994:1 24002:1 24003:2 24004:1 24025:1 24034:1 24039:4 24051:1 24054:1 24070:3 24076:1 24081:1 24095:1 24096:3 24100:1 24110:2 24126:5 24128:1 24129:1 24132:1 24137:3 24143:1 24150:1 24151:1 24162:2 24164:1 24168:1 24170:9 24179:1 24213:1 24225:1 24239:1 24251:1 24257:1 24265:2 24266:8 24267:1 24271:1 24274:1 24275:1 24276:1 24280:1 24286:1 24287:1 24292:1 24296:1 24307:3 24314:1 24326:1 24330:3 24332:1 24341:4 24347:1 24350:1 24370:3 24373:1 24385:1 24394:1 24398:1 24401:7 24407:1 24410:1 24411:6 24412:1 24416:1 24423:1 24438:3 24441:1 24463:1 24473:1 24476:7 24477:2 24478:1 24482:1 24483:7 24485:4 24487:4 24503:9 24525:3 24530:6 24536:4 24538:1 24568:1
14 1:1 9:2 30:2 34:1 56:1 59:1 71:1 75:1 96:3 112:3 146:1 157:4 162:1 163:1 185:12 186:9 188:3 196:1 197:2 204:1 209:1 216:1 219:3 223:2 224:1 230:1 233:1 239:1 242:1 243:1 247:1 253:1 254:9 256:1 260:2 265:1 270:1 282:1 295:3 296:11 298:1 308:1 314:1 318:3 320:2 323:1 336:1 339:1 346:2 375:2 376:3 379:1 384:1 396:1 407:4 448:1 450:1 457:12 469:1 501:3 510:1 515:1 524:1 525:1 527:7 541:2 545:2 547:1 565:3 592:2 599:1 607:1 619:1 636:1 649:1 663:1 677:1 693:1 698:1 699:1 704:2 708:6 713:1 714:1 719:1 721:1 724:1 731:1 732:2 748:4 749:1 753:1 759:9 762:1 763:1 764:3 766:2 772:1 777:1 779:1 784:1 785:6 789:2 802:1 811:1 814:7 831:4 833:1 834:4 838:3 851:3 864:3 869:3 875:1 877:1 880:1 881:1 884:2 888:1 889:2 892:3 895:3 900:2 907:2 909:1 911:1 912:1 914:2 922:1 927:1 932:1 933:1 942:1 946:4 949:1 965:2 969:2 976:1 980:2 1000:1 1009:3 1011:2 1021:1 1023:2 1044:1 1045:1 1046:3 1048:1 1051:7 1053:1 1055:1 1059:4 1068:1 1077:1 1094:3 1095:2 1098:1 1110:1 1114:2 1124:1 1125:1 1127:1 1128:1 1134:1 1141:2 1153:2 1155:1 1160:3 1168:1 1171:6 1172:3 1187:3 1204:1 1205:1 1217:1 1220:7 1226:1 1227:1 1229:2 1256:3 1259:8 1264:6 1274:1 1278:1 1285:1 1292:1 1293:2 1297:2 1299:1 1301:1 1316:1 1321:1 1332:5 1344:1 1356:3 1360:3 1369:1 1372:1 1381:5 1392:1 1395:1 1398:1 1401:12 1405:1 1413:1 1424:1 1425:2 1427:1 1428:1 1439:1 1448:2 1452:1 1453:1 1470:1 1507:10 1510:1 1517:6 1526:2 1529:1 1535:1 1536:1 1538:2 1545:2 1546:1 1550:1 1564:5 1570:2 1585:1 1589:2 1591:4 1603:1 1605:1 1608:1 1616:2 1617:3 1621:1 1622:2 1626:2 1627:1 1628:1 1629:2 1640:1 1654:2 1659:1 1673:1 1674:1 1676:1 1683:2 1701:1 1703:1 1710:1 1715:1 1723:1 1727:1 1730:1 1731:9 1737:1 1745:1 1753:1 1754:1 1759:1 1766:12 1770:1 1772:1 1781:3 1785:1 1796:1 1798:1 1809:9 1818:1 1826:5 1829:1 1834:1 1838:3 1842:1 1846:3 1856:9 1863:1 1864:1 1874:3 1876:1 1877:1 1879:1 1880:1 1881:1 1882:2 1883:3 1885:2 1888:1 1891:2 1904:2 1908:1 1910:2 1911:2 1912:4 1929:1 1938:4 1939:1 1941:2 1942:2 1945:12 1947:3 1953:1 1954:6 1955:2 1957:1 1960:1 1961:1 1963:5 1965:3 1968:8 1970:2 1973:2 1976:4 1978:1 1991:1 2000:1 2009:1 2015:1 2020:1 2028:1 2040:2 2041:1 2042:1 2047:1 2049:1 2051:2 2053:1 2061:2 2065:2 2071:2 2076:2 2077:2 2085:1 2112:1 2128:1 2129:1 2131:2 2134:3 2138:1 2149:1 2155:1 2157:1 2164:1 2172:2 2178:2 2183:2 2193:2 2198:1 2208:1 2211:3 2226:4 2229:1 2234:2 2254:1 2274:3 2275:2 2277:1 2286:2 2295:1 2298:1 2303:1 2305:1 2321:6 2323:1 2325:4 2333:1 2349:1 2358:1 2366:5 2372:1 2380:2 2381:2 2383:5 2389:1 2390:9 2394:1 2400:1 2414:1 2419:2 2423:1 2425:1 2426:1 2433:1 2445:2 2448:1 2451:5 2462:58 2464:2 2465:1 2469:1 2470:1 2480:2 2486:1 2504:1 2507:11 2513:2 2519:13 2529:2 2530:2 2538:1 2565:8 2576:2 2587:2 2593:1 2597:4 2609:1 2618:1 2627:5 2638:1 2691:1 2704:1 2706:1 2709:3 2731:3 2736:13 2742:2 2744:1 2746:1 2754:1 2762:1 2770:1 2779:3 2780:3 2785:2 2787:1 2798:2 2801:1 2802:11 2821:1 2826:1 2834:3 2837:1 2844:1 2846:2 2848:5 2849:1 2854:2 2855:2 2879:1 2886:12 2895:1 2901:1 2919:4 2934:1 2936:1 2954:2 2975:1 2979:1 2980:1 2994:1 3002:2 3003:1 3020:4 3027:1 3041:1 3042:1 3049:7 3050:1 3060:1 3061:2 3064:1 3072:1 3076:1 3077:7 3090:1 3098:1 3099:2 3113:1 3116:2 3131:1 3132:1 3133:2 3147:4 3149:1 3153:1 3171:1 3173:1 3174:1 3179:1 3183:1 3184:18 3204:1 3206:2 3213:2 3221:4 3223:1 3225:1 3231:1 3234:8 3245:1 3248:1 3253:1 3256:1 3266:1 3285:1 3287:2 3292:1 3295:3 3297:6 3304:1 3309:1 3310:2 3312:2 3315:1 3316:1 3322:2 3324:1 3326:4 3328:2 3332:1 3342:1 3351:1 3353:1 3369:4 3372:1 3375:1 3379:1 3404:1 3407:2 3408:2 3414:1 3415:1 3416:2 3418:1 3438:2 3462:1 3494:1 3499:1 3518:2 3519:1 3520:1 3522:1 3524:1 3525:1 3531:1 3545:1 3546:2 3547:3 3562:2 3563:1 3572:1 3581:3 3588:3 3598:3 3606:1 3612:1 3615:1 3618:3 3631:1 3641:16 3649:1 3660:1 3667:1 3677:1 3678:3 3679:1 3687:1 3707:1 3712:3 3730:1 3735:1 3738:1 3741:1 3744:1 3766:1 3774:1 3776:1 3783:1 3786:1 3804:1 3831:1 3833:1 3837:5 3841:1 3854:1 3878:1 3886:3 3889:1 3898:1 3907:3 3908:3 3909:3 3915:4 3918:2 3927:1 3938:8 3940:1 3963:4 3964:1 3966:1 3967:1 3976:1 3979:1 3984:2 3991:1 3995:12 3998:12 4005:2 4011:1 4012:1 4026:1 4033:1 4046:2 4051:1 4060:1 4061:2 4062:3 4083:1 4091:2 4093:1 4102:1 4107:20 4108:4 4109:1 4120:2 4125:1 4128:1 4131:1 4136:4 4145:2 4154:1 4163:3 4183:1 4186:1 4190:2 4194:1 4195:1 4198:20 4206:1 4211:3 4212:8 4213:3 4216:3 4218:3 4221:1 4223:1 4224:1 4225:1 4229:2 4234:2 4236:6 4237:3 4238:4 4244:5 4268:1 4298:2 4305:1 4325:1 4332:3 4333:2 4336:1 4340:1 4353:1 4354:1 4368:1 4371:2 4374:2 4375:6 4376:1 4382:1 4399:1 4400:1 4409:1 4413:2 4423:1 4429:1 4432:1 4434:1 4447:3 4460:1 4464:1 4469:1 4471:2 4473:1 4479:1 4497:1 4498:3 4505:1 4512:1 4518:6 4519:3 4525:1 4534:2 4539:1 4541:1 4542:2 4551:1 4566:1 4569:3 4572:2 4581:1 4586:1 4587:2 4592:1 4599:5 4608:1 4609:2 4611:1 4620:1 4621:1 4622:1 4636:1 4647:1 4655:2 4667:1 4668:1 4673:1 4683:2 4684:3 4710:3 4722:1 4724:1 4734:1 4742:1 4744:1 4759:1 4768:1 4773:1 4784:1 4792:1 4793:1 4796:4 4814:3 4818:1 4820:1 4821:2 4822:1 4825:1 4829:1 4832:2 4853:1 4876:2 4889:2 4892:1 4894:4 4901:2 4909:1 4931:1 4963:1 4969:1 4986:2 4993:1 5000:1 5003:2 5016:3 5024:1 5029:1 5037:1 5044:1 5047:4 5049:6 5067:1 5071:5 5072:5 5076:1 5077:1 5088:2 5093:1 5095:1 5100:2 5124:1 5127:1 5146:2 5187:1 5192:1 5201:3 5202:1 5203:1 5224:1 5232:1 5247:3 5248:2 5253:1 5254:1 5258:2 5262:2 5269:1 5283:1 5308:6 5310:1 5313:1 5322:10 5325:6 5326:4 5332:6 5333:3 5337:5 5338:2 5339:2 5340:6 5342:1 5344:3 5347:7 5349:16 5350:1 5352:6 5354:4 5449:2 5451:12 5484:1 5488:1 5492:1 5500:1 5520:2 5529:1 5530:1 5531:1 5533:2 5534:3 5535:2 5540:1 5585:1 5595:1 5599:4 5604:1 5608:1 5610:4 5618:1 5627:1 5640:1 5670:1 5674:1 5681:2 5683:1 5686:4 5687:1 5688:3 5702:11 5703:1 5711:1 5712:1 5719:2 5721:2 5726:1 5730:1 5746:3 5752:1 5774:2 5783:3 5788:2 5807:2 5813:3 5815:2 5828:1 5849:1 5860:2 5865:3 5871:1 5874:3 5878:4 5889:1 5900:1 5931:2 5939:1 5943:1 5947:9 5948:3 5952:1 5968:2 5998:1 6005:3 6017:2 6034:1 6042:1 6044:1 6045:1 6046:1 6047:3 6049:1 6050:1 6056:1 6062:1 6071:1 6079:1 6087:1 6112:3 6116:2 6126:1 6128:1 6130:1 6131:1 6139:2 6145:2 6151:1 6154:1 6175:2 6183:12 6187:1 6194:1 6201:1 6207:1 6235:1 6237:2 6289:1 6293:1 6311:4 6324:1 6352:1 6354:1 6355:3 6364:2 6365:11 6366:1 6373:1 6378:1 6381:2 6382:2 6386:3 6389:1 6402:5 6405:1 6407:2 6409:1 6410:1 6412:1 6416:2 6417:1 6418:1 6422:1 6429:60 6433:1 6434:1 6436:1 6440:1 6448:1 6449:5 6451:8 6459:4 6462:1 6468:1 6475:1 6486:1 6491:1 6492:1 6493:1 6497:1 6510:1 6516:1 6525:1 6526:4 6532:3 6542:1 6554:1 6560:2 6578:1 6587:1 6589:1 6591:1 6597:1 6616:1 6619:2 6643:2 6661:3 6667:1 6669:2 6675:1 6678:2 6685:1 6687:1 6706:2 6707:3 6711:3 6715:1 6716:3 6723:6 6756:1 6769:1 6781:1 6789:1 6791:1 6794:3 6796:2 6802:1 6804:1 6809:1 6810:5 6818:1 6824:5 6827:1 6834:1 6839:4 6843:1 6846:1 6847:1 6854:5 6859:19 6908:5 6911:1 6920:2 6931:1 6934:2 6937:1 6958:1 6981:6 6991:1 7016:1 7021:1 7022:1 7027:2 7033:1 7038:1 7045:1 7047:1 7054:6 7059:2 7068:12 7096:2 7097:1 7104:1 7108:1 7116:1 7122:1 7124:1 7132:1 7137:1 7157:5 7160:1 7163:1 7164:2 7165:1 7166:3 7169:4 7170:2 7177:1 7178:2 7179:1 7181:2 7182:1 7190:1 7194:1 7199:1 7202:1 7215:1 7216:3 7221:1 7235:1 7245:1 7246:3 7251:1 7268:1 7273:1 7285:14 7303:2 7322:1 7333:1 7341:1 7360:1 7361:6 7363:1 7374:1 7377:1 7379:1 7382:2 7391:2 7400:14 7402:2 7409:2 7410:1 7414:1 7418:2 7419:3 7427:2 7430:1 7432:3 7435:2 7438:3 7443:2 7444:1 7445:1 7450:5 7451:1 7456:3 7457:10 7459:2 7460:1 7461:7 7462:1 7464:2 7465:2 7471:1 7478:1 7487:1 7491:1 7499:2 7510:2 7527:1 7533:1 7550:1 7552:1 7553:3 7554:2 7564:2 7571:5 7572:1 7576:1 7581:11 7588:2 7589:1 7605:1 7614:3 7615:1 7622:1 7626:1 7638:1 7648:4 7656:1 7658:4 7670:1 7671:1 7682:2 7686:2 7701:1 7702:1 7709:1 7712:6 7741:1 7742:1 7743:1 7746:1 7750:1 7751:1 7753:4 7754:1 7761:1 7763:1 7765:1 7768:1 7773:14 7778:1 7782:1 7787:4 7799:1 7803:1 7804:2 7810:3 7816:2 7820:3 7841:2 7860:3 7868:2 7872:1 7880:2 7887:4 7894:2 7905:1 7908:1 7912:1 7921:1 7923:2 7929:4 7930:1 7950:3 7964:3 7972:1 7976:1 7979:1 7982:1 7988:9 7999:1 8002:1 8005:1 8023:2 8030:1 8049:1 8065:13 8070:11 8079:1 8080:1 8081:13 8082:10 8099:5 8107:1 8110:1 8140:1 8158:1 8162:5 8171:3 8174:1 8175:4 8176:15 8177:1 8189:2 8195:2 8206:6 8207:3 8216:2 8229:2 8230:1 8234:23 8235:1 8249:2 8256:1 8266:1 8272:2 8279:1 8282:1 8284:1 8285:12 8296:2 8304:2 8311:2 8314:1 8317:1 8318:1 8320:1 8328:6 8332:1 8339:1 8343:1 8348:1 8350:1 8352:8 8355:1 8357:3 8359:4 8361:1 8364:2 8376:1 8383:1 8387:7 8404:2 8428:1 8433:3 8437:2 8443:2 8469:11 8471:1 8472:1 8508:1 8551:1 8553:2 8567:2 8568:2 8574:1 8582:2 8583:1 8593:2 8597:4 8598:8 8603:1 8605:1 8614:1 8617:1 8618:1 8623:1 8630:1 8632:1 8635:1 8637:1 8656:4 8657:1 8669:1 8670:1 8672:2 8681:5 8690:2 8692:1 8693:1 8702:2 8709:1 8711:1 8714:3 8719:1 8726:1 8727:3 8731:2 8736:5 8753:3 8759:9 8761:1 8762:1 8771:1 8773:5 8778:1 8782:3 8783:1 8785:1 8794:1 8795:2 8800:2 8802:11 8809:5 8812:1 8814:8 8822:2 8826:1 8830:1 8831:2 8832:5 8833:5 8836:1 8849:1 8856:1 8878:3 8879:2 8891:11 8900:4 8901:1 8910:5 8911:1 8914:2 8916:8 8937:1 8944:1 8955:1 8968:1 8971:1 8974:2 8979:1 8983:2 8993:1 8996:2 8998:2 8999:1 9000:1 9002:7 9012:1 9014:1 9017:1 9022:1 9027:1 9038:1 9043:1 9058:4 9060:1 9062:2 9063:2 9067:2 9084:1 9093:1 9097:1 9101:13 9102:10 9120:5 9123:3 9127:2 9132:2 9135:1 9138:1 9140:1 9142:2 9149:1 9156:1 9165:1 9166:1 9173:1 9181:2 9183:1 9185:3 9192:1 9210:1 9222:3 9227:1 9239:1 9240:2 9243:1 9252:11 9263:2 9274:1 9313:2 9318:2 9336:1 9338:1 9346:1 9356:1 9363:1 9370:1 9377:4 9392:1 9400:1 9403:8 9419:1 9426:1 9440:3 9441:1 9455:9 9462:2 9465:1 9466:1 9488:8 9495:1 9497:1 9524:1 9525:1 9532:14 9536:3 9547:1 9550:4 9562:2 9563:3 9565:2 9575:2 9590:2 9596:1 9599:1 9607:1 9611:1 9619:1 9622:2 9624:1 9625:1 9645:1 9653:1 9656:2 9681:1 9682:6 9683:1 9688:2 9690:1 9691:1 9697:1 9698:1 9700:1 9710:2 9716:2 9723:4 9729:2 9738:2 9743:1 9745:1 9756:1 9772:2 9810:4 9818:1 9823:5 9824:1 9850:1 9859:3 9867:1 9877:1 9878:4 9881:1 9884:1 9890:1 9891:1 9900:1 9918:3 9922:1 9923:1 9924:6 9941:2 9944:1 9946:1 9949:1 9950:1 9951:1 9958:1 9961:1 9963:1 9974:1 9999:1 10021:1 10022:3 10037:1 10040:2 10042:2 10045:1 10046:1 10052:2 10053:4 10054:4 10067:1 10070:1 10073:1 10074:4 10090:7 10117:1 10126:1 10169:5 10172:1 10176:1 10196:1 10198:1 10204:1 10211:1 10217:2 10218:7 10220:1 10232:1 10247:1 10254:1 10278:6 10287:1 10311:1 10316:2 10318:3 10319:1 10324:1 10329:1 10353:1 10355:1 10360:2 10369:1 10370:2 10384:12 10406:1 10457:2 10465:1 10480:47 10487:1 10502:1 10503:6 10524:1 10530:1 10531:4 10537:1 10539:1 10540:4 10543:1 10551:1 10554:3 10576:2 10587:1 10589:1 10593:1 10597:1 10598:6 10600:3 10617:2 10635:1 10648:2 10651:8 10654:1 10659:1 10667:1 10668:1 10701:1 10707:1 10713:1 10719:1 10722:1 10725:3 10757:1 10758:1 10761:1 10772:1 10792:1 10809:1 10815:1 10818:1 10823:2 10837:1 10843:1 10846:2 10847:16 10851:4 10862:1 10871:4 10872:2 10879:1 10887:2 10892:1 10897:2 10898:3 10912:2 10922:1 10924:1 10951:2 10952:1 10953:1 10961:4 10962:2 10970:2 10974:10 10979:2 10981:1 10985:4 10987:2 10993:3 11009:1 11013:1 11014:1 11016:1 11019:1 11030:1 11036:1 11046:8 11047:9 11050:1 11056:2 11062:1 11080:1 11087:1 11103:4 11118:2 11126:1 11155:3 11159:2 11163:4 11168:3 11173:3 11186:2 11187:6 11188:1 11201:1 11211:3 11215:8 11223:4 11235:3 11245:1 11266:1 11273:5 11280:3 11283:1 11284:2 11286:1 11297:1 11301:1 11325:3 11329:1 11337:6 11341:1 11344:1 11345:1 11346:1 11347:1 11348:1 11349:2 11352:2 11353:1 11368:5 11375:5 11394:1 11400:2 11405:2 11408:1 11415:1 11430:12 11447:4 11449:3 11451:2 11459:4 11463:2 11479:1 11486:1 11497:1 11507:1 11509:3 11526:2 11540:1 11584:4 11600:1 11606:1 11607:1 11609:1 11632:1 11638:5 11640:3 11643:1 11653:1 11655:1 11690:1 11705:1 11708:2 11712:5 11717:1 11727:1 11739:2 11742:2 11747:1 11757:1 11759:1 11790:1 11792:1 11800:1 11801:4 11807:1 11812:3 11813:2 11818:1 11823:1 11830:1 11832:1 11833:1 11834:1 11843:1 11853:1 11856:1 11857:2 11864:4 11874:1 11876:1 11881:1 11883:3 11900:1 11906:2 11932:1 11937:1 11949:1 11960:2 11966:2 11974:2 11976:2 11979:1 11984:1 11985:1 11990:1 11992:1 11994:1 11998:2 12001:1 12033:1 12038:1 12050:5 12065:1 12076:3 12078:1 12084:2 12092:1 12095:1 12097:2 12099:5 12114:3 12115:1 12118:1 12126:1 12129:1 12131:1 12144:3 12145:1 12146:3 12149:1 12178:1 12181:1 12182:2 12184:1 12197:1 12218:3 12227:1 12229:1 12245:1 12276:4 12287:2 12289:1 12323:1 12328:1 12337:1 12338:1 12346:9 12364:2 12365:2 12366:2 12372:1 12375:1 12381:7 12387:2 12390:2 12396:1 12416:1 12425:1 12427:2 12432:1 12440:1 12444:1 12452:2 12456:1 12468:1 12483:1 12486:2 12488:2 12490:2 12491:1 12512:1 12542:1 12555:1 12556:5 12573:1 12575:3 12582:1 12583:2 12584:1 12585:1 12586:1 12594:1 12614:12 12623:2 12627:2 12635:2 12641:1 12643:1 12652:3 12661:1 12662:6 12672:2 12683:1 12685:1 12698:2 12716:2 12723:5 12739:2 12740:2 12741:6 12746:1 12748:2 12754:1 12774:1 12792:1 12797:3 12798:4 12800:5 12801:1 12822:2 12837:1 12839:2 12842:1 12843:1 12846:2 12874:1 12881:2 12898:1 12930:1 12942:3 12943:1 12944:1 12945:2 12946:1 12950:5 12954:2 12961:2 12971:1 12980:1 12985:2 12988:7 12989:3 13013:1 13014:3 13025:1 13032:1 13033:2 13037:1 13058:2 13062:1 13072:2 13082:1 13094:1 13104:3 13125:2 13128:1 13140:4 13142:2 13153:10 13156:1 13159:1 13171:1 13181:1 13187:1 13205:1 13206:1 13207:9 13212:1 13225:4 13229:1 13238:2 13258:1 13259:1 13267:1 13288:1 13295:4 13301:1 13304:1 13311:3 13324:2 13328:18 13333:3 13334:1 13336:1 13342:2 13344:1 13345:1 13347:1 13350:1 13362:1 13390:8 13393:1 13406:1 13410:1 13417:1 13428:2 13431:1 13434:2 13435:1 13437:1 13445:3 13446:1 13449:3 13452:2 13453:2 13454:1 13459:1 13462:1 13466:1 13470:1 13471:1 13476:1 13482:1 13489:3 13502:1 13505:2 13523:1 13525:3 13535:1 13542:1 13560:1 13561:1 13562:1 13590:1 13593:2 13607:1 13614:1 13615:1 13620:1 13623:1 13637:5 13640:1 13644:1 13647:3 13651:1 13662:5 13664:2 13665:1 13668:1 13671:1 13680:5 13682:2 13688:3 13689:1 13703:2 13707:1 13708:1 13718:1 13719:5 13729:1 13732:1 13733:2 13740:1 13760:1 13765:5 13766:1 13778:2 13780:1 13803:9 13807:4 13819:13 13823:2 13835:6 13857:1 13858:1 13865:2 13871:2 13876:1 13888:4 13895:3 13901:1 13907:2 13908:2 13926:1 13928:5 13929:1 13931:3 13936:1 13947:1 13953:1 13970:3 13979:4 13986:1 13989:4 13994:4 13995:1 13996:2 14000:1 14007:2 14024:3 14026:3 14030:1 14031:3 14035:2 14041:1 14050:3 14051:12 14055:1 14062:1 14070:1 14071:2 14072:1 14073:1 14077:3 14088:1 14097:4 14114:1 14119:4 14127:2 14130:1 14137:1 14143:1 14165:1 14167:1 14178:13 14181:2 14202:1 14204:2 14207:1 14218:1 14227:1 14229:6 14231:2 14252:2 14262:1 14264:1 14265:2 14279:1 14286:1 14288:1 14300:2 14302:1 14305:1 14317:1 14329:2 14332:3 14333:2 14334:1 14341:1 14365:4 14366:12 14371:5 14380:1 14381:1 14382:13 14383:4 14385:1 14386:1 14387:2 14391:2 14395:3 14403:1 14404:1 14417:1 14422:2 14434:1 14443:2 14465:2 14475:1 14476:12 14477:3 14496:12 14503:1 14513:1 14516:13 14522:1 14541:1 14544:1 14549:1 14553:1 14555:1 14556:1 14558:1 14564:1 14568:1 14576:2 14577:2 14582:2 14583:1 14595:1 14596:2 14610:2 14622:1 14630:4 14635:3 14638:1 14648:1 14649:1 14650:2 14654:1 14657:2 14665:2 14672:3 14674:1 14677:11 14678:4 14691:3 14696:1 14711:1 14717:1 14719:6 14727:1 14734:1 14740:8 14744:1 14747:10 14751:1 14762:8 14763:1 14764:1 14765:3 14768:1 14774:1 14776:3 14785:6 14792:1 14802:1 14804:4 14807:1 14810:1 14824:1 14837:7 14844:2 14849:2 14851:1 14853:1 14856:1 14864:5 14871:1 14877:1 14882:2 14885:6 14903:1 14914:1 14919:1 14934:2 14938:2 14946:4 14956:2 14962:1 14976:1 14981:2 14982:3 14987:1 14991:1 15002:1 15011:1 15015:1 15030:2 15035:2 15040:2 15067:1 15073:1 15080:2 15087:1 15089:1 15090:2 15097:2 15098:1 15100:2 15105:2 15107:1 15111:1 15123:3 15133:1 15134:12 15135:1 15137:9 15142:1 15144:1 15160:3 15164:1 15166:1 15169:1 15171:3 15183:2 15184:6 15196:1 15197:1 15201:4 15205:13 15233:2 15234:1 15240:1 15251:2 15269:6 15282:6 15283:1 15287:1 15303:1 15307:51 15312:6 15322:1 15326:1 15344:3 15354:2 15360:1 15371:4 15374:1 15384:1 15396:6 15405:10 15409:1 15423:1 15424:1 15436:1 15438:1 15444:1 15445:2 15452:2 15453:1 15460:3 15469:1 15480:2636 15483:2 15492:2 15496:1 15507:1 15508:2 15510:1 15518:1 15524:1 15554:1 15556:2 15560:1 15568:1 15570:2 15574:1 15591:1 15595:1 15599:2 15601:1 15610:4 15617:5 15623:1 15625:2 15638:4 15639:5 15641:1 15642:2 15645:1 15646:2 15647:1 15649:7 15652:1 15655:7 15656:1 15658:2 15661:1 15662:9 15678:2 15684:1 15723:1 15738:1 15739:1 15742:2 15743:1 15763:4 15773:2 15776:15 15790:1 15793:1 15800:1 15814:1 15816:2 15840:1 15847:1 15853:1 15855:1 15866:2 15869:1 15871:2 15875:1 15884:1 15896:2 15927:2 15929:4 15935:2 15938:1 15943:1 15949:7 15955:1 15957:1 15960:1 15961:1 15966:3 15984:1 15994:1 15997:7 16008:1 16019:1 16036:1 16042:8 16043:3 16046:1 16051:1 16052:1 16054:8 16056:1 16059:2 16064:1 16074:3 16077:3 16078:1 16079:1 16094:1 16102:3 16103:1 16111:1 16112:1 16115:6 16118:1 16121:10 16139:1 16147:1 16151:2 16152:9 16154:12 16161:1 16171:1 16177:2 16179:1 16187:1 16206:2 16228:1 16239:2 16254:1 16262:3 16267:1 16268:4 16270:1 16271:1 16273:2 16274:2 16277:1 16283:2 16287:1 16296:1 16300:1 16302:3 16306:2 16308:1 16309:1 16310:1 16313:1 16318:1 16337:1 16341:1 16358:1 16370:3 16372:1 16376:1 16387:6 16402:1 16409:4 16412:2 16413:1 16426:1 16428:1 16438:1 16458:1 16474:1 16479:1 16484:8 16485:5 16488:1 16490:2 16495:3 16500:5 16503:2 16506:1 16509:2 16514:1 16534:2 16547:1 16548:1 16557:1 16577:2 16593:4 16603:1 16605:1 16611:2 16620:1 16623:1 16625:1 16630:3 16633:1 16637:1 16643:1 16652:3 16654:3 16659:1 16665:1 16670:1 16673:1 16679:1 16681:10 16682:1 16693:1 16712:1 16718:3 16726:5 16727:1 16729:1 16732:1 16733:1 16735:2 16743:2 16744:5 16753:7 16754:1 16761:1 16763:1 16775:1 16777:1 16778:2 16780:1 16787:2 16792:1 16794:2 16809:1 16815:6 16817:1 16842:1 16853:1 16855:2 16861:5 16862:2 16867:6 16871:1 16875:1 16882:1 16895:1 16897:2 16908:1 16919:1 16921:10 16928:1 16946:2 16964:1 16965:2 16970:1 16971:1 16975:1 16984:1 17001:4 17011:1 17013:1 17030:2 17037:1 17043:2 17046:1 17048:1 17057:2 17058:1 17066:2 17082:1 17083:1 17085:2 17090:1 17107:1 17113:2 17123:1 17131:1 17136:8 17137:4 17166:1 17174:1 17175:1 17176:1 17181:1 17185:1 17187:1 17188:1 17221:3 17237:7 17246:2 17248:1 17253:1 17269:2 17275:8 17276:7 17286:1 17288:1 17296:1 17298:1 17301:1 17303:1 17311:3 17316:2 17320:1 17331:4 17335:1 17343:1 17346:2 17347:1 17348:1 17357:1 17362:8 17363:2 17366:2 17367:1 17368:1 17386:2 17387:12 17403:1 17404:1 17424:4 17436:1 17440:1 17470:1 17485:5 17491:3 17492:1 17499:1 17515:1 17520:1 17523:1 17553:3 17559:1 17563:1 17569:1 17575:1 17580:1 17602:2 17605:2 17608:1 17616:2 17620:1 17622:1 17623:5 17626:1 17631:4 17641:1 17645:1 17649:1 17658:1 17660:1 17668:1 17678:12 17689:1 17706:2 17712:2 17724:3 17725:2 17730:1 17735:3 17739:1 17742:2 17743:1 17768:1 17772:2 17774:3 17775:1 17788:2 17792:3 17795:1 17808:1 17822:1 17824:1 17826:1 17827:1 17834:3 17835:1 17838:3 17839:1 17852:3 17853:2 17855:6 17857:1 17859:1 17862:2 17865:1 17886:2 17890:1 17900:1 17906:1 17908:1 17910:1 17915:2 17916:13 17919:1 17921:3 17922:1 17924:2 17925:1 17927:4 17943:3 17955:4 17956:2 17958:4 17962:2 17969:1 17975:1 17978:1 17979:1 17980:2 17983:4 17994:1 17995:5 18009:4 18016:1 18025:2 18028:1 18035:2 18037:1 18038:2 18041:2 18042:1 18043:9 18053:7 18058:1 18064:1 18068:3 18069:1 18073:1 18079:1 18088:1 18092:3 18093:10 18116:1 18130:2 18146:1 18159:1 18165:1 18166:5 18168:5 18174:3 18177:1 18181:1 18189:1 18193:1 18197:2 18201:1 18208:5 18209:1 18210:2 18215:1 18237:1 18247:2 18248:2 18249:1 18266:1 18282:1 18313:2 18320:1 18339:2 18356:1 18357:1 18358:1 18360:2 18366:2 18367:2 18369:3 18370:2 18375:6 18378:2 18379:1 18397:1 18406:3 18409:1 18410:4 18414:3 18423:1 18436:1 18447:1 18454:1 18468:1 18469:2 18474:3 18478:1 18479:3 18482:1 18485:4 18491:2 18498:2 18504:1 18509:1 18511:3 18513:1 18523:1 18537:1 18539:2 18554:1 18555:1 18567:2 18568:1 18570:1 18572:1 18578:2 18580:1 18585:1 18587:1 18600:2 18602:1 18616:3 18617:1 18623:1 18629:1 18631:1 18645:1 18654:2 18661:1 18664:1 18665:1 18674:2 18700:1 18702:6 18704:1 18727:4 18732:13 18736:1 18742:2 18747:1 18748:1 18750:1 18754:1 18755:1 18768:1 18784:1 18792:3 18800:2 18805:1 18816:2 18821:1 18828:1 18849:1 18856:8 18857:2 18862:9 18867:1 18880:1 18881:5 18882:1 18884:1 18886:1 18901:2 18904:1 18905:1 18916:1 18929:1 18930:3 18931:4 18934:1 18938:2 18941:6 18949:1 18974:1 18980:1 19001:1 19011:1 19024:2 19033:4 19043:1 19048:1 19056:3 19059:1 19060:2 19076:1 19080:2 19085:2 19098:3 19108:10 19126:2 19134:4 19136:3 19139:1 19145:1 19146:1 19148:1 19150:1 19153:4 19172:1 19183:2 19193:3 19205:3 19207:5 19210:12 19226:4 19230:1 19237:1 19249:1 19250:1 19258:1 19263:1 19267:1 19275:2 19292:9 19293:1 19294:1 19302:4 19303:1 19322:1 19328:3 19331:1 19335:1 19337:5 19339:2 19354:1 19359:1 19365:1 19368:1 19373:3 19374:1 19386:1 19391:1 19392:2 19395:2 19402:1 19412:1 19416:1 19422:1 19425:2 19438:3 19440:1 19443:6 19446:1 19453:1 19461:1 19469:1 19471:3 19475:1 19480:1 19486:2 19487:12 19490:1 19507:1 19508:2 19517:1 19522:1 19532:1 19544:6 19559:4 19561:1 19562:1 19564:1 19570:1 19575:1 19586:1 19587:1 19603:1 19606:1 19610:1 19612:1 19613:1 19637:1 19638:1 19644:2 19645:1 19657:2 19678:1 19683:1 19702:1 19706:1 19710:1 19714:1 19716:2 19730:2 19745:1 19753:1 19755:1 19757:3 19758:1 19762:8 19767:1 19773:1 19787:1 19789:1 19792:1 19804:1 19805:3 19810:6 19813:2 19837:1 19844:1 19847:1 19849:1 19886:1 19897:6 19901:1 19902:2 19909:1 19912:2 19924:1 19925:1 19928:3 19962:1 19966:2 19972:1 19974:1 19992:1 20000:1 20003:1 20004:1 20015:2 20034:1 20040:6 20069:1 20072:1 20080:6 20083:1 20084:6 20096:2 20098:1 20099:1 20103:2 20108:1 20109:6 20111:1 20118:1 20128:1 20137:1 20138:1 20152:1 20155:1 20159:1 20165:1 20180:1 20198:1 20208:1 20218:1 20223:1 20224:1 20226:2 20227:2 20235:1 20239:1 20241:1 20247:2 20251:1 20252:2 20253:1 20258:2 20261:1 20266:1 20267:1 20268:1 20270:4 20275:1 20278:1 20293:1 20304:1 20316:2 20317:3 20318:12 20319:2 20320:1 20326:3 20327:4 20331:3 20332:4 20333:1 20334:5 20336:1 20337:6 20338:3 20341:2 20343:10 20344:7 20350:1 20353:1 20356:1 20371:1 20373:1 20378:5 20380:1 20383:3 20391:1 20397:2 20398:12 20399:3 20406:1 20411:2 20413:1 20424:1 20435:1 20436:1 20440:1 20441:2 20442:11 20447:11 20448:5 20464:1 20469:3 20470:1 20485:1 20496:3 20502:3 20505:1 20510:1 20512:4 20529:2 20545:1 20552:1 20560:1 20576:6 20595:4 20596:1 20611:1 20614:1 20616:1 20619:1 20620:1 20621:2 20627:1 20629:2 20631:12 20634:1 20641:1 20653:1 20659:1 20668:5 20686:1 20694:1 20696:1 20717:1 20718:2 20727:1 20733:1 20738:3 20740:1 20742:11 20745:1 20760:1 20761:12 20762:1 20769:2 20785:14 20787:1 20805:1 20812:1 20818:1 20829:8 20831:1 20846:1 20850:2 20853:1 20871:1 20872:3 20873:1 20874:1 20875:1 20877:1 20887:2 20890:2 20928:1 20930:1 20936:1 20949:13 20962:9 20973:2 20995:1 21007:1 21011:1 21012:2 21013:1 21017:1 21021:3 21033:1 21056:1 21062:3 21065:3 21074:1 21077:1 21079:1 21089:1 21099:2 21100:2 21107:2 21108:7 21111:1 21112:2 21113:1 21123:2 21133:1 21134:4 21138:1 21139:1 21146:2 21150:6 21163:1 21173:1 21176:1 21198:10 21199:5 21208:2 21209:5 21218:2 21219:1 21224:1 21225:2 21227:2 21228:1 21245:1 21249:1 21258:2 21266:1 21293:5 21306:1 21312:1 21327:1 21337:5 21349:1 21350:1 21353:1 21359:1 21361:4 21380:1 21400:1 21402:1 21410:1 21430:2 21434:2 21457:1 21473:1 21480:1 21482:1 21485:2 21486:1 21490:2 21508:1 21515:1 21520:1 21529:4 21539:4 21543:1 21546:1 21556:1 21557:5 21561:4 21567:1 21571:1 21575:1 21581:2 21582:3 21584:1 21586:1 21588:1 21595:1 21602:2 21610:7 21612:1 21613:3 21622:2 21627:1 21630:3 21633:1 21642:6 21644:1 21645:1 21650:1 21663:2 21675:1 21684:2 21686:1 21697:3 21703:4 21718:1 21723:1 21737:1 21741:1 21760:51 21773:13 21774:1 21782:5 21783:1 21784:2 21787:2 21791:1 21794:1 21812:1 21816:1 21830:1 21831:3 21838:1 21844:1 21846:1 21856:1 21863:1 21868:1 21878:2 21887:3 21904:1 21914:2 21916:8 21917:1 21922:1 21926:1 21927:1 21943:1 21944:1 21947:1 21948:1 21982:1 21995:3 21996:1 21997:1 21998:1 22002:1 22006:1 22007:1 22010:2 22015:1 22016:2 22024:1 22027:4 22035:1 22037:1 22041:2 22048:3 22078:1 22080:1 22094:1 22109:1 22119:2 22123:1 22132:1 22142:1 22144:1 22153:1 22163:10 22179:1 22192:1 22208:1 22211:1 22215:1 22218:1 22223:2 22229:2 22233:1 22243:1 22245:9 22247:1 22251:1 22256:1 22263:1 22279:2 22281:1 22315:1 22320:1 22325:3 22328:1 22331:24 22334:1 22340:1 22360:1 22368:1 22376:4 22378:1 22383:1 22388:1 22393:1 22399:1 22410:2 22415:1 22417:1 22423:1 22431:1 22434:4 22437:1 22449:1 22455:1 22460:1 22465:1 22466:3 22472:1 22474:1 22478:1 22481:1 22485:1 22491:1 22493:1 22504:1 22513:1 22517:3 22520:7 22534:3 22538:1 22548:4 22551:5 22552:1 22561:1 22585:1 22587:1 22593:1 22598:1 22601:1 22602:2 22611:9 22617:1 22623:1 22627:1 22644:3 22646:3 22647:1 22655:2 22658:2 22662:1 22669:4 22677:1 22690:5 22699:8 22707:2 22709:1 22715:1 22721:1 22730:1 22734:2 22736:1 22749:3 22755:10 22756:1 22759:6 22760:4 22761:3 22769:1 22779:1 22786:7 22787:1 22795:2 22799:1 22802:1 22803:8 22809:1 22811:1 22812:1 22815:1 22818:1 22820:1 22822:1 22823:1 22828:1 22830:2 22831:3 22846:2 22864:1 22865:1 22866:1 22867:1 22874:3 22876:1 22882:1 22895:1 22902:1 22903:2 22905:2 22914:1 22916:2 22924:1 22927:1 22931:1 22937:1 22942:1 22948:1 22982:1 23000:3 23001:1 23003:1 23011:1 23027:6 23032:1 23039:1 23064:2 23071:1 23075:1 23076:4 23084:1 23089:11 23109:16 23118:1 23123:1 23125:3 23127:4 23128:1 23137:1 23143:1 23151:2 23155:1 23166:1 23167:2 23175:1 23185:1 23188:2 23196:2 23198:2 23201:1 23226:1 23237:4 23248:1 23256:1 23262:1 23263:1 23264:1 23284:4 23293:1 23295:1 23298:5 23299:1 23300:4 23305:1 23307:1 23314:6 23316:1 23331:1 23333:1 23335:1 23341:1 23344:5 23349:1 23357:1 23360:4 23361:1 23363:1 23366:1 23378:1 23384:3 23385:2 23386:2 23391:1 23392:1 23393:2 23404:4 23410:1 23413:2 23416:1 23424:2 23430:30 23431:3 23433:2 23435:1 23449:1 23456:2 23466:5 23476:3 23491:1 23496:1 23507:1 23521:1 23524:1 23551:3 23558:1 23586:11 23588:1 23592:2 23603:5 23609:1 23610:9 23616:8 23620:1 23623:2 23626:8 23632:1 23633:1 23646:1 23647:7 23655:4 23659:2 23670:1 23674:1 23676:1 23685:1 23688:1 23703:1 23711:1 23712:1 23713:1 23719:1 23720:2 23722:1 23723:1 23733:1 23736:1 23739:4 23741:5 23744:1 23751:1 23767:1 23768:1 23775:23 23777:2 23784:1 23787:1 23797:3 23828:1 23835:12 23836:1 23840:1 23847:1 23853:1 23858:8 23862:1 23865:1 23866:13 23869:1 23871:1 23885:2 23891:1 23893:1 23900:1 23923:1 23940:2 23949:2 23950:1 23952:1 23967:1 23971:4 23974:4 23991:1 23993:1 23994:1 24002:1 24003:2 24004:1 24025:1 24034:1 24039:4 24051:1 24054:1 24070:4 24076:1 24081:1 24095:1 24096:3 24100:1 24110:2 24126:5 24128:1 24129:1 24132:1 24137:3 24143:1 24150:1 24151:1 24162:2 24164:1 24168:1 24170:9 24179:1 24213:1 24225:1 24239:1 24251:1 24257:1 24265:2 24266:8 24267:1 24271:1 24274:1 24275:1 24276:1 24280:1 24286:1 24287:1 24292:1 24296:1 24307:3 24314:1 24326:1 24330:3 24332:1 24341:4 24347:1 24350:1 24370:3 24373:1 24385:1 24394:1 24398:1 24401:7 24407:1 24410:1 24411:6 24412:1 24416:1 24423:1 24438:3 24441:1 24463:1 24473:1 24476:7 24477:2 24478:1 24482:1 24483:7 24485:4 24487:4 24503:9 24525:3 24530:6 24536:4 24538:1 24568:1
14 1:1 9:2 30:2 34:1 56:1 59:1 71:1 75:1 96:3 112:3 146:1 157:4 162:1 163:1 185:12 186:10 188:3 196:1 197:2 204:1 209:1 216:1 219:3 223:2 224:2 230:1 233:1 239:1 242:1 243:1 247:1 253:1 254:9 256:1 260:2 265:1 270:1 282:1 295:3 296:11 298:1 308:1 309:1 314:1 318:3 320:2 323:1 336:1 339:1 346:2 375:3 376:3 379:1 384:1 396:1 407:4 448:1 450:2 457:13 469:1 501:3 510:1 515:1 524:1 525:1 527:7 533:1 541:2 545:2 547:1 565:3 592:2 599:1 607:1 619:1 636:1 649:1 663:1 677:1 693:1 698:1 699:1 704:2 708:7 713:1 714:1 719:1 721:1 724:1 731:1 732:2 742:1 748:4 749:1 753:1 759:9 762:1 763:1 764:3 766:2 772:1 777:1 779:1 784:1 785:6 789:2 802:1 811:1 814:7 831:4 833:1 834:5 838:3 851:3 864:3 869:3 875:1 877:1 880:1 881:1 884:2 888:1 889:2 892:3 895:3 900:2 907:2 909:1 911:1 912:1 914:2 922:1 927:1 932:1 933:1 937:2 942:1 946:4 949:1 965:2 969:2 976:1 980:2 1000:1 1009:3 1011:2 1015:1 1021:1 1023:2 1039:1 1044:1 1045:1 1046:3 1048:1 1051:8 1053:1 1055:1 1059:4 1068:1 1077:1 1094:3 1095:2 1098:1 1110:1 1114:2 1124:1 1125:1 1127:1 1128:1 1134:1 1141:2 1153:2 1155:1 1160:3 1168:1 1171:6 1172:3 1187:3 1204:1 1205:1 1217:2 1220:7 1226:1 1227:1 1229:2 1256:3 1259:8 1264:6 1274:1 1278:1 1285:1 1292:1 1293:2 1297:2 1299:1 1301:1 1316:1 1321:1 1332:5 1344:1 1356:3 1360:3 1369:1 1372:1 1381:5 1392:1 1395:1 1398:1 1401:12 1405:1 1413:1 1420:1 1424:1 1425:2 1427:1 1428:1 1439:1 1448:2 1452:1 1453:1 1470:1 1507:10 1510:1 1517:6 1526:2 1529:1 1535:1 1536:1 1538:2 1545:2 1546:1 1550:1 1564:5 1570:2 1585:1 1589:2 1591:5 1603:1 1605:1 1608:1 1616:2 1617:3 1621:1 1622:2 1626:2 1627:1 1628:1 1629:2 1640:1 1654:2 1659:1 1673:2 1674:1 1676:1 1683:2 1701:1 1703:1 1710:1 1715:1 1723:1 1727:1 1730:1 1731:9 1737:1 1745:1 1753:1 1754:1 1759:1 1766:14 1770:1 1772:1 1781:3 1785:1 1796:1 1798:1 1809:9 1818:1 1826:5 1829:1 1834:1 1838:3 1842:1 1846:3 1856:9 1863:1 1864:1 1874:3 1876:1 1877:1 1879:1 1880:1 1881:1 1882:2 1883:3 1885:2 1888:1 1891:2 1904:2 1908:1 1910:2 1911:2 1912:4 1929:1 1938:4 1939:1 1941:2 1942:2 1945:12 1947:4 1953:1 1954:7 1955:2 1957:1 1960:1 1961:1 1963:5 1965:4 1968:8 1970:2 1973:2 1976:4 1978:1 1991:1 2000:1 2009:1 2015:1 2020:1 2028:1 2040:2 2041:1 2042:1 2047:1 2049:1 2051:2 2053:1 2061:2 2065:2 2071:2 2076:2 2077:2 2085:1 2112:1 2128:1 2129:1 2131:2 2134:3 2138:1 2149:1 2155:1 2157:1 2164:1 2172:2 2178:2 2181:1 2183:2 2193:2 2198:1 2208:1 2211:3 2226:4 2229:1 2234:2 2252:1 2254:1 2274:3 2275:2 2277:1 2286:2 2295:1 2298:1 2303:1 2305:1 2321:6 2323:1 2325:4 2333:1 2349:1 2358:1 2366:5 2372:1 2380:2 2381:2 2383:5 2389:1 2390:9 2394:1 2400:1 2414:1 2419:2 2423:1 2425:1 2426:1 2433:1 2445:2 2448:1 2451:5 2462:59 2464:2 2465:1 2469:1 2470:1 2480:2 2486:1 2504:1 2507:11 2513:2 2519:14 2529:2 2530:2 2538:1 2565:8 2576:2 2587:2 2593:2 2597:4 2598:1 2609:1 2618:1 2627:5 2638:1 2691:1 2704:1 2706:1 2709:3 2731:3 2736:13 2742:2 2744:1 2746:1 2754:1 2762:1 2770:1 2779:3 2780:3 2785:2 2787:1 2794:1 2798:3 2801:1 2802:12 2821:1 2826:1 2834:3 2837:1 2844:1 2846:2 2848:5 2849:1 2854:2 2855:2 2879:1 2886:12 2895:1 2901:1 2919:4 2934:1 2936:1 2954:2 2975:1 2979:1 2980:1 2994:1 3002:2 3003:1 3020:4 3027:1 3041:1 3042:1 3049:7 3050:1 3060:1 3061:2 3064:1 3072:1 3076:1 3077:7 3090:1 3098:1 3099:2 3113:1 3116:2 3131:1 3132:1 3133:2 3147:5 3149:1 3153:1 3171:1 3173:1 3174:1 3179:1 3183:1 3184:18 3204:1 3206:2 3213:2 3221:4 3223:1 3225:1 3231:1 3234:8 3245:1 3248:1 3253:2 3256:1 3259:1 3266:1 3285:1 3287:2 3292:1 3295:3 3297:6 3304:1 3309:1 3310:2 3312:2 3315:1 3316:1 3322:2 3324:1 3326:4 3328:2 3332:1 3342:1 3351:1 3353:1 3369:4 3372:1 3375:1 3379:1 3397:1 3404:1 3407:2 3408:2 3414:1 3415:1 3416:3 3418:1 3438:2 3462:1 3494:1 3499:1 3518:2 3519:1 3520:1 3522:1 3524:1 3525:1 3531:1 3545:1 3546:2 3547:3 3562:2 3563:1 3572:1 3581:3 3588:3 3598:3 3606:1 3612:1 3615:1 3618:3 3631:1 3641:16 3649:1 3660:1 3667:1 3677:1 3678:3 3679:1 3687:1 3707:1 3712:3 3730:1 3735:1 3738:1 3741:1 3744:1 3766:1 3774:1 3776:1 3783:1 3786:1 3804:1 3831:1 3833:1 3835:1 3837:5 3841:1 3854:2 3878:2 3886:3 3889:1 3898:1 3907:3 3908:3 3909:3 3915:4 3918:2 3927:1 3938:8 3940:1 3963:4 3964:1 3966:1 3967:1 3976:1 3979:1 3984:2 3991:1 3995:12 3998:12 4005:2 4011:1 4012:1 4026:1 4033:1 4046:2 4051:1 4060:1 4061:2 4062:3 4083:1 4091:2 4093:1 4102:1 4107:21 4108:4 4109:1 4120:3 4125:1 4128:1 4131:1 4136:4 4145:2 4154:1 4163:3 4169:1 4183:1 4186:1 4190:2 4194:1 4195:1 4198:21 4206:1 4211:4 4212:8 4213:3 4216:4 4218:3 4221:1 4223:1 4224:1 4225:1 4229:2 4234:2 4236:6 4237:3 4238:4 4244:5 4268:1 4298:2 4305:1 4325:1 4332:3 4333:2 4336:1 4340:1 4353:1 4354:1 4368:1 4371:2 4374:2 4375:6 4376:1 4382:1 4399:1 4400:1 4409:1 4413:2 4423:1 4429:1 4432:1 4434:1 4447:3 4460:1 4464:1 4469:1 4471:2 4473:1 4479:1 4497:1 4498:3 4505:1 4512:1 4518:6 4519:3 4525:1 4534:2 4539:1 4541:1 4542:2 4551:1 4566:1 4569:3 4572:2 4581:2 4586:1 4587:2 4592:1 4599:5 4608:1 4609:2 4611:1 4620:1 4621:1 4622:1 4636:1 4647:1 4655:2 4667:2 4668:1 4673:1 4683:2 4684:3 4710:3 4722:1 4724:1 4734:1 4742:1 4744:1 4759:1 4768:1 4773:1 4784:1 4792:1 4793:1 4796:4 4814:3 4818:1 4820:1 4821:2 4822:1 4825:1 4829:1 4832:2 4853:1 4876:2 4889:2 4892:1 4894:4 4901:2 4909:1 4931:1 4963:1 4969:1 4986:2 4993:1 5000:1 5003:2 5008:1 5016:3 5024:1 5029:1 5037:1 5044:1 5047:4 5049:6 5056:1 5067:1 5071:5 5072:5 5076:1 5077:1 5088:2 5093:1 5095:1 5100:2 5124:1 5127:1 5146:2 5187:1 5192:1 5201:3 5202:1 5203:1 5224:1 5232:1 5247:3 5248:2 5253:1 5254:1 5258:2 5262:2 5269:1 5280:1 5283:1 5308:6 5310:1 5313:1 5322:10 5325:6 5326:4 5330:1 5332:6 5333:3 5337:5 5338:2 5339:2 5340:7 5342:1 5344:3 5347:7 5349:19 5350:1 5352:6 5354:4 5449:2 5451:12 5484:1 5488:1 5492:1 5500:1 5520:2 5529:1 5530:1 5531:1 5533:2 5534:3 5535:2 5540:1 5585:1 5592:1 5595:1 5599:4 5604:1 5608:1 5610:4 5618:1 5627:1 5640:1 5670:1 5674:1 5681:2 5683:1 5686:4 5687:1 5688:3 5702:12 5703:1 5711:1 5712:1 5719:2 5721:2 5726:1 5730:1 5746:3 5752:1 5774:2 5783:3 5788:2 5807:2 5813:3 5815:2 5828:1 5849:1 5860:2 5865:3 5871:1 5874:3 5878:4 5889:1 5900:1 5931:2 5939:1 5943:1 5947:10 5948:3 5952:1 5968:3 5998:1 6005:3 6017:2 6034:1 6042:1 6044:1 6045:1 6046:1 6047:3 6049:1 6050:1 6056:1 6062:1 6071:1 6079:1 6087:1 6112:3 6116:2 6126:1 6128:1 6130:1 6131:1 6139:2 6145:2 6151:1 6154:1 6175:2 6183:14 6187:1 6194:1 6201:1 6207:1 6235:1 6237:2 6274:1 6289:1 6293:1 6311:4 6324:1 6352:1 6354:1 6355:3 6364:2 6365:11 6366:1 6373:1 6378:1 6381:2 6382:2 6386:3 6389:1 6402:5 6405:1 6407:2 6409:1 6410:1 6411:1 6412:1 6416:2 6417:1 6418:1 6422:1 6429:62 6433:1 6434:1 6436:1 6440:1 6448:1 6449:5 6451:8 6459:4 6462:1 6468:1 6475:1 6486:1 6491:1 6492:1 6493:1 6497:1 6510:1 6516:1 6525:1 6526:4 6532:3 6542:1 6554:1 6560:2 6578:1 6587:1 6589:1 6591:1 6597:1 6616:1 6619:2 6643:2 6661:3 6667:1 6669:2 6675:1 6678:2 6685:1 6687:1 6706:2 6707:3 6711:3 6715:1 6716:3 6723:6 6756:1 6769:1 6781:1 6789:1 6791:1 6794:3 6796:3 6802:1 6804:1 6809:1 6810:5 6818:1 6824:5 6827:1 6834:1 6839:5 6843:1 6846:1 6847:1 6854:5 6859:19 6908:5 6911:1 6920:2 6931:1 6934:2 6937:1 6958:1 6981:6 6991:1 7016:1 7021:1 7022:1 7027:2 7033:1 7038:1 7045:1 7047:1 7054:6 7059:3 7068:14 7096:2 7097:1 7104:1 7108:1 7116:1 7122:1 7124:1 7132:1 7137:1 7157:5 7160:1 7163:1 7164:2 7165:1 7166:3 7169:4 7170:2 7177:2 7178:2 7179:1 7181:2 7182:1 7190:1 7194:1 7199:1 7202:1 7215:1 7216:3 7221:1 7235:1 7245:1 7246:3 7251:1 7268:1 7273:1 7281:1 7285:15 7303:2 7322:1 7333:1 7341:1 7360:1 7361:6 7363:1 7374:1 7377:1 7379:1 7382:2 7391:2 7400:14 7402:2 7409:2 7410:1 7414:1 7418:2 7419:3 7427:2 7430:1 7432:3 7435:2 7438:3 7443:2 7444:1 7445:1 7450:5 7451:1 7456:3 7457:10 7459:2 7460:1 7461:7 7462:1 7464:2 7465:2 7471:1 7478:2 7487:1 7491:1 7499:2 7510:2 7527:1 7533:1 7550:1 7552:1 7553:3 7554:2 7564:2 7571:5 7572:1 7576:1 7581:11 7588:2 7589:1 7605:1 7614:3 7615:1 7622:1 7626:1 7638:1 7648:4 7656:1 7658:4 7670:1 7671:1 7682:2 7686:2 7701:1 7702:1 7709:1 7712:6 7741:1 7742:1 7743:1 7746:1 7750:1 7751:1 7753:4 7754:1 7761:1 7763:1 7765:1 7768:1 7773:15 7778:1 7782:1 7787:4 7794:1 7799:1 7803:1 7804:2 7810:3 7816:2 7820:3 7841:2 7852:1 7860:3 7868:2 7872:1 7880:2 7887:5 7894:2 7905:1 7908:1 7912:1 7921:1 7923:2 7929:4 7930:1 7950:3 7964:3 7972:1 7976:1 7979:1 7982:1 7988:9 7999:1 8002:1 8005:1 8023:2 8030:1 8049:1 8065:14 8070:11 8079:1 8080:1 8081:14 8082:10 8099:5 8107:1 8110:1 8140:1 8158:1 8162:5 8171:3 8174:1 8175:4 8176:16 8177:1 8189:2 8195:2 8206:6 8207:3 8216:2 8229:2 8230:1 8234:23 8235:1 8249:2 8256:1 8266:1 8272:2 8279:1 8282:1 8284:1 8285:12 8296:2 8304:2 8311:2 8314:1 8317:1 8318:1 8320:1 8328:6 8332:1 8339:1 8343:1 8348:1 8350:1 8352:8 8355:1 8357:3 8359:4 8361:1 8364:2 8376:1 8383:1 8387:9 8404:3 8428:1 8433:3 8437:2 8443:2 8469:12 8471:1 8472:1 8508:1 8551:1 8553:2 8567:2 8568:2 8574:1 8582:2 8583:1 8590:1 8593:2 8597:4 8598:8 8603:1 8605:1 8614:1 8617:1 8618:1 8623:1 8630:1 8632:1 8635:1 8637:1 8656:5 8657:1 8669:1 8670:1 8672:2 8681:5 8690:2 8692:1 8693:1 8702:2 8709:1 8711:1 8714:3 8719:1 8726:1 8727:3 8731:2 8736:5 8753:3 8759:9 8761:1 8762:1 8771:1 8773:5 8778:1 8782:3 8783:1 8785:1 8794:1 8795:2 8800:2 8802:13 8809:5 8812:1 8814:8 8822:2 8826:1 8830:1 8831:2 8832:5 8833:5 8836:1 8849:1 8856:1 8878:3 8879:2 8891:11 8900:4 8901:1 8910:5 8911:1 8914:2 8916:8 8937:1 8944:1 8955:1 8968:1 8971:1 8974:3 8979:1 8983:2 8993:1 8996:2 8998:2 8999:1 9000:1 9002:7 9012:2 9014:1 9017:1 9022:1 9027:1 9038:1 9043:1 9058:4 9060:1 9062:2 9063:2 9067:2 9084:1 9093:1 9097:1 9101:13 9102:11 9120:5 9123:3 9127:2 9132:2 9135:1 9138:1 9140:1 9142:3 9149:1 9156:1 9165:1 9166:1 9173:1 9181:2 9183:1 9185:3 9192:1 9210:1 9211:1 9222:3 9227:1 9239:1 9240:2 9243:1 9252:11 9263:2 9274:1 9313:2 9318:2 9336:1 9338:1 9346:1 9356:1 9363:1 9370:1 9377:4 9392:1 9400:1 9403:8 9419:1 9426:1 9440:3 9441:1 9442:1 9455:9 9462:2 9465:1 9466:1 9488:9 9495:1 9497:1 9524:1 9525:1 9532:15 9536:3 9547:1 9550:4 9562:2 9563:3 9565:2 9575:2 9590:2 9591:1 9596:1 9599:1 9607:1 9611:1 9619:1 9622:2 9624:1 9625:1 9645:1 9653:1 9656:3 9681:1 9682:6 9683:1 9688:2 9690:1 9691:1 9697:1 9698:1 9700:1 9710:2 9716:2 9723:4 9729:2 9738:2 9743:1 9745:1 9756:1 9772:2 9810:4 9818:1 9823:5 9824:1 9850:1 9859:3 9867:1 9877:1 9878:5 9880:1 9881:2 9884:1 9890:1 9891:1 9900:1 9918:3 9922:1 9923:1 9924:6 9937:1 9941:2 9944:1 9946:1 9949:2 9950:1 9951:1 9958:1 9961:1 9963:1 9974:1 9999:1 10021:1 10022:3 10037:1 10040:2 10042:2 10045:1 10046:1 10052:2 10053:5 10054:5 10067:1 10070:1 10073:1 10074:4 10090:7 10115:1 10117:1 10126:1 10169:5 10172:1 10176:1 10196:2 10198:1 10204:1 10211:1 10217:2 10218:7 10220:1 10232:1 10247:1 10250:1 10254:1 10278:7 10287:1 10311:1 10316:2 10318:3 10319:1 10324:1 10329:1 10353:1 10355:1 10360:2 10369:1 10370:2 10384:12 10406:1 10457:3 10465:1 10480:48 10487:1 10502:2 10503:6 10524:1 10530:1 10531:4 10537:1 10539:1 10540:4 10543:1 10551:1 10554:3 10556:1 10566:1 10576:2 10587:1 10589:1 10593:1 10597:1 10598:6 10600:3 10603:1 10617:2 10635:1 10648:2 10651:8 10654:1 10659:1 10667:1 10668:1 10701:1 10707:1 10713:1 10719:1 10722:1 10725:3 10749:1 10757:1 10758:1 10761:1 10772:1 10792:1 10809:1 10815:1 10818:1 10823:2 10837:1 10843:1 10846:2 10847:16 10851:4 10862:1 10871:4 10872:2 10879:1 10887:2 10892:1 10897:2 10898:3 10912:2 10922:1 10924:1 10951:2 10952:1 10953:1 10961:4 10962:2 10970:2 10974:10 10979:2 10981:1 10985:4 10987:2 10993:3 11009:1 11013:1 11014:1 11016:1 11019:1 11030:1 11036:1 11046:8 11047:9 11050:1 11056:2 11062:1 11080:1 11087:1 11103:4 11118:2 11126:1 11155:3 11159:2 11163:4 11168:3 11173:3 11186:2 11187:6 11188:1 11201:1 11211:3 11215:8 11223:4 11235:3 11245:1 11266:1 11273:5 11280:3 11283:1 11284:2 11286:1 11297:1 11301:1 11325:3 11329:1 11337:6 11341:1 11344:1 11345:1 11346:1 11347:1 11348:1 11349:2 11352:2 11353:1 11368:5 11375:5 11394:1 11400:2 11405:2 11408:1 11415:1 11430:12 11447:4 11449:3 11451:2 11459:4 11463:2 11479:1 11486:1 11497:1 11507:1 11509:3 11526:2 11540:1 11564:1 11584:4 11600:1 11606:1 11607:1 11609:1 11610:1 11632:1 11638:5 11640:3 11643:1 11653:1 11655:1 11690:1 11705:2 11708:2 11712:6 11717:1 11727:1 11739:2 11742:2 11747:1 11757:1 11759:1 11790:1 11792:1 11800:1 11801:4 11807:1 11812:3 11813:2 11818:1 11823:1 11830:1 11832:1 11833:1 11834:1 11843:1 11853:1 11856:2 11857:2 11864:4 11874:1 11876:1 11881:1 11883:3 11900:1 11906:2 11932:1 11937:1 11949:1 11960:2 11966:2 11974:2 11976:2 11979:1 11984:1 11985:1 11990:1 11992:1 11994:1 11998:2 12001:1 12033:1 12038:1 12050:5 12065:1 12076:3 12078:1 12084:2 12092:1 12095:1 12097:2 12099:5 12114:3 12115:1 12118:1 12126:1 12129:1 12131:1 12144:3 12145:1 12146:3 12149:1 12178:1 12181:1 12182:2 12184:1 12197:1 12218:3 12227:1 12229:1 12245:1 12276:5 12287:2 12289:1 12323:1 12328:1 12337:1 12338:1 12346:9 12364:2 12365:2 12366:2 12372:1 12375:1 12381:7 12387:2 12390:2 12396:1 12416:1 12425:1 12427:2 12432:1 12440:1 12444:1 12452:2 12456:1 12468:1 12483:1 12486:2 12488:2 12490:2 12491:1 12512:1 12522:1 12542:1 12555:1 12556:5 12573:1 12575:3 12582:1 12583:2 12584:1 12585:1 12586:1 12594:1 12614:12 12623:2 12627:2 12635:2 12641:1 12643:1 12652:3 12661:1 12662:6 12663:1 12672:2 12683:1 12685:1 12698:2 12716:2 12723:5 12739:2 12740:2 12741:6 12746:1 12748:2 12754:1 12774:1 12792:1 12797:3 12798:4 12800:5 12801:1 12822:2 12837:1 12839:2 12842:1 12843:1 12846:2 12874:1 12881:2 12898:1 12930:1 12942:3 12943:1 12944:1 12945:2 12946:1 12950:5 12954:2 12961:3 12971:1 12980:1 12985:2 12988:7 12989:3 13013:1 13014:3 13025:1 13032:1 13033:2 13037:1 13058:2 13062:1 13072:2 13082:1 13094:1 13104:3 13125:3 13128:1 13140:4 13142:2 13153:10 13156:1 13159:1 13171:1 13181:1 13187:1 13205:1 13206:1 13207:9 13212:1 13225:4 13229:1 13238:2 13258:1 13259:1 13267:1 13288:1 13295:5 13301:1 13304:1 13311:3 13324:2 13328:19 13333:3 13334:1 13336:1 13342:2 13344:1 13345:1 13347:1 13350:1 13362:1 13390:8 13393:1 13406:1 13410:1 13417:1 13428:2 13431:1 13434:2 13435:1 13437:1 13445:3 13446:1 13449:3 13452:2 13453:2 13454:1 13459:1 13462:1 13466:1 13470:1 13471:1 13476:1 13482:1 13489:3 13502:1 13505:2 13523:1 13525:3 13535:1 13542:1 13560:1 13561:1 13562:1 13590:1 13593:2 13607:1 13614:1 13615:1 13620:1 13623:1 13637:5 13640:2 13644:1 13647:3 13651:2 13662:5 13664:2 13665:1 13668:1 13671:1 13675:2 13680:5 13682:2 13688:3 13689:1 13703:2 13707:1 13708:1 13718:1 13719:5 13729:1 13732:1 13733:2 13740:1 13760:1 13765:5 13766:1 13778:2 13780:1 13803:9 13807:4 13819:14 13823:2 13835:6 13846:1 13857:1 13858:1 13865:2 13871:2 13872:1 13876:1 13888:4 13895:3 13901:1 13907:2 13908:2 13926:1 13928:5 13929:1 13931:3 13936:2 13947:1 13953:1 13970:3 13979:4 13985:1 13986:1 13989:4 13994:4 13995:1 13996:2 14000:1 14007:2 14024:3 14026:3 14030:1 14031:3 14035:2 14041:1 14050:3 14051:12 14055:1 14062:1 14070:1 14071:2 14072:1 14073:1 14077:3 14088:1 14097:4 14114:1 14119:5 14127:2 14130:1 14137:1 14143:1 14165:1 14167:1 14178:13 14181:3 14202:1 14204:2 14207:1 14218:1 14227:1 14229:6 14231:2 14252:2 14262:1 14264:1 14265:2 14279:1 14286:1 14288:1 14300:2 14302:1 14305:1 14317:1 14326:1 14329:2 14332:3 14333:2 14334:1 14341:1 14365:4 14366:12 14371:5 14380:1 14381:1 14382:13 14383:4 14385:1 14386:1 14387:2 14391:3 14395:3 14403:1 14404:1 14417:1 14422:2 14434:1 14443:2 14465:2 14475:1 14476:13 14477:3 14496:12 14503:1 14513:1 14516:13 14522:1 14541:1 14544:1 14549:1 14553:1 14555:1 14556:1 14558:1 14564:1 14568:1 14576:2 14577:2 14582:2 14583:1 14595:1 14596:2 14610:2 14622:1 14630:4 14635:3 14638:1 14648:1 14649:1 14650:2 14654:1 14657:2 14665:2 14672:3 14674:2 14677:11 14678:4 14691:3 14696:1 14711:1 14717:1 14719:6 14727:1 14734:1 14740:8 14744:1 14747:10 14751:1 14762:8 14763:1 14764:1 14765:3 14768:1 14774:1 14776:3 14785:6 14792:1 14802:1 14804:5 14807:1 14810:1 14824:1 14837:7 14844:2 14849:2 14851:1 14853:1 14856:1 14864:5 14866:1 14871:1 14877:1 14882:2 14885:6 14903:1 14914:1 14919:1 14934:2 14938:2 14946:4 14956:2 14962:1 14976:1 14981:2 14982:3 14987:1 14991:1 15002:1 15011:1 15015:1 15030:2 15035:2 15040:2 15067:2 15073:2 15080:2 15087:1 15089:1 15090:2 15097:2 15098:1 15100:2 15105:2 15107:1 15111:1 15123:3 15133:1 15134:12 15135:1 15137:10 15142:1 15144:1 15160:3 15164:1 15166:1 15169:1 15171:3 15183:2 15184:6 15196:1 15197:1 15201:4 15205:14 15233:2 15234:1 15240:1 15251:2 15269:6 15272:1 15282:6 15283:1 15287:1 15303:1 15307:53 15312:6 15322:1 15326:1 15344:3 15354:2 15360:1 15371:4 15374:1 15384:1 15396:6 15405:10 15409:1 15423:1 15424:1 15436:1 15438:1 15444:1 15445:3 15452:2 15453:1 15460:3 15469:2 15480:2716 15483:2 15492:2 15496:1 15507:1 15508:2 15510:1 15518:1 15524:1 15554:1 15556:2 15560:1 15562:1 15568:1 15570:3 15574:1 15591:1 15595:1 15599:2 15601:1 15610:4 15617:5 15623:1 15625:2 15638:4 15639:5 15641:1 15642:2 15645:1 15646:2 15647:1 15649:7 15652:1 15655:8 15656:1 15658:2 15661:1 15662:9 15678:2 15684:1 15723:1 15738:1 15739:1 15742:2 15743:1 15763:4 15773:2 15776:15 15790:1 15793:1 15800:1 15814:1 15816:3 15840:1 15847:1 15853:1 15855:1 15866:2 15869:1 15871:2 15875:1 15884:1 15896:2 15927:2 15929:4 15935:2 15938:1 15943:1 15949:8 15955:1 15957:1 15960:1 15961:1 15966:3 15984:1 15994:1 15997:7 16008:1 16019:1 16036:1 16042:10 16043:3 16046:1 16051:1 16052:1 16054:8 16056:1 16059:2 16064:1 16074:3 16077:3 16078:1 16079:1 16094:1 16095:1 16102:3 16103:1 16111:1 16112:1 16115:6 16118:1 16121:10 16139:1 16147:1 16148:1 16151:2 16152:10 16154:12 16161:1 16171:1 16177:2 16179:1 16187:1 16203:1 16206:2 16228:1 16239:2 16254:1 16262:3 16267:1 16268:4 16270:1 16271:1 16273:2 16274:2 16277:1 16283:2 16287:1 16296:1 16300:1 16302:3 16306:2 16308:1 16309:1 16310:1 16313:1 16318:1 16337:1 16341:1 16358:1 16370:3 16372:1 16376:1 16387:6 16402:1 16409:4 16412:2 16413:1 16426:1 16428:1 16438:1 16458:1 16474:1 16479:1 16484:8 16485:5 16488:1 16490:2 16495:3 16500:5 16503:2 16506:1 16509:2 16514:1 16534:2 16547:1 16548:1 16557:1 16577:2 16593:4 16603:1 16605:1 16611:2 16620:1 16623:1 16625:1 16630:3 16633:1 16637:1 16643:1 16652:3 16654:3 16659:1 16665:1 16670:1 16673:1 16679:1 16681:10 16682:1 16683:1 16693:1 16712:1 16718:3 16726:5 16727:1 16729:1 16732:1 16733:1 16735:2 16743:2 16744:5 16753:7 16754:1 16761:1 16763:1 16775:1 16777:1 16778:2 16780:1 16787:2 16792:1 16794:2 16809:1 16815:6 16817:1 16842:1 16853:1 16855:2 16861:5 16862:2 16867:6 16871:1 16875:1 16882:1 16895:1 16897:2 16908:1 16919:1 16921:10 16928:1 16946:2 16964:1 16965:2 16970:1 16971:1 16975:1 16984:1 17001:4 17011:1 17013:1 17030:2 17037:1 17043:2 17046:1 17048:1 17057:2 17058:1 17066:2 17082:1 17083:1 17085:2 17090:1 17107:1 17113:2 17123:1 17131:1 17136:8 17137:4 17166:1 17174:1 17175:1 17176:1 17181:1 17185:1 17187:1 17188:1 17221:3 17237:7 17246:2 17248:1 17253:1 17269:2 17275:8 17276:7 17286:1 17288:2 17296:1 17298:1 17301:1 17303:1 17311:3 17316:3 17320:1 17331:4 17335:1 17343:2 17346:2 17347:1 17348:1 17356:1 17357:1 17362:8 17363:2 17366:2 17367:1 17368:1 17386:2 17387:12 17403:1 17404:1 17424:4 17436:1 17440:1 17470:1 17485:5 17491:3 17492:1 17499:1 17515:1 17520:1 17523:1 17553:3 17559:1 17563:1 17569:1 17575:1 17580:1 17602:2 17605:2 17608:1 17616:2 17620:1 17622:1 17623:5 17626:1 17631:4 17641:1 17645:1 17649:1 17658:1 17660:1 17668:1 17678:12 17689:1 17706:2 17712:2 17724:3 17725:2 17730:1 17735:3 17739:1 17742:2 17743:1 17768:1 17772:2 17774:3 17775:1 17788:2 17792:3 17795:1 17800:1 17808:1 17822:1 17824:1 17826:1 17827:1 17834:3 17835:1 17838:4 17839:1 17852:3 17853:2 17855:6 17857:1 17859:1 17862:2 17865:1 17886:2 17890:1 17900:1 17906:1 17908:1 17910:1 17915:2 17916:14 17919:1 17921:3 17922:1 17923:1 17924:2 17925:1 17927:4 17943:3 17955:4 17956:2 17958:4 17962:2 17969:1 17973:1 17975:1 17978:1 17979:1 17980:2 17983:5 17994:1 17995:5 18009:4 18016:1 18025:2 18028:1 18035:2 18037:1 18038:2 18041:2 18042:1 18043:9 18053:9 18058:1 18064:1 18068:3 18069:1 18073:1 18079:1 18088:1 18092:3 18093:10 18116:1 18130:2 18146:1 18148:1 18159:1 18165:1 18166:6 18168:5 18174:3 18177:1 18181:1 18189:1 18193:1 18197:3 18201:1 18208:5 18209:1 18210:2 18215:1 18237:1 18247:2 18248:2 18249:1 18266:1 18282:1 18313:2 18320:1 18339:2 18356:1 18357:1 18358:1 18360:2 18366:2 18367:2 18369:3 18370:2 18375:6 18378:2 18379:1 18397:1 18406:3 18409:1 18410:4 18414:3 18423:1 18436:1 18447:1 18454:1 18468:1 18469:2 18474:3 18478:1 18479:3 18482:1 18485:4 18491:2 18498:2 18504:1 18509:2 18511:3 18513:1 18523:1 18537:1 18539:2 18554:1 18555:1 18567:3 18568:1 18570:1 18572:1 18578:2 18580:1 18585:1 18587:1 18600:2 18602:1 18616:3 18617:1 18623:1 18629:1 18631:1 18635:1 18645:1 18654:2 18661:1 18664:1 18665:1 18674:2 18700:1 18702:6 18704:1 18727:4 18732:13 18736:1 18742:2 18747:1 18748:1 18750:1 18754:1 18755:1 18768:1 18784:1 18792:4 18800:3 18805:1 18816:2 18821:1 18828:1 18849:1 18856:8 18857:2 18861:1 18862:9 18867:1 18880:1 18881:5 18882:1 18884:1 18886:1 18901:2 18904:1 18905:1 18916:1 18929:1 18930:3 18931:4 18934:1 18938:2 18941:6 18949:1 18974:1 18980:1 19001:1 19011:1 19024:2 19033:4 19043:1 19048:1 19056:3 19059:1 19060:2 19076:1 19080:2 19085:2 19098:3 19108:10 19126:2 19134:4 19136:3 19139:1 19145:1 19146:1 19148:1 19150:1 19153:4 19172:1 19183:2 19193:3 19205:3 19207:5 19210:13 19226:4 19230:1 19237:1 19249:2 19250:1 19258:1 19263:1 19267:1 19275:2 19292:9 19293:1 19294:1 19302:4 19303:1 19322:1 19328:3 19331:1 19335:1 19337:5 19339:2 19354:1 19359:1 19365:1 19368:1 19373:3 19374:1 19386:1 19391:1 19392:2 19395:2 19402:1 19412:1 19416:1 19422:1 19425:2 19438:3 19440:1 19443:6 19446:1 19453:1 19461:1 19469:1 19471:3 19475:1 19480:1 19486:2 19487:12 19490:1 19507:1 19508:2 19517:1 19522:1 19532:1 19544:6 19559:4 19561:1 19562:1 19564:1 19570:1 19575:1 19586:1 19587:1 19603:1 19605:1 19606:1 19610:1 19612:1 19613:1 19637:1 19638:2 19644:2 19645:1 19657:2 19678:1 19683:1 19702:1 19706:1 19710:1 19714:1 19716:2 19730:2 19745:1 19753:1 19755:1 19757:3 19758:1 19762:8 19767:1 19773:1 19776:1 19787:1 19789:1 19792:1 19804:1 19805:3 19810:6 19813:2 19837:1 19844:1 19847:1 19849:1 19886:1 19897:7 19901:1 19902:2 19909:1 19912:2 19924:1 19925:2 19928:3 19962:1 19966:2 19972:2 19974:1 19992:2 20000:1 20003:1 20004:1 20015:2 20034:1 20040:6 20069:1 20072:1 20080:7 20083:1 20084:6 20086:2 20096:2 20098:1 20099:1 20103:2 20108:1 20109:6 20111:1 20118:1 20128:1 20137:1 20138:1 20152:1 20155:1 20159:1 20165:1 20171:1 20180:1 20198:1 20208:1 20218:1 20223:1 20224:1 20226:2 20227:2 20235:1 20239:1 20241:1 20247:2 20251:1 20252:2 20253:1 20258:2 20261:2 20266:1 20267:1 20268:1 20270:4 20275:1 20278:1 20293:1 20304:1 20316:2 20317:3 20318:12 20319:2 20320:1 20326:3 20327:5 20331:3 20332:4 20333:1 20334:5 20336:1 20337:6 20338:3 20341:2 20343:10 20344:7 20350:1 20353:1 20356:1 20366:1 20371:1 20373:1 20378:6 20380:1 20383:3 20391:1 20397:2 20398:12 20399:3 20406:1 20411:2 20413:2 20424:1 20435:1 20436:1 20440:1 20441:2 20442:12 20447:11 20448:6 20464:1 20469:3 20470:1 20485:1 20496:3 20502:3 20505:1 20510:1 20512:4 20529:2 20545:1 20552:1 20560:1 20576:6 20586:1 20595:4 20596:1 20611:1 20614:1 20616:1 20619:1 20620:1 20621:2 20627:1 20629:2 20631:12 20634:1 20641:1 20653:1 20659:1 20668:5 20686:1 20694:1 20696:1 20717:1 20718:2 20727:1 20733:1 20738:4 20740:1 20742:11 20745:1 20760:1 20761:12 20762:1 20769:2 20785:15 20787:1 20805:1 20812:1 20818:1 20829:8 20831:1 20846:1 20850:2 20853:1 20871:1 20872:3 20873:1 20874:1 20875:1 20877:1 20887:2 20890:2 20928:1 20930:1 20936:1 20949:13 20962:9 20973:2 20995:1 21007:1 21011:1 21012:2 21013:1 21017:1 21021:3 21033:1 21037:1 21056:1 21062:3 21065:3 21074:2 21077:1 21079:1 21089:1 21099:2 21100:2 21107:2 21108:8 21111:1 21112:2 21113:1 21123:2 21133:1 21134:4 21138:1 21139:1 21146:2 21150:6 21163:1 21173:1 21175:1 21176:1 21198:11 21199:5 21208:2 21209:5 21218:2 21219:1 21224:1 21225:2 21227:2 21228:1 21245:1 21249:1 21258:2 21266:1 21293:5 21306:1 21312:1 21327:1 21337:5 21349:1 21350:1 21353:1 21359:1 21361:4 21380:1 21400:2 21402:1 21410:1 21430:2 21434:2 21457:1 21473:1 21480:1 21482:1 21485:2 21486:1 21490:2 21508:1 21515:1 21520:1 21529:4 21539:4 21543:1 21546:1 21556:1 21557:5 21561:4 21567:1 21571:1 21575:1 21581:2 21582:3 21584:1 21586:1 21588:1 21595:1 21602:2 21603:1 21610:7 21612:1 21613:3 21622:2 21627:1 21630:3 21633:1 21642:6 21644:1 21645:1 21650:1 21663:2 21675:1 21684:2 21686:1 21697:3 21703:4 21718:1 21723:1 21737:1 21741:1 21760:53 21773:13 21774:1 21782:5 21783:1 21784:2 21787:2 21791:1 21794:1 21809:1 21812:1 21816:1 21830:1 21831:3 21838:1 21844:2 21846:1 21856:1 21863:1 21868:1 21878:2 21880:1 21887:3 21904:1 21914:2 21916:8 21917:1 21922:1 21926:1 21927:1 21943:1 21944:1 21947:1 21948:1 21982:1 21995:3 21996:1 21997:1 21998:1 22001:1 22002:1 22006:1 22007:1 22010:2 22015:1 22016:2 22024:1 22027:4 22035:1 22037:1 22041:2 22048:3 22078:1 22080:1 22094:1 22109:1 22119:2 22123:1 22132:1 22142:1 22144:1 22153:1 22163:10 22179:1 22192:1 22208:1 22211:1 22215:1 22218:1 22223:2 22229:2 22233:1 22243:1 22245:10 22247:1 22251:1 22256:1 22263:1 22279:2 22281:1 22315:1 22320:1 22325:3 22328:1 22331:24 22334:1 22340:1 22360:1 22368:1 22376:4 22378:1 22383:1 22388:1 22393:1 22399:1 22410:2 22415:1 22417:1 22423:1 22431:1 22434:4 22437:1 22449:1 22455:1 22460:1 22465:1 22466:3 22472:1 22474:2 22478:1 22481:1 22485:1 22491:1 22493:1 22504:1 22513:1 22517:3 22520:7 22534:3 22538:1 22548:4 22551:5 22552:1 22561:1 22585:1 22587:1 22593:1 22598:1 22601:1 22602:2 22611:9 22617:1 22623:1 22627:1 22632:1 22644:3 22646:3 22647:1 22655:2 22658:2 22662:1 22669:4 22677:1 22690:5 22699:8 22707:2 22709:1 22715:1 22721:1 22730:1 22734:2 22736:1 22749:3 22755:11 22756:2 22759:6 22760:5 22761:4 22769:1 22779:1 22786:9 22787:1 22795:2 22799:1 22802:1 22803:8 22809:1 22811:1 22812:1 22815:1 22818:1 22820:1 22822:1 22823:1 22828:1 22830:2 22831:3 22846:2 22864:2 22865:1 22866:1 22867:1 22874:4 22876:1 22882:1 22895:1 22902:1 22903:2 22905:2 22914:1 22916:2 22924:1 22927:1 22931:1 22937:1 22942:1 22948:1 22982:1 23000:3 23001:1 23003:1 23011:1 23027:6 23032:1 23039:1 23064:2 23071:1 23075:1 23076:5 23084:1 23089:11 23109:17 23118:1 23123:1 23125:3 23127:4 23128:1 23137:1 23143:1 23151:2 23155:1 23166:1 23167:2 23175:1 23185:1 23188:2 23196:2 23198:2 23201:1 23226:1 23237:4 23248:1 23256:1 23262:1 23263:1 23264:1 23284:4 23293:1 23295:1 23298:5 23299:1 23300:4 23305:1 23307:1 23314:6 23316:1 23331:1 23333:1 23335:1 23341:1 23344:5 23349:1 23357:1 23360:4 23361:1 23363:1 23366:1 23378:1 23384:3 23385:2 23386:2 23391:1 23392:1 23393:2 23404:4 23410:1 23413:2 23416:1 23424:2 23430:31 23431:3 23433:2 23435:1 23449:1 23456:2 23466:5 23476:3 23491:1 23496:1 23507:1 23521:1 23524:1 23551:3 23558:1 23586:11 23588:1 23592:2 23603:5 23609:1 23610:9 23616:8 23620:1 23623:2 23626:8 23632:1 23633:1 23646:1 23647:8 23655:4 23659:3 23670:1 23674:1 23676:1 23685:1 23688:1 23703:1 23711:1 23712:1 23713:1 23719:1 23720:2 23722:1 23723:2 23733:1 23736:1 23739:4 23741:6 23744:1 23751:1 23767:1 23768:1 23775:23 23777:2 23784:1 23787:1 23796:1 23797:3 23828:1 23835:12 23836:1 23840:1 23847:1 23853:1 23858:8 23862:1 23865:1 23866:13 23869:1 23871:1 23885:2 23891:1 23893:1 23900:1 23918:1 23923:1 23940:2 23949:2 23950:1 23952:1 23967:2 23971:4 23974:4 23991:1 23993:1 23994:1 24002:1 24003:2 24004:1 24025:1 24033:1 24034:1 24039:4 24051:1 24054:1 24070:4 24076:1 24081:1 24095:1 24096:3 24100:1 24110:2 24126:5 24128:1 24129:1 24132:1 24137:3 24143:1 24150:1 24151:1 24162:2 24164:1 24168:2 24170:9 24179:1 24213:1 24225:1 24239:1 24251:1 24257:1 24265:2 24266:8 24267:1 24271:1 24274:1 24275:1 24276:1 24280:1 24286:1 24287:1 24292:1 24296:1 24307:3 24314:1 24326:1 24330:3 24332:1 24341:4 24347:1 24350:1 24370:3 24373:1 24385:1 24394:1 24398:1 24401:7 24407:1 24410:1 24411:6 24412:1 24416:1 24423:1 24438:3 24441:1 24463:1 24473:1 24476:7 24477:2 24478:1 24482:1 24483:7 24485:4 24487:4 24503:9 24525:3 24530:6 24536:4 24538:1 24568:1
|
8bc9eac13c076b0a8a9b75e0eb963b8baf0466d3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3717/CH21/EX21.1/Ex21_1.sce | 073d804aaf6b9cbccc561bad391dce55991fe105 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 363 | sce | Ex21_1.sce | // Ex21_1 Page:399 (2014)
clc;clear;
m_pi = 140; // Mass of a pion, MeV
m_p = 938.3; // Mass of a proton, MeV
m_K = 498; // Mass of a kaon, MeV
m_lambda = 1116; // Mass of lambda hyperon, MeV
Q = m_pi + m_p - m_K - m_lambda;
printf("\nThe Q-value of the reaction = %3d MeV", floor(Q));
// Result
// The Q-value of the reaction = -536 MeV
|
6429b3b6ece7d81af22b00828010f19b6d9e413a | 8ec8a6289f00479229e1b4a240e1f75a2004bffb | /PrimComparison.sce | 50dca860466e300dbfc41f6a30419c718c7d3928 | [] | no_license | Aashay7/routing_algos_scilab | cf7b41db7a166bb906797f674a2eb49eb85017cf | 7d2a9f8514490946a07169fb77e74dc08a0041d5 | refs/heads/master | 2020-04-27T18:03:47.114425 | 2019-12-02T14:07:20 | 2019-12-02T14:07:20 | 174,552,333 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 5,014 | sce | PrimComparison.sce | //Authors:
//Sachin Gopal (15BCE1188)
//Aashay Gondalia (15BCE1284)
//Dhruv Dixit (15BCE1324)
//School of Computing Science and Engineering
//VIT Chennai
//Code to compute the CPU time taken by the Prim routing algorithm to return the
//Vector of the total distance between each network node and the source node and
//Vector composed by the predecessor of each node in order to reach the source
//node in respect with the shortest path for various network sizes.
//Clear display and environment variables
clc
clear all
//Creating a random topology which is tiny in size
n=80; //network size is 80
L=1000; //network square area side is 1000
dmax=100; //locality radius is 100
[g]=NL_T_LocalityConnex(n,L,dmax); //generation of a random topology in respect with the Locality method.
i=NL_F_RandInt1n(length(g.node_x)); //selection of the source node
ind=1; //window index
g.node_diam(i)=40; //node diameter
g.node_border(i)=10; //node border
g.node_color(i)=5; //node color
[f]=NL_G_ShowGraphN(g,ind);//graph visualization
//Application of the Prim algorithm
for i = 1:10 //Run 10 iterations
timer(); //Initialize timer
[dist,v,pred]=NL_R_Prim(g,i,2,1); //application of NL_R_Prim
A(i) = timer() //Store timer value in array
end
c=mean(A); //Calculate average time taken
disp(c,"Tiny:") //Display average time
//Creating a random topology which is small in size
n=90; //network size is 90
[g]=NL_T_LocalityConnex(n,L,dmax); //generation of a random topology in respect with the Locality method.
i=NL_F_RandInt1n(length(g.node_x)); //selection of the source node
g.node_diam(i)=40; //node diameter
g.node_border(i)=10; //node border
g.node_color(i)=5; //node color
[f]=NL_G_ShowGraphN(g,ind);//graph visualization
//Application of the Prim algorithm
for i = 1:10 //Run 10 iterations
timer(); //Initialize timer
[dist,v,pred]=NL_R_Prim(g,i,2,1); //application of NL_R_Prim
A(i) = timer() //Store timer value in array
end
c=mean(A); //Calculate average time taken
disp(c,"Small:") //Display average time
//Creating a random topology which is medium in size
n=120; //network size is 120
[g]=NL_T_LocalityConnex(n,L,dmax); //generation of a random topology in respect with the Locality method.
i=NL_F_RandInt1n(length(g.node_x)); //selection of the source node
g.node_diam(i)=40; //node diameter
g.node_border(i)=10; //node border
g.node_color(i)=5; //node color
[f]=NL_G_ShowGraphN(g,ind);//graph visualization
//Application of the Prim algorithm
for i = 1:10 //Run 10 iterations
timer(); //Initialize timer
[dist,v,pred]=NL_R_Prim(g,i,2,1); //application of NL_R_Prim
A(i) = timer() //Store timer value in array
end
c=mean(A); //Calculate average time taken
disp(c,"Medium:") //Display average time
//Creating a random topology which is large in size
n=150; //network size is 150
[g]=NL_T_LocalityConnex(n,L,dmax); //generation of a random topology in respect with the Locality method.
i=NL_F_RandInt1n(length(g.node_x)); //selection of the source node
g.node_diam(i)=40; //node diameter
g.node_border(i)=10; //node border
g.node_color(i)=5; //node color
[f]=NL_G_ShowGraphN(g,ind);//graph visualization
//Application of the Prim algorithm
for i = 1:10 //Run 10 iterations
timer(); //Initialize timer
[dist,v,pred]=NL_R_Prim(g,i,2,1); //application of NL_R_Prim
A(i) = timer() //Store timer value in array
end
c=mean(A); //Calculate average time taken
disp(c,"Large:") //Display average time
//Creating a random topology which is very large in size
n=180; //network size is 180
[g]=NL_T_LocalityConnex(n,L,dmax); //generation of a random topology in respect with the Locality method.
i=NL_F_RandInt1n(length(g.node_x)); //selection of the source node
g.node_diam(i)=40; //node diameter
g.node_border(i)=10; //node border
g.node_color(i)=5; //node color
[f]=NL_G_ShowGraphN(g,ind);//graph visualization
//Application of the Prim algorithm
for i = 1:10 //Run 10 iterations
timer(); //Initialize timer
[dist,v,pred]=NL_R_Prim(g,i,2,1); //application of NL_R_Prim
A(i) = timer() //Store timer value in array
end
c=mean(A); //Calculate average time taken
disp(c,"Very Large:") //Display average time
|
bb0a10c5dde5047148c27a3e31b60055bd45ee13 | 91bba043768342a4e23ee3a4ff1aa52fe67f7826 | /cs/142/1/tests/test28.tst | c63ec54b8f13316f8ec0c9b27316f34eef98fc31 | [] | no_license | MaxNanasy/old-homework | 6beecc3881c953c93b847f1d0d93a64ec991d6de | 48b7997a49a8f111344f30787c178e1661db04bd | refs/heads/master | 2016-09-08T04:37:44.932977 | 2010-03-02T00:48:59 | 2010-03-02T00:48:59 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 61 | tst | test28.tst | type t = array 100 of array 100 of array 100 of int;main() {} |
d220ed2de17f39c25b50a21fb1f6db82d208ad87 | 01ecab2f6eeeff384acae2c4861aa9ad1b3f6861 | /xcos_blocks/lpfota_c.sci | 0141141ee81d62092acdd28a237d6496fac0aa8e | [] | no_license | jhasler/rasp30 | 9a7c2431d56c879a18b50c2d43e487d413ceccb0 | 3612de44eaa10babd7298d2e0a7cddf4a4b761f6 | refs/heads/master | 2023-05-25T08:21:31.003675 | 2023-05-11T16:19:59 | 2023-05-11T16:19:59 | 62,917,238 | 3 | 3 | null | null | null | null | UTF-8 | Scilab | false | false | 641 | sci | lpfota_c.sci | global Ut_sim Kappa_sim;
function block=lpfota_c(block,flag)
if flag ==1
in_out_num = block.ipar(1); //Vectorized
row_vec_io = 1:in_out_num; // Row vector for input & output
block.outptr(1)(row_vec_io)=block.x(row_vec_io); //Output
elseif flag ==0
in_out_num = block.ipar(1);
row_vec_io = 1:in_out_num; // Row vector for input & output
C = 5e-12;
tau=1 ./(2*%pi*block.rpar(row_vec_io));
Ibias= (2*C*Ut_sim)./(Kappa_sim*tau);
block.xd(row_vec_io)=(Ibias/C).*tanh((Kappa_sim*(block.inptr(1)(row_vec_io)-block.x(row_vec_io)))/(2*Ut_sim));
end
endfunction
|
b3f47a4e0fedb6c8734ceceb703228157401c8b9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2489/CH9/EX9.5/9_5.sce | 1cf32fa3a113c6c81bb12e9280f96204b7a2ddf5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 288 | sce | 9_5.sce | clc
//Intitalisation of variables
clear
v1= 18.10 //cc
T= 100 //C
p= 2.47 //atm
L= 539.9 //cal mole^-1 gm^-1
m= 18.02 //gm
T1= 30 //C
//CALCULATIONS
dT= v1*(273.2+T)^2*p*1.013*10^6/(L*m*4.184*10^7*(273.2+T1))
//RESULTS
printf ('Elevation of boiling point = %.4f degrees',dT)
|
0b51e4330e27da698b64a2f332777f98a9b13350 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1760/CH2/EX2.54/EX2_54.sce | 082a49f860d454d46beb9c2ca5967783c752d815 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 475 | sce | EX2_54.sce | //EXAMPLE 2-54 PG NO-98
C=159*10^-6; //capacitor
F=50; //frequency
Xc=1/(2*%pi*F*C);
Z=8.94; //impedance
V=100; //voltage
I=V/Z; //Current
PF=0.894 //power factor
S=V*I;
P=V*I*PF;
Q=V*I*(-0.447);
disp(' CURRENT is = '+string(P)+' A');
disp(' APPARENT POWER is = '+string(S)+' VA');
disp(' active power is = '+string(P)+' W');
disp(' reactive power is = '+string(Q)+' vars');
|
445184a17760a99496f04b5370cbed6b5f0cba65 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1553/CH33/EX33.7/33Ex7.sce | 7e0bce7e1fd52e13a58f4ab64178d465e791678f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 285 | sce | 33Ex7.sce | //Chapter 31 Ex7
clc;
clear;
close;
deduced=10/100;
//let amount be Rs.100
amt=100;
deducedAmt=amt*(deduced);
moneyReceived=amt-deducedAmt;
t=10/12; //converting due period in years
rate=(amt*deducedAmt)/(moneyReceived*t);
mprintf("The rate percent is %.2f percent",rate);
|
c1bb2af8d5053ac4a7c43011a48cf099f01d00ef | ae90aa32e949a5eab9665f526f886f05860161d2 | /code/nand2tetris/08/FunctionCalls/SimpleFunction/SimpleFunction.tst | a0083bbd7567cfecf348bc1422ae8dd87d03c536 | [
"CC-BY-SA-3.0",
"MIT"
] | permissive | cccbook/sp | 4097ab760cfb013b689dc4739a439de29d85d324 | aff23e6b18ba6221022b14b024fd562427c46d9a | refs/heads/master | 2022-05-22T03:31:33.324045 | 2019-06-06T07:04:37 | 2019-06-06T07:04:37 | 156,299,694 | 257 | 96 | MIT | 2022-03-19T08:48:32 | 2018-11-05T23:56:37 | Assembly | UTF-8 | Scilab | false | false | 657 | tst | SimpleFunction.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/08/FunctionCalls/SimpleFunction/SimpleFunction.tst
load SimpleFunction.asm,
output-file SimpleFunction.out,
compare-to SimpleFunction.cmp,
output-list RAM[0]%D1.6.1 RAM[1]%D1.6.1 RAM[2]%D1.6.1
RAM[3]%D1.6.1 RAM[4]%D1.6.1 RAM[310]%D1.6.1;
set RAM[0] 317,
set RAM[1] 317,
set RAM[2] 310,
set RAM[3] 3000,
set RAM[4] 4000,
set RAM[310] 1234,
set RAM[311] 37,
set RAM[312] 1000,
set RAM[313] 305,
set RAM[314] 300,
set RAM[315] 3010,
set RAM[316] 4010,
repeat 300 {
ticktock;
}
output;
|
8aa008ee51425e8ffa2dc84936d243b9deb6b820 | 7b7be9b58f50415293def4aa99ef5795e6394954 | /sim/cmd/test/shortcolumn.tst | 065e584227cd1778b33d877ca428068443fd0646 | [] | no_license | sabualkaz/sim42 | 80d1174e4bc6ae14122f70c65e259a9a2472ad47 | 27b5afe75723c4e5414904710fa6425d5f27e13c | refs/heads/master | 2022-07-30T06:23:20.119353 | 2020-05-23T16:30:01 | 2020-05-23T16:30:01 | 265,842,394 | 0 | 0 | null | 2020-05-21T12:26:00 | 2020-05-21T12:26:00 | null | UTF-8 | Scilab | false | false | 904 | tst | shortcolumn.tst | # Simple distilation column test
units SI
$thermo = VirtualMaterials.Peng-Robinson
/ -> $thermo
thermo + PROPANE n-BUTANE ISOBUTANE n-PENTANE
col = Tower.Tower()
col.Stage_0 + 20 # twenty two stages`
cd col.Stage_10
f = Tower.Feed()
f.Port.T = 30
f.Port.P = 720
f.Port.MoleFlow = 10
f.Port.Fraction = .4 .05 .4 .15
f.Port
cd ../Stage_0
l = Tower.LiquidDraw()
l.Port.P = 700
l.Port.MoleFlow = 5
cond = Tower.EnergyFeed(0)
reflux = Tower.StageSpecification('Reflux')
reflux.Value = 1
cd ../Stage_21
l = Tower.LiquidDraw()
l.Port.P = 720
reb = Tower.EnergyFeed(1)
cd ..
TryToSolve = 1 # start calculation
# since there was little output here, I will put some profile stuff here
L_MassFraction.PROPANE
V_MoleFraction.ISOBUTANE
L_MassFlow
L_Viscosity
L_StdVolFraction.PROPANE
V_StdVolFraction.PROPANE
L_VolumeFlow
L_StdLiqVolumeFlow
V_StdLiqVolumeFlow
|
5c62ffbe497a2b0e69a45cddcfcaf1ac09dd11f5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /416/CH14/EX14.17/example14_17.sce | d42566e11a4125e44f28a7fdb0e26ffc3785915c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 472 | sce | example14_17.sce | clc
clear
disp('example 14.7')
ca=200 //capacity of unit a
cb=100 //capacity of unit b
ra=1.5 //speed regulation of unit a
rb=3 //speed regulation of unit b
f=50 //frequency
pla=100 //load on each bus
plb=100
raa=ra*f/(pla*ca)
rbb=rb*f/(plb*cb)
pa=rbb*(pla+plb)/(raa+rbb)
pb=pla+plb-pa
tp=pa-pla
printf(" generation at the plant a is %dMW and \n generation at the plant b is %dMW \n transfer power from plant a to b is %dMW",pa,pb,tp) |
e7d7452e6374d8dde84bdf7bf87d8b0f4e1d86dc | 449d555969bfd7befe906877abab098c6e63a0e8 | /1733/CH7/EX7.4/7_4.sce | b72e98ad9ae016717bc835e1f9ae0b7b097d26cb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 492 | sce | 7_4.sce | //7.4
clc;
V=230;
R=60;
Po_max=V^2/R;
disp('When power output is 400')
Po=400;
Duty_cycle=Po/Po_max;
printf("Duty cycle=%.4f", Duty_cycle)
Ton=0.4537;
T=1;
Toff=1-Ton;
Ratio=Ton/Toff;
printf("\nRatio of Ton and Toff when power output is 400=%.4f", Ratio)
disp('When power output is 700')
Po=700;
Duty_cycle=Po/Po_max;
printf("Duty cycle=%.4f", Duty_cycle)
Ton=0.794;
T=1;
Toff=1-Ton;
Ratio=Ton/Toff;
printf("\nRatio of Ton and Toff when power output is 700=%.4f", Ratio) |
6459c150f004f2f77a8ca312828d47098dd912ed | 60878bfd4dc1181177e1585e0fc47b2fbf1f2c6d | /DecisionMakingProcessRIMCa,p+Kir+K+L_predictiveCapabilityPublishedVersion.sce | 195a34e3b37fed4ee92d3dd7c3a10a81cc249eff | [] | no_license | treestreamymw/codeGenerationNonSpikingCBM | 6db136020ffe51550b91004573651e376ac50a56 | 9591e062227945d7458a77e3e85d7b6d7d0e32a1 | refs/heads/master | 2023-07-24T01:15:53.243585 | 2021-07-23T07:52:03 | 2021-07-23T07:52:03 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 5,014 | sce | DecisionMakingProcessRIMCa,p+Kir+K+L_predictiveCapabilityPublishedVersion.sce | //////////////////////////////////////////////////////////
/////////////// Voltage cost function //////////////
//////////////////////////////////////////////////////////
//Boltzmann function
function y=xinf(VH,V12,k)
y=1 ./(1+exp((V12-VH) ./k));
endfunction
//Ca,p+Kir+K,t+L-model
function [Hdot]=HH(t,x,pa)
Hdot=zeros(4,1);
Hdot(1)=(1/pa(22))*(-pa(1)*x(2)*(x(1)-pa(5)) - pa(2)*xinf(x(1),pa(9),pa(13))*(x(1)-pa(6)) - pa(3)*x(3)*x(4)*(x(1)-pa(6)) - pa(4)*(x(1)-pa(7)) + I)
Hdot(2)=(xinf(x(1),pa(8),pa(12))-x(2))/pa(16)
Hdot(3)=(xinf(x(1),pa(10),pa(14))-x(3))/pa(17)
Hdot(4)=(xinf(x(1),pa(11),pa(15))-x(4))/pa(18)
endfunction
//Function that computes the standard deviation
function y=sigma(v)
s=0;
moy=mean(v);
for i=1:length(v)
s=s+(v(i)-moy)^2
end
y=sqrt(s/(length(v)-1));
endfunction
//Cost function voltage for validation
stim=30; //stimulus is set to 30pA
B=A(:,10); //experimental voltage trace relative to 30pA
dev=sigma(A(5000:$,10)); //Noise level (standard deviation) for voltage trace relative to 30pA
//for i=[1:1:size(B,'c')]
// plot2d(t,B(:,i),3)
//end
t=linspace(0,50,12500);
t0=0;
function y=objFuncValid(pa)
tmp=0;
condini = [-38; pa(19); pa(20); pa(21)]
for i=1:length(stim)
c=0;
I=stim(i);
x=ode(condini,t0,t,HH);
V=x(1,:);
for k=1:length(t)
c=c+(V(k)-B(k,i))*(V(k)-B(k,i));
end
c=sqrt(c/length(t))/dev(i);
tmp=tmp+c;
end
y=tmp/length(stim);
endfunction
////////////////////////////////////////////////////
/////////////// Results reading ///////////////
////////////////////////////////////////////////////
result=[]; //concatenation of all final results
pop=[]; // concatenation of all final population
//Results for popSize=400 for Int MonoObj 1st ité + rand/best
for i=3:13;
tmpResult=csvRead('/home/naudin/Documents/article-2/RIMAIYAFDmonoObjRandBestNP=600F=1.5CR=0.3/Results-20210513BiObjectifSSVoltageRIMCa,p+Kir+K+LparalleleUntil25pAfirstIterationRandBestNP=600F=1.5CR=0.3/Results/run_EstimationBiObjectifSSVoltageRIMCa,p+Kir+K+LparalleleUntil25pAfirstIterationRandBest.sce_' + string(i) + '/valFinal.csv');
tmpPop=csvRead('/home/naudin/Documents/article-2/RIMAIYAFDmonoObjRandBestNP=600F=1.5CR=0.3/Results-20210513BiObjectifSSVoltageRIMCa,p+Kir+K+LparalleleUntil25pAfirstIterationRandBestNP=600F=1.5CR=0.3/Results/run_EstimationBiObjectifSSVoltageRIMCa,p+Kir+K+LparalleleUntil25pAfirstIterationRandBest.sce_' + string(i) + '/popFinal.csv');
result=[result; tmpResult];
pop=[pop tmpPop];
// disp(result);
// disp(pop);
end
/////////////////////////////////////////////////////////////////////////
/////////////// All non-dominated solutions (Step 1) ///////////////
/////////////////////////////////////////////////////////////////////////
[f_pareto,X_pareto]=pareto_filter(result,pop')
pop = X_pareto';
//////////////////////////////////////////////////////////////////////////
////// Selecting solution with a correct bifurcation structure //////
//////////////////////////////////////////////////////////////////////////
function y=xinf(VH,V12,k)
y = 1./(1+exp((V12-VH) ./k))
endfunction
function y=alpha(V)
y = gCa.*xinf(V,V12mCa,kmCa)
endfunction
function y=betta(V)
y = gKir.*xinf(V,V12hKir,kKir)
endfunction
function y=delta(V)
y = gK.*xinf(V,V12mK,kmK).*xinf(V,V12hK,khK)
endfunction
function y=fmCa(V)
y = (1/kmCa)*exp((V12mCa-V) ./kmCa).*xinf(V,V12mCa,kmCa)
endfunction
function y=fhKir(V)
y = (1/kKir)*exp((V12hKir-V) ./kKir).*xinf(V,V12hKir,kKir)
endfunction
function y=fmK(V)
y = (1/kmK)*exp((V12mK-V) ./kmK).*xinf(V,V12mK,kmK)
endfunction
function y=fhK(V)
y = (1/khK)*exp((V12hK-V) ./khK).*xinf(V,V12hK,khK)
endfunction
function y=IinfDer(V)
y = alpha(V).*fmCa(V).*(V-ECa) + (delta(V).*fmK(V) + delta(V).*fhK(V) + betta(V).*fhKir(V)).*(V-EK) + alpha(V) + betta(V) + delta(V) + gL
endfunction
vecV=[-100:0.01:50];
popGoodBifStructure=[];
for i=1:size(pop,2)
pa=pop(:,i);
//Model parameters
gCa=pa(1); gKir=pa(2); gK=pa(3); gL=pa(4);
ECa=pa(5); EK=pa(6); EL=pa(7);
V12mCa=pa(8); V12hKir=pa(9); V12mK=pa(10); V12hK=pa(11);
kmCa=pa(12); kKir=pa(13); kmK=pa(14); khK=pa(15);
tmCa=pa(16); tmK=pa(17); thK=pa(18)
mCa0=pa(19); mK0=pa(20); hK0=pa(21);
C=pa(22);
if min(IinfDer(vecV))>0 then
popGoodBifStructure=[popGoodBifStructure pop(:,i)]
end
end
///////////////////////////////////////////////////////////////////////////
/////// Selection of solution that best fit validation trace ////////
///////////////////////////////////////////////////////////////////////////
valBest=objFuncValid(popGoodBifStructure(:,1))
bM=popGoodBifStructure(:,1)
for i=2:size(popGoodBifStructure,2)
if objFuncValid(popGoodBifStructure(:,i))<valBest then
valBest=objFuncValid(popGoodBifStructure(:,i))
bM=popGoodBifStructure(:,i);
end
disp(i)
end
|
e20a1ff25ca032195b59ac94b3c1ca261a50b755 | 717ddeb7e700373742c617a95e25a2376565112c | /821/CH5/EX5.45/5_45.sce | 32eac98734fd6b15867071453daf2cbffc400054 | [] | 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 | 129 | sce | 5_45.sce | a=0.5;//dissociation constant//
Kp=(a^2*P)/(1-a^2);
printf('Total pressure required to bring 50percent dissociation=P=3*Kp');
|
975af2b16c2e289e64fed36088887938594fd4ba | 5f48beee3dc825617c83ba20a7c82c544061af65 | /tests/s/80.tst | 1cf509e107a6e42d2eb3d1d367088c1c7ad7d0eb | [] | no_license | grenkin/compiler | bed06cd6dac49c1ca89d2723174210cd3dc8efea | 30634ec46fba10333cf284399f577be7fb8e5b61 | refs/heads/master | 2020-06-20T12:44:17.903582 | 2016-11-27T03:08:20 | 2016-11-27T03:08:20 | 74,863,612 | 3 | 0 | null | null | null | null | WINDOWS-1251 | Scilab | false | false | 116 | tst | 80.tst | int (*f)(int)[3];
/* ошибка: указатель на функцию, возвращающую массив */
|
b58f3801918c08b34eceb0239809efc902c4b925 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1409/CH8/EX8.20/8_20.sce | c72c9cce9871524ac8c44fefa4a2d6edfde9283a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 476 | sce | 8_20.sce | clc;
//page no 8-60
//Example 8.20
fo=1126;//in kHz
fs=670;//in kHz
V=68;//in micro volts
Q=50;
fi=fo-fs;
disp(+'kHz',fi,'Frequency of the other station fi=');
//Log alpha=20/20
alpha=10^1;
rho=sqrt((alpha^2-1)/Q^2)
disp(rho,'rho=');
//rho=(fsi/fs)-(fs/fsi);
//fsi=fs+2*fi; fs+2*456
//rho=[(fs+912)/fs]-[fs/(fs+912)]
//0.199=[(fs+912)/fs]-[fs/(fs+912)]
//Solving for fs, we get
fs=8500;//in kHz
S=V/alpha;
disp(+'micro Volt',S,'Strength of the signal=');
|
671bce56f008815c0f45c42e2af20cd6cb796c3d | 49c332fb095450edccbd7e42e057fa0b57157045 | /test/WW05.prev.tst | 70c833aec663155029d2000d25cca98b358398d9 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | gfis/numword | 836edd4693d90ede0f37ebcad01f8202362f3c74 | 9fbef644f2142ed7db9b4fa696b5a2388181f7b9 | refs/heads/master | 2022-02-04T19:09:38.860895 | 2022-01-28T14:43:02 | 2022-01-28T14:43:02 | 5,777,703 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 5,728 | tst | WW05.prev.tst | <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="application/xhtml+xml;charset=UTF-8" />
<meta name="robots" content="noindex, nofollow" />
<link rel="stylesheet" title="common" type="text/css" href="stylesheet.css" />
<title>Numword Main Page</title>
</head>
<body>
<!-- function w, lang3 deu, digits="-->
<h2>Number Words</h2>
<form action="servlet" method="post">
<input type = "hidden" name="view" value="index" />
<table cellpadding="8">
<tr><td width="100">Language<br />
<select name="lang3" size="40">
<option value="ara">ara - Arabic (ديسمبر)</option>
<option value="cze">cze - Czech (čeština)</option>
<option value="chi">chi - Chinese 中文 (zhōngwén)</option>
<option value="dan">dan - Danish (Dansk)</option>
<option value="deu" selected>deu - German (Deutsch)</option>
<option value="eng">eng - English</option>
<option value="epo">epo - Esperanto</option>
<option value="est">est - Estonian</option>
<option value="fin">fin - Finnish</option>
<option value="fra">fra - French (Français)</option>
<option value="gle">gle - Irish (Gaeilge)</option>
<option value="geo">geo - Georgian</option>
<option value="gre">gre - Greek (Ελληνικά)</option>
<option value="hun">hun - Hungarian (Magyar)</option>
<option value="ice">ice - Icelandic (íslenska)</option>
<option value="ita">ita - Italian (Italiano)</option>
<option value="jbo">jbo - Lojban</option>
<option value="jpn">jpn - Japanese</option>
<option value="kor">kor - Korean</option>
<option value="lat">lat - Latin (Latinum)</option>
<option value="lav">lav - Latvian (Latviešu)</option>
<option value="lit">lit - Lithuanian (Lietuvių)</option>
<option value="nld">nld - Dutch (Nederlands)</option>
<option value="nor">nor - Norwegian (Norsk)</option>
<option value="pol">pol - Polish (Polski)</option>
<option value="por">por - Portuguese (Português)</option>
<option value="roh">roh - Rumantsch Grischun</option>
<option value="ron">ron - Romanian (Română)</option>
<option value="rus">rus - Russian (Русский)</option>
<option value="slo">slo - Slovak</option>
<option value="slv">slv - Slovenian (Slovenščina)</option>
<option value="spa">spa - Spanish (Español)</option>
<option value="swe">swe - Swedish (Svenska)</option>
<option value="tha">tha - Thai (ไทย)</option>
<option value="tlh">tlh - Klingon (tlhIngan-Hol)</option>
<option value="tur">tur - Turkish (Türkçe)</option>
<option value="vie">vie - Vietnamese (tiếng Việt)</option>
<option value="braille">braille - Braille Code</option>
<option value="morse">morse - Morse Code</option>
<option value="roman">roman - Roman Numbers</option>
</select>
</td>
<td width="100">Spell<br />
<select name="function" size="14">
<option value="c">Digits as Word</option>
<option value="C">Word as Digits</option>
<option value="m">Month</option>
<option value="m3">Month's Abbreviation</option>
<option value="w" selected>Weekday</option>
<option value="w2">Weekday's Abbreviation</option>
<option value="s">Season</option>
<option value="g">Greeting</option>
<option value="h0">Time of Day - offical</option>
<option value="h1">Time - variant 1</option>
<option value="h2">Time - variant 2</option>
<option value="h3">Time - variant 3</option>
<option value="d">Cardinal Direction</option>
<option value="p">Planet</option>
</select>
<br />
<br />
<a title="doc" href="docs/documentation.html">Documentation</a><br />
<a title="developer" href="docs/developer.html">Developer Hints</a><br />
<a title="bugs" href="docs/bugs.html">Bugs</a><br />
<a title="unicode" href="servlet?view=uniblock&digits=01">Unicodes</a><br />
<a title="wiki" href="http://www.teherba.org/index.php/Numword" target="_new">Wiki</a><br />
<a title="github" href="https://github.com/gfis/numword" target="_new">Git Repository</a><br />
<a title="api" href="docs/api/index.html">Java API</a><br />
<a title="manifest" href="servlet?view=manifest">Manifest</a><br />
<a title="license" href="servlet?view=license">License</a><br />
<a title="notice" href="servlet?view=notice">References</a><br />
<p />If the <em>Digits/Word</em> field is left empty, all months, weekdays etc. are shown,
and for "Digits as Word" a list of representative test numbers is spelled.
</td>
<td width="100" valign="top">Digits / Word<br />
<input name="digits" size="60" value="" /><br /> <input type="submit" value="Submit" />
<h2>deu - German (Deutsch)</h2>
<table>
<tr><td align="right" class="large">1</td><td class="large">Montag</td></tr>
<tr><td align="right" class="large">2</td><td class="large">Dienstag</td></tr>
<tr><td align="right" class="large">3</td><td class="large">Mittwoch</td></tr>
<tr><td align="right" class="large">4</td><td class="large">Donnerstag</td></tr>
<tr><td align="right" class="large">5</td><td class="large">Freitag</td></tr>
<tr><td align="right" class="large">6</td><td class="large">Samstag</td></tr>
<tr><td align="right" class="large">7</td><td class="large">Sonntag</td></tr>
</table>
</td>
</tr>
</table>
</form>
<!-- language="en", features="quest" -->
<p><span style="font-size:small">
Questions, remarks: email to <a href="mailto:punctum@punctum.com?&subject=Numword">Dr. Georg Fischer</a></span></p>
</body></html>
|
8333f1af50c5f1dbb745397bf5b1cd1e68f8578c | 449d555969bfd7befe906877abab098c6e63a0e8 | /61/CH10/EX10.5/ex10_5.sce | 55d75a41cb90c6709353f3fd7be3adcf1ac1d671 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 526 | sce | ex10_5.sce | //ex10.5
R_C=10*10^3;
C3=0.1*10^-6;
R_L=10*10^3;
A_v_mid=50;
f_c=1/(2*%pi*(R_L+R_C)*C3);
disp(f_c,'lower critical frequency in hertz')
//at midrange capacitive reactance is zero
X_C3=0;
attenuation=R_L/(R_L+R_C);
disp(attenuation,'attenuation at midrange frequency')
//at critical frequency, capacitive reactance equals total resistance
X_C3=R_L+R_C;
attenuation=R_L/(sqrt((R_C+R_L)^2+X_C3^2));
disp(attenuation,'attenuation at critical frequency')
A_v=0.707*A_v_mid;
disp(A_v,'gain at critical frequency') |
ec1c893ad5b68dd3440af1fc602427823669dd22 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2753/CH3/EX3.9/Ex3_9.sce | 2285cc03606af189fdd74a1190d09c75c58d773f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 128 | sce | Ex3_9.sce | //Example 3.9:
clc;
clear;
close;
//given data :
alfa=0.98;// constant
Beta=alfa/(1-alfa);
format('v',4)
disp(Beta,"Beta = ")
|
2da8dfeaa3759ccad92bbc547537daf22286e340 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1938/CH2/EX2.18/2_18.sce | 4766737b529c9348ad20ca21dbc8ad21138a092e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 421 | sce | 2_18.sce | clc,clear
printf('Example 2.18\n\n')
V=200
R_a=0.5, R_se=0.2, R_x=0.2 //armature and series field resistance; extra resistance
I_a1=20, I_1=I_a1 , I_se1=I_a1
I_a2=20, I_2=I_a2
I_se2= I_2 *(R_x/(R_se+R_x))
E_b1 = V -I_a1*R_a - I_a1*R_se
E_b2 = V -I_a2*R_a - I_se2*R_se
phi2_by_phi1=70/100
N_1=1000
N_2=N_1*(E_b2/E_b1) /phi2_by_phi1 //N (prop.) E_b/phi
printf('Required speed is %.2f r.p.m',N_2)
|
b791c4f9fe8eba0ecf3f145059934446c587e66d | 449d555969bfd7befe906877abab098c6e63a0e8 | /3754/CH19/EX19.10/19_10.sce | 15f674963178f7bb54901e64ef8e06ee27519e7f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 889 | sce | 19_10.sce | clear//
//Case (a):
//Variables
f = 50.0 //Frequency (in Hertz)
g = 0.05 //Ripple factor
RL = 100.0 //Resistance (in ohm)
w = 2 * %pi * f //Angular frequency (in radians per second)
//Calculation
L = RL / (3 * 2**0.5 * w * g) //Inductance (in Henry)
//Result
printf("\n Value of inductance is %0.1f H.",L)
//Case (b):
//Variables
f = 400.0 //Frequency (in Hertz)
g = 0.05 //Ripple factor
RL = 100.0 //Resistance (in ohm)
w = 2 * %pi * f //Angular frequency (in radians per second)
//Calculation
L = RL / (3 * 2**0.5 * w * g) //Inductance (in Henry)
//Result
printf("\n New Value of inductance is %0.3f H.",L)
|
068f03aff09de0b845f49b1124ba0e96aefb531b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1430/CH15/EX15.8/exa15_8.sce | 562f6923ec60196b35944c58420d7b75e1beead0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 916 | sce | exa15_8.sce | // Example 15.8
// Calculating the Complete Response
// Considering the circuit of example 15.7
k=2;
t=0:0.001:5;
s=%s;
B=[-8,0;3,1];
D=[0,0;2,0];
E=[0];
W_adj=[s,-5;3,s+8]; // adj[s*I-A]
P_s=(s+3)*(s+5); // characteristic polynomials
q_1_bef=2;//q_1(0^-)
q_2_bef=-4;//q_2(0^-)
x_2=0;
// x_1=10*t;
q_bef=[2;-4];
X_s=[10/s^2;0];
//The Transformed state vector is
Q_s=(1/P_s)*(W_adj)*{q_bef+B*X_s};
// Writing down two elements of Q_s
Q_s1=(2*s^3+20*s^2-80*s-150)/((s^2)*(s+3)*(s+5));
//inverse laplace transform of Q_s1
q_1=-10*t+12*exp(-3*t)-10*exp(-5*t);
Q_s2=(-4*s^2-26*s+30)/(s*(s+3)*(s+5));
// inverse laplace transform of Q_s2
q_2= 2-12*exp(-3*t)+6*exp(-5*t);
// Since E=0, the resulting output are given by
// y=C*q+D*x , from which
y_1=6*q_1+10*q_2;
y_2=-2*q_2+20*t;
plot(t,y_1'-r',t,y_2,'-g')
xlabel('t')
ylabel('y(t)')
title("Siganl Waveform")
h1=legend(['y_1';'y_2'])
|
d5188f54e295d05327a8af744ac3abe313157552 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2837/CH20/EX20.5/Ex20_5.sce | 90ae8c5129f6530b5ed48e100f1e450620ff443e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 425 | sce | Ex20_5.sce | clc
clear
//Initalization of variables
h6=157.933 //Btu/lb
s2=0.11626
sf=0.16594
sfg=0.14755
hf=139.095 //Btu/lb
hfg=126.98 //Btu/lb
h5=12.016 //Btu/lb
h2=1201.1 //Btu/lb
h1=69.7 //Btu/lb
w=348.8 //Btu/lb
m=0.0745 //lb
//calculations
x7=-(s2-sf)/sfg
h7=hf-x7*hfg
dh6=h6-h7
mr=(h7-h5)/(h2-h1)
work=w*m
tw=work+dh6
dh65=h6-h5
eff=tw/dh65 *100
//results
printf("Thermal efficiency = %.2f percent",eff)
|
8b58d8c3f29225f202a9338c44f87c0c38110556 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.2/macros/percent/%ce.sci | f6f10defae8c5770e373ac0c9d7e18f86e178a2c | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 470 | sci | %ce.sci | function f=%ce(i,j,f)
// %ce(i,j,f) extrait la sous matrice, definie par les indices de lignes
// donnes dans le vecteur i et les indices de colonnes donnes dans le
//vecteur j, de la matrice de chaines f. i et j peuvent etre des vecteur
// de booleens f(i,j) est alors f(find(i),find(j))
//!
[lhs,rhs]=argn(0)
if rhs==2 then
if type(i)==4 then i=find(i),end
f=j(i)
else
if type(i)==4 then i=find(i),end
if type(j)==4 then j=find(j),end
f=f(i,j)
end
//end
|
dfda007ca69d9c5607c666f604dd5c775ffdd1d1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2084/CH3/EX3.9w/3_9w.sce | ba7fa1827fd651319951c8408de937d4441be390 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 846 | sce | 3_9w.sce | //developed in windows XP operating system 32bit
//platform Scilab 5.4.1
clc;clear;
//example 3.9w
//drawing graph of x versus t, v versus t and a versus t
//given data
h=19.6//height(in m) from where the ball is dropped
//evaluating value for equation x=(u*t)+((1/2)*a*t^2)
//calculation
t=[0 1 2 2 3 4]
x=[0 4.9 19.6 19.6 4.9 0]//values of x(in m) obtained on evaluating equation x=(u*t)+((1/2)*a*t^2) along with direction of motion
v=[0 9.8 19.6 -19.6 -9.8 0]//values of v(in m) obtained on evaluating equation v=u+(a*t) along with direction of motion
a=9.8//constant acceleration(m/s^2)
subplot(221);
plot(t,x);
xlabel('time(in s)')
ylabel('distance(in m)')
subplot(222);
plot(t,v);
xlabel('time(in s)')
ylabel('velocity(in m/s)')
subplot(223);
plot(t,a*ones(1,length(t)));
xlabel('time(in s)')
ylabel('acceleration (in m/s^2)') |
02bfd9f48576dbe88b07c2f0b3bf4e3713542c33 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1967/CH5/EX5.1/5_1.sce | 2fe778db8d74b9d2f26426fea242e7fd438d1cb5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 191 | sce | 5_1.sce | clc
//initialisation of variables
clear
Q1= -1227 //kcal
R= 2*10^-3 //kcal
T= 25 //C
dn= -2
//CALCULATIONS
Qp= Q1+R*(273+T)*dn
//RESULTS
printf ('Heat of reaction = %.1f kcal',Qp)
|
501d303c4aab72dbd4b9a6bbd57b682316d19cc1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /446/CH12/EX12.6/12_6.sce | 85b7c1c9befb33c2b845c0b5faee2c7a90ac1305 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 249 | sce | 12_6.sce | clear
clc
disp('Exa-12.6');
t1=4.55*10^9;t2=7.04*10^8; //given values of time at 2 different instants
age=t1/t2;
r=2^age;
printf('The original rock hence contained %.1f*Na atoms of 235U where Na is the Avagadro''s Number=6.023*10^23',r); |
ba83560f484330644966858d403cb7317799bff7 | 68e53df229b123d7681a4f7fa4db43b4982d5362 | /bandwidth.sci | a776e5184d7765577d82de16f1eafda2973e6027 | [] | no_license | yeoleparesh/Control-system | 06c30e594d51fec7a8ffabc452a7866b38604a23 | dee7fbfd3c2c46cc1d4d0a3cb8af45d918da972b | refs/heads/master | 2021-01-17T12:38:05.661769 | 2019-01-03T12:03:53 | 2019-01-03T12:03:53 | 59,283,431 | 0 | 3 | null | null | null | null | UTF-8 | Scilab | false | false | 6,715 | sci | bandwidth.sci | function[fw]=bandwidth(sys,varargin)
//
//Calling Sequence
// fw=bandwidth(sys) ----for SISO transfer function CT,DT and state space --dbdrop=-3db
// fw=bandwidth(sys,dbdrop) --computes bandwidth at given dbdrop
// fw=bandwidth(sys,[],1) --for SISO array --dbdrop=-3db
// fw=bandwidth(sys,dbdrop,1) ---for SISO array at given dbdrop
//Parameters
// sys- SISO system which can be continuous as well as Discrete time . It can either be in transfer function form or state-space form.
// dbdrop - It is the desired drop at which the bandwidth has to be calculated.
//Description
// function is to find bandwidth of CT system,DT system,SS system for SISO type of systems only.
// [fw]=bandwidth(sys,dbdrop) determines the bandwidth of the system at the given dbdrop.
// if array of siso system is to be passed then call as:-fw=bandwidth(sys,dbdrop,1)
// Note:-"dbdrop must be negative value".
//Examples
// 1.a1=ssrand(1,1,2);
// y=bandwidth(a1);
// 2.s=poly(0,'s');
// sys=syslin('c',(s+2)/(s^4+3*s+12));
// y2=bandwidth(sys);
//See also
// horner,dcgain.
//Authors
// Rutuja Moharil & Paresh Yeole
//Bibliography
// 1. https://en.wikipedia.org/wiki/Bandwidth
[lhs rhs]=argn(0);
if rhs<1 then
error("bandwidth:input parameter as a dynamic system is expected");
end
n=length(varargin);
if((n>=1 & ( varargin(1)==%nan | varargin(1)>0) ) ) then
if(n==2 & varargin(1)==[]) then
else
error(msprintf(_("dbdrop must be real and negative:bandwidth")));
end
end
if(n==0 | (n==2 & varargin(1)==[])) then
dbdrop=0.7079;
//if(varargin(1)==[]) then
//dbdrop=0.7079;
elseif(n==1 | n==2) then
dbdrop=10^(varargin(1)/20);
end
select typeof(sys)
case "rational" then
if(n==2 & varargin(2)==1) then
o=0;
else
o=1;
end
case "state-space" then
sys=ss2tf(sys)
o=1;
case "constant" then
fw=0;
return;
else
msprintf("\n")
error(97,1),
end;
//bandwidth is defined for only SISO systems.
if (or(size(sys)<>[1 1]) & o==1) then
// if ~(typeof(sum(sys)) == "rational") then
error(msprintf(_("\n %s: Wrong size for input argument #%d: Single input, single output system expected.\n"),"bandwidth",1))
///end
end
//[p, m] = size (sys);
// if (p*m <> 1) then
//if (typeof(sum(sys)) == "rational") then
// error(msprintf(_("\n %s: Wrong size for input argument #%d: Single input, single output system expected.\n"),"bandwidth",1))
//end
// end
w=poly(0,'w');
el=1e-7;
//niw=((real(horner(sys.num,%i*w)))^2)+((abs(imag(horner(sys.num,%i*w))))^2);
//diw=((real(horner(sys.den,%i*w)))^2)+((abs(imag(horner(sys.den,%i*w))))^2);
if(sys.dt=='c') then
//t=horner(sys,0);
if(o==1) then
try
t=horner(sys,0);
catch
fw=%nan;
return;
end
// if(isinf(t)) then
// fw=NaN;
//elseif (t==0) then
// fw= Inf;
// else
niw=(((horner(sys.num,%i*w))))*(conj(horner(sys.num,%i*w)));
diw=(((horner(sys.den,%i*w))))*(conj(horner(sys.den,%i*w)));
p=(roots(niw-((t*dbdrop)^2)*diw));
fw=real(p(find((abs(imag(p))<el)&real(p)>0)));
//end
else
// aa=size(sys);
y=ndims(sys);
//if(y>2)then
if(y==3) then
for i=1:size(sys,'r')
for j=1:size(sys,'c')
for k=1:size(sys,3)
try
t=horner(sys(i,j,k),0);
catch
fw(i,j,k)=%nan;
continue;
end
// if(isinf(t)) then
// fw=NaN;
//elseif (t==0) then
// fw= Inf;
//
//else
niw=(((horner(sys(i,j,k).num,%i*w))))*(conj(horner(sys(i,j,k).num,%i*w)));
diw=(((horner(sys(i,j,k).den,%i*w))))*(conj(horner(sys(i,j,k).den,%i*w)));
p=(roots(niw-((t*dbdrop)^2)*diw));
k1=real(p(find((abs(imag(p))<el)&real(p)>0)));
if(k1==[]) then
fw(i,j,k)=%inf;
else
fw(i,j,k)=k1;
end
//end
end
end
end
//end
else
for i=1:size(sys,'r')
for j=1:size(sys,'c')
//for k=1:size(sys,3)
try
t=horner(sys(i,j),0);
catch
fw(i,j)=%nan;
continue;
end
//if(isinf(t)) then
// fw=NaN;
//elseif (t==0) then
// fw= Inf;
//
// else
niw=(((horner(sys(i,j).num,%i*w))))*(conj(horner(sys(i,j).num,%i*w)));
diw=(((horner(sys(i,j).den,%i*w))))*(conj(horner(sys(i,j).den,%i*w)));
p=(roots(niw-((t*dbdrop)^2)*diw));
k1=real(p(find((abs(imag(p))<el)&real(p)>0)));
if(k1==[]) then
fw(i,j)=%inf;
else
fw(i,j)=k1;
end
end
end
end
end
//end
else
if(sys.dt=='d') then
q=1;
else
q=sys.dt
end
if(o==1) then
try
t=horner(sys,1);
catch
fw=%nan;
end;
//else
//z=%e^((%i*w)*q);
//g=horner(sys.num,z)*horner(sys.num,1/z);
//f=horner(sys.den,z)*horner(sys.den,1/z);
//u=roots(((gain*t)^2)*f-g);
//fw=real(u(find((abs(imag(u))<el)&real(u)>0)));
z=poly(0,varn(sys.den));
sm=simp_mode();
simp_mode(%f);
hh=sys*horner(sys,1/z)-(t*dbdrop)^2;
simp_mode(sm);
//find the numerator roots
z=roots(hh.num,"e");
z(abs(abs(z)-1)>el)=[];// retain only roots with modulus equal to 1
w=log(z)/(%i*q);
ws=real(w(abs(imag(w))<el&real(w)>0)); //frequency points with unitary modulus
fw = ws;
else
for i=1:size(sys,'r')
for j=1:size(sys,'c')
for k=1:size(sys,3)
try
t=horner(sys(i,j,k),1);
catch
fw(i,j,k)=%nan;
continue;
end
z=poly(0,varn(sys(i,j,k).den));
sm=simp_mode();
simp_mode(%f);
hh=sys(i,j,k)*horner(sys(i,j,k),1/z)-(t*dbdrop)^2;
simp_mode(sm);
//find the numerator roots
z=roots(hh.num,"e");
z(abs(abs(z)-1)>el)=[];// retain only roots with modulus equal to 1
w=log(z)/(%i*q);
ws=real(w(abs(imag(w))<el&real(w)>0)); //frequency points with unitary modulus
fw(i,j,k) = ws;
end
end
end
end
//if fw=[] then it means either the bandwidth is finite or band
//end
end
if(fw==[]) then
fw=%inf;
end;
endfunction
|
b18a06896fc14017ea4a055fe534aa944133c709 | 27e7499ddd3bb1d3c73a575f3555bac816e2c2b1 | /testovac/task_data/order/00.tst | b08ad704839f7cb633ad000f169583590eb136b5 | [] | no_license | mirelon/ksp-editor | eeccf1ca22e6808cf10d49d03a2bbef53ab5b305 | c750d25154a6b8cb7e765ce17e9bc5ccfdc9bfd8 | refs/heads/master | 2019-01-02T08:32:00.363803 | 2014-09-23T14:02:06 | 2014-09-23T14:02:06 | 33,381,936 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 40 | tst | 00.tst | 339322
(
0
(
)
(
)
)
(
919662
(
)
(
)
)
|
7118443cafc9d27f761d57277d38d89fd020a8e7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3831/CH13/EX13.4/Ex13_4.sce | bb8089c27a1d3a6bb5ed9516f73fe39af6d552e0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,654 | sce | Ex13_4.sce | // Example 13_4
clc;funcprot(0);
// Given data
D=40.0;// inch
L=10.0;// ft stroke
W_actual=1400;// hp
n=36.0;// rpm
n_s_p=0.650;// The isentropic efficiency of a pump
n_s_pm=0.550;// The isentropic efficiency of an engine
d_fw=30.0;// The diameter of the flywheel in ft
w=56.0;/// tons
// Calculation
// (a)
// Station 1-Engine inlet
p_1=100.0;// psia
x_1=1.00;// The quality of steam at Station 1
h_1=1187.8;// Btu/lbm
s_1=1.6036;// Btu/lbm.R
// Station 2s-Engine exit
p_2s=14.7;// psia
s_2s=s_1;// Btu/lbm.R
s_f2=0.3122;// Btu/lbm.R
s_fg2=1.4447;// Btu/lbm.R
x_2s=(s_2s-s_f2)/s_fg2;// The quality of steam at Station 2s
h_f2=180.1;// Btu/lbm
h_fg2=970.4;// Btu/lbm
h_2s=h_f2+(x_2s*h_fg2);// Btu/lbm
// Station 3-Condenser exit
p_3=p_2s;// psia
x_3=0;// The quality of steam at Station 3
h_3=h_f2;// Btu/lbm
v_3=0.01672;// ft^3/lbm
// Station 4s-Boiler inlet
p_4s=p_1;// psia
// s_4s=s_3;
n_T_max=((h_1-h_2s-(v_3*(p_4s-p_3)))*(144/118.16))/((h_1-h_3-(v_3*(p_4s-p_3)))*(144/118.16));// The maximum isentropic efficiency of the system
n_T_max=n_T_max*100;// %
// (b)
n_T_Rankine=(((h_1-h_2s)*n_s_pm)-((v_3*(p_4s-p_3)/n_s_p)*(144/118.16)))/((h_1-h_3)-((v_3*(p_4s-p_3)/n_s_p)*(144/118.16)));// The isentropic efficiency of the Rankine system
n_T_Rankine=n_T_Rankine*100;// %
// (c)
mdot=(W_actual*2545)/((h_1-h_2s)*n_s_pm);// lbm/h
printf("\n(a)The maximum isentropic efficiency of the Rankine system,(n_T)_maximum Rankine=%2.1f percentage \n(b)The isentropic efficiency of the Rankine system,(n_T)_Rankine=%1.2f percentage \n(c)The mass flow rate of steam required,mdot=%5.0f lbm/h",n_T_max,n_T_Rankine,mdot);
|
3713a1532cb88f9958f8eccdaa554dba264dc299 | a4633944be5b5077362ba6447966bb694c6647ee | /自由課題/decoder.sci | cdbac4380e2e61c73b19175d67073a71824632c5 | [] | no_license | zeno0119/37-communication | 79e47660c2ef7cfe08f25457ea577be3f850d000 | b879c29b9b21bf226be24749d95e06fc875e02f5 | refs/heads/master | 2022-12-18T02:53:01.006966 | 2020-09-11T05:45:14 | 2020-09-11T05:45:14 | 293,683,600 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,397 | sci | decoder.sci | function [wave] = DeconvFilt(waveform)
//最初の1秒のデータを切り出して逆畳み込みフィルタを形成して送る
t = (0:0.8 * fs - 1)/fs
pilot_wave = cat(2, sin(t * 2 * %pi * 5000), zeros(1, fs * sleep_time))
deconv_filt = fft(waveform(1:fs)) ./ fft(pilot_wave)
deconv_filt(find(abs(deconv_filt) >= 200)) = 1
wave = []
waveform = waveform(fs + 1: $)
for i = 0:length(waveform) / fs - 1
//各部分ごとにフィルタを適用して出力
data = fft(waveform(i * fs + 1: (i + 1) * fs) ./ deconv_filt)
wave = cat(2, wave, data)
end
endfunction
function [bitary] = WaveReceiver(waveform)
waveform = waveform / max(waveform)
//逆畳み込みフィルタを作成して適用
// waveform = DeconvFilt(waveform)
//とりあえずlen_t秒ごとにデータを切り出して計算
z = poly(0, "z")
p = z^-96 / (1 - 0.9 * z^-96) //コムフィルタ
n = 1:bitscale;
//plot(abs(fft(waveform)) ** 2)
bitary = []
for i = 0:(length(waveform) / fs / len_t) - 1
target = repmat(waveform(i * fs * len_t + 1: (i + 1) * fs * len_t), [1, 1/ len_t]);
target = flts(target, p)
target_f = 20 * log10(abs(fft(target)) ** 2);
if i == 0
//plot(target_f)
end
freq_ary = (find(target_f >= th) - 1)
//disp("66dB以上の所", freq_ary)
freq_ary = freq_ary(find(freq_ary <= f_base * n($)))
// disp("lower than 2500Hz", freq_ary)
freq_ary = freq_ary(find(freq_ary / f_base == int(freq_ary / f_base)))
// disp("500の倍数", freq_ary)
ary_idx = find(freq_ary ~= 0)
// disp("0じゃない",freq_ary(ary_idx))
ary = freq_ary(ary_idx)/f_base
// disp(ary)
arybit(1, 1:bitscale) = %f
arybit(ary) = %t
bitary = cat(1, bitary, arybit)
end
endfunction
function [str] = BitDecoder(bitary)
str = []
for i = 1:length(bitary(:, 1))
str = cat(1, str, tf_to_alp_table(vectorfind(alp_to_tf_table, bitary(i, :), 'r')))
end
str = strcat(str)
endfunction
function [bitary] = BitdeMultiPlexer(muxBit)
bitary = []
for i = 1:length(muxBit(:, 1))
bitary = cat(1, bitary, muxBit(i, 1:$ / 2), muxBit(i, $/2+1:$))
end
endfunction
function [str] = Decoder(waveform)
str = BitDecoder(WaveReceiver(waveform))
endfunction
|
d30a993c501f0f7958f07e247612d1cc998887c2 | 2ba48648eefadee113a7c2f5d608cab5209c3a8b | /Unit&Func Test/单元测试文档/CagOS单元测试结果/LIBC/testcase/strtod.tst | fa7efaae0dcdedc13178a978c384a70f87d941e1 | [] | no_license | wangdong412/Consen-SIS | 879762175575d0a62f26ec1effeb46c3fd62e3e8 | bca3fac35c961c3558a3438bca55e6d20825da3a | refs/heads/master | 2020-07-11T05:17:18.814104 | 2019-08-27T09:41:41 | 2019-08-27T09:41:41 | 204,450,874 | 1 | 5 | null | null | null | null | UTF-8 | Scilab | false | false | 22,799 | tst | strtod.tst | -- VectorCAST 6.4c (02/03/16)
-- Test Case Script
--
-- Environment : LIBC
-- Unit(s) Under Test: abort1 abs atof atoi atol bLib memchr memcmp memcpy memmove memset ns16550 qsort rand random random_r strcat strchr strcmp strcpy strlcat strlcpy strlen strncat strncmp strncpy strpbrk strspn strtod strtok strtok_r strtol strtoul
--
-- Script Features
TEST.SCRIPT_FEATURE:C_DIRECT_ARRAY_INDEXING
TEST.SCRIPT_FEATURE:CPP_CLASS_OBJECT_REVISION
TEST.SCRIPT_FEATURE:MULTIPLE_UUT_SUPPORT
TEST.SCRIPT_FEATURE:MIXED_CASE_NAMES
TEST.SCRIPT_FEATURE:STATIC_HEADER_FUNCS_IN_UUTS
--
-- Unit: strtod
-- Subprogram: is_real
-- Test Case: real1
TEST.UNIT:strtod
TEST.SUBPROGRAM:is_real
TEST.NEW
TEST.NAME:real1
TEST.BASIS_PATH:1 of 1
TEST.NOTES:
No branches in subprogram
TEST.END_NOTES:
TEST.VALUE:strtod.is_real.x:<<MIN>>
TEST.EXPECTED:strtod.is_real.return:0
TEST.END
-- Test Case: real2
TEST.UNIT:strtod
TEST.SUBPROGRAM:is_real
TEST.NEW
TEST.NAME:real2
TEST.NOTES:
No branches in subprogram
TEST.END_NOTES:
TEST.VALUE:strtod.is_real.x:<<MAX>>
TEST.EXPECTED:strtod.is_real.return:0
TEST.END
-- Test Case: real3
TEST.UNIT:strtod
TEST.SUBPROGRAM:is_real
TEST.NEW
TEST.NAME:real3
TEST.NOTES:
No branches in subprogram
TEST.END_NOTES:
TEST.VALUE:strtod.is_real.x:0.0
TEST.EXPECTED:strtod.is_real.return:1
TEST.END
-- Test Case: real4
TEST.UNIT:strtod
TEST.SUBPROGRAM:is_real
TEST.NEW
TEST.NAME:real4
TEST.NOTES:
No branches in subprogram
TEST.END_NOTES:
TEST.VALUE:strtod.is_real.x:-112.345234
TEST.EXPECTED:strtod.is_real.return:1
TEST.END
-- Test Case: real5
TEST.UNIT:strtod
TEST.SUBPROGRAM:is_real
TEST.NEW
TEST.NAME:real5
TEST.NOTES:
No branches in subprogram
TEST.END_NOTES:
TEST.VALUE:strtod.is_real.x:112.345234
TEST.EXPECTED:strtod.is_real.return:1
TEST.END
-- Subprogram: strtod
-- Test Case: strtod
TEST.UNIT:strtod
TEST.SUBPROGRAM:strtod
TEST.NEW
TEST.NAME:strtod
TEST.BASIS_PATH:1 of 19
TEST.NOTES:
This is an automatically generated test case.
Test Path 1
(1) while (((((*p == 32 || *p == 9) || *p == 10) || *p == 13) || *p == 12) || *p == 11) ==> FALSE
(3) case (*p) ==> 43
(4) while (*p >= 48 && *p <= 57) ==> FALSE
(5) if (*p == 46) ==> FALSE
(7) if (num_digits == 0) ==> TRUE
Test Case Generation Notes:
Cannot set p due to assignment
Cannot set local variable p in branch 4
Cannot set p due to assignment
Cannot set local variable p in branch 5
Cannot set num_digits due to assignment
TEST.END_NOTES:
TEST.VALUE:strtod.strtod.str:<<malloc 1>>
TEST.VALUE:strtod.strtod.endptr:<<malloc 1>>
TEST.EXPECTED:strtod.strtod.return:0.0
TEST.END
-- Test Case: strtod10
TEST.UNIT:strtod
TEST.SUBPROGRAM:strtod
TEST.NEW
TEST.NAME:strtod10
TEST.BASIS_PATH:10 of 19
TEST.NOTES:
This is an automatically generated test case.
Test Path 10
(1) while (((((*p == 32 || *p == 9) || *p == 10) || *p == 13) || *p == 12) || *p == 11) ==> FALSE
(3) case (*p) ==> 43
(4) while (*p >= 48 && *p <= 57) ==> FALSE
(5) if (*p == 46) ==> FALSE
(7) if (num_digits == 0) ==> FALSE
(8) if negative ==> FALSE
(9) if (*p == 101 || *p == 69) ==> TRUE
(11) case (*(++p)) ==> 43
(14) if (exponent < -1021 || exponent > 1024) ==> TRUE
Test Case Generation Notes:
Cannot set p due to assignment
Cannot set local variable p in branch 4
Cannot set p due to assignment
Cannot set local variable p in branch 5
Cannot set num_digits due to assignment
Cannot set negative due to assignment
Cannot set p due to assignment
Cannot set local variable p in branch 9
Cannot set switch condition (*(++p)) in branch 11
Cannot set p due to assignment
Cannot set local variable p in branch 12
Cannot set negative due to assignment
Cannot set exponent due to assignment
TEST.END_NOTES:
TEST.VALUE:strtod.strtod.str:<<malloc 9>>
TEST.VALUE:strtod.strtod.str:"-1234.56"
TEST.VALUE:strtod.strtod.endptr:<<null>>
TEST.EXPECTED:strtod.strtod.return:-1234.56
TEST.END
-- Test Case: strtod11
TEST.UNIT:strtod
TEST.SUBPROGRAM:strtod
TEST.NEW
TEST.NAME:strtod11
TEST.BASIS_PATH:11 of 19
TEST.NOTES:
This is an automatically generated test case.
Test Path 11
(1) while (((((*p == 32 || *p == 9) || *p == 10) || *p == 13) || *p == 12) || *p == 11) ==> FALSE
(3) case (*p) ==> 43
(4) while (*p >= 48 && *p <= 57) ==> FALSE
(5) if (*p == 46) ==> FALSE
(7) if (num_digits == 0) ==> FALSE
(8) if negative ==> FALSE
(9) if (*p == 101 || *p == 69) ==> TRUE
(11) case (*(++p)) ==> 43
(13) if negative ==> TRUE
(14) if (exponent < -1021 || exponent > 1024) ==> TRUE
Test Case Generation Notes:
Cannot set p due to assignment
Cannot set local variable p in branch 4
Cannot set p due to assignment
Cannot set local variable p in branch 5
Cannot set num_digits due to assignment
Cannot set negative due to assignment
Cannot set p due to assignment
Cannot set local variable p in branch 9
Cannot set switch condition (*(++p)) in branch 11
Cannot set p due to assignment
Cannot set local variable p in branch 12
Cannot set negative due to assignment
Cannot set exponent due to assignment
TEST.END_NOTES:
TEST.VALUE:strtod.strtod.str:<<malloc 14>>
TEST.VALUE:strtod.strtod.str:"12345.67afdsf"
TEST.VALUE:strtod.strtod.endptr:<<null>>
TEST.EXPECTED:strtod.strtod.return:12345.7
TEST.END
-- Test Case: strtod12
TEST.UNIT:strtod
TEST.SUBPROGRAM:strtod
TEST.NEW
TEST.NAME:strtod12
TEST.BASIS_PATH:12 of 19
TEST.NOTES:
This is an automatically generated test case.
Test Path 12
(1) while (((((*p == 32 || *p == 9) || *p == 10) || *p == 13) || *p == 12) || *p == 11) ==> FALSE
(3) case (*p) ==> 43
(4) while (*p >= 48 && *p <= 57) ==> FALSE
(5) if (*p == 46) ==> FALSE
(7) if (num_digits == 0) ==> FALSE
(8) if negative ==> FALSE
(9) if (*p == 101 || *p == 69) ==> TRUE
(11) case (*(++p)) ==> 43
(12) while (*p >= 48 && *p <= 57) ==> TRUE
(14) if (exponent < -1021 || exponent > 1024) ==> TRUE
Test Case Generation Notes:
Cannot set local variable p in branch 4
Cannot set p due to assignment
Cannot set local variable p in branch 5
Cannot set num_digits due to assignment
Cannot set p due to assignment
Cannot set local variable p in branch 9
Cannot set switch condition (*(++p)) in branch 11
Cannot set local variable p in branch 12
Cannot set negative due to assignment
Conflict: Cannot resolve multiple comparisons ( ) in branches 8/12
Cannot set local variable p in branch 13
Cannot set negative due to assignment
Cannot set exponent due to assignment
TEST.END_NOTES:
TEST.VALUE:strtod.strtod.str:<<malloc 13>>
TEST.VALUE:strtod.strtod.str:"-123.34abced"
TEST.VALUE:strtod.strtod.endptr:<<malloc 1>>
TEST.EXPECTED:strtod.strtod.endptr[0]:"abced"
TEST.EXPECTED:strtod.strtod.return:-123.34
TEST.END
-- Test Case: strtod13
TEST.UNIT:strtod
TEST.SUBPROGRAM:strtod
TEST.NEW
TEST.NAME:strtod13
TEST.BASIS_PATH:13 of 19
TEST.NOTES:
This is an automatically generated test case.
Test Path 13
(1) while (((((*p == 32 || *p == 9) || *p == 10) || *p == 13) || *p == 12) || *p == 11) ==> FALSE
(3) case (*p) ==> 43
(4) while (*p >= 48 && *p <= 57) ==> FALSE
(5) if (*p == 46) ==> FALSE
(7) if (num_digits == 0) ==> FALSE
(8) if negative ==> FALSE
(9) if (*p == 101 || *p == 69) ==> TRUE
(10) case (*(++p)) ==> 45
(14) if (exponent < -1021 || exponent > 1024) ==> TRUE
Test Case Generation Notes:
Cannot set p due to assignment
Cannot set local variable p in branch 4
Cannot set p due to assignment
Cannot set local variable p in branch 5
Cannot set num_digits due to assignment
Cannot set negative due to assignment
Cannot set p due to assignment
Cannot set local variable p in branch 9
Cannot set switch condition (*(++p)) in branch 10
Cannot set p due to assignment
Cannot set local variable p in branch 12
Cannot set negative due to assignment
Cannot set exponent due to assignment
TEST.END_NOTES:
TEST.VALUE:strtod.strtod.str:<<malloc 11>>
TEST.VALUE:strtod.strtod.str:"-123.34e+4"
TEST.VALUE:strtod.strtod.endptr:<<malloc 1>>
TEST.EXPECTED:strtod.strtod.return:-1233400.0
TEST.END
-- Test Case: strtod14
TEST.UNIT:strtod
TEST.SUBPROGRAM:strtod
TEST.NEW
TEST.NAME:strtod14
TEST.BASIS_PATH:14 of 19
TEST.NOTES:
This is an automatically generated test case.
Test Path 14
(1) while (((((*p == 32 || *p == 9) || *p == 10) || *p == 13) || *p == 12) || *p == 11) ==> FALSE
(3) case (*p) ==> 43
(4) while (*p >= 48 && *p <= 57) ==> FALSE
(5) if (*p == 46) ==> FALSE
(7) if (num_digits == 0) ==> FALSE
(8) if negative ==> TRUE
(9) if (*p == 101 || *p == 69) ==> FALSE
(14) if (exponent < -1021 || exponent > 1024) ==> TRUE
Test Case Generation Notes:
Cannot set p due to assignment
Cannot set local variable p in branch 4
Cannot set p due to assignment
Cannot set local variable p in branch 5
Cannot set num_digits due to assignment
Cannot set negative due to assignment
Cannot set p due to assignment
Cannot set local variable p in branch 9
Cannot set exponent due to assignment
TEST.END_NOTES:
TEST.STUB:strtod.is_real
TEST.VALUE:strtod.is_real.return:0
TEST.VALUE:strtod.strtod.str:<<malloc 7>>
TEST.VALUE:strtod.strtod.str:"-10e-1"
TEST.VALUE:strtod.strtod.endptr:<<malloc 1>>
TEST.EXPECTED:strtod.strtod.return:-1.0
TEST.END
-- Test Case: strtod15
TEST.UNIT:strtod
TEST.SUBPROGRAM:strtod
TEST.NEW
TEST.NAME:strtod15
TEST.BASIS_PATH:15 of 19
TEST.NOTES:
This is an automatically generated test case.
Test Path 15
(1) while (((((*p == 32 || *p == 9) || *p == 10) || *p == 13) || *p == 12) || *p == 11) ==> FALSE
(3) case (*p) ==> 43
(4) while (*p >= 48 && *p <= 57) ==> FALSE
(5) if (*p == 46) ==> TRUE
(7) if (num_digits == 0) ==> TRUE
Test Case Generation Notes:
Cannot set p due to assignment
Cannot set local variable p in branch 4
Cannot set p due to assignment
Cannot set local variable p in branch 5
Cannot set p due to assignment
Cannot set local variable p in branch 6
Cannot set num_digits due to assignment
TEST.END_NOTES:
TEST.VALUE:strtod.strtod.str:<<malloc 8>>
TEST.VALUE:strtod.strtod.str:"1e+1025"
TEST.VALUE:strtod.strtod.endptr:<<malloc 1>>
TEST.EXPECTED:strtod.strtod.return:1.7E308
TEST.END
-- Test Case: strtod16
TEST.UNIT:strtod
TEST.SUBPROGRAM:strtod
TEST.NEW
TEST.NAME:strtod16
TEST.BASIS_PATH:16 of 19
TEST.NOTES:
This is an automatically generated test case.
Test Path 16
(1) while (((((*p == 32 || *p == 9) || *p == 10) || *p == 13) || *p == 12) || *p == 11) ==> FALSE
(3) case (*p) ==> 43
(4) while (*p >= 48 && *p <= 57) ==> FALSE
(5) if (*p == 46) ==> TRUE
(6) while (*p >= 48 && *p <= 57) ==> TRUE
(7) if (num_digits == 0) ==> TRUE
Test Case Generation Notes:
Cannot set local variable p in branch 4
Cannot set local variable p in branch 5
Cannot set local variable p in branch 6
Cannot set p due to assignment
Conflict: Cannot resolve multiple comparisons ( ) in branches 5/6
Cannot set local variable p in branch 7
Cannot set num_digits due to assignment
TEST.END_NOTES:
TEST.VALUE:strtod.strtod.str:<<malloc 10>>
TEST.VALUE:strtod.strtod.str:"1.5e-1022"
TEST.VALUE:strtod.strtod.endptr:<<malloc 1>>
TEST.EXPECTED:strtod.strtod.return:1.7E308
TEST.END
-- Test Case: strtod2
TEST.UNIT:strtod
TEST.SUBPROGRAM:strtod
TEST.NEW
TEST.NAME:strtod2
TEST.BASIS_PATH:2 of 19
TEST.NOTES:
This is an automatically generated test case.
Test Path 2
(1) while (((((*p == 32 || *p == 9) || *p == 10) || *p == 13) || *p == 12) || *p == 11) ==> FALSE
(3) case (*p) ==> 43
(4) while (*p >= 48 && *p <= 57) ==> FALSE
(5) if (*p == 46) ==> FALSE
(7) if (num_digits == 0) ==> FALSE
(8) if negative ==> FALSE
(9) if (*p == 101 || *p == 69) ==> FALSE
(14) if (exponent < -1021 || exponent > 1024) ==> TRUE
Test Case Generation Notes:
Cannot set p due to assignment
Cannot set local variable p in branch 4
Cannot set p due to assignment
Cannot set local variable p in branch 5
Cannot set num_digits due to assignment
Cannot set negative due to assignment
Cannot set p due to assignment
Cannot set local variable p in branch 9
Cannot set exponent due to assignment
TEST.END_NOTES:
TEST.VALUE:strtod.strtod.str:<<malloc 1>>
TEST.VALUE:strtod.strtod.endptr:<<malloc 1>>
TEST.EXPECTED:strtod.strtod.return:0.0
TEST.END
-- Test Case: strtod3
TEST.UNIT:strtod
TEST.SUBPROGRAM:strtod
TEST.NEW
TEST.NAME:strtod3
TEST.BASIS_PATH:3 of 19
TEST.NOTES:
This is an automatically generated test case.
Test Path 3
(1) while (((((*p == 32 || *p == 9) || *p == 10) || *p == 13) || *p == 12) || *p == 11) ==> FALSE
(3) case (*p) ==> 43
(4) while (*p >= 48 && *p <= 57) ==> FALSE
(5) if (*p == 46) ==> FALSE
(7) if (num_digits == 0) ==> FALSE
(8) if negative ==> FALSE
(9) if (*p == 101 || *p == 69) ==> FALSE
(14) if (exponent < -1021 || exponent > 1024) ==> FALSE
(15) if (n < 0) ==> FALSE
(16) while n ==> FALSE
(19) if (!is_real(number)) ==> FALSE
(20) if endptr ==> FALSE
Test Case Generation Notes:
Cannot set local variable p in branch 4
Cannot set p due to assignment
Cannot set local variable p in branch 5
Cannot set num_digits due to assignment
Cannot set negative due to assignment
Cannot set p due to assignment
Cannot set local variable p in branch 9
Cannot set exponent due to assignment
Cannot set exponent due to assignment
TEST.END_NOTES:
TEST.STUB:strtod.is_real
TEST.VALUE:strtod.is_real.return:<<MIN>>
TEST.VALUE:strtod.strtod.str:<<malloc 2>>
TEST.VALUE:strtod.strtod.str:" "
TEST.VALUE:strtod.strtod.endptr:<<null>>
TEST.EXPECTED:strtod.strtod.return:0.0
TEST.END
-- Test Case: strtod4
TEST.UNIT:strtod
TEST.SUBPROGRAM:strtod
TEST.NEW
TEST.NAME:strtod4
TEST.BASIS_PATH:4 of 19
TEST.NOTES:
This is an automatically generated test case.
Test Path 4
(1) while (((((*p == 32 || *p == 9) || *p == 10) || *p == 13) || *p == 12) || *p == 11) ==> FALSE
(3) case (*p) ==> 43
(4) while (*p >= 48 && *p <= 57) ==> FALSE
(5) if (*p == 46) ==> FALSE
(7) if (num_digits == 0) ==> FALSE
(8) if negative ==> FALSE
(9) if (*p == 101 || *p == 69) ==> FALSE
(14) if (exponent < -1021 || exponent > 1024) ==> FALSE
(15) if (n < 0) ==> FALSE
(16) while n ==> FALSE
(19) if (!is_real(number)) ==> FALSE
(20) if endptr ==> TRUE
Test Case Generation Notes:
Cannot set local variable p in branch 4
Cannot set p due to assignment
Cannot set local variable p in branch 5
Cannot set num_digits due to assignment
Cannot set negative due to assignment
Cannot set p due to assignment
Cannot set local variable p in branch 9
Cannot set exponent due to assignment
Cannot set exponent due to assignment
TEST.END_NOTES:
TEST.STUB:strtod.is_real
TEST.VALUE:strtod.is_real.return:<<MIN>>
TEST.VALUE:strtod.strtod.str:<<malloc 1>>
TEST.VALUE:strtod.strtod.endptr:<<malloc 1>>
TEST.EXPECTED:strtod.strtod.return:0.0
TEST.END
-- Test Case: strtod5
TEST.UNIT:strtod
TEST.SUBPROGRAM:strtod
TEST.NEW
TEST.NAME:strtod5
TEST.BASIS_PATH:5 of 19
TEST.NOTES:
This is an automatically generated test case.
Test Path 5
(1) while (((((*p == 32 || *p == 9) || *p == 10) || *p == 13) || *p == 12) || *p == 11) ==> FALSE
(3) case (*p) ==> 43
(4) while (*p >= 48 && *p <= 57) ==> FALSE
(5) if (*p == 46) ==> FALSE
(7) if (num_digits == 0) ==> FALSE
(8) if negative ==> FALSE
(9) if (*p == 101 || *p == 69) ==> FALSE
(14) if (exponent < -1021 || exponent > 1024) ==> FALSE
(15) if (n < 0) ==> FALSE
(16) while n ==> FALSE
(19) if (!is_real(number)) ==> TRUE
(20) if endptr ==> FALSE
Test Case Generation Notes:
Cannot set local variable p in branch 4
Cannot set p due to assignment
Cannot set local variable p in branch 5
Cannot set num_digits due to assignment
Cannot set negative due to assignment
Cannot set p due to assignment
Cannot set local variable p in branch 9
Cannot set exponent due to assignment
Cannot set exponent due to assignment
TEST.END_NOTES:
TEST.STUB:strtod.is_real
TEST.VALUE:strtod.is_real.return:0
TEST.VALUE:strtod.strtod.str:<<malloc 1>>
TEST.VALUE:strtod.strtod.endptr:<<null>>
TEST.END
-- Test Case: strtod6
TEST.UNIT:strtod
TEST.SUBPROGRAM:strtod
TEST.NEW
TEST.NAME:strtod6
TEST.BASIS_PATH:6 of 19
TEST.NOTES:
This is an automatically generated test case.
Test Path 6
(1) while (((((*p == 32 || *p == 9) || *p == 10) || *p == 13) || *p == 12) || *p == 11) ==> FALSE
(3) case (*p) ==> 43
(4) while (*p >= 48 && *p <= 57) ==> FALSE
(5) if (*p == 46) ==> FALSE
(7) if (num_digits == 0) ==> FALSE
(8) if negative ==> FALSE
(9) if (*p == 101 || *p == 69) ==> FALSE
(14) if (exponent < -1021 || exponent > 1024) ==> FALSE
(15) if (n < 0) ==> FALSE
(16) while n ==> TRUE
(17) if (n & 1) ==> FALSE
(19) if (!is_real(number)) ==> FALSE
(20) if endptr ==> FALSE
Test Case Generation Notes:
Cannot set local variable p in branch 4
Cannot set p due to assignment
Cannot set local variable p in branch 5
Cannot set num_digits due to assignment
Cannot set negative due to assignment
Cannot set p due to assignment
Cannot set local variable p in branch 9
Cannot set exponent due to assignment
Cannot set exponent due to assignment
Cannot set exponent due to assignment
TEST.END_NOTES:
TEST.STUB:strtod.is_real
TEST.VALUE:strtod.is_real.return:<<MIN>>
TEST.VALUE:strtod.strtod.str:<<malloc 1>>
TEST.VALUE:strtod.strtod.endptr:<<null>>
TEST.EXPECTED:strtod.strtod.return:0.0
TEST.END
-- Test Case: strtod7
TEST.UNIT:strtod
TEST.SUBPROGRAM:strtod
TEST.NEW
TEST.NAME:strtod7
TEST.BASIS_PATH:7 of 19
TEST.NOTES:
This is an automatically generated test case.
Test Path 7
(1) while (((((*p == 32 || *p == 9) || *p == 10) || *p == 13) || *p == 12) || *p == 11) ==> FALSE
(3) case (*p) ==> 43
(4) while (*p >= 48 && *p <= 57) ==> FALSE
(5) if (*p == 46) ==> FALSE
(7) if (num_digits == 0) ==> FALSE
(8) if negative ==> FALSE
(9) if (*p == 101 || *p == 69) ==> FALSE
(14) if (exponent < -1021 || exponent > 1024) ==> FALSE
(15) if (n < 0) ==> FALSE
(16) while n ==> TRUE
(17) if (n & 1) ==> TRUE
(18) if (exponent < 0) ==> FALSE
(19) if (!is_real(number)) ==> FALSE
(20) if endptr ==> FALSE
Test Case Generation Notes:
Cannot set local variable p in branch 4
Cannot set p due to assignment
Cannot set local variable p in branch 5
Cannot set num_digits due to assignment
Cannot set negative due to assignment
Cannot set p due to assignment
Cannot set local variable p in branch 9
Cannot set exponent due to assignment
Cannot set exponent due to assignment
Cannot set exponent due to assignment
Cannot set exponent due to assignment
TEST.END_NOTES:
TEST.STUB:strtod.is_real
TEST.VALUE:strtod.is_real.return:<<MIN>>
TEST.VALUE:strtod.strtod.str:<<malloc 1>>
TEST.VALUE:strtod.strtod.endptr:<<null>>
TEST.EXPECTED:strtod.strtod.return:0.0
TEST.END
-- Test Case: strtod8
TEST.UNIT:strtod
TEST.SUBPROGRAM:strtod
TEST.NEW
TEST.NAME:strtod8
TEST.BASIS_PATH:8 of 19
TEST.NOTES:
This is an automatically generated test case.
Test Path 8
(1) while (((((*p == 32 || *p == 9) || *p == 10) || *p == 13) || *p == 12) || *p == 11) ==> FALSE
(3) case (*p) ==> 43
(4) while (*p >= 48 && *p <= 57) ==> FALSE
(5) if (*p == 46) ==> FALSE
(7) if (num_digits == 0) ==> FALSE
(8) if negative ==> FALSE
(9) if (*p == 101 || *p == 69) ==> FALSE
(14) if (exponent < -1021 || exponent > 1024) ==> FALSE
(15) if (n < 0) ==> FALSE
(16) while n ==> TRUE
(17) if (n & 1) ==> TRUE
(18) if (exponent < 0) ==> TRUE
(19) if (!is_real(number)) ==> FALSE
(20) if endptr ==> FALSE
Test Case Generation Notes:
Cannot set local variable p in branch 4
Cannot set p due to assignment
Cannot set local variable p in branch 5
Cannot set num_digits due to assignment
Cannot set negative due to assignment
Cannot set p due to assignment
Cannot set local variable p in branch 9
Cannot set exponent due to assignment
Cannot set exponent due to assignment
Cannot set exponent due to assignment
Cannot set exponent due to assignment
Cannot set p10 due to assignment
TEST.END_NOTES:
TEST.STUB:strtod.is_real
TEST.VALUE:strtod.is_real.return:<<MIN>>
TEST.VALUE:strtod.strtod.str:<<malloc 1>>
TEST.VALUE:strtod.strtod.endptr:<<null>>
TEST.EXPECTED:strtod.strtod.return:0.0
TEST.END
-- Test Case: strtod9
TEST.UNIT:strtod
TEST.SUBPROGRAM:strtod
TEST.NEW
TEST.NAME:strtod9
TEST.BASIS_PATH:9 of 19
TEST.NOTES:
This is an automatically generated test case.
Test Path 9
(1) while (((((*p == 32 || *p == 9) || *p == 10) || *p == 13) || *p == 12) || *p == 11) ==> FALSE
(3) case (*p) ==> 43
(4) while (*p >= 48 && *p <= 57) ==> FALSE
(5) if (*p == 46) ==> FALSE
(7) if (num_digits == 0) ==> FALSE
(8) if negative ==> FALSE
(9) if (*p == 101 || *p == 69) ==> FALSE
(14) if (exponent < -1021 || exponent > 1024) ==> FALSE
(15) if (n < 0) ==> TRUE
(16) while n ==> FALSE
(19) if (!is_real(number)) ==> FALSE
(20) if endptr ==> FALSE
Test Case Generation Notes:
Cannot set local variable p in branch 4
Cannot set p due to assignment
Cannot set local variable p in branch 5
Cannot set num_digits due to assignment
Cannot set negative due to assignment
Cannot set p due to assignment
Cannot set local variable p in branch 9
Cannot set exponent due to assignment
Cannot set n due to assignment
TEST.END_NOTES:
TEST.STUB:strtod.is_real
TEST.VALUE:strtod.is_real.return:<<MIN>>
TEST.VALUE:strtod.strtod.str:<<malloc 14>>
TEST.VALUE:strtod.strtod.str:" 12345.6789"
TEST.VALUE:strtod.strtod.endptr:<<null>>
TEST.EXPECTED:strtod.strtod.return:12345.7
TEST.END
|
6cffd53fd89c7d35b57f8ab2ff7265688a514ae4 | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.5/Unix-Windows/scilab-2.5/macros/percent/%r_s.sci | 89eb049ca671d6caf6f3bebb3c521692482783e1 | [
"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 | 84 | sci | %r_s.sci | function f=%r_s(f)
// %r_s(f) -f, f rational
//!
// Copyright INRIA
f(2)=-f(2)
|
5b1e1d7ca3090f15ac9e7678a0cdff0765885711 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1571/CH4/EX4.4/Chapter4_Example4.sce | 4e874213272060e6e23c412c89e2e1b8652e91df | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 358 | sce | Chapter4_Example4.sce | clc
clear
//INPUT
d=16*0.000089;//density of the oxygen molecule in gm/cc
p=76;//pressure of the air in cm
g=981;//gravitaitonal accelaration in cm/sec^2
m=13.6;//density of the mercury in gm/cc
//CALCULATIONS
v=((3*p*g*m)/d)^(1/2);//velocuty of the oxygen molecule in cm/sec
//OUTPUT
mprintf('velocity of oxygen molecule is %3.2fcm/sec',v)
|
27ee49bd913d85aab39a84c7f80d220076aea0f0 | 717ddeb7e700373742c617a95e25a2376565112c | /929/CH1/EX1.16/Example1_16.sce | 4a222071c095d8c5b38702a5bd9feaebb64618f9 | [] | 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 | 3,314 | sce | Example1_16.sce | //Example 1.16
clear;
clc;
//Part(I)
//This part of the program includes the plotting of the input wave (triangular wave). To plot the wave we have divided the time period(assuming T=2) into 3 time intervals t1, t2, t3 and then create voltage equation for each using the given conditions.
VCC=13;
VEE=-13;
A=-2;//Gain
t1=[0:10^(-4):0.5];
t2=[0.5:10^(-4):1.5];
t3=[1.5:10^(-4):2.5];
vt1=20*t1;
vt2=20*(1-t2);
vt3=20*(t3-2);
subplot(131);
title(" Inverting Amplifier driven into saturation waveforms ","fontsize",6);
subplot(334);
plot(t1,vt1);
plot(t2,vt2);
plot(t3,vt3);
xlabel("Time(t)","fontsize",3);
ylabel("Input Voltage(Vin)","fontsize",3);
title("Vin vs t","fontsize",4);
//Part(II)
//In this part we have plotted vo by using the conditions vo=-2vI for -6.5V<vI<6.5V, otherwise vo=-13.Again we have divided the time period into 5 parts to1, to2, to3, to1i, to2i depending upon the response in each interval.
vIbor=VCC/2;
to1min=0;
to1max=6.5/20;
to2min=1-(6.5/20);
to2max=1+(6.5/20);
to3min=2-(6.5/20);
to3max=2+(6.5/20);
to1=[to1min:10^(-4):to1max];
to2=[to2min:10^(-4):to2max];
to3=[to3min:10^(-4):to3max];
to1imin=to1max;
to1imax=to2min;
to2imin=to2max;
to2imax=to3min;
to1i=[to1imin:10^(-4):to1imax];
to2i=[to2imin:10^(-4):to2imax];
vo1=-13*(to1-to1min)/(to1max-to1min);
vo1i=-13;
vo2=(((13+13)/(to2max-to2min))*(to2-to2min))-13;
vo2i=13;
vo3=(((13+13)/(to3min-to3max))*(to3-to3max))-13;
subplot(335);
plot(to1,vo1);
plot(to1i,vo1i);
plot(to2,vo2);
plot(to2i,vo2i);
plot(to3,vo3);
ylabel("Output Voltage(Vout)","fontsize",3);
xlabel("Time(t)","fontsize",3);
title("Vout vs t","fontsize",4);
//Part(III)
//In this part we will plot vN for which we have divided the time period into 7 time intervals tNi1, tNi2, tNi3, tN11, tN12, tN21, tN22 depending upon the response in each cycle voltage equation is obtained and plotted.For -6.5<vI<6.5 vN=0 and when vI will peak at 10V vN will peak at 2.33 and for vI<6-.5 and vI>6.5, circuit behaviour is symmetric.
vIbor=VCC/2;
tNi1min=0;
tNi1max=6.5/20;
tNi2min=1-(6.5/20);
tNi2max=1+(6.5/20);
tNi3min=2-(6.5/20);
tNi3max=2+(6.5/20);
tNi1=[tNi1min:10^(-4):tNi1max];
tNi2=[tNi2min:10^(-4):tNi2max];
tNi3=[tNi3min:10^(-4):tNi3max];
tN11min=tNi1max;
tN11max=(tNi2min+tNi1max)/2;
tN12min=tN11max;
tN12max=tNi2min;
tN21min=tNi2max;
tN21max=(tNi2max+tNi3min)/2;
tN22min=tN21max;
tN22max=tNi3min;
tN11=[tN11min:10^(-4):tN11max];
tN12=[tN12min:10^(-4):tN12max];
tN21=[tN21min:10^(-4):tN21max];
tN22=[tN22min:10^(-4):tN22max];
vNi1=0;
vN11=(2.33/(tN11max-tN11min))*(tN11-tN11min);
vN12=-(2.33/(tN12max-tN12min))*(tN12-tN12max);
vNi2=0;
vN21=-(2.33/(tN21max-tN21min))*(tN21-tN21min);
vN22=(2.33/(tN22max-tN22min))*(tN22-tN22max);
vNi3=0;
subplot(336);
plot(tNi1,vNi1);
plot(tN11,vN11);
plot(tN12,vN12);
plot(tNi2,vNi2);
plot(tN21,vN21);
plot(tN22,vN22);
plot(tNi3,vNi3);
xlabel("Time(t)","fontsize",3);
ylabel("Vn","fontsize",3);
title("Vn vs t","fontsize",4); |
c7e23b5beede103f00a4ef5f0b984e726bb21d75 | 449d555969bfd7befe906877abab098c6e63a0e8 | /911/CH1/EX1.13.c/ex_1_13_c.sce | f11f53436ec2f135ca0ed22b1aae12dc93639772 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 170 | sce | ex_1_13_c.sce | //example 1.13.c//
clc
//clears the screen//
clear
//clears all existing variables//
a=dec2bin(2,12)
b=dec2bin(7,4)
d=100000+0111
disp(d,'BCD equivalent of 27 =') |
64ce0a98910dc8aebf550b52326501f42bcc0d56 | 449d555969bfd7befe906877abab098c6e63a0e8 | /83/CH12/EX12.7/example_12_7.sce | 5e2663f9d01f0582986e9d1d5a3dd75e5bd00eb3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,589 | sce | example_12_7.sce | //Chapter 12
//Example 12.7
//page 475
//To calculate critcal clearing angle
clear;clc;
Xd=0.25; //direct axis transient reactance of the generator
Xl1=0.5; Xl2=0.4; //reactances of transmission line
E=1.2; //voltage behind transient reactance
Xinf=0.05; //reactnce before infinite bus
V=1; //infinite bus voltage
Pm=1; //mechanical input to the generator
delta=0:1:180;
//Normal operation (prefault)
X1=Xd+(Xl1*Xl2/(Xl1+Xl2))+Xinf; //equivalent reactance between sending ened and receiving end
//Power angle equation before the fault is
Pe1=(E*V/X1)*sind(delta);
//prefault operating power =1.0pu
delta0=asin(1/max(Pe1));
printf('Normal Operation (prefault):\n');
printf('X1=%0.3f PU\n',X1);
printf('Pe1=%0.1fsin(delta)\n\n',max(Pe1));
//during fault there will be no power transfer
Pe2=0;
printf('During Fault:\n');
printf('Pe2=%d\n\n',Pe2);
//Post fault operation(fault cleared by opening the faulted line)
X3=Xd+Xl1+Xinf;
Pe3=(E*V/X3)*sind(delta);
delta_max=%pi-asin(Pm/max(Pe3));
//from A1 and A2, we solve A1=A2
deff('[y]=fx(delta_cr)',"y=1.5*cos(delta_cr)+delta_cr-1.293-Pm*(delta_cr-delta0)");
delta_cr=fsolve(0.45,fx);
printf('Post fault operation(fault cleared by opening the faulted line):\n');
printf('X3=%0.1fPU\n',X3);
printf('Pe3=%0.1fsin(delta)\n',max(Pe3));
printf('Delta_cr=%0.4f rad =%0.2f deg',delta_cr,delta_cr*180/%pi);
plot(delta,Pe1,delta,Pe3,delta,Pm*ones(1,length(delta)));
legend('Pe1=2.3sin(delta)','Pe3=1.5sin(delta)','Pm=1');
title('Power angle Diagram for example 12.7');
xlabel('delta (in degrees)----->');
ylabel('Electrical output (Pe)----->'); |
8b243201d12bf65a78b05df404d91d41e1c60de7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3557/CH19/EX19.4/Ex19_4.sce | f883f3763eb924c739722bab5391017cc4030ec2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 412 | sce | Ex19_4.sce | //Example 19.4//
//(a)
mprintf("Inspection of Table 19.2 indicates that zinci is anodic to iron. Therefore zinci will be corroded")
//(b)Again using Table 19.2 the voltage will be
b=(-0.763);//V //Electrode potential versus normal hydrogen at 25 degree C //(From the table)
a=(-0.440);//V ///Electrode potential versus normal hydrogen at 25 degree C
voltage=a-b
mprintf("\nvoltage = %f V",voltage)
|
59ff1582dae09c4db0ea72492c1f78c957ec0d28 | d145a801b8f64afaf9dd0330b93936ca3343cbdb | /test_suite/flack.tst | cefe81c530dcf38f1498d371e1e28d5bf361a100 | [] | no_license | ChemCryst/crystals | 0fff27ff8576b7c7199e1eaa671407d50132b98e | 8087c68d7f05b903473cee1cb131c06f819dc660 | refs/heads/master | 2023-08-17T16:36:03.675124 | 2023-06-26T10:54:29 | 2023-06-26T10:54:29 | 152,602,292 | 2 | 0 | null | 2023-06-26T10:54:30 | 2018-10-11T14:09:45 | Roff | UTF-8 | Scilab | false | false | 74,683 | tst | flack.tst | \set time slow
\rele print CROUTPUT:
\TITLE POLARITY AND ENANTIOPOLE REFINEMENT TEST
\LIST 1
REAL 5.9607 10.0658 7.4239 90.0 90.35 90.0
END
\LIST 2
CELL NSYM=2 LATT =P CENTRIC=NO
SYMM X,Y,Z
SYM -X,1/2+Y,-Z
END
\LIST 13
CRYSTAL FRIEDEL=NO
DIFF GEOM=KAPPA
MATRIX
END
\LIST 29
END
\ Punched on 12-OCT84 at 12:45:49
\LIST 6
\ The list contains Fo and Fc. We are using Fc in this test.
\ the commented lines may be used to obtain actual values for Fobs
\ READ NCOEFFICIENT = 10, TYPE = FIXED, UNIT = DATAFILE
READ NCOEF = 4 TYPE=FIXED,UNIT=DATAFILE
\ INPUT H K L /FO/ SIGMA(/FO/) /FC/ PHASE WEIGHT /FOT/ ELEMENTS
INPUT H K L /FO/
\ FORMAT (3F4.0,F10.2,F8.2,F10.2,F8.5,E12.5,F10.2,F3.0)
FORMAT (3F4.0,18X,F10.2)
END
1 -5 0 59.63 0.29 7.69-0.37331 0.18570E+01 0.00 0
1 5 0 56.58 0.29 7.38 3.53496 0.18570E+01 0.00 0
1 -7 1 21.31 0.43 2.38 2.39417 0.15250E+01 0.00 0
0 -4 1 24.36 0.24 3.36 0.22995 0.20412E+01 0.00 0
-5 -2 1 53.24 0.31 7.42 1.52276 0.17961E+01 0.00 0
5 -2 1 71.87 0.35 9.72-2.66728 0.16903E+01 0.00 0
-5 2 1 52.31 0.30 7.55-1.50909 0.18257E+01 0.00 0
5 2 1 68.76 0.35 9.51 2.68018 0.16903E+01 0.00 0
0 4 1 21.90 0.23 3.04-0.21849 0.20851E+01 0.00 0
1 7 1 19.11 0.38 2.16 0.75919 0.16222E+01 0.00 0
0 -5 2 25.72 0.28 3.41 2.74729 0.18898E+01 0.00 0
3 -1 2 15.87 0.34 1.57-2.10864 0.17150E+01 0.00 0
3 1 2 12.26 0.36 1.18 5.33089 0.16667E+01 0.00 0
0 5 2 27.79 0.25 3.74 0.35824 0.20000E+01 0.00 0
1 -5 3 15.79 0.45 2.13 0.19649 0.14907E+01 0.00 0
1 -4 3 41.55 0.24 5.60 0.56431 0.20412E+01 0.00 0
4 -1 3 96.94 0.47 13.95-0.10563 0.14586E+01 0.00 0
5 -1 3 53.50 0.32 7.46 1.45070 0.17678E+01 0.00 0
4 1 3 95.41 0.48 13.89-3.01287 0.14434E+01 0.00 0
5 1 3 51.15 0.32 7.23 1.68792 0.17678E+01 0.00 0
1 4 3 43.27 0.23 5.94-0.54741 0.20851E+01 0.00 0
1 5 3 16.86 0.36 2.26 2.95960 0.16667E+01 0.00 0
1 -5 4 17.41 0.45 2.51-2.89781 0.14907E+01 0.00 0
3 -5 4 15.48 0.50 2.11-0.15442 0.14142E+01 0.00 0
-2 -3 4 24.66 0.32 3.21 1.16663 0.17678E+01 0.00 0
4 -3 4 26.82 0.39 3.57 0.32420 0.16013E+01 0.00 0
-3 -2 4 55.00 0.27 7.92-2.46678 0.19245E+01 0.00 0
2 -1 4 52.29 0.27 7.19 1.56623 0.19245E+01 0.00 0
2 1 4 53.78 0.27 7.46 1.58953 0.19245E+01 0.00 0
-3 2 4 52.42 0.27 7.68 2.47631 0.19245E+01 0.00 0
-2 3 4 25.32 0.31 3.37 2.00864 0.17961E+01 0.00 0
4 3 4 28.33 0.36 3.84 2.79890 0.16667E+01 0.00 0
1 5 4 15.63 0.42 2.24-0.27175 0.15430E+01 0.00 0
3 5 4 15.00 0.50 1.98-2.96545 0.14142E+01 0.00 0
2 -6 5 44.32 0.34 6.25 2.01521 0.17150E+01 0.00 0
3 -6 5 20.76 0.48 2.88-0.71097 0.14434E+01 0.00 0
1 -1 5 42.61 0.27 5.99 1.63556 0.19245E+01 0.00 0
1 1 5 44.36 0.27 6.33 1.53017 0.19245E+01 0.00 0
2 6 5 42.89 0.34 6.12-1.98771 0.17150E+01 0.00 0
3 6 5 20.84 0.46 2.93 0.71169 0.14744E+01 0.00 0
2 -2 6 34.32 0.34 5.00-2.14239 0.17150E+01 0.00 0
2 -1 6 38.74 0.32 5.48 0.81183 0.17678E+01 0.00 0
2 1 6 36.73 0.32 5.28 2.35073 0.17678E+01 0.00 0
2 2 6 31.74 0.34 4.80 2.14338 0.17150E+01 0.00 0
-3 -1 7 14.53 0.62 2.04 1.17500 0.12700E+01 0.00 0
-3 1 7 13.43 0.64 1.88 1.97810 0.12500E+01 0.00 0
-512
\WEIGHT
END
\LIST 14
Z-AXIS MAX=0.5
END
\ Punched on 5-OCT84 at 16:49:57
\
\LIST 5
READ NATOM = 22, NLAYER = 0, NELEMENT = 0, NBATCH = 0
OVERALL 1.00 0.050000 0.050000 1.0 0.0 287.6417542
ATOM CL 1.000000 1.000000 0.000000 -0.194923 -0.200013 -0.123469
CONTINUE 0.049766 0.087303 0.048475 -0.002528 -0.010489 0.009003
ATOM C 1.000000 1.000000 0.000000 0.278186 -0.164541 0.327832
CONTINUE 0.027307 0.032640 0.030186 -0.001666 0.001002 0.003394
ATOM C 2.000000 1.000000 0.000000 0.184838 -0.125978 0.511475
CONTINUE 0.042473 0.052007 0.031399 -0.006336 0.006646 -0.000250
ATOM C 3.000000 1.000000 0.000000 0.315329 -0.252149 0.489863
CONTINUE 0.051744 0.046411 0.039031 0.009863 -0.002741 -0.000758
ATOM C 4.000000 1.000000 0.000000 0.471106 -0.087930 0.252996
CONTINUE 0.027205 0.033829 0.034474 -0.004432 0.001490 0.003366
ATOM O 2.000000 1.000000 0.000000 0.654634 -0.081013 0.321789
CONTINUE 0.030280 0.067713 0.046574 -0.000276 -0.004949 -0.003871
ATOM C 5.000000 1.000000 0.000000 0.164529 -0.296211 0.072843
CONTINUE 0.034638 0.034484 0.036342 -0.002230 0.003740 -0.005898
ATOM O 3.000000 1.000000 0.000000 0.343668 -0.356785 0.075912
CONTINUE 0.042809 0.057437 0.054332 -0.018899 0.000235 0.009801
ATOM C 6.000000 1.000000 0.000000 -0.000727 -0.327475 -0.074737
CONTINUE 0.050554 0.054304 0.049268 -0.008949 -0.006510 -0.005291
ATOM C 7.000000 1.000000 0.000000 0.276593 -0.011876 0.618405
CONTINUE 0.065387 0.075564 0.049786 -0.025695 0.006031 -0.009690
ATOM N 1.000000 1.000000 0.000000 0.113228 -0.205215 0.196749
CONTINUE 0.027532 0.035177 0.034275 -0.001026 0.001724 -0.000943
ATOM O 1.000000 1.000000 0.000000 0.414123 -0.025912 0.103581
CONTINUE 0.031362 0.052659 0.052060 0.020941 -0.001661 -0.002914
ATOM H 1.000000 1.000000 0.000000 0.020702 -0.137266 0.518750
CONTINUE 0.046906 0.048369 0.049351 -0.000479 -0.000043 0.000340
ATOM H 2.000000 1.000000 0.000000 0.235389 -0.337939 0.487756
CONTINUE 0.053700 0.052960 0.053578 -0.000579 -0.000943 -0.001238
ATOM H 3.000000 1.000000 0.000000 0.469781 -0.250369 0.540761
CONTINUE 0.053700 0.052960 0.053578 -0.000579 -0.000943 -0.001238
ATOM H 4.000000 1.000000 0.000000 0.528418 0.020135 0.064423
CONTINUE 0.049591 0.049901 0.050891 0.000096 0.000024 -0.000194
ATOM H 5.000000 1.000000 0.000000 -0.022068 -0.161681 0.186351
CONTINUE 0.038414 0.038568 0.038683 0.000121 0.000767 0.000190
ATOM H 6.000000 1.000000 0.000000 0.077085 -0.347450 -0.189184
CONTINUE 0.059713 0.060379 0.061236 -0.001214 0.000956 0.000057
ATOM H 7.000000 1.000000 0.000000 -0.086682 -0.408193 -0.048456
CONTINUE 0.059713 0.060379 0.061236 -0.001214 0.000956 0.000057
ATOM H 8.000000 1.000000 0.000000 0.436794 -0.003015 0.595577
CONTINUE 0.071004 0.072528 0.067710 -0.000043 -0.000794 -0.001921
ATOM H 9.000000 1.000000 0.000000 0.245042 -0.027840 0.745253
CONTINUE 0.071004 0.072528 0.067710 -0.000043 -0.000794 -0.001921
ATOM H 10.000000 1.000000 0.000000 0.210684 0.072940 0.572535
CONTINUE 0.071004 0.072528 0.067710 -0.000043 -0.000794 -0.001921
END
\LIST 3
READ NSCAT=5
SCATT C 0.002 0.002 2.31000 20.8439 1.02000 10.2075 1.58860 0.568700
CONT 0.865000 51.6512 0.215600
SCATT H 0. 0. .489918 20.659300 .262003 7.740390 .196767
CONT 49.551900 .049879 2.201590 .001305
SCATT N 0.004 0.003 12.2126 .005700 3.132200 9.893300 2.012500
CONT 28.997500 1.166300 .582600 -11.529000
SCATT O 0.008 0.006 3.048500 13.277100 2.286800 5.701100 1.546300
CONT .323900 .867000 32.908900 .250800
SCATT CL 0.132 0.159 11.4604 0.010400 7.19640 1.16620 6.25560
CONT 18.5194 1.64550 47.7784 -9.5574
END
\LIST 23
MODIFY EXTINCTION=YES ANOM=YES ENANT=NO
END
\LIST 12
BLOCK POLARITY
END
\SFLS
REFINE
END
\SFLS
REFINE
END
\EDIT
CHANGE POLARITY -1
END
\SFLS
REFINE
END
\SFLS
REFINE
END
\ reset polarity and turn on the enantiopole flag
\ this should give the same results as the above test
\EDIT
CHANGE POLARITY 1
END
\LIST 23
MODIFY EXTINCTION=YES ANOM=YES ENANT=YES
END
\LIST 12
BLOCK POLARITY
END
\SFLS
REFINE
END
\SFLS
REFINE
END
\EDIT
CHANGE POLARITY -1
END
\SFLS
REFINE
END
\SFLS
REFINE
END
\ now change the enantiomer. Have to change the polarity too!
\EDIT
CHANGE POLARITY -1
CHANGE ENANTIO 1
END
\LIST 23
MODIFY EXTINCTION=YES ANOM=YES ENANT=YES
END
\LIST 12
BLOCK POLARITY
END
\SFLS
REFINE
END
\SFLS
REFINE
END
\EDIT
CHANGE POLARITY 1
END
\SFLS
REFINE
END
\SFLS
REFINE
END
\ now reset polarity and enantiomer, and refine enantioner
\EDIT
CHANGE POLARITY 1
CHANGE ENANTIO 0
END
\LIST 23
MODIFY EXTINCTION=YES ANOM=YES ENANT=YES
END
\LIST 12
BLOCK ENANTIO
END
\SFLS
REFINE
END
\SFLS
REFINE
END
\EDIT
CHANGE ENANTIO 1
END
\SFLS
REFINE
END
\SFLS
REFINE
END
\ invert polarity and enantiomer, and refine a coordinate
\EDIT
CHANGE POLARITY -1
CHANGE ENANTIO 1
SUBTRACT .02 CL(1,Z)
END
\LIST 12
BLOCK CL(1,Z)
END
\SFLS
REFINE
REFINE
END
\SFLS
REFINE
REFINE
END
\ finally, invert polarity and enantiomer,
\ and refine a coordinate with enantiopole
\EDIT
CHANGE POLARITY -1
CHANGE ENANTIO 1
SUBTRACT .02 CL(1,Z)
END
\LIST 12
BLOCK CL(1,Z) ENANTIO
END
\SFLS
REFINE
REFINE
END
\SFLS
REFINE
REFINE
END
\ now import ags4, the shelx2013 test data
\ to test the new absolute configuration code
#
# Punched on 03/04/14 at 08:38:46
#
#LIST 1
REAL 8.3810 8.3810 6.6610 90.0000 90.0000 90.0000
END
#space
symbol p -4
end
#list 4
end
#LIST 3
READ NSCATTERERS= 6
SCAT TYPE= C 0.003300 0.001600 2.310000 20.843920
CONT 1.020000 10.207510 1.588600 0.568700
CONT 0.865000 51.651249 0.215600
SCAT TYPE= AG -0.897100 1.101500 19.280800 0.644600
CONT 16.688499 7.472600 4.804500 24.660500
CONT 1.046300 99.815598 5.179000
SCAT TYPE= AS 0.049900 2.005800 16.672300 2.634500
CONT 6.070100 0.264700 3.431300 12.947900
CONT 4.277900 47.797199 2.531000
SCAT TYPE= F 0.017100 0.010300 3.539200 10.282500
CONT 2.641200 4.294400 1.517000 0.261500
CONT 1.024300 26.147600 0.277600
SCAT TYPE= N 0.006100 0.003300 12.212610 0.005700
CONT 3.132200 9.893310 2.012500 28.997540
CONT 1.166300 0.582600 -11.529010
SCAT TYPE= S 0.124600 0.123400 6.905300 1.467900
CONT 5.203400 22.215099 1.437900 0.253600
CONT 1.586300 56.172001 0.866900
END
#LIST 5
READ NATOM = 8, NLAYER = 0, NELEMENT = 0, NBATCH = 0
OVERALL 2.708464 0.050000 0.050000 1.000000 0.000698 0.0000000
ATOM AG 1. 1.000000 0. 1.000000 1.000000 0.000000
CON U[11]= 0.106672 0.106672 0.055579 0.000000 0.000000 0.000000
CON SPARE= 0.25 0 26279939 1 0
ATOM N 2. 1.000000 0. 0.970480 1.211097 -0.213527
CON U[11]= 0.077899 0.084176 0.071322 0.014494 0.014038 -0.017176
CON SPARE= 1.00 0 25165827 1 0
ATOM C 3. 1.000000 0. 0.903539 1.277326 -0.337597
CON U[11]= 0.061485 0.056006 0.067883 0.005963 0.005677 -0.015153
CON SPARE= 1.00 0 25165827 1 0
ATOM S 4. 1.000000 0. 0.793638 1.368399 -0.516226
CON U[11]= 0.045378 0.066503 0.101061 0.006844 -0.008658 -0.000303
CON SPARE= 1.00 0 25165827 1 0
ATOM S 5. 1.000000 0. 0.965773 1.385224 -0.736534
CON U[11]= 0.077550 0.059107 0.052355 -0.015557 -0.011598 0.021024
CON SPARE= 1.00 0 25165827 1 0
ATOM AS 6. 1.000000 0. 0.500000 0.500000 0.000000
CON U[11]= 0.057582 0.057582 0.038397 0.000000 0.000000 0.000000
CON SPARE= 0.25 0 26279939 2 0
ATOM F 7. 1.000000 0. 0.675261 0.595600 0.006106
CON U[11]= 0.074033 0.088624 0.287682 -0.016744 -0.073898 -0.010310
CON SPARE= 1.00 0 25165827 2 0
ATOM F 8. 1.000000 0. 0.500000 0.500000 0.245922
CON U[11]= 0.467705 0.182154 0.043001 0.000000 0.000000 0.091495
CON SPARE= 0.50 0 26279939 2 0
END
#
# Punched on 03/04/14 at 08:39:39
#
#LIST 12
BLOCK SCALE X'S U'S
CONT ENANTIO
END
# Remove space after hash to activate next line
# USE LAST
#LIST 13
CRYST FRIEDELPAIRS=N TWINNED=N SPREAD=GAUSSIA
DIFFRACTION GEOMETRY=UNKNOWN RADIATION=XRAYS
CONDI WAVEL= 0.71073 6.050 90.000 0.5869359 0.6427007 0.0001788 90.000
MATR 0.000000000 0.000000000 0.000000000
CONT 0.000000000 0.000000000 0.000000000
CONT 0.000000000 0.000000000 0.000000000
END
#
# Punched on 03/04/14 at 08:39:58
#
#LIST 16
NO
REM HREST START (DO NOT REMOVE THIS LINE)
REM HREST END (DO NOT REMOVE THIS LINE)
END
# Remove space after hash to activate next line
# USE LAST
#LIST 23
MODIFY ANOM=Y EXTI=N LAYER=N BATCH=N
CONT PARTI=N UPDA=N ENANT=Y
MINIMI NSING= 0 F-SQ=Y RESTR=Y REFLEC=Y
ALLCYCLES U[MIN]= 0.00000000
CONT MIN-R= 0.000000 MAX-R= 100.000
CONT MIN-WR= 0.000000 MAX-WR= 100.000
CONT MIN-SUMSQ= 0.030000 MAX-SUMSQ= 10000.000
CONT MIN-MINFUNC= 0.000000 MAX-MINFUNC= 999999986991104.000
INTERCYCLE MIN-DR= -5.000000 MAX-DR= 100.000
CONT MIN-DWR= -5.000000 MAX-DWR= 100.000
CONT MIN-DSUMSQ=-10.000000 MAX-DSUMSQ= 10000.000
CONT MIN-DMINFUNC= 0.000000 MAX-DMINFUNC= 999999986991104.000
REFINE SPEC=CONSTRAIN UPDATE=PARAMETERS TOL= 0.60000
END
#
# Punched on 03/04/14 at 08:40:23
#
#LIST 6
READ NCOEFFICIENT = 9, TYPE = FIXED, UNIT = DATAFILE, CHECK=NO
INPUT H K L /FO/ SIGMA /FC/ PHASE SQRTW JCODE
FORMAT (3F4.0, F10.2, F8.2, F10.2, F8.4, G12.5, F4.0)
store ncoef=7
outPUT indices /FO/ SIGMA SQRTW /FC/ PHASE RATIO/JCODE
END
-1 2 0 114.98 0.34 42.65 -0.0116 0.18810E-02 0
0 2 0 185.93 0.37 70.05 0.0412 0.84007E-03 0
1 2 0 167.92 0.45 61.67 -3.1201 0.10302E-02 0
2 2 0 126.65 0.37 46.67 0.0581 0.16302E-02 0
-2 3 0 45.94 0.24 16.82 -3.0822 0.65833E-02 0
-1 3 0 180.94 0.45 67.23 0.0372 0.88578E-03 0
0 3 0 117.32 0.24 43.98 -0.0136 0.18220E-02 0
1 3 0 138.39 0.38 51.21 0.0549 0.14068E-02 0
2 3 0 21.88 0.26 6.94 -0.1121 0.17158E-01 0
3 3 0 81.74 0.26 30.32 0.0683 0.30894E-02 0
-3 4 0 26.79 0.31 9.27 -3.0636 0.12414E-01 0
-2 4 0 153.00 0.38 56.63 0.0376 0.11823E-02 0
-1 4 0 77.55 0.27 28.89 -3.0964 0.33316E-02 0
0 4 0 80.46 0.20 29.83 0.0694 0.32161E-02 0
1 4 0 27.83 0.27 9.77 -3.0240 0.11337E-01 0
2 4 0 85.77 0.26 32.56 0.0624 0.28691E-02 0
3 4 0 19.78 0.22 6.75 -0.1092 0.18105E-01 0
4 4 0 17.08 0.21 5.79 0.2315 0.21377E-01 0
-4 5 0 32.77 0.35 11.96 -3.0725 0.96945E-02 0
-3 5 0 118.28 0.32 43.36 0.0422 0.18413E-02 0
-2 5 0 17.64 0.26 7.12 -3.0304 0.18089E-01 0
-1 5 0 152.81 0.43 57.59 0.0363 0.11731E-02 0
0 5 0 94.66 0.23 34.31 -0.0100 0.26012E-02 0
1 5 0 24.36 0.28 9.62 0.1624 0.12243E-01 0
2 5 0 30.32 0.31 10.12 -0.0674 0.11695E-01 0
3 5 0 97.23 0.31 36.21 0.0460 0.24144E-02 0
4 5 0 7.61 0.57 2.54 -0.2874 0.45361E-01 0
5 5 0 81.49 0.39 30.08 0.0453 0.31522E-02 0
-5 6 0 29.37 0.31 10.75 -3.0712 0.10704E-01 0
-4 6 0 20.99 0.30 7.75 0.1355 0.15564E-01 0
-3 6 0 7.47 0.70 1.53 -0.3958 0.42323E-01 0
-2 6 0 12.38 0.45 4.77 2.9373 0.23998E-01 0
-1 6 0 12.61 0.43 4.22 -2.9560 0.29291E-01 0
0 6 0 60.05 0.26 22.08 0.0689 0.46839E-02 0
1 6 0 42.27 0.34 16.52 -3.0890 0.67892E-02 0
2 6 0 112.49 0.35 42.39 0.0400 0.19003E-02 0
3 6 0 53.96 0.39 21.03 -3.0982 0.51324E-02 0
4 6 0 25.10 0.30 9.01 0.1136 0.12866E-01 0
5 6 0 47.94 0.42 16.82 -0.0194 0.62189E-02 0
6 6 0 11.59 0.59 4.43 0.1563 0.25834E-01 0
-6 7 0 15.08 0.58 5.76 -0.0511 0.20767E-01 0
-5 7 0 8.76 0.67 2.71 0.2435 0.41221E-01 0
-4 7 0 5.66 0.84 1.67 -2.8521 0.55452E-01 0
-3 7 0 34.01 0.44 12.68 0.0810 0.90996E-02 0
-2 7 0 4.03 1.11 1.64 -0.3817 0.63211E-01 0
-1 7 0 61.50 0.43 22.84 0.0570 0.45356E-02 0
0 7 0 47.97 0.31 17.80 -3.0913 0.61902E-02 0
1 7 0 23.71 0.28 8.74 0.1161 0.13753E-01 0
2 7 0 5.03 0.81 0.75 -2.4001 0.77425E-01 0
3 7 0 6.19 0.79 1.97 0.4357 0.52319E-01 0
4 7 0 5.05 0.84 0.79 -2.4710 0.80628E-01 0
5 7 0 4.31 1.06 0.70 1.1347 0.81586E-01 0
6 7 0 33.46 0.45 12.97 -3.0957 0.87529E-02 0
7 7 0 28.76 0.38 10.50 0.0570 0.10796E-01 0
-7 8 0 2.26 4.51 2.44 -3.0128 0.17606E-01 2
-6 8 0 10.42 1.20 4.44 0.0961 0.23015E-01 2
-5 8 0 1.98 2.29 0.45 -2.2901 0.93645E-01 0
-4 8 0 25.04 0.32 9.00 0.0789 0.12594E-01 0
-3 8 0 19.07 0.46 7.43 -3.0642 0.15811E-01 0
-2 8 0 26.10 0.32 9.54 0.0896 0.12296E-01 0
-1 8 0 19.90 0.25 6.67 -0.0608 0.16990E-01 0
0 8 0 35.33 0.34 13.16 0.0717 0.86648E-02 0
1 8 0 16.38 0.46 5.37 -0.0760 0.20563E-01 0
2 8 0 24.42 0.33 9.02 0.0887 0.13327E-01 0
3 8 0 13.35 0.56 5.09 -3.0368 0.23245E-01 0
4 8 0 44.26 0.47 16.43 0.0497 0.66268E-02 0
5 8 0 5.35 1.00 1.41 -2.8727 0.58799E-01 0
6 8 0 6.38 1.62 2.10 0.2116 0.36214E-01 1
7 8 0 5.65 2.03 1.99 -3.0086 0.34963E-01 1
-6 9 0 11.29 1.44 4.43 -3.0642 0.20576E-01 2
-5 9 0 7.34 1.54 3.18 0.1232 0.29726E-01 2
-4 9 0 17.57 0.59 6.62 -3.0758 0.17229E-01 0
-3 9 0 16.90 0.58 6.01 0.0897 0.18264E-01 0
-2 9 0 10.85 0.68 4.47 -3.0366 0.26060E-01 0
-1 9 0 12.76 0.62 4.64 3.0449 0.24602E-01 0
0 9 0 12.18 0.48 4.51 -3.0335 0.26211E-01 0
1 9 0 12.57 0.59 4.80 0.1278 0.24437E-01 0
2 9 0 10.73 0.62 3.75 -3.0240 0.29961E-01 0
3 9 0 11.55 0.62 4.05 0.1293 0.26928E-01 0
4 9 0 9.48 0.72 3.40 -3.0190 0.31971E-01 0
5 9 0 7.42 1.39 3.03 0.1263 0.31779E-01 1
6 9 0 2.00 4.00 0.23 -1.5845 0.31201E-01 1
-4 10 0 3.38 3.37 2.40 0.1360 0.35982E-01 2
-3 10 0 11.71 1.27 3.97 -0.0499 0.22612E-01 2
-2 10 0 16.18 1.16 5.79 0.0782 0.16404E-01 2
-1 10 0 7.15 1.64 1.99 -0.1362 0.34050E-01 2
0 10 0 22.07 0.37 8.29 0.0623 0.14141E-01 0
1 10 0 18.22 0.92 6.62 -3.0774 0.15184E-01 1
2 10 0 11.86 1.07 4.70 0.0992 0.22212E-01 1
3 10 0 3.46 2.34 0.41 -0.7192 0.57123E-01 1
4 10 0 5.84 1.84 2.12 0.1571 0.36444E-01 1
1 0 1 87.67 0.32 0.00 0.0000 0.28267E-02 0
2 0 1 214.42 0.71 82.55 -0.0983 0.62208E-03 0
3 0 1 43.92 0.32 15.30 -0.2833 0.69552E-02 0
4 0 1 137.26 0.49 50.29 0.6108 0.14475E-02 0
5 0 1 38.26 0.41 14.52 -2.9878 0.76576E-02 0
6 0 1 57.81 0.49 21.54 0.3062 0.48370E-02 0
7 0 1 30.92 0.49 10.95 0.1488 0.99298E-02 0
8 0 1 26.56 0.40 9.01 -0.5776 0.12019E-01 0
9 0 1 9.65 0.95 3.42 2.5968 0.28927E-01 0
10 0 1 5.12 2.01 2.40 -0.6911 0.35576E-01 1
-9 1 1 8.50 1.46 3.85 0.6466 0.26675E-01 2
-8 1 1 34.25 0.60 12.23 -2.6049 0.88767E-02 2
-7 1 1 45.08 0.78 16.59 0.0456 0.61032E-02 2
-6 1 1 28.17 0.53 10.31 -2.1451 0.11372E-01 2
-5 1 1 123.89 0.57 46.57 -0.2829 0.16036E-02 2
-4 1 1 44.66 0.52 15.94 0.7802 0.65730E-02 2
-3 1 1 77.95 0.44 28.30 -1.5626 0.31346E-02 2
-2 1 1 133.49 0.52 48.86 -0.5353 0.15056E-02 2
-1 1 1 246.56 1.20 92.58 0.0520 0.48556E-03 2
0 1 1 93.51 0.22 0.00 0.0000 0.25944E-02 0
1 1 1 243.71 0.87 92.27 0.0138 0.49895E-03 0
2 1 1 149.72 0.49 52.97 -2.3329 0.12696E-02 0
3 1 1 140.42 0.42 53.06 -0.4004 0.13312E-02 0
4 1 1 60.38 0.35 22.43 0.6251 0.46914E-02 0
5 1 1 91.28 0.39 33.00 -0.4772 0.26783E-02 0
6 1 1 20.23 0.32 6.35 1.8838 0.16719E-01 0
7 1 1 17.75 0.31 6.37 1.0912 0.20239E-01 0
8 1 1 8.83 0.89 2.99 -1.9972 0.35915E-01 0
9 1 1 39.12 0.63 14.69 0.3896 0.73230E-02 0
10 1 1 8.02 1.51 2.78 -2.8074 0.29907E-01 1
-9 2 1 9.84 1.28 3.86 1.6342 0.24208E-01 2
-8 2 1 46.22 0.83 16.69 0.1601 0.59467E-02 2
-7 2 1 40.86 0.79 15.00 2.5691 0.67145E-02 2
-6 2 1 36.27 0.72 13.06 0.6425 0.81454E-02 2
-5 2 1 27.47 0.62 9.30 1.2069 0.10987E-01 2
-4 2 1 98.58 0.51 36.79 0.8546 0.24179E-02 2
-3 2 1 72.53 0.45 26.06 -0.3599 0.37737E-02 2
-2 2 1 131.32 0.54 49.92 0.4749 0.15217E-02 2
-1 2 1 142.68 0.64 51.36 2.3729 0.12899E-02 2
0 2 1 220.98 0.48 83.63 0.1693 0.61703E-03 0
1 2 1 130.63 0.45 47.87 0.5144 0.15334E-02 0
2 2 1 126.77 0.36 48.19 -0.3769 0.15707E-02 0
3 2 1 5.21 0.61 2.15 2.2572 0.63739E-01 0
4 2 1 71.48 0.35 26.18 0.2060 0.37667E-02 0
5 2 1 56.91 0.41 21.32 -1.7964 0.50002E-02 0
6 2 1 86.90 0.48 32.24 0.0493 0.28244E-02 0
7 2 1 24.11 0.37 9.05 -2.0590 0.13462E-01 0
8 2 1 21.03 0.35 7.79 -0.9714 0.14385E-01 0
9 2 1 12.18 0.81 4.63 2.4871 0.22839E-01 0
10 2 1 9.24 1.58 4.71 -0.5746 0.21411E-01 1
-9 3 1 6.26 1.70 1.69 0.0695 0.38237E-01 2
-8 3 1 18.24 0.50 6.85 -1.7939 0.17419E-01 2
-7 3 1 44.04 0.80 16.43 -0.1804 0.61697E-02 2
-6 3 1 23.24 0.56 8.57 -0.6339 0.13325E-01 2
-5 3 1 43.07 0.60 15.91 -0.0974 0.66551E-02 2
-4 3 1 51.46 0.54 19.19 2.8933 0.53574E-02 2
-3 3 1 151.36 0.65 56.91 -0.2893 0.11494E-02 2
-2 3 1 17.93 0.34 3.65 -1.9977 0.28181E-01 2
-1 3 1 145.34 0.74 55.01 0.4870 0.12722E-02 2
0 3 1 43.16 0.21 14.91 0.1675 0.70775E-02 0
1 3 1 88.88 0.26 32.46 1.5844 0.29876E-02 0
2 3 1 71.21 0.28 25.56 0.3093 0.38768E-02 0
3 3 1 157.19 0.44 58.11 0.3665 0.11408E-02 0
4 3 1 74.49 0.36 27.10 2.0975 0.35111E-02 0
5 3 1 72.20 0.40 26.71 0.1607 0.37067E-02 0
6 3 1 53.07 0.49 19.25 2.3248 0.53976E-02 0
7 3 1 29.08 0.40 10.81 0.0660 0.10655E-01 0
8 3 1 15.67 0.70 5.31 -0.2032 0.19844E-01 0
9 3 1 13.61 0.78 5.07 0.9879 0.21995E-01 0
10 3 1 15.61 1.23 5.13 -2.6847 0.17296E-01 1
-9 4 1 3.93 2.45 2.46 0.9606 0.36729E-01 2
-8 4 1 6.40 1.52 0.76 -1.4919 0.40434E-01 2
-7 4 1 17.93 0.46 6.73 2.9100 0.17318E-01 2
-6 4 1 49.04 0.74 18.38 -0.1078 0.55000E-02 2
-5 4 1 9.03 0.99 1.51 -1.3876 0.38094E-01 2
-4 4 1 100.86 0.55 37.46 0.0781 0.22613E-02 2
-3 4 1 77.94 0.51 28.50 -2.0514 0.33712E-02 2
-2 4 1 68.81 0.47 25.80 -0.0688 0.37797E-02 2
-1 4 1 61.72 0.43 23.41 -0.6580 0.46003E-02 2
0 4 1 132.19 0.34 48.37 -0.5264 0.14933E-02 0
1 4 1 47.92 0.30 17.20 -0.8487 0.65811E-02 0
2 4 1 90.40 0.31 34.25 -0.7657 0.25707E-02 0
3 4 1 53.75 0.35 19.65 -2.7886 0.53995E-02 0
4 4 1 102.25 0.37 37.41 0.0145 0.22832E-02 0
5 4 1 36.08 0.48 13.87 -0.8305 0.84134E-02 0
6 4 1 27.17 0.38 9.94 0.9279 0.12270E-01 0
7 4 1 9.71 0.84 4.15 -2.5959 0.27537E-01 0
8 4 1 11.13 0.83 4.72 0.0534 0.24124E-01 0
9 4 1 10.37 0.88 3.67 2.0809 0.27314E-01 0
10 4 1 13.25 1.40 5.99 -0.2736 0.16685E-01 1
-8 5 1 6.65 1.51 2.58 -2.0958 0.36881E-01 2
-7 5 1 32.00 0.61 11.79 0.3402 0.92889E-02 2
-6 5 1 24.84 0.58 9.20 2.8361 0.12039E-01 2
-5 5 1 24.15 0.53 9.04 1.2564 0.13548E-01 2
-4 5 1 33.22 0.68 12.83 0.7957 0.83814E-02 2
-3 5 1 70.97 0.57 26.35 -0.0473 0.36522E-02 2
-2 5 1 52.16 0.51 19.99 1.8388 0.51223E-02 2
-1 5 1 93.05 0.48 34.44 0.5707 0.26283E-02 2
0 5 1 38.75 0.28 14.47 3.1344 0.77417E-02 0
1 5 1 126.76 0.47 47.39 0.3679 0.15970E-02 0
2 5 1 31.17 0.37 10.65 -1.2408 0.10902E-01 0
3 5 1 43.26 0.38 16.24 0.2739 0.68881E-02 0
4 5 1 4.36 1.03 0.18 0.7792 0.62096E-01 0
5 5 1 20.36 0.31 7.27 -1.1459 0.15103E-01 0
6 5 1 13.86 0.64 5.43 0.7357 0.20423E-01 0
7 5 1 41.72 0.58 15.55 -0.3508 0.68401E-02 0
8 5 1 17.72 0.70 6.43 -3.0386 0.16758E-01 0
9 5 1 10.33 1.35 4.54 0.7657 0.22866E-01 1
-7 6 1 12.01 1.12 4.22 -0.8812 0.23925E-01 2
-6 6 1 20.91 0.51 7.05 -0.6763 0.15068E-01 2
-5 6 1 16.12 0.44 6.21 -0.8294 0.20009E-01 2
-4 6 1 24.67 0.52 8.57 -0.7771 0.12471E-01 2
-3 6 1 53.91 0.64 20.21 -2.2555 0.52081E-02 2
-2 6 1 86.62 0.60 32.28 0.0492 0.27832E-02 2
-1 6 1 22.09 0.42 7.69 -1.7920 0.15801E-01 2
0 6 1 55.24 0.32 21.02 -0.1739 0.50354E-02 0
1 6 1 24.00 0.31 9.22 2.2517 0.12562E-01 0
2 6 1 32.30 0.44 12.02 -0.4724 0.90893E-02 0
3 6 1 22.03 0.35 7.85 0.5399 0.14146E-01 0
4 6 1 52.18 0.47 18.69 0.2323 0.56211E-02 0
5 6 1 26.24 0.38 9.62 -2.6967 0.12204E-01 0
6 6 1 22.07 0.35 7.87 0.8429 0.15162E-01 0
7 6 1 17.11 0.68 6.18 -2.3665 0.18151E-01 0
8 6 1 16.53 1.05 5.72 0.1330 0.16687E-01 1
9 6 1 6.39 1.87 1.63 0.8651 0.33756E-01 1
-6 7 1 15.02 1.01 5.65 2.4910 0.17708E-01 2
-5 7 1 43.33 0.79 16.05 0.4515 0.64136E-02 2
-4 7 1 11.36 0.99 3.79 2.8690 0.24464E-01 2
-3 7 1 28.44 0.51 10.87 0.1162 0.10549E-01 2
-2 7 1 20.61 0.52 8.02 2.1567 0.13951E-01 2
-1 7 1 14.12 0.78 4.81 -0.8746 0.20255E-01 2
0 7 1 30.37 0.39 11.18 -0.2236 0.10173E-01 0
1 7 1 45.17 0.46 16.63 0.0935 0.64943E-02 0
2 7 1 43.06 0.47 15.58 -2.4809 0.69953E-02 0
3 7 1 44.69 0.49 16.83 0.2988 0.65276E-02 0
4 7 1 18.76 0.31 6.98 -2.7333 0.17429E-01 0
5 7 1 31.89 0.48 11.53 -0.2049 0.95274E-02 0
6 7 1 9.67 0.82 3.66 0.7837 0.29967E-01 0
7 7 1 12.85 1.14 4.20 -1.6079 0.20769E-01 1
8 7 1 2.14 4.27 2.51 2.9673 0.16566E-01 1
-5 8 1 18.64 0.93 6.43 -3.0981 0.15322E-01 2
-4 8 1 11.85 1.00 4.78 0.1955 0.22422E-01 2
-3 8 1 14.37 0.89 5.20 0.0716 0.19626E-01 2
-2 8 1 24.66 0.54 8.97 1.0827 0.13037E-01 2
-1 8 1 7.57 1.11 2.06 2.2530 0.36595E-01 2
0 8 1 27.06 0.30 9.88 0.7315 0.12092E-01 0
1 8 1 32.05 0.51 11.79 2.7070 0.93097E-02 0
2 8 1 43.81 0.51 16.51 -0.0487 0.65326E-02 0
3 8 1 16.07 0.47 6.03 1.8653 0.18382E-01 0
4 8 1 5.74 1.05 1.83 1.5480 0.53258E-01 0
5 8 1 5.20 1.19 1.99 2.3018 0.48117E-01 0
6 8 1 12.07 1.14 5.46 0.8474 0.20297E-01 1
7 8 1 8.11 1.55 1.88 -1.6078 0.32498E-01 1
-4 9 1 12.55 1.07 4.22 -1.9838 0.23013E-01 2
-3 9 1 11.00 1.12 4.37 -0.8342 0.22253E-01 2
-2 9 1 13.44 0.96 5.15 -2.3346 0.20921E-01 2
-1 9 1 37.03 0.79 14.37 -0.2881 0.72516E-02 2
0 9 1 10.27 0.60 3.90 -2.3806 0.30908E-01 0
1 9 1 8.86 0.76 3.36 -0.3624 0.31766E-01 0
2 9 1 13.13 0.68 4.63 -1.5941 0.24804E-01 0
3 9 1 4.75 1.22 1.86 0.4696 0.56138E-01 0
4 9 1 8.73 0.81 2.99 -1.0441 0.36412E-01 0
5 9 1 11.62 1.17 4.42 -0.1949 0.21976E-01 1
6 9 1 14.12 1.18 5.41 3.0867 0.18019E-01 1
0 10 1 3.86 2.19 2.94 0.9192 0.40208E-01 1
1 10 1 9.70 1.19 3.29 0.0865 0.27327E-01 1
2 10 1 9.90 1.09 2.95 -0.1314 0.29250E-01 1
3 10 1 8.70 1.20 3.52 2.6257 0.27913E-01 1
4 10 1 10.98 1.35 3.92 -0.1088 0.22649E-01 1
0 0 2 107.66 0.29 39.11 0.0723 0.21293E-02 0
1 0 2 46.57 0.33 16.31 -2.6115 0.65932E-02 0
2 0 2 19.32 0.28 7.80 0.3219 0.15974E-01 0
3 0 2 14.72 0.37 5.47 -2.9881 0.22295E-01 0
4 0 2 65.64 0.41 25.04 -0.4757 0.39650E-02 0
5 0 2 1.87 2.64 0.89 -1.2660 0.69336E-01 0
6 0 2 63.55 0.50 23.01 0.0740 0.43788E-02 0
7 0 2 33.84 0.49 11.94 -2.6676 0.93271E-02 0
8 0 2 18.18 0.69 6.43 0.7185 0.17618E-01 0
9 0 2 8.21 1.02 3.76 0.2984 0.30155E-01 0
10 0 2 14.39 1.30 4.78 -0.0785 0.17855E-01 1
-9 1 2 30.91 0.67 11.33 0.1383 0.94705E-02 2
-8 1 2 3.05 2.80 1.60 -1.1375 0.51019E-01 2
-7 1 2 56.09 0.79 20.92 0.0436 0.46658E-02 2
-6 1 2 23.30 0.56 8.40 0.9558 0.12317E-01 2
-5 1 2 33.28 0.69 11.49 0.4341 0.93617E-02 2
-4 1 2 101.85 0.59 37.80 -0.1144 0.22086E-02 2
-3 1 2 174.97 0.74 65.66 0.0515 0.91674E-03 2
-2 1 2 105.17 0.48 37.11 -0.1581 0.22307E-02 2
-1 1 2 199.95 0.83 73.84 0.0614 0.73400E-03 2
0 1 2 44.47 0.25 15.57 2.7301 0.67845E-02 0
1 1 2 196.42 0.57 73.86 0.0196 0.75395E-03 0
2 1 2 137.60 0.44 49.12 0.0736 0.14679E-02 0
3 1 2 66.53 0.36 24.42 -0.0651 0.41312E-02 0
4 1 2 32.08 0.44 10.83 3.1416 0.10065E-01 0
5 1 2 44.26 0.46 16.03 0.5132 0.68576E-02 0
6 1 2 18.58 0.32 6.80 -1.6619 0.19740E-01 0
7 1 2 44.47 0.55 15.78 -0.2967 0.64501E-02 0
8 1 2 15.05 0.73 5.37 -3.0199 0.19811E-01 0
9 1 2 2.12 3.02 0.99 -1.1502 0.42111E-01 0
10 1 2 13.85 1.32 5.16 -3.0926 0.17898E-01 1
-9 2 2 5.17 2.35 2.64 2.9417 0.31716E-01 2
-8 2 2 11.70 1.14 4.70 -3.0224 0.21582E-01 2
-7 2 2 9.65 1.23 3.35 -1.8682 0.29141E-01 2
-6 2 2 63.35 0.73 23.24 0.1105 0.41437E-02 2
-5 2 2 62.71 0.67 23.09 3.1362 0.42713E-02 2
-4 2 2 69.38 0.60 25.29 0.2353 0.38352E-02 2
-3 2 2 38.02 0.56 14.03 3.0034 0.77474E-02 2
-2 2 2 123.16 0.66 45.38 0.0113 0.16590E-02 2
-1 2 2 136.27 0.59 49.22 -0.0934 0.14586E-02 2
0 2 2 17.56 0.20 7.64 0.2644 0.16570E-01 0
1 2 2 104.18 0.31 36.86 0.1167 0.22762E-02 0
2 2 2 121.98 0.32 45.42 0.0943 0.17174E-02 0
3 2 2 19.07 0.30 6.18 -0.4209 0.18667E-01 0
4 2 2 183.07 0.56 68.00 0.0672 0.86092E-03 0
5 2 2 43.84 0.46 15.74 2.6674 0.66702E-02 0
6 2 2 40.54 0.51 15.04 0.2972 0.74071E-02 0
7 2 2 15.32 0.67 5.28 0.1114 0.20093E-01 0
8 2 2 22.52 0.35 7.93 0.2218 0.14340E-01 0
9 2 2 14.10 0.84 5.11 -0.2401 0.20686E-01 0
10 2 2 8.88 1.58 1.78 0.0083 0.28957E-01 1
-9 3 2 26.17 0.57 9.81 0.0361 0.11492E-01 2
-8 3 2 10.72 1.16 3.56 -2.8940 0.25544E-01 2
-7 3 2 52.39 0.80 18.76 0.0840 0.52371E-02 2
-6 3 2 28.51 0.55 9.80 2.9522 0.10963E-01 2
-5 3 2 70.34 0.67 24.89 -0.0679 0.37730E-02 2
-4 3 2 66.37 0.61 24.68 -0.0887 0.39156E-02 2
-3 3 2 48.04 0.55 17.59 0.5134 0.61732E-02 2
-2 3 2 17.72 0.37 5.68 0.1534 0.19062E-01 2
-1 3 2 66.35 0.46 25.10 0.2426 0.40886E-02 2
0 3 2 13.67 0.18 5.43 -2.8933 0.23434E-01 0
1 3 2 176.13 0.54 65.71 0.0302 0.92520E-03 0
2 3 2 39.09 0.35 14.56 -2.8329 0.79173E-02 0
3 3 2 44.84 0.38 16.24 -0.3302 0.65383E-02 0
4 3 2 6.57 0.80 2.91 0.3673 0.36864E-01 0
5 3 2 26.57 0.35 9.56 0.1564 0.12137E-01 0
6 3 2 28.36 0.38 10.42 -0.4512 0.11525E-01 0
7 3 2 13.16 0.71 4.41 0.4967 0.23814E-01 0
8 3 2 32.97 0.44 12.12 2.8770 0.91320E-02 0
9 3 2 23.76 0.36 8.94 0.1156 0.13206E-01 0
10 3 2 4.60 2.93 3.02 -3.0593 0.29592E-01 1
-8 4 2 18.99 0.50 6.73 -0.0517 0.16543E-01 2
-7 4 2 10.98 1.14 4.24 -0.1678 0.23632E-01 2
-6 4 2 11.34 1.03 3.25 0.0984 0.27225E-01 2
-5 4 2 12.24 0.94 4.51 3.0531 0.23626E-01 2
-4 4 2 68.34 0.63 24.35 -0.0489 0.38891E-02 2
-3 4 2 10.49 0.84 3.67 -0.7415 0.29627E-01 2
-2 4 2 181.41 0.73 67.82 0.0025 0.85623E-03 2
-1 4 2 32.40 0.53 11.03 -2.9791 0.98443E-02 2
0 4 2 72.23 0.29 27.00 0.6130 0.38447E-02 0
1 4 2 104.00 0.35 37.67 0.0909 0.22360E-02 0
2 4 2 69.39 0.37 24.73 -0.0856 0.39625E-02 0
3 4 2 66.49 0.40 24.60 0.0553 0.40342E-02 0
4 4 2 69.83 0.43 24.67 0.1735 0.39697E-02 0
5 4 2 41.68 0.49 15.29 -3.0539 0.70955E-02 0
6 4 2 72.28 0.51 26.57 -0.0483 0.36041E-02 0
7 4 2 7.41 1.00 2.23 -1.9174 0.42813E-01 0
8 4 2 23.39 0.39 8.83 -0.0295 0.13305E-01 0
9 4 2 2.30 4.61 1.00 -2.6928 0.23230E-01 1
-8 5 2 12.92 1.21 4.83 3.0588 0.19616E-01 2
-7 5 2 7.00 1.45 2.45 -0.0479 0.34781E-01 2
-6 5 2 6.47 1.40 1.70 -2.8737 0.40605E-01 2
-5 5 2 24.45 0.55 8.34 -0.1315 0.12815E-01 2
-4 5 2 41.82 0.68 15.20 -3.1129 0.68194E-02 2
-3 5 2 25.83 0.47 9.44 0.1002 0.12043E-01 2
-2 5 2 43.99 0.59 16.51 -2.5697 0.65158E-02 2
-1 5 2 41.02 0.56 14.86 -0.3258 0.69713E-02 2
0 5 2 2.30 1.26 0.71 -1.2041 0.12559 0
1 5 2 31.44 0.41 10.63 -0.1729 0.10224E-01 0
2 5 2 63.88 0.40 23.26 -3.0459 0.44179E-02 0
3 5 2 70.00 0.43 25.26 0.1907 0.39325E-02 0
4 5 2 13.86 0.58 4.74 -2.7646 0.24633E-01 0
5 5 2 25.96 0.38 8.80 0.3711 0.12905E-01 0
6 5 2 6.91 0.94 0.97 0.1100 0.52872E-01 0
7 5 2 4.76 1.33 1.36 3.0755 0.61331E-01 0
8 5 2 6.36 1.12 1.54 0.3466 0.47079E-01 0
9 5 2 19.42 1.21 7.42 -0.1566 0.12959E-01 1
-7 6 2 1.88 3.75 1.05 0.3166 0.34151E-01 2
-6 6 2 24.38 0.51 8.96 0.4002 0.12867E-01 2
-5 6 2 1.84 3.69 1.47 -0.8259 0.35724E-01 2
-4 6 2 71.04 0.70 26.80 0.1414 0.35279E-02 2
-3 6 2 26.91 0.50 9.96 0.3670 0.11539E-01 2
-2 6 2 38.82 0.65 14.55 -0.1295 0.73500E-02 2
-1 6 2 15.28 0.36 5.49 1.7019 0.21349E-01 2
0 6 2 62.62 0.35 23.00 0.0510 0.44991E-02 0
1 6 2 25.99 0.41 9.46 -1.0146 0.12127E-01 0
2 6 2 63.21 0.44 23.05 0.0041 0.43543E-02 0
3 6 2 29.69 0.48 10.14 -2.8076 0.10928E-01 0
4 6 2 12.17 0.62 3.59 0.4271 0.30248E-01 0
5 6 2 6.74 0.93 1.76 -2.7936 0.47262E-01 0
6 6 2 24.47 0.39 8.59 -0.2335 0.13128E-01 0
7 6 2 15.48 0.72 5.87 2.9824 0.19294E-01 0
8 6 2 3.67 2.89 2.05 0.7024 0.40491E-01 1
-6 7 2 15.80 1.07 6.08 -2.8348 0.17251E-01 2
-5 7 2 1.87 3.75 1.65 2.5143 0.34791E-01 2
-4 7 2 1.88 3.76 1.33 2.2231 0.24623E-01 2
-3 7 2 10.52 1.00 3.93 -0.1281 0.24560E-01 2
-2 7 2 14.12 0.82 5.52 -0.2855 0.20044E-01 2
-1 7 2 44.53 0.68 16.48 0.4304 0.62917E-02 2
0 7 2 31.11 0.40 11.36 2.7892 0.98189E-02 0
1 7 2 57.14 0.47 20.91 0.0669 0.49026E-02 0
2 7 2 8.05 0.79 2.36 2.0396 0.38159E-01 0
3 7 2 50.59 0.50 18.75 0.0244 0.56619E-02 0
4 7 2 10.35 0.72 4.14 -0.0253 0.27279E-01 0
5 7 2 8.75 0.82 2.73 0.5027 0.37665E-01 0
6 7 2 5.76 1.14 1.46 -0.7926 0.54001E-01 0
7 7 2 16.95 1.13 6.22 0.2304 0.15614E-01 1
-5 8 2 4.72 1.93 1.86 -0.6438 0.43617E-01 2
-4 8 2 23.26 0.51 8.93 0.1722 0.13064E-01 2
-3 8 2 33.51 0.79 12.47 -2.7764 0.84202E-02 2
-2 8 2 20.06 0.41 7.76 -0.0248 0.14847E-01 2
-1 8 2 15.06 0.84 5.33 -3.0427 0.19200E-01 2
0 8 2 15.13 0.43 5.65 -0.5022 0.20211E-01 0
1 8 2 2.35 2.01 0.84 0.6864 0.76422E-01 0
2 8 2 12.87 0.67 4.94 2.8132 0.23423E-01 0
3 8 2 9.47 0.75 3.41 -3.1174 0.31066E-01 0
4 8 2 19.46 0.32 6.89 0.2343 0.16885E-01 0
5 8 2 15.09 0.70 4.95 -2.8824 0.21076E-01 0
6 8 2 19.87 1.05 7.43 0.0087 0.13386E-01 1
-3 9 2 22.63 0.52 8.88 0.0163 0.13092E-01 2
-2 9 2 13.56 0.98 4.96 0.1410 0.20274E-01 2
-1 9 2 4.49 1.83 1.93 1.3785 0.49233E-01 2
0 9 2 8.64 0.68 3.99 -0.4508 0.31945E-01 0
1 9 2 29.27 0.42 11.21 -0.0167 0.10161E-01 0
2 9 2 7.59 0.93 2.89 -2.6528 0.37776E-01 0
3 9 2 25.71 0.52 9.84 0.0894 0.11697E-01 0
4 9 2 15.57 1.09 6.05 3.0200 0.16563E-01 1
5 9 2 7.33 1.62 2.23 -0.0750 0.32540E-01 1
0 10 2 14.36 1.09 4.90 0.2624 0.19189E-01 1
1 10 2 16.98 1.04 6.40 -2.9933 0.16017E-01 1
2 10 2 7.16 1.70 2.07 0.2119 0.32354E-01 1
3 10 2 10.01 1.30 2.73 -0.1973 0.27705E-01 1
0 0 3 110.31 0.36 41.00 0.0585 0.19617E-02 0
1 0 3 66.47 0.42 23.55 -1.2415 0.43238E-02 0
2 0 3 143.42 0.41 53.59 -0.0508 0.13067E-02 0
3 0 3 33.93 0.48 12.23 -0.4138 0.91370E-02 0
4 0 3 76.61 0.45 28.34 -0.3922 0.32897E-02 0
5 0 3 48.42 0.50 17.44 2.9005 0.60048E-02 0
6 0 3 35.95 0.56 13.31 -0.1531 0.81327E-02 0
7 0 3 15.24 0.72 5.45 -0.5564 0.20575E-01 0
8 0 3 23.58 0.39 7.98 0.4031 0.14027E-01 0
9 0 3 17.05 0.85 5.14 -2.6042 0.18741E-01 0
10 0 3 10.58 1.60 2.93 1.0311 0.23586E-01 1
-9 1 3 8.35 1.78 2.94 -0.5279 0.25474E-01 2
-8 1 3 16.18 1.07 6.23 2.1064 0.15831E-01 2
-7 1 3 38.31 0.84 13.75 0.2360 0.73543E-02 2
-6 1 3 11.82 1.06 4.44 -2.5080 0.24402E-01 2
-5 1 3 88.75 0.70 32.01 0.4072 0.27517E-02 2
-4 1 3 10.80 0.96 2.23 -2.7139 0.33671E-01 2
-3 1 3 76.55 0.65 27.93 1.1722 0.34748E-02 2
-2 1 3 50.70 0.58 18.25 1.2491 0.55549E-02 2
-1 1 3 123.37 0.53 45.51 -0.0142 0.16564E-02 2
0 1 3 62.80 0.31 21.92 1.2431 0.45025E-02 0
1 1 3 123.17 0.38 45.82 0.1232 0.16781E-02 0
2 1 3 54.89 0.42 20.52 2.3532 0.50795E-02 0
3 1 3 137.80 0.43 49.82 0.3009 0.14496E-02 0
4 1 3 35.91 0.47 13.55 -0.8369 0.84544E-02 0
5 1 3 57.88 0.49 21.50 0.3020 0.49437E-02 0
6 1 3 15.32 0.67 5.31 -1.8976 0.22327E-01 0
7 1 3 15.02 0.72 5.48 0.6195 0.21178E-01 0
8 1 3 4.59 1.50 1.40 2.4195 0.48432E-01 0
9 1 3 25.18 0.39 8.72 -0.5367 0.12743E-01 0
10 1 3 7.51 1.96 2.00 -3.1392 0.28815E-01 1
-9 2 3 15.64 1.23 5.55 -1.7865 0.16877E-01 2
-8 2 3 43.33 0.90 15.24 0.1292 0.63434E-02 2
-7 2 3 27.55 0.63 9.60 -2.3071 0.11384E-01 2
-6 2 3 37.32 0.80 13.02 -0.3991 0.76667E-02 2
-5 2 3 21.14 0.48 8.12 -0.5821 0.14192E-01 2
-4 2 3 100.14 0.65 36.78 -0.6209 0.22302E-02 2
-3 2 3 59.51 0.66 22.47 -0.0765 0.44396E-02 2
-2 2 3 101.67 0.56 37.05 -0.1310 0.22251E-02 2
-1 2 3 58.22 0.51 21.94 -2.2733 0.48792E-02 2
0 2 3 143.43 0.37 53.78 0.1464 0.13100E-02 0
1 2 3 55.14 0.38 19.85 -1.2541 0.55151E-02 0
2 2 3 102.75 0.39 37.70 0.2464 0.22499E-02 0
3 2 3 33.01 0.49 12.15 1.1529 0.90199E-02 0
4 2 3 32.30 0.47 11.88 -0.1648 0.92458E-02 0
5 2 3 27.08 0.37 9.16 1.7285 0.11309E-01 0
6 2 3 65.42 0.52 24.57 0.0786 0.40523E-02 0
7 2 3 11.49 0.78 3.84 2.6654 0.25673E-01 0
8 2 3 22.10 0.37 7.74 0.9232 0.15388E-01 0
9 2 3 15.81 0.87 5.52 -3.1109 0.18505E-01 0
10 2 3 8.80 1.78 4.35 0.7079 0.22833E-01 1
-8 3 3 12.18 1.25 5.18 1.8603 0.19217E-01 2
-7 3 3 18.41 0.99 7.15 -0.1068 0.14614E-01 2
-6 3 3 14.51 1.01 5.90 1.3533 0.17829E-01 2
-5 3 3 38.12 0.74 13.01 0.6097 0.79124E-02 2
-4 3 3 38.92 0.69 14.03 -2.7685 0.74853E-02 2
-3 3 3 122.57 0.61 44.21 0.3414 0.17320E-02 2
-2 3 3 35.28 0.59 13.72 -1.1783 0.85934E-02 2
-1 3 3 132.42 0.72 48.91 -0.2131 0.14463E-02 2
0 3 3 32.31 0.33 11.50 0.3026 0.95553E-02 0
1 3 3 67.69 0.39 24.81 -1.0924 0.38357E-02 0
2 3 3 59.30 0.41 22.42 0.0244 0.46169E-02 0
3 3 3 120.18 0.44 43.34 -0.2530 0.17807E-02 0
4 3 3 60.47 0.45 23.03 -2.0871 0.46243E-02 0
5 3 3 58.25 0.49 21.98 0.2877 0.47379E-02 0
6 3 3 33.01 0.56 12.15 -2.0495 0.94725E-02 0
7 3 3 29.89 0.43 11.19 -0.1088 0.99745E-02 0
8 3 3 13.37 0.87 4.88 -0.0963 0.21495E-01 0
9 3 3 14.98 1.23 4.99 -1.0298 0.17496E-01 1
-8 4 3 10.43 1.35 4.01 0.6104 0.23851E-01 2
-7 4 3 17.54 0.99 6.94 -2.8727 0.15011E-01 2
-6 4 3 37.58 0.81 13.75 0.0961 0.74753E-02 2
-5 4 3 10.54 1.08 3.87 3.1274 0.25816E-01 2
-4 4 3 55.79 0.69 20.28 0.1114 0.49125E-02 2
-3 4 3 56.99 0.64 21.89 2.1423 0.46106E-02 2
-2 4 3 34.56 0.61 12.66 0.3978 0.87282E-02 2
-1 4 3 31.93 0.58 12.43 0.7853 0.86929E-02 2
0 4 3 80.60 0.33 29.65 0.5152 0.32527E-02 0
1 4 3 6.93 0.79 2.15 -2.7567 0.52300E-01 0
2 4 3 103.99 0.43 38.42 0.7042 0.22410E-02 0
3 4 3 38.70 0.44 13.59 2.8984 0.78931E-02 0
4 4 3 55.14 0.47 20.16 0.0297 0.51419E-02 0
5 4 3 23.52 0.40 9.03 0.9220 0.12395E-01 0
6 4 3 16.41 0.51 6.35 -0.7413 0.17118E-01 0
7 4 3 16.36 0.75 5.79 2.2042 0.18465E-01 0
8 4 3 13.90 0.86 4.50 0.2463 0.21994E-01 0
9 4 3 13.98 1.28 4.17 -1.9587 0.20022E-01 1
-7 5 3 23.85 0.57 8.69 -0.2272 0.12606E-01 2
-6 5 3 10.15 1.15 3.29 -2.6340 0.27605E-01 2
-5 5 3 21.43 0.49 8.00 -0.6382 0.13924E-01 2
-4 5 3 27.55 0.54 9.98 -0.9566 0.11347E-01 2
-3 5 3 56.24 0.67 21.54 -0.1632 0.46741E-02 2
-2 5 3 28.52 0.67 10.44 -1.6725 0.10458E-01 2
-1 5 3 54.94 0.60 20.91 -0.1585 0.49727E-02 2
0 5 3 48.88 0.34 17.78 -2.8016 0.61213E-02 0
1 5 3 88.10 0.42 31.23 -0.3034 0.28708E-02 0
2 5 3 17.71 0.28 7.48 0.4501 0.15407E-01 0
3 5 3 34.44 0.47 12.01 -0.4322 0.88299E-02 0
4 5 3 10.98 0.65 4.10 -2.8073 0.28623E-01 0
5 5 3 23.33 0.37 9.06 0.8068 0.13741E-01 0
6 5 3 16.72 0.65 5.39 -1.5588 0.20374E-01 0
7 5 3 27.13 0.44 9.45 0.4324 0.11914E-01 0
8 5 3 18.37 1.15 6.10 -3.1370 0.14951E-01 1
-7 6 3 4.56 2.83 1.06 2.6321 0.35483E-01 2
-6 6 3 21.62 0.48 7.17 0.6166 0.15701E-01 2
-5 6 3 13.28 1.01 4.43 1.6041 0.20722E-01 2
-4 6 3 19.58 0.43 7.48 0.9236 0.16268E-01 2
-3 6 3 29.64 0.53 11.08 2.1302 0.99895E-02 2
-2 6 3 62.82 0.67 24.46 0.0259 0.40344E-02 2
-1 6 3 11.60 0.87 4.20 2.0268 0.24346E-01 2
0 6 3 37.15 0.38 13.78 0.3336 0.82640E-02 0
1 6 3 11.76 0.59 3.82 2.7913 0.28470E-01 0
2 6 3 36.85 0.48 13.90 0.5502 0.82765E-02 0
3 6 3 20.13 0.31 6.90 -1.3579 0.18058E-01 0
4 6 3 36.09 0.53 13.75 0.0509 0.80962E-02 0
5 6 3 9.84 0.86 2.95 2.9639 0.31100E-01 0
6 6 3 20.05 0.56 6.65 -0.4490 0.15960E-01 0
7 6 3 8.98 1.07 3.27 2.2025 0.29696E-01 0
8 6 3 15.67 1.27 5.72 -0.3138 0.16202E-01 1
-6 7 3 12.25 1.18 3.84 -2.0713 0.23486E-01 2
-5 7 3 24.39 0.53 9.08 -0.2893 0.12256E-01 2
-4 7 3 16.38 0.95 6.50 -2.0940 0.17381E-01 2
-3 7 3 31.91 0.79 11.44 0.2575 0.89885E-02 2
-2 7 3 14.16 0.91 4.49 -2.4122 0.21948E-01 2
-1 7 3 12.86 0.90 4.68 -0.3139 0.21791E-01 2
0 7 3 13.28 0.51 4.95 0.4003 0.23019E-01 0
1 7 3 36.95 0.51 13.49 -0.0984 0.80717E-02 0
2 7 3 26.11 0.38 8.89 2.4192 0.12266E-01 0
3 7 3 19.02 0.32 7.44 0.3239 0.16702E-01 0
4 7 3 18.20 0.68 6.81 3.0302 0.16011E-01 0
5 7 3 25.85 0.39 9.00 0.3753 0.12601E-01 0
6 7 3 4.90 1.60 1.49 -2.2032 0.51109E-01 0
7 7 3 7.57 1.77 3.41 1.2773 0.27749E-01 1
-4 8 3 12.07 1.12 4.42 -0.0013 0.21949E-01 2
-3 8 3 13.64 1.03 4.85 -0.0321 0.20289E-01 2
-2 8 3 18.94 0.45 6.86 -0.7821 0.16178E-01 2
-1 8 3 7.07 1.32 2.08 -2.0881 0.38605E-01 2
0 8 3 22.43 0.29 7.59 -0.2187 0.14545E-01 0
1 8 3 18.58 0.52 7.04 -2.0030 0.17067E-01 0
2 8 3 40.21 0.61 15.13 -0.0223 0.70617E-02 0
3 8 3 15.93 0.74 5.95 -1.7917 0.19348E-01 0
4 8 3 10.09 0.92 3.58 -0.3701 0.27846E-01 0
5 8 3 2.09 4.18 0.66 2.4640 0.28299E-01 1
6 8 3 5.82 2.15 3.22 -1.0277 0.28942E-01 1
-2 9 3 15.29 1.12 5.57 -3.0196 0.17424E-01 2
-1 9 3 25.10 0.57 9.26 0.6608 0.12324E-01 2
0 9 3 14.68 0.63 4.83 2.7653 0.21765E-01 0
1 9 3 9.68 0.91 3.50 0.7844 0.31038E-01 0
2 9 3 12.56 0.83 4.93 1.8545 0.21347E-01 0
3 9 3 6.21 1.78 2.03 -1.0102 0.33966E-01 1
4 9 3 6.34 1.89 2.59 0.4557 0.31582E-01 1
0 10 3 2.28 4.56 2.44 -0.8457 0.14780E-01 1
1 10 3 7.06 1.61 1.88 -0.6393 0.35534E-01 1
2 10 3 8.73 1.37 1.86 1.1443 0.33107E-01 1
0 0 4 242.89 0.59 89.87 0.0315 0.51964E-03 0
1 0 4 10.70 0.74 4.53 2.6403 0.23924E-01 0
2 0 4 122.12 0.48 44.95 0.2236 0.17221E-02 0
3 0 4 38.04 0.54 14.29 0.6213 0.75420E-02 0
4 0 4 57.75 0.55 20.94 0.2302 0.48839E-02 0
5 0 4 47.24 0.59 17.67 -0.1743 0.59528E-02 0
6 0 4 40.21 0.64 15.04 0.1168 0.70858E-02 0
7 0 4 25.74 0.41 9.24 2.9377 0.12161E-01 0
8 0 4 23.34 0.61 8.22 0.0916 0.13154E-01 0
9 0 4 10.71 1.55 3.50 -2.7827 0.22710E-01 1
-8 1 4 10.67 1.43 3.78 -1.4436 0.23892E-01 2
-7 1 4 10.54 1.43 4.16 0.5541 0.23160E-01 2
-6 1 4 22.65 0.50 8.30 -2.9575 0.13984E-01 2
-5 1 4 33.12 0.62 11.52 -0.3517 0.90059E-02 2
-4 1 4 43.97 0.81 16.06 -3.0680 0.63230E-02 2
-3 1 4 96.50 0.74 36.95 -0.0700 0.22648E-02 2
-2 1 4 42.18 0.75 16.60 -2.8554 0.63765E-02 2
-1 1 4 67.45 0.69 25.79 0.2601 0.37342E-02 2
0 1 4 12.81 0.49 5.43 -2.3677 0.23523E-01 0
1 1 4 67.76 0.45 25.16 -0.1109 0.38661E-02 0
2 1 4 28.28 0.38 10.13 -0.1361 0.11389E-01 0
3 1 4 74.21 0.49 27.11 0.0348 0.35306E-02 0
4 1 4 48.56 0.54 17.83 2.9128 0.59337E-02 0
5 1 4 81.77 0.57 31.17 0.1014 0.29996E-02 0
6 1 4 9.67 0.98 3.67 3.1373 0.28620E-01 0
7 1 4 39.37 0.67 14.62 0.3380 0.73433E-02 0
8 1 4 8.64 1.20 3.03 0.0950 0.30687E-01 0
9 1 4 5.60 2.34 1.95 1.5234 0.33576E-01 1
-8 2 4 17.58 1.19 6.35 0.1663 0.14891E-01 2
-7 2 4 3.95 3.17 2.08 1.4220 0.33140E-01 2
-6 2 4 60.02 0.91 22.49 -0.1051 0.41884E-02 2
-5 2 4 7.51 1.62 4.05 -0.5160 0.27061E-01 2
-4 2 4 52.54 0.75 19.23 0.4846 0.52981E-02 2
-3 2 4 15.23 1.00 5.42 -0.9036 0.19181E-01 2
-2 2 4 97.15 0.70 34.72 0.0357 0.24081E-02 2
-1 2 4 27.24 0.50 10.00 0.0185 0.11332E-01 2
0 2 4 119.40 0.35 44.36 -0.1276 0.17594E-02 0
1 2 4 44.24 0.46 16.29 2.9761 0.65922E-02 0
2 2 4 96.07 0.48 34.82 0.0785 0.24949E-02 0
3 2 4 29.58 0.45 10.77 -2.4213 0.10822E-01 0
4 2 4 60.07 0.52 22.48 -0.1131 0.45066E-02 0
5 2 4 20.47 0.33 8.08 -1.7557 0.15694E-01 0
6 2 4 8.54 1.04 2.28 2.8372 0.37087E-01 0
7 2 4 6.78 1.30 2.62 2.7186 0.33920E-01 0
8 2 4 19.56 0.83 7.57 -0.4432 0.14290E-01 0
9 2 4 10.06 1.65 3.35 -2.9911 0.23202E-01 1
-8 3 4 8.08 1.69 2.91 -3.0226 0.27717E-01 2
-7 3 4 12.76 1.30 5.04 0.8296 0.19878E-01 2
-6 3 4 24.20 0.58 8.85 -2.6764 0.12852E-01 2
-5 3 4 47.10 0.81 17.71 -0.0509 0.56987E-02 2
-4 3 4 9.44 1.15 2.97 -2.9416 0.30568E-01 2
-3 3 4 63.34 0.69 22.48 -0.1220 0.42273E-02 2
-2 3 4 27.22 0.48 9.99 2.5571 0.11152E-01 2
-1 3 4 73.85 0.64 27.16 0.1000 0.34613E-02 2
0 3 4 40.15 0.39 15.08 -0.6783 0.75591E-02 0
1 3 4 101.32 0.47 37.23 0.1765 0.22810E-02 0
2 3 4 10.61 0.70 4.46 0.7306 0.24707E-01 0
3 3 4 63.26 0.49 22.96 0.2589 0.43796E-02 0
4 3 4 13.77 0.69 4.53 1.2132 0.21613E-01 0
5 3 4 69.01 0.56 26.02 -0.1244 0.37164E-02 0
6 3 4 3.31 2.14 1.41 3.0692 0.56338E-01 0
7 3 4 23.88 0.39 8.62 0.2127 0.13483E-01 0
8 3 4 12.30 0.96 4.10 -2.5199 0.24343E-01 0
9 3 4 9.85 1.59 3.23 0.3017 0.24192E-01 1
-7 4 4 2.39 4.79 0.80 2.1637 0.21567E-01 2
-6 4 4 18.58 1.12 7.90 -0.1066 0.13219E-01 2
-5 4 4 13.07 1.04 4.84 1.9008 0.20465E-01 2
-4 4 4 13.94 0.94 5.77 0.0976 0.18976E-01 2
-3 4 4 15.68 0.85 5.75 -1.2535 0.19338E-01 2
-2 4 4 61.76 0.65 22.98 0.2431 0.43493E-02 2
-1 4 4 50.17 0.67 18.20 -2.8087 0.56878E-02 2
0 4 4 57.35 0.38 20.49 -0.0806 0.50280E-02 0
1 4 4 44.68 0.47 16.07 -3.0991 0.67515E-02 0
2 4 4 52.38 0.49 18.29 -0.3323 0.55912E-02 0
3 4 4 10.32 0.75 3.00 -2.8880 0.33528E-01 0
4 4 4 11.64 0.80 5.87 0.2544 0.21107E-01 0
5 4 4 10.84 0.86 4.90 -2.6324 0.24438E-01 0
6 4 4 19.12 0.57 6.95 0.8718 0.16541E-01 0
7 4 4 3.45 2.12 0.66 -1.6756 0.61666E-01 0
8 4 4 17.18 1.21 5.79 -0.2255 0.15338E-01 1
-7 5 4 10.92 1.41 2.52 0.0005 0.24843E-01 2
-6 5 4 15.33 1.15 5.24 -0.3184 0.17791E-01 2
-5 5 4 41.90 0.84 15.99 0.1935 0.63665E-02 2
-4 5 4 10.71 1.16 4.50 2.8779 0.22754E-01 2
-3 5 4 69.93 0.77 26.36 0.2249 0.35659E-02 2
-2 5 4 17.72 0.40 6.88 1.8081 0.16369E-01 2
-1 5 4 81.53 0.70 31.10 -0.0049 0.29449E-02 2
0 5 4 46.62 0.41 17.45 0.1303 0.61649E-02 0
1 5 4 35.45 0.51 12.49 0.5394 0.89293E-02 0
2 5 4 10.84 0.71 3.68 0.2542 0.28885E-01 0
3 5 4 48.10 0.54 17.93 0.1851 0.59660E-02 0
4 5 4 16.24 0.69 5.90 -1.8189 0.20196E-01 0
5 5 4 41.24 0.62 15.81 -0.0711 0.67300E-02 0
6 5 4 23.04 0.39 8.41 2.8723 0.13511E-01 0
7 5 4 13.88 0.91 4.62 -0.1848 0.21721E-01 0
8 5 4 2.49 4.98 0.34 -2.4052 0.20160E-01 1
-6 6 4 2.38 4.76 2.44 0.0746 0.15039E-01 2
-5 6 4 23.91 0.59 8.71 -2.7457 0.12800E-01 2
-4 6 4 15.73 0.97 5.96 -0.6938 0.16363E-01 2
-3 6 4 3.01 2.88 1.77 -2.4604 0.49478E-01 2
-2 6 4 6.49 1.53 2.37 2.7507 0.37435E-01 2
-1 6 4 9.48 1.18 3.89 -2.8073 0.27216E-01 2
0 6 4 39.65 0.44 14.92 0.0305 0.73855E-02 0
1 6 4 21.72 0.35 8.13 3.1228 0.14594E-01 0
2 6 4 61.06 0.54 22.82 0.2085 0.44658E-02 0
3 6 4 22.83 0.36 8.46 2.8236 0.13717E-01 0
4 6 4 21.36 0.36 8.17 0.3000 0.14741E-01 0
5 6 4 15.37 0.81 5.03 0.1976 0.19857E-01 0
6 6 4 5.42 1.55 2.56 0.3409 0.39196E-01 0
7 6 4 7.28 1.81 2.45 -0.2787 0.30050E-01 1
-5 7 4 14.46 1.29 4.88 0.4009 0.18473E-01 2
-4 7 4 2.10 4.20 0.16 -2.2653 0.28140E-01 2
-3 7 4 22.97 0.47 8.49 -0.0330 0.13510E-01 2
-2 7 4 7.30 1.51 3.11 -2.4173 0.30653E-01 2
-1 7 4 37.19 0.83 14.16 -0.2123 0.72646E-02 2
0 7 4 25.74 0.33 9.54 -2.8080 0.12304E-01 0
1 7 4 9.55 0.87 3.63 -0.1816 0.29146E-01 0
2 7 4 8.77 0.95 2.95 -1.4372 0.36577E-01 0
3 7 4 10.38 0.89 4.26 -0.6103 0.24959E-01 0
4 7 4 2.24 3.17 1.54 -1.8449 0.46767E-01 0
5 7 4 6.62 1.34 2.71 0.3737 0.36358E-01 0
6 7 4 16.88 1.22 6.29 3.1416 0.15132E-01 1
-3 8 4 8.66 1.52 3.72 2.7057 0.25046E-01 2
-2 8 4 22.13 0.49 8.08 0.5888 0.14636E-01 2
-1 8 4 8.38 1.39 3.17 -0.3185 0.29310E-01 2
0 8 4 23.29 0.32 8.20 0.0793 0.13880E-01 0
1 8 4 9.25 0.92 3.06 1.4484 0.31232E-01 0
2 8 4 13.78 0.79 6.25 0.0317 0.18780E-01 0
3 8 4 6.58 1.22 2.97 -2.9896 0.36504E-01 0
4 8 4 20.66 1.06 8.27 0.0168 0.12390E-01 1
5 8 4 4.90 2.89 1.65 -1.9695 0.32189E-01 1
0 9 4 10.18 1.33 3.32 3.0005 0.25477E-01 1
1 9 4 2.30 4.59 2.46 0.5027 0.16819E-01 1
2 9 4 4.35 2.64 2.32 -2.3609 0.35421E-01 1
3 9 4 4.61 2.40 2.55 0.7785 0.34967E-01 1
0 0 5 42.66 0.54 15.66 0.1060 0.68651E-02 0
1 0 5 45.60 0.56 17.62 1.3927 0.59874E-02 0
2 0 5 77.94 0.58 28.04 0.2177 0.33126E-02 0
3 0 5 17.92 0.76 5.92 -2.4509 0.18018E-01 0
4 0 5 64.69 0.60 24.91 0.4284 0.40518E-02 0
5 0 5 13.62 0.84 5.63 -2.9417 0.20526E-01 0
6 0 5 27.81 0.42 11.36 0.3810 0.10526E-01 0
7 0 5 11.35 1.02 3.29 -0.1334 0.27179E-01 0
8 0 5 9.17 1.86 4.76 -0.6292 0.19849E-01 1
-7 1 5 20.58 1.18 8.14 0.0863 0.12230E-01 2
-6 1 5 7.61 1.87 4.02 -2.3214 0.25338E-01 2
-5 1 5 54.87 0.92 20.44 -0.3174 0.46591E-02 2
-4 1 5 11.35 1.32 3.73 -0.1083 0.23169E-01 2
-3 1 5 43.73 0.87 16.71 -0.6936 0.58528E-02 2
-2 1 5 25.69 0.52 9.56 -0.6148 0.11926E-01 2
-1 1 5 95.73 0.81 35.19 -0.1436 0.23445E-02 2
0 1 5 49.31 0.43 19.08 -1.3795 0.59103E-02 0
1 1 5 95.92 0.50 35.77 0.2509 0.24451E-02 0
2 1 5 29.15 0.42 10.23 -2.6158 0.11168E-01 0
3 1 5 54.99 0.59 20.20 -0.1923 0.50265E-02 0
4 1 5 23.48 0.41 7.85 0.6511 0.13762E-01 0
5 1 5 31.38 0.47 12.57 -0.4801 0.89335E-02 0
6 1 5 14.87 0.84 5.14 2.1997 0.19979E-01 0
7 1 5 12.64 0.95 5.01 0.2901 0.21297E-01 0
8 1 5 6.89 2.09 3.67 -2.5909 0.25846E-01 1
-1 2 5 28.36 0.56 9.68 2.7732 0.10982E-01 2
0 2 5 77.09 0.41 27.61 -0.0906 0.34104E-02 0
1 2 5 24.12 0.33 8.82 0.5170 0.12604E-01 0
2 2 5 59.97 0.56 22.14 -0.3910 0.45073E-02 0
3 2 5 4.07 1.93 1.07 -2.0310 0.52627E-01 0
4 2 5 45.19 0.63 16.94 0.2322 0.62809E-02 0
5 2 5 17.95 0.75 6.91 -1.6791 0.16954E-01 0
6 2 5 36.92 0.48 14.06 0.1266 0.79289E-02 0
7 2 5 13.51 0.92 5.01 -1.8813 0.21613E-01 0
8 2 5 12.05 1.46 3.45 -0.4403 0.20735E-01 1
0 3 5 14.50 0.68 5.14 2.6849 0.20564E-01 0
1 3 5 50.42 0.54 18.45 0.8255 0.58660E-02 0
2 3 5 13.08 0.73 4.70 -2.8485 0.23599E-01 0
3 3 5 44.64 0.59 16.66 0.2004 0.63918E-02 0
4 3 5 19.95 0.58 6.53 2.1197 0.15791E-01 0
5 3 5 19.75 0.35 7.66 0.2925 0.15698E-01 0
6 3 5 19.43 0.77 7.80 2.2761 0.13952E-01 0
7 3 5 16.05 0.86 5.57 0.0285 0.18412E-01 0
8 3 5 2.46 4.92 1.29 2.4165 0.20320E-01 1
0 4 5 63.79 0.54 24.22 -0.3138 0.41142E-02 0
1 4 5 9.78 0.91 3.82 -0.1898 0.29037E-01 0
2 4 5 42.15 0.58 15.08 -0.3452 0.69418E-02 0
3 4 5 12.65 0.82 5.28 -2.5538 0.22227E-01 0
4 4 5 45.16 0.64 16.68 0.0082 0.62196E-02 0
5 4 5 19.26 0.72 6.78 -1.6783 0.16455E-01 0
6 4 5 14.11 0.84 5.46 0.1397 0.19865E-01 0
7 4 5 8.08 1.77 2.93 -2.5859 0.26851E-01 1
0 5 5 14.83 0.73 5.56 -3.0931 0.20288E-01 0
1 5 5 57.91 0.61 21.07 0.4318 0.48446E-02 0
2 5 5 12.69 0.80 4.35 -2.1479 0.25112E-01 0
3 5 5 32.52 0.46 12.45 0.4098 0.93763E-02 0
4 5 5 13.65 0.87 5.29 1.4434 0.19365E-01 0
5 5 5 14.62 0.81 4.80 -0.2765 0.20646E-01 0
6 5 5 5.23 2.24 2.48 0.7403 0.32946E-01 1
7 5 5 16.69 1.24 6.24 -0.2529 0.15023E-01 1
0 6 5 29.02 0.46 10.92 -0.2187 0.10287E-01 0
1 6 5 10.41 0.89 3.45 2.5655 0.28385E-01 0
2 6 5 18.12 0.74 6.60 -1.0552 0.15738E-01 0
3 6 5 2.39 3.37 1.49 0.4508 0.26006E-01 0
4 6 5 19.30 0.57 7.64 0.2053 0.15203E-01 0
5 6 5 16.41 1.18 5.74 -2.6669 0.16260E-01 1
6 6 5 16.09 1.27 6.38 0.8448 0.15560E-01 1
0 7 5 9.72 0.89 3.31 -0.0817 0.31437E-01 0
1 7 5 20.51 0.34 8.13 0.0996 0.14896E-01 0
2 7 5 14.58 0.92 6.14 -2.2296 0.18437E-01 0
3 7 5 24.36 0.38 9.02 0.3478 0.12913E-01 0
4 7 5 10.74 1.52 4.22 -2.1810 0.22076E-01 1
5 7 5 17.89 1.27 6.38 -0.5703 0.14038E-01 1
0 8 5 14.97 1.13 5.36 0.8037 0.18370E-01 1
1 8 5 14.83 1.22 5.47 2.8216 0.17030E-01 1
2 8 5 14.38 1.26 4.85 0.2518 0.18229E-01 1
3 8 5 13.61 1.35 4.35 1.9077 0.18683E-01 1
0 0 6 33.74 0.63 12.45 0.1144 0.85744E-02 1
1 0 6 22.15 0.60 8.56 -1.4148 0.14062E-01 1
2 0 6 20.87 1.07 7.66 -0.3801 0.12389E-01 1
3 0 6 11.69 1.44 4.98 2.9219 0.19343E-01 1
4 0 6 37.54 0.72 13.21 -0.2879 0.77128E-02 1
5 0 6 12.72 1.48 5.37 3.1282 0.17627E-01 1
6 0 6 20.27 1.26 7.30 0.1452 0.12631E-01 1
7 0 6 10.76 1.70 3.51 -2.6060 0.21475E-01 1
0 1 6 19.22 0.48 7.23 1.4171 0.15250E-01 1
1 1 6 62.96 0.86 23.57 -0.1218 0.39820E-02 1
2 1 6 18.92 1.09 6.80 -0.2512 0.14142E-01 1
3 1 6 38.17 0.94 14.51 0.0440 0.68740E-02 1
4 1 6 13.22 1.34 3.98 -1.0782 0.20520E-01 1
5 1 6 16.51 1.35 6.02 0.5102 0.15171E-01 1
6 1 6 7.99 1.94 3.43 -1.5980 0.25444E-01 1
7 1 6 14.61 1.51 6.20 -0.4851 0.14744E-01 1
0 2 6 25.19 0.53 8.87 0.6534 0.13001E-01 1
1 2 6 7.63 1.64 3.04 0.0745 0.28625E-01 1
2 2 6 39.27 0.92 13.49 0.4476 0.72272E-02 1
3 2 6 7.54 1.61 1.35 0.4119 0.33225E-01 1
4 2 6 51.85 0.95 18.41 0.0644 0.50741E-02 1
5 2 6 13.27 1.37 5.65 2.4009 0.17082E-01 1
6 2 6 24.75 0.59 9.53 0.1535 0.11850E-01 1
7 2 6 2.66 5.32 0.68 0.9374 0.17549E-01 1
0 3 6 14.28 1.05 5.36 -2.6640 0.19403E-01 1
1 3 6 53.58 0.89 19.09 -0.1542 0.49771E-02 1
2 3 6 22.93 0.49 8.08 -2.9865 0.14046E-01 1
3 3 6 19.57 1.12 7.04 0.0530 0.13684E-01 1
4 3 6 8.79 1.63 2.44 -2.6348 0.27853E-01 1
5 3 6 8.34 1.77 1.74 0.4276 0.28673E-01 1
6 3 6 10.26 1.61 2.59 -1.1153 0.24809E-01 1
7 3 6 7.10 2.28 1.82 0.3029 0.26937E-01 1
0 4 6 36.76 0.89 13.86 0.4473 0.74688E-02 1
1 4 6 21.27 0.49 8.36 -0.0544 0.13947E-01 1
2 4 6 35.91 0.66 13.37 0.1125 0.80322E-02 1
3 4 6 16.09 1.14 6.04 0.0750 0.16311E-01 1
4 4 6 26.51 0.61 10.22 0.1490 0.11145E-01 1
5 4 6 12.29 1.43 4.29 2.7134 0.19464E-01 1
6 4 6 27.80 0.58 9.48 0.0163 0.11351E-01 1
0 5 6 13.63 1.22 5.49 -2.9220 0.18305E-01 1
1 5 6 19.86 1.05 7.50 -0.3022 0.13053E-01 1
2 5 6 18.37 1.09 6.70 3.0960 0.14876E-01 1
3 5 6 24.24 0.61 8.58 0.0274 0.12687E-01 1
4 5 6 8.93 1.68 2.82 -2.2636 0.26924E-01 1
5 5 6 14.54 1.39 5.14 0.4518 0.17114E-01 1
6 5 6 7.93 1.96 0.46 -0.8001 0.29389E-01 1
0 6 6 18.20 1.09 7.27 0.0668 0.14209E-01 1
1 6 6 10.31 1.35 4.27 -1.1645 0.23554E-01 1
2 6 6 15.81 1.22 6.19 0.2195 0.15878E-01 1
3 6 6 8.03 1.76 3.79 -2.4280 0.25405E-01 1
4 6 6 10.01 1.59 3.63 -0.1902 0.22398E-01 1
5 6 6 6.56 2.22 2.02 -2.9023 0.29815E-01 1
0 7 6 7.66 1.74 3.19 2.8425 0.27015E-01 1
1 7 6 23.79 0.55 8.45 0.2639 0.13143E-01 1
2 7 6 8.71 1.75 3.16 2.2357 0.24518E-01 1
3 7 6 12.90 1.45 5.87 0.0305 0.17104E-01 1
0 0 7 35.89 0.69 13.58 0.0913 0.78811E-02 1
1 0 7 18.53 1.24 6.68 -1.5837 0.14246E-01 1
2 0 7 41.76 0.77 15.28 -0.1583 0.65947E-02 1
3 0 7 7.33 2.10 3.78 -0.9459 0.25414E-01 1
4 0 7 19.10 1.33 7.40 -0.2514 0.12427E-01 1
5 0 7 2.67 5.35 1.65 2.6223 0.17058E-01 1
6 0 7 15.03 1.56 5.94 -0.2408 0.14772E-01 1
0 1 7 16.37 1.16 5.66 1.6207 0.15768E-01 1
1 1 7 25.87 0.61 9.85 0.1309 0.11281E-01 1
2 1 7 2.58 5.16 2.87 2.5244 0.11249E-01 1
3 1 7 34.10 0.79 12.09 0.3057 0.85536E-02 1
4 1 7 11.47 1.59 3.84 -2.2355 0.21030E-01 1
5 1 7 24.08 1.24 8.60 0.2309 0.10737E-01 1
6 1 7 2.75 5.50 1.82 -1.8944 0.16360E-01 1
0 2 7 42.07 0.96 15.70 0.3048 0.62735E-02 1
1 2 7 11.28 1.46 4.82 -1.8346 0.21109E-01 1
2 2 7 33.67 0.75 12.14 0.2349 0.85688E-02 1
3 2 7 7.29 2.16 2.89 2.1790 0.24720E-01 1
4 2 7 7.55 2.18 3.06 0.1458 0.24105E-01 1
5 2 7 4.10 3.39 2.47 1.9810 0.29350E-01 1
6 2 7 11.34 1.76 3.87 -0.0233 0.19235E-01 1
0 3 7 2.39 4.79 3.03 0.8006 0.11973E-01 1
1 3 7 29.89 0.74 10.84 -0.4377 0.95183E-02 1
2 3 7 14.61 1.30 4.69 -0.0016 0.17985E-01 1
3 3 7 32.99 0.78 11.98 -0.0854 0.86437E-02 1
4 3 7 11.77 1.63 4.56 -1.7438 0.19445E-01 1
5 3 7 25.00 1.31 8.89 0.2717 0.10079E-01 1
0 4 7 22.16 1.15 7.88 0.4665 0.12055E-01 1
1 4 7 12.17 1.49 4.97 -2.8339 0.18940E-01 1
2 4 7 25.71 0.57 9.99 0.6848 0.11659E-01 1
3 4 7 13.54 1.44 3.98 3.0357 0.18833E-01 1
4 4 7 11.63 1.70 5.61 0.1378 0.17157E-01 1
5 4 7 10.71 1.74 2.56 1.2715 0.21637E-01 1
0 5 7 3.85 3.60 2.16 -2.2586 0.32024E-01 1
1 5 7 21.61 1.22 8.01 -0.4319 0.11589E-01 1
2 5 7 2.62 5.23 0.42 -1.6042 0.18261E-01 1
3 5 7 12.57 1.52 4.36 -0.5731 0.18379E-01 1
4 5 7 9.92 1.89 3.05 -2.7019 0.21963E-01 1
0 6 7 15.72 1.41 6.26 0.4310 0.15039E-01 1
1 6 7 5.17 2.91 1.36 2.5840 0.30286E-01 1
2 6 7 18.78 1.37 6.83 0.4196 0.13184E-01 1
0 0 8 41.54 0.79 15.47 0.0653 0.66397E-02 1
1 0 8 9.49 1.79 3.29 2.2075 0.22157E-01 1
2 0 8 32.93 0.71 11.91 0.3390 0.89269E-02 1
3 0 8 2.79 5.58 0.73 0.4030 0.15958E-01 1
4 0 8 18.82 1.54 5.95 0.3019 0.12852E-01 1
0 1 8 12.51 1.42 3.99 -2.0556 0.20622E-01 1
1 1 8 18.36 1.43 6.46 0.2275 0.13217E-01 1
2 1 8 7.95 2.04 0.93 3.0659 0.27692E-01 1
3 1 8 19.64 1.40 6.83 0.0620 0.12528E-01 1
4 1 8 8.86 2.21 4.27 2.6812 0.19508E-01 1
0 2 8 31.23 0.64 11.52 -0.1928 0.92883E-02 1
1 2 8 6.97 2.21 3.36 2.9137 0.24965E-01 1
2 2 8 26.31 0.60 9.41 -0.0532 0.11563E-01 1
3 2 8 8.88 2.00 3.52 -2.0346 0.22745E-01 1
0 3 8 2.52 5.04 1.22 -0.9743 0.19508E-01 1
1 3 8 24.26 1.24 8.45 0.4756 0.10699E-01 1
2 3 8 2.58 5.16 0.78 -0.5184 0.18689E-01 1
0 4 8 16.15 1.37 5.77 -0.0810 0.15132E-01 1
1 4 8 15.00 1.44 4.72 3.0616 0.16713E-01 1
-512
# Remove space after hash to activate next line
# USE LAST
#sfls
calc
end
#sfls
scale
end
#LIST 4
SCHEME 16 NPARAM= 6 TYPE=CHOOSE
CONT WEIGHT= 2.0000000 MAX= 10000.0000 ROBUST=N
CONT DUNITZ=N TOLER= 6.0000 DS1= 1.0000
CONT DS2= 1.0000 QUASI= 0.2500
PARAM 0.029688 1.250000 0.000000 0.000000 0.000000 0.333330
END
#sfls
calc
end
#sfls
refine
refine
refine
refine
refine
end
#script tonswork
#ton plot=no punch=no
end
#ton type=pascal plot=no punch=no
end
#end
|
e927d0c0833d63928239f73b569c803def94171a | 449d555969bfd7befe906877abab098c6e63a0e8 | /2081/CH12/EX12.3/Ex12_3.sce | 3c3d458aa1e4e1578df8ae4be1a5886f1c4f575a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex12_3.sce | Rc=10*10^6//code rate
Bc=Rc//RF bandwidth=code rate
Rb=4.8*10^3//info. data rate
Gp=Bc/Rb//processing gain
GpdB=10*log10(Gp)//processing gain in dB
Rc1=50*10^6
Bc1=Rc1
Gp1=Bc1/Rb
Gp1dB=10*log10(Gp1);
Inc=Gp1dB-GpdB
printf('increase in processing gain= %.1f dB',Inc+0.1);
|
de9e0b9c3800aaac24e6c9d338cc6118a6fad2e0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3875/CH4/EX4.19/Ex4_19.sce | 180ce990a55495b79f0875f423fd2bb9413f3ca6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 233 | sce | Ex4_19.sce | clc;
clear;
D_10=1.40 //diameter of the 10th ring in air in cm
D_10_liquid=1.27 //diameter of the 10th ring in liquid in cm
//calculation
myu=D_10^2/D_10_liquid^2
mprintf("The refractive index of the liquid is = %1.3f",myu)
|
d088da3fe59706ca7e810afec3675d60e1a8744b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1226/CH20/EX20.5/EX20_5.sce | 162f0eaa00f2d8a329a63578a1d2c19c180640cd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 859 | sce | EX20_5.sce | clc;funcprot(0);//EXAMPLE 20.5
// Initialisation of Variables
ma=6.75;.........//Mass of air compressed in kg/min
p1=1;............//Initial pressure in atm
cp=1.003;.........//Specifc heat at constant vpressure in kJ/kgK
t1=21;...........//Initial temperature in Celsius
t2=43;..........//Final temperature in Celsius
rp=1.35;.........//Pressure ratio
ga=1.4;.........//Ratio os specific heats
delt=3.3;.......//Change in temperature
cpw=4.18;.......//Specific heat for water in kJ/kgK
//Calculations
W=ma*cp*(t2-t1);............//Work output in kJ
disp(W,"Work output in kW:")
t21=(t1+273)*(rp^((ga-1)/ga));...........//Final temperature if the compression had been isentropic
Qr=ma*cp*(t21-(t2+273));............//Heat rejected in kJ
mw=Qr/(cpw*delt);........//Mass of cooling water in kg/min
disp(mw,"Mass of cooling water in kg/min:")
|
2a6ceedbd5879ad77cba055737d08997c0e146c0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1309/CH6/EX6.4/ch6_4.sce | 8a02a0a41c21443c6cb7cc2b1b370a94d7c79695 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 3,956 | sce | ch6_4.sce | clc;
clear;
printf("\t\t\tChapter6_example4\n\n\n");
// The average bulk temperature of the Freon-12 is [-4O +(-4)]/2 = -22°F
// properties of Freon-12 at average bulk temperature
kf=0.04; // thermal conductivity in BTU/(hr.ft.°R)
cp=0.2139; // specific heat in BTU/(lbm-°R)
rou= 1.489*(62.4); // density in lbm/cu.ft
v=0.272e-5; // viscosity in sq.ft/s
a=2.04e-3; // diffusivity in sq.ft/hr
Pr=4.8; // Prandtl Number
// specifications of 3/8 standard type K copper tubing from appendix table F2
OD=0.5/12; // outer diameter in ft
ID=0.03350; // inner diameter in ft
A=0.0008814 // cross sectional area in sq.ft
// Laminar conditions are asssumed
z=5;
Tw=32;
Tbo=-4;
Tbi=-40;
L=5;
i=1;
V_assumed(i)=100; //assumed value for velocity
for i=1:6
inv_Gz(i)=(z*a)/(V_assumed(i)*ID^2);
Nu=[4.7 5.8 6.2 6.3 6.4 6.4]; // corresponding Nusselt numbers from fig. 8.8:
hL(i)=Nu(i)*kf/ID;
V(i)=-(2*a*L*hL(i))/((kf*ID/2)*log((Tw-Tbo)/(Tw-Tbi)));
V_assumed(i+1)=V(i);
end
printf("\nSummary of Results\n");
printf("Assmued V (ft/hr)\t1/Gz\tNu(fig 8.8)\thL BTU/(hr. sq.ft. degree R)\tV (ft/hr)\n");
for j=1:6
printf("\t%d\t\t%.4f\t%.1f\t\t%.2f\t\t\t\t%d\n",V_assumed(j),inv_Gz(j),Nu(j),hL(j),V(j));
end
V_final=V(i-1);
hL_final=hL(i-1);
printf("\nThe final velocity is %d ft/hr = %.4f ft/s",V_final,V_final/3600);
printf("\nThe final convective coefficient is %.2f BTU/(hr. sq.ft. degree R)",hL_final);
// checking the laminar-flow assumption by calculating the Reynolds number
Re=(V_final/3600)*ID/v;
printf("\nThe Reynolds number is %d",Re);
// The flow is laminar
m_Fr=rou*A*V_final/3600;
printf("\nThe mass flow rate of Freon-12 is %.2e lbm/s = %.2f lbm/hr",m_Fr,m_Fr*3600);
As=%pi*ID*L;
q=hL_final*As*[(Tw-Tbo)-(Tw-Tbi)]/(log((Tw-Tbo)/(Tw-Tbi)));
printf("\nThe heat gained by Freon-12 is %.1f BTU/hr",q);
q_check=m_Fr*cp*(Tbo-Tbi);
printf("\nOn checking the heat transferred we find almost equal to the heat gained by Freon-12");
rou_water=1.002*62.4; // density of water in lbm/ft^3 from appendix table C11
m_water=rou_water*L*(2/12)*(3/12);
printf("\nThe mass of water in the prescribed volume is %.1f lbm",m_water);
// to remove 144 BTU/lbm of water, the time required is caalculated as below
t=144*m_water/q;
printf("\nThe required time is %.1f hr",t);
inv_Gz1=[0.001 0.004 0.01 0.015 0.02 0.0271]; // guess values of 1/Gz
Nu_D=[19.3 12.1 8.9 7.7 7.1 6.4]; //corresponding Nusselt number from fig. 6.8
[n m]=size(inv_Gz1);
for j=1:m
Z(j)=ID*Re*Pr*(inv_Gz1(j));
hz(j)=Nu_D(j)*kf/ID;
Tbz(j)=32-72*exp(-0.01812*Z(j)*hz(j));
end
printf("\nSummary of Data for Example 6.4 ");
printf("\n\t1/Gz\tNu_D\tz (ft)\thz, BTU/(hr. sq.ft.degree R)\tTbz,degree F\n");
for p=1:m
printf("\t%.4f\t%.1f\t%.2f\t%.2f\t\t\t\t%.1f\n",inv_Gz1(p),Nu_D(p),Z(p),hz(p),Tbz(p));
end
subplot(211);
plot(Z,Tbz,'r--d',Z,Tw*ones(1,length(Z)),'r-'); // your first figure
a1 = gca();
hl=legend(['Tbz';'Tw'],4);
subplot(212)
plot(Z,hz, 'o--'); // your second figure
a2 = gca();
hl=legend(['hz'],1);
a2.axes_visible = ["off", "on","on"];
a2.y_location ="right";
a1.axes_bounds=[0 0 1 1]; // modify the first figure to occupy the whole area
a2.axes_bounds=[0 0 1 1]; // modify the second figure to occupy the whole area too
a2.filled = "off";
a1.data_bounds=[-2,-40;5,40];
a2.data_bounds=[-2,0;5,30];
x_label1=a1.x_label;
x_label1.text="z, ft";
y_label2=a2.y_label;
y_label2.text="hz, BTU/(hr.sq.ft.degree R)";
y_label=a1.y_label;
y_label.text="T, degree F";
newticks1=a1.y_ticks;
newticks1(2)=[-40;-30;-20;-10;0;10;20;30;40];
newticks1(3)=['-40';'-30';'-20';'-10';'0';'10';'20';'30';'40'];
a1.y_ticks=newticks1;
newticks2=a2.y_ticks;
newticks2(2)=[0;5;10;20;30];
newticks2(3)=['0';'5';'10';'20';'30'];
a2.y_ticks=newticks2;
newticks=a1.x_ticks;
newticks(2)=[-2;-1;0;1;2;3;4;5];
newticks(3)=['-2';'-1';'0';'1';'2';'3';'4';'5'];
a1.x_ticks=newticks;
title('Graphical summary of the solution to the constant-wall-temperature tube of Example 6.4'); |
ed96fc8699aeba635f14a02525281027fb392706 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1092/CH14/EX14.13/Example14_13.sce | 6825bf47a392724c5e9c2e4074b79a16c8f428d6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,322 | sce | Example14_13.sce | // Electric Machinery and Transformers
// Irving L kosow
// Prentice Hall of India
// 2nd editiom
// Chapter 14: TRANSFORMERS
// Example 14-13
clear; clc; close; // Clear the work space and console.
// Given data
kVA = 500 ; // kVA rating of the step-down transformer
V_1 = 2300 ; // Primary voltage in volt
V_2 = 230 ; // Secondary voltage in volt
f = 60 ; // Frequency in Hz
r_1 = 0.1 ; // Primary winding resistance in ohm
x_1 = 0.3 ; // Primary winding reactance in ohm
r_2 = 0.001 ; // Secondary winding resistance in ohm
x_2 = 0.003 ; // Secondary winding reactance in ohm
// calculated data from Example 14-12
Z_L = 0.1058 ; // Load impedance in ohm
// Calculations
alpha = V_1 / V_2 ; // Transformation ratio
// case a
R_e1 = r_1 + (alpha)^2 * r_2 ; // Equivalent internal resistance referred to the
// primary side in ohm
// case b
X_e1 = x_1 + (alpha)^2 * x_2 ; // Equivalent internal reactance referred to the
// primary side in ohm
// case c
Z_e1 = R_e1 + %i*(X_e1) ; // Equivalent internal impedance referred to the
// primary side in ohm
Z_e1_m = abs(Z_e1);//Z_e1_m=magnitude of Z_e1 in ohm
Z_e1_a = atan(imag(Z_e1) /real(Z_e1))*180/%pi;//Z_e1_a=phase angle of Z_e1 in degrees
// case d
Z_L_prime = (alpha)^2 * (Z_L); // Equivalent secondary load impedance referred
// to the primary side in ohm
// case e
R_L = Z_L ; // Load resistance in ohm
X_L = 0 ; // Load reactance in ohm
// Primary load current in A , when V_1 = 2300 V
I_1 = V_1 / ( (R_e1 + alpha^2*R_L) + %i*(X_e1 + alpha^2*X_L) );
// Display the results
disp("Example 14-13 Solution : ");
printf(" \n a: Equivalent internal resistance referred to the primary side :");
printf(" \n R_c1 = %.2f ohm \n ",R_e1 );
printf(" \n b: Equivalent internal reactance referred to the primary side :");
printf(" \n X_c1 = %.2f ohm \n ",X_e1 );
printf(" \n c: Equivalent internal impedance referred to the primary side : ");
printf(" \n Z_c1 in ohm = ");disp(Z_e1);
printf(" \n Z_c1 = %.3f <%.2f ohm \n ", Z_e1_m , Z_e1_a );
printf(" \n d: Equivalent secondary load impedance referred to the primary side :");
printf(" \n (alpha)^2 * Z_L = %.2f ohm = (alpha)^2 * R_L \n",Z_L_prime);
printf(" \n e: Primary load current :\n I_1 = %f A ≈ %.f A ", I_1, I_1);
|
29444c1b75212be7a5098a768c5ac646c9d4493c | 449d555969bfd7befe906877abab098c6e63a0e8 | /611/CH4/EX4.11/Chap4_Ex11_R1.sce | 4502883b98bf66bc660a5eb06f66c098c49d7e6c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,279 | sce | Chap4_Ex11_R1.sce | // Y.V.C.Rao ,1997.Chemical Engineering Thermodynamics.Universities Press,Hyderabad,India.
//Chapter-4,Example 11,Page 107
//Title:Final temperature,Pressure and work done in adiabatic process
//================================================================================================================
clear
clc
//INPUT
volume_ratio=1/15;//final volume to the initial volume of air at the end of compression stroke (no unit)
gaamma=1.4;//ratio of the molar heat capacities at constant pressure and constant volume for air (no unit)
T1=300;//initial temperature of air in K
P1=0.1;//initial pressure of air in MPa
R=8.314;//universal gas constant in J/molK
//CALCULATION
T2=T1*((1/volume_ratio)^(gaamma-1));//calculation of final temperature in K using Eq.(4.32)
P2=P1*((1/volume_ratio)^(gaamma));//calculation of final pressure in MPa using Eq.(4.34)
W=(R*(T1-T2)*10^-3)/(gaamma-1);//calculation of work to be done on the system in kJ/mol using Eq.(4.31)
//OUTPUT
mprintf('\n The final temperature= %0.2f K\n',T2);
mprintf('\n The final pressure= %0.4f MPa\n',P2);
mprintf('\n Work done per mole of air= %0.3f kJ/mol\n',W);
//===============================================END OF PROGRAM===================================================
|
adb2d4c309832f063e31dd7f5245e52c5fcb1c59 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1850/CH6/EX6.6/exa_6_6.sce | e206993a30c691af7ed0ded8d17db1a2c3907c4b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 412 | sce | exa_6_6.sce | // Exa 6.6
clc;
clear;
close;
// Given Data
R= 10;// in k ohm
R=R*10^3;// in ohm
R_desh= R;// in ohm
C=0.1;// in micro F
C=C*10^-6;// in F
C_desh=0.0025;// in micro F
C_desh=C_desh*10^-6;// in F
fH= 1/(2*%pi*R_desh*C_desh);// in Hz
disp(fH*10^-3,"Higher cut-off frequency in kHz")
fL= 1/(2*%pi*R*C);// in Hz
disp(fL,"Lower cut-off frequency in Hz")
BW= fH-fL;
disp(BW*10^-3,"Bandwidth in kHz")
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.