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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
65f37334d95e47dd400b4c81a1fc0f2647cef62e | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set9/s_Engineering_Physics_M._R._Srinivasan_3411.zip/Engineering_Physics_M._R._Srinivasan_3411/CH13/EX5.2.u2/Ex5_2_u2.sce | 2f346f3a66541ee87fe18e43f8c04b762ea083d4 | [] | no_license | hohiroki/Scilab_TBC | cb11e171e47a6cf15dad6594726c14443b23d512 | 98e421ab71b2e8be0c70d67cca3ecb53eeef1df6 | refs/heads/master | 2021-01-18T02:07:29.200029 | 2016-04-29T07:01:39 | 2016-04-29T07:01:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 345 | sce | Ex5_2_u2.sce | errcatch(-1,"stop");mode(2);//Example 5_2_u2
;
;
//To calculate the maximum current density
hc=7.9*10^3 //units in amp/meter
d=10^-3 //units in meter
ic=hc*%pi*d //units in amp
critcurrentden=(ic*4)/(%pi*d^2) //units in amp/meter^2
printf("The critical current density is %d amp/meter^2",critcurrentden)
exit();
|
24f1adc5067d13054cce9223a766ade088a049db | 244971ae8af51184d278cdc2be1c80775413adae | /SSSoPhaseShift.sci | 87d253856d8fe237471cb1dbaa03fbfba961778c | [] | no_license | MSCA-SIMFREE/748767 | 5879f1f139b608c7cd2f1bd62325b281c9c1e7d1 | 4726206e514f1e47e939e73b9339c056057866db | refs/heads/master | 2020-12-27T15:21:13.646362 | 2020-02-03T11:40:00 | 2020-02-03T11:40:00 | 237,951,088 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,306 | sci | SSSoPhaseShift.sci | // The code was developed under Horizon2020 Framework Programme
// Project: 748767 — SIMFREE
function Out=SSSoPhaseShift(In,Angle_deg)
// Optical Phase Shift
//
// Calling Sequence
// Out=SSSoPhaseShift(In,Angle_deg)
//
// Parameters
// In : Optical Input
// Angle_deg : Phase shift [deg]
// Out : Optical Output
//
// Description
// Phase shifts the carrier of the Optical Input.
// Positive values of Angle_deg advance the phase, negative values retard it.
// Simulates a broadband constant optical phase-shift.
// It is implemented by multiplying each time-domain value of the (complex) optical waveform by exp(angle·π/l80).
// This phase shifts the carrier of the optical signal, not the envelope.
// This function assumes the time-delay associated with a phase shift is negligible.
// That is, this phase shift does not rotate the waveform within the time window.
//
[lhs,rhs]=argn(0);
select rhs
case 0 then
error("Expect at least one argument");
case 1 then
Angle_deg=0;
end
Xin=In(:,1); Yin=In(:,2);
Out(:,1)=abs(Xin).*exp(%i*(atan(imag(Xin),real(Xin))+Angle_deg*%pi/180));
Out(:,2)=abs(Yin).*exp(%i*(atan(imag(Yin),real(Yin))+Angle_deg*%pi/180));
endfunction
|
7058c8b6aa4e1172cf7d8a0c67d9b66182066ff7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /28/CH12/EX12.6/ex12_6.sce | fca4f854bbb71ad6fefbf33cf039b35f3ff54d6a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 220 | sce | ex12_6.sce | syms t
s=%s;
A=[1 0;1 1];
[r c]=size(A)
p=s*eye(r,c)-A
// resolvent matrix
q=inv(p)
disp(q,"phi(s)=")
for i=1:r
for j=1:c
q(i,j)=ilaplace(q(i,j),s,t)
end
end
disp(q,"phi(t)=") // state transition matrix |
973756828548c6a183806b3a5bc0de866c39f718 | 449d555969bfd7befe906877abab098c6e63a0e8 | /75/CH9/EX9.5/ex_5.sce | 6982ab9dbb91f1f8cebcf52f0f2eb7b70216c4a4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | ex_5.sce | // PG 599
// e = 0.001
// From earlier example :
// eigen values of matrix A are 1 and 2. So,..
// inv(P)*A*P = [1 0;0 2]
A = [101 -90;110 -98]
B = [-1 -1;0 0]
// From the above equation, we get:
P = [9/sqrt(181) -10/sqrt(221);10/sqrt(181) -11/sqrt(221)]
inv(P)
K = norm(P)*norm(inv(P)) // K is condition number
u1 = P(:,1)
u2 = P(:,2)
Q = inv(P)
R = Q'
w1 = R(:,1)
w2 = R(:,2)
s1 = 1/norm(w1,2)
norm(B)
// abs(lam1(e) - lam1) <= sqrt(2)*e/0.005 + O(e^2) = 283*e + O(e^2)
|
d2ea1d65239c007413fd575fdbf3eca51002c5ba | 449d555969bfd7befe906877abab098c6e63a0e8 | /2381/CH7/EX7.24/ex_24.sce | b2cbb1c1a67e7db6ce51eb8dee2bf75e36b71a8a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | ex_24.sce | //Example 24 //Velocity
clc;
clear;
close;
//given data :
c=3*10^8;// in m/s
lamda1=4000;// in Angustrom
lamda2=5000;// in Aungustrom
mu1=1.540;
mu2=1.530;
vg=c*((mu1*lamda1)-(mu2*lamda2))/(mu1*mu2*(lamda1-lamda2));
disp(vg,"The velocity,vg(m/s) = ")
|
342ab9219b6ab2082dcfa4eb95b4dcc36ac1e2d9 | daf9a7434ea9996fc591a79030570f48e396cdc5 | /Gaussian/N(0,1)/Var and Exp.sce | ee160c744d3c8918f818485874d9911893849590 | [] | no_license | isabelle-le/MonteCarloSimulation | c8dbfc2f5485f6dc6291654032ecad6c01cce401 | f96e0a11569b3e4dade452d99e9c1bbd6c3efb81 | refs/heads/master | 2020-04-05T22:40:20.686962 | 2018-11-12T19:18:50 | 2018-11-12T19:18:50 | 157,263,752 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 744 | sce | Var and Exp.sce | // Gaussian N(0,1)EXP & VAR
// Le Thu Huong ADEO1
clc
N = 100000;
Exp1 = 0;
Exp2 = 0;
var1 = 0;
var2 = 0;
alpha1 = 0;
alpha2 = 0;
for i = 1:N
u1 = rand();
u2 = rand();
V1 = 2*u1 - 1;
V2 = 2*u2 - 1;
S = V1^2 + V2^2;
if S <= 1 then
alpha1 = sqrt(-2*log(S)/S)*V1;
alpha2 = sqrt(-2*log(S)/S)*V2;
end
Exp1 = Exp1 + alpha1/N
Exp2 = Exp2 + alpha2/N;;
var1 = var1 + (alpha1)^2/N;
var2 = var2 + (alpha2)^2/N;
end
VAR1 = var1 - Exp1*Exp1;
VAR2 = var2 - Exp2*Exp2;
disp ('IT IS NORMAL DISTRIBUTION 2nd POLAR COORDINATES METHOD');
disp(Exp1,'Exp 1 = ');
disp(VAR1,'Var 1 = ');
disp(Exp2,'Exp 2 = ');
disp(VAR2,'Var 2 = ');
|
0dc653ce624a6f74cc47429b3b9db3097574c534 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1883/CH1/EX1.2.4/Example1_19.sce | 5d7a4137eca1a673e6b7ac21e957936d0f5ce504 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 395 | sce | Example1_19.sce | //Chapter-1,Example1_2_4,pg 1-13
//for constructive interference 2 u t cos(r) = (2 n -1) wavelength/2
u=1.33
i=45
r=asind(sind(i)/u) //by Snell's law
n=1 //for minimum thickness
wavelength=5896*10^-8
t=(2*n-1)*wavelength/(4*u*cosd(r))
printf("\n the minimum thickness of soap film is t = %.7f cm",t)
|
8ac52e4abc564b324a3b7962ebd73aff69bf8209 | b891303eb65fe7f18e45744097cd94c1a605c36b | /Zad1.sce | 371bfeb79828b7a3ea8b7033bbdbad2c6c639cf0 | [] | no_license | julialaska/pu | 3d6c87c0fd8928683c96b3083fe38919e8b5be42 | e33e70462fe0e021eac1dbcdd99b5a14c883b1fd | refs/heads/main | 2023-02-17T00:04:51.726784 | 2021-01-20T12:54:06 | 2021-01-20T12:54:06 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 325 | sce | Zad1.sce | //Zad 1
//A
sin(0.1)+cos(0.1)+tan(0.1)+cotg(0.1)
//B
a=[1,-2,3,0;3,3,0,6;1,-2,5,8;6,3,-1,0]
b=[2,6,-2,0;3,4,0,6;1,-2,6,8;8,-1,2,0]
a+b
[1,-2,3,0;3,3,0,6;1,-2,5,8;6,3,-1,0]+[2,6,-2,0;3,4,0,6;1,-2,6,8;8,-1,2,0]
//C
a=24
h=5
P=((a**2)*sqrt(3))/4+3/2*a*h
//D
i=7:32
j=factorial(i)-2
k=5**i+i
l=j/k
wynik=sum(l)
|
4c6edc27aa14bf98b0fe90dba47bd73bbf82d85d | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.5/macros/elem/lex_sort.sci | 891c1c69fd8e1a4750a8b6285f4a7766bdaa830b | [
"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 | 835 | sci | lex_sort.sci | function [x,ind] = lex_sort(x,varargin)
// Copyright INRIA
// lexicographic matrix rows sorting
//
// default argument values
unique=%f
sel=1:size(x,2)
// get arguments
if size(varargin)>2 then error(42);end // too many arguments
for k=1:size(varargin)
if type(varargin(k))==1 then //sel given
sel=varargin(k)
elseif type(varargin(k))==10 then // string given is it 'unique'?
if varargin(k)==part('unique',1:length(varargin(k))) then
unique=%t
else
error(116,k+1) //no
end
else
error(116,k+1) // incorrect arg type
end
end
// sort rows in lexicographic order
ind = 1:size(x,1);
for i=size(sel,'*'):-1:1,
[s,k] = sort(x(ind,sel(i)));
ind = ind(k);
end
ind=ind(:)
ind=ind($:-1:1)
x = x(ind,:);
if unique then
k=find(sum(abs(x(2:$,sel)-x(1:$-1,sel)),2)==0)
x(k,:)=[]
ind(k)=[]
end
|
73ec98f92d886e0d6471494756d4862e9f4d56dd | cb952289471732053d3db787d93f249ea37a7e55 | /5º PERÍODO/Processamento Digital de Sinais/TRABALHO/filter_PB_Ultrassom.sce | 350fd1403fdfa86593d60727d70f086b82bbba96 | [] | no_license | kaikecc/UFRN | 647d09e6beeadfeabfb59f479cd77a5c2ff7bebc | 821cce2e36808e890a75714d71b7cc1a24e52c27 | refs/heads/master | 2022-08-09T19:23:52.552924 | 2022-06-23T21:27:05 | 2022-06-23T21:27:05 | 177,469,993 | 1 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 584 | sce | filter_PB_Ultrassom.sce |
fa = 1000;
fsamp = fa;
s1 = super_vec;
fp = 0.9; // freq de passagem
fs = 1.4;// freq corte
// normalizacao das freq
wp = (fp/(fsamp/2))*%pi;
ws = (fs/(fsamp/2))*%pi;
wt = ws - wp; /// freq de transicao
M = ceil((6.6*%pi/wt) + 1);// tabelado
wc = (ws + wp)/2; // freq de corte intermediaria
hd = my_lowpass_ideal(wc,M);// func sinc para passa baixa ideial
w_hamm =window('hm',M);// calcula a janela de hamming
h = hd .* w_hamm;// faz a multiplicacao entre os vetores
s1_filtrado = conv(h,s1);// faz a convolucao entre os sinais
my_fft(s1_filtrado,fs);
|
8171d926f7373ec39887327dff0d76d960ef5578 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2375/CH6/EX6.2/ex6_2.sce | 08bfe2fd606722c6b4dab9ec58a24b65c55c599e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | ex6_2.sce | // Exa 6.2
clc;
clear;
close;
// Given data
I_DSS = 4;// in mA
V_P = 3;// in V
V_GS= 0:0.1:V_P
I_D = I_DSS * ((1 - (V_GS/V_P))^2);// in A
plot(V_GS,I_D);
xlabel("V_GS in volts");
ylabel("I_D in mA")
title("Transfer curve")
disp("The transfer curve shown in the figure.")
|
88e2914874e96c650cb383086d268143aa3f5950 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2213/CH4/EX4.22/ex_4_22.sce | e83c4da6ae78b453295991d70845bc75624ce76f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 860 | sce | ex_4_22.sce | //Example 4.22//constants and change of candle power per volt
clc;
clear;
close;
format('v',9)
c1=71.5;//candel power
v1=260;//in volts
c2=50;//candel power
v2=240;//in volts
b=log(c1/c2)/(log(v1/v2));//
a=c2/(v2)^(4.5);//
disp("part (a). ")
disp("constants are "+string(a)+" and "+string(b)+" ")
v=250;// in volts
p=4;//change in percentage
dvc=a*b*((v)^(b-1));//in candle per volts
dc=(1+(p/100))^b;//when voltage increase by 4%
pcp=((dc-1))*100;//percentage change in candle power
dc1=(1-(p/100))^b;//when voltage falls by 4%
pcp1=((dc1-1))*100;//percentage change in candle power
disp("part (b).")
disp(dvc,"change of candle power per volts")
//chage in candle power per volt is calculated wrong in the book
disp(pcp,"percentage change in candle power when voltage increase by 4%")
disp(pcp1,"percentage change in candle power when voltage falls by 4%")
|
a0064fdc1faad21c6627a101d3082c3097051cad | 449d555969bfd7befe906877abab098c6e63a0e8 | /1052/CH19/EX19.4/194.sce | c5b9ed0a504cb0219fbe83c673008195b60b7647 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 668 | sce | 194.sce | clc;
//Example 19.4
//page no 251
printf("Example 19.4 page no\n\n")
//water flow ina circular pipe,a pitot tube is used to measure the water velocity
h=0.07//manometer height,m
rho=1000//density of water,kg/m^3
rho_m=13600//density of mercury,kg/m^3
g=9.807
v=sqrt(2*g*h*(rho_m-rho)/rho)
printf("\n water velocity v=%f m/s ",v);
D=0.0779//pipe inside diameter,by using table A.5 in the appendix for a 3 inch schedule 40 pipe
S=(%pi/4)*D^2
printf("/n cross sectional area S=%f m^2",S);
q=v*S//flow rate
printf("\n flow rate q=%f m^3/s",q);
meu=0.001//viscosity of water,kg/m.s
R_e=rho*v*D/meu//reynolds number
printf("\n reynolds no R_e=%f ",R_e);
|
59f68b9f26b23e5f5434ce8d5976dd2d9495d2f1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3472/CH17/EX17.27/Example17_27.sce | 07831e50166af00e4b32acc3f9f2a672f9a49590 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,300 | sce | Example17_27.sce | // A Texbook on POWER SYSTEM ENGINEERING
// A.Chakrabarti, M.L.Soni, P.V.Gupta, U.S.Bhatnagar
// DHANPAT RAI & Co.
// SECOND EDITION
// PART II : TRANSMISSION AND DISTRIBUTION
// CHAPTER 10: POWER SYSTEM STABILITY
// EXAMPLE : 10.27 :
// Page number 309-310
clear ; clc ; close ; // Clear the work space and console
// Given data
f = 50.0 // Frequency(Hz)
P_m = 1.0 // Power delivered(p.u)
P_max = 1.8 // Maximum power(p.u)
gamma_1_P_max = 0.4 // Reduced maximum power after fault(p.u)
gamma_2_P_max = 1.30 // Maximum power after fault clearance(p.u)
// Calculations
delta_0 = asin(P_m/P_max) // δ_0(radians)
delta_0_degree = delta_0*180/%pi // δ_0(°)
delta_f = %pi-asin(P_m/(gamma_2_P_max)) // δ_1(radians)
delta_f_degree = delta_f*180/%pi // δ_1(°)
gamma_1 = gamma_1_P_max/P_max // γ_1
gamma_2 = gamma_2_P_max/P_max // γ_2
delta_c = acosd(1.0/(gamma_2-gamma_1)*((delta_f-delta_0)*sin(delta_0)+(gamma_2*cos(delta_f)-gamma_1*cos(delta_0)))) // Clearing angle(°)
// Results
disp("PART II - EXAMPLE : 10.27 : SOLUTION :-")
printf("\nCritical angle, δ_c = %.2f° ", delta_c)
|
8fef785dcfea00aba80878dcdb41970225def143 | c3a0e2a7a3a32ad4374793a62e548d1d3bedf245 | /Huffman_Code.sce | effa07960a7f149eed895b34bd3e6c463be3d027 | [] | no_license | prachi416/Scilab | 824ab1ae62b44b84f151b15b2d4994c4b1928a53 | e2bc92cd723d1fe1e7f69fed3e1e4dfa58daaeee | refs/heads/master | 2023-01-01T23:08:54.420417 | 2020-10-26T15:17:30 | 2020-10-26T15:17:30 | 294,625,279 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 654 | sce | Huffman_Code.sce | //Huffman coding
//for standard method L1,N1,V1
//for minimum variance method L2,N2,V2 //L1&L2 length of codeword
//N1&N2 efficiency
//V1&V2 Redundancy
clc;
clear all;
for i = 1:5
p(i)= input('Enter Probability');
end
wfh = 0; for a = 1:5
wfh = wfh-p(a)*log2(p(a)) end
for b = 1:5
q(b) = input('Enter L1');
end
for c = 1:5
w(c) = input('Enter L2'); end
L1 = p(1)*q(1)+p(2)*q(2)+p(3)*q(3)+p(4)*q(4)+p(5)*q(5); L2 = p(1)*w(1)+p(2)*w(2)+p(3)*w(3)+p(4)*w(4)+p(5)*w(5); N1 = (wfh/L1)*100;
N2 = (wfh/L2)*100;
V1 = 1-(N1/100);
V2 = 1-(N2/100);
disp("H=",wfh);
disp("L1=",L1);
disp("L2=",L2);
disp("N1=",N1);
disp("N2=",N2);
disp("V1=",V1);
disp("V2=",V2);
|
2394d1d534d8ee49ed1dba204acf5f796c022c67 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1727/CH8/EX8.5/8_5.sce | 2f54d934c68822fe543122a94f1dbe30cfc41f0b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 254 | sce | 8_5.sce | clc
//Initialization of variables\
sf=0.00007
n=0.013
gam=9.81*1000
V=0.45 //m/s
Q=1.4 //m^3/s
//calculations
by=Q/V
x=poly(0,"x")
y=roots(x^2 -2.66*x +1.55)
b=by ./y
//results
printf("y = ")
disp( y )
printf("corresponding b=")
disp(b)
|
902251e7de8c004459d7bfce3c76ef7880db9336 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3731/CH5/EX5.15/Ex5_15.sce | 9e719a1ed457139861b72ca6dacf928701f9af10 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,987 | sce | Ex5_15.sce | //Chapter 5:Dc Motor Drives
//Example 15
clc;
//Variable Initialization
V=200 // rated voltage in v
N=875 // rated speed in rpm
Ia=150 // rated current in A
Ra=0.06 // armature resistance in ohms
Vs=220 // source voltage in v
f=50 //frequency of the source voltage in hz
La=2.85e-3 // armature curcuit inductance in H
//Solution
E=V-Ia*Ra //back emf
Vm=sqrt(2)*Vs //peak voltage
Wm=2*%pi*N/60 //angular speed
W=2*%pi*f
alpha=120 //firing angle in degrees
x=W*La/Ra
phi=atan(x)
cot_phi=1/tan(phi)
Z=sqrt(Ra**2+(W*La)**2)
K=E/Wm
y=Ra*Vm/Z/K
a=(1+exp(-(%pi*cot_phi)))/(exp(-(%pi*cot_phi))-1)
alpha=alpha*%pi/180
Wmc=y*sin(alpha-phi)*a //required angular speed in rps
Nmc=Wmc*60/2/%pi //required angular speed in rpm
Va=2*Vm/%pi*cos(alpha)
E1=Nmc/N*E //value of back emf at the critical speed of Nmc
Ia=(Va-E1)/Ra
Tc=K*Ia
//(i)When the torque is 1200 N-m and firing angle is 120 degrees
T2=1200 //given torque in N-m
Ia2=T2/K //given terminal current for the given torque and the answer in the book is wrong
E2=Va-Ia*Ra
N2=E2/E*N
//(ii)When the torque is 300 N-m and firing angle is 120 degrees
T=300 //required torque in N-m
beta=233.492 //required angle in degrees
beta=beta*%pi/180 //in radians
x=beta-alpha
E1=(Vm*(cos(alpha)-cos(beta)))/x-(%pi*Ra*T)/(K*x)
N1=E1/E*N //required speed
//Results
mprintf("\nThe motor is operating under continuous condition")
mprintf("\nThe torque Tc is :%.2f N-m",Tc)
//The answer for torque Tc in the book is wrong due to accuracy which leads to other incorrect answers
mprintf("\n(i)Hence the required speed is :%.1f rpm",N2)
mprintf("\n(ii)The equation Vm/Z*sin(beta-phi)-sin(alpha-phi))*exp(-(beta-alpha)*cot_phi)=")
mprintf("\n(Vm*(cos(alpha)-cos(beta))/Ra/(beta-alpha)-pi*T/K/(beta-alpha) )*(1-exp(-(beta-alpha)*cot_phi)")
mprintf("\ncan be solved using trial method such that beta=233.492 degrees")
mprintf("\n Hence the required speed is :%.1f rpm",N1)
|
6d0098639e705e835d7e2d0b152cc3d5e4e6647b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3557/CH6/EX6.8/Ex6_8.sce | 9e87eaa2b6ce4d5950518f808977864aa2b91980 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 255 | sce | Ex6_8.sce | //Example 6.8//
si=0.690;//MPa //Megapascal //tensile stress
a=cosd(40);//degree
b=cosd(60);//degree
torque=si*a*b
mprintf("torque = %f MPa (38.3psi)",torque)
t=0.94;//MPa //MegaPascal //torque
sig=t/(a*b)
mprintf("\n sig = %f Mpa (356psi)",sig)
|
decf1bd54609a117d8406043ef91be66110a583c | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/bow/bow.4_7.tst | c0358c15a553c517b5b359496c69a146c5e87dc9 | [] | no_license | mandar15/NLP_Project | 3142cda82d49ba0ea30b580c46bdd0e0348fe3ec | 1dcb70a199a0f7ab8c72825bfd5b8146e75b7ec2 | refs/heads/master | 2020-05-20T13:36:05.842840 | 2013-07-31T06:53:59 | 2013-07-31T06:53:59 | 6,534,406 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 5,616 | tst | bow.4_7.tst | 4 1:0.1 16:0.011363636363636364 139:0.5 142:1.0 143:1.0 146:1.0 168:1.0
4 16:0.011363636363636364 27:2.0 28:1.0 33:0.16666666666666666 41:0.5 77:1.0 104:1.0 112:0.5 162:1.0 589:1.0
4 1:0.1 6:0.16666666666666666 15:0.2 16:0.011363636363636364 18:0.5 19:1.0 30:1.0 33:0.16666666666666666 48:1.0 139:0.5 379:1.0 586:1.0
4 1:0.1 18:0.5 41:0.5 63:0.2 98:1.0 171:1.0 184:1.0 692:1.0
4 1:0.2 18:0.5 23:1.0 30:1.0 33:0.16666666666666666 44:0.5 63:0.2 122:1.0 137:0.5 154:1.0 184:1.0 241:0.3333333333333333 356:1.0 375:1.0 796:1.0 818:1.0
4 12:0.3333333333333333 16:0.011363636363636364 18:1.5 39:1.0 56:0.2 77:1.0 112:0.5 135:1.0 139:0.5 145:0.5 162:1.0 186:1.0 189:0.5 227:1.0 435:1.0 462:1.0 584:1.0 751:1.0 1080:1.0 1359:1.0
4 1:0.1 15:0.2 16:0.03409090909090909 18:1.0 19:1.0 20:1.0 27:1.0 30:3.0 33:0.16666666666666666 44:0.5 56:0.2 65:1.0 70:0.25 82:1.0 94:1.0 105:0.5 148:0.5 150:1.0 151:1.0 152:1.0 161:1.0 181:0.5 358:1.0 369:2.0 751:1.0 805:1.0 818:1.0 1099:1.0
4 1:0.1 6:0.16666666666666666 15:0.2 16:0.03409090909090909 18:0.5 19:1.0 33:0.16666666666666666 35:0.3333333333333333 48:1.0 56:0.2 92:0.07692307692307693 94:1.0 112:0.5 119:1.0 154:1.0 235:1.0 268:0.5 310:0.5 332:0.3333333333333333 493:1.0 518:1.0 586:1.0 637:1.0 799:1.0 1117:1.0 1633:1.0
4 6:0.16666666666666666 204:0.3333333333333333 768:1.0
4 15:0.4 46:0.047619047619047616 78:0.5 134:1.0 136:1.0 186:1.0 310:0.5 452:1.0 546:1.0 686:1.0 1548:1.0
4 4:1.0 6:0.16666666666666666 15:0.8 16:0.022727272727272728 18:0.5 19:1.0 30:1.0 35:0.16666666666666666 44:0.5 46:0.09523809523809523 48:1.0 115:1.0 126:0.5 130:0.3333333333333333 134:1.0 139:0.5 186:1.0 239:1.0 240:1.0 355:1.0 358:1.0 447:1.0 533:1.0 546:1.0 663:1.0 1145:1.0
4 184:1.0
4 6:0.16666666666666666 16:0.011363636363636364 323:1.0
4 12:0.3333333333333333 15:0.2 16:0.03409090909090909 18:0.5 23:1.0 28:1.0 30:2.0 33:0.16666666666666666 35:0.16666666666666666 41:1.0 42:1.0 43:0.4 45:2.0 46:0.047619047619047616 54:1.0 93:1.0 94:1.0 108:1.0 175:1.0 195:1.0 214:0.5 283:0.5 310:0.5 406:0.5 452:1.0 469:1.0 484:1.0 744:1.0 777:1.0 797:1.0
4 248:1.0
4 16:0.03409090909090909 104:1.0 105:0.5 160:1.0 162:1.0 238:1.0 504:1.0 864:1.0 886:0.5
4 12:0.3333333333333333 15:0.2 16:0.011363636363636364 18:1.0 19:1.0 27:1.0 33:0.16666666666666666 35:0.3333333333333333 43:0.4 106:1.0 112:0.5 145:0.5 161:1.0 186:2.0 189:0.5 199:2.0 238:1.0 394:0.5 504:1.0 568:1.0 886:0.5 1002:1.0
4 12:0.6666666666666666 18:0.5 46:0.047619047619047616 53:1.0 54:1.0 83:0.3333333333333333 94:1.0 105:0.5 122:1.0 160:1.0 174:1.0 212:0.5 347:1.0 372:0.25 375:1.0 770:1.0 793:1.0
4 6:0.3333333333333333 12:0.3333333333333333 16:0.022727272727272728 18:0.5 30:1.0 33:0.3333333333333333 39:1.0 56:0.2 78:0.5 92:0.07692307692307693 94:1.0 177:1.0 181:0.5 252:1.0 406:0.5 1092:1.0 1195:0.5 1450:1.0
4 6:0.16666666666666666 15:0.2 16:0.011363636363636364 18:1.0 30:1.0 33:0.16666666666666666 67:0.5 82:1.0 112:0.5 186:1.0 199:1.0 468:0.5 504:1.0 584:1.0 878:1.0 900:1.0
4 6:0.16666666666666666 30:1.0 105:0.5 112:0.5 186:1.0 241:0.6666666666666666 713:1.0
4 1:0.1 11:1.0 12:0.3333333333333333 16:0.03409090909090909 25:1.0 33:0.16666666666666666 35:0.16666666666666666 92:0.07692307692307693 125:1.0 152:1.0 181:1.0 238:1.0 546:1.0 774:2.0
4 6:0.16666666666666666 16:0.011363636363636364 92:0.07692307692307693 143:1.0 543:1.0 818:1.0
4 33:0.16666666666666666 823:1.0
4 1:0.2 16:0.03409090909090909 18:0.5 19:1.0 27:1.0 28:1.0 30:1.0 33:0.16666666666666666 44:0.5 63:0.2 160:1.0 181:0.5 310:0.5 568:1.0 1195:0.5 1345:1.0
4 1:0.2 16:0.011363636363636364 20:1.0 42:2.0 77:1.0 118:1.0 148:0.5 161:1.0 310:0.5 452:1.0 1195:0.5
4 18:0.5 33:0.16666666666666666 35:0.16666666666666666 39:1.0 68:1.0 79:1.0 80:1.0 90:0.3333333333333333 118:1.0 133:0.5 155:0.3333333333333333 204:0.3333333333333333 225:2.0 291:1.0 546:1.0 586:1.0 704:1.0 1092:1.0 1182:1.0 1195:0.5 1450:1.0
4 2:1.0 16:0.011363636363636364 35:0.16666666666666666 56:0.2 125:1.0 181:1.0 586:1.0 809:1.0 821:1.0
4 6:0.3333333333333333 16:0.022727272727272728 18:2.0 30:1.0 33:0.3333333333333333 41:0.5 52:0.2 54:1.0 68:1.0 69:0.5 72:1.0 80:1.0 104:1.0 139:0.5 147:1.0 186:1.0 435:1.0 542:1.0 568:1.0 584:1.0 744:1.0 759:1.0 839:1.0 889:1.0 1055:1.0
4 6:0.16666666666666666 16:0.022727272727272728 30:1.0 33:0.16666666666666666 82:1.0 92:0.07692307692307693 137:0.5 465:0.5 568:1.0
4 3:1.0 16:0.011363636363636364 30:1.0 33:0.16666666666666666 52:0.2 92:0.07692307692307693 96:1.0 119:1.0 143:1.0 147:1.0 358:1.0 437:0.5 543:1.0 646:1.0
4 1:0.1 16:0.022727272727272728 18:2.0 27:1.0 28:1.0 33:0.16666666666666666 70:0.5 92:0.07692307692307693 122:1.0 161:2.0 251:1.0 774:1.0 815:1.0 1172:1.0 1484:1.0
4 1:0.1 12:0.3333333333333333 16:0.022727272727272728 18:0.5 19:1.0 30:1.0 44:0.5 135:1.0 175:1.0 191:1.0 268:0.5 612:1.0 646:1.0 1155:1.0 1589:1.0
4 6:0.16666666666666666 12:0.3333333333333333 15:0.4 16:0.011363636363636364 30:2.0 33:0.16666666666666666 35:0.16666666666666666 43:0.2 69:0.5 70:0.25 137:0.5 148:0.5 156:1.0 186:1.0 191:1.0 275:1.0 310:0.5 347:1.0 366:1.0 568:1.0 751:1.0 966:1.0 1052:1.0 1233:1.0 1626:1.0
4 16:0.011363636363636364 152:1.0 665:1.0 1016:1.0
4 1:0.1 6:0.16666666666666666 16:0.03409090909090909 45:1.0 48:1.0 61:0.3333333333333333 134:1.0 135:1.0 139:0.5 184:1.0 192:1.0 194:1.0
4 16:0.011363636363636364 30:1.0
4 1:0.2 6:0.16666666666666666 16:0.022727272727272728 65:2.0 98:1.0 145:1.0 189:0.5 243:1.0 370:1.0 373:0.5 609:1.0 619:0.5
4 16:0.011363636363636364 18:0.5 19:1.0 20:1.0 30:1.0 52:0.2 105:0.5
4 16:0.011363636363636364 18:0.5 30:1.0 46:0.14285714285714285 72:1.0 92:0.07692307692307693 136:1.0 204:0.3333333333333333 756:1.0
|
64cc48bdd8d5d3b38b3adff5a17015b9d6575fc8 | 8df791f9387f1c5538e8fb4cccb82ea4a130e879 | /itpp_qpsk_demod/builder_help.sce | 2f380125f5f69efc94ca953f118344a5f52ef145 | [] | no_license | tripathiaishwarya/itpp_repo | b94552677dbbfc2ed461d59de6a7efde37ec547e | fcd832287f3651b192339dbdbf15933045ca8aff | refs/heads/master | 2021-01-10T21:54:05.263442 | 2015-06-25T08:19:01 | 2015-06-25T08:19:01 | 37,813,835 | 2 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 256 | sce | builder_help.sce | //Script to generate the help page for functions
mode(-1)
lines(0)
TOOLBOX_TITLE = "ITPP_toolbox"
tbx_build_help(TOOLBOX_TITLE,get_absolute_file_path("builder_help.sce"));
add_help_chapter('itpp_qpsk_demod',get_absolute_file_path("builder_help.sce"));
|
b54785b4222e199dabf73755e4c9608f4cc152fe | 45e046b9cab35a22858077ef405f8c8b8125a87f | /Assignment-1/Questn-9/recursive_bin.sci | 4139683ec830bce30495661d0d9c0a5d7ac78eb3 | [] | no_license | shilpasunil/AP-laboratory | 4a67e510a05e5ce48f200ee73183627a12a19d55 | 87d55510d6f3c4a80ce1779e9b39430ee20e69b2 | refs/heads/main | 2023-02-09T16:13:34.048845 | 2021-01-07T04:43:35 | 2021-01-07T04:43:35 | 327,504,813 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 415 | sci | recursive_bin.sci | function[time,C] = recursive_bin(i,k,time)
tic();
t1=0;
t2=0;
if (k==0 || i==k) then
C=1
time = time+toc();
return ;
elseif (k >i ) then
C=0;
time = time+toc();
return ;
end
[t1,C1]=recursive_bin(i-1,k,t1);
[t2,C2]=recursive_bin(i-1,k-1,t2);
C=C1+C2;
time = t1+t2+time+toc();
return;
endfunction
|
3eda0941031f48d5303880be63ac12503923242d | d1d50d0e28187ba6034dbcc740aaa20488408d12 | /Tests/battsim_test.tst | 138a6e610094524b9d5dbbd81ce7fd7ae1aade70 | [] | no_license | sunspec/svp_energy_lab | 54cb4357202d3d1110a2d565067e7080312f5dc3 | 4937ce7509a0d027e54f44edd4e4568242e17419 | refs/heads/master | 2023-04-29T09:34:53.506932 | 2021-01-23T00:14:57 | 2021-01-23T00:14:57 | 85,247,070 | 10 | 18 | null | 2022-01-18T01:03:33 | 2017-03-16T22:27:53 | Python | UTF-8 | Scilab | false | false | 566 | tst | battsim_test.tst | <scriptConfig name="battsim_test_chroma" script="battsim_test">
<params>
<param name="dcsim.auto_config" type="string">Disabled</param>
<param name="battsim.dcsim.auto_config" type="string">Disabled</param>
<param name="battsim.auto_config" type="string">Disabled</param>
<param name="dcsim.mode" type="string">Manual</param>
<param name="battsim.dcsim.mode" type="string">Manual</param>
<param name="battsim.mode" type="string">Manual</param>
<param name="battsim.loadsim.mode" type="string">Manual</param>
</params>
</scriptConfig>
|
89772f06ff6d4d199dbf1992cdb95641fec7c2d2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2666/CH13/EX1.1/13_1.sce | c59d3314b5372ad4c608c8e67f5b0d827d3e0739 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 13_1.sce | clc
//initialisation of variables
m=32//lb
n=14//lb
c=56//lb
h=8//lb
p=200//psi
t=130//F
M=7.5//lb
B=1545//lb
t1=460//F
//CALCULATIONS
V=(M*B*(t+t1))/(144*(14.5+p))//cu ft
//RESULTS
printf('The tank volume required= % f cu ft',V)
|
39828126c4fb5e7fc67c947f911da46f73154904 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2072/CH21/EX21.2/Ex21_2.sce | f8dc2b6a8596ab75122a17dfae9a59c81b550814 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 120 | sce | Ex21_2.sce | //Example 21.2
clc;
C=8*10^-6
X_c=1/(377*C)
disp(X_c,"Resistance in ohm=")
I_rms=150/X_c
disp(I_rms,"Current in Amps=")
|
e6568d427753657768b10e3af805d655f920f291 | 449d555969bfd7befe906877abab098c6e63a0e8 | /135/CH8/EX8.2/EX2.sce | 0c7c34f71b45380d1f1e7b932cee4ef816b8a960 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 230 | sce | EX2.sce | // Example 8.2: Voltage gain
clc, clear
gm=2; // in mili-ampere per volt
rd=10; // in kilo-ohms
// From Fig. 8.7
RD_eff=10*10/(10+10); // in kilo-ohms
AV=-gm*rd*RD_eff/(rd+RD_eff); // Voltage gain
disp(AV,"Voltage gain ="); |
6ab5e86a72e84f4007bbb93afdd3bfef6f489a05 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2762/CH4/EX4.8.2/4_8_2.sce | 110821cfc4a2eea49158d74ecb49078287ddf0b7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 785 | sce | 4_8_2.sce | //Transport Processes and Seperation Process Principles
//Chapter 4
//Example 4.8-2
//Principles of Steady State Heat Transfer
//given data
//si units
Tsat=89.44;
Tw=87.8;
Tf=(Tsat+Tw)/2;
D=0.0254;
hf=2657.8-374.6;//latent heat using steam tables
rho1=60.3*16.018;//density of condensed steam
rhov=0.391;//density of ateam at 10 psia
mu1=3.24e-4;
kt=0.675;
L=0.305;
Tsat=193;//in K
delT=3.33;
g=9.806;
//assuming laminar film
Nu=1.13*(((rho1^2)*g*hf*1000*(L^3)/(mu1*kt*(delT)))^(0.25));
h=Nu*(kt/L);
A=%pi*D*L;
q=h*A*(Tsat-Tw);
m=q/hf;
kteng=0.390;//
Leng=1;//in english units
heng=Nu*(kteng/Leng);
Deng=1/12;
Aeng=%pi*Deng*Leng;
mprintf("avg HT coefficient= %f W/m2 K in si units",h)
mprintf("avg HT coefficient= %f btu/h ft2 F in english units",heng)
|
c5a1629542ce9e0472efb23839a7c787d447597f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1850/CH7/EX7.12/exa_7_12.sce | 19d26429ad5441637c7adce9ff821774925bccd2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 368 | sce | exa_7_12.sce | // Exa 7.12
clc;
clear;
close;
//given data
T= 100;// in micro sec
T=T*10^-6;//in se
V_sat= 12;// in volt
V1= 0.7;// in volt
V= 0.7;// in volt
V_D1= V;
V_D2=V_D1;
C1= 0.1;// in microF
C1=C1*10^-6;// in F
Bita1= 0.1;
// Formula T= R3*C1*log((1+V1/V_sat)/(1-Bita1))
R3= T/(C1*log((1+V1/V_sat)/(1-Bita1)));// in ohm
disp(R3*10^-3,"Value of R3 in kohm")
|
3bb604545ac85a668fd4274197c8644eabf5c8e0 | 3b9a879e67cbab4a5a4a5081e2e9c38b3e27a8cc | /Área 1/Revisão P1/Resolve_Ax_b.sce | dfaeb0c325aa9ad13d7d838eb3f910799334cbe4 | [
"MIT"
] | permissive | JPedroSilveira/numerical-calculus-with-scilab | 32e04e9b1234a0a82275f86aa2d6416198fa6c81 | 190bc816dfaa73ec2efe289c34baf21191944a53 | refs/heads/master | 2023-05-10T22:39:02.550321 | 2021-05-11T17:17:09 | 2021-05-11T17:17:09 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,209 | sce | Resolve_Ax_b.sce | function [resultado] = erro_relativo(x, xl)
resultado = abs((x-xl)/x)
endfunction
function [resultado] = digitos_significativos(x, xl)
erro_rel = erro_relativo(x,xl)
resultado = 0
while erro_rel <= 5*10^(resultado * (-1))
resultado = resultado + 1
end
resultado = resultado - 1
endfunction
function [x] = solveU(U,b)
n = size(U,1)
x(n) = b(n)/U(n,n)
for i = n-1:-1:1
x(i) = (b(i)-U(i,i+1:n)*x(i+1:n))/U(i,i)
end
endfunction
function [x] = solveL(L,b)
n = size(L,1)
x(1) = b(1)/L(1,1)
for i=2:n
x(i)=(b(i)-L(i,1:i-1)*x(1:i-1))/L(i,i)
end
endfunction
function [L,A] = fatoraLU(A)
n = size(A,1)
L = eye(n,n)
for j = 1:n-1
for i = j+1:n
L(i,j) = A(i,j)/A(j,j)
A(i,j+1:n) = A(i,j+1:n) - L(i,j)*A(j,j+1:n)
A(i,j) = 0 //Força para evitar erros de arredondamento
end
end
endfunction
function [x] = resolve(A,b)
[L,U] = fatoraLU(A)
y = solveL(L,b)
x = solveU(U,y)
endfunction
A = [1.000001 2 3;4 5 6;7 8 9]
x = [1;2;3]
b = A*x
xstar = resolve(A,b) //Aproximação da resolução
.
vetor_erro = (x - xstar)
erro_relativo = norm(x - star)/norm(x)
|
e75470957347b141d8417a70de4ebd869a15c2f7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3845/CH2/EX2.9/Ex2_9.sce | 9cafab95c997028d34f1c482a91faacf5cb819dd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 292 | sce | Ex2_9.sce | //Example 2.9
v_0=70;//Initial velocity (m/s)
a=-1.50;//Acceleration (m/s^2)
t=40;//Time (s)
v=v_0+a*t;//Final velocity (m/s)
printf('Final velocity of the airplane after 40s = %0.1f m/s',v)
//Openstax - College Physics
//Download for free at http://cnx.org/content/col11406/latest
|
25b0ca5f18ebecaa3c4ae35b8335e576b54813e7 | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/shiftdata/shiftdata12.sce | 6d1234db5f98db99c61e348a02b385012c32bd26 | [] | no_license | deecube/fosseetesting | ce66f691121021fa2f3474497397cded9d57658c | e353f1c03b0c0ef43abf44873e5e477b6adb6c7e | refs/heads/master | 2021-01-20T11:34:43.535019 | 2016-09-27T05:12:48 | 2016-09-27T05:12:48 | 59,456,386 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 291 | sce | shiftdata12.sce | //check o/p when too many i/p args are passed to the function
x=[12 3 4 5 6 7 8];
dim=2;
[x,perm,nshifts]=shiftdata(x,dim,2);
disp(perm);
//output
// !--error 58
//Wrong number of input arguments.at line 4 of exec file called by :
///shiftdata12.sce', -1
|
34bc922a362807057e34b8d8f314748030c1041c | 449d555969bfd7befe906877abab098c6e63a0e8 | /647/CH12/EX12.15/Example12_15.sce | 9037345276fcca5f8089ee48d801287d6a5eeadb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,396 | sce | Example12_15.sce | clear;
clc;
// Example: 12.15
// Page: 498
printf("Example: 12.15 - Page: 498\n\n");
// Solution
//*****Data******//
// Reaction: CH3COOH(l) + C2H5OH(l) --------> CH3COOC2H5(l) + H2O(l)
T = 373.15;// [K]
nCH3COOH_feed = 1;
nC2H5OH_feed = 1;
deltaHf_CH3COOH = -484.5;// [kJ]
deltaHf_C2H5OH = -277.69;// [kJ]
deltaHf_CH3COOC2H5 = -480;// [kJ]
deltaHf_H2O = -285.83;// [kJ]
deltaGf_CH3COOH = -389.9;// [kJ]
deltaGf_C2H5OH = -174.78;// [kJ]
deltaGf_CH3COOC2H5 = -332.2;// [kJ]
deltaGf_H2O = -237.13;// [kJ]
R = 8.314;// [J/mol K]
//******************//
deltaH_298 = deltaHf_CH3COOC2H5 + deltaHf_H2O - deltaHf_CH3COOH - deltaHf_C2H5OH;// [kJ]
deltaG_298 = deltaGf_CH3COOC2H5 + deltaGf_H2O - deltaGf_CH3COOH - deltaGf_C2H5OH;// [kJ]
T0 = 298;// [K]
K_298 = exp(-(deltaG_298*1000/(R*T0)));
K_373 = K_298*exp((deltaH_298*1000/R)*((1/T0) - (1/T)));
// Let e be the degree of completion at equilibrium.
// nCH3COOH_eqb = 1 - e;
// nC2H5OH_eqb = 1 - e;
// nCH3COOC2H5_eqb = e;
// nH2O_eqb = e;
// Total moles at equilibrium = 1 - e + 1 - e + e + e = 2
// Mole fractions:
// ySO2_eqb = (1 - e)/2
// yO2_eqb = (1 - e)/2
// ySO3_eqb = e/2
// yAr_eqb = e/2
// Sum of Stoichiometric Coeffecient:
v = 1 + 1 - 1 - 1;
deff('[y] = f(e)','y = K_373 - ((e/2)*(e/2))/(((1 - e)/2)*((1 - e)/2))');
e = fsolve(0.5,f);
printf("Mole fraction of ethyl acetate is %.3f",e/2); |
5595751813dc08e36cecba1c8e25d21f2f128881 | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/ngram/5.14_10.tst | 75419c9a523b3b5c3da0ea42db145efce0e970bc | [] | 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 | 625,645 | tst | 5.14_10.tst | 14 88:1 272:1 366:1 802:1 805:1 1310:1 1858:1 2327:1 2533:1 2782:1 2817:1 3116:1 3560:1 3581:1 3763:1 3777:1 3948:1 4071:1 4195:1 4225:2 4253:1 4307:1 4349:1 4794:1 4834:1 5067:1 5437:40 5468:1 5604:1 5762:1 5775:1 6354:1 6680:1 6829:1 6845:1 7016:1 7829:1 7951:1 8091:1 8162:1 8311:1 8820:1 8847:1 8911:1 9027:1 9041:1 9592:1 9696:1 9782:1 9828:1 9995:1 10593:1 10783:1 10791:1 10812:1 11113:1 11260:1 11363:1 11597:2 11625:1 12042:1 12129:1 12133:1 12196:1 12323:1 12418:2 12486:1 12512:1 12554:1 12757:1 12974:1 13348:1 13388:1 13412:1 13425:1 13937:1 14555:1 14694:1 14884:1 15666:1 15731:1 15771:1 15978:1 16183:1 16264:1 16902:1 17207:1 17370:1 17408:1 17572:1 17802:1 18100:1 18132:1 18246:1 18269:1 18389:1 18392:1 18899:1 19358:1 19673:1 19762:1 20033:1
14 88:2 118:1 272:1 277:1 366:2 417:1 440:1 528:1 576:1 584:1 703:1 791:1 801:1 802:1 805:2 868:1 1081:1 1146:1 1310:1 1331:1 1334:1 1419:1 1442:1 1467:1 1536:1 1596:1 1640:1 1797:1 1845:1 1858:1 1945:1 1969:1 2100:1 2253:1 2327:1 2379:1 2509:1 2533:2 2632:1 2642:1 2658:2 2782:1 2816:1 2817:1 2903:1 3046:1 3068:1 3082:1 3110:1 3116:1 3123:2 3215:1 3281:1 3493:1 3501:1 3510:1 3560:1 3581:1 3638:1 3726:1 3763:1 3777:1 3948:1 4037:1 4071:3 4091:1 4131:1 4140:1 4152:1 4195:1 4225:2 4249:1 4253:1 4307:1 4349:1 4378:1 4622:1 4692:1 4708:1 4794:1 4834:1 4959:1 4989:1 5052:1 5058:2 5067:1 5231:1 5408:1 5437:128 5468:1 5583:1 5604:1 5625:1 5762:1 5763:1 5767:1 5771:1 5775:1 5780:1 5932:1 6316:1 6317:1 6339:1 6352:1 6354:1 6541:1 6675:1 6680:1 6694:1 6829:1 6837:1 6845:1 6945:1 7008:1 7016:1 7185:1 7268:1 7414:1 7474:1 7548:1 7631:1 7678:1 7782:1 7829:1 7951:1 8032:1 8055:1 8080:1 8091:1 8162:1 8311:1 8386:1 8541:1 8712:1 8810:1 8820:2 8847:2 8911:1 9027:1 9041:2 9082:1 9131:1 9212:1 9234:1 9337:1 9592:2 9696:2 9782:1 9828:1 9916:1 9995:1 10163:1 10223:1 10224:1 10323:1 10382:1 10517:1 10593:1 10718:1 10743:1 10783:1 10791:1 10812:4 10838:1 10855:1 10940:1 11110:1 11113:1 11260:1 11363:1 11597:2 11625:1 11737:1 11788:1 11849:1 11913:1 12042:1 12118:1 12129:1 12133:1 12196:3 12213:1 12257:1 12323:1 12401:1 12418:3 12457:1 12467:1 12486:1 12512:1 12554:1 12572:1 12652:1 12739:1 12757:1 12839:1 12856:1 12861:1 12932:1 12974:3 12991:1 13153:1 13336:1 13348:1 13354:1 13388:1 13412:1 13425:1 13451:2 13498:1 13606:1 13630:1 13640:1 13741:1 13845:1 13889:1 13937:2 13974:2 14452:1 14519:1 14555:1 14590:1 14592:1 14594:1 14694:1 14770:1 14798:1 14814:1 14854:1 14884:1 14935:1 15113:1 15235:1 15585:1 15618:1 15633:1 15637:1 15666:3 15712:1 15731:1 15745:1 15771:1 15863:1 15978:1 15990:1 16008:1 16077:1 16175:1 16183:1 16264:1 16288:1 16356:1 16380:1 16434:2 16515:2 16540:1 16582:1 16679:1 16691:1 16812:1 16902:1 16967:1 17014:1 17106:1 17140:1 17161:1 17207:1 17306:1 17324:1 17370:1 17389:1 17408:3 17436:1 17572:1 17583:1 17672:1 17787:1 17802:1 18009:1 18017:1 18100:1 18108:1 18132:1 18246:1 18269:1 18389:2 18392:2 18398:1 18419:1 18442:1 18509:1 18557:1 18643:1 18690:1 18713:2 18753:1 18767:1 18834:1 18874:1 18877:1 18899:1 18914:1 19031:1 19278:1 19311:1 19358:1 19458:1 19470:1 19526:1 19615:1 19661:1 19673:1 19718:1 19762:1 19818:1 19919:1 20033:1 20342:1
14 88:2 118:1 140:1 148:1 272:1 277:1 284:1 366:2 417:1 440:1 528:1 576:1 584:1 700:1 703:1 730:1 791:1 800:1 801:2 802:1 805:2 868:1 984:1 1028:1 1081:1 1146:1 1237:1 1310:1 1331:1 1334:1 1419:1 1442:1 1467:1 1536:1 1571:1 1596:1 1601:1 1640:1 1797:1 1818:1 1845:1 1858:1 1934:1 1945:2 1969:1 2100:1 2149:1 2189:1 2253:2 2327:2 2379:1 2385:1 2407:1 2423:1 2509:1 2533:2 2536:1 2563:1 2600:1 2632:1 2642:1 2658:2 2782:1 2816:1 2817:2 2831:2 2903:1 2930:1 2933:1 2992:1 3046:1 3053:1 3068:1 3082:1 3110:1 3116:1 3123:2 3215:1 3250:1 3281:1 3294:1 3390:1 3489:1 3493:1 3501:1 3510:1 3560:1 3568:1 3581:1 3638:1 3706:1 3707:1 3726:2 3763:1 3777:1 3811:1 3919:1 3948:1 4037:1 4071:4 4091:1 4131:1 4140:1 4152:1 4162:1 4195:1 4225:2 4249:1 4253:1 4294:1 4307:1 4349:1 4378:1 4441:1 4556:1 4622:1 4686:1 4692:2 4708:1 4766:1 4778:1 4794:1 4795:1 4834:1 4851:1 4959:1 4989:1 5052:1 5058:2 5067:4 5131:1 5200:1 5231:1 5271:1 5365:1 5394:1 5406:1 5408:1 5437:219 5468:1 5583:1 5604:1 5625:1 5756:1 5762:1 5763:1 5767:1 5771:1 5775:1 5780:1 5911:2 5932:2 5984:1 6092:1 6110:1 6311:1 6316:1 6317:1 6339:1 6352:1 6354:1 6517:2 6541:1 6675:2 6680:1 6683:1 6694:1 6765:1 6829:1 6837:1 6845:1 6903:1 6945:1 7008:1 7016:1 7129:1 7160:1 7185:1 7268:1 7414:2 7441:1 7474:1 7490:1 7513:1 7539:1 7548:1 7571:1 7601:1 7611:1 7631:1 7678:1 7767:1 7782:1 7788:1 7794:1 7825:1 7829:1 7951:1 8032:1 8055:1 8080:1 8091:1 8162:1 8311:1 8364:1 8386:1 8541:1 8545:1 8589:1 8650:1 8712:1 8810:1 8820:3 8824:1 8840:1 8846:1 8847:2 8911:1 9027:1 9041:2 9082:1 9131:1 9212:1 9234:1 9318:1 9337:1 9387:1 9425:1 9509:1 9585:1 9592:2 9628:1 9669:1 9674:1 9678:1 9696:2 9755:1 9782:1 9828:1 9916:1 9995:1 10029:1 10163:1 10168:1 10223:1 10224:1 10275:1 10323:1 10382:1 10410:2 10517:1 10593:1 10718:1 10743:1 10744:1 10760:1 10783:1 10791:1 10812:4 10838:1 10855:1 10871:1 10940:1 10981:1 10983:1 10998:1 11110:1 11113:1 11260:1 11301:1 11347:1 11363:2 11403:1 11436:1 11597:2 11625:1 11737:1 11776:1 11785:2 11788:1 11799:2 11849:1 11913:1 12021:1 12042:1 12118:1 12129:1 12133:1 12196:3 12213:1 12257:1 12323:1 12382:1 12401:1 12418:3 12457:1 12466:1 12467:1 12486:1 12512:2 12554:1 12557:1 12572:1 12652:1 12739:1 12757:1 12779:1 12839:1 12856:1 12861:1 12879:1 12913:1 12932:1 12962:1 12974:3 12991:1 13052:1 13108:1 13153:1 13163:1 13336:1 13342:1 13348:1 13354:1 13388:1 13412:1 13425:1 13436:1 13451:2 13475:1 13498:1 13534:1 13600:1 13606:1 13630:1 13640:1 13696:1 13703:1 13741:1 13756:2 13817:1 13845:1 13889:1 13937:2 13974:2 13992:1 14088:1 14096:1 14181:1 14257:1 14271:1 14293:1 14452:2 14519:1 14525:1 14555:1 14559:1 14583:1 14590:2 14592:1 14594:1 14672:1 14694:1 14770:1 14798:1 14814:1 14854:1 14884:1 14935:1 15089:1 15113:1 15134:1 15235:1 15480:1 15568:1 15585:1 15618:1 15633:1 15637:1 15666:3 15712:1 15731:1 15745:1 15752:2 15771:1 15854:1 15863:1 15978:4 15990:1 16008:1 16022:1 16077:1 16160:1 16175:1 16179:1 16183:2 16221:1 16264:1 16288:1 16356:1 16380:1 16389:1 16434:2 16515:2 16540:1 16582:1 16666:1 16679:1 16691:1 16812:1 16822:1 16902:1 16937:1 16964:1 16967:1 17014:1 17072:1 17106:1 17140:1 17161:1 17192:1 17207:1 17306:2 17324:1 17362:1 17370:1 17389:1 17408:4 17436:1 17474:1 17475:1 17510:1 17572:1 17583:1 17672:1 17696:1 17787:1 17802:1 17820:1 18009:1 18017:1 18068:1 18100:2 18108:1 18132:1 18144:1 18176:1 18246:1 18269:1 18389:2 18392:3 18398:1 18419:1 18442:1 18509:1 18557:1 18643:1 18690:1 18713:2 18753:1 18767:1 18801:1 18811:1 18834:1 18874:1 18877:1 18899:1 18914:1 18953:1 19020:1 19021:1 19031:1 19050:1 19132:1 19171:1 19177:1 19278:1 19280:1 19311:1 19312:1 19358:2 19458:1 19470:1 19526:1 19615:1 19661:1 19673:1 19718:1 19762:1 19818:1 19824:2 19856:1 19919:1 20033:1 20255:1 20342:1 20350:1
14 88:2 118:1 140:1 148:1 272:1 277:1 284:1 366:2 417:1 440:1 448:1 528:1 576:1 584:1 667:1 697:1 700:1 703:2 730:1 791:1 800:1 801:2 802:1 805:2 868:1 950:1 984:1 1028:1 1081:1 1146:1 1237:1 1310:1 1331:1 1334:1 1419:1 1442:1 1467:1 1536:1 1571:1 1578:1 1596:1 1601:1 1640:1 1658:1 1777:1 1797:1 1818:1 1845:1 1858:1 1934:1 1945:2 1969:1 2100:1 2149:1 2189:1 2253:2 2327:2 2355:1 2379:1 2385:1 2407:1 2423:1 2504:1 2509:1 2533:2 2536:1 2563:2 2598:1 2600:1 2632:1 2642:1 2658:2 2782:1 2816:1 2817:2 2831:2 2903:1 2917:1 2930:1 2933:1 2992:1 3046:2 3047:1 3053:1 3068:1 3082:2 3110:1 3116:1 3123:2 3149:1 3215:1 3250:1 3281:1 3294:1 3295:1 3390:1 3489:1 3493:1 3501:1 3507:1 3510:2 3560:1 3568:1 3581:1 3638:1 3706:1 3707:1 3726:3 3753:1 3763:1 3777:1 3811:1 3919:1 3920:1 3948:1 3998:1 4033:1 4037:1 4059:1 4071:5 4091:2 4131:2 4140:1 4152:1 4162:1 4194:1 4195:1 4225:2 4249:1 4253:1 4257:1 4294:2 4301:1 4307:1 4324:1 4349:1 4378:1 4436:1 4441:1 4556:1 4622:1 4686:1 4692:3 4708:1 4766:1 4778:1 4794:1 4795:1 4834:1 4851:2 4959:1 4989:1 5052:1 5058:2 5067:4 5131:1 5135:1 5200:1 5231:1 5271:1 5365:1 5394:1 5406:1 5408:1 5437:280 5468:1 5583:1 5604:1 5625:1 5756:1 5762:1 5763:1 5767:1 5771:1 5775:1 5778:1 5780:1 5911:2 5932:3 5984:2 6092:1 6110:1 6311:1 6316:1 6317:1 6321:1 6339:1 6352:1 6354:1 6517:2 6541:1 6675:2 6680:1 6683:1 6694:1 6765:1 6829:1 6837:1 6845:3 6903:1 6945:1 7008:1 7016:1 7129:1 7148:1 7160:1 7185:1 7268:1 7402:1 7414:2 7441:1 7474:1 7490:1 7513:1 7539:1 7548:1 7571:1 7585:1 7601:1 7611:1 7631:1 7678:1 7703:1 7767:1 7782:1 7788:1 7794:1 7825:1 7829:1 7951:1 8032:1 8055:2 8080:1 8091:1 8162:1 8311:1 8334:1 8364:1 8386:1 8541:1 8545:1 8589:1 8642:1 8644:1 8650:1 8712:1 8810:1 8820:3 8824:2 8840:1 8846:1 8847:2 8849:1 8911:1 9027:1 9041:2 9082:1 9131:1 9212:1 9234:1 9315:1 9318:1 9337:1 9387:1 9410:1 9425:1 9509:2 9585:1 9592:2 9628:1 9669:1 9674:1 9678:1 9696:2 9732:1 9755:1 9782:1 9828:1 9916:1 9960:1 9995:1 10029:1 10093:1 10163:1 10168:1 10223:1 10224:1 10269:1 10275:1 10323:1 10382:1 10410:2 10465:1 10517:1 10593:1 10718:1 10743:1 10744:1 10760:1 10783:1 10791:1 10812:5 10838:1 10841:1 10843:1 10855:1 10871:2 10940:1 10981:1 10983:1 10998:1 11110:1 11113:1 11125:1 11229:1 11247:1 11260:1 11301:1 11347:1 11363:2 11379:1 11403:1 11436:1 11597:2 11625:1 11709:1 11737:1 11776:1 11785:2 11788:1 11799:2 11849:1 11913:1 11949:1 11990:1 12021:1 12042:1 12095:1 12118:1 12129:1 12133:1 12196:3 12213:1 12257:1 12323:1 12382:1 12401:2 12418:3 12457:1 12466:1 12467:1 12486:1 12512:2 12554:1 12557:1 12572:1 12652:1 12664:1 12739:1 12757:1 12779:1 12839:1 12856:1 12861:1 12879:1 12913:1 12932:1 12962:1 12974:3 12991:1 13052:1 13091:1 13108:1 13153:1 13163:1 13278:1 13336:1 13342:1 13348:2 13354:1 13359:1 13388:1 13412:1 13425:1 13436:1 13451:2 13453:1 13475:1 13498:1 13534:1 13600:2 13606:1 13630:1 13640:1 13696:1 13702:1 13703:1 13741:1 13756:2 13817:1 13823:1 13845:1 13889:1 13937:2 13974:2 13992:1 14088:1 14096:2 14100:1 14181:2 14257:1 14262:1 14271:1 14293:1 14452:2 14519:1 14525:1 14555:1 14559:1 14583:1 14590:2 14592:1 14594:1 14672:1 14694:1 14770:1 14798:1 14814:1 14829:1 14854:1 14873:1 14884:1 14900:1 14935:1 15089:1 15113:1 15134:1 15235:1 15290:1 15480:1 15547:1 15568:1 15585:1 15618:1 15633:1 15637:1 15666:3 15696:1 15712:2 15731:1 15745:1 15752:2 15771:1 15854:1 15863:1 15978:4 15990:1 16008:1 16022:1 16077:1 16122:1 16160:1 16175:1 16179:1 16183:2 16221:1 16264:1 16288:1 16356:1 16380:1 16389:1 16434:2 16515:2 16540:1 16582:1 16666:1 16679:1 16691:1 16812:1 16822:1 16902:1 16937:1 16964:1 16967:1 17014:1 17072:1 17106:2 17140:1 17161:1 17192:1 17207:1 17306:2 17324:1 17362:1 17370:1 17389:1 17394:1 17408:5 17436:1 17474:2 17475:1 17504:1 17510:1 17572:1 17583:1 17672:1 17696:1 17787:1 17802:1 17820:1 17891:1 18009:1 18017:1 18068:1 18098:1 18100:2 18108:1 18132:1 18144:1 18176:1 18246:1 18269:1 18355:1 18389:2 18392:3 18393:1 18398:1 18419:1 18442:1 18509:1 18557:1 18589:1 18613:1 18643:1 18690:1 18713:2 18753:1 18767:1 18801:2 18811:1 18834:1 18874:1 18877:1 18899:1 18914:1 18953:1 19020:1 19021:1 19031:1 19050:1 19132:1 19171:1 19174:1 19177:1 19278:1 19280:1 19311:1 19312:1 19358:2 19458:2 19470:1 19526:1 19615:1 19661:1 19673:1 19718:1 19762:1 19818:1 19824:2 19856:1 19918:1 19919:1 20003:1 20033:1 20060:1 20158:1 20215:1 20255:1 20263:1 20342:1 20350:1
14 88:2 118:1 140:1 148:1 272:1 274:1 277:1 284:1 364:1 366:2 417:1 440:1 448:1 467:1 528:1 576:1 584:1 667:1 697:1 700:1 703:2 717:1 730:1 791:1 800:1 801:2 802:1 805:2 868:1 950:1 984:1 1028:1 1081:1 1146:1 1186:1 1237:1 1310:1 1331:1 1334:1 1419:1 1442:1 1467:1 1536:1 1571:1 1578:1 1596:1 1601:1 1640:1 1658:1 1777:1 1797:1 1818:1 1830:1 1843:1 1845:1 1858:1 1934:1 1945:2 1969:1 2100:1 2149:1 2189:1 2251:1 2253:2 2315:1 2327:2 2355:1 2358:1 2379:1 2385:1 2407:1 2423:1 2504:1 2509:1 2524:1 2533:2 2536:1 2563:2 2598:1 2600:1 2632:1 2642:1 2658:2 2782:1 2816:1 2817:2 2831:2 2903:1 2905:1 2917:1 2930:1 2933:1 2992:1 3028:1 3043:1 3046:2 3047:1 3053:1 3068:1 3082:2 3110:1 3116:1 3123:2 3149:2 3215:1 3231:1 3250:1 3281:2 3294:1 3295:1 3390:1 3446:1 3489:1 3493:1 3501:1 3507:1 3510:2 3560:1 3568:1 3581:1 3633:1 3638:1 3706:1 3707:1 3726:3 3751:1 3753:1 3763:1 3777:1 3811:1 3919:1 3920:2 3948:1 3991:1 3998:1 4033:1 4037:1 4059:1 4071:7 4091:2 4131:2 4140:1 4152:2 4162:1 4194:1 4195:1 4210:1 4225:2 4249:1 4251:1 4253:1 4257:1 4294:2 4301:1 4307:1 4324:1 4349:1 4378:1 4436:1 4441:1 4486:1 4556:1 4622:1 4686:1 4692:3 4708:1 4766:1 4778:1 4794:1 4795:2 4834:1 4851:2 4959:1 4989:1 5006:1 5023:1 5052:1 5058:2 5067:4 5131:1 5135:1 5185:1 5200:1 5231:1 5266:1 5271:1 5365:1 5394:1 5406:1 5408:1 5437:334 5468:1 5509:1 5583:1 5604:1 5625:1 5637:1 5756:1 5762:1 5763:1 5765:1 5767:1 5771:2 5775:1 5778:1 5780:1 5886:1 5911:2 5932:3 5984:3 6092:1 6110:1 6311:1 6316:1 6317:1 6321:1 6339:2 6352:1 6354:1 6420:1 6425:1 6502:1 6511:1 6517:2 6541:1 6609:1 6675:2 6680:1 6683:1 6688:1 6694:1 6752:1 6765:1 6829:1 6837:1 6845:3 6903:1 6945:1 7008:1 7016:1 7129:1 7148:1 7160:1 7185:1 7268:1 7297:1 7402:1 7414:2 7441:1 7459:1 7474:1 7490:1 7513:1 7539:1 7548:1 7571:1 7585:1 7601:1 7611:1 7622:1 7631:1 7653:1 7678:1 7703:1 7767:1 7782:1 7788:1 7794:1 7825:1 7829:1 7951:1 8032:1 8055:2 8080:1 8091:1 8162:1 8311:1 8334:1 8364:1 8379:1 8386:1 8541:1 8545:1 8589:1 8642:1 8644:1 8650:1 8712:1 8784:1 8810:1 8820:3 8824:2 8835:1 8840:1 8846:1 8847:2 8849:1 8911:1 8997:1 9027:1 9041:3 9046:1 9082:1 9131:1 9158:1 9212:1 9234:1 9315:1 9318:1 9337:1 9387:1 9410:1 9425:1 9441:1 9509:2 9538:1 9585:1 9592:2 9628:1 9669:1 9674:1 9678:1 9696:2 9732:1 9755:1 9782:1 9828:1 9841:1 9916:1 9960:1 9995:1 10029:1 10042:1 10093:2 10163:1 10168:1 10223:1 10224:1 10269:1 10275:1 10323:1 10382:1 10410:2 10465:1 10517:1 10593:1 10607:1 10718:1 10743:1 10744:1 10760:1 10783:1 10791:1 10812:6 10838:1 10841:1 10843:1 10855:1 10871:2 10940:1 10981:1 10983:1 10998:1 11110:1 11113:1 11125:1 11170:1 11229:1 11247:1 11260:1 11301:1 11340:1 11347:1 11363:2 11379:1 11401:1 11403:1 11423:1 11436:2 11584:1 11597:2 11625:1 11709:2 11711:1 11737:1 11776:1 11785:2 11788:1 11799:2 11849:1 11913:1 11949:1 11990:1 12004:1 12021:1 12042:1 12095:1 12118:1 12129:1 12133:1 12196:3 12213:1 12257:1 12323:1 12382:1 12401:2 12418:4 12457:1 12466:1 12467:1 12486:1 12506:1 12512:2 12554:1 12557:1 12572:1 12630:1 12652:1 12664:1 12739:1 12757:1 12779:1 12839:1 12856:1 12861:1 12879:1 12913:1 12932:1 12962:1 12974:3 12991:1 13052:1 13069:1 13091:2 13108:1 13153:1 13163:1 13278:1 13281:1 13299:1 13336:2 13342:1 13348:2 13354:1 13359:1 13388:1 13412:2 13425:1 13430:2 13431:1 13436:1 13449:1 13451:2 13453:1 13475:1 13498:1 13512:1 13532:1 13534:1 13600:2 13606:1 13610:1 13630:1 13640:1 13696:1 13702:2 13703:1 13741:1 13756:2 13817:1 13823:1 13824:1 13845:1 13889:1 13908:1 13937:2 13974:2 13992:1 14088:1 14096:2 14100:1 14133:1 14181:2 14257:1 14262:1 14271:1 14293:1 14452:2 14519:2 14525:1 14555:1 14559:1 14583:1 14590:2 14592:1 14594:1 14608:1 14663:1 14672:1 14681:1 14694:1 14708:1 14770:1 14798:1 14814:1 14829:1 14854:1 14873:1 14884:1 14900:1 14909:1 14935:1 15085:1 15089:1 15113:1 15134:1 15195:1 15235:1 15290:1 15480:1 15547:1 15568:1 15585:1 15618:1 15633:1 15637:1 15666:3 15696:1 15712:2 15731:1 15745:1 15752:2 15771:1 15854:1 15863:1 15864:1 15937:1 15978:4 15990:1 16006:1 16008:1 16022:1 16077:1 16122:1 16160:1 16175:1 16179:1 16183:2 16221:2 16264:1 16288:1 16356:1 16380:1 16388:1 16389:1 16434:2 16515:2 16540:1 16582:1 16655:1 16666:1 16679:1 16691:1 16732:1 16740:1 16760:1 16812:1 16822:2 16883:1 16902:1 16937:1 16964:1 16967:1 17014:1 17072:1 17106:2 17140:1 17161:1 17192:1 17207:1 17251:1 17306:2 17324:1 17362:1 17370:1 17389:1 17394:1 17408:7 17436:2 17474:2 17475:1 17504:1 17510:1 17519:1 17572:1 17583:1 17615:1 17672:1 17680:1 17696:1 17787:1 17802:1 17820:1 17891:1 18009:1 18017:1 18068:1 18098:1 18100:2 18108:1 18132:1 18143:1 18144:1 18176:1 18230:1 18246:1 18269:1 18343:1 18355:1 18380:1 18389:2 18392:3 18393:1 18398:1 18419:1 18442:1 18509:1 18557:1 18589:1 18613:1 18643:1 18690:1 18693:1 18713:2 18753:1 18767:1 18801:2 18811:1 18834:1 18860:1 18874:1 18877:1 18899:1 18914:1 18953:1 18956:1 19001:1 19020:1 19021:1 19031:1 19050:1 19130:1 19132:1 19171:1 19174:1 19177:1 19278:1 19280:1 19311:1 19312:1 19358:2 19458:2 19465:1 19470:1 19526:1 19615:1 19627:1 19661:1 19673:1 19674:1 19718:1 19762:1 19818:1 19824:2 19856:1 19869:1 19918:1 19919:1 19996:1 20003:1 20033:1 20060:1 20158:1 20177:1 20215:1 20255:1 20263:1 20342:1 20350:1
14 88:3 118:1 140:2 148:1 162:1 272:1 274:1 277:1 284:1 364:1 366:3 376:1 406:1 417:1 440:1 448:1 467:1 528:1 576:1 584:1 667:1 697:1 700:1 703:2 717:1 730:1 791:1 800:1 801:2 802:1 805:3 868:1 919:1 950:1 984:1 1028:1 1081:1 1142:1 1146:1 1186:1 1237:1 1241:1 1256:1 1310:1 1331:2 1334:2 1419:1 1432:1 1442:1 1467:2 1468:1 1536:1 1571:1 1578:1 1596:1 1601:1 1640:1 1658:1 1777:1 1797:1 1818:1 1830:1 1839:1 1843:1 1845:1 1858:1 1867:1 1875:1 1934:1 1945:2 1969:1 2004:1 2084:1 2100:2 2149:2 2189:1 2251:1 2253:2 2315:1 2327:2 2355:1 2358:1 2379:1 2385:1 2407:1 2423:1 2504:1 2509:1 2524:1 2533:3 2536:1 2563:3 2598:2 2600:1 2632:1 2642:1 2658:2 2665:1 2782:1 2816:1 2817:2 2831:2 2903:1 2905:1 2917:1 2923:1 2930:1 2933:1 2992:1 3028:1 3043:1 3044:1 3046:2 3047:1 3048:1 3053:1 3068:1 3082:2 3110:1 3116:1 3123:2 3142:1 3146:1 3149:2 3215:1 3231:1 3250:1 3281:2 3294:1 3295:1 3390:1 3446:1 3489:1 3493:1 3501:1 3507:1 3510:2 3560:1 3568:2 3581:1 3631:1 3633:1 3638:1 3706:1 3707:1 3726:4 3751:1 3753:1 3763:1 3766:1 3777:1 3811:1 3879:1 3919:1 3920:2 3948:1 3991:1 3998:1 4013:1 4033:1 4037:1 4054:1 4059:1 4071:7 4091:2 4098:1 4131:3 4140:1 4145:1 4152:2 4162:1 4194:1 4195:1 4210:1 4211:1 4225:2 4249:1 4251:1 4253:1 4257:1 4294:2 4301:1 4305:1 4307:1 4324:1 4331:1 4349:1 4378:1 4436:1 4441:1 4471:1 4486:1 4556:1 4568:1 4622:1 4641:1 4686:2 4692:4 4699:1 4708:1 4762:1 4766:1 4772:1 4778:1 4794:1 4795:3 4834:1 4851:3 4959:1 4960:1 4989:1 5006:1 5023:1 5052:1 5058:2 5067:5 5131:1 5135:1 5185:1 5200:1 5231:1 5266:1 5271:1 5313:1 5365:2 5375:1 5394:1 5406:1 5408:1 5437:427 5460:1 5468:1 5509:2 5583:1 5604:1 5625:1 5637:1 5644:1 5756:1 5762:1 5763:1 5765:1 5767:1 5771:2 5775:1 5778:1 5780:1 5886:1 5911:2 5912:1 5932:4 5984:4 5996:1 6092:1 6110:1 6311:1 6316:1 6317:1 6321:1 6325:1 6339:2 6352:2 6354:1 6420:1 6425:1 6458:1 6502:1 6511:1 6517:2 6541:1 6609:1 6675:2 6680:1 6683:2 6688:1 6694:1 6725:1 6746:1 6752:1 6765:1 6829:1 6837:1 6845:3 6867:1 6903:1 6945:1 6956:2 7008:2 7016:1 7129:1 7148:2 7160:2 7185:1 7268:1 7287:1 7297:1 7402:1 7414:2 7441:1 7459:1 7474:1 7490:1 7497:1 7512:1 7513:1 7539:1 7548:1 7571:1 7585:1 7591:1 7601:1 7611:1 7622:1 7631:1 7653:1 7678:1 7703:2 7767:1 7782:1 7783:1 7788:1 7794:1 7825:1 7829:1 7951:1 8032:1 8055:2 8080:1 8091:1 8162:1 8190:1 8311:1 8334:1 8364:2 8379:1 8386:1 8533:1 8541:1 8545:2 8589:1 8642:1 8644:1 8650:1 8663:1 8691:1 8712:2 8777:1 8784:1 8810:1 8820:3 8824:2 8831:1 8835:1 8840:1 8846:1 8847:3 8849:1 8853:1 8911:1 8918:1 8997:1 9027:1 9041:4 9046:1 9082:1 9131:1 9158:1 9207:1 9212:1 9234:1 9241:1 9308:1 9315:1 9318:1 9337:1 9387:1 9410:1 9425:2 9441:1 9509:3 9538:1 9585:1 9592:3 9628:1 9634:1 9669:1 9674:1 9678:1 9696:3 9732:1 9754:1 9755:1 9782:1 9828:1 9841:1 9916:1 9918:1 9960:1 9967:1 9995:1 10029:1 10042:1 10093:2 10163:1 10168:1 10223:1 10224:1 10236:1 10269:1 10275:1 10294:1 10323:1 10341:1 10382:1 10397:1 10410:2 10465:1 10517:1 10593:1 10607:1 10648:1 10683:1 10718:1 10737:1 10743:1 10744:1 10760:1 10774:1 10783:1 10791:1 10812:8 10838:1 10841:1 10843:2 10855:1 10866:1 10871:2 10940:1 10981:2 10983:1 10998:2 11110:1 11113:1 11125:2 11170:1 11190:1 11229:1 11247:1 11260:1 11301:1 11340:1 11347:1 11363:2 11379:1 11401:1 11403:1 11423:1 11436:2 11485:1 11584:1 11597:2 11625:1 11709:3 11711:1 11737:1 11776:1 11785:2 11788:1 11799:2 11849:1 11913:1 11921:1 11949:1 11990:1 12004:1 12021:1 12024:1 12025:1 12035:1 12038:1 12042:1 12095:1 12118:1 12129:1 12133:1 12196:3 12211:1 12213:1 12257:1 12323:1 12379:1 12382:1 12401:2 12418:5 12457:1 12466:1 12467:2 12486:1 12502:1 12506:1 12512:2 12554:1 12557:1 12572:1 12594:1 12630:1 12652:2 12664:1 12739:1 12757:1 12762:1 12779:1 12839:1 12856:1 12861:1 12879:1 12913:1 12932:1 12962:1 12974:3 12991:1 13052:1 13069:2 13091:2 13108:1 13153:1 13163:1 13278:1 13281:1 13299:1 13328:1 13336:2 13342:1 13348:2 13354:1 13356:1 13359:1 13388:1 13405:1 13412:3 13425:1 13430:2 13431:2 13434:1 13436:1 13441:1 13449:1 13451:2 13453:1 13474:1 13475:1 13498:2 13502:1 13512:1 13532:1 13534:1 13599:1 13600:2 13606:1 13610:2 13630:1 13640:1 13650:1 13696:1 13702:3 13703:1 13741:1 13756:4 13817:1 13823:1 13824:1 13845:1 13886:1 13889:1 13908:1 13937:3 13974:2 13992:1 14088:1 14096:2 14100:1 14133:1 14181:3 14257:1 14262:1 14271:1 14293:2 14452:2 14474:1 14519:2 14525:2 14555:1 14559:1 14583:1 14590:2 14592:1 14594:2 14608:2 14663:1 14672:1 14681:1 14694:1 14708:1 14770:2 14798:1 14814:1 14826:1 14829:1 14854:1 14873:1 14884:1 14900:1 14909:1 14935:1 14980:1 15005:1 15030:1 15085:1 15089:2 15113:1 15134:1 15195:1 15235:1 15290:1 15480:1 15546:1 15547:1 15568:2 15585:1 15613:1 15618:1 15633:1 15637:1 15666:3 15696:1 15712:2 15731:1 15745:1 15747:1 15752:2 15771:1 15773:1 15829:1 15854:1 15863:1 15864:1 15937:1 15978:5 15990:1 16006:1 16008:1 16016:1 16017:1 16022:1 16072:1 16077:1 16122:1 16160:1 16175:1 16179:1 16183:2 16217:1 16221:3 16264:1 16288:1 16338:1 16356:1 16380:1 16388:1 16389:1 16418:1 16434:2 16482:1 16515:2 16532:1 16540:1 16582:2 16594:1 16655:1 16666:1 16679:1 16691:1 16716:1 16732:1 16740:1 16760:1 16812:1 16822:4 16883:1 16902:1 16918:1 16932:1 16937:1 16942:1 16964:1 16967:1 17014:1 17072:2 17106:3 17140:1 17161:1 17192:1 17207:1 17251:1 17306:2 17324:2 17362:1 17370:1 17389:1 17394:1 17408:7 17436:3 17474:2 17475:1 17504:1 17510:1 17519:1 17552:1 17572:1 17583:1 17615:1 17672:1 17680:1 17696:1 17787:1 17802:1 17820:1 17891:1 17912:1 18009:1 18017:1 18068:1 18075:1 18098:1 18100:2 18108:1 18132:1 18143:1 18144:1 18176:1 18230:1 18246:1 18253:1 18269:1 18343:1 18355:1 18380:1 18387:1 18389:3 18392:7 18393:1 18398:1 18419:1 18442:1 18473:1 18509:1 18557:1 18589:1 18613:1 18643:2 18690:1 18693:1 18713:2 18753:2 18767:1 18801:2 18811:1 18834:1 18860:1 18874:1 18877:1 18899:1 18914:1 18945:1 18953:1 18956:1 19001:1 19005:1 19020:3 19021:1 19031:1 19050:1 19130:1 19132:1 19171:1 19174:1 19177:3 19278:2 19280:1 19311:1 19312:1 19358:2 19458:2 19465:2 19470:1 19526:1 19528:1 19600:1 19615:1 19627:1 19659:1 19661:1 19673:1 19674:1 19692:1 19718:1 19762:1 19818:1 19824:2 19856:1 19869:1 19918:1 19919:1 19996:1 20003:1 20033:1 20060:2 20158:1 20177:1 20215:2 20255:1 20263:1 20276:1 20342:1 20350:1
14 88:3 115:1 118:1 133:1 140:3 148:1 162:1 272:1 274:1 277:2 284:1 364:1 366:3 376:1 406:1 417:1 440:1 448:1 467:1 528:1 569:1 576:1 584:1 611:1 633:1 667:1 697:1 700:1 703:3 717:1 730:1 791:1 800:2 801:2 802:1 805:3 868:1 919:1 932:1 939:1 950:1 984:1 1018:1 1028:1 1031:1 1081:1 1142:1 1146:1 1186:1 1237:1 1241:1 1256:1 1273:1 1310:1 1330:1 1331:2 1334:2 1382:1 1419:1 1432:1 1442:1 1467:2 1468:2 1536:1 1545:1 1571:1 1578:1 1596:1 1601:1 1640:1 1658:1 1777:1 1797:1 1818:1 1830:1 1839:1 1843:2 1845:1 1854:1 1858:1 1867:1 1875:1 1934:1 1942:1 1945:2 1969:1 2004:1 2016:1 2084:1 2100:3 2149:2 2186:1 2189:1 2201:1 2251:2 2253:2 2282:1 2315:1 2327:2 2355:1 2358:1 2379:1 2385:1 2407:1 2423:1 2504:2 2509:1 2524:2 2533:3 2536:1 2563:3 2572:1 2598:4 2600:3 2632:1 2642:1 2656:1 2658:3 2665:1 2782:1 2788:1 2816:1 2817:2 2831:2 2887:1 2903:1 2905:1 2917:1 2923:2 2930:1 2933:1 2971:1 2992:1 3028:1 3043:1 3044:1 3046:2 3047:1 3048:1 3053:1 3068:1 3071:1 3082:2 3110:1 3116:2 3123:2 3125:1 3142:1 3146:1 3149:2 3215:1 3231:1 3250:1 3281:2 3294:1 3295:1 3327:1 3358:1 3390:1 3446:1 3474:1 3489:1 3493:1 3501:1 3507:1 3510:2 3518:1 3560:1 3568:2 3581:1 3631:1 3633:1 3638:1 3706:2 3707:1 3726:4 3751:1 3753:1 3763:1 3766:1 3777:1 3788:1 3811:1 3873:1 3879:1 3919:1 3920:2 3948:1 3966:1 3975:1 3991:1 3998:1 4013:1 4019:1 4033:2 4037:1 4054:1 4059:1 4067:1 4071:10 4091:2 4098:1 4131:5 4140:1 4145:1 4152:2 4162:1 4168:1 4194:1 4195:1 4210:1 4211:1 4225:2 4249:1 4251:1 4253:1 4257:1 4294:2 4301:1 4305:1 4307:1 4324:1 4331:1 4349:1 4378:1 4436:1 4441:1 4471:1 4486:1 4556:1 4568:1 4622:1 4641:1 4667:1 4683:1 4686:3 4692:4 4699:1 4708:1 4762:1 4766:1 4772:1 4778:1 4794:1 4795:3 4834:1 4851:3 4959:1 4960:1 4989:1 5006:1 5016:1 5023:1 5052:1 5058:3 5067:6 5131:1 5135:1 5185:1 5193:1 5200:1 5231:1 5247:1 5266:1 5271:1 5313:1 5365:2 5375:1 5394:2 5406:1 5408:1 5437:477 5460:1 5468:1 5509:2 5583:1 5604:1 5625:1 5637:1 5644:1 5672:1 5756:2 5762:1 5763:1 5765:1 5767:1 5771:3 5775:1 5778:1 5780:1 5785:1 5886:1 5904:1 5911:2 5912:1 5932:4 5984:4 5996:1 6092:1 6110:1 6311:1 6316:1 6317:1 6321:1 6325:1 6339:3 6352:2 6354:1 6420:1 6425:1 6458:1 6489:1 6502:1 6511:1 6517:2 6541:1 6609:1 6675:4 6680:1 6683:2 6688:1 6694:3 6725:1 6746:1 6752:1 6765:1 6829:1 6837:1 6845:3 6867:1 6868:1 6880:1 6903:1 6945:1 6956:2 7008:2 7016:1 7079:1 7129:1 7148:4 7156:1 7160:3 7185:2 7268:1 7287:1 7297:1 7361:1 7402:1 7414:2 7425:1 7441:1 7459:2 7474:1 7490:1 7497:1 7512:1 7513:1 7525:1 7539:1 7548:1 7571:1 7585:1 7591:1 7595:1 7601:1 7611:1 7622:1 7631:1 7653:1 7678:1 7703:4 7767:1 7782:1 7783:1 7788:1 7794:1 7825:1 7829:1 7951:1 7977:1 8032:1 8055:2 8080:1 8091:1 8162:1 8190:1 8311:1 8334:1 8364:2 8379:1 8386:1 8533:1 8541:1 8545:3 8589:1 8642:1 8644:2 8650:1 8652:1 8657:1 8663:1 8691:1 8712:3 8777:1 8784:1 8810:1 8820:3 8824:2 8831:1 8835:1 8836:1 8840:1 8846:1 8847:3 8849:1 8853:2 8911:1 8918:1 8997:1 9013:1 9027:1 9041:4 9046:1 9082:1 9131:1 9153:1 9158:1 9207:1 9212:1 9234:1 9241:1 9302:1 9308:1 9315:1 9318:1 9337:1 9387:1 9410:1 9425:2 9441:1 9509:3 9538:1 9544:1 9555:1 9558:1 9575:1 9582:1 9585:1 9592:3 9628:1 9634:2 9669:1 9674:1 9678:1 9696:3 9723:1 9732:1 9754:1 9755:1 9781:1 9782:1 9828:1 9830:1 9841:1 9846:1 9888:1 9916:1 9918:1 9930:1 9960:1 9967:1 9995:1 10029:1 10042:1 10093:2 10163:1 10168:1 10209:1 10223:1 10224:2 10236:1 10269:1 10275:1 10294:1 10323:1 10341:1 10382:1 10397:1 10410:2 10465:1 10517:2 10593:1 10607:1 10648:2 10683:1 10718:1 10737:1 10743:1 10744:2 10760:1 10774:1 10783:1 10790:1 10791:1 10812:10 10814:1 10838:1 10841:1 10843:3 10855:1 10866:1 10871:2 10901:1 10940:1 10981:3 10983:1 10998:3 11110:1 11113:1 11125:4 11170:1 11190:1 11229:1 11247:1 11260:1 11301:1 11340:1 11347:1 11363:2 11379:1 11382:1 11401:1 11403:1 11423:2 11436:2 11485:1 11584:1 11597:2 11625:1 11709:3 11711:1 11722:1 11737:1 11747:1 11776:1 11785:2 11788:1 11799:2 11849:1 11888:1 11913:1 11921:1 11949:1 11990:1 12004:1 12011:1 12021:1 12024:1 12025:1 12035:2 12038:1 12042:1 12063:1 12077:1 12094:1 12095:1 12118:1 12129:1 12133:1 12196:4 12211:1 12213:1 12257:1 12323:1 12379:1 12382:1 12401:2 12418:5 12457:1 12466:1 12467:3 12481:1 12486:1 12502:1 12506:1 12511:1 12512:2 12554:1 12557:2 12572:1 12594:1 12630:1 12652:2 12664:2 12739:1 12757:1 12762:1 12779:1 12781:1 12839:1 12856:1 12857:1 12861:1 12879:1 12913:1 12932:1 12950:1 12962:1 12974:4 12991:1 13021:1 13052:1 13069:3 13091:2 13108:1 13153:1 13163:1 13275:1 13276:1 13278:1 13281:1 13299:2 13311:1 13328:1 13336:2 13342:1 13346:1 13348:2 13354:1 13356:1 13359:1 13388:1 13405:1 13412:3 13413:1 13425:1 13430:2 13431:2 13434:1 13436:1 13441:1 13449:1 13451:3 13453:2 13474:1 13475:1 13498:2 13502:3 13512:1 13532:1 13534:1 13599:1 13600:2 13606:2 13610:2 13630:1 13635:1 13640:1 13650:1 13696:1 13702:3 13703:1 13741:1 13756:4 13817:1 13823:1 13824:1 13845:1 13886:1 13889:1 13892:1 13898:1 13908:1 13937:3 13944:1 13974:3 13992:1 14088:1 14096:2 14100:2 14133:1 14181:3 14257:1 14262:1 14271:1 14286:1 14293:3 14339:1 14383:1 14420:1 14436:1 14452:2 14474:1 14519:2 14525:3 14527:1 14555:1 14559:1 14581:1 14583:1 14590:2 14592:1 14594:3 14608:2 14663:1 14672:1 14681:2 14694:1 14708:1 14718:1 14770:2 14798:1 14814:1 14826:1 14829:1 14854:1 14873:1 14884:1 14900:1 14909:1 14920:1 14935:1 14980:1 15004:1 15005:1 15030:1 15085:1 15089:3 15113:1 15134:1 15195:1 15235:1 15290:2 15396:1 15421:1 15480:1 15497:1 15546:2 15547:1 15568:3 15585:1 15613:1 15618:1 15628:1 15633:1 15637:2 15666:4 15693:1 15696:2 15712:2 15731:1 15745:1 15747:2 15752:2 15771:1 15773:1 15829:1 15854:1 15863:1 15864:1 15937:1 15978:6 15990:2 16006:1 16008:1 16016:1 16017:1 16022:1 16072:1 16077:1 16106:1 16122:1 16160:1 16175:1 16179:1 16183:2 16217:1 16221:4 16264:1 16288:1 16338:1 16345:1 16356:1 16380:1 16388:1 16389:1 16418:1 16434:3 16482:1 16515:3 16532:1 16540:1 16582:2 16594:2 16655:1 16666:1 16679:1 16691:1 16716:1 16732:1 16740:1 16760:1 16812:1 16822:4 16883:1 16902:1 16918:1 16932:1 16937:1 16942:1 16945:1 16964:1 16967:1 17014:1 17019:1 17072:3 17106:3 17140:1 17161:1 17192:1 17207:1 17213:1 17251:1 17306:2 17324:3 17342:1 17362:1 17370:1 17389:1 17394:1 17408:9 17436:4 17474:2 17475:1 17486:1 17504:1 17510:1 17519:1 17524:1 17552:1 17572:1 17583:1 17615:1 17672:1 17680:1 17684:1 17696:1 17723:1 17787:1 17802:1 17820:1 17891:2 17912:1 17990:1 18009:1 18017:2 18058:1 18068:2 18075:1 18098:1 18100:2 18108:1 18132:1 18143:1 18144:1 18176:1 18230:1 18246:1 18253:1 18269:1 18319:1 18326:1 18343:1 18355:1 18380:1 18387:1 18389:3 18392:11 18393:1 18398:1 18412:1 18419:1 18442:2 18473:1 18509:1 18516:1 18557:2 18589:1 18613:1 18636:2 18643:3 18690:1 18693:1 18713:3 18753:2 18766:1 18767:1 18799:1 18801:2 18811:1 18834:1 18852:1 18860:1 18874:1 18877:1 18899:1 18914:1 18934:1 18945:1 18953:1 18956:1 19001:1 19005:1 19020:3 19021:1 19031:1 19050:1 19130:1 19132:1 19171:1 19174:1 19177:3 19278:2 19280:1 19311:1 19312:1 19358:2 19458:2 19465:2 19470:1 19526:1 19528:1 19600:1 19615:1 19619:1 19627:1 19659:2 19661:1 19673:1 19674:2 19687:1 19692:1 19718:1 19762:1 19818:1 19823:1 19824:2 19856:1 19869:1 19918:1 19919:1 19996:1 20003:1 20033:1 20052:1 20060:2 20158:1 20177:1 20178:1 20215:2 20247:1 20255:1 20263:1 20270:1 20271:1 20276:1 20342:1 20350:1
14 8:1 73:1 88:3 115:1 118:1 131:1 133:1 140:3 148:1 162:1 272:1 274:1 277:2 284:1 344:1 364:1 366:4 376:2 400:1 406:1 417:1 440:1 448:1 467:1 475:1 528:1 569:1 576:1 584:1 611:1 633:1 667:1 697:1 700:1 703:4 717:1 730:1 791:1 800:2 801:2 802:1 805:3 868:1 919:1 932:1 936:1 939:1 950:1 984:1 1018:1 1028:1 1031:1 1081:1 1142:1 1146:1 1186:1 1237:1 1241:2 1256:2 1273:1 1310:1 1330:1 1331:2 1334:2 1382:1 1419:1 1432:1 1442:1 1467:2 1468:3 1536:1 1545:1 1571:1 1578:1 1596:1 1601:1 1609:1 1640:1 1658:1 1721:1 1777:1 1797:1 1818:1 1830:1 1839:1 1843:2 1845:1 1846:1 1854:1 1858:1 1867:1 1875:2 1934:1 1942:1 1945:2 1969:1 2004:2 2016:1 2084:1 2100:3 2149:2 2186:1 2189:1 2201:1 2230:1 2251:2 2253:2 2282:1 2315:1 2327:2 2355:1 2358:1 2379:1 2385:1 2407:1 2423:1 2456:1 2504:2 2509:1 2524:2 2533:3 2536:1 2563:3 2572:1 2598:4 2600:3 2632:1 2642:1 2656:1 2658:3 2665:1 2737:1 2761:1 2782:1 2788:1 2816:1 2817:2 2831:2 2887:1 2903:1 2905:1 2917:1 2923:3 2930:1 2933:1 2937:1 2971:1 2992:1 3028:1 3043:1 3044:1 3046:2 3047:1 3048:1 3053:1 3068:1 3069:1 3071:1 3082:2 3083:1 3093:1 3110:1 3116:2 3123:2 3125:1 3142:1 3146:1 3149:2 3156:1 3215:1 3231:1 3250:1 3281:3 3294:1 3295:1 3327:1 3358:1 3390:1 3446:1 3456:1 3458:1 3474:1 3489:1 3493:1 3501:1 3507:1 3510:2 3512:1 3518:1 3560:1 3568:2 3581:1 3599:1 3631:2 3633:1 3638:1 3692:1 3706:2 3707:1 3726:4 3751:1 3753:1 3763:1 3766:1 3777:2 3788:1 3811:2 3836:1 3873:1 3879:1 3905:1 3919:1 3920:2 3948:1 3966:1 3975:1 3991:1 3998:1 3999:1 4013:1 4019:1 4026:1 4033:2 4037:1 4054:1 4059:1 4067:1 4071:11 4091:2 4098:1 4114:1 4131:5 4140:1 4145:1 4152:3 4162:1 4168:1 4194:1 4195:1 4210:1 4211:1 4225:2 4249:1 4251:1 4253:1 4257:1 4294:2 4301:1 4305:2 4307:1 4324:1 4331:1 4348:1 4349:1 4378:1 4427:1 4436:1 4441:1 4471:1 4486:1 4502:1 4556:1 4568:1 4622:1 4641:1 4667:1 4683:1 4686:3 4692:4 4699:1 4708:1 4762:1 4766:1 4772:1 4778:1 4794:1 4795:3 4831:1 4834:1 4851:3 4940:1 4959:1 4960:1 4989:1 5006:1 5016:1 5023:1 5052:1 5058:3 5067:7 5131:1 5132:1 5135:1 5185:1 5193:1 5200:1 5228:1 5231:1 5247:1 5266:1 5271:1 5313:1 5365:2 5366:1 5375:1 5394:2 5406:1 5408:1 5413:1 5437:524 5460:2 5468:1 5509:2 5583:1 5604:1 5625:1 5637:1 5644:1 5672:1 5697:1 5756:2 5762:1 5763:1 5765:1 5767:1 5771:3 5775:1 5778:1 5780:1 5785:1 5813:1 5886:1 5904:1 5911:2 5912:1 5932:4 5984:4 5996:1 6092:1 6110:1 6133:1 6174:1 6311:1 6316:1 6317:1 6321:1 6325:1 6339:3 6352:2 6354:1 6420:1 6425:1 6452:1 6458:1 6489:1 6502:1 6511:1 6517:2 6541:1 6588:1 6609:1 6675:5 6680:1 6683:3 6688:1 6694:3 6725:1 6746:1 6749:1 6752:1 6765:1 6822:1 6829:1 6837:1 6845:3 6867:2 6868:1 6880:1 6903:1 6945:1 6956:2 7008:2 7016:1 7079:1 7112:1 7129:1 7142:1 7148:4 7156:1 7160:4 7185:2 7258:1 7266:1 7268:1 7287:1 7295:1 7297:1 7361:1 7402:1 7403:1 7414:2 7425:1 7441:1 7459:2 7474:1 7490:1 7497:1 7512:1 7513:1 7525:1 7539:1 7548:1 7571:1 7585:1 7591:1 7595:1 7601:1 7611:1 7622:1 7631:1 7653:1 7664:1 7678:1 7703:4 7767:1 7782:1 7783:1 7788:1 7794:1 7825:1 7829:1 7852:1 7951:1 7977:1 8032:1 8055:2 8080:1 8091:1 8162:1 8190:1 8311:1 8334:1 8364:2 8379:1 8386:1 8398:1 8533:1 8541:1 8545:3 8589:1 8609:1 8642:1 8644:2 8650:1 8652:1 8657:1 8663:1 8691:1 8712:3 8718:1 8777:1 8784:1 8810:1 8820:3 8824:2 8831:1 8835:1 8836:1 8840:1 8846:1 8847:3 8849:1 8851:1 8853:2 8911:1 8918:1 8997:1 9013:1 9027:1 9041:4 9046:1 9082:1 9131:1 9138:1 9153:1 9158:1 9207:1 9212:1 9234:1 9241:1 9302:1 9308:1 9315:1 9318:1 9333:1 9337:1 9387:1 9410:1 9425:3 9441:1 9503:1 9509:3 9518:1 9538:1 9544:1 9555:1 9558:1 9575:1 9582:1 9585:1 9592:3 9607:1 9628:1 9634:2 9669:1 9674:1 9678:1 9696:3 9723:1 9732:1 9754:1 9755:1 9781:1 9782:1 9828:1 9830:1 9841:1 9846:1 9888:1 9916:1 9918:2 9925:1 9930:1 9960:1 9967:1 9995:2 9999:1 10029:1 10042:1 10093:2 10163:1 10168:1 10209:1 10220:1 10223:1 10224:2 10236:1 10266:1 10269:1 10275:1 10294:1 10323:1 10341:1 10382:1 10387:1 10397:1 10410:2 10465:1 10490:1 10512:1 10517:2 10593:1 10607:1 10648:2 10683:1 10718:1 10737:1 10743:1 10744:2 10760:1 10774:1 10783:1 10790:1 10791:1 10812:10 10814:1 10838:1 10841:1 10843:3 10855:1 10866:1 10871:2 10901:1 10940:1 10981:4 10983:1 10998:3 11033:1 11110:1 11113:1 11125:4 11170:1 11190:1 11229:1 11247:1 11260:1 11300:1 11301:1 11340:1 11342:1 11347:1 11363:2 11379:1 11382:1 11401:1 11403:1 11423:2 11436:2 11485:1 11584:1 11597:2 11618:1 11621:1 11625:1 11709:3 11711:1 11722:1 11737:1 11747:1 11771:1 11776:1 11785:2 11786:1 11788:1 11799:2 11849:1 11888:1 11913:1 11921:1 11943:1 11949:1 11990:1 12004:1 12011:1 12014:1 12021:1 12024:1 12025:1 12032:1 12035:2 12038:1 12042:1 12063:1 12077:1 12094:1 12095:1 12118:1 12129:1 12133:1 12196:4 12211:1 12213:1 12257:1 12323:1 12366:1 12379:1 12382:1 12401:2 12418:6 12435:1 12457:1 12466:1 12467:4 12477:1 12481:1 12486:1 12502:1 12506:1 12511:1 12512:2 12554:1 12557:2 12572:1 12594:1 12614:1 12630:1 12652:3 12664:2 12716:1 12739:1 12757:1 12762:2 12779:1 12781:1 12839:1 12856:1 12857:1 12861:1 12879:2 12913:1 12932:1 12950:1 12962:1 12974:4 12981:1 12984:1 12991:1 13012:1 13021:1 13052:1 13069:3 13090:1 13091:2 13108:1 13153:1 13163:1 13275:1 13276:1 13278:1 13281:1 13299:2 13311:1 13328:1 13336:2 13342:1 13346:1 13348:2 13354:1 13356:1 13359:1 13388:1 13405:1 13412:4 13413:1 13423:1 13425:1 13430:2 13431:2 13434:2 13436:1 13441:1 13449:1 13451:3 13453:2 13474:1 13475:1 13498:3 13502:3 13512:1 13532:1 13534:1 13599:1 13600:2 13606:2 13610:3 13630:1 13635:1 13640:1 13650:1 13696:1 13702:3 13703:1 13711:1 13741:1 13756:4 13817:1 13823:1 13824:1 13845:1 13863:1 13886:1 13889:1 13892:1 13898:1 13908:1 13937:3 13944:1 13955:1 13974:3 13992:1 14088:1 14096:2 14100:2 14133:1 14181:3 14257:1 14262:1 14271:1 14286:1 14293:4 14339:1 14383:1 14420:1 14436:1 14452:2 14474:1 14519:2 14525:4 14527:1 14555:1 14559:1 14581:1 14583:1 14590:3 14592:1 14594:3 14608:2 14609:1 14610:1 14663:1 14672:1 14681:2 14694:1 14708:1 14718:1 14770:2 14798:1 14814:1 14826:2 14828:1 14829:1 14854:1 14873:1 14884:1 14900:1 14909:1 14920:1 14935:1 14980:2 15004:1 15005:2 15030:1 15085:1 15089:3 15113:1 15117:1 15134:1 15195:1 15206:1 15235:1 15243:1 15290:2 15396:1 15421:1 15445:1 15480:1 15497:1 15546:2 15547:1 15568:3 15585:1 15613:2 15618:2 15628:1 15633:1 15637:2 15666:4 15693:1 15696:2 15698:1 15712:2 15713:1 15731:1 15745:1 15747:2 15752:2 15771:1 15773:1 15799:1 15829:1 15836:1 15854:1 15863:1 15864:1 15937:1 15959:1 15978:7 15990:2 16006:1 16008:1 16016:2 16017:1 16022:1 16072:1 16077:1 16106:1 16122:1 16160:1 16175:1 16179:1 16183:2 16217:1 16221:5 16264:1 16288:1 16338:1 16345:1 16356:1 16380:1 16388:1 16389:1 16418:1 16434:3 16482:1 16515:3 16532:1 16540:1 16582:2 16584:1 16594:2 16655:1 16666:1 16675:1 16679:1 16691:1 16694:1 16716:1 16732:1 16740:1 16760:1 16812:1 16822:4 16883:1 16894:1 16902:1 16918:1 16932:1 16937:1 16942:1 16945:1 16946:1 16964:1 16967:1 17014:1 17019:1 17059:1 17072:3 17106:3 17140:1 17161:1 17192:1 17207:1 17213:1 17239:1 17251:1 17306:3 17324:3 17342:1 17362:1 17370:1 17389:1 17394:1 17408:9 17436:4 17474:2 17475:1 17486:1 17493:1 17504:1 17510:1 17519:1 17524:1 17552:1 17572:1 17583:1 17615:1 17672:1 17680:1 17684:1 17687:1 17696:1 17723:1 17753:1 17787:1 17802:1 17820:1 17891:2 17912:2 17990:1 18009:1 18017:2 18058:1 18068:2 18075:1 18098:1 18100:2 18108:1 18132:1 18143:1 18144:1 18176:2 18221:1 18230:1 18233:1 18246:1 18253:1 18266:1 18269:1 18319:1 18326:1 18343:1 18355:1 18380:1 18387:1 18389:3 18392:12 18393:1 18398:1 18412:1 18419:1 18442:2 18473:1 18498:1 18509:1 18516:1 18557:2 18589:1 18613:1 18636:2 18643:4 18657:1 18690:1 18693:1 18713:3 18753:3 18766:1 18767:1 18788:1 18799:1 18801:2 18811:2 18834:1 18852:1 18860:1 18874:1 18877:1 18899:1 18914:1 18934:1 18945:1 18953:1 18956:1 18966:1 19001:1 19005:1 19020:3 19021:1 19031:1 19050:1 19098:1 19130:1 19132:1 19171:1 19174:1 19177:3 19278:2 19280:1 19311:1 19312:1 19358:2 19365:1 19398:1 19458:2 19465:2 19470:1 19526:1 19528:1 19600:2 19615:1 19619:1 19627:1 19659:2 19661:1 19673:1 19674:2 19687:1 19692:1 19718:1 19762:1 19818:1 19823:1 19824:2 19856:1 19869:1 19878:1 19888:1 19918:1 19919:1 19996:1 20003:1 20033:1 20052:1 20060:2 20082:1 20126:1 20158:1 20177:1 20178:1 20215:2 20247:1 20255:1 20263:1 20270:1 20271:1 20276:1 20342:1 20350:1
14 8:1 73:1 88:3 115:1 118:1 131:1 133:1 140:3 148:1 162:1 272:1 274:1 277:2 284:1 344:1 364:2 366:4 376:2 400:1 406:1 417:1 440:1 448:1 467:2 475:1 493:1 502:1 528:1 569:1 576:1 584:1 611:1 633:1 667:1 697:1 700:1 703:4 717:1 730:1 791:1 800:3 801:3 802:1 805:3 868:1 919:1 932:1 936:1 939:1 950:1 984:1 1015:1 1018:1 1028:1 1031:1 1081:1 1142:1 1146:1 1186:1 1237:1 1241:2 1256:2 1273:1 1310:1 1330:1 1331:3 1334:2 1382:1 1419:1 1432:1 1442:1 1467:2 1468:3 1536:1 1545:1 1571:1 1578:1 1596:1 1601:1 1609:1 1640:1 1647:1 1658:1 1721:1 1777:1 1796:1 1797:1 1818:1 1830:1 1839:1 1843:2 1845:1 1846:1 1854:1 1858:1 1867:1 1875:2 1934:1 1942:1 1945:3 1969:1 2004:2 2016:1 2084:1 2100:3 2149:2 2157:1 2186:1 2189:1 2201:1 2230:1 2251:2 2253:3 2282:1 2315:1 2327:2 2355:1 2358:2 2379:1 2385:1 2407:1 2423:1 2456:1 2504:2 2509:1 2524:3 2533:3 2536:1 2563:4 2572:1 2598:4 2600:3 2632:1 2642:1 2656:1 2658:3 2665:1 2666:1 2737:1 2761:1 2782:1 2788:1 2816:1 2817:2 2822:1 2831:2 2887:1 2903:1 2905:2 2917:1 2923:3 2930:1 2933:1 2937:1 2971:1 2992:1 3028:2 3043:1 3044:1 3046:2 3047:1 3048:1 3053:1 3068:1 3069:1 3071:1 3082:2 3083:1 3093:1 3094:1 3110:1 3116:2 3123:2 3125:1 3142:2 3146:1 3149:2 3156:1 3212:1 3215:1 3231:1 3250:1 3281:4 3294:1 3295:1 3327:1 3358:1 3390:1 3446:1 3456:1 3458:1 3474:1 3489:1 3493:1 3501:1 3507:1 3510:2 3512:1 3518:1 3560:1 3568:2 3581:1 3588:1 3599:1 3631:2 3633:1 3638:1 3692:1 3706:3 3707:1 3726:5 3751:1 3753:1 3763:1 3766:1 3777:2 3788:1 3811:2 3830:1 3836:1 3873:1 3879:1 3905:1 3919:1 3920:2 3948:1 3966:1 3972:1 3975:1 3991:1 3998:1 3999:1 4013:1 4019:1 4026:1 4033:2 4037:1 4054:1 4059:1 4067:1 4071:12 4072:1 4091:2 4098:1 4114:1 4131:5 4140:1 4145:2 4152:3 4162:1 4168:1 4194:1 4195:1 4210:1 4211:1 4225:2 4249:1 4251:1 4253:1 4257:1 4294:2 4301:1 4305:2 4307:1 4324:1 4331:1 4348:1 4349:1 4378:1 4427:1 4436:1 4441:1 4471:1 4486:1 4502:1 4556:1 4568:1 4622:1 4641:1 4658:1 4667:1 4676:1 4683:1 4686:3 4692:5 4699:1 4708:1 4733:1 4762:1 4766:1 4772:1 4778:1 4794:1 4795:3 4831:1 4834:1 4851:4 4910:1 4940:1 4959:1 4960:1 4989:1 5001:1 5006:2 5016:1 5023:1 5025:1 5052:1 5058:3 5067:9 5131:1 5132:1 5135:1 5185:1 5193:1 5200:1 5203:1 5228:1 5231:1 5241:1 5247:1 5256:1 5266:1 5271:2 5313:1 5365:2 5366:1 5375:1 5394:2 5406:1 5408:1 5413:1 5437:577 5460:2 5468:1 5509:2 5530:1 5583:1 5604:1 5625:1 5637:1 5644:1 5672:1 5691:1 5697:1 5756:2 5762:1 5763:1 5765:1 5767:1 5771:3 5775:1 5778:1 5780:1 5785:1 5813:1 5867:1 5886:1 5904:1 5911:2 5912:1 5932:5 5984:4 5996:1 6092:1 6110:1 6133:1 6174:1 6311:1 6316:1 6317:1 6321:1 6325:1 6339:3 6352:2 6354:1 6420:1 6425:1 6452:1 6458:1 6489:1 6502:2 6511:2 6517:2 6541:1 6588:1 6609:1 6675:6 6680:1 6683:3 6688:1 6694:3 6725:1 6746:1 6749:1 6752:2 6765:1 6822:1 6829:1 6837:1 6845:3 6867:2 6868:1 6880:1 6903:1 6945:1 6956:2 7008:2 7016:1 7079:1 7112:1 7129:1 7142:1 7148:4 7156:1 7160:4 7185:2 7258:1 7266:1 7268:1 7277:1 7287:1 7295:1 7297:1 7361:1 7402:1 7403:1 7414:2 7425:1 7441:1 7459:2 7474:1 7490:1 7497:1 7512:1 7513:1 7525:1 7539:1 7548:1 7571:1 7582:1 7585:1 7591:1 7595:1 7601:1 7611:1 7615:1 7622:1 7631:1 7653:1 7664:1 7678:1 7690:1 7703:4 7767:1 7769:1 7782:1 7783:1 7788:1 7794:1 7825:1 7829:1 7852:1 7898:1 7951:1 7977:1 8032:1 8055:2 8080:1 8091:1 8162:1 8190:1 8246:1 8278:1 8311:1 8334:1 8364:2 8379:1 8386:1 8398:1 8473:1 8533:1 8541:1 8545:3 8589:2 8609:1 8642:1 8644:2 8650:1 8652:1 8657:1 8663:1 8691:1 8712:3 8717:1 8718:1 8777:1 8784:2 8810:1 8820:3 8824:2 8831:1 8835:1 8836:1 8840:1 8846:1 8847:3 8849:1 8851:1 8853:3 8911:1 8918:1 8925:1 8997:1 9013:1 9027:1 9041:5 9046:1 9074:1 9082:1 9131:1 9138:1 9153:1 9158:2 9207:1 9212:1 9234:1 9241:1 9302:1 9308:1 9315:1 9318:1 9333:1 9337:1 9387:1 9410:1 9425:3 9441:1 9478:1 9503:1 9509:4 9518:1 9538:1 9544:1 9555:1 9558:1 9575:1 9582:1 9585:1 9592:3 9607:1 9628:1 9634:3 9658:1 9669:1 9674:1 9678:1 9696:3 9723:1 9732:1 9754:1 9755:1 9781:1 9782:1 9828:1 9830:1 9841:1 9846:1 9888:1 9916:1 9918:2 9925:1 9930:1 9960:1 9967:1 9995:2 9999:1 10029:1 10042:1 10093:2 10163:1 10168:1 10209:1 10220:1 10223:1 10224:2 10236:1 10266:1 10269:1 10275:1 10294:1 10323:1 10341:1 10382:1 10387:1 10397:1 10410:2 10453:1 10465:1 10490:1 10512:1 10517:2 10593:1 10607:1 10613:1 10648:3 10683:1 10718:1 10737:1 10743:1 10744:2 10760:1 10774:1 10783:1 10790:1 10791:1 10812:11 10814:1 10838:1 10841:1 10843:3 10855:1 10866:1 10871:2 10901:1 10940:1 10981:4 10983:1 10990:1 10998:3 11033:1 11110:1 11113:1 11125:4 11164:1 11170:1 11190:1 11228:1 11229:1 11247:1 11260:1 11300:1 11301:1 11340:1 11342:1 11347:1 11363:2 11379:1 11382:1 11401:1 11403:1 11423:2 11436:2 11485:1 11528:1 11584:2 11597:2 11618:1 11621:1 11625:1 11691:1 11709:3 11711:1 11722:1 11737:1 11747:1 11771:1 11776:1 11785:3 11786:1 11788:1 11799:2 11849:1 11888:1 11898:1 11913:1 11921:1 11943:1 11949:1 11990:1 12004:2 12011:1 12014:1 12021:1 12024:1 12025:1 12032:1 12035:2 12038:1 12042:1 12063:1 12077:1 12094:1 12095:1 12118:1 12128:1 12129:1 12133:1 12196:4 12211:1 12213:1 12257:1 12262:1 12323:1 12366:1 12379:1 12382:1 12401:2 12418:6 12435:1 12457:1 12466:1 12467:4 12477:1 12481:1 12486:1 12495:1 12502:1 12503:1 12506:1 12511:1 12512:2 12548:1 12554:1 12557:2 12572:1 12594:1 12614:1 12630:1 12652:3 12664:2 12716:1 12739:1 12757:1 12762:2 12779:1 12781:1 12839:1 12856:1 12857:1 12861:1 12879:2 12913:1 12929:1 12932:1 12950:1 12962:1 12974:4 12981:1 12984:1 12991:1 13012:1 13021:1 13052:1 13069:3 13090:1 13091:2 13108:1 13153:1 13159:1 13163:1 13275:1 13276:1 13278:1 13281:1 13299:2 13311:1 13328:1 13336:2 13342:1 13346:1 13348:2 13354:1 13356:1 13359:1 13388:1 13405:1 13412:4 13413:1 13423:1 13425:1 13430:2 13431:2 13434:2 13436:1 13441:2 13449:1 13451:3 13453:2 13474:2 13475:1 13498:3 13502:3 13512:2 13532:2 13534:1 13585:1 13599:1 13600:3 13606:3 13610:3 13630:1 13635:1 13640:1 13650:1 13696:1 13702:3 13703:1 13711:1 13741:1 13747:1 13756:4 13810:1 13817:1 13821:1 13823:1 13824:2 13845:1 13863:1 13886:1 13889:1 13892:1 13898:1 13902:1 13908:2 13937:3 13944:1 13955:1 13974:3 13992:1 14088:1 14096:2 14100:2 14133:2 14148:1 14181:4 14257:1 14262:1 14271:1 14286:1 14293:4 14296:1 14299:1 14339:1 14383:1 14420:1 14436:1 14452:3 14474:1 14515:1 14519:2 14525:4 14527:1 14555:1 14559:1 14581:1 14583:1 14590:4 14592:1 14594:3 14608:2 14609:1 14610:1 14663:1 14672:1 14681:2 14694:1 14708:1 14718:1 14757:1 14770:2 14798:1 14814:1 14826:2 14828:1 14829:1 14854:1 14873:1 14884:2 14900:1 14909:1 14920:1 14935:1 14965:1 14979:1 14980:2 15004:1 15005:2 15019:1 15030:1 15085:2 15089:3 15113:1 15117:1 15134:1 15195:1 15206:1 15235:1 15243:1 15290:2 15396:1 15421:1 15445:1 15480:1 15486:1 15497:1 15546:2 15547:1 15568:3 15576:1 15585:1 15613:2 15618:2 15628:1 15633:1 15637:2 15666:4 15693:1 15696:2 15698:1 15712:2 15713:1 15728:1 15731:1 15745:1 15747:2 15752:3 15771:1 15773:1 15799:1 15829:1 15836:1 15854:1 15863:1 15864:1 15937:1 15959:1 15966:1 15978:9 15990:2 16006:2 16008:1 16016:2 16017:1 16022:1 16072:1 16077:1 16106:1 16122:1 16160:1 16175:1 16179:1 16183:2 16206:1 16217:1 16221:5 16264:1 16288:1 16338:1 16345:1 16346:1 16356:1 16380:1 16388:1 16389:1 16418:1 16434:3 16482:1 16515:3 16532:1 16540:1 16582:3 16584:1 16594:2 16655:1 16666:2 16675:1 16679:1 16691:1 16694:1 16716:1 16732:1 16740:1 16760:1 16812:1 16822:4 16883:1 16894:1 16902:1 16918:1 16932:1 16937:1 16942:1 16945:1 16946:1 16964:1 16967:1 17010:1 17014:1 17019:1 17040:1 17059:1 17072:3 17106:3 17140:1 17161:1 17192:1 17202:1 17207:1 17213:1 17239:1 17251:2 17270:1 17306:4 17324:3 17342:1 17353:1 17362:1 17370:1 17389:1 17394:1 17408:10 17436:4 17474:2 17475:1 17486:1 17493:1 17495:1 17504:1 17507:1 17510:1 17519:1 17524:1 17544:1 17552:1 17572:1 17583:1 17615:2 17672:1 17680:1 17684:1 17687:1 17696:1 17723:1 17753:1 17787:1 17802:1 17820:1 17891:2 17894:1 17912:2 17990:1 18009:1 18017:2 18058:1 18068:2 18075:1 18098:1 18100:2 18108:1 18132:1 18143:1 18144:1 18176:2 18193:1 18221:1 18230:1 18233:1 18246:1 18253:1 18266:1 18269:1 18319:1 18326:1 18343:1 18344:1 18355:1 18380:1 18387:1 18389:3 18392:12 18393:1 18398:1 18412:1 18419:1 18442:3 18473:1 18498:1 18509:1 18516:1 18557:2 18589:1 18613:1 18636:2 18643:4 18657:1 18690:1 18693:1 18713:3 18751:1 18753:3 18766:1 18767:1 18788:1 18799:1 18801:2 18811:2 18819:1 18834:1 18852:1 18860:1 18874:1 18877:1 18899:1 18914:1 18934:1 18945:1 18953:1 18956:1 18966:1 19001:2 19005:1 19007:1 19020:3 19021:1 19031:1 19050:1 19098:1 19130:2 19132:1 19165:1 19171:1 19174:1 19177:3 19278:2 19280:1 19311:1 19312:1 19358:2 19365:1 19398:1 19458:2 19465:2 19470:1 19526:1 19528:1 19600:2 19615:1 19618:1 19619:1 19627:1 19659:2 19661:1 19673:1 19674:2 19687:1 19692:1 19718:1 19762:1 19818:1 19823:1 19824:3 19856:1 19869:1 19878:1 19888:1 19918:1 19919:1 19996:1 20003:1 20033:1 20052:1 20060:2 20082:1 20126:1 20158:1 20177:1 20178:1 20215:2 20247:1 20255:1 20263:1 20270:1 20271:1 20276:1 20342:1 20350:1
14 8:1 73:1 88:3 115:1 118:1 131:1 133:1 140:3 148:1 162:1 272:1 274:1 277:2 284:1 344:1 364:2 366:4 376:2 400:1 406:1 417:1 440:1 448:1 467:2 470:1 475:1 493:1 502:1 528:1 547:1 569:1 576:1 584:1 611:1 633:1 667:1 697:1 700:1 703:4 717:1 730:1 791:1 800:3 801:3 802:1 805:3 868:1 884:1 919:1 932:1 936:1 939:1 950:1 984:1 1015:1 1018:1 1028:1 1031:1 1081:1 1082:1 1116:1 1142:1 1146:1 1186:1 1237:1 1241:2 1256:2 1273:1 1310:1 1330:1 1331:4 1334:2 1382:1 1419:1 1432:1 1442:1 1467:2 1468:3 1487:1 1499:1 1536:1 1545:1 1571:1 1578:1 1585:1 1596:1 1601:1 1609:1 1637:1 1640:1 1647:1 1658:1 1721:1 1777:1 1796:1 1797:1 1818:1 1830:1 1839:1 1843:2 1845:1 1846:1 1854:1 1858:1 1867:1 1875:2 1934:1 1942:1 1945:3 1969:1 2004:2 2016:1 2084:1 2100:4 2117:1 2149:2 2157:2 2186:1 2189:1 2201:1 2230:1 2251:2 2253:3 2280:1 2282:1 2315:1 2327:2 2355:1 2358:2 2369:1 2379:1 2385:1 2407:1 2423:1 2455:1 2456:1 2504:2 2509:1 2524:3 2533:3 2536:1 2563:4 2572:1 2598:4 2600:3 2632:1 2642:1 2656:1 2658:3 2665:1 2666:1 2737:1 2747:1 2761:1 2782:1 2788:1 2789:1 2816:1 2817:2 2822:1 2824:1 2831:2 2851:1 2887:1 2903:1 2905:2 2917:1 2923:3 2930:1 2933:1 2937:1 2971:1 2992:1 3028:2 3043:1 3044:1 3046:2 3047:1 3048:1 3053:1 3068:1 3069:1 3071:1 3082:2 3083:1 3093:1 3094:1 3110:1 3116:2 3123:2 3125:1 3142:2 3146:1 3149:2 3156:1 3212:1 3215:1 3231:1 3250:1 3281:4 3294:1 3295:1 3306:1 3327:1 3358:1 3390:1 3420:1 3446:1 3456:1 3458:1 3474:1 3489:1 3493:1 3501:1 3507:1 3510:2 3512:1 3518:1 3558:1 3560:1 3568:2 3581:1 3588:1 3599:1 3631:2 3633:1 3638:1 3642:1 3692:1 3706:3 3707:1 3726:5 3751:1 3753:1 3763:1 3766:1 3777:2 3788:1 3811:2 3830:1 3836:1 3873:1 3879:1 3886:1 3905:1 3919:1 3920:2 3948:1 3966:1 3972:1 3975:1 3991:1 3998:1 3999:1 4013:1 4019:1 4026:1 4033:2 4037:1 4054:1 4059:1 4067:1 4071:14 4072:1 4091:2 4098:1 4114:1 4128:1 4131:5 4140:1 4145:2 4152:3 4162:1 4168:1 4194:1 4195:1 4210:2 4211:1 4213:1 4225:2 4249:1 4251:1 4253:1 4257:1 4270:1 4294:2 4301:1 4305:2 4307:1 4324:1 4331:1 4348:2 4349:1 4378:1 4427:1 4436:1 4441:1 4471:1 4486:1 4502:1 4510:1 4556:1 4568:1 4622:1 4641:1 4658:1 4667:1 4676:1 4683:1 4686:3 4692:5 4699:1 4708:1 4733:1 4762:2 4766:1 4771:1 4772:1 4778:1 4794:1 4795:3 4831:1 4834:1 4837:1 4851:4 4900:1 4910:1 4940:1 4959:1 4960:1 4989:1 5001:1 5006:2 5016:1 5023:1 5025:1 5040:1 5052:1 5058:3 5067:9 5131:1 5132:1 5135:1 5153:1 5157:1 5185:1 5193:1 5200:1 5203:1 5228:1 5231:1 5241:1 5247:1 5256:1 5266:1 5271:2 5313:1 5362:1 5365:2 5366:2 5375:1 5394:2 5406:1 5408:1 5413:1 5437:622 5456:1 5458:1 5460:2 5468:1 5509:2 5518:1 5530:1 5583:1 5604:1 5625:1 5637:1 5644:1 5661:1 5672:1 5691:1 5697:2 5714:1 5751:1 5756:2 5762:1 5763:1 5765:2 5767:1 5771:3 5775:1 5778:1 5780:1 5785:1 5813:1 5856:1 5867:1 5886:1 5904:1 5911:2 5912:1 5932:6 5984:5 5996:1 6092:1 6110:1 6133:1 6174:1 6311:1 6316:1 6317:1 6321:1 6325:1 6339:3 6352:2 6354:1 6420:1 6425:2 6452:1 6458:1 6489:1 6502:2 6508:1 6511:2 6517:2 6541:1 6588:1 6609:1 6675:6 6680:1 6683:4 6688:1 6694:3 6725:1 6746:1 6749:1 6752:2 6765:1 6822:1 6829:1 6837:1 6845:3 6867:2 6868:1 6880:1 6902:1 6903:1 6931:1 6945:1 6956:2 7008:2 7016:1 7079:1 7112:1 7129:1 7142:1 7148:4 7156:1 7160:4 7185:2 7258:1 7266:1 7268:1 7277:1 7287:1 7295:2 7297:1 7361:1 7400:1 7402:1 7403:1 7414:2 7425:1 7441:1 7459:2 7474:1 7490:1 7497:1 7512:1 7513:1 7525:1 7526:3 7539:1 7548:1 7571:1 7582:1 7585:1 7591:1 7595:1 7601:1 7611:1 7615:1 7622:1 7631:1 7653:1 7664:1 7678:1 7690:1 7703:4 7767:1 7769:1 7782:1 7783:1 7788:1 7794:1 7825:1 7829:1 7852:1 7898:1 7951:1 7977:1 8032:1 8055:2 8080:1 8091:1 8162:1 8190:1 8246:1 8278:1 8290:1 8311:1 8334:1 8364:2 8379:1 8386:1 8398:1 8473:1 8533:1 8541:1 8545:3 8589:2 8590:1 8609:1 8642:1 8643:1 8644:2 8650:1 8652:1 8657:1 8663:1 8670:1 8691:1 8712:4 8717:1 8718:1 8736:1 8777:1 8784:2 8810:2 8820:3 8824:2 8825:1 8831:1 8835:1 8836:1 8840:1 8846:1 8847:4 8849:1 8851:1 8853:3 8911:1 8918:1 8925:1 8997:1 9013:1 9027:1 9041:5 9046:1 9061:1 9074:1 9082:1 9091:1 9131:1 9138:1 9153:1 9158:2 9207:1 9212:1 9213:1 9214:1 9216:1 9234:1 9241:1 9302:1 9308:1 9315:1 9318:1 9333:1 9337:1 9344:1 9347:1 9355:1 9387:1 9402:2 9410:1 9425:4 9441:1 9478:1 9503:1 9509:4 9518:1 9538:1 9544:1 9555:1 9558:1 9563:1 9575:1 9582:1 9585:1 9592:3 9607:1 9628:1 9634:3 9658:1 9669:1 9674:1 9678:1 9696:3 9715:1 9723:1 9732:1 9754:1 9755:1 9762:2 9780:1 9781:1 9782:1 9828:1 9830:1 9841:1 9846:1 9888:1 9916:1 9918:2 9925:1 9930:1 9960:1 9967:1 9995:3 9999:1 10029:1 10042:1 10093:2 10163:1 10168:1 10209:1 10220:1 10223:1 10224:2 10233:1 10236:1 10266:1 10269:1 10275:1 10294:1 10323:1 10341:1 10376:1 10382:1 10387:1 10397:1 10410:2 10453:1 10465:1 10490:1 10512:1 10517:2 10593:1 10607:1 10611:1 10613:1 10615:1 10625:1 10648:3 10683:1 10718:1 10736:1 10737:1 10743:1 10744:5 10751:1 10760:1 10774:1 10783:1 10789:1 10790:1 10791:1 10812:11 10814:1 10838:1 10841:1 10843:3 10855:1 10866:1 10871:2 10901:1 10940:1 10981:4 10983:1 10990:1 10998:3 11002:1 11033:1 11034:1 11037:1 11110:1 11113:1 11125:4 11164:1 11170:1 11190:1 11228:1 11229:1 11247:2 11260:1 11300:1 11301:1 11340:1 11342:1 11347:1 11363:2 11379:1 11382:1 11401:1 11403:1 11423:3 11436:2 11485:1 11528:1 11584:2 11594:1 11597:2 11618:1 11620:1 11621:1 11625:1 11651:1 11691:1 11709:3 11711:1 11722:1 11737:1 11747:1 11771:1 11776:1 11785:3 11786:2 11788:1 11799:2 11849:1 11888:1 11898:1 11913:1 11921:1 11943:1 11949:1 11990:2 12004:2 12011:1 12014:1 12021:1 12024:3 12025:1 12032:1 12035:2 12038:1 12042:1 12063:1 12077:1 12094:1 12095:1 12118:1 12128:1 12129:1 12133:1 12137:2 12183:1 12196:4 12211:1 12213:1 12257:1 12262:1 12323:1 12366:1 12379:1 12382:1 12401:2 12418:7 12435:1 12444:1 12457:1 12466:1 12467:4 12477:1 12481:1 12486:1 12495:1 12501:3 12502:1 12503:1 12506:1 12511:1 12512:2 12548:1 12554:1 12557:3 12572:1 12594:1 12614:1 12630:1 12652:3 12664:2 12716:1 12739:1 12757:1 12762:2 12779:1 12781:1 12839:1 12856:1 12857:1 12861:1 12879:2 12913:1 12929:1 12932:1 12950:1 12962:1 12974:4 12981:1 12984:1 12991:1 13012:1 13021:1 13052:1 13069:3 13090:2 13091:2 13108:1 13153:1 13159:1 13163:1 13228:1 13275:1 13276:1 13278:1 13281:1 13299:2 13311:1 13328:1 13336:2 13342:1 13346:1 13348:2 13354:1 13356:1 13359:1 13388:1 13405:1 13412:5 13413:1 13423:1 13425:1 13430:2 13431:2 13434:2 13436:1 13441:2 13449:1 13451:3 13453:2 13474:2 13475:1 13498:3 13502:3 13512:2 13532:2 13534:1 13585:1 13599:1 13600:3 13606:3 13610:4 13630:1 13635:1 13640:1 13650:1 13680:1 13696:1 13702:3 13703:1 13711:1 13741:1 13747:1 13756:5 13810:2 13817:1 13821:1 13823:1 13824:2 13845:1 13863:1 13886:1 13889:1 13892:1 13898:1 13902:1 13908:2 13937:3 13944:1 13955:1 13974:3 13992:1 14002:1 14088:1 14096:2 14100:2 14133:2 14148:1 14181:4 14257:1 14262:1 14271:1 14286:1 14293:4 14296:1 14299:1 14339:1 14381:1 14383:1 14402:1 14420:1 14436:1 14452:3 14474:2 14515:1 14519:2 14525:4 14527:1 14555:1 14559:1 14581:1 14583:1 14590:4 14592:1 14594:4 14608:2 14609:1 14610:1 14663:1 14672:1 14681:2 14694:1 14708:1 14718:1 14757:1 14770:2 14798:1 14814:1 14826:4 14828:1 14829:1 14854:1 14873:1 14884:2 14900:1 14903:1 14909:1 14920:1 14935:1 14965:1 14979:1 14980:2 15004:1 15005:2 15019:1 15030:1 15040:1 15068:1 15085:2 15089:3 15113:1 15117:2 15134:1 15188:1 15195:1 15206:1 15235:1 15243:1 15290:2 15396:1 15421:1 15445:1 15480:1 15486:1 15497:1 15546:2 15547:1 15568:3 15576:1 15585:1 15613:2 15618:2 15628:1 15633:1 15637:2 15666:4 15693:1 15696:3 15698:2 15712:2 15713:1 15728:1 15731:1 15745:1 15747:2 15752:3 15756:1 15771:1 15772:1 15773:1 15799:1 15829:1 15836:1 15854:1 15863:1 15864:1 15937:1 15959:1 15966:1 15978:9 15990:2 16006:2 16008:1 16016:2 16017:1 16022:1 16072:1 16077:1 16106:1 16122:1 16160:1 16175:1 16179:1 16183:2 16206:1 16217:1 16221:5 16264:1 16288:1 16338:1 16345:1 16346:1 16356:1 16380:1 16388:1 16389:1 16418:1 16434:3 16482:1 16515:3 16532:1 16540:1 16582:4 16584:1 16594:2 16595:1 16597:1 16655:1 16666:2 16675:1 16679:1 16691:1 16694:1 16716:1 16717:1 16732:1 16740:1 16760:1 16806:1 16812:1 16822:4 16883:1 16894:1 16902:1 16918:1 16932:1 16937:1 16942:1 16945:1 16946:1 16964:1 16967:2 17010:1 17014:1 17019:1 17040:1 17059:1 17067:1 17072:3 17104:1 17106:3 17125:1 17140:1 17161:1 17192:1 17202:1 17207:1 17213:1 17239:1 17251:2 17252:1 17270:1 17306:4 17324:3 17342:1 17353:1 17362:1 17370:1 17389:1 17394:1 17408:12 17436:4 17444:1 17474:2 17475:1 17486:1 17493:1 17495:1 17504:1 17507:1 17510:1 17519:1 17524:1 17544:1 17552:1 17572:1 17583:1 17590:1 17615:2 17672:1 17680:1 17684:1 17687:1 17696:1 17723:1 17753:1 17787:1 17802:1 17820:1 17878:1 17891:2 17894:1 17912:2 17968:1 17990:1 18009:1 18017:2 18022:1 18058:1 18068:5 18075:1 18098:1 18100:2 18108:1 18132:1 18143:1 18144:1 18176:2 18193:1 18198:1 18221:1 18230:1 18233:1 18246:1 18249:3 18253:1 18266:1 18269:1 18271:1 18319:1 18326:1 18343:1 18344:1 18355:2 18380:1 18387:1 18389:3 18392:14 18393:1 18398:1 18412:1 18419:1 18442:3 18473:1 18498:1 18509:1 18516:1 18557:2 18589:1 18613:1 18636:2 18643:4 18657:1 18690:1 18693:1 18713:3 18735:1 18751:1 18753:3 18766:1 18767:1 18788:1 18799:1 18801:2 18811:2 18819:1 18834:1 18852:1 18860:1 18874:1 18877:1 18899:1 18914:1 18934:1 18945:1 18953:1 18956:1 18960:1 18966:1 18978:1 19001:2 19005:1 19007:1 19020:3 19021:2 19031:1 19032:1 19050:1 19098:1 19130:2 19132:1 19165:1 19171:1 19174:1 19177:4 19278:2 19280:1 19311:1 19312:1 19358:2 19365:1 19398:1 19458:2 19465:2 19470:1 19526:1 19528:1 19600:2 19615:1 19618:1 19619:1 19627:1 19659:2 19661:1 19673:1 19674:2 19687:1 19692:1 19718:1 19762:1 19818:1 19823:1 19824:3 19856:1 19869:1 19878:1 19888:1 19918:1 19919:1 19996:1 20003:1 20033:1 20052:1 20060:2 20082:1 20126:2 20150:1 20158:1 20177:1 20178:1 20215:2 20247:1 20255:1 20263:1 20270:1 20271:1 20276:1 20311:1 20342:1 20350:1 20388:1
14 8:1 73:1 88:3 113:1 115:1 118:1 131:1 133:1 140:3 148:1 162:1 191:1 272:1 274:1 277:2 284:1 344:1 364:3 366:4 376:2 400:1 406:1 417:1 440:1 448:1 467:3 470:1 475:1 493:1 502:1 528:1 547:1 569:1 576:1 584:1 611:1 633:1 667:1 697:1 700:1 703:4 706:1 717:1 730:1 791:1 800:3 801:3 802:1 805:3 868:1 884:1 919:1 932:1 936:1 939:2 950:1 984:1 1015:1 1018:2 1028:1 1031:2 1046:1 1081:1 1082:1 1116:1 1142:1 1146:1 1186:1 1237:1 1241:2 1252:1 1256:2 1273:1 1310:1 1330:1 1331:4 1334:2 1382:1 1419:1 1432:1 1442:1 1467:2 1468:3 1487:1 1499:1 1510:1 1536:1 1545:1 1571:1 1578:1 1585:1 1596:1 1601:1 1609:1 1637:1 1640:1 1647:1 1658:1 1721:1 1777:1 1796:1 1797:1 1818:1 1830:1 1839:1 1843:2 1845:1 1846:1 1854:1 1858:2 1867:1 1875:2 1934:1 1942:1 1945:3 1969:1 1980:1 2004:3 2016:1 2084:1 2100:4 2117:1 2149:2 2157:2 2186:1 2189:1 2201:1 2230:1 2251:2 2253:3 2280:1 2282:2 2315:1 2327:2 2355:1 2358:3 2369:1 2379:1 2385:1 2407:1 2423:1 2455:1 2456:1 2504:4 2509:1 2524:4 2533:3 2536:1 2563:4 2572:2 2598:4 2600:3 2632:2 2642:1 2656:1 2658:3 2665:1 2666:1 2737:1 2747:1 2751:1 2761:1 2782:1 2788:1 2789:1 2816:1 2817:2 2822:1 2824:1 2831:2 2851:1 2887:1 2903:1 2905:3 2917:1 2923:3 2930:1 2933:1 2937:1 2971:1 2992:1 3028:3 3043:1 3044:1 3046:2 3047:1 3048:1 3053:1 3068:1 3069:1 3071:2 3082:2 3083:1 3093:1 3094:1 3110:1 3116:2 3123:3 3125:1 3133:1 3142:2 3146:1 3149:2 3156:1 3212:1 3215:1 3231:1 3250:1 3281:4 3294:1 3295:1 3306:1 3316:1 3327:1 3357:1 3358:2 3390:1 3400:1 3420:1 3446:1 3456:1 3458:1 3474:1 3489:1 3493:1 3501:1 3507:1 3510:2 3512:1 3518:2 3558:1 3560:1 3562:1 3568:2 3581:1 3588:2 3599:1 3631:2 3633:1 3638:1 3642:1 3692:1 3706:3 3707:1 3726:5 3751:1 3753:1 3763:1 3766:1 3777:2 3788:1 3811:2 3819:1 3830:1 3836:1 3871:1 3873:1 3879:1 3886:1 3905:1 3919:1 3920:2 3948:1 3966:1 3972:1 3975:1 3989:1 3991:1 3998:1 3999:1 4013:1 4019:2 4026:1 4033:4 4037:1 4054:1 4059:1 4067:1 4071:15 4072:1 4091:2 4098:1 4114:1 4128:1 4129:1 4131:5 4140:1 4145:2 4152:3 4160:1 4162:1 4168:1 4194:1 4195:1 4210:2 4211:1 4213:1 4225:2 4249:1 4251:1 4253:1 4257:1 4270:1 4294:2 4301:1 4305:2 4307:1 4324:1 4331:1 4348:2 4349:1 4378:1 4427:1 4436:1 4441:1 4471:1 4486:1 4502:1 4510:1 4556:1 4568:1 4622:1 4641:1 4658:1 4667:1 4676:2 4683:1 4686:3 4692:5 4699:1 4708:1 4733:1 4762:2 4766:1 4771:1 4772:1 4778:1 4794:1 4795:3 4831:1 4834:1 4837:1 4851:4 4900:1 4910:1 4940:1 4959:1 4960:1 4989:1 5001:1 5006:2 5016:1 5023:2 5025:1 5040:1 5052:1 5058:3 5067:11 5131:1 5132:1 5135:1 5153:2 5157:1 5185:1 5193:1 5200:1 5203:1 5228:1 5231:1 5241:1 5247:1 5256:1 5266:2 5271:2 5313:1 5362:1 5365:2 5366:2 5375:1 5394:2 5406:1 5408:1 5413:1 5437:678 5456:1 5458:1 5460:2 5468:1 5509:2 5518:1 5530:1 5583:1 5604:1 5625:1 5637:1 5644:1 5657:1 5661:1 5672:1 5691:2 5697:2 5714:1 5751:1 5756:2 5762:1 5763:1 5765:2 5767:1 5771:3 5775:1 5778:1 5780:1 5785:1 5813:1 5856:1 5867:1 5874:1 5886:1 5904:1 5911:2 5912:1 5932:6 5984:6 5996:1 6092:1 6110:1 6133:1 6174:1 6311:1 6316:1 6317:1 6321:1 6325:1 6339:3 6352:2 6354:1 6420:2 6425:2 6452:1 6458:1 6489:1 6502:3 6508:1 6511:3 6517:2 6541:1 6588:1 6609:1 6615:1 6675:7 6680:1 6683:4 6688:1 6694:4 6725:1 6746:1 6749:1 6752:3 6765:1 6822:1 6829:1 6837:1 6845:3 6866:1 6867:2 6868:1 6880:1 6902:1 6903:1 6931:1 6945:1 6956:2 7008:2 7016:1 7079:1 7112:1 7129:1 7142:1 7148:4 7156:1 7160:4 7185:2 7258:1 7266:1 7268:1 7277:1 7287:1 7295:2 7297:1 7361:1 7400:1 7402:1 7403:1 7414:2 7425:1 7441:1 7459:3 7474:1 7490:1 7497:1 7512:1 7513:1 7525:1 7526:3 7539:1 7548:1 7571:1 7582:2 7585:1 7591:1 7595:1 7601:1 7611:1 7615:1 7622:1 7623:1 7631:1 7653:1 7664:1 7678:1 7690:1 7703:4 7767:1 7769:2 7770:1 7782:1 7783:1 7788:1 7794:1 7825:1 7829:1 7852:1 7898:1 7951:1 7977:1 8032:1 8055:2 8080:1 8091:1 8162:1 8190:1 8246:2 8278:1 8290:1 8311:1 8334:1 8364:2 8379:1 8386:1 8398:1 8473:1 8479:1 8533:1 8541:1 8545:3 8589:2 8590:1 8609:1 8642:1 8643:1 8644:2 8650:1 8652:1 8657:1 8663:1 8670:1 8691:1 8712:4 8717:1 8718:1 8736:1 8745:2 8777:1 8784:2 8794:1 8810:2 8820:3 8824:2 8825:1 8831:1 8835:1 8836:1 8840:1 8846:1 8847:4 8849:1 8851:1 8853:3 8911:1 8918:1 8925:1 8997:1 9013:1 9027:1 9041:5 9046:1 9058:1 9061:1 9074:2 9082:1 9091:1 9131:1 9138:1 9153:1 9158:3 9207:1 9212:1 9213:1 9214:1 9216:1 9234:1 9241:1 9302:1 9308:1 9315:1 9318:1 9333:1 9337:1 9344:1 9347:1 9355:1 9387:1 9402:2 9410:1 9425:4 9441:1 9478:1 9503:1 9509:4 9518:1 9521:1 9538:1 9544:1 9555:1 9558:2 9563:1 9575:1 9582:1 9585:1 9592:3 9607:1 9628:1 9634:3 9658:2 9669:1 9674:1 9678:1 9696:3 9715:1 9723:2 9732:1 9754:1 9755:1 9762:2 9780:1 9781:1 9782:1 9828:1 9830:2 9841:1 9846:1 9888:1 9916:2 9918:2 9925:1 9930:1 9946:1 9960:1 9967:1 9995:3 9999:1 10029:1 10042:1 10093:2 10163:1 10168:1 10209:1 10220:1 10223:1 10224:2 10233:1 10236:1 10266:1 10269:1 10275:1 10294:1 10323:1 10341:1 10376:1 10382:1 10387:1 10397:1 10410:2 10453:1 10465:1 10490:1 10512:1 10517:2 10593:1 10607:1 10611:1 10613:1 10615:1 10625:1 10648:3 10683:1 10718:1 10736:1 10737:1 10743:1 10744:5 10751:1 10760:1 10774:1 10783:1 10789:1 10790:1 10791:1 10812:13 10814:1 10838:1 10841:1 10843:3 10855:1 10866:1 10871:2 10901:1 10940:1 10981:4 10983:1 10990:1 10998:3 11002:1 11033:1 11034:1 11037:1 11110:1 11113:1 11125:4 11164:1 11170:1 11190:1 11228:1 11229:1 11247:2 11260:1 11300:1 11301:1 11340:1 11342:1 11347:1 11363:2 11379:1 11382:2 11401:2 11403:1 11423:4 11436:2 11485:1 11528:1 11584:3 11594:1 11597:2 11618:1 11620:1 11621:1 11625:1 11651:1 11691:2 11709:4 11711:1 11722:1 11727:1 11728:1 11737:1 11747:1 11771:1 11776:1 11785:3 11786:2 11788:1 11799:2 11849:1 11888:2 11898:1 11913:1 11921:1 11943:1 11949:1 11990:2 12004:3 12011:1 12014:1 12021:1 12024:3 12025:1 12032:1 12035:2 12038:1 12042:1 12063:1 12077:1 12094:1 12095:1 12118:1 12128:1 12129:1 12133:1 12137:2 12183:1 12196:5 12205:1 12211:1 12213:1 12257:1 12262:1 12323:1 12366:1 12379:1 12382:1 12401:2 12418:7 12435:1 12444:1 12457:1 12466:1 12467:5 12477:1 12481:1 12486:1 12495:2 12501:3 12502:1 12503:2 12505:1 12506:1 12511:1 12512:2 12548:1 12554:1 12557:3 12572:1 12594:1 12614:1 12630:1 12652:3 12664:4 12716:1 12733:1 12739:1 12757:1 12762:2 12779:1 12781:1 12839:1 12856:1 12857:1 12861:1 12879:2 12913:1 12929:1 12932:1 12950:1 12962:1 12974:5 12981:1 12984:1 12991:1 13012:1 13021:1 13052:1 13069:3 13090:2 13091:2 13108:1 13153:1 13159:1 13163:1 13195:1 13228:1 13275:1 13276:1 13278:1 13281:1 13299:2 13311:1 13328:1 13336:2 13342:1 13346:1 13348:2 13354:1 13356:1 13359:1 13388:1 13405:1 13412:5 13413:1 13423:1 13425:1 13430:2 13431:2 13434:2 13436:1 13441:2 13449:1 13451:3 13453:4 13474:2 13475:2 13498:3 13502:3 13512:3 13532:3 13534:1 13555:1 13585:1 13599:1 13600:3 13606:3 13610:4 13630:1 13635:1 13636:1 13640:1 13650:1 13680:1 13696:1 13702:3 13703:1 13711:1 13741:1 13747:2 13756:5 13810:2 13817:1 13821:1 13823:1 13824:3 13845:1 13863:1 13886:1 13889:1 13892:1 13898:1 13902:1 13908:3 13937:3 13944:1 13955:1 13974:3 13992:1 14002:1 14088:1 14096:2 14100:4 14133:3 14148:2 14181:4 14257:1 14262:1 14271:1 14286:1 14293:4 14296:1 14299:1 14339:1 14381:1 14383:1 14402:1 14420:1 14422:1 14436:2 14452:3 14474:2 14515:2 14519:3 14525:5 14527:1 14555:1 14559:1 14581:1 14583:1 14590:4 14592:1 14594:4 14608:2 14609:1 14610:1 14663:1 14672:1 14681:3 14694:1 14708:1 14718:1 14757:1 14770:2 14798:1 14814:1 14826:4 14828:1 14829:1 14845:1 14854:1 14873:1 14884:4 14900:1 14903:1 14909:2 14920:1 14935:1 14965:1 14979:1 14980:2 15004:1 15005:2 15019:1 15030:1 15040:1 15068:1 15085:3 15089:3 15113:1 15117:2 15134:1 15188:1 15195:1 15206:1 15235:1 15243:1 15290:4 15396:1 15421:1 15445:1 15480:1 15486:1 15497:1 15546:2 15547:1 15568:3 15576:2 15585:1 15613:2 15618:2 15628:1 15633:1 15637:2 15666:5 15693:1 15696:3 15698:2 15712:2 15713:1 15728:1 15731:1 15745:1 15747:2 15752:3 15756:1 15771:1 15772:1 15773:1 15799:1 15829:1 15836:1 15854:1 15863:1 15864:1 15937:1 15959:1 15966:1 15976:1 15978:11 15990:2 16006:3 16008:1 16016:3 16017:1 16022:1 16072:1 16077:1 16106:1 16110:1 16122:1 16160:1 16175:1 16179:1 16183:2 16206:1 16217:1 16221:5 16264:1 16288:1 16338:1 16345:1 16346:1 16356:1 16380:1 16388:1 16389:1 16418:1 16434:3 16482:1 16515:3 16532:1 16540:1 16582:4 16584:1 16594:2 16595:2 16597:2 16616:1 16655:1 16666:2 16675:1 16679:1 16691:1 16694:1 16716:1 16717:1 16732:1 16740:1 16760:1 16806:1 16812:1 16822:4 16883:1 16894:1 16902:1 16918:1 16932:1 16937:1 16942:1 16945:1 16946:1 16964:1 16967:2 17010:1 17014:1 17019:1 17040:1 17059:1 17067:1 17072:3 17104:1 17106:3 17125:1 17128:1 17140:1 17161:1 17192:1 17202:1 17207:1 17213:1 17239:1 17251:3 17252:1 17270:1 17306:4 17324:3 17342:1 17353:1 17362:1 17370:1 17388:1 17389:1 17394:1 17408:13 17436:4 17444:2 17474:2 17475:1 17486:1 17493:1 17495:1 17504:1 17507:1 17510:1 17519:1 17524:1 17544:1 17552:1 17572:1 17583:2 17590:1 17615:2 17672:1 17680:1 17684:1 17687:1 17696:1 17723:1 17753:1 17787:1 17802:1 17817:1 17820:1 17846:1 17878:1 17891:4 17894:1 17912:3 17968:1 17990:1 18009:1 18017:2 18022:1 18058:1 18068:5 18075:1 18098:1 18100:2 18108:1 18132:1 18143:1 18144:1 18176:2 18193:1 18198:1 18221:1 18230:1 18233:1 18246:1 18249:3 18253:1 18266:1 18269:1 18271:1 18319:1 18326:1 18343:1 18344:2 18355:2 18380:1 18387:1 18389:3 18392:14 18393:1 18398:1 18412:1 18419:1 18442:3 18473:1 18498:1 18509:1 18516:1 18557:2 18589:1 18613:1 18636:2 18643:5 18657:1 18690:1 18693:1 18713:3 18735:1 18751:1 18753:3 18766:1 18767:1 18788:1 18799:1 18801:2 18811:2 18819:2 18834:1 18852:1 18860:1 18874:1 18877:1 18899:1 18914:1 18934:1 18945:1 18953:1 18956:1 18960:1 18966:1 18978:1 19001:3 19005:1 19007:1 19020:3 19021:2 19031:1 19032:1 19050:1 19057:1 19098:1 19130:3 19132:1 19165:1 19171:1 19174:1 19177:4 19278:2 19280:1 19311:1 19312:1 19358:2 19365:1 19369:1 19398:1 19458:2 19465:2 19470:2 19526:1 19528:1 19600:2 19615:1 19618:1 19619:1 19627:1 19659:2 19661:1 19673:1 19674:3 19687:1 19692:1 19718:1 19762:1 19818:1 19823:1 19824:3 19856:1 19869:1 19878:1 19888:1 19918:1 19919:1 19996:1 20003:1 20033:1 20052:1 20060:3 20082:1 20097:1 20126:2 20150:1 20158:1 20177:2 20178:1 20215:2 20247:1 20255:1 20263:1 20270:1 20271:1 20276:1 20311:1 20342:1 20350:1 20388:2
14 8:1 73:1 88:3 113:1 115:2 118:1 131:1 133:1 140:3 148:1 162:1 191:1 272:1 274:1 277:2 284:1 344:1 364:3 366:5 376:2 400:1 406:1 417:1 423:1 440:1 441:1 448:1 467:3 470:1 475:1 493:1 502:1 528:1 547:1 548:1 559:1 569:1 576:1 584:1 611:1 633:1 667:1 697:1 700:1 703:4 706:1 717:1 730:1 791:1 800:3 801:3 802:1 805:3 868:1 884:1 919:1 932:1 936:1 939:2 950:1 984:1 1015:1 1018:2 1028:1 1031:2 1046:1 1081:1 1082:1 1116:1 1142:1 1146:1 1186:1 1237:1 1241:2 1252:1 1256:2 1273:1 1310:1 1330:1 1331:5 1334:2 1382:1 1419:2 1428:1 1432:1 1442:2 1445:1 1467:2 1468:3 1487:1 1499:1 1510:1 1525:1 1535:1 1536:1 1545:1 1571:1 1578:1 1585:1 1596:1 1601:1 1609:1 1637:1 1640:1 1647:2 1658:1 1721:1 1777:1 1796:1 1797:2 1818:1 1830:1 1834:1 1839:2 1843:2 1845:1 1846:1 1854:1 1858:2 1860:1 1867:1 1875:2 1921:1 1934:1 1942:1 1943:1 1945:3 1969:1 1980:1 2004:3 2016:1 2084:1 2100:4 2117:1 2149:2 2157:3 2186:1 2189:1 2201:1 2203:1 2205:1 2230:1 2235:1 2251:2 2253:3 2280:2 2282:2 2315:1 2327:2 2355:1 2358:3 2369:1 2379:1 2385:1 2407:1 2423:1 2455:2 2456:1 2504:5 2509:1 2524:4 2533:3 2536:1 2563:5 2572:2 2598:4 2600:3 2632:3 2642:1 2656:1 2658:3 2665:1 2666:1 2701:1 2737:1 2747:1 2751:1 2761:1 2782:2 2788:1 2789:1 2816:1 2817:2 2822:1 2824:1 2831:2 2851:1 2887:1 2903:1 2905:3 2917:1 2923:3 2930:1 2933:1 2937:1 2971:1 2992:1 2998:1 3028:3 3043:1 3044:1 3046:2 3047:1 3048:1 3053:1 3068:1 3069:2 3071:2 3082:2 3083:1 3093:1 3094:1 3110:1 3116:3 3123:4 3125:1 3133:1 3142:2 3146:1 3149:2 3156:1 3210:1 3212:1 3215:1 3231:1 3250:1 3281:4 3294:1 3295:1 3306:1 3316:1 3327:1 3357:2 3358:2 3390:1 3400:1 3420:1 3446:1 3456:2 3458:1 3474:1 3489:1 3493:1 3501:1 3507:1 3510:2 3512:1 3518:2 3558:1 3560:1 3562:1 3568:2 3581:1 3588:2 3599:1 3609:1 3631:2 3633:1 3638:1 3642:1 3655:1 3692:1 3706:3 3707:2 3726:6 3751:1 3753:1 3763:1 3766:1 3777:2 3788:1 3811:2 3819:1 3830:1 3836:1 3871:1 3873:1 3879:1 3886:2 3905:2 3919:1 3920:2 3927:1 3948:1 3966:1 3972:1 3975:1 3989:1 3991:1 3994:1 3998:1 3999:1 4002:1 4013:1 4019:2 4026:1 4033:5 4037:1 4054:1 4059:1 4067:1 4071:17 4072:1 4091:2 4096:1 4098:1 4114:1 4128:1 4129:1 4131:6 4140:1 4145:3 4152:3 4160:1 4162:1 4168:1 4194:1 4195:1 4197:1 4210:3 4211:1 4213:1 4225:2 4249:1 4251:1 4253:1 4257:1 4270:1 4294:2 4301:1 4305:2 4307:1 4324:1 4331:1 4348:3 4349:1 4378:1 4427:1 4436:1 4441:1 4471:1 4486:1 4502:1 4510:1 4556:1 4568:1 4622:1 4641:1 4658:2 4667:1 4676:2 4683:1 4686:3 4692:6 4699:1 4708:1 4733:1 4762:2 4766:1 4771:2 4772:1 4778:1 4794:1 4795:3 4827:1 4831:1 4834:1 4837:1 4851:5 4900:1 4910:1 4940:1 4959:1 4960:1 4989:1 5001:1 5006:2 5016:1 5023:2 5025:1 5040:1 5052:1 5058:3 5067:13 5083:1 5131:1 5132:1 5135:1 5153:2 5157:1 5185:1 5193:1 5200:1 5203:2 5228:1 5231:1 5236:1 5241:2 5247:1 5256:1 5266:2 5271:3 5288:1 5313:1 5362:1 5365:2 5366:2 5375:1 5387:1 5394:2 5406:1 5408:1 5413:1 5433:1 5437:742 5456:1 5458:1 5460:2 5468:1 5509:2 5518:1 5530:1 5583:1 5604:1 5625:1 5637:1 5644:1 5657:1 5661:1 5672:1 5691:2 5697:2 5714:1 5751:1 5756:2 5762:1 5763:1 5765:3 5767:1 5771:3 5775:1 5778:1 5780:2 5785:1 5813:1 5856:1 5867:1 5874:1 5879:1 5886:1 5893:2 5904:1 5911:2 5912:1 5932:7 5962:1 5984:6 5996:1 5997:1 6055:1 6092:1 6110:1 6111:1 6133:1 6174:1 6311:1 6316:2 6317:1 6321:1 6325:1 6339:3 6352:2 6354:1 6420:2 6425:3 6452:1 6458:1 6489:1 6502:3 6508:1 6511:3 6517:2 6541:2 6586:1 6588:1 6609:1 6615:1 6675:9 6680:1 6683:4 6688:1 6694:4 6725:1 6746:1 6749:1 6752:3 6765:1 6822:1 6829:1 6837:1 6845:3 6866:1 6867:2 6868:1 6880:1 6902:1 6903:1 6905:1 6931:2 6945:2 6956:2 7008:2 7013:1 7016:1 7079:1 7112:1 7113:1 7129:1 7142:1 7148:4 7156:1 7160:4 7185:2 7258:1 7266:1 7268:1 7277:1 7287:1 7295:2 7297:1 7361:1 7400:1 7402:1 7403:1 7414:2 7425:1 7441:1 7459:3 7474:2 7490:1 7497:1 7512:1 7513:1 7525:1 7526:4 7539:1 7548:1 7571:1 7582:2 7585:1 7591:1 7595:1 7601:1 7611:1 7615:1 7622:1 7623:1 7631:1 7653:1 7664:1 7678:1 7690:1 7703:4 7767:1 7769:2 7770:1 7782:2 7783:1 7788:1 7794:1 7804:1 7825:1 7829:1 7852:1 7898:1 7951:1 7977:1 8032:1 8055:2 8080:1 8091:1 8162:1 8190:1 8246:2 8278:1 8290:1 8311:1 8334:2 8364:2 8373:1 8379:1 8386:1 8398:1 8458:1 8473:1 8479:1 8533:1 8541:1 8545:3 8589:3 8590:1 8609:1 8642:1 8643:1 8644:3 8650:1 8652:1 8657:1 8663:1 8670:1 8691:1 8712:5 8717:2 8718:1 8736:1 8745:2 8777:1 8784:2 8794:1 8810:2 8820:3 8824:2 8825:1 8831:1 8835:1 8836:1 8840:1 8846:1 8847:5 8849:1 8851:1 8853:3 8911:1 8918:1 8925:1 8997:1 9013:1 9027:1 9041:5 9046:1 9058:1 9061:1 9074:2 9082:1 9091:1 9131:1 9138:1 9153:1 9158:3 9204:1 9207:1 9212:1 9213:1 9214:1 9216:1 9234:1 9241:1 9302:1 9308:1 9315:1 9318:1 9333:1 9337:1 9344:1 9346:1 9347:1 9355:1 9387:1 9392:1 9402:2 9410:1 9425:4 9441:1 9478:1 9503:1 9509:5 9518:1 9521:1 9538:1 9543:1 9544:1 9555:1 9558:2 9563:1 9575:1 9582:1 9585:1 9592:4 9607:1 9628:1 9634:3 9658:2 9669:1 9674:1 9678:1 9696:3 9715:2 9718:1 9723:2 9732:1 9754:1 9755:1 9762:2 9780:1 9781:1 9782:1 9828:1 9830:2 9841:1 9846:1 9865:1 9888:1 9916:2 9918:2 9925:1 9930:1 9946:1 9960:1 9967:1 9995:3 9999:1 10029:1 10042:1 10093:2 10160:1 10163:1 10168:1 10209:1 10220:1 10223:1 10224:2 10233:1 10236:1 10266:1 10269:1 10275:1 10294:1 10323:1 10341:1 10376:1 10382:1 10387:1 10397:2 10409:1 10410:2 10453:1 10465:1 10478:1 10490:1 10512:1 10517:2 10593:1 10607:1 10611:1 10613:1 10615:1 10625:1 10648:3 10682:1 10683:1 10717:1 10718:2 10736:1 10737:1 10743:1 10744:6 10751:1 10760:1 10774:1 10783:1 10789:1 10790:1 10791:1 10812:15 10814:1 10833:1 10838:1 10841:1 10843:4 10855:1 10866:1 10871:2 10901:1 10940:1 10981:4 10983:1 10990:1 10998:3 11002:1 11022:1 11033:1 11034:2 11037:1 11072:1 11110:1 11113:1 11125:4 11150:1 11164:1 11170:1 11190:1 11228:1 11229:1 11247:2 11260:1 11300:1 11301:1 11332:1 11340:1 11342:2 11347:1 11363:2 11379:1 11382:2 11401:2 11403:1 11423:4 11436:3 11485:1 11509:1 11528:1 11584:3 11594:2 11597:2 11618:1 11620:1 11621:1 11625:1 11651:2 11691:2 11709:4 11711:1 11722:1 11727:1 11728:1 11737:1 11747:1 11771:1 11776:1 11785:4 11786:2 11788:1 11799:2 11849:1 11854:1 11888:2 11898:1 11913:1 11916:1 11921:1 11943:1 11949:1 11990:2 12004:3 12011:1 12014:1 12021:1 12022:1 12024:3 12025:1 12032:1 12035:2 12038:1 12042:1 12046:1 12063:1 12077:1 12094:1 12095:1 12110:1 12118:1 12128:2 12129:1 12133:1 12137:2 12183:1 12196:5 12205:1 12211:1 12213:1 12257:1 12262:1 12323:1 12366:1 12379:1 12382:1 12401:2 12418:8 12435:1 12444:1 12457:1 12466:1 12467:5 12477:1 12481:1 12486:1 12495:2 12501:4 12502:1 12503:2 12505:1 12506:1 12511:1 12512:2 12548:1 12554:1 12557:3 12572:1 12594:1 12614:1 12630:1 12652:3 12664:5 12674:1 12716:1 12727:1 12733:1 12739:1 12757:1 12762:2 12779:1 12781:1 12839:1 12856:1 12857:1 12861:1 12879:2 12913:1 12929:1 12932:1 12950:1 12962:1 12974:5 12981:1 12984:1 12991:1 13012:1 13021:1 13052:1 13069:3 13090:2 13091:2 13108:1 13153:1 13159:1 13163:1 13195:1 13198:1 13228:1 13259:1 13275:1 13276:1 13278:1 13281:1 13299:2 13311:1 13328:1 13336:2 13342:1 13346:1 13348:2 13354:1 13356:1 13359:1 13388:1 13405:1 13412:6 13413:1 13423:1 13425:1 13430:2 13431:2 13434:2 13436:1 13439:1 13441:3 13449:1 13451:3 13453:5 13474:3 13475:2 13493:1 13498:3 13502:3 13512:3 13532:3 13534:1 13555:1 13585:1 13599:1 13600:4 13606:3 13610:5 13630:1 13635:1 13636:1 13640:1 13650:1 13654:1 13680:1 13696:1 13702:3 13703:1 13711:1 13741:1 13747:2 13756:6 13810:3 13817:1 13821:1 13823:1 13824:3 13845:1 13863:1 13875:1 13886:1 13889:1 13892:1 13898:1 13902:1 13908:3 13937:3 13944:1 13955:1 13957:1 13974:3 13992:1 14002:2 14073:1 14088:1 14096:2 14100:5 14133:3 14148:3 14181:5 14257:1 14262:1 14271:1 14286:1 14289:1 14293:4 14296:2 14299:1 14325:1 14339:1 14364:1 14366:1 14381:1 14383:1 14402:1 14411:1 14420:1 14422:1 14436:2 14452:3 14474:2 14515:2 14519:3 14525:5 14527:1 14555:2 14559:1 14581:1 14583:1 14590:4 14592:1 14594:5 14601:1 14608:2 14609:2 14610:1 14644:1 14663:1 14672:1 14681:4 14694:1 14708:1 14718:1 14757:1 14770:2 14798:1 14814:1 14826:4 14828:1 14829:1 14845:1 14854:1 14868:1 14873:1 14884:4 14887:1 14900:1 14903:1 14909:2 14920:1 14935:1 14965:2 14979:1 14980:2 14994:1 15004:1 15005:2 15019:2 15030:1 15040:1 15068:1 15085:3 15089:3 15113:1 15117:2 15134:1 15177:1 15188:1 15195:1 15206:2 15235:1 15243:1 15274:1 15290:5 15396:1 15421:1 15445:1 15480:1 15486:1 15497:1 15546:2 15547:1 15568:3 15576:2 15585:1 15613:2 15618:2 15628:1 15633:1 15637:2 15666:5 15693:1 15696:3 15698:2 15712:2 15713:1 15728:1 15731:1 15745:1 15747:2 15752:4 15756:1 15771:1 15772:1 15773:1 15789:1 15799:1 15829:1 15836:1 15854:1 15863:1 15864:1 15937:1 15959:1 15962:1 15966:1 15976:1 15978:13 15990:2 16006:3 16008:1 16016:3 16017:1 16022:1 16072:1 16077:1 16106:1 16110:1 16122:1 16160:1 16175:1 16179:1 16183:2 16206:1 16217:1 16221:5 16235:1 16264:1 16288:1 16338:1 16345:1 16346:1 16356:1 16380:1 16388:1 16389:1 16418:1 16434:3 16482:1 16515:3 16532:1 16540:1 16582:5 16584:1 16594:2 16595:2 16597:2 16616:1 16655:1 16666:3 16675:1 16679:1 16691:1 16694:1 16716:1 16717:1 16732:1 16740:1 16760:1 16806:1 16812:2 16822:5 16883:1 16894:1 16902:1 16918:1 16932:1 16937:1 16942:1 16945:1 16946:1 16964:1 16967:2 17010:1 17014:1 17019:1 17040:1 17059:1 17067:1 17072:3 17104:1 17106:3 17125:1 17128:1 17140:1 17161:1 17192:1 17202:1 17207:2 17213:1 17239:1 17251:3 17252:1 17270:2 17306:4 17324:3 17342:1 17353:1 17362:1 17370:1 17388:1 17389:1 17394:1 17408:15 17436:4 17444:2 17474:2 17475:1 17486:1 17493:1 17495:2 17504:1 17507:1 17508:1 17510:1 17519:1 17524:1 17544:1 17552:1 17572:1 17573:1 17583:2 17590:1 17615:2 17672:1 17680:1 17684:1 17687:1 17696:1 17723:1 17753:1 17779:1 17787:1 17802:1 17817:1 17820:1 17846:1 17877:1 17878:1 17891:5 17894:1 17912:3 17968:1 17990:1 18009:1 18017:2 18022:1 18058:1 18068:6 18075:1 18098:1 18100:2 18108:1 18132:1 18143:1 18144:1 18168:1 18176:2 18193:1 18198:2 18221:1 18230:1 18233:1 18246:1 18249:4 18253:1 18266:1 18269:1 18271:1 18319:1 18325:1 18326:1 18343:1 18344:2 18355:2 18380:1 18387:1 18389:3 18392:15 18393:1 18398:1 18412:1 18419:1 18442:3 18473:1 18498:1 18509:1 18516:1 18557:2 18584:1 18589:1 18612:1 18613:1 18636:2 18643:5 18657:1 18690:2 18693:1 18713:3 18735:1 18751:2 18753:3 18766:1 18767:1 18788:1 18799:1 18801:2 18811:2 18819:2 18834:1 18852:1 18860:1 18874:1 18877:1 18899:1 18907:1 18914:1 18934:1 18945:1 18953:1 18956:1 18960:1 18966:1 18978:1 19001:3 19005:1 19007:1 19020:4 19021:2 19031:1 19032:1 19035:1 19050:1 19057:1 19098:1 19130:3 19132:1 19165:2 19171:1 19174:1 19177:4 19278:2 19280:1 19311:1 19312:1 19358:2 19365:1 19369:1 19398:1 19458:2 19465:2 19470:2 19526:1 19528:1 19600:2 19615:1 19618:1 19619:1 19627:1 19659:2 19661:1 19672:1 19673:1 19674:4 19687:1 19692:1 19718:1 19740:1 19762:1 19818:1 19823:1 19824:4 19856:1 19869:1 19878:1 19888:1 19918:1 19919:1 19996:1 20003:1 20033:1 20052:1 20060:3 20082:1 20097:1 20126:3 20150:1 20158:1 20177:2 20178:1 20215:3 20247:1 20255:1 20263:1 20270:1 20271:1 20276:1 20311:1 20342:1 20350:1 20388:2
14 8:1 73:1 88:4 113:1 115:2 118:1 131:1 133:1 140:3 148:1 162:1 191:1 272:1 274:1 277:2 284:1 344:1 364:4 366:5 371:1 376:2 400:1 406:1 417:1 423:1 440:1 441:1 442:1 448:1 467:4 470:1 475:1 493:2 502:1 528:1 547:1 548:1 559:1 569:1 576:1 584:1 611:1 633:1 667:1 697:1 700:1 703:4 706:1 717:1 730:1 791:1 800:3 801:3 802:1 805:3 868:1 874:1 877:1 884:1 919:1 932:1 936:1 939:2 950:1 984:1 1015:1 1018:2 1028:1 1031:2 1046:1 1081:2 1082:1 1116:1 1142:1 1146:1 1186:1 1237:1 1241:2 1252:1 1256:2 1273:1 1310:1 1330:1 1331:5 1334:2 1382:1 1419:2 1428:1 1432:1 1442:2 1445:1 1467:2 1468:3 1487:1 1499:1 1510:1 1525:1 1535:1 1536:1 1545:1 1571:1 1578:1 1585:1 1596:1 1601:1 1609:1 1637:1 1640:1 1647:3 1658:1 1721:1 1773:1 1777:1 1796:1 1797:2 1818:1 1830:1 1834:1 1839:2 1843:2 1845:1 1846:1 1847:1 1854:1 1858:3 1860:1 1867:1 1875:2 1921:1 1934:1 1942:1 1943:1 1945:3 1969:1 1980:2 2003:1 2004:3 2016:1 2084:1 2100:4 2117:1 2149:2 2157:3 2186:1 2189:1 2201:1 2203:1 2205:1 2230:1 2235:1 2251:2 2253:3 2280:2 2282:2 2313:1 2315:1 2327:2 2355:1 2358:4 2369:1 2379:1 2385:1 2407:2 2423:1 2455:2 2456:1 2504:5 2509:1 2524:4 2533:4 2536:1 2563:7 2572:2 2598:4 2600:4 2632:3 2642:1 2656:1 2658:3 2665:1 2666:1 2701:1 2737:1 2747:1 2751:1 2761:1 2782:2 2788:1 2789:1 2816:1 2817:2 2822:1 2824:1 2831:3 2851:1 2887:1 2903:1 2905:3 2917:1 2923:3 2930:1 2931:1 2933:2 2937:1 2971:1 2992:1 2998:1 3028:4 3043:1 3044:1 3046:2 3047:1 3048:1 3049:1 3053:1 3068:1 3069:2 3071:2 3082:2 3083:1 3093:1 3094:1 3110:1 3116:3 3123:4 3125:1 3133:1 3142:3 3146:1 3149:2 3156:1 3210:1 3212:1 3215:1 3231:1 3250:1 3281:5 3294:1 3295:1 3306:1 3316:1 3327:1 3329:1 3357:2 3358:2 3390:1 3400:1 3420:1 3446:1 3456:2 3458:1 3474:1 3489:1 3493:1 3501:1 3507:1 3510:2 3512:1 3518:2 3558:1 3560:3 3562:1 3568:2 3581:3 3588:2 3599:1 3609:1 3631:2 3633:1 3638:1 3642:1 3655:1 3692:1 3706:3 3707:2 3726:7 3731:1 3751:1 3753:1 3763:1 3766:1 3775:1 3777:4 3788:1 3811:2 3819:1 3830:1 3836:1 3871:1 3873:1 3879:1 3886:2 3905:2 3919:1 3920:2 3927:1 3948:1 3966:1 3972:1 3975:1 3989:1 3991:1 3994:1 3998:1 3999:1 4002:1 4013:2 4019:2 4026:1 4033:5 4037:1 4054:1 4059:1 4067:1 4071:18 4072:1 4091:2 4096:1 4098:1 4114:1 4128:1 4129:1 4131:6 4140:1 4145:4 4152:3 4160:1 4162:1 4168:1 4194:1 4195:1 4197:1 4210:3 4211:1 4213:1 4225:2 4249:1 4251:1 4253:1 4257:1 4270:1 4294:2 4301:1 4305:2 4307:1 4324:1 4331:1 4348:3 4349:1 4366:1 4378:1 4427:1 4436:1 4441:1 4471:1 4486:1 4502:1 4510:1 4556:1 4568:2 4622:1 4641:1 4658:2 4667:1 4676:2 4683:1 4686:3 4692:7 4699:1 4708:1 4733:1 4762:2 4766:1 4771:2 4772:1 4778:1 4794:1 4795:3 4827:1 4831:1 4834:3 4837:1 4851:7 4900:1 4910:1 4940:1 4959:1 4960:1 4982:2 4989:1 5001:1 5006:2 5016:1 5023:2 5025:1 5040:1 5052:1 5058:3 5067:15 5074:1 5083:1 5131:1 5132:1 5135:1 5153:2 5157:1 5185:1 5193:1 5200:1 5203:3 5227:1 5228:1 5231:1 5236:1 5241:3 5247:1 5256:2 5266:3 5271:4 5288:1 5313:1 5362:1 5365:2 5366:2 5375:1 5387:1 5394:2 5406:1 5408:1 5413:1 5433:1 5437:800 5456:1 5458:1 5460:2 5468:1 5509:2 5518:1 5530:1 5583:1 5604:1 5625:1 5637:1 5644:1 5657:1 5661:1 5672:1 5691:2 5697:2 5714:1 5751:1 5756:2 5762:1 5763:1 5765:3 5767:1 5771:3 5775:1 5778:1 5780:3 5785:1 5813:1 5856:1 5867:1 5874:1 5879:1 5886:1 5893:2 5904:1 5911:2 5912:1 5932:8 5962:1 5974:1 5984:7 5996:1 5997:1 6055:1 6092:1 6110:1 6111:1 6133:1 6174:1 6311:1 6316:2 6317:1 6321:1 6325:1 6339:3 6352:2 6354:1 6420:2 6425:3 6452:1 6458:1 6489:1 6502:4 6508:1 6511:4 6517:3 6520:2 6541:2 6586:1 6588:1 6609:1 6615:1 6668:1 6675:11 6680:1 6683:4 6688:1 6694:5 6725:1 6746:1 6749:1 6752:4 6765:1 6822:1 6829:1 6837:1 6845:4 6866:1 6867:2 6868:1 6880:1 6902:1 6903:1 6905:1 6931:2 6945:2 6956:2 7000:1 7008:2 7013:1 7016:1 7078:1 7079:1 7112:1 7113:1 7129:1 7142:1 7148:4 7156:1 7160:5 7185:2 7258:1 7263:1 7266:1 7268:1 7277:1 7287:1 7295:2 7297:1 7361:1 7400:1 7402:1 7403:1 7414:2 7425:1 7441:1 7459:3 7474:2 7490:2 7497:1 7512:1 7513:1 7525:1 7526:4 7539:1 7548:1 7571:1 7582:2 7585:1 7591:1 7595:1 7601:1 7611:1 7615:1 7622:1 7623:1 7631:1 7653:1 7664:1 7678:1 7690:1 7703:4 7767:1 7769:2 7770:1 7782:2 7783:1 7788:2 7794:1 7804:1 7825:1 7829:1 7849:1 7852:1 7898:2 7951:2 7975:1 7977:1 7989:1 8032:1 8055:2 8080:1 8091:1 8162:1 8190:1 8246:2 8278:1 8290:1 8311:1 8328:1 8334:2 8364:2 8373:1 8379:1 8386:1 8398:1 8458:1 8473:1 8479:1 8533:1 8541:1 8545:4 8589:4 8590:1 8609:1 8642:1 8643:1 8644:3 8650:1 8652:1 8657:1 8663:1 8670:1 8691:1 8712:5 8717:2 8718:1 8736:1 8745:3 8777:1 8784:2 8794:1 8810:2 8820:3 8824:2 8825:1 8831:1 8835:2 8836:1 8840:1 8846:3 8847:5 8849:1 8851:1 8853:3 8911:1 8918:1 8925:1 8997:1 9013:1 9027:1 9041:6 9046:1 9058:1 9061:1 9074:2 9082:1 9091:1 9131:1 9138:1 9153:1 9158:4 9176:1 9204:1 9207:1 9212:1 9213:1 9214:1 9216:1 9234:1 9241:1 9302:1 9308:1 9315:1 9318:1 9333:1 9337:1 9344:1 9346:1 9347:1 9355:1 9387:1 9392:1 9402:2 9410:1 9425:4 9441:1 9478:1 9503:1 9509:7 9518:1 9521:1 9538:2 9543:1 9544:1 9555:1 9558:3 9563:1 9575:1 9582:1 9585:1 9592:5 9607:1 9628:1 9634:3 9658:2 9669:2 9674:1 9678:1 9689:1 9696:3 9715:2 9718:1 9723:2 9726:1 9732:1 9754:1 9755:1 9762:2 9780:1 9781:1 9782:3 9828:1 9830:2 9841:2 9846:1 9865:1 9888:1 9916:2 9918:2 9920:1 9925:1 9930:1 9946:1 9960:1 9967:1 9995:3 9999:1 10029:1 10042:1 10093:2 10160:1 10163:1 10168:1 10209:1 10220:1 10223:1 10224:2 10233:1 10236:1 10266:1 10269:1 10275:1 10294:1 10323:1 10341:1 10367:1 10376:1 10382:1 10387:1 10397:2 10409:1 10410:3 10453:1 10465:1 10478:1 10490:1 10512:1 10517:2 10593:1 10607:1 10611:1 10613:1 10615:1 10625:1 10648:3 10682:1 10683:1 10717:1 10718:2 10736:1 10737:1 10743:1 10744:6 10751:1 10760:1 10774:1 10783:1 10789:1 10790:1 10791:1 10796:1 10812:16 10814:1 10833:1 10838:1 10841:1 10843:4 10855:1 10866:1 10871:2 10901:1 10940:1 10942:1 10981:5 10983:1 10990:1 10998:4 11002:1 11022:1 11033:1 11034:2 11037:1 11072:2 11082:2 11110:1 11113:1 11125:4 11150:1 11164:1 11170:1 11190:1 11228:1 11229:1 11247:2 11260:2 11300:1 11301:2 11332:1 11340:1 11342:2 11347:1 11363:2 11379:1 11382:2 11401:3 11403:1 11423:4 11436:4 11485:1 11509:1 11528:1 11530:1 11569:1 11584:3 11594:2 11597:3 11618:1 11620:1 11621:1 11625:1 11651:2 11691:2 11709:5 11711:1 11714:1 11722:1 11727:1 11728:1 11737:1 11747:1 11758:1 11771:1 11776:1 11785:5 11786:2 11788:1 11799:3 11842:1 11849:1 11854:1 11888:2 11898:1 11913:1 11916:1 11921:1 11943:1 11949:1 11990:2 12004:4 12011:1 12014:1 12021:1 12022:1 12024:3 12025:1 12032:1 12035:2 12038:1 12042:1 12046:1 12063:1 12077:1 12094:1 12095:1 12110:1 12118:1 12128:3 12129:1 12133:1 12137:2 12183:1 12196:6 12205:1 12211:1 12213:1 12257:1 12262:1 12323:1 12366:1 12379:1 12382:1 12401:2 12418:8 12435:1 12444:1 12457:1 12466:1 12467:5 12477:1 12481:1 12486:1 12495:2 12501:4 12502:1 12503:2 12505:1 12506:1 12511:1 12512:2 12548:1 12554:1 12557:3 12572:1 12594:1 12614:1 12630:1 12652:3 12664:5 12674:1 12716:1 12727:1 12733:1 12739:1 12757:1 12762:2 12779:1 12781:1 12839:1 12856:1 12857:1 12861:1 12879:2 12913:1 12929:1 12932:1 12950:1 12962:1 12974:6 12981:1 12984:1 12991:1 13012:1 13021:1 13052:1 13069:3 13090:2 13091:2 13108:1 13153:1 13159:1 13163:1 13195:1 13198:1 13228:1 13259:1 13275:1 13276:1 13278:1 13281:1 13299:2 13311:1 13328:1 13336:2 13342:1 13346:1 13348:2 13354:1 13356:1 13359:1 13388:1 13405:1 13411:1 13412:6 13413:1 13423:1 13425:1 13430:3 13431:2 13434:2 13436:1 13439:1 13441:4 13449:1 13450:2 13451:3 13453:5 13474:4 13475:2 13493:1 13498:3 13502:3 13512:3 13532:4 13534:1 13555:1 13585:1 13599:1 13600:6 13606:3 13610:5 13630:1 13635:1 13636:1 13640:1 13650:1 13654:1 13680:1 13696:1 13702:4 13703:1 13711:1 13741:1 13747:2 13756:6 13810:3 13817:1 13821:1 13823:1 13824:4 13845:1 13863:1 13875:1 13886:1 13889:1 13892:1 13898:1 13902:2 13908:4 13937:3 13944:1 13955:1 13957:1 13974:3 13992:1 14002:2 14073:1 14079:1 14088:1 14096:2 14100:5 14133:4 14148:3 14181:7 14257:1 14262:1 14271:1 14274:1 14286:1 14289:1 14293:5 14296:4 14299:1 14325:1 14339:1 14364:1 14366:1 14381:1 14383:1 14402:1 14411:1 14420:1 14422:1 14436:2 14452:3 14474:2 14515:2 14519:3 14525:5 14527:1 14555:2 14559:1 14581:1 14583:2 14590:4 14592:1 14594:5 14601:1 14608:2 14609:2 14610:1 14644:1 14663:1 14672:1 14681:4 14694:2 14708:1 14718:1 14757:1 14770:2 14798:1 14814:1 14826:4 14828:1 14829:1 14845:1 14854:1 14868:1 14873:1 14884:4 14887:1 14897:1 14900:1 14903:1 14909:3 14920:1 14935:1 14965:2 14968:2 14979:2 14980:2 14994:1 15004:1 15005:2 15019:2 15030:1 15040:1 15068:1 15085:4 15089:3 15113:1 15117:2 15134:1 15177:1 15188:1 15195:1 15206:2 15235:1 15243:1 15274:1 15290:5 15396:1 15421:1 15445:1 15480:1 15486:1 15497:1 15523:1 15546:2 15547:1 15568:4 15576:2 15585:1 15613:2 15618:2 15628:1 15633:1 15637:2 15666:6 15693:1 15696:3 15698:2 15712:2 15713:1 15728:1 15731:1 15745:1 15747:2 15752:5 15756:1 15771:1 15772:1 15773:1 15789:1 15799:1 15829:1 15836:1 15854:1 15863:1 15864:1 15937:1 15959:1 15962:1 15966:1 15976:1 15978:15 15986:2 15990:2 15996:2 16006:4 16008:1 16016:3 16017:1 16022:1 16072:1 16077:1 16106:1 16110:1 16122:1 16160:1 16175:1 16179:1 16183:2 16206:1 16217:1 16221:5 16235:1 16264:1 16288:1 16338:1 16345:1 16346:1 16356:1 16380:1 16388:1 16389:1 16418:1 16434:3 16482:1 16515:3 16532:1 16540:1 16582:5 16584:1 16594:2 16595:2 16597:2 16616:1 16655:1 16666:4 16675:1 16679:1 16691:1 16694:1 16716:1 16717:1 16732:1 16740:1 16760:1 16806:1 16812:2 16822:5 16834:1 16883:1 16894:1 16902:2 16918:1 16932:1 16937:1 16942:1 16945:1 16946:1 16964:1 16967:2 17010:1 17014:1 17019:1 17040:1 17059:1 17067:1 17072:4 17094:1 17104:1 17106:3 17125:1 17128:1 17140:1 17161:1 17192:1 17202:1 17207:2 17213:1 17239:1 17242:1 17251:4 17252:1 17270:3 17306:4 17324:4 17342:1 17353:1 17362:1 17370:1 17388:1 17389:1 17394:1 17408:16 17436:4 17444:2 17474:2 17475:1 17486:1 17493:1 17495:4 17504:1 17507:1 17508:1 17510:1 17519:1 17524:1 17544:1 17552:1 17572:1 17573:1 17583:2 17590:1 17615:2 17672:1 17680:1 17684:1 17687:1 17696:1 17723:1 17753:1 17779:1 17787:1 17802:2 17815:1 17817:1 17820:1 17846:1 17877:1 17878:1 17891:5 17894:1 17912:3 17968:1 17990:1 18009:1 18017:2 18022:1 18058:1 18068:6 18075:1 18098:1 18100:2 18108:1 18132:1 18143:1 18144:1 18168:1 18176:2 18193:1 18198:2 18221:1 18230:1 18233:1 18246:1 18249:4 18253:1 18266:1 18269:1 18271:1 18319:1 18325:1 18326:1 18343:1 18344:2 18355:2 18380:1 18387:1 18389:4 18392:15 18393:1 18398:1 18412:1 18419:1 18442:3 18473:1 18498:1 18509:1 18516:1 18557:2 18584:1 18589:1 18612:1 18613:1 18636:2 18643:5 18657:1 18690:2 18693:1 18713:3 18722:2 18735:1 18751:4 18753:3 18766:1 18767:1 18788:1 18799:1 18801:2 18811:2 18819:2 18834:2 18852:1 18860:1 18874:1 18877:1 18899:1 18907:1 18914:1 18934:1 18945:1 18953:1 18956:1 18960:1 18966:1 18978:1 19001:4 19005:1 19007:1 19020:4 19021:2 19031:1 19032:1 19035:1 19050:1 19057:1 19098:1 19130:4 19132:1 19165:2 19171:1 19174:1 19177:4 19278:2 19280:1 19311:1 19312:1 19358:2 19365:1 19369:1 19398:1 19458:2 19465:2 19470:2 19526:1 19528:1 19600:2 19606:1 19615:1 19618:1 19619:1 19627:1 19659:2 19661:1 19672:1 19673:1 19674:4 19687:1 19692:1 19718:1 19740:1 19762:1 19818:1 19823:1 19824:5 19831:1 19856:1 19869:1 19878:1 19888:1 19918:1 19919:1 19996:1 20003:1 20033:1 20052:1 20060:3 20082:1 20097:1 20126:3 20150:1 20158:1 20177:2 20178:1 20215:3 20247:1 20255:1 20263:2 20270:1 20271:1 20276:1 20311:1 20330:1 20342:1 20350:1 20388:2
14 8:1 20:1 73:1 88:4 113:1 115:2 118:1 131:1 133:1 140:4 148:1 162:1 183:1 191:1 272:1 274:1 277:2 284:1 311:1 344:1 364:4 366:5 371:1 376:2 400:1 406:1 417:1 423:1 430:1 440:1 441:1 442:1 448:1 467:4 470:1 475:1 493:3 502:1 528:1 547:1 548:2 559:2 569:1 576:1 584:1 592:1 611:1 633:1 667:1 697:1 700:1 703:4 706:1 717:1 730:1 791:1 800:3 801:3 802:1 805:3 868:1 874:1 877:1 884:1 919:1 932:1 936:1 939:3 950:1 984:1 1015:1 1018:2 1028:1 1031:2 1046:1 1081:2 1082:1 1116:1 1134:1 1142:1 1146:1 1186:1 1237:1 1241:2 1252:1 1256:2 1273:1 1310:1 1330:1 1331:5 1334:2 1382:1 1419:2 1428:1 1432:1 1442:2 1445:1 1467:2 1468:3 1487:1 1499:1 1510:1 1525:1 1535:1 1536:1 1545:1 1565:1 1571:1 1578:1 1585:1 1596:1 1601:1 1609:1 1637:1 1640:1 1647:4 1658:1 1721:1 1773:1 1777:1 1786:1 1796:1 1797:2 1818:1 1830:1 1834:1 1839:2 1843:2 1845:1 1846:1 1847:1 1854:1 1858:3 1860:1 1867:1 1875:2 1921:1 1934:1 1942:1 1943:1 1945:3 1969:1 1980:2 2003:1 2004:3 2016:1 2084:1 2100:4 2117:1 2149:2 2157:3 2186:1 2189:1 2198:1 2201:1 2203:1 2205:1 2230:1 2235:1 2251:2 2253:3 2280:2 2282:2 2313:1 2315:1 2327:2 2329:1 2355:1 2358:4 2369:1 2379:1 2385:1 2399:1 2407:2 2423:1 2455:2 2456:1 2504:5 2509:1 2524:4 2533:4 2536:1 2563:7 2572:2 2598:4 2600:5 2630:1 2632:3 2642:1 2656:1 2657:1 2658:3 2665:1 2666:1 2671:1 2701:1 2737:1 2747:1 2751:1 2761:1 2782:2 2788:1 2789:1 2812:1 2816:1 2817:2 2822:1 2824:1 2831:4 2851:1 2887:1 2903:1 2905:3 2912:1 2917:1 2923:3 2930:1 2931:1 2933:2 2937:1 2943:1 2961:1 2971:1 2992:1 2998:1 3028:4 3043:1 3044:1 3046:2 3047:1 3048:1 3049:1 3053:1 3068:1 3069:2 3071:3 3082:2 3083:1 3093:1 3094:1 3110:1 3116:3 3123:4 3125:1 3133:1 3142:3 3144:1 3146:1 3149:2 3156:1 3168:1 3169:1 3210:2 3212:1 3215:1 3231:1 3250:1 3272:1 3281:5 3294:1 3295:1 3306:1 3316:2 3327:1 3328:1 3329:1 3357:2 3358:2 3390:1 3400:1 3420:1 3446:1 3456:2 3458:1 3474:1 3489:1 3493:1 3501:1 3507:1 3510:2 3512:1 3518:2 3536:1 3558:1 3560:3 3562:1 3568:2 3581:3 3588:2 3599:1 3607:1 3609:1 3629:1 3631:2 3633:1 3638:1 3642:1 3655:1 3671:1 3692:1 3706:3 3707:2 3726:7 3731:1 3732:1 3733:1 3738:1 3751:1 3753:1 3763:1 3766:1 3775:1 3777:4 3788:1 3811:2 3819:1 3830:1 3836:1 3871:1 3873:1 3879:1 3886:2 3905:2 3919:1 3920:2 3927:1 3948:1 3966:1 3972:1 3975:1 3989:1 3991:1 3994:1 3998:1 3999:1 4002:1 4013:2 4019:3 4026:1 4033:5 4037:1 4054:1 4059:1 4067:1 4071:19 4072:1 4079:1 4091:2 4096:1 4098:1 4114:1 4128:1 4129:1 4131:7 4140:1 4145:4 4152:3 4160:1 4162:1 4168:1 4169:1 4194:1 4195:1 4197:1 4210:3 4211:1 4213:1 4225:2 4249:1 4251:1 4253:1 4257:1 4270:1 4294:2 4301:1 4305:2 4307:1 4324:1 4331:1 4348:3 4349:2 4366:1 4378:1 4412:1 4427:1 4436:1 4441:1 4471:1 4483:1 4486:1 4502:1 4510:1 4544:1 4553:1 4556:1 4568:2 4622:1 4641:1 4658:2 4667:1 4676:2 4683:1 4686:4 4692:7 4699:1 4708:1 4733:1 4751:1 4762:2 4766:1 4771:2 4772:1 4778:1 4794:1 4795:3 4827:1 4831:1 4834:3 4837:1 4851:7 4900:1 4910:1 4940:1 4959:1 4960:1 4982:3 4989:1 5001:1 5006:2 5016:1 5023:2 5025:1 5039:1 5040:1 5052:1 5058:4 5067:16 5074:1 5083:1 5131:1 5132:1 5135:1 5153:2 5157:1 5185:1 5193:1 5200:1 5203:4 5227:1 5228:1 5231:1 5236:1 5241:3 5247:1 5256:3 5266:3 5271:5 5288:1 5313:1 5362:1 5365:2 5366:2 5372:1 5375:1 5387:1 5394:2 5402:1 5406:1 5408:1 5413:1 5416:1 5433:1 5437:950 5456:1 5458:1 5460:2 5468:1 5507:1 5509:2 5518:1 5530:1 5583:1 5604:1 5625:1 5637:1 5644:1 5657:1 5661:1 5672:1 5691:2 5697:2 5714:1 5751:1 5756:2 5757:1 5762:1 5763:1 5765:3 5767:1 5771:3 5775:1 5778:1 5780:3 5785:1 5813:1 5856:1 5867:1 5874:1 5879:1 5886:1 5893:2 5904:1 5911:2 5912:1 5932:8 5962:1 5974:1 5984:7 5996:1 5997:1 6055:1 6090:1 6092:2 6110:1 6111:1 6133:1 6174:1 6307:1 6311:2 6316:3 6317:1 6321:1 6325:1 6339:3 6352:2 6354:1 6420:2 6425:3 6452:1 6453:1 6458:1 6489:1 6502:4 6508:1 6511:4 6517:4 6520:2 6541:2 6543:1 6586:1 6588:1 6609:1 6615:1 6660:1 6668:1 6675:12 6680:1 6683:4 6688:1 6694:6 6725:1 6746:1 6747:1 6749:1 6752:4 6765:1 6822:1 6829:1 6837:1 6845:4 6866:1 6867:3 6868:1 6880:1 6891:1 6902:2 6903:1 6905:1 6931:2 6945:3 6956:2 6988:1 7000:1 7008:2 7013:1 7016:1 7078:1 7079:1 7112:1 7113:1 7129:1 7142:1 7148:4 7156:1 7160:5 7161:1 7185:3 7258:1 7263:1 7266:2 7268:1 7277:1 7287:1 7295:2 7297:1 7361:1 7400:1 7402:1 7403:1 7414:2 7425:1 7441:1 7459:3 7466:1 7474:3 7490:2 7497:1 7512:1 7513:1 7525:1 7526:4 7539:1 7548:1 7571:1 7582:2 7585:1 7591:1 7595:1 7601:1 7611:1 7615:1 7622:1 7623:1 7630:1 7631:1 7641:1 7653:1 7664:1 7678:1 7690:1 7703:4 7767:1 7769:2 7770:1 7782:3 7783:1 7788:2 7794:1 7800:1 7804:1 7825:1 7829:1 7849:1 7852:1 7886:1 7898:4 7930:1 7941:1 7951:2 7975:1 7977:1 7989:1 8016:1 8032:1 8033:1 8055:2 8080:1 8091:1 8125:1 8162:1 8190:1 8210:1 8246:2 8278:1 8290:1 8311:1 8328:1 8334:2 8364:2 8373:1 8379:1 8386:1 8388:1 8398:1 8458:1 8473:1 8479:1 8533:1 8541:1 8545:4 8556:1 8589:5 8590:1 8609:1 8642:1 8643:1 8644:3 8650:2 8652:1 8657:1 8663:1 8670:1 8691:1 8712:5 8717:2 8718:1 8736:1 8745:3 8774:1 8777:1 8784:2 8794:1 8810:2 8820:4 8824:2 8825:1 8831:1 8835:2 8836:1 8840:1 8846:4 8847:5 8849:1 8851:1 8853:3 8911:1 8918:1 8925:1 8950:1 8997:1 9013:1 9027:1 9041:6 9046:1 9058:1 9061:1 9074:2 9082:1 9091:1 9131:1 9138:1 9153:1 9158:4 9176:1 9204:1 9207:1 9212:1 9213:1 9214:1 9216:1 9234:1 9241:1 9302:1 9308:1 9315:1 9318:1 9333:1 9337:1 9344:1 9346:1 9347:1 9355:1 9387:1 9392:1 9402:2 9410:1 9425:4 9441:1 9478:1 9503:1 9509:7 9513:1 9517:1 9518:1 9521:1 9535:1 9538:2 9543:1 9544:1 9555:1 9558:4 9563:1 9575:1 9582:1 9585:1 9592:5 9607:1 9609:1 9624:1 9628:1 9634:3 9646:1 9658:2 9669:2 9674:1 9678:1 9689:1 9694:1 9696:3 9715:2 9718:1 9723:2 9726:1 9732:1 9754:1 9755:1 9762:2 9780:1 9781:1 9782:3 9828:1 9830:3 9841:2 9846:1 9865:1 9888:1 9916:2 9918:2 9920:1 9925:1 9930:1 9945:1 9946:1 9960:1 9967:1 9995:3 9999:1 10016:1 10029:1 10042:1 10093:2 10160:1 10163:1 10168:1 10209:1 10220:1 10223:1 10224:2 10233:2 10236:1 10266:1 10269:1 10275:1 10277:1 10278:1 10294:1 10313:1 10323:1 10341:1 10367:1 10376:1 10382:1 10387:1 10397:2 10409:1 10410:4 10453:1 10465:1 10478:1 10490:1 10512:1 10517:2 10593:1 10607:1 10611:1 10613:1 10615:1 10625:1 10648:3 10682:2 10683:1 10717:2 10718:3 10736:1 10737:2 10743:1 10744:6 10751:1 10760:1 10774:1 10783:1 10789:1 10790:1 10791:1 10796:1 10812:17 10814:1 10833:1 10838:1 10841:1 10843:4 10855:1 10866:1 10871:2 10901:1 10903:1 10908:1 10940:1 10942:1 10981:5 10983:1 10990:1 10998:5 11002:1 11022:1 11033:1 11034:2 11037:1 11038:1 11072:2 11082:2 11110:1 11113:1 11125:4 11150:2 11164:1 11170:1 11190:1 11228:1 11229:1 11247:3 11260:2 11300:1 11301:2 11332:1 11340:1 11342:2 11347:1 11363:2 11379:1 11382:3 11401:3 11403:1 11423:4 11431:1 11436:4 11485:1 11509:1 11528:1 11530:1 11569:1 11584:3 11594:2 11597:3 11618:1 11620:2 11621:1 11625:1 11651:2 11691:2 11709:5 11711:1 11714:1 11722:1 11727:1 11728:1 11737:1 11747:1 11758:1 11764:1 11771:1 11776:1 11779:1 11782:1 11785:5 11786:2 11788:1 11799:4 11842:1 11849:1 11854:1 11888:2 11898:1 11913:1 11916:1 11921:1 11943:1 11947:1 11949:1 11950:1 11990:2 11995:1 12004:4 12011:1 12014:1 12021:1 12022:1 12024:3 12025:1 12032:1 12035:2 12038:1 12042:1 12046:1 12063:1 12077:1 12094:1 12095:1 12102:1 12110:1 12118:1 12128:3 12129:1 12133:1 12137:2 12183:1 12196:7 12205:1 12211:1 12213:1 12257:1 12262:1 12323:1 12345:1 12366:1 12379:1 12382:1 12401:2 12418:8 12435:1 12444:1 12457:1 12466:1 12467:5 12477:1 12481:1 12486:1 12495:2 12501:4 12502:2 12503:2 12505:1 12506:1 12511:1 12512:2 12548:1 12554:1 12557:3 12572:1 12594:1 12614:1 12630:1 12652:3 12664:5 12674:1 12715:1 12716:1 12727:1 12733:1 12739:1 12757:1 12762:2 12779:1 12781:1 12839:1 12856:1 12857:1 12861:1 12879:2 12913:1 12929:1 12932:1 12950:1 12962:1 12974:7 12981:1 12984:1 12991:1 13001:1 13007:1 13012:1 13021:1 13052:1 13069:3 13090:2 13091:2 13108:1 13118:1 13153:1 13159:1 13163:1 13195:1 13198:1 13228:1 13259:1 13275:1 13276:1 13278:1 13281:1 13299:2 13311:1 13328:1 13336:2 13342:1 13346:1 13348:2 13354:1 13356:1 13359:1 13388:1 13405:1 13411:1 13412:6 13413:1 13423:1 13425:1 13430:3 13431:2 13434:2 13436:1 13439:1 13441:4 13449:1 13450:2 13451:3 13453:5 13474:4 13475:2 13493:1 13498:3 13502:3 13512:3 13532:4 13534:1 13555:1 13585:1 13599:1 13600:6 13606:3 13610:5 13612:1 13630:1 13635:1 13636:1 13640:1 13650:1 13654:1 13680:1 13696:1 13702:4 13703:1 13711:1 13741:1 13747:2 13756:6 13789:1 13810:3 13817:1 13821:1 13823:1 13824:4 13844:1 13845:1 13863:1 13875:1 13886:1 13889:1 13892:1 13898:1 13902:3 13908:4 13937:3 13944:1 13955:1 13957:1 13974:4 13992:1 14002:2 14073:1 14079:1 14088:1 14096:2 14100:5 14133:4 14148:3 14181:7 14257:1 14262:1 14271:1 14274:1 14286:1 14289:1 14293:5 14296:4 14299:1 14325:1 14339:1 14364:1 14366:1 14381:1 14383:1 14402:1 14411:1 14420:1 14422:1 14436:2 14452:3 14474:2 14515:2 14519:3 14525:6 14527:1 14555:2 14559:2 14581:1 14583:3 14590:4 14592:1 14594:5 14601:2 14608:2 14609:2 14610:1 14644:1 14663:1 14672:1 14681:4 14694:2 14708:1 14718:1 14757:1 14770:2 14798:1 14814:1 14826:4 14828:1 14829:1 14830:1 14845:1 14854:1 14868:1 14873:1 14884:4 14887:1 14897:1 14900:1 14903:1 14909:3 14920:1 14935:1 14965:2 14968:3 14979:2 14980:2 14994:1 15004:1 15005:2 15019:2 15030:1 15040:1 15068:1 15085:4 15089:4 15113:1 15117:2 15134:2 15177:1 15188:1 15195:1 15206:2 15235:1 15243:1 15274:2 15290:5 15396:1 15421:1 15445:1 15480:1 15486:1 15497:1 15523:1 15546:2 15547:1 15568:5 15576:2 15585:1 15613:2 15618:3 15628:1 15629:1 15633:1 15637:3 15666:7 15693:2 15696:4 15698:2 15712:2 15713:1 15724:1 15728:1 15731:1 15745:1 15747:2 15752:7 15756:1 15771:1 15772:1 15773:1 15789:1 15799:1 15829:1 15836:1 15854:1 15863:1 15864:1 15934:1 15937:1 15959:2 15962:1 15966:1 15976:1 15978:16 15986:2 15990:2 15996:2 16006:4 16008:1 16016:3 16017:1 16022:1 16072:1 16077:1 16106:1 16110:1 16122:1 16127:1 16139:1 16160:1 16175:1 16179:1 16183:2 16206:1 16217:1 16221:5 16235:1 16243:1 16264:1 16271:1 16288:1 16338:1 16343:1 16344:1 16345:1 16346:1 16356:1 16366:1 16380:1 16388:1 16389:2 16400:1 16418:1 16434:3 16482:1 16515:3 16532:1 16540:1 16571:1 16582:5 16584:1 16594:2 16595:2 16597:2 16616:1 16655:1 16666:5 16675:1 16679:1 16691:1 16694:1 16716:1 16717:1 16732:1 16740:1 16760:1 16806:1 16812:3 16822:5 16834:1 16883:1 16894:1 16902:2 16918:1 16932:1 16937:1 16942:1 16945:1 16946:1 16964:1 16967:2 17010:1 17014:1 17019:1 17039:1 17040:1 17059:1 17067:1 17072:4 17094:1 17104:1 17106:3 17125:1 17128:1 17140:1 17161:1 17192:1 17202:1 17207:2 17213:1 17239:1 17242:1 17251:4 17252:1 17270:3 17306:4 17324:4 17342:1 17353:1 17362:1 17370:1 17380:1 17388:1 17389:1 17394:1 17408:16 17423:1 17436:4 17437:1 17438:1 17444:2 17474:2 17475:1 17486:2 17493:1 17495:4 17504:1 17507:1 17508:1 17510:1 17519:1 17524:1 17544:1 17552:1 17572:1 17573:1 17583:2 17590:1 17615:2 17672:1 17680:1 17684:1 17687:2 17696:1 17723:1 17753:1 17779:1 17780:1 17787:1 17802:2 17815:1 17817:1 17820:1 17846:1 17877:1 17878:1 17886:1 17890:1 17891:5 17894:1 17912:3 17968:1 17990:1 18009:1 18017:2 18022:1 18058:1 18068:6 18075:2 18098:1 18100:2 18108:1 18132:1 18143:1 18144:1 18148:1 18168:1 18176:2 18193:1 18198:2 18210:1 18221:1 18230:1 18233:1 18246:1 18249:4 18253:1 18266:1 18269:1 18271:1 18310:1 18319:1 18325:2 18326:1 18343:1 18344:2 18355:3 18366:1 18380:1 18387:1 18389:4 18392:15 18393:1 18398:1 18412:1 18419:1 18442:3 18473:1 18498:1 18509:1 18516:1 18557:2 18584:1 18589:1 18612:1 18613:1 18636:2 18643:5 18657:1 18690:3 18693:1 18713:3 18722:2 18735:1 18751:4 18753:3 18766:1 18767:1 18788:1 18792:1 18799:1 18801:2 18811:2 18819:2 18834:2 18850:1 18852:1 18860:1 18874:1 18877:1 18899:1 18907:1 18914:1 18934:1 18945:1 18947:1 18953:1 18956:1 18960:1 18966:1 18978:1 19001:4 19005:1 19007:1 19015:1 19020:4 19021:2 19031:1 19032:1 19035:2 19050:1 19057:1 19098:1 19130:4 19132:1 19165:2 19171:1 19174:1 19177:4 19278:2 19280:1 19311:1 19312:1 19358:2 19365:1 19369:1 19398:1 19458:2 19465:2 19470:2 19526:1 19528:1 19559:1 19600:2 19604:1 19606:1 19615:1 19618:1 19619:1 19627:1 19659:2 19661:1 19672:1 19673:1 19674:4 19687:1 19692:1 19718:1 19740:1 19762:1 19818:1 19823:1 19824:5 19831:1 19856:1 19869:1 19878:1 19888:1 19918:1 19919:1 19996:1 20003:1 20033:1 20052:1 20060:3 20082:1 20097:1 20126:3 20150:1 20158:1 20177:2 20178:1 20207:1 20215:3 20247:1 20255:1 20263:2 20270:1 20271:1 20276:1 20311:1 20330:1 20342:1 20350:1 20388:2
14 8:1 20:1 73:1 88:4 113:1 115:2 116:1 118:1 131:1 133:1 140:4 148:1 162:1 183:1 191:1 272:1 274:1 277:2 284:1 311:1 344:1 364:4 366:6 371:1 376:2 392:1 400:1 406:1 417:1 423:1 430:1 440:1 441:1 442:1 448:1 467:4 470:1 475:1 493:3 502:1 528:1 547:1 548:2 559:2 569:1 576:1 584:2 592:1 611:1 633:1 667:1 678:1 697:1 700:1 703:4 706:1 717:1 730:1 791:1 800:3 801:3 802:1 805:3 868:1 874:1 877:1 884:1 885:1 919:1 932:1 936:1 939:4 950:1 984:1 1000:1 1015:1 1018:2 1028:1 1031:2 1046:1 1081:2 1082:1 1116:1 1134:1 1142:1 1146:1 1186:1 1237:1 1241:2 1252:1 1256:3 1273:1 1310:1 1330:1 1331:5 1334:2 1382:1 1419:2 1428:1 1432:1 1442:2 1445:1 1467:3 1468:3 1487:1 1499:1 1510:1 1525:1 1535:1 1536:1 1545:1 1565:1 1571:1 1578:1 1585:1 1596:1 1601:1 1609:1 1637:1 1640:1 1647:4 1658:1 1721:1 1773:1 1777:1 1786:1 1796:1 1797:2 1818:1 1830:1 1834:1 1839:2 1843:2 1845:1 1846:1 1847:1 1854:1 1858:3 1860:1 1867:1 1875:2 1880:1 1921:1 1934:1 1942:1 1943:1 1945:3 1969:1 1980:2 2003:1 2004:3 2016:1 2084:1 2089:1 2100:4 2117:1 2149:3 2157:3 2186:1 2189:1 2198:1 2201:1 2203:1 2205:1 2230:1 2235:1 2251:2 2253:3 2280:2 2282:2 2313:1 2315:1 2327:2 2329:1 2355:1 2358:4 2369:1 2379:1 2385:1 2399:1 2407:2 2423:1 2455:2 2456:1 2504:5 2509:1 2524:4 2533:4 2536:1 2563:7 2572:2 2598:4 2600:5 2630:1 2632:3 2642:1 2656:1 2657:1 2658:3 2665:1 2666:1 2671:1 2701:1 2737:1 2747:1 2751:2 2761:1 2782:2 2788:1 2789:1 2812:1 2814:1 2816:1 2817:2 2822:1 2824:1 2831:4 2851:1 2887:1 2903:1 2905:3 2912:1 2917:1 2923:3 2930:1 2931:1 2933:2 2937:1 2943:1 2961:2 2971:1 2989:1 2992:1 2998:1 3028:4 3043:1 3044:1 3046:2 3047:2 3048:1 3049:1 3053:1 3068:1 3069:2 3071:3 3082:2 3083:1 3093:1 3094:1 3110:1 3116:3 3123:4 3125:1 3133:1 3142:3 3144:1 3146:1 3149:2 3156:1 3168:1 3169:1 3210:2 3212:1 3215:1 3231:1 3250:1 3267:1 3272:1 3281:5 3294:1 3295:1 3306:1 3316:2 3327:1 3328:1 3329:1 3357:2 3358:2 3390:1 3400:1 3420:1 3431:1 3446:1 3456:2 3458:1 3474:1 3489:1 3493:1 3501:1 3507:1 3510:2 3512:1 3518:2 3521:1 3536:1 3558:1 3560:3 3562:1 3568:2 3581:3 3588:2 3599:1 3607:1 3609:1 3629:1 3631:2 3633:1 3638:2 3642:1 3655:1 3671:1 3692:1 3706:3 3707:2 3726:7 3731:1 3732:1 3733:1 3738:1 3751:1 3753:1 3763:1 3766:1 3775:1 3777:4 3788:1 3811:2 3819:1 3820:1 3830:1 3836:1 3841:1 3871:1 3873:1 3879:1 3886:2 3905:3 3919:1 3920:2 3927:1 3948:1 3966:3 3972:1 3975:1 3989:1 3991:1 3994:1 3997:1 3998:1 3999:1 4002:1 4013:2 4019:3 4026:1 4033:5 4037:2 4054:1 4059:1 4067:1 4071:20 4072:1 4079:1 4091:2 4096:1 4098:1 4114:1 4128:1 4129:1 4131:7 4140:1 4145:4 4152:3 4160:1 4162:1 4168:1 4169:2 4194:1 4195:1 4197:1 4210:3 4211:1 4213:1 4225:2 4249:1 4251:1 4253:1 4257:1 4270:1 4294:3 4301:1 4305:2 4307:1 4324:1 4331:1 4348:3 4349:2 4366:1 4378:1 4412:1 4427:1 4436:1 4441:1 4471:1 4483:1 4486:1 4502:1 4510:1 4544:1 4553:1 4556:1 4568:2 4622:2 4641:1 4658:2 4667:1 4676:2 4683:1 4686:4 4692:7 4699:1 4708:1 4733:1 4751:1 4762:2 4766:1 4771:2 4772:1 4778:1 4794:1 4795:3 4827:1 4831:1 4834:3 4837:1 4847:1 4851:7 4900:1 4910:1 4940:1 4959:1 4960:1 4982:3 4989:2 5001:1 5006:2 5016:1 5023:2 5025:1 5039:1 5040:1 5052:1 5058:4 5067:16 5074:1 5083:1 5131:1 5132:1 5135:1 5153:2 5157:1 5185:1 5193:1 5200:1 5203:4 5227:1 5228:1 5231:1 5236:1 5241:3 5247:1 5256:3 5266:3 5271:5 5288:1 5313:1 5362:1 5365:2 5366:2 5372:1 5375:1 5387:1 5394:2 5402:1 5406:1 5408:1 5413:1 5416:1 5433:1 5437:1007 5456:1 5458:1 5460:2 5462:1 5468:1 5507:1 5509:2 5518:1 5530:1 5583:1 5604:1 5625:1 5637:1 5644:1 5657:1 5661:1 5672:1 5691:2 5697:2 5714:1 5751:1 5756:2 5757:1 5762:1 5763:1 5765:3 5767:1 5771:3 5775:1 5778:1 5780:3 5785:1 5813:1 5856:1 5867:1 5874:1 5879:1 5886:1 5893:2 5904:1 5911:2 5912:1 5932:8 5944:1 5962:1 5974:1 5984:8 5996:1 5997:1 6055:1 6090:1 6092:2 6110:1 6111:1 6133:1 6174:1 6233:1 6307:1 6311:2 6316:3 6317:1 6321:1 6325:1 6339:3 6352:2 6354:1 6420:2 6425:3 6450:1 6452:1 6453:1 6458:1 6489:1 6502:4 6508:1 6511:4 6517:4 6520:2 6541:2 6543:1 6586:1 6588:1 6609:1 6615:2 6660:1 6668:1 6675:12 6680:1 6683:4 6688:1 6694:8 6725:2 6746:1 6747:1 6749:1 6752:4 6765:1 6822:1 6829:1 6837:1 6845:4 6866:1 6867:3 6868:1 6876:1 6880:1 6891:1 6902:2 6903:1 6905:1 6931:2 6945:3 6956:2 6988:1 7000:1 7008:2 7013:1 7016:1 7024:1 7078:1 7079:1 7112:1 7113:1 7129:1 7142:1 7148:4 7156:1 7160:5 7161:1 7185:3 7205:1 7258:1 7263:1 7266:3 7268:1 7277:1 7287:1 7295:2 7297:1 7361:1 7400:1 7402:1 7403:1 7414:2 7425:1 7441:1 7459:3 7466:1 7474:3 7490:2 7497:1 7512:1 7513:1 7525:1 7526:4 7539:1 7548:1 7571:1 7582:2 7585:1 7591:1 7595:1 7601:1 7611:1 7615:1 7622:1 7623:1 7630:1 7631:1 7641:1 7652:1 7653:1 7664:1 7678:1 7690:1 7703:4 7767:1 7769:2 7770:1 7782:3 7783:2 7788:2 7790:1 7794:1 7800:1 7804:1 7825:1 7829:1 7849:1 7852:1 7886:1 7898:4 7930:1 7941:1 7951:2 7975:1 7977:1 7989:1 8016:1 8032:1 8033:1 8055:2 8080:2 8091:1 8125:1 8162:1 8190:2 8210:1 8246:2 8278:1 8290:1 8311:1 8328:1 8334:2 8364:2 8373:1 8379:1 8386:1 8388:1 8398:1 8458:1 8465:1 8473:1 8479:1 8533:1 8541:1 8545:4 8556:1 8589:5 8590:1 8609:1 8642:1 8643:1 8644:3 8650:2 8652:1 8657:1 8663:1 8670:1 8691:1 8712:5 8717:2 8718:1 8736:1 8745:4 8774:1 8777:1 8784:2 8794:1 8810:2 8820:4 8824:3 8825:1 8831:1 8835:2 8836:1 8840:1 8846:4 8847:5 8849:1 8851:1 8853:3 8911:1 8918:1 8925:1 8950:1 8997:1 9013:1 9027:1 9041:6 9046:1 9058:1 9061:1 9074:2 9082:1 9091:1 9131:1 9138:1 9153:1 9158:4 9176:1 9204:1 9207:1 9212:2 9213:1 9214:1 9216:1 9234:1 9241:1 9302:1 9308:1 9315:1 9318:1 9321:1 9333:1 9337:2 9344:1 9346:1 9347:1 9355:1 9387:1 9392:1 9402:2 9410:1 9425:4 9441:1 9478:1 9503:1 9509:7 9513:1 9517:1 9518:1 9521:1 9535:1 9538:2 9543:2 9544:1 9555:3 9558:4 9563:1 9575:1 9582:1 9585:1 9592:6 9607:1 9609:1 9624:1 9628:1 9632:1 9634:3 9646:1 9658:2 9669:2 9674:1 9678:1 9689:1 9694:1 9696:3 9715:2 9718:1 9723:2 9726:1 9732:1 9754:1 9755:1 9762:2 9780:1 9781:1 9782:3 9828:1 9830:3 9841:2 9846:1 9865:1 9888:1 9916:2 9918:2 9920:1 9925:1 9930:1 9945:1 9946:1 9960:1 9967:1 9995:3 9999:1 10016:1 10029:1 10042:1 10093:2 10160:1 10163:1 10168:1 10209:1 10220:1 10223:1 10224:2 10233:2 10236:1 10266:1 10269:1 10275:1 10277:1 10278:1 10294:1 10299:1 10313:1 10323:2 10341:1 10363:1 10367:1 10376:1 10382:1 10387:1 10397:2 10409:1 10410:4 10453:1 10465:1 10478:1 10490:1 10512:1 10517:2 10536:1 10593:1 10607:1 10611:1 10613:1 10615:1 10625:1 10648:3 10682:2 10683:1 10717:2 10718:3 10736:1 10737:2 10743:1 10744:6 10751:1 10760:1 10774:1 10783:1 10789:1 10790:1 10791:1 10796:1 10812:17 10814:1 10833:1 10838:1 10841:1 10843:4 10855:2 10866:1 10871:3 10901:1 10903:1 10908:1 10940:2 10942:1 10981:5 10983:1 10990:1 10998:5 11002:1 11022:1 11033:1 11034:2 11037:1 11038:1 11072:2 11082:2 11110:1 11113:1 11125:4 11150:2 11164:1 11170:1 11190:1 11228:1 11229:1 11247:4 11248:1 11260:2 11300:1 11301:2 11332:1 11340:1 11342:2 11347:1 11354:1 11363:2 11379:1 11382:3 11401:3 11403:1 11423:4 11431:1 11436:5 11485:1 11487:1 11509:1 11528:1 11530:1 11569:1 11584:3 11594:2 11597:3 11618:1 11620:2 11621:1 11625:1 11651:2 11658:1 11691:2 11709:6 11711:1 11714:1 11722:1 11727:1 11728:1 11737:1 11747:1 11758:1 11764:1 11771:1 11776:1 11779:1 11782:1 11785:5 11786:2 11788:1 11799:4 11842:1 11849:1 11854:1 11888:2 11898:1 11913:1 11916:1 11921:1 11943:1 11947:1 11949:1 11950:2 11990:3 11995:1 12004:4 12011:1 12014:1 12021:1 12022:1 12024:3 12025:1 12032:1 12035:2 12038:1 12042:1 12046:1 12063:1 12077:1 12094:1 12095:1 12102:1 12110:1 12118:1 12128:3 12129:1 12133:1 12137:2 12183:1 12196:7 12205:1 12211:1 12213:1 12257:1 12262:1 12323:1 12344:1 12345:1 12366:1 12379:1 12382:1 12401:2 12418:8 12435:1 12444:1 12457:1 12466:1 12467:5 12477:1 12481:1 12486:1 12495:2 12501:4 12502:3 12503:2 12505:1 12506:1 12511:1 12512:2 12548:1 12554:1 12557:3 12572:1 12594:1 12614:1 12630:1 12652:3 12664:5 12674:1 12715:1 12716:1 12727:1 12733:1 12739:1 12757:1 12762:2 12779:1 12781:1 12839:1 12856:1 12857:1 12861:1 12879:2 12913:1 12929:1 12932:1 12950:1 12962:1 12974:7 12981:1 12984:1 12991:1 13001:1 13007:1 13012:1 13021:1 13052:1 13069:3 13076:1 13090:2 13091:2 13108:1 13118:1 13153:1 13159:1 13163:1 13195:1 13197:1 13198:1 13228:1 13259:1 13275:1 13276:1 13278:1 13281:1 13299:2 13311:1 13328:1 13336:2 13342:1 13346:1 13348:2 13354:1 13356:1 13359:1 13388:1 13405:1 13411:1 13412:6 13413:1 13423:1 13425:2 13430:3 13431:2 13434:2 13436:1 13439:1 13441:4 13449:1 13450:2 13451:3 13453:5 13466:1 13474:4 13475:2 13493:1 13498:3 13502:3 13512:3 13532:4 13534:1 13555:1 13585:1 13599:1 13600:6 13606:4 13610:5 13612:1 13630:1 13635:1 13636:2 13640:1 13650:1 13654:1 13680:1 13696:1 13702:5 13703:1 13711:1 13741:1 13747:2 13756:6 13789:1 13810:3 13817:1 13821:1 13823:1 13824:4 13844:1 13845:1 13863:1 13875:1 13886:1 13889:1 13892:1 13898:1 13902:3 13908:4 13937:3 13944:1 13955:1 13957:1 13974:4 13992:1 14002:2 14073:1 14079:1 14088:1 14096:3 14100:5 14133:4 14148:3 14181:7 14257:1 14262:1 14271:1 14274:1 14286:1 14289:1 14293:5 14296:4 14299:1 14325:1 14339:1 14364:1 14366:1 14381:1 14383:1 14402:1 14411:1 14420:1 14422:1 14436:2 14452:3 14474:2 14515:2 14519:3 14525:6 14527:1 14555:2 14559:2 14581:1 14583:3 14590:4 14592:1 14594:5 14601:2 14608:2 14609:3 14610:1 14644:1 14663:1 14672:1 14681:4 14692:1 14694:2 14708:1 14718:1 14757:1 14770:2 14798:1 14814:1 14826:4 14828:1 14829:1 14830:1 14845:1 14854:1 14868:1 14873:1 14884:4 14887:1 14897:1 14900:1 14903:1 14909:3 14920:1 14935:1 14965:2 14968:3 14979:2 14980:2 14994:1 15004:1 15005:2 15019:2 15030:1 15040:1 15068:1 15085:4 15089:4 15113:1 15117:2 15131:1 15134:2 15170:1 15177:1 15188:1 15195:1 15206:3 15235:1 15243:1 15274:2 15290:5 15396:1 15421:1 15445:1 15480:1 15486:1 15497:1 15502:1 15523:1 15546:2 15547:1 15568:5 15576:2 15585:1 15613:2 15618:3 15628:1 15629:1 15633:1 15637:3 15666:7 15693:2 15696:5 15698:2 15712:2 15713:1 15724:1 15728:1 15731:1 15745:1 15747:2 15752:7 15756:1 15771:1 15772:1 15773:1 15789:1 15799:1 15829:1 15836:1 15854:1 15863:1 15864:1 15934:1 15937:1 15959:2 15962:1 15966:1 15976:1 15978:16 15986:2 15990:2 15996:2 16006:4 16008:1 16016:3 16017:1 16022:1 16029:1 16072:1 16077:1 16106:1 16110:1 16122:1 16127:1 16139:1 16160:1 16175:1 16179:1 16183:2 16187:1 16206:1 16217:1 16221:5 16235:1 16243:1 16263:1 16264:1 16271:1 16288:1 16338:1 16343:1 16344:1 16345:1 16346:1 16356:1 16358:1 16366:1 16380:1 16388:1 16389:2 16400:1 16418:1 16434:3 16482:1 16515:3 16532:1 16540:1 16571:1 16582:5 16584:1 16594:2 16595:2 16597:2 16616:1 16655:1 16666:5 16675:1 16679:2 16691:1 16694:1 16716:1 16717:1 16732:1 16740:1 16760:1 16806:1 16812:3 16822:5 16834:1 16883:1 16894:1 16902:2 16918:1 16932:1 16937:1 16942:1 16945:1 16946:1 16964:1 16967:2 17010:1 17014:1 17019:1 17027:1 17039:1 17040:1 17059:1 17067:1 17072:4 17094:1 17104:1 17106:4 17125:1 17128:2 17140:1 17161:1 17192:1 17202:1 17207:2 17213:1 17239:1 17242:1 17251:4 17252:1 17270:3 17306:4 17324:4 17342:1 17353:1 17362:1 17370:1 17380:1 17388:1 17389:1 17394:1 17408:16 17423:2 17436:4 17437:1 17438:1 17444:2 17474:3 17475:1 17486:2 17493:2 17495:4 17504:1 17507:1 17508:1 17510:1 17519:1 17524:1 17544:1 17552:1 17572:1 17573:1 17576:1 17583:2 17590:1 17615:2 17631:1 17672:1 17680:1 17684:1 17687:3 17696:1 17723:1 17753:1 17779:1 17780:1 17787:1 17802:2 17815:1 17817:1 17820:1 17846:1 17877:1 17878:1 17886:1 17890:1 17891:5 17894:1 17912:3 17968:1 17990:1 18000:1 18009:1 18017:2 18022:1 18058:1 18068:6 18075:2 18098:1 18100:2 18108:1 18131:1 18132:1 18143:1 18144:1 18148:1 18168:1 18176:2 18193:1 18198:2 18210:1 18221:1 18230:1 18233:1 18246:1 18249:4 18253:1 18266:1 18269:1 18271:1 18310:1 18319:1 18325:2 18326:1 18343:1 18344:2 18355:4 18366:1 18380:1 18387:1 18389:4 18392:15 18393:1 18398:1 18412:1 18419:1 18442:4 18473:3 18498:1 18509:1 18516:1 18557:2 18563:1 18584:1 18589:1 18612:1 18613:1 18636:2 18643:5 18657:1 18690:3 18693:1 18699:1 18713:3 18722:2 18735:1 18751:4 18753:3 18766:1 18767:1 18788:1 18792:1 18799:1 18801:3 18811:2 18819:2 18834:2 18850:1 18852:1 18860:1 18874:1 18877:1 18899:1 18907:1 18914:1 18934:1 18945:1 18947:1 18953:1 18956:1 18960:1 18966:1 18978:1 19001:4 19005:1 19007:1 19015:1 19020:4 19021:2 19031:1 19032:1 19035:2 19050:1 19057:1 19098:1 19130:4 19132:1 19165:2 19171:1 19174:1 19177:4 19278:2 19280:1 19311:2 19312:1 19358:2 19360:1 19365:1 19369:1 19398:1 19412:1 19458:2 19465:2 19470:2 19526:2 19528:1 19559:1 19600:2 19604:1 19606:1 19615:1 19618:1 19619:1 19627:1 19659:2 19661:1 19664:1 19672:1 19673:1 19674:4 19687:1 19692:1 19718:1 19740:1 19762:1 19818:2 19823:1 19824:5 19831:1 19856:1 19869:1 19878:1 19888:1 19918:1 19919:1 19957:1 19996:1 20003:1 20033:1 20052:1 20060:4 20082:1 20097:1 20126:3 20150:1 20158:1 20177:2 20178:1 20185:1 20207:2 20215:3 20247:1 20255:1 20263:2 20270:1 20271:1 20276:1 20311:1 20330:1 20342:1 20350:1 20388:2
14 8:1 20:1 69:1 73:1 88:5 113:1 115:2 116:2 118:1 131:1 133:1 134:1 140:4 143:1 148:1 162:1 183:1 191:1 272:1 274:1 277:2 282:1 284:1 307:1 311:1 344:1 364:4 366:6 371:1 374:1 376:2 392:1 400:1 406:1 417:1 423:1 430:1 440:1 441:1 442:1 448:1 467:4 470:1 475:1 493:3 502:1 528:1 547:1 548:3 559:2 569:1 576:2 584:2 592:1 611:1 633:1 667:1 678:1 697:2 700:1 703:4 706:1 717:1 730:1 791:1 800:4 801:3 802:1 805:4 868:1 874:1 877:1 884:1 885:1 919:1 932:1 936:1 939:4 950:1 984:1 1000:1 1014:1 1015:1 1018:2 1028:1 1031:2 1046:1 1060:1 1081:2 1082:1 1116:1 1134:1 1142:1 1146:1 1186:1 1237:1 1241:2 1252:1 1256:3 1273:1 1310:1 1330:2 1331:6 1334:2 1382:1 1419:2 1428:1 1432:1 1442:2 1445:2 1467:3 1468:3 1487:1 1499:2 1510:1 1525:1 1535:1 1536:1 1545:1 1565:1 1571:1 1578:1 1585:2 1596:1 1601:1 1609:2 1637:1 1640:1 1647:4 1653:1 1658:1 1675:1 1721:1 1758:1 1773:1 1777:2 1786:1 1796:1 1797:2 1818:1 1830:1 1834:1 1839:2 1843:2 1845:2 1846:1 1847:1 1854:1 1858:3 1860:1 1867:1 1875:2 1880:1 1912:1 1921:1 1934:1 1942:1 1943:1 1945:3 1969:1 1980:2 2003:1 2004:3 2016:1 2084:1 2089:1 2100:4 2117:1 2149:3 2157:3 2186:1 2189:1 2198:1 2201:1 2203:1 2205:1 2230:1 2235:1 2251:2 2253:3 2280:2 2282:2 2313:1 2315:1 2327:2 2329:1 2355:1 2358:4 2369:1 2379:2 2385:1 2399:1 2407:2 2423:1 2455:2 2456:1 2504:5 2509:1 2524:4 2533:5 2536:1 2563:7 2572:2 2598:4 2600:5 2630:1 2632:3 2642:1 2656:1 2657:1 2658:3 2665:1 2666:1 2671:1 2701:1 2726:1 2737:1 2747:1 2751:2 2761:1 2782:3 2788:1 2789:1 2812:1 2814:1 2816:1 2817:2 2822:1 2824:1 2831:4 2851:1 2887:1 2903:1 2905:3 2912:1 2917:1 2923:3 2930:1 2931:1 2933:2 2937:1 2943:1 2961:2 2971:1 2982:1 2983:1 2989:1 2992:1 2998:1 3001:1 3028:4 3043:1 3044:1 3046:2 3047:2 3048:1 3049:1 3053:1 3068:1 3069:2 3071:3 3082:2 3083:1 3093:1 3094:1 3110:2 3116:4 3123:4 3125:1 3126:1 3133:1 3136:1 3142:3 3144:1 3146:1 3149:3 3156:1 3168:1 3169:1 3202:1 3210:2 3212:1 3215:1 3231:1 3250:1 3267:1 3272:1 3281:5 3294:1 3295:1 3306:1 3316:2 3327:1 3328:1 3329:1 3357:2 3358:2 3390:1 3400:1 3420:1 3431:1 3446:1 3456:2 3458:1 3474:1 3489:1 3493:1 3501:1 3507:1 3510:2 3512:1 3518:2 3521:1 3536:1 3558:1 3560:3 3562:1 3568:2 3578:1 3581:3 3587:1 3588:2 3599:1 3607:1 3609:1 3629:1 3631:2 3633:1 3638:2 3642:1 3655:1 3671:1 3692:1 3706:4 3707:2 3726:7 3731:1 3732:1 3733:1 3738:1 3751:1 3753:2 3763:1 3766:1 3775:1 3777:4 3788:1 3811:2 3819:1 3820:1 3830:1 3836:1 3841:1 3871:1 3873:1 3879:1 3886:2 3905:3 3919:1 3920:2 3927:1 3948:1 3966:3 3972:1 3975:1 3989:1 3991:1 3994:1 3997:1 3998:1 3999:1 4002:1 4013:2 4019:3 4026:1 4033:5 4037:3 4054:1 4058:1 4059:1 4067:1 4071:21 4072:1 4079:1 4091:2 4096:1 4098:1 4114:1 4128:1 4129:1 4131:7 4140:1 4144:1 4145:5 4152:3 4160:1 4162:1 4168:1 4169:2 4194:1 4195:2 4196:1 4197:1 4210:3 4211:1 4213:1 4225:3 4249:1 4251:1 4253:1 4257:1 4270:2 4294:4 4301:1 4305:2 4307:1 4324:1 4331:1 4343:1 4348:3 4349:2 4366:1 4378:1 4412:1 4427:3 4436:2 4441:1 4471:1 4483:1 4486:1 4502:1 4510:1 4544:1 4549:1 4553:1 4556:1 4568:2 4622:2 4635:1 4641:1 4658:2 4667:1 4676:2 4683:1 4686:5 4692:7 4699:2 4708:1 4733:1 4751:1 4762:2 4766:1 4771:2 4772:1 4778:1 4794:1 4795:3 4827:1 4831:1 4834:3 4837:1 4847:1 4851:7 4900:1 4910:1 4937:1 4940:1 4959:1 4960:1 4982:3 4989:3 5001:1 5006:2 5016:1 5018:1 5023:2 5025:1 5039:1 5040:1 5052:1 5058:5 5067:19 5074:1 5083:1 5097:1 5131:1 5132:1 5135:1 5153:2 5157:1 5185:1 5193:1 5200:1 5203:4 5227:1 5228:1 5231:1 5236:1 5241:3 5247:1 5256:3 5266:3 5271:5 5288:1 5313:1 5362:1 5365:2 5366:2 5372:1 5375:1 5387:1 5394:2 5402:1 5406:1 5408:1 5413:1 5416:1 5433:1 5437:1086 5456:1 5458:1 5460:2 5462:1 5468:1 5507:1 5509:2 5518:1 5530:1 5583:1 5600:1 5604:1 5625:1 5637:1 5644:1 5657:1 5661:1 5672:1 5691:2 5697:2 5714:1 5751:1 5753:1 5756:2 5757:1 5762:1 5763:1 5765:3 5767:1 5771:3 5775:1 5778:1 5780:4 5785:1 5813:2 5856:1 5867:1 5874:1 5879:1 5886:1 5893:2 5904:1 5911:2 5912:1 5932:9 5944:1 5962:1 5974:1 5984:8 5996:1 5997:1 6020:1 6055:1 6090:1 6092:2 6110:1 6111:1 6133:1 6174:1 6208:1 6233:1 6307:1 6311:2 6316:3 6317:1 6321:1 6325:1 6339:3 6352:2 6354:1 6420:4 6425:3 6450:1 6452:1 6453:1 6458:1 6489:1 6502:4 6508:1 6511:4 6517:4 6520:2 6541:3 6543:1 6586:1 6588:1 6609:1 6615:2 6660:1 6668:1 6675:12 6680:1 6683:4 6688:1 6694:8 6725:2 6746:1 6747:1 6749:1 6752:4 6765:1 6822:1 6829:1 6837:1 6845:5 6866:1 6867:3 6868:1 6876:1 6880:1 6891:1 6902:2 6903:1 6905:1 6931:2 6945:3 6956:2 6988:1 7000:1 7008:2 7013:1 7016:1 7024:1 7078:1 7079:1 7112:1 7113:1 7129:1 7142:1 7148:4 7156:1 7160:5 7161:1 7185:3 7205:1 7258:1 7263:1 7266:3 7268:1 7277:1 7287:1 7295:2 7297:1 7361:1 7400:1 7402:1 7403:1 7414:2 7425:1 7441:1 7459:3 7466:1 7474:3 7488:1 7490:2 7497:1 7512:1 7513:1 7515:1 7525:1 7526:4 7539:1 7548:1 7571:1 7582:2 7585:1 7591:1 7595:1 7601:1 7611:1 7615:1 7622:1 7623:1 7630:1 7631:1 7641:1 7652:1 7653:1 7664:1 7670:1 7678:1 7690:1 7703:4 7767:1 7769:2 7770:1 7782:3 7783:2 7788:2 7790:1 7794:1 7800:1 7804:1 7825:1 7829:1 7849:1 7852:1 7872:1 7886:1 7898:4 7930:1 7941:1 7951:2 7975:1 7977:1 7989:1 8016:1 8032:1 8033:1 8055:2 8080:2 8091:1 8125:1 8162:1 8190:2 8210:1 8246:2 8278:1 8290:1 8311:1 8328:1 8334:2 8364:2 8373:1 8379:1 8386:1 8388:1 8398:1 8458:1 8465:1 8473:1 8479:1 8533:1 8541:1 8545:4 8556:1 8589:5 8590:1 8609:1 8642:1 8643:1 8644:3 8650:2 8651:1 8652:1 8657:1 8663:1 8670:1 8691:1 8712:5 8717:2 8718:1 8736:1 8745:6 8774:1 8777:1 8784:2 8794:1 8810:2 8820:4 8824:3 8825:1 8831:2 8835:2 8836:1 8840:1 8846:4 8847:5 8849:1 8851:3 8853:3 8911:1 8918:1 8925:1 8950:1 8997:1 9013:1 9027:1 9041:7 9046:1 9058:1 9061:1 9074:2 9082:2 9091:1 9131:1 9138:1 9153:1 9158:4 9176:1 9204:1 9207:1 9212:2 9213:1 9214:1 9216:1 9234:1 9241:1 9245:1 9302:1 9308:1 9315:1 9318:1 9321:1 9333:1 9337:3 9344:1 9346:1 9347:1 9355:1 9387:1 9392:1 9402:2 9410:1 9425:4 9441:1 9478:1 9503:1 9509:7 9513:1 9517:1 9518:1 9521:1 9535:1 9538:2 9543:2 9544:1 9555:3 9558:4 9563:1 9575:1 9582:1 9585:1 9592:6 9607:3 9609:1 9624:1 9628:1 9632:1 9634:3 9646:1 9658:2 9669:2 9674:1 9678:1 9689:1 9694:1 9696:3 9715:2 9718:1 9723:2 9726:1 9732:1 9754:1 9755:1 9762:2 9780:1 9781:1 9782:3 9828:1 9830:3 9841:2 9846:1 9865:1 9888:1 9916:2 9918:2 9920:1 9925:1 9930:1 9945:1 9946:1 9956:1 9960:1 9967:1 9995:3 9999:1 10010:1 10016:1 10029:1 10042:1 10093:2 10150:1 10160:1 10163:1 10168:1 10182:1 10209:1 10220:1 10223:2 10224:2 10233:2 10236:1 10266:1 10269:1 10275:1 10277:1 10278:1 10294:1 10299:1 10313:1 10323:2 10341:1 10363:1 10367:1 10376:1 10382:1 10387:1 10397:2 10409:1 10410:4 10453:1 10465:1 10466:1 10478:1 10490:1 10512:1 10517:2 10536:1 10593:1 10607:1 10611:1 10613:1 10615:1 10625:1 10648:3 10682:2 10683:1 10717:2 10718:3 10736:1 10737:2 10743:1 10744:6 10751:2 10760:1 10774:1 10783:1 10789:1 10790:1 10791:1 10796:1 10812:21 10814:1 10833:1 10838:1 10841:1 10843:4 10855:3 10866:1 10871:3 10901:1 10903:1 10908:1 10940:3 10942:1 10946:1 10981:5 10983:1 10990:1 10998:5 11002:1 11022:1 11033:1 11034:2 11037:1 11038:1 11072:2 11082:2 11110:1 11113:1 11125:4 11131:1 11150:2 11164:1 11170:1 11190:1 11228:1 11229:1 11247:4 11248:1 11260:2 11300:1 11301:2 11322:1 11332:1 11340:1 11342:2 11347:1 11354:1 11363:2 11379:1 11382:3 11401:3 11403:1 11417:1 11423:4 11431:1 11436:6 11457:1 11485:1 11487:1 11509:1 11528:1 11530:1 11569:1 11584:3 11594:2 11597:3 11618:1 11620:2 11621:1 11625:1 11651:2 11656:1 11658:1 11691:2 11709:6 11711:1 11714:1 11722:1 11727:1 11728:1 11737:1 11747:1 11758:1 11764:1 11771:2 11776:1 11779:1 11782:1 11785:5 11786:2 11788:1 11799:4 11842:1 11849:1 11854:1 11888:2 11898:1 11913:1 11916:1 11921:1 11943:1 11947:1 11949:1 11950:2 11987:1 11990:3 11995:1 11997:1 12004:4 12011:1 12014:1 12021:1 12022:1 12024:3 12025:1 12032:1 12035:2 12038:1 12042:1 12046:1 12063:1 12077:1 12094:1 12095:1 12102:1 12110:1 12118:1 12128:3 12129:1 12133:1 12137:2 12183:1 12196:8 12205:1 12211:1 12213:1 12240:1 12257:1 12262:1 12290:1 12323:1 12344:1 12345:1 12356:1 12366:1 12379:1 12382:1 12399:1 12401:2 12418:8 12423:1 12435:1 12436:1 12444:1 12457:1 12466:1 12467:5 12477:1 12481:1 12486:1 12495:2 12501:4 12502:3 12503:2 12505:1 12506:1 12511:1 12512:2 12548:1 12554:1 12557:3 12572:1 12594:1 12614:1 12630:1 12652:4 12664:5 12674:1 12715:1 12716:1 12727:1 12733:1 12739:1 12757:1 12762:2 12779:1 12781:1 12810:1 12839:1 12856:1 12857:1 12861:1 12879:2 12913:1 12929:2 12932:1 12950:1 12962:1 12974:8 12981:1 12984:1 12991:1 13001:1 13007:1 13008:1 13012:1 13021:1 13052:1 13069:3 13076:1 13090:2 13091:2 13108:2 13118:1 13153:1 13159:1 13163:1 13195:1 13197:1 13198:1 13228:1 13259:1 13275:1 13276:1 13278:1 13281:1 13288:1 13299:3 13311:1 13328:1 13336:2 13342:1 13346:1 13348:2 13354:1 13356:1 13359:1 13388:1 13405:1 13411:1 13412:6 13413:1 13423:1 13425:2 13430:3 13431:2 13434:2 13436:1 13439:1 13441:6 13449:1 13450:2 13451:4 13453:5 13466:1 13474:5 13475:3 13493:1 13498:4 13502:3 13512:3 13532:4 13534:1 13555:1 13585:1 13587:1 13599:1 13600:6 13606:4 13610:5 13612:1 13630:1 13635:1 13636:3 13640:1 13650:1 13654:1 13680:1 13696:1 13702:5 13703:1 13711:1 13721:1 13741:1 13747:2 13756:7 13789:1 13810:3 13817:1 13821:1 13823:1 13824:4 13844:1 13845:1 13863:1 13875:1 13886:1 13889:1 13892:1 13898:1 13902:3 13908:4 13937:3 13944:1 13955:1 13957:1 13974:4 13992:1 14002:2 14011:1 14013:1 14073:1 14079:1 14084:1 14088:1 14096:3 14100:5 14133:4 14148:3 14181:7 14257:1 14262:1 14271:1 14274:1 14286:1 14289:1 14293:5 14296:4 14299:1 14325:1 14339:1 14364:1 14366:1 14381:1 14383:1 14402:1 14411:1 14420:1 14422:1 14436:2 14452:3 14474:2 14484:1 14515:2 14519:5 14525:6 14527:1 14555:3 14559:2 14581:1 14583:3 14590:4 14592:1 14594:5 14601:2 14608:2 14609:3 14610:3 14644:1 14663:1 14672:1 14681:4 14692:1 14694:2 14708:1 14718:1 14757:1 14765:1 14770:2 14798:1 14814:1 14826:4 14828:1 14829:1 14830:1 14845:1 14854:1 14861:1 14868:1 14873:1 14884:4 14887:1 14897:1 14900:2 14903:1 14909:3 14920:1 14935:1 14962:1 14965:3 14968:3 14979:2 14980:2 14994:1 15004:1 15005:2 15019:2 15021:1 15030:1 15040:1 15068:1 15085:4 15089:5 15113:2 15117:2 15122:1 15131:1 15134:2 15170:1 15177:1 15188:1 15195:1 15206:3 15235:1 15243:1 15274:2 15290:5 15396:1 15421:1 15445:1 15480:1 15486:1 15497:1 15502:1 15503:1 15523:1 15546:2 15547:1 15568:5 15576:2 15585:1 15613:2 15618:3 15628:1 15629:1 15633:1 15637:3 15666:8 15693:2 15696:5 15698:2 15712:2 15713:1 15724:1 15727:1 15728:1 15731:1 15745:1 15747:2 15752:7 15756:1 15771:1 15772:1 15773:1 15789:1 15799:1 15829:1 15836:1 15854:1 15863:1 15864:1 15934:1 15937:1 15959:2 15962:1 15966:1 15976:1 15978:19 15986:2 15990:2 15996:2 16001:1 16006:4 16008:1 16016:3 16017:1 16022:1 16029:1 16072:1 16077:1 16106:1 16110:1 16122:1 16127:1 16139:1 16160:1 16175:1 16179:1 16183:2 16187:1 16206:1 16217:1 16221:5 16235:1 16243:1 16263:1 16264:1 16271:1 16288:1 16338:1 16343:1 16344:1 16345:1 16346:1 16356:1 16358:1 16366:1 16380:1 16388:1 16389:2 16400:1 16418:1 16434:3 16482:1 16515:3 16532:1 16540:1 16545:1 16571:1 16579:1 16582:6 16584:1 16594:2 16595:2 16597:2 16616:1 16655:1 16666:5 16675:1 16679:2 16691:1 16694:1 16716:2 16717:1 16732:1 16740:1 16760:1 16806:1 16812:3 16822:6 16834:1 16883:1 16894:1 16902:2 16918:1 16932:1 16937:2 16942:1 16945:1 16946:1 16964:1 16967:2 17010:1 17014:1 17019:1 17027:1 17039:1 17040:1 17059:1 17067:1 17072:4 17094:1 17104:1 17106:4 17125:1 17128:2 17140:1 17161:1 17192:1 17202:1 17207:3 17213:1 17239:2 17242:1 17251:4 17252:1 17270:3 17306:4 17324:5 17342:1 17353:1 17362:1 17370:1 17380:1 17388:1 17389:1 17394:1 17408:18 17423:2 17434:1 17436:4 17437:1 17438:1 17444:2 17474:3 17475:1 17486:2 17493:2 17495:4 17504:1 17507:1 17508:1 17510:1 17519:1 17524:1 17544:1 17552:1 17572:1 17573:1 17576:1 17583:2 17590:1 17615:2 17631:1 17672:1 17680:1 17684:1 17687:3 17696:1 17723:1 17753:1 17779:1 17780:1 17787:1 17802:2 17815:1 17817:1 17820:1 17846:1 17877:1 17878:1 17886:1 17889:1 17890:1 17891:5 17894:1 17912:3 17968:1 17990:1 18000:1 18009:1 18017:2 18022:1 18058:1 18068:6 18075:2 18098:2 18100:2 18108:1 18131:1 18132:1 18143:1 18144:1 18148:1 18168:1 18176:2 18193:1 18198:2 18210:1 18213:1 18221:1 18230:1 18233:1 18246:1 18249:4 18253:1 18266:1 18269:1 18271:1 18310:1 18319:1 18325:2 18326:1 18343:1 18344:2 18355:4 18366:1 18367:1 18380:1 18387:1 18389:5 18392:15 18393:1 18398:1 18412:1 18419:1 18442:4 18473:3 18498:1 18509:1 18516:1 18557:2 18563:2 18584:1 18589:1 18612:1 18613:1 18636:2 18643:5 18657:3 18686:1 18690:3 18693:1 18699:1 18713:4 18722:2 18735:1 18751:4 18753:4 18766:1 18767:1 18788:1 18792:1 18799:1 18801:4 18811:2 18819:2 18834:2 18838:1 18850:1 18852:1 18860:1 18874:1 18877:1 18899:1 18907:1 18914:1 18934:1 18945:1 18947:1 18953:2 18956:1 18960:1 18966:1 18978:1 19001:4 19005:1 19007:1 19015:1 19020:5 19021:2 19031:1 19032:1 19035:2 19050:1 19057:1 19098:1 19130:4 19132:1 19165:2 19171:1 19174:1 19177:4 19278:2 19280:1 19311:2 19312:1 19350:1 19358:2 19360:1 19365:1 19369:1 19386:1 19398:1 19412:1 19458:2 19465:2 19470:2 19526:2 19528:1 19559:1 19600:2 19604:1 19606:1 19607:1 19615:1 19618:1 19619:1 19627:1 19659:2 19661:1 19664:1 19672:1 19673:1 19674:4 19687:1 19692:1 19718:1 19740:1 19748:1 19762:1 19818:2 19823:1 19824:5 19831:1 19856:1 19869:1 19878:1 19888:1 19918:1 19919:1 19957:1 19996:1 20003:1 20033:1 20044:1 20052:1 20059:2 20060:4 20082:1 20097:1 20118:1 20126:3 20150:1 20158:1 20177:4 20178:1 20185:1 20207:2 20215:3 20247:1 20255:1 20263:2 20270:1 20271:1 20273:1 20276:1 20311:1 20330:1 20342:1 20350:1 20388:2
14 8:1 20:1 69:1 73:1 88:5 113:1 115:2 116:2 118:1 131:1 133:1 134:1 140:4 143:1 148:1 162:1 166:1 183:1 191:1 206:1 272:1 274:1 277:2 282:1 284:1 307:1 311:1 344:1 364:4 366:6 371:1 374:1 376:2 392:1 400:1 406:2 417:1 423:1 430:1 440:1 441:1 442:1 448:1 467:4 470:1 475:1 493:3 502:1 509:1 528:1 547:1 548:3 559:2 569:1 576:2 584:2 592:1 611:1 633:1 667:1 678:1 697:2 700:1 703:4 706:3 717:1 730:1 791:1 800:4 801:3 802:1 805:4 866:1 868:1 874:1 877:1 884:1 885:1 919:1 932:1 936:1 939:4 950:1 984:1 1000:1 1014:2 1015:1 1018:2 1028:1 1031:2 1046:1 1060:1 1079:1 1081:2 1082:1 1116:1 1134:1 1142:1 1146:1 1186:1 1237:1 1241:2 1252:1 1256:3 1273:1 1290:1 1310:1 1330:3 1331:6 1334:2 1382:1 1419:2 1428:1 1432:1 1438:1 1442:2 1445:2 1467:3 1468:3 1487:1 1499:2 1510:1 1525:1 1535:1 1536:1 1545:1 1565:1 1571:1 1578:1 1585:2 1596:1 1601:1 1609:2 1634:1 1637:1 1640:1 1647:5 1653:1 1658:1 1675:1 1721:1 1758:2 1773:1 1777:2 1786:1 1796:1 1797:2 1818:1 1827:1 1830:1 1834:1 1836:1 1839:2 1843:2 1845:2 1846:1 1847:1 1854:1 1858:4 1860:1 1865:1 1867:1 1875:2 1880:1 1912:2 1921:1 1934:1 1941:1 1942:1 1943:1 1945:3 1961:1 1969:1 1980:2 2003:2 2004:3 2016:1 2084:1 2089:1 2100:4 2117:1 2128:1 2149:4 2157:3 2186:1 2189:1 2198:1 2201:1 2203:1 2205:1 2230:1 2235:1 2251:3 2253:3 2280:2 2282:2 2313:1 2315:1 2327:3 2329:1 2355:1 2358:4 2369:1 2379:3 2385:1 2399:1 2407:2 2418:1 2423:1 2455:2 2456:1 2481:1 2504:5 2509:1 2524:4 2533:5 2536:1 2560:1 2563:7 2572:2 2598:4 2600:5 2630:1 2632:4 2642:1 2656:1 2657:1 2658:3 2661:1 2665:1 2666:1 2671:1 2701:1 2726:1 2737:1 2747:1 2751:2 2761:1 2782:3 2788:1 2789:2 2812:1 2814:1 2816:1 2817:3 2822:1 2824:1 2831:5 2851:1 2858:1 2887:1 2903:2 2905:3 2912:1 2917:1 2923:3 2930:1 2931:1 2933:2 2937:1 2943:1 2961:2 2971:1 2982:1 2983:2 2989:1 2992:1 2998:2 3001:2 3028:4 3043:1 3044:1 3046:2 3047:2 3048:1 3049:1 3053:1 3068:1 3069:2 3071:3 3082:2 3083:1 3093:1 3094:1 3110:2 3112:1 3116:4 3118:1 3123:5 3125:1 3126:1 3133:3 3136:1 3142:4 3144:1 3146:1 3149:3 3156:1 3168:1 3169:1 3202:1 3210:2 3212:1 3215:1 3231:1 3250:1 3267:1 3272:1 3281:5 3294:1 3295:1 3306:1 3316:2 3327:1 3328:1 3329:2 3352:1 3357:2 3358:2 3390:1 3400:1 3420:1 3431:1 3446:1 3456:2 3458:1 3474:1 3489:1 3493:1 3501:1 3507:1 3510:2 3512:1 3518:2 3521:1 3536:1 3558:1 3560:4 3562:1 3568:3 3578:1 3581:4 3583:1 3587:1 3588:2 3599:1 3607:1 3609:1 3629:1 3631:2 3633:1 3638:2 3642:1 3655:1 3671:1 3692:2 3706:4 3707:2 3726:7 3731:1 3732:1 3733:1 3738:1 3751:1 3753:2 3763:1 3766:1 3775:1 3777:4 3788:1 3811:3 3819:3 3820:1 3830:1 3836:1 3841:1 3871:1 3873:1 3879:1 3886:2 3905:3 3919:1 3920:2 3927:1 3948:1 3966:3 3972:1 3975:1 3989:1 3991:1 3994:1 3997:1 3998:1 3999:1 4002:1 4013:2 4019:3 4026:1 4033:5 4037:3 4054:1 4058:2 4059:1 4067:1 4071:23 4072:1 4079:1 4091:2 4096:1 4098:1 4114:1 4128:1 4129:1 4131:7 4140:1 4144:1 4145:5 4152:3 4160:1 4162:1 4168:1 4169:2 4194:1 4195:2 4196:1 4197:1 4203:1 4210:4 4211:1 4213:1 4225:3 4249:1 4251:1 4253:1 4257:1 4270:2 4294:4 4301:1 4305:2 4307:1 4324:1 4331:1 4343:1 4348:3 4349:2 4366:1 4378:1 4412:1 4427:3 4436:2 4441:1 4471:1 4483:1 4486:1 4500:1 4502:1 4510:1 4544:1 4549:2 4553:2 4556:1 4568:2 4622:2 4635:1 4641:2 4658:2 4667:1 4676:2 4683:1 4686:5 4692:7 4699:3 4708:1 4733:1 4751:1 4762:2 4766:1 4771:2 4772:1 4778:1 4779:1 4794:1 4795:3 4827:1 4831:1 4834:4 4837:1 4847:1 4851:7 4869:1 4900:1 4910:1 4914:2 4937:1 4940:1 4959:1 4960:1 4982:3 4989:3 5001:1 5006:2 5016:1 5018:1 5023:2 5025:1 5039:1 5040:1 5052:1 5058:5 5067:22 5074:1 5083:1 5097:1 5112:1 5131:1 5132:1 5135:1 5153:2 5157:1 5185:1 5193:1 5200:1 5203:5 5227:1 5228:1 5231:1 5236:1 5241:3 5247:1 5256:3 5266:3 5271:5 5288:1 5313:1 5362:1 5364:1 5365:2 5366:2 5372:1 5375:1 5387:1 5394:3 5402:1 5406:1 5408:1 5413:1 5416:1 5433:1 5437:1201 5443:1 5456:1 5458:1 5460:2 5462:1 5468:1 5507:2 5509:2 5518:1 5520:1 5530:1 5583:1 5600:1 5604:1 5625:1 5637:1 5644:1 5657:1 5661:1 5672:1 5673:1 5691:3 5697:2 5714:1 5751:1 5753:2 5756:2 5757:1 5762:1 5763:1 5765:3 5767:1 5771:3 5775:1 5778:1 5780:4 5785:1 5813:2 5856:1 5867:1 5874:1 5879:1 5886:1 5893:2 5904:1 5911:2 5912:1 5932:9 5944:1 5962:2 5974:1 5984:8 5996:2 5997:1 6020:1 6055:1 6090:1 6092:2 6110:1 6111:1 6133:1 6174:1 6208:1 6232:1 6233:1 6307:1 6311:2 6316:3 6317:1 6321:1 6325:1 6339:3 6349:1 6352:2 6354:1 6420:5 6425:3 6450:1 6451:1 6452:1 6453:1 6458:1 6489:1 6502:4 6508:1 6511:4 6517:5 6520:2 6541:3 6543:1 6586:1 6588:1 6609:1 6615:2 6660:1 6662:1 6668:1 6675:12 6680:1 6683:4 6688:1 6694:8 6725:2 6736:1 6746:1 6747:2 6749:1 6752:4 6765:1 6801:1 6822:1 6829:1 6837:1 6845:6 6866:1 6867:3 6868:1 6876:1 6879:1 6880:1 6885:1 6891:1 6902:2 6903:1 6905:1 6931:2 6945:3 6953:1 6956:2 6957:1 6988:1 7000:1 7008:2 7013:1 7016:1 7024:1 7078:1 7079:1 7112:1 7113:1 7129:1 7142:1 7148:4 7156:1 7160:5 7161:1 7185:3 7205:1 7258:1 7263:1 7266:3 7268:1 7277:1 7287:1 7295:2 7297:1 7361:1 7400:2 7402:1 7403:1 7414:2 7425:1 7427:1 7441:1 7459:3 7466:2 7474:3 7488:2 7490:3 7497:1 7512:1 7513:1 7515:1 7525:1 7526:4 7539:1 7548:1 7571:1 7582:2 7585:1 7591:1 7595:1 7601:1 7610:1 7611:1 7615:1 7622:1 7623:1 7630:1 7631:1 7641:1 7652:1 7653:1 7664:2 7670:1 7678:1 7690:1 7703:4 7767:1 7769:2 7770:1 7782:3 7783:2 7788:2 7790:1 7794:2 7800:1 7804:1 7825:1 7829:1 7849:1 7852:1 7872:1 7886:1 7898:4 7930:1 7941:1 7951:2 7975:1 7977:1 7989:1 8016:1 8032:1 8033:1 8055:2 8080:2 8091:1 8125:1 8162:1 8190:2 8195:1 8210:1 8246:2 8278:1 8290:1 8311:1 8328:1 8334:2 8364:3 8373:1 8379:1 8386:1 8388:1 8398:1 8435:1 8458:1 8465:1 8473:1 8479:1 8533:1 8541:1 8545:4 8556:1 8572:1 8579:1 8589:5 8590:2 8609:1 8642:1 8643:1 8644:3 8650:2 8651:1 8652:1 8657:1 8663:1 8670:1 8691:2 8692:1 8712:5 8717:2 8718:1 8736:1 8745:6 8774:1 8777:1 8784:2 8794:1 8810:2 8820:4 8824:4 8825:1 8831:3 8835:2 8836:1 8839:1 8840:1 8846:4 8847:6 8849:1 8851:3 8853:3 8895:1 8911:1 8918:1 8925:1 8950:1 8997:2 9013:1 9027:1 9041:7 9046:1 9058:1 9061:1 9074:2 9082:3 9091:1 9131:1 9138:1 9153:1 9158:4 9176:1 9204:1 9207:1 9212:2 9213:1 9214:1 9216:1 9234:1 9241:2 9245:1 9254:1 9302:1 9308:1 9315:1 9318:2 9321:1 9333:1 9337:3 9344:1 9346:1 9347:1 9355:1 9374:1 9387:1 9392:1 9402:2 9408:1 9410:1 9425:4 9441:1 9478:1 9503:1 9509:7 9513:1 9517:1 9518:1 9521:1 9535:1 9538:2 9543:2 9544:1 9555:3 9558:4 9563:2 9575:1 9581:1 9582:1 9585:1 9592:6 9607:3 9609:1 9624:1 9628:1 9632:1 9634:3 9646:1 9658:2 9669:2 9674:1 9678:1 9689:1 9694:1 9696:4 9715:2 9718:1 9723:2 9726:1 9732:1 9754:1 9755:1 9762:2 9780:1 9781:1 9782:3 9828:1 9830:3 9841:2 9846:1 9865:1 9888:1 9916:3 9918:2 9920:1 9925:1 9930:1 9945:1 9946:1 9956:2 9960:1 9967:1 9995:3 9999:1 10010:1 10016:1 10029:1 10042:1 10093:2 10150:1 10160:1 10163:1 10168:1 10182:1 10200:1 10209:1 10220:1 10221:1 10223:2 10224:2 10233:2 10236:1 10238:1 10266:1 10269:1 10275:1 10277:1 10278:1 10294:1 10299:1 10313:1 10323:2 10333:1 10341:1 10363:1 10367:1 10376:1 10382:1 10387:1 10392:1 10397:3 10409:1 10410:5 10430:1 10453:1 10465:1 10466:1 10478:1 10490:1 10512:1 10517:2 10536:2 10593:1 10607:1 10611:1 10613:1 10615:1 10625:2 10648:3 10682:3 10683:1 10695:1 10717:2 10718:3 10736:1 10737:2 10743:1 10744:7 10751:2 10760:1 10774:1 10783:1 10789:1 10790:1 10791:1 10796:2 10812:27 10814:1 10833:1 10838:1 10841:1 10843:4 10855:3 10866:1 10871:3 10886:1 10888:1 10901:1 10903:1 10908:1 10940:3 10941:1 10942:1 10946:1 10981:5 10983:1 10990:1 10998:5 11002:1 11022:1 11033:1 11034:2 11037:1 11038:1 11072:2 11082:2 11110:1 11113:1 11118:1 11125:4 11131:1 11150:2 11164:1 11170:1 11190:1 11212:1 11228:1 11229:1 11247:4 11248:1 11260:2 11300:1 11301:2 11322:1 11332:1 11340:1 11342:2 11347:1 11354:1 11363:3 11379:1 11382:3 11401:3 11403:1 11417:1 11423:4 11431:2 11436:7 11457:2 11485:1 11487:2 11509:1 11528:1 11530:1 11569:1 11584:3 11594:2 11597:3 11618:1 11620:2 11621:1 11625:1 11651:2 11656:1 11658:1 11691:2 11709:6 11711:1 11714:1 11722:1 11727:1 11728:1 11737:1 11747:1 11758:1 11764:1 11771:2 11774:1 11776:3 11779:1 11782:1 11785:5 11786:2 11788:1 11799:5 11842:1 11849:1 11854:1 11888:2 11898:1 11913:1 11916:1 11921:1 11943:1 11947:1 11949:1 11950:2 11987:1 11990:3 11995:1 11997:1 12004:4 12011:1 12014:1 12021:1 12022:1 12024:3 12025:1 12032:1 12035:2 12038:1 12042:1 12046:1 12058:1 12059:1 12063:1 12077:1 12094:1 12095:1 12102:1 12110:1 12118:1 12128:3 12129:1 12133:1 12137:2 12183:1 12196:9 12205:1 12211:1 12213:1 12240:1 12257:1 12262:1 12290:1 12323:1 12344:1 12345:1 12356:1 12366:1 12379:1 12382:1 12399:1 12401:2 12418:8 12423:1 12435:1 12436:1 12444:1 12457:1 12463:1 12466:1 12467:5 12477:1 12481:1 12486:1 12495:2 12501:4 12502:3 12503:2 12505:1 12506:1 12511:1 12512:2 12548:1 12554:1 12557:4 12572:1 12594:1 12614:1 12630:1 12631:1 12652:4 12664:5 12674:1 12715:1 12716:1 12727:1 12733:1 12739:1 12757:1 12762:2 12779:1 12781:1 12810:1 12839:1 12856:1 12857:1 12861:1 12879:3 12913:1 12929:2 12930:1 12932:1 12950:1 12962:1 12974:9 12981:1 12984:1 12991:2 13001:1 13007:1 13008:1 13012:1 13021:1 13052:1 13069:4 13076:1 13090:2 13091:2 13108:3 13118:1 13153:1 13159:1 13163:1 13195:1 13197:1 13198:1 13228:2 13254:1 13259:1 13275:1 13276:1 13278:1 13281:1 13288:1 13299:3 13311:1 13328:1 13336:2 13342:1 13343:1 13346:1 13348:2 13354:1 13356:1 13359:1 13388:1 13405:1 13411:1 13412:6 13413:2 13423:1 13425:2 13430:3 13431:2 13434:2 13436:3 13437:1 13439:1 13441:6 13449:1 13450:2 13451:5 13453:5 13466:1 13474:5 13475:4 13493:1 13498:4 13502:3 13512:3 13532:4 13534:1 13555:1 13585:1 13587:1 13599:1 13600:6 13606:4 13610:5 13612:1 13630:1 13635:1 13636:5 13640:1 13650:1 13654:1 13680:1 13696:1 13700:1 13702:5 13703:1 13711:2 13721:1 13741:1 13747:2 13756:8 13789:1 13810:3 13817:1 13821:1 13823:1 13824:4 13844:1 13845:1 13863:1 13875:1 13886:1 13889:1 13892:1 13898:1 13902:3 13908:4 13937:4 13944:1 13955:1 13957:2 13974:4 13992:1 14002:2 14011:1 14013:1 14073:1 14079:1 14084:1 14088:1 14096:3 14100:5 14133:4 14148:5 14181:7 14257:1 14262:1 14271:1 14274:1 14286:1 14289:2 14293:5 14296:4 14299:1 14325:1 14339:1 14364:1 14366:1 14371:1 14381:1 14383:1 14396:1 14402:1 14411:1 14420:1 14422:1 14436:2 14452:3 14474:2 14478:1 14484:1 14515:2 14519:7 14525:6 14527:1 14540:1 14555:3 14559:2 14581:1 14583:4 14590:4 14592:1 14594:5 14601:2 14608:2 14609:3 14610:3 14644:1 14663:2 14672:1 14681:4 14692:1 14694:2 14708:1 14718:1 14757:1 14765:1 14770:2 14798:1 14814:1 14823:1 14826:4 14828:1 14829:1 14830:1 14845:2 14854:1 14861:1 14868:1 14873:1 14884:4 14887:1 14897:1 14900:2 14903:1 14909:3 14920:1 14935:1 14962:1 14965:3 14968:3 14979:2 14980:2 14994:1 15004:1 15005:2 15009:1 15019:2 15021:1 15030:1 15036:1 15040:1 15068:1 15085:4 15089:5 15113:3 15117:2 15122:1 15131:1 15134:2 15170:1 15177:1 15188:1 15195:1 15206:3 15235:1 15243:1 15274:2 15290:5 15396:1 15421:1 15445:1 15480:1 15486:1 15491:1 15497:1 15502:1 15503:2 15523:1 15546:2 15547:1 15568:5 15576:2 15585:1 15613:2 15618:4 15628:1 15629:1 15633:1 15637:3 15666:9 15693:2 15696:5 15698:2 15712:2 15713:1 15724:1 15727:1 15728:1 15731:1 15745:1 15747:2 15752:7 15756:1 15771:1 15772:1 15773:1 15778:1 15789:1 15799:1 15829:1 15836:1 15854:1 15863:1 15864:1 15905:1 15934:1 15937:1 15959:2 15962:1 15966:1 15976:1 15978:22 15986:2 15990:2 15996:3 16001:1 16006:4 16008:1 16016:3 16017:1 16022:2 16029:1 16072:1 16077:1 16106:1 16110:2 16122:1 16127:1 16139:1 16160:1 16175:1 16179:1 16183:3 16187:1 16202:1 16206:1 16217:1 16221:5 16235:1 16243:1 16263:1 16264:1 16271:1 16288:1 16338:1 16343:1 16344:1 16345:1 16346:1 16356:1 16358:1 16366:2 16380:1 16388:1 16389:2 16394:1 16400:1 16418:1 16421:1 16434:3 16482:1 16515:3 16532:1 16540:1 16545:1 16571:1 16579:2 16582:6 16584:1 16594:2 16595:2 16597:2 16616:1 16655:1 16666:5 16675:1 16679:2 16691:1 16694:1 16716:3 16717:1 16732:1 16740:1 16760:1 16806:1 16812:3 16822:7 16834:1 16883:1 16893:1 16894:1 16902:2 16918:1 16932:1 16937:2 16942:1 16945:1 16946:1 16964:1 16967:2 17010:1 17014:1 17019:1 17027:1 17039:1 17040:1 17059:1 17067:1 17072:4 17094:1 17104:1 17106:4 17125:1 17128:2 17140:1 17161:1 17189:1 17192:1 17202:1 17207:3 17213:1 17237:1 17239:2 17242:1 17251:4 17252:1 17270:3 17306:4 17324:6 17342:1 17353:1 17362:1 17370:1 17380:1 17388:1 17389:1 17394:1 17408:20 17423:2 17434:1 17436:4 17437:2 17438:1 17443:1 17444:2 17474:3 17475:1 17486:2 17493:2 17495:4 17504:1 17507:1 17508:1 17510:1 17519:1 17524:1 17544:1 17552:1 17572:1 17573:1 17576:1 17583:3 17590:1 17615:2 17631:1 17672:1 17680:1 17684:1 17687:3 17696:1 17723:1 17753:1 17779:1 17780:1 17787:1 17802:2 17815:1 17817:1 17820:1 17846:1 17877:1 17878:1 17886:1 17889:1 17890:1 17891:5 17894:1 17912:3 17933:1 17968:1 17990:1 18000:1 18009:1 18017:2 18022:1 18058:1 18068:8 18075:2 18098:2 18100:3 18108:1 18131:1 18132:1 18143:2 18144:1 18147:1 18148:1 18168:1 18176:2 18193:1 18198:2 18210:1 18213:1 18221:1 18230:1 18233:2 18246:1 18249:4 18253:1 18255:1 18265:2 18266:1 18269:1 18271:1 18310:1 18319:1 18325:2 18326:1 18343:1 18344:2 18355:4 18366:1 18367:1 18373:1 18380:1 18387:1 18389:5 18392:15 18393:1 18398:1 18412:1 18419:1 18442:4 18473:3 18498:2 18509:1 18516:1 18557:2 18563:2 18584:1 18589:1 18612:1 18613:1 18636:2 18643:5 18657:3 18686:2 18690:3 18693:1 18699:1 18713:4 18722:2 18735:2 18747:1 18751:4 18753:4 18760:1 18766:1 18767:1 18788:1 18792:1 18799:1 18801:4 18811:3 18819:2 18834:2 18836:1 18838:1 18850:2 18852:1 18860:1 18865:1 18874:1 18877:1 18899:1 18907:1 18914:1 18934:1 18945:1 18947:1 18953:2 18956:1 18960:1 18966:1 18978:1 19001:4 19005:1 19007:1 19015:1 19020:6 19021:2 19031:2 19032:1 19035:2 19036:1 19050:1 19057:2 19098:1 19130:4 19132:1 19140:1 19165:2 19171:1 19174:1 19177:4 19278:2 19280:1 19311:2 19312:1 19350:1 19358:3 19360:1 19365:1 19367:1 19369:1 19386:1 19398:1 19399:1 19412:1 19458:2 19465:2 19470:3 19522:1 19526:2 19528:1 19559:1 19600:2 19604:1 19606:1 19607:1 19615:1 19618:1 19619:1 19627:1 19659:2 19661:1 19664:1 19672:1 19673:1 19674:4 19687:1 19692:1 19718:1 19740:2 19748:1 19762:1 19818:2 19823:1 19824:6 19831:1 19856:1 19869:1 19878:1 19888:1 19918:1 19919:1 19957:1 19996:1 20003:1 20033:1 20044:1 20052:1 20059:2 20060:5 20082:1 20097:1 20105:1 20118:1 20126:3 20150:1 20158:1 20177:5 20178:1 20185:1 20191:1 20207:2 20215:3 20247:1 20255:3 20263:2 20270:1 20271:1 20273:1 20276:1 20311:1 20330:1 20342:1 20350:1 20388:2
14 8:1 20:1 49:1 58:1 69:1 73:1 88:5 113:1 115:2 116:2 118:1 131:1 133:1 134:1 140:4 143:1 148:1 162:1 166:1 183:1 191:1 206:1 272:1 274:2 277:2 282:1 284:1 289:1 307:1 311:1 344:1 364:4 366:6 371:1 374:1 376:2 392:1 400:1 406:2 417:1 420:1 423:1 430:1 440:1 441:1 442:1 448:1 467:4 470:1 475:1 493:3 502:1 509:1 528:2 547:1 548:4 559:3 569:1 576:2 584:2 592:1 611:1 633:1 667:2 678:1 697:2 700:1 703:4 706:3 717:1 730:1 791:1 800:4 801:3 802:1 805:4 866:1 868:1 874:1 877:1 884:1 885:2 919:1 932:1 936:1 939:4 950:1 984:1 1000:1 1014:2 1015:1 1018:2 1028:1 1031:2 1046:1 1060:1 1079:1 1081:3 1082:1 1116:1 1134:1 1142:1 1146:1 1186:2 1237:1 1241:2 1252:1 1253:1 1256:3 1273:1 1290:1 1310:1 1315:1 1330:3 1331:7 1333:1 1334:2 1382:1 1419:4 1428:1 1432:1 1438:1 1442:2 1445:2 1449:1 1467:3 1468:3 1487:1 1492:1 1499:2 1510:1 1525:1 1535:1 1536:1 1545:1 1565:1 1571:1 1578:1 1585:2 1596:1 1601:1 1609:2 1634:1 1637:1 1640:1 1647:6 1653:1 1658:1 1668:1 1675:1 1721:1 1758:2 1773:1 1777:2 1786:1 1796:1 1797:2 1818:1 1827:1 1830:1 1834:1 1836:1 1839:3 1843:2 1845:2 1846:1 1847:1 1854:1 1858:4 1860:1 1865:1 1867:1 1875:2 1880:1 1912:3 1921:1 1934:1 1941:1 1942:1 1943:1 1945:3 1946:1 1961:1 1969:1 1980:2 2003:2 2004:3 2016:1 2084:1 2089:1 2100:4 2117:1 2128:1 2149:4 2157:3 2186:1 2189:1 2198:1 2201:1 2203:1 2205:1 2230:1 2235:3 2251:3 2253:3 2280:2 2282:2 2313:1 2315:1 2327:3 2329:1 2355:1 2358:4 2369:1 2379:3 2385:1 2399:1 2407:2 2418:1 2423:1 2455:2 2456:1 2481:1 2504:6 2509:1 2524:4 2533:5 2536:1 2540:1 2556:1 2560:1 2563:7 2572:2 2598:4 2600:5 2630:1 2632:4 2642:1 2656:1 2657:1 2658:3 2659:1 2661:1 2665:1 2666:1 2671:1 2701:1 2713:1 2726:1 2737:1 2747:1 2751:2 2761:1 2782:3 2788:1 2789:2 2812:1 2814:1 2816:1 2817:3 2822:1 2824:1 2831:7 2851:1 2858:1 2887:1 2903:2 2905:3 2912:1 2917:1 2923:3 2930:1 2931:1 2933:2 2937:1 2943:1 2961:2 2971:1 2982:1 2983:2 2989:1 2992:1 2998:2 3001:2 3026:1 3028:4 3043:1 3044:1 3046:2 3047:2 3048:1 3049:1 3053:1 3068:1 3069:2 3070:1 3071:3 3082:2 3083:1 3093:1 3094:1 3110:2 3112:1 3116:4 3118:1 3123:5 3125:1 3126:1 3133:3 3135:1 3136:1 3142:4 3144:1 3146:1 3149:3 3156:1 3168:1 3169:1 3202:1 3210:2 3212:1 3215:1 3231:1 3250:2 3267:1 3272:1 3281:6 3294:1 3295:1 3306:1 3316:2 3327:1 3328:1 3329:2 3352:1 3357:3 3358:2 3390:1 3400:1 3420:1 3431:2 3435:1 3446:1 3456:2 3458:1 3474:1 3489:1 3493:1 3501:1 3507:1 3510:2 3512:1 3518:2 3521:1 3536:1 3558:1 3560:5 3562:1 3568:3 3578:1 3581:5 3583:2 3587:2 3588:2 3599:1 3607:1 3609:1 3629:1 3631:2 3633:1 3638:2 3642:1 3655:1 3671:1 3692:2 3706:4 3707:2 3726:8 3731:1 3732:1 3733:1 3738:1 3751:1 3753:2 3763:1 3766:1 3775:1 3777:5 3788:1 3811:3 3819:3 3820:1 3830:1 3836:1 3841:1 3871:1 3873:1 3879:1 3886:2 3892:1 3905:3 3919:1 3920:3 3927:1 3948:1 3966:4 3972:1 3975:1 3989:1 3991:1 3994:1 3997:1 3998:1 3999:1 4002:1 4013:2 4019:3 4026:2 4033:6 4037:3 4054:1 4058:2 4059:3 4067:1 4071:25 4072:1 4073:1 4079:1 4091:2 4096:1 4098:1 4114:2 4128:1 4129:1 4131:7 4140:2 4144:1 4145:5 4152:4 4160:1 4162:1 4168:1 4169:3 4194:1 4195:2 4196:1 4197:1 4203:1 4210:4 4211:1 4213:1 4225:3 4249:1 4251:1 4253:1 4257:1 4270:2 4294:4 4301:1 4305:2 4307:1 4324:1 4331:1 4343:1 4348:3 4349:3 4366:1 4378:1 4412:2 4427:3 4436:2 4441:1 4471:1 4483:1 4486:1 4500:1 4502:1 4510:1 4544:2 4549:2 4553:3 4556:1 4568:2 4622:2 4635:1 4641:2 4658:2 4667:1 4676:2 4683:1 4686:5 4692:8 4699:3 4708:1 4733:1 4751:1 4759:1 4762:2 4766:1 4771:2 4772:1 4778:1 4779:1 4794:1 4795:3 4827:1 4831:1 4834:5 4837:1 4847:1 4851:7 4869:2 4900:1 4910:1 4914:2 4937:1 4940:1 4959:1 4960:1 4982:3 4989:3 5001:1 5006:2 5016:1 5018:1 5019:1 5023:2 5025:1 5039:1 5040:1 5052:1 5058:5 5067:25 5074:1 5081:1 5083:3 5097:1 5112:1 5131:1 5132:1 5135:1 5153:2 5157:1 5185:1 5193:1 5200:1 5203:6 5227:1 5228:1 5231:2 5236:1 5241:3 5247:1 5256:3 5266:3 5271:5 5288:1 5313:1 5321:1 5347:1 5362:1 5364:1 5365:3 5366:2 5372:1 5375:1 5387:1 5394:3 5402:1 5406:1 5408:1 5413:1 5416:1 5433:1 5437:1256 5443:1 5456:1 5458:1 5460:2 5462:1 5468:1 5497:1 5507:2 5509:2 5518:1 5520:1 5530:1 5583:1 5590:1 5600:1 5604:1 5625:1 5637:1 5644:1 5657:1 5661:1 5672:1 5673:1 5691:3 5697:2 5714:1 5751:1 5753:2 5756:2 5757:1 5762:1 5763:1 5765:3 5767:1 5771:3 5775:1 5778:1 5780:5 5785:1 5813:2 5817:1 5856:1 5867:1 5874:1 5879:1 5886:1 5893:2 5904:1 5911:2 5912:1 5932:10 5944:1 5962:3 5974:1 5984:9 5996:2 5997:1 6020:1 6055:1 6090:1 6092:2 6100:1 6110:1 6111:1 6118:1 6133:1 6165:1 6174:1 6208:1 6216:1 6220:1 6232:1 6233:2 6307:1 6311:2 6316:3 6317:1 6321:1 6325:1 6339:3 6349:1 6351:1 6352:2 6354:1 6420:5 6425:3 6450:1 6451:1 6452:1 6453:1 6458:1 6489:1 6502:4 6508:1 6511:4 6517:6 6520:2 6541:4 6543:1 6586:1 6588:1 6609:1 6615:2 6660:1 6662:1 6668:1 6675:13 6680:1 6681:1 6683:4 6688:1 6694:9 6725:2 6736:1 6741:1 6746:1 6747:2 6749:1 6752:4 6756:1 6765:1 6801:1 6822:1 6829:1 6837:1 6845:7 6866:1 6867:3 6868:1 6876:1 6879:1 6880:1 6882:1 6885:1 6891:1 6902:2 6903:1 6905:1 6931:2 6945:3 6953:1 6956:2 6957:1 6988:1 7000:1 7008:2 7009:1 7013:1 7016:1 7024:1 7078:1 7079:1 7112:1 7113:1 7129:1 7142:1 7148:4 7156:1 7160:5 7161:1 7185:3 7205:1 7207:1 7258:1 7263:1 7266:4 7268:2 7277:1 7287:1 7295:2 7297:2 7361:1 7400:2 7402:1 7403:2 7414:2 7425:1 7427:1 7441:1 7446:1 7459:3 7466:2 7474:3 7488:2 7490:3 7497:1 7512:1 7513:1 7515:1 7525:1 7526:4 7527:1 7539:1 7548:1 7571:1 7582:2 7585:1 7589:1 7591:1 7595:1 7601:1 7610:1 7611:2 7615:1 7622:1 7623:1 7630:1 7631:1 7641:1 7652:2 7653:1 7664:2 7670:1 7678:1 7690:1 7703:4 7767:1 7769:2 7770:1 7782:3 7783:2 7788:2 7790:2 7794:2 7800:1 7804:1 7825:1 7829:1 7849:1 7852:1 7872:1 7886:1 7898:4 7930:1 7941:1 7951:2 7968:1 7975:1 7977:1 7989:1 8016:1 8024:1 8032:1 8033:1 8055:2 8080:2 8084:1 8091:2 8125:1 8156:1 8162:1 8190:2 8195:1 8210:1 8246:2 8278:1 8290:1 8311:1 8328:1 8332:1 8334:2 8364:3 8373:2 8379:2 8386:1 8388:1 8398:1 8435:1 8458:1 8465:1 8473:1 8479:1 8533:1 8541:1 8545:4 8554:1 8556:1 8572:1 8579:1 8589:5 8590:2 8609:1 8626:1 8642:1 8643:1 8644:3 8650:2 8651:1 8652:1 8657:1 8663:1 8670:1 8691:2 8692:1 8704:1 8712:5 8717:2 8718:1 8736:1 8745:6 8774:1 8777:1 8784:2 8794:1 8810:2 8820:4 8824:4 8825:1 8831:3 8835:2 8836:1 8837:1 8839:1 8840:1 8846:5 8847:6 8849:1 8851:3 8853:3 8895:1 8911:1 8918:1 8925:1 8950:1 8997:2 9013:1 9027:1 9041:7 9046:1 9058:1 9061:1 9062:1 9074:2 9082:3 9086:1 9091:1 9118:1 9131:1 9138:1 9153:1 9158:4 9176:1 9204:1 9207:1 9212:2 9213:1 9214:1 9216:1 9234:1 9241:2 9245:1 9254:1 9302:1 9308:1 9315:1 9318:2 9321:1 9333:1 9337:3 9344:1 9346:1 9347:1 9355:1 9374:1 9387:1 9392:1 9402:2 9408:1 9410:1 9423:1 9425:4 9441:1 9478:1 9503:1 9509:7 9513:1 9514:1 9515:1 9517:1 9518:1 9521:1 9530:1 9535:1 9538:2 9543:2 9544:1 9555:4 9558:4 9563:2 9575:1 9581:1 9582:1 9585:1 9592:6 9607:3 9609:1 9624:1 9628:1 9632:1 9634:3 9646:1 9658:2 9669:2 9674:1 9678:1 9689:2 9694:1 9696:4 9715:2 9718:1 9723:2 9726:1 9732:1 9754:1 9755:1 9762:2 9780:1 9781:1 9782:4 9828:1 9830:3 9841:2 9846:1 9865:1 9888:1 9916:3 9918:2 9920:1 9925:1 9930:1 9937:1 9945:1 9946:1 9956:2 9960:2 9967:1 9995:3 9999:1 10010:1 10016:1 10029:1 10042:1 10093:2 10140:1 10150:1 10159:1 10160:2 10163:1 10168:1 10174:1 10182:1 10200:1 10209:1 10220:1 10221:1 10223:2 10224:2 10233:2 10236:1 10238:1 10266:1 10269:1 10275:1 10277:1 10278:1 10293:1 10294:1 10299:1 10313:1 10323:2 10328:1 10333:1 10341:1 10363:1 10367:1 10376:1 10382:1 10387:1 10392:1 10397:3 10409:1 10410:7 10430:1 10453:1 10465:1 10466:1 10478:1 10490:1 10512:1 10517:2 10536:2 10548:1 10559:1 10593:1 10607:1 10611:1 10613:1 10615:1 10625:2 10648:3 10682:4 10683:1 10695:1 10717:2 10718:3 10729:1 10736:1 10737:2 10743:1 10744:7 10751:2 10760:1 10774:1 10783:1 10789:1 10790:1 10791:1 10796:2 10797:1 10812:28 10814:1 10833:1 10838:1 10841:3 10843:4 10855:3 10866:1 10871:3 10872:1 10886:1 10888:1 10901:1 10903:1 10908:1 10940:3 10941:1 10942:1 10946:1 10981:5 10983:1 10990:1 10998:5 11002:1 11022:1 11033:1 11034:2 11037:1 11038:1 11072:2 11082:2 11110:1 11113:1 11118:1 11125:4 11131:1 11150:2 11164:1 11170:1 11190:1 11195:1 11212:1 11228:1 11229:1 11247:4 11248:2 11260:3 11297:1 11300:1 11301:2 11322:1 11332:1 11340:1 11342:2 11347:1 11354:1 11363:3 11379:2 11382:3 11401:3 11403:1 11413:1 11417:1 11423:4 11431:2 11436:8 11452:1 11457:2 11470:1 11485:1 11487:2 11509:3 11528:1 11530:1 11569:1 11584:3 11594:2 11597:4 11618:1 11620:2 11621:1 11625:1 11651:2 11656:1 11658:1 11691:2 11709:6 11711:1 11714:1 11722:1 11727:1 11728:1 11737:1 11747:1 11758:1 11764:1 11771:2 11774:1 11776:3 11779:1 11782:1 11785:5 11786:2 11788:2 11799:7 11842:1 11849:1 11854:1 11888:2 11896:1 11898:1 11913:1 11916:1 11921:1 11943:2 11947:1 11949:1 11950:2 11987:1 11990:3 11995:1 11997:1 12004:4 12011:1 12014:1 12021:1 12022:1 12024:3 12025:1 12032:1 12035:2 12038:1 12042:1 12046:1 12058:1 12059:1 12063:1 12067:1 12077:1 12094:1 12095:1 12102:1 12110:2 12118:1 12128:3 12129:1 12133:1 12136:1 12137:2 12183:1 12196:9 12205:1 12211:1 12213:1 12240:1 12257:1 12262:1 12290:1 12323:1 12344:1 12345:2 12356:1 12366:1 12379:1 12382:1 12399:1 12401:2 12418:8 12423:1 12435:1 12436:1 12444:1 12445:1 12457:1 12463:1 12466:1 12467:5 12477:1 12481:1 12486:1 12495:2 12501:4 12502:3 12503:2 12505:1 12506:1 12511:1 12512:2 12548:1 12554:1 12557:4 12572:1 12594:1 12614:1 12630:1 12631:1 12632:1 12652:4 12664:6 12674:1 12715:2 12716:1 12727:1 12733:1 12739:1 12757:1 12762:2 12778:1 12779:1 12781:1 12810:1 12839:1 12856:1 12857:1 12861:1 12879:3 12913:1 12920:1 12929:2 12930:1 12932:1 12950:1 12962:1 12974:9 12981:2 12984:1 12991:2 13001:1 13007:1 13008:1 13012:1 13021:1 13052:1 13069:4 13076:1 13090:2 13091:2 13099:1 13108:3 13118:1 13153:1 13159:1 13163:1 13195:1 13197:2 13198:1 13228:2 13254:1 13259:1 13275:1 13276:1 13278:1 13281:1 13288:1 13291:1 13299:4 13311:1 13328:1 13336:2 13342:1 13343:1 13346:1 13348:2 13354:1 13356:1 13359:1 13388:1 13405:1 13411:1 13412:6 13413:2 13423:1 13425:2 13430:3 13431:2 13434:2 13436:3 13437:1 13439:1 13441:6 13449:1 13450:3 13451:5 13453:6 13466:1 13474:6 13475:4 13493:1 13498:4 13502:3 13512:3 13532:4 13534:1 13555:1 13585:1 13587:1 13599:1 13600:6 13606:4 13610:5 13612:1 13630:1 13635:1 13636:6 13637:1 13640:1 13650:1 13654:1 13680:1 13696:1 13700:1 13702:5 13703:1 13711:2 13721:1 13741:1 13747:2 13756:8 13789:1 13810:3 13817:1 13821:1 13823:1 13824:4 13844:1 13845:1 13863:1 13875:1 13886:1 13889:1 13891:1 13892:1 13898:1 13902:3 13908:4 13937:4 13944:1 13955:1 13957:2 13974:4 13992:1 14002:2 14011:1 14013:1 14073:1 14079:1 14084:1 14088:1 14096:3 14100:6 14133:4 14134:1 14148:6 14181:7 14257:1 14262:1 14271:1 14274:1 14286:1 14289:3 14293:5 14296:4 14299:1 14325:1 14339:1 14364:1 14366:2 14371:1 14381:1 14383:1 14396:1 14402:1 14411:2 14420:1 14422:1 14436:2 14452:3 14474:2 14478:1 14484:1 14515:2 14519:8 14525:7 14527:1 14540:1 14555:3 14559:2 14581:1 14583:6 14590:4 14592:1 14594:5 14601:2 14608:2 14609:3 14610:3 14644:1 14663:2 14672:1 14681:4 14692:1 14694:2 14708:1 14718:1 14757:1 14765:1 14770:2 14798:1 14814:1 14823:2 14826:4 14828:1 14829:1 14830:1 14845:2 14854:1 14861:1 14868:1 14873:1 14884:4 14887:1 14897:1 14900:2 14903:1 14909:3 14920:1 14935:1 14962:1 14965:3 14968:3 14979:2 14980:2 14994:1 15004:1 15005:2 15009:1 15019:2 15021:1 15030:1 15036:1 15040:1 15051:1 15068:1 15085:4 15089:5 15113:3 15117:2 15122:1 15131:1 15134:2 15170:1 15177:1 15188:1 15195:2 15206:3 15235:1 15243:1 15274:2 15283:1 15290:6 15396:1 15421:1 15445:1 15480:1 15486:1 15491:1 15497:1 15502:1 15503:2 15523:1 15546:2 15547:1 15568:5 15576:2 15585:1 15613:2 15618:4 15628:1 15629:1 15633:1 15637:3 15666:9 15693:2 15696:5 15698:2 15712:2 15713:2 15724:2 15727:1 15728:1 15731:1 15745:1 15747:2 15752:7 15756:1 15771:1 15772:1 15773:1 15778:1 15789:2 15799:1 15829:1 15836:1 15854:1 15863:1 15864:2 15867:1 15881:1 15896:1 15905:1 15911:1 15934:1 15937:1 15959:3 15962:1 15966:1 15976:1 15978:25 15986:2 15990:2 15996:3 16001:1 16006:4 16008:1 16016:3 16017:1 16022:2 16029:1 16072:1 16077:1 16106:1 16110:2 16122:1 16127:1 16139:1 16156:1 16160:1 16175:1 16179:1 16183:3 16187:1 16202:1 16206:1 16217:1 16221:5 16235:2 16243:1 16247:1 16263:1 16264:1 16271:1 16287:1 16288:1 16338:1 16343:2 16344:1 16345:1 16346:1 16356:1 16358:1 16366:2 16380:1 16388:1 16389:2 16394:1 16400:1 16418:1 16421:1 16434:3 16482:1 16487:1 16515:3 16532:1 16540:1 16545:1 16571:1 16579:2 16582:7 16584:1 16594:2 16595:2 16597:2 16616:1 16633:1 16655:1 16666:5 16675:1 16679:2 16691:1 16694:1 16716:3 16717:1 16732:1 16740:1 16760:1 16806:1 16812:3 16822:7 16834:1 16883:1 16893:1 16894:1 16902:3 16918:1 16932:1 16937:2 16942:1 16945:1 16946:1 16964:1 16967:2 17010:1 17014:2 17019:1 17027:1 17039:1 17040:1 17059:1 17067:1 17072:4 17094:1 17104:1 17106:4 17125:1 17128:2 17140:1 17161:1 17189:1 17192:1 17202:1 17207:3 17213:1 17237:1 17239:2 17242:1 17251:4 17252:1 17263:1 17270:3 17306:4 17324:6 17342:1 17353:1 17362:1 17370:1 17380:1 17388:1 17389:1 17394:1 17408:21 17423:2 17434:1 17436:4 17437:2 17438:1 17440:1 17443:1 17444:2 17474:3 17475:1 17486:2 17493:2 17495:4 17504:1 17507:1 17508:1 17510:1 17519:1 17524:1 17532:1 17544:1 17552:1 17572:1 17573:1 17576:1 17583:3 17586:1 17590:1 17613:1 17615:2 17631:2 17672:1 17680:1 17684:2 17687:4 17696:1 17709:1 17723:1 17753:1 17779:1 17780:1 17787:1 17802:3 17815:1 17817:1 17820:1 17846:1 17863:1 17877:1 17878:1 17886:1 17889:1 17890:1 17891:6 17894:1 17912:4 17933:1 17934:1 17968:1 17990:1 18000:1 18009:1 18017:2 18022:1 18058:1 18068:8 18075:2 18084:1 18098:2 18100:3 18108:1 18131:1 18132:1 18143:2 18144:1 18147:1 18148:1 18168:1 18176:2 18193:1 18198:2 18210:1 18213:1 18221:2 18230:2 18233:2 18246:1 18249:4 18253:1 18255:1 18265:2 18266:1 18269:1 18271:1 18282:1 18289:1 18310:1 18318:1 18319:1 18325:2 18326:1 18343:1 18344:2 18355:4 18366:1 18367:1 18373:1 18380:1 18387:1 18389:5 18392:15 18393:1 18398:1 18399:1 18412:1 18419:1 18428:1 18442:4 18473:3 18498:2 18509:1 18516:1 18557:2 18563:2 18584:1 18585:1 18589:1 18612:1 18613:2 18636:2 18643:5 18657:3 18686:2 18690:3 18693:1 18699:1 18713:4 18722:3 18735:3 18747:1 18751:4 18753:4 18760:1 18764:1 18766:1 18767:1 18788:1 18792:1 18799:1 18801:4 18811:3 18819:2 18834:2 18836:1 18838:1 18850:2 18852:1 18860:1 18865:1 18874:1 18877:1 18899:1 18907:3 18914:1 18934:1 18945:1 18947:1 18953:2 18956:1 18960:1 18966:1 18978:1 19001:4 19005:1 19007:1 19015:1 19020:6 19021:2 19031:2 19032:1 19035:2 19036:1 19050:1 19057:2 19098:1 19130:4 19132:1 19137:1 19140:1 19165:2 19171:1 19174:1 19177:4 19278:2 19280:1 19311:2 19312:1 19350:1 19358:3 19360:2 19365:1 19367:1 19369:1 19386:1 19398:1 19399:1 19412:1 19433:1 19458:2 19465:2 19470:3 19518:1 19522:1 19526:2 19528:1 19559:1 19600:2 19604:1 19606:1 19607:1 19615:1 19618:1 19619:1 19627:1 19643:1 19659:2 19661:1 19664:1 19672:1 19673:1 19674:4 19687:1 19692:1 19718:1 19740:3 19748:1 19762:1 19767:1 19818:2 19823:1 19824:6 19831:1 19856:1 19869:1 19878:1 19888:1 19918:1 19919:1 19957:1 19996:2 20003:1 20033:1 20044:1 20052:1 20059:3 20060:6 20082:2 20097:1 20105:1 20118:1 20126:3 20150:1 20158:1 20159:1 20177:5 20178:1 20185:3 20191:1 20207:2 20215:4 20247:1 20255:3 20263:2 20270:1 20271:1 20273:1 20276:1 20311:1 20330:1 20342:1 20350:1 20388:2
14 8:1 20:1 49:1 58:1 69:1 73:1 88:6 113:1 115:2 116:2 118:1 131:1 133:1 134:1 140:4 143:1 148:1 162:1 166:1 183:2 191:1 206:1 272:1 274:2 277:2 282:1 284:1 289:1 307:1 311:1 344:1 364:4 366:7 371:1 374:1 376:3 392:1 400:1 406:3 417:1 420:1 423:1 430:1 440:1 441:1 442:1 448:1 467:4 470:1 475:1 493:3 502:1 509:1 528:2 547:1 548:4 559:3 569:1 576:2 584:2 592:1 611:1 633:1 667:2 678:1 697:2 700:1 703:4 706:3 717:1 730:1 791:1 800:4 801:3 802:1 805:5 866:1 868:1 874:1 877:1 884:1 885:2 919:1 932:1 936:1 939:4 950:1 984:1 1000:1 1014:2 1015:1 1018:2 1025:1 1028:1 1031:2 1046:1 1060:1 1079:2 1081:5 1082:1 1116:1 1134:1 1142:1 1146:1 1186:2 1237:1 1241:2 1246:1 1252:1 1253:1 1256:3 1273:1 1290:1 1295:1 1310:1 1315:1 1330:3 1331:7 1332:1 1333:1 1334:2 1382:1 1419:4 1428:1 1432:1 1438:1 1442:2 1445:2 1449:1 1467:3 1468:3 1487:1 1492:1 1499:2 1510:1 1525:1 1535:1 1536:1 1545:1 1565:1 1571:1 1578:1 1585:2 1596:1 1601:1 1603:1 1609:2 1634:1 1637:1 1640:1 1647:7 1653:1 1658:1 1668:1 1675:1 1721:1 1758:2 1773:1 1777:2 1786:1 1796:1 1797:2 1818:1 1827:1 1830:1 1834:1 1836:1 1839:3 1843:3 1845:2 1846:1 1847:1 1854:1 1858:4 1860:1 1865:1 1867:1 1875:2 1880:1 1912:3 1921:1 1934:1 1941:1 1942:1 1943:1 1945:3 1946:1 1961:1 1969:1 1980:2 2003:2 2004:3 2016:1 2084:1 2089:1 2100:4 2117:1 2128:1 2146:1 2149:4 2157:3 2186:1 2189:1 2198:1 2201:1 2203:1 2205:1 2230:1 2235:3 2251:3 2253:3 2280:2 2282:2 2289:1 2313:3 2315:1 2327:3 2329:1 2355:1 2358:4 2369:1 2379:3 2385:1 2399:1 2407:2 2418:1 2423:1 2455:2 2456:1 2481:1 2504:6 2509:1 2524:4 2533:6 2536:1 2540:2 2556:1 2560:1 2563:7 2572:2 2598:4 2600:5 2630:1 2632:4 2642:1 2656:1 2657:1 2658:3 2659:1 2661:1 2663:1 2665:1 2666:1 2671:1 2696:1 2697:1 2701:1 2713:1 2726:1 2737:1 2747:1 2751:2 2761:1 2782:4 2788:1 2789:2 2812:1 2814:1 2816:1 2817:3 2822:1 2824:1 2831:7 2851:1 2856:1 2858:1 2887:1 2903:2 2905:3 2912:1 2917:1 2923:3 2927:1 2930:1 2931:1 2933:2 2937:1 2943:1 2961:2 2971:1 2982:1 2983:2 2989:1 2992:1 2998:2 3001:2 3026:1 3028:4 3043:1 3044:1 3046:2 3047:2 3048:2 3049:1 3053:1 3068:1 3069:2 3070:1 3071:3 3082:2 3083:1 3093:1 3094:1 3110:3 3112:1 3116:5 3118:1 3123:5 3125:1 3126:1 3133:3 3135:1 3136:1 3142:4 3144:2 3146:2 3149:3 3156:1 3168:1 3169:1 3202:1 3210:2 3212:1 3215:1 3231:1 3250:2 3267:1 3270:1 3272:1 3281:6 3294:1 3295:1 3306:1 3316:2 3327:1 3328:1 3329:2 3352:1 3357:3 3358:2 3390:1 3400:1 3420:1 3431:2 3435:1 3446:1 3456:2 3458:1 3474:1 3489:1 3493:1 3501:1 3507:1 3510:2 3512:1 3518:2 3521:1 3536:1 3558:1 3560:6 3562:1 3568:3 3578:1 3581:6 3583:2 3587:2 3588:2 3599:1 3607:1 3609:1 3629:1 3631:2 3633:1 3638:2 3642:1 3655:1 3671:1 3692:2 3706:4 3707:3 3726:9 3731:1 3732:2 3733:2 3738:1 3751:1 3753:2 3763:1 3766:1 3771:1 3775:1 3777:6 3788:1 3811:3 3819:3 3820:1 3830:1 3836:1 3841:1 3871:1 3873:1 3879:1 3886:2 3892:1 3905:3 3919:1 3920:3 3927:1 3948:1 3966:4 3972:1 3975:1 3989:1 3991:1 3994:1 3997:1 3998:1 3999:1 4002:1 4013:2 4019:3 4026:2 4033:6 4037:3 4054:1 4058:2 4059:3 4067:1 4071:25 4072:1 4073:1 4079:1 4091:2 4096:1 4098:1 4111:1 4114:3 4128:1 4129:1 4131:7 4140:2 4144:1 4145:5 4152:4 4160:1 4162:1 4168:1 4169:4 4194:1 4195:3 4196:1 4197:1 4203:1 4210:4 4211:1 4213:1 4225:3 4249:2 4251:1 4253:1 4257:1 4270:2 4277:1 4294:4 4301:1 4305:2 4307:1 4324:1 4331:1 4343:1 4348:3 4349:3 4366:1 4378:1 4412:2 4427:3 4436:2 4441:1 4471:1 4483:1 4486:1 4500:1 4502:1 4510:1 4544:3 4549:2 4553:4 4556:1 4568:2 4622:2 4635:1 4641:2 4658:2 4667:1 4676:2 4683:1 4686:5 4692:9 4699:3 4708:1 4733:1 4751:1 4754:1 4759:1 4762:2 4766:1 4771:2 4772:1 4778:1 4779:1 4794:1 4795:3 4827:1 4831:1 4834:6 4837:1 4847:1 4851:7 4869:2 4900:1 4910:1 4914:2 4937:1 4940:1 4959:1 4960:1 4982:3 4989:3 5001:1 5006:3 5016:1 5018:1 5019:1 5023:2 5025:1 5039:1 5040:1 5052:1 5058:6 5067:27 5074:1 5081:1 5083:3 5097:1 5112:1 5131:1 5132:1 5135:1 5153:2 5157:1 5185:1 5193:1 5200:1 5203:7 5227:1 5228:1 5231:2 5236:1 5241:3 5247:1 5256:3 5264:1 5266:3 5271:5 5288:1 5313:2 5321:1 5347:1 5362:1 5364:1 5365:4 5366:2 5372:1 5375:1 5387:1 5394:3 5402:1 5406:1 5408:1 5413:1 5416:1 5433:1 5434:1 5437:1357 5443:2 5456:1 5458:1 5460:2 5462:1 5468:1 5497:1 5507:2 5509:2 5518:1 5520:1 5530:1 5583:1 5590:1 5600:1 5604:1 5625:1 5637:1 5644:1 5657:1 5661:1 5672:1 5673:2 5691:3 5697:2 5714:1 5717:1 5751:1 5753:2 5756:2 5757:1 5762:1 5763:1 5765:3 5767:1 5771:3 5775:1 5778:1 5780:5 5785:1 5813:2 5817:1 5856:1 5867:1 5874:1 5879:1 5886:1 5893:2 5904:1 5911:2 5912:1 5932:11 5944:1 5962:3 5974:1 5984:9 5996:2 5997:1 6020:1 6026:1 6055:1 6090:1 6092:2 6100:1 6110:1 6111:1 6118:1 6133:1 6165:1 6174:1 6208:1 6216:1 6220:1 6232:1 6233:2 6307:1 6311:2 6316:3 6317:1 6321:1 6325:1 6339:3 6349:1 6351:1 6352:2 6354:1 6420:6 6425:3 6450:1 6451:1 6452:1 6453:1 6458:1 6489:1 6502:4 6508:1 6511:4 6517:6 6520:2 6541:4 6543:1 6586:1 6588:1 6596:1 6609:1 6615:2 6660:1 6662:1 6668:1 6675:14 6680:1 6681:1 6683:4 6688:1 6694:10 6725:2 6736:1 6741:1 6746:1 6747:2 6749:1 6752:4 6756:1 6765:1 6801:1 6822:1 6829:1 6837:1 6845:7 6866:1 6867:4 6868:1 6876:1 6879:1 6880:1 6882:1 6884:1 6885:1 6891:1 6902:2 6903:1 6905:1 6931:2 6945:3 6953:1 6956:2 6957:1 6988:1 7000:1 7008:2 7009:1 7013:1 7016:1 7024:1 7078:1 7079:1 7082:1 7112:1 7113:1 7129:1 7142:1 7148:4 7156:1 7160:5 7161:1 7174:1 7185:4 7205:1 7207:1 7258:1 7263:1 7266:4 7268:4 7277:1 7287:1 7295:2 7297:2 7361:1 7400:2 7402:1 7403:2 7414:2 7425:1 7427:1 7441:1 7446:1 7459:3 7466:2 7474:3 7488:2 7490:3 7497:1 7512:1 7513:1 7515:1 7525:1 7526:4 7527:1 7539:1 7548:1 7571:1 7582:2 7585:1 7589:1 7591:1 7595:1 7601:1 7610:1 7611:2 7615:1 7622:1 7623:1 7630:1 7631:1 7641:1 7652:2 7653:1 7664:2 7670:1 7678:1 7690:1 7703:4 7767:1 7769:2 7770:1 7771:1 7782:3 7783:2 7788:2 7790:2 7794:2 7800:1 7804:1 7825:1 7829:1 7849:1 7852:1 7872:1 7886:1 7895:1 7898:4 7930:1 7941:1 7951:3 7968:1 7975:1 7977:1 7989:2 8016:1 8024:1 8032:1 8033:1 8055:2 8080:2 8084:1 8091:2 8095:1 8125:1 8156:1 8162:1 8190:2 8195:1 8210:1 8246:2 8278:1 8290:1 8311:1 8328:1 8332:1 8334:2 8364:3 8373:2 8379:2 8386:1 8388:1 8398:1 8435:1 8458:1 8465:1 8473:1 8479:1 8533:1 8541:1 8545:4 8554:2 8556:1 8560:1 8572:1 8579:1 8589:5 8590:2 8609:1 8626:1 8636:1 8642:1 8643:1 8644:3 8650:2 8651:1 8652:1 8657:1 8663:1 8670:1 8691:2 8692:1 8704:1 8712:5 8717:2 8718:1 8736:1 8745:7 8774:1 8777:1 8784:2 8794:1 8810:2 8820:4 8824:4 8825:1 8831:3 8835:2 8836:1 8837:1 8839:1 8840:1 8846:5 8847:7 8849:1 8851:3 8853:3 8895:1 8911:1 8918:1 8925:1 8950:1 8997:2 9013:1 9027:1 9041:8 9046:1 9058:1 9061:1 9062:1 9074:2 9082:3 9086:1 9091:1 9118:1 9131:1 9138:1 9153:1 9158:4 9176:1 9203:1 9204:1 9207:1 9212:2 9213:1 9214:1 9216:1 9234:1 9241:2 9245:1 9254:1 9302:1 9308:1 9315:1 9318:2 9321:1 9333:1 9337:3 9344:1 9346:1 9347:1 9355:1 9374:1 9387:1 9392:1 9402:2 9408:1 9410:1 9423:1 9425:4 9441:1 9478:1 9503:1 9509:7 9513:1 9514:1 9515:1 9517:1 9518:1 9521:1 9530:1 9535:1 9538:2 9543:2 9544:1 9555:4 9558:4 9563:2 9572:1 9575:1 9578:1 9581:1 9582:1 9585:1 9592:7 9607:3 9609:1 9624:1 9628:1 9632:1 9634:3 9646:1 9658:2 9669:2 9674:1 9678:1 9689:2 9694:1 9696:5 9715:2 9718:1 9723:2 9726:1 9732:1 9754:1 9755:1 9762:2 9780:1 9781:1 9782:5 9828:1 9830:3 9841:2 9846:1 9865:1 9888:1 9916:3 9918:3 9920:1 9925:1 9930:1 9937:1 9945:1 9946:1 9956:2 9960:2 9967:1 9995:3 9999:1 10010:1 10016:1 10029:1 10042:1 10093:2 10140:1 10150:1 10159:1 10160:2 10163:1 10168:1 10174:1 10182:1 10184:1 10200:1 10209:1 10220:1 10221:1 10223:2 10224:2 10233:2 10236:1 10238:1 10266:1 10269:1 10275:1 10277:1 10278:1 10293:1 10294:1 10299:1 10313:1 10323:2 10328:1 10333:1 10341:1 10363:1 10367:1 10376:1 10382:1 10387:1 10392:1 10397:3 10399:1 10409:1 10410:7 10430:1 10453:1 10465:1 10466:1 10478:1 10490:1 10512:1 10517:2 10536:3 10548:1 10559:1 10570:1 10593:1 10607:1 10611:1 10613:1 10615:1 10625:2 10648:3 10682:4 10683:1 10695:1 10717:2 10718:3 10729:1 10736:1 10737:2 10743:1 10744:7 10751:2 10760:1 10774:1 10783:1 10789:1 10790:1 10791:1 10796:2 10797:1 10812:32 10814:1 10833:1 10838:1 10841:3 10843:4 10855:3 10866:1 10871:3 10872:1 10886:1 10888:1 10901:1 10903:1 10908:1 10940:3 10941:1 10942:1 10946:1 10981:5 10983:1 10990:1 10998:5 11002:1 11022:1 11033:1 11034:2 11037:1 11038:1 11072:2 11082:2 11110:1 11113:2 11118:1 11125:4 11131:1 11150:2 11164:1 11170:1 11190:1 11195:1 11212:1 11228:1 11229:1 11247:4 11248:2 11260:4 11297:1 11300:1 11301:2 11322:1 11332:1 11340:1 11342:2 11347:1 11354:1 11363:3 11379:2 11382:3 11401:3 11403:1 11413:1 11417:1 11423:4 11431:2 11436:8 11452:2 11457:2 11466:1 11470:1 11485:1 11487:2 11509:3 11528:1 11530:1 11569:1 11584:3 11594:2 11597:5 11618:1 11620:2 11621:1 11625:1 11651:2 11656:1 11658:1 11691:2 11709:6 11711:1 11714:1 11722:1 11727:1 11728:1 11737:2 11747:1 11758:1 11764:1 11771:2 11774:1 11776:3 11779:1 11782:1 11785:5 11786:2 11788:2 11799:7 11842:1 11849:1 11854:1 11881:1 11888:2 11896:1 11898:1 11913:1 11916:1 11921:1 11926:1 11943:2 11947:1 11949:1 11950:3 11987:1 11990:3 11995:1 11997:1 12004:4 12011:1 12014:1 12021:1 12022:1 12024:3 12025:1 12032:1 12035:2 12038:1 12042:1 12046:1 12058:1 12059:1 12063:1 12067:1 12077:1 12094:1 12095:1 12102:1 12110:2 12118:1 12128:3 12129:1 12133:1 12136:1 12137:2 12183:1 12196:10 12205:1 12211:1 12213:1 12214:1 12229:1 12240:1 12257:1 12262:1 12290:1 12323:1 12344:1 12345:2 12356:1 12366:1 12379:1 12382:1 12399:1 12401:2 12402:1 12418:8 12423:1 12435:1 12436:1 12444:1 12445:2 12457:2 12463:1 12466:1 12467:5 12477:1 12481:1 12486:1 12495:2 12501:4 12502:3 12503:2 12505:1 12506:1 12511:1 12512:2 12548:1 12554:1 12557:5 12572:1 12594:1 12614:1 12630:1 12631:1 12632:2 12652:4 12664:6 12674:1 12715:2 12716:1 12727:1 12733:1 12739:1 12751:1 12757:1 12762:2 12778:2 12779:1 12781:1 12810:2 12821:1 12839:1 12856:1 12857:1 12861:2 12879:3 12913:1 12920:1 12929:2 12930:1 12932:1 12950:1 12962:1 12974:10 12981:3 12984:1 12991:2 13001:1 13007:1 13008:1 13012:1 13021:1 13052:1 13064:1 13069:4 13076:1 13090:2 13091:2 13099:1 13108:3 13118:1 13130:1 13153:1 13159:1 13163:1 13195:1 13197:2 13198:1 13228:2 13254:1 13259:1 13275:1 13276:1 13278:1 13281:1 13288:1 13291:1 13299:5 13311:1 13328:1 13330:1 13336:2 13342:1 13343:1 13346:1 13348:2 13354:1 13356:1 13359:1 13388:1 13405:1 13411:1 13412:6 13413:2 13423:1 13425:2 13430:3 13431:2 13434:2 13436:3 13437:1 13439:1 13441:6 13449:1 13450:4 13451:5 13453:6 13465:1 13466:1 13474:6 13475:4 13493:1 13495:1 13498:4 13502:3 13512:3 13532:4 13534:2 13555:1 13585:1 13587:1 13599:1 13600:6 13606:4 13610:5 13612:2 13630:2 13635:1 13636:7 13637:1 13640:1 13650:1 13654:1 13680:1 13696:1 13700:1 13702:5 13703:1 13711:2 13721:1 13741:2 13747:2 13756:8 13789:1 13810:3 13817:1 13821:1 13823:1 13824:4 13844:1 13845:1 13863:1 13875:1 13886:1 13889:1 13891:1 13892:1 13898:1 13902:3 13908:4 13937:5 13944:1 13955:1 13957:2 13960:1 13974:5 13992:1 14002:2 14011:1 14013:1 14073:1 14079:1 14084:1 14088:1 14096:3 14100:6 14133:4 14134:1 14148:6 14181:7 14257:1 14262:1 14271:1 14274:1 14286:1 14289:3 14293:5 14296:4 14299:1 14325:1 14339:1 14349:1 14364:1 14366:2 14371:1 14381:1 14383:1 14396:1 14402:1 14411:2 14420:1 14422:1 14436:2 14452:3 14474:2 14478:1 14484:1 14515:2 14519:11 14525:7 14527:1 14540:1 14555:4 14559:2 14581:1 14583:6 14590:4 14592:1 14594:5 14601:2 14608:2 14609:3 14610:3 14644:1 14663:2 14672:1 14681:4 14692:1 14694:3 14708:1 14718:1 14757:1 14765:1 14770:2 14798:1 14814:1 14823:2 14826:5 14828:1 14829:1 14830:1 14845:2 14854:1 14861:1 14868:1 14873:1 14884:4 14887:1 14897:1 14900:2 14903:1 14909:3 14920:1 14935:1 14962:1 14965:3 14968:3 14979:2 14980:2 14994:1 15004:1 15005:2 15009:1 15010:1 15019:2 15021:1 15030:1 15036:1 15040:1 15051:1 15068:1 15085:4 15089:5 15113:3 15117:2 15122:1 15131:1 15134:2 15153:1 15170:1 15177:1 15188:1 15195:2 15206:3 15235:1 15243:1 15274:2 15283:1 15290:6 15396:1 15421:1 15445:1 15480:1 15486:1 15491:1 15497:1 15502:1 15503:2 15523:1 15546:2 15547:1 15568:5 15576:2 15585:1 15613:2 15618:4 15628:1 15629:1 15633:1 15637:4 15658:1 15666:10 15675:1 15693:2 15696:5 15698:2 15712:2 15713:2 15724:3 15727:1 15728:1 15731:1 15745:1 15747:2 15752:7 15756:1 15771:1 15772:1 15773:2 15778:1 15789:2 15799:1 15829:1 15836:1 15854:1 15863:1 15864:2 15867:1 15872:1 15881:1 15896:1 15905:1 15911:1 15934:1 15937:1 15959:4 15962:1 15966:1 15976:1 15978:27 15986:2 15990:2 15996:3 16001:1 16006:4 16008:1 16016:3 16017:1 16022:2 16029:1 16072:1 16077:1 16106:1 16110:2 16122:1 16127:1 16139:1 16156:1 16160:1 16175:1 16179:1 16183:3 16187:1 16202:1 16206:1 16217:1 16221:5 16235:2 16243:1 16247:1 16263:1 16264:1 16271:1 16278:1 16287:1 16288:1 16338:1 16343:3 16344:1 16345:1 16346:1 16356:1 16358:1 16366:2 16380:1 16388:1 16389:2 16394:1 16400:1 16418:1 16421:1 16434:3 16482:1 16487:1 16515:3 16532:1 16540:1 16545:1 16571:1 16579:2 16582:7 16584:1 16594:2 16595:2 16597:2 16616:1 16633:2 16655:1 16666:5 16675:1 16679:2 16691:1 16694:1 16716:3 16717:1 16732:1 16740:1 16760:1 16806:1 16812:3 16822:7 16834:1 16883:1 16893:1 16894:1 16902:4 16918:1 16932:1 16937:2 16942:1 16945:1 16946:1 16964:1 16967:2 17010:1 17014:2 17019:1 17027:1 17039:1 17040:1 17042:1 17059:1 17067:1 17072:4 17094:1 17104:1 17106:4 17125:1 17128:2 17140:1 17146:1 17161:1 17189:1 17192:1 17202:1 17207:4 17213:1 17237:1 17239:2 17242:1 17251:4 17252:1 17263:1 17270:3 17306:4 17324:6 17342:1 17353:1 17362:1 17370:1 17380:1 17388:1 17389:2 17394:1 17408:21 17423:2 17434:1 17436:4 17437:2 17438:1 17440:1 17443:1 17444:2 17474:3 17475:1 17486:2 17493:2 17495:4 17504:1 17507:1 17508:1 17510:1 17519:1 17524:1 17531:1 17532:1 17544:1 17552:1 17572:1 17573:1 17576:1 17583:3 17586:1 17590:1 17613:1 17615:3 17631:2 17644:1 17672:1 17680:1 17684:2 17687:4 17696:1 17709:1 17723:1 17753:1 17779:1 17780:1 17787:1 17802:4 17815:1 17817:1 17820:1 17846:1 17863:1 17877:1 17878:1 17886:1 17889:1 17890:1 17891:6 17894:1 17912:5 17933:1 17934:2 17968:1 17990:1 18000:1 18009:1 18017:2 18022:1 18058:1 18068:9 18075:2 18084:1 18098:3 18100:3 18108:1 18131:1 18132:1 18143:2 18144:1 18147:1 18148:1 18168:1 18176:2 18193:1 18198:2 18201:1 18210:1 18213:1 18221:3 18230:2 18233:2 18246:1 18249:4 18253:1 18255:1 18265:3 18266:1 18269:1 18271:1 18282:1 18289:2 18310:1 18318:1 18319:1 18325:2 18326:1 18343:1 18344:2 18355:4 18366:1 18367:1 18373:1 18380:1 18387:1 18389:6 18392:15 18393:1 18398:1 18399:1 18412:1 18419:1 18428:1 18442:4 18473:3 18498:2 18509:1 18516:1 18557:2 18563:2 18584:1 18585:1 18589:1 18612:1 18613:2 18636:2 18643:5 18657:3 18686:2 18690:3 18693:1 18699:1 18713:4 18722:4 18735:3 18747:1 18751:4 18753:4 18760:1 18764:1 18766:1 18767:1 18788:1 18792:1 18799:1 18801:4 18811:3 18819:2 18834:2 18836:1 18838:1 18850:2 18852:1 18860:1 18865:1 18874:1 18877:1 18899:1 18907:3 18914:1 18934:1 18941:1 18945:1 18947:1 18953:2 18956:1 18960:1 18966:1 18978:1 19001:4 19005:1 19007:1 19015:1 19020:6 19021:2 19031:2 19032:1 19035:2 19036:1 19050:1 19057:2 19098:1 19130:4 19132:1 19137:1 19140:1 19165:2 19171:1 19174:1 19177:4 19278:2 19280:1 19301:1 19311:2 19312:1 19350:1 19358:3 19360:2 19365:2 19367:1 19369:1 19386:1 19398:1 19399:1 19411:1 19412:1 19433:1 19458:2 19465:2 19470:3 19518:2 19522:1 19526:2 19528:1 19545:1 19549:1 19559:1 19600:2 19604:1 19606:1 19607:1 19615:1 19618:1 19619:1 19627:1 19643:2 19659:2 19661:1 19664:1 19672:1 19673:1 19674:4 19687:1 19691:1 19692:1 19698:1 19718:1 19740:3 19748:1 19762:1 19767:1 19812:1 19818:2 19823:1 19824:6 19831:1 19856:1 19869:1 19878:1 19888:1 19918:1 19919:1 19957:1 19996:2 20003:1 20033:1 20044:1 20052:1 20059:4 20060:6 20082:3 20097:1 20105:1 20118:1 20126:3 20150:1 20158:1 20159:1 20177:5 20178:1 20185:3 20191:2 20193:1 20207:2 20212:1 20215:5 20247:1 20255:3 20263:2 20270:1 20271:1 20273:1 20276:1 20311:1 20330:1 20342:1 20350:1 20388:2
14 8:1 20:1 49:1 58:1 69:1 73:1 88:6 113:1 115:2 116:2 118:1 131:1 133:1 134:1 140:4 143:1 148:1 162:1 166:1 183:2 191:1 206:1 272:1 274:2 277:2 282:1 284:1 289:1 307:1 311:1 344:1 364:4 366:7 371:1 374:1 376:3 392:1 400:1 406:3 417:1 420:1 421:1 423:1 430:1 440:1 441:1 442:1 448:1 467:4 470:1 475:1 493:4 496:1 502:1 509:1 528:2 547:1 548:5 559:3 569:1 576:2 584:2 592:1 611:1 624:1 633:1 667:4 678:1 697:2 700:1 703:4 706:3 717:1 730:1 791:1 800:4 801:3 802:2 805:5 866:1 868:1 874:1 877:1 884:2 885:2 919:1 932:1 936:1 939:4 950:1 955:1 984:1 1000:1 1014:2 1015:1 1018:2 1025:1 1028:1 1031:2 1046:1 1060:1 1079:2 1081:5 1082:1 1116:2 1134:1 1142:1 1146:1 1186:2 1237:1 1241:2 1246:1 1252:1 1253:1 1256:3 1266:1 1273:1 1290:1 1295:1 1310:1 1311:1 1315:1 1330:3 1331:8 1332:1 1333:1 1334:2 1366:1 1382:1 1419:5 1428:1 1432:1 1438:1 1442:2 1445:2 1449:1 1467:3 1468:3 1487:1 1492:1 1499:2 1510:1 1525:1 1535:1 1536:1 1545:1 1565:1 1571:1 1578:1 1585:2 1596:1 1601:1 1603:1 1609:2 1634:1 1637:1 1640:1 1647:8 1653:1 1654:1 1658:1 1668:1 1675:1 1692:1 1721:1 1758:2 1773:1 1777:2 1786:1 1796:1 1797:2 1818:1 1827:1 1828:1 1830:1 1834:1 1836:1 1839:3 1840:1 1843:3 1845:2 1846:1 1847:1 1854:1 1858:5 1860:1 1865:1 1867:1 1875:2 1880:1 1912:3 1921:1 1934:1 1941:1 1942:1 1943:1 1945:3 1946:1 1961:1 1969:1 1980:2 2003:2 2004:3 2016:1 2021:1 2084:1 2089:1 2100:4 2117:2 2128:1 2146:1 2149:4 2157:4 2186:1 2189:1 2198:1 2201:1 2203:1 2205:1 2230:1 2235:4 2251:3 2253:3 2280:3 2282:2 2289:1 2298:2 2313:4 2315:2 2327:3 2329:1 2355:1 2358:4 2369:1 2379:3 2385:1 2399:1 2407:2 2418:1 2423:1 2443:1 2455:3 2456:1 2481:1 2504:6 2509:1 2524:5 2533:6 2536:1 2540:2 2556:1 2560:1 2563:8 2572:2 2598:4 2600:5 2630:1 2632:4 2642:1 2656:1 2657:1 2658:3 2659:1 2661:1 2663:1 2665:1 2666:1 2671:1 2696:1 2697:1 2701:1 2713:1 2726:1 2737:1 2747:1 2751:2 2761:1 2782:4 2788:1 2789:2 2812:1 2814:1 2816:1 2817:3 2822:1 2824:1 2831:7 2851:2 2856:1 2858:1 2887:1 2903:2 2905:3 2912:1 2917:1 2923:3 2927:2 2930:1 2931:1 2933:2 2937:1 2943:1 2961:2 2971:1 2980:2 2982:1 2983:2 2989:1 2992:1 2998:2 3001:2 3026:1 3028:4 3039:1 3043:1 3044:1 3046:2 3047:2 3048:2 3049:1 3053:1 3068:1 3069:2 3070:1 3071:3 3082:2 3083:1 3093:1 3094:1 3110:3 3112:1 3116:5 3118:1 3123:5 3125:1 3126:1 3133:3 3135:1 3136:1 3142:4 3144:2 3146:2 3149:3 3156:1 3168:1 3169:1 3202:1 3210:2 3212:1 3215:1 3231:1 3250:2 3266:1 3267:1 3270:1 3272:1 3281:6 3294:1 3295:1 3306:2 3316:2 3327:1 3328:1 3329:2 3352:1 3357:3 3358:2 3390:1 3400:1 3420:1 3431:2 3435:1 3446:1 3456:2 3458:1 3474:1 3489:1 3493:1 3501:1 3507:1 3510:2 3512:1 3518:2 3521:1 3536:1 3558:1 3560:6 3562:2 3568:3 3578:1 3581:6 3583:2 3587:2 3588:2 3599:1 3607:1 3609:1 3629:1 3631:2 3633:1 3638:2 3642:2 3655:1 3671:1 3692:2 3706:4 3707:3 3726:9 3731:1 3732:2 3733:2 3738:1 3751:1 3753:2 3763:1 3766:1 3771:1 3775:1 3777:6 3788:1 3811:3 3819:3 3820:1 3830:1 3834:1 3836:1 3837:1 3841:1 3871:1 3873:1 3879:1 3886:3 3892:1 3901:1 3905:3 3919:1 3920:5 3927:1 3948:1 3966:4 3972:1 3975:1 3989:1 3991:1 3994:1 3997:1 3998:1 3999:1 4002:1 4013:2 4019:3 4026:2 4033:6 4037:3 4054:1 4058:2 4059:3 4067:1 4071:27 4072:1 4073:1 4079:1 4091:2 4096:1 4098:1 4111:1 4114:3 4128:1 4129:1 4131:7 4140:2 4144:1 4145:6 4152:4 4160:1 4162:1 4168:1 4169:4 4194:1 4195:3 4196:1 4197:1 4203:1 4210:5 4211:1 4213:1 4225:4 4234:1 4249:2 4251:1 4253:1 4257:1 4270:2 4277:1 4294:4 4301:1 4305:2 4307:1 4324:2 4331:1 4343:1 4348:4 4349:3 4366:1 4378:1 4412:2 4420:1 4427:3 4436:2 4441:1 4471:1 4483:1 4486:1 4500:1 4502:1 4510:1 4544:3 4549:2 4553:5 4556:1 4568:2 4622:2 4627:2 4635:1 4638:1 4641:2 4658:2 4667:1 4676:2 4683:1 4686:5 4692:9 4699:4 4708:1 4733:1 4751:1 4754:1 4759:1 4762:3 4766:1 4771:3 4772:1 4778:1 4779:1 4794:1 4795:3 4827:1 4831:1 4834:6 4837:2 4847:1 4851:8 4869:2 4900:2 4910:1 4914:2 4937:1 4940:1 4959:1 4960:1 4982:3 4989:3 5001:1 5006:3 5016:1 5018:1 5019:1 5023:2 5025:1 5039:1 5040:1 5052:1 5058:6 5067:27 5074:1 5081:1 5083:4 5097:1 5112:1 5131:1 5132:1 5135:1 5153:2 5156:1 5157:1 5185:1 5193:1 5200:1 5203:8 5212:1 5227:1 5228:1 5231:2 5236:1 5241:3 5247:1 5256:4 5264:1 5266:3 5271:5 5288:1 5313:2 5321:1 5347:1 5362:1 5364:1 5365:4 5366:2 5372:1 5375:1 5387:1 5394:3 5402:1 5406:1 5408:1 5413:1 5416:1 5433:1 5434:1 5437:1402 5443:2 5456:1 5458:1 5460:2 5462:1 5468:1 5497:1 5507:2 5509:2 5518:1 5520:1 5530:1 5583:1 5590:1 5600:1 5604:1 5625:1 5637:1 5644:1 5657:1 5661:1 5672:1 5673:2 5691:3 5697:2 5714:1 5717:1 5751:2 5753:2 5756:2 5757:1 5762:1 5763:1 5765:4 5767:1 5771:3 5775:1 5778:1 5780:5 5785:1 5813:2 5817:1 5837:1 5856:1 5867:1 5874:1 5879:1 5886:1 5893:2 5904:1 5911:2 5912:1 5932:12 5944:1 5962:3 5974:1 5984:9 5996:2 5997:1 6020:1 6026:1 6055:1 6090:1 6092:2 6100:1 6110:1 6111:1 6118:1 6133:1 6165:1 6174:1 6208:1 6216:1 6220:1 6232:1 6233:2 6307:1 6311:2 6316:3 6317:1 6321:1 6325:1 6339:3 6349:1 6351:1 6352:2 6354:1 6420:6 6425:4 6450:1 6451:1 6452:1 6453:1 6458:1 6489:1 6502:4 6508:1 6511:4 6517:6 6520:2 6541:4 6543:1 6586:1 6588:1 6596:1 6609:1 6615:2 6660:1 6661:2 6662:1 6668:1 6675:15 6680:1 6681:1 6683:4 6688:1 6694:10 6725:2 6736:1 6741:1 6746:1 6747:3 6749:1 6752:4 6756:1 6765:1 6801:1 6822:1 6829:1 6837:1 6845:9 6866:1 6867:4 6868:1 6876:1 6879:1 6880:1 6882:1 6884:1 6885:1 6891:1 6900:1 6902:3 6903:1 6905:1 6931:3 6945:3 6953:1 6956:2 6957:1 6967:1 6988:1 7000:1 7008:2 7009:1 7013:1 7016:1 7024:1 7078:1 7079:1 7082:1 7112:1 7113:1 7129:1 7142:1 7148:4 7156:1 7160:5 7161:1 7174:1 7185:4 7205:1 7207:1 7258:1 7263:1 7266:4 7268:4 7277:1 7287:1 7295:2 7297:2 7305:1 7357:1 7361:1 7400:2 7402:1 7403:2 7414:2 7425:1 7427:1 7441:1 7446:1 7459:3 7466:3 7474:3 7488:2 7490:3 7497:1 7512:1 7513:1 7515:1 7525:1 7526:5 7527:1 7539:1 7548:1 7571:1 7582:2 7585:1 7589:1 7591:1 7595:1 7601:1 7610:1 7611:2 7615:1 7618:1 7622:1 7623:1 7630:1 7631:1 7641:2 7652:2 7653:1 7664:2 7670:1 7678:1 7690:1 7703:4 7767:1 7769:2 7770:1 7771:1 7773:1 7782:3 7783:2 7788:2 7790:2 7794:2 7800:1 7804:1 7825:1 7829:1 7849:1 7852:1 7872:1 7886:1 7895:1 7898:5 7921:1 7930:1 7941:1 7951:3 7968:1 7975:1 7977:2 7989:2 8016:1 8024:1 8032:1 8033:1 8055:2 8080:2 8084:1 8091:2 8095:1 8125:1 8137:1 8148:1 8156:1 8162:1 8190:2 8195:1 8210:1 8246:2 8278:1 8290:1 8311:1 8328:1 8332:1 8334:3 8364:3 8373:2 8378:2 8379:2 8386:1 8388:1 8398:1 8435:1 8458:1 8465:1 8473:1 8479:1 8533:1 8541:1 8545:4 8554:2 8556:1 8560:1 8572:1 8579:1 8589:5 8590:3 8609:1 8626:1 8636:1 8642:1 8643:1 8644:3 8650:2 8651:1 8652:1 8657:1 8663:1 8670:2 8691:2 8692:1 8704:1 8712:5 8717:2 8718:1 8736:1 8745:7 8774:1 8777:1 8784:2 8794:1 8810:2 8820:4 8824:4 8825:1 8831:5 8835:2 8836:1 8837:1 8839:1 8840:1 8846:5 8847:8 8849:1 8851:3 8853:3 8895:1 8911:2 8918:1 8925:1 8950:1 8997:2 9013:1 9027:1 9041:8 9046:1 9058:1 9061:1 9062:1 9074:2 9082:3 9086:1 9091:1 9118:1 9131:1 9138:1 9153:1 9158:4 9176:1 9203:1 9204:1 9207:1 9212:2 9213:1 9214:1 9216:1 9234:1 9236:2 9241:2 9245:1 9254:2 9302:1 9308:1 9315:1 9318:2 9321:1 9333:1 9337:3 9344:1 9346:1 9347:1 9355:2 9374:1 9387:1 9392:1 9402:2 9408:1 9410:1 9423:1 9425:4 9441:1 9478:1 9503:1 9509:8 9513:1 9514:1 9515:1 9517:1 9518:1 9521:1 9530:1 9535:1 9538:2 9543:2 9544:1 9555:4 9558:4 9563:2 9572:1 9575:1 9578:1 9581:1 9582:1 9585:1 9592:7 9607:3 9609:1 9624:1 9628:1 9632:1 9634:3 9646:1 9658:3 9669:2 9674:1 9678:1 9689:2 9694:1 9696:5 9715:3 9718:1 9723:2 9726:1 9732:1 9754:1 9755:1 9762:2 9780:1 9781:1 9782:5 9828:1 9830:3 9841:2 9846:2 9865:1 9888:1 9916:3 9918:3 9920:1 9925:1 9927:1 9930:1 9937:1 9945:1 9946:1 9956:2 9960:2 9967:1 9995:4 9999:1 10010:1 10016:1 10029:1 10042:1 10093:2 10116:2 10140:1 10150:1 10159:1 10160:2 10161:1 10163:1 10168:1 10174:1 10182:1 10184:1 10200:1 10209:1 10220:1 10221:1 10223:2 10224:2 10233:3 10236:1 10238:1 10266:1 10269:1 10275:1 10277:1 10278:1 10293:1 10294:1 10299:1 10313:1 10323:2 10328:1 10333:1 10341:1 10363:1 10367:1 10376:2 10382:1 10387:1 10392:1 10397:3 10399:1 10409:1 10410:7 10430:1 10453:1 10465:1 10466:1 10478:1 10479:1 10490:1 10512:1 10517:2 10536:3 10548:1 10559:1 10570:1 10593:1 10607:1 10611:1 10613:1 10615:1 10625:2 10648:3 10682:4 10683:1 10695:1 10717:2 10718:4 10729:1 10734:1 10736:1 10737:2 10743:1 10744:8 10751:2 10755:1 10760:1 10774:1 10783:1 10789:1 10790:1 10791:1 10796:2 10797:1 10812:32 10814:1 10833:1 10838:1 10841:3 10843:4 10855:3 10866:1 10871:3 10872:1 10886:1 10888:1 10901:1 10903:1 10908:1 10940:3 10941:1 10942:1 10946:1 10981:5 10983:1 10990:1 10998:5 11002:1 11022:1 11033:1 11034:3 11037:1 11038:1 11057:1 11072:2 11078:1 11082:2 11110:1 11112:1 11113:2 11118:1 11125:4 11131:1 11150:2 11164:1 11170:1 11190:1 11195:1 11212:1 11228:1 11229:1 11247:4 11248:2 11260:4 11297:1 11300:1 11301:2 11322:1 11332:1 11340:1 11342:2 11347:1 11354:1 11357:1 11363:3 11379:4 11382:3 11401:3 11403:1 11413:1 11417:1 11423:4 11431:2 11436:10 11452:2 11457:2 11466:1 11470:1 11485:1 11487:2 11509:4 11528:1 11530:1 11569:1 11584:3 11594:3 11597:5 11618:1 11620:3 11621:1 11625:1 11651:3 11656:1 11658:1 11691:2 11709:6 11711:1 11714:1 11722:1 11727:2 11728:1 11737:2 11747:1 11758:1 11764:1 11771:2 11774:1 11776:3 11779:1 11782:1 11785:5 11786:2 11788:2 11799:7 11842:1 11849:1 11854:1 11881:1 11888:2 11896:1 11898:1 11913:1 11916:1 11921:1 11926:1 11943:2 11947:1 11949:1 11950:3 11966:1 11987:1 11990:3 11995:1 11997:1 12004:4 12011:2 12014:1 12021:1 12022:1 12024:3 12025:1 12032:1 12035:2 12038:1 12042:1 12046:1 12058:1 12059:1 12063:1 12067:1 12077:1 12094:1 12095:1 12102:1 12110:2 12118:1 12128:3 12129:1 12133:1 12136:1 12137:2 12183:1 12196:11 12205:1 12211:1 12213:1 12214:1 12229:1 12240:1 12257:1 12262:1 12290:1 12323:1 12344:1 12345:2 12356:1 12366:1 12379:1 12382:1 12399:1 12401:2 12402:1 12418:9 12423:1 12435:1 12436:1 12444:1 12445:2 12457:2 12463:1 12466:1 12467:5 12477:1 12481:1 12486:1 12495:2 12501:5 12502:3 12503:2 12505:1 12506:1 12511:1 12512:2 12548:1 12554:1 12557:5 12561:1 12572:1 12594:1 12614:1 12630:1 12631:1 12632:2 12652:4 12664:6 12674:1 12715:2 12716:1 12727:1 12733:1 12739:1 12751:1 12755:1 12757:1 12762:2 12778:2 12779:1 12781:1 12800:1 12810:2 12821:1 12839:1 12856:1 12857:1 12861:2 12879:3 12913:1 12920:1 12929:2 12930:1 12932:1 12950:1 12962:1 12974:11 12981:3 12984:1 12991:2 13001:1 13007:1 13008:1 13012:1 13021:1 13028:1 13052:1 13064:1 13069:4 13076:1 13090:2 13091:2 13099:1 13108:3 13111:1 13118:1 13130:1 13153:1 13159:1 13163:1 13195:1 13197:2 13198:1 13228:2 13254:1 13259:1 13275:1 13276:1 13278:1 13281:1 13288:1 13291:1 13299:5 13311:1 13328:1 13330:1 13336:2 13342:1 13343:1 13346:1 13348:2 13354:1 13356:1 13359:1 13388:1 13405:1 13411:1 13412:7 13413:2 13423:1 13425:2 13430:3 13431:2 13434:3 13436:3 13437:1 13439:1 13441:7 13449:1 13450:4 13451:5 13453:6 13465:1 13466:1 13474:7 13475:4 13493:1 13495:1 13498:4 13502:3 13512:3 13532:4 13534:2 13555:1 13585:1 13587:1 13599:1 13600:7 13606:4 13610:6 13612:2 13630:2 13635:1 13636:7 13637:1 13640:1 13650:1 13654:1 13680:1 13696:1 13700:1 13702:5 13703:1 13711:2 13721:1 13741:2 13747:2 13751:1 13756:9 13789:1 13810:4 13817:1 13821:1 13823:1 13824:4 13844:1 13845:1 13863:1 13875:1 13886:1 13889:1 13891:1 13892:1 13898:1 13902:4 13908:4 13937:5 13944:1 13955:1 13957:2 13960:1 13974:5 13992:1 14002:3 14011:1 14013:1 14073:1 14079:1 14084:1 14088:1 14096:3 14100:6 14133:4 14134:1 14148:6 14181:8 14257:1 14262:1 14271:1 14274:1 14286:1 14289:3 14293:5 14296:5 14299:1 14325:1 14339:1 14349:1 14364:1 14366:2 14371:1 14381:2 14383:1 14396:1 14402:1 14411:2 14420:1 14422:1 14436:2 14452:3 14471:1 14474:3 14478:1 14484:1 14515:3 14519:11 14525:7 14527:1 14540:1 14555:4 14559:2 14581:1 14583:6 14590:4 14592:1 14594:5 14601:2 14608:2 14609:3 14610:3 14644:1 14663:2 14672:1 14681:4 14692:1 14694:3 14707:1 14708:1 14718:1 14757:1 14765:1 14770:2 14798:1 14814:1 14823:2 14826:5 14828:1 14829:1 14830:1 14831:1 14845:2 14854:1 14861:1 14868:1 14870:1 14873:1 14884:4 14887:1 14897:1 14900:2 14903:1 14909:3 14920:1 14935:1 14962:1 14965:4 14968:3 14979:2 14980:3 14994:1 15004:1 15005:2 15009:1 15010:1 15015:1 15019:2 15021:1 15030:1 15036:1 15040:1 15051:1 15068:1 15085:4 15089:5 15113:3 15117:2 15122:1 15131:1 15134:2 15153:1 15170:1 15177:1 15188:1 15195:2 15206:3 15235:1 15243:1 15258:1 15274:2 15283:1 15290:6 15396:1 15421:1 15445:1 15480:1 15486:1 15491:1 15497:1 15502:1 15503:2 15523:1 15546:2 15547:1 15568:5 15576:2 15585:1 15593:1 15613:2 15618:4 15628:1 15629:1 15633:1 15637:4 15658:1 15666:11 15675:1 15693:2 15695:1 15696:5 15698:2 15712:2 15713:2 15724:3 15727:1 15728:1 15731:1 15745:1 15747:2 15752:7 15756:1 15764:1 15771:1 15772:1 15773:2 15778:1 15789:2 15799:1 15829:1 15836:1 15854:1 15863:1 15864:2 15867:1 15872:1 15881:1 15896:1 15905:1 15911:1 15926:1 15934:1 15937:1 15959:4 15962:1 15966:1 15974:1 15976:1 15978:27 15986:2 15990:2 15996:3 16001:1 16006:4 16008:1 16016:3 16017:1 16021:1 16022:2 16029:1 16072:1 16077:1 16106:1 16110:2 16122:1 16127:1 16139:1 16156:1 16160:1 16175:1 16179:1 16183:3 16187:1 16202:1 16206:1 16217:1 16221:5 16235:2 16243:1 16247:1 16263:1 16264:1 16271:1 16278:1 16287:1 16288:1 16338:1 16343:3 16344:1 16345:1 16346:1 16356:1 16358:1 16366:3 16380:1 16388:1 16389:2 16394:1 16400:1 16418:1 16421:1 16434:3 16482:1 16487:1 16515:3 16532:1 16540:1 16545:1 16571:1 16579:2 16582:8 16584:1 16594:2 16595:2 16597:2 16616:1 16633:2 16655:1 16666:5 16675:1 16679:2 16691:1 16694:1 16716:4 16717:1 16732:1 16740:1 16760:1 16806:1 16812:3 16822:8 16834:1 16883:1 16893:1 16894:1 16902:4 16918:1 16932:1 16937:2 16942:1 16945:1 16946:1 16964:1 16967:2 17010:1 17014:2 17019:1 17027:1 17039:1 17040:1 17042:1 17059:1 17067:2 17072:4 17094:1 17104:1 17106:4 17125:1 17128:2 17140:1 17146:1 17161:1 17189:1 17192:1 17202:1 17207:4 17213:1 17237:1 17239:2 17242:1 17251:4 17252:1 17263:1 17270:3 17306:4 17324:6 17342:1 17353:1 17362:1 17370:1 17380:1 17388:1 17389:2 17394:1 17408:23 17423:2 17434:1 17436:4 17437:3 17438:1 17440:2 17443:1 17444:2 17474:3 17475:1 17486:2 17493:2 17495:5 17504:1 17507:1 17508:1 17510:1 17519:1 17524:1 17531:1 17532:1 17544:1 17552:1 17572:1 17573:1 17576:1 17583:3 17586:1 17590:1 17613:1 17615:3 17631:2 17644:1 17672:1 17680:1 17684:2 17687:4 17696:1 17709:1 17723:1 17753:1 17779:1 17780:1 17787:1 17802:4 17815:1 17817:1 17820:1 17825:2 17846:1 17863:1 17877:1 17878:2 17886:1 17889:1 17890:1 17891:6 17894:1 17912:6 17933:1 17934:2 17961:1 17968:1 17990:1 18000:1 18009:1 18017:2 18022:1 18058:1 18068:10 18075:2 18084:1 18098:3 18100:3 18108:1 18131:1 18132:1 18143:2 18144:1 18147:1 18148:1 18168:1 18176:2 18193:1 18198:3 18201:1 18210:1 18211:1 18213:1 18221:3 18230:3 18233:2 18246:1 18249:5 18253:1 18255:1 18265:3 18266:1 18269:2 18271:1 18282:1 18289:2 18310:1 18318:1 18319:1 18325:2 18326:1 18343:1 18344:2 18355:4 18366:1 18367:1 18373:1 18380:1 18387:1 18389:6 18392:16 18393:1 18398:1 18399:1 18412:1 18419:1 18428:1 18442:4 18465:1 18473:3 18498:2 18509:1 18516:1 18557:2 18563:2 18569:2 18584:1 18585:1 18589:1 18612:1 18613:4 18636:2 18641:1 18643:5 18657:3 18686:2 18690:4 18693:1 18699:1 18713:4 18722:4 18735:4 18747:1 18751:5 18753:4 18760:1 18764:1 18766:1 18767:1 18788:1 18792:1 18799:1 18801:4 18811:3 18819:2 18834:3 18836:1 18838:1 18850:3 18852:1 18860:1 18865:1 18874:1 18877:1 18899:2 18907:4 18914:1 18934:1 18941:1 18945:1 18947:1 18953:2 18956:1 18960:2 18966:1 18978:1 19001:4 19005:1 19007:1 19015:1 19020:7 19021:2 19031:2 19032:1 19035:2 19036:1 19050:1 19057:2 19098:1 19130:4 19132:1 19137:1 19140:1 19165:3 19171:1 19174:1 19177:5 19278:2 19280:1 19301:1 19311:2 19312:1 19350:1 19358:3 19360:3 19365:2 19367:1 19369:1 19386:1 19398:1 19399:1 19411:1 19412:1 19433:1 19458:2 19465:2 19470:3 19518:2 19522:1 19526:2 19528:1 19545:1 19549:1 19559:1 19600:3 19604:1 19606:1 19607:1 19615:1 19618:1 19619:1 19627:1 19643:2 19659:2 19661:1 19664:1 19672:1 19673:1 19674:4 19684:1 19687:1 19691:1 19692:1 19698:1 19718:1 19740:3 19748:1 19762:1 19767:1 19812:1 19818:2 19823:1 19824:6 19831:1 19856:1 19869:1 19878:1 19888:1 19916:1 19918:1 19919:1 19930:1 19957:1 19996:2 20003:1 20033:1 20044:1 20052:1 20059:4 20060:6 20082:3 20097:1 20105:1 20118:1 20126:4 20150:1 20158:1 20159:1 20177:5 20178:1 20185:3 20191:2 20193:1 20207:2 20212:1 20215:6 20247:1 20255:3 20263:2 20270:1 20271:1 20273:1 20276:1 20311:1 20330:1 20342:1 20350:1 20388:2
14 8:1 20:1 49:1 58:1 69:1 72:1 73:1 88:6 113:1 115:2 116:2 118:1 131:1 133:1 134:1 140:4 143:1 148:1 162:1 166:1 183:2 191:1 206:1 272:1 274:2 277:2 282:1 284:1 289:1 307:1 311:1 344:1 364:5 366:7 371:1 374:1 376:3 392:1 400:1 403:1 406:3 417:1 420:1 421:1 423:1 430:1 440:1 441:1 442:1 448:1 467:5 470:1 475:1 484:1 493:5 496:1 502:1 509:1 528:2 547:1 548:6 559:3 569:1 576:2 584:2 592:1 611:1 624:1 633:1 667:4 678:1 697:2 700:1 703:4 706:3 717:1 730:1 791:1 800:5 801:3 802:2 805:5 841:1 866:1 868:1 874:1 877:1 884:2 885:2 919:1 932:1 936:1 939:4 950:1 955:1 984:1 1000:1 1014:2 1015:1 1018:2 1025:1 1028:1 1031:2 1046:1 1060:1 1079:2 1081:5 1082:1 1116:2 1134:1 1142:1 1146:1 1186:2 1204:1 1237:1 1241:2 1246:1 1252:1 1253:1 1256:3 1266:1 1273:1 1290:1 1295:1 1310:1 1311:1 1315:1 1330:3 1331:8 1332:1 1333:1 1334:2 1366:1 1382:1 1388:1 1419:5 1428:1 1432:1 1438:1 1442:2 1445:2 1449:1 1467:3 1468:3 1487:1 1492:1 1499:2 1510:1 1525:1 1535:1 1536:1 1545:1 1562:1 1565:1 1571:1 1578:1 1585:2 1596:1 1601:1 1603:1 1609:2 1634:1 1637:1 1640:1 1647:10 1653:1 1654:1 1658:1 1668:1 1675:1 1692:1 1721:1 1758:2 1773:1 1777:2 1786:1 1796:1 1797:2 1818:1 1827:1 1828:1 1830:1 1834:1 1836:1 1839:3 1840:1 1843:3 1845:2 1846:1 1847:1 1849:1 1854:1 1858:5 1860:1 1865:1 1867:1 1875:2 1880:1 1912:3 1921:1 1934:1 1941:1 1942:1 1943:1 1945:3 1946:1 1961:1 1969:1 1980:2 2003:2 2004:3 2016:1 2021:1 2084:1 2089:1 2100:4 2117:2 2128:1 2146:2 2149:5 2157:4 2182:1 2186:1 2189:1 2198:1 2201:1 2203:1 2205:1 2230:1 2235:4 2251:3 2253:3 2266:1 2280:3 2282:2 2289:2 2298:2 2313:4 2315:2 2327:3 2329:1 2349:1 2355:1 2358:5 2369:1 2379:3 2385:1 2399:1 2407:2 2418:1 2423:1 2443:1 2455:3 2456:1 2481:1 2504:6 2509:1 2524:5 2533:6 2536:1 2540:2 2556:1 2560:1 2563:8 2572:2 2598:4 2600:5 2630:1 2632:4 2642:1 2656:1 2657:1 2658:3 2659:1 2661:1 2663:2 2665:1 2666:1 2671:1 2696:2 2697:2 2701:1 2713:1 2726:1 2737:1 2747:1 2751:2 2761:1 2782:4 2787:1 2788:1 2789:2 2812:1 2814:1 2816:1 2817:3 2822:1 2824:1 2831:8 2851:2 2856:1 2858:1 2887:1 2903:2 2905:3 2912:1 2917:1 2923:3 2927:2 2930:1 2931:1 2933:2 2937:1 2943:1 2961:2 2971:1 2980:2 2982:1 2983:2 2989:1 2992:1 2998:2 3001:2 3007:1 3026:2 3028:5 3039:1 3043:1 3044:1 3046:2 3047:2 3048:2 3049:1 3053:1 3068:1 3069:2 3070:1 3071:3 3082:2 3083:1 3093:1 3094:1 3110:3 3112:1 3116:5 3118:1 3123:5 3125:1 3126:1 3133:3 3135:1 3136:1 3142:4 3144:2 3146:2 3149:3 3156:1 3168:1 3169:1 3202:1 3210:2 3212:1 3215:1 3231:1 3250:2 3266:1 3267:1 3270:2 3272:1 3281:6 3294:1 3295:1 3306:2 3316:2 3321:1 3327:1 3328:1 3329:2 3352:1 3357:3 3358:2 3390:1 3400:1 3420:1 3431:2 3435:1 3446:1 3456:2 3458:1 3474:1 3489:1 3493:1 3501:1 3507:1 3510:2 3512:1 3518:2 3521:1 3536:1 3558:1 3560:6 3562:2 3568:4 3578:1 3581:6 3583:2 3587:2 3588:2 3599:1 3607:1 3609:1 3629:1 3631:2 3633:1 3638:2 3642:2 3655:1 3671:1 3692:2 3706:5 3707:3 3726:9 3731:1 3732:2 3733:2 3738:1 3751:1 3753:2 3763:1 3766:1 3771:1 3775:1 3777:6 3788:1 3811:4 3819:3 3820:1 3830:1 3834:1 3836:1 3837:1 3841:1 3871:1 3873:1 3879:1 3886:3 3892:1 3901:1 3905:3 3919:1 3920:5 3927:1 3948:1 3966:4 3972:1 3975:1 3989:1 3991:1 3994:1 3997:1 3998:1 3999:1 4002:1 4013:2 4019:3 4026:2 4033:6 4037:3 4054:1 4058:2 4059:3 4067:1 4071:29 4072:1 4073:1 4079:1 4091:2 4096:1 4098:1 4111:1 4114:3 4128:1 4129:1 4131:7 4140:2 4144:1 4145:6 4152:4 4160:1 4162:1 4168:1 4169:6 4194:1 4195:3 4196:1 4197:1 4203:1 4210:5 4211:1 4213:1 4225:4 4234:1 4249:2 4251:1 4253:1 4257:1 4270:2 4277:1 4294:4 4301:1 4305:2 4307:1 4324:3 4331:1 4343:1 4348:4 4349:3 4366:1 4378:1 4412:2 4420:1 4427:3 4436:2 4441:1 4471:1 4483:1 4486:1 4500:1 4502:1 4510:1 4544:3 4549:2 4553:7 4556:1 4568:2 4622:2 4627:2 4635:1 4638:1 4641:2 4649:1 4658:2 4667:1 4676:2 4683:1 4686:5 4692:9 4699:4 4708:1 4733:1 4751:1 4754:1 4759:1 4762:3 4766:1 4771:3 4772:1 4778:2 4779:1 4794:1 4795:3 4827:1 4831:1 4834:6 4837:2 4847:1 4851:8 4869:2 4900:2 4910:1 4914:2 4937:1 4940:1 4959:1 4960:1 4982:3 4989:3 5001:1 5006:3 5016:1 5018:1 5019:1 5023:2 5025:1 5039:1 5040:1 5052:1 5058:6 5067:29 5074:1 5081:1 5083:4 5097:1 5112:1 5131:1 5132:1 5135:1 5153:2 5156:1 5157:1 5185:1 5193:1 5200:1 5203:10 5212:1 5227:1 5228:1 5231:2 5236:1 5241:3 5247:1 5256:5 5264:1 5266:4 5271:5 5288:1 5313:2 5321:1 5347:1 5362:1 5364:1 5365:4 5366:2 5372:1 5375:1 5387:1 5394:3 5402:1 5406:1 5408:1 5413:1 5416:1 5433:1 5434:1 5437:1446 5443:2 5456:1 5458:1 5460:2 5462:1 5468:1 5497:1 5507:2 5509:2 5518:1 5520:1 5530:1 5583:1 5590:1 5600:1 5604:1 5625:1 5637:1 5644:1 5657:1 5661:1 5672:1 5673:2 5691:3 5697:2 5714:1 5717:2 5718:1 5751:2 5753:2 5756:2 5757:1 5760:1 5762:1 5763:1 5765:4 5767:1 5771:3 5775:1 5778:1 5780:5 5785:1 5813:2 5817:1 5837:1 5856:1 5867:1 5874:1 5879:1 5886:1 5893:2 5904:1 5911:2 5912:1 5916:1 5932:12 5944:1 5962:3 5974:1 5984:9 5996:2 5997:1 6020:1 6026:1 6055:1 6090:1 6092:2 6100:1 6110:1 6111:1 6118:1 6133:1 6165:1 6174:1 6208:1 6216:1 6220:1 6232:1 6233:2 6307:1 6308:1 6311:2 6316:3 6317:1 6321:1 6325:1 6339:3 6349:1 6351:1 6352:2 6354:1 6420:6 6425:4 6450:1 6451:1 6452:1 6453:1 6458:1 6489:1 6502:5 6508:1 6511:5 6517:7 6520:2 6541:4 6543:1 6586:1 6587:1 6588:1 6593:1 6596:1 6609:1 6615:2 6660:1 6661:2 6662:1 6668:1 6675:16 6680:1 6681:1 6682:1 6683:4 6688:1 6694:10 6725:3 6736:1 6741:1 6746:2 6747:3 6749:1 6752:5 6756:1 6765:1 6801:1 6822:1 6829:1 6837:1 6845:9 6866:1 6867:4 6868:1 6876:1 6879:1 6880:1 6882:1 6884:1 6885:1 6891:1 6900:1 6902:3 6903:1 6905:1 6931:3 6945:3 6953:1 6956:2 6957:1 6967:1 6988:1 7000:1 7008:2 7009:1 7013:1 7016:1 7024:1 7078:1 7079:1 7082:1 7084:1 7112:1 7113:1 7129:1 7142:1 7148:4 7156:1 7160:5 7161:1 7174:1 7185:4 7205:1 7207:1 7258:1 7263:1 7266:4 7268:4 7277:1 7287:1 7295:2 7297:2 7305:1 7342:1 7357:1 7361:1 7400:2 7402:1 7403:2 7414:2 7425:1 7427:1 7441:1 7446:1 7459:3 7466:3 7474:3 7488:2 7490:3 7497:1 7512:1 7513:1 7515:1 7525:1 7526:5 7527:1 7539:1 7548:1 7571:1 7582:3 7585:1 7589:1 7591:1 7595:1 7601:1 7610:1 7611:2 7615:1 7618:1 7622:1 7623:1 7630:1 7631:1 7641:2 7652:2 7653:1 7664:2 7670:1 7678:1 7690:1 7703:4 7767:1 7769:2 7770:1 7771:1 7773:1 7782:3 7783:2 7788:2 7790:2 7794:2 7800:1 7804:1 7825:1 7829:1 7849:1 7852:1 7872:1 7886:1 7895:1 7898:5 7921:1 7930:1 7941:1 7951:3 7968:1 7975:1 7977:2 7989:2 8016:1 8024:1 8032:1 8033:1 8055:2 8080:2 8084:1 8091:2 8095:1 8125:1 8137:1 8148:1 8156:1 8162:1 8190:2 8195:1 8210:1 8246:2 8260:1 8278:1 8290:1 8311:1 8328:1 8332:1 8334:3 8364:3 8373:3 8378:2 8379:2 8386:1 8388:1 8398:1 8429:1 8435:1 8458:1 8465:1 8473:1 8479:1 8533:1 8541:1 8545:4 8554:2 8556:1 8560:1 8572:1 8579:1 8589:5 8590:3 8609:1 8626:1 8636:1 8642:1 8643:1 8644:3 8650:2 8651:1 8652:1 8657:1 8663:1 8670:2 8691:2 8692:1 8704:1 8712:5 8717:2 8718:1 8736:1 8745:7 8774:1 8777:1 8784:2 8794:1 8810:2 8820:5 8824:4 8825:1 8831:5 8835:2 8836:1 8837:2 8839:1 8840:1 8843:1 8846:6 8847:8 8849:1 8851:3 8853:3 8895:1 8911:2 8918:2 8925:1 8950:1 8997:2 9013:1 9027:1 9041:8 9046:1 9058:1 9061:1 9062:1 9074:2 9082:3 9086:1 9091:1 9118:1 9131:1 9138:1 9153:1 9158:5 9176:1 9203:2 9204:1 9207:1 9212:2 9213:1 9214:1 9216:1 9234:1 9236:2 9241:2 9245:1 9254:2 9302:1 9308:1 9315:1 9318:2 9321:1 9333:1 9337:3 9344:1 9346:1 9347:1 9355:2 9374:1 9387:1 9392:1 9393:1 9402:2 9408:1 9410:1 9423:2 9425:4 9439:1 9441:1 9478:1 9503:1 9509:8 9513:1 9514:1 9515:1 9517:1 9518:1 9521:1 9530:2 9535:1 9538:2 9543:3 9544:1 9555:4 9558:4 9563:2 9572:1 9575:1 9578:1 9581:1 9582:1 9585:1 9592:7 9607:3 9609:1 9624:1 9628:1 9632:1 9634:3 9646:1 9658:3 9669:2 9674:1 9678:1 9687:1 9689:2 9694:1 9696:5 9715:3 9718:1 9723:2 9726:1 9732:1 9754:1 9755:1 9762:2 9780:1 9781:1 9782:5 9828:1 9830:3 9841:2 9846:2 9865:1 9888:1 9916:3 9918:3 9920:1 9925:1 9927:1 9930:1 9937:1 9945:1 9946:1 9956:2 9960:2 9967:1 9995:4 9999:2 10010:1 10016:1 10029:1 10042:1 10093:2 10116:2 10140:1 10150:1 10159:1 10160:2 10161:1 10163:1 10168:1 10174:1 10182:1 10184:1 10200:1 10209:1 10220:1 10221:1 10223:2 10224:2 10233:3 10236:1 10238:1 10266:1 10269:1 10275:1 10277:1 10278:1 10293:1 10294:1 10299:1 10313:1 10323:2 10328:1 10333:1 10341:1 10363:1 10367:1 10376:2 10382:1 10387:1 10392:1 10397:3 10399:1 10409:1 10410:8 10430:1 10453:1 10465:1 10466:1 10478:1 10479:1 10490:1 10512:1 10517:2 10536:3 10548:1 10559:1 10570:1 10593:2 10607:1 10611:1 10613:1 10615:1 10625:2 10648:3 10682:4 10683:1 10695:1 10717:2 10718:4 10729:1 10734:1 10736:1 10737:3 10743:1 10744:8 10751:2 10755:1 10760:2 10774:1 10783:1 10789:1 10790:1 10791:1 10796:2 10797:1 10812:32 10814:1 10833:1 10838:1 10841:3 10843:4 10849:1 10855:3 10866:1 10871:3 10872:1 10886:1 10888:1 10901:1 10903:1 10908:1 10940:3 10941:1 10942:1 10946:1 10981:5 10983:1 10990:1 10998:5 11002:1 11022:1 11033:1 11034:3 11037:1 11038:1 11057:1 11072:2 11078:1 11082:2 11110:1 11112:1 11113:2 11118:1 11125:4 11131:1 11150:2 11164:1 11170:1 11190:1 11195:1 11212:1 11228:1 11229:1 11247:4 11248:2 11260:4 11297:1 11300:1 11301:2 11322:1 11332:1 11340:1 11342:2 11347:1 11352:1 11354:1 11357:1 11363:3 11379:4 11382:3 11401:4 11403:1 11413:1 11417:1 11423:4 11431:2 11436:11 11452:2 11457:2 11466:1 11470:1 11485:1 11487:2 11509:4 11528:1 11530:1 11569:1 11584:3 11594:3 11597:5 11618:1 11620:3 11621:1 11625:1 11651:3 11656:1 11658:1 11691:2 11709:6 11711:1 11714:1 11722:1 11727:2 11728:1 11737:2 11747:1 11758:1 11764:1 11771:2 11774:1 11776:3 11779:1 11782:1 11785:5 11786:2 11788:2 11799:8 11833:1 11842:1 11849:1 11854:1 11881:1 11888:2 11896:1 11898:1 11913:1 11916:1 11921:1 11926:1 11943:2 11947:1 11949:1 11950:3 11957:1 11966:1 11987:1 11990:3 11995:1 11997:1 12004:5 12011:2 12014:1 12021:1 12022:1 12024:3 12025:1 12032:1 12035:2 12038:1 12042:1 12046:1 12058:1 12059:1 12063:1 12067:1 12077:1 12094:1 12095:1 12102:1 12110:3 12118:1 12128:3 12129:1 12133:1 12136:1 12137:2 12183:1 12196:11 12205:1 12211:1 12213:1 12214:1 12229:1 12240:1 12257:1 12262:1 12290:1 12323:1 12344:1 12345:4 12356:1 12366:1 12379:1 12382:1 12399:1 12401:2 12402:2 12418:9 12423:1 12435:1 12436:1 12444:1 12445:2 12457:2 12463:1 12466:1 12467:5 12471:1 12477:1 12481:1 12486:1 12495:3 12501:5 12502:3 12503:2 12505:1 12506:1 12511:1 12512:2 12548:1 12554:1 12557:5 12561:1 12572:1 12594:1 12614:1 12630:1 12631:1 12632:2 12643:1 12652:4 12664:6 12674:1 12715:3 12716:1 12727:1 12733:1 12739:1 12751:1 12755:1 12757:1 12762:2 12778:2 12779:1 12781:1 12800:1 12810:3 12821:1 12839:1 12856:1 12857:1 12861:2 12879:4 12913:1 12920:1 12929:2 12930:1 12932:1 12950:1 12962:1 12974:11 12981:3 12984:1 12991:2 13001:1 13007:1 13008:1 13012:1 13021:1 13028:1 13052:1 13064:1 13069:4 13076:2 13090:2 13091:2 13099:1 13108:4 13111:1 13118:1 13130:1 13153:1 13159:1 13163:1 13195:1 13197:3 13198:1 13228:2 13254:1 13259:1 13275:1 13276:1 13278:1 13281:1 13288:1 13291:1 13299:5 13311:1 13328:1 13330:1 13336:2 13342:1 13343:1 13346:1 13348:3 13354:1 13356:1 13359:1 13388:1 13405:1 13411:1 13412:7 13413:2 13423:1 13425:2 13430:3 13431:2 13434:3 13436:3 13437:1 13439:1 13441:7 13449:1 13450:4 13451:5 13453:6 13465:1 13466:1 13474:7 13475:4 13493:1 13495:1 13498:4 13502:4 13503:1 13512:3 13532:5 13534:2 13555:1 13585:1 13587:1 13599:1 13600:7 13606:4 13610:6 13612:2 13630:2 13635:1 13636:7 13637:1 13640:1 13650:2 13654:1 13680:1 13696:1 13700:1 13702:5 13703:1 13711:2 13721:1 13741:2 13747:2 13751:1 13756:9 13789:1 13810:4 13817:1 13821:1 13823:1 13824:5 13844:1 13845:1 13863:1 13875:1 13886:1 13889:1 13891:1 13892:1 13898:1 13902:5 13908:5 13937:5 13944:1 13955:1 13957:2 13960:2 13974:5 13992:1 14002:3 14011:1 14013:1 14073:1 14079:1 14084:1 14088:1 14096:3 14100:6 14133:5 14134:1 14148:7 14181:8 14257:1 14262:1 14271:1 14274:1 14286:1 14289:3 14293:5 14296:5 14299:1 14325:1 14339:1 14349:1 14364:1 14366:2 14371:1 14381:2 14383:1 14396:1 14402:1 14411:2 14420:1 14422:1 14436:2 14447:1 14452:3 14471:1 14474:3 14478:1 14484:1 14515:3 14519:11 14525:7 14527:1 14540:1 14555:4 14559:2 14581:1 14583:7 14590:4 14592:1 14594:5 14601:2 14608:2 14609:3 14610:3 14644:1 14663:2 14672:1 14681:4 14692:1 14694:3 14707:1 14708:1 14718:1 14757:1 14765:1 14770:2 14798:1 14814:1 14823:2 14826:5 14828:1 14829:1 14830:1 14831:1 14845:2 14854:1 14861:1 14868:1 14870:1 14873:1 14884:4 14887:1 14897:1 14900:2 14903:1 14909:4 14920:1 14935:1 14962:1 14965:4 14968:3 14979:2 14980:3 14994:1 15004:1 15005:2 15009:1 15010:1 15015:1 15019:2 15021:1 15030:1 15036:1 15040:1 15051:1 15068:1 15076:1 15085:5 15089:5 15113:3 15117:2 15122:1 15125:1 15131:1 15134:2 15153:1 15170:1 15177:1 15188:1 15195:3 15206:3 15235:1 15243:1 15258:1 15274:2 15283:1 15290:6 15363:1 15367:1 15396:1 15421:1 15445:1 15480:1 15486:1 15491:1 15497:1 15502:1 15503:2 15523:1 15546:2 15547:1 15568:5 15576:2 15585:1 15593:1 15613:2 15618:4 15628:1 15629:1 15633:1 15637:4 15658:1 15666:11 15675:1 15693:2 15695:1 15696:5 15698:2 15712:2 15713:2 15724:3 15727:1 15728:1 15731:1 15745:1 15747:2 15752:7 15756:1 15764:1 15771:1 15772:1 15773:2 15778:1 15789:3 15799:1 15829:1 15836:1 15854:1 15863:1 15864:2 15867:1 15872:1 15881:1 15896:1 15905:1 15911:1 15926:1 15934:1 15937:1 15959:5 15962:1 15966:1 15974:1 15976:1 15978:29 15986:2 15990:2 15996:3 16001:1 16006:5 16008:1 16016:3 16017:1 16021:1 16022:2 16029:1 16072:1 16077:1 16106:1 16110:2 16122:1 16127:1 16139:1 16156:1 16160:1 16175:1 16179:1 16183:3 16187:1 16202:1 16206:1 16217:2 16221:5 16235:2 16243:1 16247:1 16263:1 16264:1 16271:1 16278:1 16279:1 16287:1 16288:1 16338:2 16343:3 16344:1 16345:1 16346:1 16356:1 16358:1 16362:1 16366:3 16380:1 16388:1 16389:2 16394:1 16400:1 16418:1 16421:1 16434:3 16482:1 16487:1 16515:3 16532:1 16540:1 16545:1 16571:1 16579:2 16582:8 16584:1 16594:2 16595:2 16597:2 16616:1 16633:2 16655:1 16666:5 16675:1 16679:2 16691:1 16694:1 16716:4 16717:1 16732:1 16740:1 16760:1 16806:1 16812:3 16822:8 16834:1 16883:1 16893:1 16894:1 16902:4 16918:1 16932:1 16937:2 16942:1 16945:1 16946:1 16964:1 16967:2 17005:1 17010:1 17014:2 17019:1 17027:1 17039:1 17040:1 17042:1 17059:1 17067:2 17072:4 17094:1 17104:1 17106:4 17125:1 17128:2 17140:1 17146:1 17161:1 17189:1 17192:1 17193:1 17202:1 17207:4 17213:1 17237:1 17239:2 17242:1 17251:5 17252:1 17263:1 17270:3 17306:4 17324:6 17342:1 17353:1 17362:1 17370:1 17380:1 17388:1 17389:2 17394:1 17408:24 17423:2 17434:1 17436:4 17437:3 17438:1 17440:2 17443:1 17444:2 17474:3 17475:1 17486:2 17493:2 17495:5 17504:1 17507:1 17508:1 17510:1 17519:1 17524:1 17531:1 17532:1 17544:1 17552:1 17572:1 17573:1 17576:1 17583:3 17586:1 17590:1 17613:1 17615:3 17631:2 17643:1 17644:1 17672:1 17680:1 17684:2 17687:4 17696:1 17709:1 17723:1 17753:1 17779:1 17780:1 17787:1 17802:4 17815:1 17817:1 17820:1 17825:2 17846:1 17863:1 17877:1 17878:2 17886:1 17889:1 17890:1 17891:6 17894:1 17912:6 17933:1 17934:2 17961:1 17968:1 17989:1 17990:1 18000:1 18009:1 18017:2 18022:1 18058:1 18068:10 18075:3 18084:1 18098:3 18100:3 18108:1 18131:1 18132:1 18143:2 18144:1 18147:1 18148:1 18168:1 18176:3 18193:1 18198:3 18201:1 18210:1 18211:1 18213:1 18221:3 18230:3 18233:2 18246:1 18249:5 18253:1 18255:1 18265:3 18266:1 18269:2 18271:1 18282:1 18289:2 18310:1 18318:1 18319:1 18325:2 18326:1 18343:1 18344:2 18355:4 18366:1 18367:1 18373:1 18380:1 18387:1 18389:6 18392:16 18393:1 18398:1 18399:1 18412:1 18419:1 18428:1 18442:4 18465:1 18473:3 18498:2 18509:1 18516:1 18557:2 18563:2 18569:2 18584:1 18585:1 18589:1 18612:1 18613:4 18636:2 18641:1 18643:5 18657:3 18686:2 18690:4 18693:1 18699:1 18713:4 18722:4 18735:5 18747:1 18751:5 18753:4 18760:1 18764:1 18766:1 18767:1 18788:1 18792:1 18799:1 18801:4 18811:3 18819:2 18834:3 18836:1 18838:1 18850:3 18852:1 18860:1 18865:1 18874:1 18877:1 18899:2 18907:4 18914:1 18934:1 18941:1 18945:1 18947:1 18953:2 18956:1 18960:2 18966:1 18978:1 19001:5 19005:1 19007:1 19015:1 19020:7 19021:2 19031:2 19032:1 19035:2 19036:1 19050:1 19057:2 19098:1 19130:5 19132:1 19137:1 19140:1 19156:1 19165:3 19171:1 19174:1 19177:5 19278:2 19280:1 19301:1 19311:2 19312:1 19350:1 19358:3 19360:3 19365:2 19367:1 19369:1 19386:1 19398:1 19399:1 19411:1 19412:1 19433:1 19458:2 19465:2 19470:3 19518:2 19522:1 19526:2 19528:1 19545:1 19549:1 19559:1 19600:3 19604:1 19606:1 19607:1 19615:1 19618:1 19619:1 19627:1 19643:2 19659:2 19661:1 19664:1 19672:1 19673:1 19674:4 19684:1 19687:1 19691:1 19692:1 19698:1 19718:1 19740:3 19748:1 19762:1 19767:1 19812:1 19818:2 19823:1 19824:6 19825:1 19831:1 19856:1 19869:1 19878:1 19888:1 19905:1 19916:1 19918:1 19919:1 19930:1 19944:1 19957:1 19996:2 20003:1 20033:1 20044:1 20052:1 20059:4 20060:6 20082:3 20097:1 20105:1 20118:1 20126:4 20150:1 20158:1 20159:1 20177:5 20178:1 20181:1 20185:3 20191:2 20193:1 20207:2 20212:1 20215:6 20247:1 20255:3 20263:2 20270:1 20271:1 20273:1 20276:1 20311:1 20330:1 20342:1 20350:1 20388:2
14 8:1 20:1 21:1 49:1 58:1 69:1 72:1 73:1 88:6 113:1 115:2 116:2 118:1 131:1 133:1 134:1 140:4 143:1 148:1 162:1 166:1 183:2 191:1 206:1 226:1 272:1 274:2 277:2 282:1 284:1 289:1 307:1 311:1 344:1 364:5 366:7 371:1 374:1 376:3 392:1 400:1 403:1 406:3 417:1 420:1 421:1 423:1 430:1 440:1 441:1 442:1 448:1 453:1 467:5 470:1 475:1 484:1 493:7 495:2 496:1 502:1 509:1 528:2 547:1 548:6 559:3 569:1 576:2 584:2 592:1 611:1 624:1 633:1 667:4 669:1 678:1 697:2 700:1 703:4 706:3 717:1 730:1 791:1 800:5 801:3 802:2 805:5 841:1 866:1 868:1 874:1 877:1 884:2 885:2 919:2 932:1 936:1 939:4 950:1 955:1 984:1 1000:1 1014:2 1015:1 1018:2 1025:1 1028:1 1031:2 1046:1 1060:1 1079:2 1081:5 1082:1 1116:2 1128:1 1134:1 1142:1 1146:1 1186:2 1204:1 1237:1 1241:2 1246:1 1252:1 1253:1 1256:3 1266:1 1273:1 1290:1 1295:1 1310:1 1311:1 1315:1 1330:3 1331:8 1332:1 1333:1 1334:2 1366:1 1380:2 1382:1 1388:1 1419:5 1428:1 1432:1 1438:1 1442:2 1445:2 1449:1 1467:3 1468:3 1487:1 1492:1 1499:2 1510:1 1525:1 1535:1 1536:1 1545:1 1553:2 1562:1 1565:1 1571:1 1578:1 1585:2 1596:1 1601:1 1603:1 1609:2 1634:1 1637:1 1640:1 1647:10 1653:1 1654:1 1658:1 1668:1 1675:1 1692:1 1721:1 1758:2 1773:1 1777:2 1786:1 1796:1 1797:2 1818:1 1827:1 1828:1 1830:1 1834:1 1836:1 1839:3 1840:1 1843:3 1845:2 1846:1 1847:1 1849:1 1854:1 1858:5 1860:1 1865:1 1867:1 1875:2 1880:1 1911:1 1912:3 1921:1 1934:1 1941:1 1942:1 1943:1 1945:3 1946:1 1961:1 1969:1 1980:2 2003:2 2004:3 2016:1 2021:1 2084:1 2089:1 2100:4 2117:2 2128:1 2143:2 2146:2 2149:5 2157:4 2182:1 2186:1 2189:1 2197:1 2198:1 2201:1 2203:1 2205:1 2230:1 2235:4 2251:3 2253:3 2266:1 2280:3 2282:2 2289:2 2298:2 2313:4 2315:2 2327:3 2329:1 2349:1 2355:1 2358:5 2360:1 2369:1 2379:4 2385:1 2399:1 2407:2 2418:1 2423:1 2424:1 2443:1 2455:3 2456:1 2481:1 2504:6 2509:1 2524:5 2533:6 2536:1 2540:2 2556:1 2560:1 2563:9 2570:1 2572:2 2598:4 2600:5 2625:1 2630:1 2632:4 2642:1 2656:1 2657:1 2658:3 2659:1 2661:1 2663:2 2665:1 2666:1 2671:1 2696:2 2697:2 2701:1 2713:1 2726:1 2737:1 2747:1 2751:2 2761:1 2768:1 2781:1 2782:4 2787:1 2788:1 2789:2 2812:1 2814:1 2816:1 2817:3 2822:1 2824:1 2831:8 2851:2 2856:1 2858:1 2887:2 2903:3 2905:3 2912:1 2917:1 2923:3 2927:2 2930:1 2931:1 2933:2 2937:1 2943:1 2961:2 2971:1 2980:2 2982:1 2983:2 2989:1 2992:1 2998:2 3001:2 3007:1 3026:2 3028:5 3039:1 3043:1 3044:1 3046:2 3047:2 3048:2 3049:1 3053:1 3068:1 3069:2 3070:1 3071:3 3082:2 3083:1 3093:1 3094:1 3110:3 3112:1 3114:1 3116:5 3118:1 3122:1 3123:5 3125:1 3126:1 3133:3 3135:1 3136:1 3142:4 3144:2 3146:2 3149:3 3156:1 3168:2 3169:1 3202:1 3210:2 3212:1 3215:1 3231:1 3250:2 3266:1 3267:1 3270:2 3272:1 3281:6 3294:1 3295:1 3306:2 3316:2 3321:1 3327:1 3328:1 3329:2 3352:1 3357:3 3358:2 3390:1 3400:1 3420:1 3431:2 3435:1 3446:1 3456:2 3458:1 3474:1 3489:1 3493:1 3501:1 3507:1 3510:2 3512:1 3518:2 3521:1 3536:1 3558:1 3560:6 3562:2 3568:4 3578:1 3581:6 3583:2 3587:2 3588:2 3599:1 3607:1 3609:1 3629:1 3631:2 3633:1 3638:2 3642:2 3655:1 3671:1 3692:2 3706:5 3707:3 3726:9 3731:1 3732:2 3733:2 3738:1 3751:1 3753:2 3763:1 3766:1 3771:1 3775:1 3777:6 3788:1 3811:4 3819:3 3820:1 3830:1 3834:1 3836:1 3837:1 3841:1 3871:1 3873:1 3879:1 3886:3 3892:1 3901:1 3905:4 3919:1 3920:5 3927:1 3948:1 3966:4 3972:1 3975:1 3989:1 3991:1 3994:1 3997:1 3998:1 3999:1 4002:1 4013:2 4019:3 4026:2 4031:1 4033:6 4037:3 4054:1 4058:2 4059:3 4067:1 4071:30 4072:1 4073:1 4079:1 4091:2 4096:1 4098:1 4111:1 4114:3 4128:1 4129:1 4131:8 4140:2 4144:1 4145:7 4152:4 4160:1 4162:1 4168:1 4169:7 4175:1 4194:1 4195:3 4196:1 4197:1 4203:1 4210:5 4211:1 4213:1 4225:4 4234:2 4249:2 4251:1 4253:1 4257:1 4270:2 4277:1 4294:4 4301:1 4305:2 4307:1 4324:4 4331:1 4343:1 4348:4 4349:3 4366:1 4378:1 4412:2 4420:2 4427:3 4436:2 4441:1 4471:1 4483:1 4486:1 4500:1 4502:1 4506:1 4510:1 4544:3 4549:2 4553:7 4556:1 4561:1 4568:2 4611:1 4622:2 4627:2 4628:2 4635:1 4638:1 4641:2 4649:1 4658:2 4667:1 4676:2 4683:1 4686:5 4692:9 4699:5 4708:1 4733:1 4734:1 4751:1 4754:1 4759:1 4762:3 4766:1 4771:3 4772:1 4778:2 4779:1 4794:1 4795:3 4827:1 4831:1 4834:6 4837:2 4847:1 4851:9 4869:2 4900:2 4910:1 4914:2 4937:1 4940:1 4959:1 4960:1 4982:3 4989:3 5001:1 5006:3 5016:1 5018:1 5019:1 5023:2 5025:1 5039:1 5040:1 5052:1 5057:1 5058:6 5067:29 5074:1 5081:1 5083:4 5097:1 5112:1 5131:1 5132:1 5135:1 5153:2 5156:1 5157:1 5185:1 5193:1 5200:1 5203:11 5212:1 5227:1 5228:1 5231:2 5236:1 5241:3 5247:1 5256:5 5264:1 5266:4 5271:5 5288:1 5309:1 5313:2 5321:1 5345:1 5347:2 5362:1 5364:1 5365:4 5366:2 5372:1 5375:1 5383:1 5387:1 5394:3 5402:1 5406:1 5408:1 5413:1 5416:1 5424:1 5433:1 5434:1 5437:1584 5443:2 5456:1 5458:1 5460:2 5462:1 5468:1 5497:1 5499:1 5507:2 5509:2 5511:1 5518:1 5520:1 5530:1 5583:1 5590:1 5600:1 5604:1 5625:1 5637:1 5644:1 5657:1 5661:1 5672:1 5673:2 5674:1 5691:3 5697:2 5714:1 5717:2 5718:1 5751:2 5753:2 5756:2 5757:1 5760:1 5762:1 5763:1 5765:4 5767:1 5771:3 5775:1 5778:1 5780:5 5785:1 5806:1 5813:2 5817:1 5837:1 5856:1 5867:1 5874:1 5879:1 5886:1 5893:2 5904:1 5911:2 5912:1 5916:1 5932:12 5944:1 5962:3 5974:1 5984:9 5996:2 5997:1 6020:1 6026:1 6055:1 6090:1 6092:2 6100:1 6110:1 6111:1 6118:1 6133:1 6165:1 6174:1 6208:1 6216:1 6220:1 6232:1 6233:2 6307:1 6308:1 6311:2 6316:3 6317:1 6321:1 6325:1 6339:3 6349:2 6351:1 6352:2 6354:1 6368:1 6420:6 6425:4 6450:1 6451:1 6452:1 6453:1 6458:1 6489:1 6502:5 6508:1 6511:5 6517:7 6520:2 6534:1 6541:4 6543:1 6586:1 6587:1 6588:1 6593:1 6596:1 6607:1 6609:1 6615:2 6635:1 6660:1 6661:2 6662:1 6668:1 6675:16 6680:1 6681:1 6682:1 6683:4 6688:1 6694:10 6725:3 6736:1 6741:1 6746:2 6747:3 6749:1 6752:5 6756:1 6765:1 6801:1 6822:1 6829:1 6837:1 6845:9 6866:1 6867:5 6868:1 6876:1 6879:1 6880:1 6882:1 6884:1 6885:1 6891:1 6900:1 6902:4 6903:1 6905:1 6931:3 6945:3 6953:1 6956:2 6957:1 6967:1 6988:1 7000:1 7008:2 7009:1 7013:1 7016:1 7024:1 7078:1 7079:1 7082:1 7084:1 7112:1 7113:1 7129:1 7142:1 7148:4 7156:1 7160:5 7161:1 7174:1 7185:4 7205:1 7207:1 7258:1 7263:1 7266:4 7268:4 7277:1 7287:1 7295:2 7297:2 7305:1 7342:1 7357:1 7361:1 7400:2 7402:1 7403:2 7414:2 7425:1 7427:1 7441:1 7446:1 7447:1 7459:3 7466:3 7474:3 7488:2 7490:3 7497:1 7504:1 7506:2 7512:1 7513:1 7515:1 7525:1 7526:5 7527:1 7539:1 7548:1 7571:1 7582:3 7585:1 7589:1 7591:1 7595:1 7601:1 7610:1 7611:2 7615:1 7618:1 7622:2 7623:1 7630:1 7631:1 7633:1 7641:2 7652:2 7653:1 7664:2 7670:1 7678:1 7690:1 7703:4 7707:1 7767:1 7769:2 7770:1 7771:1 7773:1 7782:4 7783:2 7788:2 7790:2 7794:2 7800:1 7804:1 7825:1 7829:2 7849:1 7852:1 7854:1 7872:1 7886:1 7895:1 7898:6 7921:1 7930:1 7941:1 7951:3 7968:1 7975:1 7977:2 7989:2 8016:1 8024:1 8032:1 8033:1 8055:2 8080:2 8084:1 8091:2 8095:1 8125:2 8137:1 8148:1 8156:1 8162:1 8176:1 8190:2 8195:1 8210:1 8246:2 8254:1 8260:1 8278:1 8282:2 8290:1 8311:1 8328:1 8332:1 8334:3 8364:3 8373:3 8378:2 8379:2 8386:1 8388:1 8398:1 8429:1 8435:1 8458:1 8465:1 8473:1 8479:1 8533:1 8541:1 8545:4 8554:2 8556:1 8560:1 8572:1 8579:1 8589:5 8590:3 8608:1 8609:1 8626:1 8636:1 8642:1 8643:1 8644:3 8650:2 8651:1 8652:1 8657:1 8663:1 8670:2 8691:2 8692:1 8704:1 8712:5 8717:2 8718:1 8736:1 8745:7 8774:1 8777:1 8784:3 8794:1 8810:2 8820:5 8824:4 8825:1 8831:5 8832:2 8835:2 8836:1 8837:2 8839:1 8840:1 8843:1 8846:6 8847:8 8849:1 8851:3 8853:3 8895:1 8911:2 8918:2 8925:1 8950:1 8997:2 9013:1 9027:1 9041:8 9046:1 9058:1 9061:1 9062:1 9074:2 9082:4 9086:1 9091:1 9118:1 9131:1 9138:1 9153:1 9158:5 9176:1 9203:2 9204:1 9207:1 9212:2 9213:1 9214:1 9216:1 9234:1 9236:2 9241:2 9245:1 9254:2 9265:2 9302:1 9308:1 9315:1 9318:2 9321:1 9333:1 9337:3 9344:1 9346:1 9347:1 9355:2 9374:1 9387:1 9392:1 9393:1 9402:2 9408:1 9410:1 9423:2 9425:4 9439:1 9441:1 9478:1 9503:1 9508:1 9509:9 9513:1 9514:2 9515:1 9517:1 9518:1 9521:1 9530:2 9535:1 9538:2 9543:3 9544:2 9555:4 9558:4 9563:2 9572:1 9575:1 9578:1 9581:1 9582:1 9585:1 9592:8 9607:3 9609:1 9622:1 9624:1 9628:1 9632:1 9634:3 9646:1 9658:3 9669:2 9674:1 9678:1 9687:1 9689:2 9694:2 9696:5 9715:3 9718:1 9723:2 9726:1 9731:2 9732:1 9754:1 9755:1 9762:2 9780:1 9781:1 9782:5 9828:1 9830:3 9841:2 9846:2 9865:1 9888:1 9916:3 9918:3 9920:1 9925:1 9927:1 9930:1 9937:1 9945:2 9946:1 9956:2 9960:2 9967:1 9995:4 9999:2 10010:1 10016:1 10029:1 10042:1 10093:2 10116:2 10140:1 10150:1 10159:1 10160:2 10161:1 10163:1 10168:1 10174:1 10182:1 10184:1 10200:1 10209:1 10220:1 10221:1 10223:2 10224:2 10233:4 10236:1 10238:1 10266:1 10269:1 10275:1 10277:1 10278:1 10293:1 10294:1 10299:1 10313:1 10323:2 10328:1 10333:1 10341:1 10363:1 10367:1 10376:2 10382:1 10387:1 10392:1 10397:3 10399:1 10409:1 10410:8 10430:1 10453:1 10465:1 10466:1 10478:1 10479:1 10490:1 10512:1 10517:2 10536:3 10548:1 10559:1 10570:1 10593:2 10607:1 10611:1 10613:1 10615:1 10625:2 10648:3 10682:4 10683:1 10695:1 10717:2 10718:4 10729:1 10734:1 10736:1 10737:3 10743:1 10744:8 10751:2 10755:1 10760:2 10774:1 10780:1 10783:1 10789:1 10790:1 10791:1 10796:2 10797:1 10805:1 10812:34 10814:1 10833:1 10838:1 10841:3 10843:5 10849:1 10855:3 10866:1 10871:3 10872:1 10886:1 10888:1 10901:1 10903:1 10908:1 10940:3 10941:1 10942:1 10946:1 10981:5 10983:1 10990:1 10998:5 11002:1 11022:1 11033:1 11034:3 11037:1 11038:1 11045:1 11057:1 11072:2 11078:1 11082:2 11087:1 11110:1 11112:1 11113:2 11118:1 11121:1 11125:4 11131:1 11150:2 11164:1 11170:1 11190:1 11195:1 11212:1 11228:1 11229:1 11247:4 11248:2 11260:4 11297:1 11300:1 11301:2 11322:1 11332:1 11340:1 11342:2 11347:1 11352:1 11354:1 11357:1 11363:3 11379:4 11382:3 11401:4 11403:1 11413:1 11417:1 11423:4 11431:2 11436:11 11452:2 11457:2 11466:1 11470:1 11485:1 11487:2 11509:4 11528:1 11530:1 11548:1 11569:1 11584:3 11594:3 11597:5 11618:1 11620:3 11621:1 11625:1 11651:4 11656:1 11658:1 11691:2 11709:6 11711:1 11714:1 11722:1 11727:2 11728:1 11737:2 11747:1 11758:1 11764:1 11771:2 11774:1 11776:3 11779:1 11782:1 11785:5 11786:2 11788:2 11799:8 11833:1 11842:1 11849:1 11854:1 11881:1 11888:2 11896:1 11898:1 11913:1 11916:1 11921:1 11926:1 11943:2 11947:1 11949:1 11950:3 11957:1 11966:1 11987:1 11990:3 11995:1 11997:1 12004:5 12011:2 12014:1 12021:1 12022:1 12024:3 12025:1 12032:1 12035:2 12038:1 12042:1 12046:1 12058:1 12059:1 12063:1 12067:1 12077:1 12094:1 12095:1 12102:1 12110:3 12118:1 12128:3 12129:1 12133:1 12136:1 12137:2 12143:1 12183:1 12196:11 12205:1 12211:1 12213:1 12214:1 12229:1 12240:1 12257:1 12259:1 12262:1 12290:1 12323:1 12344:1 12345:4 12356:1 12366:1 12378:1 12379:1 12382:1 12399:1 12401:2 12402:2 12418:9 12423:1 12435:1 12436:1 12444:1 12445:2 12457:2 12463:2 12466:1 12467:5 12471:1 12477:1 12481:1 12486:1 12495:3 12501:5 12502:3 12503:2 12505:1 12506:2 12511:1 12512:2 12548:1 12554:1 12557:5 12561:2 12572:1 12594:1 12614:1 12630:1 12631:1 12632:2 12633:1 12643:1 12652:4 12664:6 12674:1 12678:1 12715:3 12716:1 12727:1 12733:1 12739:1 12751:1 12755:1 12757:1 12762:2 12773:1 12778:2 12779:1 12781:1 12800:1 12810:3 12821:1 12839:1 12856:1 12857:1 12861:2 12879:4 12907:1 12913:1 12920:1 12929:2 12930:1 12932:1 12950:1 12962:1 12973:1 12974:11 12981:3 12984:1 12991:3 13001:1 13007:1 13008:1 13012:1 13021:1 13028:1 13052:1 13064:1 13069:4 13076:2 13090:2 13091:2 13099:1 13108:4 13111:1 13118:1 13130:1 13153:1 13159:1 13163:1 13195:1 13197:3 13198:1 13228:3 13254:2 13259:1 13275:1 13276:1 13278:1 13281:1 13288:1 13291:1 13299:5 13305:1 13311:1 13316:1 13322:1 13328:1 13330:1 13336:2 13342:1 13343:1 13346:1 13348:4 13354:1 13356:1 13359:1 13388:1 13405:1 13411:1 13412:7 13413:2 13423:1 13425:2 13430:3 13431:3 13433:1 13434:3 13436:3 13437:1 13439:1 13441:8 13449:1 13450:4 13451:5 13453:6 13465:1 13466:1 13474:8 13475:4 13493:1 13495:1 13498:4 13502:4 13503:1 13512:3 13532:5 13534:2 13555:1 13585:1 13587:1 13599:1 13600:7 13606:4 13610:6 13612:2 13630:2 13635:1 13636:7 13637:1 13640:1 13650:2 13654:1 13680:1 13684:2 13696:1 13700:1 13702:5 13703:1 13711:2 13721:1 13741:2 13747:2 13751:1 13756:10 13789:1 13810:4 13817:1 13821:1 13823:1 13824:5 13844:2 13845:1 13863:1 13875:1 13886:1 13889:1 13891:1 13892:1 13898:1 13902:5 13908:5 13937:5 13944:1 13955:1 13957:2 13960:2 13962:1 13974:5 13992:1 14002:3 14011:1 14013:1 14073:1 14079:1 14084:3 14088:1 14096:3 14100:6 14133:5 14134:1 14148:7 14181:9 14257:1 14262:1 14271:1 14274:1 14286:1 14289:3 14293:5 14296:5 14299:1 14325:1 14339:1 14349:1 14364:1 14366:2 14371:1 14381:3 14383:1 14396:1 14402:1 14411:2 14420:1 14422:1 14436:2 14447:1 14452:3 14471:1 14474:3 14478:1 14484:3 14515:3 14519:11 14525:7 14527:1 14540:1 14555:4 14559:2 14581:2 14583:7 14590:4 14592:1 14594:5 14601:2 14608:2 14609:4 14610:3 14644:1 14663:2 14672:1 14681:4 14692:1 14694:3 14707:1 14708:1 14715:1 14718:1 14757:1 14765:1 14770:2 14798:1 14814:1 14823:2 14826:5 14828:1 14829:1 14830:1 14831:1 14845:2 14854:1 14861:1 14868:1 14870:1 14873:1 14884:5 14887:1 14897:1 14900:2 14903:1 14909:4 14920:1 14935:1 14962:1 14965:4 14968:3 14979:2 14980:3 14994:1 15004:1 15005:2 15009:1 15010:1 15015:1 15019:2 15021:1 15030:1 15036:1 15040:1 15051:1 15068:1 15076:1 15085:5 15089:5 15113:4 15117:2 15122:1 15125:1 15131:1 15134:2 15146:1 15153:1 15170:1 15177:1 15183:1 15188:1 15195:3 15206:4 15235:1 15241:1 15243:1 15258:1 15274:2 15283:1 15290:6 15324:1 15363:1 15367:1 15396:1 15421:1 15445:1 15480:1 15486:1 15491:1 15497:1 15502:1 15503:2 15523:1 15546:2 15547:1 15568:5 15576:2 15585:1 15593:1 15613:2 15618:5 15628:1 15629:1 15633:1 15637:4 15658:1 15666:11 15675:1 15693:2 15695:1 15696:5 15698:2 15712:2 15713:2 15724:3 15727:1 15728:1 15731:1 15745:1 15747:2 15752:7 15756:1 15764:1 15771:1 15772:1 15773:2 15778:1 15789:3 15799:1 15829:1 15836:1 15854:1 15863:1 15864:2 15867:1 15872:1 15881:1 15896:1 15905:1 15911:1 15926:1 15934:1 15937:1 15959:5 15962:1 15966:1 15974:1 15976:1 15978:29 15986:2 15990:2 15996:3 16001:1 16006:5 16008:1 16016:3 16017:1 16021:1 16022:2 16029:1 16072:1 16077:1 16106:1 16110:2 16122:1 16127:1 16139:1 16156:1 16160:1 16175:1 16179:1 16183:3 16187:1 16202:1 16206:1 16217:2 16221:5 16235:2 16243:1 16247:1 16263:1 16264:1 16271:1 16278:1 16279:1 16287:1 16288:1 16338:2 16343:3 16344:1 16345:1 16346:1 16356:1 16358:1 16362:1 16366:3 16380:1 16388:1 16389:2 16394:1 16400:1 16418:1 16421:1 16434:3 16482:1 16487:1 16515:3 16532:1 16540:1 16545:1 16571:1 16579:2 16582:8 16584:1 16594:2 16595:2 16597:2 16604:1 16616:1 16633:2 16655:1 16666:5 16675:1 16679:2 16691:1 16694:1 16716:5 16717:1 16732:1 16740:1 16760:1 16806:1 16812:4 16822:10 16834:1 16883:1 16893:1 16894:1 16902:4 16918:1 16932:1 16937:2 16942:1 16945:1 16946:1 16964:1 16967:2 16980:1 17005:1 17010:1 17014:2 17019:1 17027:1 17039:1 17040:1 17042:1 17059:1 17067:2 17072:4 17094:1 17104:1 17106:4 17124:1 17125:1 17128:2 17140:1 17146:1 17161:1 17189:1 17192:1 17193:1 17202:1 17207:4 17213:1 17237:1 17239:2 17242:1 17251:5 17252:1 17263:1 17270:3 17306:4 17324:7 17342:1 17353:1 17362:1 17370:1 17380:1 17388:1 17389:2 17394:1 17408:25 17423:2 17434:1 17436:4 17437:3 17438:1 17440:2 17443:1 17444:2 17474:3 17475:1 17486:2 17493:3 17495:5 17504:1 17507:1 17508:1 17510:1 17519:1 17524:1 17531:1 17532:1 17544:1 17552:1 17572:1 17573:1 17576:1 17583:3 17586:1 17590:1 17613:1 17615:3 17631:2 17643:1 17644:1 17672:1 17680:1 17684:2 17687:4 17696:1 17709:1 17723:1 17753:1 17779:1 17780:1 17787:1 17790:1 17802:4 17810:1 17815:1 17817:1 17820:1 17822:1 17825:2 17846:1 17863:2 17877:1 17878:3 17886:1 17889:1 17890:1 17891:6 17894:1 17912:7 17920:1 17926:1 17933:1 17934:2 17961:1 17968:1 17973:1 17989:1 17990:1 18000:1 18009:1 18017:2 18022:1 18033:2 18039:1 18048:1 18058:1 18068:11 18075:3 18084:1 18098:3 18100:3 18108:1 18123:1 18131:1 18132:1 18143:2 18144:1 18147:1 18148:1 18168:1 18176:3 18193:1 18198:3 18201:1 18210:1 18211:1 18213:1 18221:3 18230:3 18233:2 18246:1 18249:5 18253:1 18255:1 18261:2 18265:4 18266:1 18269:2 18271:1 18282:1 18289:2 18310:1 18318:1 18319:1 18325:2 18326:1 18343:1 18344:2 18355:4 18366:1 18367:1 18373:1 18380:1 18387:1 18389:6 18392:16 18393:1 18398:1 18399:1 18412:2 18419:1 18428:1 18442:4 18465:1 18473:3 18498:2 18509:1 18516:1 18529:1 18557:2 18563:2 18569:2 18584:1 18585:1 18589:1 18612:2 18613:4 18631:1 18636:2 18641:1 18643:5 18657:3 18686:2 18690:4 18693:1 18699:1 18713:4 18722:4 18735:5 18747:1 18751:5 18753:4 18760:2 18764:1 18766:1 18767:1 18788:1 18792:1 18799:1 18801:4 18811:3 18819:2 18834:3 18836:1 18838:1 18850:3 18852:1 18860:1 18865:1 18874:1 18877:1 18899:2 18907:4 18914:1 18934:1 18941:1 18945:1 18947:1 18953:2 18956:1 18960:2 18964:1 18966:1 18978:1 19001:5 19005:1 19007:1 19015:1 19020:9 19021:2 19031:3 19032:1 19035:2 19036:1 19050:1 19057:2 19098:1 19130:5 19132:1 19137:1 19140:2 19156:1 19165:4 19171:1 19174:1 19177:6 19208:1 19278:2 19280:1 19301:1 19311:2 19312:1 19350:1 19358:3 19360:3 19365:2 19367:1 19369:1 19386:1 19398:1 19399:1 19411:1 19412:1 19433:1 19455:1 19458:2 19465:3 19470:3 19499:1 19518:2 19522:1 19526:2 19528:1 19545:1 19549:1 19559:1 19600:3 19604:1 19606:1 19607:1 19615:1 19618:1 19619:1 19627:1 19643:2 19659:2 19661:1 19664:1 19672:1 19673:1 19674:4 19684:1 19687:1 19691:1 19692:1 19698:1 19699:1 19718:1 19740:3 19748:1 19762:1 19767:1 19812:1 19818:2 19823:1 19824:6 19825:1 19831:1 19856:1 19869:1 19878:1 19888:1 19905:1 19916:1 19918:1 19919:1 19930:1 19932:1 19934:1 19944:1 19957:1 19996:2 20003:1 20033:1 20044:1 20052:1 20059:4 20060:6 20076:1 20082:3 20097:1 20105:1 20118:3 20126:4 20150:1 20158:1 20159:1 20177:5 20178:1 20181:1 20185:3 20191:3 20193:1 20207:2 20212:1 20215:6 20247:1 20255:3 20263:2 20270:1 20271:1 20273:1 20276:1 20311:1 20330:1 20342:1 20350:1 20388:2
14 8:1 20:1 21:1 49:1 58:1 69:1 72:1 73:1 88:6 113:1 115:2 116:2 118:1 131:1 133:1 134:1 140:4 143:1 148:1 162:1 166:1 183:2 191:1 206:1 216:1 226:1 272:1 274:2 277:2 282:1 284:1 289:2 307:1 311:1 344:1 364:5 366:7 371:1 374:1 376:3 388:1 392:1 400:1 403:1 406:3 417:1 420:1 421:1 423:1 430:1 440:1 441:1 442:1 448:1 453:1 467:5 470:1 475:1 477:1 484:1 493:7 495:2 496:1 502:1 509:1 513:1 528:2 547:1 548:6 559:3 569:1 576:2 584:2 590:1 592:1 611:1 624:1 633:2 667:4 669:1 678:1 697:2 700:1 703:5 706:3 717:1 730:1 791:1 800:6 801:3 802:2 805:5 841:1 866:1 868:1 874:1 877:1 884:2 885:2 919:2 932:1 936:1 939:5 950:1 955:1 984:1 1000:1 1014:2 1015:1 1018:2 1025:1 1028:2 1031:2 1039:1 1046:1 1060:1 1079:2 1081:5 1082:1 1116:2 1128:1 1134:1 1142:1 1146:1 1186:2 1204:1 1237:1 1241:2 1246:1 1252:1 1253:1 1256:3 1266:1 1273:1 1290:1 1295:1 1310:1 1311:1 1315:1 1330:3 1331:8 1332:1 1333:1 1334:2 1366:1 1380:2 1382:1 1388:1 1416:1 1419:5 1428:1 1432:1 1438:1 1442:2 1445:2 1449:1 1467:3 1468:3 1487:1 1492:1 1499:2 1510:1 1525:1 1535:1 1536:1 1545:1 1553:2 1561:1 1562:1 1565:1 1571:1 1578:1 1585:2 1596:1 1601:1 1603:1 1609:2 1634:1 1637:1 1640:1 1647:10 1653:2 1654:1 1658:1 1668:1 1675:1 1692:1 1721:1 1758:2 1773:2 1777:2 1786:1 1796:1 1797:2 1818:1 1827:1 1828:1 1830:1 1834:1 1836:1 1839:3 1840:1 1843:3 1845:2 1846:1 1847:1 1849:1 1854:1 1858:5 1860:1 1865:1 1867:1 1875:2 1880:1 1911:1 1912:3 1921:1 1934:1 1941:1 1942:1 1943:1 1945:3 1946:1 1961:1 1969:1 1980:2 2003:2 2004:3 2016:2 2021:1 2071:1 2084:1 2089:1 2100:4 2117:2 2128:1 2143:2 2146:2 2149:5 2157:4 2182:1 2186:1 2189:1 2197:1 2198:1 2201:1 2203:1 2205:1 2230:1 2235:4 2251:3 2253:3 2266:1 2280:3 2282:2 2289:2 2298:2 2313:4 2315:2 2327:3 2329:1 2349:1 2355:1 2358:5 2360:1 2369:1 2379:4 2385:1 2399:1 2407:2 2418:1 2423:1 2424:1 2443:1 2455:3 2456:1 2481:1 2504:6 2509:1 2524:5 2533:6 2536:1 2540:2 2556:1 2559:1 2560:1 2563:10 2570:1 2572:2 2598:6 2600:5 2625:1 2630:1 2632:4 2642:1 2656:1 2657:1 2658:3 2659:1 2661:1 2663:2 2665:1 2666:1 2671:1 2696:2 2697:2 2701:1 2713:1 2726:1 2737:2 2747:1 2751:2 2761:1 2768:1 2781:1 2782:4 2787:1 2788:1 2789:2 2812:1 2814:1 2816:1 2817:3 2822:1 2824:1 2831:8 2851:2 2856:1 2858:1 2887:2 2903:3 2905:3 2912:1 2917:1 2923:3 2927:2 2930:1 2931:1 2933:2 2937:1 2943:1 2961:2 2971:1 2980:2 2982:2 2983:2 2989:1 2992:1 2998:2 3001:2 3007:1 3026:2 3028:5 3039:1 3043:1 3044:1 3046:2 3047:2 3048:2 3049:1 3053:1 3068:1 3069:2 3070:1 3071:3 3082:2 3083:1 3093:1 3094:1 3110:3 3112:1 3114:1 3116:5 3118:1 3122:1 3123:5 3125:1 3126:1 3133:3 3135:1 3136:1 3142:4 3144:2 3146:2 3149:3 3151:1 3156:1 3168:2 3169:1 3202:2 3210:2 3212:1 3215:1 3231:1 3250:2 3266:1 3267:1 3270:2 3272:1 3281:6 3294:1 3295:1 3306:2 3316:2 3321:1 3327:1 3328:1 3329:2 3352:1 3357:3 3358:2 3390:1 3400:1 3420:1 3431:2 3435:1 3446:1 3456:2 3458:1 3474:1 3489:1 3493:1 3501:1 3507:1 3510:2 3512:1 3518:2 3521:1 3536:1 3558:1 3560:6 3562:2 3568:4 3578:1 3581:6 3583:2 3587:2 3588:2 3599:1 3607:1 3609:1 3629:1 3631:2 3633:1 3638:2 3642:2 3655:1 3671:1 3692:2 3706:6 3707:3 3726:9 3731:1 3732:2 3733:2 3738:1 3751:1 3753:2 3763:1 3766:1 3771:1 3775:1 3777:6 3788:1 3811:4 3819:3 3820:1 3830:1 3834:1 3836:1 3837:1 3841:1 3871:1 3873:2 3879:1 3886:3 3892:1 3901:1 3905:4 3919:1 3920:5 3927:1 3936:1 3948:1 3966:4 3972:1 3975:1 3989:1 3991:1 3994:1 3997:1 3998:1 3999:1 4002:1 4013:2 4019:3 4026:2 4031:1 4033:6 4037:3 4054:1 4058:2 4059:3 4067:1 4071:31 4072:1 4073:1 4079:1 4091:2 4096:1 4098:1 4111:1 4114:4 4128:1 4129:1 4131:10 4140:2 4144:1 4145:7 4152:4 4160:1 4162:1 4168:1 4169:7 4175:1 4194:1 4195:3 4196:2 4197:1 4203:1 4210:5 4211:1 4213:1 4225:4 4234:2 4249:2 4251:1 4253:1 4257:1 4270:2 4277:1 4294:4 4301:1 4305:2 4307:1 4324:5 4331:1 4343:1 4348:5 4349:3 4366:1 4378:1 4412:2 4420:2 4427:3 4436:2 4441:1 4471:2 4483:1 4486:1 4500:1 4502:1 4506:1 4510:1 4544:3 4549:2 4553:7 4556:1 4561:1 4568:2 4611:1 4622:2 4627:2 4628:2 4635:1 4638:1 4641:2 4646:1 4649:1 4658:2 4667:1 4676:2 4683:1 4686:6 4692:9 4699:5 4708:1 4733:1 4734:1 4751:1 4754:1 4759:1 4762:3 4766:1 4771:3 4772:1 4778:2 4779:1 4794:1 4795:3 4827:1 4831:1 4834:6 4837:2 4843:1 4847:1 4851:10 4869:2 4900:2 4910:1 4914:2 4937:1 4940:1 4959:1 4960:1 4982:3 4989:3 5001:1 5006:3 5016:1 5018:1 5019:1 5023:2 5025:1 5039:1 5040:1 5052:1 5057:1 5058:6 5067:30 5074:1 5081:1 5082:1 5083:4 5097:1 5101:1 5112:1 5131:1 5132:1 5135:1 5153:2 5156:1 5157:1 5185:1 5193:1 5200:1 5203:11 5212:1 5227:1 5228:1 5231:2 5236:1 5241:3 5247:1 5256:5 5264:1 5266:4 5271:5 5288:1 5309:1 5313:2 5321:1 5345:1 5347:2 5355:1 5362:1 5364:1 5365:4 5366:2 5372:1 5375:1 5383:1 5387:1 5394:3 5402:1 5406:1 5408:1 5413:1 5416:1 5424:1 5433:1 5434:1 5437:1672 5443:2 5456:2 5458:1 5460:2 5462:1 5468:1 5469:1 5497:1 5499:1 5507:2 5509:2 5511:1 5518:1 5520:1 5530:1 5583:1 5590:1 5600:1 5604:1 5625:1 5637:1 5644:1 5657:1 5661:1 5672:1 5673:2 5674:1 5691:3 5697:2 5714:1 5717:2 5718:1 5751:3 5753:2 5756:2 5757:1 5760:1 5762:1 5763:1 5765:4 5767:1 5771:3 5775:1 5778:1 5780:5 5785:1 5806:1 5813:2 5817:1 5837:1 5856:1 5867:1 5874:1 5879:1 5886:1 5893:2 5904:1 5911:2 5912:1 5916:1 5932:12 5944:1 5962:3 5974:1 5982:1 5984:9 5995:1 5996:3 5997:1 6020:1 6026:1 6055:1 6090:1 6092:2 6100:1 6110:1 6111:1 6118:1 6133:1 6153:1 6165:1 6174:1 6208:1 6216:1 6220:1 6232:1 6233:3 6247:1 6307:1 6308:1 6311:2 6316:3 6317:1 6321:1 6325:1 6339:3 6349:2 6351:1 6352:2 6354:1 6368:1 6420:6 6425:4 6450:1 6451:1 6452:1 6453:1 6458:1 6489:2 6502:5 6508:1 6511:5 6517:7 6520:2 6534:1 6541:4 6543:1 6559:1 6586:1 6587:1 6588:1 6593:1 6596:1 6607:1 6609:1 6615:2 6635:1 6660:1 6661:2 6662:1 6668:1 6675:16 6680:1 6681:1 6682:1 6683:4 6688:1 6694:10 6725:3 6736:1 6741:1 6746:2 6747:3 6749:1 6752:5 6756:1 6765:1 6801:1 6822:1 6829:1 6837:1 6845:9 6866:1 6867:5 6868:1 6876:1 6879:1 6880:1 6882:1 6884:1 6885:1 6891:1 6900:1 6902:4 6903:1 6905:1 6931:3 6945:3 6953:1 6956:2 6957:1 6967:1 6970:1 6988:1 7000:1 7008:2 7009:1 7013:1 7016:1 7024:1 7078:1 7079:1 7082:1 7084:1 7112:1 7113:1 7129:1 7142:1 7148:6 7156:2 7160:5 7161:1 7174:1 7185:4 7205:1 7207:1 7258:1 7263:1 7266:4 7268:4 7277:1 7287:1 7295:2 7297:2 7305:1 7342:1 7357:1 7361:1 7400:2 7402:1 7403:2 7414:2 7425:1 7427:1 7441:1 7446:1 7447:1 7459:3 7466:3 7474:3 7488:2 7490:3 7497:1 7504:1 7506:2 7512:1 7513:1 7515:1 7516:1 7525:1 7526:5 7527:1 7539:1 7548:1 7571:1 7582:3 7585:1 7589:1 7591:1 7595:1 7601:1 7610:1 7611:2 7615:1 7618:1 7622:3 7623:1 7630:1 7631:1 7633:1 7641:2 7652:2 7653:1 7655:1 7664:2 7670:1 7678:1 7690:1 7703:6 7707:1 7753:1 7767:1 7769:2 7770:1 7771:1 7773:1 7782:4 7783:2 7788:2 7790:2 7794:2 7800:1 7804:1 7825:1 7829:2 7849:1 7852:1 7854:1 7872:1 7886:1 7895:1 7898:7 7921:1 7930:1 7941:1 7951:3 7968:1 7975:1 7976:1 7977:2 7989:2 8016:1 8024:1 8032:1 8033:1 8055:2 8080:2 8084:1 8091:2 8095:1 8125:2 8137:1 8148:1 8156:1 8162:1 8176:1 8190:2 8195:1 8210:1 8246:2 8254:1 8260:1 8278:1 8282:2 8290:1 8300:1 8305:1 8311:1 8328:1 8332:1 8334:3 8364:3 8373:4 8378:2 8379:2 8386:1 8388:1 8398:1 8429:1 8435:1 8458:1 8465:1 8473:1 8479:1 8533:1 8541:1 8545:4 8554:2 8556:1 8560:1 8572:1 8579:1 8589:5 8590:3 8608:1 8609:1 8626:1 8636:1 8642:1 8643:1 8644:3 8650:2 8651:1 8652:1 8657:1 8663:1 8670:2 8691:2 8692:1 8704:1 8712:5 8717:2 8718:1 8736:1 8745:7 8774:1 8777:1 8784:3 8794:1 8810:2 8820:5 8824:4 8825:1 8831:5 8832:2 8835:2 8836:1 8837:2 8839:1 8840:1 8843:1 8846:6 8847:8 8849:1 8851:3 8853:3 8895:1 8911:2 8918:2 8925:1 8950:1 8997:2 9013:1 9027:1 9041:8 9046:1 9058:1 9061:1 9062:1 9074:2 9082:4 9086:1 9091:1 9118:1 9131:1 9138:1 9153:1 9158:5 9176:1 9203:2 9204:1 9207:1 9212:2 9213:1 9214:1 9216:1 9234:1 9236:2 9241:2 9245:1 9254:2 9265:2 9302:1 9308:1 9315:1 9318:2 9321:1 9333:1 9337:3 9344:1 9346:1 9347:1 9355:2 9374:1 9387:1 9392:1 9393:1 9397:1 9402:2 9408:1 9410:1 9423:2 9425:4 9428:1 9439:1 9441:1 9478:1 9492:1 9503:1 9508:1 9509:10 9513:1 9514:2 9515:1 9517:1 9518:2 9521:1 9530:2 9535:1 9538:2 9543:3 9544:2 9555:4 9558:4 9563:2 9572:1 9575:1 9578:1 9581:1 9582:1 9585:1 9592:8 9607:3 9609:1 9622:1 9624:1 9628:1 9632:1 9634:3 9646:1 9658:3 9669:2 9674:1 9678:1 9687:1 9689:2 9694:2 9696:5 9715:3 9718:1 9723:2 9726:1 9731:2 9732:1 9754:1 9755:1 9762:2 9780:1 9781:1 9782:5 9828:1 9830:3 9841:2 9846:3 9865:1 9888:1 9914:1 9916:3 9918:3 9920:1 9925:1 9927:1 9930:1 9937:1 9945:2 9946:1 9956:2 9960:2 9967:1 9995:5 9999:2 10010:1 10016:1 10029:1 10042:1 10093:2 10116:2 10140:1 10150:1 10159:1 10160:2 10161:1 10163:1 10168:1 10174:1 10182:1 10184:1 10200:1 10209:1 10220:1 10221:1 10223:2 10224:2 10233:4 10236:1 10238:1 10266:2 10269:1 10275:1 10277:1 10278:1 10293:1 10294:1 10299:1 10313:1 10323:2 10328:1 10333:1 10341:1 10363:1 10367:1 10376:2 10382:1 10387:1 10392:1 10397:3 10399:1 10409:1 10410:8 10430:1 10453:1 10465:1 10466:1 10478:1 10479:1 10490:1 10512:1 10517:2 10536:3 10548:1 10559:1 10570:1 10593:2 10607:1 10611:1 10613:1 10615:1 10625:2 10648:3 10682:4 10683:1 10695:1 10717:2 10718:4 10729:1 10734:1 10736:1 10737:3 10743:1 10744:8 10751:2 10755:1 10760:2 10772:1 10774:1 10780:1 10783:1 10789:1 10790:1 10791:1 10793:1 10796:2 10797:1 10805:1 10812:35 10814:1 10833:1 10838:1 10841:3 10843:7 10849:1 10855:3 10866:1 10871:3 10872:1 10886:1 10888:1 10901:1 10903:1 10908:1 10940:3 10941:1 10942:1 10946:1 10981:5 10983:1 10990:1 10998:5 11002:1 11022:1 11033:1 11034:3 11037:1 11038:1 11045:1 11057:1 11072:2 11078:1 11082:2 11087:1 11110:1 11112:1 11113:2 11118:1 11121:2 11125:6 11131:1 11150:2 11164:1 11170:1 11190:1 11195:1 11212:1 11228:1 11229:1 11247:4 11248:2 11260:4 11297:1 11300:1 11301:2 11322:1 11332:1 11340:1 11342:2 11347:1 11352:1 11354:1 11357:1 11363:3 11379:4 11382:3 11397:1 11401:4 11403:1 11413:1 11417:1 11423:4 11431:2 11436:11 11452:2 11457:2 11466:1 11470:1 11485:1 11487:2 11509:4 11528:1 11530:1 11548:1 11569:1 11584:3 11594:3 11597:5 11618:1 11620:3 11621:1 11625:1 11651:4 11656:1 11658:1 11691:2 11709:6 11711:1 11714:1 11722:1 11727:2 11728:1 11737:2 11747:1 11758:1 11764:1 11771:2 11774:1 11776:3 11779:1 11782:1 11785:5 11786:2 11788:2 11799:8 11833:1 11842:1 11848:1 11849:1 11854:1 11871:1 11881:1 11888:2 11896:1 11898:1 11913:1 11916:1 11921:1 11926:1 11943:2 11947:1 11949:1 11950:4 11957:1 11966:1 11987:1 11990:3 11995:1 11997:1 12004:5 12011:3 12014:1 12021:1 12022:1 12024:3 12025:1 12032:1 12035:2 12038:1 12042:2 12044:1 12046:1 12058:1 12059:1 12063:1 12067:1 12077:1 12094:1 12095:1 12102:1 12110:3 12118:1 12128:3 12129:1 12133:1 12136:1 12137:2 12143:1 12168:1 12183:1 12196:11 12205:1 12211:1 12213:1 12214:1 12229:1 12240:1 12257:1 12259:1 12262:1 12290:1 12323:1 12344:1 12345:4 12356:1 12366:1 12378:1 12379:1 12382:1 12399:1 12401:2 12402:2 12418:9 12423:1 12435:1 12436:1 12444:1 12445:2 12457:2 12463:2 12466:1 12467:5 12471:1 12477:1 12481:1 12486:1 12495:3 12501:5 12502:3 12503:2 12505:1 12506:3 12511:2 12512:2 12548:1 12554:1 12557:5 12561:2 12572:1 12594:1 12614:1 12630:1 12631:1 12632:2 12633:1 12643:1 12652:4 12658:1 12664:6 12674:1 12678:1 12715:3 12716:1 12727:1 12733:1 12739:1 12751:1 12755:1 12757:1 12762:2 12773:1 12778:2 12779:1 12781:1 12800:1 12810:3 12821:1 12839:1 12856:1 12857:1 12861:2 12868:1 12879:4 12907:1 12913:1 12920:1 12929:2 12930:1 12932:1 12950:2 12962:1 12973:1 12974:11 12981:4 12984:1 12991:3 13001:1 13007:1 13008:1 13012:1 13021:2 13028:1 13052:1 13064:1 13069:4 13076:2 13090:2 13091:2 13099:1 13105:1 13108:4 13111:1 13118:1 13130:1 13153:1 13159:1 13163:1 13195:1 13197:3 13198:1 13228:3 13229:1 13254:2 13259:1 13275:1 13276:1 13278:1 13281:1 13288:1 13291:1 13299:5 13305:1 13311:1 13316:1 13322:1 13328:1 13330:1 13336:2 13342:1 13343:1 13346:1 13348:4 13354:1 13356:1 13359:1 13388:1 13405:1 13411:1 13412:7 13413:2 13417:1 13423:1 13425:2 13430:3 13431:3 13433:1 13434:4 13436:3 13437:1 13439:1 13441:8 13449:1 13450:4 13451:5 13453:6 13465:1 13466:1 13474:8 13475:4 13493:1 13495:1 13498:4 13502:4 13503:1 13512:3 13532:5 13534:2 13555:1 13585:1 13587:1 13599:1 13600:9 13606:4 13610:6 13612:2 13630:2 13635:1 13636:8 13637:1 13640:1 13650:2 13654:1 13664:1 13680:1 13684:3 13696:1 13700:1 13702:5 13703:1 13711:2 13721:1 13741:2 13747:2 13751:1 13756:10 13789:1 13810:4 13817:1 13821:1 13823:1 13824:5 13844:2 13845:1 13863:1 13875:1 13886:1 13889:1 13891:1 13892:1 13898:1 13902:5 13908:5 13937:5 13944:1 13955:1 13957:2 13960:2 13962:1 13974:5 13992:1 14002:3 14011:1 14013:1 14055:1 14073:1 14079:1 14084:3 14088:1 14096:3 14098:1 14100:6 14133:5 14134:1 14148:7 14152:1 14181:11 14236:1 14257:1 14262:1 14271:1 14274:1 14286:2 14289:3 14293:5 14296:6 14298:1 14299:1 14325:1 14339:1 14349:1 14364:1 14366:2 14371:1 14381:3 14383:1 14396:1 14402:1 14411:2 14420:2 14422:1 14436:2 14447:1 14452:3 14471:1 14474:3 14478:1 14484:3 14515:3 14519:11 14525:7 14527:1 14540:1 14555:4 14559:2 14574:1 14581:2 14583:7 14590:4 14592:1 14594:5 14601:2 14608:2 14609:4 14610:3 14644:1 14663:2 14672:1 14681:4 14692:2 14694:3 14707:1 14708:1 14715:1 14718:2 14757:1 14765:1 14770:2 14798:1 14814:1 14823:2 14826:5 14828:1 14829:1 14830:1 14831:1 14845:2 14854:1 14861:1 14868:1 14870:1 14873:1 14884:5 14887:1 14897:1 14900:2 14903:1 14909:4 14920:1 14935:1 14942:1 14962:1 14965:5 14968:3 14979:2 14980:4 14994:1 15004:1 15005:2 15009:1 15010:1 15015:1 15019:2 15021:1 15030:1 15036:1 15040:1 15051:1 15054:1 15068:1 15076:1 15085:5 15089:6 15113:4 15117:2 15122:1 15125:1 15131:1 15134:2 15146:1 15153:1 15170:1 15177:1 15183:1 15188:1 15195:3 15206:4 15235:1 15241:1 15243:1 15258:1 15274:2 15282:1 15283:1 15290:6 15302:1 15324:1 15363:1 15367:1 15396:1 15421:1 15445:2 15480:1 15486:1 15491:1 15497:2 15502:1 15503:2 15523:1 15546:2 15547:1 15568:5 15576:2 15585:1 15593:1 15613:2 15618:5 15628:1 15629:1 15633:1 15637:4 15658:1 15666:11 15675:1 15693:2 15695:1 15696:5 15698:2 15712:2 15713:2 15724:3 15727:1 15728:1 15731:1 15745:1 15747:2 15752:7 15756:1 15764:1 15771:1 15772:1 15773:2 15778:1 15789:3 15799:1 15820:1 15829:1 15836:1 15854:1 15863:1 15864:2 15867:1 15872:1 15881:1 15896:1 15905:1 15911:1 15926:1 15934:1 15937:1 15959:5 15962:1 15966:1 15974:1 15976:1 15978:30 15986:2 15990:2 15996:3 16001:1 16006:5 16008:1 16016:3 16017:1 16021:1 16022:2 16029:1 16072:1 16077:1 16106:1 16110:2 16122:1 16127:1 16139:1 16156:1 16160:1 16175:1 16179:1 16183:3 16187:1 16202:1 16206:1 16217:2 16221:5 16235:2 16243:1 16247:1 16263:1 16264:1 16271:1 16278:1 16279:1 16287:1 16288:1 16338:2 16343:3 16344:1 16345:1 16346:1 16356:1 16358:1 16362:1 16366:3 16380:1 16388:1 16389:2 16394:1 16400:1 16418:1 16421:1 16434:3 16482:1 16487:1 16501:1 16515:3 16532:1 16540:1 16545:1 16571:1 16579:2 16582:8 16584:1 16594:2 16595:2 16597:2 16604:1 16616:1 16633:2 16655:1 16666:5 16675:1 16679:2 16691:1 16694:1 16716:5 16717:1 16732:1 16740:1 16760:1 16806:1 16812:4 16817:1 16822:11 16830:1 16834:1 16883:1 16884:1 16893:1 16894:1 16902:4 16918:1 16932:1 16937:2 16942:1 16945:1 16946:1 16964:1 16967:2 16980:1 17005:1 17010:1 17014:2 17019:1 17027:1 17039:1 17040:1 17042:1 17059:1 17067:2 17072:4 17094:1 17104:2 17106:4 17124:1 17125:1 17128:2 17140:1 17146:1 17161:1 17189:1 17192:1 17193:1 17202:1 17207:4 17213:1 17222:1 17237:1 17239:2 17242:1 17251:5 17252:1 17263:1 17270:3 17301:1 17306:4 17324:7 17342:2 17353:1 17362:1 17370:1 17380:1 17388:1 17389:2 17394:1 17408:26 17423:2 17434:1 17436:4 17437:3 17438:1 17440:2 17443:1 17444:2 17474:4 17475:1 17482:1 17486:2 17492:1 17493:3 17495:6 17504:1 17507:1 17508:1 17510:1 17517:1 17519:1 17524:1 17531:1 17532:1 17544:1 17552:1 17572:1 17573:1 17576:1 17583:3 17586:1 17590:1 17613:1 17615:3 17631:2 17643:1 17644:1 17672:1 17680:1 17684:2 17687:4 17696:1 17709:1 17723:1 17753:1 17779:1 17780:1 17783:1 17787:1 17790:1 17802:4 17810:1 17815:1 17817:1 17820:1 17822:1 17825:2 17846:1 17863:2 17873:1 17877:1 17878:3 17886:1 17889:1 17890:1 17891:6 17894:1 17912:7 17920:1 17926:1 17933:1 17934:2 17961:1 17968:1 17973:1 17989:1 17990:2 18000:1 18009:1 18017:2 18022:1 18033:2 18039:1 18048:1 18058:1 18068:11 18075:3 18084:1 18098:3 18100:3 18101:1 18108:1 18123:1 18131:1 18132:1 18143:2 18144:1 18147:1 18148:1 18168:1 18176:3 18193:1 18198:3 18201:1 18210:1 18211:1 18213:1 18221:4 18230:3 18233:2 18246:1 18249:5 18253:1 18255:1 18261:2 18265:4 18266:1 18269:2 18271:1 18282:1 18289:2 18310:1 18318:1 18319:1 18325:2 18326:2 18343:1 18344:2 18355:4 18366:1 18367:1 18373:1 18380:1 18387:1 18389:6 18392:20 18393:1 18398:1 18399:1 18412:2 18419:1 18428:1 18442:4 18465:1 18473:3 18498:2 18509:1 18516:1 18529:1 18557:2 18563:2 18569:2 18584:1 18585:1 18589:1 18612:2 18613:4 18631:1 18636:2 18641:2 18643:5 18657:3 18686:2 18690:4 18693:1 18699:1 18713:4 18722:4 18735:5 18747:1 18751:6 18753:4 18760:2 18764:1 18766:1 18767:1 18788:1 18792:1 18799:1 18801:4 18811:3 18819:2 18834:3 18836:1 18838:1 18850:3 18852:1 18860:1 18865:1 18870:1 18874:1 18877:1 18899:2 18907:4 18914:1 18934:1 18941:1 18945:1 18947:1 18953:3 18956:1 18960:2 18964:1 18966:1 18978:1 19001:5 19005:1 19007:1 19015:1 19020:10 19021:2 19031:3 19032:1 19035:2 19036:1 19050:1 19057:2 19098:1 19130:5 19132:1 19137:1 19140:2 19147:1 19156:1 19165:4 19171:1 19174:1 19177:6 19208:1 19278:2 19280:1 19301:1 19311:2 19312:1 19331:1 19350:1 19358:3 19360:3 19365:3 19367:1 19369:1 19386:1 19398:1 19399:1 19411:1 19412:1 19433:1 19455:1 19458:2 19465:3 19470:3 19499:1 19518:2 19522:1 19526:2 19528:1 19537:1 19545:1 19549:1 19559:1 19600:4 19604:1 19606:1 19607:1 19615:1 19618:1 19619:1 19627:1 19643:2 19659:2 19661:1 19664:1 19672:1 19673:1 19674:4 19684:1 19687:1 19691:1 19692:1 19698:1 19699:1 19718:1 19722:1 19740:3 19748:1 19762:1 19767:1 19791:1 19812:1 19818:2 19823:2 19824:6 19825:1 19831:1 19852:1 19856:1 19869:1 19878:1 19888:2 19905:1 19916:1 19918:1 19919:1 19930:1 19932:1 19934:1 19944:1 19957:1 19996:2 20003:1 20033:1 20044:1 20052:1 20058:1 20059:4 20060:6 20076:1 20081:1 20082:4 20083:1 20097:1 20105:1 20118:3 20126:4 20150:1 20158:1 20159:1 20177:5 20178:2 20181:1 20185:4 20191:3 20193:1 20207:2 20210:1 20212:1 20215:6 20247:2 20255:3 20263:2 20270:2 20271:1 20273:1 20276:1 20311:1 20330:1 20342:1 20350:1 20388:2
14 5:1 8:1 20:1 21:1 49:1 58:1 69:1 72:1 73:1 88:6 113:1 115:2 116:2 118:1 131:1 133:1 134:1 140:4 143:1 148:2 162:1 166:1 183:2 191:1 206:1 216:1 226:1 272:1 274:2 277:2 282:1 284:1 289:2 307:1 311:1 344:1 364:5 366:7 371:1 374:1 376:3 388:1 392:1 400:1 403:1 406:3 417:1 420:1 421:1 423:1 430:1 440:1 441:1 442:1 448:1 453:1 467:5 470:1 475:1 477:1 484:1 493:7 495:2 496:1 502:1 509:1 513:1 528:2 547:1 548:6 558:1 559:3 569:1 576:2 584:2 590:1 592:1 611:1 624:1 633:2 667:4 669:1 678:1 697:2 700:1 703:5 706:3 717:1 730:1 791:1 800:8 801:3 802:2 805:5 841:1 866:1 868:1 874:1 877:1 884:2 885:2 919:2 932:1 936:1 939:5 950:1 955:1 984:1 1000:1 1014:2 1015:1 1018:2 1025:1 1028:3 1031:2 1039:2 1046:1 1060:1 1079:2 1081:5 1082:1 1116:2 1128:1 1134:1 1142:1 1146:1 1186:2 1204:1 1237:1 1241:2 1246:1 1247:1 1252:1 1253:1 1256:3 1266:1 1273:2 1290:1 1295:1 1310:1 1311:1 1315:1 1330:3 1331:8 1332:1 1333:1 1334:2 1342:1 1366:1 1380:3 1382:1 1388:1 1416:1 1419:5 1428:1 1432:2 1438:1 1442:2 1445:2 1449:1 1467:3 1468:3 1487:1 1492:2 1499:2 1510:1 1525:1 1535:1 1536:1 1545:1 1553:2 1561:1 1562:1 1565:1 1571:1 1578:1 1585:2 1596:1 1601:1 1603:1 1609:2 1617:1 1634:1 1637:1 1640:1 1647:11 1653:2 1654:1 1658:1 1668:1 1675:1 1692:1 1721:1 1758:2 1773:2 1777:2 1786:1 1789:1 1796:1 1797:2 1818:1 1822:1 1827:1 1828:1 1830:1 1834:1 1836:1 1839:3 1840:1 1843:3 1845:2 1846:2 1847:1 1849:1 1854:1 1858:5 1860:1 1865:1 1867:1 1875:2 1880:1 1911:1 1912:3 1921:1 1934:1 1941:1 1942:1 1943:1 1945:3 1946:1 1961:1 1969:1 1980:2 2003:2 2004:3 2016:2 2021:1 2040:1 2071:1 2084:1 2089:1 2100:5 2117:2 2128:1 2143:2 2146:2 2149:6 2157:4 2182:1 2183:1 2186:1 2189:1 2197:1 2198:2 2201:1 2203:1 2205:1 2230:1 2235:4 2251:3 2253:3 2266:1 2280:3 2282:2 2289:2 2298:2 2313:4 2315:2 2327:4 2329:1 2349:1 2355:1 2358:5 2360:1 2369:1 2379:4 2385:2 2399:1 2406:1 2407:2 2418:1 2423:1 2424:1 2443:1 2455:3 2456:1 2481:1 2484:1 2504:6 2509:1 2524:5 2533:6 2536:1 2540:2 2556:1 2559:1 2560:1 2563:10 2570:1 2572:2 2598:6 2600:5 2625:1 2630:2 2632:4 2642:1 2656:2 2657:1 2658:3 2659:1 2661:1 2663:2 2665:1 2666:1 2671:1 2684:1 2696:2 2697:2 2701:1 2713:1 2726:1 2737:2 2747:1 2749:1 2751:2 2761:1 2768:1 2781:1 2782:4 2787:1 2788:1 2789:2 2812:1 2814:1 2816:1 2817:4 2822:1 2824:1 2831:8 2851:2 2856:1 2858:1 2887:2 2903:4 2905:3 2912:1 2917:1 2923:3 2927:2 2930:2 2931:1 2933:2 2937:1 2943:1 2961:2 2971:1 2980:2 2982:2 2983:2 2989:1 2992:1 2998:2 3001:2 3007:1 3026:3 3028:5 3039:1 3043:1 3044:1 3046:2 3047:2 3048:2 3049:1 3053:1 3063:1 3068:1 3069:2 3070:1 3071:3 3082:2 3083:1 3093:1 3094:1 3110:4 3112:1 3114:2 3116:5 3118:1 3122:1 3123:5 3125:2 3126:1 3133:3 3135:1 3136:1 3142:4 3144:2 3146:2 3149:3 3151:1 3156:1 3168:2 3169:1 3202:3 3210:2 3212:1 3215:1 3231:1 3250:2 3266:1 3267:1 3270:2 3272:1 3281:6 3294:1 3295:1 3306:2 3316:2 3321:1 3327:1 3328:1 3329:2 3352:1 3357:3 3358:2 3390:1 3400:1 3420:1 3431:2 3435:1 3446:1 3456:2 3458:1 3474:1 3489:1 3493:1 3501:1 3507:1 3510:2 3512:1 3518:2 3521:1 3536:1 3558:1 3560:6 3562:2 3568:4 3578:1 3581:6 3583:2 3587:2 3588:2 3599:1 3607:1 3609:1 3629:1 3631:2 3633:1 3638:2 3642:2 3655:1 3671:1 3692:2 3706:8 3707:3 3726:9 3731:1 3732:2 3733:2 3738:1 3751:1 3753:2 3763:1 3766:1 3771:1 3775:1 3777:6 3788:1 3811:4 3819:3 3820:1 3830:1 3834:1 3836:1 3837:1 3841:1 3871:1 3873:2 3879:1 3880:1 3886:3 3892:1 3901:1 3905:4 3910:1 3919:1 3920:6 3927:1 3936:1 3948:1 3966:4 3972:1 3975:1 3989:1 3991:1 3994:1 3997:1 3998:1 3999:1 4002:1 4013:2 4019:3 4026:2 4031:1 4033:6 4037:3 4054:1 4058:2 4059:3 4067:1 4071:32 4072:2 4073:1 4078:1 4079:1 4091:2 4096:1 4098:1 4111:1 4114:4 4128:1 4129:1 4131:10 4140:2 4144:1 4145:7 4152:4 4160:1 4162:1 4168:1 4169:8 4175:1 4194:1 4195:3 4196:3 4197:1 4203:1 4210:5 4211:1 4213:1 4225:4 4234:2 4249:2 4251:1 4253:1 4257:1 4270:2 4277:1 4294:4 4301:1 4305:2 4307:1 4324:5 4331:1 4343:1 4348:5 4349:3 4366:1 4378:1 4412:2 4420:2 4427:3 4436:2 4441:1 4471:2 4476:1 4483:1 4486:1 4500:1 4502:1 4506:1 4510:1 4544:3 4549:2 4553:7 4556:2 4561:1 4568:2 4611:1 4622:2 4627:2 4628:2 4635:1 4638:1 4641:2 4646:1 4647:1 4649:1 4658:2 4667:1 4676:2 4683:1 4686:7 4692:9 4699:5 4708:1 4733:1 4734:1 4751:1 4754:1 4759:1 4762:3 4766:1 4771:3 4772:1 4778:2 4779:1 4794:1 4795:4 4827:1 4831:1 4834:6 4837:2 4843:1 4847:1 4851:10 4869:2 4900:2 4910:1 4914:2 4937:1 4940:1 4959:1 4960:1 4982:4 4989:3 5001:1 5006:4 5016:1 5018:1 5019:1 5023:2 5025:1 5039:1 5040:1 5052:1 5057:1 5058:6 5067:32 5074:1 5081:1 5082:2 5083:4 5097:1 5101:1 5107:1 5112:1 5131:1 5132:1 5135:1 5153:2 5156:1 5157:1 5185:1 5193:1 5200:1 5202:1 5203:11 5212:1 5227:1 5228:1 5231:2 5236:1 5241:4 5247:1 5256:5 5264:1 5266:4 5271:5 5288:1 5309:1 5313:2 5321:1 5345:1 5347:2 5355:1 5362:1 5364:1 5365:4 5366:2 5372:1 5375:1 5382:1 5383:1 5387:1 5394:3 5402:1 5406:2 5408:1 5413:1 5416:1 5424:1 5433:1 5434:1 5437:1755 5443:2 5456:2 5458:1 5460:2 5462:1 5468:1 5469:1 5497:1 5499:1 5507:2 5509:2 5511:1 5518:1 5520:1 5529:1 5530:1 5583:1 5590:1 5600:1 5604:1 5625:1 5637:1 5644:1 5657:1 5661:1 5672:1 5673:2 5674:1 5691:3 5697:2 5714:1 5717:2 5718:1 5751:3 5753:2 5756:2 5757:1 5760:1 5762:1 5763:1 5765:4 5767:1 5771:3 5775:1 5778:1 5780:6 5785:1 5806:1 5813:2 5817:1 5837:1 5856:1 5867:1 5874:1 5879:1 5886:1 5893:2 5904:1 5911:2 5912:1 5916:1 5932:12 5944:1 5962:3 5974:1 5982:1 5984:9 5995:1 5996:3 5997:1 6020:1 6026:1 6055:1 6090:1 6092:2 6100:1 6110:1 6111:1 6118:1 6133:1 6153:1 6165:1 6174:1 6208:1 6216:1 6220:1 6232:1 6233:3 6247:1 6307:1 6308:1 6311:3 6316:3 6317:2 6321:1 6325:1 6339:3 6349:2 6351:1 6352:2 6354:1 6367:1 6368:1 6398:1 6420:6 6425:4 6450:1 6451:1 6452:1 6453:1 6458:1 6473:1 6489:2 6502:5 6508:1 6511:5 6517:7 6520:2 6534:1 6541:4 6543:1 6547:1 6559:1 6586:1 6587:1 6588:1 6593:1 6596:1 6607:1 6609:1 6615:2 6635:1 6660:1 6661:2 6662:1 6668:1 6675:17 6680:1 6681:1 6682:1 6683:4 6688:1 6694:10 6725:3 6736:1 6741:1 6746:2 6747:3 6749:1 6752:5 6756:1 6765:1 6775:1 6801:1 6822:1 6829:1 6837:1 6845:9 6866:1 6867:5 6868:1 6876:1 6879:1 6880:1 6882:1 6884:1 6885:1 6891:1 6900:1 6902:4 6903:1 6905:2 6931:3 6945:3 6947:1 6953:1 6956:2 6957:1 6967:1 6970:1 6988:1 7000:1 7008:2 7009:1 7013:1 7016:1 7024:1 7078:1 7079:1 7082:1 7084:1 7112:1 7113:1 7129:2 7142:1 7148:6 7156:2 7160:5 7161:1 7174:1 7185:4 7205:1 7207:1 7258:1 7263:1 7266:4 7268:4 7277:1 7287:2 7295:2 7297:2 7305:1 7327:1 7342:1 7357:1 7361:1 7400:2 7402:1 7403:2 7414:2 7425:1 7427:1 7430:1 7441:1 7446:1 7447:1 7459:3 7466:3 7474:3 7488:2 7490:3 7497:1 7504:1 7506:2 7512:1 7513:1 7515:1 7516:1 7525:1 7526:5 7527:1 7539:1 7548:1 7571:2 7582:4 7585:1 7589:1 7591:1 7593:1 7595:1 7601:2 7610:1 7611:2 7615:1 7618:1 7622:4 7623:1 7630:1 7631:1 7633:1 7641:2 7647:1 7652:2 7653:1 7655:1 7664:2 7670:1 7672:1 7678:1 7690:1 7703:6 7707:1 7753:1 7767:1 7769:2 7770:1 7771:1 7773:1 7782:4 7783:2 7788:2 7790:2 7794:3 7800:1 7804:1 7825:1 7829:2 7849:1 7852:1 7854:1 7872:1 7886:1 7895:1 7898:7 7921:1 7930:1 7941:1 7951:3 7968:1 7975:1 7976:1 7977:2 7989:2 8016:1 8024:1 8032:1 8033:1 8055:2 8080:2 8084:1 8091:2 8095:1 8125:2 8137:1 8148:1 8156:1 8162:1 8176:1 8190:2 8195:1 8210:1 8246:2 8254:1 8260:1 8278:1 8282:2 8290:1 8300:1 8305:1 8311:1 8328:1 8332:1 8334:3 8364:3 8373:4 8378:2 8379:2 8386:1 8388:1 8398:1 8429:1 8435:1 8458:1 8465:1 8473:1 8479:1 8533:1 8541:1 8545:4 8554:2 8556:1 8560:1 8572:1 8579:1 8589:5 8590:3 8608:1 8609:1 8626:1 8636:1 8642:1 8643:1 8644:3 8650:2 8651:1 8652:1 8657:1 8663:1 8670:2 8691:2 8692:1 8704:1 8712:6 8717:2 8718:1 8736:1 8745:7 8774:1 8777:1 8784:3 8794:1 8810:2 8820:7 8824:4 8825:1 8831:5 8832:2 8835:2 8836:1 8837:2 8839:1 8840:1 8843:1 8846:6 8847:9 8849:1 8851:4 8853:3 8895:1 8911:2 8918:3 8925:1 8950:1 8997:2 9013:1 9027:1 9041:9 9046:1 9058:1 9061:1 9062:1 9074:2 9082:4 9086:1 9091:1 9118:1 9131:1 9133:1 9138:1 9153:1 9158:5 9176:1 9203:2 9204:1 9207:1 9208:1 9212:2 9213:1 9214:1 9216:1 9234:1 9236:2 9241:2 9245:1 9254:2 9265:2 9302:1 9308:1 9315:1 9318:2 9321:1 9322:1 9333:1 9337:3 9344:1 9346:1 9347:1 9355:2 9374:1 9387:1 9392:1 9393:1 9397:1 9402:2 9408:1 9410:1 9423:2 9425:4 9428:1 9439:1 9441:1 9478:1 9492:1 9503:1 9508:1 9509:10 9513:1 9514:2 9515:1 9517:1 9518:2 9521:1 9530:2 9535:1 9538:2 9543:3 9544:2 9555:4 9558:4 9563:2 9572:1 9575:1 9578:1 9581:1 9582:1 9585:1 9592:8 9607:4 9609:1 9622:1 9624:1 9628:1 9632:1 9634:3 9646:1 9658:3 9669:2 9674:1 9678:1 9687:1 9689:2 9694:2 9696:6 9715:3 9718:1 9723:2 9726:1 9731:2 9732:1 9754:1 9755:1 9762:2 9780:1 9781:1 9782:5 9828:1 9830:3 9841:2 9846:3 9865:1 9888:1 9914:1 9916:3 9918:3 9920:1 9925:1 9927:1 9930:1 9937:1 9945:2 9946:1 9956:2 9960:2 9966:1 9967:1 9995:5 9999:2 10010:1 10016:1 10029:1 10042:1 10093:2 10116:2 10140:1 10150:1 10159:1 10160:2 10161:1 10163:1 10168:1 10174:1 10182:1 10184:1 10200:1 10209:1 10214:1 10220:1 10221:1 10223:2 10224:2 10233:4 10236:1 10238:1 10266:2 10269:1 10275:1 10277:1 10278:1 10293:1 10294:1 10299:1 10313:1 10323:2 10328:1 10333:1 10341:1 10363:1 10367:1 10368:1 10376:2 10382:1 10387:1 10392:1 10397:3 10399:1 10409:1 10410:8 10425:1 10430:1 10453:1 10465:1 10466:1 10478:1 10479:1 10490:1 10512:1 10517:2 10536:3 10548:1 10559:1 10570:1 10593:2 10607:1 10611:1 10613:1 10615:1 10625:2 10648:3 10682:4 10683:1 10695:1 10717:2 10718:4 10729:1 10734:1 10736:1 10737:4 10743:1 10744:8 10751:2 10755:1 10760:2 10772:1 10774:1 10780:1 10782:1 10783:1 10789:1 10790:1 10791:1 10793:1 10796:2 10797:1 10805:1 10812:39 10814:1 10833:1 10838:1 10841:3 10843:7 10849:1 10855:3 10866:1 10871:3 10872:1 10886:1 10888:1 10901:1 10903:1 10908:1 10940:3 10941:1 10942:1 10946:1 10981:5 10983:1 10990:1 10998:5 11002:1 11022:1 11033:1 11034:3 11037:1 11038:1 11041:1 11045:1 11057:1 11072:2 11078:1 11082:2 11087:1 11110:1 11112:1 11113:2 11118:1 11121:2 11125:6 11131:1 11150:2 11164:1 11170:1 11176:1 11190:1 11195:1 11212:1 11228:1 11229:1 11247:4 11248:2 11260:4 11297:1 11300:1 11301:2 11321:1 11322:1 11332:1 11340:2 11342:2 11347:1 11352:1 11354:1 11357:1 11363:4 11379:4 11382:3 11397:1 11401:4 11403:1 11413:1 11417:1 11423:4 11431:2 11436:13 11452:3 11457:2 11460:1 11466:1 11470:1 11485:1 11487:2 11509:4 11528:1 11530:1 11548:1 11569:2 11584:3 11594:3 11597:5 11618:1 11620:3 11621:1 11625:1 11651:4 11656:1 11658:1 11691:2 11709:6 11711:1 11714:1 11722:1 11727:2 11728:1 11737:2 11747:1 11758:1 11764:1 11771:2 11774:1 11776:4 11779:1 11782:1 11785:5 11786:2 11788:2 11799:8 11833:1 11842:1 11848:1 11849:1 11854:1 11871:1 11881:1 11885:1 11888:2 11896:1 11898:1 11913:1 11916:1 11921:1 11926:1 11943:2 11947:1 11949:1 11950:4 11957:1 11966:1 11987:1 11990:3 11995:1 11997:1 12004:5 12011:3 12014:1 12015:1 12021:1 12022:1 12024:3 12025:1 12032:1 12035:2 12038:1 12042:2 12044:1 12046:1 12058:1 12059:1 12063:1 12067:1 12077:1 12094:1 12095:1 12102:1 12110:3 12118:1 12128:4 12129:1 12133:1 12136:1 12137:2 12143:1 12168:1 12183:1 12196:11 12205:1 12211:1 12213:1 12214:1 12229:1 12240:1 12257:1 12259:1 12262:1 12290:1 12323:1 12344:1 12345:5 12356:1 12366:1 12378:1 12379:1 12382:1 12386:1 12399:1 12401:2 12402:2 12418:9 12423:1 12435:1 12436:1 12444:1 12445:2 12446:1 12450:1 12457:2 12463:2 12466:1 12467:5 12471:1 12477:1 12481:1 12486:1 12495:4 12501:5 12502:3 12503:2 12505:1 12506:4 12511:2 12512:2 12548:1 12554:1 12557:5 12561:2 12572:1 12594:1 12614:1 12625:1 12629:1 12630:1 12631:1 12632:2 12633:1 12643:1 12652:4 12658:1 12664:6 12674:1 12678:1 12702:1 12715:3 12716:1 12727:1 12733:1 12739:1 12751:1 12755:1 12757:1 12762:2 12773:1 12778:3 12779:1 12781:1 12800:1 12810:3 12821:1 12839:1 12855:1 12856:1 12857:1 12861:2 12868:1 12879:4 12907:1 12913:1 12920:1 12929:2 12930:1 12932:1 12950:2 12962:1 12973:1 12974:11 12981:4 12984:1 12991:4 13001:1 13002:1 13007:1 13008:1 13012:1 13021:3 13028:1 13052:1 13064:1 13069:4 13076:2 13090:2 13091:2 13099:1 13105:1 13108:4 13111:1 13118:1 13130:1 13151:1 13153:1 13159:1 13163:1 13195:1 13197:3 13198:1 13228:3 13229:1 13254:2 13259:1 13275:1 13276:1 13278:1 13281:1 13288:1 13291:1 13299:5 13305:1 13311:1 13316:1 13322:2 13328:1 13330:1 13336:2 13337:1 13342:1 13343:1 13346:1 13347:1 13348:4 13354:1 13356:1 13359:1 13376:1 13388:1 13405:1 13411:1 13412:7 13413:2 13417:1 13423:1 13425:2 13430:3 13431:3 13433:1 13434:4 13436:4 13437:1 13439:1 13441:8 13449:1 13450:4 13451:5 13453:6 13465:1 13466:1 13474:8 13475:4 13493:1 13495:1 13498:4 13502:5 13503:1 13512:3 13532:5 13534:2 13555:1 13585:1 13587:1 13598:1 13599:1 13600:9 13606:4 13610:6 13612:2 13630:2 13635:2 13636:8 13637:1 13640:1 13650:3 13654:1 13664:1 13680:1 13684:3 13696:2 13700:1 13702:5 13703:1 13711:2 13721:1 13741:2 13747:2 13751:1 13756:11 13789:1 13810:4 13817:1 13821:1 13823:1 13824:5 13844:2 13845:1 13863:1 13875:1 13886:1 13889:1 13891:1 13892:1 13898:1 13902:5 13908:5 13929:1 13937:6 13944:1 13955:1 13957:2 13960:2 13962:1 13974:5 13992:1 14002:3 14011:1 14013:1 14051:1 14055:2 14073:1 14079:1 14084:3 14088:1 14096:3 14098:1 14100:6 14133:5 14134:1 14148:8 14152:1 14181:11 14236:2 14257:2 14262:1 14271:1 14274:1 14286:2 14289:3 14293:5 14296:6 14298:1 14299:1 14325:1 14339:1 14349:1 14364:1 14366:2 14371:1 14381:3 14383:1 14396:1 14402:1 14411:2 14420:2 14422:1 14436:2 14447:1 14452:3 14471:1 14474:3 14478:1 14484:3 14515:3 14519:11 14525:7 14527:1 14540:1 14555:4 14559:2 14574:2 14581:2 14583:7 14590:4 14592:1 14594:6 14601:2 14608:2 14609:4 14610:4 14644:1 14663:2 14672:1 14681:5 14692:2 14694:3 14707:1 14708:1 14715:1 14718:4 14757:1 14765:1 14770:2 14798:1 14814:1 14823:2 14826:5 14828:1 14829:1 14830:1 14831:1 14845:2 14854:1 14861:1 14868:1 14870:1 14873:1 14884:5 14887:1 14897:1 14900:2 14903:1 14909:4 14920:1 14935:1 14942:1 14962:1 14965:5 14968:4 14979:2 14980:4 14994:1 15004:1 15005:2 15009:1 15010:1 15015:1 15019:2 15021:1 15030:1 15036:1 15040:1 15051:1 15054:1 15068:1 15076:1 15085:5 15089:7 15113:4 15117:2 15122:1 15125:1 15131:1 15134:2 15146:1 15153:1 15170:1 15177:1 15183:1 15188:1 15195:3 15206:4 15235:1 15241:1 15243:1 15258:2 15274:2 15282:1 15283:1 15290:6 15302:1 15324:1 15363:1 15367:1 15396:1 15421:1 15445:2 15480:1 15486:1 15491:1 15497:2 15498:1 15502:1 15503:2 15523:1 15546:2 15547:1 15568:5 15576:2 15585:1 15593:1 15613:2 15618:6 15628:1 15629:1 15633:1 15637:4 15658:1 15666:11 15675:1 15693:2 15695:1 15696:5 15698:2 15704:1 15712:2 15713:2 15724:3 15727:1 15728:1 15731:1 15740:1 15745:1 15747:2 15752:7 15756:1 15764:1 15771:1 15772:1 15773:2 15778:1 15789:3 15799:1 15820:1 15829:1 15836:1 15854:2 15863:1 15864:2 15867:1 15872:1 15881:1 15896:1 15905:1 15911:1 15926:1 15934:1 15937:1 15959:5 15962:1 15966:1 15972:1 15974:1 15976:1 15978:32 15986:2 15990:2 15996:3 16001:1 16006:5 16008:1 16016:3 16017:1 16021:1 16022:2 16029:1 16030:1 16072:1 16077:1 16106:1 16110:2 16122:1 16127:1 16139:1 16156:1 16160:2 16175:1 16179:1 16183:4 16187:1 16202:1 16206:1 16217:2 16221:6 16235:2 16243:1 16247:1 16263:1 16264:1 16271:1 16278:1 16279:1 16287:1 16288:1 16338:3 16343:3 16344:1 16345:1 16346:1 16356:1 16358:1 16362:1 16366:3 16380:1 16388:1 16389:3 16394:1 16400:1 16418:1 16421:1 16434:3 16482:1 16487:1 16501:1 16515:3 16532:1 16540:2 16545:1 16558:1 16571:2 16579:2 16582:8 16584:1 16594:2 16595:2 16597:2 16604:1 16616:1 16623:1 16630:1 16633:3 16655:1 16666:5 16675:1 16679:2 16691:1 16694:1 16696:1 16716:5 16717:1 16726:1 16732:1 16740:1 16760:1 16806:1 16812:4 16817:1 16822:12 16830:1 16834:1 16869:1 16879:2 16883:1 16884:1 16893:1 16894:1 16902:4 16905:1 16918:1 16932:1 16937:2 16942:1 16945:1 16946:1 16964:1 16967:2 16980:1 17001:1 17005:1 17010:1 17014:2 17019:1 17027:1 17039:1 17040:1 17042:1 17059:1 17067:2 17072:4 17094:1 17104:2 17106:4 17124:1 17125:1 17128:2 17140:1 17146:1 17161:1 17189:1 17192:1 17193:1 17202:1 17207:4 17213:1 17216:1 17222:1 17237:1 17239:2 17242:1 17251:5 17252:1 17263:1 17270:4 17301:1 17306:4 17324:7 17342:2 17353:1 17362:1 17370:1 17380:1 17388:1 17389:2 17394:1 17408:27 17423:2 17434:1 17436:4 17437:3 17438:1 17440:2 17443:1 17444:2 17474:4 17475:1 17482:1 17486:2 17492:1 17493:3 17495:6 17504:1 17507:1 17508:1 17510:1 17517:1 17519:1 17524:1 17531:1 17532:1 17544:1 17552:1 17572:1 17573:1 17576:1 17583:3 17586:1 17590:1 17613:1 17615:4 17631:2 17643:1 17644:1 17672:1 17680:1 17684:2 17687:4 17696:1 17709:1 17723:1 17753:1 17779:1 17780:1 17783:1 17787:1 17790:1 17802:4 17810:1 17815:1 17817:1 17820:1 17822:1 17825:2 17846:1 17863:2 17873:1 17877:1 17878:3 17886:1 17889:1 17890:1 17891:6 17894:1 17912:8 17920:1 17926:1 17933:1 17934:3 17961:1 17968:1 17973:1 17989:1 17990:2 17992:1 18000:1 18009:1 18017:2 18022:1 18033:2 18039:1 18048:1 18058:1 18068:11 18075:4 18084:1 18098:3 18100:3 18101:1 18108:1 18123:1 18131:1 18132:1 18143:2 18144:1 18147:1 18148:1 18168:1 18176:3 18193:1 18198:3 18201:1 18210:1 18211:1 18213:1 18221:4 18230:3 18233:2 18246:1 18249:5 18253:1 18255:1 18261:2 18263:1 18265:4 18266:1 18269:2 18271:1 18282:1 18289:3 18310:1 18318:1 18319:1 18325:2 18326:2 18343:1 18344:2 18355:4 18366:1 18367:1 18373:1 18380:1 18387:2 18389:6 18392:21 18393:1 18398:1 18399:1 18412:2 18419:1 18428:2 18442:4 18465:1 18473:3 18498:2 18509:1 18516:1 18529:1 18557:2 18563:3 18569:2 18584:1 18585:1 18589:1 18612:2 18613:4 18614:1 18631:1 18636:2 18641:2 18643:5 18657:3 18686:2 18690:4 18693:1 18699:1 18713:4 18722:4 18735:6 18747:1 18751:6 18753:4 18760:2 18764:1 18766:1 18767:1 18788:1 18792:1 18799:1 18801:4 18811:4 18819:2 18834:3 18836:1 18838:1 18850:3 18852:1 18860:1 18865:1 18869:1 18870:2 18874:1 18877:1 18899:2 18907:4 18914:1 18934:1 18935:1 18941:1 18945:1 18947:1 18953:3 18956:1 18960:2 18964:1 18966:1 18978:1 19001:5 19005:1 19007:1 19015:1 19020:11 19021:2 19031:4 19032:1 19035:2 19036:1 19050:2 19057:2 19098:1 19130:5 19132:1 19137:1 19140:2 19147:1 19156:1 19165:4 19171:2 19174:1 19177:6 19208:1 19278:2 19280:1 19301:1 19311:2 19312:1 19331:1 19350:1 19358:3 19360:3 19365:3 19367:1 19369:1 19386:1 19389:1 19398:1 19399:1 19411:1 19412:1 19433:1 19455:1 19458:2 19465:3 19470:3 19499:1 19518:3 19522:1 19526:2 19528:1 19537:1 19545:1 19549:1 19559:1 19600:4 19604:1 19606:1 19607:1 19615:1 19618:1 19619:1 19627:1 19642:1 19643:3 19659:2 19661:1 19664:1 19672:1 19673:1 19674:5 19684:1 19687:1 19691:1 19692:1 19698:1 19699:1 19718:1 19722:2 19740:3 19748:1 19762:1 19767:1 19769:1 19791:1 19812:1 19818:2 19823:2 19824:6 19825:1 19831:1 19852:1 19856:1 19869:1 19870:1 19873:1 19878:1 19888:2 19905:1 19916:1 19918:1 19919:1 19930:1 19932:1 19934:1 19944:1 19957:1 19996:2 20003:1 20033:1 20044:1 20052:1 20058:1 20059:4 20060:6 20076:1 20081:1 20082:4 20083:1 20097:1 20105:1 20118:3 20126:4 20150:1 20158:1 20159:1 20177:5 20178:2 20181:1 20185:4 20191:3 20193:1 20207:2 20210:1 20212:1 20215:6 20247:2 20255:4 20263:2 20270:2 20271:1 20273:1 20276:1 20311:1 20330:1 20342:1 20350:1 20388:2
14 5:1 8:1 20:1 21:1 49:1 58:1 69:1 72:1 73:1 88:6 113:1 115:2 116:2 118:1 131:1 133:1 134:1 140:4 143:1 148:2 162:1 166:1 183:2 191:1 206:1 208:1 216:1 226:1 238:1 272:1 274:2 277:2 282:1 284:1 289:2 307:1 311:1 344:1 364:6 366:7 371:1 374:1 376:3 388:1 392:1 400:1 403:1 406:3 417:1 420:1 421:1 423:1 430:1 433:1 440:1 441:1 442:1 448:1 453:1 467:6 470:1 475:1 477:1 484:1 493:8 495:2 496:1 502:1 509:1 513:1 528:2 547:1 548:6 558:1 559:3 569:1 576:2 584:2 590:1 592:1 611:1 624:1 633:2 667:4 669:1 675:1 678:1 697:2 700:1 703:5 706:3 717:1 730:1 791:1 800:9 801:3 802:2 805:5 841:1 866:1 868:1 874:1 877:1 884:2 885:2 919:2 932:1 936:1 939:5 950:1 955:1 984:1 1000:1 1014:2 1015:1 1018:2 1025:1 1028:3 1031:2 1039:2 1046:1 1060:1 1079:2 1081:5 1082:1 1116:2 1128:1 1134:1 1142:1 1146:1 1186:2 1204:1 1237:1 1241:2 1246:1 1247:1 1252:1 1253:1 1256:3 1266:1 1270:1 1273:2 1290:1 1295:1 1310:1 1311:1 1315:1 1330:4 1331:9 1332:1 1333:1 1334:2 1342:1 1366:1 1380:3 1382:1 1388:1 1392:1 1416:1 1419:5 1428:1 1432:2 1438:1 1442:2 1445:2 1449:1 1467:3 1468:3 1487:1 1492:2 1499:2 1510:1 1525:1 1528:1 1535:1 1536:1 1545:1 1553:2 1561:1 1562:1 1565:1 1571:1 1578:1 1585:2 1596:1 1601:1 1603:1 1609:2 1617:1 1634:1 1637:1 1640:1 1647:12 1653:2 1654:1 1658:1 1668:1 1675:1 1692:1 1721:1 1758:3 1773:2 1777:2 1786:1 1789:1 1796:1 1797:2 1818:1 1822:1 1827:1 1828:1 1830:1 1834:1 1836:1 1839:3 1840:1 1843:3 1845:2 1846:2 1847:1 1849:1 1854:1 1858:5 1860:1 1865:1 1867:1 1875:3 1880:1 1911:1 1912:3 1921:1 1934:1 1941:1 1942:1 1943:1 1945:3 1946:1 1961:1 1969:1 1980:2 2003:2 2004:4 2016:2 2021:1 2040:1 2071:1 2084:1 2089:1 2100:5 2117:2 2128:1 2143:2 2146:2 2149:6 2157:4 2182:1 2183:1 2186:1 2189:1 2197:1 2198:2 2201:1 2203:1 2205:1 2230:1 2235:4 2251:3 2253:3 2266:1 2280:3 2282:2 2289:2 2296:1 2298:2 2313:4 2315:2 2327:4 2329:1 2349:1 2355:1 2358:6 2360:1 2369:1 2379:4 2385:2 2399:1 2406:1 2407:2 2418:1 2423:1 2424:1 2443:1 2455:3 2456:1 2481:1 2484:1 2504:6 2509:1 2524:5 2533:6 2536:1 2540:2 2556:1 2559:1 2560:1 2563:11 2570:1 2572:2 2598:6 2600:5 2625:1 2630:2 2632:4 2642:1 2656:2 2657:1 2658:3 2659:1 2661:1 2663:2 2665:1 2666:1 2671:2 2684:1 2696:2 2697:2 2701:1 2713:1 2726:1 2737:2 2747:1 2749:1 2751:2 2761:1 2768:1 2781:1 2782:5 2787:1 2788:1 2789:2 2812:1 2814:1 2816:1 2817:4 2822:1 2824:1 2831:8 2851:2 2856:1 2858:1 2887:3 2903:4 2905:4 2912:1 2917:1 2923:3 2927:3 2930:2 2931:1 2933:2 2937:1 2943:1 2961:2 2971:1 2980:2 2982:2 2983:2 2989:1 2992:1 2998:2 3001:3 3007:1 3021:1 3026:3 3028:6 3039:1 3043:1 3044:1 3046:2 3047:2 3048:2 3049:1 3053:1 3063:2 3068:1 3069:2 3070:1 3071:3 3082:2 3083:1 3093:1 3094:1 3110:4 3112:1 3114:2 3116:6 3118:1 3122:1 3123:5 3125:2 3126:1 3133:3 3135:1 3136:2 3142:4 3144:2 3146:2 3149:3 3151:1 3156:1 3168:3 3169:1 3202:3 3210:2 3212:1 3215:1 3231:1 3250:2 3266:1 3267:1 3270:2 3272:1 3281:6 3294:1 3295:1 3306:2 3316:2 3321:1 3327:1 3328:1 3329:2 3352:1 3357:3 3358:2 3390:1 3396:1 3400:1 3420:1 3431:2 3435:1 3446:1 3456:2 3458:1 3474:1 3489:1 3493:1 3501:1 3507:1 3510:2 3512:1 3518:2 3521:1 3536:1 3558:1 3560:6 3562:2 3568:4 3578:1 3581:6 3583:2 3587:2 3588:2 3599:1 3607:1 3609:1 3629:1 3631:3 3633:1 3638:2 3642:2 3655:1 3671:1 3692:2 3706:9 3707:3 3726:9 3731:1 3732:2 3733:2 3738:1 3751:1 3753:2 3763:1 3766:1 3771:1 3775:1 3777:6 3788:1 3811:4 3819:3 3820:1 3830:1 3834:1 3836:1 3837:1 3841:1 3871:1 3873:2 3879:1 3880:1 3886:3 3892:1 3901:1 3905:4 3910:1 3919:1 3920:6 3927:1 3936:1 3948:1 3966:4 3972:2 3975:1 3989:1 3991:1 3994:1 3997:1 3998:1 3999:1 4002:1 4013:2 4019:3 4026:2 4031:1 4033:6 4037:3 4054:1 4058:2 4059:3 4067:1 4071:32 4072:2 4073:1 4078:1 4079:1 4080:1 4091:2 4096:1 4098:1 4111:1 4114:4 4128:1 4129:1 4131:10 4140:2 4144:1 4145:8 4152:4 4160:1 4162:1 4168:1 4169:8 4175:1 4194:1 4195:4 4196:3 4197:1 4203:1 4210:5 4211:1 4213:1 4225:4 4234:2 4249:2 4251:1 4253:1 4257:1 4270:2 4277:1 4294:4 4301:1 4305:2 4307:1 4324:5 4331:1 4343:1 4348:5 4349:3 4366:1 4378:1 4412:2 4420:2 4427:3 4436:2 4441:1 4471:2 4473:1 4476:1 4483:1 4486:1 4500:1 4502:1 4506:1 4510:1 4544:3 4549:2 4553:8 4556:2 4561:1 4568:2 4611:1 4622:2 4627:2 4628:2 4635:1 4638:2 4641:2 4646:1 4647:1 4649:1 4658:2 4667:1 4676:2 4683:1 4686:8 4692:9 4699:5 4708:1 4733:1 4734:1 4751:1 4754:1 4759:1 4762:3 4766:1 4771:3 4772:1 4778:2 4779:1 4794:1 4795:4 4827:1 4831:1 4834:6 4837:2 4843:1 4847:1 4851:11 4869:2 4900:2 4910:1 4914:2 4937:1 4940:2 4959:1 4960:1 4982:5 4989:3 5001:1 5006:4 5016:1 5018:1 5019:1 5023:3 5025:1 5039:1 5040:1 5052:1 5057:1 5058:6 5067:33 5074:1 5081:1 5082:2 5083:4 5097:1 5101:1 5107:1 5112:1 5131:1 5132:1 5135:1 5153:2 5156:1 5157:1 5185:1 5193:1 5200:1 5202:1 5203:12 5212:1 5227:1 5228:1 5231:2 5236:1 5241:4 5247:1 5256:6 5264:1 5266:4 5271:5 5288:1 5291:1 5309:1 5313:2 5321:1 5345:1 5347:2 5355:1 5362:1 5364:1 5365:4 5366:2 5372:1 5375:1 5382:1 5383:1 5387:1 5394:3 5402:1 5406:2 5408:1 5413:1 5416:1 5424:1 5433:1 5434:1 5437:1850 5443:2 5456:2 5458:1 5460:2 5462:1 5468:1 5469:1 5497:1 5499:1 5507:2 5509:2 5511:1 5518:1 5520:1 5529:1 5530:1 5583:1 5590:1 5600:1 5604:1 5625:1 5637:1 5644:1 5657:1 5661:1 5672:2 5673:2 5674:1 5691:3 5697:2 5714:1 5717:2 5718:1 5751:3 5753:2 5756:2 5757:1 5760:1 5762:1 5763:1 5765:4 5767:1 5771:3 5775:1 5778:1 5780:6 5785:1 5806:1 5813:2 5817:1 5837:1 5856:1 5867:1 5874:1 5879:1 5886:1 5893:2 5904:1 5911:2 5912:1 5916:1 5932:13 5944:1 5962:3 5974:1 5982:1 5984:9 5995:1 5996:3 5997:1 6020:1 6026:1 6055:1 6090:1 6092:2 6100:1 6110:1 6111:1 6118:1 6133:1 6153:1 6165:1 6174:1 6208:1 6216:1 6220:1 6232:1 6233:3 6247:1 6307:1 6308:1 6311:3 6316:3 6317:2 6321:1 6325:1 6339:3 6349:2 6351:1 6352:2 6354:1 6367:1 6368:1 6372:1 6398:1 6420:6 6425:4 6450:1 6451:1 6452:1 6453:1 6458:1 6473:1 6489:2 6502:6 6508:1 6511:6 6517:7 6520:2 6534:1 6541:4 6543:1 6547:1 6559:1 6586:1 6587:1 6588:1 6593:1 6596:1 6607:1 6609:1 6615:2 6635:1 6660:1 6661:2 6662:1 6668:1 6675:17 6677:1 6680:1 6681:1 6682:1 6683:4 6688:1 6694:10 6725:3 6736:1 6741:1 6746:2 6747:3 6749:1 6752:6 6756:1 6765:1 6775:1 6801:1 6822:1 6829:1 6837:1 6842:1 6845:10 6866:1 6867:5 6868:1 6876:1 6879:1 6880:1 6882:1 6884:1 6885:1 6891:1 6900:1 6902:4 6903:1 6905:3 6931:3 6945:3 6947:1 6953:1 6955:1 6956:2 6957:1 6967:1 6970:1 6988:1 7000:1 7008:2 7009:1 7013:1 7016:1 7024:1 7078:1 7079:1 7082:1 7084:1 7112:1 7113:1 7129:3 7142:1 7148:6 7156:2 7160:5 7161:1 7174:1 7185:4 7205:1 7207:1 7258:1 7263:1 7266:4 7268:4 7277:1 7281:1 7287:3 7295:2 7297:2 7305:1 7327:1 7342:1 7357:1 7361:1 7400:2 7402:1 7403:2 7414:2 7425:1 7427:1 7430:1 7441:1 7446:1 7447:1 7459:3 7466:4 7474:3 7488:2 7490:3 7497:1 7504:1 7506:2 7512:1 7513:1 7515:1 7516:1 7525:1 7526:5 7527:1 7539:1 7548:1 7571:2 7582:4 7585:1 7589:1 7591:1 7593:1 7595:1 7596:1 7601:2 7610:1 7611:2 7615:1 7618:1 7622:4 7623:1 7630:1 7631:1 7633:1 7641:3 7647:1 7652:2 7653:1 7655:1 7664:2 7670:1 7672:1 7678:1 7690:1 7703:6 7707:1 7753:1 7767:1 7769:2 7770:1 7771:1 7773:1 7782:4 7783:2 7788:2 7790:2 7794:4 7800:1 7804:1 7825:1 7829:2 7849:1 7852:1 7854:1 7872:1 7886:1 7895:1 7898:8 7921:1 7930:1 7941:1 7951:3 7968:1 7975:1 7976:1 7977:2 7989:2 8016:1 8024:1 8032:1 8033:1 8055:2 8080:2 8084:1 8091:2 8095:2 8125:2 8137:1 8148:1 8156:1 8162:1 8176:1 8190:2 8195:1 8210:2 8246:2 8254:1 8260:1 8278:1 8282:2 8290:1 8300:1 8305:1 8311:1 8328:1 8332:1 8334:3 8364:3 8373:4 8378:2 8379:2 8386:1 8388:1 8398:1 8429:1 8435:1 8458:1 8465:1 8473:1 8479:1 8533:1 8541:1 8545:4 8554:2 8556:1 8560:1 8572:1 8579:1 8589:5 8590:3 8608:1 8609:1 8626:1 8636:1 8642:1 8643:1 8644:3 8650:2 8651:1 8652:1 8657:1 8663:1 8670:2 8691:2 8692:1 8704:1 8711:1 8712:6 8717:2 8718:1 8736:1 8745:7 8774:1 8777:1 8784:3 8794:1 8810:2 8820:8 8824:4 8825:1 8831:5 8832:2 8835:3 8836:1 8837:2 8839:1 8840:1 8843:1 8846:6 8847:9 8849:1 8851:4 8853:3 8895:1 8911:2 8918:3 8925:1 8950:1 8997:2 9013:1 9027:1 9041:9 9046:1 9058:1 9061:1 9062:1 9074:2 9080:1 9082:4 9086:1 9091:1 9118:1 9131:1 9133:1 9138:1 9153:1 9158:6 9176:1 9203:2 9204:1 9207:1 9208:1 9212:2 9213:1 9214:1 9216:1 9234:1 9236:2 9241:2 9245:1 9254:2 9265:2 9302:1 9308:1 9315:1 9318:2 9321:1 9322:1 9333:1 9337:3 9344:1 9346:1 9347:1 9355:2 9374:1 9387:1 9392:1 9393:1 9397:1 9402:2 9408:1 9410:1 9423:2 9425:4 9428:1 9439:1 9441:1 9478:1 9492:1 9503:1 9508:1 9509:11 9513:1 9514:2 9515:1 9517:2 9518:2 9521:1 9530:2 9535:1 9538:3 9543:3 9544:3 9555:4 9558:4 9563:2 9572:1 9575:1 9578:1 9581:1 9582:1 9585:1 9592:8 9607:4 9609:1 9622:1 9624:1 9628:1 9632:1 9634:3 9646:1 9658:3 9669:2 9674:1 9678:1 9687:1 9689:2 9694:2 9696:6 9715:3 9718:1 9723:2 9726:1 9731:2 9732:1 9754:1 9755:1 9762:2 9780:1 9781:1 9782:5 9828:1 9830:3 9841:3 9846:3 9865:1 9867:1 9888:1 9914:1 9916:3 9918:3 9920:1 9925:2 9927:1 9930:1 9937:1 9945:2 9946:1 9956:3 9960:2 9966:1 9967:1 9995:5 9999:2 10010:1 10016:1 10029:2 10042:1 10093:2 10116:2 10119:1 10140:1 10150:1 10159:1 10160:2 10161:1 10163:1 10168:1 10174:1 10182:1 10184:1 10200:1 10209:1 10214:1 10220:1 10221:1 10223:2 10224:2 10233:4 10236:1 10238:1 10266:2 10269:1 10275:1 10277:1 10278:1 10293:1 10294:1 10299:1 10313:1 10323:2 10328:1 10333:1 10341:1 10356:1 10363:1 10367:1 10368:1 10376:2 10382:1 10387:1 10392:1 10397:3 10399:1 10409:1 10410:8 10425:1 10430:1 10453:1 10465:1 10466:1 10478:1 10479:1 10490:1 10512:1 10517:2 10536:3 10548:1 10559:1 10570:1 10593:2 10607:1 10611:1 10613:1 10615:1 10625:2 10648:3 10682:4 10683:1 10695:2 10717:2 10718:4 10729:1 10734:1 10736:1 10737:4 10743:1 10744:8 10751:2 10755:1 10760:2 10772:1 10774:1 10780:1 10782:1 10783:1 10789:1 10790:1 10791:1 10793:1 10796:2 10797:1 10805:1 10812:41 10814:1 10833:1 10838:1 10841:3 10843:7 10849:1 10855:3 10866:1 10871:3 10872:1 10886:1 10888:1 10901:1 10903:1 10908:1 10940:3 10941:1 10942:1 10946:2 10981:5 10983:1 10990:1 10998:5 11002:1 11022:1 11033:1 11034:3 11037:1 11038:1 11041:1 11045:1 11057:1 11072:2 11078:1 11082:2 11087:1 11110:1 11112:1 11113:2 11118:1 11121:2 11125:6 11131:1 11150:2 11164:1 11170:1 11176:1 11190:1 11195:1 11212:1 11228:1 11229:1 11246:1 11247:4 11248:2 11260:4 11285:1 11297:1 11300:1 11301:2 11321:1 11322:1 11332:1 11340:2 11342:2 11347:1 11352:1 11354:1 11357:1 11363:4 11379:4 11382:3 11397:1 11401:4 11403:1 11413:1 11417:1 11423:4 11431:2 11436:13 11452:3 11457:2 11460:1 11466:1 11470:1 11485:1 11487:2 11509:4 11528:1 11530:1 11548:1 11569:2 11584:3 11594:3 11597:5 11618:1 11620:3 11621:1 11625:1 11651:4 11656:1 11658:1 11665:1 11691:2 11709:6 11711:1 11714:1 11722:1 11727:2 11728:1 11737:2 11747:1 11758:1 11764:1 11771:2 11774:1 11776:5 11779:1 11782:1 11785:5 11786:2 11788:2 11799:8 11833:1 11842:1 11848:1 11849:1 11854:1 11871:1 11881:1 11885:1 11888:2 11896:1 11898:1 11913:1 11916:1 11921:1 11926:1 11943:2 11947:1 11949:1 11950:4 11957:1 11966:1 11987:1 11990:3 11995:1 11997:1 12003:1 12004:6 12011:3 12014:1 12015:1 12019:1 12021:1 12022:1 12024:3 12025:1 12032:1 12035:2 12038:1 12042:2 12044:1 12046:1 12058:1 12059:1 12063:1 12067:1 12077:1 12094:1 12095:1 12102:1 12110:3 12118:1 12128:4 12129:1 12133:1 12136:1 12137:2 12143:1 12168:1 12183:1 12196:11 12205:1 12211:1 12213:1 12214:1 12229:1 12240:1 12257:1 12259:1 12262:1 12290:1 12323:1 12344:1 12345:5 12356:1 12366:1 12373:1 12378:1 12379:1 12382:1 12386:1 12399:1 12401:2 12402:2 12418:10 12423:1 12435:1 12436:1 12444:1 12445:2 12446:1 12450:1 12457:2 12463:2 12466:1 12467:6 12471:1 12473:1 12477:1 12481:1 12484:1 12486:1 12495:4 12501:5 12502:3 12503:2 12505:1 12506:4 12511:2 12512:2 12548:1 12554:1 12557:5 12561:2 12572:1 12594:1 12614:1 12625:1 12629:1 12630:1 12631:1 12632:2 12633:1 12643:1 12652:4 12658:1 12664:6 12673:1 12674:1 12678:1 12702:1 12715:3 12716:1 12727:1 12733:1 12739:1 12751:1 12755:1 12757:1 12762:3 12773:1 12778:3 12779:1 12781:1 12800:1 12810:3 12821:1 12839:1 12855:1 12856:1 12857:1 12861:2 12868:1 12879:4 12907:1 12913:1 12920:1 12929:2 12930:1 12932:1 12950:2 12962:1 12973:1 12974:11 12981:4 12984:1 12991:4 13001:1 13002:1 13007:1 13008:1 13012:1 13021:3 13028:1 13052:1 13064:1 13068:1 13069:4 13076:2 13090:2 13091:2 13099:1 13105:1 13108:4 13111:1 13118:1 13130:1 13151:1 13153:1 13159:1 13163:1 13195:1 13197:3 13198:1 13228:3 13229:1 13254:2 13259:1 13275:1 13276:1 13278:1 13281:1 13288:1 13291:1 13299:5 13305:1 13311:1 13316:1 13322:2 13328:1 13330:1 13336:2 13337:1 13342:1 13343:1 13346:1 13347:1 13348:4 13354:1 13356:1 13359:1 13376:1 13388:1 13405:1 13411:1 13412:8 13413:2 13417:1 13423:2 13425:2 13430:3 13431:3 13433:1 13434:4 13436:5 13437:1 13439:1 13441:9 13449:1 13450:4 13451:5 13453:6 13465:1 13466:1 13474:9 13475:4 13493:1 13495:1 13498:4 13502:5 13503:1 13512:3 13532:6 13534:3 13555:1 13585:1 13587:1 13595:1 13598:1 13599:1 13600:10 13606:4 13610:7 13612:2 13630:2 13635:2 13636:8 13637:1 13640:1 13650:3 13654:1 13664:1 13680:1 13684:3 13696:3 13700:1 13702:5 13703:1 13711:3 13721:1 13741:2 13747:2 13751:1 13756:11 13789:1 13810:4 13817:1 13821:1 13823:1 13824:6 13844:3 13845:1 13863:1 13875:1 13886:1 13889:1 13891:1 13892:1 13898:1 13902:6 13908:6 13929:1 13937:6 13944:1 13955:1 13957:2 13960:2 13962:1 13974:5 13978:1 13992:1 14002:3 14011:1 14013:1 14051:1 14055:2 14073:1 14079:1 14084:3 14088:1 14096:3 14098:1 14100:6 14133:6 14134:1 14148:8 14152:1 14181:12 14236:2 14257:2 14262:1 14271:1 14274:1 14286:2 14289:3 14293:5 14296:7 14298:1 14299:1 14325:1 14339:1 14349:1 14356:1 14364:1 14366:2 14371:1 14381:3 14383:1 14396:1 14402:1 14411:2 14420:2 14422:1 14436:2 14447:1 14452:3 14471:1 14474:3 14478:1 14484:3 14515:3 14519:11 14525:7 14527:1 14540:1 14555:5 14559:2 14574:2 14581:2 14583:7 14590:5 14592:1 14594:6 14601:2 14608:2 14609:4 14610:4 14644:1 14663:2 14672:1 14681:5 14692:2 14694:3 14707:1 14708:1 14715:1 14718:4 14757:1 14765:2 14770:2 14798:1 14814:1 14823:2 14826:5 14828:1 14829:1 14830:1 14831:1 14845:2 14854:1 14861:1 14868:1 14870:2 14873:1 14884:5 14887:1 14897:1 14900:2 14903:1 14909:4 14920:1 14935:1 14942:1 14962:1 14965:6 14968:5 14979:2 14980:4 14994:1 15004:1 15005:2 15009:2 15010:1 15015:1 15019:2 15021:1 15030:1 15036:1 15040:1 15050:1 15051:1 15054:1 15068:1 15076:1 15085:6 15089:8 15113:4 15117:2 15122:1 15125:1 15131:1 15134:2 15146:1 15153:1 15170:1 15177:1 15183:1 15188:1 15195:3 15206:4 15235:1 15241:1 15243:1 15258:2 15274:2 15282:1 15283:1 15290:6 15302:1 15324:1 15363:2 15367:1 15396:1 15405:1 15421:1 15445:2 15480:1 15486:1 15491:1 15497:2 15498:1 15502:1 15503:3 15523:1 15546:2 15547:1 15568:5 15576:2 15585:1 15593:1 15613:2 15618:6 15628:1 15629:1 15633:1 15637:4 15658:1 15666:11 15675:1 15693:2 15695:1 15696:5 15698:2 15704:1 15712:2 15713:2 15715:1 15724:3 15727:1 15728:1 15731:1 15740:1 15745:1 15747:2 15752:7 15756:1 15764:1 15771:1 15772:1 15773:2 15778:1 15789:3 15799:1 15820:1 15829:1 15836:1 15854:2 15863:1 15864:2 15867:1 15872:1 15881:1 15896:1 15905:1 15911:1 15926:1 15934:1 15937:1 15959:5 15962:1 15966:1 15972:1 15974:1 15976:1 15978:33 15986:2 15990:2 15996:3 16001:1 16006:6 16008:1 16016:4 16017:1 16021:1 16022:2 16029:1 16030:1 16062:1 16072:1 16077:1 16106:1 16110:2 16122:1 16127:1 16139:1 16156:1 16160:2 16175:1 16179:1 16183:4 16187:1 16202:1 16206:1 16217:2 16221:6 16235:2 16243:1 16247:1 16263:1 16264:1 16271:1 16278:1 16279:1 16287:1 16288:1 16338:3 16343:3 16344:1 16345:1 16346:1 16356:1 16358:1 16362:1 16366:4 16380:1 16386:1 16388:1 16389:3 16394:1 16400:1 16411:1 16418:1 16421:1 16434:3 16482:1 16487:1 16501:1 16515:3 16532:1 16540:2 16545:1 16558:1 16571:2 16579:2 16582:9 16584:1 16594:2 16595:2 16597:2 16604:1 16616:1 16623:1 16630:1 16633:3 16655:1 16666:5 16675:1 16679:2 16691:1 16694:1 16696:1 16716:5 16717:1 16726:1 16732:1 16739:1 16740:1 16760:1 16806:1 16812:4 16817:1 16822:12 16830:1 16834:1 16869:1 16879:3 16883:1 16884:1 16893:1 16894:1 16902:4 16905:1 16918:1 16932:1 16937:2 16942:1 16945:1 16946:1 16964:1 16967:2 16980:1 17001:1 17005:1 17010:1 17014:2 17019:1 17027:1 17039:1 17040:1 17042:1 17059:1 17067:2 17072:4 17094:1 17104:2 17106:4 17124:1 17125:1 17128:2 17140:1 17146:1 17161:1 17189:1 17192:1 17193:1 17202:1 17207:5 17213:1 17216:1 17222:1 17237:1 17239:2 17242:1 17251:6 17252:1 17263:1 17270:4 17301:1 17306:5 17324:7 17342:2 17353:1 17362:1 17370:1 17380:1 17388:1 17389:2 17394:1 17408:27 17423:2 17434:1 17436:4 17437:4 17438:1 17440:2 17443:1 17444:2 17474:4 17475:1 17482:1 17486:2 17492:1 17493:3 17495:7 17504:1 17507:1 17508:1 17510:1 17517:1 17519:1 17524:1 17531:1 17532:1 17544:1 17552:1 17572:1 17573:1 17576:1 17583:3 17586:1 17590:1 17613:1 17615:4 17629:1 17631:2 17643:1 17644:1 17672:1 17680:1 17684:2 17687:4 17690:1 17696:1 17709:1 17723:1 17753:1 17779:1 17780:1 17783:1 17787:1 17790:1 17802:4 17810:1 17815:1 17817:1 17820:1 17822:1 17825:2 17846:1 17863:2 17873:1 17877:1 17878:3 17886:1 17889:1 17890:1 17891:6 17894:1 17912:8 17920:1 17926:1 17933:2 17934:3 17961:1 17968:1 17973:1 17989:1 17990:2 17992:1 18000:1 18009:1 18017:2 18022:1 18033:2 18039:1 18048:1 18058:1 18068:11 18075:4 18084:1 18086:1 18098:3 18100:3 18101:1 18108:1 18123:1 18131:1 18132:1 18143:2 18144:1 18147:1 18148:1 18168:1 18176:3 18193:1 18198:3 18201:1 18210:1 18211:1 18213:1 18221:4 18230:3 18233:2 18246:1 18249:5 18253:1 18255:1 18261:2 18263:1 18265:4 18266:1 18269:2 18271:1 18282:1 18289:3 18310:1 18318:1 18319:1 18325:2 18326:2 18343:1 18344:2 18355:4 18366:1 18367:1 18373:1 18380:1 18387:2 18389:6 18392:22 18393:1 18398:1 18399:1 18412:2 18419:1 18428:2 18442:4 18465:1 18473:3 18498:2 18509:1 18516:1 18529:1 18557:2 18563:3 18569:2 18584:1 18585:1 18589:1 18612:2 18613:4 18614:1 18631:1 18636:2 18641:2 18643:6 18657:3 18686:2 18690:4 18693:1 18699:1 18713:4 18722:4 18735:6 18747:1 18751:7 18753:4 18760:2 18764:1 18766:1 18767:1 18788:1 18792:1 18799:1 18801:4 18811:4 18819:2 18834:3 18836:1 18838:1 18850:4 18852:1 18860:1 18863:1 18865:1 18869:1 18870:2 18874:1 18877:1 18899:2 18907:4 18914:1 18934:2 18935:1 18941:1 18945:1 18947:1 18953:3 18956:1 18960:2 18964:1 18966:1 18978:1 19001:6 19005:1 19007:1 19015:1 19020:11 19021:2 19031:4 19032:1 19035:2 19036:1 19050:2 19057:2 19098:1 19130:6 19132:1 19137:1 19140:2 19147:1 19156:1 19165:4 19171:2 19174:1 19177:6 19189:1 19208:1 19278:2 19280:1 19301:1 19311:2 19312:1 19331:1 19336:1 19350:1 19358:3 19360:4 19365:3 19367:1 19369:1 19386:1 19389:1 19398:1 19399:1 19411:1 19412:1 19433:1 19455:1 19458:2 19465:3 19470:3 19499:1 19510:1 19518:3 19522:1 19526:2 19528:1 19537:1 19545:1 19549:1 19559:1 19600:4 19604:1 19606:1 19607:1 19615:1 19618:1 19619:1 19627:1 19642:1 19643:3 19644:1 19659:2 19661:1 19664:1 19672:1 19673:1 19674:5 19684:1 19687:1 19691:1 19692:1 19698:1 19699:1 19718:1 19722:2 19740:3 19748:1 19762:1 19767:1 19769:1 19791:1 19812:1 19818:2 19823:2 19824:6 19825:1 19831:1 19852:1 19856:1 19869:1 19870:1 19873:1 19878:1 19888:2 19905:1 19916:1 19918:1 19919:1 19930:1 19932:1 19934:1 19944:2 19957:1 19996:2 20003:1 20033:1 20044:1 20052:1 20058:1 20059:4 20060:6 20076:1 20081:1 20082:4 20083:1 20096:1 20097:1 20105:1 20118:3 20126:4 20150:1 20158:1 20159:1 20177:5 20178:2 20181:1 20185:4 20191:3 20193:1 20207:2 20210:1 20212:1 20215:6 20247:2 20255:5 20263:2 20270:2 20271:1 20273:1 20276:1 20311:1 20330:1 20342:1 20350:1 20386:1 20388:2
14 5:1 8:1 20:1 21:2 49:1 58:1 69:1 72:1 73:1 88:6 113:1 115:2 116:2 118:1 119:1 131:1 133:1 134:1 140:4 143:1 148:2 162:1 166:1 183:2 191:1 206:1 208:1 216:1 226:1 238:1 272:1 274:2 277:2 282:1 284:1 289:2 307:1 311:1 344:1 364:6 366:8 371:1 374:1 376:3 388:1 392:1 400:1 403:1 406:3 417:1 420:1 421:1 423:1 430:1 433:1 440:1 441:2 442:1 448:1 453:1 467:6 470:1 475:1 477:1 484:1 493:8 495:2 496:1 502:1 509:1 513:1 528:2 547:1 548:6 558:1 559:3 569:1 576:2 584:2 590:1 592:1 611:1 624:1 633:2 667:4 669:1 675:1 678:1 697:2 700:1 703:5 706:3 717:2 730:1 754:1 791:1 800:9 801:3 802:2 805:5 841:1 866:1 868:1 874:1 877:1 884:2 885:2 897:1 919:2 932:1 936:1 939:6 950:1 955:1 984:3 1000:1 1014:2 1015:1 1016:1 1018:2 1025:1 1028:5 1031:2 1037:1 1039:2 1046:2 1060:1 1079:2 1081:5 1082:1 1116:2 1128:1 1134:1 1142:1 1146:1 1186:2 1204:1 1237:1 1241:2 1246:3 1247:1 1252:1 1253:1 1256:3 1266:1 1270:1 1273:2 1290:1 1295:1 1310:2 1311:1 1315:1 1324:1 1330:4 1331:9 1332:1 1333:1 1334:2 1342:1 1355:1 1366:1 1380:4 1382:1 1388:1 1392:1 1416:1 1419:5 1428:1 1432:3 1438:1 1442:2 1445:2 1449:1 1467:3 1468:3 1487:1 1492:2 1499:2 1510:1 1514:1 1517:1 1525:1 1528:1 1535:1 1536:1 1545:1 1553:2 1561:1 1562:1 1565:1 1571:1 1578:1 1585:2 1596:1 1601:1 1603:1 1609:2 1617:1 1620:1 1634:1 1637:1 1640:1 1647:13 1653:2 1654:1 1658:1 1668:1 1675:1 1692:1 1721:1 1758:3 1773:2 1777:2 1786:1 1789:1 1796:1 1797:2 1818:1 1822:1 1827:1 1828:1 1830:1 1834:1 1836:1 1839:3 1840:1 1843:3 1845:2 1846:2 1847:1 1849:1 1854:1 1858:5 1860:1 1865:1 1867:1 1875:3 1880:1 1884:1 1895:1 1911:1 1912:3 1921:1 1934:1 1941:1 1942:1 1943:1 1945:3 1946:1 1961:1 1969:1 1980:2 2003:2 2004:4 2016:2 2021:1 2040:1 2071:1 2084:1 2089:1 2100:5 2117:2 2128:1 2143:2 2146:2 2149:6 2157:4 2182:1 2183:1 2186:1 2189:1 2197:1 2198:2 2201:1 2203:1 2205:1 2230:1 2235:4 2251:4 2253:3 2266:1 2271:1 2280:3 2282:2 2289:2 2296:1 2298:3 2299:1 2313:4 2315:2 2327:4 2329:1 2349:1 2355:1 2358:6 2360:1 2369:1 2379:4 2384:1 2385:2 2399:1 2406:1 2407:2 2416:1 2418:1 2423:1 2424:1 2443:1 2455:3 2456:1 2481:1 2484:1 2504:6 2509:1 2524:5 2533:6 2536:1 2540:2 2545:1 2556:1 2559:1 2560:2 2563:12 2570:2 2572:2 2598:6 2600:5 2625:1 2630:2 2632:4 2642:1 2656:2 2657:1 2658:3 2659:1 2661:1 2663:2 2664:1 2665:1 2666:1 2671:2 2684:1 2696:2 2697:2 2701:1 2713:1 2716:1 2726:1 2737:2 2747:1 2749:1 2751:2 2761:1 2768:1 2781:1 2782:5 2787:1 2788:1 2789:2 2812:1 2814:1 2816:1 2817:4 2822:1 2824:1 2831:9 2851:2 2856:1 2858:1 2861:1 2887:3 2903:4 2905:4 2912:1 2917:1 2923:3 2927:4 2930:2 2931:1 2933:2 2937:1 2943:1 2961:3 2971:1 2980:3 2982:2 2983:2 2989:1 2992:1 2998:2 3001:3 3007:1 3021:1 3026:3 3028:6 3039:1 3043:1 3044:1 3046:2 3047:2 3048:2 3049:1 3053:1 3063:2 3068:1 3069:2 3070:1 3071:3 3082:2 3083:1 3093:1 3094:1 3110:4 3112:1 3114:2 3116:6 3118:2 3122:1 3123:5 3125:2 3126:1 3133:3 3135:1 3136:2 3142:5 3144:2 3146:2 3149:3 3151:1 3156:1 3168:3 3169:1 3199:1 3202:3 3210:2 3212:1 3215:1 3222:1 3231:1 3250:2 3266:1 3267:1 3270:2 3272:1 3281:6 3294:1 3295:1 3306:2 3316:2 3321:1 3327:1 3328:1 3329:2 3352:1 3357:3 3358:2 3378:2 3389:1 3390:1 3396:1 3400:1 3420:1 3431:2 3435:1 3446:1 3456:2 3458:1 3474:1 3489:1 3493:1 3501:2 3507:1 3510:2 3512:1 3518:2 3521:1 3536:1 3558:1 3560:8 3562:2 3568:4 3578:1 3581:8 3583:2 3587:2 3588:2 3599:1 3607:1 3609:1 3629:1 3631:3 3633:1 3638:2 3642:2 3655:1 3671:1 3692:2 3706:9 3707:3 3726:10 3731:1 3732:2 3733:2 3738:1 3751:1 3753:2 3763:1 3766:1 3771:1 3775:1 3777:7 3788:1 3811:4 3819:3 3820:1 3830:1 3834:1 3836:1 3837:1 3841:1 3857:1 3871:2 3873:2 3879:1 3880:1 3886:3 3892:1 3901:1 3902:1 3905:4 3910:1 3919:1 3920:6 3927:1 3936:1 3948:1 3966:4 3972:2 3975:1 3989:1 3991:1 3994:1 3997:1 3998:1 3999:1 4002:1 4013:2 4019:3 4026:3 4031:1 4033:6 4037:3 4054:1 4058:2 4059:3 4067:1 4071:33 4072:2 4073:1 4078:1 4079:1 4080:1 4091:2 4096:1 4098:1 4111:1 4114:4 4128:1 4129:1 4131:10 4140:2 4144:1 4145:9 4152:4 4160:2 4162:1 4168:1 4169:8 4175:1 4194:1 4195:4 4196:3 4197:1 4203:1 4210:5 4211:1 4213:1 4225:4 4234:2 4249:2 4251:1 4253:1 4257:1 4266:1 4270:2 4277:1 4294:4 4301:1 4305:2 4307:1 4309:1 4324:5 4331:1 4343:1 4348:5 4349:3 4366:1 4378:1 4412:2 4420:2 4427:3 4436:2 4441:1 4471:2 4473:1 4476:1 4483:1 4486:1 4500:1 4502:1 4506:1 4510:1 4544:3 4549:2 4553:9 4556:2 4561:2 4568:2 4574:1 4605:1 4611:1 4622:2 4627:2 4628:3 4635:1 4638:2 4641:2 4646:1 4647:1 4649:1 4652:1 4658:2 4667:1 4676:2 4683:1 4686:10 4692:10 4699:6 4708:1 4733:2 4734:1 4751:1 4754:1 4759:1 4762:3 4766:1 4771:3 4772:1 4778:2 4779:1 4794:1 4795:4 4827:1 4831:1 4834:8 4837:2 4843:1 4847:1 4851:12 4869:2 4885:1 4900:2 4910:1 4914:2 4937:1 4940:2 4959:1 4960:1 4982:5 4989:3 5001:1 5006:4 5016:1 5018:1 5019:1 5023:3 5024:1 5025:1 5039:1 5040:1 5052:1 5057:1 5058:6 5067:35 5074:1 5081:1 5082:2 5083:4 5097:1 5101:1 5107:1 5112:1 5131:1 5132:1 5135:1 5153:2 5156:1 5157:1 5185:1 5193:1 5200:1 5202:1 5203:13 5212:1 5227:1 5228:1 5231:2 5236:2 5241:4 5247:1 5256:6 5264:1 5266:4 5271:5 5288:1 5291:1 5309:1 5313:2 5321:1 5345:1 5347:2 5355:1 5362:1 5364:1 5365:4 5366:2 5372:1 5375:1 5382:1 5383:1 5387:1 5394:3 5402:1 5406:2 5408:1 5413:1 5416:1 5424:1 5433:1 5434:1 5437:2012 5443:2 5456:2 5458:1 5460:2 5462:1 5468:1 5469:1 5497:1 5499:1 5507:2 5509:2 5511:1 5518:1 5520:1 5529:1 5530:2 5583:1 5590:1 5600:1 5604:1 5625:1 5637:1 5644:1 5657:1 5661:1 5672:2 5673:2 5674:1 5679:1 5691:3 5697:2 5713:1 5714:1 5717:2 5718:1 5751:3 5753:3 5756:2 5757:1 5760:1 5762:1 5763:1 5765:4 5767:1 5771:3 5775:1 5778:1 5780:6 5785:1 5806:1 5813:2 5817:1 5837:1 5856:1 5867:1 5874:1 5879:1 5886:1 5893:2 5904:1 5911:2 5912:1 5916:1 5932:14 5944:1 5962:3 5974:1 5982:1 5984:9 5995:1 5996:3 5997:1 6020:1 6026:1 6055:1 6090:1 6092:2 6100:1 6110:1 6111:1 6118:1 6133:1 6153:1 6165:1 6174:1 6208:2 6216:1 6220:1 6232:1 6233:3 6247:1 6262:1 6307:1 6308:1 6311:3 6316:3 6317:2 6321:1 6325:1 6339:3 6349:2 6351:1 6352:2 6354:1 6360:1 6364:1 6367:1 6368:1 6372:1 6398:1 6417:1 6420:6 6425:4 6450:1 6451:1 6452:1 6453:1 6458:1 6473:1 6489:2 6502:6 6508:1 6511:6 6517:7 6519:1 6520:2 6534:1 6541:4 6543:1 6547:1 6559:1 6586:1 6587:1 6588:1 6593:1 6596:1 6607:1 6609:1 6615:2 6635:1 6660:1 6661:2 6662:1 6668:1 6675:17 6677:3 6680:1 6681:1 6682:1 6683:4 6688:1 6694:10 6708:1 6725:3 6736:1 6741:1 6746:2 6747:3 6749:1 6752:6 6756:1 6765:1 6775:1 6801:1 6822:1 6829:1 6837:1 6842:1 6845:10 6866:2 6867:5 6868:3 6873:1 6876:2 6879:1 6880:1 6882:1 6884:1 6885:1 6891:1 6900:1 6902:4 6903:1 6905:4 6931:3 6945:3 6947:1 6953:1 6955:1 6956:2 6957:1 6960:1 6967:1 6970:1 6976:1 6988:1 7000:1 7008:2 7009:1 7010:1 7013:1 7016:1 7024:1 7057:1 7078:1 7079:1 7082:1 7084:1 7112:1 7113:1 7127:2 7129:3 7142:1 7148:6 7156:2 7160:5 7161:1 7170:1 7174:1 7185:4 7192:1 7205:1 7207:1 7225:1 7258:1 7263:1 7266:4 7268:4 7277:1 7278:1 7281:1 7287:3 7295:2 7297:2 7305:1 7309:2 7327:1 7342:1 7357:1 7361:1 7400:2 7402:1 7403:2 7414:2 7425:1 7427:1 7430:1 7441:1 7443:1 7446:1 7447:1 7459:3 7466:5 7474:3 7488:2 7490:3 7497:1 7504:1 7506:2 7512:1 7513:1 7515:1 7516:1 7525:1 7526:5 7527:1 7539:1 7548:1 7571:2 7582:5 7585:1 7589:1 7591:1 7593:1 7595:1 7596:1 7601:2 7610:1 7611:2 7612:1 7615:1 7618:1 7622:4 7623:1 7630:1 7631:1 7633:1 7641:4 7647:1 7652:2 7653:1 7655:1 7664:2 7670:1 7672:1 7678:1 7690:1 7703:6 7707:1 7714:1 7753:1 7767:1 7769:2 7770:1 7771:1 7773:1 7782:4 7783:2 7788:2 7790:2 7794:4 7800:1 7804:1 7825:1 7829:2 7849:1 7852:1 7854:1 7872:1 7882:1 7886:1 7895:1 7898:8 7921:1 7930:1 7941:1 7951:3 7968:1 7975:1 7976:1 7977:2 7983:1 7989:2 8016:1 8024:1 8032:1 8033:1 8055:2 8080:2 8084:1 8091:2 8095:3 8125:2 8137:1 8148:1 8156:1 8162:1 8176:1 8190:2 8195:1 8210:2 8246:2 8254:1 8260:1 8278:1 8282:2 8290:2 8300:1 8305:1 8311:2 8328:1 8332:1 8334:3 8364:3 8373:4 8378:4 8379:2 8386:1 8388:1 8398:1 8429:1 8435:1 8458:1 8465:1 8473:1 8479:1 8524:1 8533:1 8541:1 8545:4 8554:2 8556:1 8560:1 8572:1 8579:1 8589:5 8590:4 8608:1 8609:1 8611:1 8617:1 8626:1 8636:1 8642:1 8643:1 8644:3 8650:2 8651:1 8652:1 8657:1 8663:1 8670:2 8691:2 8692:1 8704:1 8711:1 8712:6 8717:2 8718:1 8736:1 8745:7 8774:1 8777:1 8784:4 8794:1 8810:2 8820:8 8824:5 8825:1 8831:5 8832:2 8835:3 8836:1 8837:2 8839:1 8840:1 8843:1 8846:6 8847:12 8848:1 8849:1 8851:4 8853:4 8895:1 8911:2 8918:3 8925:1 8944:1 8950:1 8997:2 9013:1 9020:1 9027:1 9041:9 9046:1 9058:1 9061:1 9062:1 9074:2 9080:1 9082:4 9086:1 9091:1 9118:1 9131:1 9133:1 9138:1 9153:1 9158:6 9176:1 9203:2 9204:1 9207:1 9208:1 9212:2 9213:1 9214:1 9216:1 9234:1 9236:2 9241:2 9245:1 9254:2 9265:2 9302:1 9308:1 9315:1 9318:2 9321:2 9322:1 9333:1 9337:3 9344:1 9346:1 9347:1 9355:2 9372:2 9374:1 9387:1 9392:1 9393:1 9397:1 9402:2 9408:1 9410:1 9423:2 9425:4 9428:1 9439:1 9441:1 9471:1 9478:1 9492:1 9503:1 9508:2 9509:12 9513:1 9514:3 9515:1 9517:2 9518:2 9521:1 9530:2 9535:1 9538:3 9543:4 9544:3 9555:4 9558:4 9563:2 9572:1 9575:1 9578:1 9581:1 9582:1 9585:1 9592:10 9607:4 9609:1 9622:1 9624:1 9628:1 9632:1 9634:4 9646:1 9658:3 9667:1 9669:2 9674:1 9678:1 9687:1 9689:2 9694:2 9695:1 9696:7 9715:4 9718:1 9723:2 9726:1 9731:3 9732:1 9754:1 9755:1 9762:2 9764:1 9780:1 9781:1 9782:6 9822:1 9828:1 9830:3 9841:3 9846:3 9865:1 9867:1 9888:1 9914:1 9916:3 9918:3 9920:1 9925:2 9927:1 9930:1 9937:1 9945:2 9946:2 9956:3 9960:2 9966:1 9967:1 9995:5 9999:2 10010:1 10016:1 10017:1 10029:2 10042:1 10093:2 10116:2 10119:1 10140:1 10150:1 10159:1 10160:2 10161:1 10163:1 10168:1 10174:1 10182:1 10184:1 10196:1 10200:1 10209:1 10214:1 10220:1 10221:1 10223:2 10224:2 10233:4 10236:1 10238:1 10266:2 10269:1 10275:1 10277:1 10278:1 10293:1 10294:1 10299:1 10313:1 10323:2 10328:1 10333:1 10336:1 10341:1 10356:1 10357:1 10363:2 10367:1 10368:1 10376:2 10382:1 10387:1 10392:2 10396:1 10397:3 10399:1 10409:1 10410:9 10425:1 10430:1 10453:1 10465:1 10466:1 10467:1 10470:1 10478:1 10479:1 10490:1 10512:1 10513:1 10517:2 10536:3 10548:1 10559:1 10570:1 10585:1 10593:2 10607:1 10611:1 10613:1 10615:1 10625:2 10648:4 10682:4 10683:1 10695:2 10717:2 10718:5 10729:1 10734:1 10736:1 10737:4 10743:1 10744:8 10751:2 10755:1 10760:2 10772:1 10774:1 10780:1 10782:1 10783:1 10789:1 10790:1 10791:1 10793:1 10796:2 10797:1 10805:1 10812:43 10814:1 10823:1 10833:1 10838:1 10841:3 10843:7 10849:1 10855:3 10866:1 10871:3 10872:1 10886:1 10888:1 10901:1 10903:1 10908:1 10940:3 10941:1 10942:1 10946:2 10981:5 10983:1 10990:1 10998:5 11002:1 11022:1 11033:1 11034:3 11037:1 11038:1 11041:1 11045:1 11057:1 11072:2 11078:1 11082:2 11087:1 11110:1 11112:1 11113:2 11114:1 11118:1 11121:2 11125:6 11131:1 11150:2 11164:1 11170:1 11176:1 11190:1 11195:1 11212:1 11228:2 11229:1 11246:1 11247:4 11248:2 11260:5 11285:1 11297:1 11300:1 11301:2 11321:1 11322:1 11332:1 11337:1 11340:2 11342:2 11347:1 11352:1 11354:1 11357:1 11363:4 11379:4 11382:3 11397:1 11401:4 11403:1 11413:1 11417:1 11423:4 11431:2 11436:13 11452:3 11457:2 11460:1 11466:1 11470:1 11485:1 11487:2 11509:4 11528:1 11530:1 11548:1 11569:2 11584:3 11594:3 11597:6 11618:1 11620:3 11621:1 11625:1 11651:4 11656:1 11658:1 11665:1 11691:2 11709:6 11711:1 11714:1 11722:1 11725:1 11727:2 11728:1 11737:2 11747:1 11752:1 11758:1 11764:1 11771:2 11774:1 11776:5 11779:1 11782:1 11785:5 11786:2 11788:2 11799:9 11833:1 11842:1 11848:1 11849:2 11854:1 11855:2 11871:1 11881:1 11885:1 11888:2 11896:1 11898:1 11913:1 11916:1 11921:1 11926:1 11943:2 11947:1 11949:1 11950:5 11957:1 11966:1 11987:1 11990:3 11995:1 11997:1 12003:1 12004:6 12005:1 12011:3 12014:1 12015:1 12019:1 12021:1 12022:1 12024:3 12025:1 12032:1 12035:2 12038:1 12042:2 12044:1 12046:1 12058:1 12059:1 12063:1 12067:1 12077:1 12089:1 12094:1 12095:1 12102:1 12110:3 12118:1 12128:4 12129:1 12133:1 12136:1 12137:2 12143:1 12168:1 12183:1 12196:11 12205:1 12211:1 12213:1 12214:1 12229:1 12240:1 12257:1 12259:1 12262:1 12290:1 12323:1 12344:1 12345:5 12356:1 12366:1 12373:1 12378:1 12379:1 12382:1 12386:1 12399:1 12401:2 12402:2 12418:10 12423:1 12435:1 12436:1 12444:1 12445:2 12446:1 12450:1 12457:2 12463:2 12466:1 12467:6 12471:1 12473:1 12477:1 12481:1 12484:1 12486:1 12495:5 12501:5 12502:3 12503:2 12505:1 12506:4 12511:2 12512:2 12521:1 12548:2 12554:1 12557:5 12561:2 12572:1 12594:1 12614:1 12625:1 12629:1 12630:1 12631:1 12632:2 12633:1 12643:2 12652:4 12658:1 12664:6 12673:1 12674:1 12678:1 12702:1 12715:3 12716:1 12727:1 12733:1 12739:1 12751:3 12755:1 12757:1 12762:3 12773:1 12776:1 12778:3 12779:1 12781:1 12800:1 12810:3 12821:1 12839:1 12855:1 12856:1 12857:1 12861:2 12866:1 12868:1 12879:4 12907:1 12913:1 12915:1 12920:1 12929:3 12930:1 12932:1 12950:2 12962:1 12973:1 12974:11 12981:4 12984:1 12991:4 13001:1 13002:1 13007:1 13008:1 13012:1 13021:3 13025:1 13028:1 13052:1 13064:3 13068:1 13069:5 13076:2 13090:2 13091:2 13099:1 13105:1 13108:4 13111:1 13118:1 13120:1 13130:2 13151:1 13153:1 13159:1 13163:1 13195:1 13197:3 13198:1 13228:3 13229:1 13254:2 13259:1 13275:1 13276:1 13278:1 13281:1 13288:1 13291:1 13299:5 13305:1 13311:1 13316:1 13322:2 13328:1 13330:1 13336:2 13337:1 13342:1 13343:1 13346:1 13347:1 13348:4 13354:1 13356:1 13359:1 13376:1 13388:1 13405:1 13411:1 13412:8 13413:3 13417:1 13423:2 13425:3 13430:3 13431:3 13433:1 13434:4 13436:5 13437:1 13439:1 13441:10 13449:1 13450:5 13451:5 13453:6 13465:1 13466:1 13472:1 13474:10 13475:4 13493:1 13495:1 13498:4 13502:5 13503:1 13512:3 13532:6 13534:3 13555:1 13585:1 13587:1 13595:1 13598:1 13599:2 13600:10 13606:4 13610:7 13612:2 13630:2 13635:2 13636:8 13637:1 13640:1 13650:3 13654:1 13664:1 13680:1 13684:3 13696:3 13700:1 13702:5 13703:1 13711:3 13721:1 13726:1 13741:2 13747:2 13751:1 13756:12 13789:1 13810:4 13817:1 13821:1 13823:1 13824:6 13844:3 13845:1 13863:1 13875:2 13878:1 13886:1 13889:1 13891:1 13892:1 13898:1 13902:6 13908:6 13911:1 13929:1 13934:1 13937:6 13944:1 13955:1 13957:2 13960:2 13962:1 13974:5 13977:2 13978:1 13992:1 14002:4 14011:1 14013:1 14051:1 14055:2 14073:1 14079:1 14084:3 14088:1 14096:3 14098:1 14100:6 14133:6 14134:1 14148:9 14152:1 14181:13 14192:1 14236:2 14257:2 14262:1 14271:1 14274:1 14286:2 14289:3 14293:5 14296:7 14298:1 14299:1 14304:1 14325:1 14330:1 14339:1 14349:1 14356:1 14364:1 14366:2 14371:1 14381:3 14383:1 14396:1 14402:1 14411:2 14420:2 14422:1 14436:2 14447:1 14449:1 14452:3 14471:1 14474:3 14478:1 14484:3 14515:3 14519:11 14525:7 14527:1 14540:1 14553:1 14555:5 14559:2 14574:2 14581:2 14583:8 14590:5 14592:1 14594:6 14601:2 14608:2 14609:4 14610:4 14637:1 14644:1 14663:2 14672:1 14681:5 14692:2 14694:3 14707:1 14708:1 14715:1 14718:4 14757:1 14765:2 14770:2 14781:1 14798:1 14814:1 14823:2 14826:5 14828:1 14829:1 14830:1 14831:1 14845:2 14854:1 14861:1 14867:1 14868:1 14870:2 14873:1 14884:6 14887:1 14897:1 14900:2 14903:1 14909:4 14920:1 14935:1 14942:1 14962:1 14965:6 14968:5 14979:2 14980:4 14994:1 15004:1 15005:2 15008:1 15009:3 15010:1 15015:1 15019:2 15021:1 15030:1 15036:1 15040:1 15050:1 15051:1 15054:1 15068:1 15076:1 15085:6 15089:9 15113:4 15117:2 15122:2 15125:1 15131:1 15134:2 15143:1 15146:1 15153:1 15170:1 15177:1 15183:1 15188:1 15195:3 15206:4 15211:1 15235:1 15241:1 15243:1 15258:2 15274:2 15282:1 15283:1 15290:6 15302:1 15324:1 15363:2 15367:1 15396:1 15405:1 15421:1 15445:2 15480:1 15486:1 15491:1 15497:2 15498:1 15502:1 15503:3 15523:1 15546:2 15547:1 15568:5 15576:2 15585:1 15593:1 15613:2 15618:6 15628:1 15629:1 15633:1 15637:4 15658:1 15666:11 15675:2 15693:2 15695:1 15696:5 15698:2 15704:1 15708:1 15712:2 15713:2 15715:1 15724:3 15727:1 15728:1 15731:1 15740:1 15745:1 15747:2 15752:7 15756:1 15764:1 15771:1 15772:1 15773:2 15778:1 15789:3 15799:1 15820:1 15829:1 15836:1 15854:2 15863:1 15864:2 15867:1 15872:1 15881:1 15896:1 15905:1 15911:1 15926:1 15934:1 15937:1 15959:5 15962:1 15966:1 15972:1 15974:1 15976:1 15978:35 15986:2 15990:2 15996:3 16001:1 16006:6 16008:1 16016:4 16017:1 16021:1 16022:2 16029:1 16030:1 16062:1 16072:1 16077:2 16106:1 16110:2 16122:1 16127:1 16130:1 16139:1 16156:1 16160:2 16175:1 16179:1 16183:4 16187:2 16202:1 16206:1 16217:2 16221:6 16235:2 16243:1 16247:1 16263:1 16264:1 16271:1 16278:1 16279:1 16287:1 16288:1 16338:3 16343:3 16344:1 16345:1 16346:1 16356:1 16358:1 16362:1 16366:5 16380:1 16386:1 16388:1 16389:3 16394:1 16400:1 16411:1 16418:1 16421:1 16431:1 16434:3 16482:1 16487:1 16501:1 16515:3 16532:1 16540:2 16545:1 16558:1 16571:2 16579:2 16582:9 16584:1 16594:2 16595:2 16597:2 16604:1 16616:1 16623:1 16630:1 16633:3 16655:1 16666:5 16675:1 16679:2 16691:2 16694:1 16696:1 16716:6 16717:1 16726:1 16732:1 16739:1 16740:1 16760:1 16806:1 16812:4 16817:1 16822:13 16830:1 16834:1 16869:1 16879:3 16883:1 16884:1 16893:1 16894:1 16902:5 16905:1 16918:1 16932:1 16937:2 16942:1 16945:1 16946:1 16964:1 16967:2 16980:1 17001:1 17005:1 17010:1 17014:2 17019:1 17027:1 17039:1 17040:1 17042:3 17059:1 17067:2 17072:4 17094:1 17104:2 17106:4 17108:1 17124:1 17125:1 17128:2 17140:1 17146:1 17161:1 17171:1 17189:1 17191:1 17192:1 17193:1 17202:1 17207:5 17213:1 17216:1 17222:1 17237:1 17239:2 17242:1 17251:6 17252:1 17255:1 17263:1 17270:4 17301:1 17306:5 17324:7 17342:2 17353:1 17362:1 17370:1 17380:1 17388:1 17389:2 17394:1 17408:28 17423:3 17434:1 17436:4 17437:5 17438:1 17440:2 17443:1 17444:2 17474:4 17475:1 17482:1 17486:2 17492:1 17493:3 17495:7 17504:1 17507:1 17508:1 17510:1 17512:1 17516:1 17517:1 17519:1 17524:1 17531:1 17532:1 17544:1 17552:2 17572:1 17573:1 17576:1 17583:3 17586:1 17590:1 17613:1 17615:4 17629:1 17631:2 17643:1 17644:1 17645:1 17672:1 17680:1 17684:2 17687:4 17690:1 17692:1 17696:1 17709:1 17723:1 17753:1 17779:1 17780:1 17783:1 17787:1 17790:1 17802:5 17810:1 17815:1 17817:1 17820:1 17822:1 17825:3 17846:1 17863:2 17873:1 17877:1 17878:3 17886:1 17889:1 17890:1 17891:6 17894:1 17912:10 17920:1 17926:1 17933:2 17934:3 17960:1 17961:1 17968:1 17973:1 17989:1 17990:2 17992:1 18000:1 18009:1 18017:2 18022:1 18033:2 18039:1 18048:1 18058:1 18068:11 18075:4 18084:1 18086:1 18098:4 18100:3 18101:1 18108:1 18123:1 18131:1 18132:1 18143:2 18144:1 18147:1 18148:1 18168:1 18176:3 18193:1 18198:3 18201:1 18210:1 18211:1 18213:1 18221:4 18230:3 18233:2 18246:1 18249:5 18253:1 18255:1 18261:2 18263:1 18265:4 18266:1 18269:2 18271:1 18282:1 18289:3 18310:1 18318:1 18319:1 18325:3 18326:2 18330:1 18343:1 18344:2 18355:4 18366:1 18367:1 18373:1 18380:2 18387:3 18389:6 18392:22 18393:1 18398:2 18399:1 18403:1 18412:2 18419:1 18428:2 18442:4 18458:1 18465:1 18473:4 18498:2 18509:1 18516:1 18529:1 18557:2 18563:3 18569:3 18584:1 18585:1 18589:1 18612:2 18613:4 18614:1 18631:1 18636:2 18641:2 18643:6 18657:3 18686:2 18690:5 18693:1 18699:1 18713:4 18722:5 18735:6 18747:1 18751:7 18753:4 18760:2 18764:1 18766:1 18767:1 18788:1 18792:1 18799:1 18801:4 18811:4 18819:2 18834:3 18836:1 18838:1 18850:5 18852:1 18860:1 18863:1 18865:1 18869:1 18870:2 18874:1 18877:1 18899:2 18907:4 18914:1 18932:1 18934:2 18935:1 18937:1 18941:1 18945:1 18947:1 18953:3 18956:1 18958:2 18960:2 18964:1 18966:1 18978:1 19001:6 19005:1 19007:1 19015:1 19020:12 19021:2 19031:4 19032:1 19035:2 19036:1 19050:2 19057:2 19098:1 19116:1 19130:6 19132:1 19137:1 19140:2 19147:1 19156:1 19165:4 19171:2 19174:1 19177:7 19189:1 19208:1 19278:2 19280:1 19301:1 19311:2 19312:1 19331:1 19336:1 19350:1 19352:1 19358:3 19360:4 19365:3 19367:1 19369:1 19386:1 19389:1 19398:1 19399:1 19411:1 19412:1 19433:1 19455:1 19458:2 19465:3 19470:3 19499:1 19510:1 19518:3 19522:1 19526:2 19528:1 19537:1 19545:1 19549:1 19559:1 19600:4 19604:1 19606:1 19607:1 19615:1 19618:2 19619:1 19627:1 19642:1 19643:3 19644:1 19659:2 19660:1 19661:1 19664:1 19672:1 19673:1 19674:5 19684:1 19687:1 19691:1 19692:1 19698:1 19699:1 19718:1 19722:2 19740:3 19748:1 19762:1 19767:1 19769:1 19791:1 19812:1 19818:2 19823:2 19824:6 19825:1 19831:1 19844:1 19852:1 19856:1 19869:1 19870:1 19873:1 19878:1 19888:2 19905:1 19916:1 19918:1 19919:1 19925:1 19930:1 19932:1 19934:1 19944:2 19957:1 19996:2 20003:1 20033:1 20044:1 20052:1 20058:1 20059:5 20060:6 20076:1 20079:1 20081:1 20082:4 20083:1 20096:1 20097:1 20105:1 20117:1 20118:3 20124:1 20126:4 20150:1 20158:1 20159:1 20177:5 20178:2 20181:1 20185:4 20191:3 20193:1 20207:3 20210:1 20212:1 20215:6 20247:2 20255:5 20263:2 20270:2 20271:1 20273:1 20276:1 20290:1 20311:1 20330:1 20342:1 20350:1 20386:1 20388:2
14 5:1 8:1 20:1 21:2 49:1 58:1 69:1 72:1 73:1 88:7 113:1 115:2 116:2 118:1 119:1 131:1 133:1 134:1 140:4 143:1 148:2 162:1 166:1 183:2 191:1 206:1 208:1 216:1 226:1 238:1 272:1 274:2 277:2 282:1 284:1 289:2 307:1 311:1 344:1 364:6 366:8 371:1 374:1 376:3 388:1 392:1 400:1 403:1 406:3 417:1 420:1 421:1 423:1 430:1 433:1 440:1 441:2 442:1 448:1 453:1 456:1 467:6 470:1 475:1 477:1 484:1 492:1 493:8 495:2 496:1 502:1 509:1 513:1 528:2 531:1 547:1 548:6 558:1 559:3 569:1 576:2 584:2 590:1 592:1 609:1 611:1 624:1 633:2 667:4 669:1 675:1 678:1 697:2 700:1 703:5 706:3 717:2 730:1 754:1 791:1 800:9 801:3 802:3 805:5 841:1 866:1 868:1 874:1 877:1 884:2 885:2 897:1 919:2 932:1 936:1 939:6 950:1 955:1 956:1 984:3 1000:1 1014:2 1015:1 1016:1 1018:2 1025:1 1028:5 1031:2 1037:1 1039:2 1046:2 1059:1 1060:1 1079:2 1081:5 1082:1 1116:2 1128:1 1134:1 1142:1 1146:2 1186:2 1204:1 1237:1 1241:2 1246:3 1247:1 1252:1 1253:1 1256:3 1266:1 1270:1 1273:2 1290:1 1295:1 1310:3 1311:1 1315:1 1324:1 1330:4 1331:9 1332:1 1333:1 1334:2 1342:1 1355:1 1366:1 1371:1 1380:4 1382:1 1388:1 1392:1 1416:1 1419:5 1428:1 1432:5 1438:1 1442:2 1445:2 1449:1 1467:3 1468:3 1487:1 1492:2 1499:2 1510:1 1514:1 1517:1 1525:1 1528:1 1535:1 1536:1 1542:1 1545:1 1553:2 1561:1 1562:1 1565:1 1571:1 1578:1 1585:2 1596:1 1601:1 1603:1 1609:2 1617:1 1620:1 1634:1 1637:1 1640:1 1647:13 1653:2 1654:1 1658:1 1668:1 1674:1 1675:1 1692:2 1721:1 1745:1 1758:3 1773:2 1777:2 1786:1 1789:1 1796:1 1797:2 1818:2 1822:1 1827:1 1828:1 1830:1 1834:1 1836:1 1839:3 1840:1 1843:3 1845:2 1846:2 1847:2 1849:1 1854:1 1858:6 1860:1 1865:1 1867:1 1875:3 1880:1 1884:1 1895:1 1911:1 1912:3 1921:1 1934:1 1941:1 1942:1 1943:1 1945:3 1946:1 1961:1 1969:1 1980:2 2003:2 2004:4 2016:2 2021:1 2040:1 2071:1 2084:1 2089:1 2100:5 2117:2 2128:1 2143:2 2146:2 2149:6 2157:4 2182:1 2183:1 2186:1 2189:1 2197:1 2198:2 2201:1 2203:1 2205:1 2230:1 2235:4 2251:4 2253:3 2266:1 2271:1 2280:3 2282:2 2289:2 2296:1 2298:3 2299:1 2313:5 2315:2 2327:5 2329:1 2349:1 2355:1 2358:6 2360:1 2369:1 2378:1 2379:4 2384:1 2385:2 2399:1 2406:1 2407:2 2416:1 2418:1 2423:1 2424:1 2443:1 2455:3 2456:1 2481:1 2484:1 2504:6 2509:1 2524:5 2533:7 2536:1 2540:2 2545:1 2556:1 2559:1 2560:2 2563:12 2570:2 2571:1 2572:2 2598:6 2600:5 2625:1 2630:2 2632:4 2642:1 2656:2 2657:1 2658:3 2659:1 2661:1 2663:2 2664:1 2665:1 2666:1 2669:1 2671:2 2684:1 2696:2 2697:2 2701:1 2713:1 2716:1 2726:1 2737:3 2747:1 2749:1 2751:2 2761:1 2768:1 2778:1 2781:1 2782:5 2787:1 2788:1 2789:2 2812:1 2814:1 2816:1 2817:5 2822:1 2824:1 2831:9 2851:2 2856:1 2858:1 2861:1 2887:3 2903:4 2905:4 2912:1 2917:1 2923:3 2927:4 2930:2 2931:1 2933:2 2935:1 2937:1 2943:1 2961:3 2971:1 2980:3 2982:2 2983:2 2989:1 2992:1 2998:2 3001:3 3007:1 3021:1 3026:3 3028:6 3036:1 3039:1 3043:1 3044:1 3046:2 3047:2 3048:2 3049:1 3053:1 3063:2 3068:1 3069:2 3070:1 3071:3 3081:1 3082:2 3083:1 3093:1 3094:1 3110:4 3112:1 3114:2 3116:7 3118:2 3122:1 3123:5 3125:2 3126:1 3129:1 3133:3 3135:1 3136:2 3142:6 3144:2 3146:2 3149:3 3151:1 3156:1 3168:3 3169:1 3199:1 3202:3 3210:2 3212:1 3215:1 3222:1 3226:1 3231:1 3250:2 3266:1 3267:1 3270:2 3272:1 3281:7 3294:1 3295:1 3306:2 3316:2 3321:1 3327:1 3328:1 3329:2 3352:1 3357:3 3358:2 3378:2 3389:1 3390:1 3396:1 3400:1 3420:1 3431:2 3435:1 3446:1 3456:2 3458:1 3474:1 3489:1 3493:2 3501:2 3507:1 3510:2 3512:1 3518:2 3521:1 3536:1 3558:1 3560:9 3562:3 3568:4 3578:1 3581:9 3583:2 3585:1 3587:2 3588:2 3599:1 3607:1 3609:1 3629:1 3631:3 3633:1 3638:2 3642:2 3655:1 3671:2 3692:2 3706:9 3707:3 3726:10 3731:1 3732:2 3733:2 3738:1 3751:1 3753:2 3763:1 3766:1 3771:1 3775:1 3777:7 3780:1 3788:1 3811:4 3819:3 3820:1 3830:1 3834:1 3836:1 3837:1 3841:1 3857:1 3871:2 3872:1 3873:2 3879:1 3880:1 3886:3 3892:1 3901:1 3902:1 3905:4 3910:1 3919:1 3920:6 3927:1 3936:1 3948:1 3966:4 3972:2 3975:1 3989:1 3991:1 3994:1 3997:1 3998:1 3999:1 4002:1 4013:2 4019:3 4026:3 4031:1 4033:7 4037:3 4054:1 4058:2 4059:3 4067:1 4071:36 4072:2 4073:1 4078:1 4079:1 4080:1 4091:2 4096:1 4098:1 4111:1 4114:5 4128:1 4129:1 4131:10 4140:2 4144:1 4145:9 4152:4 4160:2 4162:1 4168:1 4169:8 4175:1 4194:1 4195:4 4196:3 4197:1 4203:1 4210:5 4211:1 4213:1 4225:5 4234:2 4249:2 4251:1 4253:1 4257:1 4266:1 4270:2 4277:1 4294:4 4301:1 4305:2 4307:1 4309:1 4324:5 4331:1 4343:1 4348:5 4349:3 4366:1 4378:1 4387:1 4412:2 4420:2 4427:3 4436:2 4441:1 4471:2 4473:1 4476:1 4483:1 4486:1 4500:1 4502:1 4506:1 4510:1 4544:3 4549:2 4553:9 4556:2 4561:2 4568:2 4574:1 4605:1 4611:1 4622:2 4627:2 4628:3 4635:1 4638:2 4641:2 4646:1 4647:1 4649:1 4652:1 4658:2 4667:1 4676:2 4683:1 4686:10 4692:10 4699:6 4708:1 4733:2 4734:1 4751:1 4754:1 4759:1 4762:3 4766:1 4771:3 4772:1 4778:2 4779:1 4794:1 4795:5 4822:1 4827:1 4831:1 4834:9 4837:2 4843:1 4847:1 4851:12 4869:2 4885:1 4900:2 4910:1 4914:2 4937:1 4940:2 4959:1 4960:1 4982:5 4989:3 5001:1 5006:4 5016:1 5018:1 5019:1 5023:3 5024:1 5025:1 5039:1 5040:1 5052:1 5057:1 5058:6 5067:37 5074:1 5081:1 5082:2 5083:4 5097:1 5101:1 5107:1 5112:1 5131:1 5132:1 5135:1 5153:2 5156:1 5157:1 5185:1 5193:1 5200:1 5202:1 5203:13 5206:2 5212:1 5227:1 5228:1 5231:2 5236:2 5241:4 5247:1 5256:6 5264:1 5266:4 5271:5 5288:1 5291:1 5309:1 5313:2 5314:1 5321:1 5345:1 5347:2 5355:1 5362:1 5364:1 5365:4 5366:2 5372:1 5375:1 5382:1 5383:1 5387:1 5394:3 5402:1 5406:2 5408:1 5413:1 5416:1 5424:1 5433:1 5434:1 5437:2099 5443:2 5456:3 5458:1 5460:2 5462:1 5468:1 5469:1 5497:1 5499:1 5507:2 5509:2 5511:1 5518:1 5520:1 5522:1 5529:1 5530:2 5583:1 5590:1 5600:1 5604:1 5625:1 5637:1 5644:1 5657:1 5661:1 5672:2 5673:2 5674:1 5679:1 5691:3 5697:2 5713:1 5714:1 5717:2 5718:1 5751:3 5753:3 5756:2 5757:1 5760:1 5761:1 5762:1 5763:1 5765:4 5767:1 5771:3 5775:1 5778:1 5780:6 5785:1 5806:2 5813:2 5817:1 5837:1 5856:1 5867:1 5874:1 5879:1 5886:1 5893:2 5904:1 5911:2 5912:1 5916:1 5932:14 5944:1 5962:3 5974:1 5982:1 5984:9 5995:1 5996:3 5997:1 6020:1 6026:1 6055:1 6090:1 6092:2 6100:1 6110:1 6111:1 6118:1 6133:1 6153:1 6165:1 6174:1 6208:2 6216:1 6220:1 6232:1 6233:3 6247:1 6262:1 6307:1 6308:1 6311:4 6316:3 6317:2 6321:1 6325:1 6339:3 6349:2 6351:1 6352:2 6354:1 6360:1 6364:1 6367:2 6368:1 6372:1 6398:1 6417:1 6420:6 6425:4 6450:1 6451:1 6452:1 6453:1 6458:1 6473:1 6489:2 6502:6 6508:1 6511:6 6517:7 6519:1 6520:2 6534:1 6541:4 6543:1 6547:1 6559:1 6586:1 6587:1 6588:1 6593:1 6596:1 6607:1 6609:1 6615:2 6635:1 6660:1 6661:2 6662:1 6668:1 6675:18 6677:3 6680:1 6681:1 6682:1 6683:4 6688:1 6694:10 6708:1 6725:3 6736:1 6741:1 6746:2 6747:3 6749:1 6752:6 6756:1 6765:1 6775:1 6801:1 6822:1 6829:2 6837:2 6842:1 6845:10 6866:2 6867:5 6868:3 6873:1 6876:2 6879:1 6880:1 6882:1 6884:1 6885:1 6891:1 6900:1 6902:4 6903:2 6905:4 6931:3 6945:3 6947:1 6952:2 6953:1 6955:1 6956:2 6957:1 6960:1 6967:1 6970:1 6976:1 6988:1 7000:1 7008:2 7009:1 7010:1 7013:1 7016:1 7024:1 7057:1 7078:1 7079:1 7082:1 7084:1 7112:1 7113:1 7127:2 7129:3 7142:1 7148:6 7156:2 7160:5 7161:1 7170:1 7174:1 7185:4 7192:2 7205:1 7207:1 7225:1 7258:1 7263:1 7266:6 7268:4 7277:1 7278:1 7281:1 7287:3 7295:2 7297:2 7305:1 7309:2 7327:1 7342:1 7353:1 7357:2 7359:1 7361:1 7400:2 7402:1 7403:3 7414:2 7425:1 7427:1 7430:1 7441:1 7443:1 7446:1 7447:1 7459:3 7466:5 7474:3 7488:2 7490:3 7497:1 7504:1 7506:2 7512:1 7513:1 7515:1 7516:1 7525:1 7526:5 7527:1 7539:1 7548:1 7571:2 7582:5 7585:1 7589:1 7591:1 7593:1 7595:1 7596:1 7601:2 7610:1 7611:2 7612:1 7615:1 7618:1 7622:5 7623:1 7630:1 7631:1 7633:1 7641:4 7647:1 7652:2 7653:1 7655:1 7664:2 7670:1 7672:1 7678:1 7690:1 7703:6 7707:1 7714:1 7753:1 7767:1 7769:2 7770:1 7771:1 7773:1 7782:4 7783:2 7788:2 7790:2 7794:4 7800:1 7804:1 7825:1 7829:2 7849:1 7852:2 7854:1 7872:1 7882:1 7886:1 7895:1 7898:9 7921:1 7930:1 7941:1 7951:3 7968:1 7975:1 7976:1 7977:2 7983:1 7989:2 8016:1 8024:1 8032:1 8033:1 8055:2 8080:2 8084:1 8091:2 8095:3 8125:2 8134:1 8137:2 8148:1 8156:1 8162:1 8176:1 8190:2 8195:1 8210:2 8246:2 8254:1 8260:1 8278:1 8282:2 8290:2 8300:1 8305:1 8311:2 8328:1 8332:1 8334:3 8364:3 8373:4 8378:4 8379:2 8386:1 8388:1 8398:1 8429:1 8435:1 8458:1 8465:1 8473:1 8479:1 8524:1 8533:1 8541:1 8545:4 8554:2 8556:1 8560:1 8572:1 8579:1 8589:5 8590:4 8608:1 8609:1 8611:1 8617:1 8624:1 8626:1 8636:1 8642:1 8643:1 8644:3 8650:2 8651:1 8652:1 8657:1 8663:1 8670:2 8691:2 8692:1 8704:1 8711:1 8712:6 8717:2 8718:1 8736:1 8745:7 8774:1 8777:1 8784:4 8794:1 8810:2 8820:9 8824:5 8825:1 8831:5 8832:2 8835:3 8836:1 8837:2 8839:1 8840:1 8843:1 8846:6 8847:13 8848:1 8849:1 8851:4 8853:4 8895:1 8911:4 8918:3 8919:1 8925:1 8944:1 8950:1 8997:2 9013:1 9020:1 9027:1 9041:10 9046:1 9058:1 9061:1 9062:1 9074:2 9080:1 9082:4 9086:1 9091:2 9117:1 9118:1 9131:1 9133:1 9138:1 9153:1 9158:6 9176:1 9203:2 9204:1 9207:1 9208:1 9212:2 9213:1 9214:1 9216:1 9234:1 9236:2 9241:2 9245:1 9254:2 9265:2 9302:1 9308:1 9315:1 9318:2 9321:2 9322:1 9333:1 9337:3 9344:1 9346:1 9347:1 9355:2 9372:2 9374:1 9387:1 9392:1 9393:1 9397:1 9402:2 9408:1 9410:1 9423:2 9425:4 9428:1 9439:1 9441:1 9471:1 9478:1 9492:1 9503:1 9508:2 9509:12 9513:1 9514:3 9515:1 9517:2 9518:3 9521:1 9530:2 9535:1 9538:3 9543:4 9544:3 9555:4 9558:4 9563:2 9572:1 9575:1 9578:1 9581:1 9582:1 9585:2 9592:10 9607:4 9609:1 9622:2 9624:1 9628:1 9632:1 9634:4 9646:1 9658:3 9667:1 9669:2 9674:1 9678:1 9687:1 9689:2 9694:2 9695:1 9696:8 9715:4 9718:1 9723:2 9726:1 9731:3 9732:1 9754:2 9755:1 9762:2 9764:1 9780:1 9781:1 9782:6 9822:1 9828:1 9830:3 9841:3 9846:3 9865:1 9867:1 9888:1 9914:1 9916:3 9918:3 9920:1 9925:2 9927:1 9930:1 9937:1 9945:2 9946:2 9956:3 9960:2 9966:1 9967:1 9995:6 9999:2 10010:1 10016:1 10017:1 10029:2 10042:1 10093:2 10116:2 10119:1 10140:1 10150:1 10159:1 10160:2 10161:1 10163:1 10168:1 10174:1 10182:1 10184:1 10196:1 10200:1 10206:1 10209:1 10214:1 10220:1 10221:1 10223:2 10224:2 10233:4 10236:2 10238:1 10266:3 10269:2 10275:1 10277:1 10278:1 10293:1 10294:1 10299:1 10313:1 10323:2 10328:1 10333:1 10336:1 10341:1 10356:1 10357:2 10363:2 10367:1 10368:1 10376:2 10382:1 10387:1 10392:2 10396:1 10397:3 10399:1 10409:1 10410:9 10425:1 10430:1 10453:1 10465:1 10466:1 10467:1 10470:1 10478:1 10479:1 10481:1 10490:1 10512:1 10513:1 10517:2 10536:3 10537:1 10548:1 10559:1 10570:1 10585:1 10593:2 10607:1 10611:1 10613:1 10615:1 10625:2 10648:4 10682:4 10683:1 10695:2 10717:2 10718:6 10729:1 10734:1 10736:1 10737:4 10743:1 10744:8 10751:2 10755:1 10760:2 10772:1 10774:1 10780:1 10782:1 10783:1 10789:1 10790:1 10791:1 10793:1 10796:2 10797:1 10805:1 10812:46 10814:1 10823:1 10833:1 10838:1 10841:3 10843:7 10849:1 10855:3 10866:1 10871:3 10872:1 10886:1 10888:1 10901:1 10903:1 10908:1 10914:1 10940:3 10941:1 10942:1 10946:2 10962:1 10981:5 10983:1 10990:1 10998:5 11002:1 11022:1 11033:1 11034:3 11037:1 11038:1 11041:1 11045:1 11057:1 11072:2 11078:1 11082:2 11087:1 11110:1 11112:1 11113:2 11114:1 11118:1 11121:2 11125:6 11131:1 11150:2 11164:1 11170:1 11176:1 11190:1 11195:1 11212:1 11228:2 11229:1 11246:1 11247:4 11248:2 11260:5 11285:1 11297:1 11300:1 11301:2 11321:1 11322:1 11329:1 11332:1 11337:1 11340:2 11342:2 11347:1 11352:1 11354:1 11357:1 11363:5 11379:4 11382:3 11397:1 11401:4 11403:2 11413:1 11417:1 11423:4 11431:2 11436:15 11452:3 11457:2 11460:1 11466:1 11470:1 11485:1 11487:2 11509:4 11516:1 11528:1 11530:1 11548:1 11569:2 11582:1 11584:3 11594:3 11597:6 11618:1 11620:3 11621:1 11625:1 11651:4 11656:1 11658:1 11665:1 11668:1 11691:2 11709:6 11711:1 11714:1 11722:1 11725:1 11727:3 11728:1 11737:2 11745:1 11747:1 11752:1 11758:1 11764:1 11771:2 11774:1 11776:5 11779:1 11782:1 11785:5 11786:2 11788:2 11799:9 11833:1 11842:1 11848:1 11849:2 11854:1 11855:2 11857:1 11871:1 11881:1 11885:1 11888:2 11896:1 11898:1 11913:1 11916:1 11921:1 11926:1 11943:3 11947:1 11949:1 11950:5 11957:1 11966:1 11987:1 11990:3 11995:1 11997:1 12003:1 12004:6 12005:1 12011:3 12014:1 12015:1 12019:1 12021:1 12022:1 12024:3 12025:2 12032:1 12035:2 12038:1 12042:2 12044:1 12046:1 12058:1 12059:1 12063:1 12067:1 12077:1 12089:1 12094:1 12095:2 12102:1 12110:3 12118:1 12128:4 12129:1 12133:1 12136:1 12137:2 12143:1 12168:1 12183:1 12196:12 12205:1 12211:1 12213:1 12214:1 12229:1 12240:1 12241:1 12257:1 12259:1 12262:1 12290:1 12323:1 12344:1 12345:5 12353:1 12356:1 12366:1 12373:1 12378:1 12379:1 12382:1 12386:1 12399:1 12401:2 12402:2 12418:10 12423:1 12435:1 12436:1 12444:1 12445:2 12446:1 12450:1 12457:3 12463:2 12466:1 12467:6 12471:1 12473:1 12477:1 12481:1 12484:1 12486:1 12495:5 12501:5 12502:3 12503:2 12505:1 12506:5 12511:2 12512:2 12521:1 12548:2 12554:1 12557:5 12561:2 12572:1 12594:1 12614:1 12625:1 12629:1 12630:1 12631:1 12632:2 12633:1 12643:2 12652:4 12658:1 12664:7 12673:1 12674:1 12678:1 12702:1 12715:3 12716:1 12727:1 12733:1 12735:1 12739:1 12751:3 12755:1 12757:2 12762:3 12773:1 12776:1 12778:3 12779:1 12781:1 12800:1 12810:3 12821:1 12839:1 12855:1 12856:1 12857:1 12861:2 12866:1 12868:1 12879:4 12907:1 12913:1 12915:1 12920:1 12929:3 12930:1 12932:1 12950:2 12962:1 12973:1 12974:12 12981:5 12984:1 12991:4 13001:1 13002:1 13007:1 13008:1 13012:1 13021:3 13025:1 13028:1 13051:1 13052:1 13064:3 13068:1 13069:5 13076:2 13090:2 13091:2 13099:1 13105:1 13108:4 13111:1 13118:1 13120:1 13130:2 13140:1 13151:1 13153:1 13159:1 13163:1 13195:1 13197:3 13198:1 13228:3 13229:1 13254:2 13259:1 13275:1 13276:1 13278:1 13281:1 13288:1 13291:1 13299:5 13305:1 13311:1 13316:1 13322:2 13328:1 13330:1 13331:1 13336:2 13337:1 13342:1 13343:1 13346:1 13347:1 13348:4 13354:1 13356:1 13359:1 13376:1 13388:1 13405:1 13411:1 13412:8 13413:3 13417:1 13423:2 13425:4 13430:3 13431:3 13433:1 13434:4 13436:5 13437:1 13439:1 13441:10 13449:1 13450:5 13451:5 13453:7 13465:1 13466:1 13472:1 13474:10 13475:5 13493:1 13495:1 13498:4 13502:5 13503:1 13512:3 13532:6 13534:3 13555:1 13585:1 13587:1 13595:1 13598:1 13599:2 13600:10 13606:4 13610:7 13612:2 13630:3 13635:2 13636:9 13637:1 13640:1 13650:3 13654:1 13664:2 13680:1 13684:3 13696:3 13700:1 13702:5 13703:1 13711:3 13721:2 13726:1 13741:2 13747:2 13751:1 13756:13 13789:1 13801:1 13810:4 13817:1 13821:1 13823:1 13824:6 13844:3 13845:1 13863:1 13875:2 13878:1 13886:1 13889:1 13891:1 13892:1 13898:1 13902:6 13904:2 13908:6 13911:1 13929:1 13934:1 13937:7 13944:1 13955:1 13957:2 13960:2 13962:1 13974:5 13977:2 13978:1 13992:1 14002:4 14011:1 14013:1 14051:1 14055:2 14073:1 14079:1 14084:3 14088:1 14096:3 14098:1 14100:7 14133:6 14134:1 14148:9 14150:1 14152:1 14181:13 14192:1 14236:2 14257:2 14262:1 14271:1 14274:1 14275:1 14286:2 14289:3 14293:5 14296:7 14298:1 14299:1 14304:1 14325:1 14330:1 14339:1 14349:1 14356:1 14364:1 14366:2 14371:1 14381:3 14383:1 14396:1 14401:1 14402:1 14411:2 14420:2 14422:1 14436:2 14447:1 14449:1 14452:3 14471:1 14474:3 14478:1 14484:3 14485:1 14515:3 14519:11 14525:7 14527:1 14540:1 14553:1 14555:5 14559:2 14574:2 14581:2 14583:8 14590:5 14592:1 14594:6 14601:2 14608:2 14609:4 14610:4 14637:1 14644:1 14663:2 14672:1 14681:5 14692:2 14694:3 14707:2 14708:1 14715:1 14718:5 14757:1 14765:2 14770:2 14781:1 14798:1 14814:2 14823:2 14826:5 14828:1 14829:1 14830:1 14831:1 14845:2 14854:1 14861:1 14867:1 14868:1 14870:2 14873:1 14884:6 14887:1 14897:1 14900:2 14903:1 14909:4 14920:1 14935:1 14942:1 14962:1 14965:7 14968:5 14979:2 14980:4 14994:1 15004:1 15005:2 15008:1 15009:3 15010:1 15015:1 15019:2 15021:1 15030:1 15036:1 15040:1 15050:1 15051:1 15054:1 15068:1 15076:1 15085:6 15089:9 15113:4 15117:2 15122:2 15125:1 15131:1 15134:2 15143:1 15146:1 15153:1 15170:1 15177:1 15183:1 15188:1 15195:3 15206:4 15211:1 15235:1 15241:1 15243:1 15248:1 15258:4 15274:2 15282:1 15283:1 15290:7 15302:1 15324:1 15363:2 15367:1 15396:1 15405:1 15421:1 15445:2 15480:1 15486:1 15491:1 15497:2 15498:1 15502:1 15503:3 15523:1 15528:1 15546:2 15547:1 15568:5 15576:2 15585:1 15593:1 15613:2 15618:6 15628:1 15629:1 15633:1 15637:4 15658:1 15665:1 15666:12 15675:2 15693:2 15695:1 15696:5 15698:2 15704:1 15708:1 15712:2 15713:3 15715:1 15724:3 15727:1 15728:1 15731:1 15740:1 15745:1 15747:2 15752:7 15756:1 15764:1 15771:1 15772:1 15773:2 15778:1 15789:3 15790:1 15799:1 15820:2 15829:1 15836:1 15854:2 15863:1 15864:2 15867:1 15872:1 15881:1 15896:1 15905:1 15911:1 15926:1 15930:1 15934:1 15937:2 15959:5 15962:1 15966:1 15972:1 15974:1 15976:1 15978:37 15986:2 15990:2 15996:3 16001:2 16006:6 16008:1 16016:4 16017:1 16021:1 16022:2 16029:1 16030:1 16062:1 16072:1 16077:2 16106:1 16110:2 16122:1 16127:1 16130:1 16139:1 16156:1 16160:2 16175:1 16179:1 16183:5 16187:2 16202:1 16206:1 16217:2 16221:6 16235:2 16243:1 16247:1 16263:1 16264:1 16271:1 16278:1 16279:1 16287:1 16288:1 16338:3 16343:3 16344:1 16345:1 16346:1 16356:1 16358:1 16362:1 16366:5 16380:1 16386:1 16388:2 16389:4 16394:1 16400:1 16410:1 16411:1 16418:1 16421:1 16431:1 16434:3 16482:1 16487:1 16501:1 16515:3 16532:1 16540:2 16545:1 16558:1 16571:2 16579:2 16582:9 16584:1 16594:2 16595:2 16597:2 16604:1 16616:1 16623:1 16630:1 16633:3 16640:1 16655:1 16666:5 16675:1 16679:2 16691:2 16694:1 16696:1 16716:6 16717:1 16726:1 16732:1 16739:1 16740:1 16760:2 16806:1 16812:4 16817:1 16822:14 16830:1 16834:1 16838:1 16869:1 16879:3 16883:1 16884:1 16893:1 16894:1 16902:5 16905:1 16918:1 16932:1 16937:2 16942:1 16945:1 16946:1 16964:1 16967:2 16980:1 17001:1 17005:1 17010:1 17014:3 17019:1 17026:1 17027:1 17039:1 17040:1 17042:3 17059:1 17067:2 17072:4 17094:2 17104:3 17106:4 17108:1 17118:1 17124:1 17125:1 17128:2 17140:1 17146:1 17161:1 17171:1 17178:1 17189:1 17191:1 17192:1 17193:1 17202:1 17207:5 17213:1 17216:1 17222:1 17237:1 17239:2 17242:1 17251:6 17252:1 17255:1 17263:1 17270:4 17301:1 17306:5 17324:7 17342:2 17353:1 17362:1 17370:1 17380:1 17388:1 17389:2 17394:1 17408:29 17423:3 17434:1 17436:4 17437:5 17438:1 17440:2 17443:1 17444:2 17474:4 17475:1 17482:1 17486:2 17489:1 17492:1 17493:3 17495:7 17504:1 17507:1 17508:1 17510:1 17512:1 17516:1 17517:1 17519:1 17524:1 17531:2 17532:2 17544:1 17552:2 17572:1 17573:1 17576:1 17583:3 17586:1 17590:1 17613:1 17615:4 17629:1 17631:2 17643:1 17644:1 17645:2 17672:1 17680:1 17684:2 17687:6 17690:1 17692:1 17696:1 17709:1 17723:1 17753:1 17779:1 17780:1 17783:1 17787:1 17790:1 17802:5 17810:1 17815:1 17817:1 17820:1 17822:1 17825:3 17846:1 17863:2 17873:1 17877:1 17878:3 17886:1 17889:1 17890:1 17891:7 17894:1 17912:10 17920:1 17926:1 17933:2 17934:3 17960:1 17961:1 17968:1 17973:1 17989:1 17990:2 17992:1 18000:1 18009:1 18017:2 18022:1 18033:2 18039:1 18048:1 18058:1 18068:11 18075:4 18084:1 18086:1 18098:4 18100:4 18101:1 18108:1 18123:1 18131:1 18132:1 18143:2 18144:1 18147:1 18148:1 18168:1 18176:3 18193:1 18198:3 18201:1 18210:1 18211:1 18213:1 18221:5 18230:3 18233:2 18246:2 18247:1 18249:5 18253:1 18255:1 18261:2 18263:1 18265:4 18266:1 18269:3 18271:1 18282:1 18289:3 18310:1 18318:1 18319:1 18325:3 18326:2 18330:1 18343:1 18344:2 18355:4 18366:1 18367:1 18373:1 18380:2 18387:5 18389:7 18392:23 18393:2 18398:2 18399:1 18403:1 18412:2 18419:1 18428:2 18442:4 18458:1 18465:1 18473:4 18498:2 18509:1 18516:1 18529:1 18557:2 18563:3 18569:3 18584:1 18585:1 18589:1 18612:2 18613:4 18614:1 18631:1 18636:2 18641:3 18643:6 18657:3 18686:2 18690:6 18693:1 18699:1 18713:4 18722:5 18735:6 18747:1 18751:7 18753:4 18760:2 18764:1 18766:1 18767:1 18788:1 18792:1 18799:1 18801:4 18811:4 18819:2 18834:3 18836:1 18838:1 18850:5 18852:1 18860:1 18863:1 18865:1 18869:1 18870:2 18874:1 18877:1 18899:4 18907:4 18914:1 18932:1 18934:2 18935:1 18937:1 18941:1 18945:1 18947:1 18953:3 18956:2 18958:3 18960:2 18964:1 18966:1 18978:1 19001:6 19005:1 19007:1 19015:1 19020:13 19021:2 19031:4 19032:1 19035:2 19036:1 19050:2 19057:2 19085:1 19098:1 19116:1 19130:6 19132:1 19137:1 19140:2 19147:1 19156:1 19165:5 19171:2 19174:1 19177:8 19189:1 19208:1 19214:1 19278:2 19280:1 19301:1 19311:2 19312:1 19331:1 19336:1 19350:1 19352:1 19358:4 19360:4 19365:4 19367:1 19369:1 19386:1 19389:1 19390:1 19398:1 19399:1 19411:1 19412:1 19433:1 19455:1 19458:2 19465:3 19470:3 19499:1 19510:1 19518:3 19522:1 19526:2 19528:1 19537:1 19545:1 19549:1 19559:1 19600:4 19604:1 19606:1 19607:1 19615:1 19618:2 19619:1 19627:1 19642:1 19643:3 19644:1 19659:2 19660:2 19661:1 19664:1 19672:1 19673:1 19674:5 19684:1 19687:1 19691:1 19692:1 19698:1 19699:1 19718:1 19721:1 19722:2 19740:3 19748:1 19762:1 19767:1 19769:1 19791:1 19812:1 19818:2 19823:2 19824:7 19825:1 19831:1 19844:1 19852:1 19856:1 19869:1 19870:1 19873:1 19878:1 19888:2 19905:1 19916:1 19918:1 19919:1 19925:1 19930:1 19932:1 19934:1 19944:2 19957:1 19996:3 20003:1 20033:1 20044:1 20052:1 20058:1 20059:5 20060:6 20076:1 20079:1 20081:1 20082:5 20083:1 20096:1 20097:1 20105:1 20117:1 20118:3 20124:1 20126:4 20150:1 20158:1 20159:1 20175:1 20177:5 20178:2 20181:1 20185:4 20191:3 20193:1 20207:3 20210:1 20212:1 20215:7 20247:2 20255:5 20263:2 20270:2 20271:1 20273:1 20276:1 20290:1 20311:1 20330:1 20342:1 20350:1 20386:1 20388:2
14 5:1 8:1 20:1 21:2 49:1 58:1 69:1 72:1 73:1 88:7 113:1 115:2 116:2 118:1 119:1 131:1 133:1 134:1 140:5 143:1 148:2 162:1 166:1 183:2 191:1 206:1 208:1 216:1 226:1 238:1 272:1 274:2 277:2 282:1 284:1 289:2 307:1 308:1 311:1 344:1 364:6 366:8 371:1 374:1 376:3 388:1 392:1 400:1 403:1 406:3 417:1 420:1 421:1 423:1 430:1 433:1 440:1 441:2 442:1 448:1 453:1 456:1 467:6 470:1 475:1 477:1 484:1 492:1 493:8 495:2 496:1 502:1 509:1 513:1 528:2 531:1 547:1 548:6 558:1 559:3 569:1 576:3 584:2 590:1 592:1 609:1 611:1 624:2 633:2 667:4 669:1 675:1 678:1 697:2 700:2 703:5 706:3 717:2 730:1 754:1 791:1 800:9 801:3 802:3 805:5 828:1 841:1 866:1 868:1 874:1 877:1 884:2 885:2 897:1 919:2 932:1 936:1 939:6 950:1 955:2 956:1 984:3 1000:1 1014:2 1015:1 1016:1 1018:2 1025:1 1028:5 1031:2 1037:1 1039:2 1046:2 1059:1 1060:1 1079:2 1081:5 1082:1 1116:2 1128:1 1134:1 1142:1 1146:2 1186:2 1196:1 1204:1 1237:1 1241:2 1246:3 1247:1 1252:1 1253:1 1256:3 1266:1 1270:1 1273:2 1290:1 1295:1 1310:3 1311:2 1313:1 1315:2 1324:1 1330:5 1331:10 1332:1 1333:1 1334:2 1342:1 1355:1 1366:1 1371:1 1380:4 1382:1 1388:1 1392:1 1416:1 1419:5 1428:1 1432:5 1438:1 1442:2 1445:2 1449:1 1467:3 1468:3 1477:1 1487:1 1492:2 1499:2 1510:1 1514:1 1517:1 1525:1 1528:1 1535:1 1536:1 1542:1 1545:1 1553:2 1561:1 1562:1 1565:1 1571:1 1578:1 1585:2 1596:1 1601:1 1603:1 1609:2 1617:1 1620:1 1634:1 1637:1 1640:1 1647:13 1653:3 1654:1 1658:1 1668:1 1672:1 1674:2 1675:1 1692:2 1721:1 1745:1 1758:4 1773:2 1777:2 1786:1 1789:1 1796:1 1797:2 1818:2 1822:1 1827:1 1828:1 1830:1 1834:1 1836:1 1839:3 1840:1 1843:3 1845:2 1846:2 1847:2 1849:1 1852:1 1854:1 1858:6 1860:1 1865:1 1867:1 1875:3 1880:1 1884:1 1895:1 1911:1 1912:3 1921:1 1934:1 1941:1 1942:1 1943:1 1945:3 1946:1 1961:1 1969:1 1980:2 2003:2 2004:4 2016:2 2021:1 2040:1 2071:1 2084:1 2089:1 2100:5 2117:2 2128:1 2143:2 2146:2 2149:6 2157:4 2182:1 2183:1 2186:1 2189:1 2197:1 2198:2 2201:1 2203:1 2205:1 2230:1 2235:4 2251:4 2253:3 2266:1 2271:1 2280:3 2282:2 2289:2 2296:1 2298:3 2299:1 2313:5 2315:2 2327:5 2329:1 2349:1 2355:1 2358:6 2360:1 2369:1 2378:1 2379:4 2384:1 2385:2 2399:1 2406:1 2407:2 2416:1 2418:1 2423:1 2424:1 2443:1 2455:3 2456:1 2481:1 2484:1 2504:6 2509:1 2524:5 2533:7 2536:1 2540:3 2545:1 2556:1 2559:1 2560:2 2563:12 2570:2 2571:1 2572:2 2598:6 2600:5 2625:1 2630:2 2632:4 2642:1 2656:2 2657:1 2658:3 2659:1 2661:1 2663:2 2664:1 2665:1 2666:1 2669:1 2671:2 2684:1 2696:2 2697:2 2701:1 2713:1 2715:1 2716:1 2726:1 2737:3 2747:1 2749:1 2751:2 2761:1 2768:1 2778:1 2781:1 2782:5 2787:1 2788:1 2789:2 2812:1 2814:1 2816:1 2817:5 2822:1 2824:1 2831:9 2851:2 2856:1 2858:1 2861:1 2887:3 2903:4 2905:4 2912:1 2917:1 2923:3 2927:4 2930:2 2931:1 2933:2 2935:1 2937:1 2943:1 2951:1 2961:3 2971:1 2980:3 2982:3 2983:2 2989:1 2992:1 2998:2 3001:4 3007:1 3021:1 3026:3 3028:6 3036:1 3039:2 3043:1 3044:1 3046:2 3047:2 3048:2 3049:1 3053:1 3063:2 3068:1 3069:2 3070:1 3071:3 3081:1 3082:2 3083:1 3093:2 3094:1 3110:4 3112:1 3114:2 3116:7 3118:3 3122:1 3123:5 3125:2 3126:1 3129:1 3133:3 3135:1 3136:3 3142:6 3144:2 3146:2 3149:4 3151:1 3156:1 3168:3 3169:1 3199:1 3202:3 3210:2 3212:1 3215:1 3222:1 3226:1 3231:1 3250:2 3266:1 3267:1 3270:2 3272:1 3281:7 3283:1 3294:1 3295:1 3306:2 3316:2 3321:1 3327:1 3328:1 3329:2 3352:1 3357:3 3358:2 3378:2 3389:1 3390:1 3396:1 3400:1 3420:1 3431:2 3435:1 3446:1 3456:2 3458:1 3462:1 3474:1 3489:1 3493:2 3501:2 3507:1 3510:2 3512:1 3518:2 3521:1 3536:1 3558:1 3560:10 3562:3 3568:5 3578:1 3581:10 3583:2 3585:1 3587:2 3588:2 3590:1 3599:1 3607:1 3609:1 3629:1 3631:3 3633:1 3638:2 3642:2 3655:1 3671:2 3679:1 3692:2 3706:9 3707:3 3726:11 3731:1 3732:2 3733:2 3736:1 3738:1 3751:1 3753:2 3763:1 3766:1 3771:1 3775:1 3777:7 3780:1 3788:1 3811:4 3819:3 3820:1 3830:1 3834:1 3836:1 3837:1 3841:1 3857:1 3871:2 3872:1 3873:2 3879:1 3880:1 3886:3 3892:1 3901:2 3902:1 3905:4 3910:1 3919:1 3920:6 3927:1 3936:1 3948:1 3966:4 3972:2 3975:2 3989:1 3991:1 3994:1 3997:1 3998:1 3999:1 4002:1 4013:2 4019:3 4026:3 4031:1 4033:7 4037:4 4054:1 4058:2 4059:3 4067:1 4071:37 4072:2 4073:1 4078:1 4079:1 4080:1 4091:2 4096:1 4098:1 4111:1 4114:5 4128:1 4129:1 4131:10 4140:2 4144:1 4145:10 4152:4 4160:2 4162:1 4168:1 4169:8 4175:1 4194:1 4195:4 4196:3 4197:1 4203:1 4210:5 4211:1 4213:1 4225:5 4234:2 4249:2 4251:1 4253:1 4257:1 4266:1 4270:2 4277:1 4294:4 4301:1 4305:2 4307:1 4309:1 4324:5 4331:1 4343:2 4348:5 4349:3 4366:1 4378:1 4387:1 4412:2 4420:2 4427:3 4436:2 4441:1 4471:2 4473:1 4476:1 4483:1 4486:1 4500:1 4502:1 4506:1 4510:1 4544:3 4549:2 4553:9 4556:2 4561:2 4568:2 4574:1 4605:1 4611:1 4622:2 4627:2 4628:3 4635:1 4638:2 4641:2 4646:1 4647:1 4649:1 4652:1 4658:2 4667:1 4676:2 4683:1 4686:10 4692:11 4699:7 4708:1 4710:1 4733:2 4734:1 4751:1 4754:2 4759:1 4762:3 4766:1 4771:3 4772:1 4778:2 4779:2 4794:1 4795:5 4822:1 4827:1 4831:1 4834:10 4837:2 4843:1 4847:1 4851:12 4869:2 4885:1 4900:2 4910:1 4914:2 4937:1 4940:2 4959:1 4960:1 4982:5 4989:4 5001:1 5006:5 5016:1 5018:1 5019:1 5023:3 5024:1 5025:1 5039:1 5040:1 5052:1 5057:1 5058:6 5067:39 5074:1 5081:1 5082:2 5083:4 5097:1 5101:1 5107:1 5112:1 5131:1 5132:1 5135:1 5153:2 5156:1 5157:1 5185:1 5193:1 5200:1 5202:1 5203:13 5206:2 5212:1 5227:1 5228:1 5231:2 5236:2 5241:4 5247:1 5256:6 5264:1 5266:4 5271:5 5288:1 5291:1 5309:1 5313:2 5314:1 5321:1 5345:1 5347:2 5355:1 5362:1 5364:1 5365:5 5366:2 5372:1 5375:1 5382:1 5383:1 5387:1 5394:3 5402:1 5406:2 5408:1 5413:1 5416:1 5424:1 5433:1 5434:1 5437:2161 5443:2 5456:3 5458:1 5460:2 5462:1 5468:1 5469:1 5497:1 5499:1 5507:2 5509:2 5511:1 5518:1 5520:1 5522:1 5529:1 5530:2 5582:1 5583:1 5590:1 5600:1 5604:1 5625:1 5637:1 5644:1 5657:1 5661:1 5672:2 5673:2 5674:1 5679:1 5691:3 5697:2 5713:1 5714:1 5717:2 5718:1 5751:3 5753:3 5756:2 5757:1 5760:1 5761:1 5762:1 5763:1 5765:4 5767:1 5771:4 5775:1 5778:1 5780:6 5785:1 5806:2 5813:2 5817:1 5837:2 5856:1 5867:1 5874:1 5879:1 5886:1 5893:2 5904:1 5911:2 5912:1 5916:1 5932:15 5944:1 5962:3 5974:1 5982:1 5984:9 5995:1 5996:3 5997:1 6007:1 6020:1 6026:2 6055:1 6059:1 6090:1 6092:2 6100:1 6110:1 6111:1 6118:1 6133:1 6153:1 6165:1 6174:1 6208:2 6216:1 6220:1 6232:1 6233:3 6247:1 6262:1 6307:1 6308:1 6311:4 6316:3 6317:2 6321:1 6325:1 6339:4 6349:2 6351:2 6352:2 6354:1 6360:1 6364:1 6367:2 6368:1 6372:1 6398:1 6417:1 6420:6 6425:4 6450:1 6451:1 6452:1 6453:1 6458:1 6473:1 6489:2 6502:6 6508:1 6511:6 6517:7 6519:1 6520:2 6534:1 6541:4 6543:1 6547:1 6559:1 6586:1 6587:1 6588:1 6593:1 6596:1 6607:1 6609:1 6615:2 6635:1 6660:1 6661:2 6662:1 6668:1 6675:19 6677:3 6680:1 6681:1 6682:1 6683:4 6688:1 6694:10 6699:1 6708:1 6725:3 6736:1 6741:1 6746:2 6747:4 6749:1 6752:6 6756:1 6765:1 6775:1 6780:1 6801:1 6822:1 6829:2 6837:2 6842:1 6845:11 6866:3 6867:5 6868:3 6873:1 6876:2 6879:1 6880:1 6882:1 6884:1 6885:1 6891:1 6900:1 6902:4 6903:2 6905:4 6931:3 6945:3 6947:1 6952:2 6953:1 6955:1 6956:2 6957:1 6960:1 6967:1 6970:2 6976:1 6988:1 7000:1 7008:2 7009:1 7010:1 7013:1 7016:1 7024:1 7057:1 7078:1 7079:1 7082:2 7084:1 7112:1 7113:1 7127:2 7129:3 7136:1 7142:1 7148:6 7156:2 7159:1 7160:5 7161:1 7170:1 7174:1 7185:4 7192:2 7205:1 7207:1 7225:1 7258:1 7263:1 7266:6 7268:4 7277:1 7278:1 7281:1 7287:3 7295:2 7297:2 7305:2 7309:2 7327:1 7340:1 7342:1 7353:1 7357:2 7359:1 7361:1 7400:2 7402:1 7403:3 7414:2 7425:1 7427:1 7430:1 7441:1 7443:1 7446:1 7447:1 7459:3 7466:5 7474:3 7488:2 7490:3 7497:1 7504:1 7506:2 7512:1 7513:1 7515:1 7516:1 7525:1 7526:5 7527:1 7539:1 7548:1 7571:2 7582:5 7585:1 7589:1 7591:1 7593:1 7595:1 7596:1 7601:2 7610:1 7611:2 7612:1 7615:1 7618:1 7622:6 7623:1 7630:1 7631:1 7633:1 7641:4 7647:1 7652:2 7653:1 7655:1 7664:2 7670:1 7672:1 7678:1 7690:1 7703:6 7707:1 7714:1 7753:1 7767:1 7769:2 7770:1 7771:1 7773:1 7782:4 7783:2 7788:2 7790:2 7794:4 7800:1 7804:1 7825:1 7829:3 7849:1 7852:2 7854:1 7872:1 7882:1 7886:1 7891:1 7895:1 7898:9 7921:1 7930:1 7941:1 7951:3 7968:1 7975:1 7976:1 7977:2 7983:1 7989:2 8016:1 8024:1 8032:1 8033:1 8055:2 8080:2 8084:1 8091:2 8095:3 8110:1 8125:2 8134:1 8137:2 8148:1 8156:1 8162:1 8176:1 8190:2 8195:1 8210:2 8246:2 8254:1 8260:1 8278:1 8282:2 8290:2 8300:1 8305:1 8311:2 8328:1 8332:1 8334:3 8364:3 8373:4 8378:4 8379:2 8386:1 8388:1 8398:2 8429:1 8435:1 8458:1 8459:1 8465:1 8473:1 8479:1 8524:1 8533:1 8541:1 8545:5 8554:2 8556:1 8560:2 8572:1 8579:1 8589:5 8590:5 8608:1 8609:1 8611:1 8617:1 8624:1 8626:1 8636:1 8642:1 8643:1 8644:3 8650:2 8651:1 8652:1 8657:1 8663:1 8670:2 8691:2 8692:1 8704:1 8711:1 8712:6 8717:2 8718:1 8736:1 8745:8 8774:1 8777:1 8784:4 8794:1 8810:2 8820:9 8824:5 8825:1 8831:5 8832:2 8835:3 8836:1 8837:2 8839:1 8840:1 8843:1 8846:6 8847:13 8848:1 8849:1 8851:5 8853:4 8895:1 8911:4 8918:3 8919:1 8925:1 8944:1 8950:1 8997:2 9013:1 9020:1 9027:1 9041:10 9046:1 9058:1 9061:1 9062:1 9074:2 9080:1 9082:4 9086:1 9091:2 9117:1 9118:1 9122:1 9131:1 9133:1 9138:1 9153:1 9158:6 9176:2 9203:2 9204:1 9207:1 9208:1 9212:2 9213:1 9214:1 9216:1 9234:1 9236:2 9241:2 9245:1 9254:2 9265:2 9302:1 9308:1 9315:1 9318:2 9321:2 9322:1 9333:1 9337:4 9344:1 9346:1 9347:1 9355:2 9372:2 9374:1 9387:1 9392:1 9393:1 9397:1 9402:2 9408:1 9410:1 9423:2 9425:4 9428:1 9439:1 9441:1 9471:1 9478:1 9492:1 9500:1 9503:1 9508:2 9509:12 9513:1 9514:3 9515:1 9517:2 9518:3 9521:1 9530:2 9535:1 9538:3 9543:4 9544:3 9555:4 9558:4 9563:2 9572:1 9575:1 9578:1 9581:1 9582:1 9585:2 9592:10 9607:5 9609:1 9622:2 9624:1 9628:1 9632:1 9634:4 9646:1 9658:3 9667:1 9669:2 9674:1 9678:1 9687:1 9689:2 9694:2 9695:1 9696:8 9715:4 9718:1 9723:2 9726:1 9731:3 9732:1 9754:2 9755:1 9762:2 9764:1 9780:1 9781:1 9782:6 9810:1 9822:1 9828:1 9830:3 9841:3 9846:3 9865:1 9867:1 9888:1 9914:1 9916:3 9918:3 9920:1 9925:2 9927:1 9930:1 9937:1 9939:1 9945:2 9946:2 9956:4 9960:2 9966:1 9967:1 9995:6 9999:2 10010:1 10016:1 10017:1 10029:2 10042:1 10093:2 10116:2 10119:1 10140:1 10150:1 10159:1 10160:2 10161:1 10163:1 10168:1 10174:1 10182:1 10184:1 10196:1 10200:1 10206:1 10209:1 10214:1 10220:2 10221:1 10223:3 10224:2 10233:4 10236:2 10238:1 10266:3 10269:2 10275:1 10277:1 10278:1 10293:1 10294:1 10296:1 10299:1 10313:1 10323:2 10328:1 10333:1 10336:1 10341:1 10356:1 10357:2 10363:2 10367:1 10368:1 10376:2 10382:1 10387:2 10392:2 10396:1 10397:3 10399:1 10409:1 10410:9 10425:1 10430:1 10453:1 10465:1 10466:1 10467:1 10470:1 10478:1 10479:1 10481:1 10490:1 10512:1 10513:1 10517:2 10536:3 10537:1 10548:1 10559:1 10570:1 10585:1 10593:2 10607:1 10611:1 10613:1 10615:1 10625:2 10648:4 10679:1 10682:4 10683:1 10695:3 10717:2 10718:7 10729:1 10734:1 10736:1 10737:4 10743:1 10744:8 10751:2 10755:1 10760:2 10772:1 10774:1 10780:1 10782:1 10783:1 10789:1 10790:1 10791:1 10793:1 10796:2 10797:1 10805:1 10812:48 10814:1 10823:1 10825:1 10833:1 10838:1 10841:3 10843:7 10849:1 10855:4 10866:1 10871:3 10872:1 10886:2 10888:1 10901:1 10903:1 10908:1 10914:1 10940:4 10941:1 10942:1 10946:2 10962:1 10981:6 10983:1 10990:1 10998:6 11002:1 11022:1 11033:1 11034:3 11037:1 11038:1 11041:1 11045:1 11057:1 11072:2 11078:1 11082:2 11087:1 11110:1 11112:2 11113:2 11114:1 11118:1 11121:2 11125:6 11131:1 11150:3 11164:1 11170:1 11176:1 11190:1 11195:1 11212:1 11228:2 11229:1 11232:1 11246:1 11247:4 11248:2 11260:5 11285:1 11297:2 11300:1 11301:2 11321:1 11322:1 11329:1 11332:1 11337:1 11340:2 11342:2 11347:1 11352:1 11354:1 11357:2 11363:5 11379:4 11382:3 11397:1 11401:4 11403:2 11413:1 11417:1 11423:4 11431:2 11436:16 11452:3 11457:2 11460:1 11466:1 11470:1 11485:1 11487:2 11509:4 11516:1 11528:1 11530:1 11548:1 11569:2 11582:1 11584:3 11594:3 11597:6 11618:1 11620:3 11621:1 11625:1 11651:4 11656:1 11658:1 11665:1 11668:1 11691:2 11709:6 11711:1 11714:1 11722:1 11725:1 11727:3 11728:1 11729:1 11737:2 11745:1 11747:1 11752:1 11758:1 11764:1 11771:2 11774:1 11776:5 11779:1 11782:1 11785:5 11786:2 11788:2 11799:9 11833:1 11842:1 11848:1 11849:2 11854:1 11855:2 11857:1 11871:1 11881:1 11885:1 11888:2 11896:1 11898:1 11913:1 11916:1 11921:1 11926:1 11943:3 11947:1 11949:1 11950:5 11957:1 11966:1 11987:1 11990:3 11995:1 11997:1 12003:2 12004:6 12005:1 12011:3 12014:1 12015:1 12019:1 12021:1 12022:1 12024:3 12025:2 12032:1 12035:2 12038:1 12042:2 12044:1 12046:1 12058:1 12059:1 12063:1 12067:1 12077:1 12089:1 12094:1 12095:2 12102:1 12110:3 12118:1 12128:4 12129:1 12133:1 12136:1 12137:2 12143:1 12168:1 12183:1 12186:1 12196:12 12205:1 12211:1 12213:1 12214:1 12229:1 12240:1 12241:1 12257:1 12259:1 12262:1 12290:1 12323:1 12344:1 12345:5 12353:1 12356:1 12366:1 12373:1 12377:1 12378:1 12379:1 12382:1 12386:1 12399:1 12401:2 12402:2 12418:10 12423:1 12435:2 12436:1 12444:1 12445:2 12446:1 12450:1 12457:3 12463:2 12466:1 12467:6 12471:1 12473:1 12477:1 12481:1 12484:1 12486:1 12495:5 12501:5 12502:3 12503:2 12505:1 12506:6 12511:2 12512:2 12521:1 12548:2 12554:1 12557:5 12561:2 12572:1 12594:1 12614:1 12625:1 12629:1 12630:1 12631:1 12632:2 12633:1 12643:2 12652:4 12658:1 12664:7 12673:1 12674:1 12678:1 12702:1 12715:3 12716:1 12727:1 12733:1 12735:1 12739:1 12751:3 12755:1 12757:2 12762:3 12773:1 12776:1 12778:3 12779:1 12781:1 12800:1 12804:1 12810:3 12821:2 12839:1 12855:1 12856:1 12857:1 12861:2 12866:1 12868:1 12879:4 12907:1 12913:1 12915:1 12920:1 12929:3 12930:1 12932:1 12950:2 12962:1 12973:1 12974:12 12981:5 12984:1 12991:4 13001:1 13002:1 13007:1 13008:1 13012:2 13021:3 13025:1 13028:1 13051:1 13052:1 13054:1 13064:3 13068:1 13069:5 13076:2 13090:2 13091:2 13099:1 13105:1 13107:1 13108:4 13111:1 13118:1 13120:1 13130:2 13140:1 13151:1 13153:1 13159:1 13163:1 13195:1 13197:3 13198:1 13228:3 13229:1 13254:2 13259:1 13275:1 13276:1 13278:1 13281:1 13288:1 13291:1 13299:5 13305:1 13311:1 13316:1 13322:2 13328:1 13330:1 13331:1 13336:2 13337:1 13342:1 13343:1 13346:1 13347:1 13348:4 13354:1 13356:1 13359:1 13376:1 13388:1 13405:1 13411:1 13412:8 13413:3 13414:1 13417:1 13423:2 13425:4 13430:3 13431:3 13433:1 13434:4 13436:5 13437:1 13439:1 13441:11 13449:1 13450:6 13451:6 13453:7 13465:1 13466:1 13472:1 13474:11 13475:5 13493:1 13495:1 13498:4 13502:5 13503:1 13512:3 13532:6 13534:3 13555:1 13570:1 13585:1 13587:1 13595:1 13598:1 13599:2 13600:10 13606:4 13610:7 13612:2 13630:3 13635:2 13636:9 13637:1 13640:1 13650:3 13654:1 13664:2 13680:1 13684:3 13696:3 13700:1 13702:5 13703:1 13711:3 13721:2 13726:1 13741:2 13747:2 13751:1 13756:15 13777:1 13789:1 13801:1 13810:4 13817:1 13821:1 13823:1 13824:6 13844:3 13845:1 13863:2 13875:2 13878:1 13880:1 13886:1 13889:1 13891:1 13892:1 13898:1 13902:6 13904:2 13908:6 13911:1 13929:1 13934:1 13937:7 13944:1 13949:1 13955:1 13957:2 13960:2 13962:1 13974:5 13977:2 13978:1 13992:1 14002:4 14011:1 14013:1 14048:1 14051:1 14055:2 14073:1 14079:1 14084:3 14088:1 14096:3 14098:1 14100:7 14133:6 14134:1 14148:9 14150:1 14152:1 14181:13 14192:1 14236:2 14257:2 14262:1 14271:1 14274:1 14275:1 14286:2 14289:3 14293:6 14296:7 14298:1 14299:1 14304:1 14325:1 14330:1 14339:1 14349:1 14356:1 14364:1 14366:2 14371:1 14381:3 14383:1 14396:1 14401:1 14402:1 14411:2 14420:2 14422:1 14436:2 14447:1 14449:1 14452:3 14471:1 14474:3 14478:1 14484:3 14485:1 14515:3 14519:11 14525:8 14527:1 14540:1 14553:1 14555:5 14559:2 14561:1 14574:2 14581:2 14583:8 14590:5 14592:1 14594:6 14601:2 14608:2 14609:4 14610:5 14637:1 14644:1 14663:2 14672:1 14681:6 14692:2 14694:3 14707:3 14708:1 14715:1 14718:6 14757:1 14765:2 14770:2 14781:1 14798:1 14814:2 14823:2 14826:5 14828:1 14829:1 14830:1 14831:1 14841:1 14845:2 14854:1 14860:1 14861:1 14867:1 14868:1 14870:2 14873:1 14884:6 14887:1 14897:1 14900:2 14901:1 14903:1 14909:4 14920:1 14935:1 14942:1 14962:1 14965:7 14968:5 14979:2 14980:4 14994:1 15004:1 15005:2 15008:1 15009:4 15010:1 15015:1 15019:2 15021:1 15030:1 15036:1 15040:1 15050:1 15051:1 15054:1 15068:1 15076:1 15085:6 15089:9 15113:4 15117:2 15122:2 15125:1 15131:1 15134:2 15143:1 15146:1 15153:1 15170:1 15177:1 15183:1 15188:1 15195:3 15206:4 15211:1 15235:1 15241:1 15243:2 15248:1 15253:1 15258:4 15274:2 15282:1 15283:1 15290:7 15302:1 15314:1 15324:1 15363:2 15367:1 15396:1 15405:1 15421:1 15445:2 15480:1 15486:1 15491:1 15497:2 15498:1 15502:1 15503:4 15523:1 15528:1 15546:2 15547:1 15568:6 15576:2 15585:1 15593:1 15613:3 15618:7 15628:1 15629:1 15633:1 15637:4 15658:1 15665:1 15666:12 15675:2 15693:3 15695:1 15696:5 15698:2 15704:1 15708:1 15712:2 15713:3 15715:1 15724:3 15727:1 15728:1 15731:1 15740:1 15745:1 15747:2 15752:7 15756:1 15764:1 15771:1 15772:1 15773:2 15778:1 15789:3 15790:1 15799:1 15820:2 15829:1 15836:1 15840:1 15854:2 15863:1 15864:2 15867:1 15872:1 15881:1 15896:1 15905:1 15911:1 15926:1 15930:1 15934:1 15937:2 15959:6 15962:1 15966:1 15972:1 15974:1 15976:1 15978:39 15986:2 15990:2 15996:3 16001:2 16006:6 16008:1 16016:4 16017:1 16021:2 16022:2 16029:1 16030:1 16037:1 16062:1 16072:1 16077:2 16106:1 16110:2 16122:1 16127:1 16130:1 16139:1 16156:1 16160:2 16175:1 16179:1 16183:5 16187:2 16202:1 16206:1 16217:2 16221:6 16235:2 16243:1 16247:1 16263:1 16264:1 16271:1 16278:1 16279:1 16287:1 16288:1 16338:3 16343:3 16344:1 16345:1 16346:1 16356:1 16358:1 16362:1 16366:5 16380:1 16386:1 16388:2 16389:4 16394:1 16400:1 16410:1 16411:1 16418:1 16421:1 16431:1 16434:3 16482:1 16487:1 16501:1 16515:3 16532:1 16540:2 16545:1 16558:1 16561:1 16571:2 16579:2 16582:10 16584:1 16585:1 16594:2 16595:2 16597:2 16604:1 16616:1 16623:1 16630:1 16633:3 16640:1 16655:1 16666:5 16672:1 16675:1 16679:2 16691:2 16694:1 16696:1 16716:7 16717:1 16726:1 16732:1 16739:1 16740:1 16760:2 16806:1 16812:4 16817:1 16822:16 16830:1 16834:1 16838:1 16869:1 16879:3 16883:1 16884:1 16893:1 16894:1 16902:5 16905:1 16918:1 16932:1 16937:2 16942:1 16945:1 16946:1 16964:1 16967:2 16980:1 17001:1 17005:1 17010:1 17014:3 17019:1 17026:1 17027:1 17039:1 17040:1 17042:3 17059:1 17067:2 17072:5 17094:2 17104:3 17106:4 17108:1 17118:1 17124:1 17125:1 17128:2 17140:1 17146:1 17161:1 17171:1 17177:1 17178:1 17189:1 17191:1 17192:1 17193:1 17202:1 17207:5 17213:1 17216:1 17219:1 17222:1 17237:1 17239:2 17242:1 17251:6 17252:1 17255:1 17263:1 17270:4 17301:1 17306:5 17324:7 17342:2 17353:1 17362:1 17370:1 17380:1 17388:1 17389:2 17394:1 17408:30 17423:3 17434:1 17436:5 17437:5 17438:1 17440:4 17443:1 17444:2 17474:4 17475:1 17482:1 17486:2 17489:1 17492:1 17493:3 17495:7 17504:1 17507:1 17508:1 17510:1 17512:1 17516:1 17517:1 17519:1 17524:1 17531:2 17532:2 17544:1 17546:1 17552:2 17572:1 17573:1 17576:1 17583:3 17586:1 17590:1 17613:1 17615:5 17629:1 17631:2 17643:1 17644:1 17645:2 17672:1 17680:1 17684:2 17687:6 17690:1 17692:1 17696:1 17709:1 17723:1 17753:1 17779:1 17780:1 17783:1 17787:1 17790:1 17802:5 17810:1 17815:1 17817:1 17820:1 17822:1 17825:3 17846:1 17863:2 17873:1 17877:1 17878:3 17886:1 17889:1 17890:1 17891:7 17894:1 17905:1 17912:10 17920:1 17926:1 17933:3 17934:3 17960:1 17961:1 17968:1 17973:1 17989:1 17990:2 17992:1 18000:1 18009:1 18017:2 18019:1 18022:1 18033:2 18039:1 18048:1 18058:1 18068:11 18075:4 18084:1 18086:1 18098:4 18100:4 18101:1 18108:1 18123:1 18131:1 18132:1 18143:2 18144:1 18147:1 18148:1 18168:1 18176:3 18193:1 18198:3 18201:1 18210:1 18211:1 18213:1 18221:5 18230:4 18233:2 18246:2 18247:1 18249:5 18253:1 18255:1 18261:2 18263:1 18265:4 18266:1 18269:3 18271:1 18282:2 18289:3 18310:1 18318:1 18319:1 18325:3 18326:2 18330:1 18343:1 18344:2 18355:4 18366:2 18367:1 18373:1 18380:2 18387:5 18389:7 18392:23 18393:2 18398:2 18399:1 18403:1 18412:2 18419:1 18428:2 18442:4 18458:1 18465:2 18473:4 18498:2 18509:1 18516:1 18529:1 18555:1 18557:2 18563:3 18569:3 18584:1 18585:1 18589:1 18612:2 18613:4 18614:1 18631:1 18636:2 18641:3 18643:6 18657:3 18686:2 18690:7 18693:1 18699:1 18713:5 18720:1 18722:5 18735:6 18747:1 18751:7 18753:4 18760:2 18764:1 18766:1 18767:1 18788:1 18792:1 18799:1 18801:4 18811:4 18819:2 18834:3 18836:1 18838:1 18850:5 18852:1 18860:1 18863:1 18865:1 18869:1 18870:2 18874:1 18877:1 18899:4 18907:4 18914:1 18932:1 18934:2 18935:1 18937:1 18941:1 18945:1 18947:1 18953:3 18956:2 18958:3 18960:2 18964:1 18966:1 18978:1 19001:6 19005:1 19007:1 19015:1 19020:15 19021:2 19031:4 19032:1 19035:2 19036:1 19050:2 19057:2 19085:1 19098:1 19116:1 19130:6 19132:1 19137:1 19140:2 19147:1 19156:1 19165:5 19171:2 19174:1 19177:9 19184:1 19189:1 19208:1 19214:1 19278:2 19280:1 19301:1 19311:2 19312:1 19331:1 19336:1 19350:1 19352:1 19358:4 19360:4 19365:4 19367:1 19369:1 19386:1 19389:1 19390:1 19398:1 19399:1 19411:1 19412:1 19433:1 19455:1 19458:2 19465:3 19470:3 19499:1 19510:1 19518:3 19522:1 19526:2 19528:1 19537:1 19545:1 19549:1 19559:1 19600:4 19604:1 19606:1 19607:1 19615:1 19618:2 19619:1 19627:1 19642:1 19643:3 19644:1 19659:2 19660:2 19661:1 19664:1 19672:1 19673:1 19674:5 19684:1 19687:1 19691:1 19692:1 19698:1 19699:1 19718:1 19721:1 19722:2 19740:3 19748:1 19762:1 19767:1 19769:1 19791:1 19812:1 19818:2 19823:2 19824:7 19825:1 19831:1 19844:1 19852:1 19856:1 19869:1 19870:1 19873:1 19878:1 19888:2 19905:1 19916:2 19918:1 19919:1 19925:1 19930:2 19932:1 19934:1 19944:2 19957:1 19996:3 20003:1 20033:1 20036:1 20044:1 20052:1 20058:1 20059:5 20060:6 20076:1 20079:1 20081:1 20082:5 20083:1 20096:1 20097:1 20105:1 20117:1 20118:3 20124:1 20126:4 20150:1 20158:1 20159:1 20175:1 20177:5 20178:2 20181:1 20185:4 20191:3 20193:1 20207:3 20210:1 20212:2 20215:7 20247:2 20255:5 20263:2 20270:2 20271:1 20273:1 20276:1 20290:1 20311:1 20330:1 20342:1 20350:1 20386:1 20388:2
14 5:1 8:1 20:1 21:2 49:1 58:1 69:1 72:1 73:1 88:7 113:1 115:2 116:2 118:1 119:1 131:1 133:1 134:1 140:5 143:1 148:2 162:1 166:1 183:2 191:1 206:1 208:1 216:1 217:1 226:1 238:1 272:1 274:2 277:2 282:1 284:1 289:2 307:1 308:1 311:1 344:1 356:1 364:7 366:8 371:1 374:1 376:4 388:1 392:1 400:1 403:1 406:3 417:1 420:1 421:1 423:1 430:1 433:1 440:1 441:2 442:1 448:1 453:1 455:1 456:1 467:7 470:1 475:1 477:1 484:1 492:1 493:8 495:2 496:1 502:1 509:1 513:1 528:2 531:1 547:1 548:7 558:1 559:3 569:1 576:3 584:2 590:1 592:1 609:1 611:1 624:2 633:2 667:4 669:1 675:1 678:1 697:2 700:2 703:5 706:3 717:2 730:1 754:1 791:1 800:9 801:3 802:3 805:5 828:1 841:1 866:1 868:1 874:1 877:1 884:2 885:2 897:1 919:2 932:1 936:1 939:6 950:1 955:2 956:1 984:3 1000:1 1014:2 1015:1 1016:1 1018:2 1025:1 1028:5 1031:2 1037:1 1039:2 1046:2 1059:1 1060:1 1079:2 1081:5 1082:1 1116:2 1128:1 1134:1 1142:1 1146:2 1186:2 1196:1 1204:1 1237:1 1241:2 1246:3 1247:1 1252:1 1253:1 1256:3 1262:1 1266:1 1270:1 1273:2 1290:1 1295:1 1310:3 1311:2 1313:1 1315:2 1324:1 1330:5 1331:10 1332:1 1333:1 1334:2 1342:1 1355:1 1366:1 1371:1 1380:4 1382:1 1388:2 1392:1 1416:1 1419:5 1428:1 1432:5 1438:1 1442:3 1445:2 1449:1 1467:3 1468:4 1477:1 1487:1 1492:2 1499:2 1510:1 1514:1 1517:1 1525:1 1528:1 1535:1 1536:1 1542:1 1545:2 1553:2 1561:1 1562:1 1565:1 1571:1 1578:1 1585:2 1596:1 1601:1 1603:1 1609:2 1617:1 1620:1 1634:1 1637:1 1640:1 1644:1 1647:13 1653:3 1654:1 1658:1 1668:1 1672:1 1674:2 1675:1 1692:2 1721:1 1745:1 1758:4 1773:2 1777:2 1786:1 1789:1 1796:1 1797:2 1818:2 1822:1 1827:1 1828:1 1830:1 1834:1 1836:1 1839:3 1840:1 1843:3 1845:2 1846:2 1847:2 1849:1 1852:1 1854:1 1858:6 1860:1 1865:1 1867:1 1875:3 1880:1 1884:1 1895:1 1911:1 1912:3 1915:1 1921:1 1934:1 1941:1 1942:1 1943:1 1945:3 1946:1 1961:1 1969:1 1980:2 1993:1 2003:3 2004:4 2016:2 2021:1 2040:1 2071:1 2084:1 2089:1 2100:5 2117:2 2128:1 2143:2 2146:2 2149:6 2157:4 2182:1 2183:1 2186:1 2189:1 2197:1 2198:2 2201:1 2203:1 2205:1 2230:1 2235:4 2251:4 2253:3 2266:1 2271:1 2280:3 2282:2 2289:2 2296:1 2298:3 2299:1 2313:5 2315:2 2327:5 2329:1 2349:1 2355:1 2358:7 2360:1 2369:1 2378:1 2379:4 2384:1 2385:2 2399:1 2406:1 2407:2 2416:1 2418:1 2423:1 2424:1 2443:1 2455:3 2456:1 2481:1 2484:1 2504:7 2509:1 2524:5 2533:7 2536:1 2540:3 2545:1 2556:1 2559:1 2560:2 2563:12 2570:2 2571:1 2572:2 2598:6 2600:5 2625:1 2630:2 2632:4 2642:1 2656:2 2657:1 2658:3 2659:1 2661:1 2663:2 2664:1 2665:1 2666:1 2669:1 2671:2 2684:1 2696:2 2697:2 2701:1 2713:1 2715:1 2716:1 2726:1 2737:3 2747:1 2749:1 2751:2 2761:1 2768:1 2778:1 2781:1 2782:5 2787:1 2788:1 2789:2 2812:1 2814:1 2816:1 2817:5 2822:1 2824:1 2831:10 2851:2 2856:1 2858:1 2861:1 2887:3 2903:4 2905:5 2912:1 2917:1 2923:4 2927:4 2930:2 2931:1 2933:2 2935:1 2937:1 2943:1 2951:1 2961:3 2971:1 2980:3 2982:3 2983:2 2989:1 2992:1 2998:2 3001:4 3007:1 3021:1 3026:3 3028:7 3036:1 3039:2 3043:1 3044:1 3046:2 3047:2 3048:2 3049:1 3053:1 3063:2 3068:1 3069:2 3070:1 3071:3 3081:1 3082:2 3083:1 3093:2 3094:1 3110:4 3112:1 3114:2 3116:7 3118:3 3122:1 3123:5 3125:2 3126:1 3129:1 3133:3 3135:1 3136:3 3142:6 3144:2 3146:2 3149:4 3151:1 3156:1 3168:4 3169:1 3199:1 3202:3 3210:2 3212:1 3215:1 3222:1 3226:1 3231:1 3250:2 3266:1 3267:1 3270:2 3272:1 3281:8 3283:1 3294:1 3295:1 3306:2 3316:2 3321:1 3327:1 3328:1 3329:2 3345:1 3352:1 3357:3 3358:2 3378:2 3389:1 3390:1 3396:1 3400:1 3420:1 3431:2 3435:1 3446:1 3456:2 3458:1 3462:1 3474:1 3489:1 3493:2 3501:2 3507:1 3510:2 3512:1 3518:2 3521:1 3536:1 3558:1 3560:10 3562:3 3568:5 3578:1 3581:10 3583:2 3585:1 3587:2 3588:2 3590:1 3599:1 3607:1 3609:1 3629:1 3631:3 3633:1 3638:2 3642:2 3655:1 3671:2 3679:1 3692:2 3706:9 3707:3 3726:11 3731:1 3732:2 3733:2 3736:1 3738:1 3751:1 3753:2 3763:1 3766:1 3771:1 3775:1 3777:8 3780:1 3788:1 3811:5 3819:3 3820:1 3830:1 3834:1 3836:1 3837:1 3841:1 3857:1 3871:2 3872:1 3873:2 3879:1 3880:1 3886:3 3892:1 3901:2 3902:1 3905:4 3910:1 3919:1 3920:6 3927:1 3936:1 3948:1 3966:4 3972:2 3975:2 3989:1 3991:1 3994:2 3997:1 3998:1 3999:1 4002:1 4013:2 4019:3 4026:3 4031:1 4033:8 4037:4 4054:1 4058:2 4059:3 4067:1 4071:39 4072:2 4073:1 4078:1 4079:1 4080:1 4091:2 4096:1 4098:1 4111:1 4114:5 4128:1 4129:1 4131:10 4140:2 4144:1 4145:10 4152:4 4160:2 4162:1 4168:1 4169:8 4175:1 4194:1 4195:4 4196:3 4197:1 4203:1 4210:5 4211:1 4213:1 4225:5 4234:2 4249:2 4251:1 4253:1 4257:1 4266:1 4270:2 4277:1 4294:5 4301:1 4305:2 4307:1 4309:1 4324:5 4331:1 4343:2 4348:5 4349:3 4366:1 4378:1 4387:1 4412:2 4420:2 4427:3 4436:2 4441:1 4471:2 4473:1 4476:1 4483:1 4486:1 4500:1 4502:1 4506:1 4510:1 4520:1 4544:3 4549:2 4553:9 4556:2 4561:2 4568:2 4574:1 4605:1 4611:1 4622:2 4627:2 4628:3 4635:1 4636:1 4638:2 4641:2 4646:1 4647:1 4649:1 4652:1 4658:2 4667:1 4676:2 4683:1 4686:10 4692:11 4699:7 4708:1 4710:1 4733:2 4734:1 4751:1 4754:2 4759:1 4762:3 4766:1 4771:3 4772:1 4778:2 4779:2 4794:1 4795:5 4822:1 4827:1 4831:1 4834:10 4837:2 4843:1 4847:1 4851:12 4869:2 4885:1 4900:2 4910:1 4914:2 4937:1 4940:2 4959:1 4960:1 4982:5 4989:4 5001:1 5006:5 5016:1 5018:1 5019:1 5023:4 5024:1 5025:1 5039:1 5040:1 5052:1 5057:1 5058:6 5067:39 5074:1 5081:1 5082:2 5083:4 5097:1 5101:1 5107:1 5112:1 5131:1 5132:1 5135:1 5153:2 5156:1 5157:1 5185:1 5193:1 5200:1 5202:1 5203:13 5206:2 5212:1 5227:1 5228:1 5231:2 5236:2 5241:4 5247:1 5256:6 5264:1 5266:5 5271:5 5288:1 5291:1 5309:1 5313:2 5314:1 5321:1 5345:1 5347:2 5348:1 5355:1 5362:1 5364:1 5365:5 5366:2 5372:1 5375:1 5382:1 5383:2 5387:1 5394:3 5402:1 5406:2 5408:1 5413:1 5416:1 5424:1 5433:1 5434:1 5437:2212 5443:2 5456:3 5458:1 5460:2 5462:1 5468:1 5469:1 5497:1 5499:1 5507:2 5509:2 5511:1 5518:1 5520:1 5522:1 5529:1 5530:2 5582:1 5583:1 5590:1 5600:1 5604:1 5625:1 5637:1 5644:1 5657:1 5661:1 5672:2 5673:2 5674:1 5679:1 5691:3 5697:2 5713:1 5714:1 5717:2 5718:1 5751:3 5753:3 5756:2 5757:1 5760:1 5761:1 5762:1 5763:1 5765:4 5767:1 5771:5 5775:1 5778:1 5780:7 5785:1 5806:2 5813:2 5817:1 5837:2 5856:1 5867:1 5874:1 5879:1 5886:1 5893:2 5904:1 5911:2 5912:1 5916:1 5932:15 5944:1 5962:3 5974:1 5982:1 5984:9 5995:1 5996:3 5997:1 6007:1 6020:1 6026:2 6055:1 6059:1 6090:1 6092:2 6100:1 6110:1 6111:1 6118:1 6133:1 6153:1 6165:1 6174:1 6205:1 6208:2 6216:1 6220:1 6232:1 6233:4 6247:1 6262:1 6307:1 6308:1 6311:4 6316:3 6317:2 6321:1 6325:1 6339:5 6349:2 6351:2 6352:2 6354:1 6360:1 6364:1 6367:2 6368:1 6372:1 6398:1 6417:1 6420:6 6425:4 6450:1 6451:1 6452:1 6453:1 6458:1 6473:1 6489:2 6502:7 6508:1 6511:7 6517:7 6519:2 6520:2 6534:1 6541:5 6542:1 6543:1 6547:1 6559:1 6586:1 6587:1 6588:1 6590:1 6593:1 6596:1 6607:1 6609:1 6615:2 6635:1 6660:1 6661:2 6662:1 6668:1 6675:19 6677:3 6680:1 6681:1 6682:1 6683:4 6688:1 6694:10 6699:1 6708:1 6725:3 6736:1 6741:1 6746:2 6747:4 6749:1 6752:7 6756:1 6765:1 6775:1 6780:1 6801:1 6822:1 6829:2 6837:2 6842:1 6845:11 6866:3 6867:6 6868:3 6873:1 6876:2 6879:1 6880:1 6882:1 6884:1 6885:1 6891:1 6900:1 6902:4 6903:2 6905:4 6931:3 6945:3 6947:1 6952:2 6953:1 6955:1 6956:2 6957:1 6960:1 6967:1 6970:2 6976:1 6988:1 7000:1 7008:2 7009:1 7010:1 7013:1 7016:1 7024:1 7057:1 7078:1 7079:1 7082:2 7084:1 7112:1 7113:1 7127:2 7129:3 7136:1 7142:1 7148:6 7156:2 7159:1 7160:6 7161:1 7170:1 7174:1 7185:4 7192:2 7205:1 7207:1 7225:1 7258:1 7263:1 7266:6 7268:4 7277:1 7278:1 7281:1 7287:3 7295:2 7297:2 7305:2 7309:2 7327:1 7340:1 7342:1 7353:1 7357:2 7359:1 7361:1 7400:2 7402:1 7403:3 7414:2 7425:1 7427:1 7430:1 7441:1 7443:1 7446:1 7447:1 7459:3 7466:5 7474:3 7488:2 7490:3 7497:1 7504:1 7506:2 7512:1 7513:1 7515:1 7516:1 7525:1 7526:5 7527:1 7539:1 7548:1 7571:2 7582:5 7585:1 7589:1 7591:1 7593:1 7595:1 7596:1 7601:2 7610:1 7611:2 7612:1 7615:1 7618:1 7622:6 7623:1 7630:1 7631:1 7633:1 7641:4 7647:1 7652:2 7653:1 7655:1 7664:2 7670:1 7672:1 7678:1 7690:1 7703:6 7707:1 7714:1 7753:1 7767:1 7769:2 7770:1 7771:1 7773:1 7782:4 7783:2 7788:2 7790:2 7794:4 7800:1 7804:1 7825:1 7829:3 7849:1 7852:2 7854:1 7872:1 7882:1 7886:1 7891:1 7895:1 7898:9 7921:1 7930:1 7941:1 7951:3 7968:1 7975:1 7976:1 7977:2 7983:1 7989:2 8016:1 8024:1 8032:1 8033:1 8055:2 8080:2 8084:1 8091:2 8095:3 8110:1 8125:2 8134:1 8137:2 8148:1 8156:1 8162:1 8176:1 8190:2 8195:1 8210:2 8246:2 8254:1 8260:1 8267:1 8278:1 8282:2 8290:2 8300:1 8305:1 8311:2 8328:1 8332:1 8334:3 8346:1 8358:1 8364:3 8373:5 8378:4 8379:2 8386:1 8388:1 8398:2 8429:1 8435:1 8458:1 8459:1 8465:1 8473:1 8479:1 8524:1 8526:1 8533:1 8541:1 8545:6 8554:2 8556:1 8560:2 8572:1 8579:1 8589:5 8590:5 8608:1 8609:1 8611:1 8617:1 8624:1 8626:1 8636:1 8642:1 8643:1 8644:3 8650:2 8651:1 8652:1 8657:1 8663:1 8670:2 8691:2 8692:1 8695:1 8704:1 8711:1 8712:6 8717:2 8718:1 8736:1 8745:8 8774:1 8777:1 8784:5 8794:1 8810:2 8820:9 8824:5 8825:1 8831:5 8832:2 8835:3 8836:1 8837:2 8839:1 8840:1 8843:1 8846:6 8847:13 8848:1 8849:1 8851:5 8853:4 8895:1 8911:4 8918:3 8919:1 8925:1 8944:1 8950:1 8997:2 9013:1 9020:1 9027:1 9041:10 9046:1 9058:1 9061:1 9062:1 9074:2 9080:1 9082:4 9086:1 9091:2 9117:1 9118:1 9122:1 9131:1 9133:1 9138:1 9153:1 9158:7 9176:2 9203:2 9204:1 9207:1 9208:1 9212:2 9213:1 9214:1 9216:1 9234:1 9236:2 9241:2 9245:1 9254:3 9265:2 9302:1 9308:1 9315:1 9318:2 9321:2 9322:1 9333:1 9337:4 9344:1 9346:1 9347:1 9355:2 9372:2 9374:1 9387:1 9392:1 9393:1 9397:1 9402:2 9408:1 9410:1 9423:2 9425:4 9428:1 9433:1 9439:1 9441:1 9471:1 9478:1 9492:1 9500:1 9503:1 9508:2 9509:12 9513:1 9514:3 9515:1 9517:2 9518:3 9521:1 9530:2 9535:1 9538:3 9543:4 9544:3 9555:4 9558:4 9563:2 9572:1 9575:1 9578:1 9581:1 9582:1 9585:2 9592:10 9607:5 9609:1 9613:1 9622:2 9624:1 9628:1 9632:1 9634:4 9646:1 9658:3 9667:1 9669:2 9674:1 9678:1 9687:1 9689:2 9694:2 9695:1 9696:8 9715:4 9718:1 9723:2 9726:1 9731:3 9732:1 9754:2 9755:1 9762:2 9764:1 9780:1 9781:1 9782:7 9810:1 9822:1 9828:1 9830:3 9841:3 9846:3 9865:2 9867:1 9888:1 9914:1 9916:3 9918:4 9920:1 9925:2 9927:1 9930:1 9937:1 9939:1 9945:2 9946:2 9956:4 9960:2 9966:1 9967:1 9995:6 9999:2 10010:1 10016:1 10017:1 10029:2 10042:1 10093:2 10116:2 10119:1 10140:1 10150:1 10159:1 10160:2 10161:1 10163:1 10168:1 10174:1 10182:1 10184:1 10196:1 10200:1 10206:1 10209:1 10214:1 10220:2 10221:1 10223:3 10224:2 10233:4 10236:2 10238:1 10266:3 10269:2 10275:1 10277:1 10278:1 10293:1 10294:1 10296:1 10299:1 10313:1 10323:2 10328:1 10333:1 10336:1 10341:1 10356:1 10357:2 10363:2 10367:1 10368:1 10376:2 10382:1 10387:2 10392:2 10396:1 10397:3 10399:1 10409:1 10410:10 10425:1 10430:1 10448:1 10453:1 10465:1 10466:1 10467:1 10470:1 10478:1 10479:1 10481:1 10490:1 10512:1 10513:1 10517:2 10536:3 10537:1 10548:1 10559:1 10570:1 10585:1 10593:2 10607:1 10611:1 10613:1 10615:1 10625:2 10648:4 10679:1 10682:4 10683:1 10695:3 10717:2 10718:8 10729:1 10734:1 10736:1 10737:4 10743:1 10744:8 10751:2 10755:1 10760:2 10772:1 10774:1 10780:1 10782:1 10783:1 10789:1 10790:1 10791:1 10793:1 10796:2 10797:1 10805:1 10812:48 10814:1 10823:1 10825:1 10833:1 10838:1 10841:3 10843:7 10849:1 10855:4 10866:1 10871:3 10872:1 10886:2 10888:1 10901:1 10903:1 10908:1 10914:1 10940:4 10941:1 10942:1 10946:2 10962:1 10981:7 10983:1 10990:1 10998:7 11002:1 11004:1 11022:1 11033:1 11034:3 11037:1 11038:1 11041:1 11045:1 11057:1 11072:2 11078:1 11082:2 11087:1 11110:1 11112:2 11113:2 11114:1 11118:1 11121:2 11125:6 11131:1 11150:3 11164:1 11170:1 11176:1 11190:1 11195:1 11201:1 11212:1 11228:2 11229:1 11232:1 11246:1 11247:4 11248:2 11260:5 11285:1 11297:2 11300:1 11301:2 11321:1 11322:1 11329:1 11332:1 11337:1 11340:2 11342:2 11347:1 11352:1 11354:1 11357:2 11363:5 11379:4 11382:3 11397:1 11401:5 11403:2 11413:1 11417:1 11423:4 11431:2 11436:16 11452:3 11457:2 11460:1 11466:1 11470:1 11485:1 11487:2 11509:4 11516:1 11528:1 11530:1 11548:1 11569:2 11582:1 11584:3 11594:3 11597:7 11618:1 11620:3 11621:1 11625:1 11651:4 11656:1 11658:1 11665:1 11668:1 11691:2 11709:6 11711:1 11714:1 11722:1 11725:1 11727:3 11728:1 11729:1 11737:2 11745:1 11747:1 11752:1 11758:1 11764:1 11771:2 11774:1 11776:5 11779:1 11782:1 11785:5 11786:2 11788:2 11799:10 11827:1 11833:1 11842:1 11848:1 11849:2 11854:1 11855:2 11857:1 11871:1 11881:1 11885:1 11888:2 11896:1 11898:1 11913:1 11916:1 11921:1 11926:1 11943:3 11947:1 11949:1 11950:5 11957:1 11966:1 11987:1 11990:3 11995:1 11997:1 12003:2 12004:7 12005:1 12011:3 12014:1 12015:1 12019:1 12021:1 12022:1 12024:3 12025:2 12032:1 12035:2 12038:1 12042:2 12044:1 12046:1 12058:1 12059:1 12063:1 12067:1 12077:1 12089:1 12094:1 12095:2 12102:1 12110:4 12118:1 12128:4 12129:1 12133:1 12136:1 12137:2 12143:1 12168:1 12183:1 12186:1 12196:12 12205:1 12211:1 12213:1 12214:1 12229:1 12240:1 12241:1 12257:1 12259:1 12262:1 12290:1 12323:1 12344:1 12345:5 12353:1 12356:1 12366:1 12370:1 12373:1 12377:1 12378:1 12379:1 12382:1 12386:1 12399:1 12401:2 12402:2 12418:10 12423:1 12435:2 12436:1 12444:1 12445:2 12446:1 12450:1 12453:1 12457:3 12463:2 12466:1 12467:6 12471:1 12473:1 12477:1 12481:1 12483:1 12484:1 12486:1 12495:5 12501:5 12502:3 12503:2 12505:1 12506:6 12511:2 12512:2 12521:1 12548:2 12554:1 12557:5 12561:2 12572:1 12594:1 12614:1 12625:1 12629:1 12630:1 12631:1 12632:2 12633:1 12643:2 12652:4 12658:1 12664:8 12673:1 12674:1 12678:1 12702:1 12715:3 12716:1 12727:1 12733:1 12735:1 12739:1 12751:3 12755:1 12757:2 12762:3 12773:1 12776:1 12778:3 12779:1 12781:1 12800:1 12804:1 12810:3 12821:2 12839:1 12855:1 12856:1 12857:1 12861:2 12866:1 12868:1 12879:5 12907:1 12913:1 12915:1 12920:1 12929:3 12930:1 12932:1 12950:2 12962:1 12973:1 12974:12 12981:5 12984:1 12991:4 13001:1 13002:1 13007:1 13008:1 13012:2 13021:3 13025:1 13028:1 13051:1 13052:1 13054:1 13064:3 13068:1 13069:5 13076:2 13090:2 13091:2 13099:1 13105:1 13107:1 13108:5 13111:1 13118:1 13120:1 13130:2 13140:1 13151:1 13153:1 13159:1 13163:1 13195:1 13197:3 13198:1 13228:3 13229:1 13254:2 13259:1 13275:1 13276:1 13278:1 13280:1 13281:1 13288:1 13291:1 13299:5 13305:1 13311:1 13316:1 13322:2 13328:1 13330:1 13331:1 13336:2 13337:1 13342:1 13343:1 13346:1 13347:1 13348:4 13354:1 13356:1 13359:1 13376:1 13388:1 13405:1 13411:1 13412:8 13413:3 13414:1 13417:1 13423:2 13425:4 13430:3 13431:3 13433:1 13434:4 13436:5 13437:1 13439:1 13441:11 13449:1 13450:7 13451:7 13453:8 13465:1 13466:1 13472:1 13474:11 13475:6 13493:1 13495:1 13498:4 13502:5 13503:1 13512:3 13525:1 13528:1 13532:7 13534:3 13555:1 13570:1 13585:1 13587:1 13595:1 13598:1 13599:2 13600:10 13606:4 13610:7 13612:2 13630:3 13635:3 13636:10 13637:1 13640:1 13650:3 13654:1 13664:2 13680:1 13684:3 13696:3 13700:1 13702:5 13703:1 13711:3 13721:2 13726:1 13741:2 13747:2 13751:1 13756:15 13777:1 13789:1 13801:1 13810:4 13817:1 13821:1 13823:1 13824:7 13844:4 13845:1 13863:2 13875:2 13878:1 13880:1 13886:1 13889:1 13891:1 13892:1 13898:1 13902:6 13904:2 13908:7 13911:1 13929:1 13934:1 13937:7 13944:1 13949:1 13955:1 13957:2 13960:2 13962:1 13974:5 13977:2 13978:1 13992:1 14002:4 14011:1 14013:1 14048:1 14051:1 14055:2 14073:1 14079:1 14084:3 14088:1 14096:3 14098:1 14100:8 14133:7 14134:1 14144:1 14148:9 14150:1 14152:1 14181:13 14192:1 14236:2 14257:2 14262:1 14271:1 14274:1 14275:1 14286:2 14289:3 14293:7 14296:7 14298:1 14299:1 14304:1 14325:1 14330:1 14339:1 14349:1 14350:1 14356:1 14364:1 14366:2 14371:1 14381:3 14383:1 14396:1 14401:1 14402:1 14411:2 14420:2 14422:1 14436:2 14447:1 14449:1 14452:3 14458:1 14471:1 14474:3 14478:1 14484:3 14485:1 14515:3 14519:11 14525:9 14527:1 14540:1 14553:1 14555:5 14559:2 14561:1 14574:2 14581:2 14583:9 14590:5 14592:1 14594:6 14601:2 14608:2 14609:4 14610:5 14637:1 14644:1 14663:2 14672:1 14681:7 14692:2 14694:3 14707:3 14708:1 14715:1 14718:6 14757:1 14765:2 14770:2 14781:1 14798:1 14814:2 14815:1 14823:2 14826:6 14828:1 14829:1 14830:1 14831:1 14841:1 14845:2 14854:1 14860:1 14861:2 14867:1 14868:1 14870:2 14873:1 14884:6 14887:1 14897:1 14900:2 14901:1 14903:1 14909:4 14920:1 14935:1 14942:1 14962:1 14965:7 14968:5 14979:2 14980:4 14994:1 15004:1 15005:2 15008:2 15009:4 15010:1 15015:1 15019:2 15021:1 15030:1 15036:1 15040:1 15050:1 15051:1 15054:1 15068:1 15076:1 15085:7 15089:9 15113:4 15117:2 15122:2 15125:1 15131:1 15134:2 15143:1 15146:1 15153:1 15170:1 15177:1 15183:1 15188:1 15195:3 15206:4 15211:1 15235:1 15241:1 15243:2 15248:1 15253:1 15258:4 15274:2 15282:1 15283:1 15290:8 15302:1 15314:1 15324:1 15363:2 15367:1 15396:1 15405:1 15421:1 15445:2 15480:1 15486:1 15491:1 15497:2 15498:1 15502:1 15503:4 15516:1 15523:1 15528:1 15546:2 15547:1 15568:7 15576:2 15585:1 15593:1 15613:3 15618:7 15628:1 15629:1 15633:1 15637:4 15658:1 15665:1 15666:12 15675:2 15693:3 15695:1 15696:5 15698:2 15704:1 15708:1 15712:2 15713:3 15715:1 15724:3 15727:1 15728:1 15731:1 15740:1 15745:1 15747:2 15752:7 15756:1 15764:1 15771:1 15772:1 15773:2 15778:1 15789:4 15790:1 15799:1 15820:2 15829:1 15836:1 15840:1 15854:2 15863:1 15864:2 15867:1 15872:1 15881:1 15896:1 15905:1 15911:1 15926:1 15930:1 15934:1 15937:2 15959:6 15962:1 15966:1 15972:1 15974:1 15976:1 15978:39 15986:2 15990:2 15996:3 16001:2 16006:7 16008:1 16016:4 16017:1 16021:2 16022:2 16029:1 16030:1 16037:1 16062:1 16072:1 16077:2 16106:1 16110:2 16122:1 16127:1 16130:1 16139:1 16156:1 16160:2 16175:1 16179:1 16183:5 16187:2 16202:1 16206:1 16217:2 16221:6 16235:2 16243:1 16247:1 16263:1 16264:1 16271:1 16276:1 16278:1 16279:1 16287:1 16288:1 16331:1 16338:3 16343:3 16344:1 16345:1 16346:1 16356:1 16358:1 16362:1 16366:5 16380:1 16386:1 16388:2 16389:4 16394:1 16400:1 16410:1 16411:1 16418:1 16421:1 16431:1 16434:3 16482:1 16487:1 16501:1 16514:1 16515:3 16532:1 16540:2 16545:1 16551:1 16558:1 16561:1 16571:2 16579:2 16582:10 16584:1 16585:1 16594:2 16595:2 16597:2 16604:1 16616:1 16623:1 16630:1 16633:3 16640:1 16655:1 16666:5 16672:1 16675:1 16679:2 16691:2 16694:1 16696:1 16716:7 16717:1 16726:1 16732:1 16739:1 16740:1 16760:2 16806:1 16812:4 16817:1 16822:16 16830:1 16834:1 16838:1 16869:1 16879:3 16883:1 16884:1 16893:1 16894:1 16902:6 16905:1 16918:1 16932:1 16937:2 16942:1 16945:1 16946:1 16964:1 16967:2 16980:1 17001:1 17005:1 17010:1 17014:3 17019:1 17026:1 17027:1 17039:1 17040:1 17042:3 17059:1 17067:2 17072:6 17094:2 17104:3 17106:4 17108:1 17118:1 17124:1 17125:1 17128:2 17140:1 17146:1 17161:1 17171:1 17177:1 17178:1 17189:1 17191:1 17192:1 17193:1 17202:1 17207:5 17213:1 17216:1 17219:1 17222:1 17237:1 17239:2 17242:1 17251:7 17252:1 17255:1 17263:1 17270:4 17301:1 17306:5 17324:7 17342:2 17353:1 17362:1 17370:1 17380:1 17388:1 17389:2 17394:1 17408:32 17423:3 17434:1 17436:7 17437:5 17438:1 17440:4 17443:1 17444:2 17474:5 17475:1 17482:1 17486:2 17489:1 17492:1 17493:3 17495:7 17504:1 17507:1 17508:1 17510:1 17512:1 17516:1 17517:1 17519:1 17520:1 17524:1 17531:2 17532:2 17544:1 17546:1 17552:2 17572:1 17573:1 17576:1 17583:3 17586:1 17590:1 17613:1 17615:5 17620:1 17629:1 17631:2 17643:1 17644:1 17645:2 17672:1 17680:1 17684:2 17687:6 17690:1 17692:1 17696:1 17709:1 17723:1 17753:1 17779:2 17780:1 17783:1 17787:1 17790:1 17802:5 17810:1 17815:1 17817:1 17820:1 17822:1 17825:3 17846:1 17863:2 17873:1 17877:1 17878:3 17886:1 17889:1 17890:1 17891:8 17894:1 17905:1 17912:11 17920:1 17926:1 17933:3 17934:3 17960:1 17961:1 17968:1 17973:1 17989:1 17990:2 17992:1 18000:1 18009:1 18017:2 18019:1 18022:1 18033:2 18039:1 18048:1 18058:1 18068:11 18075:4 18084:1 18086:1 18098:4 18100:4 18101:1 18108:1 18123:1 18131:1 18132:1 18143:2 18144:1 18147:1 18148:1 18168:2 18176:3 18193:1 18198:3 18201:1 18210:2 18211:1 18212:1 18213:1 18221:5 18230:4 18233:2 18246:2 18247:1 18249:5 18253:1 18255:1 18261:2 18263:1 18265:4 18266:1 18269:3 18271:1 18282:2 18289:3 18310:1 18318:1 18319:1 18325:3 18326:2 18330:1 18343:1 18344:2 18355:4 18366:2 18367:1 18373:1 18380:2 18387:5 18389:7 18392:23 18393:2 18398:2 18399:1 18403:1 18412:2 18419:1 18428:2 18442:4 18458:1 18465:2 18473:4 18498:2 18509:1 18516:1 18529:1 18550:1 18555:1 18557:2 18563:3 18569:3 18584:1 18585:2 18589:1 18612:2 18613:4 18614:1 18631:1 18636:2 18641:3 18643:6 18657:3 18686:2 18690:8 18693:1 18699:1 18713:5 18720:1 18722:6 18735:6 18738:1 18747:2 18751:7 18753:4 18760:2 18764:1 18766:1 18767:1 18788:1 18792:1 18799:1 18801:5 18811:4 18819:2 18834:3 18836:1 18838:1 18850:5 18852:1 18860:1 18863:1 18865:1 18869:1 18870:2 18874:1 18877:1 18899:4 18907:4 18914:1 18932:1 18934:2 18935:1 18937:1 18941:1 18945:1 18947:1 18953:3 18956:2 18958:3 18960:2 18964:1 18966:1 18978:1 19001:7 19005:1 19007:1 19015:1 19020:15 19021:2 19031:4 19032:1 19035:2 19036:1 19050:2 19057:2 19085:1 19098:1 19116:1 19130:7 19132:1 19137:1 19140:2 19147:1 19156:1 19165:5 19171:2 19174:1 19177:9 19184:1 19189:1 19208:2 19214:1 19278:2 19280:1 19301:1 19311:2 19312:1 19331:1 19333:1 19336:1 19350:1 19352:1 19358:4 19360:4 19365:4 19367:1 19369:1 19386:1 19389:1 19390:1 19398:1 19399:1 19411:1 19412:1 19433:1 19455:1 19458:2 19465:3 19470:3 19499:1 19510:1 19518:3 19522:1 19526:2 19528:1 19537:1 19545:1 19549:1 19559:1 19600:4 19604:1 19606:1 19607:1 19615:1 19618:2 19619:1 19627:1 19642:1 19643:3 19644:1 19659:2 19660:2 19661:1 19664:1 19672:1 19673:1 19674:6 19684:1 19687:1 19689:1 19691:1 19692:1 19698:1 19699:1 19718:1 19721:1 19722:2 19740:3 19748:1 19762:1 19767:1 19769:1 19780:1 19791:1 19812:1 19818:2 19823:2 19824:7 19825:1 19831:1 19844:1 19852:1 19856:1 19869:1 19870:1 19873:1 19878:1 19888:2 19894:1 19905:1 19916:2 19918:1 19919:1 19925:1 19930:2 19932:1 19934:1 19944:2 19957:1 19996:3 20003:1 20033:1 20036:1 20044:1 20052:1 20058:1 20059:5 20060:6 20076:1 20079:1 20081:1 20082:5 20083:1 20096:1 20097:1 20105:1 20117:1 20118:3 20124:1 20126:4 20150:1 20158:1 20159:1 20175:1 20177:5 20178:2 20181:1 20185:5 20191:3 20193:1 20207:3 20210:1 20212:2 20215:7 20247:2 20255:5 20263:2 20270:2 20271:1 20273:1 20276:1 20290:1 20311:1 20330:1 20342:1 20350:1 20386:1 20388:2
14 5:1 8:1 20:1 21:2 49:1 58:1 69:1 72:1 73:1 74:1 88:7 113:1 115:2 116:2 118:1 119:1 131:1 133:1 134:1 140:6 143:1 148:2 162:1 166:1 183:2 191:1 206:1 208:2 216:1 217:1 226:1 238:2 257:1 272:1 273:1 274:2 277:2 282:1 284:1 289:2 307:1 308:1 311:1 344:1 356:1 364:7 366:8 371:1 374:1 376:4 388:1 392:1 400:1 403:1 406:3 417:1 420:1 421:1 423:1 430:1 433:1 440:1 441:2 442:1 448:1 453:1 455:1 456:1 467:7 470:1 475:1 477:1 484:1 492:1 493:9 495:2 496:1 502:1 509:1 513:1 528:2 531:1 547:1 548:7 558:1 559:3 569:1 576:3 584:2 590:1 592:1 609:1 611:1 624:2 633:2 667:4 669:1 675:2 678:1 697:2 700:2 703:5 706:3 717:2 730:1 754:1 791:1 800:9 801:3 802:3 805:5 828:1 841:1 866:1 868:2 874:1 877:1 884:2 885:2 897:1 914:1 919:2 932:1 936:1 939:6 950:1 955:2 956:1 984:3 1000:1 1014:2 1015:1 1016:1 1018:2 1025:1 1028:5 1031:2 1037:1 1039:2 1046:2 1059:1 1060:1 1070:1 1079:2 1081:5 1082:1 1116:2 1128:1 1134:1 1142:1 1146:2 1186:2 1196:1 1204:1 1237:1 1241:2 1246:4 1247:1 1252:1 1253:1 1256:3 1262:1 1266:1 1270:1 1273:2 1290:1 1295:1 1310:3 1311:2 1313:1 1315:2 1324:1 1330:6 1331:10 1332:1 1333:1 1334:2 1342:1 1355:1 1366:1 1371:1 1373:1 1380:4 1382:1 1388:2 1392:1 1416:1 1419:5 1428:1 1432:5 1438:1 1442:3 1445:2 1449:1 1467:3 1468:4 1477:1 1487:1 1492:2 1499:2 1510:1 1514:1 1517:1 1524:1 1525:1 1528:2 1535:1 1536:2 1542:1 1545:2 1553:2 1561:1 1562:1 1565:1 1571:1 1578:1 1585:2 1596:1 1601:1 1603:1 1609:2 1617:1 1620:1 1634:1 1637:1 1640:1 1644:1 1647:13 1653:3 1654:1 1658:1 1668:1 1672:1 1674:2 1675:1 1692:2 1721:1 1745:1 1758:5 1773:2 1777:2 1786:1 1789:1 1796:1 1797:2 1818:2 1822:1 1827:1 1828:1 1830:1 1834:1 1836:1 1839:3 1840:1 1843:3 1845:3 1846:2 1847:2 1849:1 1852:1 1854:1 1858:7 1860:1 1865:1 1867:1 1875:4 1880:1 1884:1 1895:1 1911:1 1912:3 1915:1 1921:1 1934:1 1941:1 1942:1 1943:1 1945:3 1946:1 1961:1 1969:1 1980:2 1993:1 2003:3 2004:5 2016:2 2021:1 2040:1 2071:1 2077:1 2084:1 2089:1 2100:5 2117:2 2128:1 2143:2 2146:2 2149:6 2157:4 2180:1 2182:1 2183:1 2186:1 2189:1 2197:1 2198:2 2201:1 2203:1 2205:1 2230:1 2235:4 2251:4 2253:3 2266:1 2271:1 2280:3 2282:2 2289:2 2296:1 2298:3 2299:1 2313:5 2315:2 2327:5 2329:1 2349:1 2355:1 2358:7 2360:1 2369:1 2378:1 2379:4 2384:1 2385:2 2399:1 2406:1 2407:2 2416:1 2418:1 2423:1 2424:1 2443:1 2455:3 2456:1 2481:1 2484:1 2504:7 2509:1 2524:5 2533:7 2536:1 2540:3 2545:1 2556:1 2559:1 2560:2 2563:12 2570:2 2571:1 2572:2 2598:6 2600:5 2625:1 2630:2 2632:4 2642:1 2656:2 2657:1 2658:3 2659:1 2661:1 2663:2 2664:1 2665:1 2666:1 2669:1 2671:2 2684:1 2696:2 2697:2 2701:1 2713:1 2715:1 2716:1 2726:1 2737:3 2747:1 2749:1 2751:2 2761:1 2768:1 2778:1 2781:1 2782:5 2787:1 2788:1 2789:2 2812:1 2814:1 2816:1 2817:5 2822:1 2824:1 2831:11 2851:2 2856:1 2858:1 2861:1 2887:3 2903:4 2905:5 2912:1 2917:1 2923:4 2927:4 2930:2 2931:1 2933:2 2935:1 2937:1 2943:1 2951:2 2961:3 2971:1 2980:3 2982:3 2983:2 2989:1 2992:1 2998:2 3001:6 3007:1 3021:1 3026:3 3028:7 3036:1 3039:2 3043:1 3044:1 3046:2 3047:2 3048:2 3049:1 3053:1 3063:2 3068:1 3069:2 3070:1 3071:3 3081:1 3082:2 3083:1 3093:2 3094:1 3110:4 3112:1 3114:2 3116:7 3118:3 3122:1 3123:5 3125:2 3126:1 3129:1 3133:3 3135:1 3136:3 3142:6 3144:2 3146:2 3149:4 3151:1 3156:1 3168:4 3169:1 3199:1 3202:3 3210:2 3212:1 3215:1 3222:1 3226:1 3231:1 3250:2 3266:1 3267:1 3270:2 3272:1 3281:8 3283:2 3294:1 3295:1 3306:2 3316:2 3321:1 3327:1 3328:1 3329:2 3345:1 3352:1 3357:3 3358:2 3378:2 3389:1 3390:1 3396:2 3400:1 3420:1 3431:2 3435:1 3446:1 3456:2 3458:1 3460:1 3462:1 3474:1 3489:1 3493:2 3501:2 3507:1 3510:3 3512:1 3518:2 3521:1 3536:1 3558:1 3560:10 3562:4 3568:5 3578:1 3581:10 3583:3 3585:1 3587:2 3588:2 3590:1 3599:1 3607:1 3609:1 3629:1 3631:4 3633:1 3638:2 3642:2 3655:1 3671:2 3679:1 3692:2 3706:9 3707:3 3726:12 3731:1 3732:2 3733:2 3736:1 3738:1 3751:1 3753:2 3763:1 3766:1 3771:1 3775:1 3777:8 3780:1 3788:1 3811:5 3819:3 3820:1 3830:1 3834:1 3836:1 3837:1 3841:1 3857:1 3871:2 3872:1 3873:2 3879:1 3880:1 3886:3 3892:1 3901:2 3902:1 3905:4 3910:1 3919:1 3920:7 3927:1 3936:1 3948:1 3966:4 3972:2 3975:3 3977:1 3989:1 3991:1 3994:2 3997:1 3998:1 3999:1 4002:1 4013:2 4019:3 4026:3 4031:1 4033:8 4037:4 4054:1 4058:2 4059:3 4067:1 4071:41 4072:2 4073:1 4078:1 4079:1 4080:1 4091:2 4096:1 4098:1 4111:1 4114:5 4128:1 4129:1 4131:10 4140:2 4144:1 4145:11 4152:4 4160:2 4162:1 4168:1 4169:9 4175:1 4194:1 4195:4 4196:3 4197:1 4203:1 4210:5 4211:1 4213:1 4225:5 4234:2 4249:2 4251:1 4253:1 4257:1 4266:1 4270:2 4277:1 4294:6 4301:1 4305:2 4307:1 4309:1 4324:5 4331:1 4343:2 4348:5 4349:4 4366:1 4378:1 4387:1 4412:2 4420:2 4427:3 4436:2 4441:1 4471:2 4473:2 4476:1 4483:1 4486:1 4500:1 4502:1 4506:1 4510:1 4520:1 4544:3 4549:2 4553:9 4556:2 4561:2 4568:2 4574:1 4586:1 4605:1 4611:1 4622:2 4627:3 4628:3 4635:1 4636:1 4638:2 4641:2 4646:1 4647:1 4649:1 4652:1 4658:2 4667:1 4676:2 4683:1 4686:10 4692:12 4699:7 4708:1 4710:1 4733:2 4734:1 4751:1 4754:2 4759:1 4762:3 4766:1 4771:3 4772:1 4778:2 4779:2 4794:1 4795:5 4822:1 4827:1 4831:1 4834:10 4837:2 4843:1 4847:1 4851:12 4869:3 4885:1 4900:2 4910:1 4914:2 4937:1 4940:2 4959:1 4960:1 4982:5 4989:4 5001:1 5006:5 5016:1 5018:1 5019:1 5023:4 5024:1 5025:1 5039:1 5040:1 5052:1 5057:1 5058:6 5067:40 5074:1 5081:1 5082:2 5083:4 5097:1 5101:1 5107:1 5112:1 5131:1 5132:1 5135:1 5153:2 5156:1 5157:1 5185:1 5193:1 5200:1 5202:1 5203:13 5206:2 5212:1 5227:1 5228:1 5231:2 5236:2 5237:1 5241:4 5247:1 5256:6 5264:1 5266:5 5271:6 5279:1 5288:1 5291:1 5309:1 5313:2 5314:1 5321:1 5345:1 5347:2 5348:1 5355:1 5362:1 5364:1 5365:5 5366:2 5372:1 5375:1 5382:1 5383:2 5387:1 5394:3 5402:1 5406:2 5408:1 5413:1 5416:1 5424:1 5433:1 5434:1 5437:2296 5443:2 5456:3 5458:1 5460:2 5462:1 5468:1 5469:1 5496:1 5497:1 5499:1 5507:2 5509:2 5511:1 5518:1 5520:2 5522:1 5529:1 5530:2 5582:1 5583:1 5590:1 5600:1 5604:1 5625:1 5637:1 5644:1 5657:1 5661:1 5672:2 5673:2 5674:1 5679:1 5691:3 5697:2 5713:1 5714:1 5717:2 5718:1 5751:3 5753:3 5755:1 5756:2 5757:1 5760:1 5761:1 5762:1 5763:1 5765:4 5767:1 5771:5 5775:1 5778:1 5780:7 5785:1 5806:2 5813:2 5817:1 5837:2 5856:1 5867:1 5874:1 5879:1 5886:1 5893:2 5904:1 5911:2 5912:1 5916:1 5932:16 5944:1 5962:3 5974:1 5981:1 5982:1 5984:9 5995:1 5996:3 5997:1 6007:1 6020:1 6026:2 6055:1 6059:1 6090:1 6092:2 6100:1 6110:1 6111:1 6118:1 6133:1 6153:1 6165:1 6168:1 6174:1 6205:1 6208:2 6216:1 6220:1 6232:1 6233:4 6247:1 6262:1 6307:1 6308:1 6311:4 6316:3 6317:2 6321:1 6325:1 6339:5 6349:3 6351:2 6352:2 6354:1 6360:1 6364:1 6367:2 6368:1 6372:2 6398:1 6417:1 6420:6 6425:4 6450:1 6451:3 6452:1 6453:1 6458:1 6473:1 6475:1 6489:2 6502:7 6508:1 6511:7 6517:8 6519:2 6520:2 6534:1 6541:5 6542:1 6543:1 6547:1 6559:1 6586:1 6587:1 6588:1 6590:1 6593:1 6596:1 6607:1 6609:1 6615:2 6635:1 6660:1 6661:2 6662:1 6668:1 6675:20 6677:4 6680:1 6681:1 6682:1 6683:4 6688:1 6694:10 6699:2 6708:1 6725:3 6736:1 6741:1 6746:2 6747:5 6749:1 6752:7 6756:1 6765:1 6775:1 6780:1 6801:1 6822:1 6829:2 6837:2 6842:1 6845:13 6866:3 6867:6 6868:3 6873:1 6876:2 6879:1 6880:1 6882:1 6884:1 6885:1 6891:1 6900:1 6902:4 6903:2 6905:4 6931:3 6945:3 6947:1 6952:2 6953:1 6955:1 6956:2 6957:2 6960:1 6967:1 6970:2 6976:1 6988:1 7000:1 7008:2 7009:1 7010:1 7013:1 7016:1 7024:1 7057:1 7078:1 7079:1 7082:2 7084:1 7112:1 7113:1 7127:2 7129:3 7136:1 7142:1 7148:6 7156:2 7159:2 7160:6 7161:1 7170:1 7174:1 7185:4 7192:2 7205:1 7207:1 7225:1 7258:1 7263:1 7266:6 7268:4 7277:1 7278:1 7281:2 7287:3 7295:2 7297:2 7305:2 7309:2 7327:1 7340:1 7342:2 7353:1 7357:2 7359:1 7361:1 7400:2 7402:1 7403:3 7414:2 7425:1 7427:1 7430:1 7441:1 7443:1 7446:1 7447:1 7459:3 7466:5 7474:3 7488:2 7490:3 7497:1 7504:1 7506:2 7512:1 7513:1 7515:1 7516:1 7518:1 7525:1 7526:5 7527:1 7539:1 7548:1 7571:2 7582:5 7585:1 7589:1 7591:1 7593:1 7595:1 7596:2 7601:2 7610:1 7611:2 7612:1 7615:1 7618:1 7622:6 7623:1 7630:1 7631:1 7633:1 7641:4 7647:1 7652:2 7653:1 7655:1 7664:2 7670:1 7672:1 7678:1 7690:1 7703:6 7707:1 7714:1 7753:1 7767:1 7769:2 7770:1 7771:1 7773:1 7782:4 7783:2 7788:2 7790:2 7794:4 7800:1 7804:1 7825:1 7829:3 7849:1 7852:2 7854:1 7872:1 7882:1 7886:1 7891:1 7895:1 7898:9 7912:1 7921:1 7930:1 7941:1 7951:3 7968:1 7975:1 7976:1 7977:2 7983:1 7989:2 8016:1 8024:1 8032:1 8033:1 8055:2 8080:2 8084:1 8091:3 8095:3 8110:1 8125:2 8134:1 8137:2 8148:1 8156:1 8162:1 8176:1 8190:2 8195:1 8210:2 8246:2 8254:1 8260:1 8267:1 8278:1 8282:2 8290:2 8300:1 8305:1 8311:2 8328:1 8332:1 8334:3 8346:1 8358:1 8364:3 8373:5 8378:4 8379:2 8386:1 8388:1 8398:2 8429:1 8435:1 8455:1 8458:1 8459:1 8465:1 8473:1 8479:1 8524:1 8526:1 8533:1 8541:1 8545:7 8554:2 8556:1 8560:2 8563:1 8572:1 8579:1 8589:6 8590:5 8608:1 8609:1 8611:1 8617:1 8624:1 8626:1 8636:1 8642:1 8643:1 8644:3 8650:2 8651:1 8652:1 8657:1 8663:1 8667:1 8670:2 8691:2 8692:1 8695:1 8704:1 8711:2 8712:6 8717:2 8718:1 8736:1 8745:8 8774:1 8777:1 8784:5 8794:1 8810:2 8820:9 8824:5 8825:2 8831:6 8832:3 8835:3 8836:1 8837:2 8839:2 8840:1 8843:1 8846:6 8847:13 8848:1 8849:1 8851:5 8853:4 8895:1 8911:4 8918:3 8919:1 8925:1 8944:1 8950:1 8997:2 9013:1 9020:1 9027:1 9041:10 9046:1 9058:1 9061:1 9062:1 9074:2 9080:1 9082:4 9086:1 9091:2 9117:1 9118:1 9122:1 9131:1 9133:1 9138:1 9153:1 9158:7 9176:2 9203:2 9204:1 9207:1 9208:1 9212:2 9213:1 9214:1 9216:1 9234:1 9236:3 9241:2 9245:1 9254:3 9260:1 9265:2 9302:1 9308:1 9315:1 9318:2 9321:2 9322:1 9333:1 9337:4 9344:1 9346:1 9347:1 9355:2 9372:2 9374:1 9387:1 9392:1 9393:1 9397:1 9402:2 9408:2 9410:1 9423:2 9425:4 9428:1 9433:1 9439:1 9441:1 9471:2 9478:1 9492:1 9500:1 9503:1 9508:2 9509:12 9513:1 9514:3 9515:1 9517:2 9518:3 9521:1 9530:2 9535:1 9538:3 9543:4 9544:3 9555:4 9558:4 9563:2 9572:1 9575:1 9578:1 9581:1 9582:1 9585:2 9592:10 9607:5 9609:1 9613:1 9622:2 9624:1 9628:1 9632:1 9634:4 9646:1 9658:3 9667:1 9669:2 9674:1 9678:1 9687:1 9689:2 9694:2 9695:1 9696:8 9715:4 9718:1 9723:2 9726:1 9731:3 9732:1 9754:2 9755:1 9762:2 9764:1 9780:1 9781:1 9782:7 9810:1 9822:1 9828:1 9830:3 9836:1 9841:3 9846:3 9865:2 9867:1 9888:1 9914:1 9916:4 9918:4 9920:1 9925:2 9927:1 9930:1 9937:1 9939:1 9945:2 9946:2 9956:5 9960:2 9966:1 9967:1 9995:6 9999:2 10010:1 10016:1 10017:1 10029:2 10042:1 10093:2 10116:2 10119:1 10136:1 10140:1 10150:1 10159:1 10160:2 10161:1 10163:1 10168:1 10174:1 10182:1 10184:1 10196:1 10200:1 10206:1 10209:1 10214:1 10220:2 10221:1 10223:3 10224:2 10233:4 10236:2 10238:1 10266:3 10269:2 10275:1 10277:1 10278:1 10293:1 10294:1 10296:1 10299:1 10313:1 10323:2 10328:1 10333:1 10336:1 10341:1 10356:1 10357:2 10363:2 10367:1 10368:1 10376:2 10382:1 10387:2 10392:2 10396:1 10397:3 10399:1 10409:1 10410:11 10425:1 10430:1 10448:1 10453:1 10465:1 10466:1 10467:1 10470:1 10478:1 10479:1 10481:1 10490:1 10512:1 10513:1 10517:2 10536:3 10537:1 10548:1 10559:1 10570:1 10585:1 10593:2 10607:1 10611:1 10613:1 10615:1 10625:2 10648:4 10679:1 10682:4 10683:1 10695:3 10717:2 10718:8 10729:1 10734:1 10736:1 10737:4 10743:1 10744:8 10751:2 10755:1 10760:2 10772:1 10774:1 10780:1 10782:1 10783:1 10789:1 10790:1 10791:1 10793:1 10796:2 10797:1 10798:1 10805:1 10812:48 10814:1 10823:1 10825:1 10833:1 10838:1 10841:3 10843:7 10849:1 10855:4 10866:1 10871:3 10872:1 10886:2 10888:1 10894:1 10901:1 10903:1 10908:1 10914:1 10940:4 10941:1 10942:1 10946:2 10962:1 10981:8 10983:1 10990:1 10998:8 11002:1 11004:1 11022:1 11033:1 11034:3 11037:1 11038:1 11041:1 11045:1 11057:1 11072:2 11078:1 11082:2 11087:1 11110:1 11112:2 11113:2 11114:1 11118:1 11121:2 11125:6 11131:1 11150:3 11164:1 11170:1 11176:1 11190:1 11195:1 11201:1 11203:1 11212:1 11228:2 11229:1 11232:1 11246:1 11247:4 11248:2 11260:5 11285:1 11297:2 11300:1 11301:2 11321:1 11322:1 11329:1 11332:1 11337:1 11340:3 11342:2 11347:1 11352:1 11354:1 11357:2 11363:5 11379:4 11382:3 11397:1 11401:5 11403:2 11413:1 11417:1 11423:4 11431:2 11436:16 11452:3 11457:2 11460:1 11466:1 11470:1 11485:1 11487:2 11509:4 11516:1 11528:1 11530:1 11548:1 11569:2 11582:1 11584:3 11594:3 11597:7 11618:1 11620:3 11621:1 11625:1 11651:4 11656:1 11658:1 11665:1 11668:1 11691:2 11709:6 11711:1 11714:1 11722:1 11725:1 11727:4 11728:1 11729:1 11737:2 11745:1 11747:1 11752:1 11758:1 11764:1 11771:2 11774:1 11776:6 11779:1 11782:1 11785:5 11786:2 11788:2 11799:11 11827:1 11833:1 11842:1 11848:1 11849:2 11854:1 11855:2 11857:1 11871:1 11881:1 11885:1 11888:2 11896:1 11898:1 11910:1 11913:1 11916:1 11921:1 11926:1 11943:3 11944:1 11947:1 11949:1 11950:5 11957:1 11966:1 11987:1 11990:3 11995:1 11997:1 12003:2 12004:7 12005:1 12011:4 12014:1 12015:1 12019:1 12021:1 12022:1 12024:3 12025:2 12032:1 12035:2 12038:1 12042:2 12044:1 12046:1 12058:1 12059:1 12063:1 12067:1 12077:1 12089:1 12094:1 12095:2 12102:1 12110:4 12118:1 12128:4 12129:1 12133:1 12136:1 12137:2 12143:1 12168:1 12183:1 12186:1 12196:13 12205:1 12211:1 12213:1 12214:1 12229:1 12240:1 12241:1 12257:2 12259:1 12262:1 12290:1 12323:1 12344:1 12345:5 12353:1 12356:1 12366:1 12370:1 12373:1 12377:1 12378:1 12379:1 12382:1 12386:1 12399:1 12401:2 12402:2 12418:11 12423:1 12435:2 12436:1 12444:1 12445:2 12446:1 12450:1 12453:1 12457:3 12463:2 12466:1 12467:7 12471:1 12473:1 12477:1 12481:1 12483:1 12484:1 12486:1 12495:5 12501:5 12502:3 12503:2 12505:1 12506:6 12511:2 12512:2 12521:1 12548:2 12554:1 12557:5 12561:2 12572:2 12594:1 12614:1 12624:1 12625:1 12629:1 12630:1 12631:1 12632:2 12633:1 12643:2 12652:4 12658:1 12664:8 12673:1 12674:1 12678:1 12702:1 12715:3 12716:1 12727:1 12733:1 12735:1 12739:1 12751:4 12755:1 12757:2 12762:4 12773:1 12776:1 12778:3 12779:1 12781:1 12800:1 12804:1 12810:3 12821:2 12839:1 12855:1 12856:1 12857:1 12861:2 12866:1 12868:1 12879:5 12907:1 12913:1 12915:1 12920:1 12929:3 12930:1 12932:1 12950:2 12962:1 12973:1 12974:13 12981:5 12984:1 12991:4 13001:1 13002:1 13007:1 13008:1 13012:2 13021:3 13025:1 13028:1 13051:1 13052:1 13054:2 13064:4 13068:1 13069:5 13076:2 13090:2 13091:2 13099:1 13105:1 13107:1 13108:5 13111:1 13118:1 13120:1 13130:3 13140:1 13151:1 13153:1 13159:1 13163:1 13175:1 13195:1 13197:3 13198:1 13228:3 13229:1 13254:2 13259:1 13275:1 13276:1 13278:1 13280:1 13281:1 13288:1 13291:1 13299:5 13305:1 13311:1 13316:1 13322:2 13328:1 13330:1 13331:1 13336:2 13337:1 13342:1 13343:1 13346:1 13347:1 13348:4 13354:1 13356:1 13359:1 13376:1 13388:1 13405:1 13411:2 13412:9 13413:3 13414:1 13417:1 13423:3 13425:4 13430:3 13431:3 13433:1 13434:4 13436:6 13437:1 13439:1 13441:12 13449:1 13450:7 13451:7 13453:8 13465:1 13466:1 13472:1 13474:12 13475:6 13493:1 13495:1 13498:4 13502:5 13503:1 13512:3 13525:1 13528:1 13532:7 13534:3 13555:1 13567:1 13570:1 13585:1 13587:1 13595:1 13598:1 13599:2 13600:10 13606:4 13610:8 13612:2 13630:3 13635:3 13636:10 13637:1 13640:1 13650:3 13654:1 13664:2 13680:1 13684:3 13696:3 13700:1 13702:5 13703:1 13708:1 13711:4 13721:2 13726:1 13741:2 13747:2 13751:1 13756:18 13757:1 13777:1 13789:1 13801:1 13810:4 13817:1 13821:1 13823:1 13824:7 13844:4 13845:1 13863:2 13875:2 13878:1 13880:1 13886:1 13889:1 13891:1 13892:1 13898:1 13902:6 13904:2 13908:7 13911:1 13929:1 13934:1 13937:7 13944:1 13949:1 13955:1 13957:2 13960:2 13962:1 13974:5 13977:2 13978:1 13992:1 14002:4 14011:1 14013:1 14048:2 14051:1 14055:2 14073:1 14079:1 14084:3 14088:1 14094:1 14096:3 14098:1 14100:8 14108:1 14133:7 14134:1 14144:1 14148:9 14150:1 14152:1 14181:13 14192:1 14236:2 14247:1 14257:2 14262:1 14271:1 14274:1 14275:1 14286:2 14289:3 14293:8 14296:7 14298:1 14299:1 14304:1 14325:1 14328:1 14330:1 14339:1 14349:1 14350:1 14356:1 14364:1 14366:2 14371:1 14381:3 14383:1 14396:2 14401:1 14402:1 14411:2 14420:2 14422:1 14436:2 14447:1 14449:1 14452:3 14458:1 14471:1 14474:3 14478:1 14484:3 14485:1 14515:3 14519:11 14525:9 14527:1 14540:1 14553:1 14555:5 14559:2 14561:1 14563:1 14574:2 14581:2 14583:10 14590:5 14592:1 14594:6 14601:2 14608:2 14609:4 14610:5 14637:1 14644:1 14663:2 14672:1 14681:7 14692:2 14694:3 14707:3 14708:1 14715:1 14718:6 14757:1 14765:2 14770:2 14781:1 14798:1 14814:2 14815:1 14823:2 14826:6 14828:1 14829:1 14830:1 14831:1 14841:2 14845:2 14854:1 14860:1 14861:2 14867:1 14868:1 14870:2 14873:1 14884:6 14887:1 14897:1 14900:2 14901:1 14903:1 14909:4 14920:1 14935:1 14942:1 14962:1 14965:7 14968:5 14979:2 14980:4 14994:1 15004:1 15005:2 15008:2 15009:4 15010:1 15015:1 15019:2 15021:1 15030:1 15036:1 15040:1 15050:1 15051:1 15054:1 15068:1 15076:1 15085:7 15089:9 15113:4 15117:2 15122:2 15125:1 15131:1 15134:2 15143:1 15146:1 15153:1 15170:1 15177:1 15183:1 15188:1 15195:3 15206:4 15211:1 15235:1 15241:1 15243:2 15248:1 15253:1 15258:4 15274:2 15282:1 15283:1 15290:8 15302:1 15314:1 15324:1 15363:2 15367:1 15396:1 15398:1 15405:2 15421:1 15445:2 15480:1 15486:1 15491:1 15497:2 15498:1 15502:1 15503:5 15516:1 15523:1 15528:1 15546:2 15547:1 15568:8 15576:2 15585:1 15593:1 15613:4 15618:7 15628:1 15629:1 15633:2 15637:4 15658:1 15665:1 15666:13 15675:2 15693:4 15695:1 15696:5 15698:2 15704:1 15708:1 15712:2 15713:3 15715:2 15724:3 15727:1 15728:1 15731:1 15740:1 15745:1 15747:2 15752:7 15756:1 15764:1 15771:1 15772:1 15773:2 15778:1 15789:4 15790:1 15799:1 15820:2 15829:1 15836:1 15840:1 15854:2 15863:1 15864:2 15867:1 15872:1 15881:1 15896:1 15905:1 15911:1 15926:1 15930:2 15934:1 15937:2 15959:6 15962:1 15966:1 15972:1 15974:1 15976:1 15978:40 15986:2 15990:2 15996:3 16001:2 16006:7 16008:1 16016:5 16017:1 16021:2 16022:2 16029:1 16030:1 16037:1 16062:1 16072:1 16077:2 16106:1 16110:2 16122:1 16127:1 16130:1 16139:1 16156:1 16160:2 16175:1 16179:1 16183:5 16187:2 16202:1 16206:1 16217:2 16221:6 16235:2 16243:1 16247:1 16263:1 16264:1 16271:1 16276:1 16278:1 16279:1 16287:1 16288:1 16298:1 16331:1 16338:3 16343:3 16344:1 16345:1 16346:1 16356:1 16358:1 16362:1 16363:1 16366:5 16380:1 16386:2 16388:2 16389:4 16394:1 16400:1 16410:1 16411:1 16418:1 16421:1 16431:1 16434:3 16482:1 16487:1 16501:1 16514:1 16515:3 16532:1 16540:2 16545:1 16551:1 16558:1 16561:1 16571:2 16579:2 16582:10 16584:1 16585:1 16594:2 16595:2 16597:2 16604:1 16616:1 16623:1 16630:1 16633:3 16640:1 16655:1 16660:1 16666:5 16672:1 16675:1 16679:2 16691:2 16694:1 16696:1 16716:7 16717:1 16726:1 16732:1 16739:1 16740:1 16760:2 16806:1 16812:4 16817:1 16822:19 16828:1 16830:1 16834:1 16838:1 16869:1 16879:3 16883:1 16884:1 16893:1 16894:1 16902:6 16905:1 16918:1 16932:1 16937:2 16942:1 16945:1 16946:1 16964:1 16967:2 16980:1 17001:1 17005:1 17010:1 17014:3 17019:1 17026:1 17027:1 17039:1 17040:1 17042:4 17059:1 17067:2 17072:7 17094:2 17104:3 17106:4 17108:1 17118:1 17124:1 17125:1 17128:2 17140:1 17146:1 17161:1 17171:1 17177:1 17178:1 17189:1 17191:2 17192:1 17193:1 17202:1 17207:5 17213:1 17216:1 17219:1 17222:1 17237:2 17239:2 17242:1 17251:7 17252:1 17255:1 17263:1 17270:4 17301:1 17306:5 17324:7 17342:2 17353:1 17362:1 17370:1 17380:1 17388:1 17389:2 17394:1 17408:33 17423:3 17434:1 17436:8 17437:5 17438:1 17440:4 17443:1 17444:2 17465:1 17474:6 17475:1 17482:1 17486:2 17489:1 17492:1 17493:3 17495:7 17504:1 17507:1 17508:1 17510:1 17512:1 17516:1 17517:1 17519:1 17520:1 17524:1 17531:2 17532:2 17544:1 17546:1 17552:2 17572:1 17573:1 17576:1 17583:3 17586:1 17590:1 17613:1 17615:5 17620:1 17627:1 17629:1 17631:2 17643:2 17644:1 17645:2 17672:1 17680:1 17684:2 17687:6 17690:1 17692:1 17696:1 17709:1 17723:1 17753:1 17779:2 17780:1 17783:1 17787:1 17790:1 17802:5 17810:1 17815:1 17817:1 17820:1 17822:1 17825:3 17846:1 17863:2 17873:1 17877:1 17878:3 17886:1 17889:1 17890:1 17891:8 17894:1 17905:1 17912:12 17920:1 17926:1 17933:3 17934:3 17960:1 17961:1 17968:1 17973:1 17989:1 17990:2 17992:1 18000:1 18009:1 18017:2 18019:1 18022:1 18033:2 18039:1 18048:1 18058:1 18068:11 18075:4 18084:1 18086:1 18098:4 18100:4 18101:1 18108:1 18123:1 18131:1 18132:1 18143:2 18144:1 18147:1 18148:1 18168:2 18176:3 18193:1 18198:3 18201:1 18210:2 18211:1 18212:1 18213:1 18221:5 18230:4 18233:2 18246:2 18247:1 18249:5 18253:1 18255:1 18261:2 18263:1 18265:5 18266:1 18269:3 18271:1 18282:2 18289:3 18290:1 18310:1 18318:1 18319:1 18325:3 18326:2 18330:2 18343:1 18344:2 18355:4 18366:2 18367:1 18373:1 18380:2 18387:5 18389:7 18392:24 18393:2 18398:2 18399:1 18403:1 18412:2 18419:1 18428:2 18442:4 18458:1 18465:2 18473:4 18498:2 18509:1 18516:1 18529:1 18550:1 18555:1 18557:2 18563:3 18569:3 18584:1 18585:2 18589:1 18612:2 18613:4 18614:1 18631:1 18636:2 18641:3 18643:7 18657:3 18686:2 18690:8 18693:1 18699:1 18713:5 18720:1 18722:6 18735:6 18738:1 18747:2 18751:7 18753:4 18760:2 18764:1 18766:1 18767:1 18788:1 18792:1 18799:1 18801:6 18811:4 18819:2 18834:3 18836:1 18838:1 18850:5 18852:1 18860:1 18863:1 18865:1 18869:1 18870:2 18874:2 18877:1 18899:4 18907:4 18914:1 18932:1 18934:2 18935:1 18937:1 18941:1 18945:1 18947:1 18953:3 18956:2 18958:3 18960:2 18964:1 18966:1 18978:1 19001:7 19005:1 19007:1 19015:1 19020:18 19021:2 19031:4 19032:1 19035:2 19036:1 19050:2 19057:2 19085:1 19098:1 19116:1 19130:7 19132:1 19137:1 19140:2 19147:1 19156:1 19165:6 19171:2 19174:1 19177:9 19184:1 19189:1 19208:2 19214:1 19278:3 19280:1 19301:1 19311:2 19312:1 19331:1 19333:1 19336:1 19350:1 19352:1 19358:4 19360:4 19365:4 19367:1 19369:1 19386:1 19389:1 19390:1 19398:1 19399:1 19411:1 19412:1 19433:1 19455:1 19458:2 19465:3 19470:4 19493:1 19499:1 19510:1 19518:3 19522:1 19526:2 19528:1 19537:1 19545:1 19549:1 19559:1 19600:4 19604:1 19606:1 19607:1 19615:1 19618:2 19619:1 19627:1 19642:1 19643:3 19644:1 19659:2 19660:2 19661:1 19664:1 19672:1 19673:1 19674:6 19684:1 19687:1 19689:1 19691:1 19692:1 19698:1 19699:1 19718:1 19721:1 19722:2 19740:3 19748:1 19762:1 19767:1 19769:1 19780:1 19791:1 19812:1 19818:2 19823:2 19824:8 19825:1 19831:1 19844:1 19852:1 19856:1 19869:1 19870:1 19873:1 19878:1 19888:2 19894:1 19905:1 19916:2 19918:2 19919:1 19925:1 19930:2 19932:1 19934:1 19944:3 19957:1 19996:3 20003:1 20033:1 20036:1 20044:1 20052:1 20058:1 20059:5 20060:6 20076:1 20079:1 20081:1 20082:5 20083:1 20096:2 20097:1 20105:1 20117:1 20118:3 20124:1 20126:4 20150:1 20158:1 20159:1 20175:1 20177:5 20178:2 20181:1 20185:5 20188:1 20191:4 20193:1 20207:3 20210:1 20212:2 20215:7 20247:2 20255:6 20263:2 20270:2 20271:1 20273:1 20276:1 20290:1 20311:1 20330:1 20342:1 20350:1 20386:1 20388:2
14 5:1 8:1 20:1 21:2 49:1 58:1 69:1 72:1 73:1 74:1 88:8 113:1 115:2 116:2 118:1 119:1 131:1 133:1 134:1 140:6 143:1 148:2 162:1 166:1 183:2 191:1 206:1 208:2 216:1 217:1 226:1 238:2 257:1 272:1 273:1 274:2 277:2 282:1 284:1 289:4 307:1 308:1 311:1 344:1 356:1 364:7 366:9 371:2 374:1 376:4 388:1 392:1 400:1 403:1 406:3 417:2 420:1 421:1 423:1 430:2 433:1 440:1 441:2 442:1 448:1 453:1 455:1 456:1 467:7 470:1 475:1 477:1 484:1 492:1 493:9 495:2 496:1 502:1 509:1 513:1 528:2 531:1 547:1 548:7 558:1 559:3 569:1 576:3 584:2 590:1 592:1 609:1 611:1 624:2 633:2 667:4 669:1 675:2 678:1 697:2 700:2 703:5 706:3 717:2 730:1 754:1 791:1 800:10 801:3 802:3 805:5 828:1 841:1 866:1 868:2 874:1 877:1 884:2 885:3 897:1 914:1 919:2 932:1 936:1 939:6 950:1 955:2 956:1 984:3 1000:1 1014:2 1015:1 1016:1 1018:2 1025:1 1028:5 1031:2 1037:1 1039:2 1046:2 1059:1 1060:1 1070:1 1079:2 1081:6 1082:1 1116:2 1128:1 1134:1 1142:1 1146:2 1186:2 1196:1 1204:1 1224:1 1237:1 1241:2 1246:4 1247:1 1252:1 1253:1 1256:3 1262:1 1266:1 1270:1 1273:2 1290:1 1295:1 1310:3 1311:2 1313:1 1315:2 1324:1 1330:7 1331:10 1332:1 1333:1 1334:2 1342:1 1355:1 1366:1 1367:1 1371:1 1373:1 1380:4 1382:1 1388:2 1392:1 1416:1 1419:6 1428:1 1430:1 1432:6 1438:1 1442:3 1443:1 1445:3 1449:1 1467:3 1468:4 1477:1 1487:1 1492:2 1499:2 1510:1 1514:1 1517:1 1524:1 1525:1 1528:2 1535:1 1536:2 1542:1 1545:2 1553:2 1561:1 1562:2 1565:1 1571:1 1578:1 1585:2 1596:1 1601:1 1603:1 1609:2 1617:1 1620:1 1634:1 1637:2 1640:1 1644:1 1647:13 1653:3 1654:1 1658:1 1668:1 1672:1 1674:2 1675:1 1679:1 1692:2 1721:1 1745:1 1758:6 1773:2 1777:2 1786:1 1789:1 1796:1 1797:2 1818:2 1822:1 1827:1 1828:1 1830:1 1834:1 1836:1 1839:3 1840:1 1843:3 1845:3 1846:2 1847:2 1849:1 1852:1 1854:1 1858:7 1860:1 1865:1 1867:1 1875:4 1880:1 1884:1 1895:1 1911:1 1912:3 1915:1 1921:1 1934:1 1941:1 1942:1 1943:1 1945:3 1946:1 1961:1 1969:1 1980:2 1993:1 2003:3 2004:6 2016:2 2021:1 2040:1 2071:1 2077:1 2084:1 2089:1 2100:5 2117:2 2128:1 2143:2 2146:2 2149:6 2157:4 2180:1 2182:1 2183:1 2186:1 2189:1 2197:1 2198:2 2201:1 2203:1 2205:1 2230:1 2235:4 2251:4 2253:3 2266:1 2271:1 2280:3 2282:2 2289:2 2296:1 2298:3 2299:1 2313:5 2315:2 2327:5 2329:2 2344:1 2349:1 2355:1 2358:7 2360:1 2369:1 2378:1 2379:4 2384:1 2385:2 2399:1 2404:1 2406:1 2407:2 2416:1 2418:1 2423:1 2424:1 2443:1 2455:3 2456:1 2481:1 2484:1 2504:7 2509:1 2524:5 2533:8 2536:1 2540:3 2545:1 2556:1 2559:1 2560:2 2563:12 2570:2 2571:1 2572:2 2598:6 2600:5 2605:1 2625:1 2630:2 2632:4 2642:1 2656:2 2657:1 2658:3 2659:1 2661:1 2663:2 2664:1 2665:1 2666:1 2669:1 2671:2 2684:1 2696:2 2697:2 2701:1 2713:1 2715:1 2716:1 2726:1 2737:3 2747:1 2749:1 2751:2 2761:1 2768:1 2775:1 2778:1 2781:1 2782:6 2787:1 2788:1 2789:2 2812:1 2814:1 2816:1 2817:5 2822:1 2824:1 2831:11 2851:2 2856:1 2858:1 2861:1 2887:3 2903:4 2905:5 2912:1 2917:1 2923:4 2927:4 2930:2 2931:1 2933:2 2935:1 2937:1 2943:1 2951:2 2961:3 2971:1 2980:3 2982:3 2983:2 2989:1 2992:1 2998:2 3001:7 3007:1 3015:1 3021:1 3026:3 3028:7 3036:1 3039:2 3043:1 3044:1 3046:2 3047:2 3048:2 3049:1 3053:1 3063:2 3068:1 3069:2 3070:1 3071:4 3081:1 3082:2 3083:1 3093:2 3094:1 3110:4 3112:1 3114:2 3116:9 3118:3 3122:1 3123:5 3125:2 3126:1 3129:1 3133:3 3135:1 3136:3 3142:6 3144:2 3146:2 3149:4 3151:1 3156:1 3168:4 3169:1 3193:1 3199:1 3202:3 3210:2 3212:1 3215:1 3222:1 3226:1 3231:1 3250:2 3266:1 3267:1 3270:2 3272:1 3281:10 3283:2 3294:1 3295:1 3306:2 3312:1 3316:2 3321:1 3327:1 3328:1 3329:2 3345:1 3352:1 3357:3 3358:2 3378:2 3389:1 3390:1 3396:2 3400:1 3420:1 3431:3 3435:1 3446:1 3456:2 3458:1 3460:1 3462:1 3474:1 3489:1 3493:2 3501:2 3507:1 3510:3 3512:1 3518:2 3521:1 3536:1 3558:1 3560:11 3562:4 3568:5 3578:1 3581:11 3583:3 3585:1 3587:2 3588:2 3590:1 3599:1 3600:1 3607:1 3609:1 3629:1 3631:4 3633:1 3638:2 3642:2 3655:1 3671:2 3679:1 3692:2 3706:10 3707:3 3726:12 3731:2 3732:2 3733:2 3736:1 3738:1 3751:1 3753:2 3763:1 3766:1 3771:1 3775:1 3777:9 3780:1 3788:1 3811:5 3819:3 3820:1 3830:1 3834:1 3836:1 3837:1 3841:1 3846:1 3857:1 3871:2 3872:1 3873:2 3879:1 3880:1 3886:3 3892:1 3901:2 3902:1 3905:5 3910:1 3919:1 3920:7 3927:1 3936:1 3948:1 3966:4 3972:2 3975:3 3977:1 3989:1 3991:1 3994:2 3997:1 3998:1 3999:1 4002:1 4013:2 4019:3 4026:3 4031:1 4033:8 4037:4 4054:1 4058:2 4059:3 4067:1 4071:44 4072:2 4073:1 4078:1 4079:1 4080:1 4091:2 4096:1 4098:1 4111:1 4114:5 4128:1 4129:1 4131:10 4140:2 4144:1 4145:11 4152:6 4160:2 4161:1 4162:1 4168:1 4169:10 4175:1 4194:1 4195:5 4196:3 4197:1 4203:1 4210:5 4211:1 4213:1 4225:5 4234:2 4249:2 4251:1 4253:1 4257:1 4266:1 4270:2 4277:1 4294:6 4301:1 4305:2 4307:1 4309:1 4324:5 4331:1 4343:2 4348:5 4349:4 4366:1 4378:1 4387:1 4412:2 4420:2 4427:3 4436:2 4441:1 4471:2 4473:2 4476:1 4483:1 4486:1 4500:1 4502:1 4506:1 4510:1 4520:1 4544:3 4549:2 4553:9 4556:2 4561:2 4568:2 4572:1 4574:1 4586:1 4605:1 4611:1 4622:2 4627:3 4628:3 4635:1 4636:1 4638:2 4641:2 4646:1 4647:1 4649:1 4652:1 4658:2 4667:1 4676:2 4683:1 4686:10 4692:12 4699:7 4708:1 4710:1 4733:2 4734:1 4751:1 4754:2 4759:1 4762:3 4766:1 4768:1 4771:3 4772:1 4778:2 4779:2 4794:1 4795:5 4822:1 4827:1 4831:1 4834:11 4837:2 4843:1 4847:1 4851:12 4869:3 4885:1 4900:2 4910:1 4914:2 4937:1 4940:2 4959:2 4960:1 4982:5 4989:4 5001:1 5006:5 5016:1 5018:1 5019:1 5023:4 5024:1 5025:1 5039:1 5040:1 5052:1 5057:1 5058:6 5067:42 5074:1 5081:1 5082:2 5083:5 5097:1 5101:1 5107:1 5112:1 5131:1 5132:1 5135:1 5153:2 5156:1 5157:1 5185:1 5193:1 5200:1 5202:1 5203:14 5206:2 5212:1 5227:1 5228:1 5231:2 5236:2 5237:1 5241:4 5247:1 5256:6 5264:1 5266:5 5271:6 5279:1 5288:1 5291:1 5309:1 5313:2 5314:1 5321:1 5345:1 5347:2 5348:1 5355:1 5362:1 5364:2 5365:5 5366:2 5372:1 5375:2 5382:1 5383:2 5387:1 5394:3 5402:1 5406:2 5408:2 5413:1 5416:1 5424:1 5433:1 5434:1 5437:2365 5443:2 5456:3 5458:1 5460:2 5462:1 5468:1 5469:1 5496:1 5497:1 5499:1 5507:2 5509:2 5511:1 5518:1 5520:2 5522:1 5529:1 5530:2 5582:1 5583:1 5590:1 5600:1 5604:1 5625:1 5637:1 5644:1 5657:1 5661:1 5672:2 5673:2 5674:1 5679:1 5691:4 5697:2 5713:1 5714:1 5717:2 5718:2 5751:3 5753:4 5755:1 5756:2 5757:1 5760:1 5761:1 5762:1 5763:1 5765:4 5767:1 5771:6 5775:1 5778:1 5780:7 5785:1 5806:2 5813:2 5817:1 5837:2 5856:1 5867:1 5874:1 5879:1 5886:1 5893:3 5904:1 5911:2 5912:1 5916:1 5932:16 5944:1 5962:3 5974:1 5981:1 5982:1 5984:10 5995:1 5996:3 5997:1 6007:1 6020:1 6026:2 6055:1 6059:1 6090:1 6092:2 6100:1 6110:1 6111:1 6118:1 6133:1 6153:1 6165:1 6168:1 6174:1 6204:1 6205:1 6208:2 6216:1 6220:1 6232:1 6233:4 6247:1 6262:1 6307:1 6308:1 6311:4 6316:3 6317:2 6321:1 6325:1 6339:6 6349:3 6351:3 6352:2 6354:1 6360:1 6364:1 6367:2 6368:1 6372:2 6398:1 6417:1 6420:6 6425:4 6450:1 6451:3 6452:1 6453:1 6458:1 6473:1 6475:1 6489:2 6502:7 6508:1 6511:7 6517:8 6519:2 6520:2 6534:1 6541:6 6542:1 6543:1 6547:1 6559:1 6566:1 6586:1 6587:1 6588:1 6590:1 6593:1 6596:1 6607:1 6609:1 6615:2 6635:1 6660:1 6661:2 6662:1 6668:1 6675:20 6677:4 6680:1 6681:1 6682:1 6683:4 6688:1 6694:10 6699:2 6708:1 6725:3 6736:1 6741:1 6746:2 6747:5 6749:1 6752:7 6756:1 6765:1 6771:1 6775:1 6780:2 6801:1 6822:1 6829:2 6837:2 6842:1 6845:15 6866:3 6867:6 6868:3 6873:1 6876:3 6879:1 6880:1 6882:1 6884:1 6885:1 6891:1 6900:1 6902:4 6903:2 6905:4 6913:1 6931:3 6945:3 6947:1 6952:2 6953:1 6955:1 6956:2 6957:2 6960:1 6967:1 6970:2 6976:1 6988:1 7000:2 7005:1 7008:2 7009:1 7010:1 7013:1 7016:1 7024:1 7057:1 7073:1 7078:1 7079:1 7082:2 7084:1 7110:1 7112:1 7113:1 7127:2 7129:3 7136:1 7142:1 7148:6 7156:2 7159:2 7160:6 7161:1 7170:1 7174:1 7185:4 7192:2 7205:1 7207:1 7225:1 7258:1 7263:1 7266:6 7268:5 7277:1 7278:1 7281:2 7287:3 7295:2 7297:2 7305:2 7309:2 7327:1 7340:1 7342:2 7353:1 7357:2 7359:1 7361:1 7400:2 7402:1 7403:3 7414:3 7425:1 7427:1 7430:1 7441:1 7443:1 7446:1 7447:1 7459:3 7466:5 7474:3 7484:1 7488:2 7490:3 7497:1 7504:1 7506:2 7512:1 7513:1 7515:1 7516:1 7518:1 7525:1 7526:5 7527:1 7539:1 7548:1 7571:2 7582:5 7585:1 7589:1 7591:1 7593:1 7595:1 7596:2 7601:2 7610:1 7611:3 7612:1 7615:1 7618:1 7622:6 7623:1 7630:1 7631:1 7633:1 7641:4 7643:1 7647:1 7652:2 7653:1 7655:1 7664:2 7669:1 7670:1 7672:1 7678:1 7690:1 7703:6 7707:1 7714:1 7753:1 7767:1 7769:2 7770:1 7771:1 7773:1 7782:4 7783:2 7788:2 7790:3 7794:4 7800:1 7804:1 7825:1 7829:3 7849:1 7852:2 7854:1 7872:1 7882:1 7886:1 7891:1 7895:1 7898:9 7912:1 7921:1 7930:1 7941:1 7951:4 7968:1 7975:1 7976:1 7977:2 7983:1 7986:1 7989:2 8016:1 8024:1 8032:1 8033:1 8055:2 8080:2 8084:1 8091:3 8095:3 8110:1 8125:2 8134:1 8137:2 8148:1 8156:1 8162:1 8176:1 8190:2 8195:1 8210:2 8246:2 8254:1 8260:1 8267:1 8278:1 8282:2 8290:3 8300:1 8305:1 8311:2 8328:1 8332:1 8334:3 8346:1 8358:1 8363:1 8364:4 8373:5 8378:4 8379:2 8386:1 8388:1 8398:2 8427:1 8429:1 8435:1 8455:1 8458:1 8459:1 8465:1 8473:1 8479:1 8524:1 8526:1 8533:1 8541:1 8545:7 8554:2 8556:1 8560:2 8563:1 8572:1 8579:1 8589:6 8590:5 8608:1 8609:1 8611:1 8617:1 8624:1 8626:1 8636:1 8642:1 8643:1 8644:3 8650:2 8651:1 8652:1 8657:1 8663:2 8667:1 8670:2 8684:1 8691:2 8692:1 8695:1 8704:1 8711:2 8712:6 8717:2 8718:1 8721:1 8736:1 8745:9 8774:1 8777:1 8784:5 8794:1 8810:2 8820:9 8824:5 8825:2 8831:6 8832:3 8835:4 8836:2 8837:2 8839:3 8840:1 8843:1 8846:6 8847:13 8848:1 8849:1 8851:5 8853:4 8895:1 8911:4 8918:3 8919:1 8925:1 8944:1 8950:1 8997:2 9013:1 9020:1 9027:1 9041:11 9046:1 9058:2 9061:1 9062:1 9074:2 9080:1 9082:4 9086:1 9091:2 9117:1 9118:1 9122:1 9131:1 9133:1 9138:1 9153:1 9158:7 9176:2 9203:2 9204:1 9207:1 9208:1 9212:2 9213:1 9214:1 9216:1 9234:1 9236:3 9241:2 9245:1 9254:3 9260:1 9265:2 9302:1 9308:1 9315:1 9318:2 9321:2 9322:1 9333:1 9337:4 9344:1 9346:1 9347:1 9349:1 9355:2 9372:2 9374:1 9387:1 9392:1 9393:1 9397:1 9402:2 9408:2 9410:1 9420:1 9423:2 9425:4 9428:1 9433:1 9439:1 9441:1 9471:2 9478:1 9492:1 9500:1 9503:1 9508:2 9509:12 9513:1 9514:3 9515:1 9517:2 9518:3 9521:1 9530:2 9535:1 9538:3 9543:4 9544:3 9555:4 9556:1 9558:4 9563:2 9572:1 9575:1 9578:1 9581:1 9582:2 9585:2 9592:11 9607:5 9609:1 9613:1 9622:2 9624:1 9628:1 9632:1 9634:4 9646:1 9658:3 9667:1 9669:2 9674:1 9678:1 9687:1 9689:2 9694:2 9695:1 9696:8 9715:4 9718:1 9723:2 9726:1 9731:3 9732:1 9754:2 9755:1 9762:2 9764:1 9769:1 9780:1 9781:1 9782:8 9810:1 9822:1 9828:1 9830:3 9836:1 9841:3 9846:3 9865:2 9867:1 9888:1 9905:1 9914:1 9916:4 9918:4 9920:1 9925:2 9927:1 9930:1 9937:1 9939:1 9945:2 9946:2 9956:5 9960:2 9966:1 9967:1 9995:6 9999:3 10010:1 10016:1 10017:1 10029:2 10042:1 10093:2 10115:1 10116:2 10119:1 10136:1 10140:1 10150:1 10159:1 10160:2 10161:1 10163:1 10168:1 10174:1 10182:1 10184:1 10196:1 10200:1 10206:1 10209:1 10214:1 10220:2 10221:1 10223:3 10224:2 10233:4 10236:2 10238:1 10266:3 10269:2 10275:2 10277:1 10278:2 10293:1 10294:1 10296:1 10299:1 10313:1 10323:2 10328:2 10333:1 10336:1 10341:1 10356:1 10357:2 10363:3 10367:1 10368:2 10376:2 10382:2 10387:2 10392:2 10396:1 10397:3 10399:1 10409:1 10410:11 10425:1 10430:1 10448:1 10453:1 10465:1 10466:1 10467:1 10470:1 10478:1 10479:1 10481:1 10490:1 10512:1 10513:1 10517:2 10536:3 10537:1 10548:1 10559:1 10570:1 10585:1 10593:2 10607:1 10611:1 10613:1 10615:1 10625:2 10648:4 10664:1 10679:1 10682:4 10683:1 10695:3 10717:2 10718:8 10729:1 10734:1 10736:1 10737:4 10743:2 10744:8 10751:2 10755:1 10760:2 10772:1 10773:1 10774:1 10777:1 10780:1 10782:1 10783:1 10789:1 10790:1 10791:1 10793:1 10796:2 10797:1 10798:1 10805:1 10812:50 10814:1 10823:1 10825:1 10833:1 10838:1 10841:3 10843:7 10849:1 10855:4 10866:1 10871:3 10872:1 10886:2 10888:1 10894:1 10901:1 10903:1 10908:1 10914:1 10921:1 10940:4 10941:1 10942:1 10946:2 10962:1 10981:8 10983:1 10990:1 10998:8 11002:1 11004:1 11022:1 11033:1 11034:3 11037:1 11038:1 11041:1 11045:1 11057:1 11072:2 11078:1 11082:2 11087:1 11110:1 11112:2 11113:3 11114:1 11118:1 11121:2 11125:6 11131:1 11150:3 11164:1 11170:1 11176:1 11190:1 11195:2 11201:1 11203:1 11212:1 11227:1 11228:2 11229:2 11232:2 11246:1 11247:4 11248:3 11260:5 11285:1 11297:3 11300:1 11301:2 11321:1 11322:1 11329:1 11332:1 11337:1 11340:3 11342:2 11347:1 11352:1 11354:1 11357:2 11363:5 11379:4 11382:3 11397:1 11401:5 11403:2 11413:1 11417:1 11423:4 11431:2 11436:16 11452:3 11457:2 11460:1 11466:1 11470:1 11485:1 11487:2 11509:4 11516:1 11528:1 11530:1 11548:1 11549:1 11569:2 11582:1 11584:3 11594:3 11597:8 11618:1 11620:3 11621:1 11625:1 11651:4 11656:1 11658:1 11665:1 11668:1 11691:2 11709:6 11711:1 11714:1 11722:1 11725:1 11727:4 11728:1 11729:1 11737:2 11745:1 11747:1 11752:1 11758:1 11764:1 11771:2 11774:1 11776:6 11779:1 11782:1 11785:5 11786:2 11788:2 11799:11 11827:1 11833:1 11842:1 11848:1 11849:2 11854:1 11855:2 11857:1 11871:1 11881:1 11885:1 11888:2 11896:1 11898:1 11910:1 11913:1 11916:1 11921:1 11926:1 11943:3 11944:1 11947:1 11949:1 11950:5 11957:1 11966:1 11987:1 11990:3 11995:1 11997:1 12003:2 12004:7 12005:1 12011:4 12014:1 12015:1 12019:1 12021:1 12022:1 12024:3 12025:2 12032:1 12035:2 12038:1 12042:2 12044:1 12046:1 12058:1 12059:1 12063:1 12067:1 12077:1 12089:1 12094:1 12095:2 12102:1 12110:4 12118:1 12128:4 12129:1 12133:1 12136:1 12137:2 12143:1 12168:1 12183:1 12186:1 12196:13 12205:1 12211:1 12213:1 12214:1 12229:2 12240:1 12241:1 12257:2 12259:1 12262:1 12290:1 12323:1 12344:1 12345:6 12353:1 12356:1 12366:1 12370:1 12373:1 12377:1 12378:1 12379:1 12382:1 12386:2 12399:1 12401:2 12402:2 12418:11 12423:2 12435:2 12436:1 12444:1 12445:2 12446:1 12450:1 12453:1 12457:3 12463:2 12466:1 12467:8 12471:1 12473:1 12477:1 12481:1 12483:1 12484:1 12486:1 12495:5 12501:5 12502:3 12503:2 12505:1 12506:6 12511:2 12512:2 12521:1 12548:2 12554:1 12557:5 12561:2 12572:2 12594:1 12614:1 12624:1 12625:1 12629:1 12630:1 12631:2 12632:2 12633:1 12643:2 12652:5 12658:1 12664:8 12673:1 12674:1 12678:1 12702:1 12715:3 12716:1 12727:1 12733:1 12735:1 12739:1 12751:4 12755:1 12757:2 12762:4 12773:1 12776:1 12778:3 12779:1 12781:1 12800:1 12804:1 12810:3 12821:2 12825:1 12839:1 12855:1 12856:1 12857:1 12861:2 12866:1 12868:1 12879:5 12907:1 12913:1 12915:1 12920:1 12927:1 12929:3 12930:1 12932:1 12950:2 12962:1 12973:1 12974:13 12981:5 12984:1 12991:4 13001:1 13002:1 13007:1 13008:1 13012:2 13018:1 13021:3 13025:1 13028:1 13051:1 13052:1 13054:2 13064:4 13068:1 13069:5 13076:2 13090:2 13091:2 13099:1 13105:1 13107:1 13108:5 13111:1 13118:1 13120:1 13130:3 13140:1 13151:1 13153:1 13159:1 13163:1 13175:1 13187:1 13195:1 13197:4 13198:1 13228:3 13229:1 13254:2 13259:1 13270:1 13275:1 13276:1 13278:1 13280:1 13281:1 13288:1 13291:1 13299:5 13305:1 13311:1 13316:1 13322:2 13328:1 13330:1 13331:1 13336:2 13337:1 13342:1 13343:1 13346:1 13347:1 13348:4 13354:1 13356:1 13359:1 13376:1 13388:1 13405:1 13411:2 13412:9 13413:3 13414:1 13417:1 13423:3 13425:4 13430:3 13431:4 13433:1 13434:5 13436:6 13437:1 13439:1 13441:12 13449:1 13450:8 13451:7 13453:8 13465:1 13466:1 13472:1 13474:12 13475:7 13493:1 13495:1 13498:5 13502:5 13503:1 13512:3 13522:1 13525:1 13528:1 13532:7 13533:1 13534:3 13555:1 13567:1 13570:1 13585:1 13587:1 13595:1 13598:1 13599:2 13600:10 13606:4 13610:8 13612:3 13630:3 13635:3 13636:11 13637:1 13640:1 13650:3 13654:1 13664:2 13680:1 13684:3 13696:3 13700:1 13702:5 13703:2 13708:1 13711:4 13721:2 13726:1 13741:2 13747:2 13751:1 13756:18 13757:1 13777:1 13789:1 13801:1 13810:4 13817:1 13821:1 13823:1 13824:7 13844:4 13845:1 13863:2 13875:2 13878:1 13880:1 13886:1 13889:1 13891:1 13892:1 13898:1 13902:6 13904:2 13908:7 13911:1 13917:1 13929:1 13934:1 13937:7 13944:1 13949:1 13955:1 13957:2 13960:2 13962:1 13974:5 13977:2 13978:1 13992:1 14002:4 14011:1 14013:1 14048:2 14051:1 14055:2 14073:1 14079:1 14084:3 14088:1 14094:1 14096:3 14098:1 14100:8 14108:1 14133:7 14134:1 14144:1 14148:9 14150:1 14152:1 14181:13 14192:1 14236:2 14247:1 14257:2 14262:1 14271:1 14274:1 14275:1 14286:2 14289:3 14293:8 14296:7 14298:1 14299:1 14304:1 14325:1 14328:1 14330:1 14339:1 14349:1 14350:1 14356:1 14364:1 14366:2 14371:1 14381:3 14383:1 14396:2 14401:1 14402:1 14411:2 14420:2 14422:1 14436:2 14447:1 14449:1 14452:3 14458:1 14471:1 14474:3 14478:1 14484:4 14485:1 14515:3 14519:12 14525:9 14527:1 14540:1 14543:1 14553:1 14555:6 14559:2 14561:1 14563:1 14574:2 14575:1 14581:2 14583:10 14590:5 14592:1 14594:6 14599:1 14601:2 14608:2 14609:5 14610:5 14637:1 14644:1 14663:2 14672:1 14680:1 14681:8 14692:2 14694:4 14707:3 14708:1 14715:1 14718:6 14757:1 14765:2 14770:2 14781:1 14798:1 14801:1 14814:2 14815:1 14823:2 14826:6 14828:1 14829:1 14830:1 14831:1 14841:2 14845:2 14854:1 14860:1 14861:2 14867:1 14868:1 14870:2 14873:1 14884:6 14887:1 14897:1 14900:2 14901:1 14903:1 14909:4 14920:1 14935:1 14942:1 14962:1 14965:7 14968:5 14979:2 14980:5 14994:1 15004:1 15005:2 15008:2 15009:4 15010:1 15015:1 15019:2 15021:1 15030:1 15036:1 15040:1 15050:1 15051:1 15054:1 15068:1 15076:1 15085:7 15089:9 15113:4 15117:2 15118:1 15122:2 15125:1 15131:1 15134:2 15143:1 15146:1 15153:1 15158:1 15170:1 15177:1 15183:1 15188:1 15193:1 15195:3 15206:5 15211:1 15235:1 15241:1 15243:2 15248:1 15253:1 15258:4 15274:2 15282:1 15283:1 15290:8 15302:1 15314:1 15324:1 15342:1 15363:2 15367:1 15394:1 15396:1 15398:1 15405:2 15421:1 15445:2 15480:1 15486:1 15490:1 15491:1 15497:2 15498:1 15502:1 15503:6 15516:1 15523:1 15528:1 15546:2 15547:1 15568:8 15576:2 15585:1 15593:1 15613:4 15618:7 15628:1 15629:1 15633:2 15637:4 15658:1 15665:1 15666:13 15675:2 15687:1 15693:4 15695:1 15696:5 15698:2 15704:1 15708:1 15712:2 15713:3 15715:2 15724:3 15727:1 15728:1 15731:1 15740:1 15745:1 15747:2 15752:7 15756:1 15764:1 15771:1 15772:1 15773:2 15778:1 15789:4 15790:1 15799:1 15820:2 15829:1 15836:1 15840:1 15854:2 15863:1 15864:2 15867:1 15872:1 15881:1 15896:1 15905:1 15911:1 15926:1 15930:2 15934:1 15937:2 15959:6 15962:1 15966:1 15972:1 15974:1 15976:1 15978:42 15986:2 15990:2 15996:3 16001:2 16006:7 16008:1 16016:5 16017:1 16021:2 16022:2 16029:1 16030:1 16033:1 16037:1 16062:1 16072:1 16077:2 16106:1 16110:2 16122:1 16127:1 16130:1 16139:1 16156:1 16160:2 16175:1 16179:1 16183:5 16187:2 16202:1 16206:1 16217:2 16221:6 16235:2 16243:1 16247:1 16263:1 16264:1 16271:1 16276:1 16278:1 16279:1 16287:1 16288:1 16298:1 16331:1 16338:3 16343:3 16344:1 16345:1 16346:1 16356:1 16358:1 16361:1 16362:1 16363:1 16366:5 16380:1 16386:2 16388:2 16389:4 16394:1 16400:1 16410:1 16411:1 16418:1 16421:1 16431:1 16434:3 16482:1 16487:1 16501:1 16514:1 16515:3 16532:1 16540:2 16545:1 16551:1 16558:1 16561:1 16571:2 16579:2 16582:10 16584:1 16585:1 16594:2 16595:2 16597:2 16604:1 16616:1 16623:1 16630:1 16633:3 16640:1 16655:1 16660:1 16666:5 16672:1 16675:1 16679:2 16691:2 16694:1 16696:1 16716:7 16717:1 16726:1 16732:1 16739:1 16740:1 16760:2 16806:1 16812:4 16817:1 16822:19 16828:1 16830:1 16834:1 16838:1 16869:1 16879:3 16883:1 16884:1 16893:1 16894:1 16901:1 16902:6 16905:1 16918:1 16932:1 16937:2 16942:1 16945:1 16946:1 16964:1 16967:2 16980:1 17001:1 17005:1 17010:1 17014:3 17019:1 17026:1 17027:1 17039:1 17040:1 17042:4 17058:1 17059:1 17067:2 17072:7 17094:2 17104:3 17106:4 17108:1 17118:1 17124:1 17125:1 17128:2 17140:1 17146:1 17161:1 17171:1 17177:1 17178:1 17189:1 17191:2 17192:1 17193:1 17202:1 17207:6 17213:1 17216:1 17219:1 17222:1 17237:2 17239:2 17242:1 17251:7 17252:1 17255:1 17263:1 17270:4 17301:1 17306:5 17324:7 17342:2 17353:1 17362:1 17370:1 17380:1 17388:1 17389:2 17394:1 17408:36 17423:3 17434:1 17436:9 17437:5 17438:1 17440:4 17443:1 17444:2 17455:1 17465:1 17474:6 17475:1 17482:1 17486:2 17489:1 17492:1 17493:4 17495:7 17504:1 17507:1 17508:1 17510:1 17512:1 17516:1 17517:1 17519:1 17520:1 17524:1 17531:2 17532:2 17544:1 17546:2 17552:2 17572:1 17573:1 17576:1 17583:3 17586:1 17590:1 17613:1 17615:5 17620:1 17627:1 17629:1 17631:2 17643:2 17644:1 17645:2 17672:1 17680:1 17684:2 17687:6 17690:1 17692:1 17696:1 17709:1 17723:1 17753:1 17779:3 17780:1 17783:1 17787:1 17790:1 17802:5 17810:1 17815:1 17817:1 17820:1 17822:1 17825:3 17846:1 17863:2 17873:1 17877:1 17878:3 17886:1 17889:1 17890:1 17891:8 17894:1 17905:1 17912:13 17920:1 17926:1 17933:3 17934:3 17939:1 17960:1 17961:1 17968:1 17973:1 17989:1 17990:2 17992:1 18000:1 18009:1 18017:2 18019:1 18022:1 18033:2 18035:1 18039:1 18048:1 18058:1 18068:11 18075:4 18084:1 18086:1 18098:4 18100:4 18101:1 18108:1 18123:1 18131:1 18132:1 18143:2 18144:1 18147:1 18148:1 18168:2 18176:3 18193:1 18198:3 18201:1 18210:2 18211:1 18212:1 18213:1 18221:5 18230:4 18233:2 18246:2 18247:1 18249:5 18253:1 18255:1 18261:2 18263:1 18265:5 18266:1 18269:3 18271:1 18282:3 18289:3 18290:1 18310:1 18318:1 18319:1 18325:3 18326:2 18330:2 18342:1 18343:1 18344:2 18355:4 18366:2 18367:1 18373:1 18380:2 18387:6 18389:8 18392:24 18393:2 18398:2 18399:1 18403:1 18412:2 18419:1 18428:2 18442:4 18458:1 18465:2 18473:4 18498:2 18509:1 18516:1 18529:1 18550:1 18555:2 18557:2 18563:3 18569:3 18584:1 18585:2 18589:1 18612:2 18613:4 18614:1 18631:1 18636:2 18641:3 18643:8 18657:3 18686:2 18690:8 18693:1 18699:1 18713:5 18720:1 18722:7 18735:6 18738:1 18747:2 18751:7 18753:5 18760:2 18764:1 18766:1 18767:1 18788:1 18792:1 18799:1 18801:6 18811:4 18819:2 18834:3 18836:1 18838:1 18850:5 18852:1 18860:1 18863:1 18865:1 18869:1 18870:2 18874:2 18877:1 18899:4 18907:4 18914:1 18932:1 18934:2 18935:1 18937:1 18941:1 18945:1 18947:1 18953:3 18956:2 18958:4 18960:2 18964:1 18966:1 18978:1 19001:7 19005:1 19007:1 19015:1 19020:18 19021:2 19031:4 19032:1 19035:2 19036:1 19050:2 19057:2 19085:1 19098:1 19116:1 19130:7 19132:1 19137:1 19140:2 19147:1 19156:1 19165:6 19171:2 19174:1 19177:9 19184:1 19189:1 19208:2 19214:1 19278:3 19280:1 19301:1 19311:2 19312:1 19331:1 19333:1 19336:1 19350:1 19352:1 19358:4 19360:4 19365:4 19367:1 19369:1 19386:1 19389:1 19390:1 19398:1 19399:1 19411:1 19412:1 19433:1 19455:1 19458:2 19465:4 19470:4 19493:1 19499:1 19510:1 19518:3 19522:1 19526:2 19528:1 19537:1 19545:1 19549:1 19558:1 19559:1 19600:5 19604:1 19606:1 19607:1 19615:1 19618:2 19619:1 19627:1 19642:1 19643:3 19644:1 19659:2 19660:2 19661:1 19664:1 19672:1 19673:1 19674:7 19684:1 19687:1 19689:1 19691:1 19692:1 19698:1 19699:1 19718:1 19721:1 19722:2 19740:3 19748:1 19762:1 19767:1 19769:1 19780:1 19791:1 19812:1 19818:2 19823:2 19824:8 19825:1 19831:1 19844:1 19852:1 19856:1 19869:1 19870:1 19873:1 19878:1 19883:1 19888:2 19894:1 19905:1 19916:2 19918:2 19919:1 19925:1 19930:2 19932:1 19934:1 19944:3 19957:1 19996:3 20003:1 20033:1 20036:1 20044:1 20052:1 20058:1 20059:5 20060:6 20076:1 20079:1 20081:1 20082:5 20083:1 20096:2 20097:1 20105:1 20117:1 20118:3 20124:1 20126:4 20150:1 20158:1 20159:1 20175:1 20177:5 20178:2 20181:1 20185:5 20188:1 20191:4 20193:1 20207:3 20210:1 20212:2 20215:7 20247:2 20255:6 20263:3 20270:2 20271:1 20273:1 20276:1 20290:1 20311:1 20330:1 20342:1 20350:1 20386:1 20388:2
14 5:1 8:1 20:1 21:2 49:1 58:1 69:1 72:1 73:1 74:1 88:8 113:1 115:2 116:2 118:1 119:1 131:1 133:1 134:1 140:6 143:1 148:2 152:1 162:1 166:1 183:3 191:1 206:1 208:2 216:1 217:1 226:1 238:2 257:1 272:1 273:1 274:2 277:2 282:1 284:1 289:4 307:1 308:1 311:1 344:1 356:1 364:8 366:9 371:2 374:1 376:4 388:1 392:1 400:1 403:1 406:3 417:2 420:1 421:1 423:1 430:3 433:1 440:1 441:2 442:1 448:1 453:1 455:1 456:1 467:8 470:1 475:1 477:1 480:1 484:1 492:1 493:9 495:2 496:1 502:1 509:1 513:1 528:2 531:1 547:1 548:7 558:1 559:3 569:1 576:3 584:2 590:1 592:1 609:1 611:1 624:2 633:2 667:4 669:1 675:2 678:1 697:2 700:2 703:5 706:3 717:2 730:1 754:1 791:1 800:10 801:3 802:3 805:5 828:1 841:1 866:1 868:2 874:1 877:1 884:2 885:3 897:1 914:1 919:2 932:1 936:1 939:6 950:1 955:2 956:1 984:3 1000:1 1014:2 1015:1 1016:1 1018:2 1025:1 1028:5 1031:2 1037:1 1039:2 1046:2 1059:1 1060:1 1070:1 1079:2 1081:6 1082:1 1116:2 1128:1 1134:1 1142:1 1146:2 1186:2 1196:1 1204:1 1224:1 1237:1 1241:2 1246:4 1247:1 1252:1 1253:1 1256:3 1262:1 1266:1 1270:1 1273:2 1290:2 1295:1 1310:3 1311:3 1313:1 1315:2 1324:1 1330:7 1331:10 1332:1 1333:1 1334:2 1342:1 1355:1 1366:1 1367:1 1371:1 1373:1 1380:4 1382:1 1388:2 1392:1 1416:1 1419:6 1428:1 1430:1 1432:6 1438:1 1442:3 1443:1 1445:3 1449:1 1467:3 1468:4 1477:1 1487:1 1492:2 1499:2 1510:1 1514:1 1517:1 1524:1 1525:1 1528:2 1535:1 1536:2 1542:1 1545:2 1553:2 1561:1 1562:2 1565:1 1571:1 1572:1 1578:1 1585:2 1596:1 1601:1 1603:1 1609:2 1617:1 1620:1 1634:1 1637:2 1640:1 1644:1 1647:15 1653:3 1654:1 1658:1 1668:1 1672:1 1674:2 1675:1 1679:1 1692:2 1721:1 1745:1 1758:6 1773:3 1777:2 1786:1 1789:1 1796:1 1797:2 1818:2 1822:1 1827:1 1828:1 1830:1 1834:1 1836:1 1839:3 1840:1 1843:3 1845:3 1846:2 1847:2 1849:1 1852:1 1854:1 1858:7 1860:1 1865:1 1867:1 1869:1 1875:4 1880:1 1884:1 1895:1 1911:1 1912:3 1915:1 1921:1 1934:1 1941:1 1942:1 1943:1 1945:3 1946:1 1961:1 1969:1 1980:2 1993:1 2003:3 2004:6 2016:2 2021:1 2040:1 2071:1 2077:1 2084:1 2089:1 2100:5 2117:2 2128:1 2143:2 2146:2 2149:6 2157:4 2180:1 2182:1 2183:1 2186:1 2189:1 2197:1 2198:2 2201:1 2203:1 2205:1 2230:1 2235:4 2251:4 2253:3 2266:1 2271:1 2280:3 2282:2 2289:2 2296:1 2298:3 2299:1 2313:5 2315:2 2327:5 2329:3 2344:1 2349:1 2355:1 2358:8 2360:1 2369:1 2378:1 2379:4 2384:1 2385:2 2399:1 2404:1 2406:1 2407:2 2416:1 2418:1 2423:1 2424:1 2443:1 2455:3 2456:1 2481:1 2484:1 2504:7 2509:1 2524:5 2533:8 2536:1 2540:3 2545:1 2556:1 2559:1 2560:2 2563:12 2570:2 2571:1 2572:2 2598:6 2600:5 2605:1 2625:1 2630:2 2632:4 2642:1 2656:2 2657:1 2658:3 2659:1 2661:1 2663:2 2664:1 2665:1 2666:1 2669:1 2671:2 2684:1 2696:2 2697:2 2701:1 2713:1 2715:1 2716:1 2726:1 2737:3 2747:1 2749:1 2751:3 2761:1 2768:1 2775:1 2778:1 2781:1 2782:6 2787:1 2788:1 2789:2 2812:1 2814:1 2816:1 2817:5 2822:1 2824:1 2831:11 2851:2 2856:1 2858:1 2861:1 2887:3 2903:4 2905:6 2912:1 2917:1 2923:4 2927:4 2930:3 2931:1 2933:2 2935:1 2937:1 2939:1 2943:1 2951:2 2961:3 2971:1 2980:3 2982:3 2983:2 2989:1 2992:2 2998:2 3001:7 3007:1 3015:1 3021:1 3026:3 3028:8 3036:1 3039:2 3043:1 3044:1 3046:2 3047:2 3048:2 3049:1 3053:2 3063:2 3068:1 3069:2 3070:1 3071:4 3081:1 3082:2 3083:1 3093:2 3094:1 3110:4 3112:1 3114:2 3116:9 3118:3 3122:1 3123:5 3125:2 3126:1 3129:1 3133:3 3135:1 3136:3 3142:6 3144:2 3146:2 3149:4 3151:1 3156:1 3168:4 3169:1 3193:1 3199:1 3202:3 3210:2 3212:1 3215:1 3222:1 3226:1 3231:1 3250:2 3266:1 3267:1 3270:2 3272:1 3281:11 3283:2 3294:1 3295:1 3306:2 3312:1 3316:2 3321:1 3327:1 3328:2 3329:2 3345:1 3352:1 3357:3 3358:2 3378:2 3389:1 3390:1 3396:2 3400:1 3417:1 3420:1 3431:3 3435:1 3446:1 3456:2 3458:1 3460:1 3462:1 3474:1 3489:1 3493:2 3501:2 3507:1 3510:3 3512:1 3518:2 3521:1 3536:1 3558:1 3560:11 3562:4 3568:5 3578:1 3580:1 3581:12 3583:3 3585:1 3587:2 3588:2 3590:1 3599:1 3600:1 3607:1 3609:1 3629:1 3631:4 3633:1 3638:2 3642:2 3655:1 3671:2 3679:1 3692:2 3706:10 3707:3 3726:12 3731:2 3732:2 3733:2 3736:1 3738:1 3751:1 3753:2 3763:1 3766:1 3771:1 3775:1 3777:10 3780:1 3788:1 3811:5 3819:3 3820:1 3830:1 3834:1 3836:1 3837:1 3841:1 3846:1 3857:1 3871:2 3872:1 3873:2 3879:1 3880:1 3886:3 3892:1 3901:2 3902:1 3905:5 3910:1 3919:1 3920:7 3927:1 3936:1 3948:1 3966:4 3972:2 3975:3 3977:1 3989:1 3991:1 3994:2 3997:1 3998:1 3999:1 4002:1 4013:2 4019:3 4026:3 4031:1 4033:8 4037:4 4054:1 4058:2 4059:3 4067:1 4071:46 4072:2 4073:1 4078:1 4079:1 4080:1 4091:2 4096:1 4098:1 4111:1 4114:5 4128:1 4129:1 4131:11 4140:2 4144:1 4145:11 4152:7 4160:2 4161:1 4162:1 4168:1 4169:10 4175:1 4194:1 4195:5 4196:3 4197:1 4203:1 4210:5 4211:1 4213:1 4225:5 4234:2 4249:2 4251:1 4253:1 4257:1 4266:1 4270:2 4277:1 4291:1 4294:6 4301:1 4305:2 4307:1 4309:1 4311:1 4324:5 4331:1 4343:2 4348:5 4349:4 4366:1 4378:1 4387:1 4412:2 4420:2 4427:3 4436:2 4441:1 4471:2 4473:2 4476:1 4483:1 4486:1 4500:1 4502:1 4506:1 4510:1 4520:1 4544:3 4549:2 4553:11 4556:2 4561:2 4568:2 4572:1 4574:1 4586:1 4596:1 4605:1 4611:1 4622:2 4627:3 4628:3 4635:1 4636:1 4638:2 4641:2 4646:1 4647:1 4649:1 4652:1 4658:2 4667:1 4676:2 4683:1 4686:10 4692:12 4699:7 4708:1 4710:1 4733:2 4734:1 4751:1 4754:2 4759:1 4762:3 4766:1 4768:1 4771:3 4772:1 4778:2 4779:2 4794:1 4795:5 4822:1 4824:1 4827:1 4831:1 4834:11 4837:2 4843:1 4847:1 4851:12 4869:3 4885:1 4900:2 4910:1 4914:2 4937:1 4940:2 4959:2 4960:1 4982:5 4989:4 5001:1 5006:5 5016:1 5018:1 5019:1 5023:5 5024:1 5025:1 5039:1 5040:1 5052:1 5055:1 5057:1 5058:7 5067:44 5074:1 5081:1 5082:2 5083:5 5097:1 5101:1 5107:1 5112:1 5131:1 5132:1 5135:1 5153:3 5156:1 5157:1 5185:1 5193:1 5200:1 5202:1 5203:16 5206:2 5212:1 5227:1 5228:1 5231:2 5236:2 5237:1 5241:4 5247:1 5256:6 5264:1 5266:6 5271:7 5279:1 5288:1 5291:1 5309:1 5313:2 5314:1 5321:1 5345:1 5347:2 5348:1 5355:1 5362:1 5364:2 5365:5 5366:2 5372:1 5375:2 5382:1 5383:2 5385:2 5387:1 5394:3 5402:1 5406:3 5408:2 5413:1 5416:1 5424:1 5433:1 5434:1 5437:2428 5443:2 5456:3 5458:1 5460:2 5462:1 5468:1 5469:1 5496:1 5497:1 5499:1 5507:2 5509:2 5511:1 5518:1 5520:2 5522:1 5529:1 5530:2 5582:1 5583:1 5590:1 5600:1 5604:1 5625:1 5637:1 5644:1 5657:1 5661:1 5672:2 5673:2 5674:1 5679:1 5691:4 5697:3 5713:1 5714:1 5717:2 5718:2 5751:3 5753:4 5755:1 5756:2 5757:1 5760:1 5761:1 5762:1 5763:1 5765:4 5767:1 5771:6 5775:1 5778:1 5780:7 5785:1 5806:2 5813:2 5817:1 5837:2 5856:1 5867:1 5874:1 5879:1 5886:1 5893:3 5904:1 5911:2 5912:1 5916:1 5932:16 5944:1 5962:3 5974:1 5981:1 5982:1 5984:11 5995:1 5996:3 5997:1 6007:1 6020:1 6026:2 6055:1 6059:1 6063:1 6090:1 6092:2 6100:1 6110:1 6111:1 6118:1 6133:1 6153:1 6165:1 6168:1 6174:1 6204:1 6205:1 6208:2 6216:1 6220:1 6232:1 6233:4 6247:1 6262:1 6307:1 6308:1 6311:4 6316:3 6317:2 6321:1 6325:1 6339:6 6349:3 6351:3 6352:2 6354:1 6360:1 6364:1 6367:2 6368:1 6372:2 6398:1 6417:1 6420:6 6425:4 6450:1 6451:3 6452:1 6453:1 6458:1 6473:1 6475:1 6489:2 6502:8 6508:1 6511:8 6517:8 6519:2 6520:2 6534:1 6541:6 6542:1 6543:1 6547:1 6559:1 6566:1 6586:1 6587:3 6588:1 6590:1 6593:1 6596:1 6607:1 6609:1 6615:3 6635:1 6660:1 6661:2 6662:1 6668:1 6675:20 6677:4 6680:1 6681:1 6682:1 6683:4 6688:1 6694:10 6699:2 6708:1 6722:1 6725:3 6736:1 6741:1 6746:2 6747:7 6749:1 6752:8 6756:1 6765:1 6771:1 6775:1 6780:2 6801:1 6822:1 6829:2 6837:2 6842:1 6845:15 6866:3 6867:6 6868:3 6873:1 6876:3 6879:1 6880:1 6882:1 6884:1 6885:1 6891:1 6900:1 6902:4 6903:2 6905:4 6913:1 6931:3 6945:3 6947:1 6952:2 6953:1 6955:1 6956:2 6957:2 6960:1 6967:1 6970:2 6976:1 6988:1 7000:2 7005:1 7008:2 7009:1 7010:1 7013:1 7016:1 7024:1 7057:1 7073:1 7078:1 7079:1 7082:2 7084:1 7110:1 7112:1 7113:1 7127:2 7129:3 7136:1 7142:1 7148:6 7156:2 7159:2 7160:6 7161:1 7170:1 7174:1 7185:4 7192:2 7205:1 7207:1 7225:1 7258:1 7263:1 7266:7 7268:5 7277:1 7278:1 7281:2 7287:3 7295:3 7297:2 7305:2 7309:2 7327:1 7340:1 7342:2 7353:1 7357:2 7359:1 7361:1 7400:2 7402:1 7403:3 7414:4 7425:1 7427:1 7430:1 7441:1 7443:1 7446:1 7447:1 7459:3 7466:5 7474:3 7484:1 7488:2 7490:3 7497:1 7504:1 7506:2 7512:1 7513:1 7515:1 7516:1 7518:1 7525:1 7526:5 7527:1 7539:1 7548:1 7571:2 7582:5 7585:1 7589:1 7591:1 7593:1 7595:1 7596:2 7601:2 7610:1 7611:4 7612:1 7615:1 7618:1 7622:7 7623:1 7630:1 7631:1 7633:1 7641:4 7643:1 7647:1 7652:2 7653:1 7655:1 7664:2 7669:1 7670:1 7672:1 7678:1 7690:1 7703:6 7707:1 7714:1 7753:1 7767:1 7769:2 7770:1 7771:1 7773:1 7782:5 7783:2 7788:2 7790:3 7794:5 7800:1 7804:1 7825:1 7829:3 7849:1 7852:2 7854:1 7872:1 7882:1 7886:1 7891:1 7895:1 7898:9 7912:1 7914:1 7921:1 7930:1 7941:1 7951:4 7968:2 7975:1 7976:2 7977:2 7983:1 7986:1 7989:2 8016:1 8024:1 8032:1 8033:1 8055:2 8080:2 8084:1 8091:3 8095:3 8110:1 8125:2 8134:1 8137:2 8148:1 8156:1 8162:1 8176:1 8190:2 8195:1 8210:2 8246:2 8254:1 8260:1 8267:1 8278:1 8282:2 8290:3 8300:1 8305:1 8311:2 8328:1 8332:1 8334:3 8346:1 8358:1 8363:1 8364:4 8373:5 8378:4 8379:2 8386:1 8388:1 8398:2 8427:1 8429:1 8435:1 8455:1 8458:1 8459:1 8465:1 8473:1 8479:1 8524:1 8526:1 8533:1 8541:1 8545:7 8554:2 8556:1 8560:2 8563:1 8572:1 8579:1 8589:7 8590:5 8608:1 8609:1 8611:1 8617:1 8624:1 8626:1 8636:1 8642:1 8643:1 8644:3 8650:2 8651:1 8652:1 8657:1 8663:2 8667:1 8670:2 8684:1 8691:2 8692:1 8695:1 8704:1 8711:2 8712:6 8717:2 8718:1 8721:1 8736:1 8745:9 8774:1 8777:1 8784:5 8794:1 8810:2 8820:9 8824:5 8825:2 8831:6 8832:3 8835:4 8836:2 8837:2 8839:3 8840:1 8843:1 8846:6 8847:13 8848:1 8849:1 8851:5 8853:4 8895:1 8911:4 8918:3 8919:1 8925:1 8944:1 8950:1 8997:2 9013:1 9020:1 9027:1 9041:11 9046:1 9058:2 9061:1 9062:1 9074:2 9080:1 9082:4 9086:1 9091:2 9117:1 9118:1 9122:1 9131:1 9133:1 9138:1 9153:1 9158:8 9176:2 9187:1 9203:2 9204:1 9207:1 9208:1 9212:2 9213:1 9214:1 9216:1 9234:1 9236:3 9241:2 9245:1 9254:3 9260:1 9265:2 9302:1 9308:1 9315:1 9318:2 9321:2 9322:1 9333:1 9337:4 9344:1 9346:1 9347:1 9349:1 9355:2 9372:2 9374:1 9387:1 9392:1 9393:1 9397:1 9402:2 9408:2 9410:1 9420:1 9423:2 9425:4 9428:1 9433:1 9439:1 9441:1 9471:2 9478:1 9492:1 9500:1 9503:1 9508:2 9509:12 9513:1 9514:3 9515:1 9517:2 9518:3 9521:1 9530:2 9535:1 9538:3 9543:4 9544:3 9555:4 9556:1 9558:4 9563:2 9572:1 9575:1 9578:1 9581:1 9582:2 9585:3 9592:11 9607:5 9609:1 9613:1 9622:2 9624:1 9628:1 9632:1 9634:4 9646:1 9658:3 9667:1 9669:2 9674:1 9678:1 9687:1 9689:2 9694:2 9695:1 9696:8 9715:4 9718:1 9723:2 9726:1 9731:3 9732:1 9754:2 9755:1 9762:2 9764:1 9769:1 9780:1 9781:1 9782:8 9810:1 9822:1 9828:1 9830:3 9836:1 9841:3 9846:3 9865:2 9867:1 9888:1 9905:1 9914:1 9916:4 9918:4 9920:1 9925:2 9927:1 9930:1 9937:1 9939:1 9945:2 9946:2 9956:5 9960:2 9966:1 9967:1 9995:6 9999:3 10010:1 10016:1 10017:1 10029:2 10042:1 10093:2 10115:1 10116:2 10119:1 10136:1 10140:1 10150:1 10159:1 10160:2 10161:1 10163:1 10168:1 10174:1 10182:1 10184:1 10196:1 10200:1 10206:1 10209:1 10214:1 10220:2 10221:1 10223:3 10224:2 10233:4 10236:2 10238:1 10266:3 10269:3 10275:2 10277:1 10278:3 10293:1 10294:1 10296:1 10299:1 10313:1 10323:2 10328:2 10333:1 10336:1 10341:1 10356:1 10357:2 10363:3 10367:1 10368:2 10376:2 10382:2 10387:2 10392:2 10396:1 10397:3 10399:1 10409:1 10410:11 10425:1 10430:1 10448:1 10453:1 10465:1 10466:1 10467:1 10470:1 10478:1 10479:1 10481:1 10490:1 10512:1 10513:1 10517:2 10536:3 10537:1 10548:1 10559:1 10570:1 10585:1 10593:2 10606:1 10607:1 10611:1 10613:1 10615:1 10625:2 10648:4 10664:1 10679:1 10682:4 10683:1 10695:3 10717:2 10718:9 10729:1 10734:1 10736:1 10737:4 10743:2 10744:8 10751:2 10755:1 10760:2 10772:1 10773:1 10774:1 10777:1 10780:1 10782:1 10783:1 10789:1 10790:1 10791:1 10793:1 10796:2 10797:1 10798:1 10805:1 10812:50 10814:1 10817:1 10823:1 10825:1 10833:1 10838:1 10841:3 10843:8 10849:1 10855:4 10866:1 10871:3 10872:1 10886:2 10888:1 10894:1 10901:1 10903:1 10908:1 10914:1 10921:1 10940:4 10941:1 10942:1 10946:2 10962:1 10981:8 10983:1 10990:1 10998:8 11002:1 11004:1 11022:1 11033:1 11034:3 11037:1 11038:1 11041:1 11045:1 11057:1 11072:2 11078:1 11082:2 11087:1 11110:1 11112:2 11113:3 11114:1 11118:1 11121:2 11125:6 11131:1 11150:3 11164:1 11170:1 11176:1 11190:1 11195:2 11201:1 11203:1 11212:1 11227:1 11228:2 11229:2 11232:2 11246:1 11247:4 11248:3 11260:5 11285:1 11297:3 11300:1 11301:2 11321:1 11322:1 11329:1 11332:1 11337:1 11340:3 11342:2 11347:1 11352:1 11354:1 11357:2 11363:5 11379:4 11382:3 11397:1 11401:6 11403:3 11413:1 11417:1 11423:4 11431:2 11436:17 11452:3 11457:2 11460:1 11466:1 11470:1 11485:1 11487:2 11509:4 11516:1 11528:1 11530:1 11548:1 11549:1 11569:2 11582:1 11584:3 11594:3 11597:8 11618:1 11620:3 11621:1 11625:1 11651:4 11656:1 11658:1 11665:1 11668:1 11691:2 11709:6 11711:1 11714:1 11722:1 11725:1 11727:4 11728:1 11729:1 11737:2 11745:1 11747:1 11752:1 11758:1 11764:1 11771:2 11774:1 11776:6 11779:1 11782:1 11785:5 11786:2 11788:2 11799:11 11827:1 11833:1 11842:1 11848:1 11849:2 11854:1 11855:2 11857:1 11871:1 11881:1 11885:1 11888:2 11896:1 11898:1 11910:1 11913:1 11916:1 11921:1 11926:1 11943:3 11944:1 11947:1 11949:1 11950:5 11957:1 11966:1 11987:1 11990:3 11995:1 11997:1 12003:2 12004:8 12005:1 12011:4 12014:1 12015:1 12019:1 12021:1 12022:1 12024:3 12025:2 12032:1 12035:2 12038:1 12042:2 12044:1 12046:1 12047:1 12058:1 12059:1 12063:1 12067:1 12077:1 12089:1 12094:1 12095:3 12102:1 12110:4 12118:1 12128:4 12129:1 12133:1 12136:1 12137:2 12143:1 12156:1 12165:1 12168:1 12183:1 12186:1 12196:14 12205:1 12211:1 12213:1 12214:1 12229:2 12240:1 12241:1 12257:2 12259:1 12262:1 12285:1 12290:1 12323:1 12344:1 12345:6 12353:1 12356:1 12366:1 12370:1 12373:1 12377:1 12378:1 12379:1 12382:1 12386:2 12399:1 12401:2 12402:2 12418:11 12423:2 12435:2 12436:1 12444:1 12445:2 12446:1 12450:1 12453:1 12457:3 12463:2 12466:1 12467:8 12471:3 12473:1 12477:1 12481:1 12483:1 12484:1 12486:1 12495:5 12501:5 12502:3 12503:2 12505:1 12506:7 12511:2 12512:2 12521:1 12525:1 12548:2 12554:1 12557:5 12561:2 12572:2 12594:1 12614:1 12624:1 12625:1 12629:1 12630:1 12631:2 12632:2 12633:1 12643:2 12652:5 12658:1 12664:8 12673:1 12674:1 12678:1 12702:1 12715:3 12716:1 12727:1 12733:1 12735:1 12739:1 12751:4 12755:1 12757:2 12762:4 12773:1 12776:1 12778:3 12779:1 12781:1 12800:1 12804:1 12810:3 12821:2 12825:1 12839:1 12855:1 12856:1 12857:1 12861:2 12866:1 12868:1 12879:5 12907:1 12913:1 12915:1 12920:1 12927:1 12929:3 12930:1 12932:1 12950:2 12962:1 12973:1 12974:14 12981:5 12984:1 12991:4 13001:1 13002:1 13007:1 13008:1 13012:2 13018:1 13021:3 13025:1 13028:1 13051:1 13052:1 13054:2 13064:4 13068:1 13069:5 13076:2 13090:2 13091:2 13099:1 13105:1 13107:1 13108:5 13111:1 13118:1 13120:1 13130:3 13140:1 13151:1 13153:1 13159:1 13163:1 13175:1 13187:1 13195:1 13197:4 13198:1 13228:3 13229:1 13254:2 13259:1 13270:1 13275:1 13276:1 13278:1 13280:1 13281:1 13288:1 13291:1 13299:5 13305:1 13311:1 13316:1 13322:2 13328:1 13330:1 13331:1 13336:2 13337:1 13342:1 13343:1 13346:1 13347:1 13348:4 13354:1 13356:1 13359:1 13376:1 13388:1 13405:1 13411:2 13412:9 13413:3 13414:1 13417:1 13423:3 13425:4 13430:3 13431:4 13433:1 13434:5 13436:6 13437:1 13439:2 13441:12 13449:1 13450:8 13451:7 13453:8 13465:1 13466:1 13472:1 13474:12 13475:8 13493:1 13495:1 13498:5 13502:5 13503:1 13512:3 13522:1 13525:1 13528:1 13532:8 13533:1 13534:3 13555:2 13567:1 13570:1 13585:1 13587:1 13595:1 13598:1 13599:2 13600:10 13606:4 13610:8 13612:4 13630:3 13635:3 13636:11 13637:1 13640:1 13650:3 13654:1 13664:2 13680:1 13684:3 13696:3 13700:1 13702:5 13703:3 13708:1 13711:4 13721:2 13726:1 13741:2 13747:2 13751:1 13756:18 13757:1 13777:1 13789:1 13801:2 13810:4 13817:1 13821:1 13823:1 13824:8 13844:4 13845:2 13863:2 13875:2 13878:1 13880:1 13886:1 13889:1 13891:1 13892:1 13898:1 13902:6 13904:2 13908:8 13911:1 13917:1 13929:1 13934:1 13937:7 13944:1 13949:1 13955:1 13957:2 13960:4 13962:1 13966:2 13974:5 13977:2 13978:1 13992:1 14002:4 14011:1 14013:1 14048:2 14051:1 14055:2 14073:1 14079:1 14084:3 14088:1 14094:1 14096:3 14098:1 14100:8 14108:1 14133:8 14134:1 14144:1 14148:10 14150:1 14152:1 14181:13 14192:1 14236:2 14247:1 14257:2 14262:1 14271:2 14274:1 14275:1 14286:2 14289:3 14293:8 14296:7 14298:1 14299:1 14304:1 14319:1 14325:1 14328:1 14330:1 14333:1 14339:1 14349:1 14350:1 14356:1 14364:1 14366:2 14371:1 14381:3 14383:1 14396:2 14401:1 14402:1 14411:2 14420:2 14422:1 14436:2 14447:1 14449:1 14452:3 14458:1 14471:1 14474:3 14478:1 14484:4 14485:1 14515:3 14519:12 14525:9 14527:1 14540:1 14543:1 14553:1 14555:6 14559:3 14561:1 14563:1 14574:2 14575:1 14581:2 14583:10 14590:5 14592:1 14594:6 14599:1 14601:2 14608:2 14609:5 14610:5 14637:1 14644:1 14663:2 14672:1 14680:1 14681:8 14692:2 14694:4 14707:4 14708:1 14715:2 14718:6 14757:1 14765:2 14770:2 14781:1 14798:1 14801:1 14814:2 14815:1 14823:2 14826:6 14828:1 14829:1 14830:2 14831:1 14841:2 14845:2 14854:1 14860:1 14861:2 14867:1 14868:1 14870:2 14873:1 14884:6 14887:1 14897:1 14900:2 14901:1 14903:1 14909:5 14920:1 14935:1 14942:1 14962:1 14965:7 14968:5 14979:2 14980:5 14994:1 15004:1 15005:2 15008:2 15009:4 15010:1 15015:1 15019:2 15021:1 15030:1 15036:1 15040:1 15050:1 15051:1 15054:1 15068:1 15076:1 15085:9 15089:9 15113:4 15117:3 15118:1 15122:2 15125:1 15131:1 15134:2 15143:1 15146:1 15153:1 15158:1 15170:1 15177:1 15183:1 15188:1 15193:1 15195:3 15203:1 15206:5 15211:1 15235:1 15241:1 15243:2 15248:1 15253:1 15258:4 15274:2 15282:1 15283:1 15290:8 15302:1 15314:1 15324:1 15342:1 15363:2 15367:1 15394:1 15396:1 15398:1 15405:2 15421:1 15445:4 15480:1 15486:1 15490:1 15491:1 15497:2 15498:1 15502:1 15503:6 15516:1 15523:1 15528:1 15546:2 15547:1 15568:8 15576:2 15585:1 15593:1 15613:4 15618:7 15628:1 15629:1 15633:2 15637:4 15658:1 15665:1 15666:14 15675:2 15687:1 15693:4 15695:1 15696:5 15698:2 15704:1 15708:1 15712:2 15713:3 15715:2 15723:1 15724:3 15727:1 15728:1 15731:1 15740:1 15745:1 15747:2 15752:7 15756:1 15764:1 15771:1 15772:1 15773:2 15778:1 15789:4 15790:1 15799:1 15820:2 15829:1 15836:1 15840:1 15854:2 15863:1 15864:2 15867:1 15872:1 15881:2 15896:1 15905:1 15911:1 15926:1 15930:2 15934:1 15937:2 15959:6 15962:1 15966:1 15972:1 15974:1 15976:1 15978:44 15986:2 15990:2 15996:3 16001:2 16006:8 16008:1 16016:5 16017:1 16021:2 16022:2 16029:1 16030:1 16033:1 16037:1 16062:1 16072:1 16077:2 16106:1 16110:2 16122:1 16127:1 16130:1 16139:1 16156:1 16160:3 16175:1 16179:1 16183:5 16187:2 16202:1 16206:1 16217:2 16221:6 16235:2 16243:1 16247:1 16263:1 16264:1 16271:1 16276:1 16278:1 16279:1 16287:1 16288:1 16298:1 16331:1 16338:3 16343:3 16344:1 16345:1 16346:1 16356:1 16358:1 16361:1 16362:1 16363:1 16366:5 16380:1 16386:2 16388:2 16389:4 16394:1 16400:1 16410:1 16411:1 16418:1 16421:1 16431:1 16434:3 16482:1 16487:1 16501:1 16514:1 16515:3 16532:1 16540:2 16545:1 16551:1 16558:1 16561:1 16571:2 16579:2 16582:10 16584:1 16585:1 16594:2 16595:3 16597:3 16604:1 16616:1 16623:1 16630:1 16633:3 16640:1 16655:1 16660:1 16666:6 16672:1 16675:1 16679:2 16691:2 16694:1 16696:1 16716:7 16717:1 16726:1 16732:1 16739:1 16740:1 16760:2 16806:1 16812:5 16817:3 16822:19 16828:1 16830:1 16834:1 16838:1 16869:1 16879:3 16883:1 16884:1 16893:1 16894:1 16901:1 16902:6 16905:1 16918:1 16932:1 16937:2 16942:1 16945:1 16946:1 16964:1 16967:2 16980:1 17001:1 17005:1 17010:1 17014:3 17019:1 17026:1 17027:1 17032:1 17039:1 17040:1 17042:4 17058:1 17059:1 17067:2 17072:7 17094:2 17104:3 17106:5 17108:1 17118:1 17124:1 17125:1 17128:3 17140:1 17146:1 17161:1 17171:1 17177:1 17178:1 17189:1 17191:2 17192:1 17193:1 17202:1 17207:6 17213:1 17216:1 17219:1 17222:1 17237:2 17239:2 17242:1 17251:8 17252:1 17255:1 17263:1 17270:4 17301:1 17306:5 17324:7 17342:2 17353:1 17362:1 17370:1 17380:1 17388:1 17389:2 17394:1 17408:37 17423:3 17434:1 17436:9 17437:5 17438:1 17440:5 17443:2 17444:3 17455:1 17465:1 17474:6 17475:1 17482:1 17486:2 17489:1 17492:1 17493:4 17495:7 17504:1 17507:1 17508:1 17510:1 17512:2 17516:1 17517:1 17519:1 17520:1 17524:1 17531:2 17532:2 17544:1 17546:2 17552:2 17572:1 17573:1 17576:1 17583:3 17586:1 17590:1 17613:1 17615:5 17620:1 17627:1 17629:1 17631:2 17643:2 17644:1 17645:2 17672:1 17680:1 17684:2 17687:7 17690:1 17692:1 17696:1 17709:1 17723:1 17753:1 17779:3 17780:1 17783:1 17787:1 17790:1 17802:5 17810:1 17815:1 17817:1 17820:1 17822:1 17825:3 17846:1 17863:2 17873:1 17877:1 17878:3 17886:1 17889:1 17890:1 17891:8 17894:1 17905:1 17912:13 17920:1 17926:1 17933:3 17934:3 17939:1 17960:1 17961:1 17968:1 17973:1 17989:1 17990:2 17992:1 18000:1 18009:1 18017:2 18019:1 18022:1 18033:2 18035:1 18039:1 18048:1 18058:1 18068:11 18075:4 18084:1 18086:1 18098:4 18100:4 18101:1 18108:1 18123:1 18131:1 18132:1 18143:2 18144:1 18147:1 18148:1 18168:2 18176:3 18193:1 18198:3 18201:1 18210:2 18211:1 18212:1 18213:1 18221:5 18230:4 18233:2 18246:2 18247:1 18249:5 18253:1 18255:1 18261:2 18263:1 18265:5 18266:1 18269:3 18271:1 18282:3 18289:3 18290:1 18310:1 18313:1 18318:1 18319:1 18325:3 18326:2 18330:2 18342:1 18343:1 18344:2 18355:4 18366:2 18367:1 18373:1 18380:2 18387:6 18389:8 18392:24 18393:3 18398:2 18399:1 18403:1 18412:2 18419:1 18428:2 18442:4 18458:1 18465:2 18473:4 18498:2 18509:1 18516:1 18529:1 18550:1 18555:2 18557:2 18563:3 18569:3 18584:1 18585:2 18589:1 18612:2 18613:4 18614:1 18631:1 18636:2 18641:3 18643:8 18657:3 18686:2 18690:9 18693:1 18699:1 18713:5 18720:1 18722:7 18735:6 18738:1 18747:2 18751:7 18753:5 18760:2 18764:1 18766:1 18767:1 18768:1 18788:1 18792:1 18799:1 18801:6 18811:4 18819:2 18834:3 18836:1 18838:1 18850:5 18852:1 18860:1 18863:1 18865:1 18869:1 18870:2 18874:2 18877:1 18899:4 18907:4 18914:1 18932:1 18934:2 18935:1 18937:1 18941:1 18945:1 18947:1 18953:3 18956:2 18958:4 18960:2 18964:1 18966:1 18978:1 19001:8 19005:1 19007:1 19015:1 19020:18 19021:2 19031:4 19032:1 19035:2 19036:1 19050:3 19057:2 19085:1 19098:1 19116:1 19130:8 19132:1 19137:1 19140:2 19147:1 19156:1 19165:6 19171:2 19174:1 19177:9 19184:1 19189:1 19208:2 19214:1 19278:3 19280:1 19301:1 19311:2 19312:1 19331:1 19333:1 19336:1 19350:1 19352:1 19358:4 19360:4 19365:4 19367:1 19369:1 19386:1 19389:1 19390:1 19398:1 19399:1 19411:1 19412:1 19433:1 19438:1 19455:1 19458:2 19465:4 19470:4 19493:1 19499:1 19510:1 19518:3 19522:1 19526:2 19528:1 19537:1 19545:1 19549:1 19558:1 19559:1 19600:5 19604:1 19606:1 19607:1 19615:1 19618:2 19619:1 19627:1 19642:1 19643:3 19644:1 19659:2 19660:2 19661:2 19664:1 19672:1 19673:1 19674:7 19684:1 19687:1 19689:1 19691:1 19692:1 19698:1 19699:1 19718:1 19721:1 19722:2 19740:3 19748:1 19762:1 19767:1 19769:1 19780:1 19791:1 19812:1 19818:2 19823:2 19824:8 19825:1 19831:1 19844:1 19852:1 19856:1 19869:1 19870:1 19873:1 19878:1 19883:1 19888:2 19894:1 19905:1 19916:2 19918:2 19919:1 19925:1 19930:2 19932:1 19934:1 19944:3 19957:1 19996:3 20003:1 20033:1 20036:1 20044:1 20052:1 20058:1 20059:5 20060:6 20076:1 20079:1 20081:1 20082:5 20083:1 20096:2 20097:1 20105:1 20117:1 20118:3 20124:1 20126:4 20150:1 20158:1 20159:1 20175:1 20177:5 20178:2 20181:1 20185:5 20188:1 20191:4 20193:1 20207:3 20210:1 20212:2 20215:7 20247:2 20255:6 20263:3 20270:2 20271:1 20273:1 20276:1 20290:1 20311:1 20328:1 20330:1 20342:1 20350:1 20386:1 20388:3
14 5:1 8:1 20:1 21:2 49:1 58:1 69:2 72:1 73:1 74:1 88:8 113:1 115:2 116:2 118:1 119:1 131:1 133:1 134:1 140:6 143:1 148:2 152:1 162:1 166:1 183:3 191:1 206:1 208:2 216:1 217:1 226:1 238:2 257:1 272:1 273:1 274:2 277:2 282:2 284:1 289:4 307:1 308:1 311:1 344:1 356:1 364:9 366:9 371:2 374:1 376:4 388:1 392:1 400:1 403:1 406:3 417:2 420:1 421:1 423:1 430:3 433:1 440:1 441:2 442:1 448:1 453:1 455:1 456:1 467:9 470:1 475:1 477:1 480:1 484:1 492:1 493:9 495:2 496:1 502:1 509:1 513:1 528:2 531:1 547:1 548:8 558:1 559:4 569:1 576:3 584:2 590:1 592:1 609:1 611:1 624:2 633:2 667:4 669:1 675:2 678:1 682:1 697:2 700:2 703:5 706:3 717:2 730:1 754:1 791:1 800:11 801:3 802:3 805:5 828:1 841:1 866:1 868:2 874:1 877:1 884:2 885:3 897:1 914:1 919:2 932:1 936:1 939:6 950:2 955:2 956:1 984:3 1000:1 1014:2 1015:1 1016:1 1018:2 1025:1 1028:5 1031:2 1037:1 1039:2 1046:2 1059:1 1060:1 1070:1 1079:2 1081:6 1082:1 1116:2 1128:1 1134:1 1142:1 1146:2 1186:2 1190:1 1196:1 1204:1 1219:1 1224:1 1234:1 1237:1 1241:2 1246:5 1247:1 1252:1 1253:1 1256:3 1262:1 1266:1 1270:1 1273:2 1290:2 1295:1 1310:3 1311:3 1313:1 1315:2 1324:1 1330:7 1331:10 1332:1 1333:1 1334:2 1342:1 1355:1 1366:1 1367:1 1371:1 1373:1 1380:4 1382:1 1388:2 1392:1 1416:1 1419:7 1428:1 1430:1 1432:6 1438:1 1442:3 1443:1 1445:3 1449:1 1467:3 1468:4 1477:1 1487:1 1492:2 1499:2 1510:1 1514:1 1517:1 1524:1 1525:1 1528:2 1535:1 1536:2 1542:1 1545:2 1548:1 1553:2 1561:1 1562:2 1565:1 1571:1 1572:1 1578:1 1585:2 1596:1 1601:1 1603:1 1609:3 1617:1 1620:1 1634:1 1637:2 1640:1 1644:1 1647:15 1653:3 1654:1 1658:1 1668:2 1672:2 1674:2 1675:1 1679:1 1692:2 1721:1 1745:1 1758:6 1773:3 1777:2 1786:1 1789:1 1796:1 1797:2 1818:2 1822:1 1827:1 1828:1 1830:1 1834:1 1836:1 1839:3 1840:1 1843:3 1845:3 1846:2 1847:2 1849:1 1852:1 1854:1 1858:7 1860:1 1865:1 1867:1 1869:1 1875:4 1880:1 1884:1 1895:1 1911:1 1912:3 1915:1 1921:1 1934:1 1941:1 1942:1 1943:1 1945:3 1946:1 1961:1 1969:1 1980:2 1993:2 2003:3 2004:6 2013:1 2016:2 2021:1 2040:1 2071:1 2077:1 2084:1 2089:1 2100:5 2117:2 2128:1 2143:2 2146:2 2149:6 2157:4 2180:1 2182:1 2183:1 2186:1 2189:1 2197:1 2198:2 2199:1 2201:1 2203:1 2205:1 2230:1 2235:5 2251:4 2253:3 2266:1 2271:1 2280:3 2282:2 2289:2 2296:1 2298:3 2299:1 2313:5 2315:2 2320:1 2327:5 2329:3 2344:1 2349:1 2355:1 2358:9 2360:1 2369:1 2378:1 2379:4 2384:1 2385:2 2399:1 2404:1 2406:1 2407:2 2416:1 2418:1 2423:1 2424:1 2443:1 2455:3 2456:1 2481:1 2484:1 2504:8 2509:1 2524:5 2533:8 2536:1 2540:3 2545:1 2556:1 2559:1 2560:2 2563:12 2570:2 2571:1 2572:2 2598:6 2600:5 2605:1 2625:1 2630:2 2632:4 2642:1 2656:2 2657:1 2658:3 2659:1 2661:1 2663:2 2664:1 2665:1 2666:1 2669:1 2671:2 2684:1 2696:2 2697:2 2701:1 2713:1 2715:1 2716:1 2726:1 2737:3 2747:1 2749:1 2751:3 2761:1 2768:1 2775:1 2778:1 2781:1 2782:6 2787:1 2788:1 2789:2 2812:1 2814:1 2816:1 2817:5 2822:1 2824:1 2831:12 2837:1 2851:2 2856:1 2858:1 2861:1 2887:3 2903:4 2905:7 2912:1 2917:1 2923:4 2927:4 2930:3 2931:1 2933:2 2935:1 2937:1 2939:1 2943:1 2951:2 2961:3 2971:1 2980:3 2982:3 2983:2 2989:1 2992:2 2998:2 3001:7 3007:1 3015:1 3021:1 3026:3 3028:9 3036:1 3039:2 3043:1 3044:1 3046:2 3047:2 3048:2 3049:1 3053:2 3063:2 3068:1 3069:2 3070:1 3071:4 3081:1 3082:2 3083:1 3093:2 3094:1 3110:4 3111:1 3112:2 3114:2 3116:9 3118:3 3122:1 3123:5 3125:2 3126:1 3129:1 3133:3 3135:1 3136:3 3142:6 3144:2 3146:2 3149:4 3151:1 3156:1 3168:4 3169:1 3193:1 3199:1 3202:3 3210:2 3212:1 3215:1 3222:1 3226:1 3231:1 3250:2 3265:1 3266:1 3267:1 3270:2 3272:1 3281:11 3283:2 3294:1 3295:1 3306:2 3312:1 3316:2 3321:1 3327:1 3328:2 3329:2 3345:1 3352:1 3357:4 3358:2 3378:2 3389:1 3390:1 3396:2 3400:1 3417:1 3420:1 3431:3 3435:1 3446:1 3456:2 3458:1 3460:1 3462:1 3474:1 3489:1 3493:2 3501:2 3507:1 3510:3 3512:1 3518:2 3521:1 3536:1 3558:1 3560:11 3562:4 3568:5 3578:1 3580:1 3581:12 3583:3 3585:1 3587:2 3588:2 3590:1 3599:1 3600:1 3607:1 3609:1 3629:1 3631:4 3633:1 3638:2 3642:2 3655:1 3671:2 3679:1 3692:2 3706:11 3707:3 3726:12 3731:2 3732:2 3733:2 3736:1 3738:1 3751:1 3753:2 3763:1 3766:1 3771:1 3775:1 3777:10 3780:1 3788:1 3811:5 3819:3 3820:1 3830:1 3834:1 3836:1 3837:1 3841:1 3846:1 3857:1 3871:2 3872:1 3873:2 3879:1 3880:1 3886:3 3892:1 3901:2 3902:1 3905:5 3910:1 3919:1 3920:7 3927:1 3936:1 3948:1 3966:4 3972:2 3975:3 3977:1 3989:1 3991:1 3994:2 3997:1 3998:1 3999:1 4002:2 4013:2 4019:3 4026:3 4031:1 4033:9 4037:4 4054:1 4058:2 4059:3 4067:1 4071:47 4072:2 4073:1 4078:1 4079:1 4080:1 4091:2 4096:1 4098:1 4111:1 4114:5 4128:1 4129:1 4131:11 4140:2 4144:1 4145:12 4152:7 4160:2 4161:1 4162:1 4168:1 4169:10 4175:1 4194:1 4195:5 4196:3 4197:1 4203:1 4210:5 4211:1 4213:1 4225:5 4234:2 4249:2 4251:1 4253:2 4257:1 4266:1 4270:2 4277:1 4291:1 4294:6 4301:1 4305:2 4307:1 4309:1 4311:1 4324:5 4331:1 4343:2 4348:5 4349:5 4366:1 4378:1 4387:1 4412:2 4420:2 4427:4 4436:2 4441:1 4471:2 4473:2 4476:1 4483:1 4486:1 4500:1 4502:1 4506:1 4510:1 4520:1 4544:3 4549:2 4553:11 4556:2 4561:2 4568:2 4572:1 4574:1 4586:1 4596:1 4605:1 4611:1 4622:2 4627:3 4628:3 4635:1 4636:1 4638:2 4641:2 4646:1 4647:1 4649:1 4652:1 4658:2 4667:1 4676:2 4683:1 4686:10 4692:12 4699:8 4708:1 4710:1 4733:2 4734:1 4751:1 4754:2 4759:1 4762:3 4766:1 4768:1 4769:1 4771:3 4772:1 4778:2 4779:2 4794:2 4795:5 4822:1 4824:1 4827:1 4831:1 4834:11 4837:2 4843:1 4847:1 4851:12 4869:3 4885:1 4900:2 4910:1 4914:2 4937:1 4940:2 4959:2 4960:1 4982:6 4989:4 5001:1 5006:5 5016:1 5018:1 5019:1 5023:5 5024:1 5025:1 5039:1 5040:1 5052:1 5055:1 5057:1 5058:7 5067:45 5074:1 5081:1 5082:2 5083:6 5097:1 5101:1 5107:1 5112:1 5131:1 5132:1 5135:1 5153:3 5156:1 5157:1 5185:1 5187:1 5193:1 5200:1 5202:1 5203:16 5206:2 5212:1 5227:1 5228:1 5231:2 5236:2 5237:1 5241:4 5247:1 5256:6 5264:1 5266:7 5271:7 5279:1 5288:1 5291:1 5309:1 5313:2 5314:1 5321:1 5345:1 5347:2 5348:1 5355:1 5362:1 5364:2 5365:5 5366:2 5372:1 5375:2 5382:1 5383:2 5385:2 5387:1 5394:3 5402:1 5406:3 5408:2 5413:1 5416:1 5424:1 5433:1 5434:1 5437:2471 5443:2 5456:3 5458:1 5460:2 5462:1 5468:1 5469:1 5496:1 5497:1 5499:1 5503:1 5507:2 5509:2 5511:1 5518:1 5520:2 5522:1 5529:1 5530:2 5582:1 5583:1 5590:1 5600:1 5604:2 5625:1 5637:1 5644:1 5657:1 5661:1 5672:2 5673:2 5674:1 5679:1 5691:4 5697:3 5713:1 5714:1 5717:2 5718:2 5751:4 5753:4 5755:1 5756:2 5757:1 5760:1 5761:1 5762:1 5763:1 5765:4 5767:1 5771:6 5775:1 5778:1 5780:7 5785:1 5806:2 5813:3 5817:1 5837:2 5856:1 5867:1 5874:1 5879:1 5886:1 5893:3 5904:1 5911:2 5912:1 5916:1 5932:16 5944:1 5962:3 5974:1 5981:1 5982:1 5984:11 5995:1 5996:3 5997:1 6007:1 6020:1 6026:2 6055:1 6059:1 6063:1 6090:1 6092:2 6100:1 6110:1 6111:1 6118:1 6133:1 6153:1 6165:1 6168:1 6174:1 6204:1 6205:1 6208:2 6216:1 6220:1 6232:1 6233:4 6247:2 6262:1 6307:1 6308:1 6311:4 6316:3 6317:2 6321:1 6325:1 6330:1 6339:6 6349:3 6351:3 6352:2 6354:1 6360:1 6364:1 6367:2 6368:1 6372:2 6398:1 6417:1 6420:7 6422:1 6425:4 6450:1 6451:3 6452:1 6453:1 6458:1 6473:1 6475:1 6489:2 6502:9 6508:1 6511:9 6517:8 6519:3 6520:2 6534:1 6541:6 6542:1 6543:1 6547:1 6559:1 6566:1 6571:1 6586:1 6587:3 6588:1 6590:1 6593:1 6596:1 6607:1 6609:1 6615:3 6635:1 6660:1 6661:2 6662:1 6668:1 6675:20 6677:4 6680:1 6681:1 6682:1 6683:4 6688:1 6694:10 6699:2 6708:1 6714:1 6722:1 6725:3 6736:1 6741:1 6746:2 6747:7 6749:1 6752:9 6756:1 6765:1 6771:1 6775:1 6780:2 6801:1 6822:1 6829:2 6837:2 6842:1 6845:15 6866:3 6867:6 6868:3 6873:1 6876:3 6879:1 6880:1 6882:1 6884:1 6885:1 6891:1 6900:1 6902:4 6903:2 6905:4 6913:1 6931:3 6945:3 6947:1 6952:2 6953:1 6955:1 6956:2 6957:2 6960:1 6967:1 6970:2 6976:1 6988:1 7000:2 7005:1 7008:2 7009:1 7010:1 7013:1 7016:1 7024:1 7057:1 7073:1 7078:1 7079:1 7082:2 7084:1 7110:1 7112:1 7113:1 7127:2 7129:3 7136:1 7142:1 7148:6 7156:2 7159:2 7160:6 7161:1 7170:1 7174:1 7185:4 7192:2 7193:1 7205:1 7207:1 7225:1 7258:1 7263:1 7266:7 7268:5 7277:1 7278:1 7281:2 7287:3 7295:3 7297:2 7305:2 7309:2 7327:1 7340:1 7342:2 7353:1 7357:2 7359:1 7361:1 7400:2 7402:1 7403:3 7414:4 7425:1 7427:1 7430:1 7441:1 7443:1 7446:1 7447:1 7459:3 7466:5 7474:3 7484:1 7488:2 7490:3 7497:1 7504:1 7506:2 7512:1 7513:1 7515:1 7516:1 7518:1 7525:1 7526:5 7527:1 7539:1 7548:1 7571:2 7582:5 7585:1 7589:1 7591:1 7593:1 7595:1 7596:2 7601:2 7610:1 7611:4 7612:1 7615:1 7618:1 7622:7 7623:1 7630:1 7631:1 7633:1 7641:4 7643:1 7647:1 7652:2 7653:1 7655:1 7664:2 7669:1 7670:1 7672:1 7678:1 7690:1 7703:6 7707:1 7714:1 7753:1 7767:1 7769:2 7770:1 7771:1 7773:1 7782:5 7783:2 7788:2 7790:3 7794:5 7800:1 7804:1 7825:1 7829:3 7849:1 7852:2 7854:1 7872:1 7882:1 7886:1 7891:1 7895:1 7898:9 7912:1 7914:1 7921:1 7930:1 7941:1 7951:4 7968:2 7975:1 7976:2 7977:2 7983:1 7986:1 7989:2 8016:1 8024:1 8032:1 8033:1 8055:2 8080:2 8084:1 8091:4 8095:3 8110:1 8125:2 8134:1 8137:2 8148:1 8156:1 8162:1 8176:1 8190:2 8195:1 8210:2 8244:1 8246:2 8254:1 8260:1 8267:1 8278:1 8282:2 8290:3 8300:1 8305:1 8311:2 8328:1 8332:1 8334:3 8346:1 8353:1 8358:1 8363:2 8364:4 8373:7 8378:4 8379:2 8386:1 8388:1 8398:2 8427:1 8429:1 8435:1 8455:1 8458:1 8459:1 8465:1 8473:1 8479:1 8524:1 8526:1 8533:1 8541:1 8545:7 8554:2 8556:1 8560:2 8563:1 8572:1 8579:1 8589:7 8590:5 8608:1 8609:1 8611:1 8617:1 8624:1 8626:1 8636:1 8642:1 8643:2 8644:3 8650:2 8651:1 8652:1 8657:1 8663:2 8667:1 8670:2 8684:1 8691:2 8692:1 8695:1 8704:1 8711:2 8712:6 8717:2 8718:1 8721:1 8736:1 8744:1 8745:10 8774:1 8777:1 8784:6 8794:1 8810:2 8820:9 8824:5 8825:2 8831:6 8832:3 8835:4 8836:2 8837:2 8839:3 8840:1 8843:1 8846:6 8847:13 8848:1 8849:1 8851:5 8853:4 8895:1 8911:4 8918:3 8919:1 8925:1 8944:1 8950:1 8997:2 9003:1 9013:1 9020:1 9027:1 9038:1 9041:11 9046:1 9058:2 9061:1 9062:1 9074:2 9080:1 9082:4 9086:1 9091:2 9117:1 9118:1 9122:1 9131:1 9133:1 9138:1 9153:1 9158:9 9176:2 9187:1 9203:2 9204:1 9207:1 9208:1 9212:2 9213:1 9214:1 9216:1 9234:1 9236:3 9241:2 9245:1 9254:3 9260:1 9265:2 9302:1 9308:1 9315:1 9318:2 9321:2 9322:1 9333:1 9337:4 9344:1 9346:1 9347:1 9349:1 9355:2 9372:2 9374:1 9387:1 9392:1 9393:1 9397:1 9402:2 9408:2 9410:1 9420:1 9423:2 9425:4 9428:1 9433:1 9439:1 9441:1 9471:2 9478:1 9492:1 9500:1 9503:1 9508:2 9509:12 9513:1 9514:3 9515:1 9517:2 9518:3 9521:1 9530:2 9535:1 9538:3 9543:4 9544:3 9555:4 9556:1 9558:4 9563:2 9572:1 9575:1 9578:1 9581:1 9582:2 9585:3 9592:11 9607:5 9609:1 9613:1 9622:2 9624:1 9628:1 9632:1 9634:4 9646:1 9658:3 9667:1 9669:2 9674:1 9678:1 9687:1 9689:2 9694:2 9695:1 9696:8 9715:4 9718:1 9723:2 9726:1 9731:3 9732:1 9754:2 9755:1 9762:2 9764:1 9769:1 9780:1 9781:1 9782:8 9810:1 9822:1 9828:1 9830:3 9836:1 9841:3 9846:3 9865:2 9867:1 9888:1 9905:1 9914:1 9916:4 9918:4 9920:1 9925:2 9927:1 9930:1 9937:1 9939:1 9945:2 9946:2 9956:5 9960:2 9966:1 9967:1 9995:6 9999:3 10010:1 10016:1 10017:1 10029:2 10042:1 10064:1 10093:2 10115:1 10116:2 10119:1 10136:1 10140:1 10150:1 10159:1 10160:3 10161:1 10163:1 10168:1 10174:1 10182:2 10184:1 10196:1 10200:1 10206:1 10209:1 10214:1 10220:2 10221:1 10223:3 10224:2 10233:4 10236:2 10238:1 10266:3 10269:3 10275:2 10277:1 10278:3 10293:1 10294:1 10296:1 10299:1 10313:1 10323:2 10328:2 10333:1 10336:1 10341:1 10356:1 10357:2 10363:3 10367:1 10368:2 10374:1 10376:2 10382:2 10387:2 10392:2 10396:1 10397:3 10399:1 10409:1 10410:12 10425:1 10430:1 10448:1 10453:1 10465:1 10466:1 10467:1 10470:1 10478:1 10479:1 10481:1 10490:1 10512:1 10513:1 10517:2 10536:3 10537:1 10548:1 10559:1 10570:1 10585:1 10593:2 10606:1 10607:1 10611:1 10613:1 10615:1 10625:2 10648:4 10664:1 10679:1 10682:4 10683:1 10691:1 10695:3 10717:2 10718:10 10729:1 10734:1 10736:1 10737:4 10743:2 10744:8 10751:2 10755:1 10758:1 10760:2 10772:1 10773:2 10774:1 10777:1 10780:1 10782:1 10783:1 10789:1 10790:1 10791:1 10793:1 10796:2 10797:1 10798:1 10805:1 10812:51 10814:1 10817:1 10823:1 10825:1 10833:1 10838:1 10841:3 10843:8 10849:1 10855:4 10866:1 10871:3 10872:1 10886:2 10888:1 10894:1 10901:1 10903:1 10908:1 10914:1 10921:1 10928:1 10940:4 10941:1 10942:1 10946:2 10962:1 10981:8 10983:1 10990:1 10998:8 11002:1 11004:1 11022:1 11033:1 11034:3 11037:1 11038:1 11041:1 11045:1 11057:1 11072:2 11078:1 11082:2 11087:1 11110:1 11112:2 11113:3 11114:1 11118:1 11121:2 11125:6 11131:1 11150:3 11164:1 11168:1 11170:1 11176:1 11190:1 11195:2 11201:1 11203:1 11212:1 11227:1 11228:2 11229:2 11232:2 11246:1 11247:4 11248:3 11260:5 11285:1 11297:3 11300:1 11301:2 11321:1 11322:1 11329:1 11332:1 11337:1 11340:3 11342:2 11347:1 11352:1 11354:1 11357:2 11363:5 11379:4 11382:3 11397:1 11401:7 11403:3 11413:1 11417:1 11423:4 11431:2 11436:17 11452:3 11457:2 11460:1 11466:1 11470:1 11485:1 11487:3 11509:5 11516:1 11528:1 11530:1 11548:1 11549:1 11569:2 11582:1 11584:3 11594:3 11597:9 11618:1 11620:3 11621:1 11625:1 11651:4 11656:1 11658:1 11665:1 11668:1 11678:1 11691:2 11709:6 11711:1 11714:1 11722:1 11725:1 11727:4 11728:1 11729:1 11737:2 11745:1 11747:1 11752:1 11758:1 11764:1 11771:3 11774:1 11776:6 11779:1 11782:1 11785:5 11786:2 11788:2 11799:12 11827:1 11833:1 11842:1 11848:1 11849:2 11854:1 11855:2 11857:1 11871:1 11881:1 11885:1 11888:2 11896:1 11898:1 11910:1 11913:1 11916:1 11921:1 11926:1 11943:3 11944:1 11947:1 11949:1 11950:5 11957:1 11966:1 11987:1 11990:3 11995:1 11997:1 12003:2 12004:9 12005:1 12011:4 12014:1 12015:1 12019:1 12021:1 12022:1 12024:3 12025:2 12032:1 12035:2 12038:1 12042:2 12044:1 12046:1 12047:1 12058:1 12059:1 12063:1 12067:1 12077:1 12089:1 12094:1 12095:3 12102:1 12110:5 12118:1 12128:4 12129:1 12133:1 12136:1 12137:2 12143:1 12156:1 12165:1 12168:1 12183:1 12186:1 12196:14 12205:1 12211:1 12213:1 12214:1 12229:2 12240:1 12241:1 12257:2 12259:1 12262:1 12285:1 12290:1 12323:1 12344:1 12345:6 12353:1 12356:1 12366:1 12370:1 12373:1 12377:1 12378:1 12379:1 12382:2 12386:2 12399:1 12401:2 12402:2 12418:11 12423:2 12435:2 12436:1 12444:1 12445:2 12446:2 12450:1 12453:2 12454:1 12457:3 12463:2 12466:1 12467:8 12471:3 12473:1 12477:1 12481:1 12483:1 12484:1 12486:1 12495:5 12501:5 12502:3 12503:2 12505:1 12506:7 12511:2 12512:2 12518:1 12521:1 12525:1 12548:2 12554:2 12557:5 12561:2 12572:2 12594:1 12614:1 12624:1 12625:1 12629:1 12630:1 12631:2 12632:2 12633:1 12643:2 12652:5 12658:1 12664:9 12673:1 12674:1 12678:1 12702:1 12715:3 12716:1 12727:1 12733:1 12735:1 12739:1 12751:5 12755:1 12757:2 12762:4 12773:1 12776:1 12778:3 12779:1 12781:1 12800:1 12804:1 12810:3 12821:2 12825:1 12839:1 12855:1 12856:1 12857:1 12861:2 12866:1 12868:1 12879:5 12907:1 12913:1 12915:1 12920:1 12926:1 12927:1 12929:3 12930:1 12932:1 12950:2 12962:1 12973:1 12974:14 12981:5 12984:1 12991:4 13001:1 13002:1 13007:1 13008:1 13012:2 13018:1 13021:3 13025:1 13028:1 13051:1 13052:1 13054:2 13064:5 13068:1 13069:5 13076:2 13090:2 13091:2 13095:1 13099:1 13105:1 13107:1 13108:5 13111:1 13118:1 13120:1 13130:4 13140:1 13151:1 13153:1 13159:1 13163:1 13175:1 13187:1 13195:1 13197:4 13198:1 13228:3 13229:1 13254:2 13259:1 13270:1 13275:1 13276:1 13278:1 13280:1 13281:1 13288:1 13291:1 13299:6 13305:1 13311:1 13316:1 13322:2 13328:1 13330:1 13331:1 13336:2 13337:1 13342:1 13343:1 13346:1 13347:1 13348:4 13354:1 13356:1 13359:1 13376:1 13388:1 13405:1 13411:2 13412:9 13413:3 13414:1 13417:1 13423:3 13425:4 13430:3 13431:4 13433:1 13434:5 13436:6 13437:1 13439:2 13441:13 13449:1 13450:8 13451:7 13453:9 13465:1 13466:1 13472:1 13474:13 13475:8 13493:1 13495:1 13498:5 13502:5 13503:1 13512:3 13522:1 13525:1 13528:1 13532:9 13533:1 13534:3 13555:2 13567:1 13570:1 13585:1 13587:1 13595:1 13598:1 13599:2 13600:10 13606:4 13610:8 13612:4 13630:3 13635:3 13636:12 13637:1 13640:1 13650:3 13654:1 13664:2 13672:1 13680:1 13684:3 13696:3 13700:1 13702:5 13703:3 13708:1 13711:4 13721:2 13726:1 13741:2 13747:2 13751:1 13756:19 13757:1 13777:1 13789:1 13801:2 13810:4 13817:1 13821:1 13823:1 13824:9 13844:4 13845:2 13863:2 13875:2 13878:1 13880:1 13886:1 13889:1 13891:1 13892:1 13898:1 13902:6 13904:2 13908:9 13911:1 13917:1 13929:1 13934:1 13937:7 13944:1 13949:1 13955:1 13957:2 13960:4 13962:1 13966:2 13974:5 13977:2 13978:1 13992:1 14002:4 14011:1 14013:1 14048:2 14051:1 14055:2 14073:1 14079:1 14084:3 14088:1 14094:1 14096:3 14098:1 14100:9 14108:1 14132:1 14133:9 14134:1 14144:1 14148:10 14150:1 14152:1 14181:13 14192:1 14236:2 14240:1 14247:1 14257:2 14262:1 14271:2 14274:1 14275:1 14286:2 14289:3 14293:8 14296:7 14298:1 14299:1 14304:1 14319:1 14325:1 14328:1 14330:1 14333:1 14339:1 14349:1 14350:1 14356:1 14364:1 14366:3 14371:1 14381:3 14383:1 14396:2 14401:1 14402:1 14411:3 14420:2 14422:1 14436:2 14447:1 14449:1 14452:3 14458:1 14469:1 14471:1 14474:3 14478:1 14484:4 14485:1 14515:3 14519:12 14525:9 14527:1 14540:1 14543:2 14553:1 14555:6 14559:3 14561:1 14563:1 14574:2 14575:1 14581:2 14583:11 14590:5 14592:1 14594:6 14599:1 14601:2 14608:2 14609:5 14610:5 14637:1 14644:1 14663:2 14672:1 14680:1 14681:8 14692:2 14694:4 14707:4 14708:1 14715:2 14718:6 14757:1 14765:2 14770:2 14781:1 14798:1 14801:1 14814:2 14815:1 14823:2 14826:6 14828:1 14829:1 14830:2 14831:1 14834:1 14841:2 14845:2 14854:1 14860:1 14861:3 14867:1 14868:1 14870:2 14873:1 14884:6 14887:1 14897:1 14900:2 14901:1 14903:1 14909:6 14920:1 14935:1 14942:1 14962:1 14965:7 14968:5 14979:2 14980:5 14994:1 15004:1 15005:2 15008:2 15009:4 15010:1 15015:1 15019:2 15021:1 15030:1 15036:1 15040:1 15050:1 15051:1 15054:1 15066:1 15068:1 15076:1 15085:10 15089:9 15113:4 15117:3 15118:1 15122:2 15125:1 15131:1 15134:2 15143:1 15146:1 15153:1 15158:1 15170:1 15177:1 15183:1 15188:1 15193:1 15195:3 15203:1 15206:5 15211:1 15235:1 15241:1 15243:2 15248:1 15253:1 15258:4 15274:2 15282:1 15283:1 15290:9 15302:1 15314:1 15324:1 15342:1 15363:2 15367:1 15394:1 15396:1 15398:1 15405:2 15421:1 15437:1 15445:4 15480:1 15486:1 15490:1 15491:1 15497:2 15498:1 15502:1 15503:6 15516:1 15523:1 15528:1 15546:2 15547:1 15568:8 15576:2 15585:1 15593:1 15613:4 15618:7 15628:1 15629:1 15633:2 15637:4 15658:1 15665:1 15666:14 15675:2 15687:1 15693:4 15695:1 15696:5 15698:2 15704:1 15708:1 15712:2 15713:3 15714:1 15715:2 15723:1 15724:3 15727:1 15728:1 15731:1 15740:1 15745:1 15747:2 15752:7 15756:1 15764:1 15771:1 15772:1 15773:2 15778:1 15789:5 15790:1 15799:1 15820:2 15829:1 15836:1 15840:1 15854:2 15863:1 15864:2 15867:1 15872:1 15881:2 15896:1 15905:1 15911:1 15926:1 15930:2 15934:1 15937:2 15959:6 15962:1 15966:1 15972:1 15974:1 15976:1 15978:45 15986:2 15990:2 15996:3 16001:2 16006:9 16008:1 16016:5 16017:1 16021:2 16022:2 16029:1 16030:1 16033:1 16037:1 16062:1 16072:1 16077:2 16106:1 16110:2 16122:1 16127:1 16130:1 16139:1 16156:1 16160:3 16175:1 16179:1 16183:5 16187:2 16202:1 16206:1 16217:2 16221:6 16235:3 16243:1 16247:1 16263:1 16264:2 16271:1 16276:1 16278:1 16279:1 16282:1 16287:1 16288:1 16298:1 16331:1 16338:3 16343:3 16344:1 16345:1 16346:1 16356:1 16358:1 16361:1 16362:1 16363:1 16366:5 16380:1 16386:2 16388:2 16389:4 16394:1 16400:1 16410:1 16411:1 16418:1 16421:1 16431:1 16434:3 16482:1 16487:1 16501:1 16514:1 16515:3 16532:1 16540:2 16545:1 16551:1 16558:1 16561:1 16571:2 16579:2 16582:10 16584:1 16585:1 16594:2 16595:3 16597:3 16604:1 16616:1 16623:1 16630:1 16633:3 16640:1 16655:1 16660:1 16666:6 16672:1 16675:1 16679:2 16691:2 16694:1 16696:1 16716:8 16717:1 16726:1 16732:1 16739:1 16740:1 16760:2 16806:1 16812:5 16817:3 16822:20 16828:1 16830:1 16834:1 16838:1 16869:1 16872:1 16879:4 16883:1 16884:1 16893:1 16894:1 16901:1 16902:6 16903:1 16905:1 16918:1 16932:1 16937:2 16942:1 16945:1 16946:1 16964:1 16967:2 16980:1 17001:1 17005:1 17010:1 17014:3 17019:1 17026:1 17027:1 17032:1 17039:1 17040:1 17042:5 17058:1 17059:1 17067:2 17072:7 17094:2 17104:3 17106:5 17108:1 17118:1 17124:1 17125:1 17128:3 17140:1 17146:1 17161:1 17171:1 17177:1 17178:1 17189:1 17191:2 17192:1 17193:1 17202:1 17207:6 17213:1 17216:1 17219:1 17222:1 17237:2 17239:3 17242:1 17251:9 17252:1 17255:1 17263:1 17270:4 17301:1 17306:5 17324:7 17342:2 17353:1 17362:1 17370:2 17380:1 17388:1 17389:2 17394:1 17408:38 17423:3 17434:1 17436:9 17437:5 17438:1 17440:5 17443:2 17444:3 17455:1 17465:1 17474:6 17475:1 17482:1 17486:2 17489:1 17492:1 17493:4 17495:7 17504:1 17507:1 17508:1 17510:1 17512:2 17516:1 17517:1 17519:1 17520:3 17524:1 17531:2 17532:3 17544:1 17546:2 17552:2 17572:1 17573:1 17576:1 17583:3 17586:1 17590:1 17604:1 17605:1 17608:1 17613:1 17615:5 17620:2 17627:1 17629:1 17631:2 17643:2 17644:1 17645:2 17672:1 17680:1 17684:2 17687:7 17690:1 17692:1 17696:1 17709:1 17723:1 17753:1 17779:3 17780:1 17783:1 17787:1 17790:1 17802:5 17810:1 17815:1 17817:1 17820:1 17822:1 17825:3 17846:1 17863:2 17873:1 17877:1 17878:3 17886:1 17889:1 17890:1 17891:9 17894:1 17905:1 17912:14 17920:1 17926:1 17933:3 17934:3 17939:1 17960:1 17961:1 17968:1 17973:1 17989:1 17990:2 17992:1 18000:1 18009:1 18017:2 18019:1 18022:1 18033:2 18035:1 18039:1 18048:1 18058:1 18068:11 18075:4 18084:1 18086:1 18098:4 18100:4 18101:1 18108:1 18123:1 18131:1 18132:1 18143:2 18144:1 18147:1 18148:1 18168:2 18176:3 18193:1 18198:3 18201:1 18210:2 18211:1 18212:1 18213:1 18221:5 18225:1 18230:4 18233:2 18246:2 18247:1 18249:5 18253:1 18255:1 18261:2 18263:1 18265:5 18266:1 18269:3 18271:1 18282:3 18289:3 18290:1 18310:1 18313:1 18318:1 18319:1 18325:3 18326:2 18330:2 18342:1 18343:1 18344:2 18355:4 18366:2 18367:1 18373:1 18380:2 18387:6 18389:8 18392:24 18393:3 18398:2 18399:1 18403:1 18412:2 18419:1 18428:2 18442:4 18458:1 18465:2 18473:4 18498:2 18509:1 18516:1 18529:1 18550:1 18555:2 18557:2 18563:3 18569:3 18584:1 18585:3 18589:1 18612:2 18613:4 18614:1 18631:1 18636:2 18641:3 18643:8 18657:4 18686:2 18690:10 18693:1 18699:1 18713:5 18720:1 18722:7 18735:6 18738:1 18747:2 18751:7 18753:5 18760:2 18764:1 18766:1 18767:1 18768:1 18788:1 18792:1 18799:1 18801:6 18811:4 18819:2 18834:3 18836:1 18838:1 18850:5 18852:1 18860:1 18863:1 18865:1 18869:1 18870:2 18874:2 18877:1 18899:4 18907:5 18914:1 18932:1 18934:2 18935:1 18937:1 18941:1 18945:1 18947:1 18953:3 18956:2 18958:4 18960:2 18964:1 18966:1 18978:1 19001:9 19005:1 19007:1 19015:1 19020:19 19021:2 19031:4 19032:1 19035:2 19036:1 19050:3 19057:2 19085:1 19098:1 19116:1 19130:9 19132:1 19137:1 19140:2 19147:1 19156:1 19165:7 19171:2 19174:1 19177:10 19184:1 19189:1 19208:2 19210:1 19214:1 19278:3 19280:1 19301:1 19311:2 19312:1 19331:1 19333:1 19336:1 19350:1 19352:1 19358:4 19360:4 19365:4 19367:1 19369:1 19386:1 19389:1 19390:1 19398:1 19399:1 19411:1 19412:1 19433:1 19438:1 19455:1 19458:2 19465:4 19470:4 19493:1 19499:1 19510:1 19518:3 19522:1 19526:2 19528:1 19537:1 19545:1 19549:1 19558:1 19559:1 19600:5 19604:1 19606:1 19607:1 19615:1 19618:2 19619:1 19627:1 19642:1 19643:3 19644:1 19659:2 19660:2 19661:2 19664:1 19672:1 19673:1 19674:7 19684:1 19687:1 19689:1 19691:1 19692:1 19698:1 19699:1 19718:1 19721:1 19722:2 19740:4 19748:1 19762:1 19767:1 19769:1 19780:2 19791:1 19812:1 19818:2 19823:2 19824:8 19825:1 19831:1 19844:1 19852:1 19856:1 19869:1 19870:1 19873:1 19878:1 19883:1 19888:2 19894:1 19905:1 19916:2 19918:2 19919:1 19925:1 19930:2 19932:1 19934:1 19944:3 19957:1 19996:3 20003:1 20033:1 20036:1 20044:1 20052:1 20058:1 20059:5 20060:6 20076:1 20079:1 20081:1 20082:5 20083:1 20096:2 20097:1 20105:1 20117:1 20118:3 20124:1 20126:4 20150:1 20158:1 20159:1 20175:1 20177:6 20178:2 20181:1 20185:5 20188:2 20191:4 20193:1 20207:3 20210:1 20212:2 20215:8 20247:3 20255:6 20263:3 20270:2 20271:1 20273:1 20276:1 20290:1 20311:1 20328:1 20330:1 20342:1 20350:1 20386:1 20388:3
14 5:2 8:1 20:1 21:2 49:1 58:1 69:2 72:1 73:1 74:1 88:8 113:1 115:2 116:2 118:1 119:1 131:1 133:1 134:1 140:7 143:1 148:2 152:2 162:1 166:1 183:3 191:1 206:1 208:2 216:1 217:1 226:1 238:2 257:1 272:1 273:1 274:2 277:2 282:2 284:1 289:4 307:1 308:1 311:1 344:1 356:1 364:9 366:9 371:2 374:1 376:5 388:1 392:1 400:1 403:1 406:3 411:1 417:2 419:1 420:1 421:1 423:1 430:3 433:1 440:1 441:2 442:1 448:1 453:1 455:1 456:1 467:9 470:1 475:1 477:1 480:2 484:1 492:1 493:9 495:2 496:1 502:1 509:1 513:1 528:2 531:1 547:1 548:9 558:1 559:4 569:1 576:3 584:2 590:1 592:1 609:1 611:1 616:1 624:2 633:2 647:1 667:4 669:2 675:2 678:1 682:1 697:2 700:2 703:5 706:3 717:2 730:1 754:1 791:1 800:11 801:3 802:4 805:5 828:1 841:2 866:1 868:2 874:1 877:1 884:2 885:3 897:1 913:1 914:1 919:2 932:1 936:1 939:6 950:2 955:2 956:1 984:3 1000:1 1014:2 1015:1 1016:1 1018:2 1025:1 1028:5 1031:2 1037:1 1039:2 1046:2 1059:1 1060:1 1070:1 1079:2 1081:6 1082:1 1116:2 1128:1 1134:1 1142:1 1146:2 1186:2 1190:1 1196:1 1204:1 1219:1 1224:1 1234:1 1237:1 1241:2 1246:5 1247:1 1252:1 1253:1 1256:3 1262:1 1266:1 1270:1 1273:2 1290:2 1295:1 1310:4 1311:4 1313:1 1315:2 1324:1 1330:7 1331:10 1332:1 1333:1 1334:2 1342:1 1350:1 1355:1 1366:1 1367:1 1371:1 1373:1 1380:5 1382:1 1388:2 1392:1 1416:1 1419:7 1428:1 1430:1 1432:6 1438:1 1442:3 1443:1 1445:3 1449:3 1467:3 1468:4 1477:1 1487:1 1492:2 1499:3 1510:1 1513:1 1514:1 1517:1 1524:1 1525:1 1528:2 1535:1 1536:2 1542:1 1545:2 1548:1 1553:2 1561:1 1562:2 1565:1 1571:1 1572:1 1578:1 1585:2 1596:1 1601:1 1603:1 1609:3 1617:1 1620:1 1634:1 1637:2 1640:1 1644:1 1647:16 1653:3 1654:1 1658:1 1668:2 1672:2 1674:2 1675:1 1679:1 1692:2 1721:1 1745:1 1758:6 1763:1 1773:3 1777:2 1786:1 1789:1 1796:1 1797:2 1818:2 1822:1 1827:1 1828:1 1830:1 1834:1 1836:1 1839:3 1840:1 1843:3 1845:3 1846:2 1847:2 1849:1 1852:1 1854:1 1858:7 1860:1 1865:1 1867:1 1869:1 1875:4 1880:1 1884:1 1891:1 1895:1 1911:1 1912:3 1915:1 1921:1 1934:2 1941:1 1942:1 1943:1 1945:3 1946:1 1961:1 1969:1 1980:2 1993:2 2003:3 2004:6 2013:1 2016:2 2021:1 2040:1 2071:1 2077:1 2084:1 2089:1 2100:5 2117:2 2128:1 2143:2 2146:2 2149:6 2157:4 2180:1 2182:1 2183:1 2186:1 2189:1 2197:1 2198:2 2199:1 2201:1 2203:1 2205:1 2230:1 2235:5 2239:1 2247:1 2251:4 2253:3 2261:1 2266:1 2271:1 2280:3 2282:2 2289:2 2296:1 2298:3 2299:1 2313:5 2315:2 2320:1 2327:5 2329:3 2344:1 2349:1 2352:1 2355:1 2358:9 2360:1 2369:1 2378:1 2379:5 2384:1 2385:2 2399:1 2404:1 2406:1 2407:2 2416:1 2418:1 2423:1 2424:1 2443:1 2455:3 2456:1 2481:1 2484:1 2504:8 2509:1 2524:5 2533:8 2536:2 2540:4 2545:1 2556:1 2559:1 2560:2 2563:12 2570:2 2571:1 2572:2 2598:6 2600:5 2605:1 2625:1 2630:2 2632:4 2642:1 2656:2 2657:1 2658:3 2659:1 2661:1 2663:2 2664:1 2665:1 2666:1 2669:1 2671:2 2684:1 2696:2 2697:2 2701:1 2713:1 2715:1 2716:1 2726:1 2737:4 2747:1 2749:1 2751:3 2761:1 2768:1 2775:1 2778:1 2781:1 2782:7 2787:2 2788:1 2789:2 2812:1 2814:1 2816:1 2817:5 2822:1 2824:1 2831:12 2837:1 2851:2 2856:1 2858:1 2861:1 2887:3 2903:4 2905:7 2912:1 2917:1 2923:4 2927:5 2930:4 2931:1 2933:2 2935:1 2937:1 2939:1 2943:1 2951:2 2961:3 2971:1 2980:3 2982:3 2983:2 2989:1 2992:3 2998:2 3001:7 3007:1 3015:1 3021:1 3026:3 3028:9 3036:1 3039:2 3043:1 3044:1 3046:2 3047:2 3048:2 3049:1 3053:2 3062:1 3063:2 3068:1 3069:2 3070:1 3071:4 3081:1 3082:2 3083:1 3093:3 3094:1 3110:4 3111:1 3112:2 3114:2 3116:10 3118:3 3122:1 3123:5 3125:2 3126:1 3129:1 3133:3 3135:1 3136:3 3142:6 3144:2 3146:2 3149:4 3151:1 3156:1 3168:4 3169:1 3193:1 3199:1 3202:3 3210:2 3212:1 3215:1 3222:1 3226:1 3231:1 3250:2 3252:1 3265:1 3266:1 3267:1 3270:2 3272:1 3281:11 3283:2 3294:1 3295:2 3306:2 3312:1 3316:2 3321:1 3327:1 3328:2 3329:2 3345:1 3352:1 3357:4 3358:2 3378:2 3389:1 3390:1 3396:2 3400:1 3417:1 3420:1 3431:3 3435:1 3446:1 3456:2 3458:1 3460:1 3462:1 3474:1 3489:1 3493:2 3501:2 3507:1 3510:3 3512:1 3518:2 3521:1 3536:1 3558:1 3560:11 3562:4 3568:5 3578:1 3580:1 3581:12 3583:3 3585:1 3587:2 3588:2 3590:1 3599:2 3600:1 3607:1 3609:1 3629:1 3631:4 3633:1 3638:2 3642:2 3655:1 3671:2 3679:1 3692:2 3706:11 3707:3 3726:12 3731:2 3732:2 3733:2 3736:1 3738:1 3751:1 3753:2 3763:1 3766:1 3771:1 3775:1 3777:10 3780:1 3788:1 3811:6 3819:3 3820:1 3830:1 3834:1 3836:1 3837:1 3841:1 3846:1 3857:1 3871:2 3872:1 3873:2 3879:2 3880:1 3886:3 3892:1 3901:2 3902:1 3905:5 3910:2 3919:1 3920:7 3927:1 3936:1 3948:1 3966:4 3972:2 3975:3 3977:1 3989:1 3991:1 3994:2 3997:1 3998:1 3999:1 4002:2 4013:2 4019:3 4026:3 4031:1 4033:9 4037:4 4046:1 4054:1 4058:2 4059:5 4067:1 4071:49 4072:2 4073:1 4078:1 4079:1 4080:1 4091:2 4096:1 4098:1 4111:1 4114:6 4128:1 4129:1 4131:11 4140:2 4144:1 4145:12 4152:7 4160:2 4161:1 4162:1 4168:1 4169:10 4175:1 4194:1 4195:6 4196:3 4197:1 4203:1 4210:5 4211:1 4213:1 4225:6 4234:2 4249:2 4251:1 4253:3 4257:1 4266:1 4270:2 4277:1 4291:1 4294:6 4301:1 4305:2 4307:1 4309:1 4311:1 4324:5 4331:1 4343:2 4348:5 4349:5 4366:1 4378:1 4387:1 4412:2 4420:2 4427:4 4436:2 4441:1 4471:2 4473:2 4476:1 4483:1 4486:1 4500:1 4502:1 4506:1 4510:1 4520:1 4544:3 4549:2 4553:11 4556:2 4561:2 4568:2 4572:1 4574:1 4586:1 4596:1 4605:1 4611:1 4622:2 4627:3 4628:3 4635:1 4636:1 4638:2 4641:2 4646:1 4647:1 4649:2 4652:1 4658:2 4667:1 4676:2 4683:1 4686:10 4692:12 4699:9 4708:1 4710:1 4733:3 4734:1 4751:1 4754:3 4759:1 4762:3 4766:1 4768:1 4769:1 4771:3 4772:1 4778:2 4779:2 4794:2 4795:6 4822:1 4824:1 4827:1 4831:1 4834:11 4837:2 4843:1 4847:1 4851:12 4869:3 4885:1 4900:2 4910:1 4914:2 4937:1 4940:2 4959:2 4960:1 4982:6 4989:4 5001:1 5006:6 5016:1 5018:1 5019:1 5023:5 5024:1 5025:1 5039:1 5040:1 5052:1 5055:1 5057:1 5058:7 5067:46 5074:1 5081:1 5082:2 5083:6 5097:1 5101:1 5107:1 5112:1 5131:1 5132:1 5135:1 5153:3 5156:1 5157:1 5185:1 5187:1 5193:1 5200:1 5202:1 5203:16 5206:2 5212:1 5227:1 5228:1 5231:2 5236:2 5237:1 5241:4 5247:1 5256:6 5264:1 5266:7 5271:7 5279:1 5288:1 5291:1 5297:1 5301:1 5309:1 5313:2 5314:1 5321:1 5345:1 5347:2 5348:1 5353:1 5355:1 5362:1 5364:3 5365:5 5366:2 5372:1 5375:2 5382:1 5383:2 5385:2 5387:1 5389:1 5394:3 5402:1 5406:4 5408:2 5413:1 5416:1 5424:1 5433:1 5434:1 5437:2541 5443:2 5456:3 5458:1 5460:2 5462:1 5468:1 5469:1 5496:1 5497:1 5499:1 5503:1 5507:2 5509:2 5511:1 5518:1 5520:2 5522:1 5529:1 5530:2 5582:1 5583:1 5590:1 5600:1 5604:2 5625:1 5637:1 5644:1 5657:1 5661:1 5672:2 5673:2 5674:1 5679:1 5683:1 5691:4 5697:3 5713:1 5714:1 5717:2 5718:2 5751:4 5753:4 5755:1 5756:2 5757:1 5760:1 5761:1 5762:1 5763:1 5765:4 5767:1 5771:6 5775:1 5778:1 5780:8 5785:1 5806:2 5813:3 5817:1 5837:2 5856:1 5867:1 5874:1 5879:1 5886:1 5893:3 5904:1 5911:2 5912:1 5916:1 5932:16 5944:1 5962:3 5974:1 5981:1 5982:1 5984:12 5995:1 5996:3 5997:1 6007:1 6020:1 6026:3 6055:1 6059:1 6063:1 6090:1 6092:2 6100:1 6110:1 6111:1 6118:1 6133:1 6153:1 6165:1 6168:1 6174:1 6204:1 6205:1 6208:2 6216:1 6220:1 6232:1 6233:4 6247:2 6262:1 6307:1 6308:1 6311:4 6316:3 6317:2 6321:1 6325:1 6330:1 6339:6 6349:3 6351:3 6352:2 6354:1 6360:1 6364:1 6367:2 6368:1 6372:2 6398:1 6417:1 6420:7 6422:1 6425:4 6450:1 6451:4 6452:1 6453:1 6458:1 6473:1 6475:1 6489:2 6502:9 6508:1 6511:9 6517:8 6519:3 6520:2 6534:1 6538:1 6541:7 6542:1 6543:1 6547:1 6559:1 6565:1 6566:1 6571:1 6586:2 6587:3 6588:1 6590:1 6593:1 6596:1 6607:1 6609:1 6612:1 6615:3 6635:1 6660:1 6661:2 6662:1 6668:1 6675:20 6677:4 6680:1 6681:1 6682:1 6683:4 6688:1 6694:10 6699:2 6708:1 6714:1 6722:1 6725:3 6736:1 6741:1 6746:2 6747:8 6749:1 6752:9 6756:1 6765:1 6771:2 6775:1 6780:2 6801:1 6822:1 6829:2 6837:2 6842:1 6845:15 6866:3 6867:7 6868:3 6873:1 6876:3 6879:1 6880:1 6882:1 6884:1 6885:1 6891:1 6900:2 6902:4 6903:3 6905:4 6913:1 6931:3 6945:3 6947:1 6952:2 6953:1 6955:1 6956:2 6957:2 6960:1 6967:1 6970:2 6976:1 6988:1 6991:1 7000:2 7005:1 7008:2 7009:1 7010:1 7013:1 7016:1 7024:1 7057:1 7073:1 7078:1 7079:1 7082:3 7084:1 7110:1 7112:1 7113:1 7127:2 7129:3 7136:1 7142:1 7148:6 7156:2 7159:2 7160:6 7161:1 7170:1 7174:1 7185:4 7192:2 7193:1 7205:1 7207:1 7225:1 7258:1 7263:1 7266:7 7268:5 7269:1 7273:1 7277:1 7278:1 7281:2 7287:3 7295:3 7297:2 7305:2 7309:2 7327:1 7340:1 7342:2 7353:1 7357:2 7359:1 7361:1 7379:1 7400:2 7402:1 7403:3 7414:4 7425:1 7427:1 7430:1 7441:1 7443:1 7446:1 7447:1 7459:3 7466:5 7474:3 7484:1 7488:2 7490:3 7497:1 7504:1 7506:2 7512:1 7513:1 7515:1 7516:1 7518:1 7525:1 7526:5 7527:1 7539:1 7548:1 7571:2 7582:5 7585:1 7589:1 7591:1 7593:1 7595:1 7596:2 7601:2 7610:1 7611:4 7612:1 7615:1 7618:1 7622:7 7623:1 7630:1 7631:1 7633:1 7641:4 7643:1 7647:1 7652:2 7653:1 7655:1 7664:2 7669:1 7670:1 7672:1 7678:1 7690:1 7703:6 7707:1 7714:1 7740:1 7753:1 7767:1 7769:2 7770:1 7771:1 7773:1 7782:5 7783:2 7788:2 7790:3 7794:5 7800:1 7804:1 7825:1 7829:3 7849:1 7852:2 7854:1 7872:1 7882:1 7886:1 7891:1 7895:1 7898:9 7912:1 7914:1 7921:1 7930:1 7941:1 7951:4 7968:2 7975:1 7976:2 7977:2 7979:1 7983:1 7986:1 7989:2 8016:1 8024:1 8032:1 8033:1 8055:2 8080:2 8084:1 8091:4 8095:4 8110:1 8125:2 8134:1 8137:2 8148:1 8156:1 8160:1 8162:1 8176:1 8190:2 8195:1 8210:2 8244:1 8246:2 8254:1 8260:1 8267:1 8278:1 8282:2 8290:3 8300:1 8305:1 8311:2 8328:1 8332:2 8334:4 8346:1 8353:1 8358:1 8363:3 8364:4 8373:7 8378:4 8379:2 8386:1 8388:1 8398:2 8427:1 8429:1 8435:1 8455:1 8458:1 8459:1 8465:1 8473:1 8479:1 8524:1 8526:1 8533:1 8541:1 8545:7 8554:2 8556:1 8560:3 8562:1 8563:1 8572:1 8579:2 8589:7 8590:5 8608:1 8609:1 8611:1 8617:1 8624:1 8626:1 8636:1 8642:2 8643:2 8644:3 8650:2 8651:1 8652:1 8657:1 8663:2 8667:1 8670:2 8672:1 8684:1 8691:2 8692:1 8695:1 8704:1 8711:2 8712:6 8717:2 8718:1 8721:1 8736:1 8744:2 8745:10 8774:1 8777:1 8784:6 8794:1 8810:2 8820:9 8824:5 8825:2 8831:6 8832:3 8835:4 8836:2 8837:2 8839:4 8840:1 8843:1 8846:6 8847:13 8848:1 8849:1 8851:5 8853:4 8895:1 8911:5 8918:3 8919:1 8925:1 8944:1 8950:1 8997:2 9003:1 9013:1 9020:1 9027:1 9038:1 9041:11 9046:1 9058:2 9061:1 9062:1 9074:2 9077:1 9080:1 9082:5 9086:1 9091:2 9117:1 9118:1 9122:1 9131:1 9133:1 9138:1 9145:1 9153:1 9158:9 9176:2 9187:1 9203:2 9204:1 9207:1 9208:1 9212:2 9213:1 9214:1 9216:1 9234:1 9236:3 9241:2 9245:1 9254:3 9260:1 9265:2 9302:1 9308:1 9315:1 9318:2 9321:2 9322:1 9333:1 9337:4 9338:1 9344:1 9346:1 9347:1 9349:1 9355:2 9372:2 9374:1 9387:1 9392:1 9393:1 9397:1 9402:3 9408:2 9410:1 9420:2 9423:2 9425:4 9428:1 9433:1 9439:1 9441:1 9471:2 9478:1 9492:1 9500:1 9503:1 9508:2 9509:12 9513:1 9514:3 9515:1 9517:2 9518:4 9521:1 9530:2 9535:1 9538:3 9542:1 9543:4 9544:3 9555:4 9556:1 9558:4 9563:2 9572:1 9575:1 9578:1 9581:1 9582:2 9585:3 9592:11 9607:5 9609:1 9613:1 9622:2 9624:1 9628:1 9632:1 9634:4 9646:1 9658:3 9667:1 9669:2 9674:1 9678:1 9687:1 9689:2 9694:2 9695:1 9696:8 9703:1 9715:4 9718:2 9723:2 9726:1 9731:3 9732:1 9754:2 9755:1 9762:3 9764:1 9769:1 9780:1 9781:1 9782:8 9810:1 9822:1 9828:1 9830:3 9836:1 9841:3 9846:3 9865:2 9867:1 9888:1 9905:1 9914:1 9916:5 9918:5 9920:1 9925:2 9927:1 9930:1 9937:1 9939:1 9945:2 9946:2 9948:1 9956:5 9958:1 9960:2 9966:1 9967:1 9979:1 9995:6 9999:3 10010:1 10016:1 10017:1 10029:2 10042:1 10064:1 10093:2 10115:1 10116:2 10119:1 10136:1 10140:1 10150:1 10159:1 10160:3 10161:1 10163:1 10168:1 10174:1 10182:2 10184:1 10196:1 10200:1 10205:1 10206:1 10209:1 10214:1 10220:2 10221:1 10223:3 10224:2 10233:4 10236:2 10238:1 10266:4 10269:3 10275:2 10277:1 10278:3 10293:1 10294:1 10296:1 10299:1 10300:1 10313:1 10323:2 10328:2 10333:1 10336:1 10341:1 10356:1 10357:2 10363:3 10367:1 10368:3 10374:1 10376:2 10382:2 10387:2 10392:2 10396:1 10397:3 10399:1 10409:1 10410:12 10425:1 10430:1 10448:1 10453:1 10465:1 10466:1 10467:1 10470:1 10478:1 10479:1 10481:1 10486:1 10490:1 10512:1 10513:1 10517:2 10536:3 10537:1 10548:1 10559:1 10570:1 10585:1 10593:2 10606:1 10607:1 10611:1 10613:1 10615:1 10625:2 10648:4 10662:1 10664:1 10679:1 10682:5 10683:1 10691:1 10695:3 10717:2 10718:10 10729:1 10734:1 10736:1 10737:4 10743:2 10744:8 10751:3 10755:1 10758:1 10760:2 10772:1 10773:3 10774:1 10777:1 10780:1 10782:1 10783:1 10789:1 10790:1 10791:1 10793:1 10796:2 10797:1 10798:1 10805:1 10812:52 10814:1 10817:1 10823:1 10825:1 10833:1 10838:1 10841:5 10843:8 10849:1 10855:4 10866:1 10871:3 10872:1 10886:2 10888:1 10894:1 10901:1 10903:1 10908:1 10914:1 10921:1 10928:1 10940:4 10941:1 10942:1 10946:2 10962:1 10981:8 10983:2 10990:1 10998:9 11002:1 11004:1 11022:1 11033:1 11034:3 11037:1 11038:1 11041:1 11045:1 11057:1 11072:2 11078:1 11082:2 11086:1 11087:1 11110:1 11112:2 11113:3 11114:1 11118:1 11121:2 11125:6 11131:1 11150:3 11164:1 11168:1 11170:1 11176:1 11190:1 11195:2 11201:1 11203:1 11212:1 11227:1 11228:3 11229:2 11232:2 11246:1 11247:4 11248:3 11260:5 11285:1 11297:3 11300:1 11301:2 11321:1 11322:1 11329:1 11332:1 11337:1 11340:3 11342:2 11347:2 11352:1 11354:1 11357:2 11361:1 11363:5 11379:4 11382:3 11397:1 11401:7 11403:3 11413:1 11417:1 11423:4 11431:2 11436:18 11452:3 11457:2 11460:1 11466:1 11470:1 11485:1 11487:3 11509:5 11516:1 11528:1 11530:1 11548:1 11549:1 11569:2 11582:1 11584:3 11594:3 11597:10 11618:1 11620:3 11621:1 11625:1 11651:4 11656:1 11658:1 11665:1 11668:1 11678:1 11691:2 11709:7 11711:1 11714:1 11722:1 11725:1 11727:4 11728:1 11729:1 11737:2 11745:1 11747:1 11752:1 11758:1 11764:1 11771:3 11774:1 11776:6 11779:1 11782:1 11785:5 11786:2 11788:2 11799:12 11827:1 11833:1 11842:1 11848:1 11849:2 11854:1 11855:2 11857:1 11871:1 11881:1 11885:1 11888:2 11896:1 11898:1 11910:1 11913:1 11916:1 11918:1 11921:1 11926:2 11943:3 11944:1 11947:1 11949:1 11950:5 11957:1 11966:1 11987:1 11990:3 11995:1 11997:1 11999:1 12003:2 12004:9 12005:1 12011:4 12014:1 12015:1 12019:1 12020:1 12021:1 12022:2 12024:4 12025:2 12032:1 12035:2 12038:1 12042:2 12044:1 12046:1 12047:1 12058:1 12059:1 12063:1 12067:1 12077:1 12089:1 12094:1 12095:3 12102:1 12110:5 12118:1 12128:4 12129:1 12133:1 12136:1 12137:3 12143:1 12156:1 12165:1 12168:1 12183:1 12186:1 12196:14 12205:1 12211:1 12213:1 12214:1 12229:2 12240:1 12241:1 12257:2 12259:1 12262:1 12285:1 12290:1 12294:1 12323:1 12344:1 12345:6 12353:1 12356:1 12366:1 12370:1 12373:1 12377:1 12378:1 12379:1 12382:2 12386:2 12399:1 12401:2 12402:2 12418:11 12423:2 12435:2 12436:1 12438:1 12444:1 12445:2 12446:2 12450:1 12453:2 12454:1 12457:3 12463:2 12466:1 12467:8 12471:3 12473:1 12477:1 12481:1 12483:1 12484:1 12486:1 12495:5 12501:5 12502:3 12503:2 12505:1 12506:7 12511:2 12512:2 12518:1 12521:1 12525:1 12527:1 12548:3 12554:2 12557:5 12561:2 12572:2 12594:1 12614:1 12624:1 12625:1 12629:1 12630:1 12631:3 12632:2 12633:1 12643:2 12652:5 12658:1 12664:9 12673:1 12674:1 12678:1 12702:1 12715:3 12716:1 12727:1 12733:1 12735:1 12739:1 12751:5 12755:1 12757:2 12762:4 12773:1 12776:1 12778:3 12779:1 12781:1 12800:1 12804:1 12806:1 12810:3 12821:2 12825:2 12839:1 12855:1 12856:1 12857:1 12861:2 12866:1 12868:1 12879:6 12907:1 12913:1 12915:1 12920:1 12926:1 12927:1 12929:4 12930:1 12932:1 12950:2 12951:1 12962:1 12973:1 12974:14 12981:6 12984:1 12991:4 13001:1 13002:1 13007:1 13008:1 13012:3 13018:1 13021:3 13025:1 13028:1 13051:1 13052:1 13054:2 13064:5 13068:1 13069:5 13076:2 13090:2 13091:2 13095:1 13099:1 13105:1 13107:1 13108:6 13111:1 13118:1 13120:1 13130:4 13140:1 13142:1 13151:1 13153:1 13159:1 13163:1 13175:1 13187:1 13195:1 13197:4 13198:1 13228:3 13229:1 13254:3 13259:1 13270:1 13275:1 13276:1 13278:1 13280:1 13281:1 13285:1 13288:1 13291:1 13299:7 13305:1 13311:1 13316:1 13322:2 13328:1 13330:1 13331:2 13336:2 13337:1 13342:1 13343:1 13346:1 13347:1 13348:4 13354:1 13356:1 13359:1 13376:1 13388:1 13405:1 13411:2 13412:9 13413:3 13414:1 13417:1 13423:3 13425:4 13430:3 13431:4 13433:1 13434:5 13436:6 13437:1 13439:2 13441:13 13449:2 13450:8 13451:7 13453:9 13465:1 13466:1 13472:1 13474:13 13475:9 13493:1 13495:1 13498:5 13502:5 13503:1 13512:3 13522:1 13525:1 13528:1 13532:9 13533:1 13534:3 13555:2 13567:1 13570:1 13585:1 13587:1 13595:1 13598:1 13599:2 13600:10 13606:4 13610:8 13612:4 13630:3 13635:3 13636:13 13637:1 13640:1 13650:3 13654:1 13664:2 13672:1 13680:1 13684:3 13696:3 13700:1 13702:5 13703:3 13708:1 13711:4 13721:2 13726:2 13741:2 13747:2 13751:1 13756:21 13757:1 13777:1 13789:1 13801:2 13810:4 13817:1 13821:1 13823:1 13824:9 13844:4 13845:2 13847:1 13863:2 13875:2 13878:1 13880:1 13882:1 13886:1 13889:1 13891:1 13892:1 13898:1 13902:6 13904:2 13908:9 13911:1 13917:1 13929:1 13934:1 13937:7 13944:1 13949:1 13955:1 13957:2 13960:4 13962:1 13966:2 13974:5 13977:2 13978:1 13992:1 14002:4 14011:1 14013:1 14048:2 14051:1 14055:2 14073:1 14079:1 14084:3 14088:1 14094:1 14096:3 14098:1 14100:9 14108:1 14132:1 14133:9 14134:1 14144:1 14148:10 14150:1 14152:1 14181:13 14192:1 14236:2 14240:1 14247:1 14257:2 14262:1 14271:2 14274:1 14275:1 14286:2 14289:3 14293:8 14296:7 14298:1 14299:1 14304:1 14319:1 14325:1 14328:1 14330:1 14333:1 14339:1 14349:1 14350:1 14356:1 14364:1 14366:3 14367:1 14371:1 14381:3 14383:1 14396:2 14401:1 14402:1 14411:3 14420:2 14422:1 14436:2 14447:1 14449:1 14452:3 14458:1 14469:1 14471:1 14474:3 14478:1 14484:5 14485:1 14494:1 14515:3 14519:12 14525:9 14527:1 14540:1 14543:3 14553:1 14555:7 14559:3 14561:1 14563:1 14574:2 14575:1 14581:2 14583:11 14590:5 14592:1 14594:6 14599:2 14601:2 14608:2 14609:5 14610:5 14637:1 14642:1 14644:1 14663:2 14672:2 14680:1 14681:10 14692:2 14694:4 14707:4 14708:1 14715:2 14718:7 14757:1 14765:2 14770:2 14780:1 14781:1 14798:1 14801:1 14814:2 14815:1 14823:2 14826:7 14828:1 14829:1 14830:2 14831:1 14834:1 14841:2 14845:2 14854:1 14860:1 14861:3 14867:1 14868:1 14870:2 14873:1 14884:6 14887:1 14897:1 14900:2 14901:1 14903:1 14909:6 14920:1 14928:1 14929:1 14935:1 14942:1 14962:1 14965:8 14968:5 14979:2 14980:5 14981:1 14994:1 15004:1 15005:2 15008:2 15009:4 15010:1 15015:1 15019:2 15021:1 15030:2 15036:1 15040:1 15050:1 15051:1 15054:1 15065:1 15066:1 15068:1 15076:1 15085:10 15089:9 15113:5 15117:3 15118:1 15122:2 15125:1 15131:1 15134:2 15143:1 15146:1 15153:1 15158:1 15165:1 15170:1 15177:1 15183:1 15188:1 15193:1 15195:3 15203:1 15206:5 15211:1 15235:1 15241:1 15243:3 15248:1 15253:1 15258:4 15274:2 15281:1 15282:1 15283:1 15290:9 15302:1 15314:1 15315:1 15324:1 15342:1 15363:2 15367:2 15394:1 15396:1 15398:1 15405:2 15421:1 15437:1 15445:4 15480:1 15486:1 15490:1 15491:1 15497:2 15498:1 15502:1 15503:6 15516:1 15523:1 15528:1 15546:2 15547:1 15568:9 15576:2 15585:1 15593:1 15613:4 15618:8 15628:1 15629:1 15633:2 15637:4 15658:1 15665:1 15666:14 15675:3 15687:1 15693:4 15695:1 15696:5 15698:2 15704:1 15708:1 15712:2 15713:3 15714:1 15715:2 15723:1 15724:3 15727:1 15728:1 15731:1 15740:1 15745:1 15747:2 15752:7 15755:1 15756:1 15764:1 15771:1 15772:1 15773:2 15778:1 15789:5 15790:1 15799:1 15820:2 15829:1 15836:1 15840:1 15854:2 15863:1 15864:2 15867:1 15872:2 15881:2 15896:1 15905:1 15911:1 15923:1 15926:1 15930:2 15934:1 15937:2 15959:6 15962:1 15966:1 15972:1 15974:1 15976:1 15978:46 15986:2 15990:2 15996:3 16001:2 16006:10 16008:1 16016:5 16017:1 16021:2 16022:2 16029:1 16030:1 16033:1 16037:1 16062:1 16072:1 16077:2 16106:1 16110:2 16122:1 16127:1 16130:1 16139:1 16156:1 16160:4 16175:1 16179:1 16183:5 16187:2 16202:1 16206:1 16217:2 16221:7 16235:3 16243:1 16247:1 16263:1 16264:3 16271:1 16276:1 16278:1 16279:1 16282:1 16287:1 16288:1 16298:1 16331:1 16338:3 16343:3 16344:1 16345:1 16346:1 16356:1 16358:1 16361:1 16362:1 16363:1 16366:5 16380:1 16386:2 16388:2 16389:4 16394:1 16400:1 16402:1 16410:1 16411:1 16418:1 16421:1 16431:1 16434:3 16482:1 16487:1 16501:1 16514:1 16515:3 16532:1 16540:2 16545:1 16551:1 16558:1 16561:1 16571:2 16573:1 16579:2 16582:10 16584:1 16585:1 16594:2 16595:3 16597:3 16604:1 16616:1 16623:1 16630:1 16633:3 16640:1 16655:1 16660:1 16666:6 16672:1 16675:1 16679:2 16691:2 16694:1 16696:1 16716:9 16717:1 16726:1 16732:1 16739:1 16740:1 16760:2 16806:1 16812:5 16817:3 16822:22 16828:1 16830:1 16834:1 16838:1 16869:1 16870:1 16872:1 16879:4 16883:1 16884:1 16893:1 16894:1 16901:1 16902:6 16903:1 16905:1 16918:1 16932:1 16937:2 16942:1 16945:1 16946:1 16955:1 16964:1 16967:2 16980:1 16991:1 17001:1 17005:1 17010:1 17014:3 17019:1 17026:1 17027:1 17032:1 17039:1 17040:1 17042:5 17058:1 17059:1 17067:2 17072:7 17094:2 17097:1 17104:3 17106:5 17108:1 17118:1 17124:1 17125:1 17128:3 17140:1 17146:1 17161:1 17171:1 17177:1 17178:1 17182:1 17189:1 17191:2 17192:1 17193:1 17202:1 17207:7 17213:1 17216:1 17219:1 17222:1 17237:2 17239:3 17242:1 17251:9 17252:1 17255:1 17263:1 17270:4 17301:1 17306:5 17324:8 17342:2 17353:1 17362:1 17370:2 17380:1 17388:1 17389:2 17394:1 17408:40 17423:3 17434:1 17436:9 17437:5 17438:1 17440:6 17443:3 17444:3 17455:1 17465:1 17474:6 17475:1 17482:1 17486:2 17489:1 17492:1 17493:4 17495:7 17504:1 17507:1 17508:1 17510:1 17512:2 17516:1 17517:1 17519:1 17520:3 17524:1 17531:2 17532:3 17544:1 17546:2 17552:2 17572:1 17573:1 17576:1 17579:1 17583:3 17586:1 17590:1 17604:1 17605:1 17608:1 17613:1 17615:6 17620:2 17627:1 17629:1 17631:2 17643:2 17644:1 17645:2 17672:1 17680:1 17684:2 17687:7 17690:1 17692:1 17696:1 17709:1 17723:1 17753:1 17779:3 17780:1 17783:1 17787:1 17790:1 17802:5 17810:1 17815:1 17817:1 17820:1 17822:1 17825:3 17846:1 17863:2 17873:1 17877:1 17878:3 17886:1 17889:1 17890:1 17891:9 17894:1 17905:1 17912:14 17920:1 17926:1 17933:3 17934:3 17939:1 17960:1 17961:1 17968:1 17973:1 17989:1 17990:2 17992:1 18000:1 18009:1 18017:2 18019:1 18022:1 18033:2 18035:1 18039:1 18048:1 18058:1 18068:11 18075:4 18084:1 18086:1 18098:4 18100:4 18101:1 18108:1 18123:1 18131:1 18132:1 18143:2 18144:2 18147:1 18148:1 18168:2 18176:4 18193:1 18198:3 18201:1 18210:2 18211:1 18212:1 18213:1 18221:6 18225:1 18230:4 18233:2 18246:2 18247:1 18249:5 18253:1 18255:1 18261:2 18263:1 18265:5 18266:1 18269:4 18271:1 18282:3 18289:3 18290:1 18310:1 18313:1 18318:1 18319:1 18325:3 18326:2 18328:1 18330:2 18342:1 18343:1 18344:2 18355:4 18366:2 18367:1 18373:1 18380:2 18387:6 18389:8 18392:27 18393:3 18398:2 18399:1 18403:1 18412:2 18419:1 18428:2 18442:4 18458:1 18465:2 18473:4 18498:2 18509:1 18516:1 18529:1 18550:1 18555:2 18557:2 18563:3 18569:3 18584:1 18585:3 18589:1 18612:2 18613:4 18614:1 18631:1 18636:2 18641:3 18643:8 18657:4 18686:2 18690:10 18693:1 18699:1 18713:5 18720:1 18722:7 18735:6 18738:1 18747:2 18751:7 18753:5 18760:3 18764:1 18766:2 18767:1 18768:1 18788:1 18792:1 18799:1 18801:6 18811:4 18819:2 18834:3 18836:1 18838:1 18850:5 18852:1 18860:1 18863:1 18865:1 18869:1 18870:2 18874:2 18877:1 18899:5 18907:5 18914:1 18932:1 18934:2 18935:1 18937:1 18941:1 18945:1 18947:1 18953:3 18956:2 18958:4 18960:2 18964:1 18966:1 18978:1 19001:9 19005:1 19007:1 19015:1 19020:21 19021:2 19031:4 19032:1 19035:2 19036:1 19050:4 19057:2 19085:1 19098:1 19116:1 19130:9 19132:1 19137:1 19140:3 19147:1 19156:1 19165:7 19171:2 19174:1 19177:11 19184:1 19189:1 19208:2 19210:1 19214:1 19278:3 19280:1 19301:1 19311:2 19312:1 19331:1 19333:1 19336:1 19350:1 19352:1 19358:4 19360:4 19365:5 19367:1 19369:1 19386:1 19389:1 19390:1 19398:1 19399:1 19410:1 19411:2 19412:1 19433:1 19438:1 19444:1 19455:1 19458:2 19465:4 19470:5 19493:1 19499:1 19510:1 19518:3 19522:1 19526:2 19528:1 19537:1 19545:1 19549:1 19558:1 19559:1 19575:2 19600:5 19604:1 19606:1 19607:1 19615:1 19618:3 19619:1 19627:1 19638:1 19642:1 19643:3 19644:1 19659:2 19660:2 19661:2 19664:1 19672:1 19673:1 19674:8 19684:1 19687:1 19689:1 19691:1 19692:1 19698:1 19699:1 19718:1 19721:1 19722:2 19740:4 19748:1 19762:1 19767:1 19769:1 19780:2 19791:1 19812:1 19818:2 19823:2 19824:8 19825:1 19831:1 19844:1 19852:1 19856:1 19869:1 19870:1 19873:1 19878:1 19883:1 19888:2 19894:1 19905:1 19916:2 19918:2 19919:1 19925:1 19930:2 19932:1 19934:1 19944:3 19957:1 19996:3 20003:1 20033:1 20036:1 20044:1 20052:1 20058:1 20059:5 20060:6 20076:1 20079:1 20081:1 20082:6 20083:1 20096:2 20097:1 20105:1 20116:1 20117:1 20118:3 20124:1 20126:4 20150:1 20158:1 20159:1 20175:1 20177:6 20178:2 20181:1 20185:5 20188:2 20191:4 20193:1 20207:3 20210:1 20212:3 20215:9 20247:3 20255:6 20263:3 20270:2 20271:1 20273:1 20276:1 20290:1 20311:1 20328:1 20330:1 20342:1 20350:1 20386:1 20388:3
14 4:1 5:2 8:1 20:1 21:2 49:1 58:1 69:2 72:1 73:1 74:1 88:8 113:1 115:2 116:2 118:1 119:1 131:1 133:1 134:1 140:7 143:1 148:2 152:2 162:1 166:1 183:3 191:1 206:1 208:2 216:1 217:2 226:1 238:2 257:1 272:1 273:1 274:2 277:2 282:2 284:1 289:4 307:1 308:1 311:1 344:1 356:1 364:11 366:9 371:2 374:1 376:5 388:1 392:2 400:1 403:1 406:3 411:1 417:2 419:1 420:1 421:1 423:1 430:3 433:1 440:1 441:2 442:1 448:1 453:1 455:1 456:1 467:11 470:1 475:1 477:1 480:2 484:1 492:1 493:9 495:2 496:1 502:1 509:1 513:1 528:2 531:1 547:1 548:10 558:1 559:5 569:1 576:3 584:2 590:1 592:1 609:1 611:1 616:1 624:2 633:2 647:1 667:4 669:2 675:2 678:1 682:1 697:2 700:2 703:5 706:3 717:2 730:1 754:1 791:1 800:11 801:3 802:4 805:5 828:1 841:2 866:1 868:2 874:1 877:1 884:2 885:3 897:1 913:1 914:1 919:2 932:1 936:1 939:6 950:2 955:2 956:1 984:3 1000:1 1014:2 1015:1 1016:1 1018:2 1025:1 1028:5 1031:2 1037:1 1039:2 1046:2 1059:1 1060:1 1070:1 1079:2 1081:6 1082:2 1116:2 1128:1 1134:1 1142:1 1146:2 1186:2 1190:1 1196:1 1204:1 1219:1 1224:1 1234:1 1237:1 1241:2 1246:5 1247:1 1252:1 1253:1 1256:3 1262:1 1266:1 1270:1 1273:2 1290:2 1295:1 1310:4 1311:4 1313:1 1315:2 1324:1 1330:7 1331:10 1332:1 1333:1 1334:2 1342:1 1350:1 1355:1 1366:1 1367:1 1371:1 1373:1 1380:5 1382:1 1388:2 1392:1 1416:1 1419:7 1428:1 1430:1 1432:6 1438:1 1442:3 1443:1 1445:3 1449:3 1467:3 1468:4 1477:1 1487:1 1492:2 1499:3 1510:1 1513:1 1514:1 1517:1 1524:1 1525:1 1528:2 1535:1 1536:2 1542:1 1545:2 1548:1 1553:2 1561:1 1562:2 1565:1 1571:1 1572:1 1578:1 1585:2 1596:1 1601:1 1603:1 1609:3 1617:1 1620:1 1634:1 1637:2 1640:1 1644:1 1647:16 1653:3 1654:1 1658:1 1668:2 1672:2 1674:2 1675:1 1679:1 1692:2 1721:1 1745:1 1758:6 1763:1 1773:3 1777:2 1786:1 1789:1 1796:1 1797:2 1818:2 1822:1 1827:1 1828:1 1830:1 1834:1 1836:1 1839:3 1840:1 1843:3 1845:3 1846:2 1847:2 1849:1 1852:1 1854:1 1858:7 1860:1 1865:1 1867:1 1869:1 1875:4 1880:1 1884:1 1891:1 1895:1 1911:1 1912:3 1915:1 1921:1 1934:2 1941:1 1942:1 1943:1 1945:3 1946:1 1961:1 1969:1 1980:2 1993:2 2003:3 2004:6 2013:1 2016:2 2021:1 2040:1 2071:1 2077:1 2084:1 2089:1 2100:5 2113:1 2117:2 2128:1 2143:2 2146:2 2149:6 2157:4 2180:1 2182:1 2183:1 2186:1 2189:1 2197:1 2198:2 2199:1 2201:1 2203:1 2205:1 2230:1 2235:5 2239:1 2247:1 2251:4 2253:3 2261:1 2266:1 2271:1 2280:3 2282:2 2289:2 2296:1 2298:3 2299:1 2313:5 2315:2 2320:1 2327:5 2329:3 2344:1 2349:1 2352:1 2355:1 2358:11 2360:1 2369:1 2378:1 2379:5 2384:1 2385:2 2399:1 2404:1 2406:1 2407:2 2416:1 2418:1 2423:1 2424:1 2443:1 2455:3 2456:1 2481:1 2484:1 2504:9 2509:1 2524:5 2533:8 2536:2 2540:4 2545:1 2556:1 2559:1 2560:2 2563:12 2570:2 2571:1 2572:2 2598:6 2600:5 2605:1 2625:1 2630:2 2632:4 2642:1 2656:2 2657:1 2658:3 2659:1 2661:1 2663:2 2664:1 2665:1 2666:1 2669:1 2671:2 2684:1 2696:2 2697:2 2701:1 2713:1 2715:1 2716:1 2726:2 2737:4 2747:1 2749:1 2751:3 2761:1 2768:1 2775:1 2778:1 2781:1 2782:7 2787:2 2788:1 2789:2 2812:1 2814:1 2816:1 2817:5 2822:1 2824:1 2831:12 2837:1 2840:1 2851:2 2856:1 2858:1 2861:1 2881:1 2887:3 2903:4 2905:8 2912:1 2917:1 2923:4 2927:5 2930:4 2931:1 2933:2 2935:1 2937:1 2939:1 2943:1 2951:2 2961:3 2971:1 2980:3 2982:3 2983:3 2989:1 2992:3 2998:2 3001:7 3007:1 3015:1 3021:1 3026:3 3028:11 3036:1 3039:2 3041:1 3043:1 3044:1 3046:2 3047:2 3048:2 3049:1 3053:2 3062:1 3063:2 3068:1 3069:2 3070:1 3071:4 3081:1 3082:2 3083:1 3093:3 3094:1 3110:4 3111:1 3112:2 3114:2 3116:10 3118:3 3122:1 3123:5 3125:2 3126:1 3129:1 3132:1 3133:3 3135:1 3136:3 3142:6 3144:2 3146:2 3149:4 3151:1 3156:1 3168:4 3169:1 3193:1 3199:1 3202:3 3210:2 3212:1 3215:1 3222:1 3226:1 3231:1 3250:2 3252:1 3265:1 3266:1 3267:1 3270:2 3272:1 3281:12 3283:2 3294:1 3295:2 3306:2 3312:1 3316:2 3321:1 3327:1 3328:2 3329:2 3345:1 3352:1 3357:5 3358:2 3378:2 3389:1 3390:1 3396:2 3400:1 3417:1 3420:2 3431:3 3435:1 3446:1 3456:2 3458:1 3460:1 3462:1 3474:1 3489:1 3493:2 3501:2 3507:1 3510:3 3512:1 3518:2 3521:1 3536:1 3558:1 3560:11 3562:4 3568:5 3578:1 3580:1 3581:12 3583:3 3585:1 3587:2 3588:2 3590:1 3599:2 3600:1 3607:1 3609:1 3629:1 3631:4 3633:1 3638:2 3642:2 3655:1 3671:2 3679:1 3692:2 3706:11 3707:3 3726:12 3731:2 3732:2 3733:2 3736:1 3738:1 3751:1 3753:2 3763:1 3766:1 3771:1 3775:1 3777:11 3780:1 3788:1 3811:6 3819:3 3820:1 3830:1 3834:1 3836:1 3837:1 3841:1 3846:1 3857:1 3871:2 3872:1 3873:2 3879:2 3880:1 3886:3 3892:1 3901:2 3902:1 3905:5 3910:2 3919:1 3920:7 3927:1 3936:1 3948:1 3966:4 3972:2 3975:3 3977:1 3989:1 3991:1 3994:2 3997:1 3998:1 3999:1 4002:2 4013:2 4019:3 4026:3 4031:1 4033:10 4037:4 4046:1 4054:1 4058:3 4059:5 4067:1 4071:50 4072:2 4073:1 4078:1 4079:1 4080:1 4091:2 4096:1 4098:1 4111:1 4114:6 4128:1 4129:1 4131:11 4140:2 4144:1 4145:12 4152:7 4160:2 4161:1 4162:1 4168:1 4169:10 4175:1 4194:1 4195:6 4196:3 4197:1 4203:1 4210:5 4211:1 4213:1 4225:6 4234:2 4249:2 4251:1 4253:3 4257:1 4266:1 4270:2 4277:1 4291:1 4294:7 4301:1 4305:2 4307:1 4309:1 4311:1 4324:5 4331:1 4343:2 4348:5 4349:5 4366:1 4378:1 4381:1 4387:1 4412:2 4420:2 4427:4 4436:2 4441:1 4471:2 4473:2 4476:1 4483:1 4486:1 4500:1 4502:1 4506:1 4510:1 4520:1 4544:3 4549:2 4553:11 4556:2 4561:2 4568:2 4572:1 4574:1 4586:1 4596:1 4605:1 4611:1 4622:2 4627:3 4628:3 4635:1 4636:1 4638:2 4641:2 4646:1 4647:1 4649:2 4652:1 4658:2 4667:1 4676:2 4683:1 4686:10 4692:12 4699:9 4708:1 4710:1 4733:3 4734:1 4751:1 4754:3 4759:1 4762:3 4766:1 4768:1 4769:1 4771:3 4772:1 4778:2 4779:2 4794:2 4795:6 4822:1 4824:1 4827:1 4831:1 4834:11 4837:2 4843:1 4847:1 4851:12 4869:3 4885:1 4900:2 4910:1 4914:2 4937:1 4940:2 4959:2 4960:1 4982:6 4989:4 5001:1 5006:6 5016:1 5018:1 5019:1 5023:6 5024:1 5025:1 5039:1 5040:2 5052:1 5055:1 5057:1 5058:7 5067:47 5074:1 5081:1 5082:2 5083:6 5097:1 5101:1 5107:1 5112:1 5131:1 5132:1 5135:1 5153:3 5156:1 5157:1 5185:1 5187:1 5193:1 5200:1 5202:1 5203:16 5206:2 5212:1 5227:1 5228:1 5231:2 5236:2 5237:1 5241:4 5247:1 5256:6 5264:1 5266:9 5271:7 5279:1 5288:1 5291:1 5297:1 5301:1 5309:1 5313:2 5314:1 5321:1 5345:1 5347:2 5348:1 5353:1 5355:1 5362:1 5364:3 5365:5 5366:2 5372:1 5375:2 5382:1 5383:2 5385:2 5387:1 5389:1 5394:3 5402:1 5406:4 5408:2 5413:1 5416:1 5424:1 5433:1 5434:1 5437:2564 5443:2 5456:3 5458:1 5460:2 5462:1 5468:1 5469:1 5496:1 5497:1 5499:1 5503:1 5507:2 5509:2 5511:1 5518:1 5520:2 5522:1 5529:1 5530:2 5582:1 5583:1 5590:1 5600:1 5604:2 5625:1 5637:1 5644:1 5657:1 5661:1 5672:2 5673:2 5674:1 5679:1 5683:1 5691:4 5697:4 5713:1 5714:2 5717:2 5718:2 5751:4 5753:4 5755:1 5756:2 5757:1 5760:1 5761:1 5762:2 5763:1 5765:4 5767:1 5771:6 5775:2 5778:1 5780:8 5785:1 5806:2 5813:3 5817:1 5837:2 5856:1 5867:1 5874:1 5879:1 5886:1 5893:3 5904:1 5905:1 5911:2 5912:1 5916:1 5932:16 5944:1 5962:3 5974:1 5981:1 5982:1 5984:13 5995:1 5996:3 5997:1 6007:1 6020:1 6026:3 6055:1 6059:1 6063:1 6090:1 6092:2 6100:1 6110:1 6111:1 6118:1 6133:1 6153:1 6165:1 6168:1 6174:1 6204:1 6205:1 6208:2 6216:1 6220:1 6232:1 6233:5 6247:2 6262:1 6307:1 6308:1 6311:4 6316:3 6317:2 6321:1 6325:1 6330:1 6339:6 6349:3 6351:3 6352:2 6354:1 6360:1 6364:1 6367:2 6368:1 6372:2 6398:1 6417:1 6420:7 6422:1 6425:4 6450:1 6451:4 6452:1 6453:1 6458:1 6473:1 6475:1 6489:2 6502:11 6508:1 6511:11 6517:8 6519:3 6520:2 6534:1 6538:1 6541:7 6542:1 6543:1 6547:1 6559:1 6565:1 6566:1 6571:1 6586:2 6587:3 6588:1 6590:1 6593:1 6596:1 6607:1 6609:1 6612:1 6615:3 6635:1 6660:1 6661:2 6662:1 6668:1 6675:20 6677:4 6680:1 6681:1 6682:1 6683:5 6688:1 6694:10 6699:2 6708:1 6714:1 6722:1 6725:3 6736:1 6741:1 6746:2 6747:8 6749:1 6752:11 6756:1 6765:1 6771:2 6775:1 6780:2 6801:1 6822:1 6829:2 6837:2 6842:1 6845:15 6866:3 6867:7 6868:3 6873:1 6876:3 6879:1 6880:1 6882:1 6884:1 6885:1 6891:1 6900:2 6902:4 6903:3 6905:4 6913:1 6931:3 6945:3 6947:1 6952:2 6953:1 6955:1 6956:2 6957:2 6960:1 6967:1 6970:2 6976:1 6988:1 6991:1 7000:2 7005:1 7008:2 7009:1 7010:1 7013:1 7016:1 7024:1 7057:1 7073:1 7078:1 7079:1 7082:3 7084:1 7089:1 7110:1 7112:1 7113:1 7127:2 7129:3 7136:1 7142:1 7148:6 7156:2 7159:2 7160:6 7161:1 7170:1 7174:1 7185:4 7192:2 7193:1 7205:1 7207:1 7225:1 7258:1 7263:1 7266:7 7268:5 7269:1 7273:1 7277:1 7278:1 7281:2 7287:3 7295:4 7297:2 7305:2 7309:2 7327:1 7340:1 7342:2 7353:1 7357:2 7359:1 7361:1 7370:1 7379:1 7400:2 7402:1 7403:3 7414:4 7425:1 7427:1 7430:1 7441:1 7443:1 7446:1 7447:1 7459:3 7462:1 7466:5 7474:3 7484:1 7488:2 7490:3 7497:1 7504:1 7506:2 7512:1 7513:1 7515:1 7516:1 7518:1 7525:1 7526:5 7527:1 7539:1 7548:1 7571:2 7582:5 7585:1 7589:1 7591:1 7593:1 7595:1 7596:2 7601:2 7610:1 7611:5 7612:1 7615:1 7618:1 7622:7 7623:1 7630:1 7631:1 7633:1 7641:4 7643:1 7647:1 7652:2 7653:1 7655:1 7664:2 7669:1 7670:1 7672:1 7678:1 7690:1 7703:6 7707:1 7714:1 7740:1 7753:1 7767:1 7769:2 7770:1 7771:1 7773:1 7782:5 7783:2 7788:2 7790:3 7794:5 7800:1 7804:1 7825:1 7829:3 7849:1 7852:2 7854:1 7872:1 7882:1 7886:1 7891:1 7895:1 7898:9 7912:1 7914:1 7921:1 7930:1 7941:1 7951:4 7968:2 7975:1 7976:2 7977:2 7979:1 7983:1 7986:1 7989:2 8016:1 8024:1 8032:1 8033:1 8055:2 8080:2 8084:1 8091:4 8095:4 8110:1 8125:2 8134:1 8137:2 8148:1 8156:1 8160:1 8162:1 8176:1 8190:2 8195:1 8210:2 8223:1 8244:1 8246:2 8254:1 8260:1 8267:1 8278:1 8282:2 8290:3 8300:1 8305:1 8311:2 8328:1 8332:3 8334:4 8346:1 8353:1 8358:1 8363:3 8364:4 8373:8 8378:4 8379:2 8386:1 8388:1 8398:2 8427:1 8429:1 8435:1 8455:1 8458:1 8459:1 8465:1 8473:1 8479:1 8524:1 8526:2 8533:1 8541:1 8545:7 8554:2 8556:1 8560:3 8562:1 8563:1 8572:1 8579:2 8589:7 8590:5 8608:1 8609:1 8611:1 8617:1 8624:1 8626:1 8636:1 8642:2 8643:2 8644:3 8650:2 8651:1 8652:1 8657:1 8663:2 8667:1 8670:2 8672:1 8684:1 8691:2 8692:1 8695:1 8704:1 8711:2 8712:6 8717:2 8718:1 8721:1 8736:1 8744:2 8745:10 8774:1 8777:1 8784:6 8794:1 8810:2 8820:9 8824:5 8825:2 8831:6 8832:3 8835:4 8836:2 8837:2 8839:4 8840:1 8843:1 8846:6 8847:13 8848:1 8849:1 8851:5 8853:4 8895:1 8911:5 8918:3 8919:1 8925:1 8944:1 8950:1 8997:2 9003:1 9013:1 9020:1 9027:1 9038:1 9041:11 9046:1 9058:2 9061:1 9062:1 9074:2 9077:1 9080:1 9082:5 9086:1 9091:2 9117:1 9118:1 9122:1 9131:1 9133:1 9138:1 9145:1 9153:1 9158:11 9176:2 9187:1 9203:2 9204:1 9207:1 9208:1 9212:2 9213:1 9214:1 9216:1 9234:1 9236:3 9241:2 9245:1 9254:3 9260:1 9265:2 9302:1 9308:1 9315:1 9318:2 9321:2 9322:1 9333:1 9337:4 9338:1 9344:1 9346:1 9347:1 9349:1 9355:2 9372:2 9374:1 9387:1 9392:1 9393:1 9397:1 9402:3 9408:2 9410:1 9420:2 9423:2 9425:5 9428:1 9433:1 9439:1 9441:1 9471:2 9478:1 9492:1 9500:1 9503:1 9508:2 9509:12 9513:1 9514:3 9515:1 9517:2 9518:4 9521:1 9530:2 9535:1 9538:3 9542:1 9543:4 9544:3 9555:4 9556:1 9558:4 9563:2 9572:1 9575:1 9578:1 9581:1 9582:2 9585:3 9592:11 9607:5 9609:1 9613:1 9622:2 9624:1 9628:1 9632:1 9634:4 9646:1 9658:3 9667:1 9669:2 9674:1 9678:1 9687:1 9689:2 9694:2 9695:1 9696:8 9703:2 9715:4 9718:2 9723:2 9726:1 9731:3 9732:1 9754:2 9755:1 9762:3 9764:2 9769:1 9780:1 9781:1 9782:8 9810:1 9822:1 9828:1 9830:3 9836:1 9841:3 9846:3 9865:2 9867:1 9888:1 9905:1 9914:1 9916:5 9918:5 9920:1 9925:2 9927:1 9930:1 9937:1 9939:1 9945:2 9946:2 9948:1 9956:5 9958:1 9960:2 9966:1 9967:1 9979:1 9995:7 9996:1 9999:3 10010:1 10016:1 10017:1 10029:2 10042:1 10064:1 10093:2 10115:1 10116:2 10119:1 10136:1 10140:1 10150:1 10159:1 10160:3 10161:1 10163:1 10168:1 10174:1 10182:2 10184:1 10196:1 10200:1 10205:1 10206:1 10209:1 10214:2 10220:2 10221:1 10223:3 10224:2 10233:4 10236:2 10238:1 10266:4 10269:3 10275:2 10277:1 10278:3 10293:1 10294:1 10296:1 10299:1 10300:1 10313:1 10323:2 10328:2 10333:1 10336:1 10341:1 10356:1 10357:2 10363:3 10367:1 10368:3 10374:1 10376:2 10382:2 10387:2 10392:2 10396:1 10397:3 10399:1 10409:1 10410:12 10425:1 10428:1 10430:1 10448:1 10453:1 10465:1 10466:1 10467:1 10470:1 10478:1 10479:1 10481:1 10486:1 10490:1 10512:1 10513:1 10517:2 10536:3 10537:1 10548:1 10559:1 10570:1 10585:1 10593:2 10606:1 10607:1 10611:1 10613:1 10615:1 10625:2 10648:4 10662:1 10664:1 10679:1 10682:5 10683:1 10691:1 10695:3 10717:2 10718:10 10729:1 10734:1 10736:1 10737:4 10743:2 10744:8 10751:3 10755:1 10758:1 10760:2 10772:1 10773:3 10774:1 10777:1 10780:1 10782:1 10783:1 10789:1 10790:1 10791:1 10793:1 10796:2 10797:1 10798:1 10805:1 10812:53 10814:1 10817:1 10823:1 10825:1 10833:1 10838:1 10841:5 10843:8 10849:1 10855:4 10866:1 10871:3 10872:1 10886:2 10888:1 10894:1 10901:1 10903:1 10908:1 10914:1 10921:1 10928:1 10940:4 10941:1 10942:1 10946:2 10962:1 10981:8 10983:2 10990:1 10998:9 11002:1 11004:1 11022:1 11033:1 11034:3 11037:1 11038:1 11041:1 11045:1 11057:1 11072:2 11078:1 11082:2 11086:1 11087:1 11110:1 11112:2 11113:3 11114:1 11118:1 11121:2 11125:6 11131:1 11150:3 11164:1 11168:1 11170:1 11176:1 11190:1 11195:2 11201:1 11203:1 11212:1 11227:1 11228:3 11229:2 11232:2 11246:1 11247:4 11248:3 11260:5 11285:1 11297:3 11300:1 11301:2 11321:1 11322:1 11329:1 11332:1 11337:1 11340:3 11342:2 11347:2 11352:1 11354:1 11357:2 11361:1 11363:5 11379:4 11382:3 11397:1 11401:9 11403:3 11413:1 11417:1 11423:5 11431:2 11436:18 11452:3 11457:3 11460:1 11466:1 11470:1 11485:1 11487:3 11509:5 11516:1 11528:1 11530:1 11548:1 11549:1 11569:3 11582:1 11584:3 11594:3 11597:10 11618:1 11620:3 11621:1 11625:1 11651:4 11656:1 11658:1 11665:1 11668:1 11678:1 11691:2 11709:7 11711:1 11714:1 11722:1 11725:1 11727:4 11728:1 11729:1 11737:2 11745:1 11747:1 11752:1 11758:1 11764:1 11771:3 11774:1 11776:6 11779:1 11782:1 11785:5 11786:2 11788:2 11799:12 11827:1 11833:1 11842:1 11848:1 11849:2 11854:1 11855:2 11857:1 11871:1 11881:1 11885:1 11888:2 11896:1 11898:1 11910:1 11913:1 11916:1 11918:1 11921:1 11926:2 11943:3 11944:1 11947:1 11949:1 11950:5 11957:1 11966:1 11987:1 11990:3 11995:1 11997:1 11999:1 12003:2 12004:11 12005:1 12011:4 12014:1 12015:1 12019:1 12020:2 12021:1 12022:2 12024:4 12025:2 12032:1 12035:2 12038:1 12042:2 12044:1 12046:1 12047:1 12058:1 12059:1 12063:1 12067:1 12077:1 12089:1 12094:1 12095:3 12102:1 12110:6 12118:1 12128:4 12129:1 12133:1 12136:1 12137:3 12143:1 12156:1 12165:1 12168:1 12183:1 12186:1 12196:14 12205:1 12211:1 12213:1 12214:1 12229:2 12240:1 12241:1 12257:2 12259:1 12262:1 12285:1 12290:1 12294:1 12323:1 12344:1 12345:6 12353:1 12356:1 12366:1 12370:1 12373:1 12377:1 12378:1 12379:1 12382:2 12386:2 12399:1 12401:2 12402:2 12418:11 12423:2 12435:2 12436:1 12438:1 12444:1 12445:2 12446:2 12450:1 12453:2 12454:1 12457:3 12463:2 12466:1 12467:8 12471:3 12473:1 12477:1 12481:1 12483:1 12484:1 12486:1 12495:5 12501:5 12502:3 12503:2 12505:1 12506:7 12511:2 12512:2 12518:1 12521:1 12525:1 12527:1 12548:3 12554:2 12557:5 12561:2 12572:2 12594:1 12614:1 12624:1 12625:1 12629:1 12630:1 12631:3 12632:2 12633:1 12643:2 12652:5 12658:1 12664:10 12673:1 12674:1 12678:1 12702:1 12715:3 12716:1 12727:1 12733:1 12735:1 12739:1 12751:5 12755:1 12757:2 12762:4 12773:1 12776:1 12778:3 12779:1 12781:1 12800:1 12804:1 12806:1 12810:3 12821:2 12825:2 12839:1 12855:1 12856:1 12857:1 12861:2 12866:1 12868:1 12879:6 12907:1 12913:1 12915:1 12920:1 12926:1 12927:1 12929:4 12930:1 12932:1 12950:2 12951:1 12962:1 12973:1 12974:14 12981:6 12984:1 12991:4 13001:1 13002:1 13007:1 13008:1 13012:3 13018:1 13021:3 13025:1 13028:1 13051:1 13052:1 13054:2 13064:5 13068:1 13069:5 13076:2 13090:2 13091:2 13095:1 13099:1 13105:1 13107:1 13108:6 13111:1 13118:1 13120:1 13130:4 13140:1 13142:1 13151:1 13153:1 13159:1 13163:1 13175:1 13187:1 13195:1 13197:4 13198:1 13228:3 13229:1 13254:3 13259:1 13270:1 13275:1 13276:1 13278:1 13280:1 13281:2 13285:1 13288:1 13291:1 13299:7 13305:1 13311:1 13316:1 13322:2 13328:1 13330:1 13331:2 13336:2 13337:1 13342:1 13343:1 13346:1 13347:1 13348:4 13354:1 13356:1 13359:1 13376:1 13388:1 13405:1 13411:2 13412:9 13413:3 13414:1 13417:1 13423:3 13425:4 13430:3 13431:4 13433:1 13434:5 13436:6 13437:1 13439:2 13441:13 13449:2 13450:8 13451:7 13453:10 13465:1 13466:1 13472:1 13474:13 13475:9 13476:1 13493:1 13495:1 13498:5 13502:5 13503:1 13512:3 13522:1 13525:1 13528:1 13532:11 13533:1 13534:3 13555:2 13567:1 13570:1 13585:1 13587:1 13595:1 13598:1 13599:2 13600:10 13606:4 13610:8 13612:4 13630:3 13635:3 13636:13 13637:1 13638:1 13640:1 13650:3 13654:1 13664:2 13672:1 13680:1 13684:3 13696:3 13700:1 13702:5 13703:3 13708:1 13711:4 13721:2 13726:2 13741:2 13747:2 13751:1 13756:21 13757:1 13777:1 13789:1 13801:2 13810:4 13817:1 13821:1 13823:1 13824:11 13844:4 13845:2 13847:1 13863:2 13875:2 13878:1 13880:1 13882:1 13886:1 13889:1 13891:1 13892:1 13898:1 13902:6 13904:2 13908:11 13911:1 13917:1 13929:1 13934:1 13937:7 13944:1 13949:1 13955:1 13957:2 13960:4 13962:1 13966:2 13974:5 13977:2 13978:1 13992:1 14002:4 14011:1 14013:1 14048:2 14051:1 14055:2 14073:1 14079:1 14084:3 14088:1 14094:1 14096:3 14098:1 14100:10 14108:1 14132:1 14133:11 14134:1 14144:2 14148:10 14150:1 14152:1 14181:13 14192:1 14236:2 14240:1 14247:1 14257:2 14262:1 14271:2 14274:1 14275:1 14286:2 14289:3 14293:8 14296:7 14298:1 14299:1 14304:1 14319:1 14325:1 14328:1 14330:1 14333:1 14339:1 14349:1 14350:1 14356:1 14364:1 14366:3 14367:1 14371:1 14381:3 14383:1 14396:2 14401:1 14402:1 14411:4 14420:2 14422:1 14423:1 14436:2 14447:1 14449:1 14452:3 14458:1 14469:1 14471:1 14474:3 14478:1 14484:5 14485:1 14494:1 14515:3 14519:12 14525:9 14527:1 14540:1 14543:3 14553:1 14555:7 14559:3 14561:1 14563:1 14574:2 14575:1 14581:2 14583:11 14590:5 14592:1 14594:6 14599:2 14601:2 14608:2 14609:5 14610:5 14637:1 14642:1 14644:1 14663:2 14672:2 14680:1 14681:10 14692:3 14694:4 14707:4 14708:1 14715:2 14718:8 14757:1 14765:2 14770:2 14780:1 14781:1 14798:1 14801:1 14814:2 14815:2 14823:2 14826:7 14828:1 14829:1 14830:2 14831:1 14834:1 14841:2 14845:2 14854:1 14860:1 14861:3 14867:1 14868:1 14870:2 14873:1 14884:6 14887:1 14897:1 14900:2 14901:1 14903:1 14909:7 14920:1 14928:1 14929:1 14935:1 14942:1 14962:1 14965:8 14968:5 14979:2 14980:5 14981:1 14994:1 15004:1 15005:2 15008:2 15009:4 15010:1 15015:1 15019:2 15021:2 15030:2 15036:1 15040:1 15050:1 15051:1 15054:1 15065:1 15066:1 15068:1 15076:1 15085:12 15089:9 15113:5 15117:4 15118:1 15122:2 15125:1 15131:1 15134:2 15143:1 15146:1 15153:1 15158:1 15165:1 15170:1 15177:1 15183:1 15188:1 15193:1 15195:3 15203:1 15206:5 15211:1 15235:1 15241:1 15243:3 15248:1 15253:1 15258:4 15274:2 15281:1 15282:1 15283:1 15290:10 15302:1 15314:1 15315:1 15324:1 15342:1 15363:2 15367:2 15394:1 15396:1 15398:1 15405:2 15421:1 15437:1 15445:4 15480:1 15486:1 15490:1 15491:1 15497:2 15498:1 15502:1 15503:6 15516:1 15523:1 15528:1 15546:2 15547:1 15568:9 15576:2 15585:1 15593:1 15613:4 15618:8 15628:1 15629:1 15633:2 15637:4 15658:1 15665:1 15666:14 15675:3 15687:1 15693:4 15695:1 15696:5 15698:2 15704:1 15708:1 15712:2 15713:3 15714:1 15715:2 15723:1 15724:3 15727:1 15728:1 15731:1 15740:1 15745:1 15747:2 15752:7 15755:1 15756:1 15764:1 15771:1 15772:1 15773:2 15778:1 15789:6 15790:1 15799:1 15820:2 15829:1 15836:1 15840:1 15854:2 15863:1 15864:2 15867:1 15872:2 15881:2 15896:1 15905:1 15911:1 15923:1 15926:1 15930:2 15934:1 15937:2 15959:6 15962:1 15966:1 15972:1 15974:1 15976:1 15978:47 15986:2 15990:2 15996:3 16001:2 16006:12 16008:1 16016:5 16017:1 16021:2 16022:2 16029:1 16030:1 16033:1 16037:1 16062:1 16072:1 16077:2 16106:1 16110:2 16122:1 16127:1 16130:1 16139:1 16156:1 16160:4 16175:1 16179:1 16183:5 16187:2 16202:1 16206:1 16217:2 16221:7 16235:3 16243:1 16247:1 16263:1 16264:3 16271:1 16276:1 16278:1 16279:1 16282:1 16287:1 16288:1 16298:1 16331:1 16338:3 16343:3 16344:1 16345:1 16346:1 16356:1 16358:1 16361:1 16362:1 16363:1 16366:5 16380:1 16386:2 16388:2 16389:4 16394:1 16400:1 16402:1 16410:1 16411:1 16418:1 16421:1 16431:1 16434:3 16482:1 16487:1 16501:1 16514:1 16515:3 16532:1 16540:2 16545:1 16551:1 16558:1 16561:1 16571:2 16573:1 16579:2 16582:10 16584:1 16585:1 16594:2 16595:3 16597:3 16604:1 16616:1 16623:1 16630:1 16633:3 16640:1 16655:1 16660:1 16666:6 16672:1 16675:1 16679:2 16691:2 16694:1 16696:1 16716:9 16717:1 16726:1 16732:1 16739:1 16740:1 16760:2 16806:1 16812:5 16817:3 16822:22 16828:1 16830:1 16834:1 16838:1 16869:1 16870:1 16872:1 16879:4 16883:1 16884:1 16893:1 16894:1 16901:1 16902:6 16903:1 16905:1 16918:1 16932:1 16937:2 16942:1 16945:1 16946:1 16955:1 16964:1 16967:2 16980:1 16991:1 17001:1 17005:1 17010:1 17014:3 17019:1 17026:1 17027:1 17032:1 17039:1 17040:1 17042:5 17058:1 17059:1 17067:2 17072:7 17094:2 17097:1 17104:3 17106:5 17108:1 17118:1 17124:1 17125:1 17128:3 17140:1 17146:1 17161:1 17171:1 17177:1 17178:1 17182:1 17189:1 17191:2 17192:1 17193:1 17202:1 17207:7 17213:1 17216:2 17219:1 17222:1 17237:2 17239:3 17242:1 17251:11 17252:2 17255:1 17263:1 17270:4 17301:1 17306:5 17324:8 17342:2 17353:1 17362:1 17370:2 17380:1 17388:1 17389:2 17394:1 17408:41 17423:3 17434:1 17436:9 17437:5 17438:1 17440:6 17443:3 17444:3 17455:1 17465:1 17474:7 17475:1 17482:1 17486:2 17489:1 17492:1 17493:4 17495:7 17504:1 17507:1 17508:1 17510:1 17512:2 17516:1 17517:1 17519:1 17520:3 17524:1 17531:2 17532:3 17544:1 17546:2 17552:2 17572:1 17573:1 17576:1 17579:1 17583:3 17586:1 17590:2 17604:1 17605:1 17608:1 17613:1 17615:6 17620:2 17627:1 17629:1 17631:2 17643:2 17644:1 17645:2 17667:1 17672:1 17680:1 17684:2 17687:7 17690:1 17692:1 17696:1 17709:1 17723:1 17753:1 17779:3 17780:1 17783:1 17787:1 17790:1 17802:5 17810:1 17815:1 17817:1 17820:1 17822:1 17825:3 17846:1 17863:2 17873:1 17877:1 17878:3 17886:1 17889:1 17890:1 17891:10 17894:1 17905:1 17912:14 17920:1 17926:1 17933:3 17934:3 17939:1 17960:1 17961:1 17968:1 17973:1 17989:1 17990:2 17992:1 18000:1 18009:1 18017:2 18019:1 18022:1 18033:2 18035:1 18039:1 18048:1 18058:1 18068:11 18075:4 18084:1 18086:1 18098:4 18100:4 18101:1 18108:1 18123:1 18131:1 18132:1 18143:2 18144:2 18147:1 18148:1 18168:2 18176:4 18193:1 18198:3 18201:1 18210:2 18211:1 18212:1 18213:1 18221:6 18225:1 18230:4 18233:2 18246:2 18247:1 18249:5 18253:1 18255:1 18261:2 18263:1 18265:5 18266:1 18269:4 18271:1 18282:3 18289:3 18290:1 18310:1 18313:1 18318:1 18319:1 18325:3 18326:2 18328:1 18330:2 18342:1 18343:1 18344:2 18355:4 18366:2 18367:1 18373:1 18380:2 18387:6 18389:8 18392:28 18393:3 18398:2 18399:1 18403:1 18412:2 18419:1 18428:2 18442:4 18458:1 18465:2 18473:4 18498:2 18509:1 18516:1 18529:1 18550:1 18555:2 18557:2 18563:3 18569:3 18584:1 18585:3 18589:1 18612:2 18613:4 18614:1 18631:1 18636:2 18641:3 18643:8 18657:4 18686:2 18690:10 18693:1 18699:1 18713:5 18720:1 18722:7 18735:6 18738:1 18747:2 18751:7 18753:5 18760:3 18764:1 18766:2 18767:1 18768:1 18788:1 18792:1 18799:1 18801:7 18811:4 18819:2 18827:1 18834:3 18836:1 18838:1 18850:5 18852:1 18860:1 18863:1 18865:1 18869:1 18870:2 18874:2 18877:1 18899:5 18907:5 18914:1 18932:1 18934:2 18935:1 18937:1 18941:1 18945:1 18947:1 18953:3 18956:2 18958:4 18960:2 18964:1 18966:1 18978:1 19001:11 19005:1 19007:1 19015:1 19020:21 19021:2 19031:4 19032:1 19035:2 19036:1 19050:4 19057:2 19085:1 19098:1 19116:1 19130:11 19132:1 19137:1 19140:3 19147:1 19156:1 19165:7 19171:2 19174:1 19177:11 19184:1 19189:1 19208:2 19210:1 19214:1 19278:3 19280:1 19301:1 19310:1 19311:2 19312:1 19331:2 19333:1 19336:1 19350:1 19352:1 19358:4 19360:4 19365:5 19367:1 19369:1 19386:1 19389:1 19390:1 19398:1 19399:1 19410:1 19411:2 19412:1 19433:1 19438:1 19444:1 19455:1 19458:2 19465:4 19470:5 19493:1 19499:1 19510:1 19518:3 19522:1 19526:2 19528:1 19537:1 19545:1 19549:1 19558:1 19559:1 19575:2 19600:5 19604:1 19606:1 19607:1 19615:1 19618:3 19619:1 19627:1 19638:1 19642:1 19643:3 19644:1 19659:2 19660:2 19661:2 19664:1 19672:1 19673:1 19674:8 19684:1 19687:1 19689:1 19691:1 19692:1 19698:1 19699:1 19718:1 19721:1 19722:2 19740:4 19748:1 19762:1 19767:1 19769:1 19780:2 19791:1 19812:1 19818:2 19823:2 19824:8 19825:1 19831:1 19844:1 19852:1 19856:1 19869:1 19870:1 19873:1 19878:1 19883:1 19888:2 19894:1 19905:1 19916:2 19918:2 19919:1 19925:1 19930:2 19932:1 19934:1 19944:3 19957:1 19996:3 20003:1 20033:1 20036:1 20044:1 20052:1 20058:1 20059:5 20060:6 20076:1 20079:1 20081:1 20082:6 20083:1 20096:2 20097:1 20105:1 20116:1 20117:1 20118:3 20124:1 20126:4 20150:1 20158:1 20159:1 20175:1 20177:6 20178:2 20181:1 20185:6 20188:2 20191:4 20193:1 20207:3 20210:1 20212:3 20215:9 20247:3 20255:6 20263:3 20270:2 20271:1 20273:1 20276:1 20290:1 20311:1 20328:1 20330:1 20342:1 20350:1 20386:1 20388:3
14 4:1 5:2 8:1 20:1 21:2 49:1 58:1 69:2 72:1 73:1 74:1 88:9 113:1 115:2 116:2 118:1 119:1 131:1 133:1 134:1 140:7 143:1 148:2 152:2 162:1 166:1 183:3 191:1 206:1 208:2 216:1 217:3 226:1 238:2 257:1 272:1 273:1 274:2 277:2 282:2 284:1 289:4 307:1 308:1 311:1 344:1 356:1 364:11 366:9 371:3 374:1 376:5 388:1 392:2 400:1 403:1 406:3 411:1 417:2 419:1 420:1 421:1 423:1 430:3 433:1 440:1 441:2 442:1 448:1 453:1 455:1 456:1 467:11 470:1 475:1 477:1 480:2 484:1 492:1 493:9 495:2 496:1 502:1 509:1 513:1 528:2 531:1 547:2 548:10 558:1 559:6 569:1 576:3 584:2 590:1 592:1 609:1 611:1 616:1 624:2 633:2 647:1 667:4 669:2 675:2 678:1 682:1 697:2 700:2 703:6 706:3 717:2 730:1 754:1 791:1 800:11 801:3 802:4 805:5 828:1 841:2 866:1 868:2 874:1 877:1 884:2 885:3 897:1 913:1 914:1 919:2 932:1 936:1 939:6 950:2 955:2 956:1 984:3 1000:1 1014:2 1015:1 1016:1 1018:2 1025:1 1028:5 1031:2 1037:1 1039:2 1046:2 1059:1 1060:1 1070:1 1079:2 1081:6 1082:2 1115:1 1116:2 1128:1 1134:1 1142:1 1146:2 1186:2 1190:1 1196:1 1204:1 1219:1 1224:1 1234:1 1237:1 1241:2 1246:5 1247:1 1252:1 1253:1 1256:3 1262:1 1266:1 1270:1 1273:2 1290:2 1295:1 1310:4 1311:4 1313:1 1315:2 1324:1 1330:7 1331:10 1332:1 1333:1 1334:3 1342:1 1350:1 1355:1 1366:1 1367:1 1371:1 1373:1 1377:1 1380:5 1382:1 1388:2 1392:1 1416:1 1419:7 1428:1 1430:1 1432:7 1438:1 1442:3 1443:1 1445:3 1449:3 1467:3 1468:4 1477:1 1487:1 1492:2 1499:3 1510:1 1513:1 1514:1 1517:1 1524:1 1525:1 1528:2 1535:1 1536:2 1542:1 1545:2 1548:1 1553:2 1561:1 1562:2 1565:1 1571:1 1572:1 1578:1 1585:3 1596:1 1601:1 1603:1 1609:3 1617:1 1620:1 1634:1 1637:3 1640:1 1644:1 1647:16 1653:3 1654:1 1658:1 1668:2 1672:2 1673:1 1674:2 1675:1 1679:1 1692:2 1721:1 1745:1 1758:6 1763:1 1773:3 1777:2 1786:1 1789:1 1796:1 1797:2 1818:2 1822:1 1827:2 1828:1 1830:1 1834:1 1836:1 1839:3 1840:1 1843:3 1845:3 1846:2 1847:2 1849:1 1852:1 1854:1 1858:7 1860:1 1865:1 1867:1 1869:1 1875:4 1880:1 1884:1 1891:1 1895:1 1911:1 1912:3 1915:1 1921:1 1934:2 1941:1 1942:1 1943:1 1945:3 1946:1 1961:1 1969:1 1980:2 1993:2 2003:3 2004:6 2013:1 2016:2 2021:1 2040:1 2071:1 2077:1 2084:1 2089:1 2100:5 2113:1 2117:2 2128:1 2143:2 2146:2 2149:7 2157:4 2169:1 2180:1 2182:1 2183:1 2186:1 2189:1 2197:1 2198:2 2199:1 2201:1 2203:1 2205:1 2230:1 2235:5 2239:1 2247:1 2251:4 2253:3 2261:1 2266:1 2271:1 2280:3 2282:2 2289:2 2296:1 2298:3 2299:1 2313:5 2315:2 2320:1 2327:5 2329:3 2344:1 2349:1 2352:1 2355:1 2358:11 2360:1 2369:1 2378:1 2379:5 2384:1 2385:2 2393:1 2399:1 2404:1 2406:1 2407:2 2416:1 2418:1 2423:1 2424:1 2443:1 2455:3 2456:1 2481:1 2484:1 2504:10 2509:1 2524:5 2533:9 2536:2 2540:4 2545:1 2556:1 2559:1 2560:2 2563:12 2570:2 2571:1 2572:2 2598:6 2600:5 2605:1 2625:1 2630:2 2632:4 2642:1 2656:2 2657:1 2658:3 2659:1 2661:1 2663:2 2664:1 2665:1 2666:1 2669:1 2671:2 2684:1 2696:2 2697:2 2701:1 2713:1 2715:1 2716:1 2726:2 2737:4 2747:1 2749:1 2751:3 2761:1 2768:1 2775:1 2778:1 2781:1 2782:7 2787:2 2788:1 2789:2 2812:1 2814:1 2816:1 2817:5 2822:1 2824:2 2831:12 2837:1 2840:1 2851:2 2856:1 2858:1 2861:1 2881:1 2887:3 2903:4 2905:8 2912:1 2917:1 2923:4 2927:5 2930:4 2931:1 2933:2 2935:1 2937:1 2939:1 2943:1 2951:2 2961:3 2971:1 2980:3 2982:3 2983:3 2989:1 2992:3 2998:2 3001:7 3007:1 3015:1 3021:1 3026:3 3028:11 3036:1 3039:3 3041:1 3043:1 3044:1 3046:2 3047:3 3048:2 3049:1 3053:2 3062:1 3063:2 3068:1 3069:2 3070:1 3071:4 3081:1 3082:2 3083:1 3093:3 3094:1 3110:4 3111:1 3112:2 3114:2 3116:10 3118:3 3122:1 3123:5 3125:2 3126:1 3129:1 3132:1 3133:3 3135:1 3136:3 3142:6 3144:2 3146:2 3149:4 3151:1 3156:1 3168:4 3169:1 3193:1 3199:1 3202:3 3210:2 3212:1 3215:1 3222:1 3226:1 3231:1 3237:1 3250:2 3252:1 3265:1 3266:1 3267:1 3270:2 3272:1 3281:13 3283:2 3294:1 3295:2 3306:2 3312:1 3316:2 3321:1 3327:1 3328:2 3329:2 3345:1 3352:1 3357:6 3358:2 3378:2 3389:1 3390:1 3396:2 3397:1 3400:1 3417:1 3420:2 3431:3 3435:1 3446:1 3456:2 3458:1 3460:1 3462:1 3474:1 3489:1 3493:2 3501:2 3507:2 3510:3 3511:2 3512:1 3518:2 3521:1 3536:2 3558:1 3560:11 3562:4 3568:5 3578:1 3580:1 3581:12 3583:3 3585:1 3587:2 3588:2 3590:1 3593:1 3599:2 3600:1 3607:1 3609:1 3629:1 3631:4 3633:1 3638:2 3642:2 3655:1 3671:2 3679:1 3692:2 3706:11 3707:3 3726:12 3731:2 3732:2 3733:2 3736:1 3738:1 3751:1 3753:2 3763:1 3766:1 3771:1 3775:1 3777:11 3780:1 3788:1 3811:6 3819:3 3820:1 3830:1 3834:1 3836:1 3837:1 3841:1 3846:1 3857:1 3871:2 3872:1 3873:2 3879:2 3880:1 3886:3 3892:1 3901:2 3902:1 3905:5 3910:2 3919:1 3920:7 3927:1 3936:1 3948:1 3966:4 3972:2 3975:3 3977:1 3989:1 3991:1 3994:2 3997:1 3998:1 3999:1 4002:2 4013:2 4019:3 4026:3 4031:1 4033:11 4037:4 4046:1 4054:1 4058:3 4059:5 4067:1 4071:52 4072:2 4073:1 4078:1 4079:1 4080:1 4091:2 4096:1 4098:1 4111:1 4114:6 4128:1 4129:1 4131:11 4140:2 4144:1 4145:13 4152:8 4160:2 4161:1 4162:1 4168:1 4169:10 4175:1 4194:1 4195:6 4196:3 4197:1 4203:1 4210:6 4211:1 4213:2 4225:6 4234:2 4249:2 4251:1 4253:4 4257:1 4266:1 4270:2 4277:1 4291:1 4294:7 4301:1 4305:2 4307:1 4309:1 4311:1 4324:5 4331:1 4343:2 4348:5 4349:5 4366:1 4378:1 4381:1 4387:1 4412:2 4420:2 4427:4 4436:2 4441:1 4471:2 4473:2 4476:1 4483:1 4486:1 4500:1 4502:1 4506:1 4510:2 4520:1 4544:3 4549:2 4553:11 4556:2 4561:2 4568:2 4572:1 4574:1 4586:1 4596:1 4605:1 4611:1 4622:2 4627:3 4628:3 4635:1 4636:1 4638:2 4641:2 4646:1 4647:1 4649:2 4652:1 4658:2 4667:1 4676:2 4683:1 4686:10 4692:12 4699:9 4708:1 4710:1 4733:3 4734:1 4743:1 4751:1 4754:3 4759:1 4762:3 4766:1 4768:1 4769:1 4771:3 4772:1 4778:2 4779:2 4794:2 4795:6 4822:1 4824:1 4827:1 4831:1 4834:11 4837:2 4843:1 4847:1 4851:12 4869:3 4885:1 4900:2 4910:1 4914:2 4937:1 4940:2 4959:2 4960:1 4982:6 4989:4 5001:1 5006:6 5016:1 5018:1 5019:1 5023:6 5024:1 5025:1 5039:1 5040:2 5052:1 5055:1 5057:1 5058:7 5067:47 5074:1 5081:1 5082:2 5083:6 5097:1 5101:1 5107:1 5112:1 5131:1 5132:1 5135:1 5153:3 5156:1 5157:1 5185:1 5187:1 5193:1 5200:1 5202:1 5203:16 5206:3 5212:1 5227:1 5228:1 5231:2 5236:2 5237:1 5241:4 5247:1 5256:6 5264:1 5266:9 5271:8 5279:1 5288:1 5291:1 5297:1 5301:1 5309:1 5313:2 5314:1 5321:1 5345:1 5347:2 5348:1 5353:1 5355:1 5362:1 5364:3 5365:5 5366:2 5372:1 5375:2 5379:1 5382:1 5383:2 5385:2 5387:1 5389:1 5394:3 5402:1 5406:4 5408:2 5413:1 5416:1 5424:1 5433:1 5434:1 5437:2653 5443:2 5456:3 5458:1 5460:2 5462:1 5468:1 5469:1 5496:1 5497:1 5499:1 5503:1 5507:2 5509:2 5511:1 5518:1 5520:2 5522:1 5529:1 5530:2 5582:1 5583:1 5590:1 5600:1 5604:2 5625:1 5637:1 5644:1 5657:1 5661:1 5672:2 5673:2 5674:1 5679:1 5683:1 5691:4 5697:4 5713:1 5714:2 5717:2 5718:2 5751:4 5753:5 5755:1 5756:2 5757:1 5760:1 5761:1 5762:2 5763:1 5765:5 5767:1 5771:6 5775:2 5778:1 5780:8 5785:1 5806:2 5813:3 5817:1 5837:3 5856:2 5867:1 5874:1 5879:1 5886:1 5893:3 5904:1 5905:1 5911:2 5912:1 5916:1 5932:16 5944:1 5962:3 5974:1 5981:1 5982:1 5984:13 5995:1 5996:3 5997:1 6007:1 6020:1 6023:1 6026:3 6055:1 6059:1 6063:1 6090:1 6092:2 6100:1 6110:1 6111:1 6118:1 6133:1 6153:1 6165:1 6168:1 6174:1 6204:2 6205:1 6208:2 6216:1 6220:1 6232:1 6233:5 6247:2 6262:1 6307:1 6308:1 6311:4 6316:3 6317:2 6321:1 6325:1 6330:1 6339:6 6349:3 6351:3 6352:3 6354:1 6360:1 6364:1 6367:2 6368:1 6372:2 6398:1 6417:1 6420:7 6422:1 6425:5 6450:1 6451:4 6452:1 6453:1 6458:1 6473:1 6475:1 6489:2 6502:11 6508:1 6511:11 6517:8 6519:3 6520:2 6534:1 6538:1 6541:7 6542:1 6543:1 6547:1 6559:1 6565:1 6566:1 6571:1 6586:2 6587:3 6588:2 6590:1 6593:1 6596:1 6607:1 6609:2 6612:1 6615:3 6635:1 6660:1 6661:2 6662:1 6668:1 6675:20 6677:4 6680:1 6681:1 6682:1 6683:5 6688:1 6694:10 6699:2 6708:1 6714:1 6722:1 6725:3 6736:1 6741:1 6746:2 6747:9 6749:1 6752:11 6756:1 6765:1 6771:2 6775:1 6780:2 6801:1 6822:1 6829:2 6837:2 6842:1 6845:15 6866:3 6867:7 6868:3 6873:2 6876:3 6879:1 6880:1 6882:1 6884:1 6885:1 6891:1 6900:2 6902:4 6903:3 6905:4 6913:1 6931:3 6945:3 6947:1 6952:3 6953:1 6955:1 6956:2 6957:2 6960:1 6967:1 6970:2 6976:1 6988:1 6991:1 7000:3 7005:1 7008:2 7009:1 7010:1 7013:1 7016:1 7024:1 7057:1 7073:1 7078:1 7079:1 7082:3 7084:1 7089:1 7110:1 7112:1 7113:1 7127:2 7129:3 7136:1 7142:1 7148:6 7156:2 7159:2 7160:6 7161:1 7170:1 7174:1 7185:4 7192:2 7193:1 7205:1 7207:1 7225:1 7258:1 7263:1 7266:7 7268:5 7269:1 7273:1 7277:1 7278:1 7281:2 7287:3 7295:4 7297:2 7305:2 7309:3 7327:1 7340:1 7342:2 7353:1 7357:2 7359:1 7361:1 7370:1 7379:1 7400:2 7402:1 7403:3 7414:4 7425:1 7427:1 7430:1 7441:1 7443:1 7446:1 7447:1 7459:3 7462:1 7466:5 7467:1 7474:3 7484:1 7488:2 7490:3 7497:1 7504:1 7506:2 7512:1 7513:1 7515:1 7516:1 7518:1 7525:1 7526:6 7527:1 7539:1 7548:1 7563:1 7571:3 7582:5 7585:1 7589:1 7591:1 7593:1 7595:1 7596:2 7601:2 7610:1 7611:5 7612:1 7615:1 7618:1 7622:7 7623:1 7630:1 7631:1 7633:1 7641:4 7643:1 7647:1 7652:2 7653:1 7655:1 7664:2 7669:1 7670:1 7672:1 7674:2 7678:1 7690:1 7703:6 7707:1 7714:1 7740:1 7753:1 7767:1 7769:2 7770:1 7771:1 7773:1 7782:5 7783:2 7788:2 7790:3 7794:6 7800:1 7804:1 7825:1 7829:3 7849:1 7852:2 7854:1 7872:1 7882:1 7886:1 7891:1 7895:1 7898:9 7912:1 7914:1 7921:1 7930:1 7941:1 7951:4 7968:2 7975:1 7976:2 7977:2 7979:1 7983:1 7986:1 7989:2 8016:1 8024:1 8032:1 8033:1 8055:2 8080:2 8084:1 8091:4 8095:4 8110:1 8125:2 8134:1 8137:2 8148:1 8156:1 8160:1 8162:1 8176:1 8190:2 8195:1 8210:2 8223:1 8244:1 8246:2 8254:1 8260:1 8267:1 8278:1 8282:2 8290:3 8300:1 8305:1 8311:2 8328:1 8332:3 8334:4 8346:1 8353:1 8358:1 8363:4 8364:4 8373:8 8378:4 8379:2 8386:1 8388:1 8398:2 8427:1 8429:1 8435:1 8452:1 8455:1 8458:1 8459:1 8465:1 8473:1 8479:1 8524:1 8526:3 8533:1 8541:1 8545:7 8554:2 8556:1 8560:3 8562:1 8563:1 8572:1 8579:2 8589:8 8590:5 8608:1 8609:1 8611:1 8617:1 8624:1 8626:1 8636:1 8642:2 8643:2 8644:3 8650:2 8651:1 8652:1 8657:1 8663:2 8667:2 8670:2 8672:1 8684:1 8691:2 8692:1 8694:1 8695:1 8704:1 8711:2 8712:6 8717:2 8718:1 8721:1 8736:1 8744:2 8745:11 8774:1 8777:1 8784:6 8794:1 8810:2 8820:9 8824:5 8825:3 8831:6 8832:3 8835:4 8836:2 8837:2 8839:4 8840:1 8843:1 8846:7 8847:14 8848:1 8849:1 8851:5 8853:4 8895:1 8911:5 8918:3 8919:1 8925:1 8944:1 8950:1 8954:1 8997:2 9003:1 9013:1 9020:1 9027:1 9038:2 9041:12 9046:1 9058:2 9061:1 9062:1 9074:2 9077:1 9080:1 9082:5 9086:1 9091:3 9117:1 9118:1 9122:1 9131:1 9133:1 9138:1 9145:1 9153:1 9158:11 9176:2 9187:1 9203:2 9204:1 9207:1 9208:1 9212:2 9213:2 9214:1 9216:1 9234:1 9236:3 9241:2 9245:1 9254:3 9260:1 9265:2 9302:1 9308:1 9315:1 9318:2 9321:2 9322:1 9333:1 9337:4 9338:1 9344:2 9346:1 9347:1 9349:1 9355:2 9372:2 9374:1 9387:1 9392:1 9393:1 9397:1 9402:3 9408:2 9410:1 9420:2 9423:2 9425:5 9428:1 9433:1 9439:1 9441:1 9471:2 9478:1 9492:1 9500:1 9503:1 9508:2 9509:12 9513:1 9514:3 9515:1 9517:2 9518:4 9521:1 9530:2 9535:1 9538:3 9542:1 9543:4 9544:3 9555:4 9556:1 9558:4 9563:2 9572:1 9575:1 9578:1 9581:1 9582:2 9585:3 9592:11 9607:5 9609:1 9613:1 9622:2 9624:1 9628:1 9632:1 9634:4 9646:1 9658:3 9667:1 9669:2 9674:1 9678:1 9687:1 9689:2 9694:2 9695:1 9696:8 9703:2 9715:5 9718:2 9723:2 9726:1 9731:3 9732:1 9754:2 9755:1 9762:3 9764:2 9769:1 9780:2 9781:1 9782:8 9810:1 9822:1 9828:1 9830:3 9836:1 9841:3 9846:3 9865:2 9867:1 9888:1 9905:1 9914:1 9916:5 9918:5 9920:1 9925:2 9927:1 9930:1 9937:1 9939:1 9945:2 9946:2 9948:1 9956:5 9958:1 9960:2 9966:1 9967:1 9979:1 9995:7 9996:1 9999:3 10010:1 10016:1 10017:1 10029:2 10042:1 10064:1 10093:2 10115:1 10116:2 10119:1 10136:1 10140:1 10150:1 10159:1 10160:3 10161:1 10163:1 10168:1 10174:1 10182:2 10184:1 10196:1 10200:1 10205:1 10206:1 10209:1 10214:2 10220:2 10221:1 10223:3 10224:2 10233:4 10236:2 10238:1 10266:4 10269:3 10275:2 10277:1 10278:3 10293:1 10294:1 10296:1 10299:1 10300:1 10313:1 10323:2 10328:2 10333:1 10336:1 10341:1 10356:1 10357:2 10363:3 10367:1 10368:3 10374:1 10376:2 10382:2 10387:2 10392:2 10396:1 10397:3 10399:1 10409:1 10410:12 10425:1 10428:1 10430:1 10448:1 10453:1 10460:1 10465:1 10466:2 10467:1 10470:1 10478:1 10479:1 10481:1 10486:1 10490:1 10512:1 10513:1 10517:2 10536:3 10537:1 10548:1 10559:1 10570:1 10585:1 10593:2 10606:1 10607:1 10611:1 10613:1 10615:1 10625:2 10648:4 10662:1 10664:1 10679:1 10682:5 10683:1 10691:1 10695:3 10717:2 10718:10 10729:1 10734:1 10736:1 10737:4 10743:2 10744:9 10751:3 10755:1 10758:1 10760:2 10772:1 10773:4 10774:1 10777:1 10780:1 10782:1 10783:1 10789:1 10790:1 10791:1 10793:1 10796:2 10797:1 10798:1 10805:1 10812:53 10814:1 10817:1 10823:1 10825:1 10833:1 10838:1 10841:5 10843:8 10849:1 10855:4 10856:1 10866:1 10871:3 10872:1 10886:2 10888:1 10894:1 10901:1 10903:1 10908:2 10914:1 10921:1 10928:1 10940:4 10941:1 10942:1 10946:2 10962:1 10981:8 10983:2 10990:1 10998:9 11002:1 11004:1 11022:1 11033:1 11034:3 11037:1 11038:1 11041:1 11045:1 11057:1 11072:2 11078:1 11082:2 11086:1 11087:1 11110:1 11112:3 11113:3 11114:1 11118:1 11121:2 11125:6 11131:1 11150:3 11164:1 11168:1 11170:1 11176:1 11190:1 11195:2 11201:1 11203:1 11212:1 11227:1 11228:3 11229:2 11232:2 11246:1 11247:4 11248:3 11260:5 11285:1 11297:3 11300:1 11301:2 11321:1 11322:1 11329:1 11332:1 11337:1 11340:3 11342:2 11347:2 11352:1 11354:1 11357:2 11361:1 11363:5 11379:4 11382:3 11397:1 11401:9 11403:3 11413:1 11417:1 11423:5 11431:2 11436:19 11452:3 11457:3 11460:1 11466:1 11470:1 11485:1 11487:3 11509:5 11516:1 11528:1 11530:2 11548:1 11549:1 11559:2 11569:3 11582:1 11584:3 11594:3 11597:10 11618:1 11620:3 11621:1 11625:1 11651:4 11656:1 11658:1 11665:1 11668:1 11678:1 11691:2 11709:7 11711:1 11714:1 11722:1 11725:1 11727:4 11728:1 11729:1 11737:2 11745:1 11747:1 11752:1 11758:1 11764:1 11771:3 11774:1 11776:6 11779:1 11782:1 11785:5 11786:2 11788:2 11799:12 11827:1 11833:1 11842:1 11848:1 11849:2 11854:1 11855:3 11857:1 11871:1 11881:1 11885:1 11888:2 11896:1 11898:1 11910:1 11913:1 11916:1 11918:1 11921:1 11926:2 11943:3 11944:1 11947:1 11949:1 11950:5 11957:1 11966:1 11987:1 11990:3 11995:1 11997:1 11999:1 12003:2 12004:11 12005:1 12011:4 12014:1 12015:1 12019:1 12020:2 12021:1 12022:2 12024:4 12025:2 12032:1 12035:2 12038:1 12042:2 12044:1 12046:1 12047:1 12058:1 12059:1 12063:1 12067:1 12077:1 12089:1 12094:1 12095:3 12102:1 12110:6 12118:1 12128:4 12129:1 12133:1 12136:1 12137:3 12143:1 12156:1 12165:1 12168:1 12183:1 12186:1 12196:14 12205:1 12211:1 12213:1 12214:1 12229:2 12240:1 12241:1 12257:2 12259:1 12262:1 12285:2 12290:1 12294:1 12323:1 12344:1 12345:6 12353:1 12356:1 12366:1 12370:1 12373:1 12377:1 12378:1 12379:1 12382:2 12386:2 12399:1 12401:2 12402:2 12418:12 12423:2 12435:2 12436:1 12438:1 12444:1 12445:2 12446:2 12450:1 12453:2 12454:1 12457:3 12463:2 12466:1 12467:8 12471:3 12473:1 12477:1 12481:1 12483:1 12484:1 12486:1 12495:5 12501:6 12502:3 12503:2 12505:1 12506:7 12511:2 12512:2 12518:1 12521:1 12525:1 12527:1 12546:1 12548:3 12554:2 12557:5 12561:2 12572:2 12594:1 12614:1 12624:1 12625:1 12629:1 12630:1 12631:3 12632:2 12633:1 12643:2 12652:5 12658:1 12664:11 12673:2 12674:1 12678:1 12702:1 12715:3 12716:1 12727:1 12733:1 12735:1 12739:1 12751:5 12755:1 12757:2 12762:4 12773:1 12776:1 12778:3 12779:1 12781:1 12800:1 12804:1 12806:1 12810:3 12821:2 12825:2 12839:1 12855:1 12856:1 12857:1 12861:2 12866:1 12868:1 12879:6 12907:1 12913:1 12915:1 12920:1 12926:1 12927:1 12929:4 12930:1 12932:1 12950:2 12951:1 12962:1 12973:1 12974:14 12981:6 12984:1 12991:4 13001:1 13002:1 13007:1 13008:1 13012:3 13018:1 13021:3 13025:1 13028:1 13048:1 13051:1 13052:1 13054:2 13064:5 13068:1 13069:5 13076:2 13090:2 13091:2 13095:1 13099:1 13105:1 13107:1 13108:6 13111:1 13118:1 13120:1 13130:4 13140:1 13142:2 13151:1 13153:1 13159:1 13163:1 13175:1 13187:1 13195:1 13197:4 13198:1 13228:3 13229:1 13254:3 13259:1 13270:1 13275:1 13276:1 13278:1 13280:1 13281:2 13285:1 13288:1 13291:1 13299:8 13305:1 13311:1 13316:1 13322:2 13328:1 13330:1 13331:2 13336:2 13337:1 13342:1 13343:1 13346:1 13347:1 13348:4 13354:1 13356:1 13359:1 13376:1 13388:1 13405:1 13411:2 13412:10 13413:3 13414:1 13417:1 13423:3 13425:4 13430:3 13431:4 13433:1 13434:5 13436:6 13437:1 13439:3 13441:13 13449:2 13450:8 13451:7 13453:11 13465:1 13466:1 13472:1 13474:13 13475:9 13476:1 13493:1 13495:1 13498:5 13502:5 13503:1 13512:3 13522:1 13525:1 13528:1 13532:11 13533:1 13534:3 13555:2 13567:1 13570:1 13585:1 13587:1 13595:1 13598:1 13599:2 13600:10 13606:4 13610:9 13612:4 13630:3 13635:3 13636:13 13637:1 13638:1 13640:1 13650:3 13654:1 13664:2 13672:1 13680:1 13684:3 13696:3 13700:1 13702:5 13703:3 13708:1 13711:4 13721:2 13726:2 13741:2 13747:2 13751:1 13756:22 13757:1 13766:1 13777:1 13788:1 13789:1 13801:2 13810:4 13817:1 13821:1 13823:1 13824:11 13844:4 13845:2 13847:1 13863:2 13875:2 13878:1 13880:1 13882:1 13883:1 13886:1 13889:1 13891:1 13892:1 13898:1 13902:6 13904:2 13908:11 13911:1 13917:1 13929:1 13934:1 13937:7 13944:1 13949:1 13955:1 13957:2 13960:4 13962:1 13966:2 13974:5 13977:2 13978:1 13992:1 14002:5 14011:1 14013:1 14048:2 14051:1 14055:2 14073:1 14079:1 14084:3 14088:1 14094:1 14096:3 14098:1 14100:11 14108:1 14132:1 14133:11 14134:1 14144:2 14148:10 14150:1 14152:1 14181:13 14192:1 14236:2 14240:1 14247:1 14257:2 14262:1 14271:2 14274:1 14275:1 14286:2 14289:3 14293:8 14296:7 14298:1 14299:1 14304:1 14319:1 14325:1 14328:2 14330:1 14333:1 14339:1 14349:1 14350:1 14356:1 14364:1 14366:3 14367:1 14371:1 14376:1 14381:3 14383:1 14396:2 14398:1 14401:1 14402:1 14411:5 14420:2 14422:1 14423:1 14436:2 14447:1 14449:1 14452:3 14458:1 14469:1 14471:1 14474:3 14478:1 14484:5 14485:1 14494:1 14515:3 14519:12 14525:9 14527:1 14540:1 14543:4 14553:1 14555:7 14559:3 14561:1 14563:1 14574:2 14575:1 14581:2 14583:11 14590:5 14592:1 14594:6 14599:2 14601:2 14604:1 14608:2 14609:5 14610:5 14637:1 14642:1 14644:1 14663:2 14665:2 14672:2 14680:1 14681:10 14692:3 14694:4 14707:4 14708:1 14715:2 14717:1 14718:8 14757:1 14759:1 14765:2 14770:3 14780:1 14781:1 14798:1 14801:1 14814:2 14815:2 14823:2 14826:7 14828:1 14829:1 14830:2 14831:1 14834:1 14841:2 14845:2 14854:1 14860:1 14861:3 14867:1 14868:1 14870:2 14873:1 14884:6 14887:1 14897:1 14900:2 14901:1 14903:1 14904:1 14909:7 14920:1 14928:1 14929:1 14935:1 14942:1 14962:1 14965:8 14968:5 14979:2 14980:5 14981:1 14994:1 15004:1 15005:2 15008:2 15009:4 15010:1 15015:1 15019:2 15021:2 15030:2 15036:1 15040:1 15050:1 15051:1 15054:1 15065:1 15066:1 15068:1 15076:1 15085:12 15089:9 15113:5 15117:4 15118:2 15122:2 15125:1 15131:1 15134:2 15143:1 15146:1 15153:1 15158:1 15165:1 15170:1 15177:1 15183:1 15188:1 15193:1 15195:3 15203:1 15206:5 15211:1 15234:1 15235:1 15241:1 15243:3 15248:1 15253:1 15258:4 15274:2 15281:1 15282:1 15283:1 15290:11 15302:1 15314:1 15315:1 15324:1 15342:1 15363:2 15367:2 15394:1 15396:1 15398:1 15405:2 15421:1 15437:1 15445:4 15480:1 15486:1 15490:1 15491:1 15497:2 15498:1 15502:1 15503:6 15516:1 15523:1 15528:1 15546:2 15547:1 15550:1 15568:9 15576:2 15584:1 15585:1 15593:1 15613:4 15618:8 15628:1 15629:1 15633:2 15637:4 15658:1 15665:1 15666:14 15675:3 15687:1 15693:4 15695:1 15696:5 15698:3 15704:1 15708:1 15712:2 15713:3 15714:1 15715:2 15723:2 15724:3 15727:1 15728:1 15731:1 15740:1 15745:1 15747:2 15752:7 15755:1 15756:1 15764:1 15771:1 15772:2 15773:2 15778:1 15789:6 15790:1 15799:1 15819:2 15820:2 15829:1 15836:1 15840:1 15854:2 15863:1 15864:2 15867:1 15872:2 15881:2 15896:1 15905:1 15911:1 15923:1 15926:1 15930:2 15934:1 15937:2 15959:6 15962:1 15966:1 15972:1 15974:1 15976:1 15978:47 15986:2 15990:2 15996:3 16001:2 16006:12 16008:1 16016:5 16017:1 16021:2 16022:2 16029:1 16030:1 16033:1 16037:1 16062:1 16072:1 16077:2 16081:1 16106:1 16110:2 16122:1 16127:1 16130:1 16139:1 16156:1 16160:4 16175:1 16179:1 16183:5 16187:2 16202:1 16206:1 16217:2 16221:7 16235:3 16243:1 16247:1 16263:1 16264:4 16271:1 16276:1 16278:1 16279:1 16282:1 16287:1 16288:1 16298:1 16331:1 16338:3 16343:3 16344:1 16345:1 16346:1 16356:1 16358:1 16361:1 16362:1 16363:1 16366:5 16380:1 16386:2 16388:2 16389:4 16394:1 16400:1 16401:1 16402:1 16410:1 16411:1 16418:1 16421:1 16431:1 16434:3 16482:1 16487:1 16501:1 16514:1 16515:3 16532:1 16540:2 16545:1 16551:1 16558:1 16561:1 16571:2 16573:1 16579:2 16582:10 16584:1 16585:1 16594:2 16595:3 16597:3 16604:1 16616:1 16619:1 16623:1 16630:1 16633:3 16640:1 16655:1 16660:1 16666:7 16672:1 16675:1 16679:2 16691:2 16694:1 16696:1 16716:9 16717:1 16726:1 16732:1 16739:1 16740:1 16760:2 16806:1 16812:5 16817:3 16822:23 16828:1 16830:1 16834:1 16838:1 16869:1 16870:1 16872:1 16879:4 16883:1 16884:1 16893:1 16894:1 16901:1 16902:6 16903:1 16905:1 16914:1 16918:1 16932:1 16937:2 16942:1 16945:1 16946:1 16955:1 16964:1 16967:2 16980:1 16991:1 17001:1 17005:1 17010:1 17014:3 17019:1 17026:1 17027:1 17032:1 17039:1 17040:1 17042:5 17058:1 17059:1 17067:2 17072:7 17094:3 17097:1 17104:3 17106:5 17108:1 17118:1 17124:1 17125:1 17128:3 17140:1 17146:1 17161:1 17171:1 17177:1 17178:1 17182:1 17189:1 17191:2 17192:1 17193:1 17202:1 17207:7 17213:1 17216:2 17219:1 17222:1 17237:2 17239:3 17242:1 17251:11 17252:2 17255:1 17263:1 17270:4 17301:1 17306:5 17324:8 17342:2 17353:1 17362:1 17370:2 17380:1 17388:1 17389:2 17394:1 17408:43 17423:3 17434:1 17436:9 17437:5 17438:1 17440:6 17443:3 17444:3 17455:1 17465:1 17474:7 17475:1 17482:1 17486:2 17489:1 17492:1 17493:4 17495:7 17504:1 17507:1 17508:1 17510:1 17512:2 17516:1 17517:1 17519:1 17520:3 17524:1 17531:2 17532:3 17544:1 17546:2 17552:2 17572:1 17573:1 17576:1 17579:1 17583:3 17586:1 17590:2 17592:1 17604:1 17605:1 17608:1 17613:1 17615:6 17620:2 17627:1 17629:2 17631:2 17643:2 17644:1 17645:2 17667:1 17672:1 17680:1 17684:2 17687:7 17690:1 17692:1 17696:1 17709:1 17723:1 17753:1 17768:1 17779:3 17780:1 17783:1 17787:1 17790:1 17802:5 17810:1 17815:1 17817:1 17820:1 17822:1 17825:3 17846:1 17863:2 17873:1 17877:1 17878:3 17886:1 17889:1 17890:1 17891:11 17894:1 17905:1 17912:14 17920:1 17926:1 17933:3 17934:3 17939:1 17960:1 17961:1 17968:1 17973:1 17989:1 17990:2 17992:1 18000:1 18009:1 18017:2 18019:1 18022:1 18033:2 18035:2 18039:1 18048:1 18058:1 18068:12 18075:4 18084:1 18086:1 18098:4 18100:4 18101:1 18108:1 18123:1 18131:1 18132:1 18143:2 18144:2 18145:1 18147:1 18148:1 18168:2 18176:4 18193:1 18198:3 18201:1 18210:2 18211:1 18212:1 18213:1 18221:6 18225:1 18230:4 18233:2 18246:2 18247:1 18249:6 18253:1 18255:1 18261:2 18263:1 18265:5 18266:1 18269:4 18271:1 18282:3 18289:3 18290:1 18310:1 18313:1 18318:1 18319:1 18325:3 18326:2 18328:1 18330:2 18342:1 18343:1 18344:2 18355:4 18363:1 18366:2 18367:1 18373:1 18380:2 18387:7 18389:9 18392:28 18393:3 18398:2 18399:1 18403:1 18412:2 18419:1 18423:1 18428:2 18442:4 18453:1 18458:1 18465:3 18473:4 18498:2 18509:1 18516:1 18529:1 18550:1 18555:2 18557:2 18563:4 18569:3 18584:1 18585:3 18589:1 18612:2 18613:4 18614:1 18631:1 18636:2 18641:3 18643:8 18657:4 18686:2 18690:10 18693:1 18699:2 18713:5 18720:1 18722:7 18735:6 18738:1 18747:2 18751:7 18753:5 18760:3 18764:1 18765:1 18766:2 18767:1 18768:1 18788:1 18792:1 18799:1 18801:7 18811:4 18819:2 18827:1 18834:3 18836:1 18838:1 18850:5 18852:1 18860:1 18863:1 18865:1 18869:1 18870:2 18874:2 18877:1 18899:5 18907:5 18914:1 18932:1 18934:2 18935:1 18937:1 18941:1 18945:1 18947:1 18953:3 18956:2 18958:4 18960:2 18964:1 18966:1 18978:1 18979:1 19001:11 19005:1 19007:1 19015:1 19020:22 19021:2 19031:4 19032:2 19035:2 19036:1 19042:1 19050:4 19057:2 19085:1 19098:1 19116:1 19130:11 19132:1 19137:1 19140:3 19147:1 19156:1 19165:8 19171:2 19174:1 19177:12 19184:1 19189:1 19208:2 19210:1 19214:1 19278:4 19280:1 19301:1 19310:1 19311:2 19312:1 19331:2 19333:1 19336:1 19350:1 19352:1 19358:4 19360:4 19365:5 19367:2 19369:1 19386:1 19389:1 19390:1 19398:1 19399:1 19410:1 19411:2 19412:1 19433:1 19438:1 19444:1 19455:1 19458:2 19465:4 19470:5 19493:1 19499:1 19510:1 19518:3 19522:1 19526:2 19528:1 19537:1 19545:1 19549:1 19556:1 19558:1 19559:1 19575:2 19600:5 19604:1 19606:1 19607:1 19615:1 19618:3 19619:1 19627:1 19638:1 19642:1 19643:3 19644:1 19659:2 19660:2 19661:2 19664:1 19672:1 19673:1 19674:8 19684:1 19687:1 19689:1 19691:1 19692:1 19698:1 19699:1 19718:1 19721:1 19722:2 19740:4 19748:1 19762:1 19767:1 19769:1 19780:2 19791:1 19812:1 19818:2 19823:2 19824:8 19825:1 19831:1 19844:1 19852:1 19856:1 19869:1 19870:1 19873:1 19878:1 19883:1 19888:3 19894:2 19905:1 19916:2 19918:2 19919:1 19925:1 19927:1 19930:3 19932:1 19934:1 19944:3 19957:1 19996:3 20003:1 20033:1 20036:1 20044:1 20052:1 20058:1 20059:5 20060:6 20076:1 20079:1 20081:1 20082:6 20083:1 20096:2 20097:1 20101:1 20105:1 20116:1 20117:1 20118:3 20124:1 20126:4 20150:2 20158:1 20159:1 20167:1 20175:1 20177:6 20178:2 20181:1 20185:6 20188:3 20191:4 20193:1 20207:3 20210:1 20212:3 20215:9 20247:3 20255:6 20263:3 20270:2 20271:1 20273:1 20276:1 20290:1 20311:2 20328:1 20330:1 20342:1 20350:1 20386:1 20388:3
14 4:1 5:2 8:1 20:1 21:2 49:1 58:1 69:2 72:1 73:1 74:1 88:9 113:1 115:2 116:2 118:1 119:2 131:1 133:1 134:1 140:7 143:1 148:2 152:2 162:1 166:1 183:3 191:1 206:1 208:2 216:1 217:3 226:1 238:2 257:1 272:1 273:1 274:2 277:2 282:2 284:1 289:4 307:1 308:1 311:1 344:1 356:1 364:11 366:9 371:3 374:1 376:5 388:1 392:2 400:1 403:1 406:3 411:1 417:2 419:1 420:1 421:1 423:1 430:3 433:1 440:1 441:2 442:1 448:1 453:1 455:1 456:1 467:11 470:1 475:1 477:1 480:2 484:1 492:1 493:9 495:2 496:1 502:1 509:1 513:1 528:2 531:1 547:2 548:11 550:1 558:1 559:6 569:1 576:3 584:2 590:2 592:1 609:1 611:1 616:1 624:2 633:2 647:1 667:5 669:2 675:2 678:1 682:1 697:2 700:2 703:6 706:4 717:2 730:1 754:1 791:1 800:11 801:3 802:4 805:5 828:1 841:2 866:1 868:2 874:1 877:1 884:2 885:3 897:1 913:1 914:1 919:2 932:1 936:1 939:7 950:2 951:1 955:2 956:1 984:3 1000:1 1014:2 1015:1 1016:1 1018:2 1025:1 1028:5 1031:2 1037:1 1039:2 1046:2 1059:1 1060:1 1070:1 1079:2 1081:6 1082:2 1115:1 1116:3 1128:1 1134:1 1142:1 1146:2 1153:1 1186:2 1190:1 1196:1 1204:1 1219:1 1224:1 1234:1 1237:1 1241:2 1246:6 1247:1 1252:1 1253:1 1256:3 1258:1 1262:1 1266:1 1270:1 1273:2 1290:2 1295:1 1310:4 1311:4 1313:1 1315:2 1324:1 1330:7 1331:10 1332:1 1333:1 1334:3 1342:1 1350:1 1355:1 1366:1 1367:1 1371:1 1373:1 1377:1 1380:5 1382:1 1388:2 1392:1 1416:1 1419:7 1428:1 1430:1 1432:8 1438:1 1442:4 1443:1 1445:3 1449:3 1467:3 1468:4 1477:1 1487:1 1492:3 1499:3 1510:1 1513:1 1514:1 1517:1 1524:1 1525:1 1528:2 1535:1 1536:2 1542:1 1545:3 1548:1 1553:2 1561:2 1562:2 1565:1 1571:1 1572:1 1578:1 1585:3 1596:1 1597:1 1601:1 1603:1 1609:3 1617:1 1620:1 1634:1 1637:3 1640:1 1644:1 1647:17 1653:3 1654:1 1658:1 1668:2 1672:2 1673:1 1674:2 1675:1 1679:1 1692:2 1721:1 1745:1 1758:6 1763:1 1773:3 1775:1 1777:2 1786:1 1789:1 1796:1 1797:2 1818:2 1822:1 1827:2 1828:1 1830:1 1834:1 1836:1 1839:3 1840:1 1843:3 1845:3 1846:2 1847:2 1849:1 1852:1 1854:1 1858:7 1860:1 1865:1 1867:1 1869:1 1875:4 1880:1 1884:1 1891:1 1895:1 1911:1 1912:3 1915:1 1921:1 1930:1 1934:2 1941:1 1942:1 1943:1 1945:3 1946:1 1961:2 1969:1 1980:2 1993:3 2003:3 2004:6 2013:1 2016:2 2021:1 2040:1 2071:1 2077:1 2084:1 2089:1 2100:6 2113:1 2117:2 2128:1 2143:2 2146:2 2149:7 2157:5 2169:1 2173:1 2180:1 2182:1 2183:1 2186:1 2189:1 2197:1 2198:2 2199:1 2201:2 2203:1 2205:1 2230:1 2235:5 2239:1 2247:1 2251:4 2253:3 2261:1 2266:1 2271:1 2280:4 2282:2 2289:2 2296:1 2298:3 2299:1 2313:5 2315:2 2320:1 2327:5 2329:3 2344:1 2347:1 2349:2 2352:1 2355:1 2358:11 2360:1 2369:1 2378:1 2379:5 2384:1 2385:2 2393:1 2399:1 2404:1 2406:1 2407:2 2416:1 2418:2 2423:1 2424:1 2443:1 2455:4 2456:1 2481:2 2484:1 2504:10 2509:1 2524:5 2533:9 2536:2 2540:4 2545:1 2556:1 2559:1 2560:2 2563:12 2570:2 2571:1 2572:2 2598:6 2600:5 2605:1 2625:1 2630:2 2632:4 2642:1 2656:2 2657:1 2658:3 2659:1 2661:1 2663:2 2664:1 2665:1 2666:1 2669:1 2671:2 2684:1 2696:2 2697:2 2701:1 2713:1 2715:1 2716:1 2726:2 2737:4 2747:1 2749:1 2751:3 2761:1 2768:1 2775:1 2778:1 2781:1 2782:8 2787:2 2788:1 2789:2 2812:1 2814:1 2816:1 2817:5 2822:1 2824:2 2831:12 2837:1 2840:1 2851:2 2856:1 2858:1 2861:1 2881:1 2887:3 2903:4 2905:8 2912:1 2917:1 2923:4 2927:5 2930:4 2931:1 2933:2 2935:1 2937:1 2939:1 2943:1 2951:2 2961:3 2971:1 2980:3 2982:3 2983:3 2989:1 2992:3 2998:2 3001:7 3007:1 3015:1 3021:1 3026:3 3028:11 3036:1 3039:3 3041:1 3042:1 3043:1 3044:1 3046:2 3047:3 3048:2 3049:1 3053:2 3062:1 3063:2 3068:1 3069:2 3070:1 3071:4 3080:1 3081:1 3082:2 3083:1 3093:3 3094:1 3095:1 3110:4 3111:1 3112:2 3114:2 3116:11 3118:3 3122:1 3123:5 3125:2 3126:1 3129:1 3132:1 3133:4 3135:1 3136:3 3142:6 3144:2 3146:2 3149:4 3151:1 3156:1 3168:4 3169:1 3193:1 3199:1 3202:4 3210:2 3212:1 3215:1 3222:1 3226:1 3231:1 3237:1 3250:2 3252:1 3265:1 3266:1 3267:1 3270:2 3272:1 3281:13 3283:2 3294:1 3295:2 3306:2 3312:1 3316:2 3321:1 3327:1 3328:2 3329:2 3345:1 3352:1 3357:6 3358:2 3378:2 3389:1 3390:1 3396:2 3397:1 3400:1 3417:1 3420:2 3431:3 3435:1 3436:1 3446:1 3456:2 3458:1 3460:1 3462:1 3474:1 3489:1 3493:2 3501:2 3507:2 3510:3 3511:2 3512:1 3518:2 3521:1 3536:2 3558:1 3560:12 3562:4 3568:5 3578:1 3580:1 3581:13 3583:3 3585:1 3587:2 3588:2 3590:1 3593:2 3599:2 3600:1 3607:1 3609:1 3629:1 3631:4 3633:1 3638:2 3642:2 3655:1 3671:2 3679:1 3692:2 3706:11 3707:3 3726:12 3731:2 3732:2 3733:2 3736:1 3738:1 3751:1 3753:2 3763:1 3766:1 3771:1 3775:1 3777:12 3780:1 3788:1 3811:6 3819:4 3820:1 3830:1 3834:1 3836:1 3837:1 3841:1 3846:1 3857:1 3871:2 3872:1 3873:2 3879:2 3880:1 3886:4 3892:1 3901:2 3902:1 3905:5 3909:1 3910:2 3919:1 3920:9 3927:1 3936:1 3948:1 3966:4 3972:2 3975:3 3977:1 3989:1 3991:1 3993:1 3994:2 3997:1 3998:1 3999:1 4002:2 4013:2 4019:3 4026:3 4031:1 4033:11 4037:4 4046:1 4054:1 4058:3 4059:5 4067:1 4071:54 4072:2 4073:1 4078:1 4079:1 4080:1 4091:2 4096:1 4098:1 4111:1 4114:6 4128:1 4129:1 4131:11 4140:2 4144:1 4145:13 4152:8 4160:2 4161:1 4162:1 4168:1 4169:10 4175:1 4194:1 4195:7 4196:3 4197:1 4203:1 4210:7 4211:1 4213:3 4225:6 4234:2 4249:2 4251:1 4253:4 4257:1 4266:1 4270:3 4277:1 4291:1 4294:7 4301:1 4305:2 4307:1 4309:1 4311:1 4322:1 4324:5 4331:1 4343:2 4348:5 4349:5 4366:1 4369:1 4378:1 4381:1 4387:1 4412:2 4420:2 4427:4 4436:2 4441:1 4471:2 4473:2 4476:1 4483:1 4486:1 4500:1 4502:1 4506:1 4510:2 4520:1 4544:3 4549:2 4553:12 4556:2 4561:2 4568:2 4572:1 4574:1 4586:1 4596:1 4605:1 4611:1 4622:2 4627:3 4628:3 4635:1 4636:1 4638:2 4641:2 4646:1 4647:1 4649:2 4652:1 4658:2 4667:1 4676:2 4683:1 4686:11 4692:12 4699:9 4708:1 4710:1 4733:3 4734:1 4743:1 4751:1 4754:3 4759:1 4762:3 4766:1 4768:1 4769:1 4771:4 4772:1 4778:2 4779:2 4794:2 4795:6 4822:1 4824:1 4827:1 4831:1 4834:12 4837:3 4843:1 4847:1 4851:12 4869:3 4883:1 4885:1 4900:2 4901:1 4910:1 4914:2 4937:1 4940:2 4959:2 4960:1 4982:6 4989:4 5001:1 5006:6 5016:1 5018:1 5019:1 5023:6 5024:1 5025:1 5039:1 5040:2 5052:1 5055:1 5057:1 5058:7 5067:48 5074:1 5081:1 5082:2 5083:6 5097:1 5101:1 5107:1 5112:2 5131:1 5132:1 5135:2 5153:3 5156:1 5157:2 5185:1 5187:1 5193:1 5200:1 5202:1 5203:17 5206:4 5212:1 5227:1 5228:1 5231:2 5236:2 5237:1 5241:4 5247:1 5256:6 5264:1 5266:9 5271:8 5279:1 5288:1 5291:1 5297:1 5301:1 5309:1 5313:2 5314:1 5321:1 5345:1 5347:2 5348:1 5353:1 5355:1 5362:1 5364:3 5365:5 5366:2 5372:1 5375:2 5379:1 5382:1 5383:2 5385:2 5387:1 5389:1 5394:3 5402:1 5406:4 5408:2 5413:1 5416:1 5424:1 5433:1 5434:1 5437:2728 5443:2 5456:3 5458:1 5460:2 5462:1 5468:1 5469:1 5496:1 5497:1 5499:1 5503:1 5507:2 5509:2 5511:1 5518:1 5520:2 5522:1 5529:1 5530:2 5582:1 5583:1 5590:1 5600:1 5604:2 5625:1 5637:1 5644:1 5657:1 5661:1 5672:2 5673:2 5674:1 5679:1 5683:1 5691:4 5697:4 5713:1 5714:2 5717:2 5718:2 5751:4 5753:5 5755:1 5756:2 5757:1 5760:1 5761:1 5762:2 5763:1 5765:6 5767:1 5771:6 5775:2 5778:1 5780:9 5785:1 5806:2 5813:3 5817:1 5837:3 5856:2 5867:1 5874:1 5879:1 5886:1 5893:3 5904:1 5905:1 5911:2 5912:1 5916:1 5932:16 5944:1 5962:3 5974:1 5981:1 5982:1 5984:14 5995:1 5996:3 5997:1 6007:1 6020:1 6023:1 6026:3 6047:1 6055:1 6059:1 6063:1 6090:1 6092:2 6100:1 6110:1 6111:1 6118:1 6133:1 6138:1 6153:1 6165:1 6168:1 6174:1 6204:2 6205:1 6208:2 6216:1 6220:1 6232:1 6233:5 6247:2 6262:1 6307:1 6308:2 6311:4 6316:3 6317:2 6321:1 6325:1 6330:1 6339:6 6349:3 6351:3 6352:3 6354:1 6360:1 6364:1 6365:1 6367:2 6368:1 6372:2 6383:1 6398:1 6417:1 6420:8 6422:1 6425:6 6450:1 6451:4 6452:1 6453:1 6458:1 6473:1 6475:1 6489:2 6502:11 6508:1 6511:11 6517:8 6519:3 6520:2 6534:1 6538:1 6541:8 6542:1 6543:1 6547:1 6559:1 6565:1 6566:1 6571:1 6586:3 6587:3 6588:2 6590:1 6593:1 6596:1 6607:1 6609:2 6612:1 6615:3 6635:1 6660:2 6661:2 6662:1 6668:1 6675:20 6677:4 6680:1 6681:1 6682:1 6683:5 6688:1 6694:10 6699:2 6708:1 6714:1 6722:1 6725:3 6736:2 6741:1 6746:2 6747:9 6749:1 6752:11 6756:1 6765:1 6771:2 6775:1 6780:2 6801:1 6822:1 6829:2 6837:2 6841:1 6842:1 6845:17 6855:1 6866:3 6867:7 6868:3 6873:2 6876:3 6879:1 6880:1 6882:1 6884:1 6885:1 6891:1 6900:2 6902:5 6903:3 6905:4 6913:1 6931:4 6945:3 6947:1 6952:4 6953:1 6955:1 6956:2 6957:2 6960:1 6967:1 6970:2 6976:1 6988:1 6991:1 7000:3 7005:1 7008:2 7009:1 7010:1 7013:1 7016:1 7024:1 7057:1 7073:1 7078:1 7079:1 7082:3 7084:1 7089:1 7110:1 7112:1 7113:1 7127:2 7129:3 7136:1 7142:1 7148:6 7156:2 7159:2 7160:6 7161:1 7170:1 7174:1 7185:4 7192:2 7193:1 7205:1 7207:1 7225:1 7258:1 7263:1 7266:7 7268:5 7269:1 7273:1 7277:1 7278:1 7281:2 7287:3 7295:4 7297:2 7305:2 7309:3 7327:1 7340:1 7342:2 7353:1 7357:2 7359:1 7361:1 7370:1 7379:1 7400:2 7402:1 7403:3 7414:4 7425:1 7427:1 7430:1 7441:1 7443:1 7446:1 7447:1 7459:3 7462:1 7466:5 7467:1 7474:3 7484:1 7488:2 7490:3 7497:1 7504:1 7506:2 7512:1 7513:1 7515:1 7516:2 7518:1 7525:1 7526:7 7527:1 7539:1 7548:1 7563:1 7571:3 7582:5 7585:1 7589:1 7591:1 7593:1 7595:2 7596:2 7601:2 7610:2 7611:5 7612:1 7615:1 7618:2 7622:7 7623:1 7630:1 7631:1 7633:1 7641:4 7643:1 7647:1 7652:2 7653:1 7655:1 7664:2 7669:1 7670:1 7672:1 7674:2 7678:1 7690:1 7703:6 7707:1 7714:1 7740:1 7753:2 7767:1 7769:2 7770:1 7771:1 7773:1 7782:5 7783:2 7788:2 7790:3 7794:6 7800:1 7804:1 7825:1 7829:3 7849:1 7852:2 7854:1 7872:1 7877:1 7882:1 7886:1 7891:1 7895:1 7898:9 7912:1 7914:1 7921:1 7930:1 7941:1 7951:4 7968:3 7973:1 7975:1 7976:2 7977:2 7979:1 7983:1 7986:1 7989:2 8016:1 8024:1 8032:1 8033:1 8055:2 8080:2 8084:1 8091:4 8095:4 8110:1 8125:2 8134:1 8137:2 8148:1 8156:1 8160:1 8162:1 8176:1 8190:2 8195:1 8210:2 8223:1 8244:1 8246:2 8254:1 8260:2 8267:1 8278:1 8282:2 8290:3 8300:1 8305:1 8311:2 8328:1 8332:4 8334:5 8346:1 8353:1 8358:1 8363:4 8364:4 8373:8 8378:4 8379:2 8386:1 8388:1 8398:2 8427:1 8429:1 8435:1 8452:1 8455:2 8458:1 8459:1 8465:1 8473:1 8479:1 8524:1 8526:3 8533:1 8541:1 8545:7 8554:2 8556:1 8560:3 8562:1 8563:1 8572:1 8579:2 8589:8 8590:6 8608:1 8609:1 8611:1 8617:1 8624:1 8626:1 8636:1 8642:3 8643:2 8644:3 8650:2 8651:1 8652:1 8657:1 8663:2 8667:2 8670:3 8672:1 8684:1 8686:1 8691:2 8692:1 8694:1 8695:1 8704:1 8711:2 8712:7 8717:2 8718:1 8721:1 8736:1 8744:2 8745:11 8774:1 8777:1 8784:6 8794:1 8810:3 8820:10 8824:6 8825:3 8831:6 8832:3 8835:4 8836:2 8837:2 8839:4 8840:1 8843:1 8846:7 8847:15 8848:1 8849:1 8851:6 8853:4 8895:1 8911:5 8918:3 8919:1 8925:1 8944:1 8950:1 8954:1 8997:2 9003:1 9013:1 9020:1 9027:1 9038:2 9041:12 9046:1 9058:2 9061:1 9062:1 9074:2 9077:1 9080:1 9082:5 9086:1 9091:3 9117:1 9118:1 9122:1 9131:1 9133:1 9138:1 9145:1 9153:1 9158:11 9176:2 9187:1 9203:2 9204:1 9207:1 9208:1 9212:2 9213:2 9214:1 9216:1 9234:1 9236:3 9241:2 9245:1 9254:3 9260:1 9265:2 9302:1 9308:1 9315:1 9318:2 9321:3 9322:1 9333:1 9337:4 9338:1 9344:2 9346:1 9347:1 9349:1 9355:3 9372:2 9374:1 9387:1 9392:1 9393:1 9397:1 9402:3 9403:1 9408:2 9410:1 9420:2 9423:2 9425:5 9428:1 9433:1 9439:1 9441:1 9471:2 9478:1 9492:1 9500:1 9503:1 9508:2 9509:12 9513:1 9514:3 9515:1 9517:2 9518:4 9521:1 9530:2 9535:1 9538:3 9542:1 9543:4 9544:3 9555:4 9556:1 9558:4 9563:2 9572:1 9575:1 9578:1 9581:1 9582:2 9585:3 9592:11 9593:1 9606:1 9607:5 9609:1 9613:1 9622:2 9624:1 9628:1 9632:1 9634:4 9646:1 9658:3 9667:1 9669:2 9674:1 9678:1 9687:1 9689:2 9694:2 9695:1 9696:8 9703:2 9715:6 9718:3 9723:2 9726:1 9731:3 9732:1 9754:2 9755:1 9762:3 9764:2 9769:1 9780:2 9781:1 9782:9 9810:1 9822:2 9828:1 9830:3 9836:1 9841:3 9846:3 9865:2 9867:1 9888:1 9905:1 9914:1 9916:5 9918:5 9920:1 9925:2 9927:1 9930:1 9937:1 9939:1 9945:2 9946:2 9948:1 9956:5 9958:1 9960:2 9966:1 9967:1 9979:1 9995:8 9996:1 9999:3 10010:1 10015:2 10016:1 10017:1 10029:2 10042:1 10064:1 10093:2 10115:1 10116:2 10119:1 10136:1 10140:1 10150:1 10159:1 10160:3 10161:1 10163:1 10168:1 10174:1 10182:2 10184:1 10196:1 10200:1 10205:1 10206:1 10209:1 10214:2 10220:2 10221:2 10223:3 10224:2 10233:5 10236:2 10238:1 10266:4 10269:3 10275:2 10277:1 10278:3 10293:1 10294:1 10296:1 10299:1 10300:1 10313:1 10323:2 10328:2 10333:1 10336:1 10338:1 10341:1 10356:1 10357:2 10363:3 10367:1 10368:3 10374:1 10376:3 10382:2 10387:2 10392:2 10396:1 10397:3 10399:1 10409:1 10410:12 10425:1 10428:1 10430:2 10448:1 10453:1 10460:1 10464:1 10465:1 10466:2 10467:1 10470:1 10478:1 10479:1 10481:1 10486:1 10490:1 10501:2 10512:1 10513:1 10517:2 10536:3 10537:1 10548:1 10559:1 10570:1 10585:1 10593:2 10606:1 10607:1 10611:1 10613:1 10615:1 10625:2 10648:4 10662:1 10664:1 10679:1 10682:6 10683:1 10691:1 10695:3 10717:2 10718:11 10729:1 10734:1 10736:1 10737:4 10743:2 10744:10 10751:3 10755:1 10758:1 10760:2 10772:1 10773:4 10774:1 10777:1 10780:1 10782:1 10783:1 10789:1 10790:1 10791:1 10793:1 10796:2 10797:1 10798:1 10805:1 10812:55 10814:1 10817:1 10823:1 10825:1 10833:1 10838:1 10841:5 10843:8 10849:1 10855:4 10856:1 10866:1 10871:3 10872:1 10886:2 10888:1 10894:1 10901:1 10903:1 10908:2 10914:1 10921:1 10928:1 10940:4 10941:1 10942:1 10946:2 10962:1 10981:8 10983:2 10990:1 10998:9 11002:1 11004:1 11022:1 11033:1 11034:4 11037:1 11038:1 11041:1 11045:1 11047:1 11057:1 11072:2 11078:1 11082:2 11086:1 11087:1 11110:1 11112:3 11113:3 11114:2 11118:1 11121:2 11125:6 11131:1 11150:3 11164:1 11168:1 11170:1 11176:1 11190:1 11195:2 11201:1 11203:1 11212:1 11227:1 11228:3 11229:2 11232:2 11246:1 11247:4 11248:3 11260:6 11285:1 11297:3 11300:1 11301:2 11321:1 11322:1 11329:1 11332:1 11337:1 11340:3 11342:2 11347:2 11352:1 11354:1 11357:2 11361:1 11363:5 11373:1 11379:5 11382:3 11397:1 11401:9 11403:3 11413:1 11417:1 11423:5 11431:2 11436:19 11452:3 11457:3 11460:1 11466:1 11470:1 11485:1 11487:3 11509:5 11516:1 11528:1 11530:2 11548:1 11549:1 11559:2 11569:3 11582:1 11584:3 11594:4 11597:11 11618:1 11620:4 11621:1 11625:1 11651:5 11656:1 11658:1 11665:1 11668:1 11678:1 11691:2 11709:8 11711:1 11714:1 11722:1 11725:1 11727:4 11728:1 11729:1 11737:2 11745:1 11747:1 11752:1 11758:1 11764:1 11771:3 11774:1 11776:6 11779:1 11782:1 11785:5 11786:2 11788:2 11799:12 11827:1 11833:1 11842:1 11848:1 11849:2 11854:1 11855:3 11857:1 11871:1 11881:1 11885:1 11888:2 11896:1 11898:1 11910:1 11913:1 11916:1 11918:1 11921:1 11926:2 11943:3 11944:1 11947:1 11949:1 11950:6 11957:1 11966:1 11978:1 11987:1 11990:3 11995:1 11997:1 11999:1 12003:2 12004:11 12005:1 12011:4 12014:1 12015:1 12019:1 12020:2 12021:1 12022:3 12024:4 12025:2 12032:1 12035:2 12038:1 12042:2 12044:1 12046:1 12047:2 12058:1 12059:1 12063:1 12067:1 12077:1 12089:1 12094:1 12095:3 12102:1 12110:6 12118:1 12128:4 12129:1 12133:1 12136:1 12137:3 12143:1 12156:1 12165:1 12168:1 12183:1 12186:1 12196:14 12205:1 12211:1 12213:1 12214:1 12229:2 12240:1 12241:1 12257:2 12259:1 12262:1 12285:2 12290:1 12294:1 12323:1 12344:1 12345:6 12353:1 12356:1 12366:1 12370:1 12373:1 12377:1 12378:1 12379:1 12382:2 12386:2 12399:1 12401:2 12402:2 12418:13 12423:2 12435:2 12436:1 12438:1 12444:1 12445:2 12446:2 12450:1 12453:3 12454:1 12457:3 12463:2 12466:1 12467:8 12471:3 12473:1 12477:1 12481:2 12483:1 12484:1 12486:1 12495:5 12501:7 12502:3 12503:2 12505:1 12506:7 12511:2 12512:2 12518:1 12521:1 12525:1 12527:1 12546:1 12548:3 12554:2 12557:5 12561:2 12572:2 12594:1 12614:1 12624:1 12625:1 12629:1 12630:1 12631:3 12632:2 12633:1 12643:2 12652:5 12658:1 12664:11 12673:2 12674:1 12678:1 12702:1 12715:3 12716:1 12727:1 12733:1 12735:1 12739:1 12751:6 12755:1 12757:2 12762:4 12773:1 12776:1 12778:3 12779:1 12781:2 12800:1 12804:1 12806:1 12810:3 12821:2 12825:2 12839:1 12855:1 12856:1 12857:1 12861:2 12866:1 12868:1 12879:6 12907:1 12913:1 12915:1 12920:1 12926:1 12927:1 12929:4 12930:1 12932:1 12950:2 12951:1 12962:1 12973:1 12974:14 12981:6 12984:1 12991:4 13001:1 13002:1 13007:1 13008:1 13012:3 13018:1 13021:3 13025:1 13028:1 13048:1 13051:1 13052:1 13054:2 13064:6 13068:1 13069:5 13076:2 13090:2 13091:2 13095:1 13099:1 13105:1 13107:1 13108:6 13111:1 13118:1 13120:2 13130:4 13140:1 13142:2 13151:1 13153:1 13159:1 13163:1 13175:1 13187:1 13195:1 13197:4 13198:1 13228:3 13229:1 13254:3 13259:1 13270:1 13275:1 13276:1 13278:1 13280:1 13281:2 13285:1 13288:1 13291:1 13299:8 13305:1 13311:1 13316:1 13322:2 13328:1 13330:1 13331:2 13336:2 13337:1 13342:1 13343:1 13346:1 13347:1 13348:4 13354:1 13356:1 13359:1 13376:1 13388:1 13405:1 13411:2 13412:11 13413:3 13414:1 13417:1 13423:3 13425:4 13430:3 13431:4 13433:1 13434:5 13436:6 13437:1 13439:3 13441:13 13449:2 13450:9 13451:7 13453:11 13465:1 13466:1 13472:1 13474:13 13475:10 13476:1 13493:1 13495:1 13498:5 13502:5 13503:1 13512:3 13522:1 13525:1 13528:1 13532:11 13533:1 13534:3 13555:2 13567:1 13570:1 13585:1 13587:1 13595:1 13598:1 13599:2 13600:10 13606:4 13610:10 13612:4 13630:3 13635:3 13636:14 13637:1 13638:1 13640:1 13650:3 13654:1 13664:2 13672:1 13680:1 13684:3 13696:3 13700:1 13702:5 13703:3 13708:1 13711:4 13721:2 13726:2 13741:2 13747:2 13751:1 13756:22 13757:1 13766:1 13777:1 13788:1 13789:1 13801:2 13810:5 13817:1 13821:1 13823:1 13824:11 13844:4 13845:2 13847:1 13863:2 13875:2 13878:1 13880:1 13882:1 13883:1 13886:1 13889:2 13891:1 13892:1 13898:1 13902:6 13904:2 13908:11 13911:1 13917:1 13929:1 13934:1 13937:7 13944:1 13949:1 13955:1 13957:2 13960:4 13962:1 13966:2 13974:5 13977:2 13978:1 13992:1 14002:6 14011:1 14013:1 14048:2 14051:1 14055:2 14073:1 14079:1 14084:3 14088:1 14094:2 14096:3 14098:1 14100:11 14108:1 14132:1 14133:11 14134:1 14144:2 14148:10 14150:1 14152:1 14181:13 14192:1 14233:1 14236:2 14240:1 14247:1 14257:2 14262:1 14271:2 14274:1 14275:1 14286:2 14289:4 14293:8 14296:7 14298:1 14299:1 14304:1 14319:1 14325:1 14328:2 14330:1 14333:1 14339:1 14349:1 14350:1 14356:1 14364:1 14366:3 14367:1 14370:1 14371:1 14376:1 14381:4 14383:1 14396:2 14398:1 14401:1 14402:1 14411:5 14420:2 14422:1 14423:1 14436:2 14447:1 14449:1 14452:3 14458:1 14469:1 14471:1 14474:3 14478:2 14484:5 14485:1 14494:2 14515:3 14519:13 14525:9 14527:1 14540:1 14543:4 14553:1 14555:8 14559:3 14561:1 14563:1 14574:2 14575:1 14581:2 14583:11 14590:5 14592:1 14594:7 14599:2 14601:2 14604:1 14608:2 14609:5 14610:5 14637:1 14642:1 14644:1 14663:2 14665:2 14672:2 14675:1 14680:1 14681:11 14692:3 14694:4 14707:4 14708:1 14715:2 14717:1 14718:8 14757:1 14759:1 14765:2 14770:3 14780:1 14781:1 14798:1 14801:1 14814:2 14815:2 14823:2 14826:7 14828:1 14829:1 14830:2 14831:1 14834:1 14841:2 14845:2 14854:1 14860:1 14861:4 14867:1 14868:1 14870:2 14873:1 14884:6 14887:1 14897:1 14900:2 14901:1 14903:1 14904:1 14909:7 14920:1 14928:1 14929:1 14935:1 14942:1 14962:1 14965:8 14968:5 14979:2 14980:5 14981:1 14994:1 15004:1 15005:2 15008:2 15009:4 15010:1 15015:1 15019:2 15021:2 15030:2 15036:1 15040:1 15050:1 15051:1 15054:2 15065:1 15066:1 15068:1 15076:1 15085:12 15089:10 15113:5 15117:4 15118:2 15122:2 15125:1 15131:1 15134:2 15143:1 15146:1 15153:1 15158:1 15165:1 15170:1 15177:1 15183:1 15188:1 15193:1 15195:3 15203:1 15206:5 15211:1 15228:1 15234:1 15235:1 15241:1 15243:3 15248:1 15253:1 15258:4 15274:2 15281:1 15282:1 15283:1 15290:11 15302:1 15314:1 15315:1 15324:1 15342:1 15363:2 15367:2 15394:1 15396:1 15398:1 15405:2 15421:1 15437:1 15445:4 15480:1 15486:1 15490:1 15491:1 15497:2 15498:1 15502:1 15503:6 15516:2 15523:1 15528:1 15546:2 15547:1 15550:1 15568:9 15576:2 15584:1 15585:1 15593:1 15613:4 15618:8 15628:1 15629:1 15633:2 15637:4 15658:1 15665:1 15666:14 15675:3 15687:1 15693:4 15695:1 15696:5 15698:3 15704:1 15708:1 15712:2 15713:3 15714:1 15715:2 15723:2 15724:3 15727:1 15728:1 15731:1 15740:1 15745:1 15747:2 15752:7 15755:1 15756:2 15764:2 15771:1 15772:2 15773:2 15778:1 15789:6 15790:1 15799:1 15819:2 15820:2 15822:1 15829:1 15836:1 15840:1 15843:1 15854:2 15863:1 15864:2 15867:1 15872:2 15881:3 15896:1 15905:1 15911:1 15923:1 15926:1 15930:2 15934:1 15937:2 15959:6 15962:1 15966:1 15972:1 15974:1 15976:1 15978:48 15986:2 15990:2 15996:4 16001:2 16006:12 16008:1 16016:5 16017:1 16021:2 16022:2 16029:1 16030:1 16033:1 16037:1 16062:1 16072:1 16077:2 16081:1 16106:1 16110:3 16122:1 16127:1 16130:1 16139:1 16156:1 16160:4 16175:1 16179:1 16183:5 16187:3 16202:1 16206:1 16217:2 16221:7 16235:3 16243:1 16247:1 16263:1 16264:4 16271:1 16276:1 16278:1 16279:1 16282:1 16287:1 16288:1 16298:1 16331:1 16338:3 16343:3 16344:1 16345:1 16346:1 16356:1 16358:1 16361:1 16362:2 16363:1 16366:5 16380:1 16386:2 16388:2 16389:4 16394:1 16395:1 16400:1 16401:1 16402:1 16410:1 16411:1 16418:1 16421:1 16431:1 16434:3 16482:1 16487:1 16501:1 16514:1 16515:3 16532:1 16540:2 16545:1 16551:1 16558:1 16561:1 16571:2 16573:1 16579:2 16582:10 16584:1 16585:1 16594:2 16595:3 16597:3 16604:1 16616:1 16619:1 16623:1 16630:1 16633:3 16640:1 16655:1 16660:1 16666:7 16672:1 16675:1 16679:2 16691:2 16694:1 16696:1 16716:9 16717:1 16726:1 16732:1 16739:1 16740:1 16760:2 16806:1 16812:5 16817:3 16822:23 16828:1 16830:1 16834:1 16838:1 16869:1 16870:1 16872:1 16879:4 16883:1 16884:1 16893:1 16894:1 16901:1 16902:7 16903:1 16905:1 16914:1 16918:1 16932:1 16937:2 16942:1 16945:1 16946:1 16954:1 16955:1 16964:1 16967:3 16973:1 16980:1 16991:1 17001:1 17005:1 17010:1 17014:3 17019:1 17026:1 17027:1 17032:1 17039:1 17040:1 17042:6 17058:1 17059:1 17067:2 17072:7 17094:3 17097:1 17104:3 17106:5 17108:1 17118:1 17124:1 17125:1 17128:3 17140:1 17146:1 17161:1 17171:1 17177:1 17178:1 17182:1 17189:1 17191:2 17192:1 17193:2 17202:1 17207:8 17213:1 17216:2 17219:1 17222:1 17237:2 17239:3 17242:1 17251:11 17252:2 17255:2 17263:1 17270:4 17301:1 17306:5 17324:8 17342:2 17353:1 17362:1 17370:2 17380:1 17388:1 17389:2 17394:1 17408:45 17423:3 17434:1 17436:9 17437:5 17438:1 17440:6 17443:3 17444:3 17455:1 17465:1 17474:7 17475:1 17482:1 17486:2 17489:1 17492:1 17493:4 17495:7 17504:1 17507:1 17508:1 17510:1 17512:2 17516:1 17517:1 17519:1 17520:4 17524:1 17526:1 17529:1 17531:2 17532:3 17544:1 17546:2 17552:2 17572:1 17573:1 17576:1 17577:1 17579:1 17583:3 17586:1 17590:2 17592:1 17604:1 17605:1 17608:1 17613:1 17615:6 17620:3 17627:1 17629:2 17631:2 17643:2 17644:1 17645:2 17667:1 17672:1 17680:1 17684:2 17687:7 17690:1 17692:1 17696:1 17709:1 17723:1 17753:1 17768:1 17779:3 17780:1 17783:1 17787:1 17790:1 17802:6 17810:1 17815:1 17817:1 17820:1 17822:1 17825:3 17846:1 17863:2 17873:1 17877:1 17878:4 17886:1 17889:1 17890:1 17891:11 17894:1 17901:1 17905:1 17912:16 17920:1 17926:1 17933:3 17934:3 17939:1 17960:1 17961:1 17968:1 17973:1 17989:1 17990:2 17992:1 18000:1 18009:1 18017:2 18019:1 18022:1 18033:2 18035:2 18039:1 18048:1 18058:1 18064:2 18068:13 18075:4 18084:1 18086:1 18098:4 18100:4 18101:2 18108:1 18123:1 18131:1 18132:1 18143:2 18144:2 18145:1 18147:1 18148:1 18168:2 18176:4 18180:1 18183:1 18193:1 18198:4 18201:1 18210:2 18211:1 18212:1 18213:1 18221:6 18225:1 18230:4 18233:2 18246:2 18247:1 18249:7 18253:1 18255:1 18261:2 18263:1 18265:5 18266:1 18269:4 18271:1 18282:3 18286:1 18289:3 18290:1 18310:1 18313:1 18318:1 18319:1 18325:3 18326:2 18328:1 18330:2 18342:1 18343:1 18344:2 18351:1 18355:4 18363:1 18366:2 18367:1 18373:1 18380:2 18387:8 18389:9 18392:29 18393:3 18398:2 18399:1 18403:1 18412:2 18419:1 18423:1 18428:2 18442:4 18453:1 18458:1 18465:3 18473:4 18498:2 18509:1 18516:1 18529:1 18550:1 18555:2 18557:2 18563:4 18569:3 18584:1 18585:3 18589:1 18612:2 18613:6 18614:1 18631:1 18636:2 18641:3 18643:8 18657:4 18686:2 18690:11 18693:1 18699:2 18713:5 18720:1 18722:8 18735:7 18738:1 18747:2 18751:7 18753:5 18759:1 18760:3 18764:1 18765:1 18766:2 18767:1 18768:1 18788:1 18792:1 18799:1 18801:7 18811:4 18819:2 18827:1 18834:3 18836:1 18838:1 18850:5 18852:1 18860:1 18863:1 18865:1 18869:1 18870:2 18874:2 18877:1 18899:5 18907:5 18914:1 18932:1 18934:2 18935:1 18937:1 18941:1 18945:1 18947:1 18953:4 18956:2 18958:4 18960:2 18964:1 18966:1 18978:1 18979:1 19001:11 19005:1 19007:1 19015:1 19020:22 19021:2 19031:4 19032:2 19035:2 19036:1 19042:1 19050:4 19057:3 19085:1 19098:1 19116:1 19119:1 19130:11 19132:1 19137:1 19140:3 19147:1 19156:1 19165:8 19171:2 19174:1 19177:12 19184:1 19189:1 19208:2 19210:1 19214:1 19278:4 19280:1 19301:1 19310:1 19311:2 19312:1 19331:2 19333:1 19336:1 19350:1 19352:1 19358:4 19360:4 19365:5 19367:3 19369:1 19386:1 19389:1 19390:1 19398:1 19399:1 19410:1 19411:2 19412:1 19433:1 19438:1 19444:1 19455:1 19458:2 19465:4 19470:5 19493:1 19499:1 19510:1 19518:3 19522:1 19526:2 19528:1 19537:2 19545:1 19549:1 19556:1 19558:1 19559:1 19575:2 19600:5 19604:1 19606:1 19607:1 19615:1 19618:3 19619:1 19627:1 19638:1 19642:1 19643:3 19644:1 19659:2 19660:2 19661:2 19664:1 19672:1 19673:1 19674:9 19684:1 19687:1 19689:1 19691:1 19692:1 19698:1 19699:1 19718:1 19721:1 19722:2 19740:4 19748:1 19762:1 19767:1 19769:1 19778:1 19780:3 19791:1 19812:1 19818:2 19823:2 19824:8 19825:1 19831:1 19844:1 19852:1 19856:1 19869:1 19870:1 19873:1 19878:1 19883:1 19888:3 19894:2 19900:1 19905:1 19916:2 19918:2 19919:1 19925:1 19927:1 19930:3 19932:1 19934:1 19944:4 19957:1 19968:1 19996:3 20003:1 20033:1 20036:1 20044:1 20052:1 20058:1 20059:5 20060:7 20076:1 20079:1 20081:1 20082:6 20083:1 20096:2 20097:1 20101:1 20105:2 20116:1 20117:1 20118:3 20124:1 20126:4 20150:2 20158:1 20159:1 20167:1 20175:1 20177:7 20178:2 20181:1 20185:6 20188:4 20191:4 20193:1 20207:3 20210:1 20212:3 20215:9 20247:3 20255:6 20263:3 20270:2 20271:1 20273:1 20276:1 20290:1 20311:2 20328:1 20330:1 20342:1 20350:1 20386:1 20388:3
14 4:1 5:2 8:1 20:1 21:2 49:1 58:1 69:2 72:1 73:1 74:1 88:9 113:1 115:2 116:2 118:1 119:2 131:1 133:1 134:1 140:7 143:1 148:2 152:2 162:1 166:1 183:3 191:1 206:1 208:2 216:1 217:3 226:1 238:2 257:1 272:1 273:1 274:2 277:2 282:2 284:1 289:4 307:1 308:1 311:1 344:1 356:1 364:11 366:9 371:3 374:1 376:5 388:1 392:2 400:1 403:1 406:3 411:1 417:2 419:1 420:1 421:1 423:1 430:3 433:1 440:1 441:2 442:1 448:1 453:1 455:1 456:1 467:11 470:1 475:2 477:1 480:2 484:1 492:1 493:9 495:2 496:1 502:1 509:1 513:1 515:1 528:2 531:1 547:3 548:11 550:1 558:1 559:6 569:1 576:3 584:2 590:2 592:1 609:1 611:1 616:1 624:2 633:2 647:1 655:2 667:5 669:2 675:2 678:1 682:1 697:2 700:2 703:6 706:4 715:1 717:2 730:1 754:1 788:1 791:1 800:12 801:3 802:4 805:5 828:1 841:2 866:1 868:2 874:1 877:1 884:2 885:3 897:1 913:1 914:1 919:2 932:1 936:1 939:7 950:2 951:1 955:2 956:1 984:3 1000:1 1014:3 1015:1 1016:1 1018:2 1025:1 1028:5 1031:2 1037:1 1039:2 1046:2 1059:1 1060:1 1070:1 1079:2 1081:6 1082:3 1115:1 1116:3 1128:1 1134:1 1142:1 1145:1 1146:2 1153:1 1186:2 1190:1 1196:1 1204:2 1219:1 1224:1 1234:1 1237:1 1241:2 1246:6 1247:1 1252:1 1253:1 1256:3 1258:1 1262:1 1266:1 1270:1 1273:2 1290:2 1295:1 1310:4 1311:4 1313:1 1315:2 1324:1 1330:7 1331:10 1332:1 1333:1 1334:3 1342:1 1350:1 1355:1 1366:1 1367:1 1371:1 1373:1 1377:1 1380:5 1382:1 1388:2 1392:1 1416:1 1419:7 1428:1 1430:1 1432:8 1438:1 1442:4 1443:1 1445:4 1449:3 1467:3 1468:4 1477:1 1487:2 1492:3 1499:3 1510:1 1513:1 1514:1 1517:1 1524:1 1525:1 1528:2 1535:1 1536:2 1542:3 1545:3 1548:1 1553:2 1561:2 1562:2 1565:1 1571:1 1572:1 1578:1 1585:4 1596:1 1597:1 1601:1 1603:1 1609:3 1617:1 1620:1 1634:1 1637:4 1640:1 1644:1 1647:17 1653:3 1654:1 1658:1 1668:2 1672:2 1673:1 1674:2 1675:1 1679:1 1692:2 1721:1 1745:1 1758:6 1763:1 1773:3 1775:1 1777:2 1786:1 1789:1 1796:1 1797:2 1818:2 1822:1 1827:2 1828:1 1830:1 1834:1 1836:1 1839:3 1840:1 1843:3 1845:3 1846:2 1847:2 1849:1 1852:1 1854:1 1858:7 1860:1 1865:1 1867:1 1869:1 1875:4 1880:1 1884:1 1891:1 1895:1 1911:2 1912:3 1915:1 1921:1 1930:1 1934:2 1941:1 1942:1 1943:1 1945:3 1946:1 1961:2 1969:1 1980:2 1993:3 2003:3 2004:6 2013:1 2016:3 2021:1 2040:1 2071:1 2077:1 2084:1 2089:1 2100:7 2113:1 2117:2 2128:1 2143:2 2146:3 2149:8 2157:5 2169:1 2173:1 2180:1 2182:1 2183:1 2186:1 2189:1 2197:1 2198:2 2199:1 2201:2 2203:1 2205:1 2230:1 2235:5 2239:1 2247:1 2251:4 2253:3 2261:1 2266:1 2271:1 2280:4 2282:2 2289:3 2296:1 2298:3 2299:1 2313:5 2315:2 2320:1 2327:5 2329:3 2330:1 2344:1 2347:1 2349:2 2352:1 2355:1 2358:11 2360:1 2369:1 2378:1 2379:5 2384:1 2385:2 2393:1 2399:1 2404:1 2406:1 2407:2 2416:1 2418:2 2423:1 2424:1 2443:1 2455:4 2456:1 2481:2 2484:1 2504:10 2509:1 2524:5 2533:9 2536:2 2540:4 2545:1 2556:1 2559:1 2560:2 2563:12 2570:2 2571:1 2572:2 2598:6 2600:5 2605:2 2625:1 2630:2 2632:4 2642:1 2656:2 2657:1 2658:3 2659:1 2661:1 2663:2 2664:2 2665:1 2666:1 2669:2 2671:2 2684:1 2696:2 2697:2 2701:1 2713:1 2715:1 2716:1 2720:1 2726:2 2737:4 2747:1 2749:1 2751:3 2761:1 2768:1 2775:1 2778:1 2781:1 2782:9 2787:2 2788:1 2789:2 2812:1 2814:1 2816:1 2817:5 2822:1 2824:3 2831:12 2837:1 2840:1 2851:2 2856:1 2858:1 2861:1 2881:1 2887:3 2903:4 2905:8 2912:1 2917:1 2923:4 2927:5 2930:4 2931:1 2933:2 2935:1 2937:1 2939:1 2943:1 2951:2 2961:3 2971:1 2980:3 2982:3 2983:3 2989:1 2992:3 2998:2 3001:7 3007:1 3015:1 3021:1 3026:3 3028:11 3036:1 3039:3 3041:1 3042:1 3043:1 3044:1 3046:2 3047:3 3048:2 3049:1 3053:2 3062:1 3063:2 3068:1 3069:2 3070:1 3071:4 3080:1 3081:1 3082:2 3083:1 3093:3 3094:1 3095:1 3110:4 3111:1 3112:2 3114:2 3116:12 3118:3 3122:1 3123:6 3125:2 3126:1 3129:1 3132:1 3133:5 3135:1 3136:3 3142:8 3144:2 3146:2 3149:4 3151:1 3156:1 3168:4 3169:1 3193:1 3199:1 3202:4 3210:2 3212:1 3215:1 3222:1 3226:1 3231:1 3237:1 3250:2 3252:1 3265:1 3266:1 3267:1 3270:2 3272:1 3281:13 3283:2 3294:1 3295:2 3306:2 3312:1 3316:2 3321:2 3327:1 3328:2 3329:2 3341:1 3345:1 3352:1 3357:6 3358:2 3378:2 3389:1 3390:1 3396:2 3397:1 3400:1 3417:1 3420:2 3431:3 3435:1 3436:1 3446:1 3456:2 3457:1 3458:1 3460:1 3462:1 3474:1 3489:1 3493:2 3501:2 3507:2 3510:3 3511:2 3512:1 3518:2 3521:1 3536:2 3558:1 3560:12 3562:4 3568:5 3578:1 3580:1 3581:13 3583:3 3585:1 3587:2 3588:2 3590:1 3593:2 3599:2 3600:1 3607:1 3609:1 3629:1 3631:4 3633:1 3638:2 3642:2 3655:1 3671:2 3679:1 3692:2 3706:12 3707:3 3726:12 3731:3 3732:2 3733:2 3736:1 3738:1 3751:1 3753:2 3763:1 3766:1 3771:1 3775:1 3777:13 3780:1 3788:1 3811:6 3816:1 3819:4 3820:1 3830:1 3834:1 3836:1 3837:1 3841:1 3843:1 3846:1 3857:1 3871:2 3872:1 3873:2 3879:2 3880:1 3886:4 3892:1 3901:2 3902:2 3905:5 3909:1 3910:2 3919:1 3920:9 3927:1 3936:1 3948:1 3966:4 3972:2 3975:3 3977:1 3989:1 3991:1 3993:1 3994:2 3997:1 3998:1 3999:1 4002:2 4013:2 4019:3 4026:3 4031:1 4033:11 4037:4 4046:1 4054:1 4058:3 4059:5 4067:1 4071:56 4072:2 4073:1 4078:1 4079:1 4080:1 4091:2 4096:1 4098:1 4111:1 4114:6 4128:1 4129:1 4131:11 4140:2 4144:1 4145:13 4152:8 4160:2 4161:1 4162:1 4168:1 4169:10 4170:1 4175:1 4194:1 4195:8 4196:3 4197:1 4203:1 4210:7 4211:1 4213:3 4225:6 4234:2 4236:1 4249:2 4251:1 4253:4 4257:1 4266:1 4270:4 4277:1 4291:1 4294:7 4301:2 4305:2 4307:1 4309:1 4311:1 4322:1 4324:5 4331:1 4343:2 4348:5 4349:5 4366:1 4369:1 4378:1 4381:1 4387:1 4412:2 4420:2 4427:4 4436:2 4441:1 4471:2 4473:2 4476:1 4483:1 4486:1 4500:1 4502:1 4506:1 4510:3 4520:1 4544:3 4549:2 4553:12 4556:2 4561:2 4568:2 4572:1 4574:1 4586:1 4596:1 4605:1 4611:1 4622:2 4627:3 4628:3 4635:1 4636:1 4638:2 4641:2 4646:1 4647:1 4649:2 4652:1 4658:2 4660:1 4667:1 4676:2 4683:1 4686:11 4692:12 4699:9 4708:1 4710:1 4733:3 4734:1 4743:1 4751:1 4754:3 4759:1 4762:3 4766:1 4768:2 4769:1 4771:4 4772:1 4778:2 4779:2 4794:2 4795:6 4822:1 4824:1 4827:1 4831:1 4834:12 4837:4 4843:1 4847:1 4851:12 4869:3 4883:1 4885:1 4900:2 4901:1 4910:1 4914:2 4937:1 4940:2 4959:2 4960:1 4982:6 4989:4 5001:1 5006:6 5016:1 5018:1 5019:1 5023:6 5024:1 5025:1 5039:1 5040:2 5052:1 5055:1 5057:1 5058:7 5067:49 5074:1 5081:1 5082:2 5083:6 5097:1 5101:1 5107:1 5112:2 5131:1 5132:1 5135:2 5153:3 5156:1 5157:3 5185:1 5187:1 5193:1 5194:1 5200:1 5202:1 5203:17 5206:4 5212:1 5227:1 5228:1 5231:2 5236:2 5237:1 5241:4 5247:1 5256:6 5264:1 5266:9 5271:8 5279:1 5288:1 5291:1 5297:1 5301:1 5309:1 5313:2 5314:1 5321:1 5345:1 5347:2 5348:1 5353:1 5355:1 5362:1 5364:3 5365:6 5366:2 5372:1 5375:2 5379:1 5382:1 5383:2 5385:2 5387:2 5389:1 5394:3 5402:1 5406:4 5408:2 5411:1 5413:1 5416:1 5424:1 5433:1 5434:1 5437:2774 5443:2 5456:4 5458:1 5460:2 5462:1 5468:1 5469:1 5496:1 5497:1 5499:1 5503:1 5507:2 5509:2 5511:1 5518:1 5520:2 5522:1 5529:1 5530:2 5559:1 5582:1 5583:1 5590:1 5600:1 5604:2 5625:1 5637:1 5644:1 5657:1 5661:1 5672:2 5673:2 5674:1 5679:1 5683:1 5691:4 5697:5 5713:1 5714:2 5717:2 5718:3 5751:4 5753:5 5755:1 5756:2 5757:1 5760:1 5761:1 5762:2 5763:1 5765:6 5767:1 5771:7 5775:2 5778:1 5780:9 5785:1 5806:2 5813:3 5817:1 5837:3 5856:3 5867:1 5874:1 5879:1 5886:1 5893:3 5904:1 5905:1 5911:2 5912:1 5916:1 5932:16 5944:1 5962:3 5974:1 5981:1 5982:1 5984:14 5995:1 5996:3 5997:1 6007:1 6020:1 6023:1 6026:3 6047:1 6051:1 6055:1 6059:1 6063:1 6090:1 6092:2 6100:1 6110:1 6111:1 6118:1 6133:1 6138:1 6153:1 6165:1 6168:1 6174:1 6204:2 6205:1 6208:2 6216:1 6220:1 6223:1 6232:1 6233:5 6247:2 6262:1 6307:1 6308:2 6311:4 6316:3 6317:2 6321:1 6325:1 6330:1 6339:7 6349:3 6351:3 6352:3 6354:1 6360:1 6364:1 6365:1 6367:2 6368:1 6372:2 6383:1 6398:1 6417:1 6420:8 6422:1 6425:6 6450:1 6451:4 6452:1 6453:1 6458:1 6473:1 6475:1 6489:2 6498:1 6502:11 6508:1 6511:11 6517:8 6519:3 6520:2 6523:1 6534:1 6538:1 6541:8 6542:1 6543:1 6547:1 6559:1 6565:1 6566:1 6571:1 6586:3 6587:3 6588:2 6590:1 6593:1 6596:1 6607:1 6609:2 6612:1 6615:3 6635:1 6660:2 6661:2 6662:1 6668:1 6675:20 6677:4 6680:1 6681:1 6682:1 6683:6 6688:1 6694:10 6699:2 6708:1 6714:1 6722:1 6725:4 6736:2 6741:1 6746:2 6747:9 6749:1 6752:11 6756:1 6765:1 6771:2 6775:1 6780:3 6801:1 6822:1 6829:2 6837:2 6841:1 6842:1 6845:18 6855:1 6866:3 6867:8 6868:3 6873:3 6876:3 6879:1 6880:1 6882:1 6884:1 6885:1 6891:1 6900:2 6902:6 6903:3 6905:4 6913:1 6931:4 6945:3 6947:1 6952:4 6953:1 6955:1 6956:2 6957:2 6960:1 6967:1 6970:2 6976:1 6988:1 6991:1 7000:3 7005:1 7008:2 7009:1 7010:1 7013:1 7016:1 7024:1 7043:1 7057:1 7073:1 7078:1 7079:1 7082:3 7084:2 7089:1 7110:1 7112:1 7113:1 7127:2 7129:3 7136:1 7142:1 7148:6 7156:2 7159:2 7160:6 7161:1 7170:1 7174:1 7185:4 7192:2 7193:1 7205:1 7207:1 7225:1 7258:1 7263:1 7266:7 7268:5 7269:1 7273:1 7277:1 7278:1 7281:2 7287:3 7295:5 7297:2 7305:2 7309:3 7327:1 7340:1 7342:2 7353:1 7357:2 7359:1 7361:1 7370:1 7379:1 7400:2 7402:1 7403:3 7414:4 7425:1 7427:1 7430:1 7441:1 7443:1 7446:1 7447:1 7459:3 7462:1 7466:5 7467:1 7474:3 7484:1 7488:3 7490:3 7497:1 7504:1 7506:2 7512:1 7513:1 7515:1 7516:2 7518:1 7525:1 7526:9 7527:1 7539:1 7548:1 7563:1 7571:3 7582:5 7585:1 7589:1 7591:1 7593:1 7595:2 7596:2 7601:2 7610:2 7611:5 7612:1 7615:1 7618:2 7622:7 7623:1 7630:1 7631:1 7633:1 7641:4 7643:1 7647:1 7652:2 7653:1 7655:1 7664:2 7669:1 7670:1 7672:1 7674:2 7678:1 7690:1 7703:6 7707:1 7714:1 7740:1 7753:2 7767:1 7769:2 7770:1 7771:1 7773:1 7782:5 7783:2 7788:2 7790:3 7794:6 7800:1 7804:1 7825:1 7829:3 7849:1 7852:2 7854:1 7872:1 7877:1 7882:1 7886:1 7891:1 7895:1 7898:9 7912:1 7914:1 7921:1 7930:1 7941:1 7945:1 7951:4 7968:3 7973:1 7975:1 7976:2 7977:2 7979:1 7983:1 7986:1 7989:2 8016:1 8024:1 8026:2 8032:1 8033:1 8055:2 8080:2 8084:1 8091:4 8095:4 8110:1 8125:2 8134:1 8137:2 8148:1 8156:1 8160:1 8162:1 8176:1 8190:2 8195:1 8210:2 8223:1 8243:1 8244:1 8246:2 8254:1 8260:2 8267:1 8278:1 8282:2 8290:3 8300:1 8305:1 8311:2 8328:1 8332:4 8334:6 8346:1 8353:1 8358:1 8363:5 8364:5 8373:8 8378:4 8379:2 8386:1 8388:1 8398:2 8427:1 8429:1 8435:1 8452:1 8455:2 8458:1 8459:1 8465:1 8473:1 8479:1 8524:1 8526:3 8533:1 8541:1 8545:7 8554:2 8556:1 8560:3 8562:1 8563:1 8572:1 8579:2 8589:8 8590:6 8608:1 8609:1 8611:1 8617:1 8624:1 8626:1 8632:1 8636:1 8642:3 8643:2 8644:3 8650:2 8651:1 8652:1 8657:1 8663:2 8667:2 8670:4 8672:1 8684:1 8686:1 8691:2 8692:1 8694:1 8695:1 8704:1 8711:2 8712:8 8717:2 8718:1 8721:1 8736:1 8744:2 8745:11 8774:1 8777:1 8784:6 8794:1 8810:4 8820:10 8824:6 8825:4 8831:6 8832:3 8835:5 8836:2 8837:2 8838:1 8839:5 8840:1 8843:2 8846:7 8847:16 8848:1 8849:1 8851:6 8853:4 8895:1 8911:5 8918:3 8919:1 8925:1 8944:1 8950:1 8954:1 8997:2 9003:1 9013:1 9020:1 9027:1 9038:2 9041:12 9046:1 9058:2 9061:2 9062:1 9074:2 9077:1 9080:1 9082:5 9086:1 9091:4 9117:1 9118:1 9122:1 9131:1 9133:1 9138:1 9145:1 9153:1 9158:11 9176:2 9187:1 9203:2 9204:1 9207:1 9208:1 9212:2 9213:3 9214:2 9216:2 9223:1 9234:1 9236:3 9241:2 9245:1 9254:3 9260:1 9265:2 9302:1 9308:1 9315:1 9318:2 9321:3 9322:1 9333:1 9337:4 9338:1 9344:3 9346:1 9347:1 9349:1 9355:3 9366:1 9372:2 9374:1 9387:1 9392:1 9393:1 9397:1 9402:3 9403:1 9408:2 9410:1 9420:3 9423:2 9425:6 9428:1 9433:1 9439:2 9441:1 9471:2 9478:1 9492:1 9500:1 9503:1 9508:2 9509:12 9513:1 9514:3 9515:1 9517:2 9518:4 9521:1 9530:2 9535:1 9538:3 9542:1 9543:4 9544:3 9555:4 9556:2 9558:4 9563:2 9572:1 9575:1 9578:1 9581:1 9582:2 9585:4 9592:11 9593:1 9606:1 9607:5 9609:1 9613:1 9622:2 9624:1 9628:1 9632:1 9634:4 9646:1 9658:3 9667:1 9669:2 9674:1 9678:1 9687:1 9689:2 9694:2 9695:1 9696:9 9703:2 9715:7 9718:3 9723:2 9726:1 9731:3 9732:1 9754:2 9755:1 9762:3 9764:2 9769:1 9780:3 9781:1 9782:10 9810:1 9822:2 9828:1 9830:3 9836:1 9841:3 9846:4 9865:2 9867:1 9888:1 9905:1 9914:1 9916:5 9918:5 9920:1 9925:3 9927:1 9930:1 9937:1 9939:1 9945:2 9946:2 9948:1 9956:5 9958:1 9960:2 9966:1 9967:1 9979:1 9995:9 9996:1 9999:3 10010:1 10015:2 10016:1 10017:1 10029:2 10042:1 10064:1 10093:2 10115:2 10116:2 10119:1 10136:1 10140:1 10150:1 10159:1 10160:3 10161:1 10163:1 10168:1 10174:1 10182:2 10184:1 10196:1 10200:1 10205:1 10206:1 10209:1 10214:2 10220:2 10221:2 10223:3 10224:2 10233:6 10236:2 10238:1 10266:4 10269:3 10275:2 10277:1 10278:3 10293:1 10294:1 10296:1 10299:1 10300:1 10313:1 10323:2 10328:2 10333:1 10336:1 10338:1 10341:1 10356:1 10357:2 10363:3 10367:1 10368:3 10374:1 10376:4 10382:2 10387:2 10392:2 10396:1 10397:3 10399:1 10409:1 10410:12 10425:1 10428:1 10430:2 10447:1 10448:1 10453:1 10460:1 10464:1 10465:1 10466:2 10467:1 10470:1 10478:2 10479:1 10481:1 10486:1 10490:1 10501:2 10512:1 10513:1 10517:2 10536:3 10537:1 10548:1 10559:1 10570:1 10585:1 10593:2 10606:1 10607:1 10611:1 10613:1 10615:1 10625:2 10648:4 10662:1 10664:1 10679:1 10682:6 10683:1 10691:1 10693:1 10695:3 10717:2 10718:11 10720:1 10729:1 10734:1 10736:1 10737:4 10743:2 10744:12 10751:3 10755:1 10758:1 10760:2 10772:1 10773:5 10774:1 10777:1 10780:1 10782:1 10783:1 10789:2 10790:1 10791:1 10793:1 10796:2 10797:1 10798:1 10805:1 10812:60 10814:1 10817:1 10823:1 10825:1 10833:1 10838:1 10841:5 10843:8 10849:1 10855:4 10856:1 10866:1 10871:3 10872:1 10886:2 10888:1 10894:1 10901:1 10903:1 10908:2 10914:1 10921:1 10928:1 10940:4 10941:1 10942:1 10946:3 10962:1 10981:8 10983:2 10990:1 10998:9 11002:2 11004:1 11022:1 11033:1 11034:4 11036:1 11037:1 11038:1 11041:1 11045:1 11047:1 11057:1 11072:2 11078:1 11082:2 11086:1 11087:1 11110:1 11112:3 11113:4 11114:2 11118:1 11121:2 11125:6 11131:1 11150:3 11164:1 11168:1 11170:1 11176:1 11190:1 11195:2 11201:1 11203:1 11212:1 11227:2 11228:3 11229:2 11232:3 11246:1 11247:4 11248:3 11260:6 11285:1 11297:3 11300:1 11301:2 11321:1 11322:1 11329:1 11332:1 11337:1 11340:3 11342:2 11347:2 11352:1 11354:1 11357:2 11361:1 11363:5 11373:1 11379:5 11382:3 11397:1 11401:9 11403:4 11413:1 11417:1 11423:5 11431:2 11436:19 11452:3 11457:3 11460:1 11466:1 11470:1 11485:1 11487:3 11509:5 11516:1 11528:1 11530:2 11548:2 11549:1 11559:2 11569:3 11582:1 11584:3 11594:4 11597:12 11618:1 11620:4 11621:1 11625:1 11633:1 11651:5 11656:1 11658:1 11665:1 11668:1 11678:1 11691:2 11709:8 11711:1 11714:1 11722:1 11725:1 11727:4 11728:1 11729:1 11737:2 11745:1 11747:1 11752:1 11758:1 11764:1 11771:3 11774:1 11776:6 11779:1 11782:1 11785:5 11786:2 11788:2 11799:12 11827:1 11833:1 11842:1 11848:1 11849:2 11854:1 11855:3 11857:1 11871:1 11881:1 11885:1 11888:2 11896:1 11898:1 11910:1 11913:1 11916:1 11918:1 11921:1 11926:2 11943:3 11944:1 11947:1 11949:1 11950:6 11957:1 11966:1 11978:1 11987:1 11990:3 11995:1 11997:1 11999:1 12003:2 12004:11 12005:1 12011:5 12014:1 12015:1 12019:1 12020:2 12021:1 12022:3 12024:4 12025:2 12032:1 12035:2 12038:1 12042:2 12044:1 12046:1 12047:2 12058:1 12059:1 12063:1 12067:1 12077:1 12089:1 12094:1 12095:3 12102:1 12110:6 12118:1 12128:4 12129:1 12133:1 12136:1 12137:3 12143:1 12156:1 12165:1 12168:1 12183:1 12186:1 12196:14 12205:1 12211:1 12213:1 12214:1 12229:2 12240:1 12241:1 12257:2 12259:1 12262:1 12285:2 12290:1 12294:1 12323:1 12344:1 12345:6 12353:1 12356:1 12366:1 12370:1 12373:1 12377:1 12378:1 12379:1 12382:2 12386:2 12399:1 12401:2 12402:2 12418:13 12423:2 12435:2 12436:1 12438:1 12444:1 12445:2 12446:2 12450:1 12453:3 12454:1 12457:3 12463:2 12466:1 12467:8 12471:3 12473:1 12477:1 12481:2 12483:1 12484:1 12486:1 12495:5 12501:9 12502:3 12503:2 12505:1 12506:7 12511:2 12512:2 12518:1 12521:1 12525:1 12527:1 12546:1 12548:3 12554:2 12557:6 12561:2 12572:2 12594:1 12601:1 12614:1 12624:1 12625:1 12629:1 12630:1 12631:3 12632:2 12633:1 12643:2 12652:5 12658:1 12664:11 12673:2 12674:1 12678:1 12702:1 12715:3 12716:1 12727:1 12733:1 12735:1 12739:1 12751:6 12755:1 12757:2 12762:4 12773:1 12776:1 12778:3 12779:1 12781:2 12800:1 12804:1 12806:1 12810:3 12821:2 12825:2 12839:1 12855:1 12856:1 12857:1 12861:2 12866:1 12868:1 12871:1 12879:6 12907:1 12913:1 12915:1 12918:1 12920:1 12926:1 12927:1 12929:4 12930:1 12932:1 12950:2 12951:1 12962:1 12973:1 12974:14 12981:6 12984:1 12991:4 13001:1 13002:1 13007:1 13008:2 13012:3 13018:2 13021:3 13025:1 13028:1 13048:1 13051:1 13052:1 13054:2 13064:6 13068:1 13069:5 13076:3 13090:2 13091:2 13095:1 13099:1 13105:1 13107:1 13108:6 13111:1 13118:1 13120:2 13130:4 13140:1 13142:2 13151:1 13153:1 13159:1 13163:1 13175:1 13183:1 13187:2 13195:1 13197:4 13198:1 13228:3 13229:1 13248:1 13254:3 13259:1 13270:1 13275:1 13276:1 13278:1 13280:1 13281:2 13285:1 13288:1 13291:1 13299:9 13305:1 13311:1 13313:1 13316:1 13322:2 13328:1 13330:1 13331:2 13336:2 13337:1 13342:1 13343:1 13344:1 13346:1 13347:1 13348:4 13354:1 13356:1 13359:1 13376:1 13388:1 13405:1 13411:2 13412:11 13413:3 13414:1 13417:1 13423:3 13425:4 13430:3 13431:4 13433:1 13434:5 13436:6 13437:1 13439:3 13441:13 13449:2 13450:10 13451:7 13453:11 13465:1 13466:1 13472:1 13474:13 13475:10 13476:1 13493:1 13495:1 13498:5 13502:5 13503:1 13512:3 13522:1 13525:1 13528:1 13532:11 13533:2 13534:3 13555:2 13567:1 13570:1 13585:1 13587:1 13595:1 13598:1 13599:2 13600:10 13606:4 13610:10 13612:5 13630:3 13635:4 13636:14 13637:1 13638:1 13640:1 13650:3 13654:1 13664:2 13672:1 13680:2 13684:3 13696:3 13700:1 13702:5 13703:3 13708:1 13711:4 13721:2 13726:2 13741:2 13747:2 13751:1 13756:23 13757:1 13766:1 13777:1 13788:1 13789:1 13801:2 13810:5 13817:1 13821:1 13823:1 13824:11 13844:4 13845:2 13847:1 13863:2 13875:2 13878:1 13880:1 13882:1 13883:1 13886:1 13888:1 13889:2 13891:1 13892:1 13898:1 13902:6 13904:2 13908:11 13911:1 13917:1 13929:1 13934:1 13937:8 13944:1 13949:1 13955:1 13957:2 13960:4 13962:1 13966:2 13974:5 13977:2 13978:1 13992:1 14002:7 14011:1 14013:1 14048:2 14051:1 14055:2 14073:1 14079:1 14084:3 14088:1 14094:2 14096:3 14098:1 14100:11 14108:1 14132:1 14133:11 14134:1 14144:2 14148:10 14150:1 14152:1 14181:13 14192:1 14233:1 14236:2 14240:1 14247:1 14257:2 14262:1 14271:2 14274:1 14275:1 14286:2 14289:4 14293:8 14296:7 14298:1 14299:1 14304:1 14319:1 14325:1 14328:2 14330:1 14333:1 14339:1 14349:1 14350:1 14356:1 14364:1 14366:3 14367:1 14370:1 14371:1 14376:1 14381:4 14383:1 14396:2 14398:1 14401:1 14402:2 14411:5 14420:2 14422:1 14423:1 14436:2 14447:1 14449:1 14452:3 14458:1 14469:1 14471:1 14474:3 14478:2 14484:5 14485:1 14494:2 14515:3 14519:13 14525:9 14527:1 14540:1 14543:5 14553:1 14555:9 14559:3 14561:1 14563:1 14574:2 14575:1 14581:2 14583:11 14590:5 14592:1 14594:8 14599:2 14601:2 14604:1 14608:2 14609:5 14610:5 14637:1 14642:1 14644:1 14663:2 14665:2 14672:2 14675:1 14680:1 14681:11 14692:3 14694:4 14707:5 14708:1 14715:2 14717:1 14718:8 14757:1 14759:1 14765:3 14770:3 14780:1 14781:1 14782:1 14798:1 14801:1 14814:2 14815:2 14823:2 14826:7 14828:1 14829:1 14830:2 14831:1 14834:1 14841:2 14845:2 14854:1 14860:1 14861:4 14867:1 14868:1 14870:2 14873:2 14884:6 14887:1 14897:2 14900:2 14901:1 14903:1 14904:1 14909:7 14920:1 14928:1 14929:1 14935:1 14942:1 14962:1 14965:9 14968:5 14979:2 14980:5 14981:1 14994:1 15004:1 15005:2 15008:2 15009:4 15010:1 15015:1 15019:2 15021:2 15030:2 15036:1 15040:1 15050:1 15051:1 15054:2 15065:1 15066:1 15068:1 15076:1 15085:12 15089:10 15113:5 15117:5 15118:3 15122:2 15125:2 15131:1 15134:2 15143:1 15146:1 15153:1 15158:1 15165:1 15170:1 15177:1 15183:1 15188:2 15193:1 15195:3 15203:1 15206:5 15211:1 15228:1 15234:1 15235:1 15241:1 15243:3 15248:1 15253:1 15258:4 15274:2 15281:1 15282:1 15283:1 15290:11 15302:1 15314:1 15315:1 15324:1 15342:1 15363:2 15367:2 15394:1 15396:1 15398:1 15405:2 15418:1 15421:1 15437:1 15445:4 15480:1 15486:1 15490:1 15491:1 15497:2 15498:1 15502:1 15503:6 15516:2 15523:1 15528:1 15546:3 15547:1 15550:1 15568:9 15576:2 15582:1 15584:1 15585:1 15593:1 15613:4 15618:8 15628:1 15629:1 15633:2 15637:4 15658:1 15665:1 15666:14 15675:3 15687:1 15693:4 15695:1 15696:5 15698:4 15704:1 15708:1 15712:2 15713:3 15714:1 15715:2 15723:2 15724:3 15727:1 15728:1 15731:1 15740:1 15745:1 15747:2 15752:7 15755:1 15756:3 15764:2 15771:1 15772:3 15773:2 15778:1 15789:6 15790:1 15799:1 15819:2 15820:2 15822:1 15829:1 15836:1 15840:1 15843:1 15854:2 15863:1 15864:2 15867:1 15872:3 15881:3 15896:1 15905:1 15911:1 15923:1 15926:1 15930:2 15934:1 15937:2 15959:6 15962:1 15966:1 15972:1 15974:1 15976:1 15978:49 15986:2 15990:2 15996:4 16001:2 16006:12 16008:1 16016:5 16017:2 16021:2 16022:2 16029:1 16030:1 16033:1 16037:1 16062:1 16072:1 16077:2 16081:1 16106:1 16110:3 16122:1 16127:1 16130:1 16139:1 16156:1 16160:4 16175:1 16179:1 16183:5 16187:3 16202:1 16206:1 16217:2 16221:8 16235:3 16243:1 16247:1 16263:1 16264:4 16271:1 16276:1 16278:1 16279:1 16282:1 16287:1 16288:1 16298:1 16331:1 16338:3 16343:3 16344:1 16345:1 16346:1 16356:1 16358:1 16361:1 16362:2 16363:1 16366:5 16380:1 16386:2 16388:2 16389:4 16394:1 16395:1 16400:1 16401:1 16402:1 16410:1 16411:1 16418:1 16421:2 16431:1 16434:3 16482:1 16487:1 16501:1 16514:1 16515:3 16532:1 16540:2 16545:1 16551:1 16558:1 16561:1 16571:2 16573:1 16579:2 16582:10 16584:1 16585:1 16594:2 16595:3 16597:3 16604:1 16616:1 16619:1 16623:1 16630:1 16633:3 16640:1 16655:1 16660:1 16666:7 16672:1 16675:1 16679:2 16691:2 16694:1 16696:1 16716:9 16717:1 16726:1 16732:1 16739:1 16740:1 16760:2 16806:1 16812:5 16817:3 16822:24 16828:1 16830:1 16834:1 16838:1 16869:1 16870:1 16872:1 16879:4 16883:1 16884:1 16893:1 16894:1 16901:2 16902:7 16903:1 16905:1 16914:1 16918:1 16920:1 16932:1 16937:2 16942:1 16945:1 16946:1 16954:1 16955:1 16964:1 16967:4 16973:1 16980:1 16991:1 17001:1 17005:1 17010:1 17014:3 17019:1 17021:1 17026:1 17027:1 17032:1 17039:1 17040:1 17042:6 17058:1 17059:1 17067:2 17071:1 17072:7 17094:3 17097:1 17104:4 17106:5 17108:1 17118:1 17124:1 17125:2 17128:3 17140:1 17146:1 17161:1 17171:1 17177:1 17178:1 17182:1 17189:1 17191:2 17192:1 17193:2 17202:1 17207:9 17213:1 17216:2 17219:1 17222:1 17237:2 17239:3 17242:1 17251:11 17252:2 17255:2 17263:1 17270:4 17279:1 17301:1 17306:5 17324:8 17342:2 17353:1 17362:1 17370:2 17371:1 17380:1 17388:1 17389:2 17394:1 17408:46 17420:1 17423:3 17434:1 17436:10 17437:5 17438:1 17440:6 17443:3 17444:3 17455:1 17465:1 17474:7 17475:1 17482:1 17486:2 17489:1 17492:1 17493:4 17495:7 17504:1 17506:1 17507:1 17508:1 17510:1 17512:2 17516:1 17517:1 17519:1 17520:4 17524:1 17526:1 17529:1 17531:2 17532:3 17544:1 17546:3 17552:2 17572:1 17573:1 17576:1 17577:1 17579:1 17583:3 17586:1 17590:2 17592:1 17604:1 17605:1 17608:1 17613:1 17615:6 17620:3 17627:1 17629:2 17631:2 17643:2 17644:1 17645:2 17667:1 17672:1 17680:1 17684:2 17687:7 17690:1 17692:1 17696:1 17709:1 17712:1 17723:1 17753:1 17768:1 17779:3 17780:1 17783:1 17787:1 17790:1 17802:6 17810:1 17815:1 17817:1 17820:1 17822:1 17825:3 17846:1 17863:2 17873:1 17877:1 17878:4 17886:1 17889:1 17890:1 17891:11 17894:1 17901:1 17905:1 17912:16 17920:1 17926:1 17933:3 17934:3 17939:1 17960:1 17961:1 17968:2 17973:1 17989:1 17990:2 17992:1 18000:1 18009:1 18017:2 18019:1 18022:2 18033:2 18035:2 18039:1 18048:1 18058:1 18064:2 18068:15 18075:4 18084:1 18086:1 18098:4 18100:4 18101:2 18108:1 18123:2 18131:1 18132:1 18143:2 18144:2 18145:1 18147:1 18148:1 18168:2 18176:4 18180:1 18183:1 18193:1 18198:4 18201:1 18210:2 18211:1 18212:1 18213:1 18221:6 18225:1 18230:4 18233:2 18246:2 18247:1 18249:9 18253:1 18255:1 18261:2 18263:1 18265:5 18266:1 18269:4 18271:2 18282:3 18286:1 18289:3 18290:1 18299:1 18310:1 18313:1 18318:1 18319:1 18325:3 18326:2 18328:1 18330:2 18342:1 18343:1 18344:2 18351:1 18355:4 18363:1 18366:2 18367:1 18373:1 18380:2 18387:8 18389:9 18392:30 18393:3 18398:2 18399:1 18403:1 18412:2 18419:1 18423:1 18428:2 18442:4 18453:1 18458:1 18465:3 18473:4 18498:2 18509:1 18516:1 18529:1 18550:1 18555:3 18557:2 18563:4 18569:3 18584:1 18585:3 18589:1 18612:2 18613:6 18614:1 18631:1 18636:3 18641:3 18643:8 18657:4 18686:3 18690:11 18693:1 18699:2 18700:1 18713:5 18720:1 18722:9 18735:7 18738:1 18747:2 18751:7 18753:5 18759:1 18760:3 18764:1 18765:1 18766:2 18767:1 18768:1 18788:1 18792:1 18799:1 18801:7 18811:4 18819:2 18827:1 18834:3 18836:1 18838:1 18850:5 18852:1 18860:1 18863:1 18865:1 18869:1 18870:2 18874:2 18877:1 18899:5 18907:5 18914:1 18932:1 18934:2 18935:1 18937:1 18941:1 18945:1 18947:1 18953:4 18956:2 18958:5 18960:2 18964:1 18966:1 18978:1 18979:1 19001:11 19005:1 19007:1 19015:1 19020:23 19021:2 19031:4 19032:3 19035:2 19036:1 19042:1 19050:4 19057:3 19085:1 19098:1 19116:1 19119:1 19130:11 19132:1 19137:1 19140:3 19147:1 19156:1 19165:8 19171:2 19174:1 19177:13 19184:1 19189:1 19208:2 19210:1 19214:1 19238:1 19278:4 19280:1 19301:1 19310:1 19311:2 19312:1 19331:2 19333:1 19336:1 19350:1 19352:1 19358:4 19360:4 19365:5 19367:3 19369:1 19386:1 19389:1 19390:1 19398:1 19399:1 19410:1 19411:2 19412:1 19433:1 19438:1 19444:1 19455:1 19458:2 19465:4 19470:5 19493:1 19499:1 19510:1 19518:3 19522:1 19526:2 19528:1 19537:2 19545:1 19549:1 19556:1 19558:1 19559:1 19575:2 19600:5 19604:1 19606:1 19607:1 19615:1 19618:3 19619:1 19627:1 19638:1 19642:1 19643:3 19644:1 19659:3 19660:2 19661:2 19664:1 19672:1 19673:1 19674:9 19684:1 19687:1 19689:1 19691:1 19692:1 19698:1 19699:1 19718:1 19721:1 19722:2 19740:4 19748:1 19762:1 19767:1 19769:1 19778:1 19780:3 19791:1 19812:1 19818:2 19823:2 19824:8 19825:1 19831:1 19844:1 19852:1 19856:1 19869:1 19870:1 19873:1 19878:1 19883:1 19888:3 19894:2 19900:1 19905:2 19916:2 19918:2 19919:1 19925:1 19927:1 19930:3 19932:1 19934:1 19944:4 19952:1 19957:1 19968:1 19996:3 20003:1 20033:1 20036:1 20044:1 20052:1 20058:1 20059:5 20060:7 20076:1 20079:1 20081:1 20082:6 20083:1 20096:2 20097:1 20101:1 20105:2 20116:1 20117:1 20118:3 20124:1 20126:4 20150:3 20158:1 20159:1 20167:1 20175:1 20177:7 20178:2 20181:1 20184:1 20185:7 20188:4 20191:4 20193:1 20207:3 20210:1 20212:3 20215:9 20247:3 20255:6 20263:4 20270:2 20271:1 20273:1 20276:1 20290:1 20311:3 20328:1 20330:1 20342:1 20350:1 20386:1 20388:3
14 4:1 5:2 8:1 20:1 21:2 49:1 58:1 69:2 72:1 73:1 74:1 88:9 113:1 115:2 116:2 118:1 119:2 131:1 133:1 134:1 140:7 143:1 148:2 152:2 162:1 166:1 183:3 191:1 206:1 208:2 216:1 217:3 226:1 238:2 257:1 272:1 273:1 274:2 277:2 282:2 284:1 289:4 307:1 308:1 311:1 344:1 356:1 364:12 366:9 371:3 374:1 376:5 388:1 392:2 400:1 403:1 406:3 411:1 417:2 419:1 420:1 421:1 423:1 430:3 433:1 440:1 441:2 442:1 448:1 453:1 455:1 456:1 467:12 470:1 475:2 477:1 480:2 484:1 492:1 493:9 495:2 496:1 502:1 509:1 513:1 515:1 528:3 531:1 547:3 548:11 550:1 558:1 559:6 569:1 576:3 584:2 590:2 592:1 609:1 611:1 616:1 624:2 633:2 647:1 655:2 667:5 669:2 675:3 678:1 682:1 697:2 700:2 703:6 706:4 715:1 717:2 730:1 754:1 784:1 788:1 791:1 800:12 801:3 802:4 805:5 828:1 841:2 866:1 868:2 874:1 877:1 884:2 885:3 897:1 913:1 914:1 919:2 932:1 936:1 939:7 950:2 951:1 955:2 956:1 984:3 1000:1 1014:3 1015:1 1016:1 1018:2 1025:1 1028:5 1031:2 1037:1 1039:2 1046:2 1059:1 1060:1 1070:1 1079:2 1081:7 1082:3 1115:1 1116:3 1128:1 1134:1 1142:1 1145:1 1146:2 1153:1 1186:2 1190:1 1196:1 1204:2 1219:1 1224:1 1234:1 1237:1 1241:2 1246:6 1247:1 1252:1 1253:1 1256:3 1258:1 1262:1 1266:1 1270:1 1273:2 1290:2 1295:1 1310:4 1311:4 1313:1 1315:2 1324:1 1330:9 1331:10 1332:1 1333:1 1334:3 1342:2 1350:1 1355:1 1366:1 1367:1 1371:1 1373:1 1377:1 1380:6 1382:1 1388:2 1392:1 1416:1 1419:7 1428:1 1430:1 1432:9 1438:1 1442:4 1443:1 1445:4 1449:3 1467:3 1468:4 1477:1 1487:2 1492:3 1499:3 1510:1 1513:1 1514:1 1517:1 1524:1 1525:1 1528:2 1535:1 1536:2 1542:3 1545:3 1548:1 1553:2 1561:2 1562:2 1565:1 1571:1 1572:1 1578:1 1585:4 1596:1 1597:1 1601:1 1603:1 1609:3 1617:1 1620:1 1634:1 1637:4 1640:1 1644:2 1647:18 1653:3 1654:1 1658:1 1668:2 1672:2 1673:1 1674:2 1675:1 1679:1 1689:1 1692:2 1721:1 1745:1 1758:8 1763:1 1773:3 1775:1 1777:2 1786:1 1789:1 1796:1 1797:2 1818:2 1822:1 1827:2 1828:1 1830:1 1834:1 1836:1 1839:3 1840:1 1843:3 1845:3 1846:2 1847:2 1849:1 1852:1 1854:1 1858:7 1860:1 1865:1 1867:1 1869:1 1875:4 1880:1 1884:1 1891:1 1895:1 1911:2 1912:3 1915:1 1921:1 1930:1 1934:2 1941:1 1942:1 1943:1 1945:3 1946:1 1961:2 1969:1 1980:2 1993:3 2003:3 2004:6 2013:1 2016:3 2021:1 2040:1 2067:1 2071:1 2077:1 2084:1 2086:1 2089:1 2100:7 2113:1 2117:2 2128:1 2143:2 2146:3 2149:8 2157:6 2169:1 2173:1 2180:1 2182:1 2183:1 2186:1 2189:1 2197:1 2198:2 2199:1 2201:2 2203:1 2205:1 2230:1 2235:5 2239:1 2247:1 2251:5 2253:3 2261:1 2266:1 2271:1 2280:5 2282:2 2284:1 2289:3 2296:1 2298:3 2299:1 2313:5 2315:2 2320:1 2327:5 2329:3 2330:1 2344:1 2347:1 2349:2 2352:1 2355:1 2358:12 2360:1 2369:1 2378:1 2379:5 2384:1 2385:2 2393:1 2395:1 2399:1 2404:1 2406:1 2407:2 2416:1 2418:2 2423:1 2424:1 2443:1 2455:5 2456:1 2481:2 2484:1 2504:10 2509:1 2524:6 2533:9 2536:2 2540:4 2545:1 2556:1 2559:1 2560:2 2563:13 2570:2 2571:1 2572:2 2578:1 2598:6 2600:5 2605:2 2625:1 2630:2 2632:4 2642:1 2656:2 2657:1 2658:3 2659:1 2661:1 2663:2 2664:2 2665:1 2666:1 2669:2 2671:2 2684:1 2696:2 2697:2 2701:1 2713:1 2715:1 2716:1 2720:1 2726:2 2737:4 2747:1 2749:1 2751:3 2761:1 2768:1 2775:1 2778:1 2781:1 2782:9 2787:2 2788:1 2789:2 2812:1 2814:1 2816:1 2817:5 2822:1 2824:3 2831:12 2837:1 2840:1 2851:3 2856:1 2858:1 2861:1 2881:1 2887:3 2903:4 2905:9 2912:1 2917:1 2923:4 2927:5 2930:4 2931:1 2933:2 2935:1 2937:1 2939:1 2943:1 2951:2 2961:3 2971:1 2980:3 2982:3 2983:3 2989:1 2992:3 2998:2 3001:9 3007:1 3015:1 3021:1 3022:1 3026:3 3028:12 3036:1 3039:3 3041:1 3042:1 3043:1 3044:1 3046:2 3047:3 3048:2 3049:1 3053:2 3062:1 3063:2 3068:1 3069:2 3070:2 3071:4 3080:1 3081:1 3082:2 3083:1 3093:3 3094:1 3095:1 3110:4 3111:1 3112:2 3114:2 3116:12 3118:3 3122:1 3123:6 3125:2 3126:1 3129:1 3132:1 3133:5 3135:1 3136:3 3142:8 3144:2 3146:2 3149:4 3151:1 3156:1 3168:4 3169:1 3193:1 3199:1 3202:4 3210:2 3212:1 3215:1 3222:1 3226:1 3231:1 3237:1 3250:2 3252:1 3265:1 3266:1 3267:1 3270:2 3272:1 3281:13 3283:2 3294:1 3295:2 3306:2 3312:1 3316:2 3321:2 3327:1 3328:2 3329:2 3341:1 3345:1 3352:1 3357:6 3358:2 3378:2 3389:1 3390:1 3396:2 3397:1 3400:1 3417:1 3420:2 3431:3 3435:1 3436:1 3446:1 3456:2 3457:1 3458:1 3460:1 3462:1 3474:1 3489:1 3493:2 3501:2 3507:2 3510:3 3511:2 3512:1 3518:2 3521:1 3536:2 3558:1 3560:12 3562:4 3568:5 3578:1 3580:1 3581:13 3583:4 3585:1 3587:2 3588:2 3590:1 3593:3 3599:3 3600:1 3607:1 3609:1 3629:1 3631:4 3633:1 3638:2 3642:2 3655:1 3671:2 3679:1 3692:2 3706:12 3707:3 3726:12 3731:3 3732:2 3733:2 3736:1 3738:1 3751:1 3753:2 3763:1 3766:1 3771:1 3775:1 3777:13 3780:1 3788:1 3811:6 3816:1 3819:4 3820:1 3830:1 3834:1 3836:1 3837:1 3841:1 3843:1 3846:1 3857:1 3871:2 3872:1 3873:2 3879:2 3880:1 3886:5 3892:1 3901:2 3902:2 3905:5 3909:1 3910:2 3919:1 3920:9 3927:1 3936:1 3948:1 3966:4 3972:2 3975:3 3977:1 3989:1 3991:1 3993:1 3994:2 3997:1 3998:1 3999:1 4002:2 4013:2 4019:3 4026:3 4031:1 4033:11 4037:4 4046:2 4054:1 4058:3 4059:5 4067:1 4071:58 4072:2 4073:1 4078:1 4079:1 4080:1 4091:2 4096:1 4098:1 4111:1 4114:6 4128:1 4129:1 4131:11 4140:2 4144:1 4145:13 4152:8 4160:2 4161:2 4162:1 4168:1 4169:10 4170:1 4175:1 4194:1 4195:8 4196:3 4197:1 4203:1 4210:8 4211:1 4213:3 4225:6 4234:2 4236:1 4249:2 4251:1 4253:4 4257:1 4266:1 4270:4 4277:1 4291:1 4294:7 4301:2 4305:2 4307:1 4309:1 4311:1 4322:1 4324:5 4331:1 4343:2 4348:6 4349:5 4366:1 4369:1 4378:1 4381:1 4387:1 4412:2 4420:2 4427:4 4436:2 4441:1 4471:2 4473:3 4476:1 4483:1 4486:1 4500:1 4502:1 4506:1 4510:3 4520:1 4544:3 4549:2 4553:13 4556:2 4561:2 4568:2 4572:1 4574:1 4586:1 4596:1 4605:1 4611:1 4622:2 4627:3 4628:3 4635:1 4636:1 4638:2 4641:2 4646:2 4647:1 4649:2 4652:1 4658:2 4660:1 4667:1 4676:2 4683:1 4686:11 4692:12 4699:9 4708:1 4710:1 4733:3 4734:1 4743:1 4751:1 4754:3 4759:1 4762:3 4766:1 4768:2 4769:1 4771:5 4772:1 4778:2 4779:2 4794:2 4795:6 4822:1 4824:1 4827:1 4831:1 4834:12 4837:4 4843:1 4847:1 4851:13 4869:4 4883:1 4885:1 4900:2 4901:1 4910:1 4914:2 4937:1 4940:2 4959:2 4960:1 4982:6 4989:4 5001:1 5006:6 5016:1 5018:1 5019:1 5023:7 5024:1 5025:1 5039:1 5040:2 5052:1 5055:1 5057:1 5058:7 5067:51 5074:1 5081:1 5082:2 5083:6 5097:1 5101:1 5107:1 5112:2 5131:1 5132:1 5135:2 5153:4 5156:1 5157:3 5185:1 5187:1 5193:1 5194:1 5200:1 5202:1 5203:18 5206:4 5212:1 5227:1 5228:1 5231:2 5236:2 5237:1 5241:4 5247:1 5256:6 5264:1 5266:10 5271:8 5279:1 5288:1 5291:1 5297:1 5301:1 5309:1 5313:2 5314:1 5321:1 5345:1 5347:2 5348:1 5353:1 5355:1 5362:1 5364:3 5365:6 5366:2 5372:1 5375:2 5379:1 5382:1 5383:2 5385:2 5387:2 5389:1 5394:3 5402:1 5406:4 5408:2 5411:1 5413:1 5416:1 5424:1 5433:1 5434:1 5437:2829 5443:2 5456:4 5458:1 5460:2 5462:1 5468:1 5469:1 5496:1 5497:2 5499:1 5503:1 5507:2 5509:2 5511:1 5517:1 5518:1 5520:2 5522:1 5529:1 5530:2 5559:2 5582:1 5583:1 5590:1 5600:1 5604:2 5625:1 5637:1 5644:1 5657:1 5661:1 5672:2 5673:2 5674:1 5679:1 5683:1 5691:4 5697:5 5713:1 5714:2 5717:2 5718:3 5751:4 5753:5 5755:1 5756:2 5757:2 5760:1 5761:1 5762:2 5763:1 5765:7 5767:1 5771:7 5772:1 5775:2 5778:1 5780:9 5785:1 5806:2 5813:3 5817:1 5837:3 5856:3 5867:1 5874:1 5879:1 5886:1 5893:3 5904:1 5905:1 5911:2 5912:1 5916:1 5932:16 5944:1 5962:4 5974:1 5981:1 5982:2 5984:15 5995:1 5996:3 5997:1 6007:1 6020:1 6023:1 6026:3 6047:1 6051:1 6055:1 6059:1 6063:1 6090:1 6092:2 6100:1 6110:1 6111:1 6118:1 6133:1 6138:1 6153:1 6165:1 6168:1 6174:1 6204:2 6205:1 6208:2 6216:1 6220:1 6223:1 6232:1 6233:5 6247:2 6262:1 6307:1 6308:2 6311:4 6316:3 6317:2 6321:1 6325:1 6330:1 6339:7 6349:3 6351:3 6352:3 6354:1 6360:1 6364:1 6365:1 6367:2 6368:1 6372:3 6383:1 6398:1 6417:1 6420:8 6422:1 6425:7 6450:1 6451:4 6452:1 6453:1 6458:1 6473:1 6475:1 6489:2 6498:1 6502:12 6508:1 6511:12 6517:8 6519:3 6520:2 6523:1 6534:1 6538:1 6541:8 6542:1 6543:1 6547:2 6559:1 6565:1 6566:1 6571:1 6586:3 6587:3 6588:2 6590:1 6593:1 6596:1 6607:1 6609:2 6612:1 6615:3 6635:1 6660:3 6661:2 6662:1 6668:1 6675:20 6677:4 6680:1 6681:1 6682:1 6683:6 6688:1 6694:10 6699:2 6706:1 6708:1 6714:1 6722:1 6725:4 6736:2 6741:1 6746:2 6747:9 6749:1 6752:12 6756:1 6765:1 6771:2 6775:1 6780:3 6801:1 6822:1 6829:2 6837:2 6841:1 6842:1 6845:20 6855:1 6866:3 6867:8 6868:3 6873:3 6876:3 6879:1 6880:1 6882:1 6884:1 6885:1 6891:2 6900:2 6902:6 6903:3 6905:4 6913:2 6931:5 6945:3 6947:1 6952:4 6953:1 6955:1 6956:2 6957:2 6960:1 6967:1 6970:2 6976:1 6988:1 6991:1 7000:3 7005:1 7008:2 7009:1 7010:1 7013:1 7016:1 7024:1 7043:2 7057:1 7073:1 7078:1 7079:1 7082:3 7084:2 7089:1 7110:1 7112:1 7113:1 7127:2 7129:3 7136:1 7142:1 7148:6 7156:2 7159:2 7160:6 7161:1 7170:1 7174:1 7185:4 7192:2 7193:1 7205:1 7207:1 7225:1 7258:1 7263:1 7266:8 7268:5 7269:1 7273:1 7277:1 7278:1 7281:2 7287:3 7295:5 7297:2 7305:2 7309:3 7327:1 7340:1 7342:2 7353:1 7357:2 7359:1 7361:1 7370:1 7379:1 7400:2 7402:1 7403:3 7414:4 7425:1 7427:1 7430:2 7441:1 7443:1 7446:1 7447:1 7459:3 7462:1 7466:6 7467:1 7474:3 7484:1 7488:3 7490:3 7497:1 7504:1 7506:2 7512:1 7513:1 7515:1 7516:2 7518:1 7525:1 7526:10 7527:1 7539:1 7548:1 7563:1 7571:3 7582:5 7585:1 7589:1 7591:1 7593:1 7595:2 7596:3 7601:2 7610:2 7611:5 7612:1 7615:1 7618:2 7622:7 7623:1 7630:1 7631:1 7633:1 7641:5 7643:1 7647:1 7652:2 7653:1 7655:1 7664:2 7669:1 7670:1 7672:1 7674:2 7678:1 7690:1 7703:6 7707:1 7714:1 7740:1 7742:1 7753:2 7767:1 7769:2 7770:1 7771:1 7773:1 7782:5 7783:2 7788:2 7790:3 7794:6 7800:1 7804:1 7825:1 7829:3 7849:1 7852:2 7854:1 7872:1 7877:1 7882:1 7886:1 7891:1 7895:1 7898:10 7912:1 7914:1 7921:1 7930:1 7941:1 7945:1 7951:4 7968:3 7973:1 7975:1 7976:2 7977:2 7979:1 7983:1 7986:1 7989:2 8016:1 8024:1 8026:2 8032:1 8033:1 8055:2 8065:1 8080:2 8084:1 8091:4 8095:4 8110:1 8125:2 8134:1 8137:2 8148:1 8156:2 8160:1 8162:1 8176:1 8190:2 8195:1 8210:2 8223:1 8243:1 8244:1 8246:2 8254:1 8260:2 8267:1 8278:1 8282:2 8290:3 8300:1 8305:1 8311:2 8328:1 8332:4 8334:6 8346:1 8353:1 8358:1 8363:5 8364:5 8373:8 8378:4 8379:2 8386:1 8388:1 8398:2 8427:1 8429:1 8435:1 8452:1 8455:2 8458:1 8459:1 8465:1 8473:1 8479:1 8524:1 8526:3 8533:1 8541:1 8545:7 8554:2 8556:1 8560:3 8562:1 8563:1 8572:1 8579:2 8589:8 8590:7 8608:1 8609:1 8611:1 8617:1 8624:1 8626:1 8632:1 8636:1 8642:3 8643:2 8644:3 8650:2 8651:1 8652:1 8657:1 8663:2 8667:2 8670:4 8672:1 8684:1 8686:1 8691:2 8692:1 8694:1 8695:1 8704:1 8711:2 8712:8 8717:2 8718:1 8721:1 8736:1 8744:2 8745:12 8774:1 8777:1 8784:6 8794:1 8810:4 8820:10 8824:6 8825:4 8831:6 8832:3 8835:5 8836:2 8837:2 8838:1 8839:6 8840:1 8843:3 8846:7 8847:16 8848:1 8849:1 8851:6 8853:4 8895:1 8911:5 8918:3 8919:1 8925:1 8944:1 8950:1 8954:1 8997:3 9003:1 9013:1 9020:1 9027:1 9038:2 9041:12 9046:1 9058:2 9061:2 9062:1 9074:2 9077:1 9080:1 9082:5 9086:1 9091:4 9117:1 9118:1 9122:1 9131:1 9133:1 9138:1 9145:1 9153:1 9158:12 9176:2 9187:1 9203:2 9204:1 9207:1 9208:1 9212:2 9213:3 9214:2 9216:2 9223:1 9234:1 9236:3 9241:2 9245:1 9254:3 9260:1 9265:2 9302:1 9308:1 9315:1 9318:2 9321:3 9322:1 9333:1 9337:4 9338:2 9344:3 9346:1 9347:1 9349:1 9355:4 9366:1 9372:2 9374:1 9387:1 9389:1 9392:1 9393:1 9397:1 9402:3 9403:1 9408:3 9410:1 9420:3 9423:2 9425:6 9428:1 9433:1 9439:2 9441:1 9471:2 9478:1 9492:1 9500:1 9503:1 9508:2 9509:13 9513:1 9514:3 9515:1 9517:2 9518:4 9521:1 9530:2 9535:1 9538:3 9542:1 9543:4 9544:3 9555:4 9556:2 9558:4 9563:2 9572:1 9575:1 9578:1 9581:1 9582:2 9585:4 9592:11 9593:1 9606:1 9607:5 9609:1 9613:1 9622:2 9624:2 9628:1 9632:1 9634:4 9646:1 9658:3 9667:1 9669:2 9674:1 9678:1 9687:1 9689:2 9694:2 9695:1 9696:9 9703:2 9715:7 9718:3 9723:2 9726:1 9731:3 9732:1 9754:2 9755:1 9762:3 9764:2 9769:1 9780:3 9781:1 9782:10 9810:1 9822:2 9828:1 9830:3 9836:1 9841:3 9846:4 9865:2 9867:1 9888:1 9905:1 9914:1 9916:5 9918:5 9920:1 9925:3 9927:1 9930:1 9937:1 9939:1 9945:2 9946:2 9948:1 9956:5 9958:1 9960:2 9966:1 9967:1 9979:1 9995:9 9996:1 9999:3 10010:1 10015:2 10016:2 10017:1 10029:2 10042:1 10064:1 10093:3 10115:2 10116:2 10119:1 10136:1 10140:1 10150:1 10159:1 10160:3 10161:1 10163:1 10168:1 10174:1 10182:2 10184:1 10196:1 10200:1 10205:1 10206:1 10209:1 10214:2 10220:2 10221:2 10223:3 10224:2 10233:6 10236:2 10238:1 10266:4 10269:3 10275:2 10277:1 10278:3 10293:1 10294:1 10296:1 10299:1 10300:1 10313:1 10323:2 10328:2 10333:1 10336:1 10338:1 10341:1 10356:1 10357:2 10363:3 10367:1 10368:3 10374:1 10376:4 10382:2 10387:2 10392:2 10396:1 10397:3 10399:1 10409:1 10410:12 10425:1 10428:1 10430:2 10447:1 10448:1 10453:1 10460:1 10464:1 10465:1 10466:2 10467:1 10470:1 10478:2 10479:1 10481:1 10486:1 10490:1 10501:2 10512:1 10513:1 10517:2 10536:3 10537:1 10548:1 10559:1 10570:1 10585:1 10593:2 10606:1 10607:1 10611:1 10613:1 10615:1 10625:2 10648:4 10662:1 10664:1 10679:1 10682:6 10683:1 10691:1 10693:1 10695:3 10717:2 10718:11 10720:1 10729:1 10734:1 10736:1 10737:4 10743:2 10744:13 10751:3 10755:1 10758:1 10760:2 10772:1 10773:5 10774:1 10777:1 10780:1 10782:1 10783:1 10789:2 10790:1 10791:1 10793:1 10796:2 10797:1 10798:1 10805:1 10812:60 10814:1 10817:1 10823:1 10825:1 10833:1 10838:1 10841:5 10843:8 10849:1 10855:4 10856:1 10866:1 10871:3 10872:1 10886:2 10888:1 10894:1 10901:1 10903:1 10908:2 10914:1 10921:1 10928:1 10929:1 10940:4 10941:1 10942:1 10946:3 10962:1 10981:8 10983:2 10990:1 10998:9 11002:2 11004:1 11022:1 11033:1 11034:5 11036:1 11037:1 11038:1 11041:1 11045:1 11047:1 11057:1 11072:2 11078:1 11082:2 11086:1 11087:1 11110:1 11112:3 11113:4 11114:2 11118:1 11121:2 11125:6 11131:1 11150:3 11164:1 11168:1 11170:2 11176:1 11190:1 11195:2 11201:1 11203:1 11212:1 11227:2 11228:3 11229:2 11232:3 11246:1 11247:4 11248:3 11260:6 11285:1 11297:3 11300:1 11301:2 11321:1 11322:1 11329:1 11332:1 11337:1 11340:3 11342:2 11347:2 11352:1 11354:1 11357:2 11361:1 11363:5 11373:1 11379:5 11382:3 11397:1 11401:10 11403:4 11413:1 11417:1 11423:5 11431:2 11436:19 11452:4 11457:3 11460:1 11466:1 11470:1 11485:1 11487:4 11509:5 11516:1 11528:1 11530:2 11548:2 11549:1 11559:2 11569:3 11582:1 11584:3 11594:5 11597:12 11611:1 11618:1 11620:4 11621:1 11625:1 11633:1 11651:6 11656:1 11658:1 11665:1 11668:1 11678:1 11691:2 11709:9 11711:1 11714:1 11722:1 11725:1 11727:4 11728:1 11729:1 11737:2 11745:1 11747:1 11752:1 11758:1 11764:1 11771:3 11774:1 11776:6 11779:1 11782:1 11785:5 11786:2 11788:2 11799:12 11827:1 11833:1 11842:1 11848:1 11849:2 11854:1 11855:3 11857:1 11871:1 11881:1 11885:1 11888:2 11896:1 11898:1 11910:1 11913:1 11916:1 11918:1 11921:1 11926:2 11943:3 11944:1 11947:1 11949:1 11950:6 11957:1 11966:1 11978:1 11987:1 11990:3 11995:1 11997:1 11999:1 12003:2 12004:12 12005:1 12011:5 12014:1 12015:1 12019:1 12020:2 12021:1 12022:3 12024:4 12025:2 12032:1 12035:2 12038:1 12042:2 12044:1 12046:1 12047:2 12058:1 12059:1 12063:1 12067:1 12077:1 12089:1 12094:1 12095:3 12102:1 12110:6 12118:1 12128:4 12129:1 12133:1 12136:1 12137:3 12143:1 12156:1 12165:1 12168:1 12183:1 12186:1 12196:14 12205:1 12211:1 12213:1 12214:1 12229:2 12240:1 12241:1 12257:2 12259:1 12262:1 12278:1 12285:2 12290:1 12294:1 12323:1 12344:1 12345:6 12353:1 12356:1 12366:1 12370:1 12373:1 12377:1 12378:1 12379:1 12382:2 12386:2 12399:1 12401:2 12402:2 12418:14 12423:2 12435:2 12436:1 12438:1 12444:1 12445:2 12446:3 12450:1 12453:3 12454:1 12457:3 12463:2 12466:1 12467:8 12471:3 12473:2 12477:1 12481:2 12483:1 12484:1 12486:1 12495:5 12501:10 12502:3 12503:2 12505:1 12506:7 12511:2 12512:2 12518:1 12521:1 12525:1 12527:1 12546:1 12548:3 12554:2 12557:6 12561:2 12572:2 12594:1 12601:1 12614:1 12624:1 12625:1 12629:1 12630:1 12631:3 12632:2 12633:1 12643:2 12652:5 12658:1 12664:11 12673:2 12674:1 12678:1 12702:1 12715:3 12716:1 12727:1 12733:1 12735:1 12739:1 12751:6 12755:1 12757:2 12762:4 12773:1 12776:1 12778:4 12779:1 12781:2 12800:1 12804:1 12806:1 12810:3 12821:2 12825:2 12839:1 12855:1 12856:1 12857:1 12861:2 12866:1 12868:1 12871:1 12879:6 12907:1 12913:1 12915:1 12918:1 12920:1 12926:1 12927:1 12929:4 12930:1 12932:1 12950:2 12951:1 12962:1 12973:1 12974:14 12981:6 12984:1 12991:4 13001:1 13002:1 13007:1 13008:2 13012:3 13018:2 13021:3 13025:1 13028:1 13048:1 13051:1 13052:1 13054:2 13064:6 13068:1 13069:6 13076:3 13090:2 13091:2 13095:1 13099:2 13105:1 13107:1 13108:6 13111:1 13118:1 13120:2 13130:4 13140:1 13142:2 13151:1 13153:1 13159:1 13163:1 13175:1 13181:1 13183:1 13185:1 13187:2 13195:1 13197:4 13198:1 13228:3 13229:1 13248:1 13254:3 13259:1 13270:1 13275:1 13276:1 13278:1 13280:2 13281:2 13285:1 13288:1 13291:1 13299:9 13305:1 13311:1 13313:1 13316:1 13322:2 13328:1 13330:1 13331:2 13336:2 13337:1 13342:1 13343:1 13344:1 13346:1 13347:1 13348:4 13354:1 13356:1 13359:1 13376:1 13388:1 13405:1 13411:2 13412:12 13413:3 13414:2 13417:1 13423:3 13425:4 13430:3 13431:4 13433:1 13434:5 13436:6 13437:1 13439:3 13441:13 13449:2 13450:10 13451:7 13453:11 13465:1 13466:1 13472:1 13474:13 13475:10 13476:1 13493:1 13495:1 13498:5 13502:5 13503:1 13512:3 13522:1 13525:1 13528:1 13532:12 13533:2 13534:3 13555:2 13567:1 13570:1 13585:1 13587:1 13595:1 13598:1 13599:2 13600:11 13606:5 13610:11 13612:5 13630:3 13635:4 13636:15 13637:1 13638:1 13640:1 13650:3 13654:1 13664:2 13672:1 13680:2 13684:3 13696:3 13700:1 13702:6 13703:3 13708:1 13711:4 13721:2 13726:2 13741:2 13747:2 13751:1 13756:23 13757:1 13766:1 13777:1 13788:1 13789:1 13801:2 13810:6 13817:1 13821:1 13823:1 13824:12 13844:4 13845:2 13847:1 13863:2 13875:2 13878:1 13880:1 13882:1 13883:1 13886:1 13888:1 13889:2 13891:1 13892:1 13898:1 13902:6 13904:2 13908:12 13911:1 13917:1 13918:1 13929:1 13933:1 13934:1 13937:8 13944:1 13949:1 13955:1 13957:3 13960:4 13962:1 13966:2 13974:5 13977:2 13978:1 13992:1 14002:7 14011:1 14013:1 14048:2 14051:1 14055:2 14073:1 14079:1 14084:3 14088:1 14094:2 14096:3 14098:1 14100:11 14108:1 14132:1 14133:12 14134:1 14144:2 14148:11 14150:1 14152:1 14181:14 14192:1 14233:1 14236:2 14240:1 14247:1 14257:2 14262:1 14271:2 14274:1 14275:1 14286:2 14289:4 14293:8 14296:8 14298:1 14299:1 14304:1 14319:1 14325:1 14328:2 14330:1 14333:1 14339:1 14349:1 14350:1 14356:1 14364:1 14366:3 14367:1 14370:1 14371:1 14376:1 14381:4 14383:1 14396:2 14398:1 14401:1 14402:2 14411:5 14420:2 14422:1 14423:1 14436:2 14447:1 14449:1 14452:3 14458:1 14469:1 14471:1 14474:3 14478:2 14484:5 14485:1 14494:2 14515:3 14519:13 14525:9 14527:1 14540:1 14543:5 14553:1 14555:9 14559:3 14561:1 14563:1 14574:2 14575:1 14581:2 14583:11 14590:5 14592:1 14594:8 14599:2 14601:2 14604:1 14608:2 14609:5 14610:5 14637:1 14642:1 14644:1 14663:3 14665:2 14672:2 14675:1 14680:1 14681:11 14692:3 14694:4 14707:5 14708:1 14715:2 14717:1 14718:8 14757:1 14759:1 14765:3 14770:3 14780:1 14781:1 14782:1 14798:1 14801:1 14814:2 14815:2 14823:2 14826:7 14828:1 14829:1 14830:2 14831:1 14834:1 14841:2 14845:2 14854:1 14860:1 14861:4 14867:1 14868:1 14870:2 14873:2 14884:6 14887:1 14897:2 14900:2 14901:1 14903:1 14904:1 14909:7 14920:1 14928:1 14929:1 14935:1 14942:1 14962:1 14965:10 14968:5 14979:2 14980:5 14981:1 14994:1 15004:1 15005:2 15008:2 15009:4 15010:1 15015:1 15019:2 15021:2 15030:2 15036:1 15040:1 15050:1 15051:1 15054:2 15065:1 15066:1 15068:1 15076:1 15085:13 15089:10 15113:5 15117:5 15118:3 15122:2 15125:2 15128:1 15131:1 15134:2 15143:1 15146:1 15153:1 15158:1 15165:1 15170:1 15177:1 15183:1 15188:2 15193:1 15195:3 15203:1 15206:5 15211:1 15228:1 15234:1 15235:1 15241:1 15243:3 15248:1 15253:1 15258:4 15274:2 15281:1 15282:1 15283:1 15290:11 15302:2 15314:1 15315:1 15324:1 15342:1 15363:2 15367:2 15394:2 15396:1 15398:1 15405:2 15418:1 15421:1 15437:1 15445:4 15457:1 15480:1 15486:1 15490:1 15491:1 15497:2 15498:1 15502:1 15503:8 15516:2 15523:1 15528:1 15546:3 15547:1 15550:1 15568:9 15576:2 15582:1 15584:1 15585:1 15593:1 15613:4 15618:8 15628:1 15629:1 15633:2 15637:4 15658:1 15665:1 15666:14 15675:3 15687:1 15693:4 15695:1 15696:5 15698:4 15704:1 15708:1 15712:2 15713:3 15714:1 15715:2 15723:2 15724:3 15727:1 15728:1 15731:1 15740:1 15745:1 15747:2 15752:7 15755:1 15756:3 15764:2 15771:1 15772:3 15773:2 15778:1 15789:6 15790:1 15799:1 15819:2 15820:2 15822:1 15829:1 15836:1 15840:1 15843:1 15854:2 15855:1 15863:1 15864:2 15867:1 15872:3 15881:4 15896:1 15905:1 15911:1 15923:1 15926:1 15930:2 15934:1 15937:2 15959:6 15960:1 15962:1 15966:1 15972:1 15974:1 15976:1 15978:51 15986:2 15990:2 15996:4 16001:2 16006:13 16008:1 16016:5 16017:2 16021:2 16022:2 16029:1 16030:1 16033:1 16037:1 16062:1 16072:1 16077:2 16081:1 16106:1 16110:3 16122:1 16127:1 16130:1 16139:1 16150:1 16156:1 16160:4 16175:1 16179:1 16183:5 16187:3 16202:1 16206:1 16217:2 16220:1 16221:8 16235:3 16243:1 16247:1 16263:1 16264:4 16271:1 16276:1 16278:1 16279:1 16282:1 16287:1 16288:1 16298:1 16331:1 16338:3 16343:3 16344:1 16345:1 16346:1 16356:1 16358:2 16361:1 16362:2 16363:1 16366:6 16380:1 16386:2 16388:2 16389:4 16394:1 16395:1 16400:1 16401:1 16402:1 16410:1 16411:1 16416:1 16418:1 16421:2 16431:1 16434:3 16482:1 16487:1 16501:1 16514:1 16515:3 16532:1 16540:2 16545:1 16551:1 16558:1 16561:1 16571:2 16573:1 16579:2 16582:10 16584:1 16585:1 16594:2 16595:4 16597:4 16604:1 16616:1 16619:1 16623:1 16630:1 16633:4 16640:1 16655:1 16660:1 16666:7 16672:1 16675:1 16679:2 16691:2 16694:1 16696:1 16716:9 16717:1 16726:1 16732:1 16739:1 16740:1 16760:2 16806:1 16812:5 16817:3 16822:24 16828:1 16830:1 16834:1 16838:1 16869:1 16870:1 16872:1 16879:4 16883:1 16884:1 16893:1 16894:1 16901:2 16902:7 16903:1 16905:1 16914:1 16918:1 16920:1 16932:1 16937:2 16942:1 16945:1 16946:1 16954:1 16955:1 16964:1 16967:4 16973:1 16980:1 16991:1 17001:1 17005:1 17010:1 17014:3 17019:1 17021:1 17026:1 17027:1 17032:1 17039:1 17040:1 17042:6 17058:1 17059:1 17067:3 17071:1 17072:7 17094:3 17097:1 17104:4 17106:5 17108:1 17118:1 17124:1 17125:2 17128:3 17140:1 17146:1 17161:1 17171:1 17177:1 17178:1 17182:1 17189:1 17191:2 17192:1 17193:2 17202:1 17207:9 17213:1 17216:2 17219:1 17222:1 17237:3 17239:3 17242:1 17251:12 17252:2 17255:2 17263:1 17270:4 17279:1 17301:1 17306:5 17324:8 17342:2 17353:1 17362:1 17370:2 17371:1 17380:1 17388:1 17389:2 17394:1 17408:47 17420:1 17423:3 17434:1 17436:10 17437:6 17438:1 17440:6 17443:3 17444:4 17455:1 17465:1 17474:7 17475:1 17482:1 17486:2 17489:1 17492:1 17493:4 17495:8 17504:1 17506:1 17507:1 17508:1 17510:1 17512:2 17516:1 17517:1 17519:1 17520:4 17524:1 17526:1 17529:1 17531:2 17532:3 17544:1 17546:3 17552:2 17572:1 17573:1 17576:1 17577:1 17579:1 17583:3 17586:1 17590:2 17592:1 17604:1 17605:1 17608:1 17613:1 17615:6 17620:3 17627:1 17629:2 17631:2 17643:2 17644:1 17645:2 17667:1 17672:1 17680:1 17684:2 17687:8 17690:1 17692:1 17696:1 17709:1 17712:1 17723:1 17753:1 17768:1 17779:3 17780:1 17783:1 17787:1 17790:1 17802:6 17810:1 17815:1 17817:1 17820:1 17822:1 17825:3 17846:1 17863:2 17873:1 17877:1 17878:4 17886:1 17889:1 17890:1 17891:11 17894:1 17901:1 17905:1 17912:16 17920:1 17926:1 17933:3 17934:4 17939:1 17949:1 17960:1 17961:1 17968:2 17973:1 17989:1 17990:2 17992:1 18000:1 18009:1 18017:2 18019:1 18022:2 18033:2 18035:2 18039:1 18048:1 18058:1 18064:2 18068:16 18075:4 18084:1 18086:1 18098:4 18100:4 18101:2 18108:1 18123:2 18131:1 18132:1 18143:3 18144:2 18145:1 18147:1 18148:1 18168:2 18176:4 18180:1 18183:1 18193:1 18198:5 18201:1 18210:2 18211:1 18212:1 18213:1 18221:6 18225:1 18230:4 18233:2 18246:2 18247:1 18249:10 18253:1 18255:1 18261:2 18263:1 18265:5 18266:1 18269:4 18271:2 18282:3 18286:1 18289:4 18290:1 18299:1 18308:1 18310:1 18313:1 18318:1 18319:1 18325:3 18326:2 18328:1 18330:2 18342:1 18343:1 18344:2 18351:1 18355:4 18363:1 18366:2 18367:1 18373:1 18380:2 18387:8 18389:9 18392:30 18393:3 18398:2 18399:1 18403:1 18412:2 18419:1 18423:1 18428:2 18442:5 18453:1 18458:1 18465:3 18473:4 18498:2 18509:1 18516:1 18529:1 18550:1 18555:3 18557:2 18563:4 18569:3 18584:1 18585:3 18589:1 18612:2 18613:6 18614:1 18631:1 18636:3 18641:3 18643:8 18657:4 18686:3 18690:11 18693:1 18699:2 18700:1 18713:5 18720:1 18722:9 18735:8 18738:1 18747:2 18751:8 18753:5 18759:1 18760:3 18764:1 18765:1 18766:2 18767:1 18768:1 18788:1 18792:1 18799:1 18801:7 18811:4 18819:2 18827:1 18834:3 18836:1 18838:1 18850:6 18852:1 18855:1 18860:1 18863:1 18865:1 18869:1 18870:2 18874:2 18877:1 18899:5 18907:5 18914:1 18932:1 18934:2 18935:1 18937:1 18941:1 18945:1 18947:1 18953:4 18956:2 18958:5 18960:2 18964:1 18966:1 18978:1 18979:1 19001:12 19005:1 19007:1 19015:1 19020:23 19021:2 19031:4 19032:3 19035:2 19036:1 19042:1 19050:4 19057:3 19085:1 19098:1 19116:1 19119:1 19130:12 19132:1 19137:1 19140:3 19147:1 19156:1 19165:8 19171:2 19174:1 19177:13 19184:1 19189:1 19208:2 19210:1 19214:1 19238:1 19278:4 19280:1 19301:1 19310:1 19311:2 19312:1 19331:2 19333:1 19336:1 19350:1 19352:1 19358:4 19360:4 19365:5 19367:3 19369:1 19386:1 19389:1 19390:1 19398:1 19399:1 19410:1 19411:2 19412:1 19433:1 19438:1 19444:1 19455:1 19458:2 19465:4 19470:5 19493:1 19499:1 19510:1 19518:4 19522:1 19526:2 19528:1 19537:2 19545:1 19549:1 19556:1 19558:1 19559:1 19575:2 19600:5 19604:1 19606:1 19607:1 19615:1 19618:3 19619:1 19627:1 19638:1 19642:1 19643:4 19644:1 19659:3 19660:2 19661:2 19664:1 19672:1 19673:1 19674:9 19684:1 19687:1 19689:1 19691:1 19692:1 19698:1 19699:1 19718:1 19721:1 19722:2 19740:4 19748:1 19762:1 19767:1 19769:1 19778:1 19780:3 19791:1 19812:1 19818:2 19823:2 19824:8 19825:1 19831:1 19844:1 19852:1 19856:1 19869:1 19870:1 19873:1 19878:1 19883:1 19888:3 19894:2 19900:1 19905:2 19916:2 19918:2 19919:1 19925:1 19927:1 19930:3 19932:1 19934:1 19944:4 19952:1 19957:1 19968:1 19996:3 20003:1 20033:1 20036:1 20044:1 20052:1 20058:1 20059:5 20060:7 20076:1 20079:1 20081:1 20082:6 20083:1 20096:3 20097:1 20101:1 20105:2 20116:1 20117:1 20118:3 20124:1 20126:5 20150:3 20158:1 20159:1 20167:1 20175:1 20177:7 20178:2 20181:1 20184:1 20185:7 20188:4 20191:4 20193:1 20207:3 20210:1 20212:3 20215:9 20216:1 20247:3 20255:6 20263:4 20270:2 20271:1 20273:1 20276:1 20290:1 20311:3 20328:1 20330:1 20342:1 20350:1 20386:1 20388:4
14 4:1 5:2 8:1 20:1 21:2 49:1 58:1 69:2 72:1 73:1 74:1 88:9 113:1 115:2 116:2 118:1 119:2 131:1 133:1 134:1 140:7 143:1 148:2 152:2 162:1 166:1 183:3 191:1 206:1 208:2 216:1 217:3 226:1 238:2 257:1 272:1 273:1 274:2 277:2 282:2 284:1 289:4 307:1 308:1 311:1 319:1 344:1 356:1 364:12 366:10 371:3 374:1 376:5 388:1 392:2 400:1 403:1 406:3 411:1 417:2 419:1 420:1 421:1 423:1 430:3 433:1 440:1 441:2 442:2 448:1 453:1 455:1 456:1 467:12 470:1 475:2 477:1 480:2 484:1 492:1 493:9 495:2 496:1 502:1 509:1 513:1 515:1 528:3 531:1 547:3 548:11 550:1 558:1 559:6 560:1 562:1 569:1 576:3 584:2 590:2 592:1 609:1 611:1 616:1 624:2 633:2 647:1 655:2 667:5 669:3 675:3 678:1 682:1 697:2 700:2 703:6 706:4 715:1 717:2 730:1 754:1 784:1 788:1 791:2 800:13 801:3 802:4 805:5 828:1 841:2 866:1 868:2 874:1 877:1 884:2 885:3 897:1 913:1 914:1 919:2 932:1 936:1 939:7 950:2 951:1 955:2 956:1 984:3 1000:1 1014:3 1015:1 1016:1 1018:2 1025:1 1028:5 1031:2 1037:1 1039:2 1046:3 1059:1 1060:1 1070:1 1079:2 1081:7 1082:3 1115:1 1116:3 1128:1 1134:1 1142:1 1145:1 1146:2 1153:1 1186:2 1190:1 1196:1 1204:2 1219:1 1224:1 1234:1 1237:1 1241:2 1246:7 1247:1 1252:1 1253:1 1256:3 1258:1 1262:1 1266:1 1270:1 1273:2 1290:3 1295:1 1296:1 1310:4 1311:4 1313:1 1315:2 1324:1 1330:9 1331:10 1332:1 1333:1 1334:3 1342:2 1350:1 1355:1 1366:1 1367:1 1371:1 1373:1 1377:1 1380:6 1382:1 1388:2 1392:1 1416:1 1419:7 1428:1 1430:1 1432:9 1438:1 1442:4 1443:1 1445:5 1449:3 1467:3 1468:4 1477:1 1487:2 1492:3 1499:3 1510:1 1513:1 1514:1 1517:1 1524:1 1525:1 1528:2 1535:1 1536:2 1542:3 1545:3 1548:1 1553:2 1561:2 1562:2 1565:1 1571:1 1572:1 1578:1 1585:5 1596:1 1597:1 1601:1 1603:1 1609:3 1617:1 1620:1 1626:2 1634:1 1637:4 1640:1 1644:2 1647:19 1653:3 1654:1 1658:1 1668:2 1672:2 1673:1 1674:2 1675:1 1679:1 1689:1 1692:2 1721:1 1745:1 1758:8 1763:1 1773:3 1775:1 1777:2 1786:1 1789:1 1796:1 1797:2 1816:1 1818:2 1822:1 1827:2 1828:1 1830:1 1834:1 1836:1 1839:3 1840:1 1843:3 1845:3 1846:2 1847:2 1849:1 1852:1 1854:1 1858:8 1860:1 1865:1 1867:1 1869:1 1875:4 1880:1 1884:1 1891:1 1895:1 1911:2 1912:3 1915:1 1921:1 1930:1 1934:2 1941:1 1942:1 1943:1 1945:3 1946:1 1961:2 1969:1 1980:2 1993:3 2003:3 2004:6 2013:1 2016:3 2021:1 2040:1 2067:1 2071:1 2077:1 2084:1 2086:1 2089:2 2100:7 2113:1 2117:2 2128:1 2143:2 2146:3 2149:8 2157:6 2169:1 2173:1 2180:1 2182:1 2183:1 2186:1 2189:1 2197:1 2198:2 2199:1 2201:2 2203:1 2205:1 2230:1 2235:5 2239:2 2247:1 2251:5 2253:3 2261:2 2266:1 2271:1 2280:5 2282:2 2284:1 2289:3 2296:1 2298:3 2299:1 2304:2 2313:5 2315:2 2320:1 2327:5 2329:3 2330:1 2344:1 2347:1 2349:2 2352:1 2355:1 2358:12 2360:1 2369:1 2378:1 2379:5 2380:1 2384:1 2385:2 2393:1 2395:1 2399:1 2404:1 2406:1 2407:2 2416:1 2418:2 2423:1 2424:1 2443:1 2455:5 2456:1 2481:2 2484:1 2504:10 2509:1 2524:6 2533:9 2536:2 2540:4 2545:1 2556:1 2559:1 2560:2 2563:14 2570:2 2571:1 2572:2 2578:1 2598:6 2600:5 2605:2 2614:1 2625:1 2630:2 2632:5 2642:1 2656:2 2657:1 2658:3 2659:1 2661:1 2663:2 2664:2 2665:1 2666:1 2669:2 2671:2 2684:1 2696:2 2697:2 2700:1 2701:1 2713:1 2715:2 2716:1 2720:1 2726:2 2737:4 2747:1 2749:1 2751:3 2761:1 2768:1 2775:1 2778:1 2781:1 2782:9 2787:2 2788:1 2789:2 2812:1 2814:1 2816:1 2817:5 2822:1 2824:3 2831:14 2837:1 2840:1 2851:3 2856:1 2858:1 2861:1 2881:1 2887:3 2903:4 2905:9 2912:1 2916:1 2917:1 2923:4 2927:5 2930:4 2931:1 2933:2 2935:1 2937:1 2939:1 2943:1 2951:2 2961:3 2971:1 2980:3 2982:3 2983:3 2989:1 2992:3 2998:2 3001:9 3007:1 3015:1 3021:1 3022:1 3026:3 3028:12 3036:1 3039:3 3041:1 3042:1 3043:1 3044:1 3046:2 3047:3 3048:2 3049:1 3053:2 3062:1 3063:2 3068:1 3069:2 3070:2 3071:4 3080:1 3081:1 3082:2 3083:1 3093:3 3094:1 3095:1 3110:4 3111:1 3112:2 3114:2 3116:12 3118:4 3122:1 3123:7 3125:2 3126:1 3129:1 3132:1 3133:5 3135:1 3136:4 3142:8 3144:2 3146:2 3149:4 3151:1 3156:1 3168:4 3169:1 3193:1 3199:1 3202:5 3210:2 3212:1 3215:1 3222:1 3226:1 3231:1 3237:1 3250:2 3252:1 3265:1 3266:1 3267:1 3270:2 3272:1 3281:13 3283:3 3294:1 3295:2 3306:2 3312:1 3316:2 3321:2 3327:1 3328:2 3329:2 3341:1 3345:1 3352:1 3357:6 3358:2 3378:2 3389:1 3390:1 3396:2 3397:1 3400:1 3417:1 3420:2 3431:3 3435:1 3436:1 3446:1 3456:2 3457:1 3458:1 3460:1 3462:1 3474:1 3489:1 3493:2 3501:2 3506:1 3507:2 3510:3 3511:2 3512:1 3517:1 3518:2 3521:1 3536:2 3558:1 3560:12 3562:4 3568:5 3578:1 3580:1 3581:13 3583:4 3585:1 3587:2 3588:3 3590:1 3593:3 3599:3 3600:1 3607:1 3609:1 3629:1 3631:4 3633:1 3638:2 3642:2 3655:1 3671:2 3678:1 3679:1 3692:2 3706:13 3707:3 3726:12 3731:3 3732:2 3733:2 3736:1 3738:1 3751:1 3753:2 3763:1 3766:1 3771:1 3775:1 3777:13 3780:1 3788:1 3811:6 3816:1 3819:4 3820:1 3830:1 3834:1 3836:1 3837:1 3841:1 3843:1 3846:1 3857:1 3871:2 3872:1 3873:2 3879:2 3880:1 3886:5 3892:1 3901:2 3902:2 3905:5 3909:1 3910:2 3919:1 3920:9 3927:1 3936:1 3948:1 3966:4 3972:2 3975:3 3977:1 3989:1 3991:1 3993:1 3994:2 3997:1 3998:1 3999:1 4002:2 4013:2 4019:3 4026:3 4031:2 4033:11 4037:4 4046:2 4054:1 4058:3 4059:5 4067:1 4071:59 4072:2 4073:1 4078:1 4079:1 4080:1 4091:2 4096:1 4098:1 4111:1 4114:6 4128:1 4129:1 4131:11 4140:2 4144:1 4145:14 4152:8 4160:2 4161:2 4162:1 4168:1 4169:10 4170:1 4175:1 4194:1 4195:8 4196:3 4197:1 4203:1 4210:8 4211:1 4213:3 4225:6 4234:2 4236:1 4249:2 4251:1 4253:5 4257:1 4266:2 4270:4 4271:1 4277:1 4291:1 4294:7 4301:2 4305:2 4307:1 4309:1 4311:1 4322:1 4324:5 4326:1 4331:1 4343:2 4348:6 4349:5 4366:1 4369:1 4378:1 4381:1 4387:1 4412:2 4420:2 4427:4 4436:2 4441:1 4471:2 4473:3 4476:1 4483:1 4486:1 4500:1 4502:1 4506:1 4510:3 4520:1 4544:3 4549:2 4553:13 4556:2 4561:2 4568:2 4572:1 4574:1 4586:1 4596:1 4605:2 4611:2 4622:2 4627:3 4628:3 4635:1 4636:1 4638:2 4641:2 4646:2 4647:1 4649:2 4652:1 4658:2 4660:1 4665:1 4667:1 4676:3 4683:1 4686:12 4692:12 4699:10 4708:1 4710:1 4733:3 4734:1 4743:1 4751:1 4754:3 4759:1 4762:3 4766:1 4768:2 4769:1 4771:5 4772:1 4778:2 4779:2 4794:2 4795:6 4822:1 4824:1 4827:1 4831:1 4834:12 4837:4 4843:1 4847:1 4851:14 4869:4 4883:1 4885:1 4900:2 4901:1 4910:1 4914:2 4937:1 4940:2 4959:2 4960:1 4982:6 4987:1 4989:4 5001:1 5006:6 5016:1 5018:1 5019:1 5023:7 5024:1 5025:1 5039:1 5040:2 5052:1 5055:1 5057:1 5058:7 5067:53 5074:1 5081:1 5082:2 5083:6 5097:1 5101:1 5107:1 5112:2 5131:1 5132:1 5135:2 5153:5 5156:1 5157:3 5185:1 5187:1 5193:1 5194:1 5200:1 5202:1 5203:18 5206:4 5212:1 5227:1 5228:1 5231:2 5236:2 5237:1 5241:4 5247:1 5256:6 5264:1 5266:10 5271:8 5279:1 5288:1 5291:1 5297:2 5301:1 5306:1 5309:1 5313:2 5314:1 5321:1 5345:1 5347:2 5348:1 5353:1 5355:1 5362:1 5364:3 5365:6 5366:3 5372:1 5375:2 5379:1 5382:1 5383:2 5385:2 5387:2 5389:1 5394:3 5402:1 5406:4 5408:2 5411:2 5413:1 5416:1 5424:1 5433:1 5434:1 5437:2919 5443:2 5456:4 5458:1 5460:2 5462:1 5468:1 5469:1 5488:1 5496:1 5497:2 5499:1 5503:1 5507:2 5509:2 5511:1 5517:1 5518:1 5520:3 5522:1 5529:1 5530:2 5559:2 5582:1 5583:1 5590:1 5595:1 5600:1 5604:3 5625:1 5637:1 5644:1 5657:1 5661:1 5672:2 5673:2 5674:1 5679:1 5683:1 5691:4 5697:5 5713:1 5714:2 5717:2 5718:3 5751:4 5753:5 5755:1 5756:2 5757:2 5760:1 5761:1 5762:2 5763:1 5765:7 5767:1 5771:8 5772:1 5775:2 5778:1 5780:9 5785:1 5806:2 5813:3 5817:1 5837:3 5856:3 5867:1 5874:1 5879:1 5886:1 5893:3 5904:1 5905:1 5911:2 5912:1 5916:1 5932:16 5944:1 5962:4 5974:1 5981:1 5982:2 5984:15 5995:1 5996:3 5997:1 6007:1 6020:1 6023:1 6026:3 6047:1 6051:1 6055:1 6059:1 6063:1 6090:1 6092:3 6100:1 6110:1 6111:1 6118:1 6133:1 6138:1 6153:1 6165:1 6168:1 6174:1 6204:2 6205:1 6208:2 6216:1 6220:1 6223:1 6227:1 6232:1 6233:5 6247:2 6262:2 6307:2 6308:2 6311:4 6316:3 6317:2 6321:1 6325:1 6330:1 6339:8 6349:3 6351:3 6352:3 6354:1 6360:1 6364:1 6365:1 6367:2 6368:1 6372:3 6383:1 6398:1 6417:1 6420:8 6422:1 6425:7 6450:1 6451:4 6452:1 6453:1 6458:1 6473:1 6475:1 6489:2 6498:1 6502:12 6508:1 6511:12 6517:10 6519:3 6520:2 6523:1 6534:1 6538:1 6541:8 6542:1 6543:1 6547:2 6559:1 6565:1 6566:1 6571:1 6586:3 6587:3 6588:2 6590:1 6593:1 6596:1 6607:1 6609:2 6612:1 6615:3 6635:1 6642:1 6660:3 6661:2 6662:1 6668:1 6675:21 6677:4 6680:1 6681:1 6682:1 6683:6 6688:1 6694:10 6699:3 6706:1 6708:1 6714:1 6722:1 6725:4 6736:2 6741:1 6743:1 6746:2 6747:10 6749:1 6752:12 6756:1 6765:1 6771:2 6775:1 6780:3 6799:1 6801:1 6822:1 6827:1 6829:2 6837:2 6841:1 6842:1 6845:21 6855:1 6866:4 6867:8 6868:3 6873:4 6876:3 6879:1 6880:1 6882:1 6884:1 6885:1 6891:2 6900:2 6902:6 6903:3 6905:4 6913:2 6931:5 6945:3 6947:1 6952:4 6953:1 6955:1 6956:2 6957:2 6960:1 6967:1 6970:2 6976:1 6988:1 6991:1 7000:3 7005:2 7008:2 7009:1 7010:1 7013:1 7016:1 7024:1 7043:2 7057:1 7073:1 7078:1 7079:1 7082:3 7084:2 7089:1 7110:1 7112:1 7113:1 7127:2 7129:3 7136:1 7142:1 7148:6 7156:2 7159:2 7160:6 7161:1 7170:1 7174:1 7185:4 7192:2 7193:1 7205:1 7207:1 7225:1 7258:1 7263:1 7266:8 7268:5 7269:1 7273:1 7277:1 7278:1 7281:2 7287:3 7295:5 7297:2 7305:2 7309:3 7327:1 7340:1 7342:2 7353:1 7357:2 7359:1 7361:1 7370:1 7379:1 7400:2 7402:1 7403:3 7414:4 7425:1 7427:1 7430:2 7441:1 7443:1 7446:1 7447:1 7459:3 7462:1 7466:6 7467:1 7474:3 7484:1 7488:3 7490:3 7497:1 7504:1 7506:2 7512:1 7513:1 7515:1 7516:2 7518:1 7525:1 7526:10 7527:1 7528:1 7539:1 7548:1 7563:1 7571:3 7582:5 7585:1 7589:1 7591:1 7593:1 7595:2 7596:3 7601:2 7610:2 7611:5 7612:2 7615:1 7618:2 7622:7 7623:1 7630:1 7631:1 7633:1 7641:5 7643:1 7647:1 7652:2 7653:1 7655:1 7664:2 7669:1 7670:1 7672:1 7674:2 7678:1 7690:1 7703:6 7707:1 7714:1 7740:1 7742:1 7753:2 7767:2 7769:2 7770:1 7771:1 7773:1 7782:5 7783:2 7788:2 7790:3 7794:6 7800:1 7804:1 7825:1 7829:3 7849:1 7852:2 7854:1 7872:1 7877:1 7882:1 7886:1 7891:1 7895:1 7898:10 7912:1 7914:1 7921:1 7930:1 7941:1 7945:1 7951:4 7968:3 7973:1 7975:1 7976:2 7977:2 7979:1 7983:1 7986:1 7989:2 8016:1 8024:1 8026:2 8032:1 8033:1 8055:2 8065:1 8080:2 8084:1 8091:4 8095:4 8110:1 8125:2 8134:1 8137:2 8148:1 8156:2 8160:1 8162:1 8176:1 8190:2 8195:1 8210:2 8223:1 8243:1 8244:1 8246:2 8254:1 8260:2 8267:1 8278:1 8282:2 8286:1 8290:3 8300:1 8305:1 8311:2 8328:1 8332:4 8334:6 8339:1 8346:1 8353:1 8358:1 8363:5 8364:5 8373:8 8378:4 8379:2 8386:1 8388:1 8398:2 8427:1 8429:1 8435:1 8452:1 8455:2 8458:1 8459:1 8465:1 8473:1 8479:1 8524:1 8526:3 8533:1 8541:1 8545:7 8554:2 8556:1 8560:3 8562:1 8563:1 8572:1 8579:2 8589:8 8590:7 8608:1 8609:1 8611:2 8617:1 8624:1 8626:1 8632:1 8636:1 8642:3 8643:2 8644:3 8650:3 8651:1 8652:1 8657:1 8663:2 8667:2 8670:4 8672:1 8684:1 8686:2 8691:2 8692:1 8694:1 8695:1 8703:1 8704:1 8711:2 8712:8 8717:2 8718:1 8721:1 8732:1 8736:1 8744:2 8745:12 8774:1 8777:1 8784:6 8794:1 8810:4 8820:10 8824:6 8825:4 8828:1 8831:6 8832:3 8835:5 8836:2 8837:2 8838:1 8839:7 8840:1 8843:3 8846:7 8847:19 8848:1 8849:1 8851:6 8853:4 8895:1 8911:5 8918:3 8919:1 8925:1 8944:1 8950:1 8954:1 8997:3 9003:1 9013:1 9020:1 9027:1 9038:2 9041:12 9046:1 9058:2 9061:2 9062:1 9074:2 9077:1 9080:1 9082:5 9086:1 9091:4 9117:1 9118:1 9122:1 9131:1 9133:1 9138:1 9145:1 9153:1 9158:12 9176:2 9187:1 9203:2 9204:1 9207:1 9208:1 9212:2 9213:3 9214:2 9216:2 9223:1 9234:1 9236:3 9241:2 9245:1 9254:3 9260:1 9265:2 9302:1 9308:1 9315:1 9318:2 9321:3 9322:1 9324:1 9333:1 9337:4 9338:2 9344:3 9346:1 9347:1 9349:1 9355:4 9359:1 9366:1 9372:2 9374:1 9387:1 9389:1 9392:1 9393:1 9397:1 9402:3 9403:1 9408:4 9410:1 9420:3 9423:2 9425:6 9428:1 9433:1 9439:2 9441:1 9471:2 9478:1 9492:1 9500:1 9503:1 9508:2 9509:14 9513:1 9514:3 9515:1 9516:1 9517:2 9518:4 9521:1 9530:2 9535:1 9538:3 9542:1 9543:4 9544:3 9555:4 9556:2 9558:4 9563:2 9572:1 9575:1 9578:1 9581:1 9582:2 9585:5 9592:12 9593:1 9606:1 9607:5 9609:1 9613:1 9622:2 9624:2 9628:1 9632:1 9634:4 9646:1 9658:3 9667:1 9669:2 9674:1 9678:1 9687:1 9689:2 9694:2 9695:1 9696:9 9703:2 9715:9 9718:3 9723:2 9726:1 9731:3 9732:1 9754:2 9755:1 9762:3 9764:2 9769:1 9780:3 9781:1 9782:10 9810:1 9822:2 9828:1 9830:3 9836:1 9841:3 9846:4 9865:2 9867:1 9888:1 9892:1 9905:1 9914:1 9916:6 9918:5 9920:1 9925:3 9927:1 9930:1 9937:1 9939:1 9945:2 9946:3 9948:1 9956:5 9958:1 9960:2 9966:1 9967:1 9979:1 9995:10 9996:1 9999:3 10010:1 10015:2 10016:2 10017:1 10029:3 10042:1 10064:1 10093:3 10115:2 10116:2 10119:1 10136:1 10140:1 10150:1 10159:1 10160:3 10161:1 10163:1 10168:1 10174:1 10182:2 10184:1 10196:1 10200:1 10205:1 10206:1 10209:1 10214:2 10220:2 10221:2 10223:3 10224:2 10233:6 10236:2 10238:1 10266:4 10269:3 10275:2 10277:1 10278:3 10293:1 10294:1 10296:1 10299:1 10300:1 10313:1 10323:2 10328:2 10333:1 10336:1 10338:1 10341:1 10356:1 10357:2 10363:3 10367:1 10368:3 10374:1 10376:4 10382:2 10387:2 10392:2 10396:2 10397:3 10399:1 10409:1 10410:14 10425:1 10428:1 10430:2 10447:1 10448:1 10453:1 10460:1 10464:1 10465:1 10466:3 10467:1 10470:1 10478:2 10479:1 10481:1 10486:1 10490:1 10501:2 10512:1 10513:1 10517:2 10536:3 10537:1 10548:1 10559:1 10570:1 10577:1 10578:1 10585:1 10593:2 10606:1 10607:1 10611:1 10613:1 10615:1 10625:2 10648:4 10662:1 10664:1 10679:1 10682:6 10683:1 10691:1 10693:1 10695:3 10717:2 10718:11 10720:1 10729:1 10734:1 10736:1 10737:4 10743:2 10744:13 10751:3 10755:1 10758:1 10760:2 10772:1 10773:5 10774:1 10777:1 10780:1 10782:1 10783:1 10789:2 10790:1 10791:1 10792:1 10793:1 10796:2 10797:1 10798:1 10805:1 10812:62 10814:1 10817:1 10823:1 10825:1 10833:1 10838:1 10841:5 10843:8 10849:1 10855:4 10856:1 10866:1 10871:4 10872:1 10886:3 10888:1 10894:1 10901:1 10903:1 10908:2 10914:1 10921:1 10928:1 10929:1 10940:4 10941:1 10942:1 10946:3 10962:1 10981:8 10983:2 10990:1 10994:1 10998:9 11002:2 11004:1 11022:1 11033:1 11034:5 11036:1 11037:1 11038:1 11041:1 11045:1 11047:1 11057:1 11072:2 11078:1 11082:2 11086:1 11087:1 11110:1 11112:3 11113:4 11114:2 11118:1 11121:2 11125:6 11131:1 11150:3 11164:1 11168:1 11170:2 11176:1 11190:1 11195:2 11201:1 11203:1 11212:1 11227:2 11228:3 11229:2 11232:3 11246:1 11247:4 11248:3 11260:6 11285:1 11297:3 11300:1 11301:2 11321:1 11322:1 11329:1 11332:1 11337:1 11340:3 11342:3 11347:2 11352:1 11354:1 11357:2 11361:1 11363:5 11373:1 11379:5 11382:3 11397:1 11401:10 11403:5 11413:1 11417:1 11423:5 11431:2 11436:19 11452:4 11457:3 11460:1 11466:1 11470:1 11485:1 11487:4 11509:5 11516:1 11528:1 11530:2 11548:2 11549:1 11559:2 11569:3 11582:1 11584:3 11594:5 11597:13 11611:1 11618:1 11620:4 11621:1 11625:1 11633:1 11651:6 11656:2 11658:1 11665:1 11668:1 11678:1 11691:2 11709:9 11711:1 11714:1 11722:1 11725:1 11727:4 11728:1 11729:1 11737:2 11745:1 11747:1 11752:1 11758:1 11764:1 11771:3 11774:1 11776:6 11779:1 11782:1 11785:5 11786:3 11788:2 11799:14 11827:1 11833:1 11842:1 11848:1 11849:2 11854:1 11855:3 11857:1 11871:1 11881:1 11885:1 11888:2 11896:1 11898:1 11910:1 11913:1 11916:1 11918:1 11921:1 11926:2 11943:3 11944:1 11947:1 11949:1 11950:6 11957:1 11966:1 11978:1 11987:1 11990:3 11995:1 11997:1 11999:1 12003:2 12004:12 12005:1 12011:5 12014:1 12015:1 12019:1 12020:2 12021:1 12022:3 12024:4 12025:2 12032:2 12035:2 12038:1 12042:2 12044:1 12046:1 12047:2 12058:1 12059:1 12063:1 12067:1 12077:1 12089:1 12094:1 12095:3 12102:1 12110:6 12118:1 12128:4 12129:1 12133:1 12136:1 12137:3 12143:1 12156:1 12165:1 12168:1 12183:1 12186:1 12188:1 12196:15 12205:1 12208:1 12211:1 12213:1 12214:1 12229:2 12240:1 12241:2 12257:2 12259:1 12262:1 12278:1 12285:2 12290:1 12294:1 12323:1 12344:1 12345:6 12353:1 12356:1 12366:1 12370:1 12373:1 12377:1 12378:1 12379:1 12382:2 12386:2 12399:1 12401:2 12402:2 12418:14 12423:2 12435:2 12436:1 12438:1 12444:1 12445:2 12446:3 12450:1 12453:3 12454:1 12457:3 12463:2 12466:1 12467:8 12471:3 12473:2 12477:1 12481:2 12483:1 12484:1 12486:1 12490:1 12495:5 12501:10 12502:3 12503:2 12505:1 12506:7 12511:2 12512:2 12518:1 12521:1 12525:1 12527:2 12546:1 12548:3 12554:2 12557:6 12561:2 12572:2 12594:1 12601:1 12614:1 12624:1 12625:1 12629:1 12630:1 12631:3 12632:2 12633:1 12643:2 12652:5 12658:1 12664:11 12673:2 12674:1 12678:1 12702:1 12715:3 12716:1 12727:1 12733:1 12735:1 12739:1 12751:7 12755:1 12757:2 12762:4 12773:1 12776:1 12778:4 12779:1 12781:2 12800:1 12804:1 12806:2 12810:3 12821:2 12825:2 12839:1 12855:1 12856:1 12857:1 12861:2 12866:2 12868:1 12871:1 12879:6 12907:2 12913:1 12915:1 12918:1 12920:1 12926:1 12927:1 12929:4 12930:1 12932:1 12950:2 12951:1 12962:1 12973:1 12974:15 12981:6 12984:1 12991:4 12997:1 13001:1 13002:1 13007:1 13008:2 13012:3 13018:2 13021:3 13025:1 13028:1 13048:1 13051:1 13052:1 13054:2 13064:7 13066:1 13068:1 13069:6 13073:2 13076:3 13090:2 13091:2 13095:1 13099:2 13105:1 13107:1 13108:6 13111:1 13118:1 13120:2 13130:5 13140:1 13142:2 13151:1 13153:1 13159:1 13163:1 13175:1 13181:1 13183:1 13185:1 13187:2 13195:1 13197:4 13198:1 13228:3 13229:1 13248:1 13254:3 13259:1 13270:1 13275:1 13276:1 13278:1 13280:2 13281:2 13285:1 13288:1 13291:1 13299:9 13305:1 13311:1 13313:1 13316:1 13322:2 13328:1 13330:1 13331:2 13336:2 13337:2 13342:1 13343:1 13344:1 13346:1 13347:1 13348:4 13354:1 13356:1 13359:1 13376:1 13388:1 13405:1 13411:2 13412:12 13413:3 13414:2 13417:1 13423:3 13425:5 13430:3 13431:4 13433:1 13434:5 13436:6 13437:1 13439:3 13441:14 13449:2 13450:10 13451:7 13453:11 13465:1 13466:1 13472:1 13474:14 13475:10 13476:1 13493:1 13495:1 13498:5 13502:6 13503:1 13512:3 13522:1 13525:1 13528:1 13532:12 13533:2 13534:3 13555:2 13567:1 13570:1 13585:1 13587:1 13595:1 13598:1 13599:2 13600:12 13606:5 13610:11 13612:6 13630:3 13635:4 13636:16 13637:1 13638:1 13640:1 13650:3 13654:1 13664:2 13672:1 13680:2 13684:3 13696:3 13700:1 13702:6 13703:3 13708:1 13711:4 13721:2 13726:2 13741:2 13747:2 13751:1 13756:23 13757:1 13766:1 13777:1 13788:1 13789:1 13801:2 13810:6 13817:1 13821:1 13823:1 13824:12 13836:1 13844:4 13845:2 13847:1 13863:2 13875:2 13878:1 13880:1 13882:1 13883:1 13886:1 13888:1 13889:2 13891:1 13892:1 13898:1 13902:6 13904:2 13908:12 13911:1 13917:1 13918:1 13929:1 13933:1 13934:1 13937:8 13944:1 13949:1 13955:1 13957:3 13960:4 13962:1 13966:2 13974:5 13977:2 13978:1 13992:1 14002:9 14011:1 14013:1 14048:3 14051:1 14055:2 14073:1 14079:1 14084:3 14088:1 14094:2 14096:4 14098:1 14100:11 14108:1 14132:1 14133:12 14134:1 14144:2 14148:12 14150:1 14152:1 14181:15 14192:1 14233:1 14236:2 14240:1 14247:1 14257:2 14262:1 14271:2 14274:1 14275:1 14282:1 14286:2 14289:4 14293:8 14296:8 14298:1 14299:1 14304:1 14319:1 14325:1 14328:2 14330:1 14333:1 14339:1 14349:1 14350:1 14356:1 14364:1 14366:3 14367:1 14370:1 14371:1 14376:1 14381:5 14383:1 14396:2 14398:1 14401:1 14402:2 14411:5 14420:2 14422:1 14423:1 14436:2 14447:1 14449:1 14452:3 14458:1 14469:1 14471:1 14474:3 14478:2 14484:5 14485:1 14494:2 14515:3 14519:13 14525:9 14527:1 14540:1 14543:5 14553:1 14555:9 14559:3 14561:1 14563:1 14574:2 14575:1 14581:2 14583:13 14590:5 14592:1 14594:8 14599:2 14601:2 14604:1 14608:2 14609:5 14610:5 14637:1 14642:1 14644:1 14663:3 14665:2 14672:2 14675:1 14680:1 14681:11 14692:3 14694:4 14707:5 14708:1 14715:2 14717:1 14718:8 14723:1 14757:1 14759:1 14765:3 14770:3 14780:2 14781:1 14782:1 14798:1 14801:1 14814:2 14815:2 14823:2 14826:8 14828:1 14829:1 14830:2 14831:1 14834:1 14841:3 14845:2 14854:1 14860:1 14861:4 14867:1 14868:1 14870:2 14873:2 14884:6 14887:1 14897:2 14900:2 14901:1 14903:1 14904:1 14909:7 14920:1 14921:1 14928:2 14929:1 14935:1 14942:1 14962:1 14965:11 14968:5 14979:2 14980:5 14981:1 14994:1 15004:1 15005:2 15008:2 15009:4 15010:1 15015:1 15019:2 15021:2 15030:2 15036:1 15040:1 15050:1 15051:1 15054:2 15065:1 15066:1 15068:1 15076:1 15085:13 15089:11 15113:5 15117:5 15118:3 15122:2 15125:2 15128:1 15131:1 15134:3 15143:1 15146:1 15153:1 15158:1 15165:1 15170:1 15177:1 15183:1 15188:2 15193:1 15195:3 15203:1 15206:5 15211:1 15228:1 15229:1 15234:1 15235:1 15241:1 15243:3 15248:1 15253:1 15258:4 15274:2 15281:1 15282:1 15283:1 15290:11 15302:2 15314:2 15315:1 15324:1 15342:1 15363:2 15367:2 15378:1 15394:2 15396:1 15398:1 15405:2 15418:1 15421:1 15437:1 15445:4 15457:1 15480:1 15486:1 15490:1 15491:1 15497:2 15498:1 15502:1 15503:8 15516:2 15523:1 15528:1 15546:3 15547:1 15550:1 15568:9 15576:2 15582:1 15584:1 15585:1 15593:1 15613:4 15618:9 15628:1 15629:1 15633:2 15637:4 15658:1 15665:1 15666:15 15675:3 15687:1 15693:4 15695:1 15696:5 15698:4 15704:1 15708:1 15712:2 15713:3 15714:1 15715:2 15723:2 15724:3 15727:1 15728:1 15731:1 15740:1 15745:1 15747:2 15748:1 15752:7 15755:1 15756:3 15764:2 15771:1 15772:3 15773:2 15778:1 15789:6 15790:1 15799:1 15819:2 15820:2 15821:1 15822:1 15829:1 15836:1 15840:1 15843:1 15854:2 15855:1 15863:1 15864:2 15867:1 15872:3 15881:4 15896:1 15905:1 15911:1 15923:1 15926:1 15930:3 15934:1 15937:2 15959:6 15960:1 15962:1 15966:1 15972:1 15974:1 15976:1 15978:53 15986:2 15990:2 15996:4 16001:2 16006:13 16008:1 16016:5 16017:2 16021:2 16022:2 16029:1 16030:1 16033:1 16037:1 16062:1 16072:1 16077:2 16081:1 16106:1 16110:3 16122:1 16127:2 16130:1 16139:1 16150:1 16156:1 16160:4 16175:1 16178:1 16179:1 16183:5 16187:3 16202:1 16206:1 16217:2 16220:1 16221:8 16235:3 16243:1 16247:1 16263:1 16264:5 16268:1 16271:2 16276:1 16278:1 16279:1 16282:1 16287:1 16288:1 16298:1 16331:1 16338:3 16343:3 16344:1 16345:1 16346:1 16349:1 16356:1 16358:2 16361:1 16362:2 16363:1 16366:6 16380:1 16384:1 16386:2 16388:2 16389:4 16394:1 16395:1 16400:2 16401:1 16402:1 16410:1 16411:1 16416:1 16418:1 16421:2 16431:1 16434:3 16482:1 16487:1 16501:1 16514:1 16515:3 16532:1 16540:2 16545:1 16551:1 16558:1 16561:1 16571:2 16573:1 16579:2 16582:10 16584:1 16585:1 16594:2 16595:5 16597:5 16604:1 16616:1 16619:1 16623:1 16630:1 16633:4 16640:1 16655:1 16660:1 16666:7 16672:1 16675:1 16679:2 16691:2 16694:1 16696:1 16706:1 16716:10 16717:1 16726:1 16732:1 16739:1 16740:1 16760:2 16806:1 16812:5 16817:3 16822:24 16828:1 16830:1 16834:1 16838:1 16869:1 16870:2 16872:1 16879:4 16883:1 16884:1 16893:1 16894:1 16901:2 16902:7 16903:1 16905:1 16914:1 16918:1 16920:1 16932:1 16937:2 16942:1 16945:1 16946:1 16954:1 16955:1 16964:1 16967:4 16973:1 16980:1 16991:1 17001:1 17005:1 17010:1 17014:3 17019:1 17021:2 17026:1 17027:1 17032:1 17039:1 17040:1 17042:7 17058:1 17059:1 17067:3 17071:1 17072:7 17094:3 17097:1 17104:4 17106:5 17108:1 17118:1 17124:1 17125:2 17128:3 17140:1 17146:1 17161:1 17171:1 17177:1 17178:1 17182:1 17189:1 17191:2 17192:1 17193:2 17202:1 17207:9 17213:1 17216:2 17219:1 17222:1 17237:3 17239:3 17242:1 17251:12 17252:2 17255:2 17263:1 17270:4 17279:1 17301:1 17306:5 17324:8 17342:2 17353:1 17362:1 17370:3 17371:1 17380:1 17388:1 17389:2 17394:1 17408:48 17420:1 17423:3 17434:2 17436:11 17437:6 17438:2 17440:6 17443:4 17444:5 17455:1 17465:1 17474:9 17475:1 17482:1 17486:2 17489:1 17492:1 17493:4 17495:8 17504:1 17506:1 17507:1 17508:1 17510:1 17512:2 17516:1 17517:1 17519:1 17520:4 17524:1 17526:1 17529:1 17531:2 17532:3 17544:1 17546:3 17549:1 17552:2 17572:2 17573:1 17576:1 17577:1 17579:1 17583:4 17586:1 17590:2 17592:1 17604:1 17605:1 17608:1 17613:1 17615:6 17620:3 17626:1 17627:1 17629:2 17631:2 17643:2 17644:1 17645:2 17667:1 17672:1 17680:1 17684:2 17687:8 17690:1 17692:1 17696:1 17709:1 17712:1 17723:1 17753:1 17768:1 17779:3 17780:1 17783:1 17787:1 17790:1 17802:6 17810:1 17815:1 17817:1 17820:1 17822:1 17825:3 17846:1 17861:1 17863:2 17873:1 17877:1 17878:5 17886:1 17889:1 17890:1 17891:11 17894:1 17901:1 17905:1 17912:17 17920:1 17926:1 17933:3 17934:4 17939:1 17949:1 17960:1 17961:1 17968:2 17973:1 17989:1 17990:2 17992:1 18000:1 18009:1 18017:2 18019:1 18022:2 18033:2 18035:2 18039:1 18048:1 18058:1 18064:2 18068:16 18075:4 18084:1 18086:1 18098:4 18100:4 18101:2 18108:1 18123:2 18131:1 18132:1 18143:3 18144:2 18145:1 18147:1 18148:1 18168:2 18176:4 18180:1 18183:1 18193:1 18198:5 18201:1 18210:2 18211:1 18212:1 18213:1 18221:6 18225:1 18230:4 18233:2 18246:2 18247:1 18249:10 18253:1 18255:1 18261:2 18263:1 18265:5 18266:1 18269:4 18271:2 18282:3 18286:1 18289:4 18290:1 18299:1 18308:1 18310:1 18313:1 18318:1 18319:1 18325:3 18326:2 18328:1 18330:2 18342:1 18343:1 18344:2 18351:1 18355:4 18363:1 18366:2 18367:1 18373:1 18380:2 18387:8 18389:9 18392:31 18393:3 18398:2 18399:1 18403:1 18412:2 18419:1 18423:1 18428:2 18442:5 18453:1 18458:1 18465:3 18473:4 18498:2 18509:1 18516:1 18529:1 18550:1 18555:3 18557:2 18563:4 18569:3 18584:1 18585:3 18589:1 18612:2 18613:6 18614:1 18631:1 18636:3 18641:3 18643:8 18657:4 18686:3 18690:11 18693:1 18699:2 18700:1 18713:5 18720:1 18722:9 18735:8 18738:1 18747:2 18751:8 18753:5 18759:1 18760:3 18764:1 18765:1 18766:2 18767:1 18768:1 18788:1 18792:1 18799:1 18801:8 18811:4 18819:3 18827:1 18834:3 18836:1 18838:1 18850:6 18852:1 18855:1 18860:1 18863:1 18865:1 18869:1 18870:2 18874:2 18877:1 18899:5 18907:5 18914:1 18932:1 18934:2 18935:1 18937:2 18941:1 18945:1 18947:1 18953:4 18956:2 18958:6 18960:2 18964:1 18966:1 18978:1 18979:1 19001:12 19005:1 19007:1 19015:1 19020:23 19021:2 19031:4 19032:3 19035:2 19036:1 19042:1 19050:4 19054:1 19057:3 19085:1 19098:1 19105:1 19116:1 19119:1 19130:12 19132:1 19137:1 19140:3 19147:1 19156:1 19165:8 19171:2 19174:1 19177:13 19184:1 19189:1 19208:2 19210:1 19214:1 19238:1 19248:1 19273:1 19278:4 19280:1 19301:1 19310:1 19311:2 19312:1 19331:2 19333:1 19336:1 19350:2 19352:1 19358:4 19360:4 19365:5 19367:3 19369:1 19386:1 19389:1 19390:1 19398:1 19399:1 19410:1 19411:2 19412:1 19433:1 19438:1 19444:1 19455:2 19458:2 19465:4 19470:6 19493:1 19499:1 19510:1 19518:4 19522:1 19526:2 19528:1 19537:2 19545:1 19549:1 19556:1 19558:1 19559:1 19575:2 19600:5 19604:1 19606:1 19607:1 19615:1 19618:3 19619:1 19627:1 19638:1 19642:1 19643:4 19644:1 19659:3 19660:2 19661:2 19664:1 19672:1 19673:2 19674:9 19684:1 19687:1 19689:1 19691:1 19692:1 19698:1 19699:1 19718:1 19721:2 19722:2 19740:4 19748:1 19762:1 19767:1 19769:1 19778:1 19780:3 19791:1 19812:1 19818:2 19823:2 19824:8 19825:1 19831:1 19844:1 19852:1 19856:1 19869:1 19870:1 19873:1 19878:1 19883:1 19888:3 19894:2 19900:1 19905:2 19916:2 19918:2 19919:1 19925:1 19927:1 19930:3 19932:1 19934:1 19944:4 19952:1 19957:1 19968:1 19996:3 20003:1 20033:1 20036:1 20044:1 20052:1 20058:1 20059:5 20060:7 20076:1 20079:1 20081:1 20082:6 20083:1 20096:3 20097:1 20101:1 20105:2 20116:1 20117:1 20118:3 20124:1 20126:5 20150:3 20158:1 20159:1 20167:1 20175:1 20177:7 20178:2 20181:1 20184:1 20185:7 20188:4 20191:4 20193:1 20207:3 20210:1 20212:3 20215:9 20216:1 20241:1 20247:3 20255:6 20263:4 20270:2 20271:1 20273:1 20276:1 20290:1 20311:3 20328:1 20330:1 20342:1 20350:1 20386:1 20388:5
|
f833bf68d60ce2d24c3f932a99b4b5b3392d6d04 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2282/CH2/EX2.17/ex2_17.sce | 960fd4531cb6298352804ba1c647ccafb21dc397 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 401 | sce | ex2_17.sce | // Example 2.17, page no-50
clear
clc
vp=8 //horizontal velocity of satellite in km/s
r=1620 // distance from earth's surface in km
R=6380 // Earth's radius in km
d=10000 // distance of point at which velocity to be calculated
theta=30 // angle made by satellite with local horzon at that point
P=r+R
v=(vp*P)/(d*cos(theta*%pi/180))
printf("v = %.2f km/s",v)
|
8e05e110492f7e4f98f8fd82f19cb3c75579f3df | 449d555969bfd7befe906877abab098c6e63a0e8 | /14/CH7/EX7.9/example_7_9.sce | b8a2db4b65800ccad5e0ae74959cf670cf96eeaa | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 295 | sce | example_7_9.sce | //chapter 7
//Example 7.9
//Page 190
//impedacedetermination
clear;clc;
//Given Impedances
Z10 = %i*1.2;
Z21 = %i*0.2;
Z23 = %i*0.15;
Z13 = %i*0.3;
Z30 = %i*1.5;
//Solution
Z_eq = (Z13 * (Z21+Z23) / (Z13+Z21+Z23));
Z11 = Z10 * (Z30 + Z_eq) / (Z10 + Z30 + Z_eq);
disp('Z11 is given by')
disp(Z11) |
93b75e0ef6910b5169b352c615720945ff8ba1db | cc92caf8abb34d22061361fe3456acfcb09bf912 | /Cálculo Numérico/Eliminação Gaussiana.sce | 9c8cb73578e3ee7ea0f2581531f518f63570a404 | [] | no_license | TheSennin/Arquivos_Facul | b2a4fbbd6c37908e2bc8ae6d2dde18f676adad56 | f53f3055433ae0e679146134021d24484863e664 | refs/heads/master | 2021-06-05T14:14:39.772698 | 2019-09-13T19:50:18 | 2019-09-13T19:50:18 | 95,835,767 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 498 | sce | Eliminação Gaussiana.sce | // Eliminação Gaussiana
clear all
clc
A = [1 1 1; 2 1 -1; 4 4 2];
b = [1;0;2];
Ab = [A b];
n = size(A,1);
disp("Matriz Ampliada = ")
disp(Ab)
for j=1:(n-1)
for i=(j+1):n
mij = Ab(i,j)/Ab(j,j)
Ab(i,:) = Ab(i,:) - mij*Ab(j,:)
end
end
disp("Matriz Escalonada: ")
disp(Ab)
// Fazer Retrosubstituição
x(n) = Ab(n,n+1)/Ab(n,n)
for i=(n-1): -1:1
x(i,1)=(Ab(i,n+1)-Ab(i,i+1:n)*x(i+1:n,1))/Ab(i,i)
end
disp(x, "Resolução Final:")
|
9efb5c2d25028288426e99d1c61795f4ef6d06f3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1286/CH2/EX2.5/2_5.sce | c5bcf421c1155692583e414b0f797df1a2f7bb79 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 264 | sce | 2_5.sce | clc
//initialisation
t1=0//c
t2=20//c
g=0.000011//1/c
h=0.000019//1/c
l=41.628//cm
//CALCULATIONS
l20=l*(1+(h*(t2-t1)))
l0=l20/(1+(g*(t2-t1)))
//results
printf(' true length of rod at 20 c= % 1f C',l20)
printf(' true length of rod at 0 c= % 1f C',l0)
|
2b71384beaf83b587c09ca214154308fa90c9c5b | a34650370fa671e54b3165f8ee6842600409c396 | /TODO.tst | 6546ebbc6635068443471e0ae874b972ec693fd2 | [
"MIT"
] | permissive | Naruyoko/PadLang | ad0aaa0cdd8ef8fea0217e95d54b54976baabaf1 | ee0dd7c9f1f385259e5f98e8967582a6d43890ee | refs/heads/master | 2021-09-08T16:21:23.384862 | 2019-12-12T22:50:42 | 2019-12-12T22:50:42 | 195,093,850 | 1 | 2 | null | null | null | null | UTF-8 | Scilab | false | false | 370 | tst | TODO.tst | - Function and "eval" feature
- This would be hard... especially around memory and u+000c's STDIN...
- Should it be removed altogether? I mean, functions can be simulated easily by a simple stack push, jump, and stack pop.
- Make more practical commands
- Make the interpreter code more clean
- Rewrite document so it is more specific, understandable, and unambiguous. |
0c402b94c1a93a699ed06280d5635228b94c6d90 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.4.1/macros/m2sci/sci_tril.sci | 63a7caa17ebd02c04bd7fc8be8346c289280aa71 | [
"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 | 254 | sci | sci_tril.sci | function [stk,txt,top]=sci_tril()
// Copyright INRIA
txt=[]
if rhs==2 then
s1=stk(top-1)
stk=list('tril('+s1(1)+','+stk(top)(1)+')','0',s1(3),s1(4),s1(5),'?')
top=top-1
else
s1=stk(top)
stk=list('tril('+s1(1)+')','0',s1(3),s1(4),s1(5),'?')
end
|
9461f831ab3d385cfa2a7cf703a697f543133e21 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1670/CH9/EX9.16/9_16.sce | 3c43c7fcbc2f1685a4d4326ccdec2d674d0555b3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 299 | sce | 9_16.sce | //Example 9.16
//Particular Solution
//Page no. 297
clc;clear;close;
x=poly(0,'x')
n=2;
f=x^(n)-2*x^(n-1)+x^(n-2);
z=roots(f)
disp(z,f)
printf('\t\t\nC.F. = (c1+n*c2) (%g)',z(1))
A=[1,0,0;8,1,0;12,4,1];
B=[1;0;0];
C=inv(A)*B;
printf('\n\n\t 2\nP.I = (%g)n+(%g)n+(%g)',C(1),C(2),C(3)) |
680b9303ce4d7c70a4924b5c4c49fe6de42078dd | 449d555969bfd7befe906877abab098c6e63a0e8 | /548/DEPENDENCIES/9_04data.sci | 5dc55e0a7a7d1044cf557e04aad060c75549ce28 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 858 | sci | 9_04data.sci | //consider a rocket engine burning hydrogen and oxygen.
Po=25*1.01*10^5;//pressure at combustion chamber(N/m^2)
To=3517;//temperature of combustion chamber(K)
A=0.1;//area of rocket nozzle(m^2)
Pe=1.1855*10^3;//exit pressure(N/m^2) at standard altitude of 30 Km
y=1.22;//specific heat ratio of the gas mixture
g=9.8;
M=16;//Molecular weight of gas mixture
Ru=8314;//universal gas constant(J/Kg.K)
R=8314/16 //specicific gas constant for this mixture
//specific impulse Isp:
Isp=sqrt(2*y*Ru*To*[1-(Pe/Po)^((y-1)/y)]/((y-1)*M))/g
//mass flow through engine(Kg/s):
Mdot=(Po*A/sqrt(To))*sqrt(y*(2/(y+1))^((y+1)/(y-1)) /R)
Te=To*(Pe/Po)^((y-1)/y) //exit temperature in Kelvin
Cp=y*R/(y-1) //specific heat at constant pressure for the gas mixture
Ve=sqrt(2*Cp*(To-Te)) //velocity at exit of exhaust gas(m/s)
De=Pe/(R*Te) //exit density(Kg/m^3)
|
d2b8f0397231d29f850800f23c17215207e0b97e | 449d555969bfd7befe906877abab098c6e63a0e8 | /25/CH12/EX12.3/12_3.sce | 79dabd26b19c51e063e532f1c450dc3190ba5d05 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 576 | sce | 12_3.sce | // example:-12.3,page no.-677.
// program to calculate the input and output SNR.
f=4*10^9;B=1*10^6;Grf=10^2;Gif=10^3;Lt=10^0.15;Lm=10^0.6;To=290;
Fm=10^0.7;Tm=(Fm-1)*To;Tp=300;Tb=200;eta=0.9;
Frf=10^0.3;Fif=10^0.11;k=1.38*10^-23;
Trf=(Frf-1)*To;
Tif=(Fif-1)*To;
Trec=Trf+(Tm/Grf)+((Tif*Lm)/Grf);
Ttl=(Lt-1)*Tp;
Ta=eta*Tb+(1-eta)*Tp;
Ni=k*B*Ta;
Ni=10*log10(Ni/0.001); // converting in to dBm.
si=-80; // in dBm.
SNRi=si-Ni; // input SNR.
Tsys=Ta+Ttl+Lt*Trec;
SNRo=si-10*log10((k*B*Tsys)/0.001);
disp(SNRi,'input SNR in dB = ')
disp(SNRo,'output SNR in dB = ') |
54c5187759daa4d8d7be6445f1451fb239a8a7d5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1475/CH1/EX1.42/Example_1_42.sce | 5f64e5715b60885789b4b65ee204476662301e0b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 555 | sce | Example_1_42.sce | // Example 1.42 One urn contains 2 white and 2 black balls;
clc;
clear;
E1=(2/4)*(2/6);
E2=(2/4)*(4/6);
disp(E2, "Probab. that balls are of black colour=",E1,"Probab. that balls are of white colour=");
disp(E1+E2,"The required Probability that they will be of same colour=");
S=1/2;
disp(S,"Selection of one urn out of two urn=");
P1=S*(2/4);
P2=S*(2/6);
disp(P1, "Probab. that white ball is selected from urn I=", P2,"Probab. that white ball is selected from urn II");
disp(P1+P2,"The required Probability that it will be a white colour=");
|
00749bec4feb3e056e8b81102f653c658454e9ff | 449d555969bfd7befe906877abab098c6e63a0e8 | /98/CH13/EX13.21/example13_21.sce | 043e586df17f3bdb4629469759d937641cff7a22 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 386 | sce | example13_21.sce | //Chapter 13
//Example 13_21
//Page 332
clear;clc;
l=500;
v=240;
r=0.001;
x=50;
printf("(i) Point of minimum potential = %d A \n\n", x);
tc=160+200;
Ia=100+x;
Ib=360-150;
vd=v-150*(100*r)-x*(150*r);
printf("(ii)Total current = %d A \n", tc);
printf("Current supplied by A = %d A \n", Ia);
printf("Current supplied by B = %d A \n", Ib);
printf("Minimum potential = %.2f V \n", vd);
|
588518c144a11c715571cc0a9135b96fafaa47d4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /443/DEPENDENCIES/4_2_data.sci | d2bdc937a78145b7f2b1bb128ed6d444d034073d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 174 | sci | 4_2_data.sci | //Ratio of specific heats
y=1.4;
//rc = V3/V2
rc=1.95;
//Specific heat at constant volume(in kJ/kgK)
Cv=0.717;
//r=V1/V2
r=20;
//Increase in Cv ie. dCv/Cv
dCv=0.01; |
9da30c2ae15c7bfbac02edbaf666ae18ce3be216 | 449d555969bfd7befe906877abab098c6e63a0e8 | /839/CH8/EX8.3/Example_8_3.sce | 68cf1745a6b54f8f1f075c9abdce42dd2c8d5f7e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,019 | sce | Example_8_3.sce | //clear//
clear;
clc;
//Example 8.3
//Given
vdot = 180; //[ft^3/min]
pa = 14; //[lbf/in.^2]
pb = 900; //[lbf/in.^2]
Ta = 80+460; //[K]
q0 = 0.063; //[m^3/s]
Cp = 9.3; //[Btu/lbmol-F]
gama = 1.31;
delta_Tw = 20; // [F]
//(a)
neta = 0.80;
//For a multistage compressor the total power is a minimum if each stage doed the same amount of work
//Hence using same copression ration for each stage
//Using Eq.(8.25)
//For one stage
comp_ratio = (900/14)^(1/3);
//Using Eq.(8.29), the power required by each stage
Pb = (Ta*q0*gama*vdot)*(comp_ratio^(1-1/gama)-1)/(520*(gama-1)*neta); // [hp]
//Total Power
Pt = 3*Pb // [hp]
//(b)
//Using Eq.(8.22), the temperature at the exit of each stage
Tb = Ta*comp_ratio^(1-1/gama) // [R]
//(c) Since 1 lb mol = 378.7 std ft^3, the flow rate is
vdot = vdot*60/378.7; //[lb mol/h]
// Heat load in each cooler is
Hl = vdot*Cp*(Tb-Ta) // [Btu/h]
//Total heat loss
Htotal = 3*Hl; //[Btu/h]
//Cooling water requirement
cwr = Htotal/delta_Tw // [lb/h]
|
fd6df1986c2f5aa21c58a96a6d2799b5f667d14c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1853/CH4/EX4.27/Ex4_27.sce | f05ddd6c680b49a98aca03c56f5460f5bac06af4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 360 | sce | Ex4_27.sce |
//determine the inductance of the coil and voltage across each element
I=7
V=200
f=50
R=10
r=1.5 //rasistance choke coil
V1=I*R
V3=I*r
V2=sqrt(V^2-(V1+V3)^2)
X=V2/I //inductive reactance
L=X/(2*%pi*f)
V4=sqrt(V2^2+V3^2) ///voltage across choking coil
disp('voltage across choking coil='+string(V4)+'volts' , 'inductor='+string(L)+'henry')
|
7e4de8b05b4e36e2eb1b3bf2dd69a16fc466b928 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3802/CH5/EX5.10/Ex5_10.sce | b0b3999ccf6798b1b9be35ffb2804d4eda1b7b7b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 654 | sce | Ex5_10.sce | //Book Name:Fundamentals of Electrical Engineering
//Author:Rajendra Prasad
//Publisher: PHI Learning Private Limited
//Edition:Third ,2014
//Ex5_10.sce.
clc;
clear;
N=800;
Hi=50e-3;
Wi=40e-3;
l_not=2e-3;
A_not=2500e-6;
leakage_factor=1.2;
mew_not=4e-7*%pi;
mew_r=322;
pi_not=2.5e-3;
lc=600e-3; //from the figure
B_not=pi_not/A_not;
H_not=B_not/mew_not;
F_not=H_not*l_not;
pi_T=pi_not*leakage_factor;
Ac=Wi*Hi*0.92; //given 8 percent is taken for insulation . so (1-0.08=0.92)
Bc=pi_T/Ac;
Hc=Bc/(mew_r*mew_not);
Fc=Hc*lc;
F=Fc+F_not;
Im=F/N;
printf("\n Magnetizing current=%d A \n",Im)
|
c3f035f3bea5328dc5cd04576f37b2930f3b8949 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3830/CH1/EX1.1/Ex1_1.sce | e88d8175459d7c8c31fd677485e94a2279284a58 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 574 | sce | Ex1_1.sce | // Exa 1.1
clc;
clear;
// Given
I = 10; // Current in Amp
dI = 0.1; // Probability of error in I (Amp)
R = 100; // Resistor value in Ohms
dR = 2; // Probability of error in R (Ohms)
// Solution
printf('The power dissipated P = I^2*R \n');
printf(' The probable error can be determined with the help of Erss(Root Sum Square) Formula, i.e Error = sqrt((dR*I^2)^2 + (2*I*R*dI)^2) \n');
PE = sqrt((dR*I^2)^2 + (dI*2*I*R)^2); // Probable error
P = I^2 * R;
printf(' Error = %d W \n',round(PE));
printf(' Power dissipated P = %d kW \n',P*10^-3);
|
6b83193f6b69a46cde2d5865a2c9288edebb06f0 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set6/s_Electric_Machinery_And_Transformers_B._S._Guru_And_H._R._Hiziroglu_380.zip/Electric_Machinery_And_Transformers_B._S._Guru_And_H._R._Hiziroglu_380/CH3/EX3.1/Ex3_1.sce | c89a0577f7ce8265421658a96dc4004abb6ad588 | [] | no_license | hohiroki/Scilab_TBC | cb11e171e47a6cf15dad6594726c14443b23d512 | 98e421ab71b2e8be0c70d67cca3ecb53eeef1df6 | refs/heads/master | 2021-01-18T02:07:29.200029 | 2016-04-29T07:01:39 | 2016-04-29T07:01:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 617 | sce | Ex3_1.sce | errcatch(-1,"stop");mode(2);//Caption:Find the mass of object and energy stored in the feild
//Exa:3.1
;
;
A=20*10^-4;//surface area of each capacitor's plate
d=5*10^-3;//separation between the plates
e=(10^-9)/(36*%pi);//permetivity of air
V=10*10^3;//potential diff. between the plates
F_e=(e*A*V^2)/(2*d^2);//electric force
g=9.81;//acceleration due to gravity (in meter/second^2)
//For condt of balancing electric force=weight of object
//F_e=m*g
m=F_e/g;
disp(m*1000,'mass of object (in grams)=');
W_f=(e*A*V^2)/(2*d);
disp(W_f*1000000,'energy stored in the feild (in micro-joules)=')
exit();
|
996ce2fe4644961c93dae7dddd0515b02df71b9c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2939/CH4/EX4.20/Ex4_20.sce | 95dbf77647360a2f791fe9defc052c9904a619b9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 411 | sce | Ex4_20.sce |
// Ex4_20
clc;
// Given:
t1=1.28*10^9;// in years
// Solution:
k=0.693/(1.28*10^9);
// beta deay is 88.8%
k1=0.888*k;
// EC decay is 11.2%
k2=0.112*k;
tbeta=(0.693*10^-9)/(k1);// partial half life for beta decay in Gy
tEC=(0.693*10^-9)/(k2);// partial half life for EC decay in Gy
printf("The partial half life for beta decay is %f Gy and partial half life for EC decay is %f Gy.",tbeta,tEC)
|
44212b2bb8d679a2a041967178a57be6164564a6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3850/CH45/EX45.2/Ex45_2.sce | 9b1e3bd5d77b574d5ee911ecd1ce136549013ec6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 597 | sce | Ex45_2.sce |
//To Calculate the Resistivity of n type semiconductor
//Example 45.2
clear;
clc;
e=1.6*10^-19;//charge on an electron in Coloumbs
ne=8*10^19;//Density of Conduction Electron per metre^3
ue=2.3;//Mobility of Conduction Electron in m^2/V-s
nh=5*10^18;//Density of holes per metre^3
uh=10^-2;//Mobility of holes per m^2/V-s
c=e*((ne*ue)+(nh*uh));//Conductivity of the Semiconductor in C/(m-V-s)
rho=1/c;//Resistivity of Semiconductor in ohm-metre
printf("Resistivity of the n-type semiconductor = %.3f ohm-m",rho);//The answer provided in the textbook is wrong
|
d03ba0d583709e5bb9fd822eec42103e0acbb34c | 449d555969bfd7befe906877abab098c6e63a0e8 | /377/CH14/EX14.2/14_2.sce | 07a880c265e2d98212b18083cd49ab054d2b9c06 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 835 | sce | 14_2.sce | disp("φs=χsi+(Ev-Ef)");
k=0.025852; //say k=K*T/q
n=1*10^15;
Nc=2.84*10^19;
a=4.05; //say a=χsi
b=k*log(Nc/n); //say b=Ev-Ef
printf('\n The value of Ev-Ef is %fV',b);
d=a+b; //say d=φs
printf('\n The value of φs is %fV\n',d);
disp("φms=φm-φs");
c=4.1; //say f=φm
e=c-d; //say g=φms
printf('\n The value of φms is %1.3fV\n',e);
Vfb1=e;
disp("Vfb=Vfb1-(Qss1/cox1)");
Qss1=1.6*10^-8;
cox1=3.45*10^-8;
Vfb=Vfb1-(Qss1/cox1);
printf('\n The value of Vfb is %fV\n',Vfb);
Nd=1*10^15;
ni=1.07*10^10;
f=k*log(Nd/ni); //say f=φb
printf('\n The value of φb is %1.3f\n',f);
g=11.7*8.854*10^-14; //say Єs=g
q=1.6*10^-19;
Xdmax=sqrt(2*g*2*f/(q*Nd));
printf('\n The value of Xdmax is %f*10^-5cm\n',Xdmax*10^5);
Cmin=1/((1/cox1)+(Xdmax/g));
printf('\n The value of Cmin is %f*10^-9F/cm^2\n',Cmin*10^9); |
a45b529561844359439c1aa7e928cd27289ab0cb | 449d555969bfd7befe906877abab098c6e63a0e8 | /1382/CH3/EX3.11.b/ex_3_11_b.sce | 90b48017b375e262fb78ac59959414b7587327f1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 548 | sce | ex_3_11_b.sce | // Example 3.11 (ii): minimum average power dissipation
Pl=10; // power delivered to load in watt
eta1=80/100; // output transformer efficiency
eta=78.5/100; // efficiency of a class B push pull amplfier under optimum condition
Pout=Pl/eta1;
Pin=Pout/eta;
Pd=Pin-Pout;
Pd1=Pd/2;
disp(Pout,"ac power output of amplifier (W) = ")
disp(Pin,"minimum power drain on the power supply for dc (W) = ")
disp(Pd,"minimum average power dissipation (W) = ")
disp(Pd1," minimum average power dissipation rating required for each transistor (W) = ")
|
6b18c60aab208fb5c304553438f7c6a1d82cdf58 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2409/CH3/EX3.3/Ex3_3.sce | 14eec51feee0401f82b79a24cc34b0e57ea71703 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 497 | sce | Ex3_3.sce |
//Variable Declaration
LE=49 //Latitude of earth station(degrees)
aGSO=42164 //Circumference of earth(km)
R=6371 //Radius of earth(km)
//Calculation
d=(R**2+aGSO**2-2*R*aGSO*cos(LE*3.142/180))**0.5 //Range of earth station antenna
El0=acos(aGSO*sin(LE*3.142/180)/d) //Elevation angle(radians)
El0=El0*180/3.142 //Converting El0 to degrees
delta=round(90-El0-LE) //Angle of tilt required for polar mount
//Results
printf("The Angle of tilt required for polar mount is %d degrees",delta)
|
e5836ac73e44ff542c91e7d0509f530a042633e2 | 03d0f9c67fad13abbcf2ce0b810ca85025d12cef | /presentation scripts/shaping/phase1_long5NL.sce | 07922791810ee10a452716e21e3bd8513bea030d | [] | no_license | Kwan-Lab/behavioral-rigs | 1f6f9719b02d957e2777c1b485ff8224e96c7d5d | 8e2ac0f9a36fc177a457d127474f8823d78c915b | refs/heads/master | 2022-06-21T13:03:35.870220 | 2022-06-06T23:55:01 | 2022-06-06T23:55:01 | 254,467,063 | 4 | 1 | null | 2022-06-06T23:55:03 | 2020-04-09T20:02:30 | Scilab | UTF-8 | Scilab | false | false | 7,176 | sce | phase1_long5NL.sce | #--DISCRIMINATION PHASE 1--#
#
# PURPOSE: Training for lick-based water collection in two-choice tasks. Lick suppression
#
# OTHER NOTES:
# 1. Reserve codes {1,2,3} for responses, {1:20} for non-stimulus events, and {21:end} for stimulus events.
#
# TRAINING PROGRESSION:
# 1. phase0_FREEWATER: Introduce collection of water from lickports until ~100 total licks/session (1-2 days)
# 2. phase1_long5NL:
#
# AUTHORS: Hongli Wang, modified from MJ Siniscalchi and AC Kwan, 6/26/17
# LAST EDIT:
#-------SDL HEADER----------------------------------------------------------------------------------------#
scenario = "phase0_NOLICK";
active_buttons = 3; # Number of response buttons in experiment (need three for lick_left, lick_right, & spacebar in earlier phases)
button_codes = 1,2,3;
target_button_codes = 1,2,3;
response_logging = log_all; # Log all responses, even when stimuli are inactive
response_matching = simple_matching;
#DEFAULTS
default_all_responses = true;
default_trial_type = fixed;
begin;
#-------SOUND STIMULI-------#
sound {
wavefile { filename ="tone_5000Hz_0.2Dur.wav"; preload = true; };
} go;
#-------SDL EVENTS-------#
trial { #START TRIAL
trial_duration = 100;
nothing {};
code = 5;
}startTrial;
trial {
trial_type = first_response;
trial_duration = 2000;
nothing {};
code=0;
sound go;
}waitlick;
trial { #REWARD COLLECTION PERIOD (LEFT)
trial_duration = 3000; #3 sec to retrieve water drop
nothing {};
code = 10;
}reward;
trial { #REWARD COLLECTION PERIOD (RIGHT)
trial_duration = 3000; # 3 sec to retrieve water drop
nothing {};
code = 7;
}rewardRight;
trial { #REWARD COLLECTION PERIOD (BOTH SIDES)
trial_duration = 3000; #3 sec to retrieve water drop
nothing {};
code = 8;
}rewardBothSides;
trial {
trial_type = fixed;
trial_duration = 1000;
nothing {} pauseevent;
code = 6;
}pause;
trial {
trial_type = fixed;
trial_duration = 2500;
nothing {} nolickevent;
code=19;
}nolick;
trial { #SAVE TEMP LOGFILE
save_logfile {
filename = "temp.log"; # Path is default logfile dir
}; # Save every 5 trials in case of failure.
}quicksave;
#-------PCL---------------------------------------------------------------------------------------
begin_pcl;
# SET TASK PARAMETERS AND INITIALIZE TRIAL VARIABLES
#GET INI FILE
preset string user_name = "DEFAULT"; # Prompt user for file prefix, e.g., initials "MJS"
string ini_pathname = "C:\\Users\\MITRAL\\Desktop\\Presentation\\ini_"+user_name+".pcl";
#SET TASK PARAMETERS
include "sub_getParameterValue.pcl";
int waterAmount_left = int(get_parameterValue(ini_pathname,"waterAmount_left",60)); # Valve open duration in ms
int waterAmount_right = int(get_parameterValue(ini_pathname,"waterAmount_right",60));
int max_rewards = int(get_parameterValue(ini_pathname,"max_rewards",1000)); # Normally, set arbitrarily high.
int interpulse_interval = 500; # Time between left and right pulses for manual feed - necessary for single reservoir ("parallel circuit").
#INITIALIZE BEHAVIORAL VARIABLES
int manualFeed = 0;
int leftLicks = 0;
int rightLicks = 0;
preset int max_consecMiss = 20; ; #triggers end session, for mice, set to 20
int consecMiss = 0;
#INITIALIZE OUTPUT PORT VARIABLES
output_port port = output_port_manager.get_port(1);
int portcode_left = 4; # Digital I/O # is log base2 of portcode
int portcode_right = 8;
#LOGFILE & PARAMETER LOG
string dateStr = (date_time("yymmddhhnn")); # Store startTime in str for naming files
logfile.set_filename(logfile.subject() +"_FREEWATER_"+ dateStr + ".log"); #unique filename for session, e.g., M40_DISCRIM_1706221807
string fname_parameterLog = "parameterLog_" + logfile.subject() +"_"+ dateStr + ".txt";
output_file parameterLog = new output_file;
#for generating exponetial distribution (white noise block)
double minimum=1.0;
double mu=0.333333; #rate parameter for exponential distribution
double truncate=5.0;
double expval=0.0;
#SETUP TERMINAL WINDOW
term.print("Starting time: ");
term.print(date_time());
logfile.add_event_entry(date_time());
display_window.draw_text("Initializing...");
#SETUP PARAMETER WINDOW
int count; # Response counter
int idx; # Index for displaying response counts
parameter_window.remove_all();
int manualFeedIndex = parameter_window.add_parameter("Manual Feeds");
int leftLickIndex = parameter_window.add_parameter("Left Rewards");
int rightLickIndex = parameter_window.add_parameter("Right Rewards");
int missIndex = parameter_window.add_parameter("ConsecMiss");
int nolickIndex = parameter_window.add_parameter("#NL");
int maxNoLick=5;
#-------BEGIN SESSION-------#
display_window.draw_text("Phase 0: Licks to left or right port trigger water reward. Press <SPACE> for manual feed to both ports...");
loop int i = 1
until leftLicks + rightLicks >= max_rewards
begin
startTrial.present();
# WAIT FOR RESPONSE
waitlick.present();
if response_manager.response_count()>0 then
if response_manager.response_count(2)>0 then # Left lick detected?
port.send_code(portcode_left, waterAmount_left); # Give pulse for water reward
reward.present();
leftLicks = leftLicks + 1; # Response count for parameter window.
idx = leftLickIndex;
count = leftLicks;
elseif response_manager.response_count(3)>0 then # Right lick detected?
port.send_code(portcode_right, waterAmount_right); #give pulse for water reward
reward.present();
rightLicks = rightLicks + 1;
idx = rightLickIndex; # For parameter window.
count = rightLicks;
elseif response_manager.response_count(1)>0 then # Manual feed.
port.send_code(portcode_left, waterAmount_left); #give pulse for water reward
wait_interval(interpulse_interval);
port.send_code(portcode_right, waterAmount_right); #give pulse for water reward
reward.present();
manualFeed = manualFeed+1;
idx = manualFeedIndex;
count = manualFeed;
end;
parameter_window.set_parameter(idx,string(count));
else
pause.present();
consecMiss=consecMiss+1;
parameter_window.set_parameter(missIndex,string(consecMiss));
end;
#logfile.add_event_entry("nolickloop_begin");
int nLicks=1; #initialize the lick count
int numNoLick=0;
loop until nLicks == 0 || numNoLick>=maxNoLick
begin
int numLicks=0;
loop
expval=minimum-1.0/mu*log(random())
until
expval<truncate
begin
expval=minimum-1.0/mu*log(random())
end;
nolick.set_duration(int(1000.0*expval));
nolick.present();
numNoLick=numNoLick+1;
parameter_window.set_parameter(nolickIndex,string(numNoLick));
nLicks=response_manager.response_count();
end;
# TEMP LOGFILE
if (i%5) == 0 then # Every 5 trials, save a temporary logfile (in case of power outage, etc.).
quicksave.present();
end;
i=i+1; # Increment trial.
end; # End loop
display_window.draw_text("Phase 0 training has ended.");
term.print("Ending time:");
term.print(date_time());
|
0e6fa375111e2fe6563566ac53f6f248e24e36f7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2498/CH1/EX1.21/ex1_21.sce | 91406cc7f78e11a1acb97bc8391ac2c158556a04 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 467 | sce | ex1_21.sce | // Exa 1.21
clc;
clear;
close;
format('e',8)
// Given data
A = 0.001;// in cm^2
l = 20;// in µm
l = l * 10^-4;// in cm
V = 20;// in V
I = 100;// in mA
I = I * 10^-3;// in A
R = V/I;// in ohm
// R = l/(sigma*A);
sigma = l/(R*A);// in (ohm-cm)^-1
miu_n = 1350;// in cm^2/V-s
q = 1.6*10^-19;// in C
// sigma = n*q*miu_n or
// The concentration of donor atoms
n = sigma/(q*miu_n);// in cm^-3
disp(n,"The concentration of donor atoms in cm^-3 is");
|
578295d4daee4134b2d5ce3ab5b771b841ddde62 | e04f3a1f9e98fd043a65910a1d4e52bdfff0d6e4 | /New LSTMAttn Model/.data/form-split/SURPRISE-LANGUAGES/Romance/vec.tst | b845ae4afd8d45a70c71c1e7d125896f1a646af5 | [] | no_license | davidgu13/Lemma-vs-Form-Splits | c154f1c0c7b84ba5b325b17507012d41b9ad5cfe | 3cce087f756420523f5a14234d02482452a7bfa5 | refs/heads/master | 2023-08-01T16:15:52.417307 | 2021-09-14T20:19:28 | 2021-09-14T20:19:28 | 395,023,433 | 3 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 87,740 | tst | vec.tst | schincar V;IPFV;SBJV;SG;2;PST
sparagnar V;IND;PL;1;PRS;LGSPEC2
oxar V;SBJV;PL;2;PRS
trincar V;COND;SG;3
pontar V;IMP;SG;3;LGSPEC2
aprovar V;COND;SG;2
pestar V;IPFV;IND;SG;3;PST
anoverar V;IND;SG;2;PRS
remenar V;IPFV;IND;SG;2;PST
pasar V;COND;PL;1
savariare V;SBJV;PL;2;PRS
semenar V;IND;PL;1;PRS;LGSPEC1
desgozar V;IND;SG;2;FUT
inpizar V;IPFV;SBJV;SG;3;PST
sugar V;SBJV;PL;1;PRS;LGSPEC1
gòder V;IPFV;SBJV;PL;1;PST
spuar V;IPFV;SBJV;PL;2;PST
menar V;IMP;PL;1
catar V;IPFV;IND;PL;2;PST
mandar V;SBJV;PL;1;PRS;LGSPEC2
cosołar V;SBJV;PL;1;PRS;LGSPEC2
amar V;IND;PL;2;FUT
topar V;SBJV;PL;1;PRS;LGSPEC1
sostituir V;COND;SG;1
cuèrzar V;IPFV;IND;PL;1;PST
svejar V;IPFV;SBJV;PL;2;PST
voltar V;IND;PL;1;PRS;LGSPEC1
arar V;SBJV;SG;3;PRS;LGSPEC2
portar V;IPFV;SBJV;PL;2;PST
pónxar V;IPFV;SBJV;SG;3;PST
ametar V;SBJV;PL;3;PRS
métar V;IND;SG;2;PRS
stuxar V;SBJV;SG;3;PRS;LGSPEC2
curar V;SBJV;PL;1;PRS;LGSPEC2
sachegiar V;IMP;PL;2
testimoniar V;COND;SG;3
inpizar V;IND;PL;1;PRS;LGSPEC1
invełenar V;IMP;PL;1
sfrixar V;IND;PL;1;PRS;LGSPEC2
piantar V;IMP;PL;3;LGSPEC2
invadar V;IND;SG;3;PRS
remenar V;NFIN
slisegar V;COND;PL;2
rostir V;SBJV;SG;1;PRS
mandar V;SBJV;PL;2;PRS
inventar V;IPFV;IND;PL;1;PST
sguaratar V;SBJV;SG;2;PRS
stuar V;IPFV;IND;PL;2;PST
ametar V;IND;SG;1;FUT
voxar V;IPFV;IND;SG;2;PST
vantar V;IND;SG;2;FUT
arar V;NFIN
obligar V;IPFV;SBJV;SG;3;PST
desidar V;COND;SG;2
divìdar V;SBJV;SG;2;PRS
covèrzar V;IND;SG;1;FUT
topar V;SBJV;PL;1;PRS;LGSPEC2
sarare V;IMP;PL;2
criar V;IPFV;SBJV;SG;2;PST
descargar V;IPFV;IND;PL;2;PST
nominar V;IPFV;SBJV;SG;3;PST
realisar V;IND;PL;2;PRS
védar V;IPFV;IND;PL;2;PST
slisegar V;SBJV;PL;1;PRS;LGSPEC2
vangar V;IMP;SG;3;LGSPEC2
intivar V;IND;PL;3;FUT
visuałixar V;IPFV;IND;PL;2;PST
spacar V;IND;PL;1;PRS;LGSPEC2
sfexar V;SBJV;PL;1;PRS;LGSPEC2
bruscar V;SBJV;PL;2;PRS
łavorar V;IND;PL;1;PRS;LGSPEC2
desidar V;COND;SG;3
sarar V;IND;SG;1;FUT
tociar V;IPFV;IND;PL;2;PST
dormir V;IPFV;SBJV;PL;1;PST
intosegar V;SBJV;PL;3;PRS;LGSPEC1
voxar V;COND;SG;3
cantar V;IMP;SG;3;LGSPEC1
łigar V;IND;SG;3;FUT
sostituir V;IND;PL;1;PRS
rìdar V;COND;PL;2
slargar V;IPFV;SBJV;PL;3;PST
spiar V;IPFV;IND;PL;3;PST
daquar V;IMP;SG;3;LGSPEC1
justar V;IND;SG;1;FUT
insìstar V;SBJV;SG;2;PRS
crédar V;IND;SG;2;PRS
domandar V;COND;SG;2
daquar V;IMP;SG;3;LGSPEC2
pareciar V;SBJV;PL;3;PRS;LGSPEC2
sajar V;IMP;PL;1
obligar V;IND;PL;1;FUT
desligar V;COND;PL;1
castrar V;IND;SG;2;FUT
łimar V;SBJV;PL;2;PRS
mandar V;IPFV;IND;SG;3;PST
sbrisiar V;SBJV;SG;3;PRS;LGSPEC1
sbrisiar V;IND;SG;1;PRS
aver V;IND;PL;2;PRS
desidar V;IPFV;SBJV;SG;3;PST
invojar V;SBJV;SG;3;PRS;LGSPEC2
stranuar V;IPFV;IND;PL;1;PST
intorcołar V;IND;SG;2;FUT
svodar V;IMP;PL;3;LGSPEC1
arar V;IPFV;SBJV;SG;2;PST
bearar V;IND;SG;3;FUT
desgatejar V;IND;SG;2;FUT
bevarar V;COND;SG;2
sorar V;IND;PL;2;FUT
prodùxer V;IND;SG;2;FUT
stanpar V;IPFV;SBJV;SG;2;PST
invernixar V;SBJV;PL;3;PRS;LGSPEC2
trincar V;COND;SG;1
finir V;IMP;PL;2
ciuciar V;IMP;SG;3;LGSPEC2
cargar V;IPFV;IND;PL;3;PST
obligar V;SBJV;PL;3;PRS;LGSPEC1
butar V;COND;PL;1
rancurar V;COND;SG;2
conzsar V;IPFV;SBJV;PL;2;PST
bałar V;SBJV;SG;1;PRS;LGSPEC2
pensar V;IPFV;SBJV;SG;1;PST
sugar V;IPFV;IND;PL;3;PST
invidar V;IND;PL;2;PRS
sarare V;IND;PL;1;FUT
descovèrzar V;COND;SG;2
unir V;IPFV;IND;SG;1;PST
svejar V;IMP;PL;2
bacajar V;IMP;PL;1
scriver V;SBJV;SG;1;PRS
sugar V;IMP;SG;3;LGSPEC1
menar V;IND;PL;2;PRS
netar V;IPFV;SBJV;SG;1;PST
zontar V;IPFV;SBJV;SG;1;PST
verxar V;COND;SG;1
parlar V;SBJV;SG;3;PRS;LGSPEC1
pontar V;COND;PL;2
pexar V;IND;SG;1;FUT
èser V;IND;SG;2;FUT
arestar V;IPFV;SBJV;PL;1;PST
urtar V;IND;PL;1;PRS;LGSPEC1
noar V;COND;SG;3
taconar V;IND;SG;3;PRS
fondar V;SBJV;SG;1;PRS;LGSPEC2
łavorar V;IPFV;IND;SG;3;PST
alzsar V;NFIN
butar V;IND;SG;1;PRS
łibarar V;IPFV;IND;SG;1;PST
sbrisiar V;COND;PL;1
vìvar V;COND;SG;3
sfondrar V;SBJV;SG;2;PRS
spiegar V;SBJV;SG;2;PRS
sfondrar V;IND;SG;1;FUT
partir V;IMP;PL;2
limitar V;IND;PL;1;FUT
asaltar V;IMP;PL;3;LGSPEC2
łigar V;COND;PL;3
danar V;IMP;SG;3;LGSPEC1
sciocar V;SBJV;PL;1;PRS;LGSPEC2
conpletar V;COND;SG;3
criar V;IPFV;SBJV;PL;1;PST
exagerar V;IPFV;SBJV;SG;2;PST
asumar V;IND;PL;1;FUT
carołar V;IMP;SG;3;LGSPEC1
curar V;SBJV;SG;1;PRS;LGSPEC2
ónxar V;IND;SG;2;FUT
pontar V;IND;PL;1;PRS;LGSPEC2
concepir V;COND;SG;3
sguaratar V;IPFV;IND;SG;1;PST
stupar V;COND;PL;3
afitar V;IND;SG;3;FUT
véndar V;IND;PL;2;FUT
trar V;IMP;PL;2
cosołar V;IMP;PL;2
partir V;IPFV;SBJV;PL;1;PST
sarar V;COND;SG;1
rumar V;COND;SG;2
acetar V;IND;PL;1;PRS;LGSPEC1
ofrir V;SBJV;PL;2;PRS
tacar V;IPFV;IND;SG;2;PST
finir V;IPFV;SBJV;SG;2;PST
invadar V;SBJV;SG;3;PRS
canbiar V;COND;SG;2
asaltar V;IPFV;IND;SG;1;PST
servir V;IPFV;IND;PL;3;PST
brazsar V;IPFV;SBJV;SG;2;PST
trincar V;IND;PL;1;PRS;LGSPEC1
postar V;IMP;SG;2
danar V;IPFV;SBJV;SG;1;PST
ponciar V;IMP;PL;1
danar V;COND;PL;1
ribelar V;IPFV;IND;PL;3;PST
sugerir V;IPFV;IND;SG;3;PST
fracar V;COND;PL;1
sfrixar V;IND;SG;2;PRS
prodùxer V;IND;SG;3;PRS
butar V;SBJV;SG;3;PRS;LGSPEC2
remar V;IND;SG;1;FUT
somejar V;IPFV;SBJV;SG;1;PST
spojar V;IMP;SG;2
cołegar V;COND;SG;3
riciamar V;IND;PL;3;PRS
sperar V;IMP;PL;3;LGSPEC2
busnar V;IPFV;IND;PL;2;PST
rivar V;COND;SG;1
mantegner V;SBJV;SG;3;PRS
vardar V;IND;SG;1;PRS
ciacołar V;IND;PL;3;PRS
suar V;IND;SG;2;FUT
finansiar V;IMP;PL;1
pestar V;IND;SG;1;FUT
asumar V;IND;SG;3;PRS
bójar V;SBJV;SG;1;PRS
stisar V;IND;PL;3;PRS
nominar V;IPFV;IND;SG;3;PST
desgatejar V;IPFV;IND;SG;2;PST
invidar V;COND;SG;3
springar V;IND;PL;1;PRS;LGSPEC1
łustrar V;IND;PL;3;PRS
ribelar V;IND;PL;2;FUT
becar V;COND;SG;1
descovèrzar V;IPFV;SBJV;PL;3;PST
svejar V;IND;SG;3;PRS
xontar V;IND;SG;2;PRS
ricordar V;IND;SG;1;FUT
stuar V;COND;SG;3
sbregar V;COND;SG;3
scuminsiar V;SBJV;SG;1;PRS;LGSPEC2
łavorar V;SBJV;PL;3;PRS;LGSPEC2
ciapar V;SBJV;SG;2;PRS
çentrałizar V;IPFV;SBJV;SG;3;PST
supiar V;SBJV;PL;1;PRS;LGSPEC2
arar V;IND;SG;1;FUT
soranomenar V;SBJV;PL;3;PRS;LGSPEC1
sujerir V;COND;SG;1
rodołar V;COND;SG;1
aterar V;IMP;PL;3;LGSPEC2
sbuxar V;IPFV;SBJV;PL;2;PST
spetar V;COND;PL;3
pensar V;IND;PL;1;PRS;LGSPEC1
augurar V;COND;SG;2
conbatar V;SBJV;SG;1;PRS
mandar V;IPFV;IND;SG;1;PST
sentar V;IPFV;SBJV;PL;3;PST
métar V;SBJV;SG;2;PRS
anbir V;IND;PL;3;FUT
saltar V;IND;PL;1;PRS;LGSPEC1
aver V;SBJV;SG;1;PRS
atribuir V;SBJV;SG;2;PRS
carołar V;IMP;PL;1
realisar V;IND;PL;1;FUT
deventar V;IPFV;SBJV;PL;2;PST
pexar V;COND;PL;3
pèrdar V;IPFV;SBJV;PL;3;PST
tirar V;SBJV;SG;2;PRS
asistar V;IMP;PL;2
conpletar V;IPFV;IND;PL;3;PST
baxar V;IND;SG;3;FUT
mołar V;SBJV;PL;2;PRS
exagerar V;IND;SG;1;PRS
trar V;COND;PL;2
gestir V;SBJV;SG;1;PRS
invernixar V;SBJV;SG;3;PRS;LGSPEC2
invojar V;COND;PL;1
menar V;SBJV;SG;1;PRS;LGSPEC2
finansiar V;IPFV;SBJV;SG;1;PST
móvar V;SBJV;SG;3;PRS
sponciar V;SBJV;PL;3;PRS;LGSPEC2
danar V;IPFV;IND;PL;2;PST
svodar V;IPFV;SBJV;SG;2;PST
partir V;IND;SG;1;PRS
crédar V;IMP;PL;1
tremar V;IMP;SG;2
pèrdar V;IPFV;IND;SG;1;PST
entrar V;IPFV;IND;SG;2;PST
entrar V;IMP;PL;2
desidar V;IND;PL;1;PRS;LGSPEC2
spoliar V;SBJV;PL;3;PRS;LGSPEC2
dettar V;IPFV;IND;SG;1;PST
voltar V;IND;SG;3;PRS
amar V;IND;SG;1;PRS
cołegar V;IPFV;SBJV;SG;2;PST
caminar V;IPFV;SBJV;SG;2;PST
sostituir V;IND;SG;3;PRS
conbatar V;IND;PL;2;PRS
voltar V;COND;PL;1
ricordar V;IND;PL;3;PRS
mancar V;IMP;PL;2
cunar V;IND;SG;1;PRS
salvar V;IPFV;SBJV;SG;3;PST
carołar V;IPFV;IND;PL;3;PST
sperar V;SBJV;SG;3;PRS;LGSPEC1
butar V;IPFV;SBJV;SG;1;PST
slùxar V;COND;PL;1
stranuar V;SBJV;SG;3;PRS;LGSPEC1
spełar V;IPFV;SBJV;SG;3;PST
tocar V;IPFV;IND;PL;3;PST
conzsar V;IND;PL;3;PRS
scrivar V;IPFV;IND;SG;1;PST
sfrutar V;COND;PL;2
riciamar V;IND;PL;2;FUT
begar V;IMP;PL;1
petar V;IPFV;SBJV;SG;1;PST
sbiansar V;COND;SG;1
vìnsar V;COND;SG;1
prodùxer V;IND;PL;1;PRS
proclamar V;COND;PL;2
tamixar V;SBJV;SG;2;PRS
conpletar V;IPFV;SBJV;SG;1;PST
meritar V;SBJV;SG;2;PRS
costruir V;IPFV;SBJV;SG;1;PST
sponciar V;IPFV;IND;PL;3;PST
strabucar V;IND;PL;3;PRS
brustołar V;IND;SG;1;PRS
batizxar V;IND;PL;3;FUT
provar V;SBJV;SG;1;PRS;LGSPEC1
móvar V;IPFV;IND;SG;3;PST
bevarar V;IMP;PL;1
misiar V;NFIN
springar V;IMP;SG;3;LGSPEC2
macar V;SBJV;SG;1;PRS;LGSPEC1
bearar V;IPFV;SBJV;SG;1;PST
cunar V;COND;SG;3
vangar V;IPFV;IND;PL;2;PST
ametar V;IPFV;IND;SG;2;PST
ofrir V;IND;PL;1;FUT
strapegar V;IMP;PL;3;LGSPEC2
sbiansar V;IPFV;SBJV;SG;1;PST
caminar V;IMP;SG;2
xontar V;IND;PL;3;FUT
cascar V;IPFV;IND;SG;2;PST
cavar V;IMP;PL;2
sarare V;IND;SG;3;PRS
usir V;SBJV;SG;1;PRS
çentrałizar V;IMP;PL;3;LGSPEC1
spoliar V;IND;SG;2;FUT
inventar V;IPFV;SBJV;SG;2;PST
zontar V;IMP;PL;1
pociar V;IPFV;SBJV;PL;3;PST
móvar V;IPFV;IND;PL;3;PST
sfrutar V;IPFV;SBJV;PL;2;PST
spełar V;IMP;PL;3;LGSPEC2
convìnzsar V;IND;PL;1;PRS
sujerir V;IND;SG;1;PRS
begar V;IND;SG;1;FUT
obligar V;IND;SG;2;PRS
slongar V;IMP;PL;3;LGSPEC2
sajar V;IPFV;SBJV;SG;2;PST
bojir V;SBJV;PL;1;PRS
copar V;IND;PL;2;PRS
sałudar V;NFIN
convìnzsar V;IMP;PL;2
spoliar V;IMP;SG;3;LGSPEC1
oler V;NFIN
fondar V;COND;PL;2
taconar V;IND;PL;1;PRS;LGSPEC1
sentar V;IND;SG;3;FUT
conzsar V;COND;PL;1
tociar V;IMP;SG;3;LGSPEC1
votar V;SBJV;SG;1;PRS;LGSPEC1
cantar V;IPFV;IND;PL;1;PST
vìvar V;IND;SG;3;PRS
rivar V;SBJV;SG;3;PRS;LGSPEC2
alzsar V;SBJV;PL;3;PRS;LGSPEC2
sgrafar V;COND;SG;1
remar V;SBJV;SG;3;PRS;LGSPEC1
deventar V;COND;SG;1
slisegar V;IND;SG;3;PRS
modifegar V;SBJV;PL;1;PRS;LGSPEC2
scoltar V;COND;PL;3
tugar V;IPFV;IND;PL;1;PST
canbiar V;IMP;PL;2
maciar V;COND;PL;1
stropar V;COND;SG;3
riciamar V;COND;SG;1
vixitar V;IND;PL;3;FUT
domandar V;COND;PL;1
łevar V;IND;SG;1;FUT
brazsar V;IMP;SG;3;LGSPEC1
morir V;IMP;SG;3
busnar V;IPFV;SBJV;SG;1;PST
usir V;COND;PL;3
saltar V;IND;PL;1;FUT
nominar V;IPFV;IND;SG;1;PST
obligar V;IPFV;SBJV;PL;2;PST
serar V;IND;PL;3;PRS
spacar V;IND;PL;3;FUT
savariare V;SBJV;SG;3;PRS;LGSPEC1
łibarar V;SBJV;SG;1;PRS;LGSPEC2
tremar V;IPFV;IND;SG;1;PST
votar V;SBJV;SG;3;PRS;LGSPEC1
capir V;SBJV;PL;3;PRS
pasar V;SBJV;PL;3;PRS;LGSPEC1
robar V;SBJV;SG;3;PRS;LGSPEC1
begar V;IPFV;IND;SG;1;PST
rumar V;IND;SG;1;PRS
brazsar V;IND;SG;1;PRS
curar V;IMP;PL;3;LGSPEC1
asumar V;COND;SG;3
vangar V;IND;PL;2;PRS
invełenar V;IMP;PL;3;LGSPEC2
èser V;IPFV;IND;PL;1;PST;LGSPEC2
nàsar V;IMP;PL;2
vantar V;IND;PL;3;PRS
pèrdar V;IND;SG;2;PRS
morir V;COND;PL;3
mandar V;IMP;SG;3;LGSPEC2
stropar V;IPFV;SBJV;PL;3;PST
sfondrar V;IMP;SG;2
èser V;IND;PL;3;PRS;LGSPEC1
caminar V;IND;PL;2;PRS
desmontar V;SBJV;SG;1;PRS;LGSPEC1
tardigar V;SBJV;PL;1;PRS;LGSPEC1
alzsar V;IMP;PL;2
voxar V;IND;SG;3;PRS
sgrafar V;SBJV;PL;1;PRS;LGSPEC1
oler V;IMP;PL;2
sfrixar V;SBJV;SG;1;PRS;LGSPEC2
vìnsar V;SBJV;SG;1;PRS
ametar V;IPFV;IND;PL;3;PST
sałudar V;IPFV;IND;SG;2;PST
bociar V;IPFV;IND;PL;3;PST
anbir V;COND;PL;3
begar V;NFIN
insìstar V;COND;SG;2
nominar V;IPFV;IND;PL;3;PST
parlar V;IND;SG;3;FUT
servir V;IND;PL;2;PRS
busnar V;SBJV;PL;3;PRS;LGSPEC1
sgnaolar V;IPFV;IND;PL;2;PST
domandar V;IND;PL;1;FUT
descovèrzar V;COND;PL;1
sperar V;COND;SG;3
èser V;IPFV;IND;PL;3;PST;LGSPEC1
ałestir V;SBJV;SG;1;PRS
conpiłar V;IPFV;IND;SG;3;PST
domandar V;IMP;PL;2
sachegiar V;IND;SG;1;FUT
sbregar V;IND;PL;2;PRS
sunar V;IPFV;IND;SG;3;PST
tajar V;IND;SG;2;FUT
vèrzar V;COND;SG;1
sgnaolar V;IMP;PL;1
èser V;SBJV;PL;1;PRS
studiar V;IND;SG;2;PRS
invełenar V;IPFV;SBJV;SG;2;PST
sbrajar V;IND;PL;1;FUT
scorlar V;SBJV;PL;3;PRS
inpizar V;SBJV;SG;1;PRS;LGSPEC2
finir V;COND;SG;1
stupar V;IMP;SG;2
cascar V;COND;PL;2
sugerir V;COND;SG;3
ciuciar V;IPFV;SBJV;SG;2;PST
sfrixar V;IMP;PL;3;LGSPEC2
copiar V;IND;PL;1;PRS;LGSPEC1
spoxar V;IMP;SG;3;LGSPEC1
trincar V;SBJV;PL;1;PRS;LGSPEC1
abitar V;IMP;PL;1
ocupar V;IPFV;SBJV;PL;2;PST
bojir V;COND;PL;2
sugerir V;COND;PL;2
ofendar V;IPFV;SBJV;SG;1;PST
modifegar V;IND;PL;2;FUT
gestir V;COND;SG;3
rostir V;IMP;SG;3
vestir V;IMP;SG;3
descovèrzar V;IPFV;IND;PL;2;PST
intivar V;IND;PL;3;PRS
caminar V;IMP;SG;3;LGSPEC2
aspetar V;IND;PL;3;PRS
strénxar V;IPFV;IND;SG;1;PST
èser V;IPFV;SBJV;PL;1;PST
costruir V;IPFV;IND;PL;1;PST
afitar V;SBJV;PL;1;PRS;LGSPEC1
copar V;SBJV;PL;1;PRS;LGSPEC1
stuxar V;IMP;PL;1
insegnar V;IND;SG;3;FUT
rancurar V;IND;SG;2;PRS
taxer V;SBJV;SG;1;PRS
apostrofar V;SBJV;SG;1;PRS;LGSPEC1
pexar V;IPFV;SBJV;PL;2;PST
pareciar V;IMP;PL;3;LGSPEC2
obligar V;IPFV;IND;SG;3;PST
scuminsiar V;COND;SG;3
nominar V;IMP;PL;3;LGSPEC2
sałudar V;IND;PL;2;PRS
intosegar V;SBJV;SG;1;PRS;LGSPEC2
springar V;COND;PL;2
gestir V;IND;PL;3;FUT
usir V;IPFV;SBJV;PL;3;PST
spoliar V;SBJV;PL;2;PRS
anoverar V;IMP;PL;1
rìdar V;IND;PL;3;PRS
intrigar V;SBJV;PL;3;PRS;LGSPEC2
tastar V;SBJV;SG;3;PRS;LGSPEC2
dormir V;NFIN
schincar V;IND;PL;3;FUT
deventar V;SBJV;SG;2;PRS
unir V;IPFV;IND;SG;3;PST
spacar V;COND;PL;1
cuèrzar V;IMP;SG;2
realisar V;IND;PL;1;PRS;LGSPEC1
provar V;IMP;SG;3;LGSPEC1
scoltar V;IND;PL;2;FUT
traversar V;IND;SG;2;PRS
desmentegar V;IPFV;SBJV;PL;2;PST
rodołar V;IND;PL;1;PRS;LGSPEC1
schincar V;SBJV;SG;2;PRS
sluxegar V;IND;SG;1;FUT
batizxar V;SBJV;SG;2;PRS
métar V;IMP;PL;1
pónxar V;IPFV;IND;PL;1;PST
tardigar V;IPFV;IND;SG;1;PST
justar V;IND;SG;2;FUT
apostrofar V;COND;PL;3
postar V;IND;PL;3;FUT
temer V;IND;SG;2;FUT
intivar V;IND;SG;1;FUT
piantar V;SBJV;PL;1;PRS;LGSPEC2
exagerar V;IMP;PL;3;LGSPEC1
desgatejar V;IPFV;SBJV;PL;2;PST
cantar V;SBJV;SG;2;PRS
finir V;COND;PL;1
justar V;IPFV;SBJV;PL;3;PST
asaltar V;IMP;SG;3;LGSPEC1
slùxar V;IMP;SG;2
sbuxar V;SBJV;PL;3;PRS;LGSPEC2
batizxar V;IPFV;SBJV;SG;1;PST
usir V;IND;PL;2;FUT
spacar V;SBJV;PL;2;PRS
intorcołar V;IMP;SG;2
partir V;COND;PL;2
trar V;SBJV;PL;1;PRS;LGSPEC1
tacar V;IMP;PL;3;LGSPEC1
picar V;COND;SG;1
tremar V;SBJV;PL;3;PRS;LGSPEC1
meritar V;IMP;SG;2
svodar V;IND;PL;2;FUT
łigar V;SBJV;PL;3;PRS;LGSPEC1
arfiar V;IPFV;IND;PL;1;PST
gòder V;SBJV;SG;1;PRS
łevar V;IPFV;IND;PL;2;PST
inaugurar V;IPFV;SBJV;SG;2;PST
védar V;IND;PL;2;PRS
traversar V;IND;PL;2;FUT
ofendar V;IPFV;SBJV;PL;3;PST
convìnzsar V;COND;SG;2;LGSPEC2
servir V;IPFV;SBJV;SG;1;PST
savariare V;COND;PL;3
picar V;IPFV;SBJV;SG;2;PST
conpiłar V;SBJV;PL;1;PRS;LGSPEC1
tocar V;SBJV;SG;1;PRS;LGSPEC2
tociar V;IPFV;IND;SG;1;PST
stisar V;IMP;PL;3;LGSPEC2
łibarar V;IND;PL;3;FUT
crédar V;IPFV;IND;SG;2;PST
menar V;IMP;PL;2
ónxar V;COND;PL;1
spojar V;IND;SG;1;PRS
robar V;COND;SG;3
xontar V;IND;PL;1;PRS;LGSPEC1
parer V;SBJV;SG;3;PRS
vantar V;SBJV;PL;1;PRS;LGSPEC2
stuxar V;IPFV;IND;PL;3;PST
vałer V;COND;SG;3
caminar V;SBJV;PL;2;PRS
łigar V;SBJV;SG;1;PRS;LGSPEC1
bruxar V;SBJV;PL;1;PRS;LGSPEC1
cunar V;IPFV;SBJV;PL;1;PST
restar V;SBJV;PL;2;PRS
canbiar V;COND;PL;1
bójar V;IND;PL;1;PRS
fracar V;IND;PL;3;PRS
jutar V;COND;SG;2
spesegar V;SBJV;SG;3;PRS;LGSPEC1
comandar V;IPFV;IND;SG;1;PST
slisegar V;COND;PL;1
sparagnar V;NFIN
realisar V;NFIN
supiàr V;IND;PL;2;FUT
voxar V;IMP;PL;3;LGSPEC2
mancar V;IMP;SG;2
inverinar V;COND;SG;2
sbiansar V;IPFV;IND;PL;1;PST
sonar V;IND;PL;2;PRS
descargar V;SBJV;SG;2;PRS
sorar V;IPFV;IND;SG;2;PST
invełenar V;IND;SG;1;PRS
controłar V;IND;PL;1;PRS;LGSPEC2
sbrajar V;SBJV;PL;1;PRS;LGSPEC1
pèrdar V;SBJV;SG;1;PRS
strabucar V;IPFV;IND;PL;3;PST
riciamar V;SBJV;PL;3;PRS;LGSPEC1
carezsar V;SBJV;SG;2;PRS
bàtar V;IND;PL;1;FUT
acumular V;SBJV;SG;3;PRS;LGSPEC2
tocar V;IND;SG;2;PRS
sajar V;IPFV;IND;PL;1;PST
convìnzsar V;COND;SG;1
roxegar V;SBJV;SG;1;PRS;LGSPEC2
ciuciar V;IND;PL;3;PRS
sfondrar V;IMP;PL;3;LGSPEC2
magnar V;COND;SG;2
svejar V;IPFV;IND;SG;1;PST
intorcołar V;IND;SG;3;FUT
augurar V;IMP;SG;3;LGSPEC2
arar V;SBJV;SG;1;PRS;LGSPEC1
inaugurar V;SBJV;SG;1;PRS;LGSPEC1
votar V;NFIN
savariare V;IMP;PL;3;LGSPEC2
noar V;IND;SG;2;PRS
desidar V;IND;SG;2;FUT
cosołar V;COND;SG;3
parer V;IPFV;IND;SG;2;PST
acreditar V;IND;PL;2;PRS
sbuxar V;SBJV;PL;2;PRS
rostir V;COND;SG;3
cuèrzar V;IPFV;SBJV;PL;1;PST
tardigar V;IND;SG;3;PRS
sajar V;IND;PL;1;FUT
strénxar V;SBJV;PL;1;PRS
nominar V;IND;SG;2;FUT
semenar V;IPFV;SBJV;PL;3;PST
rostir V;IND;SG;2;FUT
spesegar V;IND;PL;1;PRS;LGSPEC1
sbrisiar V;COND;PL;2
slatar V;IMP;SG;2
bruxar V;IMP;PL;3;LGSPEC2
vansar V;IPFV;IND;PL;2;PST
védar V;IND;PL;1;FUT
supiar V;COND;PL;3
ponciar V;IMP;PL;3;LGSPEC2
catar V;IMP;PL;2
ciamar V;IMP;PL;1
bagnar V;IPFV;SBJV;SG;2;PST
serar V;COND;PL;2
spostar V;IMP;PL;2
strigar V;IPFV;SBJV;PL;2;PST
sarare V;COND;SG;3
exagerar V;IND;SG;3;FUT
vìnsar V;IPFV;SBJV;PL;2;PST
savariare V;IMP;PL;3;LGSPEC1
batizxar V;IMP;PL;1
trar V;COND;PL;3
realisar V;IPFV;IND;PL;1;PST
busnar V;SBJV;SG;1;PRS;LGSPEC2
łevar V;SBJV;SG;3;PRS;LGSPEC1
slongar V;IND;PL;1;FUT
augurar V;SBJV;SG;1;PRS;LGSPEC1
danar V;IPFV;IND;SG;2;PST
influensar V;IPFV;SBJV;PL;3;PST
cunar V;IPFV;SBJV;PL;3;PST
vèrzar V;IMP;SG;3
rasar V;IMP;PL;3;LGSPEC1
arivar V;COND;PL;1
picar V;IND;PL;1;PRS;LGSPEC2
copar V;COND;PL;1
vèrzar V;IPFV;IND;SG;1;PST
cołegar V;SBJV;SG;1;PRS;LGSPEC1
finansiar V;IPFV;IND;SG;2;PST
sparagnar V;SBJV;SG;3;PRS;LGSPEC1
intosegar V;COND;PL;2
rumegar V;IND;SG;1;FUT
bójar V;COND;SG;2
ciuciar V;IMP;SG;3;LGSPEC1
invidar V;IND;SG;1;PRS
sgrafar V;COND;SG;3
cantar V;IMP;SG;2
noar V;SBJV;SG;3;PRS;LGSPEC2
tocar V;IND;SG;2;FUT
capir V;IPFV;IND;PL;3;PST
tastar V;IPFV;SBJV;PL;2;PST
calcołar V;SBJV;SG;3;PRS;LGSPEC1
taconar V;IMP;PL;3;LGSPEC2
tardigar V;IND;SG;1;FUT
sparagnar V;IPFV;IND;SG;3;PST
acetar V;COND;SG;3
concepir V;IPFV;SBJV;SG;1;PST
remenar V;SBJV;PL;2;PRS
somejar V;IND;PL;3;FUT
stupar V;SBJV;SG;3;PRS;LGSPEC2
desbrojar V;IND;PL;1;PRS;LGSPEC2
pisar V;COND;SG;1
rasar V;IMP;PL;1
pareciar V;IMP;PL;1
tamixar V;IPFV;IND;PL;1;PST
sentir V;IND;SG;2;FUT
sofegar V;COND;SG;2
scoltar V;IND;SG;2;PRS
invidiar V;SBJV;PL;1;PRS;LGSPEC2
copiar V;IND;SG;1;PRS
invojar V;IND;PL;1;FUT
sgropar V;IND;PL;3;PRS
danar V;IPFV;SBJV;PL;2;PST
parlar V;IMP;PL;3;LGSPEC1
macar V;IND;SG;2;FUT
pełar V;IPFV;SBJV;PL;2;PST
bévar V;IND;PL;3;PRS
arestar V;IND;SG;2;FUT
acumular V;IMP;PL;2
finansiar V;IND;PL;2;PRS
sarare V;IPFV;SBJV;PL;3;PST
macar V;IPFV;IND;PL;1;PST
rìdar V;COND;PL;3
vardar V;IND;PL;2;PRS
scorlar V;NFIN
dir V;IMP;PL;1
pontar V;IPFV;IND;PL;2;PST
pensar V;IMP;SG;3;LGSPEC1
scrivar V;IPFV;SBJV;PL;2;PST
udar V;IPFV;IND;SG;3;PST
batizxar V;SBJV;PL;2;PRS
fondar V;IND;PL;1;PRS;LGSPEC1
uxar V;COND;PL;1
rostir V;IMP;PL;3
capir V;IPFV;SBJV;SG;2;PST
spoxar V;COND;PL;2
ofrir V;SBJV;SG;2;PRS
somejar V;SBJV;PL;1;PRS;LGSPEC1
invidar V;COND;PL;3
pasar V;IND;SG;1;PRS
baxar V;IPFV;IND;PL;1;PST
crédar V;SBJV;PL;2;PRS
magnar V;IMP;SG;3;LGSPEC1
morir V;IPFV;IND;SG;2;PST
tocar V;IPFV;SBJV;PL;3;PST
costruir V;IND;PL;2;PRS
sorar V;SBJV;SG;3;PRS;LGSPEC2
rivar V;SBJV;SG;1;PRS;LGSPEC2
sfrutar V;IMP;SG;2
pontar V;SBJV;SG;3;PRS;LGSPEC1
provar V;SBJV;SG;2;PRS
amar V;IPFV;SBJV;PL;2;PST
desidar V;IMP;SG;2
vołer V;IND;PL;3;PRS;LGSPEC1
sgropar V;IND;SG;1;FUT
jutar V;IND;PL;3;PRS
ribelar V;IND;SG;2;FUT
slongar V;IND;PL;2;PRS
criar V;IPFV;SBJV;SG;1;PST
spaxemar V;SBJV;PL;1;PRS;LGSPEC2
véndar V;IPFV;SBJV;SG;1;PST
scuminsiar V;COND;PL;1
córar V;COND;SG;2
sajar V;IPFV;SBJV;PL;3;PST
costumar V;IMP;SG;2
tetar V;IND;SG;3;PRS
entrar V;IPFV;IND;PL;3;PST
meritar V;IMP;SG;3;LGSPEC2
invidar V;COND;PL;2
bazxotar V;SBJV;PL;1;PRS;LGSPEC1
vìnsar V;COND;PL;1
stuxar V;IPFV;SBJV;PL;3;PST
colpir V;IPFV;IND;SG;2;PST
tugar V;IMP;PL;3;LGSPEC1
spacar V;IPFV;SBJV;PL;3;PST
petar V;IMP;PL;2
sguaratar V;IND;SG;1;PRS
maciar V;SBJV;PL;3;PRS;LGSPEC2
star V;SBJV;SG;3;PRS;LGSPEC1
udar V;IPFV;SBJV;SG;2;PST
castrar V;SBJV;SG;3;PRS;LGSPEC2
raprexentar V;NFIN
cunar V;SBJV;PL;3;PRS;LGSPEC2
scorlar V;IPFV;IND;SG;3;PST
sbregar V;IMP;PL;1
entrar V;IMP;SG;3;LGSPEC1
spetar V;SBJV;PL;3;PRS;LGSPEC1
dir V;IMP;SG;2
sugerir V;COND;SG;2
costumar V;IPFV;IND;PL;2;PST
smagrir V;IND;SG;1;PRS
nàsar V;IND;PL;1;FUT
pestar V;IPFV;IND;SG;2;PST
pociar V;IND;PL;2;FUT
springar V;IMP;PL;1
slùxar V;IMP;PL;3;LGSPEC2
stupar V;IND;PL;2;FUT
taconar V;IPFV;SBJV;SG;3;PST
busnar V;IMP;PL;1
stranuar V;IPFV;IND;PL;3;PST
bójar V;IMP;PL;1
tardigar V;SBJV;PL;3;PRS;LGSPEC2
sfexar V;IPFV;IND;SG;3;PST
meritar V;SBJV;SG;3;PRS;LGSPEC2
sostituir V;COND;PL;1
piànxar V;COND;SG;3
ciuciar V;IPFV;IND;PL;1;PST
rasar V;SBJV;SG;1;PRS;LGSPEC1
stropar V;COND;PL;1
colpir V;COND;SG;3
vangar V;SBJV;PL;2;PRS
bruxar V;SBJV;PL;3;PRS;LGSPEC1
bojir V;IND;PL;1;PRS
afermar V;IND;SG;1;FUT
convìnzsar V;IPFV;SBJV;SG;2;PST;LGSPEC1
strigar V;IMP;PL;1
slisegar V;COND;SG;2
vałer V;IND;SG;1;PRS
doparar V;COND;PL;1
nàsar V;IND;SG;1;FUT
butar V;IPFV;IND;SG;3;PST
convìnzsar V;IND;PL;3;PRS
łegałixar V;SBJV;SG;1;PRS;LGSPEC2
butar V;SBJV;PL;3;PRS;LGSPEC2
maurar V;SBJV;SG;1;PRS;LGSPEC2
meritar V;SBJV;SG;1;PRS;LGSPEC1
spełar V;SBJV;PL;2;PRS
inaugurar V;IND;PL;3;PRS
intrigar V;IND;SG;3;FUT
afitar V;IND;SG;1;FUT
meritar V;IPFV;SBJV;SG;2;PST
cołegar V;IPFV;IND;SG;2;PST
spaxemar V;IND;PL;1;PRS;LGSPEC1
spiar V;COND;SG;1
slargar V;IPFV;IND;PL;1;PST
sofegar V;IPFV;SBJV;SG;2;PST
sguaratar V;IMP;SG;3;LGSPEC2
cavar V;IMP;PL;3;LGSPEC2
conbatar V;IND;PL;1;PRS
ciamar V;IND;PL;3;PRS
intrigar V;IPFV;SBJV;SG;3;PST
spaxemar V;COND;PL;3
scóndar V;COND;PL;3
spiegar V;SBJV;SG;1;PRS;LGSPEC1
łimar V;SBJV;SG;2;PRS
łustrar V;IPFV;IND;PL;1;PST
tirar V;SBJV;PL;3;PRS;LGSPEC1
slisegar V;SBJV;PL;2;PRS
danar V;SBJV;PL;2;PRS
bagnar V;IMP;SG;3;LGSPEC2
tardigar V;SBJV;SG;1;PRS;LGSPEC1
carołar V;IPFV;SBJV;PL;3;PST
arar V;IMP;PL;1
łavorar V;IND;SG;1;PRS
aterar V;SBJV;SG;1;PRS;LGSPEC2
verxar V;IPFV;SBJV;PL;2;PST
sujerir V;IND;PL;1;PRS
zontar V;IPFV;IND;SG;3;PST
sluxegar V;COND;SG;3
alzsar V;IND;SG;1;FUT
ałestir V;IMP;PL;1
schincar V;SBJV;PL;1;PRS;LGSPEC1
starnudar V;IMP;SG;2
conpiłar V;SBJV;SG;3;PRS;LGSPEC1
somejar V;IMP;PL;3;LGSPEC1
sbrisiar V;COND;PL;3
spaxemar V;IPFV;SBJV;SG;1;PST
usir V;SBJV;SG;3;PRS
viajar V;SBJV;SG;3;PRS;LGSPEC1
bruscar V;IND;PL;1;PRS;LGSPEC1
comandar V;IPFV;SBJV;PL;3;PST
baxar V;IMP;SG;3;LGSPEC1
busnar V;IND;PL;2;PRS
sachegiar V;IND;PL;3;FUT
justar V;IMP;PL;2
zontar V;SBJV;SG;1;PRS;LGSPEC2
sonar V;IND;SG;2;FUT
raprexentar V;IMP;SG;3;LGSPEC2
scriver V;IND;PL;2;PRS
misiar V;IND;SG;1;FUT
castrar V;IPFV;SBJV;SG;1;PST
saltar V;IMP;PL;1
conpiłar V;IND;PL;2;PRS
nominar V;SBJV;SG;3;PRS;LGSPEC2
inventar V;IPFV;IND;SG;2;PST
oxar V;IMP;SG;3;LGSPEC1
apostrofar V;IND;PL;1;PRS;LGSPEC2
sentir V;IND;PL;2;PRS
piànxar V;IMP;PL;3
bacajar V;IMP;PL;3;LGSPEC1
cavar V;IMP;SG;3;LGSPEC2
bagnar V;IPFV;IND;PL;1;PST
deventar V;SBJV;PL;2;PRS
véndar V;IND;SG;2;FUT
supiar V;IND;PL;1;PRS;LGSPEC2
ciocar V;IPFV;SBJV;SG;1;PST
èser V;IPFV;IND;PL;1;PST;LGSPEC3
pexar V;SBJV;PL;1;PRS;LGSPEC2
dettar V;IMP;PL;3;LGSPEC2
costumar V;IPFV;SBJV;PL;3;PST
salvar V;COND;SG;3
ascrivar V;SBJV;PL;1;PRS
parer V;IPFV;IND;PL;2;PST
sluxegar V;IMP;SG;2
jutar V;COND;PL;3
desmontar V;IND;SG;2;PRS;LGSPEC1
pestar V;IPFV;SBJV;PL;2;PST
arestar V;IMP;SG;3;LGSPEC1
spaxemar V;IND;PL;3;FUT
védar V;IND;SG;3;PRS
sugar V;IMP;PL;3;LGSPEC2
strabucar V;IPFV;IND;PL;1;PST
bruscar V;SBJV;PL;1;PRS;LGSPEC1
costumar V;IND;PL;1;FUT
voxar V;IMP;SG;2
prodùr V;IMP;PL;1
ponciar V;SBJV;SG;2;PRS
batexemar V;COND;SG;1
sbrisiar V;IMP;SG;2
smagrir V;COND;PL;1
becar V;IMP;SG;3;LGSPEC2
restar V;SBJV;SG;1;PRS;LGSPEC1
voltar V;IMP;PL;1
tacar V;IND;PL;2;FUT
spostar V;IND;PL;1;PRS;LGSPEC1
trar V;IMP;SG;2
bévar V;IPFV;SBJV;SG;2;PST
acumular V;IND;PL;1;PRS;LGSPEC1
urtar V;COND;PL;2
doparar V;SBJV;PL;1;PRS;LGSPEC2
sentir V;IMP;SG;3
vardar V;SBJV;SG;1;PRS;LGSPEC1
somejar V;COND;SG;3
batizxar V;IND;SG;1;FUT
confrontar V;SBJV;PL;1;PRS;LGSPEC1
usir V;IND;SG;1;PRS
łibarar V;IND;SG;1;PRS
stisar V;IPFV;IND;SG;1;PST
mancar V;IND;PL;1;PRS;LGSPEC1
carezxar V;IPFV;SBJV;SG;3;PST
conosar V;SBJV;SG;1;PRS
scrivar V;COND;SG;1
comerçar V;SBJV;SG;2;PRS
strapegar V;IND;PL;3;FUT
scriver V;IPFV;IND;PL;3;PST
cołegar V;SBJV;SG;3;PRS;LGSPEC2
nominar V;COND;PL;1
vangar V;SBJV;PL;3;PRS;LGSPEC1
nominar V;SBJV;SG;2;PRS
stuxar V;IPFV;IND;PL;1;PST
spełar V;COND;PL;2
mancar V;SBJV;PL;1;PRS;LGSPEC2
mantegner V;IPFV;IND;SG;1;PST
inaugurar V;IND;SG;3;PRS
baxar V;NFIN
móvar V;IPFV;SBJV;PL;3;PST
conosar V;IND;SG;2;PRS
realisar V;IPFV;IND;PL;2;PST
provar V;IPFV;SBJV;PL;2;PST
unir V;IMP;SG;3
bévar V;SBJV;PL;1;PRS
inverinar V;IMP;SG;2
conpiłar V;IND;PL;3;FUT
jutar V;SBJV;PL;1;PRS;LGSPEC2
spacar V;IND;PL;2;PRS
alzsar V;IND;PL;1;FUT
spoliar V;IND;SG;1;FUT
tirar V;IPFV;IND;SG;2;PST
sotomesar V;IPFV;SBJV;SG;3;PST
ciapar V;IND;PL;1;PRS;LGSPEC2
controłar V;SBJV;PL;2;PRS
star V;IPFV;IND;SG;1;PST
pestar V;IMP;SG;2
vantar V;SBJV;SG;1;PRS;LGSPEC1
aprovar V;SBJV;SG;3;PRS;LGSPEC1
spełar V;COND;PL;1
morsegar V;IPFV;SBJV;SG;1;PST
aterar V;COND;PL;3
desmontar V;SBJV;SG;1;PRS;LGSPEC2
desidar V;IMP;PL;1
vołer V;COND;SG;1
ofendar V;IPFV;SBJV;PL;2;PST
sparagnar V;IND;PL;1;FUT
robar V;IND;SG;3;PRS
rostir V;NFIN
stanpar V;IMP;PL;1
ałestir V;IND;PL;2;FUT
carołar V;COND;PL;2
stanpar V;IND;PL;1;FUT
strigar V;IMP;PL;2
concepir V;IND;SG;3;PRS
catar V;IPFV;SBJV;SG;1;PST
ascrivar V;IMP;PL;2
sperar V;IND;PL;3;PRS
bàtar V;IND;SG;3;PRS
controłar V;IND;SG;1;FUT
descargar V;IMP;PL;3;LGSPEC1
descovèrzar V;IPFV;SBJV;PL;1;PST
spojar V;SBJV;SG;3;PRS;LGSPEC1
oler V;COND;SG;1
pełar V;IPFV;IND;SG;2;PST
rasar V;COND;SG;1
afitar V;IMP;PL;1
misiar V;IPFV;IND;SG;3;PST
controłar V;SBJV;SG;1;PRS;LGSPEC1
trar V;IND;SG;1;FUT
tacar V;SBJV;PL;3;PRS;LGSPEC1
tastar V;SBJV;SG;1;PRS;LGSPEC1
remar V;IND;PL;3;PRS
rumar V;IMP;SG;2
studiar V;SBJV;SG;3;PRS;LGSPEC1
sonar V;IND;PL;1;PRS;LGSPEC2
bagnar V;IPFV;SBJV;SG;1;PST
voltar V;IPFV;IND;SG;1;PST
ocupar V;IPFV;IND;PL;2;PST
vèrzar V;IPFV;IND;SG;3;PST
voxar V;SBJV;SG;1;PRS;LGSPEC2
postar V;IMP;PL;1
remenar V;IND;PL;1;FUT
morir V;IND;PL;2;PRS
colpir V;SBJV;SG;2;PRS
vołer V;IPFV;SBJV;PL;1;PST
cantar V;IND;PL;1;PRS;LGSPEC2
vołer V;IND;SG;2;PRS;LGSPEC3
gestir V;COND;PL;1
arfiar V;IPFV;SBJV;PL;3;PST
łimar V;IPFV;IND;PL;3;PST
vołer V;IPFV;SBJV;SG;3;PST
inventar V;IPFV;IND;SG;1;PST
spiegar V;IMP;SG;3;LGSPEC2
desmentegar V;IND;SG;1;PRS
sfrixar V;IPFV;SBJV;SG;2;PST
finir V;IPFV;SBJV;PL;1;PST
sałudar V;SBJV;PL;3;PRS;LGSPEC2
petar V;IPFV;SBJV;PL;3;PST
raxónxer V;SBJV;PL;1;PRS
inpizar V;IMP;PL;3;LGSPEC1
bazxotar V;IND;PL;1;FUT
tastar V;IND;SG;2;FUT
sarar V;IMP;PL;3;LGSPEC2
criar V;IMP;PL;2
sparagnar V;SBJV;PL;3;PRS;LGSPEC2
bearar V;IND;PL;1;PRS;LGSPEC2
busnar V;IMP;PL;3;LGSPEC2
arivar V;IPFV;IND;PL;1;PST
morir V;SBJV;SG;1;PRS
tetar V;SBJV;SG;1;PRS;LGSPEC2
doparar V;IND;PL;1;FUT
cantar V;IND;SG;1;FUT
mantegner V;IPFV;SBJV;PL;1;PST
arivar V;IMP;PL;3;LGSPEC1
scrivar V;IND;PL;2;FUT
soranomenar V;IPFV;SBJV;PL;1;PST
sugar V;IMP;SG;2
alzsar V;IPFV;IND;PL;2;PST
segar V;IPFV;SBJV;PL;3;PST
apostrofar V;COND;PL;2
cargar V;IMP;SG;3;LGSPEC2
finansiar V;IPFV;SBJV;SG;2;PST
cantar V;IPFV;IND;SG;1;PST
strabucar V;SBJV;SG;3;PRS;LGSPEC1
begar V;IND;SG;2;FUT
carezxar V;IPFV;SBJV;PL;2;PST
rumar V;IMP;PL;1
supiàr V;IPFV;SBJV;SG;3;PST
canbiar V;IND;PL;3;PRS
batizxar V;IPFV;IND;PL;1;PST
łustrar V;COND;SG;3
servir V;SBJV;PL;2;PRS
invełenar V;COND;PL;1
starnudar V;IND;PL;2;PRS
spojar V;IPFV;SBJV;SG;3;PST
inverinar V;IND;PL;1;FUT
dettar V;IMP;PL;1
scuminsiar V;IMP;PL;2
bevarar V;IND;SG;1;PRS
desidar V;IND;PL;2;PRS
gestir V;IPFV;IND;PL;1;PST
rancurar V;IPFV;IND;SG;3;PST
inverinar V;SBJV;PL;3;PRS;LGSPEC1
crédar V;IND;PL;1;FUT
rumegar V;COND;SG;2
svejar V;IND;PL;1;FUT
sonar V;IPFV;SBJV;PL;3;PST
sałudar V;SBJV;PL;1;PRS;LGSPEC2
magnar V;COND;SG;3
trar V;IMP;SG;3;LGSPEC2
tajar V;IMP;SG;3;LGSPEC1
supiar V;IND;SG;1;PRS
acumular V;NFIN
acumular V;SBJV;SG;3;PRS;LGSPEC1
łustrar V;IND;PL;1;FUT
intrigar V;SBJV;PL;3;PRS;LGSPEC1
tetar V;IND;PL;3;PRS
raxónxer V;SBJV;PL;2;PRS
piantar V;IMP;PL;1
sugar V;IPFV;SBJV;SG;2;PST
ónxar V;SBJV;SG;2;PRS
partir V;IND;PL;1;FUT
canbiar V;IPFV;SBJV;PL;3;PST
ocupar V;COND;SG;3
asaltar V;COND;SG;3
tetar V;IND;SG;1;FUT
bojir V;IND;PL;1;FUT
rasar V;IPFV;SBJV;SG;1;PST
limitar V;IPFV;IND;PL;2;PST
scuminsiar V;SBJV;SG;2;PRS
arivar V;IND;SG;3;PRS
incroxar V;IND;SG;3;FUT
vangar V;SBJV;SG;3;PRS;LGSPEC2
vangar V;IMP;SG;2
sunar V;IPFV;IND;PL;2;PST
remar V;COND;PL;2
intivar V;COND;PL;2
véndar V;IND;SG;1;PRS
ofendar V;IPFV;SBJV;PL;1;PST
ocupar V;IND;PL;2;PRS
łevar V;SBJV;PL;1;PRS;LGSPEC2
asistar V;IND;SG;2;PRS
roversar V;IPFV;SBJV;PL;3;PST
córar V;IND;SG;1;PRS
mołar V;IND;SG;2;PRS
tremar V;IMP;SG;3;LGSPEC1
desligar V;IMP;PL;2
aprovar V;SBJV;SG;2;PRS
scriver V;COND;PL;3
suar V;IND;PL;3;PRS
scuminsiar V;SBJV;PL;1;PRS;LGSPEC2
becar V;IPFV;SBJV;SG;1;PST
magnar V;IMP;PL;2
sparagnar V;COND;PL;1
cargar V;IPFV;IND;PL;1;PST
sujerir V;IPFV;IND;SG;3;PST
riciamar V;IMP;PL;3;LGSPEC2
insìstar V;SBJV;SG;1;PRS
portar V;IPFV;SBJV;SG;1;PST
trar V;SBJV;PL;3;PRS;LGSPEC1
limitar V;IPFV;IND;SG;1;PST
meritar V;IPFV;SBJV;PL;1;PST
finir V;IPFV;SBJV;SG;3;PST
strapegar V;COND;SG;1
alzsar V;IND;PL;1;PRS;LGSPEC2
stupar V;SBJV;PL;2;PRS
studiar V;IPFV;IND;SG;1;PST
inventar V;SBJV;PL;2;PRS
sluxegar V;IPFV;IND;SG;2;PST
ascrivar V;IPFV;SBJV;PL;1;PST
sbregar V;IMP;SG;2
desgozar V;IPFV;SBJV;SG;1;PST
smorsar V;IPFV;SBJV;PL;2;PST
provar V;IMP;SG;2
jutar V;SBJV;PL;1;PRS;LGSPEC1
servir V;IND;PL;1;FUT
morsegar V;IND;SG;2;FUT
spojar V;NFIN
roxegar V;IPFV;IND;SG;3;PST
sluxegar V;SBJV;SG;3;PRS;LGSPEC2
intorcołar V;SBJV;SG;2;PRS
daquar V;SBJV;SG;3;PRS;LGSPEC1
caminar V;IND;SG;2;FUT
segar V;IND;SG;2;FUT
sbregar V;IPFV;IND;SG;3;PST
stupar V;IMP;SG;3;LGSPEC1
bacajar V;IMP;PL;2
urtar V;IND;PL;3;PRS
asistar V;IPFV;IND;PL;1;PST
slùxar V;IPFV;SBJV;PL;1;PST
springar V;IND;PL;3;PRS
pestar V;IMP;SG;3;LGSPEC1
domandar V;IND;PL;1;PRS;LGSPEC2
sałudar V;IND;SG;1;PRS
vernixar V;IND;SG;1;PRS
brazsar V;SBJV;SG;1;PRS;LGSPEC2
cantar V;SBJV;PL;3;PRS;LGSPEC2
slatar V;IND;PL;1;PRS;LGSPEC1
petar V;IND;SG;2;FUT
fondar V;IMP;PL;3;LGSPEC1
picar V;COND;SG;2
tegner V;IND;PL;1;FUT
parlar V;IND;PL;1;FUT
nàsar V;IPFV;IND;PL;1;PST
descargar V;IND;SG;2;PRS
canbiar V;IPFV;SBJV;SG;2;PST
invidiar V;IMP;PL;2
roxegar V;IPFV;SBJV;SG;3;PST
łavorar V;IND;PL;1;FUT
invidar V;IPFV;IND;SG;2;PST
desbrojar V;NFIN
finansiar V;IND;PL;3;PRS
spoxar V;IPFV;IND;PL;2;PST
rìdar V;IPFV;SBJV;SG;1;PST
cunar V;IND;SG;3;FUT
bévar V;IMP;SG;2
amar V;IMP;SG;2
topar V;IMP;SG;3;LGSPEC2
voxar V;SBJV;PL;3;PRS;LGSPEC2
restar V;SBJV;SG;2;PRS
sentir V;SBJV;PL;3;PRS
comandar V;IND;PL;2;FUT
bevarar V;IND;SG;2;PRS
vołer V;COND;SG;2
scóndar V;IPFV;IND;SG;1;PST
tamixar V;IPFV;SBJV;PL;3;PST
sbiansar V;IND;PL;2;PRS
pociar V;IPFV;IND;PL;1;PST
vansar V;IND;PL;1;PRS;LGSPEC2
desmentegar V;IMP;SG;3;LGSPEC1
sfexar V;IPFV;SBJV;PL;1;PST
partir V;IND;PL;2;FUT
divìdar V;SBJV;SG;1;PRS
spojar V;SBJV;SG;2;PRS
visuałixar V;IND;SG;2;FUT
bagnar V;SBJV;PL;1;PRS;LGSPEC1
tardigar V;IND;SG;1;PRS
portar V;NFIN
intrigar V;IPFV;IND;SG;3;PST
inaugurar V;IPFV;IND;PL;3;PST
voxar V;IPFV;SBJV;SG;3;PST
desligar V;COND;SG;1
desgozar V;IND;SG;3;PRS
urtar V;IND;PL;2;FUT
vangar V;IPFV;IND;PL;3;PST
rancurar V;IND;SG;3;FUT
remenar V;SBJV;SG;2;PRS
desmontar V;COND;PL;1
sorar V;IND;SG;2;FUT
bacajar V;IPFV;SBJV;SG;1;PST
ascrivar V;COND;SG;1
bearar V;IPFV;IND;PL;2;PST
sbuxar V;IND;PL;1;PRS;LGSPEC2
tardigar V;IND;PL;1;PRS;LGSPEC1
caminar V;IND;SG;1;PRS
sbregar V;IND;PL;3;FUT
obligar V;COND;SG;2
móvar V;IPFV;IND;SG;2;PST
ciacołar V;IND;SG;2;FUT
urtar V;COND;SG;2
desmentegar V;IPFV;IND;SG;3;PST
incroxar V;SBJV;SG;1;PRS;LGSPEC2
tornar V;IND;SG;2;PRS
trincar V;IPFV;IND;PL;2;PST
pensar V;IND;SG;1;FUT
bruscar V;IPFV;SBJV;PL;2;PST
invidiar V;SBJV;PL;3;PRS;LGSPEC1
conbatar V;SBJV;PL;1;PRS
pełar V;IND;PL;3;FUT
afermar V;IPFV;IND;PL;2;PST
slongar V;IND;SG;1;FUT
petar V;IPFV;IND;PL;2;PST
svejar V;IPFV;SBJV;SG;1;PST
sperar V;IND;SG;1;PRS
riciamar V;SBJV;PL;3;PRS;LGSPEC2
divìdar V;IMP;SG;2
tocar V;IMP;SG;3;LGSPEC2
arestar V;IND;PL;1;FUT
vangar V;SBJV;SG;3;PRS;LGSPEC1
stupar V;IND;SG;3;FUT
serar V;COND;SG;3
sbrajar V;SBJV;PL;3;PRS;LGSPEC2
tegner V;IND;SG;1;PRS
vixitar V;COND;SG;1
slùxar V;SBJV;SG;1;PRS;LGSPEC1
confrontar V;IND;PL;2;FUT
ofrir V;IND;PL;1;PRS
cuxir V;IMP;PL;2
sponciar V;SBJV;PL;3;PRS;LGSPEC1
prodùxer V;SBJV;SG;3;PRS
cantar V;IPFV;IND;SG;2;PST
provar V;SBJV;PL;3;PRS;LGSPEC2
prodùxer V;IPFV;IND;SG;3;PST
asumar V;NFIN
rasar V;IND;SG;3;FUT
spacar V;IPFV;SBJV;SG;1;PST
netar V;SBJV;PL;1;PRS;LGSPEC2
sgrafar V;IND;SG;1;PRS
pensar V;IMP;PL;3;LGSPEC1
łustrar V;SBJV;PL;1;PRS;LGSPEC1
modifegar V;IPFV;IND;SG;3;PST
cuèrzar V;COND;SG;1
sbuxar V;IND;SG;2;FUT
taxer V;IND;SG;3;PRS
conosar V;IND;SG;1;FUT
tegner V;IND;PL;3;PRS
sbrisiar V;IPFV;SBJV;SG;1;PST
colpir V;IPFV;SBJV;SG;2;PST
bagnar V;SBJV;SG;1;PRS;LGSPEC2
sgropar V;IMP;SG;3;LGSPEC1
trar V;SBJV;PL;1;PRS;LGSPEC2
carołar V;IMP;SG;2
sfrixar V;IND;SG;1;FUT
bałar V;SBJV;PL;3;PRS;LGSPEC1
spoliar V;IPFV;IND;SG;2;PST
sbregar V;IMP;PL;2
vantar V;SBJV;SG;2;PRS
sbrajar V;IMP;PL;3;LGSPEC1
cuèrzar V;IND;SG;3;FUT
sgropar V;IPFV;IND;SG;2;PST
vìnsar V;SBJV;PL;1;PRS
svodar V;IMP;SG;2
sfrutar V;IMP;PL;3;LGSPEC1
arestar V;IMP;PL;3;LGSPEC2
carołar V;IND;SG;2;PRS
stanpar V;IND;PL;3;FUT
atribuir V;IND;PL;1;PRS
acreditar V;IPFV;SBJV;PL;3;PST
nominar V;IPFV;SBJV;PL;1;PST
taconar V;IND;PL;3;FUT
asumar V;COND;SG;2
oler V;SBJV;SG;1;PRS
trincar V;IPFV;SBJV;PL;2;PST
vansar V;COND;SG;2
suar V;SBJV;SG;1;PRS;LGSPEC1
strupiar V;SBJV;SG;3;PRS;LGSPEC1
pensar V;COND;SG;3
misiar V;IPFV;SBJV;PL;2;PST
smagrir V;IPFV;SBJV;SG;1;PST
conosar V;IPFV;IND;PL;1;PST
çentrałizar V;SBJV;PL;2;PRS
stisar V;SBJV;SG;3;PRS;LGSPEC2
picar V;SBJV;SG;1;PRS;LGSPEC1
tastar V;IMP;PL;3;LGSPEC1
ascrivar V;IND;PL;3;FUT
aprovar V;NFIN
netar V;SBJV;PL;2;PRS
cunar V;IPFV;SBJV;PL;2;PST
stropar V;IPFV;IND;PL;3;PST
strapegar V;SBJV;SG;3;PRS;LGSPEC2
influensar V;IPFV;IND;SG;1;PST
partir V;IMP;SG;3
scuminsiar V;IND;PL;3;FUT
spojar V;IND;SG;1;FUT
uxar V;IPFV;SBJV;SG;2;PST
semenar V;IPFV;IND;PL;3;PST
apartegnir V;SBJV;PL;3;PRS
sluxegar V;IND;SG;1;PRS
mołar V;SBJV;SG;3;PRS;LGSPEC2
costumar V;COND;SG;1
tegner V;IMP;SG;3
topar V;IPFV;SBJV;PL;1;PST
divìdar V;IPFV;IND;SG;1;PST
divìdar V;IND;PL;1;FUT
conzsar V;IND;PL;1;PRS;LGSPEC2
córar V;COND;SG;3
sfrixar V;COND;SG;3
verxar V;IPFV;IND;PL;3;PST
slisegar V;IPFV;SBJV;SG;3;PST
temer V;IPFV;IND;PL;1;PST
svejar V;IPFV;SBJV;PL;3;PST
voxar V;IND;PL;1;PRS;LGSPEC2
curar V;IPFV;SBJV;PL;1;PST
łegałixar V;SBJV;PL;2;PRS
spesegar V;SBJV;PL;1;PRS;LGSPEC1
védar V;IPFV;IND;SG;1;PST
bazxotar V;IND;PL;2;PRS
carezsar V;IND;PL;2;FUT
vałer V;IND;SG;2;FUT
sgnacar V;IPFV;SBJV;PL;3;PST
bałar V;SBJV;PL;1;PRS;LGSPEC1
pestar V;IND;SG;3;FUT
pociar V;IPFV;SBJV;PL;2;PST
studiar V;IND;PL;2;PRS
cavar V;SBJV;SG;3;PRS;LGSPEC2
sbrajar V;SBJV;SG;3;PRS;LGSPEC1
baxar V;IPFV;SBJV;PL;3;PST
slargar V;IPFV;IND;PL;3;PST
ponciar V;IMP;PL;3;LGSPEC1
stropar V;SBJV;SG;1;PRS;LGSPEC2
dormir V;IMP;PL;3
serar V;SBJV;SG;1;PRS;LGSPEC2
strapegar V;SBJV;SG;1;PRS;LGSPEC2
modifegar V;SBJV;SG;1;PRS;LGSPEC1
prodùr V;IPFV;IND;PL;3;PST
capir V;IND;PL;1;FUT
asistar V;SBJV;SG;3;PRS
conosar V;IMP;PL;3
studiar V;COND;SG;2
tajar V;IPFV;IND;SG;3;PST
acreditar V;COND;PL;3
pociar V;IND;SG;2;FUT
métar V;SBJV;PL;2;PRS
ałestir V;IPFV;SBJV;SG;1;PST
desgatejar V;IMP;PL;1
scorlar V;IPFV;SBJV;PL;3;PST
scrivar V;SBJV;PL;2;PRS
ponciar V;IND;PL;2;PRS
łegałixar V;IMP;PL;1
scorlar V;SBJV;SG;3;PRS
inventar V;IND;PL;2;FUT
sarare V;IPFV;SBJV;SG;3;PST
justar V;IPFV;IND;SG;2;PST
usir V;IND;PL;2;PRS
alzsar V;IPFV;SBJV;SG;1;PST
cołegar V;IND;PL;2;PRS
sunar V;IMP;SG;2
criar V;IPFV;IND;SG;2;PST
ciapar V;SBJV;SG;3;PRS;LGSPEC1
limitar V;SBJV;PL;1;PRS;LGSPEC1
soranomenar V;IND;SG;3;PRS
controłar V;IND;PL;3;FUT
vantar V;IPFV;IND;SG;1;PST
butar V;IND;PL;2;FUT
colpir V;IPFV;SBJV;PL;1;PST
bacajar V;IND;PL;3;FUT
inaugurar V;IND;SG;2;PRS
ciacołar V;IMP;PL;3;LGSPEC1
dormir V;IND;PL;2;FUT
strénxar V;IND;SG;1;PRS
entrar V;SBJV;SG;1;PRS;LGSPEC1
sachegiar V;NFIN
anbir V;IND;PL;1;PRS
strabucar V;IND;PL;3;FUT
convìnzsar V;IPFV;SBJV;PL;2;PST
scorlar V;IND;SG;2;PRS;LGSPEC2
jutar V;IND;PL;2;PRS
mandar V;IND;SG;2;PRS
invojar V;SBJV;PL;1;PRS;LGSPEC2
łigar V;IND;PL;2;PRS
bagnar V;IND;SG;1;PRS
spacar V;SBJV;PL;1;PRS;LGSPEC1
comerçar V;IND;PL;3;PRS
tastar V;IND;SG;3;PRS
tamixar V;IMP;PL;3;LGSPEC2
provar V;IND;PL;2;FUT
capir V;SBJV;PL;2;PRS
conbatar V;COND;SG;3
èser V;IPFV;SBJV;SG;3;PST
tacar V;IND;PL;2;PRS
urtar V;IMP;SG;3;LGSPEC1
véndar V;IPFV;IND;PL;2;PST
çentrałizar V;SBJV;PL;3;PRS;LGSPEC2
asumar V;IPFV;IND;SG;3;PST
vìnsar V;IPFV;SBJV;PL;1;PST
sachegiar V;IPFV;IND;PL;3;PST
sluxegar V;IND;PL;1;PRS;LGSPEC2
exagerar V;SBJV;SG;1;PRS;LGSPEC2
curar V;IPFV;SBJV;SG;2;PST
métar V;IMP;PL;3
stisar V;COND;SG;2
invełenar V;IND;PL;2;FUT
slongar V;IND;PL;3;PRS
bojir V;IPFV;IND;SG;3;PST
spojar V;SBJV;PL;1;PRS;LGSPEC2
slargar V;IPFV;SBJV;SG;2;PST
svejar V;SBJV;SG;1;PRS;LGSPEC1
ametar V;IMP;PL;1
sluxegar V;IPFV;SBJV;SG;1;PST
incroxar V;IND;PL;2;FUT
sujerir V;IMP;SG;2
asaltar V;IND;SG;2;PRS
sonar V;IND;SG;2;PRS
traversar V;IPFV;IND;SG;1;PST
pociar V;COND;SG;2
calcołar V;IPFV;IND;SG;1;PST
parlar V;IPFV;SBJV;PL;3;PST
limitar V;IPFV;SBJV;PL;1;PST
salvar V;SBJV;SG;3;PRS;LGSPEC2
inaugurar V;SBJV;SG;3;PRS;LGSPEC1
petar V;IMP;PL;3;LGSPEC1
maurar V;IND;SG;1;PRS
sorar V;IPFV;SBJV;SG;1;PST
criar V;SBJV;SG;3;PRS;LGSPEC2
strabucar V;SBJV;PL;1;PRS;LGSPEC1
carezxar V;IMP;SG;3;LGSPEC1
cascar V;IMP;PL;3;LGSPEC2
parlar V;SBJV;PL;3;PRS;LGSPEC2
sorar V;IPFV;IND;PL;1;PST
somejar V;IMP;SG;3;LGSPEC1
bójar V;IPFV;IND;PL;1;PST
strigar V;IPFV;SBJV;PL;3;PST
unir V;IND;SG;3;FUT
remar V;IND;SG;3;PRS
dir V;IPFV;SBJV;PL;3;PST
doparar V;IND;PL;1;PRS;LGSPEC2
crédar V;COND;SG;1
vestir V;IPFV;SBJV;PL;3;PST
sostituir V;IND;SG;3;FUT
supiàr V;IMP;PL;3;LGSPEC2
atribuir V;IND;SG;1;FUT
sachegiar V;COND;PL;2
suar V;IND;SG;2;PRS
cargar V;IMP;PL;1
carołar V;SBJV;PL;3;PRS;LGSPEC1
anoverar V;IPFV;SBJV;SG;2;PST
łevar V;IPFV;IND;SG;2;PST
apostrofar V;IMP;SG;3;LGSPEC2
menar V;IPFV;SBJV;SG;3;PST
córar V;IMP;SG;3
pełar V;SBJV;PL;3;PRS;LGSPEC1
xontar V;IPFV;SBJV;SG;3;PST
ónxar V;COND;SG;3
pestar V;SBJV;SG;2;PRS
limitar V;IND;PL;1;PRS;LGSPEC2
smagrir V;IPFV;SBJV;SG;3;PST
pestar V;COND;SG;1
morir V;COND;PL;1
aterar V;IMP;SG;3;LGSPEC2
scóndar V;IND;SG;3;FUT
castrar V;IND;PL;1;PRS;LGSPEC1
ofrir V;COND;SG;2
desligar V;IND;PL;2;PRS
rasar V;IND;SG;1;FUT
parer V;IND;SG;1;PRS
anoverar V;IND;PL;3;FUT
strapegar V;SBJV;SG;3;PRS;LGSPEC1
covèrzar V;IMP;PL;1
prodùr V;COND;SG;3
roxegar V;SBJV;PL;3;PRS;LGSPEC2
augurar V;IND;SG;3;PRS
scrivar V;IPFV;IND;PL;3;PST
viajar V;SBJV;PL;2;PRS
domandar V;IND;SG;2;FUT
ciacołar V;IND;PL;2;FUT
sgrafar V;IPFV;SBJV;PL;3;PST
vìvar V;IPFV;SBJV;SG;3;PST
bacajar V;IND;PL;3;PRS
carołar V;IND;PL;3;FUT
piànxar V;IND;PL;2;PRS
acetar V;IND;SG;3;FUT
bacajar V;IND;SG;1;FUT
łegałixar V;IPFV;SBJV;PL;1;PST
sfrixar V;IMP;PL;1
crédar V;IPFV;SBJV;PL;3;PST
taconar V;IPFV;SBJV;PL;2;PST
sgnaolar V;IND;SG;3;PRS
rìdar V;IPFV;SBJV;PL;2;PST
sachegiar V;IND;PL;2;FUT
tugar V;IMP;SG;3;LGSPEC2
tetar V;IMP;PL;3;LGSPEC2
comerçar V;SBJV;SG;1;PRS;LGSPEC2
postar V;COND;PL;2
sbuxar V;IMP;SG;3;LGSPEC2
spoliar V;IND;PL;3;FUT
destacar V;IPFV;SBJV;PL;2;PST
sciocar V;SBJV;PL;1;PRS;LGSPEC1
spaxemar V;COND;SG;3
cuèrzar V;IPFV;IND;PL;2;PST
carezsar V;SBJV;PL;3;PRS;LGSPEC2
caminar V;SBJV;SG;3;PRS;LGSPEC1
pasar V;IND;PL;2;PRS
spojar V;IPFV;IND;PL;1;PST
destacar V;IMP;SG;2
curar V;IMP;SG;2
catar V;IPFV;SBJV;PL;1;PST
aver V;IMP;SG;2
bàtar V;IPFV;IND;SG;1;PST
bójar V;IMP;PL;3
sachegiar V;SBJV;SG;1;PRS;LGSPEC1
ocupar V;IND;PL;3;PRS
tacar V;IMP;PL;2
traversar V;SBJV;PL;1;PRS;LGSPEC2
brustołar V;COND;PL;2
parlar V;IND;SG;2;FUT
trincar V;IPFV;SBJV;SG;2;PST
vogar V;IMP;SG;2
misiar V;IPFV;SBJV;SG;1;PST
anoverar V;IPFV;SBJV;PL;2;PST
castrar V;COND;PL;2
uxar V;IND;PL;1;FUT
tugar V;IND;PL;3;FUT
tegner V;IND;SG;2;PRS
mancar V;COND;PL;1
viajar V;IND;PL;1;FUT
desgozar V;IPFV;SBJV;PL;3;PST
saltar V;IND;PL;2;PRS
abitar V;NFIN
realisar V;IND;SG;2;PRS
scuminsiar V;IND;SG;3;PRS
łevar V;IND;PL;2;PRS
oler V;IPFV;SBJV;PL;1;PST
tardigar V;SBJV;SG;2;PRS
smagrir V;IMP;PL;1
invojar V;SBJV;PL;2;PRS
bagnar V;IPFV;IND;SG;3;PST
mołar V;COND;SG;1
noar V;IND;SG;1;PRS
misiar V;IND;PL;1;PRS;LGSPEC1
pociar V;SBJV;PL;1;PRS;LGSPEC2
łavorar V;COND;PL;2
provar V;IND;SG;3;PRS
cavar V;IPFV;IND;SG;3;PST
intrigar V;IMP;PL;2
acreditar V;IPFV;IND;SG;1;PST
tocar V;IMP;PL;1
vestir V;IND;SG;3;PRS
limitar V;IPFV;SBJV;PL;2;PST
remenar V;IPFV;IND;PL;3;PST
topar V;SBJV;SG;1;PRS;LGSPEC2
sentir V;IPFV;SBJV;PL;3;PST
serar V;COND;SG;1
augurar V;IND;PL;2;PRS
ałestir V;COND;SG;1
łustrar V;IPFV;SBJV;SG;3;PST
remenar V;IND;PL;3;PRS
mancar V;SBJV;PL;1;PRS;LGSPEC1
testimoniar V;IND;SG;2;FUT
studiar V;IPFV;IND;PL;1;PST
raprexentar V;SBJV;PL;1;PRS;LGSPEC1
provar V;IND;PL;1;PRS;LGSPEC1
invidiar V;IND;SG;3;PRS
cargar V;SBJV;PL;3;PRS;LGSPEC1
sperar V;IPFV;SBJV;SG;2;PST
copiar V;IND;SG;3;PRS
copiar V;IMP;SG;2
łimar V;IND;PL;1;PRS;LGSPEC2
atribuir V;IPFV;IND;PL;3;PST
restar V;COND;PL;3
acumular V;IMP;PL;1
scóndar V;COND;SG;2
tegner V;COND;SG;3
restar V;IPFV;IND;SG;1;PST
invidar V;IPFV;SBJV;SG;1;PST
xontar V;IND;SG;1;PRS
vìvar V;IMP;PL;3
crédar V;IND;PL;1;PRS
łibarar V;IND;PL;3;PRS
concepir V;IMP;PL;2
soranomenar V;IND;SG;1;FUT
visuałixar V;IPFV;IND;SG;2;PST
servir V;SBJV;SG;3;PRS
ribelar V;IPFV;SBJV;PL;1;PST
copar V;IMP;SG;2
comandar V;SBJV;SG;3;PRS;LGSPEC1
sofegar V;IND;SG;2;FUT
cołegar V;IMP;PL;1
vangar V;IPFV;IND;SG;2;PST
daquar V;IPFV;IND;SG;2;PST
carezsar V;SBJV;PL;2;PRS
costruir V;COND;SG;3
raprexentar V;IND;PL;1;PRS;LGSPEC1
rivar V;IPFV;IND;SG;2;PST
carołar V;SBJV;SG;1;PRS;LGSPEC2
partir V;IPFV;IND;PL;2;PST
prodùxer V;IPFV;SBJV;SG;3;PST
macar V;IND;SG;3;FUT
controłar V;IMP;SG;2
sonar V;IPFV;IND;PL;2;PST
concepir V;IMP;PL;3
smorsar V;IND;SG;2;FUT
obligar V;IND;PL;1;PRS;LGSPEC1
sfrutar V;SBJV;PL;3;PRS;LGSPEC2
aspetar V;SBJV;PL;1;PRS;LGSPEC1
voltar V;IND;PL;2;FUT
vestir V;COND;PL;1
starnudar V;IND;PL;1;PRS;LGSPEC1
incroxar V;IPFV;SBJV;SG;1;PST
conpiłar V;IMP;SG;3;LGSPEC2
fondar V;IND;SG;3;FUT
descovèrzar V;IND;SG;1;FUT
tugar V;IND;PL;1;PRS;LGSPEC1
supiar V;SBJV;SG;3;PRS;LGSPEC1
unir V;IPFV;SBJV;PL;3;PST
controłar V;SBJV;SG;3;PRS;LGSPEC2
remar V;IPFV;IND;PL;2;PST
magnar V;IND;PL;2;FUT
sorar V;IND;SG;2;PRS
tajar V;SBJV;PL;1;PRS;LGSPEC1
piantar V;SBJV;PL;1;PRS;LGSPEC1
confrontar V;SBJV;SG;3;PRS;LGSPEC2
spojar V;IPFV;SBJV;SG;1;PST
çentrałizar V;COND;SG;1
sciocar V;IPFV;IND;SG;1;PST
starnudar V;NFIN
supiar V;COND;SG;3
stupar V;IPFV;SBJV;SG;3;PST
saltar V;SBJV;SG;2;PRS
roversar V;COND;SG;1
stupar V;SBJV;PL;3;PRS;LGSPEC1
remar V;IMP;PL;2
spiar V;IND;SG;1;FUT
sajar V;COND;PL;1
rostir V;IMP;SG;2
rumegar V;IMP;PL;3;LGSPEC1
calcołar V;IMP;PL;3;LGSPEC2
incroxar V;COND;PL;3
arestar V;IPFV;SBJV;SG;2;PST
tremar V;IND;SG;3;FUT
bazxotar V;IMP;PL;3;LGSPEC1
pareciar V;IPFV;IND;SG;2;PST
stuxar V;IMP;PL;3;LGSPEC1
desidar V;IND;PL;2;FUT
fondar V;IND;SG;3;PRS
vìvar V;COND;PL;1
conosar V;IPFV;IND;PL;3;PST
bacajar V;IND;PL;2;FUT
conosar V;COND;PL;1
studiar V;IMP;PL;2
tocar V;IND;PL;3;PRS
zontar V;IND;SG;1;FUT
exagerar V;SBJV;SG;1;PRS;LGSPEC1
becar V;COND;PL;2
sfondrar V;IPFV;IND;SG;2;PST
comandar V;IMP;SG;3;LGSPEC2
ciocar V;SBJV;PL;3;PRS;LGSPEC2
sgropar V;SBJV;PL;2;PRS
sciocar V;IMP;SG;3;LGSPEC1
stropar V;IND;SG;2;FUT
tastar V;IMP;PL;3;LGSPEC2
atribuir V;IPFV;SBJV;PL;2;PST
influensar V;IMP;PL;1
bruxar V;IPFV;IND;SG;3;PST
amar V;IND;SG;3;PRS
amar V;IND;PL;3;PRS
desbrojar V;IMP;SG;3;LGSPEC1
maciar V;IPFV;SBJV;SG;2;PST
covèrzar V;IND;PL;3;PRS
slisegar V;IND;PL;1;FUT
rivar V;IND;SG;1;FUT
savariare V;SBJV;SG;1;PRS;LGSPEC2
bacajar V;COND;SG;2
spesegar V;IMP;PL;3;LGSPEC1
vìnsar V;COND;PL;3
desidar V;IPFV;IND;SG;2;PST
roversar V;COND;PL;2
parer V;IND;PL;2;FUT
sluxegar V;IPFV;SBJV;PL;1;PST
copar V;IPFV;SBJV;PL;3;PST
acreditar V;IND;PL;2;FUT
springar V;SBJV;SG;2;PRS
bacajar V;IND;PL;1;FUT
mołar V;SBJV;PL;1;PRS;LGSPEC2
véndar V;IND;PL;3;FUT
sonar V;IPFV;SBJV;SG;3;PST
fondar V;COND;SG;1
carezsar V;IND;PL;1;PRS;LGSPEC1
scoltar V;NFIN
bojir V;SBJV;PL;2;PRS
vansar V;IMP;PL;3;LGSPEC2
slatar V;IPFV;SBJV;SG;3;PST
ałestir V;IPFV;IND;PL;3;PST
gòder V;IPFV;SBJV;PL;3;PST
afermar V;IND;SG;2;PRS
vìnsar V;IND;SG;1;FUT
zontar V;IPFV;IND;SG;2;PST
usir V;IND;SG;2;FUT
viajar V;COND;SG;1
macar V;COND;PL;2
vantar V;SBJV;PL;1;PRS;LGSPEC1
invojar V;IND;PL;1;PRS;LGSPEC1
invełenar V;SBJV;PL;1;PRS;LGSPEC1
invidar V;SBJV;SG;3;PRS;LGSPEC2
tamixar V;SBJV;SG;3;PRS;LGSPEC2
semenar V;IND;SG;3;FUT
calcołar V;IND;PL;3;PRS
voxar V;IPFV;SBJV;PL;2;PST
ascrivar V;SBJV;SG;1;PRS
servir V;IPFV;SBJV;SG;2;PST
scriver V;IPFV;SBJV;PL;1;PST
sofegar V;COND;PL;3
łibarar V;IPFV;SBJV;SG;1;PST
trincar V;COND;PL;2
sgnaolar V;IPFV;SBJV;PL;3;PST
insegnar V;IND;SG;1;PRS
acumular V;IPFV;SBJV;SG;2;PST
piantar V;COND;PL;3
costumar V;IND;SG;1;FUT
tugar V;IPFV;IND;SG;1;PST
star V;COND;PL;1
spacar V;COND;SG;3
sgnaolar V;COND;PL;1
spiar V;IND;PL;2;PRS
augurar V;IND;PL;1;PRS;LGSPEC1
raxónxer V;IPFV;SBJV;PL;3;PST
desgatejar V;IPFV;IND;PL;3;PST
somejar V;IPFV;IND;SG;1;PST
sorar V;IND;PL;3;FUT
ciuciar V;COND;SG;1
spacar V;SBJV;SG;2;PRS
xontar V;IPFV;IND;PL;2;PST
vałer V;SBJV;SG;3;PRS
ałestir V;IPFV;IND;SG;3;PST
aver V;IPFV;SBJV;PL;3;PST
taconar V;SBJV;PL;1;PRS;LGSPEC2
aprovar V;IMP;PL;3;LGSPEC2
asaltar V;IPFV;SBJV;SG;2;PST
prodùxer V;IPFV;IND;PL;2;PST
sparagnar V;IND;PL;3;FUT
intrigar V;IND;SG;2;FUT
finansiar V;IND;PL;1;PRS;LGSPEC2
tirar V;COND;SG;3
jutar V;IMP;PL;3;LGSPEC2
raxónxer V;IPFV;IND;PL;2;PST
udar V;IND;SG;2;FUT
xontar V;IMP;SG;3;LGSPEC1
spacar V;IND;PL;1;PRS;LGSPEC1
inaugurar V;IPFV;SBJV;PL;1;PST
rasar V;IND;PL;1;PRS;LGSPEC1
acreditar V;IND;PL;1;PRS;LGSPEC2
svodar V;IND;PL;3;PRS
desgatejar V;SBJV;PL;3;PRS;LGSPEC2
desgozar V;IND;PL;2;FUT
vernixar V;IND;SG;1;FUT
stuar V;IPFV;SBJV;PL;2;PST
roversar V;IPFV;IND;PL;2;PST
gòder V;IPFV;SBJV;PL;2;PST
sgropar V;IND;PL;2;PRS
curar V;IND;PL;1;PRS;LGSPEC2
batizxar V;IMP;PL;3;LGSPEC2
semenar V;COND;SG;3
petar V;IND;PL;3;FUT
viajar V;IMP;PL;3;LGSPEC1
testimoniar V;IMP;PL;3;LGSPEC2
slùxar V;IPFV;IND;PL;1;PST
supiar V;IND;PL;1;FUT
bałar V;IND;PL;2;PRS
jutar V;SBJV;SG;2;PRS
trar V;SBJV;SG;3;PRS;LGSPEC2
sperar V;IND;PL;1;FUT
cavar V;IPFV;SBJV;SG;3;PST
bociar V;IND;SG;1;FUT
pociar V;SBJV;SG;1;PRS;LGSPEC1
vansar V;IND;SG;2;PRS
raprexentar V;IPFV;IND;PL;1;PST
spostar V;IPFV;IND;PL;1;PST
testimoniar V;IMP;SG;3;LGSPEC1
sgropar V;SBJV;SG;3;PRS;LGSPEC2
brazsar V;SBJV;PL;1;PRS;LGSPEC2
sotomesar V;COND;SG;2
amar V;IMP;SG;3;LGSPEC2
sfexar V;IPFV;SBJV;PL;3;PST
cargar V;IND;SG;1;FUT
realisar V;IMP;SG;3;LGSPEC2
bixognar V;IND;SG;3;PRS;LGSPEC2
caminar V;IND;SG;3;FUT
deventar V;IND;SG;2;FUT
morir V;IND;PL;2;FUT
domandar V;IND;SG;1;PRS
viajar V;SBJV;SG;2;PRS
sfrixar V;SBJV;PL;1;PRS;LGSPEC1
taconar V;IPFV;IND;SG;2;PST
somejar V;IMP;SG;2
cantar V;IMP;PL;2
taxer V;SBJV;PL;3;PRS
butar V;IND;SG;1;FUT
cuxir V;COND;SG;3
sbiansar V;SBJV;SG;1;PRS;LGSPEC1
soranomenar V;SBJV;SG;3;PRS;LGSPEC1
mandar V;IND;SG;3;FUT
pasar V;IPFV;IND;SG;1;PST
mandar V;IMP;SG;3;LGSPEC1
spojar V;IND;PL;1;FUT
topar V;SBJV;SG;1;PRS;LGSPEC1
carezsar V;COND;SG;1
saltar V;IPFV;SBJV;SG;1;PST
ciacołar V;IMP;PL;1
vałer V;IPFV;SBJV;SG;1;PST
sparagnar V;IMP;SG;2
oler V;IND;PL;1;PRS
saltar V;SBJV;PL;2;PRS
sponciar V;IMP;PL;3;LGSPEC2
convìnzsar V;COND;SG;2;LGSPEC1
sgnaolar V;SBJV;PL;2;PRS
noar V;IND;SG;2;FUT
entrar V;COND;PL;1
vèrzar V;IND;SG;1;FUT
spoxar V;IPFV;SBJV;SG;2;PST
descovèrzar V;IPFV;IND;PL;1;PST
nominar V;IND;PL;1;FUT
traversar V;IND;SG;2;FUT
arivar V;IMP;PL;1
arivar V;IPFV;SBJV;SG;2;PST
cantar V;COND;SG;3
inaugurar V;IMP;SG;3;LGSPEC1
rostir V;IND;PL;3;FUT
modifegar V;IND;PL;1;FUT
dormir V;SBJV;PL;1;PRS
becar V;IPFV;SBJV;PL;2;PST
bociar V;IMP;PL;3;LGSPEC1
alzsar V;IND;PL;2;PRS
ocupar V;NFIN
picar V;IPFV;SBJV;PL;2;PST
bruscar V;COND;PL;2
piantar V;IPFV;IND;PL;1;PST
sponciar V;SBJV;SG;3;PRS;LGSPEC2
cuxir V;SBJV;SG;2;PRS
costumar V;SBJV;SG;2;PRS
tegner V;SBJV;SG;3;PRS
sałudar V;IPFV;IND;SG;1;PST
ałestir V;SBJV;PL;2;PRS
aver V;IND;SG;3;FUT
amar V;IPFV;IND;SG;2;PST
cascar V;IPFV;IND;SG;3;PST
convìnzsar V;IND;SG;2;PRS
stuar V;IND;SG;1;PRS
invernixar V;IPFV;IND;PL;1;PST
ciapar V;SBJV;SG;3;PRS;LGSPEC2
taxer V;IND;PL;3;PRS
sarare V;IMP;PL;1
pónxar V;IND;SG;3;FUT
aspetar V;IND;PL;2;PRS
bàtar V;SBJV;PL;2;PRS
inverinar V;IPFV;SBJV;SG;3;PST
sbregar V;SBJV;SG;1;PRS;LGSPEC2
métar V;IND;PL;3;FUT
aprovar V;COND;SG;3
córar V;IMP;SG;2
spoxar V;COND;SG;1
vantar V;COND;PL;1
spetar V;IND;SG;1;FUT
ricordar V;SBJV;SG;1;PRS;LGSPEC1
star V;IMP;PL;1
rancurar V;IPFV;IND;PL;2;PST
spiegar V;IND;SG;2;PRS
salvar V;COND;PL;2
aspetar V;SBJV;SG;3;PRS;LGSPEC2
bàtar V;IND;SG;2;FUT
tociar V;IPFV;SBJV;SG;3;PST
cuèrzar V;COND;PL;2
spiegar V;IND;PL;3;PRS
comandar V;COND;SG;3
apartegnir V;IND;PL;3;FUT
ribelar V;IPFV;SBJV;SG;3;PST
ocupar V;IPFV;IND;SG;3;PST
usir V;IPFV;SBJV;PL;1;PST
augurar V;IPFV;SBJV;SG;3;PST
springar V;IPFV;SBJV;PL;3;PST
scoltar V;SBJV;PL;3;PRS;LGSPEC1
dir V;IND;PL;3;FUT
łimar V;IMP;SG;3;LGSPEC2
ocupar V;IND;SG;2;PRS
asistar V;IND;SG;1;FUT
slùxar V;IND;SG;3;FUT
ciuciar V;SBJV;SG;1;PRS;LGSPEC1
łibarar V;IND;SG;1;FUT
bacajar V;IND;SG;3;PRS
vałer V;SBJV;PL;2;PRS
pensar V;IND;SG;3;FUT
łibarar V;COND;SG;3
sparagnar V;IND;PL;2;FUT
star V;IPFV;IND;PL;2;PST
mandar V;SBJV;SG;3;PRS;LGSPEC2
sciocar V;SBJV;SG;3;PRS;LGSPEC2
sbiansar V;IPFV;IND;SG;2;PST
topar V;SBJV;SG;3;PRS;LGSPEC2
spetar V;SBJV;SG;2;PRS
mołar V;IMP;SG;2
slisegar V;SBJV;PL;3;PRS;LGSPEC1
arivar V;COND;PL;3
vernixar V;IND;SG;2;FUT
pensar V;IPFV;IND;PL;3;PST
ribelar V;IND;SG;2;PRS
salvar V;IND;PL;1;PRS;LGSPEC2
scrivar V;SBJV;PL;3;PRS
asaltar V;SBJV;PL;3;PRS;LGSPEC2
spesegar V;IPFV;IND;SG;1;PST
bruxar V;COND;PL;3
çentrałizar V;IMP;SG;3;LGSPEC2
butar V;IMP;SG;3;LGSPEC1
vangar V;IND;PL;1;FUT
łibarar V;IMP;PL;3;LGSPEC2
smagrir V;SBJV;PL;3;PRS
sarare V;COND;PL;1
sponciar V;COND;SG;3
sgrafar V;IPFV;IND;PL;3;PST
ricordar V;SBJV;PL;3;PRS;LGSPEC2
deventar V;IND;PL;1;PRS;LGSPEC1
sbrajar V;IND;PL;2;PRS
bagnar V;SBJV;PL;1;PRS;LGSPEC2
tacar V;IMP;PL;3;LGSPEC2
danar V;IND;SG;3;FUT
comerçar V;IMP;PL;3;LGSPEC1
cargar V;IPFV;IND;PL;2;PST
vèrzar V;SBJV;PL;1;PRS
inventar V;IND;PL;2;PRS
ricordar V;IND;SG;1;PRS
udar V;IPFV;IND;SG;1;PST
spaxemar V;IND;SG;3;PRS
starnudar V;IMP;PL;2
acumular V;IPFV;SBJV;PL;2;PST
inventar V;IND;PL;1;FUT
prodùxer V;IND;PL;2;FUT
rumegar V;IPFV;SBJV;SG;1;PST
łigar V;IMP;PL;2
mandar V;IPFV;SBJV;SG;3;PST
insegnar V;IPFV;IND;PL;2;PST
taxer V;IND;PL;2;FUT
pónxar V;SBJV;PL;2;PRS
supiàr V;IPFV;IND;SG;1;PST
proclamar V;SBJV;SG;2;PRS
parer V;SBJV;PL;1;PRS
svejar V;IPFV;SBJV;PL;1;PST
conosar V;IPFV;SBJV;PL;3;PST
spaxemar V;IND;SG;3;FUT
costruir V;IPFV;IND;PL;3;PST
mandar V;IPFV;SBJV;SG;2;PST
ciamar V;SBJV;SG;1;PRS;LGSPEC1
costumar V;NFIN
criar V;COND;SG;1
dir V;SBJV;PL;1;PRS
raxónxer V;IPFV;IND;SG;2;PST
piantar V;IPFV;SBJV;SG;3;PST
spacar V;IPFV;SBJV;PL;1;PST
ciamar V;IPFV;IND;PL;1;PST
pónxar V;SBJV;SG;2;PRS
copiar V;IPFV;IND;PL;2;PST
ricordar V;IPFV;IND;PL;2;PST
vìvar V;IND;PL;1;PRS
meritar V;IND;PL;3;FUT
somejar V;SBJV;PL;1;PRS;LGSPEC2
udar V;IND;PL;3;FUT
dir V;COND;PL;2
conosar V;SBJV;SG;2;PRS
sugerir V;COND;PL;1
realisar V;SBJV;SG;1;PRS;LGSPEC2
tardigar V;COND;SG;3
insìstar V;IND;PL;2;PRS
provar V;SBJV;SG;3;PRS;LGSPEC1
sofegar V;IMP;SG;3;LGSPEC1
morsegar V;IMP;SG;2
piantar V;IMP;PL;2
topar V;IMP;SG;3;LGSPEC1
macar V;SBJV;PL;1;PRS;LGSPEC2
łibarar V;SBJV;PL;3;PRS;LGSPEC2
aderir V;COND;PL;1
intivar V;SBJV;PL;1;PRS;LGSPEC2
descargar V;COND;PL;2
costar V;COND;PL;3
desbrojar V;COND;PL;3
mantegner V;IND;SG;1;PRS
scoltar V;IND;SG;2;FUT
alzsar V;IND;PL;3;PRS
spacar V;IPFV;SBJV;PL;2;PST
sentir V;SBJV;PL;1;PRS
èser V;IPFV;IND;SG;1;PST;LGSPEC3
ciapar V;IPFV;IND;SG;2;PST
topar V;IMP;PL;1
vìnsar V;SBJV;PL;2;PRS
testimoniar V;SBJV;SG;1;PRS;LGSPEC1
partir V;SBJV;PL;2;PRS
batexemar V;IPFV;IND;PL;1;PST
covèrzar V;IND;PL;3;FUT
aspetar V;IND;PL;3;FUT
raprexentar V;SBJV;SG;3;PRS;LGSPEC1
limitar V;SBJV;PL;3;PRS;LGSPEC1
gòder V;COND;SG;2
sgrafar V;IND;SG;2;PRS
córar V;COND;PL;3
canbiar V;IPFV;IND;PL;3;PST
supiar V;IPFV;SBJV;PL;2;PST
conbatar V;IPFV;SBJV;PL;2;PST
inventar V;IPFV;IND;SG;3;PST
łustrar V;COND;SG;1
carezsar V;IPFV;SBJV;PL;3;PST
vestir V;SBJV;PL;2;PRS
canbiar V;NFIN
magnar V;IND;SG;3;PRS
sonar V;IMP;PL;2
conosar V;IND;PL;2;FUT
proclamar V;IND;SG;1;FUT
inventar V;IND;PL;3;FUT
vèrzar V;IPFV;SBJV;PL;1;PST
parer V;SBJV;PL;2;PRS
sentar V;IND;PL;2;PRS
morsegar V;IND;PL;1;PRS;LGSPEC1
desmentegar V;IND;PL;1;PRS;LGSPEC1
busnar V;IND;SG;1;FUT
spiar V;IND;PL;2;FUT
bojir V;IPFV;IND;SG;1;PST
castrar V;IND;SG;3;FUT
bojir V;IPFV;SBJV;SG;1;PST
divìdar V;IMP;PL;2
svejar V;IND;PL;3;PRS
urtar V;SBJV;SG;2;PRS
ofendar V;IMP;PL;1
misiar V;IPFV;IND;PL;1;PST
łustrar V;IND;SG;3;PRS
bevarar V;IPFV;IND;PL;3;PST
maurar V;IPFV;SBJV;SG;1;PST
tirar V;IPFV;SBJV;PL;2;PST
sluxegar V;SBJV;PL;1;PRS;LGSPEC2
copiar V;IPFV;IND;SG;1;PST
łavorar V;IND;PL;3;FUT
cunar V;SBJV;SG;3;PRS;LGSPEC2
bałar V;IPFV;IND;SG;3;PST
postar V;IND;SG;1;PRS
vixitar V;SBJV;PL;1;PRS;LGSPEC2
tetar V;SBJV;PL;2;PRS
sofegar V;IND;PL;1;FUT
limitar V;IMP;SG;3;LGSPEC2
pareciar V;SBJV;PL;1;PRS;LGSPEC1
slùxar V;SBJV;SG;1;PRS;LGSPEC2
noar V;IMP;SG;3;LGSPEC1
sperar V;IPFV;SBJV;SG;1;PST
colpir V;IMP;PL;2
somejar V;IMP;PL;1
castrar V;IMP;PL;3;LGSPEC1
augurar V;IPFV;IND;SG;3;PST
scuminsiar V;COND;SG;1
desmontar V;SBJV;PL;3;PRS;LGSPEC1
bałar V;COND;PL;1
rasar V;IPFV;SBJV;SG;3;PST
topar V;IPFV;IND;SG;3;PST
divìdar V;IND;PL;1;PRS
voxar V;IPFV;SBJV;PL;3;PST
invojar V;IPFV;SBJV;PL;1;PST
saltar V;SBJV;SG;3;PRS;LGSPEC2
carołar V;COND;SG;1
confrontar V;COND;SG;3
domandar V;IMP;SG;3;LGSPEC2
asistar V;IND;PL;3;FUT
ciuciar V;IND;SG;3;PRS
jutar V;SBJV;SG;1;PRS;LGSPEC1
cavar V;SBJV;SG;2;PRS
apartegnir V;IND;SG;3;FUT
sunar V;IND;PL;2;FUT
serar V;IMP;SG;3;LGSPEC1
bociar V;IND;PL;3;PRS
finir V;IND;PL;1;FUT
supiàr V;IMP;PL;3;LGSPEC1
inpizar V;IPFV;SBJV;SG;2;PST
modifegar V;SBJV;SG;1;PRS;LGSPEC2
fondar V;IMP;PL;1
scuminsiar V;IND;PL;1;PRS;LGSPEC1
segar V;IND;SG;3;FUT
ałestir V;IND;SG;3;FUT
ciapar V;IPFV;SBJV;PL;1;PST
exagerar V;SBJV;PL;1;PRS;LGSPEC1
bociar V;SBJV;PL;1;PRS;LGSPEC2
pełar V;COND;PL;1
daquar V;IND;SG;1;PRS
amar V;IMP;PL;3;LGSPEC1
parlar V;IPFV;SBJV;SG;3;PST
aterar V;IPFV;SBJV;PL;2;PST
afitar V;IND;PL;2;PRS
parlar V;IMP;PL;2
sajar V;IPFV;IND;SG;2;PST
asumar V;SBJV;SG;1;PRS
deventar V;IMP;PL;3;LGSPEC1
bazxotar V;COND;PL;1
vixitar V;IMP;PL;2
sbrisiar V;SBJV;PL;3;PRS;LGSPEC1
strigar V;SBJV;SG;3;PRS;LGSPEC2
votar V;IPFV;IND;PL;1;PST
batexemar V;IND;PL;2;PRS
sgrafar V;IPFV;IND;SG;1;PST
tirar V;IPFV;SBJV;PL;3;PST
spiar V;IMP;PL;1
stupar V;IND;PL;3;PRS
tegner V;IND;PL;3;FUT
intorcołar V;IND;PL;2;FUT
spacar V;IMP;PL;3;LGSPEC1
rancurar V;SBJV;SG;1;PRS;LGSPEC2
sunar V;SBJV;PL;3;PRS;LGSPEC2
catar V;COND;PL;3
bojir V;IPFV;IND;PL;3;PST
spełar V;SBJV;PL;3;PRS;LGSPEC1
łustrar V;COND;SG;2
stranuar V;IPFV;SBJV;SG;3;PST
raprexentar V;IPFV;IND;PL;3;PST
parlar V;SBJV;SG;1;PRS;LGSPEC1
brustołar V;IPFV;SBJV;PL;1;PST
rumar V;IPFV;IND;PL;3;PST
influensar V;IPFV;IND;PL;1;PST
exagerar V;IPFV;SBJV;SG;1;PST
sgnaolar V;IMP;SG;3;LGSPEC1
slongar V;COND;PL;2
asaltar V;SBJV;PL;2;PRS
rancurar V;IND;PL;3;PRS
incroxar V;IPFV;IND;SG;2;PST
nàsar V;COND;SG;1
svejar V;SBJV;SG;3;PRS;LGSPEC2
costruir V;SBJV;PL;2;PRS
raprexentar V;IPFV;SBJV;PL;2;PST
insegnar V;COND;PL;3
invernixar V;IPFV;SBJV;SG;1;PST
afermar V;IPFV;SBJV;PL;1;PST
pisar V;SBJV;PL;3;PRS;LGSPEC2
exagerar V;SBJV;SG;3;PRS;LGSPEC2
abitar V;SBJV;PL;1;PRS;LGSPEC1
raprexentar V;COND;PL;3
sofegar V;IND;SG;2;PRS
postar V;IND;SG;2;PRS
stuar V;SBJV;SG;1;PRS;LGSPEC2
proclamar V;IND;PL;2;PRS
sparagnar V;COND;SG;1
provar V;IPFV;IND;PL;2;PST
védar V;IMP;SG;3
spetar V;IND;SG;3;PRS
èser V;IPFV;SBJV;SG;2;PST
desidar V;IPFV;SBJV;PL;1;PST
uxar V;SBJV;SG;1;PRS;LGSPEC1
brazsar V;IND;PL;1;FUT
aderir V;COND;PL;3
voltar V;SBJV;SG;3;PRS;LGSPEC2
abitar V;IPFV;IND;SG;3;PST
spiar V;SBJV;SG;1;PRS;LGSPEC1
baxar V;IND;PL;3;FUT
misiar V;SBJV;SG;1;PRS;LGSPEC2
scriver V;IND;PL;2;FUT
sunar V;IND;SG;3;FUT
costumar V;IND;PL;1;PRS;LGSPEC1
spetar V;SBJV;PL;1;PRS;LGSPEC1
svejar V;SBJV;PL;3;PRS;LGSPEC2
zontar V;IMP;SG;3;LGSPEC2
taxer V;IPFV;IND;SG;1;PST
savariare V;IPFV;SBJV;SG;1;PST
sarare V;IPFV;IND;SG;3;PST
brustołar V;SBJV;SG;3;PRS;LGSPEC1
tremar V;SBJV;SG;1;PRS;LGSPEC2
łegałixar V;IND;PL;1;FUT
sałudar V;IPFV;SBJV;SG;3;PST
tardigar V;SBJV;SG;3;PRS;LGSPEC2
curar V;IND;PL;1;PRS;LGSPEC1
doparar V;SBJV;PL;3;PRS;LGSPEC2
destacar V;IPFV;IND;PL;1;PST
limitar V;IND;SG;2;PRS
invojar V;IMP;PL;1
daquar V;IMP;PL;3;LGSPEC2
semenar V;IPFV;SBJV;PL;1;PST
carołar V;IMP;PL;3;LGSPEC1
slargar V;COND;PL;2
strapegar V;IND;PL;1;PRS;LGSPEC1
slargar V;IND;SG;2;FUT
modifegar V;IPFV;SBJV;PL;2;PST
carołar V;IPFV;SBJV;SG;1;PST
raprexentar V;IND;PL;1;PRS;LGSPEC2
incroxar V;IND;PL;1;FUT
oxar V;COND;PL;2
testimoniar V;IND;PL;2;PRS
proclamar V;IPFV;SBJV;PL;1;PST
intorcołar V;COND;SG;1
destacar V;SBJV;PL;1;PRS;LGSPEC1
serar V;IMP;PL;1
bixognar V;IND;SG;3;PRS;LGSPEC1
aprovar V;SBJV;PL;3;PRS;LGSPEC1
strapegar V;COND;PL;2
misiar V;SBJV;PL;2;PRS
bagnar V;COND;SG;2
costar V;IMP;SG;3;LGSPEC1
insegnar V;NFIN
desidar V;SBJV;SG;1;PRS;LGSPEC2
dir V;IND;SG;2;FUT
descovèrzar V;IND;PL;2;FUT
spostar V;IND;PL;3;PRS
sgnacar V;IND;SG;2;PRS
rasar V;IND;SG;2;FUT
desmentegar V;IND;PL;3;FUT
concepir V;IMP;SG;3
proclamar V;IND;PL;1;FUT
slisegar V;IND;PL;1;PRS;LGSPEC2
conpletar V;IMP;SG;3;LGSPEC1
sajar V;IND;SG;1;PRS
sbiansar V;COND;SG;2
xontar V;COND;SG;1
spuar V;SBJV;SG;3;PRS;LGSPEC1
slatar V;SBJV;SG;1;PRS;LGSPEC2
confrontar V;COND;PL;2
comerçar V;SBJV;PL;2;PRS
cosołar V;IND;PL;2;PRS
covèrzar V;SBJV;PL;1;PRS
ribelar V;IMP;PL;3;LGSPEC2
sfrutar V;SBJV;SG;1;PRS;LGSPEC2
trar V;IPFV;IND;PL;2;PST
slatar V;COND;PL;1
ciuciar V;IMP;PL;3;LGSPEC2
bójar V;IPFV;SBJV;SG;1;PST
vogar V;SBJV;SG;1;PRS;LGSPEC2
nominar V;IPFV;SBJV;PL;3;PST
colpir V;IPFV;SBJV;SG;3;PST
calcołar V;COND;PL;3
spoxar V;IPFV;IND;SG;3;PST
tamixar V;IMP;SG;3;LGSPEC1
spetar V;IND;SG;2;PRS
intosegar V;IND;PL;3;PRS
desbrojar V;IPFV;SBJV;SG;3;PST
sotomesar V;IND;SG;1;FUT
asistar V;COND;PL;3
convìnzsar V;SBJV;PL;1;PRS
intosegar V;COND;PL;3
viajar V;IPFV;IND;SG;2;PST
begar V;SBJV;SG;1;PRS;LGSPEC1
jutar V;SBJV;SG;1;PRS;LGSPEC2
scoltar V;IND;SG;3;PRS
rodołar V;IND;PL;2;FUT
trar V;IPFV;IND;PL;3;PST
spacar V;SBJV;PL;3;PRS;LGSPEC2
sofegar V;IPFV;SBJV;SG;1;PST
maciar V;SBJV;PL;2;PRS
partir V;IPFV;IND;PL;3;PST
costar V;COND;SG;1
modifegar V;IMP;SG;2
pèrdar V;IMP;SG;2
udar V;SBJV;PL;1;PRS;LGSPEC1
mołar V;IND;PL;3;PRS
łimar V;COND;PL;1
smagrir V;COND;PL;3
stanpar V;IND;PL;1;PRS;LGSPEC1
topar V;IND;PL;1;FUT
schincar V;IND;PL;1;PRS;LGSPEC1
slùxar V;COND;SG;1
bójar V;IND;PL;3;FUT
sorar V;IND;SG;1;PRS
conpiłar V;SBJV;SG;3;PRS;LGSPEC2
stropar V;NFIN
maurar V;IPFV;SBJV;SG;2;PST
desbrojar V;IND;SG;3;PRS
unir V;IPFV;IND;PL;3;PST
invadar V;IPFV;IND;SG;3;PST
costar V;IND;PL;1;PRS;LGSPEC2
xontar V;IPFV;SBJV;SG;2;PST
batizxar V;IND;SG;3;PRS
svodar V;IND;SG;1;FUT
rumar V;IMP;PL;2
ocupar V;IMP;PL;3;LGSPEC2
finir V;SBJV;PL;3;PRS
destacar V;IND;PL;2;PRS
trar V;COND;SG;3
slisegar V;SBJV;PL;1;PRS;LGSPEC1
pèrdar V;IND;PL;2;FUT
strabucar V;IND;PL;1;FUT
segar V;IND;PL;2;PRS
ametar V;IND;SG;1;PRS
móvar V;IND;PL;2;PRS
spetar V;IMP;PL;2
conbatar V;IMP;SG;2
morir V;IMP;SG;2
sostituir V;SBJV;PL;3;PRS
testimoniar V;IPFV;IND;SG;2;PST
verxar V;SBJV;SG;3;PRS;LGSPEC1
maurar V;IMP;PL;2
smagrir V;IPFV;IND;PL;1;PST
modifegar V;IPFV;SBJV;SG;3;PST
pociar V;IPFV;SBJV;PL;1;PST
sachegiar V;SBJV;PL;1;PRS;LGSPEC2
tornar V;NFIN
pisar V;IMP;PL;1
picar V;IPFV;SBJV;SG;1;PST
taxer V;COND;SG;2
sunar V;SBJV;SG;2;PRS
rivar V;IMP;PL;3;LGSPEC2
intorcołar V;IPFV;IND;PL;1;PST
remenar V;IPFV;SBJV;SG;2;PST
deventar V;SBJV;SG;1;PRS;LGSPEC1
copiar V;IND;PL;1;FUT
limitar V;SBJV;PL;3;PRS;LGSPEC2
spacar V;IPFV;IND;PL;1;PST
segar V;IND;PL;3;PRS
stuar V;SBJV;PL;3;PRS;LGSPEC1
viajar V;IND;SG;1;FUT
sbiansar V;SBJV;SG;1;PRS;LGSPEC2
netar V;IMP;SG;3;LGSPEC1
carezsar V;IND;SG;2;FUT
pestar V;IND;SG;3;PRS
serar V;IPFV;SBJV;PL;1;PST
vestir V;COND;SG;3
taconar V;SBJV;PL;3;PRS;LGSPEC1
canbiar V;IMP;PL;1
rumar V;SBJV;PL;1;PRS;LGSPEC2
desmontar V;IND;PL;1;PRS;LGSPEC1
vernixar V;IPFV;IND;PL;1;PST
robar V;IMP;SG;3;LGSPEC1
vołer V;IPFV;IND;SG;2;PST
tociar V;COND;PL;3
vernixar V;SBJV;SG;3;PRS;LGSPEC1
fondar V;IPFV;SBJV;SG;3;PST
invadar V;IND;PL;2;PRS
spoliar V;SBJV;PL;3;PRS;LGSPEC1
svejar V;IPFV;IND;PL;2;PST
tardigar V;IPFV;IND;PL;1;PST
anoverar V;IND;PL;1;PRS;LGSPEC2
afermar V;IMP;SG;3;LGSPEC1
gòder V;IPFV;IND;PL;3;PST
baxar V;IND;PL;3;PRS
crédar V;IMP;PL;3
parer V;IPFV;SBJV;SG;3;PST
tetar V;IND;PL;1;FUT
smorsar V;SBJV;SG;3;PRS;LGSPEC2
strabucar V;COND;PL;1
slatar V;COND;PL;3
spoliar V;IPFV;IND;PL;1;PST
aderir V;IND;SG;2;PRS
bójar V;IND;SG;2;FUT
somejar V;IPFV;SBJV;PL;3;PST
justar V;COND;PL;2
scrivar V;SBJV;SG;3;PRS
catar V;IMP;SG;3;LGSPEC1
védar V;COND;PL;2
prodùxer V;IND;PL;3;FUT
bagnar V;SBJV;SG;3;PRS;LGSPEC2
confrontar V;COND;SG;2
conbatar V;IMP;PL;1
petar V;IPFV;SBJV;PL;2;PST
raxónxer V;COND;PL;3
védar V;IPFV;SBJV;PL;2;PST
maurar V;IND;PL;3;FUT
calcołar V;IPFV;IND;SG;2;PST
bacajar V;IPFV;IND;PL;1;PST
raprexentar V;IMP;PL;3;LGSPEC1
topar V;SBJV;SG;3;PRS;LGSPEC1
slongar V;NFIN
batizxar V;SBJV;SG;3;PRS;LGSPEC1
tornar V;SBJV;SG;3;PRS;LGSPEC2
brazsar V;IMP;SG;3;LGSPEC2
asaltar V;IND;PL;1;PRS;LGSPEC1
pociar V;SBJV;PL;3;PRS;LGSPEC2
pareciar V;IND;PL;2;PRS
partir V;COND;SG;1
remar V;IND;SG;1;PRS
ofrir V;IND;SG;1;PRS
rasar V;SBJV;SG;1;PRS;LGSPEC2
sbiansar V;IPFV;IND;SG;1;PST
cargar V;IND;SG;2;PRS
destacar V;IPFV;IND;SG;1;PST
roxegar V;IND;PL;3;PRS
castrar V;SBJV;PL;2;PRS
strabucar V;SBJV;PL;1;PRS;LGSPEC2
arestar V;IND;PL;3;PRS
łimar V;IMP;PL;2
acetar V;IND;PL;1;FUT
spostar V;SBJV;PL;1;PRS;LGSPEC2
bruxar V;IND;SG;1;PRS
butar V;IND;SG;2;PRS
begar V;SBJV;PL;1;PRS;LGSPEC1
castrar V;IPFV;SBJV;SG;2;PST
portar V;IPFV;IND;SG;3;PST
arestar V;SBJV;PL;3;PRS;LGSPEC1
slùxar V;SBJV;PL;3;PRS;LGSPEC2
rostir V;IMP;PL;1
atribuir V;SBJV;PL;3;PRS
limitar V;IPFV;SBJV;SG;2;PST
conzsar V;COND;SG;1
roversar V;SBJV;SG;3;PRS;LGSPEC2
voxar V;IND;PL;1;PRS;LGSPEC1
rostir V;IND;PL;1;FUT
spuar V;IND;SG;1;FUT
postar V;NFIN
modifegar V;IPFV;IND;PL;2;PST
arivar V;IMP;SG;3;LGSPEC2
rodołar V;IPFV;SBJV;SG;2;PST
scriver V;IPFV;IND;PL;1;PST
spojar V;IND;PL;3;PRS
tugar V;SBJV;SG;1;PRS;LGSPEC1
viajar V;IMP;PL;3;LGSPEC2
sluxegar V;IND;PL;2;PRS
udar V;IPFV;IND;SG;2;PST
anbir V;IPFV;SBJV;PL;2;PST
rumar V;SBJV;SG;1;PRS;LGSPEC1
copiar V;IND;PL;2;PRS
scrivar V;IPFV;SBJV;PL;1;PST
sorar V;IPFV;SBJV;PL;1;PST
carezxar V;IMP;PL;3;LGSPEC1
slongar V;COND;SG;1
aderir V;COND;SG;2
costar V;SBJV;SG;1;PRS;LGSPEC2
łevar V;IMP;SG;3;LGSPEC2
rìdar V;IPFV;IND;SG;2;PST
strupiar V;SBJV;SG;1;PRS;LGSPEC1
svodar V;IMP;SG;3;LGSPEC1
rasar V;IPFV;SBJV;PL;2;PST
inaugurar V;IPFV;SBJV;SG;1;PST
voxar V;IND;PL;1;FUT
comandar V;IND;SG;2;FUT
sgnacar V;SBJV;SG;3;PRS;LGSPEC1
ciapar V;SBJV;SG;1;PRS;LGSPEC1
bearar V;SBJV;SG;3;PRS;LGSPEC2
starnudar V;IND;PL;1;PRS;LGSPEC2
aterar V;IPFV;SBJV;PL;3;PST
alzsar V;IMP;SG;3;LGSPEC1
raxónxer V;IPFV;IND;SG;3;PST
strupiar V;IMP;PL;2
sostituir V;IND;PL;1;FUT
spojar V;COND;PL;3
prodùr V;IPFV;IND;SG;3;PST
aderir V;COND;SG;1
sfrutar V;IND;PL;1;PRS;LGSPEC1
costruir V;IND;PL;2;FUT
misiar V;SBJV;SG;2;PRS
pensar V;IND;PL;2;PRS
batexemar V;IMP;PL;3;LGSPEC1
vixitar V;IND;PL;1;PRS;LGSPEC1
tirar V;IND;PL;2;PRS
scrivar V;IND;SG;1;FUT
tajar V;IND;PL;1;PRS;LGSPEC1
morir V;IND;SG;2;PRS
descovèrzar V;IND;SG;2;PRS
batizxar V;SBJV;SG;3;PRS;LGSPEC2
pestar V;SBJV;PL;1;PRS;LGSPEC1
łevar V;IND;SG;2;FUT
tetar V;SBJV;PL;1;PRS;LGSPEC1
starnudar V;COND;PL;1
maciar V;COND;SG;2
łegałixar V;IMP;SG;3;LGSPEC1
daquar V;IMP;SG;2
ponciar V;SBJV;SG;1;PRS;LGSPEC2
sparagnar V;IPFV;IND;PL;3;PST
ciapar V;SBJV;SG;1;PRS;LGSPEC2
invidiar V;IMP;SG;3;LGSPEC2
acreditar V;SBJV;PL;2;PRS
finansiar V;IND;SG;2;FUT
vernixar V;IPFV;IND;PL;3;PST
sugerir V;IMP;SG;2
parlar V;SBJV;SG;2;PRS
ofendar V;IPFV;IND;PL;1;PST
sguaratar V;SBJV;PL;3;PRS;LGSPEC1
cavar V;COND;SG;2
canbiar V;IPFV;IND;PL;2;PST
scrivar V;IND;PL;2;PRS
carezsar V;COND;SG;2
cosołar V;IMP;PL;3;LGSPEC2
catar V;IPFV;IND;PL;3;PST
łigar V;IND;PL;3;PRS
portar V;SBJV;SG;2;PRS
cołegar V;IPFV;IND;SG;1;PST
tajar V;IPFV;SBJV;SG;3;PST
sugar V;IND;SG;2;PRS
ónxar V;IND;PL;3;PRS
slatar V;IPFV;SBJV;SG;2;PST
bàtar V;COND;SG;1
vèrzar V;COND;PL;1
insìstar V;IPFV;SBJV;SG;3;PST
taxer V;SBJV;SG;2;PRS
picar V;IPFV;SBJV;SG;3;PST
pèrdar V;IPFV;IND;SG;2;PST
pestar V;SBJV;PL;2;PRS
bevarar V;SBJV;PL;2;PRS
vangar V;IND;PL;1;PRS;LGSPEC2
springar V;SBJV;SG;1;PRS;LGSPEC1
ciuciar V;IPFV;SBJV;SG;1;PST
stranuar V;NFIN
deventar V;SBJV;SG;3;PRS;LGSPEC2
sonar V;SBJV;PL;2;PRS
cunar V;IPFV;IND;SG;3;PST
robar V;NFIN
costumar V;IPFV;SBJV;SG;1;PST
spacar V;IND;PL;2;FUT
piantar V;SBJV;SG;3;PRS;LGSPEC1
exagerar V;COND;PL;3
pexar V;IND;PL;3;FUT
pensar V;IPFV;SBJV;PL;2;PST
udar V;SBJV;PL;3;PRS;LGSPEC2
stanpar V;IND;SG;1;FUT
soranomenar V;SBJV;SG;3;PRS;LGSPEC2
vansar V;IPFV;IND;SG;3;PST
pareciar V;IPFV;IND;SG;1;PST
testimoniar V;IND;PL;1;PRS;LGSPEC1
spetar V;IND;PL;1;PRS;LGSPEC2
sciocar V;SBJV;SG;1;PRS;LGSPEC2
desligar V;COND;SG;2
rostir V;IPFV;SBJV;SG;3;PST
rìdar V;NFIN
siełier V;SBJV;SG;1;PRS
pisar V;SBJV;SG;1;PRS;LGSPEC2
invojar V;SBJV;PL;3;PRS;LGSPEC2
fracar V;IND;SG;2;FUT
vìvar V;IND;SG;2;FUT
trincar V;IND;SG;2;PRS
slongar V;IPFV;SBJV;SG;2;PST
macar V;IND;SG;1;PRS
remenar V;IPFV;SBJV;PL;2;PST
cargar V;IPFV;SBJV;PL;2;PST
sunar V;IMP;PL;2
desmontar V;IND;PL;1;PRS;LGSPEC2
serar V;IND;PL;1;PRS;LGSPEC2
covèrzar V;SBJV;SG;2;PRS
vìnsar V;IND;SG;2;FUT
vernixar V;SBJV;SG;2;PRS
dormir V;COND;PL;3
brazsar V;IPFV;SBJV;PL;1;PST
strapegar V;SBJV;PL;1;PRS;LGSPEC2
spoxar V;SBJV;PL;2;PRS
pónxar V;COND;SG;3
insegnar V;COND;PL;1
conbatar V;SBJV;SG;2;PRS
meritar V;COND;SG;2
nominar V;IMP;SG;2
pasar V;COND;SG;1
roversar V;IMP;SG;2
covèrzar V;SBJV;SG;1;PRS
piànxar V;IPFV;SBJV;SG;2;PST
sentar V;IPFV;IND;SG;2;PST
vołer V;COND;SG;3
maurar V;COND;PL;3
vansar V;SBJV;SG;3;PRS;LGSPEC1
sfexar V;IPFV;SBJV;PL;2;PST
nominar V;NFIN
descargar V;IMP;SG;2
łigar V;IND;PL;1;PRS;LGSPEC2
modifegar V;IND;PL;1;PRS;LGSPEC1
insìstar V;IMP;PL;1
cunar V;SBJV;PL;2;PRS
sbuxar V;SBJV;SG;1;PRS;LGSPEC2
salvar V;IPFV;SBJV;PL;3;PST
sorar V;COND;PL;1
vantar V;COND;PL;2
exagerar V;COND;SG;2
stuar V;IPFV;SBJV;PL;3;PST
cargar V;IND;SG;2;FUT
robar V;IND;PL;3;FUT
intivar V;SBJV;SG;1;PRS;LGSPEC1
sajar V;IPFV;IND;SG;3;PST
brustołar V;IMP;PL;3;LGSPEC2
afitar V;IPFV;IND;PL;1;PST
vangar V;COND;SG;1
confrontar V;IND;PL;3;PRS
gestir V;IND;PL;2;PRS
arfiar V;IPFV;IND;SG;1;PST
bagnar V;IND;SG;1;FUT
cołegar V;IPFV;SBJV;PL;2;PST
cołegar V;IND;PL;3;FUT
pisar V;IND;PL;1;PRS;LGSPEC1
sgnaolar V;IPFV;SBJV;PL;2;PST
pónxar V;IPFV;SBJV;PL;1;PST
domandar V;IND;SG;1;FUT
cuxir V;IND;PL;2;PRS
cargar V;IND;PL;2;FUT
sentir V;IND;PL;1;PRS
desmontar V;IND;SG;1;FUT
restar V;IMP;SG;3;LGSPEC2
apartegnir V;COND;PL;2
cargar V;SBJV;PL;2;PRS
sguaratar V;IND;PL;1;FUT
asaltar V;IMP;SG;2
vernixar V;IND;PL;3;PRS
spiegar V;IMP;SG;2
strigar V;COND;SG;2
ciocar V;IPFV;IND;PL;3;PST
asumar V;IND;PL;3;PRS
stuxar V;SBJV;SG;1;PRS;LGSPEC2
arfiar V;IPFV;IND;PL;2;PST
curar V;IMP;SG;3;LGSPEC2
mancar V;IPFV;SBJV;SG;2;PST
bexognar V;IPFV;IND;SG;3;PST
asistar V;IPFV;SBJV;PL;3;PST
sugar V;IMP;PL;1
baxar V;IPFV;IND;SG;2;PST
slisegar V;IND;SG;1;FUT
carezxar V;IPFV;IND;SG;2;PST
carezxar V;SBJV;PL;3;PRS;LGSPEC2
costruir V;COND;PL;2
arfiar V;IMP;SG;3;LGSPEC1
covèrzar V;IPFV;IND;SG;1;PST
costar V;IPFV;IND;PL;2;PST
sachegiar V;IPFV;IND;PL;2;PST
tirar V;IMP;SG;2
starnudar V;IPFV;SBJV;SG;2;PST
védar V;IPFV;IND;SG;3;PST
canbiar V;SBJV;SG;1;PRS;LGSPEC2
sałudar V;SBJV;SG;2;PRS
udar V;IND;SG;1;PRS
slùxar V;IND;SG;3;PRS
stanpar V;SBJV;PL;1;PRS;LGSPEC1
cavar V;IPFV;SBJV;SG;1;PST
obligar V;IMP;SG;3;LGSPEC2
bàtar V;COND;SG;2
intivar V;IMP;PL;2
pisar V;COND;SG;2
calcołar V;SBJV;PL;1;PRS;LGSPEC1
tastar V;IMP;SG;3;LGSPEC2
ónxar V;IMP;SG;3
savariare V;IND;SG;1;PRS
cascar V;IMP;SG;2
vìnsar V;COND;PL;2
pensar V;NFIN
cunar V;COND;PL;2
tugar V;IPFV;SBJV;PL;2;PST
ofendar V;IND;SG;3;PRS
sonar V;IPFV;SBJV;PL;2;PST
vìnsar V;NFIN
pareciar V;IMP;SG;3;LGSPEC2
scoltar V;IPFV;SBJV;PL;1;PST
conpiłar V;NFIN
oler V;IPFV;SBJV;SG;3;PST
brazsar V;IPFV;SBJV;PL;3;PST
sarare V;IMP;SG;3;LGSPEC2
sunar V;IND;PL;1;FUT
bociar V;COND;PL;3
trar V;IMP;SG;3;LGSPEC1
spoxar V;COND;PL;3
ciamar V;IND;SG;3;FUT
testimoniar V;IND;PL;1;PRS;LGSPEC2
copiar V;COND;PL;2
intivar V;IND;PL;1;PRS;LGSPEC1
vestir V;IPFV;IND;SG;2;PST
strigar V;IPFV;IND;PL;2;PST
aprovar V;IND;SG;2;PRS
augurar V;IPFV;SBJV;PL;2;PST
sparagnar V;IPFV;SBJV;PL;2;PST
confrontar V;IND;SG;3;PRS
sfexar V;IND;PL;2;PRS
siełier V;COND;SG;3
pèrdar V;IND;PL;3;FUT
ricordar V;NFIN
controłar V;SBJV;SG;1;PRS;LGSPEC2
restar V;IPFV;SBJV;SG;1;PST
bruscar V;IND;PL;3;FUT
vangar V;IMP;PL;3;LGSPEC2
anbir V;IND;SG;3;FUT
prodùr V;NFIN
finir V;IND;PL;1;PRS
vestir V;SBJV;SG;1;PRS
servir V;COND;PL;3
salvar V;SBJV;SG;2;PRS
vernixar V;COND;SG;1
svejar V;COND;SG;2
vansar V;NFIN
semenar V;IMP;PL;2
colpir V;IND;PL;2;FUT
rostir V;IND;PL;3;PRS
zontar V;IND;SG;2;PRS
portar V;SBJV;SG;1;PRS;LGSPEC2
testimoniar V;SBJV;PL;2;PRS
begar V;IPFV;IND;SG;2;PST
sbuxar V;IND;SG;1;PRS
justar V;IPFV;IND;SG;3;PST
stropar V;IND;SG;1;FUT
gòder V;IND;SG;2;FUT
soranomenar V;IMP;PL;3;LGSPEC2
studiar V;COND;PL;2
tegner V;COND;PL;2
sarar V;SBJV;PL;2;PRS
maurar V;COND;PL;2
alzsar V;IPFV;SBJV;SG;3;PST
stupar V;IPFV;IND;SG;1;PST
intosegar V;COND;PL;1
costumar V;IMP;PL;3;LGSPEC1
cuèrzar V;IND;SG;3;PRS
łimar V;IND;PL;1;PRS;LGSPEC1
smorsar V;IND;PL;1;FUT
sonar V;IPFV;IND;SG;2;PST
cargar V;COND;SG;3
costumar V;IPFV;SBJV;PL;1;PST
semenar V;SBJV;SG;3;PRS;LGSPEC2
invojar V;IND;PL;1;PRS;LGSPEC2
supiar V;SBJV;SG;1;PRS;LGSPEC2
ciacołar V;IND;SG;2;PRS
insegnar V;IPFV;SBJV;PL;1;PST
spiar V;SBJV;SG;2;PRS
alzsar V;SBJV;PL;1;PRS;LGSPEC1
castrar V;SBJV;SG;1;PRS;LGSPEC2
sarar V;IPFV;IND;PL;2;PST
oxar V;IPFV;SBJV;SG;2;PST
ciamar V;NFIN
deventar V;IND;PL;2;FUT
urtar V;IPFV;IND;PL;3;PST
cantar V;SBJV;SG;3;PRS;LGSPEC1
arar V;IND;PL;1;PRS;LGSPEC2
prodùr V;IPFV;SBJV;SG;2;PST
daquar V;IND;SG;3;PRS
anoverar V;SBJV;PL;1;PRS;LGSPEC2
vałer V;IMP;PL;2
intorcołar V;IND;SG;1;PRS
vansar V;COND;SG;1
domandar V;IPFV;IND;SG;3;PST
semenar V;IMP;PL;3;LGSPEC2
tociar V;SBJV;SG;2;PRS
costruir V;IPFV;SBJV;SG;2;PST
descovèrzar V;IMP;SG;2
spetar V;IPFV;IND;SG;1;PST
rìdar V;IMP;PL;1
parlar V;COND;SG;2
bacajar V;SBJV;PL;3;PRS;LGSPEC1
sfondrar V;IPFV;SBJV;PL;3;PST
tornar V;IPFV;SBJV;PL;3;PST
vestir V;IPFV;IND;PL;3;PST
picar V;COND;PL;1
prodùr V;IPFV;IND;PL;1;PST
sbiansar V;IND;PL;3;PRS
métar V;COND;SG;1
bagnar V;SBJV;PL;3;PRS;LGSPEC1
noar V;IPFV;IND;SG;2;PST
sciocar V;IPFV;SBJV;SG;3;PST
tocar V;IPFV;IND;SG;1;PST
doparar V;IMP;PL;2
butar V;SBJV;SG;2;PRS
supiàr V;IPFV;SBJV;SG;1;PST
pociar V;IPFV;SBJV;SG;3;PST
slisegar V;IND;SG;2;PRS
bociar V;IND;PL;3;FUT
spiegar V;COND;SG;2
sentir V;SBJV;PL;2;PRS
acumular V;IPFV;IND;PL;1;PST
pensar V;IMP;PL;2
spuar V;COND;PL;2
fracar V;IND;SG;3;FUT
cascar V;IMP;SG;3;LGSPEC2
spacar V;COND;SG;1
maciar V;IND;SG;1;PRS
crédar V;NFIN
scuminsiar V;IND;SG;2;PRS
vestir V;SBJV;SG;2;PRS
influensar V;SBJV;SG;1;PRS;LGSPEC1
prodùr V;COND;SG;2
rumar V;IPFV;SBJV;PL;1;PST
védar V;SBJV;PL;2;PRS
pensar V;SBJV;PL;3;PRS;LGSPEC1
incroxar V;SBJV;PL;2;PRS
tornar V;IMP;SG;3;LGSPEC1
arfiar V;IND;PL;1;PRS;LGSPEC2
partir V;SBJV;SG;1;PRS
asumar V;IPFV;IND;PL;1;PST
conpletar V;IMP;PL;2
bojir V;COND;SG;3
ciamar V;COND;SG;1
intosegar V;SBJV;SG;1;PRS;LGSPEC1
ofrir V;IND;SG;3;PRS
sgnacar V;SBJV;SG;3;PRS;LGSPEC2
pociar V;IND;SG;3;FUT
pexar V;IPFV;IND;SG;2;PST
strénxar V;COND;PL;2
sfondrar V;IND;PL;2;PRS
remar V;IPFV;SBJV;PL;3;PST
brazsar V;IPFV;IND;SG;2;PST
incroxar V;SBJV;SG;3;PRS;LGSPEC2
sarare V;IND;PL;1;PRS;LGSPEC2
taxer V;IMP;PL;3
vangar V;IND;SG;1;PRS
strigar V;IMP;PL;3;LGSPEC1
pexar V;SBJV;SG;3;PRS;LGSPEC1
intivar V;COND;SG;2
bojir V;IPFV;SBJV;SG;3;PST
vangar V;SBJV;SG;1;PRS;LGSPEC2
servir V;IPFV;SBJV;PL;1;PST
vìnsar V;IPFV;IND;SG;2;PST
tocar V;IND;PL;2;FUT
smorsar V;COND;PL;3
afermar V;IND;PL;2;PRS
roxegar V;SBJV;SG;3;PRS;LGSPEC1
servir V;IPFV;IND;SG;1;PST
realisar V;IND;SG;1;FUT
cantar V;COND;SG;1
sentar V;IND;PL;3;PRS
calcołar V;COND;SG;2
augurar V;IMP;SG;3;LGSPEC1
udar V;SBJV;SG;2;PRS
starnudar V;IPFV;SBJV;PL;3;PST
traversar V;IND;SG;3;PRS
danar V;SBJV;PL;3;PRS;LGSPEC2
inaugurar V;IND;PL;3;FUT
vìvar V;IPFV;SBJV;PL;2;PST
proclamar V;COND;SG;2
picar V;IPFV;IND;PL;2;PST
łibarar V;IPFV;SBJV;SG;3;PST
ciuciar V;COND;PL;2
fracar V;IMP;SG;3;LGSPEC2
copar V;SBJV;SG;3;PRS;LGSPEC1
afitar V;NFIN
copiar V;SBJV;PL;1;PRS;LGSPEC2
desbrojar V;IND;SG;2;FUT
scoltar V;IPFV;SBJV;PL;3;PST
invojar V;IND;PL;3;FUT
vixitar V;IND;SG;2;PRS
vansar V;IND;PL;1;FUT
móvar V;NFIN
pónxar V;IPFV;IND;SG;2;PST
intosegar V;COND;SG;1
roversar V;COND;SG;2
spoxar V;SBJV;PL;1;PRS;LGSPEC2
mandar V;IPFV;IND;SG;2;PST
exagerar V;IND;PL;2;PRS
vardar V;SBJV;SG;3;PRS;LGSPEC2
roversar V;IND;SG;2;PRS
bałar V;COND;SG;2
pociar V;IPFV;IND;SG;1;PST
tardigar V;IPFV;SBJV;PL;3;PST
spiar V;IMP;SG;3;LGSPEC2
dettar V;COND;PL;1
slargar V;SBJV;PL;3;PRS;LGSPEC1
svejar V;IPFV;SBJV;SG;2;PST
modifegar V;IND;PL;1;PRS;LGSPEC2
netar V;IMP;PL;1
raxónxer V;IMP;SG;2
roversar V;IMP;PL;1
oxar V;IND;SG;1;PRS
łigar V;IND;PL;3;FUT
rivar V;IPFV;IND;SG;1;PST
criar V;IND;SG;1;PRS
verxar V;IND;PL;1;FUT
obligar V;SBJV;SG;3;PRS;LGSPEC1
ametar V;COND;SG;2
sarar V;COND;SG;3
tocar V;IND;PL;2;PRS
trincar V;IND;SG;3;FUT
divìdar V;IMP;PL;1
desbrojar V;SBJV;SG;1;PRS;LGSPEC2
entrar V;IPFV;IND;PL;1;PST
alzsar V;IND;SG;1;PRS
sarar V;SBJV;SG;1;PRS;LGSPEC2
rumegar V;IMP;PL;3;LGSPEC2
ciamar V;IND;PL;3;FUT
sbrajar V;IND;PL;2;FUT
sbregar V;COND;SG;2
costumar V;IPFV;IND;SG;1;PST
sguaratar V;SBJV;SG;1;PRS;LGSPEC2
justar V;IND;SG;2;PRS
scrivar V;IND;PL;3;PRS
ałestir V;IND;PL;3;FUT
castrar V;COND;PL;1
visuałixar V;SBJV;SG;1;PRS;LGSPEC2
stropar V;SBJV;PL;1;PRS;LGSPEC1
alzsar V;IMP;SG;2
sbiansar V;IPFV;IND;SG;3;PST
partir V;COND;PL;3
vixitar V;COND;PL;1
batexemar V;SBJV;PL;2;PRS
picar V;IPFV;IND;PL;1;PST
łevar V;IPFV;IND;PL;1;PST
controłar V;IPFV;IND;PL;3;PST
butar V;NFIN
alzsar V;SBJV;SG;1;PRS;LGSPEC2
sgropar V;SBJV;SG;1;PRS;LGSPEC1
portar V;IPFV;SBJV;SG;3;PST
sguaratar V;IND;PL;1;PRS;LGSPEC1
noar V;IPFV;SBJV;SG;2;PST
slargar V;SBJV;SG;3;PRS;LGSPEC2
strabucar V;IMP;SG;3;LGSPEC1
magnar V;IPFV;SBJV;SG;2;PST
modifegar V;IPFV;IND;SG;1;PST
sgropar V;IND;PL;2;FUT
supiàr V;IND;SG;2;PRS
arivar V;IMP;PL;3;LGSPEC2
desgatejar V;SBJV;PL;2;PRS
sperar V;IMP;PL;2
fondar V;IND;PL;3;PRS
carezsar V;IND;PL;3;FUT
raxónxer V;IND;SG;1;FUT
abitar V;SBJV;SG;1;PRS;LGSPEC2
servir V;IND;SG;1;FUT
vangar V;SBJV;SG;1;PRS;LGSPEC1
vèrzar V;IND;SG;1;PRS
apostrofar V;SBJV;PL;3;PRS;LGSPEC2
pontar V;IPFV;SBJV;SG;3;PST
łegałixar V;COND;PL;1
noar V;IMP;PL;1
urtar V;SBJV;SG;1;PRS;LGSPEC2
costar V;SBJV;PL;3;PRS;LGSPEC1
carezxar V;IMP;PL;2
scuminsiar V;IPFV;SBJV;PL;1;PST
asaltar V;IPFV;SBJV;SG;3;PST
crédar V;IND;SG;2;FUT
ascrivar V;IND;SG;3;PRS
łustrar V;IMP;PL;2
stisar V;IPFV;SBJV;SG;2;PST
spoxar V;IPFV;SBJV;PL;1;PST
pareciar V;IPFV;SBJV;PL;2;PST
riciamar V;IPFV;IND;PL;2;PST
desgozar V;SBJV;PL;1;PRS;LGSPEC2
vardar V;IND;PL;1;FUT
asaltar V;IPFV;IND;SG;2;PST
savariare V;COND;PL;1
sugerir V;IPFV;IND;PL;3;PST
morsegar V;IMP;SG;3;LGSPEC1
sfondrar V;IND;PL;3;PRS
busnar V;IPFV;SBJV;PL;3;PST
costar V;IPFV;IND;SG;1;PST
sotomesar V;IND;PL;1;FUT
morsegar V;IMP;SG;3;LGSPEC2
rancurar V;IND;PL;1;PRS;LGSPEC1
svejar V;SBJV;PL;1;PRS;LGSPEC1
ciacołar V;IMP;PL;2
pasar V;IND;SG;2;FUT
invidiar V;SBJV;SG;1;PRS;LGSPEC1
gestir V;IPFV;IND;SG;1;PST
conosar V;IPFV;SBJV;SG;3;PST
brustołar V;IND;PL;1;PRS;LGSPEC2
fracar V;IMP;PL;1
traversar V;SBJV;SG;3;PRS;LGSPEC1
acreditar V;IND;SG;2;PRS
cargar V;SBJV;SG;1;PRS;LGSPEC1
brazsar V;IPFV;IND;PL;3;PST
sachegiar V;IPFV;SBJV;PL;1;PST
parlar V;SBJV;SG;3;PRS;LGSPEC2
supiar V;NFIN
tardigar V;COND;SG;1
spiar V;SBJV;SG;3;PRS;LGSPEC1
curar V;IND;SG;2;PRS
intosegar V;IND;PL;1;PRS;LGSPEC2
cuxir V;IMP;PL;3
intosegar V;IND;SG;1;FUT
studiar V;IMP;SG;3;LGSPEC1
spełar V;IMP;PL;1
afitar V;COND;SG;3
aterar V;IPFV;SBJV;SG;2;PST
costruir V;SBJV;PL;1;PRS
slisegar V;IMP;SG;3;LGSPEC2
modifegar V;IND;SG;1;PRS
supiàr V;IPFV;IND;PL;2;PST
vernixar V;SBJV;PL;3;PRS;LGSPEC1
menar V;IND;SG;1;PRS
piànxar V;IPFV;SBJV;PL;1;PST
entrar V;COND;PL;2
sfondrar V;IND;SG;2;FUT
crédar V;COND;PL;3
aver V;COND;SG;1;LGSPEC3
vèrzar V;IMP;SG;2
vìnsar V;SBJV;PL;3;PRS
sparagnar V;COND;SG;3
sfrixar V;IND;PL;1;PRS;LGSPEC1
catar V;SBJV;SG;1;PRS;LGSPEC1
cascar V;COND;PL;1
serar V;IPFV;IND;SG;1;PST
desmentegar V;IPFV;SBJV;SG;1;PST
asumar V;IND;SG;1;FUT
ricordar V;IPFV;SBJV;SG;1;PST
èser V;IND;PL;1;PRS
tacar V;SBJV;PL;1;PRS;LGSPEC2
prodùxer V;SBJV;SG;2;PRS
svodar V;IPFV;SBJV;PL;3;PST
spoxar V;SBJV;PL;1;PRS;LGSPEC1
trincar V;COND;PL;1
ofendar V;COND;PL;1
insìstar V;IPFV;SBJV;SG;1;PST
bociar V;IND;PL;1;PRS;LGSPEC1
mancar V;SBJV;SG;1;PRS;LGSPEC1
magnar V;IPFV;SBJV;SG;3;PST
parlar V;IND;SG;3;PRS
tamixar V;SBJV;PL;3;PRS;LGSPEC2
cavar V;COND;SG;3
desgatejar V;IMP;PL;2
scriver V;IPFV;SBJV;PL;2;PST
pestar V;IMP;PL;2
vogar V;SBJV;PL;3;PRS;LGSPEC1
semenar V;IND;PL;3;FUT
pensar V;IND;SG;2;PRS
ametar V;COND;SG;1
becar V;IND;SG;3;PRS
finir V;IND;SG;1;PRS
netar V;IND;SG;3;PRS
rostir V;COND;SG;2
spojar V;IPFV;SBJV;SG;2;PST
amar V;IND;SG;3;FUT
costar V;IND;SG;1;FUT
èser V;IND;SG;1;FUT
siełier V;IPFV;SBJV;SG;3;PST
spaxemar V;IMP;SG;3;LGSPEC2
ciapar V;IND;SG;3;PRS
sguaratar V;IPFV;SBJV;PL;3;PST
incroxar V;COND;SG;3
pestar V;SBJV;SG;1;PRS;LGSPEC1
cantar V;IND;PL;1;PRS;LGSPEC1
baxar V;IMP;PL;3;LGSPEC2
svodar V;IPFV;IND;SG;3;PST
taconar V;IMP;SG;3;LGSPEC1
sentar V;IND;SG;2;FUT
saltar V;SBJV;SG;1;PRS;LGSPEC1
magnar V;IND;SG;2;PRS
bevarar V;IND;PL;2;PRS
jutar V;IND;PL;3;FUT
tastar V;IND;PL;2;PRS
bagnar V;IND;SG;3;FUT
costumar V;IMP;PL;2
concepir V;COND;SG;2
supiàr V;SBJV;PL;3;PRS;LGSPEC2
comerçar V;IND;SG;1;PRS
canbiar V;SBJV;SG;1;PRS;LGSPEC1
desidar V;SBJV;SG;3;PRS;LGSPEC2
tirar V;COND;SG;1
slargar V;SBJV;SG;2;PRS
viajar V;IPFV;SBJV;PL;2;PST
alzsar V;COND;PL;1
nominar V;IMP;PL;2
mantegner V;IND;SG;3;FUT
sentir V;COND;PL;1
morsegar V;IMP;PL;3;LGSPEC2
batizxar V;IND;PL;2;PRS
acreditar V;SBJV;PL;1;PRS;LGSPEC2
busnar V;NFIN
conbatar V;IPFV;IND;SG;3;PST
rostir V;IPFV;SBJV;PL;2;PST
łegałixar V;IPFV;IND;PL;2;PST
copiar V;IMP;PL;2
taconar V;NFIN
carezsar V;COND;PL;1
menar V;IND;SG;2;PRS
magnar V;IMP;PL;3;LGSPEC2
strapegar V;IPFV;IND;SG;3;PST
slargar V;IMP;PL;2
augurar V;IND;SG;2;PRS
petar V;IMP;SG;3;LGSPEC2
pestar V;NFIN
becar V;IND;PL;2;PRS
sarar V;IND;SG;3;FUT
sbiansar V;SBJV;PL;3;PRS;LGSPEC2
schincar V;SBJV;SG;1;PRS;LGSPEC2
atribuir V;IPFV;SBJV;SG;2;PST
insegnar V;IMP;PL;3;LGSPEC2
invidiar V;COND;PL;2
sbrisiar V;IPFV;IND;PL;3;PST
spaxemar V;IMP;PL;1
spesegar V;SBJV;SG;3;PRS;LGSPEC2
conpletar V;COND;PL;3
remar V;COND;PL;3
sguaratar V;IND;SG;3;FUT
tornar V;SBJV;PL;2;PRS
sbuxar V;COND;SG;2
petar V;SBJV;PL;3;PRS;LGSPEC2
łevar V;COND;SG;3
vangar V;IPFV;SBJV;PL;3;PST
danar V;IND;PL;2;PRS
ciocar V;IND;PL;2;PRS
ałestir V;IND;SG;1;FUT
tugar V;IND;SG;1;FUT
somejar V;IPFV;IND;PL;3;PST
mołar V;IPFV;SBJV;SG;2;PST
atribuir V;SBJV;SG;1;PRS
afitar V;COND;SG;2
tugar V;COND;SG;1
sotomesar V;IND;PL;3;FUT
sostituir V;SBJV;SG;3;PRS
łevar V;SBJV;PL;3;PRS;LGSPEC1
raxónxer V;IMP;SG;3
robar V;IND;SG;2;PRS
verxar V;SBJV;PL;2;PRS
spoxar V;IMP;PL;1
castrar V;SBJV;PL;3;PRS;LGSPEC1
tirar V;IND;PL;2;FUT
sponciar V;COND;PL;3
conosar V;IMP;PL;1
crédar V;IPFV;SBJV;PL;1;PST
misiar V;IPFV;IND;SG;1;PST
cantar V;IPFV;SBJV;PL;2;PST
remar V;IND;PL;2;FUT
spostar V;IMP;SG;3;LGSPEC1
saltar V;IPFV;IND;SG;1;PST
suar V;SBJV;SG;3;PRS;LGSPEC1
semenar V;SBJV;PL;1;PRS;LGSPEC1
stupar V;SBJV;PL;1;PRS;LGSPEC1
sonar V;IND;SG;1;PRS
studiar V;IPFV;SBJV;PL;2;PST
canbiar V;IND;SG;2;FUT
ocupar V;SBJV;PL;3;PRS;LGSPEC1
convìnzsar V;IPFV;IND;SG;3;PST
catar V;COND;SG;1
dormir V;COND;SG;3
sunar V;IMP;PL;1
costumar V;IMP;SG;3;LGSPEC1
tocar V;IPFV;SBJV;SG;1;PST
vèrzar V;SBJV;SG;2;PRS
confrontar V;IPFV;IND;PL;1;PST
bazxotar V;IPFV;IND;PL;2;PST
rìdar V;IMP;SG;3
portar V;IPFV;IND;SG;1;PST
schincar V;SBJV;PL;1;PRS;LGSPEC2
entrar V;IND;PL;1;PRS;LGSPEC1
portar V;SBJV;PL;2;PRS
maciar V;SBJV;SG;1;PRS;LGSPEC1
schincar V;SBJV;PL;3;PRS;LGSPEC1
piànxar V;IPFV;IND;SG;3;PST
aprovar V;IND;SG;3;PRS
macar V;SBJV;PL;1;PRS;LGSPEC1
serar V;IND;SG;3;FUT
domandar V;IND;SG;3;PRS
rumegar V;COND;PL;3
comandar V;IND;SG;3;PRS
urtar V;IPFV;IND;SG;1;PST
spaxemar V;SBJV;SG;3;PRS;LGSPEC1
concepir V;IND;SG;1;PRS
xontar V;IPFV;SBJV;SG;1;PST
stisar V;SBJV;SG;1;PRS;LGSPEC2
begar V;IMP;PL;2
sbrajar V;NFIN
prodùxer V;IMP;PL;1
acetar V;IND;SG;2;PRS
pełar V;SBJV;SG;1;PRS;LGSPEC2
saltar V;IMP;PL;3;LGSPEC2
xontar V;IND;PL;1;FUT
rodołar V;SBJV;PL;2;PRS
conpiłar V;COND;SG;2
maciar V;IND;PL;2;PRS
prodùr V;COND;PL;2
stuar V;IMP;SG;3;LGSPEC1
çentrałizar V;IND;PL;2;PRS
tocar V;IPFV;IND;SG;3;PST
justar V;IPFV;IND;PL;3;PST
doparar V;SBJV;PL;2;PRS
desgatejar V;IMP;PL;3;LGSPEC1
postar V;IPFV;SBJV;PL;3;PST
pisar V;SBJV;SG;3;PRS;LGSPEC1
acumular V;IPFV;SBJV;SG;3;PST
vèrzar V;IND;PL;2;PRS
partir V;IMP;SG;2
pociar V;COND;PL;2
sarar V;IND;SG;3;PRS
tastar V;IPFV;IND;PL;1;PST
desmentegar V;IND;PL;1;PRS;LGSPEC2
begar V;IMP;PL;3;LGSPEC2
convìnzsar V;IND;SG;1;FUT
sajar V;SBJV;SG;1;PRS;LGSPEC2
ribelar V;IPFV;IND;PL;1;PST
rodołar V;COND;PL;1
rancurar V;SBJV;PL;3;PRS;LGSPEC2
criar V;IND;SG;1;FUT
spoxar V;IND;PL;1;PRS;LGSPEC1
conzsar V;IPFV;SBJV;PL;1;PST
stranuar V;IND;SG;1;PRS
riciamar V;IMP;SG;3;LGSPEC1
conpletar V;COND;PL;1
conpiłar V;IND;PL;3;PRS
soranomenar V;IND;SG;2;FUT
sofegar V;IND;PL;3;PRS
raxónxer V;IND;PL;1;PRS
pełar V;IPFV;IND;PL;2;PST
suar V;IPFV;IND;PL;1;PST
comerçar V;IND;PL;1;PRS;LGSPEC1
aver V;IPFV;SBJV;PL;1;PST
strupiar V;IPFV;IND;SG;2;PST
tirar V;COND;PL;1
asaltar V;IND;SG;3;FUT
sorar V;NFIN
busnar V;SBJV;PL;1;PRS;LGSPEC1
obligar V;IND;SG;1;PRS
mantegner V;SBJV;PL;3;PRS
cascar V;COND;PL;3
taxer V;IND;SG;2;FUT
destacar V;IPFV;SBJV;SG;2;PST
meritar V;IND;SG;3;FUT
ofendar V;SBJV;SG;2;PRS
piànxar V;IMP;PL;2
copiar V;IMP;SG;3;LGSPEC1
ascrivar V;IPFV;SBJV;PL;3;PST
concepir V;IND;SG;1;FUT
sbrajar V;IND;PL;3;FUT
fracar V;SBJV;SG;1;PRS;LGSPEC2
pasar V;COND;SG;3
costumar V;IND;SG;3;FUT
zontar V;IMP;PL;2
spełar V;COND;SG;3
voxar V;IND;SG;1;PRS
tegner V;IND;SG;2;FUT
nàsar V;IND;PL;3;PRS
véndar V;IND;PL;2;PRS
inpizar V;IND;SG;1;FUT
stuxar V;NFIN
portar V;IND;PL;3;PRS
carołar V;SBJV;PL;1;PRS;LGSPEC1
copiar V;COND;SG;1
tornar V;IMP;SG;3;LGSPEC2
urtar V;COND;PL;1
visuałixar V;IPFV;IND;SG;3;PST
magnar V;IPFV;IND;PL;2;PST
smorsar V;IPFV;IND;SG;3;PST
raprexentar V;IMP;SG;2
asumar V;SBJV;PL;3;PRS
aderir V;IND;PL;1;PRS
desidar V;IPFV;IND;SG;3;PST
mancar V;IND;PL;2;FUT
stisar V;IPFV;SBJV;SG;3;PST
spetar V;IND;PL;3;PRS
vèrzar V;IND;PL;3;FUT
spełar V;SBJV;PL;3;PRS;LGSPEC2
sbrajar V;COND;PL;1
tirar V;IND;PL;3;PRS
trar V;COND;SG;2
bojir V;COND;PL;1
bociar V;IPFV;SBJV;SG;3;PST
tocar V;IPFV;SBJV;SG;3;PST
riciamar V;IPFV;IND;SG;1;PST
urtar V;IND;SG;3;PRS
pasar V;COND;SG;2
métar V;SBJV;PL;1;PRS
pełar V;IND;PL;2;PRS
arivar V;IND;SG;1;FUT
vìvar V;IMP;PL;2
carezxar V;IND;PL;2;PRS
slatar V;COND;SG;3
slatar V;IPFV;SBJV;PL;2;PST
taconar V;COND;PL;3
colpir V;SBJV;PL;1;PRS
trar V;IPFV;SBJV;PL;2;PST
sgropar V;IND;PL;1;FUT
invełenar V;SBJV;SG;3;PRS;LGSPEC1
asumar V;IPFV;SBJV;PL;1;PST
servir V;IPFV;IND;SG;3;PST
ofendar V;IPFV;IND;PL;2;PST
xontar V;IND;PL;2;FUT
canbiar V;IPFV;IND;SG;2;PST
convìnzsar V;IND;SG;1;PRS
comandar V;IND;SG;1;FUT
limitar V;NFIN
scorlar V;IND;PL;1;FUT
desmentegar V;IPFV;SBJV;SG;3;PST
strabucar V;COND;SG;1
conbatar V;SBJV;PL;2;PRS
rumegar V;IPFV;IND;SG;2;PST
ónxar V;SBJV;SG;1;PRS
pestar V;IND;SG;2;PRS
scriver V;IND;SG;2;PRS
strupiar V;IND;SG;3;PRS
spiar V;COND;PL;3
xontar V;SBJV;SG;2;PRS
svodar V;IND;PL;2;PRS
trar V;COND;SG;1
slongar V;SBJV;PL;3;PRS;LGSPEC1
stuxar V;IPFV;SBJV;PL;2;PST
vestir V;IND;PL;2;FUT
baxar V;IMP;PL;1
realisar V;IPFV;IND;SG;2;PST
fracar V;IMP;PL;3;LGSPEC1
spojar V;IND;PL;1;PRS;LGSPEC1
springar V;SBJV;PL;3;PRS;LGSPEC2
restar V;IMP;PL;3;LGSPEC1
tornar V;IMP;PL;2
curar V;IMP;SG;3;LGSPEC1
daquar V;NFIN
trar V;IND;PL;1;PRS;LGSPEC1
desligar V;IMP;PL;1
sgnaolar V;IND;PL;2;PRS
tugar V;COND;SG;3
arfiar V;NFIN
ónxar V;IPFV;SBJV;SG;3;PST
acumular V;IMP;SG;2
finansiar V;COND;PL;2
inpizar V;SBJV;SG;1;PRS;LGSPEC1
visuałixar V;IND;SG;2;PRS
finir V;IMP;PL;3
roxegar V;IMP;PL;2
asistar V;COND;PL;1
concepir V;NFIN
petar V;IPFV;IND;PL;3;PST
anbir V;COND;SG;1
sentar V;IND;PL;3;FUT
pociar V;IPFV;SBJV;SG;2;PST
uxar V;IPFV;IND;SG;3;PST
intrigar V;SBJV;PL;1;PRS;LGSPEC2
asumar V;IND;SG;1;PRS
ofendar V;IPFV;SBJV;SG;3;PST
piantar V;IND;PL;1;PRS;LGSPEC1
misiar V;IPFV;SBJV;PL;1;PST
parer V;IPFV;IND;PL;1;PST
conpletar V;IMP;PL;3;LGSPEC1
strapegar V;IMP;SG;3;LGSPEC1
sofegar V;IND;SG;1;PRS
spaxemar V;SBJV;SG;2;PRS
ciamar V;SBJV;PL;2;PRS
topar V;IND;PL;3;FUT
voltar V;IND;SG;2;PRS
studiar V;IPFV;SBJV;SG;2;PST
vixitar V;IPFV;IND;PL;3;PST
colpir V;NFIN
pisar V;IPFV;SBJV;PL;3;PST
córar V;IPFV;IND;PL;1;PST
sluxegar V;IMP;PL;3;LGSPEC1
łavorar V;IPFV;SBJV;SG;2;PST
serar V;SBJV;PL;3;PRS;LGSPEC1
usir V;IPFV;IND;SG;2;PST
rumegar V;IMP;PL;2
vantar V;IND;SG;2;PRS
spiegar V;IPFV;IND;PL;3;PST
testimoniar V;IND;PL;2;FUT
sfrixar V;IMP;PL;2
siełier V;IND;SG;1;PRS
conpletar V;IPFV;SBJV;PL;1;PST
pasar V;IND;PL;2;FUT
spesegar V;IND;PL;2;FUT
cantar V;IND;PL;2;PRS
vałer V;IND;PL;3;PRS
bazxotar V;IPFV;IND;SG;1;PST
arar V;IND;PL;2;PRS
èser V;SBJV;PL;2;PRS
tugar V;IND;SG;1;PRS
intorcołar V;IND;PL;1;PRS;LGSPEC2
amar V;COND;PL;2
smagrir V;IPFV;SBJV;PL;3;PST
tocar V;SBJV;PL;1;PRS;LGSPEC1
morir V;IPFV;SBJV;PL;1;PST
arar V;COND;PL;2
studiar V;COND;SG;3
calcołar V;IPFV;IND;PL;3;PST
cosołar V;NFIN
sbiansar V;IPFV;SBJV;PL;3;PST
covèrzar V;SBJV;PL;2;PRS
domandar V;SBJV;PL;1;PRS;LGSPEC1
udar V;COND;SG;2
ricordar V;IMP;SG;3;LGSPEC1
tugar V;IPFV;IND;SG;2;PST
suar V;NFIN
bévar V;IMP;PL;3
arestar V;IMP;PL;1
sbrisiar V;IND;PL;3;FUT
slargar V;IPFV;SBJV;PL;2;PST
soranomenar V;IND;PL;1;FUT
desligar V;IMP;PL;3;LGSPEC1
ponciar V;SBJV;PL;3;PRS;LGSPEC1
spiegar V;IPFV;SBJV;PL;3;PST
scoltar V;SBJV;PL;3;PRS;LGSPEC2
vernixar V;IND;PL;1;FUT
concepir V;IPFV;IND;SG;3;PST
sgnaolar V;COND;SG;2
desmentegar V;SBJV;SG;2;PRS
conpletar V;SBJV;PL;3;PRS;LGSPEC2
anoverar V;SBJV;SG;3;PRS;LGSPEC2
anbir V;IND;SG;1;PRS
magnar V;IND;SG;1;PRS
taconar V;IPFV;IND;PL;2;PST
stuxar V;IMP;SG;3;LGSPEC1
anoverar V;IND;PL;3;PRS
asumar V;IPFV;IND;PL;3;PST
urtar V;SBJV;PL;2;PRS
desgatejar V;IND;PL;2;FUT
sorar V;IND;SG;3;PRS
strupiar V;COND;SG;1
sugar V;IPFV;IND;PL;2;PST
spuar V;SBJV;SG;1;PRS;LGSPEC1
doparar V;IPFV;SBJV;PL;2;PST
desidar V;COND;PL;3
vìnsar V;IPFV;IND;SG;1;PST
zontar V;IND;PL;1;PRS;LGSPEC2
rodołar V;NFIN
fondar V;IPFV;SBJV;PL;1;PST
ciocar V;SBJV;PL;3;PRS;LGSPEC1
pexar V;IPFV;SBJV;SG;3;PST
roxegar V;IND;SG;3;FUT
acetar V;IPFV;SBJV;SG;1;PST
sostituir V;COND;PL;3
starnudar V;IPFV;IND;SG;3;PST
móvar V;IMP;SG;3
acumular V;IND;SG;2;FUT
morsegar V;IND;PL;1;PRS;LGSPEC2
servir V;IND;SG;3;FUT
limitar V;IPFV;IND;SG;2;PST
batizxar V;IMP;PL;3;LGSPEC1
stupar V;COND;SG;2
ascrivar V;SBJV;SG;3;PRS
cosołar V;IPFV;SBJV;SG;3;PST
gòder V;IPFV;SBJV;SG;3;PST
segar V;SBJV;PL;3;PRS;LGSPEC1
criar V;NFIN
sotomesar V;IPFV;IND;SG;1;PST
sluxegar V;SBJV;PL;3;PRS;LGSPEC2
uxar V;IPFV;IND;SG;2;PST
pociar V;IPFV;IND;PL;3;PST
slisegar V;SBJV;SG;1;PRS;LGSPEC2
canbiar V;IMP;PL;3;LGSPEC1
łevar V;SBJV;SG;3;PRS;LGSPEC2
rumegar V;IND;SG;3;FUT
pasar V;IPFV;SBJV;SG;3;PST
alzsar V;COND;PL;3
supiar V;IND;PL;2;PRS
bałar V;NFIN
sgnacar V;IMP;PL;3;LGSPEC2
aspetar V;COND;PL;3
apostrofar V;IND;SG;1;PRS
smagrir V;IPFV;IND;PL;3;PST
acetar V;SBJV;PL;1;PRS;LGSPEC2
soranomenar V;SBJV;SG;1;PRS;LGSPEC2
anbir V;SBJV;PL;2;PRS
piantar V;SBJV;PL;2;PRS
sarare V;SBJV;PL;1;PRS;LGSPEC2
morsegar V;SBJV;PL;2;PRS
soranomenar V;COND;SG;3
caminar V;IPFV;SBJV;PL;2;PST
somejar V;IND;PL;1;PRS;LGSPEC2
supiàr V;SBJV;SG;3;PRS;LGSPEC2
anoverar V;IMP;PL;3;LGSPEC2
spetar V;NFIN
mandar V;IND;PL;3;PRS
invernixar V;SBJV;PL;1;PRS;LGSPEC2
riciamar V;COND;PL;2
smorsar V;IMP;PL;3;LGSPEC2
slongar V;IMP;SG;2
svejar V;IPFV;IND;SG;3;PST
rancurar V;SBJV;PL;2;PRS
cascar V;IMP;PL;3;LGSPEC1
brustołar V;IPFV;IND;SG;3;PST
sfrutar V;IPFV;IND;PL;1;PST
desmentegar V;IPFV;SBJV;PL;3;PST
calcołar V;SBJV;SG;3;PRS;LGSPEC2
scoltar V;IMP;PL;1
salvar V;IND;SG;1;PRS
dormir V;IPFV;IND;SG;3;PST
sguaratar V;IND;SG;1;FUT
łevar V;COND;SG;1
sperar V;NFIN
carezxar V;IND;SG;2;PRS
sfexar V;IMP;PL;3;LGSPEC1
tastar V;COND;SG;3
sachegiar V;COND;SG;1
uxar V;IND;SG;3;PRS
sponciar V;IPFV;SBJV;SG;1;PST
usir V;IPFV;IND;PL;3;PST
ónxar V;IPFV;SBJV;SG;2;PST
dettar V;IPFV;IND;PL;2;PST
vìnsar V;IPFV;IND;PL;3;PST
scóndar V;COND;SG;3
acumular V;COND;SG;2
bevarar V;IPFV;IND;SG;2;PST
tegner V;IMP;SG;2
semenar V;SBJV;SG;1;PRS;LGSPEC2
sentir V;IND;SG;1;PRS
batizxar V;IND;SG;1;PRS
inverinar V;SBJV;PL;2;PRS
spiegar V;COND;SG;3
tamixar V;IND;SG;1;PRS
çentrałizar V;IPFV;SBJV;PL;2;PST
tegner V;COND;PL;3
soranomenar V;IPFV;IND;SG;1;PST
bazxotar V;NFIN
sbuxar V;IPFV;SBJV;SG;1;PST
anbir V;COND;SG;3
uxar V;COND;PL;2
calcołar V;IPFV;IND;PL;2;PST
ciamar V;SBJV;PL;3;PRS;LGSPEC2
semenar V;IPFV;IND;PL;2;PST
sfrixar V;IMP;PL;3;LGSPEC1
scoltar V;COND;SG;2
aderir V;IMP;PL;3
divìdar V;IND;PL;2;FUT
arfiar V;IPFV;SBJV;PL;1;PST
limitar V;SBJV;SG;1;PRS;LGSPEC2
macar V;IPFV;SBJV;SG;2;PST
asaltar V;IPFV;SBJV;PL;3;PST
deventar V;SBJV;SG;1;PRS;LGSPEC2
arar V;IMP;SG;2
testimoniar V;IND;PL;3;PRS
sguaratar V;SBJV;SG;3;PRS;LGSPEC1
carołar V;COND;PL;1
vixitar V;IND;PL;3;PRS
|
d48e8fc21a2cc057f5260ca018971253a8d31cca | 717ddeb7e700373742c617a95e25a2376565112c | /2474/CH7/EX7.2/Ch07Ex02.sce | 9c6e5a83f048ffa93f9daf33c513cbfdc508ffb0 | [] | 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 | 510 | sce | Ch07Ex02.sce | // Scilab code Ex7.2: Pg.292 (2008)
clc; clear;
j_1 = 0.5; // First angular momentum
j_2 = 0.5; // Second angular momentum
j = j_1 + j_2; // Total angular momentum in parallel state
printf("\nTotal angular momentum in parallel state = %1d", j);
j = j_1 - j_2; // Total angular momentum in antiparallel state
printf("\nTotal angular momentum in anti-parallel state = %1d", j);
// Result
// Total angular momentum in parallel state = 1
// Total angular momentum in anti-parallel state = 0 |
6577866b87671dce49367f3054101f8255975b8d | 449d555969bfd7befe906877abab098c6e63a0e8 | /443/CH17/EX17.15/17_15.sce | 73e1b850d55ec801b7e155fb4ec5262bb383c591 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 755 | sce | 17_15.sce | pathname=get_absolute_file_path('17_15.sce')
filename=pathname+filesep()+'17_15_data.sci'
exec(filename)
//Indicated mean effective pressure(in bar)
pim=(Area/Length)*constant
//Indicated power(in kW)
ip=(pim*10^5*L*0.25*%pi*D^2*0.5*N)/60000
//Brake power(in kW)
bp=(%pi*N*(dW)*d*g)/60000
//Mechanical efficiency
nm=bp/ip*100
//Fuel consumption(in kg/h)
mf=(Vf/30)*60*10^-3*Pf
//Brake specific fuel consumption(in kg/kWh)
bsfc=mf/bp
//Indicated thermal efficiency
nith=(ip*3600)/(mf*CV)*100
printf("\n\nRESULTS\n\n")
printf("\nIndicated power:%f\n",ip)
printf("\nBrake power:%f\n",bp)
printf("\nMechanical efficiency:%f\n",nm)
printf("\nBrake specific fuel consumption:%f\n",bsfc)
printf("\nIndicated thermal efficiency:%f\n",nith)
|
c54835044b3e205d3ab7bd1823ac6649b9e9671a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3281/CH10/EX10.11/ex10_11.sce | 2935b2ab50cf0bbdb700e06d6268b725684947a6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 477 | sce | ex10_11.sce | //Page Number: 562
//Example 10.11
clc;
//Given
Er=6;
d=3D-3; //m
Z0=50; //ohm
E0=8.854D-12; //F/m
Mu0=4*%pi*10D-7; //H/m
//(i) W
W=(377*d)/(sqrt(Er)*Z0);
disp('mm',W*1000,'Required Width:');
//(ii)Stripline capacitance
C=(E0*Er*W)/d;
disp('pF/m',C*10^12,'Stripline capacitance:');
//(iii)Stripline inductance
L=(Mu0*d)/W;
disp('muH/m',L*10^6,'Stripline inductance:');
//(iv)Phase velocity
c=3D+8;
vp=c/sqrt(Er);
disp('m/s',vp,'Phase velocity');
|
af6d5af5d97001778e1de6cd031e6df5368bc4cb | 449d555969bfd7befe906877abab098c6e63a0e8 | /3705/CH3/EX3.5/Ex3_5.sce | 7a9420cde0f67f74ad43c527dbeb1026d48ecaa5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 942 | sce | Ex3_5.sce |
clear//
//Variable Declaration
L=6 //Length of the tube in ft
t=3*8**-1 //Constant wall thickness in inches
G=12*10**6 //Bulk modulus of the tube in psi
w1=6 //Width on the top in inches
w2=4 //Width at the bottom in inches
h=5 //Height in inches
theta=0.5 //Angle of twist in radians
//Calculations
//Part(1)
Ao=(w1+w2)*2**-1*h //Area enclosed by the median line in sq.in
S=w1+w2+2*(sqrt(1**2+h**2)) //Length of the median line in inches
//Using the torsional stifness formula we get
k=4*G*Ao**2*t*(L*12*S)**-1*(%pi*180**-1) //tortional Stiffness in lb.in/rad
//Part(2)
T=k*theta //Torque required to produce an angle of twist of theta in lb.in
q=T*(2*Ao)**-1 //Shear flow in lb/in
tau=q/t //Shear stress in the wall in psi
//Result
printf("\n Part(1) results")
printf("\n Torsional stiffness is %0.0f lb.in/deg",k)
printf("\n Part(2) results")
printf("\n The shear stress in the wall is %0.0f psi",tau)
|
fee93497025496ce3a85deaa4a103d6be5252090 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2066/CH7/EX7.7.a/7_7a.sce | 752cf1561226513e2fbf479f20258e1ebc0a89a9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 645 | sce | 7_7a.sce | clc
clear
//Initialization of variables
D=36 //in
rho=0.00226 //slug/ft^3
mu=3.88e-7 //lb-sec/ft^2
umax=62.2 //ft/s
V=54.5 //ft/s
Nr=9.5e5
r0=18 //in
r=12 //in
n=8.8
k=0.4
//calculations
f=0.0032 + 0.221/(Nr^0.237)
Vs=sqrt(f/8) *V
y=r0-r
u1=umax*(y/r0)^(1/n)
u2=umax+ 2.5*Vs*log(y/r0)
u3=umax+ Vs/k *(sqrt(1-y/r0) + log(1-sqrt(1-y/r0)))
u4=Vs*(5.5+ 5.75*log10(Vs*y/12 *rho/mu))
//results
printf("Using equation 7-13, velocity = %.1f ft/s",u1)
printf("\n Using equation 7-18, velocity = %.1f ft/s",u2)
printf("\n Using equation 7-25, velocity = %.1f ft/s",u3)
printf("\n Using equation 7-34a, velocity = %.1f ft/s",u4)
|
49aba5339b9e7b5d2f35a6b0309da0a25ccbefb8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2660/CH13/EX13.7/Ex13_7.sce | 85c4024844931055516cbeb634c11ab95283ff73 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 563 | sce | Ex13_7.sce | clc
RA = 0.30
d = 12 // diameter in mm
alpha = 6 // angle of contact in degree
alpha = 6*%pi/180 // angle of contact in radian
mu = 0.10 // coefficient of friction
sigma_0 = 240 // N/mm^2
B = mu*cotg(alpha)
x = 1 - RA
sigma_d = (sigma_0*(1+B)*(1-(x)^B))/B // N/mm^2
r1 = sqrt(x)*(d/2) // mm
l = sigma_d*%pi*(r1)^2 // load in kN
ita = 98 // efficiency
ita = ita/100
s = 2.3 // drawing speed in m/s
P = (l*s)/ita // kW
printf("\n Drawing load = %0.2f kN\n Power of motor = %0.2f kW" , l/1000 ,P/1000 )
// 'Answers vary due to round off error'
|
37b69b58b6baa44e3eaabd18e32eedb01c225a14 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1271/CH20/EX20.13/example20_13.sce | beb75fe72e05e4dbe7e2ae3eac43837d8c31043f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 385 | sce | example20_13.sce | clc
// Given that
lambda = 1.4e-11 // K-absorption edge for lead in m
V = 88.6e3 // minimum voltage required for producing k-lines in V
c = 3e8 // speed of light in m/sec
// Sample Problem 13 on page no. 20.11
printf("\n # PROBLEM 13 # \n")
printf("Standard formula used \n ")
printf(" h*c/Lambda = eV \n")
r = V * lambda / c
printf("\n The value of the ratio of h/e = %e Jsec/C.",r)
|
8f97fe52a34da216de6b56a1f7807b444e4079e9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /98/CH9/EX9.8/example9_8.sce | f5a0fd1e04e94ceb041ee094d8bbcb5c7df5e78e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,143 | sce | example9_8.sce | //Chapter 9
//Example 9_8
//Page 217
clear;clc;
r=0.75;
//According to the figure in the text book
dab=3;
dbc=3;
dacd=4;
dbbd=5.5;
dcad=4;
dca=dab+dbc;
gmr=r*0.7788;
Daa=gmr;
Dadad=gmr;
Dab=sqrt(dab^2+r^2);
Dabd=sqrt(dab^2+(dacd+r)^2);
Daad=sqrt((dab+dbc)^2+dacd^2);
Dada=Daad;
Ds1=(Daa*Daad*Dada*Dadad)^(1/4)/10;
Ds2=(Daa*dbbd*Daa*dbbd)^(1/4)/10;
Ds3=Ds1;
Ds=(Ds1*Ds2*Ds3)^(1/3);
DAB=(Dab*Dabd*Dabd*Dab)^(1/4);
DBC=DAB;
DCA=(dca*dacd*dacd*dca)^(1/4);
Dm=(DAB*DBC*DCA)^(1/3);
l_ph_m=1e-7*2*log(Dm/Ds);
printf("GMR of conductor = %.3f cm \n\n", gmr);
printf("Distance a to b = %.2f m \n", Dab);
printf("Distance a to b-dash = %.2f m \n", Dabd);
printf("Distance a to a-dash = %.2f m \n\n", Daad);
printf("Ds1 = %.3f m \n", Ds1);
printf("Ds2 = %.3f m \n", Ds2);
printf("Ds3 = %.3f m \n", Ds3);
printf("Equivalent self GMD of one phase = %.3f m \n\n", Ds);
printf("DAB = %.3f m \n", DAB);
printf("DBC = %.3f m \n", DBC);
printf("DCA = %.3f m \n", DCA);
printf("Equivalent mutual GMD = %.3f m \n\n", Dm);
printf("Inductance/phase/m = %.3f*10^-3 mH \n\n", l_ph_m/10*1e7);
printf("Inductance/phase/km = %.3f mH \n\n", l_ph_m/10*1e7);
|
31c6dbdb0cdff258f59abf868780e5664eb0d6a5 | 2bfd38f3e966214e590fce8e4221e334196f398f | /projects/12/OutputTest/OutputTest.tst | c215a981f273ade6ef5f09a1d28cef827f35b1f0 | [
"MulanPSL-2.0",
"LicenseRef-scancode-mulanpsl-2.0-en",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | lhtin/nand2tetris-labs | 11403bfa7f6fcc5573619400d59285f25d1a790c | 2a9c8f0f6ff9b6a148f87904e188ac85a016baa4 | refs/heads/master | 2023-01-29T13:27:04.738924 | 2020-11-26T06:22:59 | 2020-11-26T06:22:59 | 321,001,905 | 3 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 35 | tst | OutputTest.tst | load;
repeat 1000000 {
vmstep;
}
|
508e374e664bfa75c680fba3cc7ca66f8571a4b4 | 75e45ac87e34faec83ba178b220061833ca314dc | /TP Note/CandassamyAnandou/exo2/script2.sce | ccb5d2c820eb2106fee07ac8df4690cec07d505b | [] | no_license | GrinninReaper/ET4-TP-MethodeNumerique | 3d465828afce25b4bfc7a10098e9bc398f7176b1 | 8b7373fcf228fed9fc2cb0f8241c802608414abf | refs/heads/master | 2020-08-02T00:46:59.035354 | 2019-09-26T21:08:35 | 2019-09-26T21:08:35 | 211,181,502 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 769 | sce | script2.sce | //19/12/18
//TP note de méthode numérique, exo2
//Anandou Candassamy
tol = 1.162D-16;
nmax = 100;
A = [-6, -2, 2,; 0, -2, -4; 3, 1, -1];
expA = matexp1(A, 1, nmax, tol);
lambda = spec(A);
nu = spec(expA);
disp(lambda, "Valeurs propres de A");
disp(nu, "Valeurs proprse de exponentielle de A");
disp("Exponentiel des valeurs propres de A");
for i = 1:3
disp(exp(lambda(i)));
end
//on voit bien le résultat demandé
[R, S] = spec(A);
[R1, S1] = spec(expA);
/*
disp(R(1,:)*expA); disp(R(1,:));
disp(R(2,:)*expA); disp(R(2,:));
disp(R(3,:)*expA); disp(R(3,:));
*/
disp(R); disp(R1);
//on voit qu'on obtient les mêmes vecteurs modulo un intervertissement entre laes première et deuxième colonnes de la deuxième matrice
|
230955ae3d5080275e9c4600aa61d2703c6b1aef | 58f8869b2dcd9296bbe82d9923d1d7d801937351 | /4/5 Secant Method.sce | d569079311e3f574cd63328a01b55b4b0d4d1d77 | [
"MIT"
] | permissive | keivalya/2ME01 | f325d38ea7adace9a10bc3d83e7868d59dbc4066 | 3147e0d7319ddeb6e79fde5d0851dcc423a7e23d | refs/heads/master | 2023-02-10T20:15:29.593282 | 2021-01-09T02:39:20 | 2021-01-09T02:39:20 | 282,954,965 | 0 | 0 | MIT | 2020-10-04T02:22:40 | 2020-07-27T16:33:06 | Scilab | UTF-8 | Scilab | false | false | 455 | sce | 5 Secant Method.sce | clear;
deff('y=f(x)','y= x^3 - 4*x - 9')
x(1)=input('Enter first point of guess interval: ');
x(2)=input('Enter second point of guess interval: ');
n=input('Enter allowed Error in calculation: ');
iteration=0;
for i=3:1000
x(i) = x(i-1) - (f(x(i-1)))*((x(i-1) - x(i-2))/(f(x(i-1)) - f(x(i-2))));
iteration=iteration+1;
if abs((x(i)-x(i-1))/x(i))*100<n
root=x(i)
iteration=iteration
break
end
end
|
80e3b5b6bfa5c29d49718a6df98944c135a3cf7b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3428/CH21/EX14.21.1/Ex14_21_1.sce | 0fdcd9a5e5cbbe52521d951e36180a49ad407bc4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 386 | sce | Ex14_21_1.sce | //Section-14,Example-1,Page no.-PC.7
//To find the temperature at which pressure of gas will reach the bursting value.
clc;
//PV=nRT
P=10 //atm
V=(10^-3)*(1/10^-3) //L
n=((5*10^-3)/30) //mol
R=0.0821 //(LatmK^-1mol^-1)
T=((P*V)/(n*R))
disp(T,'Required temperature(K)')
//Answer given in the book T=730.9 K is wrong.
|
5d73e994d4786c92fbd874db491ec4803a0d1721 | 449d555969bfd7befe906877abab098c6e63a0e8 | /42/CH12/EX12.1/sadiku_12_1.sce | d6a6943b1d9b0ab414b1266016893db41fff8cc2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 608 | sce | sadiku_12_1.sce | clear;
clc;
a=2.5*10^-2, b=1*10^-2,c=0, Ur=1,Er=4,C=3*10^8;
fc=0,m=0,n=0;
while(fc*10^-9<15.1)
fc=(C/(4*a))*sqrt(m^2 + (a*n/b)^2);
if ((fc*10^-9) < 15.1) then
n=n+1;
else disp(n-1,'Max value of n is ='); end
end
fc=0,m=0,n=0;
while(fc*10^-9<15.1)
fc=(C/(4*a))*sqrt(m^2 + (a*n/b)^2);
if ((fc*10^-9) < 15.1) then
m=m+1;
else disp(m-1,'Max value of m is ='); end
end
function[p]= modes(m,n);
p=(C/(4*a))*sqrt(m^2 + (a*n/b)^2);
if ((p*10^-9) < 15.1) then
disp([m n],'Transmission mode is possible'); else p=0;end
endfunction
for i=1:1:5, for j=1:1:2,modes(i,j);end;
end
|
578aa73eef7837ae60cc2ce30ad2bf22b20d726f | 676ffceabdfe022b6381807def2ea401302430ac | /solvers/IncNavierStokesSolver/Tests/TaylorVor_dt2.tst | 83a7fe8acea83fe617ea61ee7b59a6622f5b0d8b | [
"MIT"
] | permissive | mathLab/ITHACA-SEM | 3adf7a49567040398d758f4ee258276fee80065e | 065a269e3f18f2fc9d9f4abd9d47abba14d0933b | refs/heads/master | 2022-07-06T23:42:51.869689 | 2022-06-21T13:27:18 | 2022-06-21T13:27:18 | 136,485,665 | 10 | 5 | MIT | 2019-05-15T08:31:40 | 2018-06-07T14:01:54 | Makefile | UTF-8 | Scilab | false | false | 876 | tst | TaylorVor_dt2.tst | <?xml version="1.0" encoding="utf-8"?>
<test>
<description>Convergence: Taylor Vortex IMEXOrder2 dt=0.001</description>
<executable>IncNavierStokesSolver</executable>
<parameters>TaylorVor_dt2.xml</parameters>
<files>
<file description="Session File">TaylorVor_dt2.xml</file>
</files>
<metrics>
<metric type="L2" id="1">
<value variable="u" tolerance="1e-12">5.48624e-08</value>
<value variable="v" tolerance="1e-12">5.00282e-08</value>
<value variable="p" tolerance="5e-11">2.33974e-06</value>
</metric>
<metric type="Linf" id="2">
<value variable="u" tolerance="1e-12">4.02333e-08</value>
<value variable="v" tolerance="1e-12">3.97501e-08</value>
<value variable="p" tolerance="2e-11">1.60287e-06</value>
</metric>
</metrics>
</test>
|
8f7932dbe29f4a590af190589f1ff70b54b40b6c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1760/CH2/EX2.97/EX2_97.sce | 8aa22c2a9726f0fa473862129173a0d37999ee18 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 419 | sce | EX2_97.sce | //EXAMPLE-2.97 PG NO-140
N1=500; //NUMBER OF TURN
N22=1500;
N12=500
Q1=0.6*10^-3; //FLUX OF COIL
I1=5; //CURRENT
Q12=0.3*10^-3;
L1=(N1*Q1)/I1
K=Q12/Q1;
L2=(N22/N12)*L1;
M=K*((L1*L2)^0.5);
disp('i) L1 = '+string (L2)+' ');
disp('ii) K = '+string (K)+' H');
disp('iii) L2 = '+string (L2)+' H');
disp('i) M = '+string (M)+' H ');
|
861dea60a4d5d05d6616980f577510cd59986313 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1040/CH6/EX6.3.a/Chapter6_Ex3_a.sce | 1ac62cd564d874d1fe1835932dfbd934e431a3ad | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,421 | sce | Chapter6_Ex3_a.sce | //Harriot P., 2003, Chemical Reactor Design (I-Edition), Marcel Dekker, Inc., USA, pp 436.
//Chapter-6 Ex6.3.a Pg No. 248
//Title:Effect of Axial dispersion on conversion
//====================================================================================================================
clear
clc
//INPUT
u=1;//Superficial velocity (cm/s)
D=2*10^(-5)//Molecular Diffusivity(cm2/s)
Re=30;//Reynolds No.
Pe_a=0.25;//Peclet No. corresponding Re No. from Fig 6.10
dp=3*(10^-1);//Particle Size (cm)
L=48;//Length of the bed (cm)
X_A=0.93;//Conversion
//CALCULATION
Pe_dash=Pe_a*L/dp;//Refer Pg.No.247
one_minus_X_A=(1-X_A);
k_rho_L_by_u1=2.65;//From Fig6.12 for given Pe_dash
X_A1=1-exp(-k_rho_L_by_u1);
//To increase the conversion more catalyst is needed
k_rho_L_by_u2=2.85;//From Fig6.12
X_A2=1-exp(-k_rho_L_by_u2);
Percentage_excess_cat=((k_rho_L_by_u2-k_rho_L_by_u1)/k_rho_L_by_u1)*100;
//OUTPUT
//Console Output
mprintf('\n The effect of axial dispersion is significant and the percentage excess of catalyst = %.0f%%',Percentage_excess_cat );
//File Output
fid= mopen('.\Chapter6_Ex3_a_Output.txt','w');
mfprintf(fid,'\n The effect of axial dispersion is significant and the percentage excess of catalyst = %.0f%%',Percentage_excess_cat );
mclose(fid);
//==============================================END OF PROGRAM=========================================================
|
b550e6dfb2d71b54e58439204347daf88c8f9976 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2213/CH11/EX11.1/ex_11_1.sce | 1411cd27bdc80a5403efb65b5b7416c7fb240b28 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 220 | sce | ex_11_1.sce | //Example 11.1: Total Length
clc;
clear;
close;
//given data :
l=20;// in m
w=0.5;// weight per meter in kg
T=500;// Tension applied in kg
del=(w*l^2)/(2*T);
two_S=2*(l+(2/3)*(del^2/l));
disp(two_S,"Total Length(m) = ")
|
9429ec55b6f6f5649a2b0a7d8c7d24888f3a6279 | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.4.1/Unix-Windows/scilab-2.4.1/macros/mtlb/mtlb_ishold.sci | 691bd5f66a93621ec657fb4a9acff89ae9fbc770 | [
"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 | 105 | sci | mtlb_ishold.sci | function r=mtlb_ishold()
[lhs,rhs]=argn(0)
if exists('%MTLBHOLD')==0 then
r=%f
else
r=%MTLBHOLD
end
|
a94de6a7873556a81cddef149228b594147c5dea | 449d555969bfd7befe906877abab098c6e63a0e8 | /1133/CH8/EX8.24/Example8_24.sce | 5d8f965977709d823792ed97e85aa7d944538c6c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 246 | sce | Example8_24.sce | //Example 8.24
clc
disp("IC 7490 is a decade counter. When two such ICs are cascaded, it becomes a divide-by-100 counter. To get a divide-by-96 counter, the counter is reset as soon as it becomes 1001 0110. The diagram is shown in fig.8.52.")
|
45090a414825ae7309f8255d8128e410b3607c81 | 449d555969bfd7befe906877abab098c6e63a0e8 | /10/CH5/EX7/cha5_7.sce | d0845acf86bcd91375a6f511d9e96797a545ca91 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 284 | sce | cha5_7.sce | F1=60;F2=15;F3=120;F=60;P=6;
V=240;A=2;
S=F2/F1
Ns=(120*F)/P
N=(1+S)*Ns
N1=(1-S)*Ns
S1=F3/F1
n=(1+S1)*Ns
n1=(1-S1)*Ns
Pac=1/S
Pac1=-1/S
Pdc=-(1-(S))/S
Pdc=-(1+(S))/-S
Pac1=1/S1
Pac1=1/-S1
Pdc=-(1-S1)/S1
Pdc=-(1+S1)/-S1
|
a6d6df1368a4abc867fcf8560cdd6fec2808a090 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1628/CH2/EX2.6/Ex2_6.sce | 0b9e84e85917e03f388b2acb384894860f1a5bdf | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 517 | sce | Ex2_6.sce |
// Example 2.6
d=(1/12)+(1/20)+(1/30);
Reff=2+(1/d); // Effective Resisrence
v=100;
I=v/Reff;
// ( but 12 i1= 20i2= 30i3 )
// i2= 12/20 *i1 & i3= 12/30 *i1
// but 10=i1+i2+i3
// 0.6i1+0.4i1+i1=10 i.e i1=5
i1=5;
disp(' Current of I1 if = '+string(i1)+' Amp');
i2=0.6*i1;
disp(' Current of I2 if = '+string(i2)+' Amp');
i3=0.4*i1;
disp(' Current of I3 if = '+string(i3)+' Amp');
// p 24 2.6
|
93fa19117ae26887ff7011ba2749f3b6060b0775 | 9832dedd1439cf842ffa54e8603eaa09d2fd9086 | /kalman1.sce | 13c526ac27e33d43053b708fe816f828d9132cd6 | [] | no_license | hothing/research-kalman | 9832778f0465b9dbc3131b110e63976a91da8024 | 4bbe965b65af75be4a5130702e7f6000604c23ed | refs/heads/master | 2020-03-12T19:47:58.176661 | 2018-04-24T05:56:12 | 2018-04-24T05:56:12 | 130,791,846 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,031 | sce | kalman1.sce | // Testa kalman filtration for a simple movement model
T = 1 // sampling time [sec]
// state space model
A = [1, T; 0, 1]
B = [T^2; T]
C = [1, 0; 0, 1]
// check a controlablility
R = [B, A*B]
rank(R)
// check an observability
O = [C; C*A]
rank(O)
// simulation a liner movement with constant speed
n = 500
x = zeros(2, n)
y = zeros(2, n)
u = zeros(1, n)
x(:,1) = [1500; 0]
u(1) = -0.33
u(2) = u(1)
for i = 2:n do
x(:,i) = A * x(:, i - 1) + B*u(:, i)
y(:,i) = C * x(:, i)
end
// simulate a measurement with noise
sigma_pos = 3.5
sigma_vel = 0.1
n1 = grand(1, n, "nor", 0, sigma_pos)
n2 = grand(1, n, "nor", 0, sigma_vel)
ns = [n1; n2]
z = y + ns
// Kalman filter
Q = [0.1, 0; 0, 0.01]
S = [4^2, 0; 0, 0.2^2]
xhat = zeros(2,n)
P = zeros(2, 2)
for i = 2:n do
xhatminus = A * xhat(:, i - 1) + B * u(:, i - 1)
Pminus = A * P * A' + Q
Kp = (C * Pminus * C' + S)^-1
K = Pminus * C' * Kp
xhat(:, i) = xhatminus + K * (z(:,i) - C * xhatminus)
P = (eye(K) - K*C) * Pminus
end
|
085be4a16ea0060e5a747d27ca0269f4959b5f70 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2438/CH5/EX5.29/Ex5_29.sce | a01340743a4cf13cc7019a0adf3713834284e2f1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 577 | sce | Ex5_29.sce | //===========================================================================
// Chapter 5 example 29
clc;
clear;
// input data
Hc0 = 8*10^4; //critical field
T = 4.5; //temperature in K
Tc = 7.2; //temperature in K
D = 1*10^-3; //diameter in m
//calculation
Hc = Hc0*(1-(T/Tc)^2);
r = D/2; //radius in m
Ic = 2*%pi*r*Hc;
//result
mprintf('critical current =%3.2f.A\n',Ic);
//=============================================================================
|
e99ffbca589f7827568c6f73986c6c9cf0349f8a | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.5/macros/percent/%r_d_p.sci | d5422ffe96d791fd097aa7f0035dde4129f34a7c | [
"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 | 103 | sci | %r_d_p.sci | function r=%r_d_p(r,m)
// r=r./p
//!
// Copyright INRIA
r=rlist(r('num').*ones(m),r('den').*m,r('dt'))
|
5514541e95b0fd15edf389027f3e5248cabaf57f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2744/CH5/EX5.6/Ex5_6.sce | fa5959d26bc32cf7918b1042566d7c1842887c73 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 303 | sce | Ex5_6.sce | clear;
clc;
w = 160;// lb. per sq. foot
b = 3;// inches
d = 9;// inches
l = 15;// feet
f = 1200;// lb. per sq. inch
Z = (1/6)*b*d^2;// in^3
M_r = f*Z;// lb-inches
x = M_r/(w*l^2*12/8);// feet
printf('x = %.1f feet',x);
//The answer is correct only, but it is approximated in the text book
|
642fafb98d8d4b298e4499adae8634fbd257f949 | 449d555969bfd7befe906877abab098c6e63a0e8 | /191/CH4/EX4.3/Example4_3.sce | 4747e2ac47f57e99ec76d957ecd18e434652b328 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 606 | sce | Example4_3.sce | //Convergence of Inverse Iteration
clc;
clear;
close();
format('v',4);
A = [3 0 1;2 2 2; 4 2 5];
e1 = 7.00;
e2 = 1.02;
p = sum(diag(A))-e1-e2;
disp(A, 'A = ');
A = A - p*eye(3,3);
disp(A,'A-1.98I = ');
L = [1 0 0; 0.50 1 0; 0.26 0.52 1];
U = [4 2 3.02; 0 -.98 0.49; 0 0 -.03];
disp(L,U,'The decomposition of A - 1.98I (L,U): ');
u = [1,1,1]';
I = inv(U)*inv(L);
for i = 1:3
v = inv(U)*inv(L)*u;
disp(max(v),v,u,i-1,'The values of s u(s) v(s+1) and max(v(s+1)) : ');
u = v./max(v);
end
disp(u,'The Eigen Vector : ');
ev = p+1/max(v);
disp(ev,'The approx eigen value :'); |
12d338ee4dde44999cd5794d7b6f65a8d5c2e7a0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /443/CH17/EX17.28/17_28.sce | b9704e5fa7d25b4503459f611e69b546bab72baa | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 809 | sce | 17_28.sce | pathname=get_absolute_file_path('17_28.sce')
filename=pathname+filesep()+'17_28_data.sci'
exec(filename)
//Indicated power(in kW)
ip=((imepg-imepp)*10^5*L*0.25*%pi*D^2*(N/(45*2)))/60000
//Heat supplied(in kJ/min)
H=Vf*Pf*CV/45
//Brake power(in kW)
bp=(g*W*%pi*(Dd+Dr)*N)/(60000*T)
//Mechanical efficiency
nm=bp/ip*100
//Heat equivalent of bp(in kJ/min)
Hbp=bp*60
//Heat lost in jacket cooling water(in kJ/min)
Hc=(Vc*dwc*Cvw)/45
//Unaccounted losses(in kJ/min)
Hloss=H-(Hbp+Hc)
printf("\n\nRESULTS\n\n")
printf("\nIndicated power:%f\n",ip)
printf("\nHeat supplied:%f\n",H)
printf("\nBrake power:%f\n",bp)
printf("\nMechanical efficiency:%f\n",nm)
printf("\nHeat equivalent of bp:%f\n",Hbp)
printf("\nHeat lost in jacket cooling water:%f\n",Hc)
printf("\nUnaccounted losses:%f\n",Hloss) |
3302ed1124882651ef4a0941acefd8d659aca268 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1478/CH2/EX2.18.44.C/2_18_44_C.sce | 6997c24eb0d016f963a5838099dd9d7aeb05ce78 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 974 | sce | 2_18_44_C.sce | //water and its treatment//
//example 2.18.44.C//
clc
Purity_Lime=.90
Purity_soda=.95
W1=81;//amount of Ca(HCO3)2 in ppm//
W2=42;//amount of MgCO3 in ppm//
W3=4.1;//amount of NaAlO2 in ppm//
W4=3.65;//amount of HCl in ppm//
W5=82;//amount of Ca(NO3)2 in ppm//
W6=4.5;//amount of NaCl in ppm//
M1=100/162;//multiplication factor of Ca(HCO3)2//
M2=100/84;//multiplication factor of MgCO3//
M3=100/82;//multiplication factor of NaAlO2//
M4=100/36.5//multiplication factor of HCl//
P1=W1*M1;//in terms of CaCO3//L
P2=W2*M2;//in terms of CaCO3//L
P3=W3*M3;//in terms of CaCO3//-L-S
P4=W4*M4;//in terms of CaCO3//L+S
printf ("We do not take Ca(NO3)2 and NaCl since they do not react with lime/soda");
V=20000;//volume of water in litres//
L=0.74*(P1+P2*2-P3+P4)*V/Purity_Lime;//lime required in mg//
L=L/10^6;
printf("\nLime required is %.3fkg",L);
S=1.06*(P4-P3)*V/Purity_soda;//soda required in mg//
S=S/10^6;
printf("\nSoda required is %.1fkg",S) |
1eaa43a74714e5d204c600483d44c272c1def481 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3204/CH17/EX17.6/Ex17_6.sce | 7ebfe782d9d495619fc849de4ed63981639ad458 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 585 | sce | Ex17_6.sce | // Initilization of variables
m_m=70 // kg // mass of man
m_c=35 // kg // mass of canoe
m=25/1000 // kg // mass of bullet
m_wb=2.25 // kg // mass of wodden block
V_b=5 // m/s // velocity of block
// Calculations
// Considering Initial Momentum of bullet=Final momentum of bullet & the block we have,Velocity of bullet (v) is given by eq'n,
v=(V_b*(m_wb+m))/(m) // m/s
// Considering, Momentum of the bullet=Momentum of the canoe & the man,the velocity on canoe is given by eq'n
V=(m*v)/(m_m+m_c) // m/s
// Results
clc
printf('The velocity of the canoe is %f m/s \n',V)
|
c918acf13a35278cafd49fb6cf3ae3bbf5fab219 | 6e257f133dd8984b578f3c9fd3f269eabc0750be | /ScilabFromTheoryToPractice/Computing/testexo3a.sce | 7e86e8f989efc4a226fb4d7a83a0fa84b4c247ff | [] | no_license | markusmorawitz77/Scilab | 902ef1b9f356dd38ea2dbadc892fe50d32b44bd0 | 7c98963a7d80915f66a3231a2235010e879049aa | refs/heads/master | 2021-01-19T23:53:52.068010 | 2017-04-22T12:39:21 | 2017-04-22T12:39:21 | 89,051,705 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 196 | sce | testexo3a.sce | n=9;m=9; // size of matrices
L=([1:n]')*ones(1,m); // row number
K=ones(n,1)*[1:m]; // column number
R=1+int((K-1)/3)+int((L-1)/3)*3 // region number
|
fab22ceb940dc57ff6332e7c180fe0238aa1f528 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2471/CH5/EX5.2/Ex5_2.sce | 2423b1969c63dd1a87caa3a0ce02b2aab325b9e3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,462 | sce | Ex5_2.sce | clear ;
clc;
// Example 5.2
printf('Example 5.2\n\n');
printf('Page No. 113\n\n');
// given
T1 = 10;// in degree celcius
T2 = 70;// in degree celcius
d = 25*10^-3;// Inside diameter in m
v = 1.5;// veocity in m/s
Tm = (T1+T2)/2;// Arithmetic Mean temperature in degree celcius
// At Tm, All physical properties of water is calculated by using steam table
//(a)Heat absorbed by water
p = 992;// Density of water in kg/m^3 At Tm
A = (%pi*d^2)/4;// Area in m^2
m = p*v*A;// Mass flow rate in kg/s
h_70 = 293*10^3;// Specific enthalpy of water in J/kg at 70 degree celcius(from steam table)
h_10 = 42*10^3;// Specific enthalpy of water in J/kg at 10 degree celcius(from steam table)
Q = m*(h_70 - h_10);// in W
printf(' Heat absorbed by water is %.0f W \n',Q)
//(b) Film heat transfer
//At Tm, the following properites of water are found by using steam table
u = 650*10^-6;// viscosity in Ns/m
Cp = 4180;//Specific heat in J/kg-s
K = 0.632;// Thermal conductivity in W/m-s
Re = (d*v*p)/u;//Reynolds Number // answer wrongly calculated in the text book
Pr = (Cp*u)/K;// Prandtl Number
Re_d = (Re)^0.8;
Pr_d = (Pr)^0.4;
// By Dittus-Boelter Equation
//Nu = 0.0232 * Re^0.8 Pr^0.4 = (hd)/K
Nu = 0.0232 * Re_d * Pr_d;// Nusselt Number
h = (Nu*K)/d;//W/m^2-K
printf('The film heat transfer coefficient is %.0f W/sq.m K\n',h)// Deviation in answer due to direct substitution and wrongly calculated in the text book
|
24d886f8e87c932ed1733beed97066159d15d456 | 05db16b4f57b0182fa452e2c11554c3de6fff271 | /branches/vac4.52mkg_24_06_2010/scilab/asknum.sci | b74a6c0be28abf75501d69a004d5411c98ac5288 | [] | no_license | SpungMan/smaug-all | 09b4fcf6fcec2fc7be1fa85c5c7f2d68c79e504b | 01df12e98c734529ff984662badc26eaa3a9138b | refs/heads/master | 2021-11-29T14:09:47.094457 | 2018-06-08T09:48:05 | 2018-06-08T09:48:05 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,586 | sci | asknum.sci | function [result] = asknum(%prompt,var,nn)
// Ouput variables initialisation (not found in input variables)
result=[];
// Number of arguments in function call
[%nargout,%nargin] = argn(0)
// Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
// Read or display an integer array of nn (optional input param) elements.
global("Doask");
undef = isempty(var);
if undef then
result = input(%prompt+"? ");
else
result = [];
if Doask then
// !! L.11: Matlab function sprintf not yet converted, original calling sequence used.
tmp = sprintf("%g ",var);
if max(size(mtlb_double(var)))>1 then tmp = "["+trim(tmp)+"] ";end;
result = input(%prompt+"="+tmp+"? ");
end;
if isempty(result) then result = var;end;
end;
// extend or shrunk array if nn is given
if %nargin==3 then
n = max(size(mtlb_double(result)));
if mtlb_logic(n,"<",nn) then
arr = result;
// ! L.22: real(mtlb_double(nn)) may be replaced by:
// ! --> mtlb_double(nn) if mtlb_double(nn) is Real.
result = zeros(1,real(mtlb_double(nn)));
result = mtlb_i(result,1:n,arr);
for i = mtlb_imp(n+1,mtlb_double(nn))
result = mtlb_i(result,i,mtlb_e(arr,n));
end;
elseif mtlb_logic(n,">",nn) then
result = mtlb_e(result,mtlb_imp(1,mtlb_double(nn)));
end;
end;
if ~undef & ~mtlb_double(Doask) then
// !! L.32: Matlab function sprintf not yet converted, original calling sequence used.
tmp = sprintf("%g ",result);
if max(size(mtlb_double(result)))>1 then tmp = "["+trim(tmp)+"] ";end;
disp(%prompt+" = "+tmp);
end;
endfunction
|
8b0c33d97367cceebfbbafde1f93152906a8ebb2 | 33fb8ad2c9908d12230e378cb1f793922b817e68 | /Couverture d’un Put dans le modèle CRR/Couverture_Americaines.sci | 0f2ff48c473d550cb34a5deedd00539ac39687e5 | [
"MIT"
] | permissive | AmineKheldouni/Finance-Stochastic-Calculus | eca352c4f7ce0c1f71c8ce09c05b1380190e467f | c88b01728daa5e1a6a4aa49992e797e6b93633fe | refs/heads/master | 2020-04-14T22:29:26.264109 | 2019-01-04T23:27:10 | 2019-01-04T23:27:10 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,568 | sci | Couverture_Americaines.sci | exec("Prix_Americaines.sci");
exec("S.sci");
function[Y]= CouvertureAmer(n,N,K,r,a,b,x)
// Couverture dans le Modele CRR
// Delta(n,x = S_{n-1}) est la quantite a detenir entre n-1 et n
// Attention : Quantite d'actif risque a detenir entre n-1 et n
// Attention : il faut remplacer x par S_{n-1}
//A COMPLETER
Y = ????;
endfunction
function [cours_final,valeur_finale]=defaut_de_couvertureAmer(N,K,r,a,b,cours)
Valeur=zeros(1,N+1);
Defaut=zeros(1,N+1);
// A l'instant 0
S_0 = cours(1);
V_0 = Prix_en_zero_Amer(N,K,r,a,b,S_0);
Valeur(1) = V_0;
// calcul de la couverture entre 0 et 1
H = CouvertureAmer(1,N,K,r,a,b,S_0);
SoHo = V_0 - H * S_0; // condition d'autofinancement
for n=1:N-1
// on est en n
S_n = cours(n+1);
// nouvelle valeur du portefeuille en n
V = H * S_n + SoHo * (1+r);
// calcul de la nouvelle couverture entre n et n+1
H = CouvertureAmer(n+1,N,K,r,a,b,S_n);
// autofinancement
//A COMPLETER
SoHo = ???;
Valeur(n+1) = V;
Defaut(n+1) = V-Prix_en_zero_Amer(N-n,K,r,a,b,S_n)
end;
// on est en N
S_N = cours(N+1);
V = H * S_N + SoHo * (1+r);
res = V - payoff(cours(N+1),K);
Valeur(N+1) = V;
Defaut(N+1) = res;
cours_final = cours;
valeur_finale = Valeur;
endfunction
p=5;
for i=1:p do
[cours,valeur] = defaut_de_couvertureAmer(N,K,r,a,b,S(N,0.2,a,b,S0));
v_payoff=payoff(cours,K);
CouvertureParfaite=min(valeur-v_payoff)//COMMENTER
end
|
0afd4932c37613aba3bba32627cff9575de76c84 | 449d555969bfd7befe906877abab098c6e63a0e8 | /226/CH13/EX13.12/example12_sce.sce | d4fc17424a242bba6b58e30ab3cf36018b7c7a9c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 377 | sce | example12_sce.sce | //chapter 13
//example 13.12
//page 573
printf("\n")
printf("given")
Av=1000;f=100;hie=2*10^3;hfe=100;R8=12*10^3;Rl=120*10^3;R10=3.9*10^3;R6=Rl;R7=39*10^3;R3=R8;
Av1=sqrt(Av)
Av2=Av1;
R9=((R8*Rl)/(R8+Rl))/Av2
R9=330;//use standard value
Av2=((R8*Rl)/(R8+Rl))/R9
Av1=Av/Av2
Zb=hie+R9*(1+hfe)
Zin=(R6*R7*Zb)/(R6*R7+R6*Zb+R7*Zb)
R4=((R3*Zin)/(R3+Zin))/Av1
R5=R10-R4 |
c179b421ba149c500ad9c5129201f62a436aab30 | 1ef6be9d07c8e75d8d04ffdca88138dc1baf60fe | /Nikolas_ECI_192/ACSO/Quices Circuitos/quiz4.tst | 72596cb249b87cb35d97bd6114e24fc51b7eb176 | [] | no_license | Nikolas2001-13/Universidad | 885bab6b2b645ed07b048e834b3cfff35d0fb8dc | d5a4a95b6c553cbb9fa9602c3c9ebc3efff571be | refs/heads/master | 2023-02-25T08:47:12.614065 | 2021-01-25T02:33:31 | 2021-01-25T02:33:31 | 332,564,414 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 397 | tst | quiz4.tst | load quiz4.hdl,
output-file quiz4.out,
output-list X Y Z S;
set X 0, set Y 0, set Z 0, eval, output;
set X 0, set Y 0, set Z 1, eval, output;
set X 0, set Y 1, set Z 0, eval, output;
set X 0, set Y 1, set Z 1, eval, output;
set X 1, set Y 0, set Z 0, eval, output;
set X 1, set Y 0, set Z 1, eval, output;
set X 1, set Y 1, set Z 0, eval, output;
set X 1, set Y 1, set Z 1, eval, output; |
92010de6f3738372aa55f384afc0467817363619 | c908c5ec283c57c29da044966fce0fee1f659873 | /labs/Experimento 5/Exp 5-Códigos/Algoritmo MMQ.sce | 7ac42ee56252eee2dcc4e37d4c13815b0c34361e | [] | no_license | marialago/numerical-computation | 3ca0e95c637c1d4d3ea79789d1bda0b84ca29ca5 | c88c0ddc6f7501ed115556f72f5f5db3a8610f6b | refs/heads/master | 2022-10-30T01:42:21.032196 | 2020-06-14T18:33:45 | 2020-06-14T18:33:45 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 186 | sce | Algoritmo MMQ.sce | function a=mmq(t,pos,k)
n=length(t)
for i=1:n //linhas
for j=1:k+1
v(i,j)=t(i)^(j-1)
end
b(i)=pos(i)
end
a=inv(v'*v)*(v'*b)
endfunction
|
d4cc462dced2e6362d562bfa34f3ddfa70026871 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1871/CH5/EX5.18/Ch05Ex18.sce | 2266ab0ab996662aba7d23deaf24cc9c46bac958 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 652 | sce | Ch05Ex18.sce | // Scilab code Ex5.18: Pg:227 (2008)
clc;clear;
n = 2; // Order of diffraction
Lambda = 6000e-08; // Wavelength of light on the grating, cm
m = 16000; // Number of lines per inch on grating
L = 5; // Length of the ruled grating, inches
N = L*m; // Total number of lines on the grating
// Since the resolving power, Lambda/d_Lambda = n*N, solving for d_Lambda
d_Lambda = Lambda/(n*N); // The smallest wavelength difference, Angstorm
printf("\nThe smallest wavelength difference in the second order = %6.4f angstrom",d_Lambda/1e-008);
// Result
// The smallest wavelength difference in the second order = 0.0375 angstrom |
36afcc05fd8687079245972d0db5f668e24678b0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /569/CH2/EX2.5/2_5.sci | 0ff0d3d7c51d150b714585f9e6f87045e1a0ea5a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 256 | sci | 2_5.sci | //calculating maximum static error
disp('calculating maximum static error');
//Span of the thermometer(degree C)
S=200-150;
//Accuracy of the thermometer(in terms of percentage of span)
A=0.0025;
e= A*S;
disp(e,'Maximum Static error(degree C)=');
|
3b5657f39961da28a2bd7cfeb317b35f672bef99 | 6c9a6a1488d24fab72280520aba7d98c82d25c6f | /sigopt-uncertainty/Colonie2intrusif.sce | 4939990eb94d1e11bb98f409013cddc9c16a1fef | [] | no_license | IGNF/SIGOPT | 1f9b91de43de7aab4ca88b875f3ac1f4aa36b82b | b5f33f5940e15fb46fa3979dd096098508dc66a3 | refs/heads/master | 2020-04-06T07:12:27.471020 | 2017-09-07T14:37:45 | 2017-09-07T14:37:45 | 59,760,247 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 11,450 | sce | Colonie2intrusif.sce | tic()
q2A=q2; //Quantités initiales de déchets
NA=sum(a); //Nombre d'arcs (orientés)
D=list();
for i=1:NS
D(i)=Dijkstra(a,c,i); //Distances entre les sommets
end
d=zeros(NS,NS); //distances (coûts)
for i=1:NS
for j=(i+1):NS
CH=pcch(a,c,i,D(j),j);
for h=1:(length(CH)-1)
d(i,j)=d(i,j)+c(CH(h),CH(h+1));
d(j,i)=d(j,i)+c(CH(h),CH(h+1));
end
end
end
PCCH=list();
for i=1:NS
PCCH(i)=list();
end
for i=1:NS
for j=1:NS
PCCH(i)(j)=pcch(a,c,i,D(j),j);
end
end
s=zeros(NS,NS); //Mesure d'économie de déplacement
for i=1:NS
for j=1:NS
s(i,j)=1/(1+100*d(i,j));
end
end
V=list(); //Voisinages de chaque sommet
for k=1:NS
V(k)=find(a(k,:)==1);
end
VA=V; //Voisinages initiaux
CC=0; //Capacité courante utilisée
tau=ones(NA,NA,P); //Phéromones (entre deux arcs servis consécutivement)
az=1;
T=zeros(NS,NS);
for i=1:NS //Indexation des arcs
for j=1:NS
if a(i,j)==1 then
T(i,j)=az;
az=az+1;
end
end
end
tau1=zeros(NS,NS,P);
for pa=1:P
tau1(:,:,pa)=a;
end
tauA=tau; //Quantité initiale de phéromones
tau1A=tau1;
rho=0.99; //Coefficient d'évaporation
alpha=1;
beta=1;
N=N*ones(1,P);
for pa=1:P //Adaptation du nombre de camions
Q=sum(q2A(:,:,pa))/2;
while Q/(N(pa)*C)>0.9
N(pa)=N(pa)+1;
end
end
//Colonie de fourmis intrusive
Gachette=0;
Lseuil=200*ones(1,P); //Plafond des bonnes solutions
NC=0; //Noeud courant
pp=1; //Probabilité de diversification
K=5;
NbIter=300;
Compteur=0;
tau=tauA;
tau1=tau1A;
Lmin=%inf*ones(1,P);
Lmin1=%inf*ones(1,P);
L=%inf*ones(P,NbIter);
X=list();
Y=list();
Xmin=list();
Ymin=list();
t1=zeros(1,NbIter);
t2=zeros(1,NbIter);
pe=0.005^(1/NbIter);
for n=1:NbIter
pp=pe*pp;
for pa=15
X(pa)=list();
Y(pa)=list();
for k=1:N(pa)
X(pa)(k)=1;
Y(pa)(k)=[];
end
for k=1:N(pa)
while NC<>1
p=rand(1,'uniform');
if NC==0 then
NC=1;
end
if p<=pp then //Diversification
A=zeros(NS,NS);
if length(X(pa)(k))==1 then
for l=2:NS
A(1,l)=q2(1,l,pa);
end
else
for h=1:NS
for l=1:NS
if q2(h,l,pa)<=C-CC then
A(h,l)=q2(h,l,pa)*s(NC,h);
end
end
end
end
if CC<=C/4 then
for i=V(1)
A(i,1)=A(i,1)/10;
end
end
if CC>=3*C/4 then
for i=V(1)
A(i,1)=A(i,1)*10;
end
end
if sum(A)==0 then
Gachette=1;
CH=PCCH(NC)(1);
if length(CH)>=2 then
e=CH(length(CH)-1);
else
break
end
A(e,1)=1;
end
b=gsort(matrix(A,1,length(A)));
b=b(1:K);
b=b(b>0);
u=rand(1,'uniform');
b2=cumsum(b)/sum(b);
for i=1:length(b)
if u<=b2(i) then
[km,lm]=find(A==b(i));
break
end
end
g=grand(1,"uin",1,length(km));
km=km(g);
lm=lm(g);
// if n>=50 & pa==1 then
// pause
// end
B=PCCH(NC)(km);
B=B(B<>NC);
B=B';
X(pa)(k)=[X(pa)(k) B lm];
if Gachette==0 then
Y(pa)(k)=[Y(pa)(k) zeros(1,length(B)) 1];
else
Y(pa)(k)=[Y(pa)(k) zeros(1,length(B)) 0];
end
CC=CC+q2(km,lm,pa);
q2(km,lm,pa)=0;
q2(lm,km,pa)=0;
NC=lm;
else //Intensification
A=zeros(NS,NS);
if NC==1 & length(X(pa)(k))==1 & k==1 then
for l=2:NS
if q2(1,l,pa)>0 & a(1,l)==1 then
A(1,l)=tau1(1,l,pa)^beta;
end
end
elseif NC==1 & length(X(pa)(k))==1 then
I1=find(Y(pa)(k-1)==1);
for h=1:NS
for l=1:NS
if q2(h,l,pa)>0 & a(h,l)==1 then
if I1<>[] then
A(h,l)=tau(T(X(pa)(k-1)(I1(length(I1))),X(pa)(k-1)(I1(length(I1))+1)),T(h,l),pa)^beta;
else
A(h,l)=1;
end
end
end
end
else
for h=1:NS
for l=1:NS
if q2(h,l,pa)>0 & q2(h,l,pa)<=C-CC & a(h,l)==1 & NC<>1 then
A(h,l)=s(NC,h)^alpha*tau(T(X(pa)(k)(length(X(pa)(k))-1),NC),T(h,l),pa)^beta;
end
end
end
end
if CC<=C/4 then
for i=V(1)
A(i,1)=A(i,1)/10;
end
end
if CC>=3*C/4 then
for i=V(1)
A(i,1)=A(i,1)*10;
end
end
if sum(A)==0 then
Gachette=1;
CH=PCCH(NC)(1);
if length(CH)>=2 then
e=CH(length(CH)-1);
else
break
end
A(e,1)=1;
end
b=gsort(matrix(A,1,length(A)));
b=b(1:K);
b=b(b>0);
u=rand(1,'uniform');
b2=cumsum(b)/sum(b);
for i=1:length(b)
if u<=b2(i) then
[km,lm]=find(A==b(i));
break
end
end
g=grand(1,"uin",1,length(km));
km=km(g);
lm=lm(g);
// if n>=50 & pa==1 then
// pause
// end
B=PCCH(NC)(km);
B=B(B<>NC);
B=B';
X(pa)(k)=[X(pa)(k) B lm];
if Gachette==0 then
Y(pa)(k)=[Y(pa)(k) zeros(1,length(B)) 1];
else
Y(pa)(k)=[Y(pa)(k) zeros(1,length(B)) 0];
end
CC=CC+q2(km,lm,pa);
q2(km,lm,pa)=0;
q2(lm,km,pa)=0;
NC=lm;
end
Gachette=0;
end
if NC<>1 then
B=PCCH(NC)(1);
B=B(B<>NC);
B=B';
X(pa)(k)=[X(pa)(k) B];
Y(pa)(k)=[Y(k) zeros(1,length(B))];
end
CC=0;
NC=0;
end
L(pa,n)=cout2(X(pa),Y(pa),c,q2A(:,:,pa));
Lmin(pa)=min(L(pa,:));
if n==1 then
Xmin(pa)=X(pa);
Ymin(pa)=Y(pa);
Lmin1(pa)=L(pa,1);
end
tau(:,:,pa)=rho*tau(:,:,pa);
tau1(:,:,pa)=rho*tau1(:,:,pa);
if L(pa,n)<Lmin1(pa) then
tau(:,:,pa)=tauA(:,:,pa);
tau1(:,:,pa)=tau1A(:,:,pa);
for v=VP(pa)
tau(:,:,v)=(1/2)*tau(:,:,v)+(1/2)*tauA(:,:,v);
tau1(:,:,v)=(1/2)*tau1(:,:,v)+(1/2)*tau1A(:,:,v);
end
Xmin(pa)=X(pa);
Ymin(pa)=Y(pa);
Lmin1(pa)=Lmin(pa);
end
for k=1:N(pa)
I=find(Y(pa)(k)==1);
for h=1:(length(I)-1) //Traces "intra-tournées"
tau(T(X(pa)(k)(I(h)),X(pa)(k)(I(h)+1)),T(X(pa)(k)(I(h+1)),X(pa)(k)(I(h+1)+1)),pa)=tau(T(X(pa)(k)(I(h)),X(pa)(k)(I(h)+1)),T(X(pa)(k)(I(h+1)),X(pa)(k)(I(h+1)+1)),pa)+exp((Lseuil(pa)-L(pa,n)))*(Lseuil(pa)-L(pa,n)>=0);
for v=VP(pa)(1)
tau(T(X(pa)(k)(I(h)),X(pa)(k)(I(h)+1)),T(X(pa)(k)(I(h+1)),X(pa)(k)(I(h+1)+1)),v)=tau(T(X(pa)(k)(I(h)),X(pa)(k)(I(h)+1)),T(X(pa)(k)(I(h+1)),X(pa)(k)(I(h+1)+1)),v)+(1/2)*exp((Lseuil(pa)-L(pa,n)))*(Lseuil(pa)-L(pa,n)>=0);
end
end
end
for k=2:N(pa) //Traces "inter-tournées"
I1=find(Y(pa)(k-1)==1);
I2=find(Y(pa)(k)==1);
if I1<>[] & I2<>[] then
tau(T(X(pa)(k-1)(I1(length(I1))),X(pa)(k-1)(I1(length(I1))+1)),T(X(pa)(k)(I2(1)),X(pa)(k)(I2(1)+1)),pa)=tau(T(X(pa)(k-1)(I1(length(I1))),X(pa)(k-1)(I1(length(I1))+1)),T(X(pa)(k)(I2(1)),X(pa)(k)(I2(1)+1)),pa)+exp((Lseuil(pa)-L(pa,n)))*(Lseuil(pa)-L(pa,n)>=0);
for v=VP(pa)(1)
tau(T(X(pa)(k-1)(I1(length(I1))),X(pa)(k-1)(I1(length(I1))+1)),T(X(pa)(k)(I2(1)),X(pa)(k)(I2(1)+1)),v)=tau(T(X(pa)(k-1)(I1(length(I1))),X(pa)(k-1)(I1(length(I1))+1)),T(X(pa)(k)(I2(1)),X(pa)(k)(I2(1)+1)),v)+(1/2)*exp((Lseuil(pa)-L(pa,n)))*(Lseuil(pa)-L(pa,n)>=0);
end
end
end
if length(X(pa)(1))>1 then
tau1(X(pa)(1)(1),X(pa)(1)(2),pa)=tau1(X(pa)(1)(1),X(pa)(1)(2),pa)+exp((Lseuil(pa)-L(pa,n)))*(Lseuil(pa)-L(pa,n)>=0); //Trace sur le tout premier arc
for v=VP(pa)(1)
tau1(X(pa)(1)(1),X(pa)(1)(2),v)=tau1(X(pa)(1)(1),X(pa)(1)(2),v)+(1/2)*exp((Lseuil(pa)-L(pa,n)))*(Lseuil(pa)-L(pa,n)>=0);
end
end
Lseuil(pa)=min(Lseuil(pa),Lmin(pa)*1.15);
end
q2=q2A;
end
//Opérateur de réparation
//Réalisations
ks=[25 35]; //Shape parameters
mu=[6 7]; //Moyennes
Beta=ks./mu; //Rate parameters
xi(1)=grand(1,1,'gam',ks(1),Beta(1));
xi(2)=grand(1,1,'gam',ks(2),Beta(2));
hcrue=6.5;
SE=1:NS;
SE=SE(alt(SE)<=hcrue);
A=zeros(1,pa);
for pa=1:P
A(pa)=norm([xi(1),xi(2)]-G(pa),2);
end
I=find(A==min(A));
I=I(1);
xib=zeros(1,NPE);
for h=1:NPE
xib(h)=G(I)(h);
end
Xsol=Xmin(I);
Ysol=Ymin(I);
[Xsol,Ysol]=modif2(a,SE,Xsol,Ysol);
t=toc();
|
cda30921183fb893dabee1fb3d00da92bc3353a4 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set5/s_Electrical_Machines_-_1_T._Singh_704.zip/Electrical_Machines_-_1_T._Singh_704/CH4/EX4.3/ex4_3.sce | 60828bec1e6b4a7f4e9608a1ad97a1518fabd147 | [] | no_license | hohiroki/Scilab_TBC | cb11e171e47a6cf15dad6594726c14443b23d512 | 98e421ab71b2e8be0c70d67cca3ecb53eeef1df6 | refs/heads/master | 2021-01-18T02:07:29.200029 | 2016-04-29T07:01:39 | 2016-04-29T07:01:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 866 | sce | ex4_3.sce | errcatch(-1,"stop");mode(2);//Caption:Find the secondary no load voltage and primary secondary currents in a 3 phase transformer
//Exam:4.3
;
;
V_l=11000;//Input voltage(in Volts)
V_1ph=V_l/(3)^(1/2);//Phase voltage
KVA=50*10^(3);//
//KVA=((3)^(1/2))*V_l*I_l
I_1l=KVA/(((3)^(1/2))*V_l);//Line current
I_1ph=I_1l;//Star system value of phase current
disp(I_1ph,'Value of primary phase and line current(in Amp)=');
N_1=1000;//Primary turns
N_2=90;//Secondary turns
V_2ph=(N_2/N_1)*V_1ph;//secondary phase voltage(in Volts)
//V_2ph=V_2l delta system
disp(V_2ph,'Value of secondary phase and line voltage(in Volts)=');
I_2ph=(N_1/N_2)*I_1ph;//secondary phase current(in Amp)
disp(I_2ph,'Value of secondary phase current(in Amp) =');
I_2l=I_2ph*3^(1/2);//secondary line current(in Amp)
disp(I_2l,'Value of secondary line current(in Amp) =');
exit();
|
b96c758602f69518a4f2c08b8b305b9382170302 | 449d555969bfd7befe906877abab098c6e63a0e8 | /132/CH1/EX1.1/Example1_1.sce | 788a9a590726a137dd5b46ff2cb5500e504ff814 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 719 | sce | Example1_1.sce | //Example 1.1
//Program to find Range of a Resistor so as to satisfy manufacturer's Tolerances
//Colour Band Sequence: YELLOW, VIOLET, ORANGE, GOLD
clear;
clc ;
close ;
A=4;//NUMERICAL CODE FOR BAND YELLOW
B=7;//NUMERICAL CODE FOR BAND VIOLET
C=3;//NUMERICAL CODE FOR BAND ORANGE
D=5;//TOLERANCE VALUE FOR BAND GOLD i.e. 5%
//Resistor Value Calculation
R=(A*10+B)*10^C;
//Tolerance Value Calulation
T=D*R/100;
R1=R-T;
R2=R+T;
//Displaying The Results in Command Window
printf("\n\n\t Resistor Value is %f kOhms +- %f percent.",R/1000,D);
printf("\n\n\t Resistor Value is %f kOhms +- %f kOhms.",R/1000,T/1000);
printf("\n\n\t Range of Values of the Resistor is %f kOhms & %f kOhms.",R1/1000,R2/1000); |
ccb9cf53eb316816bbb5e169d31e15e24b85733f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3685/CH9/EX9.15/Ex9_15.sce | 16754da167fb7d70d722236cc4fd3391f2655601 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,519 | sce | Ex9_15.sce | clc
// At 25 bar, 350 degree
h1 = 3125.87 // Enthalpy in kJ/kg
s1 = 6.8481// Entropy in kJ/kgK
// 30 degree
h0 = 125.79 // Enthalpy in kJ/kg
s0 = 0.4369// Entropy in kJ/kgK
// At 3 bar, 200 degree
h2 = 2865.5 // Enthalpy in kJ/kg
s2 = 7.3115 //Entropy in kJ/kgK
// At 0.2 bar 0.95 dry
hf = 251.4 // Enthalpy of liquid in kJ/kg
hfg = 2358.3 // Latent heat of vaporization in kJ/kg
sf = 0.8320 // Entropy of liquid in kJ/kgK
sg = 7.0765// Entropy of liquid in kJ/kgK
h3 = hf+0.92*hfg // Enthalpy at state 3 in kJ/kg
s3 = sf+(0.92*sg) // Entropy at state 3 in kJ/kgK
// Part (a)
T0 = 30 // Atmospheric temperature in degree Celsius
f1 = (h1-h0)-((T0+273)*(s1-s0)) // Availability at steam entering turbine
f2 = (h2-h0)-((T0+273)*(s2-s0)) // Availability at state 2
f3 = (h3-h0)-((T0+273)*(s3-s0))// Availability at state 3
printf("\n Example 9.15")
printf("\n Availability of steam entering is %f kJ/kg",f1)
printf("\n Availability of steam leaving the turbine is %f kJ/kg",f2)
// Part (b)
m2m1 = 0.25 // mass ratio
m3m1 = 0.75 // mass ratio
Wrev = f1-(m2m1*f2)-(m3m1*f3) // Maximum work
printf("\n Maximum work is %f kJ/kg",Wrev)
// Part (c)
w1 = 600 // mass flow at inlet of turbine in kg/h
w2 = 150 // mass flow at state 2 in turbine in kg/h
w3 = 450// mass flow at state 2 in turbine in kg/h
Q = -10 // Heat loss rate kJ/s
I = ((T0+273)*(w2*s2+w3*s3-w1*s1)-Q*3600)*103/600
printf("\n Irreversibility is %f kJ/kg",I/1e3)
//The answer provided in the textbook is wrong
|
be42322c836d84a2706835fa61c4ed4d4c83cc26 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1955/CH3/EX3.8/example8.sce | 79313c33e6d17eeca4f9c50e8f2e9d881c2ae400 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,698 | sce | example8.sce | clc
clear
//input data
Dh=0.175//Hub diameter of the eye in m
Dt=0.3125//Tip diameter of the eye in m
m=20//Mass of the air handled in kg/s
N=16000//Speed of the compressor in rpm
T01=288//The ambient air temperature in K
P01=100//The ambient air pressure in kPa
Ca=152//The axial component of inlet velocity of eye in m/s
r=1.4//The ratio of specific heats of air
R=287//The universal gas constant in J/kg.K
Cp=1005//The specific heat of air at constant pressure in J/kg.K
//calculations
A=(3.14/4)*((Dt^2)-(Dh^2))//Annulus area of flow at the impeller eye in m^2
Ut=(3.1415*Dt*N)/60//Impeller eye tip speed in m/s
Uh=(3.1415*Dh*N)/60//Impeller eye hub speed in m/s
a1=90-20//Blade angle at inlet in degree
C1=Ca/sind(a1)//The air entry velocity into the impeller eye in m/s
T1=T01-((C1^2)/(2*Cp))//The actual inlet air temperature in K
P1=P01*(T1/T01)^(r/(r-1))//The actual inlet air pressure in kPa
d1=P1/(R*T1)//The initial density of air at entry in kg/m^3
b1h=atand(Ca/(Uh-(Ca/tand(a1))))//Impeller angle at the hub in degree
b1t=atand(Ca/(Ut-(Ca/tand(a1))))//Impeller angle at the tip of eye in degree
Cx1=Ca/tand(a1)//Inlet absolute velocity of air in tangential direction in m/s
Wx1=Ut-Cx1//Relative whirl component of velocity at inlet in m/s
W1=((Wx1^2)+(Ca^2))^(1/2)//Relative velocity at inlet in m/s
Mr1=W1/(r*R*T1)^(1/2)//Maximum mach number at the eye
//output
printf('(a)\n (1)The impeller eye tip speed is %3.2f m/s\n (2)The impeller eye hub speed is %3.2f m/s\n (3)The impeller angle at the hub is %i degree\n (4)Impeller angle at the tip of eye is %3.2f degree\n(b)The maximum mach number at the eye is %3.2f',Ut,Uh,b1h,b1t,Mr1)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.