blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 6 214 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2 values | repo_name stringlengths 6 87 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 15 values | visit_date timestamp[us]date 2016-08-04 09:00:04 2023-09-05 17:18:33 | revision_date timestamp[us]date 1998-12-11 00:15:10 2023-09-02 05:42:40 | committer_date timestamp[us]date 2005-04-26 09:58:02 2023-09-02 05:42:40 | github_id int64 436k 586M ⌀ | star_events_count int64 0 12.3k | fork_events_count int64 0 6.3k | gha_license_id stringclasses 7 values | gha_event_created_at timestamp[us]date 2012-11-16 11:45:07 2023-09-14 20:45:37 ⌀ | gha_created_at timestamp[us]date 2010-03-22 23:34:58 2023-01-07 03:47:44 ⌀ | gha_language stringclasses 36 values | src_encoding stringclasses 17 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 1 class | length_bytes int64 5 10.4M | extension stringclasses 15 values | filename stringlengths 2 96 | content stringlengths 5 10.4M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
4a74790dbcdfc0f2f198ace791dbe251285ca8b1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2774/CH3/EX3.5/Ex3_5.sce | 31b4664e4cb49d52da6d466f9a4b18a6b8cbc941 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 359 | sce | Ex3_5.sce | clc
// initialization of variables
T=100 // torque of shaft in N.m
N=3000 // rotation speed in rpm
omega=(N*2*%pi/60) // angular velocity in rad/sec
// calculation of power
Wdot=(T*omega); // power is work done per unit time
printf("Power transmitted is %.1f hp",Wdot/746) // divided by 746 to convert W into hp
//answer is approximated in textbook
|
bcf7038f3be7cff44a898bd4acc1c66bee276050 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1919/CH5/EX5.16/Ex5_16.sce | 670b1cf7bcafc52aae6b60367f7443cc2a937574 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 834 | sce | Ex5_16.sce |
// Theory and Problems of Thermodynamics
// Chapter 5
//Second Law of Thermodynamcis
// Example 16
clear ;clc;
//Given data
N = 1 //number of moles of air to be seperated
P = 0.1*1e6 //pressure of of air before seperation in Pa
T = 300 //temperature of air before seperation in K
R = 8.314 //gas constant
// Calculations for determining the minimum work required
// From first and second law of thermodynamics
// dU = T dS - P dV
// initial and final temperatures are identical => dU = 0
S_mix = -R*(0.21*log(0.21) + 0.79*log(0.79)) // entorphy for mixing
S_sep = - S_mix // entrophy change for seperation
W = T * S_sep // minimum work to be done
// Output Results
mprintf('Minimum work to be done for seperation = %6.1f kJ', -W)
|
d60f41f243982d25aaebaf7c95d1251037ad5e78 | 449d555969bfd7befe906877abab098c6e63a0e8 | /858/CH2/EX2.6/example_6.sce | a9d65e5dd40fe11f6e310d745f8d53e3f2c0ba61 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 484 | sce | example_6.sce | clc
clear
printf("example 2.6 page number 73\n\n")
//to find the volume of air
volume_H2=0.5 //in m3
volume_CH4=0.35 //in m3
volume_CO=0.08 //in m3
volume_C2H4=0.02 //in m3
volume_oxygen=0.21 //in m3 in air
//required oxygen for various gases
H2=0.5*volume_H2;
CH4=2*volume_CH4;
CO=0.5*volume_CO;
C2H4=3*volume_C2H4;
total_O2=H2+CH4+CO+C2H4;
oxygen_required=total_O2/volume_oxygen;
printf("amount of oxygen required = %f cubic meter",oxygen_required)
|
dfb3e9c9a3556c428bb67ac3912d244627e15daf | 449d555969bfd7befe906877abab098c6e63a0e8 | /1946/CH10/EX10.5.a/Ex_10_5_a.sce | ce9640b36a5cac9104f7daa49312262d2cb29216 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 314 | sce | Ex_10_5_a.sce | // Example 10.5.a;//maximum load resistance
clc;
clear;
close;
B=6;//bandwidth in mega hertz
Cd=8;//Photodiode capacitance in pico farad
Ca=4;//amplifier capacitance in pico farad
Rlm=(1/(2*%pi*B*10^6*Cd*10^-12))*10^-3;//Maximum lod resistance in Kilo ohm
disp(Rlm,"Maximum lod resistance in Kilo ohm")
|
5348ae89ed940072087dbed419383f93ab9c7267 | ac66d3377862c825111275d71485e42fdec9c1bd | /Resources/res/map/map1210.sce | 4c90533470ad9afed953820d6e05707bf3bf3894 | [] | no_license | AIRIA/CreazyBomber | 2338d2ad46218180f822682d680ece3a8e0b46c3 | 68668fb95a9865ef1306e5b0d24fd959531eb7ad | refs/heads/master | 2021-01-10T19:58:49.272075 | 2014-07-15T09:55:00 | 2014-07-15T09:55:00 | 19,776,025 | 0 | 2 | null | null | null | null | UTF-8 | Scilab | false | false | 4,115 | sce | map1210.sce | <?xml version="1.0" encoding="UTF-8"?>
<Project Name="map1210" Width="13" Height="13" CellSize="40" BackgroundSize="1" Background="11plus.png">
<Cell Name="墙1" X="1" Y="1" />
<Cell Name="枯树" X="4" Y="1" />
<Cell Name="墙1" X="5" Y="1" />
<Cell Name="枯树" X="8" Y="1" />
<Cell Name="墙1" X="9" Y="1" />
<Cell Name="木乃伊(怪)" X="11" Y="1" arg0="11" />
<Cell Name="枯树" X="1" Y="2" />
<Cell Name="md-履带-下" X="2" Y="2" arg0="1" />
<Cell Name="md-履带-左" X="3" Y="2" arg0="2" />
<Cell Name="md-履带-左" X="4" Y="2" arg0="2" />
<Cell Name="枯树" X="5" Y="2" />
<Cell Name="md-履带-左" X="6" Y="2" arg0="2" />
<Cell Name="md-履带-左" X="7" Y="2" arg0="2" />
<Cell Name="md-履带-左" X="8" Y="2" arg0="2" />
<Cell Name="md-履带-左" X="9" Y="2" arg0="2" />
<Cell Name="md-履带-左" X="10" Y="2" arg0="2" />
<Cell Name="出生点" X="1" Y="3" />
<Cell Name="md-履带-下" X="2" Y="3" arg0="1" />
<Cell Name="墙1" X="3" Y="3" />
<Cell Name="枯树" X="4" Y="3" />
<Cell Name="枯骨" X="6" Y="3" />
<Cell Name="墙1" X="7" Y="3" />
<Cell Name="md-履带-上" X="10" Y="3" arg0="0" />
<Cell Name="墙1" X="11" Y="3" />
<Cell Name="md-履带-下" X="2" Y="4" arg0="1" />
<Cell Name="枯骨" X="4" Y="4" />
<Cell Name="骷髅(怪)" X="5" Y="4" arg0="10" />
<Cell Name="枯树" X="6" Y="4" />
<Cell Name="枯骨" X="8" Y="4" />
<Cell Name="md-履带-上" X="10" Y="4" arg0="0" />
<Cell Name="枯树" X="11" Y="4" />
<Cell Name="墙1" X="1" Y="5" />
<Cell Name="md-履带-下" X="2" Y="5" arg0="1" />
<Cell Name="枯树" X="3" Y="5" />
<Cell Name="md-履带-上" X="5" Y="5" arg0="0" />
<Cell Name="md-履带-右" X="6" Y="5" arg0="3" />
<Cell Name="md-履带-右" X="7" Y="5" arg0="3" />
<Cell Name="墙1" X="9" Y="5" />
<Cell Name="枯树" X="10" Y="5" />
<Cell Name="枯树" X="1" Y="6" />
<Cell Name="md-履带-下" X="2" Y="6" arg0="1" />
<Cell Name="枯骨" X="3" Y="6" />
<Cell Name="枯树" X="4" Y="6" />
<Cell Name="md-履带-上" X="5" Y="6" arg0="0" />
<Cell Name="枯树" X="6" Y="6" />
<Cell Name="md-履带-下" X="7" Y="6" arg0="1" />
<Cell Name="枯树" X="8" Y="6" />
<Cell Name="枯骨" X="9" Y="6" />
<Cell Name="md-履带-上" X="10" Y="6" arg0="0" />
<Cell Name="枯树" X="11" Y="6" />
<Cell Name="枯树" X="2" Y="7" />
<Cell Name="墙1" X="3" Y="7" />
<Cell Name="md-履带-左" X="5" Y="7" arg0="2" />
<Cell Name="md-履带-左" X="6" Y="7" arg0="2" />
<Cell Name="md-履带-下" X="7" Y="7" arg0="1" />
<Cell Name="枯树" X="9" Y="7" />
<Cell Name="md-履带-上" X="10" Y="7" arg0="0" />
<Cell Name="墙1" X="11" Y="7" />
<Cell Name="枯树" X="1" Y="8" />
<Cell Name="md-履带-下" X="2" Y="8" arg0="1" />
<Cell Name="枯骨" X="4" Y="8" />
<Cell Name="枯树" X="6" Y="8" />
<Cell Name="眼球(怪)" X="7" Y="8" arg0="12" />
<Cell Name="枯骨" X="8" Y="8" />
<Cell Name="md-履带-上" X="10" Y="8" arg0="0" />
<Cell Name="眼球(怪)" X="11" Y="8" arg0="12" />
<Cell Name="墙1" X="1" Y="9" />
<Cell Name="md-履带-下" X="2" Y="9" arg0="1" />
<Cell Name="墙1" X="5" Y="9" />
<Cell Name="枯骨" X="6" Y="9" />
<Cell Name="枯树" X="8" Y="9" />
<Cell Name="墙1" X="9" Y="9" />
<Cell Name="md-履带-上" X="10" Y="9" arg0="0" />
<Cell Name="md-履带-右" X="2" Y="10" arg0="3" />
<Cell Name="md-履带-右" X="3" Y="10" arg0="3" />
<Cell Name="md-履带-右" X="4" Y="10" arg0="3" />
<Cell Name="md-履带-右" X="5" Y="10" arg0="3" />
<Cell Name="md-履带-右" X="6" Y="10" arg0="3" />
<Cell Name="枯树" X="7" Y="10" />
<Cell Name="md-履带-右" X="8" Y="10" arg0="3" />
<Cell Name="md-履带-右" X="9" Y="10" arg0="3" />
<Cell Name="md-履带-上" X="10" Y="10" arg0="0" />
<Cell Name="枯树" X="11" Y="10" />
<Cell Name="木乃伊(怪)" X="1" Y="11" arg0="11" />
<Cell Name="墙1" X="3" Y="11" />
<Cell Name="枯树" X="4" Y="11" />
<Cell Name="墙1" X="7" Y="11" />
<Cell Name="通关点-1" X="9" Y="11" />
<Cell Name="墙1" X="11" Y="11" />
</Project> |
b748c405d693b1932fa18dcd255eae5576c1fd61 | 449d555969bfd7befe906877abab098c6e63a0e8 | /67/CH1/EX1.31.b/example131b.sce | d0c043dac1a57f198475760c4330d8cd5ca07406 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 188 | sce | example131b.sce | //Example 1.31b
//Determine whether the given signal is periodic or not
clc;
n=0:1/1000:100
x=sin(n/8);
plot(x);//plotting the signal and showing that it is periodic with period 16pi |
f3b25b7037eab690a5ade99491af871a1b20c24d | 449d555969bfd7befe906877abab098c6e63a0e8 | /405/CH8/EX8.2/8_2.sce | 5a0a6e2727018c1c2683472a6cab5fd3fa180eb5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 674 | sce | 8_2.sce | clear;
clc;
printf("\t\t\tExample Number 8.2\n\n\n");
// heat transfer between black surfaces
// Example 8.2 (page no.-389-390)
// solution
L = 1;// [m] length of black plate
W = 0.5;// [m] width of black plate
T1 = 1000+273;// [K] first plate temperature
T2 = 500+273;// [K] second plate temperature
sigma = 5.669*10^(-8);// [W/square meter K^(4)]
// the ratios for use with figure 8-12(page no.-386) are
Y_by_D = W/W;
X_by_D = L/W;
// so that
F12 = 0.285;// radiation shape factor
// the heat transfer is calculated from
q = sigma*L*W*F12*(T1^(4)-T2^(4));
printf("net radiant heat exchange between the two plates is %f kW",q/1000);
|
776683b7d577d765f380d83ee9556174b8af0273 | e806e966b06a53388fb300d89534354b222c2cad | /macros/has_frame.sci | 158fb73564a0d2dbec53d6d94195089f3aa85e12 | [] | no_license | gursimarsingh/FOSSEE_Image_Processing_Toolbox | 76c9d524193ade302c48efe11936fe640f4de200 | a6df67e8bcd5159cde27556f4f6a315f8dc2215f | refs/heads/master | 2021-01-22T02:08:45.870957 | 2017-01-15T21:26:17 | 2017-01-15T21:26:17 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 616 | sci | has_frame.sci | function [out]=hasFrame()
// This function is used to check whether there is a frame to read in the current video, read through VideoReader.
//
// Calling Sequence
// results = hasFrame();
//
// Parameters
// results: A boolean. True if there is a frame to read and false if not.
//
// Description
// This is a helper function for VideoReader and readFrame() function. It returns true if the video has a
// frame to read, else it returns false.
//
// Examples
// videoStr = VideoReader('sample.mp4');
// hasFrame();
//
// Authors
// Shashank Shekhar
// Tanmay Chaudhari
out=ocv_hasFrame();
endfunction;
|
acf7eff301a6f470cf5e198ac1adb94bd8c9ca1f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1163/CH10/EX10.7/example_10_7.sce | 01e4a54c4251058884a1e8e36c962f419f3b7e12 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 471 | sce | example_10_7.sce | clear;
clc;
disp("--------------Example 10.7---------------")
printf("The minimum Hamming distance for the first code scheme (Table 10.1) is 2.\nThis code guarantees detection of only a single error. For example, if the third codeword (l01)\nis sent and one error occurs, the received codeword does not match any valid codeword. If two errors occur, however,\nthe received codeword may match a valid codeword and the errors are not detected."); //display the example
|
2ddf213e28fa1a209e0ed3773e4bdb49f3762864 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2084/CH8/EX8.3w/8_3w.sce | 1ea2dbcedb7ed2ad7d4a7d3ee890f99ca558b63d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 734 | sce | 8_3w.sce | //developed in windows XP operating system 32bit
//platform Scilab 5.4.1
clc;clear;
//example 8.3w
//calculation of the power delivered by the pulling force and average power
//given data
m=2//mass(in kg)
theta=30//angle(in degree)
a=1//acceleration(in m/s^2) of the block
t=4//time(in s)
g=9.8//gravitational acceleration(in m/s^2) of the earth
//calculation
F=(m*g*sind(theta))+(m*a)//resolving the forces parallel to the incline
v=a*t
P=F*v//equation of power
d=a*t*t/2//from equation of motion
W=F*d
pavg=W/t//average power delivered
printf('the power delivered by the pulling force at t=4 s is %d W',P)
printf('\nthe average power delivered by the pulling force between t=0 s to t=4 s is %3.1f W',pavg)
|
cad30d452c048499072ec21bc7f1bb39c441cce4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3769/CH5/EX5.49/Ex5_49.sce | 2d46542b8d0e10e073d9260621477e013d0bed91 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 580 | sce | Ex5_49.sce | clear
//Given
R1=4 //ohm
R2=4 //ohm
R3=12
R4=6.0
E=16
r=1 //ohm
//calculation
Rab=R1*R2/(R1+R2)
Rcd=R3*R4/(R3+R4)
R=Rab+Rcd+1
I=E/(R+r)
I1=I/2.0
I3=I*R4/(R3+R4)
I4=I*R3/(R3+R4)
Vab=4*I1
Vbc=I*1
Vcd=12*I3
//Result
printf("\n (i) equivalent resistance of the network is %0.3f ohm", R)
printf("\n (ii) Circuit current is %0.3f A , Current in R1 is %0.3f A , Current in R3 is %0.2f A , Current in R4 is %0.2f ",I,I1,I3,I4)
printf("\n Voltage drop Vab is %0.3f V \nVbc is %0.3f V \nVcd is %0.3f V",Vab,Vbc,Vcd)
|
360d6071f7f6101e0d14c41b5d04bec8e2ccde5f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3673/CH17/EX17.a.12/Example_a_17_12.sce | 6aef70ee1f6a146cf37208c8631addce305e3ea0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 203 | sce | Example_a_17_12.sce | //Example_a_17_12 page no:871
clc;
R2=2;
C2=0.1;
Ro=2;
R1=Ro^2/R2;
L1=C2*Ro^2;
disp(R1,"the resistance is (in ohm)");
disp(C2,"the capacitance is (in F)");
disp(L1,"the inductance is (in H)");
|
9de6394345969b42aca52945d3d4ba77376ec792 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1898/CH9/EX9.15/Ex9_15.sce | 1e140816e2edb43812d1e5cd6209187a74809241 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 564 | sce | Ex9_15.sce | clear all; clc;
disp("Scilab Code Ex 9.15 : ")
//Given:
sigma_max = 32; //MPa
sigma_min = 0; //MPa
sigma_int = 16; //MPa
tou_max = (sigma_max - sigma_min)/2 ; //MPa
sigma_avg = (sigma_max + sigma_min)/2 ; //MPa
tou_in_plane = (sigma_max - sigma_int)/2;
sigma_avg2 = sigma_avg + (tou_in_plane);
//Display:
printf('\n\nThe maximum absolute shear stress = %1.2f MPa',tou_max);
//----------------------------------------------------------------------END--------------------------------------------------------------------------------
|
1ba664ee2ce37abb8a30feb63fd90f15292dead0 | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/db/db11.sce | 30431674746af1a233f030a36d5ccec0241de309 | [] | 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 | 99 | sce | db11.sce | v=['a' 'b' 'c'];
u=db(v,'voltage',50);
disp(u);
//output
// 22.745735 22.834821 22.923004
|
71f069c15a3e2933afd7a4cd1230e0ce321f1ef3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2459/CH19/EX19.6/Ex19_6.sce | 81b60bd431dd60840bdca2bb3e49bf299894f87e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 326 | sce | Ex19_6.sce | //chapter19
//example19.6
//page420
fc=1000 // kHz
fs=5 // kHz
m=0.5
Ec=100 // V
lower_sideband=fc-fs
upper_sideband=fc+fs
amplitude=m*Ec/2
printf("lower and upper sideband frequencies = %.3f kHz and %.3f kHz \n",lower_sideband,upper_sideband)
printf("amplitude of each sideband term = %.3f V \n",amplitude)
|
f16b58c9d842b1e4c7aebf2c94ec429159c7ca2e | 1573c4954e822b3538692bce853eb35e55f1bb3b | /DSP Functions/zpklp2mb/test_2.sce | 25a0cf05ee451081b9ba8d7979020b9c96bf36c9 | [] | no_license | shreniknambiar/FOSSEE-DSP-Toolbox | 1f498499c1bb18b626b77ff037905e51eee9b601 | aec8e1cea8d49e75686743bb5b7d814d3ca38801 | refs/heads/master | 2020-12-10T03:28:37.484363 | 2017-06-27T17:47:15 | 2017-06-27T17:47:15 | 95,582,974 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 278 | sce | test_2.sce | // Test # 2 : Excess Input Arguments
exec('./zpklp2mb.sci',-1);
[z,p,k,n,d]=zpklp2mb(0.3,0.2,0.7,0.5,0.6,'pass',3);
// !--error 10000
//Number of input arguments should either be 5 or 6
//at line 37 of function zpklp2mb called by :
//zpklp2mb(0.2,0.7,0.5,0.6,'pass',3);
|
f69597ad6e094b7adb5fc802790c85cf0cd36a27 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1034/CH1/EX1.4/example4.sce | dd6d94031261c303b723cd075b82ba32a4789160 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 183 | sce | example4.sce | // example 1.4
// permutation of a string or character array...
clear;
clc;
x=['a' 'b' 'c' 'd']
printf("\npossible permutation of given string are\n");
y=perms(x);
disp(y);
|
1c33d18a1504e51e44d53004730ca7cb355f295d | 491f29501fa7d484a5860f64aef3fa89fb18ca3d | /.sandbox/robotics/HuMAns_pa10/RobotSim/arm2Launch.sce | f1f06ee0110b77e3e6f319170b984c962c84c1f9 | [
"Apache-2.0"
] | permissive | siconos/siconos-tutorials | e7e6ffbaaea49add49eddd317c46760393e3ef9a | 0472c74e27090c76361d0b59283625ea88f80f4b | refs/heads/master | 2023-06-10T16:43:13.060120 | 2023-06-01T07:21:25 | 2023-06-01T07:21:25 | 152,255,663 | 7 | 2 | Apache-2.0 | 2021-04-08T12:00:39 | 2018-10-09T13:26:39 | Jupyter Notebook | UTF-8 | Scilab | false | false | 436 | sce | arm2Launch.sce | global GLOBAL_U;
global GLOBAL_DT;
global GLOBAL_HIST;
getf 'lib/arm2/modele.sci'
getf 'lib/modules.sci'
getf 'lib/simulation.sci'
getf 'lib/plot.sci'
getf 'arm2Plot.sci'
getf 'arm2Control.sci'
// vector x=(q,qdot)
// Initial Values
//
arm2ModelInit();
GLOBAL_DT=0.1;
q0=zeros(1,arm2Ndof());
T=5.0;
simulationLoop(q0,T,arm2JointControl, arm2Model,arm2Ndof());
//simulationPlot2D(1,1);
//simulationPlot2D(1,2);
arm2Plot3D();
|
78ccdba4c9434c505697c5b2b50acd87b6e7cdc6 | 2c79f9c6e813843b91f9a901238454c1a78231cc | /Modelo_Celda_Fotovoltaica/photovoltaicCell.sci | 15248fffe2ff9b25ca36a4d3c487406ba5ef5190 | [] | no_license | jacometoss/Power_System_Modeling | 8d53eda13a44b9e3eb3ef1790f341b25cc6e47a6 | 814a0e4c839dae72b3984bf6fe7e73084ace3a84 | refs/heads/master | 2022-11-20T21:26:56.156469 | 2020-07-18T08:05:14 | 2020-07-18T08:05:14 | 258,450,422 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 533 | sci | photovoltaicCell.sci | function [V,Ivtg,P]=photovoltaicCell(Vi,Vf,N,T,G,Voc,Isc,k,q,Ns,Np,A,Ki,Eg)
h=(Vf-Vi)/N;
Tref=273+25;
Tc=273+T;
Irs=Isc/(exp(q*Voc/(Ns*k*A*Tc))-1);
Is=Irs*(Tc/Tref)^3*exp(q*Eg*(1/Tref-1/Tc)/(k*A));
Iph=(Isc+Ki*(Tc-Tref))*G;
for i = 1:N //Seccion Modificable para matriz
V(i+1)=Vi+i*h;
Ivtg(i+1)=Np*Iph-Np*Is*(exp(q*V(i+1)/(Ns*k*Tc*A))-1);
if (Ivtg(i+1)<0) then
Ivtg(i+1)=0;
end
P(i+1)=V(i+1)*Ivtg(i+1);
disp([i,V(i+1),Ivtg(i+1)])
end
endfunction
|
bb3a060c12b2ff07380bc2233bb175969897edec | 8ea401b354e99fe129b2961e8ee6f780dedb12bd | /src/cpp/loader.sce | 9432aace11a74630079d19b251b5a4ce08789934 | [
"BSD-2-Clause"
] | permissive | adityadhinavahi/SciPandas | 91340ca30e7b4a0d76102a6622c97733a28923eb | b78b7571652acf527f877d9f1ce18115f327fa18 | refs/heads/master | 2022-12-20T04:04:35.984747 | 2020-08-19T16:10:51 | 2020-08-19T16:10:51 | 288,765,541 | 0 | 1 | null | 2020-08-19T15:35:04 | 2020-08-19T15:14:46 | Python | UTF-8 | Scilab | false | false | 694 | sce | loader.sce | // This file is released under the 3-clause BSD license. See COPYING-BSD.
// Generated by builder.sce : Please, do not edit this file
// ----------------------------------------------------------------------------
//
if ~win64() then
warning(_("This module requires a Windows x64 platform."));
return
end
//
PyVar_path = get_absolute_file_path('loader.sce');
//
// ulink previous function with same name
[bOK, ilib] = c_link('PyVar');
if bOK then
ulink(ilib);
end
//
link(PyVar_path + 'libPyVar' + getdynlibext(), ['PyVar'],'cpp');
// remove temp. variables on stack
clear PyVar_path;
clear bOK;
clear ilib;
// ----------------------------------------------------------------------------
|
c113742fd33d3b596895b24c90f50aea79e8b6e1 | 98efda43218be3d9e665771c28742517fd4f334f | /Toolbox Test/dutycycle/dutycycle.sci | 1979f9fb0dc267b59ad4632d8944e172bb77e222 | [] | no_license | ankurmallick/Scilab_spt | bded5b3ed7c5618770ef4bb997b5f61aa7732cd9 | e35c986f70147ee773796c839153ed7adbda3941 | refs/heads/master | 2021-01-17T06:48:24.162281 | 2016-12-05T12:54:24 | 2016-12-05T12:54:24 | 43,445,584 | 0 | 2 | null | 2015-12-10T05:15:44 | 2015-09-30T16:47:57 | Scilab | UTF-8 | Scilab | false | false | 11,736 | sci | dutycycle.sci | function [d, initialcross, finalcross, nextcross, midreference]= dutycycle(x, varargin)
// This function estimate duty cycle of bilevel waveform pulses.
// Calling Sequence
// d=dutycycle(x)
// d=dutycycle(x, t)
// d= dutycycle(tau, prf)
// d=dutycycle (x, t, 'Polarity', pol)
// d=dutycycle(x, t, 'MidPercentReferenceLevel', N )
// d=dutycycle(x, t, 'Tolerance', M)
// d=dutycycle(x, t,'StateLevels', O)
// [d initialcross finalcross nextcross midreference]=dutycycle(x)
// [d initialcross finalcross nextcross midreference]=dutycycle(x, t)
// [d initialcross finalcross nextcross midreference]=dutycycle(x, t, 'Polarity', pol)
// [d initialcross finalcross nextcross midreference]=dutycycle(x, t, 'MidPercentReferenceLevel', N )
// [d initialcross finalcross nextcross midreference]= dutycycle(x, t, 'Tolerance', M)
// [d initialcross finalcross nextcross midreference]= dutycycle(x, t,'StateLevels', O)
//
//
// Parameters
// x: real vector.
// t: defiene instant sample time t as vector with same length of x, or specifies the sample rate, t, as a positive scalar.
// tau: define real scalar input pulse width TAU (in seconds).
// prf: pulse repetition frequency PRF (in Hz). The product of TAU and PRF must be less than or equal to 1.
// Polarity: specify the polarity of the pulse as either 'positive' or 'negative', where the default value is 'positive'.
// MidPercentReferenceLevel: specify the mid percent reference leves as a percentage, default value of N is 50.
// Tolerance: define the tolerance value as real scaler value, where default value of M is 2.0.
// StateLevels: define the lower and upper state levels as two element real vector.
// d: returns the ratio of the pulse width to the pulse period for each positive-polarity pulse
// initialcross: returns a vector of initial cross values of bilevel waveform transitions X
// finalcross: returns a vector of final cross values of bilevel waveform transitions X
// nextcross: returns a vector of next cross values of bilevel waveform transitions X
// midreference: return mid reference value corrosponding to mid percenr reference value.
// Examples
// x=[1.2, 5, 10, -20, 12]
//t=1:length(x)
//d=dutycycle(x, t)
// See also
// Authors
// Jitendra Singh
// run statelevels and midcross function before running risetime function.
if sum(length(x))==1 & length(varargin)==0 then
error('You need exactly two inputs specified when TAU is a scalar.')
elseif sum(length(x))==1 & type(varargin(1))==1 then
if length(argn(1))>1 then
error('Too many outputs specified when TAU is a scalar.');
end
dd=x*varargin(1);
if or(dd>1) then
error('The product of TAU and PRF should be less than or equal to 1.')
else
d=x*varargin(1);
end
else
if length(varargin)==0 then
varargin=varargin;
end
sindex=[];
if length(varargin)>=1 then
a=1;
for i=1:length(varargin)
if type(varargin(i))==10 then
sindex(a)=i;
a=a+1;
end
end
end
pol='Positive';
polidx=[];
if (~isempty(sindex)) then
for j=1:length(sindex)
select varargin(sindex(j))
case {'StateLevels'}
case {'MidPercentReferenceLevel'}
case {'Tolerance'}
case{'Polarity'}
if length(varargin)<j+1 then
error ('Parameter polarity requires a value.')
elseif type( varargin(sindex(j)+1))==1 then
error ('POLARITY must be either ''Positive'' or ''Negative''.')
elseif varargin(sindex(j)+1)== 'StateLevels' | varargin(sindex(j)+1)== 'MidPercentReferenceLevel' | varargin(sindex(j)+1)== 'Tolerance' then
error ('Parameter polarity requires a value.')
elseif varargin(sindex(j)+1)~= 'Positive' & varargin(sindex(j)+1)~= 'Negative' then
error ('POLARITY must be either ''Positive'' or ''Negative''.');
else
//varargin (sindex(j))=null();
polidx=sindex(j);
end
case {'Positive'}
if j==1 then
error(strcat(['Unexpected option:', " ", varargin(sindex(j))]));
elseif varargin(sindex(j)-1)~= 'Polarity'
error(strcat(['Unexpected option:', " ", varargin(sindex(j))]));
else
polinputidx= sindex(j);
pol=varargin (sindex(j)) ;
end
case {'Negative'}
if j==1 then
error(strcat(['Unexpected option:', " ", varargin(sindex(j))]));
elseif varargin(sindex(j)-1)~= 'Polarity'
error(strcat(['Unexpected option:', " ", varargin(sindex(j))]));
else
polinputidx= sindex(j);
pol=varargin (sindex(j)) ;
end
else
error(strcat(['Invalid optional argument'," ", varargin(sindex(j))]));
end // switch
end // for
end // if
//
// disp(varargin)
if length(polidx)>0 then
varargin (polidx)=null();
varargin(polinputidx-1)=null();
end
[crossval midref levels t tolerance Tinput]= midcross(x, varargin(:));
upperbound= levels(2)- (tolerance/100)*(levels(2)-levels(1));
mostupperbound=levels(2)+ (tolerance/100)*(levels(2)-levels(1));
lowerbound= levels(1)+ (tolerance/100)*(levels(2)-levels(1));
mostlowerbound=levels(1)- (tolerance/100)*(levels(2)-levels(1));
if length(Tinput)==length(x) then
crossvalue=crossval;
else
crossvalue=1+(crossval*Tinput);
end
maxx=[];
minn=[];
if length(crossval)>= 2 then
for i =1:(length(crossval)-1)
maxx(i)= max(x(ceil(crossvalue(i)):floor(crossvalue(i+1))))
minn(i)= min(x(ceil(crossvalue(i)):floor(crossvalue(i+1))))
end
end
pos_idx=[];
neg_idx=[];
if length(maxx)>=1 then
pos= 100*((maxx-levels(2))/(levels(2)-levels(1)));
pos_idx=find(pos>0)
end
if length(minn)>=1 then
neg= 100*((minn-levels(1))/(levels(2)-levels(1)));
neg_idx=find(neg<0)
end
int_pos=[];
final_pos=[];
int_neg=[];
final_neg=[];
if length(pos_idx)>0 then
int_pos=crossval(pos_idx);
final_pos=crossval(pos_idx+1);
end
if length(neg_idx)>0 then
int_neg=crossval(neg_idx);
final_neg=crossval(neg_idx+1);
end
d=[];
if pol=='Positive' then
if length(int_pos)>=2 then
if int_pos($)~=crossval($) & final_pos($)~=crossval($) then
int_pos=[int_pos, crossval($)]
initialcross=int_pos (1:($-1));
finalcross=final_pos;
nextcross=int_pos(2:$);
d=(finalcross-initialcross)./(nextcross-initialcross);
else
initialcross=int_pos(1:($-1));
finalcross=final_pos(1:($-1));
nextcross=int_pos(2:$);
d=(finalcross-initialcross)./(nextcross-initialcross);
end
else
d=[];
initialcross=[];
finalcross=[];
nextcross=[];
end
else
if length(int_neg)>=2 then
if int_neg($)~=crossval($) & final_neg($)~=crossval($) then
int_neg=[int_neg, crossval($)]
initialcross=int_neg(1:($-1));
finalcross=final_neg;
nextcross=int_neg(2:$);
d=(finalcross-initialcross)./(nextcross-initialcross);
else
initialcross=int_neg(1:($-1));
finalcross=final_neg(1:($-1));
nextcross=int_neg(2:$);
d=(finalcross-initialcross)./(nextcross-initialcross);
end
else
d=[];
initialcross=[];
finalcross=[];
nextcross=[];
end
end
midreference=midref;
//midreference=midref;
if argn(1) == 1 then // if the defined output is only 1, the it will provide the graphical representation of //levels
if length(d)==0 then
plot(t,x, 'LineWidth',1, 'color', 'black')
// xtitle('', 'Time (second)','Level (Volts)' );
plot(t,midreference * ones(1, length(t)),'-r', 'LineWidth',0.5)
plot(t,mostupperbound * ones(1, length(t)),'--r', 'LineWidth',0.5)
plot(t,levels(2) * ones(1, length(t)),'--k', 'LineWidth',0.5)
plot(t,upperbound * ones(1, length(t)),'--r', 'LineWidth',0.5)
plot(t,lowerbound *ones(1, length(t)),'--g', 'LineWidth',0.5)
plot(t,levels(1) * ones(1, length(t)),'--k', 'LineWidth',0.5)
plot(t,mostlowerbound * ones(1, length(t)),'--g', 'LineWidth',0.5)
xlabel("Time (second)", "fontsize",3, "color", "black" )
ylabel("Level (Volts)", "fontsize",3, "color", "black" )
legends(["Signal"; "upper boundary"; "upper state"; "lower boundary"; "mid reference"; "upper boundary"; "lower state"; "lower boundary"], [[1;1], [5;2], [1;2], [5;2], [5;1], [3;2], [1;2], [3;2]], opt='?')
else
plot(t,x, 'LineWidth',1, 'color', 'black')
plot(t,midreference * ones(1, length(t)),'-g', 'LineWidth',0.5)
//n=length(finalcross);
// rects=[initialcross(1:2:$); levels(2)*ones(d(1:2:$)); p(1:2:$); (levels(2)-levels(1))*ones(p(1:2:$))]
//
//
// col=-10*ones(p(1:2:$));
midc=[nextcross, initialcross, finalcross];
midcross=gsort(midc, 'c','i' )
plot(midcross, midreference*ones(midcross), "r*", 'MarkerSize',15);
plot(t,mostupperbound * ones(1, length(t)),'--r', 'LineWidth',0.5)
plot(t,levels(2) * ones(1, length(t)),'--k', 'LineWidth',0.5)
plot(t,upperbound * ones(1, length(t)),'--r', 'LineWidth',0.5)
plot(t,midreference * ones(1, length(t)),'-r', 'LineWidth',0.5)
plot(t,lowerbound *ones(1, length(t)),'--g', 'LineWidth',0.5)
plot(t,levels(1) * ones(1, length(t)),'--k', 'LineWidth',0.5)
plot(t,mostlowerbound * ones(1, length(t)),'--g', 'LineWidth',0.5)
// xrects(rects, col);
xlabel("Time (second)", "fontsize",3, "color", "black" )
ylabel("Level (Volts)", "fontsize",3, "color", "black" )
legends([ "Signal"; "mid cross"; "upper boundary"; "upper state"; "lower boundary"; "mid reference"; "upper boundary"; "lower state"; "lower boundary"], [ [1;1], [-10;5], [5;2], [1;2], [5;2], [5;1], [3;2],[1;2], [3;2]], opt='?')
end
end
end
//
//
endfunction
|
d6ae6550bae590e5c451fb0ba5eefead70031d85 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2144/CH3/EX3.9/ex3_9.sce | f73f02ff7c8cf2f2af977a66e9fdaa712c8df9d7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 729 | sce | ex3_9.sce | // Exa 3.9
clc;
clear;
close;
// Given data
Gamma = 1.41;
C_v = 0.703;// in kJ/kg-K
P1 = 105;// in kN/m^2
P2 = 2835;// in kN/m^2
T1 = 15;// in degree C
T1 = T1 + 273;// in K
m = 0.2;// in kg
// Formula T2/T1 = (P2/P1)^((Gamma-1)/Gamma)
T2 = T1*(P2/P1)^((Gamma-1)/Gamma);// in K
T2 = T2 - 273;// in degree C
disp(T2,"The final temperature in degree C is");
T2 = T2+273;// in K
I_E = m*C_v*(T2-T1);// in kJ
disp(I_E,"Change in internal energy in kJ is");
W = I_E;// in kJ
disp(W,"Work done in kJ is");
// Note: There is an error to calculate the value of T2, and this wrong value is putted to evaluate the value of Change in internal energy but the value of Change in internal energy is calculated correc.
|
206b45d51163ef584096dd2877f71c8d96127910 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1703/CH2/EX2.3/2_3.sce | 29ab533d5e8eee291240b4ffaff3a35a6ab97f84 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 2_3.sce |
clc
//initialisation of variables
clear
d= 4 //ft
h= 7 //ft
W= 2500 //lb
OG= 3.5
OB= 1.55 //ft
//CALCULATIONS
V= W/d^3
D= V/(%pi*(d/2)^2)
I= %pi*d^4/64
BM= I/V
BG= OG-OB
T= sqrt((W*OG-%pi*d^4)*d^4*2*%pi)-W
//RESULTS
printf ('Minimum tension in chain = %.f lb',T)
|
fc93467d789f05458d0fd3e55f5a69d10773e139 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3269/CH9/EX9.4/Ex9_4.sce | 590147e934ed7866a3314459bf824246f8b302a7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 3,781 | sce | Ex9_4.sce | // Example 9.4
clear all;
clc;
H = 1; // Equivalent dos in rem
n = 10^6; // Population
// Given data
// Using the data of number of expected deaths of leukemia per 10^6 people from Table 9.9
// In utero age group
frac_utero = 0.011; // Fraction of population
riskyr_utero = 10; // Risk years
riskcoef_utero = 15; // Risk coefficient
// Number of deaths in utero is given by
deaths_utero = frac_utero*riskyr_utero*riskcoef_utero;
// In 0-0.99 age group
frac_0_099 = 0.014; // Fraction of population
riskyr_0_099 = 25; // Risk years
riskcoef_0_099 = 2; // Risk coefficient
// Number of deaths in 0-0.99 age group is given by
deaths_0_099 = frac_0_099*riskyr_0_099*riskcoef_0_099;
// In 1-10 age group
frac_1_10 = 0.146; // Fraction of population
riskyr_1_10 = 25; // Risk years
riskcoef_1_10 = 2; // Risk coefficient
// Number of deaths in 1-10 age group is given by
deaths_1_10=frac_1_10*riskyr_1_10*riskcoef_1_10;
// In 11-20 age group
frac_11_20 = 0.196; // Fraction of population
riskyr_11_20 = 25; // Risk years
riskcoef_11_20 = 1; // Risk coefficient
// Number of deaths in 11-20 age group is given by
deaths_11_20=frac_11_20*riskyr_11_20*riskcoef_11_20;
// In 21-30 age group
frac_21_30 = 0.164; // Fraction of population
riskyr_21_30 = 25; // Risk years
riskcoef_21_30 = 1; // Risk coefficient
// Number of deaths in 21-30 age group is given by
deaths_21_30=frac_21_30*riskyr_21_30*riskcoef_21_30;
// In 31-40 age group
frac_31_40 = 0.118; // Fraction of population
riskyr_31_40 = 25; // Risk years
riskcoef_31_40 = 1; // Risk coefficient
// Number of deaths in 31-40 age group is given by
deaths_31_40=frac_31_40*riskyr_31_40*riskcoef_31_40;
// In 41-50 age group
frac_41_50 = 0.109; // Fraction of population
riskyr_41_50 = 25; // Risk years
riskcoef_41_50 = 1; // Risk coefficient
// Number of deaths in 41-50 age group is given by
deaths_41_50 = frac_41_50*riskyr_41_50*riskcoef_41_50;
// In 51-60 age group
frac_51_60 = 0.104; // Fraction of population
riskyr_51_60 = 22.5; // Risk years
riskcoef_51_60 = 1; // Risk coefficient
// Number of deaths in 51-50 age group is given by
deaths_51_60 = frac_51_60*riskyr_51_60*riskcoef_51_60;
// In 61-70 age group
frac_61_70 = 0.08;
riskyr_61_70 = 15.1;
riskcoef_61_70 = 1; // Risk coefficient
// Number of deaths in 61-70 age group is given by
deaths_61_70=frac_61_70*riskyr_61_70*riskcoef_61_70;
// In 71-80 age group
frac_71_80 = 0.044; // Fraction of population
riskyr_71_80 = 9.1; // Risk years
riskcoef_71_80 = 1; // Risk coefficient
// Number of deaths in 71-80 age group is given by
deaths_71_80 = frac_71_80*riskyr_71_80*riskcoef_71_80;
// Age greater than 80
frac_80 = 0.02; // Fraction of population
riskyr_80 = 4.5; // Risk years
riskcoef_80 = 1; // Risk coefficient
// Number of deaths with age greater than 80 years is given by
deaths_80=frac_80*riskyr_80*riskcoef_80;
// Calculation
total_deaths = deaths_utero+deaths_0_099+deaths_1_10+deaths_11_20+deaths_21_30+deaths_31_40+deaths_41_50+deaths_51_60+deaths_61_70+deaths_71_80+deaths_80;
// Result
printf(" \n Number of cases or deaths expected from leukemia = %.1f \n",total_deaths);
|
88c817763277b16be2489b11f3158064b02f0267 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3020/CH7/EX7.2/ex7_2.sce | 58e80541d976a62b6730df284a91756636f83fb5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 380 | sce | ex7_2.sce | clc;
clear all;
theta = 40; // Angle of wedge in s
b = 0.125e-2; // Fringe with in meters
lambda = (2*b*theta*(%pi/180)*(1/3600));//The wavelength of light used
lamda=lambda*1e10;//conversion in Angstrome
disp('m',lambda,'The wavelength of light used is ')
disp('Angstrom',lamda,'The wavelength of light used is ')
//rounding off value of lambda in meter due to scilab..
|
0906cac4cf8b4f0cc5f5b5fe7329337f9541c969 | a8592d34f144b71794ebf30f1c2a1b5faf0b053c | /AkarPersamaan/scilab/soal_07.sce | 967c20787690c741c2adc9aa33b1465d4bddcf39 | [] | no_license | f-fathurrahman/ffr-MetodeNumerik | ee9a6a7153b174b1ba3d714fe61ccbd1cb1dd327 | e3a9da224c0fd5b32e671708e890018a3c4104c4 | refs/heads/master | 2023-07-19T22:29:38.810143 | 2023-07-07T10:02:34 | 2023-07-07T10:02:34 | 107,272,110 | 2 | 2 | null | null | null | null | UTF-8 | Scilab | false | false | 1,060 | sce | soal_07.sce | function f = soal_07(h)
r = 0.45 // 0.5*0.9
mf = 70
rho = 1030
d = 2*r - h
V_celup = (1.0/3.0) * %pi * d^2 * (3*r - d)
f = rho*V_celup - mf
endfunction
function mf = eval_mf(h)
r = 0.45 // 0.5*0.9
mf = 70
rho = 1030
d = 2*r - h
V_celup = (1.0/3.0) * %pi * d^2 * (3*r - d)
mf = rho*V_celup
endfunction
function do_plot()
h1 = 0.0
h2 = 0.9
Npoints = 100
h = linspace(h1, h2, Npoints)
f = zeros(1,Npoints)
for i = 1:Npoints
f(i) = soal_07(h(i))
printf("%18.10f %18.10f\n", h(i), f(i))
end
clf()
plot(h, f)
xgrid()
xs2pdf( gcf(), "soal_07.pdf" )
endfunction
// do_plot()
exec("bisection.sce", -1)
root = bisection( soal_07, 0.6545454545, 0.6636363636 )
printf("At root = %18.10f\n", eval_mf(root))
exec("regula_falsi.sce", -1)
root = regula_falsi( soal_07, 0.6545454545, 0.6636363636 )
printf("At root = %18.10f\n", eval_mf(root))
exec("ridder.sce", -1)
root = ridder( soal_07, 0.6545454545, 0.6636363636 )
printf("At ridder = %18.10f\n", eval_mf(root))
if getscilabmode() ~= "STD"
quit()
end
|
9d8b0aad6e6acfd72033a689c1073cba39242024 | 449d555969bfd7befe906877abab098c6e63a0e8 | /564/DEPENDENCIES/16_10data.sci | df8cf2454d52f5f0636b6475e0ed21a2ff1d87f8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 72 | sci | 16_10data.sci | W=10;//load in N/m
L=20;//L in m
EI=70000;//flexural rigidity,in N.m^2 |
b32de1297104bb5ebaa7db7fd4e624c3afbb5235 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2345/CH15/EX15.17/Ex15_17.sce | 95d4f69d8ef09e04074d4e6810199fa840d32cf1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex15_17.sce | //Finding resistance
//Example 15.17(pg. 403)
clc
clear
Ra=1//resistance of A in ohm
lab=20//ratio of length of A to length of B
Aab=1/3//ratio of area of A to area of B
//resistivity is same for both wires
Rb=Ra*(Aab/lab)//resistance of wire B in ohm
//since Ra=rho*la/Aa and Rb=rho*lb/Ab so from ratio of both we get Rb
printf('Thus resistance of wire B is %2.4f omhs',Rb)
|
e7450381e2288f0e28577e0ed86eecfaad5e84f3 | f6134e0a162a059c42ec3ef8de2a63941d73936c | /Scilab_code/RLG/Geometry/projectionDroite.sci | f6b1644769a37cecd24664ec39a546bea4875df6 | [] | no_license | mxch18/SRL-WRT_pathPlanning | 38a1701934a4a0e919a6c1c7990092b242df72da | 6992febbbe103814d2cef5351a0e8917b183a2b0 | refs/heads/master | 2020-03-23T06:43:54.155192 | 2018-09-26T17:26:56 | 2018-09-26T17:26:56 | 141,226,032 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 675 | sci | projectionDroite.sci | function [xproj,dist] = projectionDroite(x,orig,n)
//Author : Maxens ACHIEPI
//Space Robotics Laboratory - Tohoku University
//Description:
//Projects x onto the line whose direction is n
//INPUT
//x : the point to be projected. Row vector.
//orig : the line's "origin". Row vector;
//n : the line's direction. Row vector.
//OUTPUT
//xproj: the projected point. Row vector.
//dist: the distance squared to the origin.
//----------------------------------------------------------------------------//
n = n/norm(n);
xproj = ((x-orig)*n')*n + orig;
dist = normNoSqrt(xproj,orig);
endfunction
|
da16cfda271be22020fcceccb07619846a6f1449 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2135/CH4/EX4.14/Exa_4_14.sce | cb3e1ed2321cf2ccc31d85d45dd9cff43eacd70d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 508 | sce | Exa_4_14.sce | //Exa 4.14
clc;
clear;
close;
format('v',7);
//Given Data :
V1=4;//m^3
V2=4;//m^3
m=20;//Kg
p1=4*100;//KPa
p2=8*100;//KPa
Cp=1.005;//KJ/KgK
Cv=0.718;//KJ/KgK
R=Cp-Cv;//KJ/KgK
T1=p1*V1/m/R;//K
T2=p2*V2/m/R;//K
deltaU=m*Cv*(T2-T1);//KJ
disp(deltaU,"Change in internal energy in KJ : ");
W=0;//KJ
disp(W,"Since no movement, Work done in KJ : ");
Q=W+deltaU;//KJ
disp(Q,"Heat transfered in KJ : ");
deltaS=integrate('m*Cv/T','T',T1,T2);//KJ/K
disp(deltaS,"Entropy change in KJ/K : ");
|
d3bfeb20efef8b55d899062bfacde732ccc07a01 | a575467214db466362975211fa96cca424e6955f | /MatrixOperations/Format/model20.sce | 215724b9cbe0eab77f3875dd7b5afcd9bbca6194 | [] | no_license | Youssef-AEM/XBorne-2017 | e41051e63a2efecfbfc400c20c6e2fde283cb4e6 | 18e51ac7ae42a98b2e2760cea0ff43400cc74f05 | refs/heads/main | 2023-06-05T10:17:18.190354 | 2021-06-29T17:18:01 | 2021-06-29T17:18:01 | 381,379,470 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 6,082 | sce | model20.sce | model20 =[
0.603175 0.396825 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0.0396825 0.563492 0.396825 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0.0793651 0.52381 0.396825 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0.119048 0.484127 0.396825 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0.15873 0.444444 0.396825 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0.198413 0.404762 0.396825 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0.238095 0.365079 0.396825 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0.277778 0.325397 0.396825 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0.31746 0.285714 0.396825 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0.357143 0.246032 0.396825 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0.396825 0.206349 0.396825 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0.198413 0.396825 0.396825 0.00793651 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0.396825 0.198413 0 0 0.396825 0.00793651 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0.396825 0 0.198413 0 0 0 0.396825 0.00793651 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.166667 0 0.396825 0 0.436508 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0.396825 0 0 0.198413 0 0 0 0.396825 0.00793651 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.47619 0 0.126984 0 0 0 0.396825 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0.396825 0 0 0 0.238095 0 0 0 0.357143 0.00793651 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.396825 0 0 0 0.206349 0 0 0 0.396825 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.396825 0 0 0 0.198413 0 0 0 0.396825 0.00793651 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.515873 0 0 0 0.0873016 0 0 0 0.396825 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.396825 0 0 0 0.277778 0 0 0 0.31746 0.00793651 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.396825 0 0 0 0.246032 0 0 0 0.357143 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.396825 0 0 0 0.198413 0 0 0 0.396825 0.00793651 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.555556 0 0 0 0.047619 0 0 0 0.396825 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.396825 0 0 0 0.31746 0 0 0 0.277778 0.00793651 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.396825 0 0 0 0.285714 0 0 0 0.31746 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.396825 0 0 0 0.198413 0 0 0 0.396825 0.00793651 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.595238 0 0 0 0.00793651 0 0 0 0.396825 0 0 0 0 0 0 0 0
0 0 0 0 0 0.238095 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.396825 0 0 0 0.357143 0 0 0 0.00793651 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.396825 0 0 0 0.325397 0 0 0.277778 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.396825 0 0 0 0.198413 0 0 0.396825 0.00793651 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.595238 0 0 0 0.00793651 0 0 0.396825 0 0 0 0 0
0 0 0 0 0 0.238095 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.396825 0 0 0.365079 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.396825 0 0 0.198413 0 0.396825 0.00793651 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.595238 0 0 0.00793651 0 0.396825 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.396825 0 0.198413 0 0.396825 0.00793651 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.595238 0 0.00793651 0 0.396825 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.396825 0 0.595238 0 0.00793651
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.595238 0 0.00793651 0.396825
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.595238 0.404762
]
|
15635ebefb0d395d87b2a6b587dccf15947d9de3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1997/CH11/EX11.50/example50.sce | 8463aac93fa39bf99420388bae9a7af91422ce2d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 602 | sce | example50.sce | //Chapter-11 example 50
//=============================================================================
clc;
clear;
//Given data
Vo = 3*10^8; // vel of EM wave m/s;
PRT = 1.4*10^-3; // pulse repetitive time. in sec
PW = 5 *10^-6; // Pulse width in sec
Pt = 1000*10^3; //Peak power in watts
//Calculations
DC = PW/PRT // Duty cycle
Pav = Pt*DC // avg. power in W
//output
mprintf('Duty cycle = %e\n Average power = %g W',DC,Pav );
//==============================================================================
|
0e79cf5168476b5c5f94180f6b9c662e690bc321 | 881e0bcc7118244a24f736786ac36140acfb885e | /yeast/results/GAssist-ADI-C.yeast-2/result1s0.tst | 1f056d5a7547d267ca336864b2abcc68ae00226a | [] | no_license | woshahua/Experiment_File | 3e34e5a4a622d6d260fbdf8d5ef2711712aad9bc | 6a139cd3f779373799cb926ba90d978235b0de0d | refs/heads/master | 2021-01-01T06:57:13.285197 | 2017-07-28T08:17:38 | 2017-07-28T08:17:38 | 97,557,409 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,593 | tst | result1s0.tst | @relation yeast-2
@attribute Mcg real [0.11, 1.0]
@attribute Gvh real [0.13, 1.0]
@attribute Alm real [0.21, 1.0]
@attribute Mit real [0.0, 1.0]
@attribute Erl real [0.5, 1.0]
@attribute Pox real [0.0, 0.83]
@attribute Vac real [0.0, 0.73]
@attribute Nuc real [0.0, 1.0]
@attribute Class {MIT, NUC, CYT, ME1, ME2, ME3, EXC, VAC, POX, ERL}
@inputs Mcg, Gvh, Alm, Mit, Erl, Pox, Vac, Nuc
@outputs Class
MIT CYT
CYT CYT
MIT MIT
MIT MIT
CYT CYT
MIT MIT
MIT MIT
ME3 ME3
MIT ME1
ME3 ME3
NUC NUC
CYT NUC
ME3 NUC
CYT NUC
CYT NUC
CYT CYT
CYT NUC
CYT NUC
CYT CYT
MIT ME3
CYT CYT
ME2 ME1
NUC CYT
MIT MIT
NUC MIT
ME2 ME1
NUC NUC
CYT CYT
ME1 EXC
CYT CYT
NUC CYT
NUC CYT
CYT NUC
NUC CYT
NUC CYT
NUC CYT
CYT NUC
NUC NUC
NUC CYT
NUC CYT
ME3 ME3
NUC CYT
MIT CYT
ME3 ME3
POX CYT
MIT MIT
MIT MIT
ME3 ME3
CYT NUC
ERL ME1
NUC CYT
MIT MIT
ME2 ME3
CYT CYT
ME3 ME3
NUC NUC
EXC CYT
CYT ME3
MIT MIT
MIT MIT
NUC NUC
MIT CYT
MIT MIT
MIT CYT
MIT MIT
MIT CYT
MIT CYT
MIT CYT
EXC CYT
CYT NUC
NUC NUC
CYT NUC
NUC NUC
CYT NUC
CYT CYT
MIT NUC
CYT CYT
ME2 ME1
ME3 ME3
ME3 ME3
NUC NUC
NUC NUC
CYT MIT
CYT CYT
CYT CYT
CYT CYT
NUC CYT
NUC CYT
NUC NUC
NUC ME3
CYT CYT
NUC NUC
NUC CYT
NUC CYT
NUC NUC
CYT CYT
CYT CYT
CYT CYT
CYT MIT
NUC NUC
NUC CYT
ME3 ME3
NUC CYT
ME3 ME3
NUC NUC
NUC CYT
NUC NUC
EXC ME1
NUC NUC
NUC NUC
NUC NUC
CYT NUC
NUC CYT
CYT NUC
CYT NUC
ME2 ME1
CYT CYT
CYT CYT
VAC CYT
VAC ME1
VAC CYT
CYT CYT
ME1 ME1
ME3 ME3
ME3 CYT
ME1 ME1
ME1 ME1
NUC NUC
CYT NUC
ME3 NUC
ME3 ME3
ME3 ME3
CYT MIT
POX ME1
NUC ME3
CYT CYT
CYT CYT
NUC CYT
CYT ME3
CYT CYT
CYT CYT
ME3 NUC
NUC NUC
MIT EXC
MIT EXC
CYT CYT
MIT CYT
CYT NUC
NUC CYT
|
621b0412f66c24adf64c2159b201096ae4bdffa5 | 048b7c76423fe27dee2e31a52bae93c95883614e | /macros/hanning.sci | d90faf2db43a3ade8b5026c242924cb8b69e223d | [] | no_license | vu2swz/FOSSEE-Signal-Processing-Toolbox | aa5f283d050be62418dddbf41552f197b9949c4c | d97a4b7e2f0f25fb5cd94bd90a3b822592179d1e | refs/heads/master | 2021-08-19T20:06:19.346872 | 2017-11-27T09:57:21 | 2017-11-27T09:57:21 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 261 | sci | hanning.sci | function y = hanning(m, varargin)
funcprot(0);
rhs= argn(2);
if(rhs <1 | rhs>2)
error("Wrong number of Input parameters");
end
select(rhs)
case 1 then
y= callOctave("hanning", m);
case 2 then
y= callOctave("hanning", m , varargin(1));
end
endfunction
|
d8a72933e927b91f110931674e71a2aa5ba052a7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /978/CH6/EX6.10/Example6_10.sce | b96e4d4f92b1f11d5e5b6f9404c002418628d536 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 247 | sce | Example6_10.sce | //chapter-6,Example6_10,pg 495
Res=(1/2^8)//resolution
T=8*10^-6//total time
n=256//no. of conversions
t=(T/n)//time req. by one conversion
S=(1/t)//speed of conversion
printf("speed of conversion \n")
printf("S=%.2f Hz\n",S) |
54aef5b7f617dd0d14ae7c067b5560f709af77b2 | 3c04496d3626c5310982c0ede8e76f7cfa27f198 | /CreateDatabase.sci | 0d3a539b46033a5da9e7473ab239710832d528e5 | [] | no_license | manojgudi/pca_in_scilab | 1b649a165e96f1c60e9ce2acd20f50797fe33c1d | 6879df90ba9243c173807e6dba200ff900fdfa7e | HEAD | 2016-09-05T17:01:36.757345 | 2012-10-07T17:07:59 | 2012-10-07T17:07:59 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,835 | sci | CreateDatabase.sci | function T = CreateDatabase(TrainDatabasePath)
// Align a set of face images (the training set T1, T2, ... , TM )
//
// Description: This function reshapes all 2D images of the training database
// into 1D column vectors. Then, it puts these 1D column vectors in a row to
// construct 2D matrix 'T'.
//
//
// Argument: TrainDatabasePath - Path of the training database
//
// Returns: T - A 2D matrix, containing all 1D image vectors.
// Suppose all P images in the training database
// have the same size of MxN. So the length of 1D
// column vectors is MN and 'T' will be a MNxP 2D matrix.
//
// See also: STRCMP, STRCAT, RESHAPE
//
// Original version by Amir Hossein Omidvarnia, October 2007
// Email: aomidvar@ece.ut.ac.ir
//
//File management
//TrainFiles = dir(TrainDatabasePath);
//Train_Number = 0;
//
//for i = 1:size(TrainFiles)
// if not(strcmp(TrainFiles(i).name,'.')|strcmp(TrainFiles(i).name,'..')|strcmp(TrainFiles(i).name,'Thumbs.db'))
// Train_Number = Train_Number + 1; // Number of all images in the training database
// end
//end
Train_Number=20;
// Construction of 2D matrix from 1D image vectors
T = [];
for i = 1 : Train_Number
// I have chosen the name of each image in databases as a corresponding
//number. However, it is not mandatory!
str = int2str(i);
str = '\'+str+'.jpg'
str = TrainDatabasePath+str
img = imread(str);
img = rgb2gray(img);
[irow icol] = size(img);
temp = matrix(img',irow*icol,1); // Reshaping 2D images into 1D image vectors
global T;
T= [T temp]; // 'T' grows after each turn
end
endfunction |
029a3e589913253d64fbe1658e6737d906e6c380 | 449d555969bfd7befe906877abab098c6e63a0e8 | /572/CH13/EX13.12/c13_12.sce | 668b8b261eb24557731c24b86d89e6a12ed50167 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,566 | sce | c13_12.sce | //(13.12) Determine the chemical exergy of liquid octane at 25C, 1 atm, in kJ/kg. (a) Using Eq. 13.36, evaluate the chemical exergy for an environment consisting of a gas phase at 25C, 1 atm obeying the ideal gas model with the following composition on a molar basis: N2, 75.67%; O2, 20.35%; H2O, 3.12%; CO2, 0.03%; other, 0.83%. (b) Evaluate the chemical exergy using Eq. 13.44b and standard chemical exergies from Table A-26 (Model II).
//solution
//Complete combustion of liquid octane with O2 is described by
//C8H18(l) + 12.5O2 ------> 8CO2 + 9H2O
//part(a)
Rbar = 8.314 //universal gas constant in SI units
Tnot = 298.15 //in kelvin
//from table A-25
gbarC8H18 = 6610
gbarO2 = 0
gbarCO2 = -394380
gbarH2O = -228590
yO2 = .2035
yCO2 = .0003
yH2O = .0312
M = 114.22 //molecular weight of liquid octane
ech = ((gbarC8H18 + 12.5*gbarO2 -8*gbarCO2 -9*gbarH2O) + Rbar*Tnot*log(yO2^12.5/(yCO2^8*yH2O^9 )))/M
printf('part(a) the chemical exergy obtained on a unit mass basis is: %f',ech)
//part(b)
//With data from Table A-25 and Model II of Table A-26
gbarH2O = -237180
ebarCO2 = 19870
ebarH2O = 900
ebarO2 = 3970
ech = ((gbarC8H18 + 12.5*gbarO2 -8*gbarCO2 - 9*gbarH2O) + 8*ebarCO2 + 9*ebarH2O - 12.5*ebarO2)/M
printf('\n\npart(b) chemical exergy on a unit mass basis is: %f',ech)
|
0af2aee49ac631d49d237590aa9f53183df2e535 | 449d555969bfd7befe906877abab098c6e63a0e8 | /881/CH7/EX7.8/exa7_8.sce | c0b89638237dda26592c910041c1f40e89555604 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 779 | sce | exa7_8.sce | clc;
//Example 7.8
//Page No 268
//solution
fc=110;
fn=109.985;
Vn=0.3;
Vc=6;
fd=75*(10^3);
//(a)
disp("(a)The frequency of the noise interference is the difference between the carrier frequency and the frequency of the single frequency interfering signal, ");
n=fc-fn;
disp('kHz',(n*10^3),"NI = ");
//(b)
disp("(b)substituting into equation 7-43 yields, ");
t=Vn/Vc;
disp('rad',t,"dt = ");
disp("substituting into equation 7-47 yields, ");
df=(Vn*n)/Vc;
disp('Hz',(df*10^6),"df = ");
//(c)
a=Vc/Vn;
disp(a,"(c)The voltage S/N ");
disp("The voltage S/N ratio after demodulation is found by substituting into equation 7-49");
sn=fd/(df*10^6);
disp(sn,"S/N = ");
ip=20*log10(100/20);
;
disp('dB',round(ip),"Thus, there is an signal to noise improvement of ")
|
98de78ad897ce9828d280e92f800a4e03145f69f | 0925a981deb9e5403874ca53464d989e7c4b1087 | /sake_tst.txt | 67a9a303e4b369cc22afffcb852d033518adb5ec | [] | no_license | JLiu1272/WordSenseDisambiguation | c9907870c594ce0f3645da545aec702f44aa3106 | a255c2b018f7164d7127895f63795ad2af90b82a | refs/heads/master | 2020-05-29T19:45:01.548198 | 2019-05-30T03:29:39 | 2019-05-30T03:29:39 | 189,338,592 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 6,718 | txt | sake_tst.txt | sake: had been done for the sake of knowledge and he had
sake: Herrera, we assumed for the sake of argument ``that in a
sake: happily grow them for the sake of my garden. <DOC id="NYT20000825.0173"
sake: undergo relentless persecution for the sake of upholding deeply held beliefs
*sake: been the hallmarks of the sake industry in the 20th century.
sake: of our people, for the sake of other parties, too, and
sake: and immigration facilities for the sake of business, according to Bangladeshi
sake: and the law for the sake of their own interests,'' said
sake: on Tuesday night. ``For the sake of our children and our
sake: disturb ``faithful people'' for the sake of fighting fundamentalism. Yilmaz also
sake: her sake and my mom's sake and my other sister's sake.
sake: to gas-fueled stations for the sake of environmental protection. <DOC id="XIE20000130.0153"
sake: do bring beer, for the sake of the rest of us
sake: But, ``size for its own sake is not what we are
sake: refusing all cookies for the sake of privacy. I'm more selective.
sake: hope, really. Just for the sake of it. Sometime between 1940
*sake: a type of fine traditional sake for which the rice is
sake: any cost. Winning for the sake of winning. It no longer
sake: recalled, his wife, for the sake of regaining her health, began
sake: and mutual benefits for the sake of creating a stable environment
sake: "seeking to expand for the sake of expansion." "There is a
sake: added. "I hope for Ben's sake that he has done that.
*sake: distilled pure alcohol. Junmai-shu: Additive-free sake brewed from rice with at
sake: up data just for the sake it. Watson's former mentor, Dr.
sake: avoid the ceremony for the sake of "national dignity", has since
sake: themselves like allies for the sake of the regional economy. At
sake: during the summer for the sake of luna moths and hawk
sake: bury the hatchet for the sake of their children and the
sake: domestic demand-led growth for the sake of Asian and global economies.
sake: out in pairs for safety's sake in some areas, and some
sake: every nine at-bats. For the sake of comparison, Mark McGwire has
sake: of recruiting and for the sake of the players. White learned
sake: technique not for its own sake but to define every role.
sake: the country's independence for the sake of forging closer ties with
sake: are doing so for the sake of peace.'' Absent from the
sake: the family and for the sake of Bill we tried to
sake: are worth enduring for the sake of the child. ``We wanted
sake: to act -- for the sake of millions of Americans whose
sake: glorious opera house for the sake of a New York dalliance;
sake: with divergent views for the sake of a united nation. Anyona
sake: scapegoats and sacrificed for the sake of a boss's career. Beyond
sake: is a battle for the sake of God. ... Then it
sake: I hope for Steffi Graf's sake that her father has a
sake: vengeance. ``Punishment for its own sake is not a Christian response
*sake: 2 tablespoons sugar 2 tablespoons sake Nonstick cooking spray Vegetable oil
sake: enough is enough. ``For the sake of all humanity, things must
sake: for Washington; winning for the sake of winning. This is Washington's
sake: Watler is right. For the sake of his job, indications are
sake: of things out for the sake of preserving the film's secrets.
sake: and say, `Look, for the sake of the party and the
sake: find common ground for the sake of the institution, and that
sake: taking power just for the sake of it. "It is possible
sake: an `authentic' sound for the sake of nostalgia,'' De Simone said.
sake: she'll continue fighting for the sake her bright, blond-haired son, Nicholas.
sake: all this is for the sake of Russia, for the sake
sake: soft-money donations. But for the sake of its own institutional integrity,
sake: shouldn't do anything for the sake of peace." King Hussein hailed
*sake: had tasted the generic hot sake served at many of the
sake: Sinai sands, all for the sake of this moment: to see
sake: This appropriateness is for the sake of finding (solutions) in a
sake: temperature is questioned, for God's sake remove the animals.'' He added
sake: market levels _ for the sake of corrupt officials who can
*sake: growing, especially in the premium sake category, where sales rose 20
sake: had been "flexible for the sake of the nation" on the
sake: parents staying together for the sake of a child -- in
sake: a new president for the sake of political and economic reforms,
sake: a fillet. Or for the sake of efficiency, they will cook
sake: show emotion just for the sake of showing emotion _ but
sake: who told stories for the sake of telling stories _ to
sake: WORDS)-AZG) Let's assume, for the sake of academic argument, that the
sake: on and keep for the sake of tradition. Coates and Armstrong
sake: hold the congress for the sake of national unity but relented
sake: doctrine of martyrdom for the sake of God. The Shiites are
sake: damage investor confidence. ``For the sake of Bank Indonesia's credibility, Sabirin
sake: as well, more for the sake of another quick change than
sake: bad bouts just for the sake of Lewis' keeping the titles.
sake: work of passion for the sake of a cause is to
sake: We've not practiced for the sake of it. We've given ourselves
sake: too long. But for the sake of security, and to maintain
sake: "we should mention for the sake of justice that Boutros-Ghali did
sake: would be accepted for the sake of "Pakistans internal security and
sake: these risky procedures for the sake of potent men, reduced body
sake: region," but only for the sake of regional "safety and security."
sake: who would destroy for the sake of destroying. Yet, as Grabar
sake: a football school, for Pitino's sake -- Kentucky turns from the
sake: ``dripping with moisture for the sake of seeking out the famous
sake: Chemerinsky said. ``And for publicity's sake it's hard for the district
sake: and say that for the sake of normalization we will sacrifice
sake: of all media for the sake of the Internet did not
sake: to slack off for the sake of one another.'' --Book 'em:
sake: to the crisis for the sake of peace and stability in
sake: social protection system for the sake of the Maastricht criteria. Under
sake: I did it for the sake of my art," Ng said
sake: not doing gory for the sake of being gory. We don't
sake: full-figured, they insisted for credibility's sake that the staff consist of
sake: review of it "for the sake of what is to us
sake: north, to Connecticut, for the sake of his daughters' education. He
sake: they kill just for the sake of killing," he underscored. <DOC
sake: the conflict just for the sake of escalation. ``We take the
sake: Reagan did it for the sake of turning Russia into more
|
171e7dbff0e10d6fdd6088c033db5ec6b0cf14ee | 449d555969bfd7befe906877abab098c6e63a0e8 | /1571/CH11/EX11.6/Chapter11_Example6.sce | a8549fa91cd5ac2839506bedc14d120ef8b76166 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 342 | sce | Chapter11_Example6.sce | clc
clear
//INPUT
k1=0.92;//thermal conductivity of copper in cgs unit
k2=0.5;//thermal conductivity of alluminium in cgs unit
t1=100;//temperature of copper in deg.C
t2=0;//temperature of alluminium in deg.C
//CALCULATIONS
t=k1*t1/(k1+k2);//welded teperature in deg.C
//OUTPUT
mprintf('welded temperature is %3.2f deg.C',t)
|
886243b98555321b354f8f577326536d0d97be31 | 2ac3595ed7f1ea89f95169caefd85f9a1c52a6d9 | /base/Applications/Eventing/EventTest/Event.tst | 0f0caf4f9e64cdb41f884804a55dcd574c11bf6f | [] | no_license | lastweek/source-singularity | bc61bdac3047ef02cc017841d7621831b5413fe8 | d37047d36f26f7543224905ae35a369448be904e | refs/heads/master | 2021-10-13T01:19:54.646849 | 2021-09-26T18:58:14 | 2021-09-26T18:58:14 | 210,944,019 | 86 | 8 | null | null | null | null | UTF-8 | Scilab | false | false | 152 | tst | Event.tst | <Profile Name="Event">
<Module Name="EventTest">
<Suite Name="EventTest">
<Test Name="Test 1"/>
</Suite>
</Module>
</Profile>
|
74ee670ef4dbb49671b0386140ef4b1a232525fa | 2ba48648eefadee113a7c2f5d608cab5209c3a8b | /Unit&Func Test/单元测试文档/CagOS单元测试结果/LIBC/testcase/strcpy.tst | ca0d3080c22305fe28b6446287c814879f7d9766 | [] | no_license | wangdong412/Consen-SIS | 879762175575d0a62f26ec1effeb46c3fd62e3e8 | bca3fac35c961c3558a3438bca55e6d20825da3a | refs/heads/master | 2020-07-11T05:17:18.814104 | 2019-08-27T09:41:41 | 2019-08-27T09:41:41 | 204,450,874 | 1 | 5 | null | null | null | null | UTF-8 | Scilab | false | false | 1,370 | tst | strcpy.tst | -- VectorCAST 6.4c (02/03/16)
-- Test Case Script
--
-- Environment : LIBC
-- Unit(s) Under Test: abort1 abs atof atoi atol bLib memchr memcmp memcpy memmove memset ns16550 qsort rand random random_r strcat strchr strcmp strcpy strlcat strlcpy strlen strncat strncmp strncpy strpbrk strspn strtod strtok strtok_r strtol strtoul
--
-- Script Features
TEST.SCRIPT_FEATURE:C_DIRECT_ARRAY_INDEXING
TEST.SCRIPT_FEATURE:CPP_CLASS_OBJECT_REVISION
TEST.SCRIPT_FEATURE:MULTIPLE_UUT_SUPPORT
TEST.SCRIPT_FEATURE:MIXED_CASE_NAMES
TEST.SCRIPT_FEATURE:STATIC_HEADER_FUNCS_IN_UUTS
--
-- Unit: strcpy
-- Subprogram: strcpy
-- Test Case: strcpy1
TEST.UNIT:strcpy
TEST.SUBPROGRAM:strcpy
TEST.NEW
TEST.NAME:strcpy1
TEST.VALUE:strcpy.strcpy.s1:<<malloc 2>>
TEST.VALUE:strcpy.strcpy.s1:"a"
TEST.VALUE:strcpy.strcpy.s2:<<malloc 7>>
TEST.VALUE:strcpy.strcpy.s2:"bbbbbb"
TEST.EXPECTED:strcpy.strcpy.return:"bbbbbb"
TEST.END
-- Test Case: strcpy2
TEST.UNIT:strcpy
TEST.SUBPROGRAM:strcpy
TEST.NEW
TEST.NAME:strcpy2
TEST.NOTES:
This is an automatically generated test case.
Test Path 2
(1) while ((*(s1++) = *(s2++)) != 0) ==> TRUE
Test Case Generation Notes:
TEST.END_NOTES:
TEST.VALUE:strcpy.strcpy.s1:<<malloc 4>>
TEST.VALUE:strcpy.strcpy.s1:"aaa"
TEST.VALUE:strcpy.strcpy.s2:<<malloc 4>>
TEST.VALUE:strcpy.strcpy.s2:"bbb"
TEST.EXPECTED:strcpy.strcpy.return:"bbb"
TEST.END
|
07618d268d95987ac9a0d8fbfddbb053e09a9af5 | 53bdf5ec3d505c23a6dbff1555c838c03e7ce670 | /Assignment 4/Q1.sce | fe15251055ac7227e53d54e481b86b16c53d5522 | [] | no_license | dishvyas/AI | 6e7fb662a04b99d5fca4380f97ac94eb5b18debe | a0903084fe210faee4b571b4cade5e5d410ad504 | refs/heads/master | 2020-05-22T00:50:06.362841 | 2019-05-12T20:29:20 | 2019-05-12T20:29:20 | 186,180,759 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 367 | sce | Q1.sce | clc;
clear;
rand('seed',0);
N = [2,2,1];
x=[0.89, 0.79; 0.85, 0.74; 0.84, 0.72; 1, 1; 0.04, 0.07; 0.03, 0.02; 0.02, 0.01;0.01, 0.01;
0.0086, 0.0053; 0.0061, 0.0026; 0.0044, 0.009; 0.008, 0.0087]';
t=[1 1 1 1 0 0 0 0 0 0 0 0];
disp(size(x))
lp=[0.1, 0];
W=ann_FF_init(N);
T=400;
W=ann_FF_Std_online(x,t,N,W,lp,T);
a=ann_FF_run(x,N,W);
disp(x);
disp(W);
|
cd4424434e4150d3aafbbda58b808a1865d68ddb | 449d555969bfd7befe906877abab098c6e63a0e8 | /1847/CH2/EX2.10/Ch02Ex10.sce | 979c40c195ec2598662832650099117a96962a7d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 479 | sce | Ch02Ex10.sce | // Scilab Code Ex2.10:: Page-2.12 (2009)
clc; clear;
D = 100; // Distance between slits and the screen, cm
d = 0.08; // Separation between the slits, cm
b = 2.121/25; // Fringe width of the interfernce pattern due to biprism, cm
lambda = b*d/D; // Wavelength of light in a biprism experiment, cm
printf("\nThe wavelength of light in a biprism experiment = %5.0f angstrom", lambda/1e-008);
// Result
// The wavelength of light in a biprism experiment = 6787 angstrom
|
8e0a5f5659c2e21afb9751325bde9f98fe95a0d0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3269/CH3/EX3.16/Ex3_16.sce | 842a27cb0c90fd84e31848fe47eb0447fd96651c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 649 | sce | Ex3_16.sce | // Example 3.16
clear all;
clc;
// Given data
E = 0.8; // Average gamma ray energy in MeV
I = 3*10^(11); // Intensity of gamma rays incident on the container in gamma rays/cm^2-sec
// Using the data given in Table II.5 for iron at 0.8 MeV
mup_iron = 0.0274; // Ratio of mass attenuation coefficient to density of iron in cm^2/g
// Calculation
dep_rate = E*I*mup_iron;
// Expressing the result in SI units
// 1 MeV = 1.6*10^(-13) J
// 1 kg = 1000 g
dep_rate_SI = dep_rate*(1.6*10^(-13)*1000);
printf('\n Rate of energy deposited = %3.2E MeV/g-sec or %.2f J/kg-sec \n',dep_rate,dep_rate_SI);
|
c1a4a5a0f0f4cf6d612626a87df782365eb71119 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1448/CH17/EX17.1.i/I17_1.sce | 0d24ed95528dc3dfc6822ce9b9d854239bc1f183 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 188 | sce | I17_1.sce | clc
//Initialization of variables
v=89.6*10^12 //Hz
//calculations
l=3*10^8 /v
wn=10^-2 /l
//results
printf("Wavenumber = %d cm^-1",wn)
printf("\n Wavelength = %.2f mu m",l*10^6)
|
4d6f86f1ce9d5869dda94d2ff4515879f07f2a03 | 5d0ddbd6f42843ded4d5ba18966dc130725607d2 | /c13.code/uintah/branches/pearls/src/orderAccuracy/test_config_files/ICE/cavityFlow_dx.tst | 2f97045556c0ecd6cb12b5f654f3722bce826432 | [
"MIT"
] | permissive | alvarodlg/lotsofcoresbook2code | b93ad62e015d205e4f550028ceb54254023021ee | a2dbeb306fa29ae6663ae29b2c4c132608375cf0 | refs/heads/master | 2020-12-31T03:02:22.579614 | 2015-09-02T15:23:18 | 2015-09-02T15:23:18 | 54,509,919 | 2 | 1 | null | 2016-03-22T21:27:56 | 2016-03-22T21:27:56 | null | UTF-8 | Scilab | false | false | 3,085 | tst | cavityFlow_dx.tst | <start>
<upsFile>cavityFlow_dx.ups</upsFile>
<gnuplot>
<script>plotScript.gp</script>s
<title>ICE:Cavity Flow x Dir</title>
<ylabel>Error</ylabel>
<xlabel>Resolution</xlabel>
</gnuplot>
<AllTests>
</AllTests>
<Test>
<Title>100</Title>
<sus_cmd>mpirun -np 6 sus </sus_cmd>
<postProcess_cmd>compare_cavityFlow.m -aDir 1 -mat 0 -plot true -Re 100</postProcess_cmd>
<x>100</x>
<replace_values>
/Uintah_specification/Grid/BoundaryConditions/Face[@side='y+']/BCType[@id = '0' and @label ='Velocity' and @var='Dirichlet']/value : [0.02,0,0]
</replace_values>
</Test>
<!--
<Test>
<Title>400</Title>
<sus_cmd>mpirun -np 6 sus </sus_cmd>
<postProcess_cmd>compare_cavityFlow.m -aDir 1 -mat 0 -plot true -Re 400</postProcess_cmd>
<x>400</x>
<replace_values>
/Uintah_specification/Grid/BoundaryConditions/Face[@side='y+']/BCType[@id = '0' and @label ='Velocity' and @var='Dirichlet']/value : [0.08,0,0]
</replace_values>
</Test>
-->
<Test>
<Title>1000</Title>
<sus_cmd>mpirun -np 6 sus </sus_cmd>
<postProcess_cmd>compare_cavityFlow.m -aDir 1 -mat 0 -plot true -Re 1000</postProcess_cmd>
<x>1000</x>
<replace_values>
/Uintah_specification/Grid/BoundaryConditions/Face[@side='y+']/BCType[@id = '0' and @label ='Velocity' and @var='Dirichlet']/value : [.2,0,0]
</replace_values>
</Test>
<!--
<Test>
<Title>3200</Title>
<sus_cmd>mpirun -np 6 sus </sus_cmd>
<postProcess_cmd>compare_cavityFlow.m -aDir 1 -mat 0 -plot true -Re 3200</postProcess_cmd>
<replace_values>
/Uintah_specification/Grid/BoundaryConditions/Face[@side='y+']/BCType[@id = '0' and @label ='Velocity' and @var='Dirichlet']/value : [.64,0,0]
</replace_values>
</Test>
<Test>
<Title>5000</Title>
<sus_cmd>mpirun -np 6 sus </sus_cmd>
<postProcess_cmd>compare_cavityFlow.m -aDir 1 -mat 0 -plot true -Re 5000</postProcess_cmd>
<replace_lines>
<maxTime> 20 </maxTime>
</replace_lines>
<replace_values>
/Uintah_specification/Grid/BoundaryConditions/Face[@side='y+']/BCType[@id = '0' and @label ='Velocity' and @var='Dirichlet']/value : [1,0,0]
</replace_values>
</Test>
<Test>
<Title>7500</Title>
<sus_cmd>mpirun -np 6 sus </sus_cmd>
<postProcess_cmd>compare_cavityFlow.m -aDir 1 -mat 0 -plot true -Re 7500</postProcess_cmd>
<replace_lines>
<maxTime> 15 </maxTime>
</replace_lines>
<replace_values>
/Uintah_specification/Grid/BoundaryConditions/Face[@side='y+']/BCType[@id = '0' and @label ='Velocity' and @var='Dirichlet']/value : [1.5,0,0]
</replace_values>
</Test>
<Test>
<Title>10000</Title>
<sus_cmd>mpirun -np 6 sus </sus_cmd>
<postProcess_cmd>compare_cavityFlow.m -aDir 1 -mat 0 -plot true -Re 10000</postProcess_cmd>
<replace_lines>
<maxTime> 10 </maxTime>
</replace_lines>
<replace_values>
/Uintah_specification/Grid/BoundaryConditions/Face[@side='y+']/BCType[@id='0' and @label='Velocity' and @var='Dirichlet']/value : [2,0,0]
</replace_values>
</Test>
-->
</start>
|
cc5f552c3b85ba10a9ea9734943422de13625e9d | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.3.1/macros/auto/lqg2stan.sci | 7e3592b84c753d12ceac6b3b120f3627f1c0dc8d | [
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain",
"MIT"
] | 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 | 739 | sci | lqg2stan.sci | function [P,m]=lqg2stan(P22,Q,R)
//P = standard plant for LQG control problem
//described by the triple (A,B,C)
// .
// x = Ax + w1 + Bu (resp x[n+1]= ... if dom='d')
//
// y = Cx + w2
//
// cov(w1,w2)=R;
//
// mininize (x,u)'Q(x,u)
//
flag=0;
P221=P22(1);
if P221(1)='r' then
P22=tf2ss(P22);flag=1;end
P22=-P22;
[A,B,C,D22]=P22(2:5);
[nx,nu]=size(B);
[ny,nx]=size(C);
Qhalf=real(sqrtm(Q));
Rhalf=real(sqrtm(R));
B1=Rhalf(1:nx,:);D21=Rhalf(nx+1:nx+ny,:);
B2=B;
C1=Qhalf(:,1:nx);D12=Qhalf(:,nx+1:nx+nu);
C2=C;
D11=0*C1*B1;
dom=P22(7);
if dom==[] then warning('lqg2stan: time domain (?) assumed continuous');end
P=syslin(dom,A,real([B1,B2]),real([C1;C2]),real([D11,D12;D21,D22]));
m=size(C2*B2);
if flag=1 then
P=ss2tf(P);end
|
f6522fd8687b9e26cdfc2ecb0d661b82b33e038a | 449d555969bfd7befe906877abab098c6e63a0e8 | /291/CH3/EX3.5c/eg3_5c.sce | 522a9785569c6c6665c5da34b594fe0e5b38724a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 242 | sce | eg3_5c.sce | men = 6;
women = 4;
disp(factorial(men+women), "No of different rankings possible is")
women_top4 = factorial(women)*factorial(men);
prob = women_top4/factorial(men+women);
disp(prob, "Probability that women receive the top 4 scores is") |
5fa3c09675b42a72bfd632b532e219f7f2841d93 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3788/CH2/EX2.3.1/Ex2_3_1.sce | 08a52f0058d4a1e6a83444ef0137e97ee9b57f8b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 399 | sce | Ex2_3_1.sce | //Example 2.3.1
//Drift with a Geostationary Satellite
//Variables
T=86400 //T corresponds to 1 solar day
u=(3.986004418*10^5)
//Calculation
//Part1 Orbital Radius
a=((T^2*u)/(4*%pi^2))^(1/3) //4 pi^2=39.4784716
printf("The radius of the circular orbit is : %f km\n",a)
//Part2 Rate of Drift
drift=360*(235.9/T)
printf("The drift is %f degrees/day",drift)
|
aa871ad886cc9a3023239ac5d79d919fd568b692 | 449d555969bfd7befe906877abab098c6e63a0e8 | /569/CH4/EX4.18/4_18.sci | a84877b5fd6959b119c943941d72a011cff42fb2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 316 | sci | 4_18.sci | // Calculate maximum value of indicated temperature and delay time
clc;
T=120;
w=2*%pi/T;
tc1=40;
tc2=20;
M=[1/((1+(w*tc1)^2)^0.5)]*[1/((1+(w*tc2)^2)^0.5)];
M_temp=M*10;
disp(M_temp,'maximum value of indicated temperature (degree C)')
ph=[{atan(w*tc1)+atan(w*tc2)}];
T_lag=ph/w;
disp(T_lag,'Time lag (s)') |
a02f1836e34eaced7d5a1d3f7be1bf20f3879d2b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1727/CH5/EX5.13/5_13.sce | add161667a4826afce04ff46b9b2a10a8a89ce85 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 294 | sce | 5_13.sce | clc
//Initialization of variables
g=9.81 //m/s^2
rho=10^3 //kg/m^3
rho2=13.6*10^3 //kg/m^3
d1=3.2 //m
d2=0.6 //m
//calculations
z1=d1*rho/rho2
head= d2+z1
V=sqrt(2*g*head)
//results
printf("Efflux velocity = %.2f m/s",V)
//The answer is a bit different due to rounding off error.
|
b4e770529281a618baba3d5b6b0df2b463f31a6c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2276/CH1/EX1.4/chapter1_ex4.sce | c9c5ada8ababc1b4997b4b0ee3b61a08afb92aca | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 919 | sce | chapter1_ex4.sce | clc
clear
//input
//AB,BC,CD,DA are arms of a wheatstone bridge
r1=4;//resistance in arm AB in ohms
r2=6;//resistance in arm BC in ohms
r3=5;//resistance in arm CD in ohms
r4=3;//resistance in arm DA in ohms
v=4;//d.c. supply given between points A and C in volt
R=10;//resistance of the detector placed between the points B and D in ohms
//calculations
aIb=v/(r1+r2);//current in arm AB in amperes
aId=v/(r3+r4);//current in arm DA in amperes
aVb=aIb*r1;//voltage drop along arm AB in volts
aVd=aId*r4;//voltage drop across arm AD in volts
dVb=aVb-aVd;//since D is positive with respect to B
e=dVb;// open circuit voltage in volts
r0=((r1*r2)/(r1+r2))+((r3*r4)/(r3+r4));//equivalent resistance in ohms when the supply neglected
I=e/(r0+R);//current through the 10 ohms resistance in amperes
//output
mprintf('the current through the detector will be %3.5f A in the direction from D to B',I)
|
634b0d112e11e65e02a4872c2a4c63d9b22e43a1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2825/CH2/EX2.11/Ex2_11.sce | d9d62f26231949de073e33cfaa70b6d50accf22b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 820 | sce | Ex2_11.sce | //Ex2_11 Pg-91
clc
disp("(a) Hall coefficient is")
disp(" Rh = Eh/(Jx*B)")
Vh=21.4*10^(-3) //hall voltage
b=1.7*10^(-2) //breadth
Eh=Vh/b //electric field
t=0.052*10^(-3) //thickness
I=200*10^(-6) //current
Jx=I/(b*t) //current density
B=0.5 //magnetic field
Rh=Eh/(Jx*B)
printf("\n Hall coefficient = %.6f m^3/C \n\n",Rh)
disp("(b) Electrons per unit volume,")
e=1.6*10^(-19) //electron charge
n=1/(Rh*e) //electrons per unit volume
printf("\n\n Electrons per unit volume = %.0f electrons/m^3 \n\n",n)
V=195*10^(-3) //voltage
I=200*10^(-6) //current
R=V/I //resistance
disp("Since R=(l/(A*sigma) = (l/(A*e*n*R))")
l=2.65*10^(-2) //length
w=1.7*10^(-2) //width
t=0.052*10^(-3) //thicknes
A=t*w //area
sigma=l/(A*e*n*R) //conductivity
printf("\n\n Conductivity = %.3f m^3/Vs",sigma)
|
571bbd645c2f46018631356af3b220830f8ba93b | 449d555969bfd7befe906877abab098c6e63a0e8 | /991/CH18/EX18.14/Example18_14.sce | 4930471010a9c9b40394131f8395f6a67120e1b0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 723 | sce | Example18_14.sce | //Example 18.14.
clc
format(6)
disp("Load current varies from 0 to 20 mA")
disp(" IZ(min) = 10 mA, IZ(max) = 100 mA")
disp("Here, Vz = Vo = 10 V (constant)")
disp("Applying KVL to a closed loop circuit,")
disp(" 20 = IR + 10")
disp("or IR = 10")
disp("Therefore, R = 10/I ohm, where I is the loop current in amperes")
disp("(i) Let IZ = IZ(min) and IL = 0")
disp(" The total current I = IL + IZ = 10 mA")
r=10/(10*10^-3) // in ohm
disp(r," Therefore, R(ohm) =")
disp("(ii) For IZ = IZ(max) = 100 mA and IL = 20 mA")
i=20+100 // in mA
disp(i," I(mA) = IL + IZ =")
r=10/(120*10^-3)
disp(r," Therefore, R(ohm) =")
disp("(iii) The range of R varies from 83.33 ohm to 1000 ohm") |
ef642c242690c0940211b87072967c3670976c41 | 79a9b8e61be2b6f6982c748002a7eb60ebe61e94 | /scilabCode/berbask.sci | 10d3aaafa98998b8fed900c0f04802c4ad323ebc | [] | no_license | kavyamanohar/DSPlab | 2537afda78992bf9fc2e60d93ef95849c40c23e9 | eca8a02bbac243a61db8db89f3e05ea2e6485c39 | refs/heads/master | 2021-01-21T13:53:00.373606 | 2016-06-05T08:27:51 | 2016-06-05T08:27:51 | 54,376,427 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,891 | sci | berbask.sci | //sin wave
clc;
fm=5;
t=linspace(0,1,500);
sgl=0.2*sin(2*%pi*fm*t);
//msg sig
msg=[];
for i=1:500
if sgl(i)>0 then
msg=[msg 1];
else
msg=[msg 0];
end
end
subplot(3,1,1)
plot(t,msg);
title('msg signal');
xlabel('time');
ylabel('amplitube');
//carrier sig
fc=30;
car=.5*sin(2*%pi*fc*t);
subplot(3,1,2)
plot(t,car);
title('carrier signal');
xlabel('time');
ylabel('amplitude');
//mod sig
ask=msg.*car;
subplot(3,1,3)
plot(t,ask);
title('modulated signal');
xlabel('time');
ylabel('amplitube');
xs2pdf(0,'TransmissionASK.pdf')
//receive signal
for k=1:5
A=0.5;
snr_db=[2 4 6 8 10];// defines different vaues of SNR from 2 to 10 in dB
snr(k)=10^(snr_db(k)/10);// converts snr in dB to actual value
sigma(k)=A/sqrt(snr(k));//A measure of noise power corresponding to particular value of SNR
disp(sigma(k));
theory_ber(k)=0.5*erfc(0.707*sqrt(snr(k)));
//Theoretical value of bit error rate calculated for different values of SNR
disp(theory_ber(k));
end
//demod sig
figure;
n=rand(1,500);
for q=1:5
ask_noise=ask+sigma(q)*n;
dem=ask_noise.*car;
msg2=[];
for i=1:500
if dem(i)>0 then
msg2=[msg2 1];
else
msg2=[msg2 0];
end
end
subplot(6,1,q)
plot(t,msg2);
title('Demodulated message')
count=0;
for i=1:500
if (msg2(i)-msg(i)~=0) then
count=count+1;
end
end
BER(q)=count/500;
disp(BER(q));
end
subplot(6,1,6)
plot(t,msg);
title('Actual Message')
xlabel('time');
ylabel('amplitube');
xs2pdf(1,'ReceptionASK.pdf')
disp(BER);figure;
plot2d1("ll",snr_db,BER,style=+2);
plot2d1("ll",snr_db,theory_ber,style=+3);
legend('Simulated','Theoretical');
title("SNR vs BER");
xlabel("SNR in db");
ylabel("BER in sdb");
xs2pdf(2,'BERVsSNRASK.pdf')
|
0b23419a9a6aa5be098049e46719e4aed43fca1f | ee448e163bbdfa978366ef29a12478fef0cfeee3 | /DifDivididas.sce | 11207bb04dd8c120426a99526dd361bc7e2d096e | [] | no_license | jerryleandro/ComputacaoNumerica | f3d14bd31e08424fa16dddf21e904e8ee012cd80 | 3e9da09f585c5ded586355b0974e63f3853014da | refs/heads/master | 2021-07-23T22:46:44.703735 | 2020-09-25T02:13:32 | 2020-09-25T02:13:32 | 217,126,491 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 249 | sce | DifDivididas.sce | function [coef]=tabDif(x,y)
n=length(x);
T=zeros(n,n);
T(:,1)=y;
for j=2:n
for i=1:n-j+1
T(i,j)=(T(i+1,j-1)-T(i,j-1))/(x(i+j-1)-x(i));
end
end
coef=T(1,:);
endfunction
|
4d03060aac3abfaacfe4f3ca2787250328578b0f | 1a8ee276de64397a0a64bc48cad795f585998670 | /assignment4/gram_shmidt.sce | 02c8553f603dd0864bd5ef3f6b33f42ad4b28800 | [] | no_license | siddhantrao23/scilab | 3217b1d0a5c18f1ffa6751cfbca95bd71a621db2 | 5974b784340b457f70fc21484c6ff252d3a5eda4 | refs/heads/master | 2020-12-30T08:20:14.057086 | 2020-04-04T11:25:19 | 2020-04-04T11:25:19 | 238,926,043 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 355 | sce | gram_shmidt.sce | a = [0 0 0; 0 0 0; 0 0 0]
for i = 1:3
for j = 1:3
a(i,j) = input('Enter the values:')
end
end
disp(a, 'A = ')
[m,n] = size(a)
for k = 1:n
V(:,k) = a(:,k)
for j = 1:k-1
R(j,k) = V(:,j)'*a(:,k)
V(:,k) = V(:,k) - R(j,k)*V(:,j)
end
R(k,k) = norm(V(:,k))
V(:,k) = V(:,k)/R(k,k)
end
disp(V,'q1, q2, q3 = ')
|
22fd46e456c6799e42bb70c82ba99d2b369f7357 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2223/CH12/EX12.1/Ex12_1.sce | a5fdb522841fe3bd5fad4c3d84fd41166469583a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,156 | sce | Ex12_1.sce | // scilab Code Exa 12.1 Calculation on a centrifugal compressor stage
T01=335; // in Kelvin
funcprot(0);
p01=1.02; // Initial Pressure in bar
dh=0.10; // hub diameter in m
dt=0.25; // tip diameter in m
m=5; // in kg/s
gamma=1.4;
N=7.2e3; // rotor Speed in RPM
d1=0.5*(dt+dh); // Mean Blade ring diameter
cp=1005; // Specific Heat at Constant Pressure in J/(kgK)
A=%pi*((dt^2)-(dh^2))/4;
R=287;
// I trial
ro1=(p01*1e5)/(R*T01);
cx0=m/(ro1*A);
T0=T01-((cx0^2)/(2*cp));
n=(gamma-1)/gamma;
p1=p01*((T0/T01)^(1/n));
ro=(p1*1e5)/(R*T0);
cx=m/(ro*A);
// II Trial
cx2=123;
T1=T01-((cx2^2)/(2*cp));
p2=p01*((T1/T01)^(1/n));
ro2=(p2*1e5)/(R*T1);
cx1=m/(ro2*A);
u1=%pi*d1*N/60;
beta1=atand(cx1/u1);
disp("degree",beta1,"air angle at inducer blade entry beta1=")
w1=cx1/(sind(beta1));
a1=sqrt(gamma*R*T1);
Mw1=w1/a1;
disp(Mw1,"the Relative Mach number at inducer blade entry Mw1=")
alpha1=atand(cx1/u1);
disp("degree",alpha1,"air angle at IGVs exit alpha1=")
c1=cx1/(sind(alpha1));
T1_new=T01-((c1^2)/(2*cp));
a1_new=sqrt(gamma*R*T1_new);
Mw1_new=cx1/a1_new;
disp(Mw1_new,"the new value of Relative Mach number Mw1_new=")
|
7fbb84163b77a0ffd8405667514072234290d03a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3720/CH1/EX1.4/Ex1_4.sce | ad6b53221692676981b8ee77a5516605a15b927e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 310 | sce | Ex1_4.sce | // Example 1_4
clc;clear;funcprot(0);
//Properties
g=32.174; // The gravitational constant in ft/s^2
//Given values
m=1; // Mass in lbm
// Calculation
W=m*g/32.174;// Weight is mass times the local value of gravitational acceleration
printf('The weight of the object in earth,W =%0.2f lbf\n',W);
|
6b2fc742339f75dac9cbdb296abed82d78f32497 | 449d555969bfd7befe906877abab098c6e63a0e8 | /291/CH2/EX2.3h/eg2_3h.sce | c53f0e2237a2b5e72b1305b5d090909e7e9805b4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 424 | sce | eg2_3h.sce | population = [7333253 3448613 2731743 1702086 1524249 1151977 1048949 1022830 998905 992038 816884 752279 734676 702979 665070 635913 617044 614289 579307 567094 547727 520947 514013 504505 493559];
disp(perctl(population, 10), "The sample 10 percentile is")
disp(perctl(population, 80), "The sample 80 percentile is")
disp(perctl(population, 50), "The sample 80 percentile is")
disp(median(population), "The median is") |
c1130da5d8e612a79328ea349d19a2ea7360a6b1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1019/CH8/EX8.18/Example_8_18.sce | bafe51699c17cd6e9ae4cfcd1459a8b7772cc74d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 365 | sce | Example_8_18.sce | //Example 8.18
clear;
clc;
//Given
delHo=241.82;//Enthalpy of reaction in kJ mol^-1
delSo=44.4;//Entropy of the reaction in J K^-1 mol^-1
K=1;//equillibrium constant for the reaction
//To determine the temperature
delGo=0;//since delGo=RTlog(k) and log(1)=0
T=(delHo*1000)/delSo;//temperature in K
mprintf('Temperature at which K=1 is %f K',T);
//end |
d104918692453d6c3a0618c2bfeaf4cec89863d9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2660/CH4/EX4.22/Ex4_22.sce | 177b026d8c9ee787582f315b559c8c82a67220cc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,355 | sce | Ex4_22.sce | clc
vt = 40 // cutting speed for turning in m/min
vs = 8 // cutting speed for cutting and knurling in m/min
ft = 0.4 // feed for turning in mm/rev.
ff = 0.2 // feed for forming in mm/rev
d1 = 25 // diameter in mm
l1 = 50 // mm
N1 = 1000*vt/(%pi*d1) // spindle speed in rev./min.
time1 = l1/(ft*N1) // min.
tt = 2*time1 // total time in min.
d2 = 15 // mm
N2 = 1000*vt/(%pi*d2)// rev/min.
l2 = 30 // mm
time2 = l2/(ft*N2) // min.
eft = 0.15 // end forming time in min.
d3 = 10 // mm
N3 = 1000*vs/(%pi*d3) // rev./min.
l3 = 15 // mm
f = 1.5 // feed in min.
time3 = l3/(f*N3) // min.
N4 = 1000*vs/(%pi*d1) // rev./min.
l4 = 10 // mm
time4 = l4/(ft*N4) // min.
time5 = 0.15 // time for chamfering in min.
Dave = d1/2 // mm
N5 = 1000*vt/(%pi*Dave) // r.p.m.
time6 = Dave/(N5*ff) // min,
tmt = tt+time2+time3+time4+time5+time6+eft // total machining time in min.
t = 0.05 // min.
ht = time5+6*time6+4*t+3*t // handling time in min.
tot = ht+tmt // total handling time in min.
ct = 15*tot/100 // contingency in min.
tct = tot+ct // total cycle time in min.
st = 60 // set up time for turret lathe
p = 100 // total pieces
stp = st/p // set up time per piece in min.
tpt = tct+stp // Total production timr per piece in min.
printf("\n Total production timr per piece = %0.2f min" , tpt)
//Answers vary due to round off error
|
316f555460434873e11ac75164ed7e915c6faeaa | 449d555969bfd7befe906877abab098c6e63a0e8 | /2084/CH10/EX10.19w/10_19w.sce | 6a6b3aa44f908e3ec68e3d54ea7ea7699f61b55e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 806 | sce | 10_19w.sce | //developed in windows XP operating system 32bit
//platform Scilab 5.4.1
clc;clear;
//example 10.19w
//calculation of the moment of inertia of the system about the axis perpendicular to the rod passing through its middle point
//given data
m=1.2//mass(in kg) of the sphere
R=10*10^-2//radius(in cm) of the sphere
sep=50*10^-2//separation(in m) between the two spheres
//calculation
d=sep/2//distance of each sphere from centre
Icm=(2*m*R*R)/5//moment of inertia about diameter
I=Icm+(m*d*d)//by parallel axis theorem,moment of inertia about given axis
//since second sphere has same moment of inertia
Isys=2*I//moment of inertia of the system
printf('the moment of inertia of the system about the axis perpendicular to the rod passing through its middle point is %3.3f kg-m^2',Isys)
|
c46d284b94ea68c46e066f9a6dd1a2cac8f39ff6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /26/CH1/EX1.1.1/1_1_1.sce | 0d184fe90b47be037494088e21d48eff85079e5d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 400 | sce | 1_1_1.sce | disp('performing Gaussian elimination')
a=[1 5;-2 -7]
disp('the co-efficient matrix is:')
disp(a)
b=[7;-5]
c=[a b]
disp('the augmented matrix is:')
disp(c)
disp('R2=R2+2*R1')
c(2,:)=c(2,:)+2*c(1,:)
disp(c)
disp('R2=(1/3)*R2')
c(2,:)=(1/3)*c(2,:)
disp(c)
disp('R1=R1-5*R2')
c(1,:)=c(1,:)-5*c(2,:)
disp(c)
x1=c(1,3)/c(1,1)
x2=c(2,3)/c(2,2)
printf('the solution is:x1=%d x2=%d',x1,x2) |
43a220324b989adfae54820ba9516b955d941917 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3731/CH6/EX6.17/Ex6_17.sce | 8aafafe27243ae25dc87a0d336bb5bb1577b8642 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,280 | sce | Ex6_17.sce | //Chapter 6:Induction Motor Drives
//Example 17
clc;
//Variable Initialization
//Ratings of the star connected Induction motor
f=50 // frequency in HZ
Vl=440 //line voltage in V
P=6 // number of poles
Ns=120*f/P //synchronous speed
//Parameters referred to the stator
Xr_=1.2 // rotor winding reactance in ohm
Xs=Xr_ // stator winding reactance in ohm
Rr_=0.4 // resistance of the rotor windings in ohm
Rs=0.5 // resistance of the stator windings in ohm
Xm=50 // magnetizing reatance
a=3.5 // stator to rotor turns ratio
delta=0 // duty ratio at the given breakdown torque
Sm=1 // slip at standstill
//Solution
//Slip at maximum torque without an external resistance is Sm=Rr_/sqrt(Rs**2+(Xs+Xr_)**2)
//When an external resistanc Re referred to the stator is connected
x=Sm*sqrt(Rs**2+(Xs+Xr_)**2) //x=Re+Rr_
Re=x-Rr_
y=0.5*a**2*(1-delta) // y=0.5*a**2*R*(1-delta) //y=Re
R=Re/y
//(Ns-N)/Ns
//(Ns/Ns)-(N/Ns)
Sm=(Ns/Ns)-(1/Ns)
c=(x*Sm-Rr_)/(0.5*a**2*R) //c=(1-delta)
delta=1-c //given duty ratio
//Results
mprintf("Variation of the duty ratio is:%.3f*N*10**(-3)",delta*1000)
mprintf("\nHence the duty ratio must change linearly with speed N")
|
303bac5c4505f5a6cf7a877b63b5bfa4e79fd17b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2276/CH2/EX2.8/chapter2_ex8.sce | 8998d7fb55500edfb025a142671e4ae58924e580 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 572 | sce | chapter2_ex8.sce | clc
clear
//input
a=2500; //area of hysteresis loop in square millimeter
H=16;//magnetising force in ampere/mater per mm when hysteresis loop is plotted on a graph
B=0.02;//flux density in tesla per mm when hysteresis loop is plotted on a graph
hloss=24;//desired hysteresis loss
n=50;//cycles of magnetisation
//calculations
e=B*H;//energy represented by square millimeter
l=a*e;//loss/cubic meter/cycle
Vmax=hloss/(l*n);//maximum volume core in cubic meter
//output
mprintf('the permissible volume of the transformer core is %3.10f cubicmeter',Vmax)
|
442a9fe281efa9830e706c89d49344707f5de323 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3682/CH2/EX2.6/Ex2_6.sce | 5653a106da1342454af489d9693369e0108206d8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 743 | sce | Ex2_6.sce | // Exa 2.6
clc;
clear;
// Given data
// Referring circuit shown in Fig. 2.11(a)
B=200; // Current gain
Icq = 100*10^-6; // Amperes
ADM = 500; // Voltage gain for differential mode signal
CMRR_db = 80; // in dB(Common mode rejection ratio)
// Solution
// Since gm = Icq/Vt therefore,
gm = Icq/(25*10^-3); // for Vt = 25 mV
printf('Using Eq. 2.50, we have ADM = -gm*Rc so from this we get Rc as ');
Rc =abs(- ADM/gm);
printf(' %d kΩ. \n ',Rc/1000);
printf('Since CMRR = 80 dB converting it into non dB value so CMRR = ');
CMRR = 10^(CMRR_db/20);
printf(' %d. \n ',CMRR);
printf('Using Eq. 2.55, we get value of Re as ');
// CMRR = 1+ 2*gm*Re; therefore
Re = (CMRR-1)/(2*gm);
printf(' %.2f MΩ. \n ',Re/10^6);
|
f132c517fdeeefeed0023d385974bf4b09040159 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.3/macros/scicos/#tz22527mir-inria-fr.sci | f5aac6b37d30a150aa7dba67b15f76941239e408 | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 4,361 | sci | #tz22527mir-inria-fr.sci | function cpr=c_pass2(bllst,connectmat,clkconnect,cor,corinv)
// cor ; correspondance table with initial block ordering
//
// bllst: list with nblk elts where nblk denotes number of blocks.
// Each element must be a list with 12 elements:
// 1- function name (in string form if fortran routine)
// 2- vector of number of inputs
// 3- vector of number of ouputs
// 4- vector of number of clock inputs
// 5- vector of number of clock outputs
// 6- vector (column) of continuous initial condition
// 7- vector (column) of discrete initial condition
// 8- vector (column) of real parameters
// 9- vector (column) of integer parameters
// 10- string: 'z' if zero-crossing, 'c' if continuous,
// 'd' discrete, 'l' logical
// 11- vector of size <number of clock outputs> including
// preprogrammed event firing times (<0 if no firing)
// or [for backward compatibility]
// boolean vector: i-th entry %t if initially output is fired
// 12- boolean vector (1x2): 1st entry for dependence on u, 2nd on t
//
// connectmat: nx4 matrix. Each row contains, in order, the block
// number and the port number of an outgoing scicopath,
// and the block number and the port number of the target
// ingoing scicopath.
//
// clkconnect: same as connectmat but for clock scicopaths.
//
// define some constants
//timer()
if bllst==list() then
message(['No block can be activated'])
cpr=list()
ok=%f;
return
end
done=%f
clkptr=1,cliptr=1,typl=[],dep_ut=[],ddep_ut=[]
nblk=size(bllst)
while ~done
//replace all logical blocks recursively
[clkptr,cliptr,typl,dep_ut,ddep_ut]=make_ptr(bllst,clkptr,cliptr,typl,..
dep_ut,ddep_ut)
[ok,done,bllst,connectmat,clkconnect,typl,corinv]=paksazi(bllst,..
connectmat,clkconnect,..
corinv,clkptr,cliptr,typl,dep_ut,ddep_ut)
if ~ok then
cpr=list()
return
end
end
//
//sort blocks by their types
// 1- blocks with continuous states
// 2- blocks with no states
// 3- logical blocks
// 4- blocks with discrete states
// 5- zero crossing blocks
[ind,nxblk,ncxblk,ndblk,ndcblk]=find_order_blocks(bllst)
if nxblk==0 & ndcblk<>0 then
message(['For using treshold, you need to have'
'a continuous system with state in your diagram.';
'You can include DUMMY CLSS block (linear palette)'
'in your diagram.']);
cpr=list()
ok=%f;
return
end
ncblk=nxblk+ncxblk;
nb=ncblk+ndblk;
nblk=nb+ndcblk;
[bllst,connectmat,clkconnect,cor,corinv]=..
re_order_blocks(bllst,connectmat,clkconnect,cor,corinv,ind)
//extract various info from bllst
[lnkptr,inplnk,outlnk,clkptr,cliptr,inpptr,outptr,..
xptr,zptr,rpptr,ipptr,xc0,xd0,rpar,ipar,dep_ut,ddep_ut,..
typl,typ_r,typ_c,funs,funtyp,initexe,labels,ok]=extract_info(bllst,..
connectmat,clkconnect)
if ~ok then
cpr=list()
return,
end
//form a matrix which gives destinations of each block
[outoin,outoinptr]=conn_mat(inpptr,outptr,inplnk,outlnk)
//
// discard duplicate calls to the same block port
// and group calls to different ports of the same block
// to compute execution table and its pointer.
[ordptr1,execlk]=discard(clkptr,cliptr,clkconnect)
// Set execution scheduling tables
[ordptr,ordclk,cord,iord,oord,zord,critev,ok]=scheduler(inpptr,..
outptr,clkptr,execlk,ordptr1,outoin,outoinptr);
if ~ok then
cpr=list()
return,
end
//form scicos arguments
izptr=ones(nblk+1,1)
simtp=['scs','funs','xptr','zptr','izptr','inpptr','outptr','inplnk',..
'outlnk','lnkptr','rpar','rpptr',..
'ipar','ipptr','clkptr','ordptr','execlk','ordclk','cord','oord',..
'zord','critev','ncblk','nxblk','ndblk','ndcblk','subscr','funtyp',..
'iord','labels']
subscr=[]
sim=tlist(simtp,funs,xptr,zptr,izptr,..
inpptr,outptr,inplnk,outlnk,..
lnkptr,rpar,rpptr,ipar,ipptr,clkptr,..
ordptr,execlk,ordclk,cord(:),oord(:),zord(:),..
critev(:),ncblk,nxblk,ndblk,ndcblk,subscr,funtyp,iord(:),labels);
//initialize agenda
[tevts,evtspt,pointi]=init_agenda(initexe,clkptr)
statetp=['xcs','x','z','iz','tevts','evtspt','pointi','outtb']
outtb=0*ones(lnkptr($)-1,1)
iz0=[]
state=tlist(statetp,xc0,xd0,iz0,tevts,evtspt,pointi,outtb);
cpr=list(state,sim,cor,corinv)
|
5689dc7ccdf9a32bec12532167847a12f28c3057 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1904/CH2/EX2.12/2_12.sce | c634985676dc42b5185ddb4f323b1f11af21b2f0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 2,878 | sce | 2_12.sce | //To find monthly load factor Rating of distribution transformer monthly bill
//Page 72
clc;
clear;
T=730; //Average monthly time in hrs
Pla=22; //Peak Load for consumer A in kW
Plb=39; //Peak load for consumer B in kW
MEC=[0.025,0.02,0.015]; //Monthly Energy charges in cents/kWh according to the units consumed
Uc=[1000,3000,3000]; //Units consumption according to the Energy charges
MDC=2; //Monthly demand charge in dollars/kW
Pa=7000; //Units served to Consumer A in kWh
Pb=7000; //Units served to Consumer B in kWh
//Power factors
Pfa=0.9; // Lag
Pfb=0.76; //Lag
//Monthly Load factors
Flda=Pa/(Pla*T);
Fldb=Pb/(Plb*T);
//Continous kilovoltamperes for each distribution transformer
Sa=Pla/Pfa;
Sb=Plb/Pfb;
//Ratings of the distribution transformers needed
Ta=round(Sa/5)*5;
Tb=round(Sb/5)*5;
//Billing Charges
//For Consumer A
Mbda=Pla*(0.85/Pfa); // Monthly billing demand
Mdca=Mbda*MDC; //Monthly demand charge
//Since the units served are 7000 it can be split according to the rates as 1000, 3000, 3000 excess units.
Uca=Uc; //Units consumption by A
Meca=MEC*Uca'; //Monthly energy charge
Tmba=Meca+Mdca; //Total monthly bill
//For Consumer B
Mbdb=Plb*(0.85/Pfb); // Monthly billing demand
Mdcb=Mbdb*MDC; //Monthly demand charge
//Since the units served are 7000 it can be split according to the rates as 1000, 3000, 3000 excess units.
Ucb=Uc; //Units consumption by B
Mecb=MEC*Ucb'; //Monthly energy charge
Tmbb=Mecb+Mdcb; //Total monthly bill
//To find the capacitor size
Q1=Pb*tand(acosd(Pfb)); //For original power factor
Q2=Pb*tand(acosd(0.85)); //For new power factor
dQ=(Q1-Q2)/T; //Capacitor size
//For new power factor
//For Consumer B
Mbdbn=Plb*(1); // Monthly billing demand
Mdcbn=Mbdbn*MDC; //Monthly demand charge
//Since the units served are 7000 it can be split according to the rates as 1000, 3000, 3000 excess units.
Ucbn=Uc; //Units consumption by B
Mecbn=MEC*Ucbn'; //Monthly energy charge
Tmbbn=Mecbn+Mdcbn; //Total monthly bill
Saving=abs(Tmbbn-Tmbb); //Saving due to capacitor installation
Ci=30; // Cost of capacitor in dollar per kVAr
Cc=Ci*dQ; //The cost of the installed capacitor
PP=Cc/Saving; //Payback Period
PPr=90/Saving; //Realistic Payback period
printf('a) Monthly load factor for :\n')
printf(' i) Consumer A = %g\n',Flda)
printf(' ii) Consumer B =%g\n',Fldb)
printf(' b) Rating of the each of the distribution transformer:\n')
printf(' i) A = %g kVA\n',Ta)
printf(' ii) B = %g kVA\n',Tb)
printf(' c) Monthly bil for:\n')
printf(' i) Consumer A = $%g\n',Tmba)
printf(' ii) Consumer B = $%g\n',Tmbb)
printf(' d) The capacitor size required is %g kVAr\n',dQ)
printf(' e) Payback period:\n')
printf(' i) Calculated : %g months\n',ceil(PP))
printf(' ii) Realistic as capacitor size available is 3 kVAr : %g months\n',ceil(PPr))
|
0d1848d9fe00621f1f7f9082431215bfa7b524b9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2513/CH9/EX9.2/9_2.sce | b2e9267b4e80f028ebcc08aa59f602388fc97615 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 347 | sce | 9_2.sce | clc
//initialisation of variables
p1=1000//ft
p2=50//ft
g=20//ft/mile
v=5280//ft
q=7.5*10^-6//ft
t=60//F
k=2835//ft/days
p=7.5//ft
//CALCULATIONS
S=g/v//ft
W=k*(g/v)//ft/day
Q=W*p1*p2*q//mgd
P=k*p//ft
P1=P*p2//mgd
//RESULTS
printf('the velocity of flow =% f mgd',Q)
printf('the standard coefficient pf permeability=% f mgd',P1)
|
3f83a49133fa8821e2286e0747dfc020ed0dc798 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set12/s_Integrated_Circuits_S._Sharma_2204.zip/Integrated_Circuits_S._Sharma_2204/CH5/EX5.22/ex5_22.sce | 6a3b5f762004cbf3fe69e450a98c298fc04e5240 | [] | 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 | 285 | sce | ex5_22.sce | errcatch(-1,"stop");mode(2);// EXa 5.22
;
;
// Given data
R = 10;// in k ohm
R = R * 10^3;// in ohm
C = 0.01;// in µF
C = C * 10^-6;// in F
f = 2;// in kHz
f = f * 10^3;// in Hz
Phi = -2*atand(2*%pi*R*C*f);// in degree
disp(Phi,"The phase shift in degree is");
exit();
|
efea1a773ebf0e39d170e5da7f457c19f1963dcc | 449d555969bfd7befe906877abab098c6e63a0e8 | /1673/CH8/EX8.15/8_15.sce | ad9519c9a48c22b814c0e916e65fabde0795cacf | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 611 | sce | 8_15.sce | //boundary value problem using finite difference method
//example 8.15
//page 328
clc;clear;close;
deff('y=f(x)','y=cos(x)+((1-cos(1))/sin(1))*sin(x)-1');
h1=1/2;
Y=f(0.5);
y0=0,y2=0;
y1=4*(1/4+y0+y2)/7
printf('computed value with h=%f of y(0.5) is %f\n',h1,y1)
printf('error in the result with actual value %f\n',abs(Y-y1) )
h2=1/4;
y0=0,y4=0;
//solving the approximated diffrential equation
A=[-31/16 1 0;1 -31/16 1;0 1 -31/16];
X=[-1/16;-1/16;-1/16];
C=A^-1*X;
printf('computed value with h=%f of y(0.5) is %f\n',h2,C(2,1))
printf('error in the result with actual value %f\n',abs(Y-C(2,1))) |
e7657ee8d65dc1cc43eca5f156d4ad6182585587 | 449d555969bfd7befe906877abab098c6e63a0e8 | /557/CH3/EX3.2/2.sce | 5d498a16fae1c2e004c35d94e70d81336c65bd7f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 770 | sce | 2.sce | clc;funcprot(0);
//Example 3.2
//Initializing the variables
w = 1.8; //Width of plate
h1 = 5; //Height of plate and water in upstream
h2 = 1.5; //Height of water in downstream
rho = 1000;
g = 9.81 ; //Acceleration due to gravity
//Calculations
function[F]=waterForce(area,meanHeight)
F = rho * g * area * meanHeight;
endfunction
P = waterForce(w*h1,h1/2)-waterForce(w*h2,h2/2); // Resultant force on gate
x = (waterForce(w*h1,h1/2)*(h1/3) - waterForce(w*h2,h2/2)*(h2/3))/P; // point of action of p from bottom
R = P/(2*sind(20)); // Total Reaction force
Rt = 1.18*R/4.8; //Reaction on Top
Rb = R - Rt ; //Reaction at bottom
disp(Rb/1000, "Reaction at bottom (kN):",Rt/1000, "Reaction at top(kN) :"); |
7244d31d2a5c7782d9e5d5ff9a3de904d1073161 | 449d555969bfd7befe906877abab098c6e63a0e8 | /581/CH5/EX5.3/Example5_3.sce | 9fbf8010d988216a70d7191b97983bbfb439682f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 821 | sce | Example5_3.sce |
clear;
clc;
printf("\t Example 5.3\n");
d1=0.001;; //diameter of nichrome, m
h=30000; //convection coefficient , W/(m^2*K)
T1=373; // wire temperature, K
//heat is being generated in proportion to product of voltage and current, if the boiling action removes heat rapidly enough in comparison with the heat capacity of the wire,the surface temperature may well vary.
Bi=h*d1/2/13.8; // biot number comes ot to be 1.09 and value of a= w*d1^(2)/4/a1 comes out to be 27.5. by looking at the chart of cylinders, we find that, (Tmax-Tav)/(Tav-To)=0.04
TF=0.04; // temperature fluctuation of 4 percent is not serious and experiment is valid.
printf("\t the temperature fluctuation is : %.2f this fluctuation is probably not serious.it therefore appears that the experiment is valid.\n", TF);
//end |
67a16b914e85834709bfec0bfc82645a3c0cbe64 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1394/CH8/EX8.3.1/Ex8_3_1.sce | e4bcca8fcd0c8743660d40d79d44f573845c25d3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 332 | sce | Ex8_3_1.sce |
clc
//initialization of variables
l = 0.07 // flim thickness in cm
v = 3 // water flow in cm/sec
D = 1.8*10^-5 // diffusion coefficient in cm^2/sec
crat = 0.1 // Ratio of c1 and c1(sat)
//Calculations
z = (((l^2)*v)/(1.38*D))*((log(1-crat))^2) //Column length
//Results
printf("the column length needed is %.1f cm",z)
|
ddbc60d96bf535ca41d746064e1758363d8116c3 | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.5/Unix-Windows/scilab-2.5/tests/examples/trianfml.man.tst | dcc6e1b593d5f8118e33bcd8156855e2890b913c | [
"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 | 131 | tst | trianfml.man.tst | clear;lines(0);
A=['1','2';'a','b']
W=trianfml([A,string(eye(2,2))])
U=W(:,3:4)
a=5;b=6;
A=evstr(A)
U=evstr(U)
U*A
evstr(W(:,1:2))
|
984dd21ae98f26b8dd3775518fd34b38e8218d94 | 449d555969bfd7befe906877abab098c6e63a0e8 | /858/CH8/EX8.3/example_3.sce | 02e7a6cf674044c6bcf82b4652e58e5b7144975c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 136 | sce | example_3.sce | clc
clear
printf("example 8.3 page number 335\n\n")
printf("this is a theoritical problem, book shall be referred for solution")
|
1259ef07b7d35e233af3b1ee2bf46c4f357ef730 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2609/CH2/EX2.6/ex_2_6.sce | 672894c669e2ebbee4640f91bf20fd097026d2ce | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 410 | sce | ex_2_6.sce | ////Ex 2.6
clc;
clear;
close;
format('v',6);
Beta=100;//unitless
VBE=0.7;//V
VCC=10;//V
VEE=10;//V
VT=26;//mV
RC=2.7;//kohm
R=2.2;//kohm
IExt=(VEE-VBE)/R;//mA
IC3=IExt;IT=IExt;;//mA
ICQ=IT/2;//mA
re=2*VT/IT;//ohm(let re1=re2=re)
Ad=-RC*1000/re;//unitless
Rid=2*Beta*re/1000;//kohm(let Rid1=Rid2=Rid)
disp(Ad,"Differntial moe gain, Ad");
disp(Rid,"Differntial input resistance, Rid(kohm)");
|
0e69917344d0893d7075458f02ca63b21d4c0c68 | 449d555969bfd7befe906877abab098c6e63a0e8 | /132/CH6/EX6.2/Example6_2.sce | 81b0b277e4c15d4f2247b48b608787b2223b1528 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,193 | sce | Example6_2.sce | //Example 6.2
//Program to Plot the Static Plate Characteristics and Determine //Plate AC Resistance, Mutual Conductance & Amplification Factor
clear;
clc ;
close ;
//Given Circuit Data
//All Values Extrapolated to Touch x-axis
V0=[20 50 100 150]; //V
V1=[70 100 150 200]; //V
V2=[112 150 200]; //V
V3=[177 200 250]; //V
V4=[235 250 300]; //V
I0=[0 3.5 11.2 20]; //mA
I1=[0 4 12.4 21.5]; //mA
I2=[0 5.4 14.1]; //mA
I3=[0 3.4 12.4]; //mA
I4=[0 2.5 11.3]; //mA
//Plotting
plot(V0,I0);
plot(V1,I1);
plot(V2,I2);
plot(V3,I3);
plot(V4,I4);
a= gca ();
xlabel ('Plate Voltage (in V)');
ylabel ('Plate Current (in mA)');
title ('STATIC PLATE CHARACTERISTIC CURVE OF THE TRIODE');
//Calculation
//Values from Characteristic Plot
dip=(14.0-10.7)*10^(-3);//A
dvp=20;//V
rp=dvp/dip;
diP=(12.4-5.3)*10^(-3);//A
dvG=1;//V
gm=diP/dvG;
u=gm*rp;
ut=(192-150)/1;
//Displaying The Results in Command Window
printf("\n\t The Plate AC Resistance is rp= %f kOhms .",rp/10^(3));
printf("\n\t The Mutual Conductance is gm= %f mS .",gm/10^(-3));
printf("\n\t The Graphical Amplification Factor is u= %f .",u);
printf("\n\t The Theoretical Amplification Factor is ut= %f .",ut); |
ccefe4ab0b64f7fbb6c93b1ccc5195d9f50c278f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2699/CH13/EX13.13/Ex13_13.sce | 45bfab9ba83fd13e346d240fef2bf8e88abd7f10 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 149 | sce | Ex13_13.sce | //EX13_13 PG-13.9
clc
clear
printf("conversion of octal no 615 to its hexadecimal equivalent :")
a=['615'];
x=oct2dec(a)
y=dec2hex(x)
printf("%s",y)
|
65c23f444f8b6312ecf8bb70d09760349daab4b5 | 7b040f1a7bbc570e36aab9b2ccf77a9e59d3e5c2 | /Scilab/virtual/pid_controller/scilabwrite.sce | daac216cb0971799b76c30f40c619f70dd07d48f | [] | no_license | advait23/sbhs-manual | e2c380051117e3a36398bb5ad046781f7b379cb9 | d65043acd98334c44a0f0dbf480473c4c4451834 | refs/heads/master | 2021-01-16T19:50:40.218314 | 2012-11-16T04:11:12 | 2012-11-16T04:11:12 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 18,473 | sce | scilabwrite.sce | 0.10000E+00 0.10000E+01 0.00000E+00 0.10000E+03
0.10000E+01 0.00000E+00 0.10000E+03 0.10000E+01
0.20000E+01 0.10000E+03 0.10000E+03 0.20000E+01
0.30000E+01 0.69513E+02 0.10000E+03 0.30000E+01
0.40000E+01 0.41838E+02 0.10000E+03 0.40000E+01
0.50000E+01 0.77500E+01 0.10000E+03 0.50000E+01
0.60000E+01 0.00000E+00 0.10000E+03 0.60000E+01
0.70000E+01 0.00000E+00 0.10000E+03 0.70000E+01
0.80000E+01 0.00000E+00 0.10000E+03 0.80000E+01
0.90000E+01 0.00000E+00 0.10000E+03 0.90000E+01
0.10000E+02 0.00000E+00 0.10000E+03 0.10000E+02
0.11000E+02 0.65250E+01 0.10000E+03 0.11000E+02
0.12000E+02 0.33188E+01 0.10000E+03 0.12000E+02
0.13000E+02 0.00000E+00 0.10000E+03 0.13000E+02
0.14000E+02 0.28125E+01 0.10000E+03 0.14000E+02
0.15000E+02 0.22500E+00 0.10000E+03 0.15000E+02
0.16000E+02 0.00000E+00 0.10000E+03 0.16000E+02
0.17000E+02 0.13500E+01 0.10000E+03 0.17000E+02
0.18000E+02 0.00000E+00 0.10000E+03 0.18000E+02
0.19000E+02 0.00000E+00 0.10000E+03 0.19000E+02
0.20000E+02 0.20250E+01 0.10000E+03 0.20000E+02
0.21000E+02 0.19687E+01 0.10000E+03 0.21000E+02
0.22000E+02 0.00000E+00 0.10000E+03 0.22000E+02
0.23000E+02 0.00000E+00 0.10000E+03 0.23000E+02
0.24000E+02 0.00000E+00 0.10000E+03 0.24000E+02
0.25000E+02 0.00000E+00 0.10000E+03 0.25000E+02
0.26000E+02 0.84375E+00 0.10000E+03 0.26000E+02
0.27000E+02 0.00000E+00 0.10000E+03 0.27000E+02
0.28000E+02 0.00000E+00 0.10000E+03 0.28000E+02
0.29000E+02 0.12938E+01 0.10000E+03 0.29000E+02
0.30000E+02 0.00000E+00 0.10000E+03 0.30000E+02
0.31000E+02 0.00000E+00 0.10000E+03 0.31000E+02
0.32000E+02 0.95625E+00 0.10000E+03 0.32000E+02
0.33000E+02 0.00000E+00 0.10000E+03 0.33000E+02
0.34000E+02 0.00000E+00 0.10000E+03 0.34000E+02
0.35000E+02 0.00000E+00 0.10000E+03 0.35000E+02
0.36000E+02 0.00000E+00 0.10000E+03 0.36000E+02
0.37000E+02 0.00000E+00 0.10000E+03 0.37000E+02
0.38000E+02 0.00000E+00 0.10000E+03 0.38000E+02
0.39000E+02 0.00000E+00 0.10000E+03 0.39000E+02
0.40000E+02 0.00000E+00 0.10000E+03 0.40000E+02
0.41000E+02 0.00000E+00 0.10000E+03 0.41000E+02
0.42000E+02 0.56250E+00 0.10000E+03 0.42000E+02
0.43000E+02 0.00000E+00 0.10000E+03 0.43000E+02
0.44000E+02 0.10125E+01 0.10000E+03 0.44000E+02
0.45000E+02 0.00000E+00 0.10000E+03 0.45000E+02
0.46000E+02 0.00000E+00 0.10000E+03 0.46000E+02
0.47000E+02 0.00000E+00 0.10000E+03 0.47000E+02
0.48000E+02 0.00000E+00 0.10000E+03 0.48000E+02
0.49000E+02 0.00000E+00 0.10000E+03 0.49000E+02
0.50000E+02 0.90000E+00 0.10000E+03 0.50000E+02
0.51000E+02 0.00000E+00 0.10000E+03 0.51000E+02
0.52000E+02 0.00000E+00 0.10000E+03 0.52000E+02
0.53000E+02 0.00000E+00 0.10000E+03 0.53000E+02
0.54000E+02 0.00000E+00 0.10000E+03 0.54000E+02
0.55000E+02 0.00000E+00 0.10000E+03 0.55000E+02
0.56000E+02 0.00000E+00 0.10000E+03 0.56000E+02
0.57000E+02 0.20813E+01 0.10000E+03 0.57000E+02
0.58000E+02 0.00000E+00 0.10000E+03 0.58000E+02
0.59000E+02 0.00000E+00 0.10000E+03 0.59000E+02
0.60000E+02 0.15187E+01 0.10000E+03 0.60000E+02
0.61000E+02 0.00000E+00 0.10000E+03 0.61000E+02
0.62000E+02 0.00000E+00 0.10000E+03 0.62000E+02
0.63000E+02 0.50625E+00 0.10000E+03 0.63000E+02
0.64000E+02 0.00000E+00 0.10000E+03 0.64000E+02
0.65000E+02 0.00000E+00 0.10000E+03 0.65000E+02
0.66000E+02 0.00000E+00 0.10000E+03 0.66000E+02
0.67000E+02 0.00000E+00 0.10000E+03 0.67000E+02
0.68000E+02 0.14062E+01 0.10000E+03 0.68000E+02
0.69000E+02 0.22500E+00 0.10000E+03 0.69000E+02
0.70000E+02 0.00000E+00 0.10000E+03 0.70000E+02
0.71000E+02 0.28125E+00 0.10000E+03 0.71000E+02
0.72000E+02 0.00000E+00 0.10000E+03 0.72000E+02
0.73000E+02 0.00000E+00 0.10000E+03 0.73000E+02
0.74000E+02 0.50625E+00 0.10000E+03 0.74000E+02
0.75000E+02 0.00000E+00 0.10000E+03 0.75000E+02
0.76000E+02 0.00000E+00 0.10000E+03 0.76000E+02
0.77000E+02 0.00000E+00 0.10000E+03 0.77000E+02
0.78000E+02 0.17438E+01 0.10000E+03 0.78000E+02
0.79000E+02 0.00000E+00 0.10000E+03 0.79000E+02
0.80000E+02 0.00000E+00 0.10000E+03 0.80000E+02
0.81000E+02 0.00000E+00 0.10000E+03 0.81000E+02
0.82000E+02 0.10125E+01 0.10000E+03 0.82000E+02
0.83000E+02 0.00000E+00 0.10000E+03 0.83000E+02
0.84000E+02 0.25312E+01 0.10000E+03 0.84000E+02
0.85000E+02 0.00000E+00 0.10000E+03 0.85000E+02
0.86000E+02 0.00000E+00 0.10000E+03 0.86000E+02
0.87000E+02 0.00000E+00 0.10000E+03 0.87000E+02
0.88000E+02 0.00000E+00 0.10000E+03 0.88000E+02
0.89000E+02 0.21316E-13 0.10000E+03 0.89000E+02
0.90000E+02 0.00000E+00 0.10000E+03 0.90000E+02
0.91000E+02 0.14625E+01 0.10000E+03 0.91000E+02
0.92000E+02 0.00000E+00 0.10000E+03 0.92000E+02
0.93000E+02 0.15750E+01 0.10000E+03 0.93000E+02
0.94000E+02 0.00000E+00 0.10000E+03 0.94000E+02
0.95000E+02 0.28125E+00 0.10000E+03 0.95000E+02
0.96000E+02 0.00000E+00 0.10000E+03 0.96000E+02
0.97000E+02 0.33750E+00 0.10000E+03 0.97000E+02
0.98000E+02 0.28125E+00 0.10000E+03 0.98000E+02
0.99000E+02 0.00000E+00 0.10000E+03 0.99000E+02
0.10000E+03 0.00000E+00 0.10000E+03 0.10000E+03
0.10100E+03 0.45000E+00 0.10000E+03 0.10100E+03
0.10200E+03 0.50625E+00 0.10000E+03 0.10200E+03
0.10300E+03 0.00000E+00 0.10000E+03 0.10300E+03
0.10400E+03 0.00000E+00 0.10000E+03 0.10400E+03
0.10500E+03 0.56250E+00 0.10000E+03 0.10500E+03
0.10600E+03 0.21375E+01 0.10000E+03 0.10600E+03
0.10700E+03 0.19687E+01 0.10000E+03 0.10700E+03
0.10800E+03 0.90000E+00 0.10000E+03 0.10800E+03
0.10900E+03 0.28125E+00 0.10000E+03 0.10900E+03
0.11000E+03 0.10688E+01 0.10000E+03 0.11000E+03
0.11100E+03 0.56250E-01 0.10000E+03 0.11100E+03
0.11200E+03 0.90000E+00 0.10000E+03 0.11200E+03
0.11300E+03 0.00000E+00 0.10000E+03 0.11300E+03
0.11400E+03 0.90000E+00 0.10000E+03 0.11400E+03
0.11500E+03 0.14062E+01 0.10000E+03 0.11500E+03
0.11600E+03 0.56250E+00 0.10000E+03 0.11600E+03
0.11700E+03 0.16875E+00 0.10000E+03 0.11700E+03
0.11800E+03 0.00000E+00 0.10000E+03 0.11800E+03
0.11900E+03 0.42187E+01 0.10000E+03 0.11900E+03
0.12000E+03 0.25875E+01 0.10000E+03 0.12000E+03
0.12100E+03 0.23062E+01 0.10000E+03 0.12100E+03
0.12200E+03 0.20250E+01 0.10000E+03 0.12200E+03
0.12300E+03 0.31500E+01 0.10000E+03 0.12300E+03
0.12400E+03 0.24750E+01 0.10000E+03 0.12400E+03
0.12500E+03 0.36562E+01 0.10000E+03 0.12500E+03
0.12600E+03 0.30375E+01 0.10000E+03 0.12600E+03
0.12700E+03 0.42750E+01 0.10000E+03 0.12700E+03
0.12800E+03 0.23063E+01 0.10000E+03 0.12800E+03
0.12900E+03 0.39937E+01 0.10000E+03 0.12900E+03
0.13000E+03 0.34312E+01 0.10000E+03 0.13000E+03
0.13100E+03 0.47250E+01 0.10000E+03 0.13100E+03
0.13200E+03 0.42187E+01 0.10000E+03 0.13200E+03
0.13300E+03 0.41625E+01 0.10000E+03 0.13300E+03
0.13400E+03 0.55125E+01 0.10000E+03 0.13400E+03
0.13500E+03 0.78750E+01 0.10000E+03 0.13500E+03
0.13600E+03 0.70875E+01 0.10000E+03 0.13600E+03
0.13700E+03 0.72000E+01 0.10000E+03 0.13700E+03
0.13800E+03 0.45000E+01 0.10000E+03 0.13800E+03
0.13900E+03 0.82125E+01 0.10000E+03 0.13900E+03
0.14000E+03 0.74250E+01 0.10000E+03 0.14000E+03
0.14100E+03 0.89437E+01 0.10000E+03 0.14100E+03
0.14200E+03 0.72563E+01 0.10000E+03 0.14200E+03
0.14300E+03 0.92250E+01 0.10000E+03 0.14300E+03
0.14400E+03 0.89437E+01 0.10000E+03 0.14400E+03
0.14500E+03 0.77063E+01 0.10000E+03 0.14500E+03
0.14600E+03 0.96750E+01 0.10000E+03 0.14600E+03
0.14700E+03 0.93937E+01 0.10000E+03 0.14700E+03
0.14800E+03 0.95625E+01 0.10000E+03 0.14800E+03
0.14900E+03 0.97312E+01 0.10000E+03 0.14900E+03
0.15000E+03 0.81619E+02 0.10000E+03 0.15000E+03
0.15100E+03 0.61706E+02 0.10000E+03 0.15100E+03
0.15200E+03 0.64744E+02 0.10000E+03 0.15200E+03
0.15300E+03 0.66375E+02 0.10000E+03 0.15300E+03
0.15400E+03 0.69806E+02 0.10000E+03 0.15400E+03
0.15500E+03 0.74194E+02 0.10000E+03 0.15500E+03
0.15600E+03 0.75375E+02 0.10000E+03 0.15600E+03
0.15700E+03 0.77400E+02 0.10000E+03 0.15700E+03
0.15800E+03 0.80775E+02 0.10000E+03 0.15800E+03
0.15900E+03 0.80887E+02 0.10000E+03 0.15900E+03
0.16000E+03 0.87412E+02 0.10000E+03 0.16000E+03
0.16100E+03 0.83812E+02 0.10000E+03 0.16100E+03
0.16200E+03 0.85500E+02 0.10000E+03 0.16200E+03
0.16300E+03 0.88987E+02 0.10000E+03 0.16300E+03
0.16400E+03 0.87356E+02 0.10000E+03 0.16400E+03
0.16500E+03 0.88312E+02 0.10000E+03 0.16500E+03
0.16600E+03 0.90112E+02 0.10000E+03 0.16600E+03
0.16700E+03 0.91406E+02 0.10000E+03 0.16700E+03
0.16800E+03 0.92644E+02 0.10000E+03 0.16800E+03
0.16900E+03 0.89606E+02 0.10000E+03 0.16900E+03
0.17000E+03 0.90506E+02 0.10000E+03 0.17000E+03
0.17100E+03 0.90394E+02 0.10000E+03 0.17100E+03
0.17200E+03 0.88762E+02 0.10000E+03 0.17200E+03
0.17300E+03 0.90225E+02 0.10000E+03 0.17300E+03
0.17400E+03 0.90731E+02 0.10000E+03 0.17400E+03
0.17500E+03 0.91181E+02 0.10000E+03 0.17500E+03
0.17600E+03 0.88762E+02 0.10000E+03 0.17600E+03
0.17700E+03 0.85669E+02 0.10000E+03 0.17700E+03
0.17800E+03 0.87019E+02 0.10000E+03 0.17800E+03
0.17900E+03 0.84150E+02 0.10000E+03 0.17900E+03
0.18000E+03 0.84825E+02 0.10000E+03 0.18000E+03
0.18100E+03 0.83137E+02 0.10000E+03 0.18100E+03
0.18200E+03 0.84600E+02 0.10000E+03 0.18200E+03
0.18300E+03 0.80944E+02 0.10000E+03 0.18300E+03
0.18400E+03 0.78469E+02 0.10000E+03 0.18400E+03
0.18500E+03 0.78637E+02 0.10000E+03 0.18500E+03
0.18600E+03 0.77850E+02 0.10000E+03 0.18600E+03
0.18700E+03 0.78412E+02 0.10000E+03 0.18700E+03
0.18800E+03 0.74306E+02 0.10000E+03 0.18800E+03
0.18900E+03 0.74194E+02 0.10000E+03 0.18900E+03
0.19000E+03 0.74531E+02 0.10000E+03 0.19000E+03
0.19100E+03 0.74419E+02 0.10000E+03 0.19100E+03
0.19200E+03 0.71494E+02 0.10000E+03 0.19200E+03
0.19300E+03 0.70762E+02 0.10000E+03 0.19300E+03
0.19400E+03 0.70931E+02 0.10000E+03 0.19400E+03
0.19500E+03 0.67837E+02 0.10000E+03 0.19500E+03
0.19600E+03 0.68344E+02 0.10000E+03 0.19600E+03
0.19700E+03 0.67950E+02 0.10000E+03 0.19700E+03
0.19800E+03 0.67556E+02 0.10000E+03 0.19800E+03
0.19900E+03 0.67162E+02 0.10000E+03 0.19900E+03
0.20000E+03 0.65362E+02 0.10000E+03 0.20000E+03
0.20100E+03 0.65362E+02 0.10000E+03 0.20100E+03
0.20200E+03 0.64912E+02 0.10000E+03 0.20200E+03
0.20300E+03 0.65869E+02 0.10000E+03 0.20300E+03
0.20400E+03 0.65025E+02 0.10000E+03 0.20400E+03
0.20500E+03 0.64631E+02 0.10000E+03 0.20500E+03
0.20600E+03 0.64237E+02 0.10000E+03 0.20600E+03
0.20700E+03 0.66656E+02 0.10000E+03 0.20700E+03
0.20800E+03 0.62662E+02 0.10000E+03 0.20800E+03
0.20900E+03 0.63169E+02 0.10000E+03 0.20900E+03
0.21000E+03 0.62775E+02 0.10000E+03 0.21000E+03
0.21100E+03 0.62381E+02 0.10000E+03 0.21100E+03
0.21200E+03 0.64800E+02 0.10000E+03 0.21200E+03
0.21300E+03 0.63619E+02 0.10000E+03 0.21300E+03
0.21400E+03 0.64744E+02 0.10000E+03 0.21400E+03
0.21500E+03 0.64069E+02 0.10000E+03 0.21500E+03
0.21600E+03 0.63844E+02 0.10000E+03 0.21600E+03
0.21700E+03 0.63619E+02 0.10000E+03 0.21700E+03
0.21800E+03 0.63394E+02 0.10000E+03 0.21800E+03
0.21900E+03 0.63169E+02 0.10000E+03 0.21900E+03
0.22000E+03 0.62944E+02 0.10000E+03 0.22000E+03
0.22100E+03 0.65531E+02 0.10000E+03 0.22100E+03
0.22200E+03 0.64519E+02 0.10000E+03 0.22200E+03
0.22300E+03 0.63000E+02 0.10000E+03 0.22300E+03
0.22400E+03 0.63281E+02 0.10000E+03 0.22400E+03
0.22500E+03 0.64519E+02 0.10000E+03 0.22500E+03
0.22600E+03 0.63956E+02 0.10000E+03 0.22600E+03
0.22700E+03 0.65250E+02 0.10000E+03 0.22700E+03
0.22800E+03 0.64744E+02 0.10000E+03 0.22800E+03
0.22900E+03 0.64687E+02 0.10000E+03 0.22900E+03
0.23000E+03 0.66037E+02 0.10000E+03 0.23000E+03
0.23100E+03 0.64181E+02 0.10000E+03 0.23100E+03
0.23200E+03 0.64575E+02 0.10000E+03 0.23200E+03
0.23300E+03 0.65925E+02 0.10000E+03 0.23300E+03
0.23400E+03 0.65475E+02 0.10000E+03 0.23400E+03
0.23500E+03 0.65475E+02 0.10000E+03 0.23500E+03
0.23600E+03 0.65475E+02 0.10000E+03 0.23600E+03
0.23700E+03 0.68287E+02 0.10000E+03 0.23700E+03
0.23800E+03 0.67500E+02 0.10000E+03 0.23800E+03
0.23900E+03 0.64800E+02 0.10000E+03 0.23900E+03
0.24000E+03 0.65700E+02 0.10000E+03 0.24000E+03
0.24100E+03 0.68512E+02 0.10000E+03 0.24100E+03
0.24200E+03 0.67725E+02 0.10000E+03 0.24200E+03
0.24300E+03 0.67837E+02 0.10000E+03 0.24300E+03
0.24400E+03 0.67950E+02 0.10000E+03 0.24400E+03
0.24500E+03 0.69469E+02 0.10000E+03 0.24500E+03
0.24600E+03 0.67781E+02 0.10000E+03 0.24600E+03
0.24700E+03 0.65531E+02 0.10000E+03 0.24700E+03
0.24800E+03 0.69244E+02 0.10000E+03 0.24800E+03
0.24900E+03 0.65644E+02 0.10000E+03 0.24900E+03
0.25000E+03 0.70762E+02 0.10000E+03 0.25000E+03
0.25100E+03 0.65362E+02 0.10000E+03 0.25100E+03
0.25200E+03 0.69525E+02 0.10000E+03 0.25200E+03
0.25300E+03 0.68737E+02 0.10000E+03 0.25300E+03
0.25400E+03 0.68850E+02 0.10000E+03 0.25400E+03
0.25500E+03 0.68963E+02 0.10000E+03 0.25500E+03
0.25600E+03 0.69075E+02 0.10000E+03 0.25600E+03
0.25700E+03 0.70594E+02 0.10000E+03 0.25700E+03
0.25800E+03 0.68906E+02 0.10000E+03 0.25800E+03
0.25900E+03 0.69469E+02 0.10000E+03 0.25900E+03
0.26000E+03 0.69581E+02 0.10000E+03 0.26000E+03
0.26100E+03 0.69694E+02 0.10000E+03 0.26100E+03
0.26200E+03 0.69806E+02 0.10000E+03 0.26200E+03
0.26300E+03 0.67106E+02 0.10000E+03 0.26300E+03
0.26400E+03 0.68006E+02 0.10000E+03 0.26400E+03
0.26500E+03 0.68006E+02 0.10000E+03 0.26500E+03
0.26600E+03 0.68006E+02 0.10000E+03 0.26600E+03
0.26700E+03 0.70819E+02 0.10000E+03 0.26700E+03
0.26800E+03 0.67219E+02 0.10000E+03 0.26800E+03
0.26900E+03 0.68119E+02 0.10000E+03 0.26900E+03
0.27000E+03 0.68119E+02 0.10000E+03 0.27000E+03
0.27100E+03 0.68119E+02 0.10000E+03 0.27100E+03
0.27200E+03 0.66713E+02 0.10000E+03 0.27200E+03
0.27300E+03 0.68513E+02 0.10000E+03 0.27300E+03
0.27400E+03 0.66656E+02 0.10000E+03 0.27400E+03
0.27500E+03 0.67050E+02 0.10000E+03 0.27500E+03
0.27600E+03 0.68400E+02 0.10000E+03 0.27600E+03
0.27700E+03 0.67950E+02 0.10000E+03 0.27700E+03
0.27800E+03 0.70763E+02 0.10000E+03 0.27800E+03
0.27900E+03 0.65756E+02 0.10000E+03 0.27900E+03
0.28000E+03 0.68456E+02 0.10000E+03 0.28000E+03
0.28100E+03 0.66600E+02 0.10000E+03 0.28100E+03
0.28200E+03 0.71213E+02 0.10000E+03 0.28200E+03
0.28300E+03 0.67163E+02 0.10000E+03 0.28300E+03
0.28400E+03 0.68063E+02 0.10000E+03 0.28400E+03
0.28500E+03 0.68063E+02 0.10000E+03 0.28500E+03
0.28600E+03 0.66656E+02 0.10000E+03 0.28600E+03
0.28700E+03 0.67050E+02 0.10000E+03 0.28700E+03
0.28800E+03 0.68400E+02 0.10000E+03 0.28800E+03
0.28900E+03 0.67950E+02 0.10000E+03 0.28900E+03
0.29000E+03 0.67950E+02 0.10000E+03 0.29000E+03
0.29100E+03 0.67950E+02 0.10000E+03 0.29100E+03
0.29200E+03 0.67950E+02 0.10000E+03 0.29200E+03
0.29300E+03 0.66544E+02 0.10000E+03 0.29300E+03
0.29400E+03 0.68344E+02 0.10000E+03 0.29400E+03
0.29500E+03 0.67894E+02 0.10000E+03 0.29500E+03
0.29600E+03 0.67894E+02 0.10000E+03 0.29600E+03
0.29700E+03 0.67894E+02 0.10000E+03 0.29700E+03
0.29800E+03 0.67894E+02 0.10000E+03 0.29800E+03
0.29900E+03 0.67894E+02 0.10000E+03 0.29900E+03
0.30000E+03 0.70706E+02 0.10000E+03 0.30000E+03
0.30100E+03 0.67106E+02 0.10000E+03 0.30100E+03
0.30200E+03 0.68006E+02 0.10000E+03 0.30200E+03
0.30300E+03 0.68006E+02 0.10000E+03 0.30300E+03
0.30400E+03 0.70819E+02 0.10000E+03 0.30400E+03
0.30500E+03 0.67219E+02 0.10000E+03 0.30500E+03
0.30600E+03 0.68119E+02 0.10000E+03 0.30600E+03
0.30700E+03 0.70931E+02 0.10000E+03 0.30700E+03
0.30800E+03 0.70144E+02 0.10000E+03 0.30800E+03
0.30900E+03 0.67444E+02 0.10000E+03 0.30900E+03
0.31000E+03 0.71156E+02 0.10000E+03 0.31000E+03
0.31100E+03 0.67556E+02 0.10000E+03 0.31100E+03
0.31200E+03 0.71269E+02 0.10000E+03 0.31200E+03
0.31300E+03 0.67669E+02 0.10000E+03 0.31300E+03
0.31400E+03 0.71381E+02 0.10000E+03 0.31400E+03
0.31500E+03 0.70594E+02 0.10000E+03 0.31500E+03
0.31600E+03 0.67894E+02 0.10000E+03 0.31600E+03
0.31700E+03 0.71606E+02 0.10000E+03 0.31700E+03
0.31800E+03 0.70819E+02 0.10000E+03 0.31800E+03
0.31900E+03 0.70931E+02 0.10000E+03 0.31900E+03
0.32000E+03 0.68231E+02 0.10000E+03 0.32000E+03
0.32100E+03 0.69131E+02 0.10000E+03 0.32100E+03
0.32200E+03 0.73350E+02 0.10000E+03 0.32200E+03
0.32300E+03 0.72169E+02 0.10000E+03 0.32300E+03
0.32400E+03 0.72338E+02 0.10000E+03 0.32400E+03
0.32500E+03 0.68288E+02 0.10000E+03 0.32500E+03
0.32600E+03 0.69638E+02 0.10000E+03 0.32600E+03
0.32700E+03 0.69638E+02 0.10000E+03 0.32700E+03
0.32800E+03 0.68231E+02 0.10000E+03 0.32800E+03
0.32900E+03 0.70031E+02 0.10000E+03 0.32900E+03
0.33000E+03 0.72394E+02 0.10000E+03 0.33000E+03
0.33100E+03 0.71606E+02 0.10000E+03 0.33100E+03
0.33200E+03 0.68906E+02 0.10000E+03 0.33200E+03
0.33300E+03 0.69806E+02 0.10000E+03 0.33300E+03
0.33400E+03 0.68400E+02 0.10000E+03 0.33400E+03
0.33500E+03 0.68794E+02 0.10000E+03 0.33500E+03
0.33600E+03 0.70144E+02 0.10000E+03 0.33600E+03
0.33700E+03 0.69694E+02 0.10000E+03 0.33700E+03
0.33800E+03 0.69694E+02 0.10000E+03 0.33800E+03
0.33900E+03 0.69694E+02 0.10000E+03 0.33900E+03
0.34000E+03 0.68288E+02 0.10000E+03 0.34000E+03
0.34100E+03 0.68681E+02 0.10000E+03 0.34100E+03
0.34200E+03 0.68625E+02 0.10000E+03 0.34200E+03
0.34300E+03 0.68569E+02 0.10000E+03 0.34300E+03
0.34400E+03 0.68513E+02 0.10000E+03 0.34400E+03
0.34500E+03 0.68456E+02 0.10000E+03 0.34500E+03
0.34600E+03 0.68400E+02 0.10000E+03 0.34600E+03
0.34700E+03 0.69750E+02 0.10000E+03 0.34700E+03
0.34800E+03 0.67894E+02 0.10000E+03 0.34800E+03
0.34900E+03 0.68288E+02 0.10000E+03 0.34900E+03
0.35000E+03 0.68231E+02 0.10000E+03 0.35000E+03
0.35100E+03 0.68175E+02 0.10000E+03 0.35100E+03
0.35200E+03 0.66713E+02 0.10000E+03 0.35200E+03
0.35300E+03 0.68456E+02 0.10000E+03 0.35300E+03
0.35400E+03 0.67950E+02 0.10000E+03 0.35400E+03
0.35500E+03 0.69300E+02 0.10000E+03 0.35500E+03
0.35600E+03 0.67444E+02 0.10000E+03 0.35600E+03
0.35700E+03 0.67838E+02 0.10000E+03 0.35700E+03
0.35800E+03 0.67781E+02 0.10000E+03 0.35800E+03
0.35900E+03 0.67725E+02 0.10000E+03 0.35900E+03
0.36000E+03 0.67669E+02 0.10000E+03 0.36000E+03
0.36100E+03 0.67613E+02 0.10000E+03 0.36100E+03
0.36200E+03 0.68963E+02 0.10000E+03 0.36200E+03
0.36300E+03 0.67106E+02 0.10000E+03 0.36300E+03
0.36400E+03 0.67500E+02 0.10000E+03 0.36400E+03
0.36500E+03 0.68850E+02 0.10000E+03 0.36500E+03
0.36600E+03 0.68400E+02 0.10000E+03 0.36600E+03
0.36700E+03 0.68400E+02 0.10000E+03 0.36700E+03
0.36800E+03 0.68400E+02 0.10000E+03 0.36800E+03
0.36900E+03 0.68400E+02 0.10000E+03 0.36900E+03
0.37000E+03 0.71213E+02 0.10000E+03 0.37000E+03
0.37100E+03 0.67613E+02 0.10000E+03 0.37100E+03
0.37200E+03 0.68513E+02 0.10000E+03 0.37200E+03
0.37300E+03 0.71325E+02 0.10000E+03 0.37300E+03
0.37400E+03 0.67725E+02 0.10000E+03 0.37400E+03
0.37500E+03 0.71438E+02 0.10000E+03 0.37500E+03
0.37600E+03 0.70650E+02 0.10000E+03 0.37600E+03
|
a734bca86ad6eede886964b0e6948569ab97cc67 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1004/CH8/EX8.2/Ch08Ex2.sci | f11a9bbc0084e1991eaff769f1cbe6210ddb3264 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 430 | sci | Ch08Ex2.sci | // Scilab code: Ex8.2 : Wvelength of infrared absorption line: Pg: 185 (2008)
L1 = 4554; // wavelength of the stokes line, angstorm
L2 = 4178; // wavelength of antistokes line, angstorm
Lm = 2*L1*L2/[L1-L2]; // Wavelength of infrared absorption line, angstorm
printf("\nThe Wavelength of infrared absorption line = %5.3e angstorm", Lm);
// Result
// The Wavelength of infrared absorption line = 1.012e+005 angstorm |
1419402dd8308d8bf47900b1cc0481bbaca20d61 | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/ngram/5.1_14.tst | 04f1a2165c8aad997175d096a4b789986c6bd608 | [] | 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 | 705,355 | tst | 5.1_14.tst | 1 60:1 124:1 318:1 375:1 392:2 548:2 588:1 708:1 750:1 779:1 814:2 895:1 1141:1 1264:1 1371:1 1420:1 1545:1 1975:1 2447:1 2575:1 2577:1 2667:1 3048:1 3315:1 3520:1 3581:1 3652:1 3692:1 3759:1 3882:1 3952:1 4369:1 4488:1 4535:1 4631:1 4659:1 4945:1 5309:1 5565:1 5680:1 6006:1 6279:1 6430:1 7052:1 7294:1 7523:1 7547:1 7618:1 7778:1 7784:1 8049:1 8164:1 8345:1 8363:1 8555:1 8658:1 8838:1 9249:1 9281:1 9391:1 9608:1 9713:1 9769:1 10158:1 10297:1 10528:1 10537:1 10587:1 10625:1 10805:1 11150:1 11253:1 11552:1 11570:1 11647:1 11705:1 11930:1 11977:1 12090:1 12122:1 12421:1 12465:1 13091:1 13204:1 13513:1 13555:1 14032:1 14497:1 15178:1 15250:1 15262:1 15334:1 15342:1 15432:1 15507:1 15799:1 15858:1 16054:1 16156:1 16312:1 16452:1 16542:1 16787:1 17058:1 17087:1 17137:119 17296:1 17646:1 18147:1 18153:1 18183:1 18526:1 18612:1 18886:1 19011:1 19126:1 19207:1 19215:1 19227:1 19420:1 19427:1 19851:1 20010:1 20054:1 20082:1 20181:1 20252:1 20377:1 20405:1 20513:1 20631:1 20649:1 20723:1 20735:1 20957:1 20970:1 21040:1 21204:1 21314:1 21502:1 21537:1 21779:1 22008:1 22484:1 22651:1 22787:1 23105:1 23166:1 23650:1 23689:1 24035:1 24165:1 24380:1 24415:1 24537:1 24915:1 25132:1 25815:1 25828:1 26051:1 26173:1 26308:1 26728:1 27022:1
1 60:1 124:1 231:1 277:1 318:1 363:1 375:1 392:2 394:1 548:2 588:1 708:1 731:1 750:1 776:2 779:1 787:1 814:2 854:2 856:1 857:1 895:1 943:2 1141:1 1264:1 1303:1 1371:1 1420:2 1517:1 1526:1 1545:1 1564:1 1645:1 1678:1 1966:2 1975:1 2079:1 2095:1 2109:2 2111:2 2208:1 2330:1 2447:1 2458:1 2465:1 2474:1 2485:1 2490:2 2575:1 2577:1 2656:1 2667:1 2773:1 2915:1 3048:1 3152:1 3315:2 3407:1 3520:1 3581:1 3652:1 3692:2 3733:1 3759:1 3828:1 3882:1 3952:1 3957:1 4164:1 4172:1 4275:1 4307:1 4369:1 4488:1 4490:1 4499:1 4535:1 4629:1 4631:1 4638:1 4639:1 4650:1 4659:1 4737:2 4945:1 5309:2 5330:2 5445:1 5565:1 5632:1 5647:1 5680:2 5897:1 6006:1 6265:1 6279:1 6430:1 6460:1 6490:1 6728:1 6870:1 6894:1 6997:1 7052:1 7068:2 7136:5 7155:1 7201:1 7294:2 7523:1 7547:1 7558:1 7568:1 7580:1 7618:1 7778:1 7784:2 7945:1 7950:1 7952:1 8049:1 8153:1 8164:1 8345:1 8363:1 8370:1 8552:1 8555:1 8658:1 8786:1 8793:1 8838:1 8885:1 8926:1 9113:1 9132:1 9216:1 9249:1 9281:1 9391:1 9396:1 9555:2 9601:1 9608:1 9713:1 9769:1 9795:1 9972:1 10137:1 10158:1 10174:1 10294:1 10297:1 10445:1 10477:1 10528:1 10537:2 10539:1 10587:1 10625:1 10636:1 10695:1 10696:1 10805:1 11071:1 11150:1 11253:1 11256:1 11439:1 11552:1 11570:1 11606:1 11647:1 11705:1 11728:1 11930:1 11944:1 11977:1 12090:1 12122:1 12186:1 12421:1 12465:1 12558:1 12836:1 12857:1 12890:1 13077:1 13091:1 13204:2 13361:1 13484:1 13513:1 13555:1 13587:1 13693:1 14032:1 14417:2 14497:1 14709:1 14783:1 15083:1 15162:1 15178:1 15250:1 15262:1 15334:1 15342:1 15432:1 15507:1 15722:1 15799:1 15858:2 16027:1 16036:1 16041:1 16054:1 16128:1 16156:1 16312:1 16339:1 16452:1 16542:1 16658:1 16787:1 16954:3 17058:1 17087:1 17137:227 17162:1 17296:1 17351:1 17534:1 17608:1 17646:1 17716:1 17823:1 17846:1 17929:1 17975:1 18145:1 18147:1 18153:1 18158:1 18183:1 18187:1 18282:1 18363:1 18369:1 18407:1 18526:1 18592:1 18612:1 18830:1 18865:1 18886:1 18916:1 18973:1 19011:1 19081:1 19126:1 19207:1 19215:1 19227:1 19302:1 19420:1 19427:1 19447:1 19699:1 19851:1 19853:1 20010:1 20054:1 20082:1 20085:1 20088:1 20114:1 20151:1 20171:1 20181:1 20205:1 20218:1 20236:1 20252:1 20269:1 20377:1 20405:1 20441:1 20492:1 20503:1 20513:1 20525:1 20624:1 20631:1 20649:1 20723:1 20726:2 20735:1 20800:1 20846:1 20957:1 20970:1 21040:1 21138:1 21204:1 21294:1 21314:1 21345:1 21413:1 21502:1 21537:1 21698:1 21779:1 21878:1 21884:1 21953:1 22008:1 22280:1 22340:2 22345:1 22467:1 22484:1 22636:1 22643:1 22651:1 22787:1 22858:1 23105:2 23139:1 23166:1 23221:1 23253:1 23650:1 23689:1 24035:1 24094:3 24165:1 24199:1 24228:1 24380:1 24415:1 24418:1 24442:1 24537:1 24677:1 24915:1 24950:1 25037:1 25077:1 25132:2 25444:1 25445:1 25766:1 25773:1 25815:1 25828:1 25847:3 25883:1 25886:1 25963:1 25977:2 26051:1 26146:1 26173:1 26308:2 26488:1 26611:1 26653:1 26728:1 26760:1 26825:1 26844:1 26903:1 26965:1 27022:2
1 60:1 124:1 138:1 159:1 231:1 236:1 277:1 301:1 312:2 318:2 363:1 375:1 392:3 394:1 548:2 588:1 708:1 731:1 750:1 776:2 779:1 787:1 814:3 854:2 856:2 857:1 895:1 898:1 943:2 1141:1 1189:1 1264:1 1303:1 1371:1 1417:1 1420:2 1485:1 1498:1 1517:1 1526:1 1545:1 1556:1 1564:1 1632:1 1636:1 1645:1 1651:1 1676:1 1678:2 1921:1 1966:3 1970:1 1975:1 2040:1 2061:2 2079:1 2095:2 2096:1 2109:2 2111:2 2208:1 2278:1 2330:1 2366:1 2447:1 2458:1 2465:1 2474:1 2485:1 2490:2 2563:1 2575:1 2577:1 2656:2 2664:1 2667:1 2773:1 2826:1 2852:1 2860:1 2915:2 3048:3 3152:1 3315:2 3406:1 3407:1 3423:1 3480:1 3494:1 3506:1 3520:1 3540:1 3581:1 3652:1 3691:2 3692:2 3733:1 3759:1 3760:1 3828:1 3882:1 3952:1 3957:1 4005:1 4057:1 4064:1 4164:1 4172:1 4218:1 4275:1 4294:1 4307:1 4369:2 4386:1 4488:2 4490:1 4499:1 4535:1 4625:1 4629:2 4631:1 4638:1 4639:1 4650:1 4659:2 4701:1 4737:2 4877:1 4941:1 4945:1 5081:1 5094:1 5216:1 5230:1 5281:1 5309:2 5314:1 5315:1 5330:2 5440:1 5445:1 5467:1 5479:1 5565:1 5576:1 5632:1 5647:2 5680:2 5751:1 5850:1 5897:1 6006:1 6115:1 6235:1 6246:1 6265:1 6279:1 6430:1 6460:1 6490:1 6686:1 6728:1 6806:1 6870:1 6894:1 6913:1 6935:1 6997:1 7052:1 7068:2 7090:1 7136:7 7155:3 7201:1 7202:1 7235:1 7256:1 7294:2 7326:1 7355:1 7523:1 7547:1 7558:1 7568:1 7580:1 7618:1 7700:1 7778:1 7784:2 7945:1 7950:1 7952:1 7976:1 8049:1 8124:1 8153:1 8164:1 8250:1 8282:2 8332:1 8345:1 8363:1 8370:1 8407:1 8552:1 8555:1 8620:1 8658:1 8786:1 8793:1 8838:1 8853:1 8885:1 8926:1 9113:1 9132:1 9216:1 9222:1 9249:1 9281:1 9391:1 9396:2 9402:1 9425:1 9491:2 9555:2 9601:1 9608:1 9660:1 9713:1 9769:1 9795:1 9972:1 10137:1 10158:3 10159:1 10168:1 10174:1 10294:1 10297:1 10445:1 10477:1 10528:1 10537:2 10539:1 10587:1 10611:1 10625:1 10636:1 10695:1 10696:1 10706:1 10724:1 10805:1 10822:1 10840:1 10874:1 11071:1 11076:1 11150:1 11236:1 11253:1 11256:1 11273:1 11439:1 11539:1 11552:1 11570:1 11606:1 11647:1 11705:1 11728:1 11930:1 11944:1 11977:1 12041:1 12082:1 12090:1 12122:1 12186:1 12272:1 12421:2 12465:1 12558:1 12561:1 12569:1 12595:1 12620:1 12756:1 12836:2 12857:1 12890:1 12934:1 13052:1 13077:1 13091:1 13204:2 13305:1 13361:1 13484:1 13513:1 13555:1 13558:2 13587:1 13693:1 13774:1 13781:1 14032:1 14403:1 14417:2 14420:1 14432:1 14497:1 14532:1 14550:1 14709:1 14783:1 14892:1 15083:1 15162:1 15178:1 15198:1 15250:1 15262:1 15274:1 15294:1 15334:1 15342:1 15359:1 15432:1 15499:1 15507:1 15525:1 15534:1 15596:1 15722:1 15799:1 15821:1 15858:2 15873:1 16027:1 16036:1 16041:1 16054:2 16116:1 16128:1 16156:1 16189:1 16203:1 16312:1 16339:1 16344:1 16379:1 16452:1 16542:1 16551:1 16570:1 16651:1 16658:1 16703:1 16721:1 16787:1 16932:1 16954:3 16997:1 17058:1 17087:1 17126:2 17137:371 17151:1 17162:1 17296:1 17351:1 17407:1 17534:2 17608:1 17646:1 17716:1 17823:1 17846:1 17900:1 17929:1 17970:1 17975:1 18145:2 18147:1 18153:1 18158:1 18183:1 18187:1 18229:1 18282:1 18363:1 18369:1 18407:1 18409:1 18526:1 18569:1 18592:1 18612:1 18830:1 18865:2 18886:1 18916:1 18937:1 18973:1 19011:1 19057:1 19073:1 19081:1 19126:1 19202:1 19207:1 19215:1 19227:1 19302:1 19319:1 19337:1 19401:1 19402:1 19420:1 19427:1 19447:1 19480:1 19519:1 19667:1 19699:1 19794:1 19830:1 19851:1 19853:1 19952:1 20010:1 20054:1 20082:1 20085:1 20088:1 20114:1 20151:1 20171:1 20181:1 20186:1 20205:2 20218:1 20236:1 20252:1 20269:1 20377:1 20405:1 20441:1 20487:1 20492:1 20503:1 20512:1 20513:1 20525:1 20553:1 20624:1 20631:1 20632:1 20649:1 20690:1 20723:1 20726:2 20735:1 20795:1 20800:1 20846:1 20851:1 20957:1 20970:2 21040:1 21055:1 21138:1 21204:1 21269:1 21294:1 21314:1 21345:1 21358:1 21413:1 21472:1 21502:1 21537:1 21548:1 21644:1 21698:1 21716:1 21779:1 21878:1 21884:1 21953:1 22008:1 22213:1 22280:1 22340:2 22345:1 22467:1 22484:1 22518:1 22551:1 22557:1 22636:1 22643:3 22651:1 22667:1 22787:1 22794:1 22826:1 22858:1 22863:1 23105:2 23133:1 23139:1 23166:1 23198:1 23221:1 23253:1 23340:1 23650:1 23689:1 23746:1 23821:1 23826:1 23853:1 23860:1 23952:1 24035:1 24094:3 24165:1 24199:1 24228:1 24370:1 24380:1 24388:1 24415:1 24418:1 24439:1 24442:1 24537:1 24569:1 24677:1 24915:1 24950:1 24977:1 25037:1 25077:2 25132:2 25155:1 25163:1 25210:1 25318:1 25444:1 25445:1 25487:1 25766:1 25773:1 25778:1 25815:1 25828:1 25847:3 25867:1 25883:1 25886:1 25963:1 25969:1 25977:3 26051:1 26131:1 26146:1 26164:1 26172:1 26173:1 26196:1 26308:2 26488:1 26611:1 26653:1 26728:1 26760:1 26825:1 26836:1 26844:1 26868:1 26892:1 26903:1 26965:1 27022:2
1 60:1 124:1 138:1 147:1 153:1 159:1 231:1 236:1 277:1 301:1 312:2 314:1 318:2 326:1 363:1 375:1 392:3 394:1 538:1 548:2 588:1 708:1 731:1 750:1 776:3 779:1 787:1 814:3 823:2 854:3 856:2 857:3 863:1 895:1 898:1 943:2 1101:1 1141:1 1189:1 1243:1 1264:1 1303:1 1371:1 1385:1 1411:1 1417:1 1420:2 1485:1 1498:1 1517:1 1526:1 1545:1 1556:1 1564:1 1615:1 1632:1 1636:1 1645:1 1651:1 1676:1 1678:2 1825:1 1854:1 1921:1 1966:4 1970:1 1975:1 1979:1 2006:1 2040:1 2061:2 2079:1 2084:1 2095:2 2096:1 2109:3 2111:2 2208:1 2278:1 2330:1 2366:1 2447:1 2458:1 2465:1 2474:1 2485:1 2490:3 2563:1 2575:2 2577:1 2656:2 2664:1 2667:1 2689:2 2773:1 2826:1 2852:1 2860:1 2915:2 3048:3 3152:1 3315:3 3406:1 3407:1 3414:1 3423:1 3480:1 3494:1 3506:1 3520:1 3540:1 3581:1 3600:1 3652:1 3691:2 3692:2 3733:1 3759:1 3760:1 3794:1 3828:1 3882:1 3917:1 3952:1 3957:1 4005:1 4057:1 4064:1 4140:1 4164:1 4172:1 4218:1 4275:1 4294:1 4307:1 4319:1 4344:1 4369:2 4386:1 4488:2 4490:1 4499:1 4535:1 4625:1 4629:2 4631:1 4638:1 4639:1 4646:1 4650:1 4659:2 4663:1 4701:1 4737:2 4877:1 4941:1 4945:1 5081:1 5094:1 5216:1 5230:1 5281:1 5309:2 5314:1 5315:1 5330:2 5440:1 5445:1 5467:1 5479:1 5565:1 5576:1 5591:1 5624:1 5632:1 5642:1 5647:3 5680:2 5725:1 5751:1 5850:1 5897:1 6006:1 6115:1 6235:1 6238:1 6246:1 6265:1 6279:1 6300:1 6430:1 6449:1 6460:1 6490:1 6599:1 6641:1 6686:1 6728:1 6806:1 6857:1 6870:1 6894:1 6913:1 6935:1 6997:1 7027:1 7052:2 7068:3 7090:2 7092:2 7117:1 7136:10 7140:1 7155:3 7156:2 7201:1 7202:1 7224:1 7235:1 7242:1 7256:1 7294:2 7326:1 7355:1 7523:1 7547:1 7558:1 7568:1 7580:1 7618:1 7642:1 7700:1 7778:2 7784:2 7945:1 7950:1 7952:1 7976:1 8049:1 8124:1 8153:1 8164:1 8197:1 8250:1 8258:1 8282:2 8332:1 8345:1 8363:1 8370:1 8407:2 8423:1 8552:1 8555:2 8600:1 8620:1 8658:1 8728:1 8786:1 8793:1 8838:1 8853:1 8885:1 8926:1 9090:1 9113:1 9132:1 9173:1 9216:1 9222:1 9243:1 9249:1 9281:1 9361:1 9391:1 9396:3 9402:1 9425:1 9491:2 9493:1 9555:2 9601:1 9608:1 9610:1 9660:1 9713:1 9769:1 9795:1 9946:2 9972:1 9993:1 10137:1 10158:3 10159:1 10168:1 10174:1 10226:1 10294:1 10297:1 10312:1 10326:1 10445:1 10474:1 10477:1 10518:1 10523:1 10528:1 10537:2 10539:1 10587:1 10611:1 10625:1 10636:1 10648:1 10695:1 10696:1 10706:1 10724:1 10766:1 10805:1 10822:1 10840:1 10874:2 11071:1 11076:1 11150:1 11236:1 11253:1 11256:1 11273:2 11376:1 11439:1 11539:1 11552:2 11570:1 11606:1 11647:1 11705:1 11728:1 11930:1 11944:1 11977:1 12041:1 12078:1 12082:1 12083:1 12090:1 12122:1 12186:1 12225:1 12272:1 12289:1 12421:2 12465:1 12537:1 12558:1 12561:1 12569:1 12595:1 12620:1 12756:1 12758:1 12836:3 12857:1 12867:1 12890:1 12934:1 12957:1 13052:1 13077:1 13091:1 13204:2 13205:1 13222:1 13305:1 13361:1 13484:1 13513:1 13555:1 13558:2 13587:1 13693:1 13774:1 13781:1 13794:1 14032:1 14064:1 14266:1 14403:1 14417:2 14420:1 14432:1 14497:1 14532:1 14550:1 14600:1 14709:1 14783:1 14876:1 14892:1 14928:1 15083:1 15117:1 15162:1 15178:1 15198:1 15250:1 15262:1 15274:1 15294:1 15302:1 15334:1 15342:1 15359:1 15367:1 15407:1 15432:1 15499:1 15507:1 15525:1 15534:1 15596:1 15722:1 15765:1 15799:1 15821:1 15858:2 15862:1 15873:1 16000:1 16027:1 16036:1 16041:1 16054:2 16059:2 16116:1 16128:1 16156:1 16189:1 16203:1 16222:1 16312:1 16339:1 16344:1 16379:1 16452:1 16514:1 16542:1 16551:1 16570:1 16651:1 16657:1 16658:1 16703:1 16721:1 16787:1 16848:1 16932:1 16954:5 16977:1 16997:1 17058:1 17087:1 17126:2 17137:452 17147:1 17151:1 17162:1 17201:1 17251:1 17296:1 17311:1 17341:1 17351:1 17407:1 17448:1 17534:2 17608:1 17646:1 17692:1 17716:1 17803:1 17823:1 17846:1 17862:1 17900:1 17929:1 17970:1 17975:1 18145:2 18147:1 18153:1 18158:1 18183:1 18187:1 18196:1 18229:1 18282:1 18363:1 18369:1 18407:1 18409:1 18430:1 18526:1 18569:1 18577:1 18592:1 18612:1 18787:1 18807:1 18830:1 18840:1 18865:3 18886:1 18916:1 18937:1 18973:1 19011:1 19057:1 19073:1 19081:1 19089:1 19126:1 19202:1 19207:1 19215:1 19227:2 19264:1 19302:1 19319:1 19337:2 19401:1 19402:1 19420:1 19427:1 19435:1 19447:1 19480:1 19519:1 19667:1 19699:1 19750:1 19789:1 19791:1 19794:1 19811:1 19830:1 19851:1 19853:1 19874:1 19943:1 19952:1 20010:1 20054:1 20082:1 20085:1 20087:1 20088:1 20114:1 20151:1 20171:1 20181:1 20186:1 20205:2 20218:1 20236:1 20252:1 20269:1 20377:1 20396:1 20405:1 20409:1 20441:1 20447:1 20487:1 20492:1 20503:1 20512:1 20513:1 20525:1 20553:1 20624:1 20631:1 20632:1 20649:1 20664:1 20690:1 20723:1 20726:2 20735:1 20794:1 20795:1 20800:2 20846:1 20851:1 20906:1 20957:1 20970:2 21040:1 21055:1 21085:1 21138:1 21204:1 21269:1 21294:1 21314:1 21322:1 21330:1 21345:1 21358:1 21413:1 21472:1 21502:1 21537:1 21548:1 21644:1 21698:1 21716:1 21779:1 21789:1 21878:1 21884:1 21953:1 22008:1 22101:1 22113:1 22213:1 22280:1 22317:1 22340:2 22345:1 22426:1 22467:1 22484:1 22518:1 22535:1 22551:1 22557:1 22582:2 22636:1 22643:3 22651:1 22667:1 22787:1 22794:1 22826:1 22858:1 22863:1 22952:1 23002:2 23036:1 23045:1 23066:1 23105:2 23133:1 23139:1 23166:1 23198:1 23220:2 23221:1 23253:1 23308:1 23340:1 23359:1 23650:1 23689:1 23746:1 23821:1 23826:1 23853:1 23860:1 23952:1 24035:1 24094:5 24165:1 24199:1 24211:1 24224:1 24228:1 24370:1 24380:1 24388:1 24415:1 24418:1 24439:1 24442:1 24537:1 24569:1 24634:1 24677:1 24915:1 24950:1 24977:1 24986:1 25037:1 25077:2 25132:2 25155:1 25163:1 25174:1 25200:1 25205:1 25210:1 25297:1 25318:1 25444:1 25445:1 25487:1 25760:1 25766:1 25773:1 25778:1 25790:1 25815:1 25828:1 25847:3 25867:1 25883:1 25886:1 25963:1 25969:1 25971:1 25977:3 26051:1 26131:1 26146:1 26164:1 26172:1 26173:1 26196:1 26245:1 26308:3 26488:1 26504:1 26539:1 26611:1 26653:1 26668:1 26728:2 26760:1 26825:1 26836:1 26844:1 26868:1 26892:1 26903:1 26965:1 26974:1 27022:2
1 50:1 55:1 60:1 124:1 138:1 147:1 153:1 159:1 231:1 236:1 277:1 301:1 312:2 314:1 318:3 326:1 337:1 363:1 375:1 392:4 394:1 451:1 538:1 548:2 588:1 708:1 731:1 750:1 776:3 779:1 787:1 814:3 815:1 823:2 854:3 856:2 857:3 863:1 895:2 898:2 909:1 943:2 1100:1 1101:1 1141:1 1145:1 1189:1 1243:1 1264:1 1303:1 1371:1 1385:1 1411:1 1417:2 1420:2 1429:1 1461:1 1480:1 1485:1 1498:1 1513:1 1517:1 1526:1 1545:1 1556:1 1564:1 1615:1 1632:1 1636:1 1645:1 1651:1 1653:1 1676:1 1678:2 1715:1 1778:1 1825:1 1854:1 1921:1 1966:4 1970:1 1975:1 1979:1 2006:1 2040:1 2061:2 2079:1 2084:1 2087:1 2095:2 2096:1 2109:3 2111:2 2179:1 2208:1 2278:1 2291:1 2330:1 2366:1 2367:1 2408:1 2416:1 2430:1 2437:1 2447:1 2458:1 2465:1 2474:1 2485:1 2490:3 2563:1 2575:2 2577:1 2656:2 2664:1 2667:2 2689:2 2773:1 2826:1 2841:1 2852:2 2860:1 2915:2 2938:1 3048:3 3152:1 3286:1 3315:3 3346:1 3399:1 3406:1 3407:1 3414:1 3423:1 3470:1 3480:1 3494:1 3506:1 3510:1 3520:1 3540:1 3581:1 3600:1 3631:1 3652:1 3691:2 3692:2 3698:1 3733:1 3737:1 3759:1 3760:1 3794:1 3828:1 3882:1 3917:1 3952:1 3957:1 4003:1 4005:1 4057:1 4064:2 4140:1 4164:1 4172:1 4218:1 4275:1 4284:1 4294:1 4307:1 4319:1 4344:1 4369:2 4386:1 4488:2 4490:1 4499:1 4502:1 4535:1 4625:1 4629:2 4631:1 4632:1 4638:1 4639:1 4643:1 4646:1 4650:1 4659:2 4663:1 4701:1 4737:2 4776:1 4842:1 4877:1 4941:1 4945:1 5050:1 5081:1 5094:1 5212:1 5216:1 5230:1 5281:1 5309:3 5314:1 5315:1 5330:2 5420:1 5440:1 5445:1 5467:1 5479:1 5565:1 5576:1 5591:1 5624:1 5632:1 5642:1 5647:3 5680:2 5725:1 5751:3 5850:1 5897:1 5991:1 6006:1 6115:1 6129:1 6210:1 6235:1 6238:1 6246:1 6265:1 6279:1 6300:1 6398:1 6430:1 6449:1 6460:1 6490:1 6534:1 6599:1 6621:1 6641:1 6686:1 6728:1 6806:1 6857:1 6870:1 6894:1 6913:1 6935:1 6997:1 7027:1 7052:2 7067:1 7068:4 7081:1 7090:2 7092:2 7117:1 7136:11 7140:1 7155:3 7156:2 7162:1 7201:1 7202:1 7224:1 7230:1 7235:1 7242:1 7256:1 7294:2 7326:1 7355:1 7523:1 7547:1 7558:1 7568:1 7580:1 7592:1 7618:1 7637:1 7642:1 7700:1 7734:1 7751:1 7778:2 7784:2 7814:1 7836:1 7945:1 7950:1 7952:1 7976:1 8043:1 8049:1 8113:1 8124:1 8153:1 8164:1 8197:1 8250:1 8258:1 8282:2 8332:1 8345:1 8351:1 8363:1 8370:1 8407:2 8423:1 8541:1 8552:1 8555:2 8600:1 8620:1 8658:1 8674:1 8699:1 8728:1 8786:1 8793:1 8838:1 8853:1 8885:1 8926:1 8947:1 8953:1 9090:1 9113:1 9132:1 9155:1 9173:1 9178:1 9179:1 9216:1 9221:1 9222:1 9243:1 9249:1 9251:1 9281:1 9361:1 9391:1 9396:3 9402:1 9425:1 9491:2 9493:1 9555:2 9601:1 9608:1 9610:1 9642:1 9660:1 9713:1 9769:1 9775:1 9795:1 9868:1 9936:1 9946:2 9972:1 9993:1 10137:1 10158:3 10159:1 10168:1 10174:1 10226:1 10234:1 10294:1 10297:1 10312:1 10326:1 10445:1 10474:1 10477:1 10500:1 10518:1 10523:1 10528:1 10537:2 10539:1 10556:1 10587:1 10611:1 10625:3 10636:1 10648:1 10695:1 10696:1 10706:1 10724:1 10766:1 10805:1 10822:1 10840:1 10874:2 11063:1 11071:1 11076:1 11150:1 11236:1 11253:1 11256:1 11267:1 11273:2 11283:1 11376:1 11393:1 11439:1 11476:1 11494:1 11539:1 11552:2 11570:1 11606:1 11647:1 11705:2 11728:1 11858:1 11930:1 11944:1 11977:1 12041:1 12060:1 12078:1 12082:1 12083:1 12090:1 12122:1 12161:1 12186:1 12225:1 12242:1 12272:1 12283:1 12289:1 12301:1 12421:3 12465:1 12537:1 12558:1 12561:1 12569:1 12595:1 12620:1 12756:1 12758:1 12836:3 12857:1 12867:1 12890:1 12909:1 12934:1 12957:1 13052:1 13077:1 13091:1 13204:2 13205:1 13222:1 13256:1 13305:1 13349:1 13361:1 13430:1 13484:1 13513:1 13555:1 13558:2 13587:1 13693:1 13774:1 13781:1 13794:1 14032:1 14064:1 14096:1 14168:1 14217:1 14263:1 14266:1 14403:1 14417:2 14420:1 14432:1 14497:1 14532:1 14550:1 14559:1 14572:1 14600:2 14687:1 14709:1 14738:1 14783:1 14876:1 14883:1 14892:1 14902:2 14928:1 15083:1 15117:1 15162:1 15178:1 15198:1 15250:1 15254:1 15262:1 15274:1 15282:1 15294:3 15302:1 15334:1 15342:1 15359:1 15367:1 15407:1 15432:1 15490:1 15499:1 15507:1 15525:1 15534:1 15596:1 15646:1 15722:1 15765:1 15799:1 15814:1 15821:1 15858:2 15862:1 15873:1 15979:1 16000:1 16027:1 16036:1 16041:1 16054:3 16059:2 16116:1 16117:1 16128:1 16156:1 16189:1 16203:1 16222:1 16257:1 16312:1 16339:1 16344:1 16347:1 16379:1 16439:1 16452:1 16514:1 16542:1 16551:1 16570:1 16651:1 16657:1 16658:1 16703:1 16721:1 16787:1 16791:1 16848:1 16932:1 16954:5 16977:1 16997:1 17048:1 17058:1 17087:1 17112:1 17126:2 17137:569 17147:1 17151:1 17162:1 17200:1 17201:1 17251:1 17296:1 17311:1 17322:1 17341:1 17351:1 17407:1 17448:1 17453:1 17534:2 17608:1 17616:1 17646:1 17661:1 17691:1 17692:1 17716:1 17728:1 17803:1 17823:1 17846:1 17862:1 17900:2 17929:1 17970:1 17975:1 18046:1 18145:2 18147:1 18153:1 18158:1 18183:1 18187:1 18196:1 18229:1 18279:1 18282:1 18288:1 18363:1 18369:1 18407:1 18409:1 18430:1 18462:1 18526:1 18569:1 18577:1 18592:1 18612:1 18701:1 18787:1 18807:1 18828:1 18830:1 18840:1 18865:3 18886:1 18916:1 18937:1 18973:1 18987:1 19011:1 19057:1 19073:1 19081:1 19089:1 19126:1 19149:1 19202:1 19207:1 19215:1 19227:3 19264:1 19302:1 19319:1 19337:2 19401:1 19402:1 19420:1 19427:1 19435:1 19447:1 19480:1 19481:1 19517:1 19519:1 19524:1 19525:1 19667:1 19687:1 19699:1 19750:1 19789:1 19791:1 19794:1 19811:1 19830:1 19851:1 19853:1 19874:1 19943:1 19948:1 19952:1 20010:1 20024:1 20054:1 20056:1 20082:1 20083:1 20085:1 20087:1 20088:1 20114:1 20151:1 20171:1 20181:1 20186:1 20205:2 20218:1 20236:1 20252:1 20269:1 20377:1 20396:1 20405:1 20409:1 20421:1 20441:1 20447:1 20487:1 20492:1 20503:1 20512:1 20513:2 20525:1 20553:1 20576:1 20609:1 20624:1 20631:2 20632:1 20649:1 20664:1 20690:2 20723:1 20726:2 20735:1 20794:1 20795:1 20800:2 20846:1 20851:1 20866:1 20906:1 20952:1 20957:1 20970:3 21040:1 21055:1 21085:1 21104:1 21138:1 21204:1 21269:1 21294:1 21304:1 21314:1 21322:1 21330:1 21345:1 21358:1 21413:1 21472:2 21502:1 21537:1 21548:1 21584:1 21644:1 21696:1 21698:1 21716:1 21769:1 21779:1 21789:1 21878:1 21884:1 21953:1 21964:1 22008:1 22066:1 22101:1 22113:1 22213:2 22280:1 22317:2 22340:2 22345:1 22426:1 22467:1 22484:1 22518:1 22535:1 22551:1 22557:1 22582:2 22636:1 22643:3 22651:1 22667:1 22787:1 22794:1 22826:1 22858:1 22863:1 22941:1 22952:1 23002:2 23036:1 23045:1 23066:1 23105:2 23110:1 23133:1 23139:1 23166:1 23198:1 23220:2 23221:1 23253:1 23308:1 23340:1 23359:1 23428:1 23473:1 23629:1 23650:1 23689:1 23746:1 23821:1 23826:1 23853:1 23860:1 23952:1 24035:1 24094:5 24165:1 24199:1 24211:1 24215:1 24224:1 24228:1 24253:1 24370:1 24380:1 24388:1 24415:1 24418:1 24439:1 24442:1 24447:1 24537:1 24553:1 24569:1 24634:1 24677:1 24707:1 24758:1 24785:1 24849:1 24886:1 24912:1 24915:1 24950:1 24977:1 24986:1 25037:1 25077:2 25098:1 25132:2 25143:1 25148:1 25155:1 25163:1 25174:1 25200:1 25205:1 25210:1 25297:1 25318:1 25361:1 25444:1 25445:1 25487:1 25563:1 25760:1 25766:1 25773:1 25778:1 25790:1 25815:1 25828:1 25847:3 25860:1 25867:1 25883:1 25886:1 25963:1 25969:1 25971:2 25977:3 26008:1 26051:1 26131:1 26146:1 26164:1 26172:1 26173:1 26196:1 26245:1 26308:3 26488:1 26504:1 26515:1 26539:1 26611:1 26653:1 26668:1 26728:2 26760:1 26825:1 26836:1 26844:1 26868:1 26892:1 26903:1 26943:1 26965:1 26974:1 27022:2
1 50:1 55:1 60:1 124:1 138:1 147:1 153:1 159:1 231:1 236:1 277:1 301:1 312:2 314:1 318:3 326:1 337:1 363:1 375:1 392:4 394:1 451:1 538:1 548:2 588:1 708:1 731:1 750:1 776:3 779:1 787:1 814:3 815:1 823:2 854:3 856:2 857:3 863:1 895:2 898:2 909:1 943:2 1100:1 1101:1 1141:1 1145:1 1184:1 1189:1 1243:1 1264:1 1303:1 1371:1 1385:1 1411:1 1417:2 1420:2 1429:1 1461:1 1480:1 1485:1 1498:1 1511:1 1513:1 1517:1 1526:1 1545:1 1556:1 1564:1 1615:1 1632:1 1636:1 1645:1 1651:1 1653:1 1676:1 1678:2 1715:1 1778:1 1825:1 1854:1 1921:1 1924:1 1966:4 1970:1 1975:1 1979:1 2006:1 2025:1 2040:1 2061:2 2079:1 2084:1 2087:1 2095:2 2096:1 2109:3 2111:2 2179:1 2208:1 2278:1 2291:1 2330:1 2366:1 2367:1 2408:1 2416:1 2430:1 2437:1 2447:1 2458:1 2465:1 2474:1 2485:1 2490:3 2563:1 2575:2 2577:1 2656:2 2664:1 2667:2 2689:2 2773:1 2826:1 2841:1 2852:2 2860:1 2915:2 2938:1 2956:1 3048:3 3152:1 3252:1 3286:1 3291:1 3309:1 3315:5 3346:1 3399:1 3406:1 3407:1 3414:1 3423:1 3470:1 3480:1 3494:1 3506:1 3510:1 3520:1 3540:1 3581:1 3600:1 3631:1 3652:1 3691:2 3692:2 3698:1 3733:1 3737:1 3759:1 3760:1 3794:1 3828:1 3882:1 3917:1 3952:1 3957:1 4003:1 4005:1 4057:1 4064:2 4140:1 4164:1 4172:1 4218:1 4275:1 4284:1 4294:1 4307:1 4319:1 4344:1 4369:2 4386:1 4488:2 4490:1 4499:1 4502:1 4535:1 4625:1 4629:3 4631:1 4632:1 4638:1 4639:1 4643:1 4646:1 4650:1 4659:2 4663:1 4701:1 4737:2 4776:1 4842:1 4877:1 4941:1 4945:1 5050:1 5081:1 5094:1 5212:1 5216:1 5230:1 5281:1 5309:4 5314:1 5315:1 5330:2 5420:1 5440:1 5445:1 5467:1 5479:1 5565:1 5575:1 5576:1 5591:1 5624:1 5632:1 5642:1 5647:3 5680:2 5703:1 5725:1 5751:3 5850:1 5897:1 5991:1 6006:1 6115:1 6129:1 6210:1 6235:1 6238:1 6246:1 6265:1 6273:1 6279:1 6300:1 6398:1 6430:1 6449:1 6460:1 6490:1 6498:1 6534:1 6599:1 6621:1 6641:1 6686:1 6728:1 6806:1 6857:1 6870:1 6894:1 6913:1 6935:1 6943:1 6997:1 7027:1 7052:2 7067:1 7068:5 7081:1 7090:2 7092:2 7117:1 7136:11 7140:1 7147:1 7155:3 7156:2 7162:1 7201:1 7202:1 7224:1 7230:1 7235:1 7242:1 7256:1 7294:2 7326:1 7355:1 7523:1 7547:1 7558:1 7568:1 7580:1 7592:1 7609:2 7618:1 7637:1 7642:1 7700:1 7734:1 7751:1 7778:2 7784:2 7814:1 7836:1 7850:1 7945:1 7950:1 7952:1 7976:1 8043:1 8049:1 8113:1 8124:1 8153:1 8164:1 8197:1 8250:1 8258:1 8282:2 8332:1 8345:1 8351:1 8363:1 8370:1 8407:2 8423:1 8541:1 8552:1 8555:2 8600:1 8620:1 8658:1 8674:1 8699:1 8728:1 8786:1 8793:1 8838:1 8853:1 8885:1 8926:1 8947:1 8953:1 9090:1 9113:1 9132:1 9144:1 9155:1 9173:1 9178:1 9179:1 9216:1 9221:1 9222:1 9243:2 9249:1 9251:1 9281:2 9361:1 9391:1 9396:3 9402:1 9425:1 9491:2 9493:1 9555:2 9601:1 9608:1 9610:1 9617:1 9626:1 9642:1 9660:1 9713:1 9732:1 9769:1 9775:1 9795:1 9868:1 9936:1 9946:2 9972:1 9993:1 10137:1 10149:1 10158:3 10159:1 10168:1 10174:1 10177:1 10201:1 10226:1 10234:1 10294:1 10297:1 10312:1 10326:1 10445:1 10474:1 10477:1 10500:1 10518:1 10523:1 10528:1 10537:2 10539:1 10556:1 10587:1 10611:1 10625:3 10636:1 10648:1 10682:1 10695:1 10696:1 10706:1 10724:1 10766:1 10805:1 10822:1 10840:1 10874:2 11063:1 11071:1 11076:1 11150:1 11236:1 11253:1 11256:1 11267:1 11273:2 11283:1 11376:1 11393:1 11439:1 11476:1 11494:1 11539:1 11552:2 11570:1 11606:1 11647:1 11705:2 11728:1 11858:1 11930:1 11944:1 11977:1 12041:1 12060:1 12078:1 12082:1 12083:1 12090:2 12122:1 12161:1 12186:1 12225:1 12236:1 12242:1 12260:1 12272:1 12283:1 12289:1 12301:1 12421:3 12465:1 12537:1 12558:1 12561:1 12569:1 12595:1 12620:1 12756:1 12758:1 12836:3 12857:1 12867:1 12890:1 12909:1 12934:1 12957:1 13052:1 13077:1 13091:1 13204:2 13205:1 13222:1 13229:1 13256:1 13305:1 13349:1 13361:1 13430:1 13484:1 13513:1 13555:1 13558:2 13587:1 13693:1 13774:1 13781:1 13794:1 14032:1 14064:1 14096:1 14168:1 14217:1 14263:1 14266:1 14403:1 14413:1 14417:2 14420:1 14432:1 14497:1 14532:1 14550:1 14559:1 14572:1 14600:2 14687:1 14709:1 14738:1 14783:1 14796:1 14876:1 14883:1 14892:1 14902:2 14928:1 14956:1 14968:1 15083:1 15117:1 15119:1 15162:1 15178:1 15198:1 15250:1 15254:1 15262:1 15274:1 15282:1 15294:3 15302:1 15334:1 15342:1 15359:1 15367:1 15407:1 15432:1 15490:1 15499:1 15507:1 15525:1 15534:1 15596:1 15646:1 15722:1 15765:1 15799:1 15808:1 15814:1 15821:1 15858:2 15862:1 15873:1 15979:1 16000:1 16027:1 16036:1 16041:1 16054:3 16059:2 16116:1 16117:1 16128:1 16156:1 16189:1 16203:1 16222:1 16257:1 16312:1 16339:1 16344:1 16347:1 16379:1 16439:1 16452:1 16514:1 16542:1 16551:1 16570:1 16651:1 16657:1 16658:1 16703:1 16721:1 16787:1 16791:1 16848:1 16932:1 16954:5 16977:1 16997:1 17048:1 17058:1 17087:1 17112:1 17126:2 17137:600 17147:1 17151:1 17162:1 17200:1 17201:1 17251:1 17296:1 17311:1 17322:1 17341:1 17351:1 17407:1 17448:1 17453:1 17534:2 17608:1 17616:1 17646:1 17661:1 17691:1 17692:1 17716:1 17728:1 17803:1 17823:1 17846:1 17862:1 17900:2 17905:1 17929:1 17970:1 17975:1 18046:1 18079:1 18145:2 18147:1 18153:1 18158:1 18183:1 18187:1 18196:1 18229:1 18237:1 18279:1 18282:1 18288:1 18363:1 18369:1 18407:1 18409:1 18430:1 18462:1 18526:1 18569:1 18577:1 18592:1 18612:1 18701:1 18787:1 18807:1 18828:1 18830:1 18840:1 18865:3 18886:1 18916:1 18937:1 18973:1 18987:1 19011:1 19057:1 19073:1 19081:1 19089:1 19126:1 19149:1 19202:1 19207:1 19215:1 19227:3 19264:1 19302:1 19319:1 19337:2 19401:1 19402:1 19420:1 19427:2 19435:1 19447:1 19480:1 19481:1 19517:1 19519:1 19524:1 19525:1 19667:1 19687:1 19699:1 19750:1 19789:1 19791:1 19794:1 19811:1 19830:1 19851:1 19853:2 19874:1 19943:1 19948:1 19952:1 20010:1 20024:1 20054:1 20056:1 20082:1 20083:1 20085:1 20087:1 20088:1 20114:1 20151:1 20171:1 20181:1 20186:1 20205:3 20218:1 20236:1 20252:1 20269:1 20377:1 20396:1 20405:1 20409:1 20421:1 20441:1 20447:1 20487:1 20492:1 20503:1 20512:1 20513:2 20525:1 20553:1 20575:1 20576:1 20609:1 20624:1 20631:2 20632:1 20649:1 20664:1 20690:2 20723:1 20726:2 20735:2 20794:1 20795:1 20800:2 20827:1 20846:1 20851:1 20866:1 20906:1 20952:1 20957:1 20970:3 21040:1 21055:1 21085:1 21104:1 21138:1 21204:1 21269:1 21294:1 21304:1 21314:1 21322:1 21330:1 21345:1 21358:1 21413:1 21472:2 21502:1 21510:1 21537:1 21548:1 21549:1 21584:1 21644:1 21696:1 21698:1 21716:1 21769:1 21779:1 21789:1 21878:1 21884:1 21953:1 21964:1 22008:1 22066:1 22101:1 22113:1 22165:1 22213:2 22280:1 22317:2 22340:2 22345:1 22426:1 22467:1 22484:1 22518:1 22535:1 22551:1 22557:1 22582:2 22636:1 22643:3 22651:1 22667:1 22787:1 22794:1 22826:1 22858:1 22863:1 22941:1 22952:1 22968:1 23002:2 23036:1 23045:1 23066:1 23105:2 23110:1 23133:1 23139:1 23166:1 23198:1 23220:2 23221:1 23253:1 23308:1 23340:1 23359:1 23398:1 23428:1 23473:1 23629:1 23650:1 23689:1 23746:1 23821:1 23826:1 23853:1 23860:1 23952:1 23958:1 24023:1 24035:1 24094:5 24165:1 24199:1 24211:1 24215:1 24224:1 24228:1 24253:1 24370:1 24380:1 24388:1 24415:1 24418:1 24439:1 24442:1 24447:1 24537:1 24553:1 24569:1 24634:1 24677:1 24707:1 24721:1 24758:1 24785:1 24849:1 24886:1 24912:1 24915:1 24950:1 24977:1 24986:1 25037:1 25077:2 25098:1 25132:2 25143:1 25148:1 25155:1 25163:1 25174:1 25200:1 25205:1 25210:1 25297:1 25318:1 25361:1 25444:1 25445:1 25487:1 25563:1 25598:1 25674:1 25760:1 25766:1 25773:1 25778:1 25790:1 25815:1 25828:1 25847:3 25860:1 25867:1 25883:1 25886:1 25963:1 25969:1 25971:3 25977:3 26008:1 26051:1 26131:1 26146:1 26164:1 26172:1 26173:1 26196:1 26245:1 26308:3 26488:1 26504:1 26515:1 26539:1 26611:1 26653:1 26668:1 26728:2 26760:1 26825:1 26836:1 26844:1 26868:1 26892:1 26903:1 26943:1 26965:1 26974:1 27022:2
1 12:1 50:1 55:1 60:1 124:1 138:1 147:1 153:1 159:1 231:1 236:1 277:1 301:1 312:2 314:1 318:3 326:1 337:1 363:1 375:1 392:5 394:1 451:1 538:1 548:2 588:1 708:1 731:1 750:1 776:3 779:1 787:1 814:3 815:1 823:2 854:3 856:2 857:3 863:1 877:1 895:2 898:2 909:1 943:2 1100:2 1101:1 1141:1 1145:1 1184:1 1189:1 1243:1 1264:1 1275:1 1303:1 1371:1 1385:1 1411:1 1417:2 1420:2 1429:1 1461:1 1480:1 1485:1 1498:1 1511:1 1513:1 1517:1 1526:1 1545:1 1556:1 1564:1 1615:1 1632:1 1636:1 1639:1 1643:1 1645:1 1651:1 1653:2 1676:1 1678:2 1715:1 1764:1 1778:1 1821:1 1825:1 1851:1 1854:1 1902:1 1921:1 1924:1 1966:4 1970:1 1975:1 1979:1 2006:1 2025:1 2040:1 2061:2 2079:1 2084:1 2087:1 2095:2 2096:1 2107:1 2109:4 2111:2 2172:1 2179:1 2208:1 2278:1 2291:1 2297:1 2330:1 2347:1 2356:1 2361:1 2366:1 2367:1 2408:1 2416:1 2430:1 2437:1 2447:1 2458:1 2465:1 2474:1 2485:1 2490:3 2492:1 2516:1 2563:1 2575:2 2577:1 2656:2 2664:1 2667:2 2689:2 2773:1 2826:1 2841:2 2852:2 2860:1 2915:2 2938:1 2956:1 2991:1 3048:3 3152:1 3252:1 3286:1 3291:1 3309:1 3315:5 3325:1 3346:1 3399:1 3406:1 3407:1 3414:1 3423:1 3470:1 3480:1 3494:1 3506:1 3510:1 3520:1 3523:1 3540:1 3560:1 3581:1 3583:1 3600:1 3631:1 3652:1 3691:2 3692:2 3698:1 3733:2 3737:1 3759:1 3760:1 3794:1 3828:1 3875:1 3882:1 3917:1 3952:1 3957:1 4003:1 4005:1 4018:1 4038:1 4057:1 4064:2 4140:1 4164:1 4172:1 4218:1 4275:1 4284:1 4294:1 4307:1 4319:1 4344:1 4369:2 4386:1 4488:2 4490:1 4499:1 4502:1 4535:1 4625:1 4629:3 4631:1 4632:1 4638:1 4639:1 4643:1 4646:1 4650:1 4659:2 4663:1 4701:1 4737:2 4776:1 4842:1 4877:1 4941:1 4945:1 4985:1 5006:1 5037:1 5050:1 5064:1 5081:1 5094:1 5101:1 5212:1 5216:1 5230:1 5281:1 5309:4 5314:1 5315:1 5330:2 5420:1 5440:1 5445:1 5467:1 5479:1 5565:1 5567:1 5575:1 5576:1 5591:1 5624:1 5632:1 5642:1 5647:4 5680:2 5703:1 5725:1 5751:3 5838:1 5845:1 5850:1 5897:1 5991:1 6006:1 6047:1 6115:1 6129:1 6210:1 6235:1 6238:1 6246:1 6254:1 6265:1 6273:1 6275:1 6279:1 6300:1 6345:1 6398:1 6430:1 6449:1 6460:1 6490:2 6498:1 6524:1 6534:1 6587:1 6599:1 6621:1 6641:1 6686:1 6728:1 6806:1 6857:1 6870:1 6881:1 6894:1 6912:1 6913:1 6935:1 6943:1 6997:1 7027:1 7052:2 7067:1 7068:5 7081:1 7090:2 7092:2 7117:1 7136:12 7140:1 7147:1 7155:3 7156:2 7162:1 7194:1 7201:1 7202:1 7224:1 7230:1 7235:1 7242:1 7256:1 7294:2 7326:1 7355:1 7385:1 7390:1 7523:1 7547:1 7558:1 7568:1 7580:1 7592:1 7609:3 7618:1 7637:1 7642:1 7696:1 7700:1 7734:1 7751:1 7778:2 7784:2 7790:1 7814:1 7836:1 7840:1 7850:1 7945:1 7950:1 7952:1 7976:1 8043:1 8049:1 8113:1 8124:1 8153:1 8154:1 8164:1 8197:1 8215:1 8250:1 8254:1 8258:1 8282:2 8332:1 8345:1 8351:1 8363:1 8370:1 8407:2 8423:1 8460:1 8541:1 8552:1 8555:2 8600:1 8620:1 8635:1 8658:1 8674:1 8699:1 8728:1 8735:1 8756:1 8786:1 8793:1 8838:1 8853:2 8885:1 8926:1 8947:1 8953:1 9073:1 9090:1 9113:1 9132:1 9144:1 9155:1 9173:1 9178:1 9179:1 9216:1 9221:1 9222:1 9230:1 9243:2 9249:2 9251:1 9281:2 9348:1 9361:1 9391:1 9396:4 9402:1 9425:1 9491:2 9493:1 9555:2 9601:2 9608:1 9610:1 9617:1 9626:1 9642:1 9660:1 9695:1 9713:1 9732:1 9769:1 9775:1 9795:1 9820:1 9868:1 9936:1 9946:2 9972:1 9993:1 10118:1 10136:1 10137:2 10149:1 10157:1 10158:3 10159:1 10168:1 10174:1 10177:1 10201:1 10226:1 10234:1 10257:1 10259:1 10294:1 10297:1 10312:1 10326:1 10445:1 10474:1 10477:1 10500:1 10518:1 10523:1 10528:1 10537:2 10539:1 10556:1 10559:1 10587:2 10611:1 10625:3 10636:1 10648:1 10682:1 10695:2 10696:1 10706:1 10724:1 10766:1 10805:1 10822:1 10840:1 10860:1 10874:2 10880:1 10972:1 11023:1 11063:1 11071:1 11076:1 11150:1 11236:1 11253:1 11256:1 11267:1 11273:2 11283:1 11376:1 11393:1 11439:1 11476:1 11494:1 11539:1 11552:2 11570:1 11606:1 11647:1 11705:2 11719:1 11728:1 11798:1 11858:1 11930:1 11944:1 11963:1 11977:1 12041:1 12060:1 12078:1 12082:1 12083:1 12090:2 12122:1 12161:1 12186:1 12225:1 12236:1 12242:1 12260:1 12272:1 12283:1 12289:1 12301:2 12371:1 12421:3 12465:1 12537:1 12558:1 12561:1 12569:2 12595:1 12620:1 12719:1 12756:1 12758:1 12770:1 12836:4 12857:1 12867:1 12890:1 12909:1 12934:1 12957:1 13052:1 13077:2 13091:1 13204:2 13205:1 13222:1 13223:1 13229:1 13256:1 13305:1 13349:1 13361:2 13430:1 13484:1 13513:1 13555:1 13558:2 13587:1 13693:1 13774:1 13781:1 13794:1 14027:1 14032:1 14064:1 14096:1 14168:1 14217:1 14229:1 14263:2 14266:1 14377:1 14403:1 14413:1 14417:2 14420:1 14432:1 14497:1 14532:1 14550:1 14559:1 14572:1 14600:2 14687:2 14709:2 14738:1 14783:1 14789:1 14796:1 14876:1 14883:1 14891:1 14892:1 14902:2 14928:1 14956:2 14958:1 14965:1 14968:1 15083:1 15117:1 15119:1 15162:1 15178:1 15198:1 15250:1 15254:1 15262:1 15272:1 15274:1 15282:1 15294:3 15302:1 15321:1 15334:1 15342:1 15353:1 15359:1 15367:1 15407:1 15432:2 15437:1 15490:1 15499:1 15507:1 15525:1 15534:1 15596:2 15646:1 15722:1 15765:1 15799:1 15808:1 15814:1 15821:1 15858:2 15862:1 15873:1 15889:1 15979:1 16000:1 16027:1 16036:1 16041:1 16054:3 16059:2 16116:1 16117:1 16128:1 16156:1 16189:1 16203:1 16222:1 16257:1 16312:1 16339:1 16344:1 16347:1 16379:1 16439:1 16452:1 16514:1 16542:1 16551:1 16570:1 16651:1 16657:1 16658:1 16703:1 16721:1 16787:1 16791:1 16848:1 16906:1 16932:1 16954:5 16977:1 16997:1 17048:1 17058:1 17087:1 17107:1 17112:1 17126:2 17137:647 17147:1 17151:1 17162:1 17200:1 17201:1 17251:1 17296:1 17311:1 17322:1 17341:1 17351:1 17407:1 17448:1 17453:1 17534:2 17603:1 17608:1 17616:1 17646:1 17661:1 17691:1 17692:1 17716:1 17728:1 17753:1 17761:1 17803:1 17823:1 17846:1 17862:1 17900:2 17905:1 17929:1 17956:1 17970:1 17975:1 18009:1 18046:1 18079:1 18145:2 18147:1 18153:1 18158:1 18183:1 18187:1 18196:1 18229:1 18237:1 18279:1 18282:1 18288:1 18363:1 18369:1 18407:1 18409:1 18430:1 18462:1 18526:1 18569:1 18577:1 18592:1 18612:1 18697:1 18701:1 18787:1 18807:1 18828:1 18830:1 18840:1 18865:3 18886:1 18916:1 18937:1 18973:1 18987:1 19011:1 19057:1 19073:1 19081:1 19089:1 19126:1 19149:1 19202:1 19207:1 19215:1 19227:3 19264:1 19277:1 19302:1 19319:1 19337:2 19401:1 19402:1 19420:1 19427:2 19435:1 19447:1 19480:1 19481:1 19517:1 19519:1 19524:1 19525:1 19667:1 19669:1 19687:1 19699:1 19705:1 19746:1 19750:1 19768:1 19789:1 19791:1 19794:1 19799:1 19811:1 19830:2 19833:1 19851:1 19853:2 19874:1 19943:1 19948:1 19952:1 20010:1 20024:1 20054:1 20056:1 20082:1 20083:1 20085:1 20087:1 20088:1 20114:1 20151:1 20171:2 20181:1 20186:1 20205:3 20218:1 20236:1 20252:1 20269:1 20377:1 20396:1 20405:1 20409:1 20421:1 20441:1 20447:1 20487:1 20492:1 20503:1 20512:1 20513:2 20525:1 20547:1 20553:1 20575:2 20576:1 20609:1 20624:1 20631:2 20632:1 20649:1 20664:1 20690:2 20717:1 20723:1 20726:2 20735:2 20794:1 20795:1 20800:2 20827:1 20846:1 20851:1 20866:1 20906:1 20936:1 20952:1 20957:2 20970:3 20996:1 21040:1 21055:1 21085:1 21104:1 21138:1 21139:1 21175:1 21204:1 21269:1 21294:1 21304:1 21314:1 21322:1 21330:1 21345:1 21358:1 21413:1 21446:1 21472:2 21502:1 21510:1 21537:1 21548:1 21549:1 21584:1 21644:1 21650:1 21696:1 21698:1 21715:1 21716:1 21769:1 21779:1 21789:1 21878:1 21884:1 21953:1 21964:1 22008:1 22066:1 22101:1 22113:1 22165:2 22213:2 22228:1 22280:1 22317:2 22340:2 22345:1 22426:1 22461:1 22467:1 22484:1 22518:1 22535:1 22544:1 22551:1 22557:1 22582:2 22636:1 22643:3 22651:1 22667:1 22787:1 22794:1 22809:1 22826:1 22858:1 22863:1 22901:1 22941:1 22952:1 22968:1 23002:2 23036:1 23045:1 23066:1 23098:1 23105:2 23110:1 23133:1 23139:1 23160:1 23166:1 23198:1 23220:2 23221:1 23253:1 23308:1 23340:1 23359:1 23398:1 23428:1 23473:1 23564:1 23629:1 23650:1 23689:1 23701:1 23746:1 23821:1 23826:1 23853:1 23860:1 23952:1 23953:1 23958:1 24023:1 24035:1 24094:5 24165:1 24183:1 24199:1 24211:1 24215:2 24224:1 24228:1 24253:1 24370:1 24380:1 24388:2 24415:1 24418:1 24439:1 24442:1 24447:1 24537:1 24553:1 24569:1 24634:1 24641:1 24677:1 24689:1 24707:1 24721:1 24758:1 24785:1 24849:1 24886:1 24912:1 24915:1 24936:1 24950:1 24974:1 24977:1 24986:1 25037:1 25077:2 25098:1 25132:2 25143:1 25148:1 25155:1 25163:1 25174:1 25200:1 25205:1 25210:1 25217:1 25297:1 25318:1 25361:1 25444:1 25445:2 25487:1 25563:1 25598:1 25613:1 25674:1 25760:1 25766:1 25773:1 25775:1 25778:1 25790:1 25792:1 25815:1 25828:1 25847:3 25860:1 25867:1 25883:1 25884:1 25886:1 25963:1 25969:1 25971:3 25977:3 26008:1 26051:1 26131:1 26146:1 26164:1 26172:1 26173:1 26196:1 26245:1 26308:3 26488:1 26504:1 26515:1 26539:1 26552:1 26611:1 26653:1 26668:1 26715:1 26728:2 26760:1 26825:1 26836:1 26844:1 26866:1 26868:1 26892:1 26903:1 26943:1 26965:1 26974:1 27022:2
1 12:1 50:1 55:1 60:1 90:1 124:1 138:1 147:1 153:1 159:1 178:1 231:1 236:1 277:1 301:1 312:2 314:1 318:3 326:1 337:1 363:1 375:1 392:5 394:1 451:1 538:1 548:2 588:1 708:1 731:1 738:1 750:1 776:3 779:1 787:1 814:3 815:1 823:2 854:3 856:2 857:3 861:1 863:1 877:2 895:2 898:2 909:1 943:2 1011:1 1100:3 1101:1 1141:1 1145:1 1184:1 1189:1 1243:1 1264:1 1275:1 1303:1 1371:1 1385:1 1411:2 1417:2 1420:2 1429:1 1461:1 1480:1 1485:1 1498:1 1511:1 1513:1 1517:1 1526:1 1545:1 1556:1 1564:1 1615:2 1632:1 1636:1 1639:1 1643:1 1645:1 1651:1 1653:2 1676:1 1678:2 1715:1 1764:1 1778:2 1821:1 1825:1 1851:1 1854:1 1902:1 1920:1 1921:1 1924:1 1966:4 1970:1 1975:1 1979:1 2006:1 2025:1 2038:1 2040:1 2061:2 2079:1 2084:1 2087:1 2095:2 2096:1 2107:1 2109:5 2111:2 2172:1 2179:1 2208:1 2278:1 2291:1 2297:1 2330:1 2334:1 2347:1 2356:1 2361:1 2366:1 2367:1 2408:1 2410:1 2416:1 2430:1 2437:1 2447:1 2458:1 2465:2 2474:1 2485:1 2490:3 2492:2 2516:1 2563:1 2575:2 2577:1 2656:2 2664:1 2667:2 2689:2 2690:1 2697:1 2758:1 2773:1 2826:1 2841:2 2852:2 2860:1 2915:2 2938:1 2956:1 2991:1 3048:4 3152:1 3252:1 3286:1 3291:1 3309:1 3315:7 3325:1 3330:1 3346:1 3399:1 3406:1 3407:1 3414:1 3423:1 3470:1 3473:1 3480:1 3494:1 3506:1 3510:1 3520:1 3523:1 3540:1 3560:1 3581:1 3583:1 3587:1 3600:1 3610:1 3631:2 3652:1 3691:2 3692:2 3698:1 3730:1 3733:2 3737:1 3759:1 3760:1 3794:1 3828:1 3875:1 3882:1 3917:1 3952:4 3957:1 4003:1 4005:1 4018:1 4038:1 4057:1 4064:2 4140:1 4164:1 4172:1 4201:1 4218:1 4275:1 4284:1 4294:1 4307:1 4319:1 4344:1 4369:2 4386:1 4488:2 4490:1 4499:1 4502:1 4535:1 4625:1 4629:3 4631:2 4632:1 4638:1 4639:1 4643:1 4645:1 4646:1 4650:1 4652:1 4659:2 4663:1 4701:1 4737:2 4776:1 4842:1 4877:1 4941:1 4945:1 4985:1 5006:2 5037:1 5050:1 5064:1 5081:1 5094:1 5101:1 5121:1 5197:1 5212:2 5216:1 5230:1 5236:1 5281:2 5309:4 5314:1 5315:1 5330:2 5398:1 5420:1 5440:1 5445:1 5467:1 5479:1 5535:1 5565:1 5567:1 5575:1 5576:1 5591:1 5624:1 5632:1 5642:1 5647:4 5680:2 5703:1 5725:1 5751:3 5838:1 5845:1 5850:1 5897:1 5991:1 6006:1 6047:1 6115:1 6129:1 6210:1 6235:1 6238:1 6246:1 6254:2 6265:1 6273:1 6275:1 6279:1 6287:1 6300:1 6345:1 6361:1 6398:1 6430:1 6449:1 6460:1 6490:3 6498:1 6524:1 6534:1 6549:1 6587:1 6599:1 6621:1 6641:1 6686:1 6728:1 6806:1 6857:1 6870:1 6881:1 6894:1 6912:1 6913:1 6935:1 6943:1 6964:1 6997:1 7027:1 7052:2 7067:1 7068:5 7081:1 7090:2 7092:2 7117:1 7136:13 7140:1 7147:1 7155:3 7156:2 7162:1 7194:1 7201:1 7202:1 7224:1 7230:1 7235:1 7242:1 7256:1 7294:2 7326:1 7355:1 7385:1 7390:1 7523:1 7547:1 7558:1 7568:1 7580:1 7592:1 7609:3 7618:1 7637:1 7642:1 7696:1 7700:1 7734:1 7748:1 7751:1 7778:2 7784:2 7790:1 7812:1 7814:1 7836:1 7840:1 7850:1 7945:1 7950:1 7952:1 7976:1 8005:1 8043:1 8049:1 8113:1 8124:1 8153:1 8154:1 8164:1 8197:1 8215:1 8250:1 8254:1 8258:1 8282:2 8332:1 8345:1 8351:1 8356:1 8363:1 8370:1 8407:2 8423:1 8460:2 8541:1 8550:1 8552:1 8555:2 8600:1 8620:1 8635:1 8658:1 8674:1 8699:1 8728:1 8735:1 8756:1 8786:1 8793:1 8833:1 8838:1 8853:3 8885:1 8926:1 8947:1 8953:1 9073:1 9090:1 9113:1 9132:1 9144:1 9155:1 9173:1 9178:1 9179:1 9216:1 9221:1 9222:1 9230:1 9243:2 9249:2 9251:1 9281:2 9348:1 9361:1 9391:1 9396:4 9402:1 9425:1 9491:2 9493:1 9542:1 9555:2 9601:3 9608:1 9610:1 9617:1 9626:1 9632:1 9642:1 9660:1 9695:1 9713:1 9732:1 9769:1 9775:2 9795:1 9820:1 9868:1 9936:1 9946:2 9972:1 9993:1 10118:1 10136:1 10137:2 10149:1 10157:1 10158:4 10159:1 10168:1 10174:1 10177:1 10201:1 10226:2 10234:1 10255:1 10257:1 10259:1 10294:1 10297:1 10312:1 10326:1 10341:1 10412:1 10445:1 10474:1 10477:1 10500:1 10518:1 10523:1 10528:1 10537:2 10539:1 10556:2 10559:1 10587:2 10611:1 10625:3 10636:1 10648:1 10682:1 10695:2 10696:1 10706:1 10724:1 10766:1 10805:1 10822:1 10840:1 10860:1 10874:2 10880:1 10972:1 11023:1 11043:1 11063:1 11071:1 11076:1 11150:1 11236:1 11253:1 11256:1 11267:1 11273:2 11283:1 11338:1 11376:1 11393:1 11439:1 11476:1 11494:1 11539:1 11552:2 11570:1 11606:1 11647:1 11705:2 11719:1 11728:1 11798:1 11858:1 11930:1 11944:1 11963:1 11977:1 11982:1 12041:1 12060:1 12078:1 12082:1 12083:1 12090:2 12122:1 12138:1 12161:1 12186:1 12225:1 12236:1 12242:1 12260:1 12272:1 12283:1 12289:1 12301:2 12342:1 12371:1 12421:3 12465:1 12535:1 12537:1 12558:1 12561:1 12569:3 12595:1 12620:1 12719:2 12756:1 12758:1 12770:1 12794:1 12821:1 12836:5 12857:1 12867:1 12890:1 12909:1 12934:1 12957:1 13052:1 13077:3 13091:1 13143:1 13204:2 13205:1 13222:1 13223:1 13229:1 13256:1 13305:1 13327:1 13349:1 13361:2 13430:1 13484:1 13513:1 13555:1 13558:2 13587:1 13693:1 13774:1 13781:1 13794:1 14027:1 14032:1 14064:1 14071:1 14075:1 14096:1 14168:1 14217:1 14229:1 14263:2 14266:1 14377:1 14403:1 14413:1 14417:2 14420:1 14432:1 14491:1 14497:1 14532:1 14550:1 14559:1 14572:1 14600:2 14687:2 14709:2 14738:1 14783:1 14789:2 14796:2 14876:1 14883:1 14891:1 14892:1 14902:2 14928:1 14956:2 14958:1 14965:1 14968:1 15083:1 15117:1 15119:1 15162:1 15178:1 15198:1 15250:1 15254:1 15262:1 15272:1 15274:1 15281:1 15282:1 15294:3 15302:1 15321:1 15334:1 15342:1 15353:1 15359:1 15367:1 15407:1 15432:2 15437:1 15490:1 15499:1 15507:1 15525:1 15534:1 15596:2 15646:1 15722:1 15765:1 15799:1 15808:1 15814:1 15821:1 15858:2 15862:1 15873:1 15889:1 15979:1 16000:1 16027:1 16036:1 16041:1 16054:3 16059:2 16116:1 16117:1 16128:1 16156:1 16189:1 16203:1 16222:1 16257:1 16312:1 16339:1 16344:1 16347:1 16379:1 16426:1 16439:1 16452:1 16514:1 16542:1 16551:1 16570:1 16651:1 16657:1 16658:1 16703:1 16721:1 16787:1 16791:1 16805:1 16848:1 16906:1 16932:1 16954:5 16977:1 16997:1 17048:1 17058:1 17087:1 17107:1 17112:1 17126:2 17137:670 17147:1 17151:1 17162:1 17200:1 17201:1 17251:1 17296:1 17311:1 17322:1 17341:1 17351:1 17407:1 17448:1 17453:1 17534:2 17603:1 17608:1 17616:1 17646:1 17661:1 17691:1 17692:2 17716:1 17728:1 17753:1 17761:1 17803:1 17823:1 17846:1 17862:1 17900:2 17905:1 17907:1 17929:1 17956:1 17970:1 17975:1 18009:1 18046:1 18079:1 18088:1 18145:2 18147:1 18153:1 18158:1 18183:1 18187:1 18196:1 18229:1 18237:1 18279:1 18282:1 18288:1 18363:1 18369:1 18407:1 18409:1 18430:1 18462:1 18466:1 18526:1 18569:1 18577:1 18592:1 18612:1 18697:1 18701:1 18705:1 18787:1 18807:1 18828:1 18830:1 18840:1 18865:3 18886:1 18916:1 18937:1 18973:1 18987:2 19011:1 19057:1 19066:1 19073:1 19081:1 19089:1 19126:1 19149:1 19198:1 19202:1 19207:1 19215:1 19227:3 19264:1 19277:1 19302:1 19319:1 19337:2 19401:1 19402:1 19420:1 19427:2 19435:1 19447:1 19480:1 19481:1 19517:1 19519:1 19524:1 19525:1 19665:1 19667:1 19669:1 19687:1 19699:1 19705:1 19746:1 19750:1 19768:1 19789:1 19791:1 19794:1 19799:1 19811:1 19830:2 19833:1 19851:1 19853:2 19874:1 19892:1 19943:1 19948:1 19952:1 20000:1 20010:1 20024:1 20034:1 20054:1 20056:1 20082:1 20083:1 20085:1 20087:1 20088:1 20114:1 20151:1 20171:3 20178:1 20179:1 20181:1 20186:1 20205:3 20218:1 20236:1 20252:1 20269:1 20377:1 20396:1 20405:1 20409:1 20421:1 20425:1 20441:1 20447:1 20487:1 20491:1 20492:1 20503:1 20512:1 20513:2 20525:1 20547:1 20553:1 20575:4 20576:1 20609:1 20624:1 20631:2 20632:1 20649:1 20664:1 20690:2 20717:1 20723:1 20726:2 20735:2 20794:1 20795:1 20800:2 20827:1 20846:1 20851:1 20866:1 20906:1 20936:1 20952:1 20957:2 20970:3 20982:1 20996:1 21040:1 21055:1 21085:1 21104:1 21138:1 21139:1 21175:1 21204:1 21269:1 21294:1 21304:1 21314:1 21322:1 21330:1 21345:1 21358:1 21413:1 21446:1 21472:2 21502:1 21510:1 21537:1 21548:1 21549:1 21584:1 21624:1 21644:1 21650:1 21696:1 21698:1 21715:2 21716:1 21769:1 21779:1 21789:1 21878:1 21884:1 21953:1 21964:1 22008:1 22066:1 22101:1 22113:1 22165:2 22213:2 22228:1 22280:1 22293:1 22317:2 22340:2 22345:1 22426:1 22461:1 22467:1 22484:1 22518:1 22535:1 22544:1 22551:1 22557:1 22582:2 22636:1 22643:3 22651:1 22667:1 22787:1 22794:1 22809:1 22826:1 22858:1 22863:1 22901:1 22941:1 22952:1 22968:1 23002:2 23036:1 23045:1 23066:1 23067:1 23078:1 23098:1 23101:1 23105:2 23110:1 23133:1 23139:1 23160:1 23166:1 23198:1 23220:2 23221:1 23253:1 23285:1 23308:1 23340:1 23359:1 23398:1 23428:1 23473:1 23564:1 23629:1 23650:1 23689:1 23701:1 23746:1 23821:1 23826:1 23853:1 23860:1 23928:1 23952:1 23953:1 23958:1 24023:2 24035:1 24094:5 24165:1 24183:1 24199:1 24211:1 24215:3 24224:1 24228:1 24253:1 24370:1 24380:1 24388:2 24415:4 24418:1 24439:1 24442:1 24447:1 24483:1 24537:1 24553:1 24569:1 24634:1 24641:1 24677:1 24689:1 24707:1 24721:1 24758:1 24785:1 24849:1 24886:1 24912:1 24915:1 24936:1 24950:1 24974:1 24977:1 24985:1 24986:1 25037:1 25077:2 25098:1 25132:2 25143:1 25148:1 25155:1 25163:1 25174:1 25200:1 25205:1 25210:1 25217:1 25229:1 25297:1 25318:1 25361:1 25444:1 25445:2 25487:1 25563:1 25598:1 25613:1 25674:1 25760:1 25766:1 25773:1 25775:1 25778:1 25790:1 25792:1 25815:1 25828:1 25847:3 25860:1 25867:1 25883:1 25884:1 25886:1 25949:1 25963:1 25969:1 25971:3 25977:3 26008:1 26021:1 26051:1 26131:1 26146:1 26162:1 26164:1 26172:1 26173:1 26196:1 26245:1 26308:3 26488:1 26504:1 26515:1 26539:1 26552:1 26611:1 26620:1 26653:1 26668:1 26699:1 26715:1 26728:2 26760:1 26767:1 26806:1 26825:1 26836:1 26844:1 26866:1 26868:1 26892:1 26903:1 26943:2 26965:1 26974:1 27022:2
1 12:1 50:1 55:1 60:1 90:1 124:1 138:2 147:1 153:1 159:1 178:1 231:1 236:1 262:1 277:1 301:1 312:2 314:1 318:3 326:3 337:1 356:1 363:1 375:1 392:5 394:2 451:1 538:1 548:2 565:1 588:1 708:1 731:1 738:1 750:1 776:3 779:1 787:2 814:4 815:1 823:2 841:1 854:3 856:2 857:4 861:1 863:2 877:2 895:2 898:2 909:1 943:2 1011:1 1100:3 1101:1 1118:1 1141:1 1145:1 1184:1 1189:1 1243:1 1253:1 1264:1 1275:1 1296:1 1300:1 1303:1 1319:1 1371:1 1385:1 1411:2 1417:2 1420:2 1429:1 1461:1 1480:1 1485:1 1498:2 1511:1 1513:1 1517:1 1526:1 1529:1 1545:1 1556:1 1564:1 1615:2 1632:1 1636:1 1639:2 1642:1 1643:1 1645:1 1651:1 1653:3 1676:1 1678:2 1715:1 1744:1 1764:1 1765:1 1778:2 1821:1 1825:1 1851:1 1854:1 1902:1 1920:1 1921:1 1924:1 1966:5 1970:1 1975:1 1979:1 2006:1 2025:1 2038:1 2040:1 2061:2 2079:1 2084:1 2087:1 2095:2 2096:1 2097:1 2105:2 2107:1 2109:5 2111:2 2155:1 2172:1 2179:1 2191:1 2208:1 2278:1 2291:1 2297:1 2325:1 2330:1 2334:1 2347:1 2356:1 2361:1 2366:1 2367:1 2408:1 2410:1 2416:1 2430:1 2437:1 2447:1 2458:1 2460:2 2465:2 2474:1 2485:1 2490:3 2492:2 2515:1 2516:1 2563:1 2575:2 2577:1 2595:1 2639:1 2656:2 2664:1 2667:2 2689:2 2690:1 2697:1 2758:1 2773:1 2826:1 2841:3 2852:2 2860:1 2915:2 2923:1 2938:1 2956:1 2991:1 3048:5 3152:1 3203:1 3213:1 3252:1 3286:1 3291:1 3309:1 3315:7 3325:1 3328:1 3330:1 3346:1 3399:1 3406:1 3407:1 3414:1 3423:1 3470:1 3473:1 3480:1 3486:1 3494:1 3506:1 3510:1 3513:1 3520:1 3523:1 3540:1 3560:1 3581:1 3583:1 3587:1 3600:1 3610:1 3611:2 3631:2 3652:1 3691:2 3692:2 3698:1 3730:1 3733:2 3737:1 3742:1 3759:1 3760:1 3794:1 3813:1 3828:1 3875:1 3882:1 3917:1 3952:4 3957:1 4003:1 4005:1 4018:1 4038:1 4057:1 4064:2 4116:1 4140:2 4164:1 4172:1 4201:1 4218:1 4275:1 4284:1 4294:1 4307:1 4319:1 4344:1 4369:2 4386:1 4488:3 4490:1 4499:1 4502:1 4535:1 4625:1 4629:3 4631:2 4632:1 4634:1 4638:1 4639:1 4643:1 4645:1 4646:1 4650:1 4652:1 4659:3 4663:1 4701:1 4737:2 4776:1 4842:1 4877:1 4941:1 4945:1 4985:1 5006:2 5037:1 5050:1 5064:1 5081:1 5094:1 5101:1 5121:1 5197:1 5212:2 5216:1 5230:1 5234:1 5236:1 5240:1 5281:2 5309:4 5314:1 5315:1 5330:2 5398:1 5420:1 5440:1 5445:1 5467:1 5479:1 5535:1 5565:1 5567:1 5575:1 5576:1 5591:1 5624:1 5632:1 5642:1 5643:1 5647:5 5680:2 5703:1 5725:1 5751:3 5828:1 5834:1 5838:1 5845:1 5850:1 5897:1 5987:1 5991:1 5992:1 6006:1 6047:1 6115:1 6129:1 6210:1 6235:1 6238:1 6246:1 6254:2 6262:1 6265:1 6273:1 6275:1 6279:1 6287:1 6300:1 6345:2 6361:1 6398:1 6430:1 6449:1 6453:1 6460:1 6490:4 6498:1 6524:1 6534:1 6537:1 6549:1 6557:1 6587:1 6599:1 6621:1 6641:1 6672:1 6686:1 6728:1 6806:1 6857:1 6870:1 6881:1 6894:1 6912:1 6913:2 6935:1 6943:1 6964:1 6997:1 7027:1 7052:2 7067:1 7068:5 7081:1 7086:1 7090:2 7092:2 7116:1 7117:1 7136:15 7140:1 7147:1 7155:4 7156:2 7162:1 7194:1 7201:1 7202:1 7224:1 7229:2 7230:1 7235:1 7242:1 7256:1 7276:1 7294:2 7326:1 7355:1 7385:1 7390:1 7477:1 7523:1 7547:1 7558:1 7568:1 7580:1 7592:1 7609:4 7618:1 7637:1 7642:1 7696:1 7700:1 7706:1 7734:1 7748:2 7751:1 7778:3 7784:2 7790:1 7812:1 7814:1 7836:1 7840:1 7850:1 7945:1 7950:1 7952:1 7976:1 7989:1 8005:1 8043:1 8049:1 8085:1 8113:1 8124:1 8153:1 8154:1 8164:1 8171:1 8197:1 8215:1 8228:1 8250:1 8254:1 8258:1 8282:2 8332:1 8345:1 8351:1 8356:1 8358:1 8363:1 8370:1 8407:2 8423:1 8460:2 8521:1 8525:1 8541:1 8550:1 8552:1 8555:2 8600:1 8620:1 8622:1 8635:1 8658:1 8674:1 8699:1 8728:1 8735:1 8756:1 8786:1 8793:1 8833:1 8838:1 8853:5 8885:1 8926:1 8947:1 8953:1 9073:1 9090:1 9113:1 9132:1 9144:1 9155:1 9173:1 9178:1 9179:1 9216:1 9221:1 9222:1 9230:1 9243:2 9249:3 9251:1 9281:2 9348:1 9361:2 9391:1 9396:5 9398:1 9402:1 9425:1 9491:2 9493:1 9524:1 9537:1 9540:1 9542:1 9555:2 9588:1 9601:3 9608:1 9610:1 9617:1 9626:1 9632:1 9642:1 9660:1 9695:1 9710:1 9713:1 9732:1 9769:1 9775:2 9795:2 9820:1 9868:1 9878:1 9936:1 9946:2 9972:1 9993:1 10118:1 10136:1 10137:2 10149:1 10157:1 10158:5 10159:1 10168:1 10174:1 10177:1 10201:1 10226:2 10234:1 10255:1 10257:1 10259:1 10294:1 10297:1 10312:1 10326:1 10341:1 10412:1 10445:1 10474:1 10477:1 10500:1 10518:1 10523:1 10528:1 10537:2 10539:1 10556:2 10559:1 10587:2 10611:1 10625:3 10636:1 10648:1 10682:1 10695:2 10696:1 10706:1 10724:1 10766:1 10803:1 10805:1 10822:1 10840:1 10860:1 10874:2 10880:1 10934:2 10972:1 10984:1 11023:1 11043:1 11063:1 11071:1 11076:1 11150:1 11236:1 11253:1 11256:1 11267:1 11273:2 11279:1 11283:1 11338:1 11376:1 11393:1 11439:1 11476:1 11494:1 11539:1 11550:1 11552:2 11570:1 11606:1 11647:1 11705:2 11719:1 11728:1 11798:1 11858:1 11930:1 11944:1 11963:1 11977:1 11982:1 12041:1 12060:1 12078:1 12082:1 12083:1 12085:1 12090:2 12122:1 12138:1 12161:1 12186:1 12225:1 12236:1 12242:1 12247:1 12260:1 12272:1 12273:1 12283:1 12289:1 12301:4 12342:1 12371:1 12397:1 12421:3 12465:1 12515:1 12535:1 12537:1 12558:1 12561:1 12569:5 12595:1 12620:1 12719:2 12756:1 12758:1 12770:1 12773:2 12794:1 12821:1 12836:6 12857:2 12867:1 12890:1 12909:1 12923:1 12934:1 12957:1 12984:1 13052:1 13077:3 13091:1 13143:1 13199:1 13204:2 13205:1 13222:1 13223:1 13229:1 13256:1 13305:1 13327:1 13349:1 13361:2 13430:1 13477:1 13484:1 13513:1 13555:1 13558:2 13587:1 13589:1 13693:1 13774:1 13781:1 13794:1 13804:1 13806:1 13922:1 13974:1 14027:1 14032:1 14047:1 14064:1 14071:1 14075:1 14096:1 14098:1 14168:1 14217:1 14229:1 14263:2 14266:1 14332:1 14377:1 14403:1 14413:1 14417:2 14420:1 14432:1 14450:1 14491:1 14497:1 14532:1 14550:2 14559:1 14572:1 14600:2 14676:1 14687:4 14704:1 14709:2 14738:1 14783:1 14789:2 14796:2 14876:1 14883:1 14891:1 14892:1 14902:2 14928:1 14946:1 14956:2 14958:1 14965:1 14968:1 14972:1 15060:1 15083:1 15087:1 15117:1 15119:1 15162:1 15178:1 15198:1 15250:1 15254:1 15262:1 15272:1 15274:1 15281:1 15282:1 15294:3 15302:1 15321:1 15334:1 15342:1 15353:1 15359:1 15367:1 15407:1 15432:3 15437:1 15490:1 15497:1 15499:1 15507:1 15525:1 15534:1 15596:2 15617:2 15646:1 15661:2 15722:1 15765:1 15799:1 15808:1 15814:1 15821:1 15858:2 15862:1 15873:1 15889:1 15930:1 15979:1 15982:1 16000:1 16027:1 16036:1 16041:1 16054:3 16059:2 16116:1 16117:1 16128:1 16140:1 16156:1 16189:1 16203:1 16222:1 16257:1 16312:1 16339:1 16344:1 16347:1 16379:1 16426:1 16439:1 16452:1 16514:1 16542:1 16551:1 16570:1 16651:1 16657:1 16658:1 16674:1 16703:1 16721:1 16787:1 16791:1 16805:1 16848:1 16906:1 16932:1 16954:5 16963:1 16977:1 16997:1 17048:1 17058:1 17068:1 17087:1 17107:1 17112:1 17126:2 17137:750 17147:1 17151:1 17162:1 17188:1 17200:1 17201:1 17251:1 17296:1 17311:1 17322:1 17341:1 17351:1 17407:1 17448:1 17453:1 17534:2 17549:1 17573:1 17603:1 17608:1 17616:1 17636:1 17646:1 17661:1 17691:1 17692:2 17708:1 17716:1 17728:1 17752:1 17753:1 17761:1 17803:1 17818:1 17823:1 17846:2 17862:1 17900:2 17905:1 17907:1 17929:1 17956:1 17970:1 17975:1 18009:1 18039:1 18046:1 18079:1 18088:1 18117:1 18130:1 18145:2 18147:1 18153:1 18158:1 18183:1 18187:1 18196:1 18229:1 18237:1 18279:1 18282:1 18288:1 18363:1 18368:1 18369:1 18399:1 18407:1 18409:1 18421:2 18430:1 18462:1 18466:1 18505:1 18526:1 18531:1 18552:1 18569:1 18577:1 18592:1 18612:1 18683:1 18697:1 18701:1 18705:1 18787:1 18802:1 18807:1 18828:1 18830:1 18840:1 18865:4 18886:1 18916:1 18937:1 18973:1 18987:2 19011:1 19057:1 19066:1 19073:2 19081:1 19089:1 19126:1 19149:1 19178:1 19198:1 19202:1 19207:1 19215:1 19227:3 19264:1 19277:1 19302:1 19319:1 19337:2 19401:1 19402:1 19420:1 19427:2 19435:1 19447:1 19450:1 19480:1 19481:1 19517:1 19519:1 19524:1 19525:2 19665:1 19667:1 19669:1 19687:1 19699:1 19705:1 19746:1 19750:1 19768:1 19789:1 19791:1 19794:1 19799:1 19811:1 19830:2 19833:1 19851:1 19853:2 19874:1 19892:1 19902:1 19943:1 19948:1 19952:1 20000:1 20010:1 20024:1 20034:1 20054:1 20056:1 20082:1 20083:1 20085:1 20087:1 20088:1 20114:1 20151:1 20171:3 20178:1 20179:1 20181:1 20186:1 20205:3 20218:1 20236:1 20252:1 20269:1 20324:1 20344:1 20368:1 20377:1 20396:1 20405:1 20409:1 20421:1 20425:1 20441:1 20446:1 20447:1 20487:1 20491:1 20492:1 20503:1 20512:1 20513:2 20519:1 20525:1 20547:1 20553:1 20575:4 20576:1 20589:1 20609:1 20624:1 20631:2 20632:1 20649:1 20664:1 20690:2 20717:1 20723:1 20726:3 20735:2 20740:1 20794:1 20795:1 20800:2 20827:1 20834:1 20846:1 20851:1 20866:1 20906:1 20936:1 20952:1 20957:2 20970:3 20982:1 20996:1 21040:1 21055:1 21085:1 21104:1 21128:1 21138:1 21139:1 21142:1 21175:1 21204:1 21269:1 21294:1 21304:1 21314:1 21322:1 21330:1 21345:1 21358:1 21413:1 21446:1 21472:2 21502:1 21510:1 21537:1 21548:1 21549:1 21584:1 21624:1 21628:1 21644:1 21650:1 21696:1 21698:1 21715:2 21716:1 21769:1 21779:1 21789:1 21878:1 21884:1 21953:1 21964:1 22008:1 22066:1 22101:1 22113:1 22165:2 22213:2 22228:1 22280:1 22293:1 22317:2 22340:2 22345:1 22426:1 22461:1 22467:1 22479:1 22484:1 22518:1 22535:1 22544:1 22551:1 22557:1 22582:2 22636:1 22643:3 22651:1 22667:1 22670:1 22787:1 22794:1 22809:1 22826:1 22858:1 22863:1 22901:1 22917:1 22941:1 22952:1 22968:1 23002:2 23036:1 23045:1 23066:1 23067:1 23078:1 23098:1 23101:1 23105:2 23110:1 23111:1 23133:1 23139:1 23160:1 23166:1 23198:1 23220:2 23221:1 23240:1 23253:1 23285:1 23308:1 23340:1 23359:1 23398:1 23428:1 23452:1 23473:1 23564:2 23629:1 23650:1 23689:1 23701:1 23746:1 23821:1 23826:1 23853:1 23860:1 23928:1 23945:1 23952:1 23953:1 23958:1 24023:2 24035:1 24094:5 24165:1 24183:1 24199:1 24211:1 24215:3 24224:1 24226:3 24228:1 24253:1 24337:1 24370:1 24380:1 24386:1 24388:2 24415:4 24418:1 24439:1 24442:1 24447:1 24483:1 24537:1 24553:1 24569:1 24634:1 24641:1 24677:1 24689:1 24690:1 24707:1 24721:1 24746:1 24758:1 24785:1 24849:1 24886:1 24912:1 24915:1 24936:1 24950:1 24972:1 24974:1 24977:1 24985:1 24986:1 25037:1 25077:3 25098:1 25132:2 25143:1 25148:1 25155:1 25163:1 25174:1 25200:1 25205:1 25206:1 25210:1 25217:1 25229:1 25297:1 25318:1 25361:1 25404:1 25444:1 25445:2 25487:1 25563:1 25598:1 25613:1 25660:1 25674:1 25760:2 25766:1 25773:1 25775:1 25778:1 25790:1 25792:1 25799:1 25815:1 25828:1 25847:3 25860:1 25867:1 25883:1 25884:1 25886:1 25949:1 25963:1 25969:1 25971:3 25977:3 26008:1 26021:1 26051:1 26131:1 26146:1 26162:1 26164:1 26172:1 26173:2 26196:1 26234:1 26245:1 26259:1 26308:3 26488:1 26502:1 26504:1 26515:1 26539:1 26552:1 26611:1 26620:2 26653:1 26668:1 26699:1 26715:1 26727:1 26728:2 26760:1 26767:1 26806:1 26825:1 26836:1 26844:1 26866:1 26868:2 26892:1 26903:1 26943:2 26965:1 26974:1 26978:1 27022:2
1 12:1 50:1 55:1 60:1 90:1 124:1 138:2 147:1 153:1 159:1 178:2 231:1 236:1 262:1 277:1 301:1 312:2 314:1 318:3 326:3 337:2 356:1 363:1 375:1 392:5 394:2 451:1 538:1 548:2 565:1 588:1 708:1 731:1 738:1 750:1 776:3 779:1 787:3 814:4 815:1 823:2 841:1 854:3 856:2 857:4 861:1 863:2 877:2 895:2 898:2 909:1 943:2 1011:1 1100:3 1101:1 1107:1 1118:1 1141:1 1145:1 1184:1 1189:1 1243:1 1253:1 1264:1 1275:1 1296:1 1300:1 1303:1 1319:1 1371:1 1385:1 1411:2 1417:2 1420:2 1429:1 1461:1 1467:1 1480:1 1485:1 1498:2 1511:1 1513:1 1517:1 1526:1 1529:1 1545:1 1556:1 1564:1 1615:2 1632:1 1636:1 1639:2 1642:1 1643:1 1645:1 1651:1 1653:4 1676:1 1678:2 1715:1 1744:1 1764:1 1765:1 1778:2 1821:1 1825:1 1845:1 1851:1 1854:1 1862:1 1873:1 1902:1 1920:1 1921:1 1924:1 1929:1 1966:5 1970:1 1975:1 1979:1 2006:1 2025:1 2038:1 2040:1 2056:1 2061:2 2079:1 2084:2 2087:1 2095:2 2096:1 2097:1 2105:2 2107:1 2109:5 2111:2 2123:1 2155:1 2172:1 2179:1 2191:1 2208:1 2262:1 2278:1 2287:1 2291:1 2297:1 2325:1 2330:1 2334:1 2347:1 2356:2 2361:1 2366:1 2367:1 2382:1 2408:1 2410:1 2416:1 2430:1 2437:1 2447:2 2458:1 2460:2 2465:2 2474:1 2485:1 2490:3 2492:2 2515:1 2516:1 2563:1 2575:2 2577:1 2583:1 2595:1 2639:1 2656:2 2664:1 2667:2 2689:2 2690:1 2697:1 2758:1 2773:1 2826:1 2840:1 2841:3 2852:2 2860:1 2915:2 2923:1 2938:1 2956:2 2991:1 3048:6 3152:1 3203:1 3213:1 3252:1 3286:2 3291:1 3309:1 3315:7 3325:1 3328:1 3330:1 3346:1 3399:1 3406:1 3407:1 3414:1 3423:1 3470:1 3473:1 3480:1 3486:1 3494:1 3506:1 3510:1 3513:1 3520:1 3523:1 3540:1 3560:1 3581:1 3583:1 3587:1 3600:1 3610:1 3611:2 3631:2 3652:1 3691:2 3692:2 3698:1 3730:1 3733:2 3737:1 3742:1 3759:1 3760:1 3794:1 3813:1 3828:1 3845:1 3875:1 3882:1 3917:1 3952:4 3957:1 4003:1 4005:1 4018:1 4038:1 4057:1 4064:2 4084:1 4116:1 4140:2 4164:1 4172:1 4201:1 4218:1 4275:1 4284:1 4294:1 4307:1 4319:1 4344:1 4369:2 4383:1 4386:1 4445:1 4488:3 4490:1 4499:1 4502:1 4535:1 4625:1 4629:3 4631:2 4632:1 4634:1 4638:1 4639:1 4643:1 4645:1 4646:1 4650:1 4652:1 4659:3 4663:1 4701:1 4737:2 4776:1 4842:1 4877:1 4941:1 4945:1 4985:1 5006:2 5018:1 5037:1 5050:1 5064:1 5081:1 5094:1 5101:1 5121:1 5197:1 5212:2 5216:1 5230:1 5234:1 5236:1 5240:1 5281:2 5309:4 5314:1 5315:1 5330:2 5398:1 5420:1 5440:1 5445:1 5453:1 5467:1 5479:1 5535:1 5565:1 5567:1 5575:1 5576:1 5591:1 5624:1 5632:1 5642:1 5643:1 5647:5 5680:2 5703:1 5725:1 5751:3 5828:1 5834:1 5838:1 5845:1 5850:1 5897:1 5938:1 5987:1 5991:2 5992:1 6006:1 6047:1 6115:1 6129:2 6210:1 6235:1 6238:1 6246:1 6254:3 6262:1 6265:1 6273:1 6275:1 6279:1 6287:1 6300:1 6345:2 6361:1 6398:1 6401:1 6430:1 6449:1 6453:1 6460:1 6477:1 6490:4 6498:1 6524:1 6534:1 6537:1 6549:1 6557:2 6587:1 6599:1 6621:1 6641:1 6672:1 6686:1 6728:1 6806:1 6857:1 6870:1 6876:1 6881:1 6894:1 6912:1 6913:2 6935:1 6943:1 6964:1 6997:1 7027:1 7052:2 7067:1 7068:5 7081:1 7086:1 7090:2 7092:2 7116:1 7117:1 7136:17 7140:1 7147:1 7155:4 7156:2 7162:2 7194:1 7201:1 7202:1 7224:1 7229:2 7230:2 7235:1 7242:1 7256:1 7276:1 7294:2 7305:1 7326:1 7355:1 7356:1 7385:1 7390:1 7477:1 7523:1 7547:1 7558:1 7568:1 7580:1 7592:1 7609:5 7618:1 7637:1 7642:1 7696:1 7700:1 7706:1 7734:1 7744:1 7748:2 7751:1 7756:1 7771:1 7778:3 7784:2 7790:1 7812:1 7814:1 7836:1 7840:1 7850:1 7945:1 7950:1 7952:1 7976:1 7989:1 8005:1 8008:1 8043:1 8049:1 8085:1 8113:1 8124:1 8153:1 8154:1 8164:1 8171:1 8197:1 8215:1 8228:1 8250:1 8254:1 8258:1 8282:2 8295:1 8332:1 8345:1 8351:1 8356:1 8358:1 8363:1 8370:1 8407:2 8423:1 8460:2 8521:1 8525:1 8541:1 8550:1 8552:1 8555:2 8600:1 8620:1 8622:1 8635:2 8658:1 8674:2 8699:1 8728:1 8735:1 8756:1 8786:1 8793:1 8833:1 8838:1 8853:5 8885:1 8926:1 8947:1 8953:1 8956:1 9020:1 9073:1 9090:1 9113:1 9132:1 9144:1 9155:1 9173:1 9178:1 9179:1 9216:1 9221:1 9222:1 9230:1 9243:2 9249:3 9251:1 9281:2 9348:1 9361:2 9364:1 9391:1 9396:5 9398:1 9402:1 9425:1 9491:2 9493:1 9524:1 9537:1 9540:1 9542:1 9555:2 9588:1 9601:3 9608:1 9610:1 9617:1 9626:1 9632:1 9642:2 9660:1 9695:1 9710:1 9713:1 9732:1 9769:1 9775:2 9795:2 9802:1 9820:1 9848:1 9868:1 9878:1 9936:1 9946:2 9972:1 9993:1 10118:1 10136:1 10137:2 10145:2 10149:1 10156:1 10157:1 10158:5 10159:1 10168:1 10174:1 10177:1 10201:1 10226:2 10234:1 10255:1 10257:1 10259:1 10294:1 10297:1 10312:1 10326:1 10341:1 10412:1 10445:1 10474:1 10477:1 10500:1 10518:1 10523:1 10528:1 10537:2 10539:1 10556:2 10559:1 10587:3 10611:1 10625:3 10636:1 10648:1 10682:1 10695:2 10696:1 10706:1 10724:1 10766:1 10803:1 10805:1 10821:1 10822:1 10840:1 10841:1 10860:1 10874:2 10880:1 10934:2 10972:1 10984:1 11023:1 11043:1 11063:1 11071:1 11076:1 11100:2 11150:1 11170:1 11201:1 11236:1 11253:1 11256:1 11267:1 11273:2 11279:1 11283:1 11338:1 11376:1 11393:1 11439:1 11476:1 11494:1 11539:1 11550:1 11552:2 11570:1 11606:1 11647:1 11665:1 11705:2 11719:1 11728:1 11753:1 11798:1 11858:1 11930:1 11944:1 11963:1 11977:1 11982:1 12041:1 12060:1 12078:1 12082:1 12083:1 12085:1 12090:4 12101:1 12122:1 12138:1 12161:1 12186:1 12225:1 12236:1 12242:1 12247:1 12260:1 12272:1 12273:1 12283:1 12289:1 12301:4 12342:1 12371:1 12397:1 12421:3 12465:1 12499:1 12515:1 12535:1 12537:1 12558:1 12561:1 12569:5 12595:1 12620:1 12719:2 12756:1 12758:1 12770:1 12773:2 12794:1 12821:1 12836:6 12857:2 12867:1 12890:1 12909:1 12923:1 12934:1 12957:1 12984:1 13052:1 13077:3 13091:1 13143:1 13199:1 13204:2 13205:1 13222:1 13223:1 13229:1 13256:1 13265:1 13305:1 13327:1 13349:1 13361:2 13375:1 13430:1 13476:1 13477:1 13484:1 13513:1 13540:1 13555:1 13558:2 13587:1 13589:1 13693:1 13774:1 13781:1 13794:1 13804:1 13806:1 13922:1 13974:1 14027:1 14032:1 14047:1 14064:1 14071:1 14075:1 14096:1 14098:1 14168:1 14217:1 14229:1 14263:2 14266:1 14332:1 14377:1 14403:1 14413:1 14417:2 14420:1 14432:1 14450:1 14491:1 14497:1 14532:1 14550:2 14559:1 14572:1 14600:2 14676:1 14687:4 14704:1 14709:2 14738:1 14783:1 14789:2 14796:2 14876:1 14883:1 14891:1 14892:1 14902:2 14928:1 14946:1 14956:2 14958:1 14963:1 14965:1 14968:1 14972:1 15060:1 15083:1 15087:1 15117:1 15119:1 15162:1 15178:1 15198:1 15250:1 15254:1 15262:1 15272:1 15274:1 15281:1 15282:1 15294:3 15302:1 15321:1 15334:1 15342:1 15353:1 15359:1 15367:1 15407:1 15408:1 15432:3 15437:1 15490:1 15497:1 15499:1 15507:1 15525:1 15534:1 15538:1 15596:2 15617:2 15646:1 15661:2 15722:1 15765:1 15799:1 15808:1 15814:1 15821:1 15858:2 15862:1 15873:1 15889:1 15930:1 15979:1 15982:1 16000:1 16027:1 16036:1 16041:1 16054:3 16059:2 16116:1 16117:1 16128:1 16140:1 16156:1 16189:1 16203:1 16222:1 16257:1 16312:1 16339:1 16343:1 16344:1 16347:2 16379:1 16426:1 16439:1 16452:1 16514:1 16542:1 16551:1 16570:1 16651:1 16657:1 16658:1 16674:1 16703:1 16721:1 16787:1 16791:1 16805:1 16848:1 16906:1 16932:1 16954:5 16963:1 16977:2 16997:1 17048:1 17058:1 17068:1 17087:1 17107:1 17112:1 17126:2 17137:868 17147:1 17151:1 17162:1 17188:1 17200:1 17201:1 17220:1 17251:1 17296:1 17311:1 17322:1 17341:1 17351:1 17375:1 17407:1 17448:1 17453:1 17534:2 17549:1 17564:1 17573:1 17603:1 17608:1 17616:1 17636:1 17646:1 17661:1 17691:1 17692:2 17708:1 17716:1 17728:1 17752:1 17753:1 17761:1 17803:1 17818:1 17823:1 17846:2 17862:1 17900:2 17905:1 17907:1 17929:1 17956:1 17970:1 17975:1 18009:1 18039:1 18046:1 18079:1 18080:1 18088:1 18117:1 18130:1 18145:2 18147:1 18153:1 18158:1 18183:1 18187:1 18196:1 18203:1 18229:1 18237:1 18238:1 18279:1 18282:1 18288:2 18363:1 18368:1 18369:1 18399:1 18407:1 18409:1 18421:2 18430:1 18462:1 18466:1 18505:1 18526:1 18531:1 18552:1 18569:1 18577:1 18592:1 18612:1 18683:1 18697:1 18701:1 18705:1 18787:1 18802:1 18807:1 18828:1 18830:1 18840:1 18850:1 18865:4 18886:1 18916:1 18937:1 18973:1 18987:2 19011:1 19057:1 19066:1 19073:2 19081:1 19089:1 19126:1 19149:1 19178:1 19198:1 19202:1 19207:1 19215:1 19227:3 19264:1 19277:1 19302:1 19319:1 19337:2 19358:2 19381:2 19401:1 19402:1 19420:1 19427:2 19435:1 19447:1 19450:1 19480:1 19481:1 19517:1 19519:1 19524:1 19525:2 19665:1 19667:1 19669:1 19687:1 19699:1 19705:1 19746:1 19750:1 19768:1 19789:1 19791:1 19794:1 19796:1 19799:1 19811:1 19830:2 19833:1 19851:1 19853:2 19874:1 19892:1 19902:1 19943:1 19948:1 19952:1 20000:1 20010:1 20024:1 20034:1 20054:1 20056:1 20082:1 20083:1 20085:1 20087:1 20088:1 20114:1 20151:1 20171:3 20178:1 20179:1 20181:1 20186:1 20205:3 20218:1 20236:1 20252:1 20269:1 20324:1 20344:1 20368:1 20377:1 20396:1 20405:1 20409:1 20421:1 20425:1 20441:1 20446:1 20447:1 20487:1 20491:1 20492:1 20503:1 20512:1 20513:2 20519:1 20525:1 20547:1 20553:1 20575:4 20576:1 20589:1 20609:1 20624:1 20631:2 20632:1 20649:1 20664:1 20690:2 20717:1 20723:1 20726:3 20735:3 20740:1 20753:1 20794:1 20795:1 20800:2 20809:1 20827:1 20834:1 20846:1 20851:1 20866:1 20906:1 20936:1 20952:1 20957:2 20970:3 20982:1 20996:1 21040:1 21055:1 21085:1 21104:1 21128:1 21138:1 21139:1 21142:1 21175:1 21204:1 21269:1 21294:1 21304:1 21314:1 21322:1 21330:1 21345:1 21358:1 21413:1 21446:1 21472:2 21502:1 21510:1 21537:1 21548:1 21549:1 21584:1 21592:1 21624:1 21625:1 21628:1 21644:1 21650:1 21696:2 21698:1 21715:2 21716:1 21769:1 21779:1 21789:1 21878:1 21884:1 21953:1 21964:1 22008:1 22066:1 22084:1 22101:1 22113:1 22165:2 22213:2 22228:1 22280:1 22287:1 22293:1 22317:2 22340:2 22345:1 22426:1 22451:1 22461:1 22467:1 22479:1 22484:1 22518:1 22535:1 22536:1 22544:1 22551:1 22557:1 22582:2 22636:1 22643:3 22651:1 22667:1 22670:1 22756:1 22787:1 22794:1 22809:1 22826:1 22858:1 22863:1 22901:1 22917:1 22941:1 22952:1 22968:1 23002:2 23026:1 23036:1 23045:1 23066:1 23067:1 23078:1 23098:2 23101:1 23105:2 23110:1 23111:1 23133:1 23139:1 23160:1 23166:1 23198:1 23220:3 23221:1 23240:1 23253:1 23285:1 23308:1 23340:1 23359:1 23398:1 23422:1 23428:1 23452:1 23473:1 23564:2 23569:1 23617:1 23629:1 23650:1 23689:1 23698:1 23701:1 23746:1 23777:1 23821:1 23826:1 23853:1 23860:1 23928:1 23945:1 23952:1 23953:1 23958:1 24023:2 24035:1 24074:1 24094:5 24115:1 24165:1 24183:1 24199:1 24211:1 24215:3 24221:1 24224:2 24226:3 24228:1 24253:1 24337:1 24370:1 24380:1 24386:1 24388:2 24415:4 24418:1 24439:1 24442:1 24447:1 24483:1 24537:1 24553:1 24569:1 24634:1 24641:1 24677:1 24689:1 24690:1 24703:1 24707:1 24721:1 24746:1 24758:1 24785:1 24849:1 24886:1 24912:1 24915:1 24936:1 24950:1 24972:1 24974:1 24977:1 24985:1 24986:1 25016:1 25032:1 25037:1 25077:3 25084:1 25098:1 25132:2 25143:1 25148:1 25155:1 25163:1 25174:1 25200:1 25205:1 25206:1 25210:1 25217:2 25229:1 25297:1 25318:1 25361:1 25404:1 25444:1 25445:2 25480:1 25487:1 25563:1 25598:1 25613:1 25660:1 25674:1 25760:2 25766:1 25773:1 25775:1 25778:1 25790:1 25792:1 25799:1 25815:1 25828:1 25836:2 25847:3 25860:1 25867:1 25883:1 25884:1 25886:1 25949:1 25963:1 25969:1 25971:3 25977:3 26008:2 26021:1 26051:1 26064:1 26131:1 26146:1 26162:1 26164:1 26172:1 26173:2 26179:1 26196:1 26234:1 26245:2 26259:1 26308:3 26488:1 26502:1 26504:1 26515:1 26516:1 26539:1 26552:1 26611:1 26620:2 26653:1 26668:1 26699:1 26715:1 26727:1 26728:2 26760:1 26767:1 26806:1 26825:1 26836:1 26844:1 26866:1 26868:2 26892:1 26903:1 26919:1 26940:1 26943:2 26965:1 26974:1 26978:1 27022:2
1 12:1 50:1 55:1 60:1 90:1 124:1 138:2 147:1 153:1 159:1 178:2 231:1 236:2 255:2 262:1 277:1 301:1 312:2 314:1 318:3 326:3 337:2 356:1 363:1 375:1 392:5 394:2 451:1 538:1 548:2 565:1 580:1 588:1 708:1 731:1 738:1 750:1 776:3 779:1 787:3 798:1 814:5 815:1 823:3 841:1 854:3 856:2 857:5 861:1 863:2 877:2 895:2 898:3 909:1 943:2 1011:1 1100:3 1101:1 1107:1 1111:1 1118:1 1141:1 1145:1 1161:1 1184:1 1189:1 1215:1 1230:1 1243:1 1253:1 1264:1 1275:1 1296:1 1300:1 1303:1 1319:1 1332:1 1371:1 1385:1 1411:2 1417:2 1420:2 1429:1 1461:1 1467:1 1480:1 1485:2 1498:2 1511:1 1513:1 1517:1 1526:1 1529:1 1545:1 1556:1 1564:1 1595:1 1615:2 1632:1 1636:1 1639:2 1642:1 1643:1 1645:1 1651:1 1653:5 1676:1 1678:2 1715:1 1744:1 1764:1 1765:1 1778:2 1821:1 1825:1 1845:1 1851:1 1854:1 1862:1 1873:1 1902:1 1905:1 1920:1 1921:1 1924:1 1929:1 1966:5 1970:1 1975:1 1979:1 2006:1 2025:1 2038:1 2040:1 2056:1 2061:2 2079:1 2084:2 2087:1 2095:2 2096:1 2097:1 2105:2 2107:1 2109:5 2111:2 2123:1 2152:1 2155:1 2172:1 2179:1 2191:1 2208:1 2210:1 2262:1 2278:1 2287:1 2291:1 2297:1 2325:1 2330:1 2334:1 2347:1 2356:2 2361:1 2366:1 2367:1 2379:1 2382:1 2408:1 2410:1 2416:1 2430:1 2437:1 2447:2 2458:1 2460:2 2465:2 2474:1 2485:1 2490:3 2492:2 2515:1 2516:1 2563:1 2575:2 2577:1 2583:1 2595:1 2639:1 2656:2 2664:1 2667:3 2689:2 2690:1 2695:1 2697:1 2731:1 2758:1 2773:1 2826:1 2840:1 2841:4 2852:2 2860:1 2915:2 2923:1 2938:1 2956:2 2991:1 3048:6 3152:1 3203:1 3213:1 3252:1 3286:2 3291:1 3309:1 3315:8 3325:1 3328:1 3330:1 3346:1 3399:1 3400:1 3406:1 3407:1 3414:1 3423:1 3470:1 3473:1 3480:1 3486:1 3494:1 3506:1 3510:1 3513:1 3520:1 3523:1 3540:1 3560:2 3581:1 3583:1 3587:1 3591:1 3600:2 3610:1 3611:2 3631:2 3652:1 3691:2 3692:3 3698:1 3730:1 3733:2 3737:1 3742:1 3759:1 3760:1 3787:1 3794:1 3813:1 3828:1 3845:1 3853:1 3859:1 3875:1 3882:1 3898:1 3917:1 3952:4 3957:1 4003:1 4005:1 4018:1 4038:1 4057:1 4064:2 4084:1 4116:1 4140:2 4164:1 4167:1 4172:1 4189:1 4201:1 4218:1 4275:1 4284:1 4294:1 4302:1 4307:1 4319:1 4344:1 4361:1 4369:2 4383:1 4386:1 4445:1 4488:3 4490:1 4499:1 4502:1 4535:1 4625:1 4629:3 4631:2 4632:1 4634:1 4638:1 4639:1 4643:1 4645:1 4646:1 4650:1 4652:2 4659:3 4663:1 4701:1 4737:2 4776:1 4842:1 4877:1 4941:1 4945:1 4985:1 5006:2 5018:1 5037:1 5050:1 5064:2 5081:1 5094:1 5101:1 5121:1 5197:1 5212:2 5216:1 5230:1 5231:1 5234:1 5236:1 5240:1 5281:2 5309:4 5314:1 5315:1 5330:2 5398:1 5420:1 5440:1 5445:1 5453:1 5467:1 5479:1 5535:1 5565:2 5567:1 5575:1 5576:1 5591:1 5624:1 5632:1 5642:1 5643:1 5647:5 5680:2 5703:1 5725:1 5751:4 5828:1 5834:1 5838:1 5845:1 5850:1 5897:1 5938:1 5987:1 5991:2 5992:1 6006:1 6047:1 6115:1 6129:2 6210:1 6235:1 6238:1 6246:1 6254:3 6262:1 6265:1 6273:1 6275:1 6279:1 6287:1 6300:1 6345:2 6361:1 6385:1 6398:1 6401:1 6430:1 6449:1 6453:1 6460:1 6477:1 6490:5 6498:2 6524:1 6534:1 6537:1 6549:1 6557:2 6587:1 6599:1 6621:1 6626:1 6631:1 6641:1 6672:1 6686:1 6728:1 6806:1 6857:1 6870:1 6876:1 6881:1 6894:2 6912:1 6913:2 6935:1 6943:2 6951:1 6964:1 6997:1 7027:1 7052:2 7067:1 7068:6 7081:1 7086:1 7090:3 7092:2 7116:2 7117:1 7121:1 7136:17 7140:1 7147:1 7155:4 7156:2 7162:2 7194:1 7201:1 7202:1 7224:1 7229:2 7230:2 7235:1 7242:1 7256:1 7276:1 7294:2 7305:1 7326:1 7355:1 7356:1 7385:1 7390:1 7477:1 7523:1 7547:1 7558:1 7568:1 7580:1 7592:1 7609:8 7618:1 7637:1 7642:1 7696:1 7700:1 7706:1 7734:1 7744:1 7748:2 7751:1 7756:1 7771:1 7778:3 7784:2 7790:1 7812:1 7814:1 7836:1 7840:1 7850:1 7945:1 7950:1 7952:1 7976:1 7989:1 8005:1 8008:1 8043:1 8049:1 8085:1 8113:1 8124:1 8153:1 8154:1 8164:1 8171:1 8197:1 8215:1 8228:1 8250:1 8254:1 8258:2 8282:2 8295:1 8311:1 8332:1 8345:1 8351:1 8356:1 8358:1 8363:1 8370:2 8378:1 8407:2 8423:1 8446:1 8460:2 8521:1 8525:1 8541:1 8544:1 8550:1 8552:1 8555:2 8600:1 8612:1 8620:1 8622:1 8635:2 8658:1 8674:2 8699:1 8728:1 8735:1 8756:2 8786:1 8793:1 8833:1 8838:1 8853:5 8885:1 8926:1 8947:1 8953:1 8956:1 8958:1 9020:1 9073:1 9090:1 9113:1 9132:1 9144:1 9155:1 9173:1 9178:1 9179:1 9216:1 9221:1 9222:1 9230:1 9243:2 9249:3 9251:1 9281:2 9348:1 9361:2 9364:1 9391:1 9396:5 9398:1 9402:1 9425:1 9491:2 9493:1 9524:1 9537:1 9540:1 9542:1 9552:1 9555:2 9588:1 9601:4 9608:1 9610:1 9617:1 9626:1 9632:1 9642:2 9660:1 9695:1 9703:1 9710:1 9713:1 9725:1 9732:1 9764:1 9769:1 9775:2 9795:2 9802:1 9820:1 9848:1 9868:1 9869:1 9878:1 9936:1 9946:3 9972:1 9993:2 10096:1 10118:1 10120:1 10136:1 10137:2 10145:2 10149:1 10156:1 10157:1 10158:5 10159:1 10168:1 10174:1 10177:1 10183:1 10201:1 10226:2 10234:1 10255:1 10257:1 10259:1 10294:1 10297:1 10312:1 10323:1 10326:1 10341:1 10412:1 10445:1 10474:1 10477:1 10500:1 10518:1 10523:1 10528:1 10537:2 10539:1 10556:2 10559:1 10587:3 10611:1 10625:3 10636:1 10648:1 10682:1 10695:2 10696:1 10706:1 10724:1 10766:1 10803:1 10805:1 10821:1 10822:1 10840:1 10841:1 10860:1 10874:2 10875:1 10880:2 10934:2 10972:1 10983:1 10984:1 11023:1 11043:1 11063:1 11071:1 11076:1 11100:2 11150:1 11170:1 11201:1 11236:1 11253:1 11256:1 11267:1 11273:2 11279:1 11283:1 11338:1 11376:1 11393:1 11439:1 11476:1 11494:1 11539:1 11550:1 11552:2 11570:1 11606:1 11647:1 11665:1 11705:3 11719:1 11728:1 11753:1 11792:1 11798:1 11858:1 11903:1 11923:1 11930:1 11944:1 11963:1 11977:1 11982:1 12041:1 12060:1 12078:1 12082:1 12083:1 12085:1 12090:4 12101:1 12122:1 12138:1 12161:1 12186:1 12225:1 12233:1 12236:1 12242:1 12247:1 12260:1 12272:1 12273:1 12283:1 12289:1 12301:4 12342:1 12371:1 12397:1 12421:3 12446:1 12465:1 12499:1 12515:1 12535:1 12537:1 12544:1 12558:2 12561:1 12565:1 12569:5 12590:1 12595:1 12620:1 12719:2 12756:1 12758:1 12770:1 12773:2 12794:1 12821:1 12836:6 12857:2 12867:1 12890:1 12909:1 12923:1 12934:1 12957:1 12984:1 13017:1 13052:1 13077:3 13091:1 13143:1 13199:1 13204:2 13205:1 13222:1 13223:1 13229:1 13256:1 13265:1 13305:1 13327:1 13349:1 13361:2 13375:1 13430:1 13476:1 13477:1 13484:1 13513:1 13540:1 13552:1 13555:1 13558:2 13587:1 13589:1 13693:1 13774:1 13781:1 13794:1 13804:1 13806:1 13829:1 13922:1 13974:1 14027:1 14032:1 14047:1 14064:1 14071:1 14075:1 14096:1 14098:1 14130:1 14168:1 14217:1 14229:1 14252:1 14263:2 14266:1 14332:1 14377:1 14403:1 14413:1 14417:2 14420:1 14432:1 14450:1 14475:1 14491:1 14497:1 14532:1 14550:2 14559:1 14570:1 14572:1 14600:2 14676:1 14687:4 14704:1 14709:3 14738:1 14772:1 14783:1 14789:2 14796:2 14817:1 14821:1 14876:1 14883:1 14891:1 14892:1 14902:2 14928:1 14946:1 14950:1 14954:1 14955:1 14956:2 14958:1 14963:1 14965:1 14967:1 14968:1 14972:1 15060:1 15083:1 15087:1 15117:1 15119:1 15162:1 15178:1 15198:1 15240:1 15250:1 15254:1 15262:1 15272:1 15274:1 15281:1 15282:1 15294:3 15302:1 15321:1 15334:1 15342:1 15353:1 15359:1 15367:1 15407:1 15408:1 15432:3 15437:1 15490:1 15497:1 15499:1 15507:1 15525:1 15534:1 15538:1 15596:2 15617:2 15646:1 15661:2 15688:1 15722:1 15765:1 15799:1 15808:1 15814:1 15821:1 15858:2 15862:1 15873:1 15889:1 15930:1 15979:1 15982:1 16000:1 16005:1 16027:1 16036:1 16041:1 16054:3 16059:2 16116:1 16117:1 16128:1 16140:1 16156:1 16189:1 16203:1 16222:1 16257:1 16276:1 16279:1 16311:1 16312:1 16339:1 16343:1 16344:1 16347:2 16379:1 16426:1 16439:1 16452:1 16514:1 16542:1 16551:1 16570:1 16651:1 16657:1 16658:1 16674:1 16703:1 16721:1 16787:1 16791:1 16805:1 16848:1 16906:1 16932:1 16954:5 16963:1 16977:2 16997:1 17001:1 17048:1 17058:1 17068:1 17087:1 17107:1 17112:1 17126:2 17137:901 17147:1 17151:1 17162:1 17188:1 17200:1 17201:1 17220:1 17251:1 17296:1 17311:1 17321:1 17322:1 17341:1 17351:1 17375:1 17407:1 17448:1 17453:1 17534:2 17549:1 17564:1 17573:1 17603:1 17608:1 17616:1 17636:1 17646:1 17661:1 17691:1 17692:2 17708:1 17712:1 17716:1 17728:1 17752:1 17753:1 17761:1 17777:1 17803:1 17818:1 17823:1 17846:2 17862:1 17900:2 17905:1 17907:1 17929:2 17956:1 17970:1 17975:1 18009:1 18039:1 18046:1 18079:1 18080:1 18088:1 18117:1 18130:1 18145:2 18147:1 18153:1 18158:1 18182:1 18183:1 18187:1 18196:1 18203:1 18229:1 18237:1 18238:1 18279:1 18282:1 18288:2 18335:1 18363:1 18368:1 18369:1 18388:1 18399:1 18407:1 18409:1 18421:3 18430:1 18462:1 18466:1 18505:1 18526:1 18531:1 18552:1 18569:1 18577:2 18578:1 18592:1 18612:1 18683:1 18697:1 18701:1 18705:1 18768:1 18787:1 18802:1 18807:1 18828:1 18830:1 18840:1 18850:1 18865:4 18886:1 18916:1 18937:1 18973:1 18987:2 19011:1 19057:1 19066:1 19073:2 19081:1 19089:1 19126:1 19149:1 19178:1 19198:1 19202:1 19207:1 19215:1 19227:3 19264:1 19277:1 19302:1 19319:1 19337:2 19353:1 19358:2 19381:2 19401:1 19402:1 19420:1 19427:2 19435:1 19447:1 19450:1 19480:1 19481:1 19517:1 19519:1 19524:1 19525:2 19665:1 19667:1 19669:1 19687:1 19699:1 19705:1 19746:1 19750:1 19768:1 19789:1 19791:1 19794:1 19796:2 19799:1 19811:1 19830:2 19833:1 19851:1 19853:2 19874:1 19892:1 19902:1 19943:1 19948:1 19952:1 20000:1 20010:1 20024:1 20034:1 20054:1 20056:1 20082:1 20083:1 20085:1 20087:1 20088:1 20114:1 20151:1 20171:3 20176:1 20178:1 20179:1 20181:1 20186:1 20205:3 20218:1 20236:1 20252:1 20269:1 20324:1 20344:1 20368:1 20377:1 20396:1 20405:1 20409:1 20421:1 20425:1 20441:1 20446:1 20447:1 20487:1 20491:1 20492:2 20503:1 20512:1 20513:2 20519:1 20525:1 20547:1 20553:1 20575:5 20576:1 20589:1 20609:1 20624:1 20631:2 20632:1 20649:1 20664:1 20690:2 20717:1 20723:1 20726:3 20735:3 20740:1 20753:1 20794:1 20795:1 20800:2 20809:1 20827:1 20834:1 20846:1 20851:1 20866:1 20906:1 20936:1 20952:1 20957:2 20970:3 20982:1 20996:1 21037:1 21040:1 21055:1 21085:1 21104:1 21128:1 21138:1 21139:1 21142:1 21175:2 21204:2 21269:1 21294:2 21297:1 21304:1 21314:1 21322:1 21330:1 21345:1 21358:1 21368:1 21413:1 21446:1 21472:2 21502:1 21505:1 21510:1 21537:1 21548:1 21549:1 21584:1 21592:1 21624:1 21625:1 21628:1 21644:1 21650:1 21696:2 21698:1 21715:2 21716:1 21718:1 21769:1 21779:1 21789:1 21878:1 21884:1 21953:1 21964:1 22008:1 22066:1 22084:1 22101:1 22113:1 22165:2 22213:2 22228:1 22259:1 22270:1 22280:1 22287:1 22293:1 22317:3 22340:2 22345:1 22425:1 22426:1 22451:1 22461:1 22467:2 22479:1 22484:1 22518:1 22535:1 22536:1 22544:1 22551:1 22557:1 22582:3 22636:1 22639:1 22643:3 22651:1 22667:1 22670:1 22756:1 22787:1 22794:1 22809:1 22826:1 22858:1 22863:1 22901:1 22917:1 22941:1 22952:1 22968:1 23002:3 23026:1 23036:1 23045:1 23066:1 23067:1 23078:1 23098:2 23101:1 23105:2 23110:1 23111:1 23131:1 23133:1 23139:1 23160:1 23166:1 23198:1 23220:3 23221:1 23240:1 23253:1 23285:1 23308:1 23340:1 23359:1 23398:1 23407:1 23422:1 23428:1 23437:1 23452:1 23473:1 23527:1 23564:2 23569:1 23617:1 23629:1 23650:1 23689:1 23698:1 23701:1 23715:1 23746:1 23777:1 23821:1 23826:1 23838:1 23853:1 23860:1 23928:1 23945:1 23952:1 23953:1 23958:1 24023:2 24035:1 24074:1 24075:1 24094:5 24115:1 24165:1 24183:1 24199:1 24211:1 24215:3 24221:1 24224:2 24226:3 24228:1 24253:1 24337:1 24370:1 24380:1 24386:1 24388:2 24415:4 24418:1 24439:1 24442:1 24447:1 24483:1 24537:1 24553:1 24569:1 24634:1 24641:1 24653:1 24677:1 24689:1 24690:1 24703:1 24707:1 24721:1 24746:1 24747:1 24758:1 24785:1 24788:1 24849:1 24886:1 24912:1 24915:1 24936:1 24938:1 24950:1 24972:1 24974:1 24977:1 24985:1 24986:1 25016:1 25032:1 25037:1 25077:3 25084:1 25098:1 25132:2 25143:1 25148:1 25155:1 25163:1 25174:1 25200:1 25201:1 25204:1 25205:1 25206:1 25210:1 25217:2 25229:1 25247:1 25297:1 25318:1 25361:1 25404:1 25444:1 25445:2 25480:1 25487:1 25532:1 25563:1 25598:1 25613:1 25660:1 25674:1 25745:1 25760:2 25766:1 25773:1 25775:1 25778:1 25790:1 25792:1 25799:1 25815:1 25828:1 25836:2 25847:3 25860:1 25867:1 25883:1 25884:1 25886:1 25924:1 25949:1 25963:1 25969:1 25971:4 25977:3 26008:2 26021:1 26034:1 26051:1 26064:1 26131:1 26146:1 26158:1 26162:1 26164:1 26172:1 26173:2 26179:1 26196:1 26234:1 26245:2 26259:1 26308:3 26401:1 26488:1 26502:1 26504:1 26515:1 26516:1 26539:1 26552:1 26611:2 26620:2 26653:1 26668:1 26699:1 26715:1 26727:1 26728:2 26760:1 26767:1 26806:1 26825:1 26836:1 26844:1 26866:1 26868:2 26892:1 26901:1 26903:1 26919:1 26940:1 26943:2 26965:1 26974:1 26975:1 26978:1 27022:2
1 12:1 50:1 55:1 60:1 90:1 124:1 138:2 147:1 153:1 159:1 178:2 231:1 236:2 255:2 262:1 277:1 301:1 312:2 314:1 318:3 326:3 337:2 356:1 363:1 375:1 392:5 394:2 451:1 538:1 548:2 565:1 580:1 588:1 708:1 730:1 731:1 738:1 750:1 776:3 779:1 787:3 798:1 814:6 815:1 823:3 841:1 854:3 856:2 857:5 861:1 863:2 877:2 895:2 898:3 909:1 943:2 1011:1 1100:3 1101:1 1107:1 1111:1 1118:1 1141:1 1145:1 1161:1 1184:1 1189:1 1215:1 1230:1 1243:1 1253:1 1264:1 1275:1 1296:1 1300:1 1303:1 1319:1 1332:1 1371:1 1385:1 1411:2 1417:2 1420:2 1429:1 1461:1 1467:1 1480:1 1485:2 1498:2 1511:1 1513:1 1517:1 1526:1 1529:1 1545:1 1556:1 1564:1 1570:1 1595:1 1615:2 1632:1 1636:1 1639:2 1642:1 1643:1 1645:1 1651:1 1653:5 1676:1 1678:2 1715:1 1744:1 1764:1 1765:1 1778:2 1821:1 1825:1 1845:1 1851:1 1854:1 1862:1 1873:1 1902:1 1905:1 1920:1 1921:1 1924:1 1929:1 1966:5 1970:1 1975:1 1979:1 2006:1 2025:1 2038:2 2040:1 2056:1 2061:2 2079:1 2084:2 2087:1 2095:2 2096:1 2097:1 2105:2 2107:1 2109:5 2111:2 2123:1 2152:1 2155:3 2172:1 2179:1 2191:1 2208:1 2210:1 2262:1 2278:1 2287:1 2291:1 2297:1 2325:1 2330:1 2334:1 2347:1 2356:2 2361:1 2366:1 2367:1 2379:1 2382:1 2408:2 2410:1 2416:1 2430:1 2436:1 2437:1 2447:2 2458:1 2460:3 2465:3 2474:1 2485:1 2490:3 2492:2 2515:1 2516:1 2563:1 2575:2 2577:1 2583:2 2595:1 2639:1 2656:2 2664:1 2667:4 2689:2 2690:1 2695:1 2697:1 2731:2 2758:1 2773:1 2826:1 2840:1 2841:4 2852:2 2860:1 2915:2 2923:1 2938:1 2956:2 2991:1 3048:6 3152:1 3203:1 3213:1 3252:1 3286:2 3291:1 3309:1 3315:8 3325:1 3328:2 3330:1 3346:1 3399:1 3400:1 3406:1 3407:1 3414:1 3423:1 3470:1 3473:1 3480:1 3486:1 3494:1 3506:1 3510:1 3513:1 3520:1 3523:1 3540:1 3560:2 3581:1 3583:1 3587:1 3591:1 3600:2 3610:1 3611:2 3631:2 3652:2 3691:2 3692:3 3698:1 3730:1 3733:2 3737:1 3742:1 3759:1 3760:1 3787:1 3794:1 3813:1 3828:1 3845:1 3849:1 3853:1 3859:1 3875:1 3882:1 3888:1 3898:1 3917:1 3952:4 3957:1 4003:1 4005:1 4018:1 4038:1 4057:1 4064:2 4084:1 4116:1 4140:2 4160:1 4164:1 4167:1 4172:1 4173:1 4189:1 4201:1 4218:1 4226:1 4275:1 4284:1 4294:1 4302:1 4307:1 4319:1 4344:1 4361:1 4369:2 4383:1 4386:1 4403:1 4445:1 4488:3 4490:1 4499:1 4502:1 4535:1 4625:1 4629:3 4631:2 4632:1 4634:1 4638:1 4639:1 4643:1 4645:2 4646:1 4650:1 4651:1 4652:2 4659:3 4663:1 4701:1 4718:1 4737:2 4776:1 4842:1 4877:1 4941:1 4945:1 4985:1 5006:2 5018:1 5037:1 5050:1 5064:2 5081:1 5094:1 5101:1 5121:1 5197:1 5212:2 5216:1 5230:1 5231:1 5234:1 5236:1 5240:1 5281:2 5309:4 5314:1 5315:1 5330:2 5398:1 5420:1 5440:1 5445:1 5453:1 5467:1 5479:1 5535:1 5538:1 5565:2 5567:1 5575:1 5576:1 5591:1 5624:1 5632:1 5642:1 5643:1 5647:7 5680:2 5703:1 5725:1 5751:4 5828:1 5834:1 5838:1 5845:1 5850:1 5897:1 5938:1 5987:1 5991:2 5992:2 6006:1 6047:1 6115:1 6129:2 6210:1 6235:1 6238:1 6246:1 6254:3 6262:1 6265:1 6273:1 6275:1 6279:1 6287:1 6300:1 6345:2 6361:1 6385:1 6398:1 6401:1 6430:1 6449:1 6453:1 6460:1 6477:1 6490:6 6498:2 6524:1 6534:1 6537:1 6538:1 6549:2 6557:3 6587:1 6599:1 6602:1 6604:1 6621:1 6626:1 6631:1 6641:1 6672:1 6686:1 6728:1 6806:1 6857:1 6864:1 6870:1 6876:1 6881:1 6894:2 6912:1 6913:2 6935:1 6943:2 6951:1 6964:1 6969:1 6997:1 7027:1 7052:2 7067:1 7068:6 7081:1 7086:1 7090:3 7092:2 7116:2 7117:1 7121:1 7136:17 7137:1 7140:1 7147:1 7155:4 7156:2 7162:2 7194:1 7201:1 7202:1 7224:1 7229:2 7230:2 7235:1 7242:1 7256:1 7276:1 7294:2 7305:1 7326:1 7355:1 7356:1 7385:1 7390:1 7477:1 7523:1 7547:1 7558:1 7568:1 7576:1 7580:1 7592:1 7609:9 7618:1 7637:2 7642:1 7696:1 7700:1 7706:1 7734:1 7744:1 7748:2 7751:1 7756:1 7771:1 7778:3 7784:2 7790:1 7812:1 7814:1 7836:1 7840:1 7850:1 7886:1 7890:1 7945:1 7950:1 7952:1 7976:1 7989:2 8005:1 8008:1 8043:1 8049:1 8069:1 8085:1 8113:1 8124:1 8153:1 8154:1 8164:1 8171:1 8197:1 8215:1 8228:1 8250:1 8254:1 8258:2 8282:2 8295:1 8306:1 8311:1 8332:1 8345:1 8351:1 8356:1 8358:1 8363:1 8370:3 8378:1 8407:2 8423:1 8445:1 8446:1 8460:2 8521:1 8525:2 8541:1 8544:1 8550:1 8552:1 8555:2 8600:1 8612:1 8620:1 8622:1 8635:2 8658:1 8674:2 8698:1 8699:1 8728:1 8735:1 8756:2 8765:1 8786:1 8793:1 8833:1 8838:1 8853:5 8856:1 8885:1 8926:1 8947:1 8953:1 8956:1 8958:1 9020:1 9073:1 9090:1 9101:1 9113:1 9132:1 9144:1 9155:1 9173:1 9178:1 9179:1 9216:1 9221:1 9222:1 9230:1 9243:2 9249:3 9251:1 9281:2 9348:1 9361:2 9364:1 9391:1 9396:7 9398:1 9402:1 9425:1 9491:2 9493:1 9524:1 9537:1 9540:1 9542:1 9550:1 9552:1 9555:2 9588:1 9601:4 9608:1 9610:1 9617:1 9626:1 9632:1 9642:2 9660:1 9695:1 9703:1 9710:1 9713:2 9725:1 9732:1 9750:1 9764:1 9769:1 9775:2 9795:3 9802:1 9820:1 9848:2 9868:1 9869:1 9878:1 9916:1 9936:1 9946:3 9972:1 9982:1 9993:2 10096:1 10118:1 10120:1 10136:1 10137:2 10145:2 10149:1 10156:1 10157:1 10158:5 10159:1 10168:1 10174:1 10177:1 10183:1 10201:1 10226:2 10234:1 10255:1 10257:1 10259:1 10294:1 10297:1 10312:1 10323:1 10326:1 10341:1 10412:1 10445:1 10474:1 10477:1 10500:1 10518:1 10523:1 10528:1 10537:2 10539:1 10556:2 10559:1 10587:3 10611:1 10625:3 10636:1 10648:1 10682:1 10693:1 10695:2 10696:1 10706:1 10724:1 10766:1 10783:1 10803:1 10805:1 10821:1 10822:1 10840:1 10841:1 10860:1 10874:2 10875:1 10880:2 10898:1 10934:2 10972:1 10983:1 10984:1 10998:1 11023:1 11043:1 11063:1 11071:1 11076:1 11100:2 11150:1 11170:1 11195:1 11201:1 11236:1 11253:1 11256:1 11267:1 11273:2 11279:1 11283:1 11338:1 11376:1 11393:1 11439:1 11476:2 11494:1 11539:1 11550:1 11552:2 11570:1 11606:1 11647:1 11665:1 11705:4 11719:1 11728:1 11747:1 11753:1 11792:1 11798:1 11858:1 11903:1 11923:1 11930:1 11944:1 11963:1 11977:1 11982:2 12041:1 12060:1 12078:1 12082:1 12083:1 12085:1 12090:4 12101:1 12122:1 12138:1 12157:1 12161:1 12186:1 12225:1 12233:1 12236:1 12242:1 12247:1 12260:1 12272:1 12273:1 12283:1 12289:1 12301:5 12342:1 12371:1 12397:1 12421:3 12446:2 12465:1 12499:1 12515:1 12535:1 12537:1 12544:1 12558:2 12561:1 12565:1 12569:5 12590:1 12595:1 12620:1 12719:2 12756:1 12758:1 12770:1 12773:2 12794:1 12821:1 12836:6 12857:2 12861:1 12867:1 12890:1 12909:1 12923:1 12934:1 12957:1 12984:1 13017:1 13052:1 13077:3 13091:1 13143:1 13199:1 13204:2 13205:1 13222:1 13223:1 13229:1 13256:1 13265:1 13305:1 13327:1 13349:1 13361:2 13375:2 13430:2 13476:1 13477:1 13484:1 13513:1 13540:1 13552:1 13555:1 13558:2 13587:1 13589:1 13693:2 13774:1 13781:1 13794:1 13804:1 13806:1 13829:1 13922:1 13974:1 14027:1 14032:1 14047:1 14064:1 14071:1 14075:1 14096:1 14098:1 14113:1 14130:1 14134:1 14168:1 14217:1 14229:1 14252:1 14263:2 14266:1 14328:1 14332:1 14377:1 14403:1 14413:1 14417:2 14420:1 14432:1 14450:1 14475:1 14491:1 14497:1 14532:1 14550:2 14559:1 14570:1 14572:2 14600:2 14676:1 14687:5 14704:1 14709:3 14738:1 14772:1 14783:1 14789:2 14796:2 14817:1 14821:1 14876:1 14883:1 14891:1 14892:1 14902:2 14928:1 14946:1 14950:1 14954:1 14955:1 14956:2 14957:1 14958:1 14963:1 14965:1 14967:1 14968:1 14972:1 15060:1 15083:1 15087:1 15117:1 15119:1 15162:1 15178:1 15198:1 15240:1 15250:1 15254:1 15262:1 15272:1 15274:1 15281:1 15282:1 15294:3 15302:1 15321:1 15334:1 15342:1 15353:1 15359:1 15367:1 15407:2 15408:1 15432:3 15437:1 15490:1 15497:2 15499:1 15507:1 15525:1 15534:1 15538:1 15596:2 15617:2 15646:1 15661:2 15688:1 15722:1 15765:1 15799:1 15808:1 15814:1 15821:1 15858:2 15862:1 15873:1 15889:1 15930:1 15979:1 15982:1 16000:1 16005:1 16027:1 16036:1 16041:1 16047:1 16054:3 16059:2 16071:1 16116:1 16117:1 16128:1 16140:1 16156:1 16189:1 16203:1 16222:1 16257:1 16276:1 16279:1 16311:1 16312:1 16339:1 16343:1 16344:1 16347:2 16379:1 16426:1 16439:1 16452:1 16514:1 16542:1 16551:1 16570:1 16651:1 16657:1 16658:1 16674:1 16703:1 16721:1 16787:1 16791:1 16805:1 16848:2 16906:1 16932:1 16954:6 16963:1 16977:2 16990:1 16997:1 17001:1 17048:1 17058:1 17068:1 17087:1 17107:1 17112:1 17126:2 17137:935 17147:1 17151:1 17162:1 17188:1 17200:1 17201:1 17220:1 17251:1 17296:1 17311:1 17314:1 17321:1 17322:1 17341:1 17351:1 17359:1 17375:1 17407:1 17448:1 17453:2 17534:2 17549:1 17564:1 17573:1 17603:1 17608:1 17616:1 17636:1 17646:1 17655:1 17661:1 17670:1 17691:1 17692:2 17708:2 17712:1 17716:1 17728:1 17752:1 17753:1 17761:1 17771:1 17777:1 17803:1 17818:1 17823:1 17846:2 17862:1 17900:2 17905:1 17907:1 17929:3 17956:1 17970:1 17975:1 18009:1 18039:1 18046:1 18047:1 18079:1 18080:1 18088:1 18117:1 18130:1 18145:2 18147:1 18153:1 18158:1 18182:1 18183:1 18187:1 18196:1 18203:1 18229:1 18237:1 18238:1 18279:1 18282:1 18288:2 18335:1 18363:1 18368:1 18369:1 18388:1 18399:1 18407:1 18409:1 18421:3 18430:1 18462:1 18466:1 18505:1 18526:1 18531:1 18552:1 18569:1 18577:2 18578:2 18592:1 18612:1 18683:1 18697:1 18701:1 18705:1 18768:1 18787:1 18802:2 18807:1 18828:1 18830:1 18840:1 18850:1 18865:4 18886:1 18916:1 18937:1 18973:1 18987:2 19011:1 19020:1 19057:1 19066:1 19073:2 19081:1 19089:1 19126:1 19149:1 19178:1 19198:2 19202:1 19207:1 19215:1 19227:3 19264:1 19277:1 19302:1 19319:1 19337:2 19353:1 19358:2 19381:2 19401:1 19402:1 19420:1 19427:2 19435:1 19447:1 19450:1 19480:1 19481:1 19517:1 19519:1 19524:1 19525:2 19618:1 19665:1 19667:1 19669:1 19687:1 19699:1 19705:1 19746:1 19750:1 19768:1 19789:1 19791:1 19794:1 19796:2 19799:1 19811:1 19830:2 19833:1 19851:1 19853:2 19874:2 19892:1 19902:1 19943:1 19948:1 19952:1 20000:1 20010:1 20024:1 20034:2 20054:1 20056:1 20082:1 20083:1 20085:1 20087:1 20088:1 20114:1 20151:1 20171:3 20176:1 20178:1 20179:1 20181:1 20186:1 20205:3 20218:1 20236:1 20244:1 20252:1 20269:1 20324:1 20344:1 20368:1 20377:1 20396:1 20405:1 20409:1 20421:1 20425:2 20441:1 20446:1 20447:1 20487:1 20491:1 20492:3 20503:1 20512:1 20513:2 20519:1 20525:1 20547:1 20553:1 20575:5 20576:1 20589:1 20609:1 20624:1 20631:2 20632:1 20640:1 20649:1 20664:1 20690:2 20717:1 20723:1 20726:3 20728:1 20735:3 20740:1 20753:1 20757:1 20794:1 20795:1 20800:2 20809:1 20827:1 20834:1 20846:1 20851:1 20866:1 20906:1 20935:1 20936:1 20952:1 20957:2 20970:3 20982:1 20996:1 21037:1 21040:1 21055:1 21085:1 21104:1 21128:2 21138:1 21139:1 21142:1 21175:2 21204:2 21269:1 21294:2 21297:1 21304:2 21314:2 21322:1 21330:1 21345:1 21358:1 21368:1 21413:1 21446:1 21472:2 21502:1 21505:1 21510:1 21527:1 21537:1 21548:1 21549:1 21584:1 21592:1 21624:1 21625:1 21628:1 21641:1 21644:1 21650:1 21695:1 21696:2 21698:1 21715:2 21716:1 21718:1 21769:1 21779:1 21789:1 21878:1 21884:1 21953:1 21964:1 22008:1 22066:1 22084:1 22101:1 22113:1 22140:1 22165:2 22213:2 22228:1 22259:1 22270:1 22280:1 22287:1 22293:1 22317:3 22340:2 22345:1 22425:1 22426:1 22451:1 22455:1 22461:1 22467:2 22479:1 22484:1 22518:1 22535:1 22536:1 22544:1 22551:1 22552:1 22557:1 22582:5 22611:1 22636:1 22639:1 22643:3 22651:1 22667:1 22670:1 22756:1 22787:1 22794:1 22809:1 22822:1 22826:1 22858:1 22863:1 22901:1 22917:1 22932:1 22941:1 22952:2 22968:1 23002:5 23026:1 23032:1 23036:1 23045:1 23066:1 23067:1 23078:1 23098:2 23101:1 23105:2 23110:1 23111:1 23131:1 23133:1 23139:1 23160:1 23166:1 23198:1 23220:3 23221:1 23240:1 23253:1 23285:1 23308:1 23314:1 23340:1 23359:1 23398:1 23407:1 23422:1 23428:1 23437:1 23452:1 23473:1 23527:1 23564:2 23569:1 23617:2 23629:1 23650:1 23689:1 23698:1 23701:1 23715:1 23746:1 23777:1 23821:1 23826:1 23838:1 23853:1 23860:1 23928:1 23945:1 23952:1 23953:1 23958:1 24023:2 24035:1 24065:1 24074:1 24075:1 24094:6 24095:1 24115:1 24165:1 24183:1 24199:1 24211:2 24215:3 24221:1 24224:2 24226:3 24228:1 24253:1 24337:1 24370:1 24380:1 24386:1 24388:2 24415:4 24418:1 24439:1 24442:1 24447:1 24483:1 24537:1 24553:1 24569:1 24634:1 24641:1 24653:1 24677:1 24689:1 24690:1 24703:1 24707:1 24721:1 24746:1 24747:1 24758:2 24785:1 24788:1 24849:1 24886:1 24912:1 24915:2 24922:1 24936:1 24938:1 24950:1 24972:1 24974:1 24977:1 24985:1 24986:1 25016:1 25032:1 25037:1 25077:3 25084:1 25098:1 25132:2 25137:1 25143:1 25148:1 25155:1 25163:1 25172:1 25174:1 25200:1 25201:1 25204:1 25205:1 25206:1 25210:1 25217:2 25229:1 25247:1 25297:1 25318:1 25361:1 25404:1 25444:1 25445:2 25480:1 25487:1 25532:1 25563:1 25598:1 25613:1 25660:1 25674:1 25745:1 25759:1 25760:3 25766:1 25773:1 25775:1 25778:1 25790:1 25792:1 25799:1 25815:1 25828:1 25836:2 25847:3 25860:1 25867:1 25883:1 25884:1 25886:1 25922:1 25924:1 25949:1 25963:1 25969:1 25971:4 25977:3 26008:2 26021:1 26034:1 26051:1 26064:1 26126:1 26131:1 26146:1 26158:1 26162:1 26164:1 26172:1 26173:2 26179:1 26196:1 26234:1 26245:3 26259:1 26308:3 26401:1 26488:1 26495:1 26497:1 26502:2 26504:1 26515:1 26516:1 26539:1 26552:1 26611:2 26620:2 26648:1 26653:2 26668:1 26699:1 26715:1 26727:1 26728:2 26760:1 26767:1 26806:1 26825:1 26836:1 26844:1 26866:1 26868:2 26892:1 26901:1 26903:1 26919:1 26940:1 26943:2 26961:1 26965:1 26974:1 26975:1 26978:1 27022:2
1 12:1 50:1 55:1 60:1 90:1 124:1 138:3 147:1 153:1 159:1 178:2 231:1 236:2 255:2 262:1 277:1 301:1 312:2 314:1 318:3 326:3 337:2 356:1 363:1 375:1 392:5 394:2 451:1 538:1 548:2 565:1 580:1 588:1 708:1 730:1 731:1 738:1 750:1 776:3 779:1 787:3 798:1 814:7 815:2 823:3 841:1 854:4 856:2 857:5 861:1 863:2 877:2 895:2 898:3 909:1 943:2 1011:1 1100:3 1101:2 1107:1 1111:1 1118:1 1141:1 1145:1 1161:1 1184:1 1189:1 1215:1 1230:1 1243:1 1253:1 1264:1 1275:1 1296:1 1300:1 1303:1 1319:1 1332:1 1371:1 1385:1 1411:3 1417:2 1420:2 1429:1 1461:1 1467:1 1480:1 1485:2 1498:2 1511:1 1513:1 1517:1 1526:1 1529:1 1545:1 1556:1 1564:1 1570:1 1595:1 1615:3 1632:1 1636:1 1639:2 1642:1 1643:1 1645:1 1651:1 1653:5 1676:1 1678:2 1715:1 1744:1 1764:1 1765:1 1778:2 1821:1 1825:1 1845:1 1851:1 1854:1 1859:1 1862:1 1873:1 1902:1 1905:1 1920:1 1921:1 1924:1 1929:1 1966:6 1970:1 1975:1 1979:1 2006:1 2025:1 2038:2 2040:1 2056:1 2061:2 2079:1 2084:2 2087:1 2095:2 2096:1 2097:1 2099:1 2105:2 2107:2 2109:5 2111:2 2123:1 2152:1 2155:3 2172:1 2179:1 2190:1 2191:1 2208:1 2210:1 2247:1 2262:1 2278:1 2287:1 2291:1 2297:1 2325:1 2330:1 2334:1 2345:1 2347:1 2356:2 2361:1 2366:1 2367:1 2379:1 2382:1 2408:3 2410:1 2416:1 2430:1 2436:1 2437:1 2447:2 2458:1 2460:3 2465:3 2474:1 2485:1 2490:3 2492:2 2515:1 2516:2 2563:1 2575:2 2577:1 2583:2 2595:1 2639:1 2656:2 2664:1 2667:6 2689:2 2690:1 2695:1 2697:1 2731:2 2758:2 2773:1 2826:1 2840:1 2841:4 2852:2 2860:1 2902:1 2915:2 2923:1 2938:2 2956:2 2991:1 3026:1 3048:6 3152:1 3203:1 3213:1 3252:1 3286:2 3291:1 3309:1 3315:9 3325:1 3328:2 3330:1 3346:1 3399:1 3400:1 3406:1 3407:1 3410:1 3414:1 3423:1 3470:1 3473:1 3480:1 3486:1 3494:1 3506:1 3510:1 3513:1 3520:1 3523:1 3540:1 3560:2 3576:1 3581:2 3583:1 3587:1 3591:1 3600:2 3610:1 3611:2 3631:2 3652:2 3691:2 3692:3 3698:1 3730:1 3733:2 3737:1 3742:1 3759:1 3760:1 3787:1 3794:1 3813:1 3828:1 3845:1 3849:1 3853:1 3859:1 3875:1 3882:1 3888:1 3898:1 3917:1 3952:4 3957:1 4003:1 4005:1 4018:1 4038:1 4057:1 4064:2 4084:1 4116:1 4140:2 4160:1 4164:1 4167:1 4172:1 4173:2 4189:1 4201:1 4218:1 4226:1 4275:1 4284:1 4294:1 4302:1 4307:1 4319:1 4344:1 4361:1 4369:2 4383:1 4386:1 4403:1 4445:1 4488:3 4490:1 4499:1 4502:1 4535:1 4625:1 4629:3 4631:2 4632:2 4634:1 4637:1 4638:1 4639:1 4643:1 4645:2 4646:1 4650:1 4651:2 4652:2 4659:3 4663:1 4701:1 4718:1 4737:2 4776:1 4842:1 4877:1 4911:1 4916:1 4941:1 4945:1 4985:1 5006:2 5018:1 5037:1 5050:1 5064:2 5081:1 5094:1 5101:1 5121:1 5197:1 5212:2 5216:1 5230:1 5231:1 5234:1 5236:1 5240:1 5281:2 5309:4 5314:1 5315:1 5330:2 5398:1 5420:1 5440:1 5445:1 5453:1 5467:1 5479:1 5535:1 5538:1 5565:3 5567:1 5568:1 5575:1 5576:1 5591:1 5624:1 5632:1 5642:1 5643:1 5647:7 5680:2 5703:1 5725:1 5751:4 5805:1 5828:1 5834:1 5838:1 5845:1 5849:1 5850:1 5860:1 5897:1 5938:1 5954:1 5987:1 5991:3 5992:2 6006:1 6047:1 6115:1 6129:2 6210:1 6235:1 6238:1 6246:1 6254:3 6262:1 6265:1 6273:1 6275:1 6279:1 6287:1 6300:1 6345:2 6361:1 6385:1 6394:1 6398:1 6401:1 6430:1 6449:1 6453:1 6460:1 6477:1 6490:6 6498:2 6524:1 6534:1 6537:1 6538:1 6549:2 6557:3 6587:1 6599:1 6602:1 6604:1 6621:1 6626:1 6631:1 6641:1 6672:1 6686:1 6728:1 6806:1 6857:1 6864:1 6870:1 6876:2 6881:1 6894:2 6898:1 6912:1 6913:2 6935:1 6943:2 6951:1 6964:1 6969:1 6997:1 7027:1 7052:2 7067:2 7068:6 7081:1 7086:1 7090:3 7092:2 7116:2 7117:2 7121:1 7136:18 7137:1 7140:1 7147:1 7155:4 7156:2 7162:2 7194:1 7201:1 7202:1 7224:1 7229:2 7230:2 7235:1 7242:1 7256:1 7276:1 7294:2 7305:1 7326:1 7355:1 7356:2 7385:1 7390:1 7477:1 7523:1 7547:1 7558:1 7568:1 7576:1 7580:1 7592:1 7609:10 7618:1 7637:2 7642:1 7696:1 7700:1 7706:1 7734:1 7744:1 7748:2 7751:1 7756:1 7771:1 7778:3 7784:2 7790:1 7812:1 7814:1 7836:1 7840:1 7850:1 7886:1 7890:1 7945:1 7950:1 7952:1 7976:1 7989:3 8005:1 8008:1 8043:1 8049:1 8069:1 8073:1 8085:1 8113:1 8124:1 8153:1 8154:1 8164:1 8171:1 8197:1 8215:1 8228:1 8250:1 8254:1 8258:2 8282:2 8295:1 8306:1 8311:1 8331:1 8332:1 8345:1 8351:1 8356:1 8358:1 8363:1 8370:4 8378:1 8407:2 8423:1 8445:1 8446:1 8460:2 8521:1 8525:2 8541:1 8544:1 8550:1 8552:1 8555:2 8600:1 8612:1 8620:1 8622:1 8632:1 8635:2 8658:1 8674:3 8698:1 8699:1 8728:1 8735:1 8756:2 8765:1 8786:1 8793:1 8833:1 8838:1 8853:5 8856:1 8885:1 8908:1 8926:1 8947:1 8953:1 8956:1 8958:1 8990:1 9020:1 9073:1 9090:1 9101:1 9113:1 9132:1 9144:1 9155:1 9173:1 9178:1 9179:1 9216:1 9221:1 9222:1 9230:2 9243:2 9249:3 9251:1 9281:2 9300:1 9348:1 9361:2 9364:1 9391:1 9396:7 9398:1 9402:1 9425:1 9491:2 9493:1 9524:1 9534:1 9536:1 9537:1 9540:1 9542:1 9550:1 9552:1 9555:2 9588:1 9601:4 9608:1 9610:1 9612:1 9617:1 9626:1 9632:1 9642:3 9660:1 9695:1 9703:1 9710:1 9713:2 9725:1 9732:1 9750:1 9764:1 9769:1 9775:2 9795:3 9802:1 9820:1 9848:2 9868:1 9869:1 9878:1 9916:1 9936:1 9946:3 9972:1 9982:1 9993:2 10096:1 10118:1 10120:1 10136:1 10137:2 10145:2 10149:1 10156:1 10157:2 10158:5 10159:1 10168:1 10174:1 10177:1 10183:1 10188:1 10201:1 10226:2 10234:1 10255:1 10257:1 10259:1 10294:1 10297:1 10312:1 10323:1 10326:1 10341:1 10412:1 10445:1 10474:1 10477:1 10500:1 10518:1 10523:1 10528:1 10537:2 10539:1 10556:2 10559:1 10572:1 10587:5 10611:1 10625:3 10636:2 10648:1 10682:1 10693:1 10695:2 10696:1 10706:1 10724:1 10766:1 10783:1 10803:1 10805:1 10821:1 10822:1 10840:1 10841:1 10860:1 10874:2 10875:1 10880:2 10898:1 10934:2 10972:1 10983:1 10984:1 10998:1 11023:1 11043:1 11063:1 11071:1 11076:1 11100:2 11150:1 11170:1 11195:1 11201:1 11236:1 11253:1 11256:1 11267:1 11273:2 11279:1 11283:1 11335:1 11338:1 11357:1 11376:1 11393:1 11407:1 11439:1 11476:2 11494:1 11539:1 11550:1 11552:2 11570:1 11606:1 11647:1 11665:1 11705:5 11710:1 11719:1 11728:1 11747:1 11753:1 11792:1 11798:1 11858:1 11903:1 11923:1 11930:1 11944:1 11963:1 11977:1 11982:2 12041:1 12060:1 12078:1 12082:1 12083:1 12085:1 12090:4 12101:1 12122:1 12138:1 12157:1 12161:1 12186:1 12223:1 12225:1 12233:1 12236:1 12242:1 12247:1 12260:1 12272:1 12273:1 12283:1 12289:1 12301:6 12342:1 12371:1 12397:1 12421:3 12446:3 12465:1 12499:1 12515:1 12525:1 12535:1 12537:1 12544:1 12558:2 12561:1 12565:1 12569:5 12590:1 12595:1 12620:1 12719:2 12756:1 12758:1 12770:1 12773:2 12794:1 12814:1 12821:1 12836:6 12857:2 12861:1 12867:1 12890:1 12909:1 12923:1 12934:1 12957:1 12984:1 13017:1 13052:1 13077:3 13091:1 13143:1 13199:1 13204:2 13205:1 13222:1 13223:1 13229:1 13256:1 13265:1 13305:1 13327:1 13349:1 13361:2 13375:3 13380:1 13430:2 13476:1 13477:1 13484:1 13513:1 13540:2 13552:1 13555:1 13558:2 13587:1 13589:1 13693:2 13774:1 13776:1 13781:1 13794:1 13804:1 13806:1 13829:1 13922:1 13974:1 14027:1 14032:1 14047:1 14064:1 14071:1 14075:1 14096:1 14098:1 14113:1 14130:1 14134:1 14168:1 14217:1 14229:1 14252:1 14263:2 14266:1 14328:1 14332:1 14377:1 14403:1 14413:1 14417:2 14420:1 14432:1 14450:1 14475:1 14491:1 14497:1 14532:1 14550:2 14559:1 14570:1 14572:2 14600:2 14676:1 14687:6 14704:1 14709:3 14738:1 14772:1 14783:1 14789:2 14796:2 14817:1 14821:1 14876:1 14883:1 14891:1 14892:1 14902:2 14928:1 14946:1 14950:1 14954:1 14955:1 14956:2 14957:1 14958:1 14963:1 14965:1 14967:1 14968:2 14972:1 15024:1 15060:1 15083:1 15087:1 15088:1 15109:1 15117:1 15119:1 15162:1 15178:1 15198:1 15240:1 15250:1 15254:1 15262:1 15272:1 15274:1 15281:1 15282:1 15290:1 15294:3 15302:2 15321:1 15334:1 15342:1 15353:1 15359:1 15367:1 15407:3 15408:1 15432:3 15437:1 15490:1 15497:2 15499:1 15507:1 15525:1 15534:1 15538:1 15596:2 15617:2 15646:1 15661:2 15688:1 15722:1 15765:1 15768:1 15799:1 15808:1 15814:1 15821:1 15845:1 15858:2 15862:1 15873:1 15889:1 15909:1 15930:1 15938:1 15979:1 15982:1 16000:1 16005:1 16027:1 16036:1 16041:1 16047:1 16054:3 16059:2 16071:1 16116:1 16117:1 16128:1 16139:1 16140:1 16156:1 16189:1 16203:1 16222:1 16257:1 16276:1 16279:1 16311:1 16312:1 16313:1 16339:1 16343:1 16344:1 16347:2 16379:1 16426:1 16439:1 16452:1 16514:1 16542:1 16551:1 16570:1 16651:1 16657:1 16658:1 16674:1 16703:1 16721:1 16787:1 16791:1 16805:1 16848:3 16906:1 16932:1 16954:6 16963:1 16977:2 16990:1 16997:1 17001:1 17048:3 17058:1 17068:1 17087:1 17107:1 17112:1 17125:1 17126:2 17137:985 17147:1 17151:1 17162:1 17188:1 17200:1 17201:1 17220:1 17251:1 17296:1 17311:1 17314:1 17321:1 17322:2 17341:1 17351:1 17359:1 17375:1 17407:1 17448:1 17453:2 17503:1 17534:2 17549:1 17564:1 17573:1 17603:1 17608:1 17616:1 17636:1 17646:1 17655:1 17661:1 17670:1 17691:2 17692:2 17708:2 17712:1 17716:1 17728:2 17752:1 17753:1 17761:1 17771:1 17777:2 17803:1 17818:1 17823:1 17846:2 17862:1 17891:1 17900:2 17905:1 17907:1 17929:4 17956:1 17970:1 17975:1 18006:1 18009:1 18039:1 18046:1 18047:1 18079:1 18080:1 18088:1 18117:1 18130:1 18145:2 18147:1 18153:1 18158:1 18182:1 18183:1 18187:1 18196:1 18203:1 18229:1 18237:1 18238:1 18279:1 18282:1 18288:2 18335:1 18363:1 18368:1 18369:1 18388:1 18399:1 18407:1 18409:1 18421:3 18430:1 18462:1 18466:1 18504:1 18505:1 18526:1 18531:1 18552:1 18569:1 18577:2 18578:2 18592:2 18612:1 18663:1 18683:1 18695:1 18697:1 18701:1 18705:1 18768:1 18787:1 18802:2 18807:1 18828:1 18830:1 18840:1 18850:1 18865:5 18886:1 18916:1 18937:1 18973:1 18987:2 19011:1 19020:1 19057:2 19066:1 19073:2 19081:1 19089:1 19126:1 19149:1 19178:1 19198:2 19202:1 19207:1 19215:1 19227:3 19264:1 19277:1 19302:1 19319:1 19337:2 19353:1 19358:2 19381:2 19401:1 19402:1 19420:1 19427:2 19435:1 19447:1 19450:1 19480:1 19481:1 19517:1 19519:1 19524:1 19525:2 19618:1 19665:1 19667:1 19669:1 19687:1 19699:1 19705:1 19746:1 19750:1 19768:1 19789:1 19791:1 19794:1 19796:2 19799:1 19811:1 19830:2 19833:1 19851:1 19853:2 19874:3 19892:1 19902:1 19916:1 19943:1 19948:1 19952:1 20000:1 20010:1 20024:1 20034:2 20036:1 20054:1 20056:1 20082:1 20083:1 20085:2 20087:1 20088:1 20114:1 20151:1 20171:3 20176:1 20178:1 20179:1 20181:1 20186:1 20189:1 20205:3 20218:1 20236:1 20244:2 20252:1 20269:1 20324:1 20344:1 20368:1 20377:1 20396:1 20405:1 20409:1 20421:1 20425:2 20441:1 20446:1 20447:1 20463:1 20484:1 20487:1 20491:1 20492:4 20503:1 20512:1 20513:2 20519:1 20525:1 20531:1 20547:1 20553:1 20575:5 20576:1 20589:1 20609:1 20624:1 20631:2 20632:1 20640:1 20649:1 20664:1 20690:2 20717:1 20723:1 20726:3 20728:1 20735:3 20740:1 20753:1 20757:1 20794:1 20795:1 20800:2 20809:1 20827:1 20834:1 20846:1 20851:1 20866:1 20906:1 20921:1 20935:1 20936:1 20952:1 20957:2 20970:3 20982:1 20996:1 21037:1 21040:1 21055:1 21085:1 21104:1 21128:2 21138:1 21139:1 21142:1 21175:2 21204:2 21269:1 21294:2 21297:1 21304:4 21314:2 21322:1 21330:1 21345:1 21358:1 21368:1 21413:1 21446:1 21472:2 21502:1 21505:1 21510:1 21527:1 21537:1 21548:1 21549:1 21579:1 21584:1 21592:1 21624:1 21625:1 21628:1 21641:1 21644:1 21650:1 21695:1 21696:3 21698:1 21715:2 21716:1 21718:1 21769:1 21779:1 21789:1 21878:1 21884:1 21953:1 21964:1 22008:1 22066:1 22084:1 22101:1 22113:1 22140:1 22165:2 22213:2 22228:1 22259:1 22270:1 22280:1 22287:1 22293:1 22317:3 22340:2 22345:1 22425:1 22426:1 22451:1 22455:1 22461:1 22467:2 22479:1 22484:1 22518:1 22535:1 22536:1 22544:1 22551:1 22552:1 22557:1 22582:6 22609:1 22611:1 22636:1 22639:1 22643:3 22651:1 22667:1 22670:1 22756:1 22787:1 22794:1 22809:2 22822:1 22826:1 22858:1 22863:1 22901:1 22917:1 22932:1 22941:2 22952:2 22968:1 23002:6 23026:1 23032:1 23036:1 23045:1 23066:1 23067:1 23078:1 23098:2 23101:1 23105:2 23110:1 23111:1 23131:1 23133:1 23139:1 23160:1 23166:1 23198:1 23220:3 23221:1 23240:1 23253:1 23280:1 23285:1 23308:1 23311:1 23314:1 23340:1 23359:1 23398:1 23407:1 23422:1 23426:1 23428:1 23437:1 23452:1 23473:1 23527:1 23534:1 23564:2 23569:1 23617:2 23629:1 23650:1 23689:1 23698:1 23701:1 23715:1 23746:1 23777:1 23821:1 23826:1 23838:1 23853:1 23860:1 23928:1 23945:1 23952:1 23953:1 23958:1 23988:1 24023:2 24035:1 24065:1 24074:1 24075:1 24094:6 24095:1 24115:1 24151:1 24165:1 24183:1 24199:1 24211:2 24215:3 24221:2 24224:2 24226:3 24228:1 24253:1 24337:1 24370:1 24380:1 24386:1 24388:2 24415:4 24418:1 24439:1 24442:1 24447:1 24483:1 24537:1 24553:1 24569:1 24634:1 24641:1 24653:1 24677:1 24689:1 24690:1 24703:1 24707:1 24721:1 24746:1 24747:2 24758:2 24769:1 24785:1 24788:1 24849:1 24886:1 24912:1 24915:2 24922:1 24936:1 24938:1 24950:1 24972:1 24974:1 24977:1 24985:1 24986:1 25013:1 25016:1 25032:1 25037:1 25077:3 25084:1 25098:1 25132:2 25137:1 25143:1 25148:1 25155:1 25163:1 25172:1 25174:1 25193:1 25200:1 25201:1 25204:1 25205:1 25206:1 25210:1 25217:2 25229:1 25243:1 25247:1 25279:1 25297:1 25318:1 25361:1 25404:1 25439:1 25444:1 25445:2 25480:1 25487:1 25532:1 25563:1 25598:1 25613:1 25660:1 25674:1 25745:1 25759:1 25760:3 25766:1 25773:1 25775:1 25778:1 25790:1 25792:1 25799:1 25815:1 25828:1 25836:2 25847:3 25860:1 25867:2 25883:1 25884:1 25886:1 25922:1 25924:1 25949:1 25963:1 25969:1 25971:4 25977:3 26008:3 26021:1 26034:1 26051:1 26064:1 26126:1 26131:1 26146:1 26158:1 26162:1 26164:1 26172:1 26173:2 26179:1 26196:2 26234:1 26245:4 26259:1 26308:3 26401:1 26488:1 26495:1 26497:1 26502:2 26504:1 26515:1 26516:1 26539:1 26552:1 26571:1 26611:2 26620:2 26648:1 26653:2 26668:1 26699:1 26715:1 26721:1 26727:1 26728:2 26760:1 26767:1 26806:1 26825:1 26836:1 26844:1 26866:1 26868:3 26892:1 26901:1 26903:1 26919:1 26940:1 26943:2 26961:1 26965:1 26974:1 26975:1 26978:1 27022:2
1 12:1 50:1 55:1 60:1 90:1 124:1 137:1 138:3 147:1 153:1 159:1 165:1 168:1 178:2 221:1 231:1 236:2 255:2 262:1 277:1 301:1 312:3 314:2 318:3 326:3 337:2 356:1 363:1 375:1 392:5 394:2 451:1 538:1 548:2 565:1 571:1 580:1 588:1 708:1 730:1 731:1 738:1 750:1 776:3 779:1 787:3 798:1 814:7 815:2 823:3 841:1 854:4 856:2 857:6 861:1 863:2 877:2 895:2 898:3 909:1 943:2 964:1 1011:1 1100:3 1101:2 1107:1 1111:1 1118:1 1141:1 1145:1 1161:1 1184:1 1189:1 1215:1 1230:1 1243:1 1249:1 1253:1 1264:1 1275:1 1296:1 1300:1 1303:1 1319:1 1332:1 1340:1 1346:1 1352:1 1367:1 1371:1 1385:1 1411:3 1417:3 1420:2 1429:1 1450:1 1461:1 1467:1 1480:1 1485:2 1498:2 1511:1 1513:1 1517:1 1526:1 1529:1 1545:1 1556:1 1564:1 1570:1 1595:1 1615:3 1632:1 1636:1 1639:2 1642:1 1643:1 1645:1 1651:2 1653:5 1676:2 1678:2 1715:1 1744:1 1764:1 1765:1 1778:2 1821:1 1825:1 1845:1 1851:1 1854:1 1859:1 1862:1 1873:1 1902:1 1905:1 1920:1 1921:1 1924:1 1929:1 1966:7 1970:1 1975:1 1979:1 2006:1 2025:1 2038:2 2040:1 2056:1 2061:2 2079:1 2084:2 2087:1 2095:2 2096:2 2097:1 2099:1 2105:2 2107:2 2109:5 2111:2 2123:1 2152:1 2155:3 2172:1 2179:1 2190:1 2191:1 2208:1 2210:1 2243:1 2247:1 2262:1 2278:1 2287:1 2291:1 2297:1 2325:1 2330:1 2334:1 2345:1 2347:1 2356:2 2358:1 2361:3 2366:1 2367:1 2379:1 2382:1 2408:3 2410:1 2416:1 2430:2 2436:1 2437:1 2447:2 2452:1 2458:1 2460:3 2465:3 2474:1 2485:1 2490:3 2492:2 2515:1 2516:2 2557:1 2562:1 2563:1 2575:2 2577:1 2583:2 2595:1 2639:1 2656:2 2664:1 2667:7 2689:2 2690:1 2695:1 2697:1 2731:3 2758:2 2773:1 2826:1 2840:1 2841:4 2852:2 2860:1 2902:1 2915:2 2923:1 2938:2 2956:2 2991:1 3026:1 3031:1 3048:6 3152:1 3203:1 3213:1 3252:1 3286:2 3291:1 3309:1 3315:9 3325:1 3328:2 3330:1 3346:1 3399:1 3400:1 3406:1 3407:1 3410:1 3414:1 3423:1 3470:1 3473:1 3480:1 3483:1 3486:1 3494:1 3506:1 3510:1 3513:2 3520:1 3523:1 3540:2 3560:2 3576:1 3581:2 3583:1 3587:1 3591:1 3600:2 3610:1 3611:2 3631:2 3652:2 3691:2 3692:3 3698:1 3730:1 3733:2 3737:1 3742:1 3759:1 3760:2 3787:1 3794:1 3813:1 3828:1 3845:1 3849:1 3853:1 3859:1 3863:1 3875:1 3882:1 3888:1 3898:1 3917:1 3952:4 3957:1 3977:1 3984:1 4003:1 4005:1 4018:1 4032:2 4038:1 4057:1 4064:2 4084:1 4107:1 4116:1 4140:2 4160:1 4164:1 4167:1 4172:1 4173:2 4189:1 4201:1 4218:1 4226:1 4275:1 4284:2 4294:1 4302:1 4307:1 4319:1 4344:1 4361:1 4369:2 4383:1 4386:1 4403:1 4445:1 4488:5 4490:1 4499:1 4502:1 4535:1 4625:1 4629:3 4631:2 4632:2 4634:1 4637:1 4638:1 4639:1 4643:1 4645:3 4646:1 4650:1 4651:2 4652:2 4659:3 4663:1 4701:1 4718:1 4737:2 4776:1 4842:1 4877:1 4911:1 4916:1 4941:1 4945:1 4955:1 4985:1 5006:2 5018:1 5037:1 5050:1 5064:2 5081:1 5094:1 5101:1 5121:1 5130:1 5197:1 5207:1 5212:2 5216:1 5230:1 5231:1 5234:2 5236:1 5240:1 5281:2 5309:4 5314:1 5315:1 5330:2 5398:1 5420:1 5422:1 5440:1 5445:1 5453:1 5467:1 5479:1 5521:1 5535:1 5538:1 5565:3 5567:1 5568:1 5575:1 5576:1 5591:1 5623:1 5624:1 5632:1 5642:1 5643:1 5647:7 5680:2 5703:1 5725:2 5751:4 5763:1 5805:1 5828:1 5834:1 5838:1 5845:1 5849:1 5850:1 5860:1 5897:1 5938:1 5954:1 5987:1 5991:3 5992:2 6006:1 6047:1 6055:1 6115:1 6129:2 6210:1 6235:1 6238:1 6246:1 6254:3 6262:1 6265:1 6273:1 6275:1 6279:1 6287:1 6300:1 6345:2 6361:1 6385:1 6394:1 6398:1 6401:1 6430:1 6449:1 6453:1 6460:1 6477:1 6490:6 6498:2 6524:1 6534:1 6537:1 6538:1 6549:2 6552:1 6557:4 6587:1 6599:1 6602:1 6604:1 6621:1 6626:1 6631:1 6641:1 6672:1 6686:1 6728:1 6806:1 6857:1 6864:1 6870:1 6876:3 6881:1 6894:2 6898:1 6912:1 6913:2 6935:1 6943:2 6951:1 6964:1 6969:1 6997:1 7027:1 7052:2 7067:3 7068:6 7081:1 7086:1 7090:3 7092:2 7116:2 7117:2 7121:1 7136:19 7137:1 7140:2 7147:1 7155:4 7156:3 7162:2 7194:1 7201:1 7202:1 7222:1 7224:1 7229:2 7230:2 7235:1 7242:1 7256:1 7276:1 7294:2 7305:1 7326:1 7355:1 7356:3 7385:1 7390:1 7477:1 7523:1 7547:1 7558:1 7568:1 7576:1 7580:1 7592:1 7609:11 7618:1 7637:2 7642:1 7696:1 7698:1 7700:1 7706:1 7734:1 7744:1 7748:2 7751:1 7756:1 7771:1 7778:3 7784:2 7790:1 7812:1 7814:1 7836:1 7840:1 7850:1 7886:1 7890:1 7945:1 7950:1 7952:1 7976:1 7989:3 8005:1 8008:1 8043:1 8049:1 8069:1 8073:1 8085:1 8113:1 8124:1 8153:1 8154:1 8164:1 8171:1 8197:1 8215:1 8228:1 8247:1 8250:1 8253:1 8254:1 8258:2 8282:2 8295:1 8306:1 8311:1 8331:1 8332:1 8345:1 8351:1 8356:1 8358:1 8363:1 8370:4 8378:1 8407:3 8423:1 8445:1 8446:1 8460:2 8521:1 8525:2 8541:1 8544:1 8550:1 8552:1 8555:2 8600:1 8612:1 8620:1 8622:1 8632:1 8635:3 8658:1 8674:3 8698:1 8699:1 8728:1 8735:1 8756:2 8765:1 8786:1 8793:1 8833:1 8838:1 8853:5 8856:1 8885:1 8908:1 8926:1 8947:1 8953:1 8956:2 8958:1 8990:1 9020:1 9073:1 9090:1 9101:1 9113:1 9131:1 9132:1 9144:1 9155:1 9173:1 9178:1 9179:1 9216:1 9221:1 9222:1 9230:2 9243:2 9249:3 9251:1 9281:2 9300:1 9301:1 9332:1 9348:1 9358:1 9361:2 9364:1 9388:1 9391:1 9396:7 9398:1 9402:1 9425:1 9439:1 9491:2 9493:1 9524:1 9534:1 9536:1 9537:1 9540:1 9542:1 9550:1 9552:1 9555:2 9588:1 9601:4 9608:1 9610:1 9612:1 9617:1 9626:1 9632:1 9642:3 9660:1 9681:1 9695:1 9703:1 9710:1 9713:2 9725:1 9732:1 9750:1 9764:1 9769:1 9775:2 9795:3 9802:1 9820:1 9848:2 9868:1 9869:1 9878:1 9916:1 9936:1 9946:3 9972:1 9982:1 9993:2 10096:1 10118:1 10120:1 10136:1 10137:2 10145:2 10149:1 10156:1 10157:2 10158:5 10159:1 10168:1 10174:1 10177:1 10183:1 10188:1 10189:1 10195:1 10201:1 10213:1 10226:2 10234:1 10255:1 10257:1 10259:1 10294:1 10297:1 10312:1 10323:1 10326:1 10341:1 10412:1 10445:1 10474:1 10477:1 10500:1 10503:1 10518:1 10523:2 10528:1 10537:2 10539:1 10556:2 10559:1 10572:1 10587:6 10611:1 10625:3 10636:2 10648:1 10682:1 10693:1 10695:2 10696:1 10706:1 10724:1 10766:1 10783:1 10803:3 10805:1 10821:1 10822:1 10840:1 10841:1 10860:1 10874:3 10875:1 10880:2 10898:1 10934:2 10972:1 10983:1 10984:1 10998:1 11023:3 11043:1 11063:1 11071:1 11076:1 11081:1 11100:2 11150:1 11170:1 11175:1 11195:1 11201:1 11236:1 11246:1 11251:2 11252:1 11253:1 11256:1 11267:1 11273:2 11279:1 11283:1 11285:1 11290:1 11335:1 11338:1 11357:1 11376:1 11393:1 11407:1 11439:1 11476:2 11494:1 11539:1 11550:1 11552:2 11570:1 11606:1 11647:1 11665:1 11705:5 11710:1 11719:1 11728:1 11747:1 11753:1 11792:2 11798:1 11850:1 11858:1 11903:1 11923:1 11930:1 11944:1 11963:1 11977:1 11982:2 12041:1 12060:1 12078:1 12082:1 12083:1 12085:2 12090:4 12101:1 12122:1 12138:1 12157:1 12161:1 12186:1 12194:1 12221:1 12223:1 12225:1 12233:1 12236:1 12242:2 12247:1 12260:1 12272:1 12273:1 12283:1 12289:1 12301:6 12306:1 12308:1 12342:1 12371:1 12397:1 12421:3 12446:3 12465:1 12499:1 12515:1 12521:1 12525:1 12535:1 12537:1 12544:1 12558:2 12561:1 12565:1 12569:5 12590:1 12595:1 12620:1 12719:2 12756:1 12758:1 12767:1 12770:1 12773:2 12774:1 12794:1 12814:1 12821:1 12836:6 12857:2 12861:1 12867:1 12890:1 12909:1 12923:1 12934:1 12957:1 12984:1 13017:1 13052:1 13077:3 13091:1 13143:1 13199:1 13204:2 13205:1 13212:1 13222:1 13223:1 13229:1 13256:1 13265:1 13305:1 13327:1 13349:1 13361:2 13375:3 13380:1 13430:2 13476:1 13477:1 13484:1 13513:1 13540:2 13552:1 13555:1 13558:2 13587:1 13589:1 13693:2 13762:1 13774:1 13776:1 13781:1 13794:1 13804:1 13806:1 13829:1 13922:1 13974:1 14004:1 14027:1 14032:1 14047:1 14064:1 14071:1 14075:1 14096:1 14098:1 14113:1 14130:1 14134:1 14168:1 14217:1 14229:1 14252:1 14263:2 14266:1 14302:1 14328:1 14332:1 14377:1 14391:1 14403:1 14413:1 14417:2 14420:1 14432:1 14446:1 14450:1 14475:1 14491:1 14497:1 14532:1 14550:2 14559:1 14570:1 14572:2 14600:2 14676:1 14683:1 14687:6 14704:1 14709:3 14738:1 14772:1 14783:1 14789:2 14796:2 14817:1 14821:1 14876:1 14883:1 14891:1 14892:1 14902:2 14928:1 14929:1 14946:1 14950:1 14954:1 14955:1 14956:2 14957:2 14958:1 14963:2 14965:1 14967:1 14968:2 14972:1 14973:1 15024:1 15060:1 15083:1 15087:1 15088:1 15109:1 15117:1 15119:1 15162:1 15178:1 15198:1 15240:1 15250:1 15254:1 15262:1 15272:1 15274:1 15281:1 15282:1 15290:1 15294:3 15302:2 15321:1 15334:1 15342:1 15353:1 15359:1 15367:1 15407:3 15408:1 15432:3 15437:1 15490:1 15497:2 15499:1 15507:1 15525:1 15534:1 15538:1 15596:3 15617:2 15622:1 15646:1 15661:2 15688:1 15703:1 15720:1 15722:1 15765:1 15768:1 15799:1 15808:1 15814:1 15821:1 15845:1 15858:2 15862:1 15873:1 15889:1 15909:1 15930:1 15938:1 15979:1 15982:1 16000:1 16005:1 16027:1 16036:1 16041:1 16047:1 16054:3 16059:2 16070:1 16071:1 16109:1 16116:1 16117:1 16128:1 16139:1 16140:1 16156:1 16189:1 16203:1 16222:2 16244:1 16257:1 16276:1 16279:1 16311:1 16312:1 16313:1 16339:1 16343:1 16344:1 16347:2 16379:1 16426:1 16439:1 16452:1 16514:1 16542:1 16551:1 16570:2 16651:1 16657:2 16658:1 16674:1 16703:1 16721:1 16770:1 16787:1 16791:1 16805:1 16848:3 16906:1 16932:1 16954:6 16963:1 16977:3 16990:1 16997:1 17001:1 17012:1 17048:3 17058:1 17068:1 17084:1 17087:1 17107:1 17112:2 17125:1 17126:2 17137:1132 17147:1 17151:1 17162:1 17188:1 17200:1 17201:1 17220:1 17251:1 17296:1 17311:1 17314:1 17321:1 17322:2 17341:1 17351:1 17359:1 17375:1 17407:1 17448:1 17453:2 17503:1 17534:2 17549:1 17564:1 17573:1 17603:1 17608:1 17616:1 17636:1 17646:1 17655:1 17661:1 17670:1 17672:1 17691:2 17692:2 17708:2 17712:1 17716:1 17728:2 17752:1 17753:1 17761:1 17771:1 17777:2 17803:1 17818:1 17823:1 17846:2 17862:1 17891:1 17900:3 17905:1 17907:1 17914:1 17929:4 17942:1 17956:1 17970:1 17975:1 18006:1 18009:1 18039:1 18046:1 18047:1 18079:1 18080:1 18088:1 18117:1 18130:1 18145:2 18147:1 18152:1 18153:1 18158:1 18182:1 18183:1 18187:1 18196:1 18203:1 18229:1 18237:1 18238:1 18279:1 18282:1 18288:2 18289:1 18335:1 18354:1 18363:1 18368:1 18369:1 18371:1 18388:1 18399:1 18407:1 18409:1 18421:3 18430:1 18449:1 18462:1 18465:1 18466:1 18495:1 18504:1 18505:1 18526:1 18531:1 18552:1 18553:1 18569:1 18577:2 18578:3 18592:2 18596:1 18612:1 18663:1 18678:1 18683:1 18695:1 18697:1 18701:1 18705:1 18738:1 18768:1 18787:1 18802:2 18807:1 18828:1 18830:1 18840:1 18850:1 18865:6 18886:1 18916:1 18937:1 18973:1 18987:2 18999:1 19006:1 19011:1 19020:1 19057:2 19063:1 19066:1 19073:2 19081:1 19089:1 19116:2 19126:1 19149:1 19178:2 19198:3 19202:1 19207:1 19215:1 19227:3 19264:1 19277:1 19296:1 19302:1 19319:1 19327:1 19337:2 19353:1 19358:2 19381:2 19401:1 19402:1 19420:1 19427:2 19435:1 19447:1 19450:1 19460:1 19480:1 19481:1 19517:1 19519:1 19524:2 19525:2 19618:1 19656:1 19665:1 19667:1 19669:1 19687:1 19699:1 19705:1 19746:1 19750:1 19768:1 19789:1 19791:1 19794:1 19796:2 19799:1 19811:1 19830:2 19833:1 19851:1 19853:2 19874:3 19892:1 19902:1 19916:1 19929:1 19943:1 19948:1 19952:1 20000:1 20010:1 20024:1 20034:2 20036:1 20054:1 20056:1 20082:1 20083:1 20085:2 20087:1 20088:1 20114:1 20151:1 20171:3 20176:1 20178:1 20179:1 20181:1 20186:1 20189:1 20205:3 20218:1 20236:1 20244:2 20252:1 20269:1 20324:1 20344:1 20368:1 20377:1 20396:1 20405:1 20409:1 20421:1 20425:3 20441:1 20446:1 20447:1 20463:1 20484:2 20487:1 20491:1 20492:4 20503:1 20512:1 20513:2 20519:1 20525:1 20531:1 20547:1 20553:1 20575:5 20576:1 20589:1 20609:1 20624:1 20631:2 20632:1 20640:1 20649:1 20664:1 20690:2 20717:1 20723:1 20726:3 20728:1 20735:3 20740:2 20753:1 20757:1 20773:1 20794:1 20795:1 20800:2 20809:1 20827:1 20834:1 20846:1 20851:1 20866:1 20906:1 20921:1 20935:1 20936:1 20952:1 20957:2 20970:3 20982:1 20996:1 21037:1 21040:1 21055:1 21085:1 21104:1 21128:2 21138:1 21139:1 21142:1 21175:3 21204:2 21269:1 21294:2 21297:1 21304:4 21314:2 21322:1 21328:1 21330:1 21345:1 21358:1 21368:1 21413:1 21446:1 21463:1 21472:2 21502:1 21505:1 21510:1 21527:1 21537:1 21548:1 21549:1 21579:1 21584:1 21592:1 21605:1 21624:1 21625:1 21628:1 21641:1 21644:1 21650:1 21695:1 21696:3 21698:1 21715:2 21716:1 21718:1 21769:1 21779:1 21789:1 21853:1 21878:1 21884:1 21951:1 21953:1 21964:1 22008:1 22066:1 22084:1 22101:1 22113:1 22140:1 22165:2 22176:1 22213:3 22228:1 22259:1 22270:1 22280:1 22287:1 22293:1 22317:3 22340:2 22341:1 22345:1 22425:1 22426:1 22451:1 22455:1 22461:1 22467:2 22479:1 22484:1 22518:1 22535:1 22536:1 22544:1 22551:1 22552:1 22557:1 22582:6 22609:1 22611:1 22636:1 22639:1 22643:3 22651:1 22667:1 22670:1 22756:1 22781:1 22787:1 22794:1 22809:2 22822:1 22826:1 22858:1 22863:1 22901:1 22917:1 22918:1 22932:1 22941:2 22946:1 22952:2 22968:1 23002:6 23026:1 23032:1 23033:1 23036:1 23045:1 23066:1 23067:1 23078:1 23098:2 23101:1 23105:2 23110:1 23111:1 23131:1 23133:1 23139:1 23143:1 23160:1 23166:1 23198:1 23220:3 23221:1 23240:1 23253:1 23280:1 23285:1 23308:1 23311:1 23314:1 23340:1 23359:1 23398:1 23407:1 23422:1 23426:2 23428:1 23437:1 23452:1 23473:1 23527:1 23534:1 23560:1 23564:2 23569:1 23617:2 23629:1 23650:1 23688:1 23689:1 23698:1 23701:1 23715:1 23746:1 23777:1 23821:1 23826:1 23838:1 23853:1 23860:1 23928:1 23929:1 23945:1 23952:1 23953:1 23958:1 23988:1 24023:2 24030:1 24035:1 24058:1 24065:1 24074:1 24075:1 24094:6 24095:1 24105:1 24115:1 24151:1 24163:1 24165:1 24183:1 24199:1 24211:2 24215:3 24221:3 24224:2 24226:4 24228:1 24253:1 24337:1 24370:1 24380:1 24384:1 24386:1 24388:2 24415:4 24417:1 24418:1 24439:1 24442:1 24447:1 24467:1 24483:1 24531:1 24537:1 24553:1 24569:1 24634:1 24641:3 24653:1 24677:1 24684:1 24689:1 24690:1 24703:1 24707:1 24721:1 24746:1 24747:2 24758:2 24769:1 24785:1 24788:1 24849:1 24886:1 24912:1 24915:2 24922:1 24936:1 24938:1 24950:1 24961:1 24972:1 24974:1 24977:1 24985:1 24986:1 25013:1 25016:1 25032:1 25037:1 25077:3 25084:1 25098:1 25132:2 25137:1 25143:1 25148:1 25155:1 25163:1 25164:1 25172:1 25174:1 25193:1 25200:1 25201:1 25204:1 25205:1 25206:1 25210:1 25217:2 25229:1 25243:1 25247:1 25279:1 25297:1 25318:1 25361:1 25404:1 25439:1 25444:1 25445:2 25459:1 25480:1 25487:1 25532:1 25563:1 25598:1 25613:1 25652:1 25660:1 25674:1 25745:1 25759:1 25760:3 25766:1 25773:1 25775:1 25778:1 25790:1 25792:1 25799:1 25801:2 25813:1 25815:1 25828:1 25836:2 25847:3 25860:1 25867:2 25883:1 25884:1 25886:1 25922:1 25924:1 25949:1 25963:1 25969:2 25971:4 25977:3 26008:4 26021:1 26034:1 26051:1 26064:1 26120:1 26126:1 26131:1 26146:1 26158:1 26162:1 26164:1 26172:1 26173:2 26179:1 26196:2 26234:1 26245:5 26259:1 26308:3 26401:1 26488:1 26495:1 26497:1 26502:2 26504:1 26515:1 26516:1 26539:1 26552:1 26571:1 26611:2 26620:2 26648:1 26653:2 26668:1 26699:1 26715:1 26721:1 26727:1 26728:2 26760:1 26767:1 26806:1 26825:1 26836:1 26844:1 26866:1 26868:3 26892:1 26901:1 26903:1 26919:1 26940:1 26943:2 26961:1 26965:1 26966:1 26973:1 26974:1 26975:1 26978:1 27022:2
1 12:1 50:1 55:1 60:1 90:1 124:1 137:1 138:3 147:1 153:1 159:1 165:1 168:1 178:2 221:1 231:1 236:4 255:2 262:1 277:1 301:1 312:3 314:2 318:3 326:3 337:2 356:1 363:1 375:1 392:5 394:2 403:1 451:1 538:1 548:2 565:1 571:1 580:1 588:1 708:1 730:1 731:1 738:1 750:1 776:3 779:1 787:3 798:1 814:7 815:2 823:3 841:1 854:4 856:2 857:6 861:1 863:2 877:2 895:2 898:3 909:1 943:2 964:1 994:1 1011:1 1100:3 1101:2 1107:1 1111:1 1118:1 1141:1 1145:1 1161:2 1184:1 1189:1 1215:1 1230:1 1243:1 1249:1 1253:1 1264:1 1275:1 1296:1 1300:1 1303:1 1319:1 1332:1 1340:1 1346:1 1352:1 1367:1 1371:1 1385:1 1411:3 1417:4 1420:2 1429:1 1450:1 1461:1 1467:1 1480:1 1485:2 1498:2 1511:1 1513:1 1517:1 1526:1 1529:1 1545:1 1556:1 1564:1 1570:1 1595:2 1615:3 1632:1 1636:1 1639:2 1642:1 1643:1 1645:1 1651:2 1653:5 1676:2 1678:2 1692:1 1713:1 1715:2 1744:1 1764:1 1765:1 1778:2 1821:1 1825:1 1845:2 1851:1 1854:1 1859:1 1862:1 1873:1 1902:1 1905:1 1920:1 1921:1 1924:1 1926:1 1929:1 1966:7 1970:1 1975:1 1979:1 2006:1 2025:1 2038:2 2040:1 2056:1 2061:2 2078:1 2079:1 2084:2 2087:1 2095:2 2096:2 2097:1 2099:1 2105:3 2107:2 2109:5 2111:2 2113:1 2123:1 2149:1 2152:1 2155:3 2172:1 2179:1 2190:1 2191:1 2208:1 2210:1 2243:1 2247:1 2262:1 2278:1 2287:1 2291:1 2297:1 2306:1 2325:1 2330:1 2334:1 2345:1 2347:1 2353:1 2356:2 2358:1 2361:3 2366:1 2367:1 2379:1 2382:1 2408:3 2410:1 2416:1 2430:2 2436:1 2437:1 2447:2 2452:1 2458:1 2460:3 2465:3 2474:1 2485:1 2490:3 2492:2 2515:1 2516:2 2557:1 2561:1 2562:1 2563:1 2575:2 2577:1 2579:1 2583:3 2595:1 2639:1 2656:2 2664:1 2667:7 2689:2 2690:1 2695:1 2697:1 2706:1 2731:4 2756:2 2758:2 2773:1 2826:1 2840:1 2841:4 2852:2 2860:1 2902:1 2915:2 2923:1 2938:2 2956:2 2968:1 2991:1 3026:1 3031:1 3048:6 3152:1 3203:1 3210:1 3213:1 3252:1 3286:2 3291:1 3309:1 3315:10 3325:1 3328:2 3330:1 3331:1 3346:1 3399:1 3400:1 3406:1 3407:1 3410:2 3414:1 3423:1 3470:1 3473:1 3480:1 3483:1 3486:1 3494:1 3506:1 3510:1 3513:2 3520:1 3523:1 3540:2 3560:2 3576:1 3581:2 3583:1 3587:1 3591:1 3600:2 3610:1 3611:2 3631:2 3652:2 3691:2 3692:3 3698:1 3730:1 3733:2 3737:1 3742:1 3759:1 3760:2 3787:1 3794:1 3813:1 3828:1 3845:2 3849:1 3853:1 3859:1 3863:1 3875:1 3882:1 3888:1 3898:1 3917:1 3952:4 3957:1 3977:1 3984:1 4003:1 4005:1 4018:1 4032:2 4038:1 4057:1 4064:2 4084:2 4097:1 4107:1 4116:1 4140:2 4160:1 4164:1 4167:1 4172:1 4173:2 4189:1 4201:1 4218:1 4226:1 4246:1 4275:1 4284:2 4294:1 4302:1 4307:1 4319:1 4344:1 4361:1 4369:2 4383:1 4386:1 4403:1 4445:1 4488:6 4490:1 4499:1 4502:1 4535:1 4546:1 4554:1 4625:1 4629:3 4631:2 4632:2 4634:1 4637:1 4638:1 4639:1 4643:1 4645:3 4646:2 4650:1 4651:2 4652:2 4659:3 4663:1 4701:1 4718:1 4737:2 4776:1 4842:1 4877:1 4911:1 4916:1 4941:1 4945:1 4955:1 4985:1 5006:2 5018:1 5037:1 5050:1 5064:2 5081:1 5094:1 5101:1 5121:1 5130:1 5197:1 5207:1 5212:2 5216:1 5230:2 5231:1 5234:2 5236:1 5240:1 5255:1 5281:2 5309:4 5314:1 5315:1 5330:2 5398:1 5420:1 5422:1 5440:1 5445:1 5453:1 5467:1 5479:1 5510:1 5521:1 5535:2 5538:1 5565:3 5567:1 5568:1 5575:1 5576:1 5591:1 5623:1 5624:1 5632:1 5642:1 5643:1 5647:7 5680:2 5703:1 5725:2 5751:4 5763:1 5805:1 5828:1 5834:1 5838:1 5845:1 5849:1 5850:1 5860:2 5861:1 5897:1 5938:1 5954:1 5987:1 5991:3 5992:2 6006:1 6047:1 6055:1 6082:1 6092:1 6115:1 6129:2 6137:1 6210:1 6235:1 6238:1 6246:1 6254:3 6262:1 6265:1 6273:1 6275:1 6279:1 6287:1 6300:1 6345:2 6361:1 6385:1 6394:1 6398:1 6401:1 6430:1 6449:1 6453:1 6460:1 6477:1 6490:6 6498:2 6524:1 6534:1 6537:1 6538:1 6549:2 6552:1 6557:4 6564:1 6587:1 6599:1 6602:1 6604:1 6621:1 6626:1 6631:2 6641:1 6672:1 6686:1 6728:1 6806:1 6857:1 6864:1 6870:1 6876:3 6881:1 6894:2 6898:2 6912:1 6913:2 6935:1 6943:2 6951:1 6964:1 6969:1 6997:1 7027:1 7052:2 7067:3 7068:6 7081:1 7086:1 7090:3 7092:2 7093:1 7116:2 7117:2 7121:1 7136:22 7137:1 7140:2 7147:1 7155:4 7156:3 7162:2 7194:1 7201:1 7202:1 7211:1 7222:1 7224:1 7229:2 7230:2 7235:1 7242:1 7256:1 7276:1 7294:2 7300:1 7305:1 7326:1 7355:1 7356:3 7385:1 7390:1 7477:1 7523:1 7547:1 7558:1 7568:1 7576:1 7580:1 7592:1 7609:12 7618:1 7637:2 7642:1 7696:1 7698:1 7700:1 7706:1 7734:1 7744:2 7748:2 7751:1 7756:1 7771:1 7778:4 7784:2 7790:1 7812:2 7814:1 7836:1 7840:1 7850:1 7877:1 7886:1 7890:1 7945:1 7950:1 7952:1 7976:1 7989:3 8005:1 8008:1 8043:1 8049:1 8069:1 8073:1 8085:1 8113:1 8124:1 8153:1 8154:1 8164:1 8171:1 8197:1 8215:1 8228:1 8247:1 8250:1 8253:1 8254:1 8258:2 8282:2 8295:1 8306:1 8311:1 8331:1 8332:1 8345:1 8350:1 8351:1 8356:1 8358:1 8363:1 8370:4 8378:1 8407:3 8423:1 8445:1 8446:2 8460:2 8521:1 8525:2 8541:1 8544:1 8550:1 8552:1 8555:2 8600:1 8612:1 8620:1 8622:1 8632:1 8635:3 8658:1 8674:3 8698:1 8699:1 8728:1 8735:1 8756:2 8765:1 8786:1 8793:1 8833:1 8838:1 8853:6 8856:1 8885:1 8908:1 8926:1 8947:1 8953:1 8956:2 8958:1 8990:1 9020:1 9073:1 9090:1 9101:1 9113:1 9131:1 9132:1 9144:1 9155:1 9173:1 9178:1 9179:1 9216:1 9221:1 9222:1 9230:2 9243:2 9249:3 9251:1 9281:2 9300:1 9301:1 9332:1 9337:1 9348:1 9358:1 9361:3 9364:1 9388:1 9391:1 9396:7 9398:1 9402:1 9425:1 9439:1 9488:1 9491:2 9493:1 9524:1 9534:1 9536:1 9537:1 9540:1 9542:1 9550:1 9552:1 9555:2 9588:1 9601:4 9608:1 9610:1 9612:1 9617:1 9620:1 9626:1 9632:1 9642:3 9660:1 9681:1 9695:1 9703:1 9710:1 9713:2 9725:1 9732:1 9750:1 9764:1 9769:1 9775:2 9778:1 9791:1 9795:3 9802:1 9812:1 9820:1 9848:3 9849:1 9868:1 9869:1 9878:1 9916:1 9936:1 9946:3 9964:1 9972:1 9982:1 9993:2 10096:1 10118:1 10120:1 10136:1 10137:2 10145:2 10149:1 10156:1 10157:2 10158:5 10159:1 10168:1 10174:1 10177:1 10183:2 10188:1 10189:1 10195:1 10201:1 10213:1 10226:2 10234:1 10255:1 10257:1 10259:1 10294:1 10297:1 10312:1 10323:1 10326:1 10341:1 10412:1 10445:1 10474:1 10477:1 10500:1 10503:1 10518:1 10523:2 10528:1 10537:2 10539:1 10541:1 10556:2 10559:1 10572:1 10587:6 10611:1 10625:3 10636:2 10648:1 10675:1 10682:1 10693:1 10695:2 10696:1 10706:1 10724:1 10766:1 10783:1 10803:3 10805:1 10808:1 10821:1 10822:1 10840:1 10841:1 10851:1 10860:1 10874:3 10875:1 10880:2 10898:1 10934:2 10972:1 10983:1 10984:1 10998:1 11023:3 11043:1 11063:1 11071:1 11076:1 11081:1 11100:2 11150:1 11170:1 11175:1 11195:1 11201:1 11236:1 11244:1 11246:1 11251:3 11252:1 11253:1 11256:1 11267:1 11273:2 11279:1 11283:1 11285:1 11290:1 11335:1 11338:1 11357:1 11376:1 11393:1 11407:1 11439:1 11476:2 11494:1 11539:1 11550:1 11552:2 11553:1 11570:1 11606:1 11647:1 11658:1 11665:1 11705:5 11710:1 11719:1 11728:1 11747:1 11753:2 11779:1 11792:2 11798:1 11850:1 11858:1 11903:1 11923:1 11924:1 11930:1 11944:1 11963:1 11977:1 11982:2 12041:1 12060:1 12078:1 12082:1 12083:1 12085:2 12090:4 12101:1 12122:1 12138:1 12157:1 12161:1 12186:1 12193:1 12194:1 12221:1 12223:1 12225:1 12233:2 12236:1 12242:2 12247:1 12260:1 12272:1 12273:1 12283:1 12289:1 12301:6 12306:1 12308:1 12342:1 12343:1 12371:1 12397:1 12421:3 12446:4 12465:1 12475:1 12499:2 12515:1 12521:1 12525:1 12535:1 12537:1 12544:1 12558:2 12561:1 12565:1 12569:6 12570:1 12590:1 12595:1 12620:1 12685:1 12719:2 12756:1 12758:1 12767:1 12770:1 12773:2 12774:1 12794:1 12814:1 12821:1 12836:7 12857:2 12861:1 12867:1 12890:1 12909:1 12923:1 12934:1 12957:1 12983:1 12984:1 13017:1 13052:1 13063:1 13077:3 13091:1 13143:1 13199:1 13204:2 13205:1 13212:1 13222:1 13223:1 13229:1 13256:1 13265:1 13305:1 13327:1 13349:1 13361:2 13367:1 13375:3 13380:2 13430:2 13476:1 13477:1 13484:1 13513:1 13540:2 13552:1 13555:1 13558:2 13587:1 13589:1 13693:2 13762:1 13774:1 13776:1 13781:1 13794:1 13804:1 13806:1 13829:1 13922:1 13974:1 14004:1 14027:1 14032:1 14034:1 14047:1 14064:1 14071:1 14075:1 14096:1 14098:1 14113:1 14130:1 14134:1 14168:1 14217:1 14229:1 14252:1 14263:2 14266:1 14279:1 14302:1 14328:1 14332:1 14377:1 14391:1 14403:1 14413:1 14417:2 14420:1 14432:1 14446:1 14450:1 14475:1 14491:1 14497:1 14532:1 14550:2 14559:1 14570:1 14572:2 14600:2 14676:1 14683:1 14687:6 14704:1 14709:3 14738:1 14772:1 14783:1 14789:2 14796:2 14817:2 14821:1 14876:1 14883:1 14891:1 14892:1 14902:2 14928:1 14929:1 14946:1 14950:1 14954:1 14955:2 14956:2 14957:2 14958:1 14963:2 14965:1 14967:1 14968:2 14972:1 14973:1 15024:1 15060:1 15083:1 15087:1 15088:1 15109:1 15117:1 15119:1 15120:1 15162:1 15178:1 15198:1 15240:1 15250:1 15254:1 15262:1 15272:1 15274:1 15281:1 15282:1 15290:1 15294:3 15302:2 15321:1 15329:1 15334:1 15342:1 15353:1 15359:1 15367:1 15407:3 15408:1 15432:3 15437:1 15490:1 15497:2 15499:1 15507:1 15512:1 15525:1 15534:1 15538:1 15541:1 15596:3 15617:2 15622:1 15646:1 15661:2 15688:1 15703:1 15720:1 15722:1 15765:1 15768:1 15790:1 15799:1 15808:1 15814:1 15821:1 15845:1 15858:2 15862:1 15873:1 15889:1 15909:1 15930:1 15938:1 15979:1 15982:1 16000:1 16005:1 16027:1 16036:1 16041:1 16047:1 16054:3 16059:2 16064:1 16070:1 16071:1 16109:1 16116:1 16117:1 16128:1 16139:1 16140:1 16156:1 16189:1 16203:1 16204:1 16222:2 16244:1 16256:1 16257:1 16276:1 16279:1 16311:1 16312:1 16313:1 16339:1 16343:1 16344:1 16347:2 16379:1 16426:1 16439:1 16452:1 16514:1 16540:1 16542:1 16551:1 16570:2 16651:1 16657:2 16658:1 16674:1 16703:1 16721:1 16770:1 16787:1 16791:1 16805:1 16848:3 16906:1 16932:1 16954:7 16963:1 16964:1 16977:3 16990:1 16997:1 17001:1 17012:1 17048:3 17058:1 17068:1 17084:1 17087:1 17107:1 17112:2 17125:1 17126:2 17137:1220 17147:1 17151:1 17162:1 17188:1 17200:1 17201:1 17220:1 17251:1 17296:1 17311:1 17314:1 17321:1 17322:2 17341:1 17351:1 17359:1 17375:1 17407:1 17448:1 17453:2 17503:1 17534:2 17549:1 17551:1 17564:1 17573:1 17603:1 17608:1 17616:1 17636:1 17646:1 17655:1 17661:1 17670:1 17672:1 17691:2 17692:2 17708:2 17712:1 17716:1 17728:2 17752:1 17753:1 17761:1 17771:1 17777:2 17803:1 17818:1 17823:1 17846:2 17862:1 17891:1 17900:3 17905:1 17907:1 17914:1 17929:4 17942:1 17956:1 17968:1 17970:1 17975:1 18006:1 18009:1 18039:1 18046:1 18047:1 18079:1 18080:1 18088:1 18117:1 18130:1 18145:2 18147:1 18152:1 18153:1 18158:1 18182:1 18183:1 18187:1 18196:1 18203:1 18229:1 18237:1 18238:1 18279:1 18282:1 18288:2 18289:1 18335:1 18354:1 18363:1 18368:1 18369:1 18371:1 18388:1 18399:1 18405:1 18407:1 18409:1 18421:3 18430:1 18449:1 18462:1 18465:1 18466:1 18495:1 18504:1 18505:1 18510:1 18526:1 18531:1 18552:1 18553:1 18569:1 18577:2 18578:4 18592:2 18596:1 18612:1 18663:1 18678:1 18683:1 18695:1 18697:1 18701:1 18705:1 18738:1 18768:2 18787:1 18802:2 18807:1 18817:1 18828:1 18830:1 18840:1 18850:1 18865:6 18886:1 18916:1 18937:1 18973:1 18987:2 18999:1 19006:1 19011:1 19020:1 19057:3 19063:2 19066:1 19073:2 19081:1 19089:1 19116:2 19126:1 19149:1 19178:2 19198:3 19202:1 19207:1 19215:2 19227:3 19264:1 19277:1 19296:1 19302:1 19319:1 19327:1 19331:1 19337:2 19353:1 19358:2 19381:2 19401:1 19402:1 19403:1 19420:1 19427:2 19435:1 19447:1 19450:1 19460:1 19480:1 19481:1 19517:1 19519:1 19524:2 19525:2 19618:1 19656:1 19665:1 19667:1 19669:1 19687:1 19694:1 19699:2 19705:1 19746:1 19750:1 19768:1 19789:1 19791:1 19794:1 19796:2 19799:1 19811:1 19830:2 19833:1 19841:1 19851:1 19853:2 19874:3 19892:1 19902:1 19916:1 19929:1 19943:1 19948:1 19952:1 20000:1 20010:1 20019:1 20024:1 20034:2 20036:1 20046:1 20054:1 20056:1 20082:1 20083:1 20085:2 20087:1 20088:1 20114:1 20151:1 20171:3 20176:1 20178:1 20179:1 20181:1 20186:1 20189:1 20205:3 20218:1 20236:1 20244:2 20252:1 20269:1 20324:1 20344:1 20365:1 20368:1 20377:1 20396:1 20405:1 20409:1 20421:1 20425:3 20441:1 20446:1 20447:1 20463:1 20484:2 20487:1 20491:1 20492:4 20498:1 20503:1 20512:1 20513:2 20519:1 20525:1 20531:1 20547:1 20553:1 20575:6 20576:1 20589:1 20609:1 20624:1 20631:2 20632:1 20640:1 20649:1 20664:1 20687:1 20690:2 20717:1 20723:1 20726:3 20728:1 20735:3 20740:2 20753:1 20757:1 20773:1 20775:1 20794:1 20795:1 20800:2 20809:1 20827:1 20834:1 20846:1 20851:1 20866:1 20906:1 20921:1 20935:1 20936:1 20952:1 20957:2 20962:1 20970:3 20982:1 20996:1 21037:2 21040:1 21055:1 21085:1 21104:1 21128:2 21138:1 21139:1 21142:1 21175:3 21204:2 21269:1 21294:3 21297:1 21304:4 21314:2 21322:1 21328:1 21330:1 21344:1 21345:1 21358:1 21368:2 21413:1 21446:1 21463:1 21472:2 21502:1 21505:1 21510:1 21527:1 21537:1 21548:1 21549:1 21579:1 21584:1 21592:1 21605:1 21624:1 21625:1 21628:1 21641:1 21644:1 21650:1 21695:1 21696:3 21698:1 21701:1 21715:2 21716:1 21718:1 21722:1 21769:1 21779:1 21789:1 21853:1 21878:1 21884:1 21951:1 21953:1 21964:1 22008:1 22066:1 22084:1 22101:1 22113:1 22140:1 22165:2 22176:1 22213:4 22228:1 22259:1 22267:1 22270:1 22280:1 22287:1 22293:1 22317:3 22340:2 22341:1 22345:1 22425:1 22426:1 22451:1 22455:1 22461:1 22467:3 22479:1 22484:1 22518:2 22535:1 22536:1 22544:1 22551:1 22552:1 22557:1 22582:6 22609:1 22611:1 22636:1 22639:1 22643:3 22651:1 22667:1 22670:1 22756:1 22781:1 22787:1 22794:1 22809:2 22822:1 22826:1 22858:1 22863:1 22874:1 22901:1 22917:1 22918:1 22932:1 22941:2 22946:1 22952:2 22968:1 22974:1 23002:6 23026:1 23032:1 23033:1 23036:1 23045:1 23066:1 23067:1 23078:1 23098:2 23101:1 23105:2 23110:1 23111:1 23131:1 23133:1 23139:1 23143:1 23160:1 23166:1 23198:1 23220:3 23221:1 23240:1 23253:1 23280:1 23285:1 23308:1 23311:2 23314:1 23340:1 23359:1 23398:1 23407:1 23422:1 23426:2 23428:1 23437:1 23452:1 23473:1 23527:1 23534:1 23560:1 23564:2 23569:1 23579:1 23617:3 23629:1 23650:1 23688:1 23689:1 23698:1 23701:1 23715:1 23746:1 23777:1 23821:1 23826:1 23838:1 23853:1 23860:1 23928:1 23929:1 23945:1 23952:1 23953:1 23958:1 23988:1 24023:2 24030:1 24035:1 24058:1 24065:1 24074:1 24075:1 24094:7 24095:1 24105:1 24115:1 24151:2 24163:1 24165:1 24183:1 24199:1 24211:2 24215:3 24221:3 24224:2 24226:4 24228:1 24253:1 24337:1 24370:1 24380:1 24384:1 24386:1 24388:2 24415:4 24417:1 24418:1 24439:1 24442:1 24447:1 24467:1 24483:1 24531:1 24537:1 24553:1 24569:1 24634:1 24641:3 24653:1 24677:1 24684:1 24689:1 24690:1 24703:1 24707:1 24721:1 24746:1 24747:2 24758:2 24769:1 24785:1 24788:1 24849:1 24886:1 24912:1 24915:2 24922:1 24936:1 24938:2 24950:1 24961:1 24972:1 24974:1 24977:1 24985:1 24986:1 25013:1 25016:1 25032:1 25037:1 25077:3 25084:1 25098:1 25132:2 25137:1 25143:1 25148:1 25155:1 25163:1 25164:1 25172:1 25174:1 25193:1 25200:1 25201:1 25204:1 25205:1 25206:1 25210:1 25217:2 25229:1 25238:1 25243:1 25247:1 25279:1 25297:1 25318:1 25361:1 25404:1 25439:1 25444:1 25445:2 25459:1 25480:1 25487:1 25532:1 25563:1 25598:1 25613:1 25652:1 25660:1 25674:1 25680:1 25745:1 25759:1 25760:3 25766:1 25773:1 25775:1 25778:1 25790:1 25792:1 25799:1 25801:3 25813:1 25815:1 25828:1 25832:1 25836:2 25847:3 25860:1 25867:3 25883:1 25884:1 25886:1 25922:1 25924:1 25949:1 25963:1 25969:2 25971:4 25977:3 26008:4 26021:1 26034:1 26051:1 26064:1 26081:1 26120:1 26126:1 26131:1 26146:1 26158:1 26162:1 26164:1 26172:1 26173:2 26179:1 26196:3 26234:1 26245:5 26259:1 26308:3 26401:1 26488:1 26495:1 26497:1 26502:2 26504:1 26515:1 26516:1 26539:1 26552:1 26571:1 26611:3 26620:2 26648:1 26653:2 26668:1 26699:1 26715:1 26721:1 26727:1 26728:2 26760:1 26763:1 26767:2 26806:1 26825:1 26836:1 26844:1 26866:1 26868:3 26876:1 26892:1 26901:1 26903:1 26919:1 26940:1 26943:2 26961:1 26965:1 26966:1 26973:1 26974:1 26975:1 26978:1 27022:2
1 12:1 50:1 55:1 60:1 90:1 124:1 137:1 138:3 147:1 153:1 159:1 165:1 168:1 178:3 194:1 221:1 231:1 236:4 255:2 262:1 277:1 301:1 312:3 314:2 318:3 326:3 337:2 356:1 363:1 375:1 392:5 394:2 403:1 451:1 538:1 548:2 565:1 571:1 580:1 588:1 698:1 708:1 730:1 731:1 738:1 750:1 776:3 779:1 782:1 787:3 798:1 814:7 815:2 823:3 841:1 854:4 856:2 857:6 861:1 863:2 877:2 895:3 898:3 909:1 943:2 964:1 994:1 1011:1 1029:1 1100:3 1101:2 1107:1 1111:1 1118:1 1141:1 1145:1 1161:2 1184:1 1189:1 1215:1 1230:1 1243:1 1249:1 1253:1 1264:1 1275:1 1296:1 1300:1 1303:1 1319:1 1332:1 1340:1 1346:1 1352:1 1367:1 1371:1 1385:1 1411:3 1417:4 1420:2 1429:1 1450:1 1461:1 1467:1 1476:1 1480:1 1485:2 1498:2 1511:1 1513:1 1517:1 1526:1 1529:1 1545:1 1556:1 1560:1 1564:1 1570:1 1595:2 1615:3 1632:1 1636:1 1639:2 1642:1 1643:1 1645:1 1651:2 1653:5 1676:2 1678:2 1692:1 1713:1 1715:2 1721:1 1744:1 1757:1 1764:1 1765:1 1778:2 1821:1 1825:1 1845:2 1851:1 1854:1 1859:1 1862:1 1873:1 1902:1 1905:1 1920:1 1921:1 1924:1 1926:1 1929:1 1966:7 1970:1 1975:1 1979:1 2006:1 2025:2 2038:2 2040:1 2053:1 2056:1 2061:2 2078:1 2079:1 2084:2 2087:1 2090:1 2095:2 2096:2 2097:1 2099:1 2105:3 2107:2 2109:5 2111:2 2113:1 2123:1 2149:1 2152:1 2155:3 2172:1 2179:1 2190:1 2191:1 2208:1 2210:1 2243:1 2247:1 2262:1 2278:1 2287:1 2291:1 2297:1 2306:1 2325:1 2330:1 2334:1 2345:1 2347:1 2353:1 2356:2 2358:1 2361:4 2366:1 2367:1 2379:1 2382:1 2408:4 2410:1 2416:1 2430:2 2436:1 2437:1 2447:2 2452:1 2458:1 2460:4 2465:3 2474:1 2485:1 2490:3 2492:2 2503:1 2515:1 2516:2 2557:1 2561:1 2562:1 2563:2 2575:2 2577:1 2579:1 2583:3 2595:1 2639:1 2656:2 2664:1 2667:9 2689:2 2690:1 2695:1 2697:1 2706:1 2711:1 2731:5 2756:2 2758:2 2773:1 2826:1 2840:1 2841:4 2852:2 2856:1 2860:1 2902:1 2915:2 2923:1 2938:2 2956:2 2968:1 2991:1 3026:1 3027:1 3031:1 3048:6 3103:1 3152:1 3203:1 3210:1 3213:1 3252:1 3286:2 3291:1 3309:1 3315:10 3325:1 3328:2 3330:1 3331:1 3346:1 3350:1 3399:1 3400:1 3406:1 3407:1 3410:2 3414:1 3423:1 3470:1 3473:1 3480:1 3483:1 3486:1 3494:1 3506:1 3510:1 3513:2 3520:1 3523:1 3540:2 3560:2 3576:1 3581:2 3583:1 3587:1 3591:1 3600:2 3610:1 3611:2 3631:2 3652:2 3691:3 3692:3 3698:1 3730:1 3733:2 3737:1 3742:1 3759:1 3760:2 3787:1 3794:1 3813:1 3828:1 3845:2 3849:1 3853:1 3859:1 3863:1 3875:1 3882:1 3888:1 3898:1 3917:1 3952:6 3957:1 3977:1 3984:1 4003:1 4005:1 4018:1 4032:2 4038:1 4057:1 4064:2 4084:2 4097:1 4107:1 4116:1 4140:2 4160:1 4164:1 4167:1 4172:1 4173:2 4189:1 4201:1 4218:1 4226:1 4246:1 4275:2 4284:2 4294:1 4302:1 4307:1 4319:1 4344:1 4361:1 4369:2 4383:1 4386:1 4394:1 4403:1 4445:1 4488:7 4490:1 4499:1 4501:1 4502:1 4535:1 4546:1 4554:1 4625:1 4629:3 4631:2 4632:2 4634:1 4637:1 4638:1 4639:1 4643:1 4645:3 4646:2 4650:1 4651:2 4652:2 4659:3 4663:1 4701:1 4718:1 4737:2 4762:1 4776:1 4842:1 4877:1 4911:1 4916:1 4941:1 4945:1 4955:1 4985:1 5006:2 5018:1 5037:1 5050:1 5064:2 5075:1 5081:1 5094:1 5101:1 5121:1 5130:1 5197:1 5207:1 5212:2 5216:1 5230:2 5231:1 5234:2 5236:1 5239:1 5240:1 5255:1 5281:2 5309:4 5314:1 5315:1 5330:2 5398:1 5420:1 5422:1 5440:1 5445:1 5453:1 5467:1 5479:1 5510:1 5521:1 5535:2 5538:1 5565:3 5567:1 5568:1 5575:1 5576:1 5591:1 5623:1 5624:1 5632:1 5642:1 5643:1 5647:8 5680:2 5703:1 5725:2 5751:5 5763:1 5801:1 5805:1 5828:1 5834:1 5838:1 5844:1 5845:1 5849:1 5850:1 5852:1 5860:2 5861:1 5897:1 5904:1 5938:1 5954:1 5987:1 5991:3 5992:2 6006:1 6047:1 6055:1 6082:1 6092:1 6115:1 6129:2 6137:1 6162:1 6210:1 6235:1 6238:1 6246:1 6254:4 6262:1 6265:1 6273:1 6275:1 6279:1 6287:1 6300:1 6345:2 6361:1 6385:1 6394:1 6398:1 6401:2 6430:1 6449:1 6453:1 6460:1 6477:1 6490:6 6498:2 6524:1 6534:1 6537:1 6538:1 6549:2 6552:1 6557:4 6564:1 6587:1 6588:1 6599:1 6602:1 6604:1 6621:1 6626:1 6631:2 6641:1 6672:1 6686:1 6728:1 6806:1 6810:1 6857:1 6864:1 6870:1 6876:3 6881:1 6894:4 6898:2 6912:1 6913:2 6922:1 6935:1 6943:2 6951:1 6964:1 6969:1 6997:1 7027:1 7052:2 7067:3 7068:6 7081:1 7086:1 7090:3 7092:2 7093:1 7116:2 7117:2 7121:1 7136:24 7137:1 7140:2 7147:1 7155:5 7156:3 7162:2 7194:1 7201:1 7202:1 7211:1 7222:1 7224:1 7229:2 7230:2 7235:1 7242:1 7256:1 7276:1 7294:2 7300:1 7305:1 7326:1 7355:1 7356:3 7385:1 7390:1 7477:1 7507:1 7523:1 7547:1 7558:1 7568:1 7576:1 7580:1 7592:1 7609:12 7618:1 7637:2 7642:1 7696:1 7698:1 7700:1 7706:1 7734:1 7744:2 7748:2 7751:1 7756:1 7771:1 7778:4 7784:2 7790:1 7812:2 7814:1 7836:1 7840:1 7850:1 7877:1 7886:1 7890:1 7944:1 7945:1 7950:1 7952:1 7976:1 7989:3 8005:1 8008:1 8043:1 8049:1 8069:1 8073:1 8085:1 8113:1 8124:1 8153:1 8154:1 8163:1 8164:1 8171:1 8197:1 8215:1 8228:1 8247:1 8250:1 8253:1 8254:1 8258:2 8282:2 8289:1 8295:2 8306:1 8311:1 8331:1 8332:1 8345:1 8350:2 8351:1 8356:1 8358:1 8363:1 8370:4 8378:1 8407:3 8423:1 8445:1 8446:3 8460:2 8515:1 8521:1 8525:2 8541:1 8544:1 8550:1 8552:1 8555:2 8600:1 8612:1 8620:1 8622:1 8632:1 8635:3 8656:1 8658:1 8674:3 8698:1 8699:1 8728:1 8735:1 8756:2 8765:1 8786:1 8793:1 8820:1 8833:1 8838:1 8853:6 8856:1 8885:1 8904:1 8908:1 8926:1 8947:1 8953:1 8954:1 8956:2 8958:1 8990:1 9020:1 9022:1 9067:1 9073:1 9090:1 9101:2 9113:1 9131:1 9132:1 9144:1 9155:1 9173:1 9178:1 9179:1 9216:1 9221:1 9222:1 9230:2 9243:2 9249:3 9251:1 9281:2 9300:1 9301:1 9332:1 9337:1 9348:1 9358:1 9361:3 9364:1 9388:1 9391:1 9396:8 9398:1 9402:1 9425:1 9439:1 9488:1 9491:2 9493:1 9524:1 9534:1 9536:1 9537:1 9540:1 9542:1 9550:1 9552:1 9555:2 9588:1 9601:4 9608:1 9610:1 9612:1 9617:1 9620:1 9626:1 9632:1 9642:3 9660:1 9681:1 9695:1 9703:1 9710:1 9713:2 9725:1 9732:1 9750:1 9764:1 9769:1 9775:2 9778:2 9791:1 9795:3 9802:1 9812:1 9820:1 9848:3 9849:1 9868:1 9869:1 9878:1 9916:1 9926:1 9936:1 9946:3 9964:1 9972:1 9982:1 9993:2 10096:1 10118:1 10120:1 10136:1 10137:2 10141:1 10145:2 10149:1 10156:1 10157:2 10158:5 10159:1 10168:1 10174:1 10177:2 10183:3 10188:1 10189:1 10195:1 10201:2 10213:1 10226:2 10234:1 10255:1 10257:1 10259:1 10294:1 10297:1 10312:1 10323:1 10326:1 10341:1 10412:1 10426:1 10445:1 10474:1 10477:1 10500:1 10503:1 10518:1 10523:2 10526:1 10528:1 10537:2 10539:1 10541:1 10556:2 10559:1 10572:1 10587:7 10611:1 10625:3 10636:2 10648:1 10675:2 10682:2 10683:1 10693:1 10695:2 10696:1 10706:1 10724:1 10738:1 10766:1 10783:1 10803:3 10805:1 10808:1 10814:1 10821:1 10822:1 10827:1 10840:1 10841:1 10851:1 10860:1 10874:3 10875:1 10880:2 10898:1 10921:1 10934:2 10938:1 10972:1 10983:1 10984:1 10998:1 11023:4 11043:1 11063:1 11071:1 11076:1 11081:1 11100:2 11150:1 11170:1 11175:1 11195:1 11201:1 11236:1 11244:1 11246:1 11251:4 11252:1 11253:1 11256:1 11267:1 11273:2 11279:1 11283:1 11285:1 11290:1 11335:1 11338:1 11357:1 11376:1 11393:1 11407:1 11439:1 11476:2 11494:1 11527:1 11539:1 11550:1 11552:2 11553:1 11570:2 11606:1 11647:1 11658:1 11665:1 11705:6 11710:1 11719:1 11728:1 11747:1 11753:2 11779:1 11792:2 11798:1 11829:1 11850:1 11858:1 11903:1 11923:1 11924:1 11930:1 11944:1 11963:1 11977:1 11982:2 12041:1 12060:1 12078:1 12082:1 12083:1 12085:2 12090:4 12101:1 12122:1 12138:1 12157:1 12161:2 12186:1 12193:1 12194:1 12221:1 12223:1 12225:1 12233:2 12236:1 12242:2 12247:1 12260:1 12272:1 12273:1 12283:1 12289:1 12301:7 12306:1 12308:1 12342:1 12343:1 12371:1 12395:1 12397:1 12421:3 12441:1 12446:4 12465:1 12475:1 12499:2 12515:1 12521:1 12525:1 12533:1 12535:1 12537:1 12544:1 12551:1 12558:3 12561:1 12565:1 12569:6 12570:1 12590:1 12593:1 12595:1 12620:1 12685:1 12719:2 12756:1 12758:1 12767:1 12770:1 12773:2 12774:1 12794:1 12814:1 12821:1 12836:7 12857:2 12861:1 12867:1 12890:1 12909:1 12923:1 12934:1 12957:1 12983:1 12984:1 13017:1 13052:1 13063:1 13077:3 13091:1 13143:1 13175:1 13199:1 13200:1 13204:2 13205:1 13212:1 13222:1 13223:1 13229:1 13256:1 13265:2 13305:1 13327:1 13349:1 13361:2 13367:1 13375:3 13380:2 13428:1 13430:2 13476:1 13477:1 13484:1 13513:1 13540:2 13552:1 13555:1 13558:2 13587:1 13589:1 13643:1 13693:2 13712:1 13762:1 13774:1 13776:1 13781:1 13794:1 13804:1 13806:1 13829:1 13922:1 13974:1 14004:1 14027:1 14032:1 14034:1 14047:1 14064:1 14071:1 14075:1 14096:1 14098:1 14113:1 14130:1 14134:1 14168:1 14217:1 14229:1 14252:1 14263:2 14266:1 14279:1 14302:1 14328:1 14332:1 14377:1 14391:1 14403:2 14413:1 14417:2 14420:1 14432:1 14446:1 14450:1 14453:1 14475:1 14491:1 14497:1 14532:1 14550:2 14559:1 14570:1 14572:2 14600:2 14676:1 14683:1 14687:7 14704:1 14709:3 14738:1 14772:1 14783:1 14789:2 14796:2 14817:2 14821:1 14876:1 14883:1 14891:1 14892:1 14902:2 14928:1 14929:1 14946:1 14950:1 14954:1 14955:2 14956:2 14957:2 14958:1 14963:2 14965:1 14967:1 14968:2 14972:1 14973:1 14979:1 15024:1 15060:1 15083:1 15087:1 15088:1 15109:1 15117:1 15119:2 15120:1 15162:1 15178:1 15198:1 15217:1 15240:1 15250:1 15254:1 15262:1 15272:1 15274:1 15281:1 15282:1 15290:1 15294:3 15302:2 15321:1 15329:1 15334:1 15342:1 15353:1 15359:1 15367:1 15407:3 15408:1 15432:3 15437:1 15490:1 15497:2 15499:1 15507:1 15512:2 15525:1 15534:1 15538:1 15541:2 15575:1 15596:3 15617:2 15622:1 15646:1 15661:2 15688:1 15703:1 15705:1 15720:1 15722:1 15765:1 15768:1 15790:1 15799:1 15808:1 15814:1 15821:1 15845:1 15858:2 15862:1 15873:1 15889:1 15909:1 15930:1 15938:1 15979:1 15982:1 16000:1 16005:1 16027:1 16036:1 16041:1 16047:1 16054:3 16059:2 16064:1 16070:1 16071:1 16109:1 16116:1 16117:1 16128:1 16139:1 16140:1 16156:1 16189:1 16203:1 16204:1 16222:2 16244:1 16256:1 16257:1 16276:1 16279:1 16311:1 16312:1 16313:1 16339:1 16343:1 16344:1 16347:2 16379:1 16426:1 16439:1 16452:1 16514:1 16540:1 16542:1 16551:1 16570:2 16651:1 16657:2 16658:1 16674:1 16687:1 16703:1 16721:1 16770:1 16787:1 16791:1 16805:1 16848:3 16906:1 16932:1 16954:7 16963:1 16964:1 16977:3 16990:1 16997:1 17001:1 17012:1 17025:1 17048:4 17058:1 17068:1 17084:1 17087:1 17107:1 17112:2 17125:1 17126:2 17137:1310 17147:1 17151:1 17162:1 17188:1 17200:1 17201:1 17220:2 17251:1 17296:1 17307:1 17311:1 17314:1 17317:1 17321:1 17322:2 17341:1 17351:1 17359:1 17375:1 17407:1 17448:1 17453:2 17503:1 17534:2 17549:1 17551:1 17564:2 17573:1 17591:1 17603:1 17608:1 17616:1 17636:1 17642:2 17646:1 17655:1 17661:1 17670:1 17672:1 17691:2 17692:2 17708:2 17712:1 17716:1 17728:2 17752:1 17753:1 17761:1 17771:2 17777:2 17803:1 17818:1 17823:1 17824:1 17846:2 17862:1 17891:1 17900:3 17905:1 17907:1 17914:1 17929:4 17942:1 17956:1 17968:2 17970:1 17975:1 18006:1 18009:1 18038:1 18039:1 18046:1 18047:1 18077:1 18079:1 18080:1 18088:1 18117:1 18130:1 18145:2 18147:1 18152:1 18153:1 18158:1 18182:1 18183:1 18187:1 18196:1 18203:1 18229:1 18237:1 18238:1 18279:1 18282:1 18288:2 18289:1 18335:1 18354:1 18360:1 18363:1 18368:1 18369:1 18371:1 18388:1 18399:1 18405:1 18407:1 18409:1 18421:3 18430:1 18449:1 18462:1 18465:1 18466:1 18495:1 18504:1 18505:1 18510:1 18526:1 18531:1 18552:1 18553:1 18569:1 18577:2 18578:5 18586:1 18592:2 18596:1 18612:1 18663:1 18678:1 18683:1 18695:1 18697:1 18701:1 18705:1 18738:1 18768:2 18787:1 18802:2 18807:1 18817:1 18828:1 18830:1 18840:1 18850:1 18865:6 18886:1 18916:1 18937:1 18973:1 18987:2 18999:1 19006:1 19010:1 19011:1 19020:1 19057:3 19063:2 19066:1 19073:2 19081:1 19089:1 19116:2 19126:1 19149:1 19178:2 19198:3 19202:1 19207:1 19215:2 19227:3 19264:1 19277:1 19296:1 19302:1 19319:1 19327:1 19331:1 19337:2 19353:1 19358:2 19381:2 19401:1 19402:1 19403:1 19420:1 19427:2 19435:1 19441:1 19447:1 19450:1 19460:1 19480:1 19481:1 19517:1 19519:1 19524:2 19525:2 19618:1 19652:1 19656:1 19665:1 19667:1 19669:1 19687:1 19694:1 19699:2 19705:1 19746:1 19750:1 19768:1 19787:1 19789:1 19791:1 19794:1 19796:2 19799:1 19811:1 19830:2 19833:1 19841:1 19851:1 19853:2 19874:3 19892:2 19902:1 19916:1 19929:1 19943:1 19948:1 19952:1 20000:1 20010:1 20019:1 20024:1 20034:2 20036:1 20046:1 20054:1 20056:1 20082:1 20083:1 20085:2 20087:1 20088:1 20114:1 20151:1 20171:3 20176:1 20178:1 20179:1 20181:1 20186:1 20189:1 20194:1 20205:3 20218:1 20236:1 20244:2 20252:1 20269:1 20324:1 20344:1 20365:1 20368:1 20377:1 20396:1 20405:1 20409:1 20421:1 20425:3 20441:2 20446:1 20447:1 20463:1 20484:2 20487:1 20491:1 20492:4 20498:1 20503:1 20512:1 20513:3 20519:1 20525:1 20531:1 20547:1 20553:1 20575:6 20576:1 20589:1 20609:1 20624:1 20631:3 20632:1 20640:1 20649:1 20664:1 20687:1 20690:2 20717:1 20723:1 20726:3 20728:1 20735:3 20740:2 20753:1 20757:1 20773:1 20775:1 20794:1 20795:1 20800:2 20809:1 20827:1 20834:1 20846:1 20851:1 20866:1 20906:1 20921:1 20935:1 20936:1 20952:1 20957:2 20962:1 20970:3 20982:1 20996:1 21037:2 21040:1 21055:1 21056:1 21085:1 21086:1 21104:1 21128:2 21138:1 21139:1 21142:1 21175:3 21204:2 21269:1 21294:3 21297:1 21304:5 21314:2 21322:1 21328:1 21330:1 21344:1 21345:1 21358:1 21368:2 21413:1 21446:1 21463:1 21472:2 21502:1 21505:1 21510:1 21527:1 21537:1 21548:1 21549:1 21579:1 21584:1 21592:1 21605:1 21624:1 21625:1 21628:1 21641:1 21644:1 21650:1 21695:1 21696:3 21698:1 21701:1 21715:2 21716:1 21718:1 21722:1 21769:1 21779:1 21789:1 21853:1 21878:1 21884:1 21951:1 21953:1 21964:1 22008:1 22066:1 22084:1 22101:2 22113:1 22140:1 22165:2 22176:1 22213:4 22228:1 22233:1 22259:1 22261:1 22267:1 22270:1 22280:1 22287:1 22293:1 22317:3 22340:2 22341:1 22345:1 22425:1 22426:1 22451:1 22455:1 22461:1 22467:3 22479:2 22484:1 22518:3 22535:1 22536:1 22544:1 22551:1 22552:1 22557:1 22582:6 22609:1 22611:1 22618:1 22636:1 22639:1 22643:3 22651:1 22667:1 22670:1 22681:1 22756:1 22781:1 22787:1 22794:1 22800:1 22809:2 22822:1 22826:1 22858:1 22863:1 22874:1 22901:1 22917:1 22918:1 22932:1 22941:2 22946:1 22952:2 22968:1 22974:1 23002:6 23003:1 23026:1 23032:1 23033:1 23036:1 23045:1 23066:1 23067:1 23078:1 23098:2 23101:1 23105:2 23110:1 23111:1 23131:1 23133:1 23139:1 23143:1 23160:1 23166:1 23198:1 23220:3 23221:1 23240:1 23253:1 23280:1 23285:1 23286:1 23308:1 23311:2 23314:1 23340:1 23359:1 23398:1 23407:1 23422:1 23426:2 23428:1 23437:1 23448:1 23452:1 23473:1 23527:1 23534:1 23560:1 23564:2 23569:1 23579:1 23617:3 23629:1 23632:1 23650:2 23688:1 23689:1 23698:1 23701:1 23715:1 23746:1 23777:2 23821:1 23826:1 23838:1 23853:1 23860:1 23928:1 23929:1 23945:1 23952:1 23953:1 23958:1 23988:1 24023:2 24030:1 24035:1 24058:1 24065:1 24074:1 24075:1 24094:7 24095:2 24105:1 24115:1 24151:2 24163:1 24165:1 24183:1 24188:1 24199:1 24211:2 24215:3 24221:3 24224:2 24226:4 24228:1 24253:1 24300:1 24337:1 24350:1 24370:1 24380:1 24384:1 24386:1 24387:1 24388:2 24415:5 24417:1 24418:1 24439:1 24442:1 24447:1 24467:1 24483:1 24531:1 24537:1 24553:1 24569:1 24634:1 24635:1 24641:4 24652:1 24653:1 24677:1 24684:1 24689:1 24690:1 24703:1 24707:1 24721:1 24746:1 24747:2 24758:2 24769:1 24785:1 24788:1 24849:1 24886:1 24912:1 24915:3 24922:1 24936:1 24938:2 24950:1 24961:2 24972:1 24974:1 24977:1 24985:1 24986:1 25013:1 25016:1 25032:2 25037:1 25077:3 25084:1 25098:1 25132:2 25137:1 25143:1 25148:1 25155:1 25163:1 25164:1 25172:1 25174:1 25193:1 25200:1 25201:1 25204:1 25205:1 25206:1 25210:1 25217:2 25229:1 25238:1 25243:1 25247:1 25279:1 25297:1 25318:1 25361:1 25404:1 25439:1 25444:1 25445:2 25459:1 25480:1 25487:1 25492:1 25532:1 25563:1 25598:1 25613:1 25652:1 25660:1 25674:1 25680:1 25745:1 25759:1 25760:3 25766:1 25773:2 25775:1 25778:1 25790:1 25792:1 25799:1 25801:4 25813:1 25815:1 25828:1 25832:2 25836:2 25847:4 25860:1 25867:3 25883:2 25884:1 25886:1 25922:1 25924:1 25949:1 25963:1 25969:2 25971:4 25977:3 26008:4 26021:1 26034:1 26051:1 26064:1 26081:1 26114:1 26120:1 26126:1 26131:1 26146:1 26158:1 26162:1 26164:1 26172:1 26173:2 26179:1 26196:3 26234:1 26245:5 26259:1 26308:3 26401:1 26488:1 26495:1 26497:1 26502:2 26504:1 26515:1 26516:1 26539:1 26552:1 26571:1 26611:3 26620:2 26648:1 26653:2 26668:1 26699:1 26715:1 26721:1 26727:1 26728:2 26760:1 26763:1 26767:2 26806:1 26825:1 26836:1 26844:1 26866:1 26868:3 26876:1 26892:1 26901:1 26903:1 26919:1 26940:1 26943:2 26961:1 26965:1 26966:1 26973:1 26974:1 26975:1 26978:1 27022:3
1 12:1 34:1 50:1 55:1 60:1 90:1 124:1 137:1 138:3 147:1 153:1 159:1 165:1 168:1 178:4 194:1 221:1 231:1 236:4 255:2 262:1 277:1 301:1 312:3 314:2 318:3 326:3 333:1 337:2 356:1 363:1 375:1 392:5 394:2 403:1 451:1 538:1 548:2 565:1 571:1 580:1 588:1 698:1 708:1 730:1 731:1 738:1 750:1 776:4 779:1 782:1 787:3 798:1 814:7 815:2 823:3 841:1 854:4 856:2 857:6 859:1 861:1 863:2 877:2 895:3 898:3 909:1 943:2 964:1 994:1 1011:1 1029:1 1100:3 1101:2 1107:1 1111:1 1118:1 1141:1 1145:1 1161:2 1184:2 1189:1 1215:1 1230:1 1243:1 1249:1 1253:1 1264:1 1275:1 1296:1 1300:1 1301:1 1303:1 1319:1 1332:1 1340:1 1346:1 1352:1 1367:1 1371:1 1385:1 1411:4 1417:5 1420:2 1429:1 1450:1 1461:1 1467:1 1476:1 1480:1 1485:2 1498:2 1511:1 1513:1 1517:1 1526:1 1529:1 1545:1 1556:1 1560:1 1564:1 1570:1 1595:2 1615:4 1632:1 1636:1 1639:2 1642:1 1643:1 1645:1 1651:2 1653:5 1676:2 1678:2 1692:1 1710:1 1713:1 1715:2 1721:1 1744:1 1757:1 1764:1 1765:1 1778:2 1821:1 1825:1 1845:2 1851:1 1854:1 1859:1 1862:1 1873:1 1902:1 1905:1 1920:1 1921:1 1924:1 1926:1 1929:1 1966:7 1970:1 1975:1 1979:1 2006:1 2025:2 2038:2 2040:1 2053:1 2056:1 2061:2 2078:1 2079:1 2084:2 2087:1 2090:1 2095:2 2096:2 2097:1 2099:1 2105:3 2107:2 2109:5 2111:2 2113:1 2123:1 2131:1 2149:1 2152:1 2155:3 2172:1 2179:1 2190:1 2191:1 2200:1 2208:1 2210:1 2243:1 2247:1 2262:1 2278:1 2287:1 2291:1 2297:1 2306:1 2325:1 2330:1 2334:1 2345:1 2347:1 2353:1 2356:2 2358:1 2361:5 2366:1 2367:1 2379:1 2382:1 2408:4 2410:1 2416:1 2430:2 2436:1 2437:1 2447:3 2452:1 2458:1 2460:4 2465:3 2474:1 2485:1 2490:3 2492:2 2503:1 2515:1 2516:2 2557:1 2561:1 2562:1 2563:2 2575:2 2577:1 2579:1 2583:3 2590:1 2595:1 2639:1 2656:2 2664:1 2667:9 2689:2 2690:1 2695:1 2697:1 2706:1 2711:1 2731:6 2756:2 2758:2 2773:1 2826:1 2840:1 2841:4 2852:2 2856:1 2860:1 2902:1 2904:1 2908:1 2915:2 2923:1 2938:2 2956:2 2968:1 2991:1 2992:1 3026:1 3027:1 3031:1 3034:1 3048:6 3103:1 3152:1 3203:1 3210:1 3213:1 3252:1 3286:2 3291:1 3309:1 3315:10 3325:1 3328:2 3330:1 3331:1 3346:1 3350:1 3399:1 3400:1 3406:1 3407:1 3410:2 3414:1 3423:1 3470:1 3473:1 3480:1 3483:1 3486:1 3488:1 3494:1 3506:1 3510:1 3513:2 3520:1 3523:1 3540:2 3560:2 3576:1 3581:2 3583:1 3587:1 3591:1 3600:2 3610:1 3611:2 3631:2 3652:2 3691:3 3692:3 3698:1 3730:1 3733:2 3737:1 3742:1 3759:1 3760:2 3787:1 3794:1 3813:1 3828:1 3845:2 3849:1 3853:1 3859:1 3863:1 3875:1 3882:1 3888:1 3898:1 3917:1 3952:7 3957:1 3977:2 3984:1 3993:1 4003:1 4005:1 4018:1 4032:2 4038:1 4057:1 4064:2 4084:2 4097:1 4107:1 4116:1 4140:2 4160:1 4164:1 4167:1 4172:1 4173:2 4189:1 4201:1 4218:1 4226:1 4246:1 4249:1 4275:2 4284:2 4294:1 4302:2 4307:1 4319:1 4344:1 4361:1 4369:2 4383:2 4386:1 4394:1 4403:1 4445:1 4467:1 4488:7 4490:1 4499:1 4501:1 4502:1 4535:1 4546:1 4554:1 4625:1 4629:3 4631:2 4632:2 4634:1 4637:1 4638:1 4639:1 4643:1 4645:3 4646:3 4650:1 4651:2 4652:2 4659:3 4663:1 4701:1 4718:1 4737:2 4762:1 4767:1 4776:1 4842:1 4877:1 4911:1 4916:1 4941:1 4945:1 4955:1 4985:1 5006:2 5018:1 5037:1 5050:1 5064:2 5075:1 5081:1 5094:1 5101:1 5121:1 5130:1 5197:1 5207:1 5212:2 5216:1 5230:2 5231:1 5234:2 5236:1 5239:1 5240:1 5255:1 5281:2 5292:1 5309:4 5314:1 5315:1 5330:2 5398:1 5420:1 5422:1 5440:1 5445:1 5453:1 5467:1 5479:1 5510:1 5521:1 5535:2 5538:1 5565:3 5567:1 5568:1 5575:1 5576:1 5591:1 5623:1 5624:1 5632:1 5642:1 5643:1 5647:9 5680:2 5703:1 5715:1 5725:2 5735:1 5751:5 5763:1 5801:1 5805:1 5828:1 5834:1 5838:1 5844:1 5845:1 5849:1 5850:1 5852:1 5860:3 5861:1 5897:1 5904:1 5938:1 5954:1 5987:1 5991:3 5992:2 6006:1 6047:1 6055:1 6082:1 6092:1 6115:1 6129:2 6137:1 6162:1 6210:1 6235:1 6238:1 6246:1 6254:6 6262:1 6265:1 6273:1 6275:1 6279:1 6287:1 6300:1 6345:2 6361:1 6385:1 6394:1 6398:1 6401:2 6430:1 6449:1 6453:1 6460:1 6477:1 6490:6 6498:2 6524:1 6534:1 6537:1 6538:1 6549:2 6550:1 6552:1 6557:4 6560:1 6564:1 6587:1 6588:1 6599:1 6602:1 6604:1 6621:1 6626:1 6631:2 6641:1 6658:1 6672:1 6686:1 6728:1 6806:1 6810:1 6857:1 6864:1 6870:1 6876:3 6881:1 6894:4 6898:2 6912:1 6913:2 6922:1 6935:1 6943:2 6951:1 6964:1 6969:1 6997:1 7027:1 7052:2 7067:3 7068:6 7081:1 7086:1 7090:3 7092:2 7093:1 7116:2 7117:2 7121:1 7136:24 7137:1 7140:2 7147:1 7155:5 7156:3 7162:2 7194:1 7201:1 7202:1 7211:1 7222:1 7224:1 7229:2 7230:2 7235:1 7242:1 7256:1 7276:1 7294:2 7300:1 7305:1 7326:1 7355:1 7356:3 7385:1 7390:1 7477:1 7507:1 7517:1 7523:1 7547:1 7558:1 7568:1 7576:1 7580:1 7592:1 7609:14 7618:1 7637:2 7642:1 7644:1 7696:1 7698:1 7700:1 7706:1 7734:1 7744:2 7748:2 7751:1 7756:1 7771:1 7778:4 7784:2 7790:1 7812:2 7814:1 7836:1 7840:1 7850:1 7877:1 7886:1 7890:1 7944:1 7945:1 7950:1 7952:1 7976:1 7989:3 8005:1 8008:2 8043:1 8049:1 8069:1 8073:1 8085:1 8113:1 8124:1 8153:1 8154:1 8163:1 8164:1 8171:1 8197:1 8215:1 8228:1 8247:1 8250:1 8253:1 8254:1 8258:2 8282:2 8289:1 8295:2 8306:1 8311:1 8331:1 8332:1 8345:1 8350:3 8351:1 8356:1 8358:1 8363:1 8370:4 8378:1 8407:3 8423:1 8445:1 8446:4 8460:2 8515:1 8521:1 8525:2 8541:1 8544:1 8550:1 8552:1 8555:2 8600:1 8612:1 8620:1 8622:1 8632:1 8635:3 8656:1 8658:2 8674:3 8698:1 8699:1 8728:1 8735:1 8741:1 8756:2 8765:1 8786:1 8793:1 8820:1 8833:1 8838:1 8846:1 8853:6 8856:1 8885:2 8904:1 8908:1 8926:1 8947:1 8953:1 8954:1 8956:2 8958:1 8990:1 9020:1 9022:1 9067:2 9073:1 9090:1 9101:2 9113:1 9131:1 9132:1 9144:1 9155:1 9172:1 9173:1 9178:1 9179:1 9216:1 9221:1 9222:1 9230:4 9243:2 9249:3 9251:1 9281:2 9300:1 9301:1 9332:1 9337:2 9348:1 9358:1 9361:3 9364:1 9388:1 9391:1 9396:9 9398:1 9402:1 9425:1 9439:1 9488:1 9491:2 9493:1 9524:1 9534:1 9536:1 9537:1 9540:1 9542:1 9550:1 9552:1 9555:2 9588:1 9601:4 9608:1 9610:1 9612:1 9617:1 9620:1 9626:1 9632:1 9642:3 9660:1 9681:1 9695:1 9703:1 9710:1 9713:2 9725:1 9732:1 9750:1 9764:1 9769:1 9775:2 9778:2 9791:1 9795:3 9802:1 9812:1 9820:1 9834:1 9848:3 9849:1 9868:1 9869:1 9878:3 9916:1 9926:2 9936:1 9946:3 9964:1 9972:1 9982:1 9993:2 10096:1 10118:1 10120:1 10136:1 10137:2 10141:1 10145:2 10149:1 10156:1 10157:4 10158:5 10159:1 10168:1 10174:2 10177:2 10183:3 10188:1 10189:1 10195:1 10201:2 10213:1 10226:2 10234:1 10255:1 10257:1 10259:1 10294:1 10297:1 10312:1 10323:1 10326:1 10341:1 10412:1 10426:1 10445:1 10474:1 10477:1 10500:1 10503:1 10518:1 10523:2 10526:1 10528:1 10537:2 10539:1 10541:1 10556:2 10559:1 10572:1 10587:8 10588:1 10611:1 10625:3 10636:2 10648:1 10675:2 10682:2 10683:1 10690:1 10693:1 10695:2 10696:1 10706:1 10724:1 10738:1 10766:1 10783:1 10803:3 10805:1 10808:1 10814:1 10821:1 10822:1 10827:1 10828:1 10840:1 10841:1 10851:1 10860:1 10864:1 10874:3 10875:1 10880:2 10898:1 10921:1 10934:2 10938:1 10972:1 10983:1 10984:1 10998:1 11023:5 11043:1 11063:1 11071:1 11076:1 11081:1 11100:2 11129:1 11150:1 11170:1 11175:1 11195:1 11201:1 11236:1 11244:1 11246:1 11251:4 11252:1 11253:1 11256:1 11267:1 11273:2 11279:1 11283:1 11285:1 11290:1 11335:1 11338:1 11357:1 11376:1 11393:1 11407:1 11413:1 11439:1 11476:2 11494:1 11527:1 11539:1 11550:1 11552:2 11553:1 11570:2 11606:1 11647:1 11658:1 11665:1 11705:6 11710:1 11719:1 11723:1 11728:1 11747:1 11753:2 11779:1 11792:2 11798:1 11829:1 11850:1 11858:1 11903:1 11923:1 11924:1 11930:1 11944:1 11963:1 11977:1 11982:2 12041:1 12060:1 12078:1 12082:1 12083:1 12085:2 12090:4 12101:1 12122:1 12138:2 12157:1 12161:2 12186:1 12193:1 12194:1 12221:1 12223:1 12225:1 12233:3 12236:1 12242:2 12247:1 12260:1 12272:1 12273:1 12283:1 12289:1 12301:7 12306:1 12308:1 12342:1 12343:1 12350:1 12371:1 12384:1 12395:1 12397:1 12421:3 12441:1 12446:4 12465:1 12475:1 12499:2 12515:1 12521:1 12525:1 12533:1 12535:1 12537:1 12544:1 12551:1 12558:3 12561:1 12565:1 12569:6 12570:1 12590:1 12593:1 12595:1 12620:1 12675:1 12685:1 12719:2 12756:1 12758:1 12767:1 12770:1 12773:2 12774:1 12778:1 12794:1 12814:1 12821:1 12836:7 12857:2 12861:1 12867:1 12890:1 12909:1 12923:1 12934:1 12957:1 12983:1 12984:1 13017:1 13052:1 13063:1 13077:3 13091:1 13143:1 13175:1 13199:1 13200:1 13204:2 13205:1 13212:1 13222:1 13223:1 13229:1 13256:1 13265:2 13305:1 13327:1 13349:1 13361:2 13367:1 13375:3 13380:2 13428:1 13430:2 13476:1 13477:1 13484:1 13506:1 13513:1 13540:2 13552:1 13555:1 13558:2 13587:1 13589:1 13643:1 13693:2 13712:1 13762:1 13774:1 13776:1 13781:1 13794:1 13804:1 13806:1 13829:1 13900:1 13922:1 13974:1 14004:1 14027:1 14032:1 14034:1 14047:1 14064:1 14071:1 14075:1 14096:1 14098:1 14113:1 14130:1 14134:1 14168:1 14217:1 14229:1 14252:1 14263:2 14266:1 14279:1 14302:1 14328:1 14332:1 14377:1 14391:1 14403:2 14413:1 14417:2 14420:1 14432:1 14446:1 14450:1 14453:1 14475:1 14491:1 14497:1 14532:1 14550:2 14559:1 14570:1 14572:2 14600:2 14676:1 14683:1 14687:7 14704:1 14709:3 14738:1 14772:1 14783:1 14789:2 14796:2 14817:2 14821:1 14832:1 14876:1 14883:1 14891:1 14892:1 14902:2 14928:1 14929:1 14946:1 14950:1 14954:2 14955:2 14956:2 14957:2 14958:1 14963:2 14965:1 14967:1 14968:2 14972:1 14973:1 14975:1 14979:1 14987:1 15024:1 15060:1 15083:1 15087:1 15088:1 15109:1 15117:1 15119:2 15120:1 15162:1 15169:1 15178:1 15198:1 15217:1 15240:1 15250:1 15254:1 15262:1 15272:1 15274:1 15281:1 15282:1 15290:1 15294:3 15302:2 15316:1 15321:1 15329:1 15334:1 15342:1 15353:1 15359:1 15367:1 15407:3 15408:1 15432:3 15437:1 15490:1 15491:1 15497:2 15499:1 15507:1 15512:2 15525:1 15534:1 15538:1 15541:2 15575:2 15596:3 15617:2 15622:1 15646:1 15661:2 15688:1 15703:1 15705:1 15720:1 15722:1 15731:1 15765:1 15768:1 15790:1 15799:1 15808:1 15814:1 15821:1 15845:1 15858:2 15862:1 15873:1 15889:1 15909:1 15930:1 15938:1 15979:1 15982:1 16000:1 16005:1 16027:1 16036:1 16041:1 16047:1 16054:3 16059:2 16060:2 16064:1 16070:1 16071:1 16109:1 16112:1 16116:1 16117:1 16128:1 16139:1 16140:1 16156:1 16189:1 16203:1 16204:1 16222:2 16236:1 16244:1 16256:1 16257:1 16276:1 16279:1 16311:1 16312:1 16313:1 16339:1 16343:1 16344:1 16347:2 16379:1 16426:1 16439:1 16452:1 16466:1 16514:1 16540:1 16542:1 16551:1 16570:2 16651:1 16657:2 16658:1 16674:1 16687:1 16703:1 16721:1 16770:1 16787:1 16791:1 16805:1 16848:3 16906:1 16932:1 16954:9 16963:2 16964:1 16977:3 16990:1 16997:1 17001:1 17012:1 17025:1 17048:4 17058:1 17068:1 17084:1 17087:1 17107:1 17112:2 17125:1 17126:2 17137:1363 17147:1 17151:1 17162:1 17188:1 17200:1 17201:1 17220:2 17251:1 17296:1 17307:1 17311:1 17314:1 17317:1 17321:1 17322:2 17341:1 17351:1 17359:1 17375:1 17407:1 17448:1 17453:2 17503:1 17534:2 17549:1 17551:1 17564:2 17573:1 17591:1 17603:1 17608:1 17616:1 17636:1 17642:2 17646:1 17655:1 17661:1 17670:1 17672:1 17691:2 17692:2 17708:2 17712:1 17716:1 17728:2 17752:2 17753:1 17761:1 17771:2 17777:2 17803:1 17818:1 17823:1 17824:1 17846:2 17862:1 17891:1 17900:3 17905:1 17907:1 17914:1 17929:4 17938:1 17942:1 17956:1 17968:2 17970:1 17975:1 18006:1 18009:1 18038:1 18039:1 18046:1 18047:1 18077:1 18078:1 18079:1 18080:1 18088:1 18117:1 18130:1 18145:2 18147:1 18152:1 18153:1 18158:1 18182:1 18183:1 18187:1 18196:1 18203:1 18229:1 18237:1 18238:1 18279:1 18282:1 18288:2 18289:1 18335:1 18354:1 18360:1 18363:1 18368:1 18369:1 18371:1 18388:1 18399:1 18405:2 18407:1 18409:1 18421:4 18430:2 18449:1 18462:1 18465:1 18466:1 18495:1 18504:1 18505:1 18510:1 18526:1 18531:1 18552:1 18553:1 18569:1 18577:2 18578:6 18579:1 18586:1 18592:2 18596:1 18612:1 18663:1 18678:1 18683:1 18695:1 18697:1 18701:1 18705:1 18738:1 18768:2 18787:1 18789:1 18802:2 18807:1 18817:1 18828:1 18830:1 18840:1 18850:1 18865:6 18886:1 18916:1 18937:1 18973:1 18987:3 18999:1 19002:1 19006:1 19010:1 19011:1 19020:1 19057:3 19063:2 19066:1 19073:2 19081:1 19089:2 19116:2 19126:1 19149:1 19178:2 19198:3 19202:1 19207:1 19215:2 19227:3 19258:1 19264:1 19277:1 19296:1 19302:1 19319:1 19321:1 19327:1 19331:1 19337:2 19353:1 19358:2 19381:2 19392:1 19393:1 19401:1 19402:1 19403:1 19420:1 19427:2 19435:1 19441:1 19447:1 19450:1 19460:1 19480:1 19481:1 19517:1 19519:1 19524:2 19525:2 19618:1 19652:1 19656:1 19665:1 19667:1 19669:1 19687:1 19694:1 19699:2 19705:1 19746:1 19750:1 19768:1 19787:1 19789:1 19791:1 19794:1 19796:2 19799:1 19811:1 19825:1 19830:2 19833:1 19841:1 19851:1 19853:2 19874:3 19892:2 19902:1 19916:1 19929:1 19943:1 19948:1 19952:1 20000:1 20010:1 20019:1 20024:1 20034:2 20036:1 20046:2 20054:1 20056:1 20082:1 20083:1 20085:2 20087:1 20088:1 20114:1 20151:1 20171:3 20176:1 20178:1 20179:1 20181:1 20186:1 20189:1 20194:2 20205:3 20218:1 20236:1 20244:2 20252:1 20255:1 20269:1 20324:1 20338:1 20344:1 20365:1 20368:1 20377:1 20396:1 20405:1 20409:1 20421:1 20425:3 20440:1 20441:2 20446:1 20447:2 20463:1 20484:2 20487:1 20491:1 20492:4 20498:1 20503:1 20512:1 20513:3 20519:1 20525:1 20531:1 20547:1 20553:1 20575:6 20576:1 20589:1 20609:1 20624:1 20631:3 20632:1 20640:1 20649:1 20664:1 20687:1 20690:2 20717:1 20723:1 20726:3 20728:1 20735:3 20740:2 20753:1 20757:1 20773:1 20775:1 20794:1 20795:1 20800:2 20809:1 20815:1 20827:1 20834:1 20846:1 20851:1 20866:1 20906:1 20921:1 20935:1 20936:1 20952:1 20957:2 20962:1 20970:3 20982:1 20996:1 21037:2 21040:1 21055:1 21056:1 21084:1 21085:1 21086:1 21104:1 21128:2 21138:1 21139:1 21142:1 21175:3 21204:2 21269:1 21294:3 21297:1 21304:5 21314:2 21322:1 21328:1 21330:2 21344:1 21345:1 21358:1 21368:2 21406:1 21413:1 21446:1 21463:1 21472:2 21502:1 21505:1 21510:1 21527:1 21537:1 21548:1 21549:1 21579:1 21584:2 21592:1 21605:1 21624:2 21625:1 21628:1 21641:1 21644:1 21650:1 21695:1 21696:3 21698:1 21701:1 21715:2 21716:1 21718:1 21722:1 21769:1 21779:1 21789:1 21853:1 21878:1 21884:1 21951:1 21953:1 21964:1 22008:1 22066:1 22084:1 22101:2 22113:1 22140:1 22165:2 22176:1 22186:1 22213:5 22228:1 22233:1 22259:1 22261:1 22267:1 22270:2 22280:1 22287:1 22293:1 22317:3 22319:1 22340:2 22341:1 22345:1 22425:1 22426:1 22451:1 22455:1 22461:1 22467:3 22479:2 22484:1 22518:3 22535:1 22536:1 22544:1 22551:1 22552:1 22557:1 22582:6 22609:1 22611:1 22618:1 22636:1 22639:1 22643:3 22651:1 22667:1 22670:1 22681:1 22756:1 22781:1 22787:1 22794:1 22800:1 22809:2 22817:1 22822:1 22826:1 22858:1 22863:1 22874:1 22901:1 22917:1 22918:1 22932:1 22941:2 22946:1 22952:2 22957:1 22968:1 22974:1 23002:6 23003:1 23026:1 23032:1 23033:1 23036:1 23045:1 23066:1 23067:1 23078:1 23085:1 23098:2 23101:1 23105:2 23110:1 23111:1 23131:1 23133:1 23139:1 23143:1 23160:1 23166:1 23198:1 23220:3 23221:1 23240:1 23253:1 23280:1 23285:2 23286:1 23308:1 23311:2 23314:1 23340:1 23359:1 23398:1 23407:1 23422:1 23426:2 23428:1 23437:1 23448:1 23452:1 23473:1 23527:1 23534:1 23560:1 23564:2 23569:2 23579:1 23617:3 23629:1 23632:1 23650:2 23688:1 23689:1 23698:1 23701:1 23715:1 23746:1 23777:2 23821:1 23826:1 23838:1 23853:1 23860:1 23919:1 23928:1 23929:1 23945:1 23952:1 23953:1 23958:1 23988:1 24023:2 24030:1 24035:1 24058:1 24065:1 24074:1 24075:1 24094:9 24095:2 24105:1 24115:1 24151:2 24163:1 24165:1 24183:1 24188:1 24199:1 24211:3 24215:3 24221:3 24224:2 24226:4 24228:1 24253:1 24300:1 24337:1 24340:1 24350:1 24370:1 24380:1 24384:1 24386:1 24387:1 24388:2 24415:6 24417:1 24418:1 24425:1 24439:1 24442:1 24447:1 24467:1 24483:1 24531:1 24537:1 24553:1 24569:1 24634:1 24635:1 24641:5 24652:1 24653:1 24677:1 24684:1 24689:1 24690:1 24703:1 24707:1 24711:1 24721:1 24746:1 24747:2 24758:2 24769:1 24785:1 24788:1 24797:1 24849:1 24886:1 24895:1 24912:1 24915:3 24918:1 24921:1 24922:1 24936:1 24938:2 24950:1 24961:2 24972:1 24974:1 24977:1 24985:1 24986:1 25013:1 25016:1 25032:2 25037:1 25077:3 25081:1 25084:1 25098:1 25132:2 25137:1 25143:1 25148:1 25155:1 25163:1 25164:1 25172:1 25174:1 25193:1 25200:1 25201:1 25204:1 25205:1 25206:1 25210:1 25217:2 25229:1 25238:1 25243:1 25247:1 25279:1 25297:1 25318:1 25361:1 25404:1 25439:1 25444:1 25445:2 25459:1 25480:1 25487:1 25492:1 25532:1 25563:1 25598:1 25613:1 25652:1 25660:1 25674:2 25680:1 25742:1 25745:1 25759:1 25760:3 25766:1 25773:2 25775:1 25778:1 25790:1 25792:1 25799:1 25801:4 25813:1 25815:1 25828:1 25832:2 25836:2 25845:1 25847:4 25860:1 25867:3 25883:3 25884:1 25886:1 25922:1 25924:1 25949:1 25963:1 25969:2 25971:4 25977:3 26008:4 26021:1 26034:1 26051:1 26064:1 26081:1 26114:1 26120:1 26126:1 26131:1 26146:1 26158:1 26162:1 26164:1 26172:1 26173:2 26179:1 26182:1 26196:3 26234:1 26245:5 26252:1 26259:1 26308:3 26401:1 26488:1 26495:1 26497:1 26502:2 26504:2 26515:1 26516:1 26539:1 26552:1 26571:1 26611:3 26620:2 26648:2 26653:2 26668:1 26699:1 26715:1 26721:1 26727:1 26728:2 26760:1 26763:1 26767:2 26784:1 26806:1 26825:1 26836:1 26844:1 26866:1 26868:3 26876:1 26892:1 26901:1 26903:1 26919:1 26940:1 26943:2 26961:1 26965:1 26966:2 26973:1 26974:1 26975:1 26978:1 27022:3
1 12:1 34:1 50:1 55:1 60:1 90:1 108:1 124:1 137:1 138:3 147:1 153:1 159:1 165:1 168:2 178:4 194:1 221:1 231:1 236:5 255:2 262:1 277:1 301:1 312:3 314:2 318:3 326:3 333:1 337:2 356:1 363:1 375:1 392:5 394:2 403:1 451:1 518:1 538:1 548:2 554:1 565:1 571:1 573:1 580:1 588:1 698:1 708:1 730:2 731:1 738:1 750:1 776:4 779:1 782:1 787:3 798:1 814:7 815:2 823:3 841:1 854:4 856:2 857:6 859:1 861:1 863:2 877:2 895:3 898:3 909:1 943:2 964:1 994:1 1011:1 1029:1 1100:3 1101:2 1107:1 1111:1 1118:1 1141:1 1145:1 1161:2 1178:1 1184:2 1189:1 1215:1 1230:1 1243:1 1249:1 1253:1 1264:1 1275:1 1296:1 1300:1 1301:1 1303:1 1319:1 1332:1 1340:1 1346:1 1352:1 1361:1 1367:1 1371:1 1385:1 1411:4 1417:5 1420:2 1429:1 1450:1 1461:1 1467:1 1476:1 1480:1 1485:2 1498:2 1511:1 1513:1 1517:1 1526:1 1529:1 1545:1 1556:1 1560:1 1564:1 1570:1 1595:2 1615:4 1626:1 1632:1 1636:1 1639:2 1642:1 1643:1 1645:1 1651:2 1653:5 1676:3 1678:2 1692:1 1710:1 1713:1 1715:3 1721:1 1744:1 1757:1 1764:1 1765:1 1778:2 1821:1 1825:1 1845:2 1851:1 1854:1 1859:1 1862:2 1873:1 1902:1 1905:1 1920:1 1921:1 1924:1 1926:2 1929:1 1966:7 1970:1 1975:1 1979:1 2006:1 2025:2 2038:3 2040:1 2053:1 2056:1 2061:2 2078:2 2079:1 2084:3 2087:1 2090:1 2095:2 2096:2 2097:1 2099:1 2105:3 2107:2 2109:5 2111:2 2113:1 2123:1 2131:1 2149:1 2152:1 2155:3 2172:1 2179:1 2190:1 2191:1 2200:1 2208:1 2210:1 2243:1 2247:1 2262:1 2278:1 2287:1 2291:1 2297:1 2306:1 2317:1 2325:1 2330:1 2334:1 2345:1 2347:1 2353:2 2356:2 2358:1 2361:5 2366:1 2367:1 2379:1 2382:1 2408:4 2410:1 2416:1 2430:2 2436:1 2437:1 2447:3 2452:1 2458:1 2460:5 2465:4 2474:1 2485:1 2490:3 2492:2 2503:1 2515:1 2516:2 2557:1 2561:1 2562:1 2563:2 2575:2 2577:1 2579:1 2583:3 2590:1 2595:1 2639:1 2656:2 2664:1 2667:9 2689:2 2690:1 2694:1 2695:1 2697:1 2706:1 2711:2 2731:7 2756:2 2758:2 2773:1 2826:1 2840:1 2841:4 2852:2 2856:1 2860:1 2902:1 2904:1 2908:1 2915:2 2923:1 2938:2 2956:2 2968:1 2991:1 2992:1 3026:1 3027:1 3031:1 3034:1 3048:6 3103:1 3152:1 3192:1 3203:1 3210:1 3213:1 3252:1 3286:2 3291:1 3309:1 3315:10 3325:1 3328:2 3330:1 3331:1 3346:1 3350:1 3399:1 3400:1 3406:1 3407:1 3410:2 3414:1 3423:1 3470:1 3473:1 3480:1 3483:1 3486:1 3488:1 3494:1 3506:1 3510:1 3513:2 3520:1 3523:1 3540:2 3560:2 3576:1 3581:2 3583:1 3587:1 3591:1 3600:2 3610:1 3611:2 3631:2 3652:2 3683:1 3691:3 3692:3 3698:1 3730:1 3733:2 3737:1 3742:1 3759:1 3760:2 3787:1 3794:1 3813:1 3828:1 3838:1 3845:2 3849:1 3853:1 3859:1 3863:1 3875:1 3882:1 3888:1 3898:1 3917:1 3952:7 3957:1 3977:2 3984:1 3993:1 4003:1 4005:1 4018:1 4032:2 4038:1 4057:1 4064:2 4084:2 4097:1 4107:1 4116:1 4140:2 4160:1 4164:1 4167:1 4172:1 4173:2 4189:1 4201:1 4218:1 4226:1 4246:1 4249:1 4275:2 4284:2 4294:1 4302:2 4307:1 4319:1 4344:1 4361:1 4365:1 4369:2 4383:2 4386:1 4394:1 4403:1 4445:1 4467:1 4488:8 4490:1 4499:1 4501:1 4502:1 4535:1 4546:1 4554:1 4625:1 4629:3 4631:4 4632:2 4634:1 4637:1 4638:1 4639:1 4643:1 4645:3 4646:3 4650:1 4651:2 4652:2 4659:3 4663:1 4701:1 4718:1 4737:2 4762:1 4767:1 4776:1 4834:1 4842:1 4877:1 4911:1 4916:1 4941:1 4945:1 4955:1 4985:1 5006:2 5018:1 5037:1 5050:1 5064:2 5075:1 5081:1 5094:1 5101:1 5121:1 5130:1 5197:1 5207:1 5212:2 5216:1 5230:3 5231:1 5234:2 5236:1 5239:1 5240:1 5255:1 5281:3 5292:1 5309:5 5314:1 5315:1 5330:2 5398:1 5420:1 5422:1 5440:1 5445:1 5453:1 5467:1 5479:1 5510:1 5521:2 5535:2 5538:1 5565:3 5567:1 5568:1 5575:1 5576:1 5591:1 5623:1 5624:1 5632:1 5639:1 5642:1 5643:1 5647:9 5680:2 5703:1 5715:1 5725:2 5735:1 5751:5 5761:1 5763:1 5801:1 5805:1 5828:1 5834:1 5838:1 5844:1 5845:1 5849:1 5850:1 5852:1 5860:3 5861:2 5897:1 5904:1 5938:1 5954:1 5987:1 5991:3 5992:2 6006:1 6047:1 6055:1 6082:1 6092:1 6115:1 6129:2 6137:1 6162:1 6210:1 6235:1 6238:1 6246:1 6254:6 6262:1 6265:1 6273:1 6275:1 6279:1 6287:2 6300:1 6345:2 6361:1 6385:1 6394:1 6398:1 6401:2 6430:1 6449:1 6453:1 6460:1 6469:1 6477:1 6486:1 6490:6 6498:2 6524:1 6534:1 6537:1 6538:2 6549:3 6550:1 6552:1 6557:4 6560:1 6564:1 6587:1 6588:1 6599:1 6602:1 6604:1 6621:1 6626:1 6631:2 6641:1 6658:1 6672:1 6686:1 6728:1 6806:1 6810:1 6857:1 6864:1 6870:1 6876:3 6881:1 6894:4 6898:2 6912:1 6913:2 6922:1 6935:1 6943:2 6951:1 6964:1 6969:1 6997:1 7027:1 7052:2 7067:3 7068:6 7081:1 7086:1 7090:3 7092:2 7093:2 7116:2 7117:2 7121:1 7136:26 7137:1 7140:2 7147:1 7155:5 7156:3 7162:2 7194:1 7201:1 7202:1 7211:1 7222:1 7224:1 7229:2 7230:2 7235:1 7242:1 7256:1 7276:1 7294:2 7300:1 7305:1 7326:1 7352:1 7355:1 7356:3 7385:1 7390:1 7402:1 7477:1 7507:1 7517:1 7523:1 7547:1 7558:1 7568:1 7576:1 7580:1 7592:1 7609:16 7618:1 7637:2 7640:1 7642:1 7644:1 7696:2 7698:1 7700:1 7706:1 7734:1 7744:2 7748:2 7751:1 7756:1 7771:1 7778:4 7784:2 7790:1 7812:2 7814:1 7836:1 7840:1 7850:1 7876:1 7877:1 7886:1 7890:1 7940:1 7944:1 7945:1 7950:1 7952:1 7976:1 7989:3 8005:1 8008:2 8043:1 8049:1 8069:1 8073:1 8085:1 8113:1 8124:1 8153:1 8154:1 8163:1 8164:1 8171:1 8197:1 8215:1 8228:1 8247:1 8250:1 8253:1 8254:1 8258:2 8282:2 8289:1 8295:2 8306:1 8311:1 8331:1 8332:1 8345:1 8350:3 8351:1 8356:1 8358:1 8363:1 8370:4 8378:1 8407:3 8423:1 8445:2 8446:4 8460:2 8501:1 8515:1 8521:1 8525:2 8541:1 8544:1 8550:1 8552:1 8555:2 8600:1 8612:1 8620:1 8622:1 8632:1 8635:4 8656:1 8658:2 8674:3 8698:1 8699:1 8728:1 8735:1 8741:1 8756:2 8765:1 8786:1 8793:1 8820:1 8833:1 8838:1 8846:1 8853:6 8856:1 8885:2 8904:1 8908:1 8926:1 8947:1 8953:1 8954:1 8956:2 8958:1 8990:1 9020:1 9022:1 9067:2 9073:1 9090:1 9101:2 9113:1 9131:1 9132:1 9144:1 9155:1 9172:1 9173:1 9178:1 9179:1 9216:1 9221:1 9222:1 9230:4 9243:2 9249:3 9251:1 9281:2 9300:1 9301:1 9332:1 9337:2 9348:1 9358:1 9361:3 9364:1 9388:1 9391:1 9396:9 9398:1 9402:1 9424:1 9425:1 9439:1 9488:1 9491:2 9493:1 9524:1 9534:1 9536:1 9537:1 9540:1 9542:3 9550:1 9552:1 9555:2 9588:1 9601:4 9608:1 9610:1 9612:1 9617:1 9620:1 9626:1 9632:1 9642:3 9660:1 9681:1 9695:1 9703:1 9710:1 9713:2 9725:1 9732:1 9750:2 9764:1 9769:1 9775:3 9778:2 9791:1 9795:3 9802:1 9812:1 9820:1 9834:1 9848:3 9849:1 9868:1 9869:1 9878:3 9899:1 9916:1 9926:2 9936:1 9946:3 9964:1 9972:1 9982:1 9993:2 10096:1 10118:1 10120:1 10136:1 10137:2 10141:1 10145:2 10149:1 10156:1 10157:4 10158:5 10159:1 10168:1 10174:2 10177:2 10183:3 10188:1 10189:1 10195:1 10201:2 10213:1 10226:2 10234:1 10255:1 10257:1 10259:1 10294:1 10297:1 10312:1 10323:1 10326:1 10341:1 10412:1 10426:1 10445:1 10474:1 10477:1 10500:1 10503:1 10507:1 10518:1 10523:2 10525:1 10526:1 10528:1 10537:2 10539:1 10541:2 10550:1 10556:2 10559:1 10572:1 10587:9 10588:1 10611:1 10625:3 10636:2 10648:1 10675:2 10682:2 10683:1 10690:1 10693:1 10695:2 10696:1 10706:1 10724:1 10738:1 10766:1 10783:1 10803:3 10805:1 10808:1 10814:1 10821:1 10822:2 10827:1 10828:1 10830:1 10840:1 10841:1 10851:1 10860:1 10863:1 10864:1 10874:3 10875:1 10880:2 10898:1 10921:1 10934:2 10938:1 10972:1 10983:1 10984:1 10998:1 11023:5 11043:1 11063:1 11071:1 11076:1 11081:1 11100:2 11129:1 11150:1 11170:1 11175:1 11195:1 11201:1 11236:1 11244:1 11246:1 11251:4 11252:1 11253:1 11256:1 11267:1 11273:2 11279:1 11283:1 11285:1 11290:1 11335:1 11338:1 11357:1 11376:1 11393:1 11407:1 11413:1 11439:1 11476:2 11494:1 11527:1 11539:1 11550:1 11552:2 11553:1 11570:2 11593:1 11606:1 11647:1 11658:1 11665:1 11705:6 11710:1 11719:1 11723:1 11728:1 11747:1 11753:2 11779:1 11792:2 11798:1 11800:1 11829:1 11850:1 11858:1 11903:1 11923:1 11924:1 11930:1 11944:1 11963:1 11977:1 11982:3 12041:1 12060:1 12078:1 12082:1 12083:1 12085:2 12090:4 12101:1 12122:1 12138:3 12157:1 12161:2 12186:1 12193:2 12194:1 12221:1 12223:1 12225:1 12233:4 12236:1 12242:2 12247:1 12260:1 12272:1 12273:1 12283:1 12289:1 12301:8 12306:1 12308:1 12342:2 12343:1 12350:1 12371:1 12384:1 12395:1 12397:1 12421:3 12441:1 12446:5 12465:1 12475:1 12499:2 12515:1 12521:1 12525:1 12533:1 12535:1 12537:1 12544:1 12551:1 12558:3 12561:1 12565:1 12569:6 12570:1 12590:1 12593:1 12595:1 12620:1 12675:1 12685:1 12719:2 12756:1 12758:1 12760:1 12767:1 12770:1 12773:2 12774:1 12778:1 12794:1 12814:1 12821:1 12836:7 12857:2 12861:1 12867:1 12890:1 12909:1 12923:1 12934:1 12957:1 12983:1 12984:1 13017:1 13052:1 13063:1 13077:3 13091:1 13143:1 13175:1 13199:1 13200:1 13204:2 13205:1 13212:1 13222:1 13223:1 13229:1 13256:1 13265:2 13305:1 13327:2 13349:1 13355:1 13361:2 13367:1 13375:3 13380:2 13428:1 13430:2 13476:1 13477:1 13484:1 13506:1 13513:1 13540:2 13552:1 13555:1 13558:2 13587:1 13589:1 13643:1 13693:2 13712:1 13762:1 13774:1 13776:1 13781:1 13793:1 13794:1 13804:1 13806:1 13829:1 13891:1 13900:1 13922:1 13928:1 13974:1 14004:1 14027:1 14032:1 14034:1 14047:1 14064:1 14071:2 14075:1 14096:1 14098:1 14113:1 14130:1 14134:1 14168:1 14217:1 14229:2 14244:1 14252:1 14263:2 14266:1 14279:1 14302:1 14328:1 14332:1 14377:1 14391:1 14403:2 14413:1 14417:2 14420:1 14432:1 14446:1 14450:1 14453:1 14475:1 14491:2 14497:1 14532:1 14550:2 14559:1 14570:1 14572:2 14587:1 14600:2 14676:1 14683:1 14687:7 14704:1 14709:3 14738:1 14772:1 14783:1 14789:2 14796:2 14817:2 14821:1 14832:1 14876:1 14883:1 14891:1 14892:1 14902:2 14928:1 14929:1 14946:1 14950:1 14954:3 14955:2 14956:2 14957:3 14958:1 14963:2 14965:1 14967:1 14968:2 14972:1 14973:1 14975:1 14979:1 14987:1 15024:1 15060:1 15083:1 15087:1 15088:1 15109:1 15117:1 15119:2 15120:1 15162:1 15169:1 15178:1 15198:1 15217:1 15240:1 15250:1 15254:1 15262:1 15272:1 15274:1 15281:1 15282:1 15290:1 15294:3 15302:2 15308:1 15316:1 15321:2 15329:1 15334:1 15342:2 15353:1 15359:1 15367:1 15407:4 15408:1 15432:3 15437:1 15490:1 15491:1 15497:2 15499:1 15507:1 15512:2 15525:1 15534:1 15538:1 15541:2 15575:2 15596:4 15617:2 15619:1 15622:1 15646:1 15661:2 15688:1 15703:1 15705:1 15720:1 15722:1 15731:1 15765:1 15768:1 15790:1 15799:1 15808:2 15814:1 15821:1 15845:1 15858:2 15862:1 15873:1 15889:1 15909:1 15930:1 15938:1 15979:1 15982:1 16000:1 16005:1 16027:1 16036:1 16041:1 16047:1 16054:3 16059:2 16060:2 16064:1 16070:1 16071:2 16109:1 16112:1 16116:1 16117:1 16128:1 16139:1 16140:1 16156:1 16189:1 16203:1 16204:1 16222:2 16236:1 16244:1 16256:1 16257:1 16276:1 16279:1 16311:1 16312:1 16313:1 16339:1 16343:1 16344:1 16347:2 16379:1 16426:2 16439:1 16452:1 16466:1 16514:1 16540:1 16542:1 16551:1 16570:2 16651:1 16657:2 16658:1 16674:1 16687:1 16703:1 16721:1 16758:1 16770:1 16787:1 16791:1 16805:1 16848:4 16906:1 16932:1 16954:9 16963:2 16964:1 16977:3 16990:1 16997:1 17001:1 17012:1 17025:1 17048:4 17058:1 17068:1 17084:1 17087:1 17107:1 17112:2 17125:1 17126:2 17137:1442 17147:1 17151:1 17162:1 17188:1 17200:1 17201:1 17220:2 17251:1 17296:1 17307:1 17311:1 17314:1 17317:1 17321:1 17322:2 17341:1 17351:1 17359:1 17375:1 17407:1 17448:1 17450:1 17453:2 17503:1 17534:2 17549:1 17551:1 17564:2 17573:1 17591:1 17603:2 17608:1 17616:1 17636:1 17642:2 17646:1 17655:1 17661:1 17670:1 17672:1 17691:2 17692:2 17708:2 17712:1 17716:1 17728:2 17752:2 17753:1 17761:1 17771:2 17777:2 17803:1 17818:1 17823:1 17824:1 17846:2 17862:1 17891:1 17900:3 17905:1 17907:2 17914:1 17929:4 17938:1 17942:1 17956:1 17961:1 17968:2 17970:1 17975:1 18006:1 18009:1 18038:1 18039:1 18046:1 18047:1 18077:1 18078:1 18079:1 18080:1 18088:1 18117:1 18130:1 18145:2 18147:1 18152:1 18153:1 18158:1 18182:1 18183:1 18187:1 18196:1 18203:1 18229:1 18237:1 18238:1 18279:1 18282:1 18288:2 18289:1 18335:1 18354:1 18360:1 18363:1 18368:1 18369:1 18371:1 18388:1 18399:1 18405:2 18407:1 18409:1 18421:4 18430:2 18449:1 18462:1 18465:1 18466:3 18495:1 18504:1 18505:1 18510:1 18526:1 18531:1 18552:1 18553:1 18569:1 18577:2 18578:7 18579:1 18586:1 18592:2 18596:1 18612:1 18663:1 18678:1 18683:1 18695:1 18697:1 18701:1 18705:1 18738:1 18768:3 18787:1 18789:1 18802:2 18807:1 18817:1 18828:1 18830:1 18840:1 18850:1 18865:6 18886:1 18916:1 18937:1 18973:1 18987:3 18999:1 19002:1 19006:1 19010:1 19011:1 19020:1 19057:3 19063:2 19066:2 19073:2 19081:1 19089:2 19116:3 19126:1 19149:2 19153:1 19162:1 19178:2 19198:3 19202:1 19207:1 19215:2 19227:3 19258:1 19264:1 19277:1 19296:1 19302:1 19319:1 19321:1 19327:1 19331:1 19337:2 19353:1 19358:2 19381:2 19392:1 19393:1 19401:1 19402:1 19403:2 19420:1 19427:2 19435:1 19441:1 19447:1 19450:1 19460:1 19480:1 19481:1 19510:1 19517:1 19519:1 19524:2 19525:2 19618:1 19652:1 19656:1 19665:2 19667:1 19669:1 19687:1 19694:1 19699:2 19705:1 19746:1 19750:1 19768:1 19787:1 19789:1 19791:1 19794:1 19796:2 19799:1 19811:1 19825:1 19830:2 19833:1 19841:1 19851:1 19853:2 19874:4 19892:2 19902:1 19916:1 19929:1 19943:1 19948:1 19952:1 20000:1 20010:1 20019:2 20024:1 20034:3 20036:1 20046:2 20054:1 20056:1 20082:1 20083:1 20085:2 20087:1 20088:1 20114:1 20151:1 20171:3 20174:1 20176:1 20178:2 20179:1 20181:1 20186:1 20189:1 20194:2 20205:3 20218:1 20236:1 20244:2 20252:1 20255:1 20269:1 20324:1 20338:1 20344:1 20365:2 20368:1 20377:1 20396:1 20405:1 20409:1 20421:1 20425:3 20440:1 20441:2 20446:1 20447:2 20463:1 20484:2 20487:1 20491:1 20492:4 20498:1 20503:1 20512:1 20513:4 20519:1 20525:1 20531:1 20547:1 20549:1 20553:1 20575:7 20576:1 20589:1 20609:1 20624:1 20631:3 20632:1 20640:1 20649:1 20664:1 20687:1 20690:2 20717:1 20723:1 20726:3 20728:1 20735:3 20740:2 20753:1 20757:1 20773:1 20775:2 20794:1 20795:1 20800:2 20809:1 20815:1 20827:1 20834:1 20846:1 20851:1 20866:1 20890:1 20904:1 20906:1 20921:1 20935:2 20936:1 20952:1 20957:2 20962:2 20970:3 20982:2 20996:1 21037:2 21040:1 21055:1 21056:1 21084:1 21085:1 21086:1 21104:1 21128:2 21131:1 21138:1 21139:1 21142:1 21175:3 21204:2 21269:1 21294:3 21297:1 21304:5 21314:2 21322:1 21328:1 21330:2 21344:1 21345:1 21358:1 21368:3 21406:1 21413:1 21446:1 21463:1 21472:2 21502:1 21505:1 21510:1 21527:2 21537:1 21548:1 21549:1 21579:1 21584:2 21592:1 21605:1 21624:3 21625:1 21628:1 21641:1 21644:1 21650:1 21695:1 21696:3 21698:1 21701:1 21714:1 21715:2 21716:1 21718:1 21722:1 21769:1 21779:1 21789:1 21845:1 21853:1 21878:1 21884:1 21951:1 21953:1 21964:1 22008:1 22047:1 22066:1 22084:1 22101:2 22113:1 22140:1 22165:2 22176:2 22186:1 22213:5 22228:1 22233:1 22259:1 22261:1 22267:1 22270:2 22280:1 22287:1 22293:1 22317:3 22319:1 22340:2 22341:1 22345:1 22346:1 22425:1 22426:1 22451:1 22455:1 22461:1 22467:3 22476:1 22479:2 22484:1 22518:4 22535:1 22536:1 22544:1 22551:1 22552:1 22557:1 22582:7 22609:1 22611:1 22618:1 22636:1 22639:1 22643:3 22651:1 22667:1 22670:1 22681:1 22756:1 22781:1 22787:1 22794:1 22800:1 22809:2 22817:1 22822:1 22826:1 22858:1 22863:1 22874:1 22901:1 22917:1 22918:1 22932:1 22941:2 22946:1 22952:2 22957:1 22968:1 22974:1 23002:7 23003:1 23026:1 23032:1 23033:1 23036:1 23045:1 23066:1 23067:1 23078:1 23085:1 23098:2 23101:1 23105:2 23110:1 23111:1 23131:1 23133:1 23139:1 23143:1 23160:1 23166:1 23198:1 23220:3 23221:1 23235:1 23240:1 23253:1 23280:1 23285:3 23286:1 23308:1 23311:2 23314:1 23340:1 23353:1 23359:1 23365:1 23398:1 23407:1 23422:1 23426:2 23428:1 23437:1 23448:1 23452:1 23473:1 23527:1 23534:1 23560:1 23564:2 23569:2 23579:1 23617:3 23629:1 23632:1 23650:3 23688:1 23689:1 23698:1 23701:1 23715:1 23746:1 23777:2 23821:1 23826:1 23838:1 23853:1 23860:1 23919:1 23928:1 23929:1 23945:1 23952:1 23953:1 23958:1 23988:1 24023:2 24030:1 24035:1 24058:1 24065:1 24074:1 24075:1 24094:9 24095:2 24105:1 24115:1 24151:2 24163:1 24165:1 24183:1 24188:1 24199:1 24211:3 24215:3 24221:3 24224:2 24226:4 24228:1 24253:1 24300:1 24337:1 24340:1 24350:1 24370:1 24380:1 24384:1 24386:1 24387:1 24388:2 24415:6 24417:1 24418:1 24425:1 24439:1 24442:1 24447:1 24467:1 24470:1 24483:1 24531:1 24537:1 24553:1 24562:1 24569:1 24596:1 24634:1 24635:1 24641:5 24652:1 24653:1 24677:1 24684:1 24689:1 24690:1 24703:1 24707:1 24711:1 24721:1 24746:1 24747:2 24758:2 24769:1 24785:1 24788:1 24793:1 24797:1 24823:1 24849:1 24886:1 24895:1 24912:1 24915:3 24918:1 24921:1 24922:1 24936:1 24938:2 24950:1 24961:2 24972:1 24974:1 24977:1 24985:2 24986:1 25013:1 25016:1 25032:2 25037:1 25063:1 25077:3 25081:1 25084:1 25098:1 25132:2 25137:1 25143:1 25148:1 25155:1 25163:1 25164:1 25172:1 25174:1 25193:1 25200:1 25201:1 25204:1 25205:1 25206:1 25210:1 25217:2 25229:1 25238:1 25243:1 25247:1 25279:1 25297:1 25318:1 25361:1 25404:1 25439:1 25444:1 25445:2 25459:1 25480:1 25487:1 25492:1 25521:1 25532:1 25563:1 25598:1 25613:1 25652:1 25660:1 25674:2 25680:1 25742:1 25745:1 25759:1 25760:3 25766:1 25773:2 25775:1 25778:1 25790:1 25792:1 25799:1 25801:4 25813:1 25815:1 25828:1 25832:2 25836:2 25845:1 25847:4 25851:1 25860:1 25867:3 25883:3 25884:1 25886:1 25922:1 25924:1 25949:1 25963:1 25969:2 25971:4 25977:3 26008:4 26021:1 26034:1 26051:1 26064:1 26081:1 26114:1 26120:1 26126:1 26131:1 26146:1 26158:1 26162:1 26164:1 26172:1 26173:2 26179:1 26182:1 26196:3 26234:1 26245:5 26252:1 26259:1 26276:1 26308:3 26401:1 26488:1 26495:1 26497:1 26502:2 26504:2 26515:1 26516:1 26525:1 26539:1 26552:1 26571:1 26611:3 26620:2 26648:2 26653:2 26668:1 26699:1 26715:1 26721:1 26722:1 26727:1 26728:2 26760:1 26763:2 26767:2 26784:1 26806:1 26825:1 26836:1 26844:1 26866:1 26868:3 26876:1 26892:1 26901:1 26903:1 26919:1 26940:1 26943:2 26961:1 26965:1 26966:2 26973:2 26974:1 26975:1 26978:1 27022:3
1 12:1 34:1 50:1 55:1 60:1 90:1 108:1 124:1 137:1 138:3 147:1 153:1 159:1 165:1 168:2 178:5 194:1 221:1 231:1 236:5 255:2 262:1 277:1 301:1 312:3 314:2 318:3 326:3 333:1 337:2 356:1 363:1 375:1 392:5 394:2 403:1 451:1 518:1 522:1 538:1 548:2 554:1 565:1 571:1 573:1 580:1 588:1 698:1 708:1 730:2 731:1 738:1 750:1 776:4 779:1 782:1 787:3 798:1 814:7 815:3 823:3 841:2 854:4 856:2 857:6 859:1 861:1 863:2 877:2 895:3 898:3 909:1 943:2 964:1 994:1 1011:1 1029:1 1100:3 1101:2 1107:1 1111:1 1118:1 1141:1 1145:1 1161:2 1178:1 1184:2 1189:1 1215:1 1230:1 1243:1 1249:1 1253:1 1264:1 1275:1 1296:1 1300:1 1301:2 1303:1 1319:1 1332:1 1340:1 1346:1 1352:1 1361:1 1367:1 1371:1 1385:1 1411:4 1417:5 1420:2 1429:1 1450:1 1461:1 1465:1 1467:1 1476:1 1480:1 1485:2 1498:2 1511:1 1513:1 1517:1 1526:1 1529:1 1545:1 1556:1 1560:1 1564:1 1570:1 1595:2 1598:1 1615:4 1626:1 1632:1 1636:1 1639:2 1642:1 1643:1 1645:1 1651:2 1653:5 1676:3 1678:2 1692:1 1710:1 1713:1 1715:3 1721:1 1744:1 1751:1 1757:1 1764:1 1765:1 1778:2 1787:1 1821:1 1825:1 1836:1 1845:2 1851:1 1854:1 1859:1 1862:2 1873:1 1902:1 1905:1 1920:1 1921:1 1924:1 1926:2 1929:1 1966:7 1970:1 1975:1 1979:1 2006:1 2025:2 2038:3 2040:1 2053:1 2056:1 2061:2 2078:2 2079:1 2083:1 2084:3 2087:1 2090:1 2095:2 2096:2 2097:1 2099:1 2105:4 2107:2 2109:5 2111:3 2113:1 2123:1 2131:1 2149:1 2152:1 2155:3 2172:1 2179:1 2190:1 2191:1 2200:1 2208:1 2210:1 2243:1 2247:1 2262:1 2278:1 2280:1 2287:1 2291:1 2297:1 2306:2 2316:1 2317:1 2325:1 2330:1 2334:1 2345:1 2347:1 2353:2 2356:2 2358:1 2361:5 2366:1 2367:1 2379:1 2382:1 2397:1 2408:4 2410:1 2416:1 2430:2 2436:1 2437:1 2447:3 2452:1 2458:1 2460:5 2465:4 2474:1 2475:1 2485:1 2490:3 2492:2 2503:1 2515:1 2516:2 2520:1 2557:1 2561:1 2562:2 2563:2 2575:2 2577:1 2579:1 2583:3 2590:1 2595:1 2639:1 2656:2 2664:1 2667:9 2689:2 2690:1 2694:1 2695:1 2697:1 2706:1 2711:2 2731:8 2756:2 2758:2 2773:1 2826:1 2840:1 2841:4 2852:2 2856:1 2860:1 2902:1 2904:1 2908:1 2915:2 2923:1 2938:2 2956:2 2968:1 2991:1 2992:1 3026:1 3027:1 3031:1 3034:1 3048:6 3103:1 3152:1 3192:1 3203:1 3210:1 3213:1 3252:1 3286:2 3291:1 3309:1 3315:10 3325:1 3328:2 3330:1 3331:1 3346:1 3350:1 3399:1 3400:1 3406:1 3407:1 3410:2 3414:1 3423:1 3470:1 3473:1 3480:1 3483:1 3486:1 3488:1 3494:1 3506:1 3510:1 3513:2 3520:1 3523:1 3540:2 3560:2 3575:1 3576:1 3581:2 3583:1 3587:1 3591:1 3600:2 3610:1 3611:2 3631:2 3652:2 3683:1 3691:3 3692:3 3698:1 3730:1 3733:2 3737:1 3742:1 3759:1 3760:2 3787:1 3794:1 3813:1 3828:1 3838:1 3845:2 3849:1 3853:1 3859:1 3863:1 3875:1 3882:1 3888:1 3898:1 3917:1 3952:7 3957:1 3977:2 3984:1 3993:1 4003:1 4005:1 4018:2 4032:2 4038:1 4057:1 4064:2 4084:2 4097:1 4107:1 4116:1 4140:2 4160:1 4164:1 4167:1 4172:1 4173:2 4189:1 4201:1 4218:1 4226:1 4246:1 4249:1 4275:3 4284:2 4294:1 4302:2 4307:1 4319:2 4344:1 4361:1 4365:1 4369:2 4383:2 4386:1 4394:1 4403:1 4445:1 4467:1 4488:8 4490:1 4499:1 4501:1 4502:1 4516:1 4535:1 4546:1 4554:1 4625:1 4629:3 4631:4 4632:2 4634:1 4637:1 4638:1 4639:1 4643:1 4645:3 4646:3 4650:1 4651:2 4652:2 4659:3 4663:1 4701:1 4718:1 4737:2 4744:1 4762:1 4767:1 4776:1 4834:1 4842:1 4877:1 4911:1 4916:1 4941:2 4945:1 4955:1 4985:1 5006:2 5018:1 5037:1 5050:1 5064:2 5075:1 5081:1 5088:1 5094:1 5101:1 5121:1 5130:1 5153:1 5197:1 5207:1 5212:2 5216:1 5230:3 5231:1 5234:2 5236:1 5239:1 5240:1 5255:1 5281:3 5292:1 5309:5 5314:1 5315:1 5330:2 5398:1 5420:1 5422:1 5440:1 5445:1 5453:1 5467:1 5479:1 5503:1 5510:1 5521:2 5535:2 5538:1 5565:3 5567:1 5568:1 5575:1 5576:1 5591:1 5623:1 5624:1 5632:1 5639:1 5642:1 5643:1 5647:9 5680:2 5703:1 5715:1 5725:2 5735:1 5751:5 5756:1 5761:1 5763:1 5801:1 5805:1 5828:1 5834:1 5838:1 5844:1 5845:1 5849:1 5850:1 5852:1 5860:3 5861:2 5897:1 5904:1 5938:1 5954:1 5987:1 5991:4 5992:2 6006:1 6047:1 6055:1 6082:1 6092:1 6115:1 6129:2 6137:1 6162:1 6210:1 6235:1 6238:1 6246:1 6254:7 6262:1 6265:1 6267:1 6273:1 6275:1 6279:1 6287:2 6300:1 6344:1 6345:2 6361:1 6385:1 6394:1 6398:1 6401:2 6430:1 6449:1 6453:1 6460:1 6468:1 6469:1 6477:1 6486:1 6490:6 6498:2 6524:1 6534:1 6537:1 6538:2 6549:3 6550:1 6552:1 6557:4 6560:1 6564:1 6587:1 6588:1 6599:1 6602:1 6604:1 6621:1 6626:2 6631:2 6641:1 6658:1 6672:1 6686:1 6712:1 6728:1 6742:1 6800:1 6806:1 6810:1 6846:1 6857:1 6864:1 6870:1 6876:3 6881:1 6894:4 6898:2 6912:1 6913:2 6922:1 6935:1 6943:2 6951:1 6964:1 6969:1 6997:1 7027:1 7052:2 7067:3 7068:6 7081:1 7086:1 7090:3 7092:2 7093:2 7116:2 7117:2 7121:1 7136:29 7137:1 7140:2 7147:1 7155:5 7156:3 7162:2 7194:1 7201:1 7202:1 7211:1 7222:1 7224:1 7229:2 7230:2 7235:1 7242:1 7256:1 7276:1 7294:2 7300:1 7305:1 7326:1 7352:1 7355:1 7356:3 7385:1 7390:1 7402:1 7477:1 7507:1 7517:1 7523:1 7547:1 7558:1 7568:1 7576:1 7580:1 7592:1 7609:16 7618:1 7637:2 7640:1 7642:1 7644:2 7696:2 7698:1 7700:1 7706:1 7734:1 7744:2 7748:2 7751:1 7756:1 7771:1 7777:1 7778:4 7784:2 7790:1 7812:2 7814:1 7836:1 7840:1 7850:1 7876:1 7877:1 7886:1 7890:1 7940:1 7944:1 7945:1 7950:1 7952:1 7976:1 7989:3 8005:1 8008:2 8023:1 8034:1 8043:1 8049:1 8069:1 8073:1 8085:1 8113:1 8124:1 8153:1 8154:1 8163:1 8164:1 8171:1 8197:1 8199:1 8215:1 8228:1 8247:1 8250:1 8253:1 8254:1 8258:3 8282:2 8289:1 8295:2 8306:1 8311:1 8331:1 8332:1 8345:1 8350:3 8351:1 8356:1 8358:1 8363:1 8370:4 8378:1 8407:3 8423:1 8445:2 8446:4 8460:2 8501:1 8515:1 8521:1 8525:2 8541:1 8544:1 8550:1 8552:1 8553:1 8555:2 8600:1 8612:1 8620:1 8622:1 8632:1 8635:4 8656:1 8658:2 8674:4 8698:1 8699:1 8728:1 8735:1 8741:1 8756:2 8765:1 8786:1 8793:1 8820:1 8833:1 8838:1 8846:1 8853:6 8856:1 8885:2 8904:1 8908:1 8926:1 8947:1 8953:1 8954:1 8956:2 8958:1 8990:1 9020:1 9022:1 9031:1 9067:2 9073:1 9090:1 9101:2 9113:1 9131:1 9132:1 9144:1 9155:1 9172:1 9173:1 9178:1 9179:1 9216:1 9221:1 9222:1 9230:5 9243:2 9249:3 9251:1 9281:2 9300:1 9301:1 9332:1 9337:2 9348:1 9358:1 9361:3 9364:1 9388:1 9391:1 9396:9 9398:1 9402:2 9424:1 9425:1 9439:1 9488:1 9491:2 9493:1 9524:1 9534:1 9536:1 9537:1 9540:1 9542:3 9550:1 9552:1 9555:2 9588:1 9601:4 9608:1 9610:1 9612:1 9617:1 9620:1 9626:1 9632:1 9642:4 9660:1 9681:1 9695:1 9703:1 9710:1 9713:2 9725:1 9732:1 9750:2 9764:1 9769:1 9775:3 9778:2 9791:1 9795:3 9802:1 9812:1 9820:1 9834:2 9848:3 9849:1 9868:1 9869:1 9878:3 9899:1 9916:1 9926:3 9936:1 9946:4 9964:1 9972:1 9982:1 9993:2 10096:1 10118:1 10120:1 10136:1 10137:2 10141:1 10145:2 10149:1 10156:1 10157:5 10158:5 10159:1 10168:1 10174:2 10177:2 10183:3 10188:1 10189:1 10195:1 10201:2 10213:1 10226:2 10234:1 10255:1 10257:1 10259:1 10294:1 10297:1 10312:1 10323:1 10326:1 10341:1 10412:1 10426:1 10445:1 10474:1 10477:1 10500:1 10503:1 10507:1 10518:1 10523:2 10525:1 10526:1 10528:1 10537:2 10539:1 10541:2 10550:1 10556:2 10559:1 10572:1 10587:9 10588:1 10611:1 10625:3 10636:2 10648:1 10675:2 10682:2 10683:1 10690:1 10693:1 10695:2 10696:1 10706:1 10724:1 10738:1 10766:1 10783:1 10803:3 10805:1 10808:1 10814:1 10821:1 10822:2 10827:1 10828:1 10830:1 10840:1 10841:1 10851:1 10860:1 10863:1 10864:1 10874:3 10875:1 10880:2 10898:1 10921:1 10934:2 10938:1 10972:1 10983:1 10984:1 10998:1 11023:5 11043:1 11058:1 11063:1 11071:1 11076:1 11081:1 11100:2 11129:1 11150:1 11170:1 11175:1 11189:1 11195:1 11201:1 11236:1 11244:1 11246:1 11251:4 11252:1 11253:1 11256:1 11267:1 11273:2 11279:1 11283:1 11285:1 11290:1 11335:1 11338:1 11357:1 11376:1 11393:1 11407:1 11413:1 11439:1 11476:2 11494:1 11527:1 11539:1 11550:1 11552:2 11553:1 11570:2 11593:1 11606:1 11647:1 11658:1 11665:1 11705:6 11710:1 11719:1 11723:1 11728:1 11746:1 11747:1 11753:2 11779:1 11792:2 11798:1 11800:1 11829:1 11850:1 11858:1 11903:1 11923:1 11924:1 11930:1 11944:1 11963:1 11977:1 11982:3 11994:1 12041:1 12060:1 12078:1 12082:1 12083:1 12085:2 12090:4 12101:1 12106:1 12122:1 12138:3 12157:1 12161:2 12186:1 12193:2 12194:1 12221:1 12223:1 12225:1 12233:4 12236:1 12242:2 12247:1 12260:1 12272:1 12273:1 12283:1 12289:1 12301:8 12306:1 12308:1 12342:2 12343:1 12350:1 12371:1 12384:1 12395:1 12397:1 12421:3 12441:1 12446:5 12465:1 12475:1 12499:2 12515:1 12521:1 12525:1 12533:1 12535:1 12537:1 12544:1 12551:1 12558:3 12561:1 12563:1 12565:1 12569:6 12570:1 12590:1 12593:1 12595:1 12620:1 12675:1 12685:1 12719:2 12756:1 12758:1 12760:1 12767:1 12770:1 12773:2 12774:1 12778:1 12794:1 12814:1 12821:1 12836:7 12857:2 12861:1 12867:1 12890:1 12909:1 12923:1 12934:1 12957:1 12983:1 12984:1 13010:1 13017:1 13052:1 13063:2 13077:3 13091:1 13123:1 13143:1 13175:1 13199:1 13200:1 13204:2 13205:1 13212:1 13222:1 13223:1 13229:1 13256:1 13265:2 13305:1 13327:2 13349:1 13355:1 13361:2 13367:1 13375:3 13380:2 13428:1 13430:2 13476:1 13477:1 13484:1 13506:1 13513:1 13540:3 13552:1 13555:1 13558:2 13587:1 13589:1 13643:1 13693:2 13712:1 13734:1 13762:1 13774:1 13776:1 13781:1 13793:1 13794:1 13804:1 13806:1 13829:1 13891:1 13900:1 13922:1 13928:1 13974:1 14004:1 14027:1 14032:1 14034:1 14047:1 14064:1 14071:2 14075:1 14096:1 14098:1 14113:1 14130:1 14134:1 14168:1 14217:1 14229:2 14244:1 14252:1 14263:2 14266:1 14279:1 14302:1 14328:1 14332:1 14377:1 14391:1 14403:2 14413:1 14417:2 14420:1 14432:1 14445:1 14446:1 14450:1 14453:1 14475:1 14491:2 14497:1 14532:1 14550:2 14559:1 14570:1 14572:2 14587:1 14600:2 14676:1 14683:1 14687:7 14704:1 14709:3 14738:1 14772:1 14783:1 14789:2 14796:2 14817:2 14821:1 14832:1 14876:1 14883:1 14891:1 14892:1 14902:2 14928:1 14929:1 14946:1 14950:1 14954:3 14955:2 14956:2 14957:3 14958:1 14963:2 14965:1 14967:1 14968:2 14972:1 14973:1 14975:1 14979:1 14987:1 15024:1 15060:1 15083:1 15087:1 15088:1 15109:1 15117:1 15119:2 15120:1 15140:1 15162:1 15169:1 15178:1 15198:1 15217:1 15240:1 15250:1 15254:1 15262:1 15272:1 15274:2 15281:1 15282:1 15290:1 15294:3 15302:2 15308:1 15316:1 15321:2 15329:1 15334:1 15342:2 15353:1 15359:1 15367:1 15407:4 15408:1 15432:3 15437:1 15490:1 15491:1 15497:2 15499:1 15507:1 15512:2 15525:1 15534:1 15538:1 15541:2 15575:2 15596:4 15617:2 15619:1 15622:1 15646:1 15661:2 15688:1 15703:1 15705:1 15720:1 15722:1 15731:1 15765:1 15768:1 15790:1 15799:1 15808:2 15814:1 15821:1 15845:1 15858:2 15862:1 15873:1 15889:1 15909:1 15930:1 15938:1 15979:1 15982:1 16000:1 16005:1 16027:1 16036:1 16041:1 16047:1 16054:3 16059:2 16060:2 16064:1 16070:1 16071:2 16109:1 16112:1 16116:1 16117:1 16128:1 16139:1 16140:1 16156:1 16189:1 16203:1 16204:1 16222:2 16236:1 16244:1 16256:1 16257:1 16276:1 16279:1 16311:1 16312:1 16313:1 16339:1 16343:1 16344:1 16347:2 16379:1 16426:2 16439:1 16452:1 16466:1 16514:1 16540:1 16542:1 16551:1 16570:2 16651:1 16657:2 16658:1 16664:1 16674:1 16687:1 16703:1 16721:1 16758:1 16770:1 16787:1 16791:1 16805:1 16848:4 16906:1 16932:1 16954:9 16963:2 16964:1 16977:3 16990:1 16997:1 17001:1 17012:1 17025:1 17048:4 17058:1 17068:1 17084:1 17087:1 17107:1 17112:2 17125:2 17126:2 17137:1516 17147:1 17151:1 17162:1 17188:1 17197:1 17200:1 17201:1 17220:2 17251:1 17263:1 17296:1 17307:1 17311:1 17314:1 17317:1 17321:1 17322:2 17341:1 17351:1 17359:1 17375:1 17407:1 17448:1 17450:1 17453:2 17503:1 17521:1 17534:2 17549:1 17551:1 17564:2 17573:1 17591:1 17603:2 17608:1 17616:1 17636:1 17642:2 17646:1 17655:1 17661:1 17670:1 17672:1 17691:2 17692:2 17708:2 17712:1 17716:1 17728:2 17752:2 17753:1 17761:1 17771:2 17777:2 17803:1 17818:1 17823:1 17824:1 17846:2 17862:1 17891:1 17900:3 17905:1 17907:2 17914:1 17929:4 17938:1 17942:1 17956:1 17961:1 17968:2 17970:1 17975:1 18006:1 18009:1 18038:1 18039:1 18046:1 18047:1 18077:1 18078:1 18079:1 18080:1 18083:1 18088:1 18117:1 18130:1 18145:2 18147:1 18152:1 18153:1 18158:1 18182:1 18183:1 18187:1 18196:1 18203:1 18227:1 18229:1 18237:1 18238:1 18279:1 18282:2 18288:2 18289:1 18335:1 18354:1 18360:1 18363:1 18368:1 18369:1 18371:1 18388:1 18399:1 18405:2 18407:1 18409:1 18421:4 18430:2 18449:1 18462:1 18465:1 18466:3 18495:1 18504:1 18505:1 18510:1 18526:1 18531:1 18552:1 18553:1 18569:1 18577:3 18578:8 18579:2 18586:1 18592:2 18596:1 18612:1 18663:1 18678:1 18683:1 18695:1 18697:1 18701:1 18705:1 18738:1 18768:3 18787:1 18789:1 18802:2 18807:1 18817:1 18828:1 18830:1 18840:1 18850:1 18865:6 18886:1 18916:1 18917:1 18937:1 18973:1 18987:3 18999:1 19002:1 19006:1 19010:1 19011:1 19020:1 19057:3 19063:2 19066:2 19073:2 19081:1 19089:2 19116:3 19126:1 19149:2 19153:1 19162:1 19178:2 19198:3 19202:1 19207:1 19213:1 19215:2 19227:3 19258:2 19264:1 19277:1 19296:1 19302:1 19319:1 19321:2 19327:1 19331:1 19337:2 19353:1 19358:2 19381:2 19392:1 19393:1 19401:1 19402:1 19403:2 19420:1 19427:2 19435:1 19441:1 19447:1 19450:1 19460:1 19480:1 19481:1 19510:1 19517:1 19519:1 19524:2 19525:2 19550:1 19618:1 19652:1 19656:1 19664:1 19665:2 19667:1 19669:1 19687:1 19694:1 19699:2 19705:1 19746:1 19750:1 19768:1 19787:1 19789:1 19791:1 19794:1 19796:2 19799:1 19811:1 19825:1 19830:2 19833:1 19841:1 19851:1 19853:2 19874:4 19892:2 19902:1 19916:1 19929:1 19943:1 19948:1 19952:1 20000:1 20010:1 20019:2 20024:1 20034:3 20036:1 20037:1 20046:2 20054:1 20056:1 20082:1 20083:1 20085:2 20087:1 20088:1 20114:1 20151:1 20171:3 20174:1 20176:1 20178:2 20179:1 20181:1 20186:1 20189:1 20194:2 20205:3 20218:1 20236:1 20244:2 20252:1 20255:1 20269:1 20324:1 20338:1 20344:1 20365:2 20368:1 20377:1 20396:1 20405:1 20409:1 20421:1 20425:3 20440:1 20441:2 20446:1 20447:2 20463:1 20484:2 20487:1 20491:1 20492:4 20498:1 20503:1 20512:1 20513:4 20519:1 20525:1 20531:1 20547:1 20549:1 20553:1 20575:7 20576:1 20589:1 20609:1 20624:1 20631:3 20632:1 20640:1 20649:1 20664:1 20687:1 20690:2 20717:1 20723:1 20726:3 20728:1 20735:3 20740:2 20753:1 20757:1 20773:1 20775:2 20794:1 20795:1 20800:2 20809:1 20815:1 20827:1 20834:1 20846:1 20851:1 20866:1 20890:1 20904:1 20906:1 20921:1 20935:2 20936:1 20952:1 20957:2 20962:2 20970:3 20982:2 20996:1 21021:1 21037:2 21040:1 21055:1 21056:1 21084:1 21085:1 21086:1 21104:1 21128:2 21131:1 21138:1 21139:1 21142:1 21175:3 21204:2 21253:1 21269:1 21294:3 21297:1 21304:5 21314:2 21322:1 21328:1 21330:3 21341:1 21344:1 21345:1 21358:1 21368:3 21406:1 21413:1 21446:1 21458:1 21463:1 21472:2 21502:1 21505:1 21510:1 21527:2 21537:1 21548:1 21549:1 21579:1 21584:2 21592:1 21605:1 21624:3 21625:1 21628:1 21641:1 21644:1 21650:1 21695:1 21696:4 21698:1 21701:1 21714:1 21715:2 21716:1 21718:1 21722:1 21769:1 21779:1 21789:1 21845:1 21853:1 21878:1 21884:1 21943:2 21951:1 21953:1 21964:1 21998:1 22008:1 22047:1 22066:1 22084:1 22090:1 22101:2 22113:1 22140:1 22165:2 22176:2 22186:1 22213:5 22228:1 22233:1 22241:1 22259:1 22261:1 22267:1 22270:2 22279:1 22280:1 22287:1 22293:1 22317:3 22319:1 22340:2 22341:1 22345:1 22346:1 22425:1 22426:1 22451:1 22454:1 22455:1 22461:1 22467:3 22476:1 22477:1 22479:2 22484:1 22518:4 22535:1 22536:1 22539:1 22544:1 22551:1 22552:1 22557:1 22582:7 22587:1 22609:1 22611:1 22618:1 22636:1 22639:1 22643:3 22651:1 22667:1 22670:1 22681:1 22756:1 22781:1 22787:1 22794:1 22800:1 22809:2 22817:1 22822:1 22823:1 22826:1 22858:1 22863:1 22874:1 22901:2 22913:1 22917:1 22918:1 22932:1 22941:2 22946:1 22952:2 22957:1 22968:1 22974:1 23002:7 23003:1 23026:1 23032:1 23033:1 23036:1 23045:1 23066:1 23067:1 23078:1 23085:1 23098:2 23101:1 23105:2 23110:1 23111:1 23131:1 23133:1 23139:1 23143:1 23160:1 23166:1 23198:1 23220:5 23221:1 23235:1 23240:1 23253:1 23280:1 23285:3 23286:1 23308:1 23311:2 23314:1 23340:1 23353:1 23359:1 23365:1 23398:1 23407:1 23422:1 23426:2 23428:1 23437:2 23448:1 23452:1 23473:1 23527:1 23534:1 23540:1 23560:1 23564:2 23569:2 23579:1 23617:3 23629:1 23632:1 23650:3 23688:1 23689:1 23698:1 23701:1 23715:1 23746:1 23777:2 23821:1 23826:1 23838:1 23853:1 23860:1 23919:2 23928:1 23929:1 23945:1 23952:1 23953:1 23958:1 23988:1 24023:2 24030:1 24035:1 24058:1 24065:1 24074:1 24075:1 24094:9 24095:2 24105:1 24115:1 24126:1 24151:2 24163:1 24165:1 24183:1 24188:1 24199:1 24211:3 24215:3 24221:3 24224:2 24226:4 24228:1 24253:1 24300:1 24337:1 24340:1 24350:1 24362:1 24370:1 24380:1 24384:1 24386:1 24387:1 24388:2 24415:6 24417:1 24418:1 24425:1 24439:1 24442:1 24447:1 24467:1 24470:1 24483:1 24531:1 24537:1 24553:1 24562:1 24569:1 24596:1 24634:1 24635:1 24641:5 24652:1 24653:1 24677:1 24684:1 24689:1 24690:1 24703:1 24707:1 24711:1 24721:1 24746:1 24747:2 24758:2 24769:1 24785:1 24788:1 24793:1 24797:2 24823:1 24849:1 24886:1 24895:1 24912:1 24915:3 24918:1 24921:1 24922:1 24936:1 24938:2 24950:1 24961:2 24972:1 24974:1 24977:1 24985:2 24986:1 24991:1 25013:1 25016:1 25028:1 25032:2 25037:1 25063:1 25077:3 25081:1 25084:1 25098:1 25132:2 25137:1 25143:1 25148:1 25155:1 25163:1 25164:1 25172:1 25174:1 25193:1 25200:1 25201:1 25204:1 25205:1 25206:1 25210:1 25217:2 25229:1 25238:1 25243:1 25247:1 25279:1 25297:1 25318:1 25361:1 25404:1 25439:1 25444:1 25445:2 25459:1 25480:1 25487:1 25492:1 25521:1 25532:1 25563:1 25598:1 25613:1 25652:1 25660:2 25674:2 25680:1 25699:1 25742:1 25745:1 25759:1 25760:3 25766:1 25773:2 25775:1 25778:1 25790:1 25792:1 25799:1 25801:4 25813:1 25815:1 25828:1 25832:2 25836:2 25845:1 25847:4 25851:1 25860:1 25867:3 25883:3 25884:1 25886:1 25922:1 25924:1 25949:1 25963:1 25969:2 25971:4 25977:3 26008:4 26021:1 26034:1 26051:1 26064:1 26081:1 26114:1 26120:1 26126:1 26131:1 26146:1 26158:1 26162:1 26164:1 26172:1 26173:2 26179:1 26182:1 26196:3 26234:1 26245:5 26252:1 26259:1 26276:1 26308:3 26401:1 26488:1 26495:1 26497:1 26502:2 26504:3 26511:1 26515:1 26516:1 26525:1 26539:1 26552:1 26571:1 26611:3 26620:2 26648:2 26653:2 26668:1 26699:1 26715:1 26721:1 26722:1 26727:1 26728:2 26760:1 26763:2 26767:2 26784:1 26806:1 26819:1 26825:1 26836:1 26844:1 26866:1 26868:3 26876:1 26892:1 26901:1 26903:1 26919:1 26940:1 26943:2 26961:1 26965:1 26966:2 26973:2 26974:2 26975:1 26978:1 27022:4
1 12:1 34:1 43:1 50:1 55:1 60:1 90:1 108:1 124:1 137:1 138:3 147:1 153:1 159:1 165:1 168:2 178:5 189:1 194:1 221:1 231:1 236:5 255:3 262:1 277:1 301:1 312:3 314:2 318:3 326:3 333:1 337:2 356:1 363:1 375:1 392:5 394:2 403:1 451:1 518:1 522:1 538:1 548:2 554:1 565:1 571:1 573:2 580:1 588:1 698:1 708:1 730:2 731:1 738:1 750:1 776:4 779:1 782:1 786:1 787:3 798:1 814:9 815:4 823:3 841:2 854:4 856:2 857:6 859:1 861:1 863:2 877:2 895:3 898:3 909:1 943:2 964:1 994:1 1011:1 1029:1 1100:3 1101:2 1107:1 1111:1 1118:1 1141:1 1145:1 1161:2 1178:1 1184:2 1189:1 1215:1 1230:1 1243:1 1249:1 1253:1 1264:1 1275:1 1296:1 1300:1 1301:2 1303:1 1319:1 1332:1 1340:1 1346:1 1352:1 1361:1 1367:1 1371:1 1385:1 1411:4 1417:5 1420:2 1429:1 1450:1 1461:1 1465:1 1467:1 1476:1 1480:1 1485:2 1498:2 1511:1 1513:1 1517:1 1526:1 1529:1 1540:1 1545:1 1556:1 1560:1 1564:1 1570:1 1580:1 1595:2 1598:1 1615:4 1626:1 1632:1 1636:1 1639:2 1642:1 1643:1 1645:1 1651:2 1653:5 1676:3 1678:2 1692:1 1710:1 1713:1 1715:3 1721:1 1731:1 1744:1 1751:1 1757:1 1764:1 1765:1 1778:2 1787:1 1821:1 1825:2 1830:1 1836:1 1845:2 1851:1 1854:1 1859:1 1862:2 1873:1 1902:1 1905:1 1920:1 1921:1 1924:1 1926:2 1929:1 1966:7 1970:1 1975:1 1979:1 1999:1 2006:2 2025:2 2038:3 2040:1 2053:1 2056:1 2061:2 2078:2 2079:1 2083:2 2084:3 2087:1 2090:1 2095:2 2096:2 2097:1 2099:2 2105:4 2107:3 2109:5 2111:4 2113:1 2123:1 2131:1 2149:1 2152:1 2155:3 2158:1 2172:1 2179:1 2190:1 2191:1 2200:1 2208:1 2210:1 2243:1 2247:1 2262:1 2278:1 2280:1 2287:1 2291:1 2297:1 2306:3 2316:1 2317:1 2325:1 2330:1 2334:1 2345:1 2347:1 2353:2 2356:2 2358:1 2361:5 2365:1 2366:1 2367:1 2379:1 2382:1 2397:1 2408:4 2410:1 2416:1 2430:2 2436:1 2437:1 2447:4 2452:1 2458:1 2460:5 2465:4 2467:1 2474:1 2475:1 2483:1 2485:1 2490:3 2492:2 2503:1 2515:1 2516:2 2520:1 2557:1 2561:1 2562:2 2563:2 2575:2 2577:1 2579:1 2583:3 2590:1 2595:1 2619:1 2639:1 2656:2 2660:1 2664:1 2667:9 2689:2 2690:1 2694:1 2695:1 2697:1 2706:1 2711:2 2731:9 2756:2 2758:2 2773:1 2826:1 2840:1 2841:4 2852:2 2856:1 2860:1 2902:1 2904:1 2908:1 2915:2 2923:1 2938:2 2956:2 2968:1 2991:1 2992:1 3026:1 3027:1 3031:1 3034:1 3048:6 3103:1 3152:1 3192:1 3203:1 3210:1 3213:1 3252:1 3286:2 3291:1 3309:1 3315:10 3325:1 3328:2 3330:1 3331:1 3346:1 3350:1 3399:1 3400:1 3406:1 3407:1 3410:2 3414:1 3423:1 3459:1 3470:1 3473:1 3480:2 3483:1 3486:1 3488:1 3494:1 3506:1 3510:1 3513:2 3520:1 3523:1 3540:2 3542:1 3560:2 3575:1 3576:1 3581:2 3583:1 3587:1 3591:2 3600:2 3610:1 3611:2 3631:2 3652:2 3683:1 3691:3 3692:3 3698:1 3730:1 3733:2 3737:1 3742:1 3759:1 3760:2 3787:1 3794:1 3813:1 3828:1 3838:1 3845:2 3849:1 3853:1 3859:1 3863:2 3875:1 3882:1 3888:1 3898:1 3917:1 3952:7 3957:1 3977:2 3984:1 3993:1 4003:1 4005:1 4018:2 4032:2 4038:1 4057:1 4062:1 4064:2 4084:2 4097:1 4107:1 4116:1 4118:1 4140:2 4160:1 4164:1 4167:1 4172:1 4173:2 4189:1 4201:1 4218:1 4226:1 4246:1 4249:1 4275:3 4284:2 4294:1 4302:2 4307:1 4319:2 4344:1 4361:1 4365:1 4369:2 4383:3 4386:1 4394:1 4403:1 4445:1 4467:1 4488:8 4490:1 4499:1 4501:1 4502:1 4516:1 4535:1 4546:1 4554:1 4625:1 4629:4 4631:4 4632:2 4634:1 4637:1 4638:1 4639:1 4643:1 4645:4 4646:3 4650:1 4651:2 4652:3 4659:3 4663:1 4701:1 4718:1 4737:2 4744:1 4762:1 4767:1 4776:1 4834:1 4842:1 4877:1 4911:1 4916:1 4941:2 4945:1 4955:1 4985:1 5006:2 5018:1 5037:1 5050:1 5064:2 5075:1 5081:1 5088:1 5094:1 5101:1 5121:1 5130:1 5153:1 5197:1 5207:1 5212:2 5216:1 5230:3 5231:1 5234:2 5236:1 5239:1 5240:1 5255:1 5256:1 5281:3 5292:1 5309:5 5314:1 5315:1 5330:2 5336:1 5398:1 5420:1 5422:1 5440:1 5445:1 5453:1 5467:1 5479:1 5503:1 5510:1 5521:2 5535:2 5538:1 5565:3 5567:1 5568:1 5575:1 5576:1 5586:1 5591:1 5623:1 5624:1 5632:1 5639:1 5642:1 5643:1 5647:9 5680:2 5703:1 5715:1 5725:2 5735:1 5751:5 5756:1 5761:1 5763:1 5801:1 5805:1 5828:1 5834:1 5838:1 5844:1 5845:1 5849:1 5850:1 5852:1 5860:3 5861:2 5872:1 5897:1 5904:1 5938:1 5954:1 5987:1 5991:4 5992:2 6006:1 6047:1 6055:1 6066:1 6082:1 6092:1 6115:1 6129:2 6137:2 6152:1 6162:1 6210:1 6235:1 6238:1 6246:1 6254:7 6262:1 6265:1 6267:1 6273:1 6275:1 6279:1 6287:2 6300:1 6344:1 6345:2 6361:1 6385:1 6394:1 6398:1 6401:2 6430:1 6449:1 6453:1 6460:1 6468:1 6469:1 6477:1 6486:1 6490:6 6498:2 6524:1 6528:1 6534:1 6537:1 6538:2 6549:3 6550:1 6552:1 6557:4 6560:1 6564:1 6587:1 6588:1 6599:1 6602:1 6604:1 6621:1 6626:2 6631:2 6641:1 6658:1 6672:1 6677:1 6686:1 6712:1 6728:1 6742:1 6800:1 6806:1 6810:1 6846:1 6857:1 6860:1 6864:1 6870:1 6876:3 6881:1 6894:4 6898:2 6912:1 6913:2 6922:1 6935:1 6943:2 6951:1 6964:1 6969:1 6980:1 6997:1 7027:1 7052:2 7067:3 7068:6 7081:1 7086:1 7090:3 7092:2 7093:2 7116:2 7117:2 7121:1 7136:32 7137:1 7140:2 7147:1 7155:5 7156:3 7162:2 7194:1 7201:1 7202:1 7211:1 7222:1 7224:1 7229:2 7230:2 7235:1 7242:1 7256:1 7276:1 7294:2 7300:1 7305:1 7326:1 7352:1 7355:1 7356:3 7385:1 7390:1 7402:1 7477:1 7507:1 7517:1 7520:1 7523:1 7547:1 7558:1 7568:1 7575:1 7576:1 7580:1 7592:1 7609:17 7618:1 7637:3 7640:1 7642:1 7644:2 7696:2 7698:1 7700:1 7706:1 7734:1 7744:2 7748:2 7751:1 7756:1 7771:1 7777:1 7778:4 7784:2 7790:1 7812:2 7814:1 7836:1 7840:1 7850:1 7876:1 7877:1 7886:1 7890:1 7940:1 7944:1 7945:1 7950:1 7952:1 7976:1 7989:4 8005:1 8008:3 8023:1 8034:1 8043:1 8049:1 8069:1 8073:1 8085:1 8113:1 8124:1 8153:1 8154:1 8163:1 8164:1 8171:1 8197:1 8199:1 8215:1 8228:1 8247:1 8250:1 8253:1 8254:1 8258:3 8282:2 8289:1 8295:2 8306:1 8311:1 8331:1 8332:1 8345:1 8350:3 8351:1 8356:1 8358:1 8363:1 8370:4 8378:1 8407:3 8423:1 8445:3 8446:4 8460:2 8501:1 8515:1 8521:1 8525:2 8541:1 8544:1 8550:1 8552:1 8553:1 8555:2 8600:1 8612:1 8620:2 8622:1 8632:1 8635:4 8656:1 8658:2 8674:4 8698:1 8699:1 8728:1 8735:1 8741:1 8756:2 8765:1 8782:1 8786:1 8793:1 8820:1 8833:1 8838:1 8846:1 8853:6 8856:1 8885:2 8904:1 8908:1 8926:1 8947:1 8953:1 8954:1 8956:2 8958:1 8990:1 9020:1 9022:1 9031:1 9067:2 9073:1 9090:1 9101:2 9113:1 9131:1 9132:1 9144:1 9155:1 9172:1 9173:1 9178:1 9179:1 9196:1 9216:1 9221:1 9222:1 9230:5 9243:3 9249:3 9251:1 9281:2 9300:1 9301:1 9332:1 9337:2 9348:1 9358:1 9361:3 9364:1 9388:1 9391:1 9396:9 9398:1 9402:2 9424:1 9425:1 9439:1 9488:1 9491:2 9493:1 9524:1 9534:1 9536:1 9537:1 9540:1 9542:3 9550:1 9552:1 9555:2 9588:1 9601:4 9608:1 9610:1 9612:1 9617:1 9620:1 9626:1 9632:1 9642:4 9660:1 9681:1 9695:1 9703:1 9710:1 9713:2 9725:1 9732:1 9750:2 9764:1 9769:1 9775:4 9778:2 9791:1 9795:3 9802:1 9812:1 9820:1 9834:2 9848:3 9849:1 9868:1 9869:1 9878:3 9899:1 9916:1 9926:3 9936:1 9946:4 9964:1 9972:1 9980:1 9982:1 9993:2 10096:1 10102:1 10118:1 10120:1 10136:1 10137:2 10141:1 10145:2 10149:1 10156:1 10157:5 10158:5 10159:1 10168:1 10174:2 10177:2 10183:3 10188:1 10189:1 10195:1 10201:2 10213:1 10226:2 10234:1 10255:1 10257:1 10259:1 10294:1 10297:1 10312:1 10323:1 10326:1 10341:1 10412:1 10426:1 10445:1 10474:1 10477:1 10500:1 10503:1 10507:1 10518:1 10523:2 10525:1 10526:1 10528:1 10537:2 10539:1 10541:2 10550:1 10556:2 10559:1 10572:1 10587:9 10588:1 10611:1 10625:3 10636:2 10648:1 10675:2 10682:2 10683:1 10690:1 10693:1 10695:2 10696:1 10706:1 10724:1 10738:1 10766:1 10783:1 10803:3 10805:1 10808:1 10814:1 10821:1 10822:2 10827:1 10828:1 10830:1 10840:1 10841:1 10851:1 10860:1 10863:1 10864:1 10874:3 10875:1 10880:2 10898:1 10921:1 10934:2 10938:1 10972:1 10983:1 10984:1 10998:1 11023:5 11032:1 11043:1 11058:1 11063:1 11071:1 11076:1 11081:1 11100:2 11129:1 11150:1 11170:1 11175:1 11189:1 11195:1 11201:1 11236:1 11244:1 11246:1 11251:4 11252:1 11253:1 11256:1 11267:1 11273:2 11279:1 11283:1 11285:1 11290:1 11335:1 11338:1 11357:1 11376:1 11393:1 11407:1 11413:1 11439:1 11476:3 11494:1 11527:1 11539:1 11550:1 11552:2 11553:1 11570:2 11579:1 11593:1 11606:1 11647:1 11658:1 11665:1 11674:1 11705:7 11710:1 11719:1 11723:1 11728:1 11746:1 11747:1 11753:2 11779:1 11792:2 11798:1 11800:1 11829:1 11850:1 11858:1 11886:1 11890:1 11903:1 11923:1 11924:1 11930:1 11944:1 11963:1 11977:1 11982:3 11994:1 12041:1 12060:1 12078:1 12082:1 12083:1 12085:2 12090:4 12101:1 12106:1 12122:1 12138:3 12157:1 12161:2 12186:1 12193:2 12194:1 12221:1 12223:1 12225:1 12233:4 12236:1 12242:2 12247:1 12260:1 12272:1 12273:1 12283:1 12289:1 12301:10 12306:1 12308:1 12342:2 12343:1 12350:1 12371:1 12384:1 12395:1 12397:1 12421:3 12441:1 12446:5 12465:1 12475:1 12499:2 12515:1 12521:1 12525:1 12533:1 12535:1 12537:1 12544:1 12551:1 12558:3 12559:1 12561:1 12563:1 12564:1 12565:1 12569:6 12570:1 12590:1 12593:1 12595:1 12620:1 12643:1 12675:1 12685:1 12719:2 12756:1 12758:1 12760:1 12767:1 12770:1 12773:2 12774:1 12778:1 12794:1 12814:1 12821:1 12836:7 12857:2 12861:1 12867:1 12890:1 12909:1 12923:1 12934:1 12957:1 12983:1 12984:1 13004:1 13010:1 13017:1 13052:1 13063:2 13077:3 13091:1 13123:1 13143:1 13175:1 13199:1 13200:1 13204:2 13205:2 13212:1 13222:1 13223:1 13225:1 13229:2 13256:1 13265:2 13305:1 13327:2 13349:1 13355:1 13361:2 13367:1 13375:3 13380:2 13428:1 13430:2 13433:1 13476:1 13477:1 13484:1 13506:1 13513:1 13540:3 13552:1 13555:1 13558:2 13587:1 13589:1 13643:1 13693:2 13696:1 13712:1 13734:1 13762:1 13774:1 13776:1 13781:1 13793:1 13794:1 13804:1 13806:1 13829:1 13891:1 13900:1 13922:1 13928:1 13974:1 14004:1 14027:1 14032:1 14034:1 14035:1 14047:1 14064:1 14071:2 14075:1 14096:1 14098:1 14113:2 14130:1 14134:1 14168:1 14189:1 14217:1 14229:2 14244:1 14252:1 14263:2 14266:1 14279:1 14302:1 14328:1 14332:1 14377:1 14391:1 14392:1 14403:2 14413:1 14417:3 14420:1 14424:1 14426:1 14432:1 14445:1 14446:1 14450:1 14453:1 14475:1 14491:2 14497:1 14532:2 14550:2 14559:1 14570:1 14572:3 14587:1 14600:2 14676:1 14683:1 14687:9 14704:1 14709:3 14738:1 14772:1 14783:1 14789:2 14796:2 14817:2 14821:1 14832:1 14876:1 14883:1 14891:1 14892:1 14902:2 14928:1 14929:1 14946:1 14950:1 14954:3 14955:2 14956:2 14957:3 14958:1 14963:2 14965:1 14967:1 14968:3 14972:1 14973:1 14975:1 14979:1 14987:1 15024:1 15060:1 15083:1 15087:1 15088:1 15109:1 15117:1 15119:2 15120:1 15140:1 15162:1 15169:1 15178:1 15198:1 15217:1 15240:1 15250:1 15254:1 15262:1 15272:1 15274:2 15281:1 15282:1 15290:1 15294:3 15302:2 15308:1 15316:1 15321:2 15329:1 15334:1 15342:2 15353:1 15359:1 15367:1 15407:5 15408:1 15432:3 15437:1 15490:1 15491:1 15497:2 15499:1 15507:1 15512:2 15524:1 15525:1 15534:1 15538:1 15541:2 15575:2 15596:4 15617:2 15619:1 15622:1 15646:1 15661:2 15688:1 15703:1 15705:1 15720:1 15722:1 15731:1 15765:1 15768:1 15790:1 15799:1 15808:2 15814:1 15821:1 15845:1 15858:2 15862:1 15873:1 15889:1 15909:1 15930:1 15938:1 15979:1 15982:1 16000:1 16005:1 16027:1 16036:1 16041:1 16047:1 16054:3 16059:2 16060:2 16064:1 16070:1 16071:3 16109:1 16112:1 16116:1 16117:1 16121:1 16128:1 16139:1 16140:1 16156:1 16189:1 16203:1 16204:1 16222:2 16236:1 16244:2 16256:1 16257:1 16261:1 16276:1 16279:1 16311:1 16312:1 16313:1 16339:1 16343:1 16344:1 16347:2 16379:1 16426:2 16439:1 16452:1 16466:1 16514:1 16540:1 16542:1 16551:1 16570:2 16651:1 16657:2 16658:1 16664:1 16674:1 16687:1 16703:1 16721:1 16758:1 16770:1 16787:1 16791:1 16805:1 16848:5 16906:1 16932:1 16954:9 16963:2 16964:1 16977:3 16990:1 16997:1 17001:1 17012:1 17025:1 17048:4 17058:2 17068:1 17084:1 17087:1 17107:1 17112:2 17125:2 17126:2 17137:1593 17147:1 17151:1 17162:1 17188:1 17197:1 17200:1 17201:1 17220:2 17251:1 17263:1 17296:1 17307:1 17311:1 17314:1 17317:1 17321:2 17322:2 17341:1 17351:1 17359:1 17375:1 17406:1 17407:1 17448:1 17450:1 17453:2 17503:1 17521:1 17534:2 17549:1 17551:1 17564:2 17573:1 17591:1 17603:2 17608:1 17616:1 17636:1 17642:2 17646:1 17655:1 17661:1 17670:1 17672:1 17691:2 17692:2 17708:2 17712:1 17716:1 17728:2 17752:2 17753:1 17761:1 17770:1 17771:2 17777:3 17803:1 17818:1 17823:1 17824:1 17846:2 17862:1 17891:1 17900:3 17905:1 17907:2 17914:1 17929:4 17938:1 17942:1 17956:1 17961:1 17968:2 17970:1 17975:1 18006:1 18009:1 18031:1 18038:1 18039:1 18046:1 18047:1 18077:1 18078:1 18079:1 18080:1 18083:1 18088:1 18117:1 18130:1 18144:1 18145:2 18147:1 18152:1 18153:1 18158:1 18182:1 18183:1 18187:1 18196:1 18203:1 18227:1 18229:1 18237:1 18238:1 18279:1 18282:2 18287:1 18288:2 18289:1 18335:1 18354:1 18360:1 18363:1 18368:1 18369:1 18371:1 18388:1 18389:1 18399:2 18405:2 18407:1 18409:1 18421:4 18430:2 18449:1 18462:1 18465:1 18466:3 18495:1 18504:1 18505:1 18507:1 18510:1 18526:1 18531:1 18552:1 18553:1 18569:1 18577:3 18578:9 18579:2 18586:1 18592:3 18596:1 18612:1 18652:1 18663:1 18678:1 18683:1 18695:1 18697:1 18701:1 18705:1 18738:1 18768:3 18787:1 18789:1 18802:2 18807:1 18817:1 18828:1 18830:1 18840:1 18850:1 18865:6 18886:1 18916:1 18917:1 18937:1 18973:2 18987:3 18999:1 19002:1 19006:1 19010:1 19011:1 19020:1 19051:1 19057:3 19063:2 19066:2 19073:2 19081:1 19089:2 19116:3 19126:1 19149:2 19153:1 19162:1 19178:2 19198:3 19202:1 19207:1 19213:1 19215:2 19227:3 19258:2 19264:1 19277:1 19296:1 19297:1 19302:1 19319:2 19321:2 19327:1 19331:1 19337:2 19353:1 19358:2 19381:2 19392:1 19393:1 19401:1 19402:1 19403:2 19420:1 19427:2 19435:1 19441:1 19446:1 19447:1 19450:1 19460:1 19480:1 19481:1 19510:1 19517:1 19519:1 19524:2 19525:2 19550:1 19618:1 19652:1 19656:1 19664:1 19665:2 19667:1 19669:1 19687:1 19694:1 19699:2 19705:1 19740:1 19746:1 19750:1 19768:1 19787:1 19789:1 19791:1 19794:1 19796:2 19799:1 19800:1 19811:1 19825:1 19830:2 19833:1 19841:1 19851:1 19853:2 19874:5 19892:2 19902:1 19916:1 19929:1 19943:1 19948:1 19952:1 20000:1 20010:1 20019:2 20024:1 20034:3 20036:1 20037:1 20046:2 20054:1 20056:1 20082:1 20083:1 20085:2 20087:1 20088:1 20114:1 20151:1 20171:3 20174:1 20176:1 20178:2 20179:2 20181:1 20186:1 20189:1 20194:2 20205:4 20213:1 20218:1 20236:1 20244:2 20252:1 20255:1 20269:1 20324:1 20338:1 20344:1 20365:2 20368:1 20377:1 20396:1 20405:1 20409:1 20421:1 20423:1 20425:3 20440:1 20441:2 20446:1 20447:2 20463:1 20484:2 20487:1 20491:1 20492:4 20498:2 20503:1 20512:1 20513:4 20519:1 20525:1 20531:1 20547:1 20549:1 20553:1 20575:7 20576:1 20589:1 20609:1 20624:1 20631:3 20632:1 20640:1 20649:1 20664:1 20687:1 20690:2 20717:1 20723:1 20726:3 20728:1 20735:3 20740:2 20749:1 20753:1 20757:1 20773:1 20775:2 20787:1 20794:1 20795:1 20800:2 20809:1 20815:1 20827:1 20834:1 20846:1 20851:1 20863:1 20866:1 20890:1 20903:1 20904:1 20906:1 20921:1 20935:3 20936:1 20952:1 20957:2 20962:2 20970:3 20982:2 20996:1 21021:1 21032:1 21033:1 21037:2 21040:1 21055:1 21056:1 21084:1 21085:1 21086:1 21101:1 21104:1 21128:2 21131:1 21138:1 21139:1 21142:1 21175:3 21204:3 21253:1 21269:1 21294:3 21297:1 21304:5 21314:2 21322:1 21328:1 21330:3 21341:2 21344:1 21345:1 21358:1 21368:3 21406:1 21413:1 21446:1 21458:1 21463:1 21472:2 21502:1 21505:1 21510:1 21527:2 21534:1 21537:1 21548:1 21549:1 21559:1 21579:2 21584:2 21592:1 21605:1 21624:3 21625:1 21628:1 21641:1 21644:1 21650:1 21695:1 21696:4 21698:1 21701:1 21714:1 21715:2 21716:1 21718:1 21722:1 21749:1 21769:1 21779:1 21789:1 21845:1 21853:1 21878:1 21884:1 21943:2 21951:1 21953:1 21964:1 21998:1 22008:1 22047:1 22066:1 22084:1 22090:1 22101:2 22113:1 22140:1 22165:2 22176:2 22186:1 22213:5 22228:1 22233:1 22241:1 22259:1 22261:1 22267:1 22270:2 22279:1 22280:1 22287:1 22293:1 22317:3 22319:1 22340:2 22341:1 22345:1 22346:1 22425:1 22426:1 22451:1 22454:1 22455:1 22461:1 22467:3 22476:1 22477:1 22479:2 22484:1 22494:1 22518:4 22535:1 22536:1 22539:1 22544:1 22551:1 22552:1 22557:1 22582:8 22587:1 22609:1 22611:1 22618:1 22636:1 22639:1 22643:3 22651:1 22667:1 22670:1 22681:1 22756:1 22781:1 22787:1 22794:1 22800:1 22809:2 22817:1 22822:1 22823:1 22826:1 22858:1 22863:1 22874:1 22901:2 22913:2 22917:1 22918:1 22930:1 22932:1 22941:2 22946:1 22952:2 22957:1 22968:1 22974:1 23002:8 23003:1 23026:1 23032:1 23033:1 23036:1 23045:1 23066:1 23067:1 23078:1 23085:1 23098:2 23101:1 23105:2 23110:1 23111:1 23131:1 23133:1 23139:1 23143:1 23145:1 23160:1 23166:1 23198:1 23220:5 23221:1 23235:1 23240:1 23253:1 23280:1 23285:3 23286:1 23308:1 23311:2 23314:1 23340:1 23353:1 23359:1 23365:1 23398:1 23407:1 23422:1 23426:2 23428:1 23437:2 23448:1 23452:1 23473:1 23527:1 23534:1 23540:1 23560:1 23564:2 23569:3 23571:1 23579:1 23617:3 23629:1 23632:1 23650:3 23688:1 23689:1 23698:1 23701:1 23715:1 23746:1 23777:2 23821:1 23826:1 23838:1 23853:1 23860:1 23919:2 23928:1 23929:1 23945:1 23952:1 23953:1 23958:1 23988:1 24023:2 24030:1 24035:1 24058:1 24065:1 24074:2 24075:1 24094:9 24095:2 24105:1 24115:1 24126:1 24151:2 24163:1 24165:1 24183:1 24188:1 24199:1 24211:3 24215:3 24221:3 24224:2 24226:4 24228:1 24253:1 24300:1 24337:1 24340:1 24350:1 24362:2 24370:1 24380:1 24384:1 24386:1 24387:1 24388:2 24415:6 24417:1 24418:1 24425:1 24439:1 24442:1 24447:1 24467:1 24470:1 24483:1 24531:1 24537:1 24553:1 24562:1 24569:1 24596:1 24634:1 24635:1 24641:5 24652:1 24653:1 24677:1 24684:1 24689:1 24690:1 24703:1 24707:1 24711:1 24721:1 24746:1 24747:2 24758:3 24769:1 24785:1 24788:1 24793:1 24797:2 24823:1 24849:1 24886:1 24895:1 24912:1 24915:3 24918:1 24921:1 24922:1 24936:1 24938:2 24950:1 24961:2 24972:1 24974:1 24977:1 24985:2 24986:1 24991:1 25013:1 25016:1 25028:1 25032:2 25037:1 25063:1 25077:3 25081:1 25084:2 25098:1 25132:2 25137:1 25143:1 25148:1 25155:1 25163:1 25164:1 25172:2 25174:1 25193:1 25200:1 25201:1 25204:1 25205:1 25206:1 25210:1 25217:2 25229:1 25238:1 25243:1 25247:1 25279:1 25297:1 25318:1 25361:1 25404:1 25439:1 25444:1 25445:2 25459:1 25480:1 25487:1 25492:1 25521:1 25532:1 25563:2 25598:1 25613:1 25652:1 25655:1 25660:2 25674:2 25680:1 25699:1 25742:1 25745:1 25759:1 25760:3 25766:1 25773:2 25775:1 25778:1 25790:1 25792:1 25799:1 25801:4 25813:1 25815:1 25828:1 25832:2 25836:2 25845:1 25847:4 25851:1 25860:1 25867:3 25883:3 25884:1 25886:1 25922:1 25924:1 25949:1 25963:1 25969:2 25971:4 25977:3 26008:4 26021:1 26034:1 26051:1 26064:1 26081:1 26083:1 26114:1 26120:1 26126:1 26131:1 26146:1 26158:1 26162:1 26164:1 26172:1 26173:2 26179:1 26182:1 26196:3 26234:1 26245:5 26252:1 26259:1 26276:1 26308:3 26401:1 26488:1 26495:1 26497:1 26502:2 26504:3 26511:1 26515:1 26516:1 26525:1 26539:1 26552:1 26571:1 26611:3 26620:2 26648:2 26653:2 26668:1 26699:1 26715:1 26721:2 26722:1 26727:1 26728:2 26760:1 26763:2 26767:2 26780:1 26784:1 26806:1 26819:1 26825:1 26836:1 26844:1 26866:1 26868:3 26876:1 26892:1 26901:1 26903:1 26919:1 26940:1 26943:2 26961:1 26965:1 26966:2 26973:2 26974:2 26975:1 26978:1 27022:4
1 12:1 34:1 43:1 50:1 55:1 60:1 90:1 108:1 124:1 137:1 138:3 147:1 153:1 159:1 165:1 168:2 178:5 189:1 194:1 221:1 231:1 236:6 255:3 262:1 277:1 301:1 312:3 314:2 318:3 326:3 333:1 337:2 356:1 363:1 375:1 392:5 394:2 403:1 451:1 509:1 518:1 522:1 538:1 548:2 554:1 565:1 571:1 573:2 580:1 588:1 656:1 698:1 708:1 730:2 731:1 738:1 750:1 776:5 779:1 782:1 786:1 787:3 798:1 814:9 815:4 823:3 841:2 853:1 854:4 856:2 857:6 859:1 861:1 863:2 877:2 895:3 898:3 909:1 943:2 951:1 964:1 994:1 1011:1 1029:1 1053:1 1054:1 1100:3 1101:2 1107:1 1111:1 1118:1 1141:1 1145:2 1161:2 1178:1 1184:2 1189:1 1215:1 1230:1 1243:1 1249:1 1253:1 1256:1 1264:1 1275:1 1296:1 1300:1 1301:2 1303:1 1319:1 1332:1 1340:2 1346:1 1352:1 1361:1 1367:1 1371:2 1385:1 1411:4 1417:5 1420:2 1429:1 1450:2 1461:1 1465:1 1467:1 1476:1 1480:1 1485:2 1498:2 1511:1 1513:1 1517:1 1526:1 1529:1 1540:1 1545:1 1549:1 1556:1 1560:1 1564:1 1570:1 1580:1 1595:2 1598:1 1615:4 1626:1 1632:1 1636:1 1639:2 1642:1 1643:1 1645:1 1651:2 1653:5 1660:1 1676:3 1678:2 1692:1 1710:1 1713:1 1715:3 1721:1 1731:1 1744:1 1751:1 1757:1 1764:1 1765:1 1778:2 1787:1 1821:1 1825:2 1830:1 1836:1 1845:2 1851:1 1854:1 1859:1 1862:2 1873:1 1902:1 1905:1 1920:1 1921:1 1924:1 1926:2 1929:1 1966:8 1970:1 1975:1 1979:1 1984:1 1999:1 2006:2 2025:2 2038:3 2040:1 2052:1 2053:1 2056:1 2061:2 2078:2 2079:1 2083:2 2084:3 2087:1 2090:1 2095:2 2096:2 2097:1 2099:2 2105:4 2107:3 2109:5 2111:4 2113:1 2123:1 2131:1 2149:1 2152:1 2155:3 2158:1 2172:1 2179:1 2190:1 2191:1 2200:1 2208:1 2210:1 2243:1 2247:1 2262:1 2278:1 2280:1 2287:1 2291:1 2297:1 2306:3 2316:1 2317:1 2325:1 2330:1 2334:1 2345:1 2347:1 2353:2 2356:2 2358:1 2361:5 2365:1 2366:1 2367:1 2379:1 2382:1 2397:1 2408:4 2410:1 2416:1 2430:2 2436:1 2437:1 2447:6 2452:1 2458:1 2460:5 2465:4 2467:1 2474:1 2475:1 2483:1 2485:1 2490:3 2492:2 2503:1 2515:1 2516:2 2520:1 2557:1 2561:1 2562:2 2563:2 2575:2 2577:1 2579:1 2583:3 2590:2 2595:1 2619:1 2639:1 2656:2 2660:1 2664:1 2667:10 2689:2 2690:1 2694:1 2695:1 2697:1 2706:1 2711:2 2731:9 2733:1 2756:2 2758:2 2773:1 2783:1 2814:1 2826:1 2840:1 2841:4 2852:3 2856:1 2860:1 2879:1 2902:1 2904:1 2908:1 2915:2 2923:1 2938:2 2956:2 2968:1 2991:1 2992:1 3026:1 3027:2 3031:1 3034:1 3048:6 3103:1 3147:2 3152:1 3192:1 3193:1 3203:1 3210:1 3213:1 3252:1 3268:1 3286:2 3291:1 3309:1 3314:1 3315:10 3325:1 3328:2 3330:1 3331:1 3346:1 3350:1 3358:1 3394:1 3399:1 3400:1 3406:1 3407:1 3410:3 3414:1 3423:1 3459:1 3470:1 3473:1 3480:2 3483:1 3486:1 3488:1 3494:1 3506:1 3510:1 3513:2 3520:1 3523:1 3540:2 3542:1 3560:2 3575:1 3576:1 3581:4 3583:1 3587:1 3591:2 3600:2 3610:1 3611:2 3629:1 3631:2 3650:1 3652:2 3660:1 3683:1 3691:3 3692:3 3698:2 3730:1 3733:2 3737:1 3742:1 3759:1 3760:2 3787:2 3794:1 3813:1 3828:1 3838:1 3845:2 3849:1 3853:1 3859:1 3863:2 3875:1 3882:1 3888:1 3898:1 3917:1 3952:7 3957:1 3977:3 3984:1 3993:1 4003:1 4005:1 4018:2 4032:2 4038:1 4057:1 4062:1 4064:2 4084:2 4097:1 4107:1 4116:1 4118:1 4140:2 4160:1 4164:1 4167:1 4172:1 4173:2 4189:1 4201:1 4218:1 4226:1 4234:1 4246:1 4249:1 4275:3 4284:2 4294:1 4302:2 4307:1 4319:2 4344:1 4361:1 4365:2 4369:2 4383:3 4386:1 4394:1 4403:1 4445:1 4467:1 4477:1 4488:8 4490:1 4499:1 4501:1 4502:1 4516:1 4535:1 4546:1 4554:1 4608:1 4625:1 4629:4 4631:4 4632:2 4634:1 4637:1 4638:1 4639:1 4642:1 4643:1 4645:4 4646:3 4650:1 4651:2 4652:4 4659:3 4663:1 4701:1 4718:1 4737:2 4744:1 4762:1 4767:1 4776:1 4834:1 4842:1 4877:1 4911:1 4916:1 4941:2 4945:2 4955:1 4985:1 5006:3 5018:1 5037:1 5050:1 5055:1 5064:2 5075:1 5081:1 5088:1 5094:1 5101:1 5121:1 5130:1 5153:1 5197:1 5207:1 5212:2 5216:1 5230:4 5231:1 5234:2 5236:1 5239:1 5240:1 5255:1 5256:1 5281:3 5292:1 5293:1 5309:5 5314:1 5315:1 5330:2 5336:1 5398:1 5420:1 5422:1 5440:1 5445:1 5453:1 5467:1 5479:1 5503:1 5510:1 5521:2 5535:2 5538:1 5565:5 5567:1 5568:1 5575:1 5576:1 5586:1 5591:1 5620:1 5623:1 5624:1 5632:1 5639:1 5642:1 5643:1 5647:9 5680:2 5703:1 5715:1 5725:2 5735:1 5751:5 5756:1 5761:1 5763:1 5801:1 5805:1 5828:1 5834:1 5838:1 5844:2 5845:2 5849:1 5850:1 5852:1 5859:2 5860:3 5861:2 5872:1 5897:1 5904:1 5938:1 5954:1 5987:1 5991:4 5992:2 6006:1 6047:1 6055:1 6066:1 6082:1 6092:1 6115:1 6129:2 6137:2 6146:1 6152:1 6162:1 6210:1 6235:1 6238:1 6246:1 6254:7 6262:2 6265:1 6267:1 6273:1 6275:1 6279:1 6287:2 6300:1 6344:1 6345:2 6361:1 6385:1 6394:1 6398:1 6401:2 6430:1 6449:1 6453:1 6460:1 6465:1 6468:1 6469:1 6477:1 6486:1 6490:6 6498:2 6524:1 6528:1 6534:1 6537:1 6538:2 6549:3 6550:1 6552:1 6557:4 6560:1 6564:1 6587:1 6588:1 6599:1 6602:1 6604:1 6621:1 6626:2 6631:2 6641:1 6658:1 6672:1 6677:1 6686:1 6712:1 6728:1 6742:1 6800:1 6806:1 6810:1 6846:1 6857:1 6860:1 6864:1 6870:1 6876:3 6881:1 6894:4 6898:2 6912:1 6913:2 6922:1 6935:1 6943:2 6951:1 6964:1 6969:1 6980:1 6997:1 7027:1 7052:2 7067:3 7068:6 7081:1 7086:1 7090:3 7092:2 7093:2 7116:2 7117:2 7121:1 7136:33 7137:1 7140:2 7147:1 7155:5 7156:3 7162:2 7194:1 7201:1 7202:1 7211:1 7222:1 7224:1 7229:2 7230:2 7235:1 7242:1 7256:1 7276:1 7294:2 7300:1 7305:1 7326:1 7352:1 7355:1 7356:3 7385:1 7390:1 7402:2 7477:1 7507:1 7517:1 7520:1 7523:1 7547:1 7556:1 7558:1 7568:1 7575:1 7576:1 7580:2 7592:1 7609:18 7618:1 7619:1 7637:3 7640:1 7642:1 7644:2 7696:2 7698:1 7700:1 7706:1 7734:1 7744:2 7748:2 7751:1 7756:1 7771:1 7777:1 7778:4 7784:2 7790:1 7812:2 7814:1 7820:1 7836:1 7840:1 7850:1 7876:1 7877:1 7886:1 7890:1 7940:1 7944:1 7945:1 7950:1 7952:1 7976:1 7989:4 8005:1 8008:3 8023:1 8034:1 8043:1 8049:2 8052:1 8069:1 8073:1 8085:2 8113:1 8124:1 8153:1 8154:1 8163:1 8164:1 8171:1 8197:1 8199:1 8215:1 8228:1 8247:1 8250:1 8253:1 8254:1 8258:3 8282:2 8289:1 8295:2 8306:1 8311:1 8331:1 8332:1 8345:1 8350:3 8351:1 8356:1 8358:1 8363:1 8370:4 8378:1 8407:4 8423:1 8445:3 8446:4 8460:2 8501:1 8515:1 8521:1 8525:2 8541:1 8544:1 8550:1 8552:1 8553:1 8555:2 8600:1 8612:1 8620:2 8622:1 8632:1 8635:4 8656:2 8658:2 8674:4 8698:1 8699:1 8728:1 8735:1 8741:1 8756:2 8765:1 8782:1 8786:1 8793:1 8820:1 8833:1 8838:1 8846:1 8853:6 8856:1 8885:2 8904:1 8908:1 8926:1 8947:1 8953:1 8954:1 8956:2 8958:2 8990:1 9020:1 9022:1 9031:1 9067:2 9073:1 9077:1 9090:1 9101:2 9113:1 9131:1 9132:1 9144:1 9155:1 9172:1 9173:1 9178:1 9179:1 9191:1 9196:1 9216:1 9221:1 9222:1 9230:5 9243:3 9249:3 9251:1 9281:2 9300:1 9301:1 9332:1 9337:2 9348:1 9358:1 9361:3 9364:1 9388:1 9391:1 9396:9 9398:1 9402:2 9406:1 9424:1 9425:1 9434:1 9439:1 9488:1 9491:2 9493:1 9524:1 9534:1 9536:1 9537:1 9540:1 9542:3 9550:1 9552:1 9555:2 9588:1 9601:4 9608:1 9610:1 9612:1 9617:1 9620:1 9626:1 9632:1 9642:4 9660:1 9681:1 9695:1 9703:1 9708:1 9710:1 9713:2 9725:2 9732:1 9750:2 9764:1 9769:1 9775:4 9778:2 9791:1 9795:3 9802:1 9812:1 9820:1 9834:2 9848:3 9849:1 9868:1 9869:1 9878:3 9899:1 9916:1 9926:3 9936:1 9946:4 9964:1 9972:1 9980:1 9982:1 9993:2 10030:1 10096:1 10102:1 10118:1 10120:1 10136:1 10137:2 10141:1 10144:1 10145:2 10149:1 10156:1 10157:5 10158:5 10159:1 10168:1 10174:2 10177:2 10183:3 10188:1 10189:1 10195:1 10201:2 10213:1 10226:2 10234:1 10255:1 10257:1 10259:1 10294:1 10297:1 10312:1 10323:1 10326:1 10341:1 10412:1 10426:1 10445:1 10474:1 10477:1 10484:1 10500:2 10503:1 10507:1 10518:1 10523:2 10525:1 10526:1 10528:1 10537:2 10539:1 10541:2 10550:1 10556:2 10559:1 10572:1 10587:10 10588:1 10611:1 10625:3 10635:1 10636:2 10648:1 10675:2 10682:2 10683:1 10690:1 10693:2 10695:2 10696:1 10706:1 10724:1 10738:1 10766:1 10783:1 10803:3 10805:1 10808:1 10814:1 10821:1 10822:2 10827:1 10828:1 10830:1 10840:1 10841:1 10851:1 10860:1 10863:1 10864:1 10874:3 10875:1 10880:2 10898:1 10921:1 10934:2 10938:1 10972:1 10983:1 10984:1 10998:1 11023:5 11032:1 11043:1 11046:1 11058:1 11063:1 11071:1 11076:1 11081:1 11100:2 11129:1 11150:1 11170:1 11175:1 11189:1 11195:1 11201:1 11236:1 11244:1 11246:1 11251:5 11252:1 11253:1 11256:1 11267:1 11273:2 11279:1 11283:1 11285:1 11290:1 11335:1 11338:1 11357:1 11376:1 11393:1 11407:1 11413:1 11439:1 11476:3 11494:1 11527:1 11539:1 11550:1 11552:2 11553:1 11568:1 11570:2 11579:1 11593:1 11606:1 11647:1 11658:1 11663:1 11665:1 11674:1 11705:8 11710:1 11719:1 11723:1 11728:1 11746:1 11747:1 11753:2 11775:1 11779:1 11792:2 11794:1 11798:1 11800:1 11829:1 11850:1 11858:1 11863:1 11886:1 11890:1 11903:1 11923:1 11924:1 11930:1 11944:1 11946:1 11963:1 11977:1 11982:3 11994:1 12041:1 12060:1 12078:1 12082:1 12083:1 12085:2 12090:4 12101:1 12106:1 12122:1 12138:3 12157:1 12161:2 12186:1 12193:3 12194:1 12221:1 12223:1 12224:1 12225:1 12233:4 12236:1 12242:2 12247:1 12260:1 12272:1 12273:1 12283:1 12289:1 12301:10 12306:1 12308:1 12342:2 12343:1 12350:1 12371:1 12384:1 12395:1 12397:1 12421:3 12441:1 12446:6 12449:1 12465:1 12475:1 12478:1 12499:2 12515:1 12521:1 12525:1 12533:1 12535:1 12537:1 12544:1 12551:1 12558:4 12559:1 12561:1 12563:1 12564:2 12565:1 12569:6 12570:1 12590:1 12593:1 12595:1 12620:1 12643:1 12675:1 12685:1 12719:3 12756:1 12758:1 12760:1 12767:1 12770:1 12773:2 12774:1 12778:1 12794:1 12814:2 12821:1 12833:1 12836:7 12857:2 12861:1 12867:1 12890:1 12902:1 12909:1 12923:1 12934:1 12957:1 12983:1 12984:1 13004:1 13010:1 13017:1 13052:1 13063:2 13077:3 13091:1 13104:1 13123:1 13143:1 13175:1 13199:1 13200:1 13204:2 13205:2 13212:1 13222:1 13223:1 13225:1 13229:2 13230:1 13256:1 13265:2 13294:1 13305:1 13327:2 13349:1 13355:1 13361:2 13367:1 13375:3 13380:2 13428:1 13430:2 13433:1 13476:1 13477:1 13484:1 13506:1 13513:1 13540:3 13552:1 13555:1 13558:2 13587:1 13589:1 13643:2 13693:2 13696:1 13712:1 13734:1 13762:1 13774:1 13776:2 13781:1 13793:1 13794:1 13804:1 13806:1 13829:1 13891:1 13900:1 13922:1 13928:1 13974:1 14004:1 14027:1 14032:1 14034:1 14035:1 14047:1 14064:1 14071:2 14075:1 14096:1 14098:1 14113:2 14130:1 14134:1 14156:1 14168:1 14184:1 14189:1 14217:1 14229:2 14244:1 14252:1 14263:2 14266:1 14279:1 14302:1 14311:1 14328:1 14332:1 14335:1 14377:1 14391:1 14392:1 14403:2 14413:1 14417:3 14420:1 14424:1 14426:1 14432:1 14445:2 14446:1 14450:1 14453:1 14475:1 14491:2 14497:1 14532:2 14550:3 14559:1 14570:1 14572:3 14587:1 14600:2 14676:1 14683:1 14687:9 14704:1 14709:3 14738:2 14772:1 14783:1 14789:2 14796:2 14817:2 14821:1 14832:1 14876:1 14883:1 14891:1 14892:1 14902:2 14928:1 14929:1 14946:1 14950:1 14954:3 14955:2 14956:2 14957:4 14958:1 14963:2 14965:1 14967:1 14968:3 14972:1 14973:1 14975:1 14979:1 14987:1 15024:1 15060:1 15083:1 15087:1 15088:1 15109:1 15114:1 15117:1 15119:2 15120:1 15140:1 15162:1 15169:1 15178:1 15198:1 15217:1 15240:1 15250:1 15254:1 15262:1 15272:1 15274:2 15281:1 15282:1 15290:1 15294:4 15302:2 15308:1 15316:1 15321:2 15329:1 15334:1 15342:3 15353:1 15359:1 15367:1 15407:6 15408:1 15431:1 15432:3 15437:1 15490:1 15491:1 15497:2 15499:1 15507:1 15512:2 15524:1 15525:1 15534:1 15538:1 15541:2 15575:2 15596:4 15617:2 15619:1 15622:1 15646:1 15661:2 15688:1 15703:1 15705:2 15720:1 15722:1 15731:1 15765:1 15768:1 15790:1 15799:1 15808:2 15814:1 15821:1 15845:1 15858:2 15862:1 15873:1 15889:1 15909:1 15930:1 15938:1 15979:1 15982:1 16000:1 16005:1 16021:2 16027:1 16036:1 16037:2 16041:1 16047:1 16054:3 16059:2 16060:2 16064:1 16070:1 16071:3 16109:1 16112:1 16116:1 16117:1 16121:1 16128:1 16139:1 16140:1 16156:1 16189:1 16203:1 16204:1 16222:2 16236:1 16244:2 16256:1 16257:1 16261:1 16276:1 16279:1 16311:1 16312:1 16313:1 16339:1 16343:1 16344:1 16347:2 16379:1 16405:1 16426:2 16439:1 16452:1 16466:1 16514:1 16540:1 16542:1 16551:1 16570:2 16651:1 16657:2 16658:1 16664:1 16674:1 16687:1 16703:1 16721:1 16758:1 16770:1 16787:1 16791:2 16805:1 16848:6 16906:1 16932:1 16954:11 16963:2 16964:1 16977:3 16990:1 16997:1 17001:1 17012:1 17025:1 17048:4 17058:2 17068:1 17084:1 17087:1 17107:1 17112:2 17125:2 17126:2 17137:1670 17147:1 17151:1 17162:1 17188:1 17197:1 17200:1 17201:1 17220:2 17251:1 17262:1 17263:1 17282:1 17296:1 17307:1 17311:1 17314:1 17317:2 17321:2 17322:2 17341:1 17351:1 17359:1 17375:1 17406:1 17407:1 17448:1 17450:1 17453:2 17459:1 17494:1 17503:1 17521:1 17534:2 17549:1 17551:1 17564:2 17573:1 17591:1 17603:2 17608:1 17616:1 17636:1 17642:2 17646:1 17655:1 17661:1 17670:1 17672:1 17691:2 17692:2 17708:2 17712:1 17716:1 17728:2 17752:2 17753:1 17761:1 17770:1 17771:2 17777:3 17803:1 17818:1 17823:2 17824:1 17846:2 17860:1 17862:1 17891:1 17900:4 17905:1 17907:2 17914:1 17929:4 17938:1 17942:1 17956:1 17961:1 17968:2 17970:1 17975:1 18006:1 18009:1 18031:1 18038:1 18039:1 18046:1 18047:1 18050:1 18077:1 18078:1 18079:1 18080:1 18083:1 18088:1 18117:1 18130:1 18144:1 18145:2 18147:1 18152:1 18153:1 18158:1 18182:1 18183:1 18185:1 18187:1 18196:1 18203:1 18214:1 18227:1 18229:1 18237:1 18238:1 18249:1 18279:1 18282:3 18287:1 18288:2 18289:1 18335:1 18354:1 18360:1 18363:1 18368:2 18369:1 18371:1 18388:1 18389:1 18399:2 18405:2 18407:1 18409:1 18421:4 18430:2 18449:1 18462:1 18465:1 18466:3 18495:1 18504:1 18505:1 18507:1 18510:1 18526:1 18531:1 18552:1 18553:1 18569:1 18577:3 18578:9 18579:2 18586:1 18592:3 18596:1 18612:1 18643:1 18652:1 18663:1 18672:1 18678:1 18683:1 18695:1 18697:1 18701:1 18705:1 18726:1 18738:1 18768:4 18787:1 18789:1 18802:2 18807:1 18817:1 18828:1 18830:1 18840:2 18850:1 18865:6 18886:1 18916:1 18917:1 18937:1 18973:2 18987:3 18999:1 19002:1 19006:1 19010:1 19011:1 19020:1 19023:1 19051:2 19057:3 19063:2 19066:2 19073:2 19081:1 19089:2 19116:3 19126:2 19149:2 19153:1 19162:1 19178:2 19183:1 19198:3 19202:1 19207:1 19213:1 19215:2 19227:3 19258:2 19264:1 19277:1 19296:1 19297:1 19298:1 19302:1 19319:2 19321:2 19327:1 19331:1 19337:2 19353:1 19358:2 19381:2 19392:1 19393:1 19401:1 19402:1 19403:3 19420:1 19427:2 19435:1 19441:1 19446:1 19447:1 19450:1 19460:1 19480:1 19481:1 19486:1 19510:1 19517:1 19519:1 19524:2 19525:2 19550:1 19618:1 19652:2 19656:1 19664:1 19665:2 19667:1 19669:1 19673:1 19687:1 19694:1 19699:2 19705:1 19740:1 19746:1 19750:1 19768:1 19787:1 19789:1 19790:1 19791:1 19794:1 19796:2 19799:1 19800:1 19811:1 19825:1 19830:2 19833:1 19841:1 19851:1 19853:2 19874:6 19886:1 19892:2 19902:1 19916:1 19929:1 19943:1 19948:1 19952:1 19955:1 20000:1 20010:1 20019:2 20024:1 20026:1 20030:1 20034:3 20036:1 20037:1 20046:2 20054:1 20056:1 20082:1 20083:1 20085:2 20087:2 20088:1 20114:1 20151:1 20171:3 20174:1 20176:2 20178:2 20179:2 20181:1 20186:1 20189:1 20194:2 20205:4 20213:1 20218:1 20236:1 20244:2 20252:2 20255:1 20269:1 20315:1 20324:1 20338:1 20344:1 20365:2 20368:1 20377:1 20396:1 20405:1 20409:1 20421:1 20423:1 20425:3 20440:1 20441:2 20446:1 20447:2 20455:1 20463:1 20484:2 20487:1 20491:1 20492:4 20498:2 20503:1 20512:1 20513:5 20519:1 20525:1 20531:1 20547:1 20549:1 20553:1 20575:7 20576:1 20589:1 20609:1 20624:1 20631:3 20632:1 20640:1 20649:1 20664:1 20687:1 20690:2 20717:1 20723:1 20726:3 20728:1 20735:3 20740:2 20749:1 20753:1 20757:1 20773:1 20775:2 20787:1 20794:1 20795:1 20800:3 20809:1 20815:1 20827:1 20834:1 20846:1 20851:1 20863:1 20866:1 20890:1 20903:1 20904:1 20906:1 20921:2 20935:3 20936:2 20952:1 20957:2 20962:3 20970:3 20982:2 20996:1 21021:1 21032:1 21033:1 21037:2 21040:1 21055:1 21056:1 21084:1 21085:1 21086:1 21101:1 21104:1 21128:2 21131:1 21138:1 21139:1 21142:1 21175:3 21204:3 21253:1 21269:1 21294:3 21297:1 21304:5 21314:2 21322:1 21328:1 21330:3 21341:2 21344:1 21345:1 21358:1 21368:4 21406:1 21413:1 21446:1 21458:1 21463:1 21472:2 21502:1 21505:1 21510:1 21527:2 21534:1 21537:1 21548:1 21549:1 21559:1 21579:2 21584:2 21592:1 21605:1 21624:3 21625:1 21628:2 21641:1 21644:1 21650:1 21695:1 21696:4 21698:1 21701:1 21714:1 21715:2 21716:1 21718:1 21719:1 21722:1 21749:1 21769:1 21779:1 21789:1 21845:1 21853:1 21878:1 21884:1 21943:2 21951:1 21953:1 21964:1 21998:1 22008:1 22047:1 22066:1 22084:1 22090:1 22101:2 22113:1 22136:1 22140:1 22165:2 22176:2 22186:1 22213:5 22228:1 22233:1 22241:1 22259:1 22261:1 22267:1 22270:2 22279:1 22280:1 22287:1 22293:1 22317:3 22319:1 22340:2 22341:1 22345:1 22346:1 22425:1 22426:1 22451:1 22454:1 22455:1 22461:1 22467:3 22469:1 22473:1 22476:1 22477:1 22479:2 22482:1 22484:1 22494:1 22518:4 22535:1 22536:1 22539:1 22544:1 22551:1 22552:1 22555:1 22557:1 22582:8 22585:1 22587:1 22609:1 22611:1 22618:1 22630:1 22636:1 22639:1 22643:3 22651:1 22667:1 22670:1 22681:1 22756:1 22781:1 22787:1 22794:1 22800:2 22809:2 22817:1 22822:2 22823:1 22826:1 22858:1 22863:1 22874:1 22890:1 22901:2 22913:2 22917:1 22918:1 22930:1 22932:1 22941:2 22946:1 22952:2 22957:1 22968:1 22974:1 23002:9 23003:1 23026:1 23032:1 23033:1 23036:1 23045:1 23066:1 23067:1 23078:1 23085:1 23098:2 23101:1 23105:2 23110:1 23111:1 23131:1 23133:1 23139:1 23143:1 23145:1 23160:1 23166:1 23198:1 23220:6 23221:1 23235:1 23240:1 23253:1 23276:1 23280:1 23285:3 23286:1 23308:1 23311:2 23314:1 23340:1 23353:2 23359:1 23365:1 23398:1 23407:1 23422:1 23426:2 23428:1 23437:2 23448:1 23452:1 23473:1 23527:1 23534:1 23540:1 23560:1 23564:2 23569:3 23571:1 23579:1 23617:3 23629:1 23632:1 23650:4 23688:1 23689:1 23698:1 23701:1 23715:1 23746:1 23777:2 23821:1 23826:1 23838:1 23853:1 23860:1 23919:2 23928:1 23929:1 23945:1 23952:1 23953:1 23958:1 23988:1 24023:3 24030:1 24035:1 24058:1 24065:1 24074:2 24075:1 24094:11 24095:2 24105:1 24115:1 24126:1 24151:2 24163:1 24165:1 24183:1 24188:1 24199:1 24211:3 24215:3 24221:3 24224:2 24226:4 24228:1 24253:1 24300:1 24337:1 24340:1 24350:1 24362:2 24370:1 24380:1 24384:1 24386:1 24387:1 24388:2 24415:6 24417:1 24418:1 24425:1 24439:1 24442:1 24447:1 24467:1 24470:1 24483:1 24531:1 24537:1 24553:1 24562:1 24569:1 24596:1 24634:1 24635:1 24641:5 24652:1 24653:1 24677:1 24684:1 24689:1 24690:1 24703:1 24707:1 24711:1 24721:1 24746:1 24747:2 24758:3 24769:1 24785:1 24788:1 24793:1 24797:2 24823:1 24849:1 24851:1 24886:1 24895:1 24912:1 24915:3 24918:1 24921:1 24922:1 24931:1 24936:1 24938:2 24950:1 24961:2 24972:1 24974:1 24977:1 24985:2 24986:1 24991:1 25000:1 25013:1 25016:1 25026:1 25028:1 25032:2 25037:1 25063:1 25077:3 25081:1 25084:2 25098:1 25132:2 25137:1 25143:1 25148:1 25155:2 25163:1 25164:1 25172:2 25174:1 25187:1 25193:1 25200:1 25201:1 25204:1 25205:1 25206:1 25210:1 25217:2 25229:1 25238:2 25243:1 25247:1 25279:1 25297:2 25318:1 25361:1 25404:1 25439:1 25444:1 25445:2 25459:1 25480:1 25487:1 25492:1 25499:1 25521:1 25532:1 25563:2 25598:1 25613:1 25652:1 25655:1 25660:2 25674:2 25680:1 25699:1 25742:1 25745:1 25759:1 25760:3 25766:1 25773:2 25775:1 25778:1 25790:1 25792:1 25799:1 25801:5 25813:1 25815:1 25817:1 25828:1 25832:2 25836:2 25840:1 25845:1 25847:4 25851:1 25860:1 25867:3 25883:3 25884:1 25886:1 25906:1 25922:1 25924:1 25949:1 25963:1 25969:2 25971:4 25977:3 26008:4 26021:1 26034:1 26051:1 26052:1 26064:1 26081:1 26083:1 26114:1 26120:1 26126:1 26131:1 26146:1 26158:1 26162:1 26164:1 26172:1 26173:2 26179:1 26182:1 26196:3 26234:1 26245:5 26252:1 26259:1 26276:1 26308:3 26401:1 26488:1 26495:1 26497:1 26498:1 26502:2 26504:3 26511:1 26515:1 26516:1 26525:1 26539:1 26552:1 26571:1 26611:3 26620:2 26648:2 26653:2 26668:1 26699:1 26715:1 26721:2 26722:1 26727:1 26728:2 26760:1 26763:3 26767:2 26780:1 26784:1 26806:1 26819:1 26825:1 26836:1 26844:1 26866:1 26868:3 26876:1 26892:1 26901:2 26903:1 26919:1 26940:1 26943:2 26961:1 26965:1 26966:3 26973:2 26974:2 26975:1 26978:1 27022:4 27025:1
1 12:1 34:1 43:1 50:1 55:1 60:1 90:1 108:1 124:1 137:1 138:3 147:1 153:1 159:1 165:1 168:2 178:5 189:1 194:1 221:1 231:1 236:6 255:3 262:1 277:1 301:1 312:3 314:2 318:3 326:3 333:1 337:2 356:1 363:1 375:1 392:5 394:2 403:1 451:1 509:1 518:1 522:2 538:1 548:2 554:1 565:1 571:1 573:2 575:1 580:1 588:1 656:1 698:1 708:1 730:2 731:1 738:1 750:1 776:5 779:1 782:1 786:1 787:3 798:1 814:9 815:4 823:3 841:2 848:1 853:1 854:4 856:2 857:6 859:1 861:1 863:2 877:2 895:3 898:3 909:1 943:2 951:1 964:1 994:1 1011:1 1028:1 1029:1 1053:1 1054:1 1057:1 1100:3 1101:2 1105:1 1107:1 1111:1 1118:1 1141:1 1145:2 1161:2 1178:1 1184:2 1189:1 1215:1 1230:1 1243:1 1247:1 1249:1 1253:1 1256:1 1264:1 1275:1 1296:1 1300:1 1301:2 1303:1 1319:1 1332:1 1334:1 1340:2 1346:1 1352:1 1361:1 1367:1 1371:2 1385:1 1406:1 1411:4 1417:5 1420:2 1429:1 1450:2 1458:1 1461:1 1465:1 1467:1 1476:1 1480:1 1485:2 1498:2 1511:1 1513:1 1517:1 1526:1 1529:1 1540:1 1545:1 1549:1 1556:1 1560:1 1564:1 1570:1 1580:1 1595:2 1598:1 1615:4 1626:1 1632:1 1636:1 1639:2 1642:1 1643:1 1645:1 1651:2 1653:6 1660:1 1676:3 1678:2 1692:1 1710:1 1713:2 1715:4 1717:1 1721:1 1731:1 1744:1 1751:1 1757:2 1764:1 1765:1 1778:2 1787:1 1821:1 1825:3 1830:1 1836:1 1840:1 1845:2 1851:1 1854:1 1859:1 1862:2 1873:1 1884:1 1902:1 1905:1 1920:1 1921:1 1924:1 1926:2 1929:1 1966:8 1970:1 1975:1 1979:1 1984:1 1999:1 2006:2 2025:2 2038:3 2040:1 2052:1 2053:1 2056:1 2061:2 2078:2 2079:2 2083:2 2084:3 2087:1 2090:2 2095:2 2096:2 2097:1 2099:2 2105:4 2107:3 2109:5 2111:4 2113:1 2123:1 2131:1 2149:1 2152:1 2155:3 2158:1 2172:1 2179:1 2190:1 2191:1 2200:1 2208:1 2210:1 2243:1 2247:1 2262:1 2278:1 2280:1 2287:1 2291:1 2297:1 2306:3 2316:1 2317:1 2325:1 2330:1 2334:1 2345:1 2347:1 2353:3 2356:2 2358:1 2361:5 2365:1 2366:1 2367:1 2379:1 2382:1 2397:1 2408:4 2410:1 2416:1 2430:2 2436:1 2437:1 2438:1 2447:6 2452:1 2458:1 2460:5 2465:4 2467:1 2474:1 2475:1 2483:1 2485:1 2490:3 2492:2 2503:1 2515:1 2516:2 2520:2 2557:1 2561:1 2562:2 2563:2 2575:2 2577:1 2579:1 2583:3 2590:2 2595:1 2619:1 2639:1 2656:2 2660:1 2664:1 2667:11 2689:2 2690:1 2694:1 2695:1 2697:1 2706:2 2711:2 2731:10 2733:1 2756:2 2758:2 2773:1 2783:1 2814:1 2822:1 2826:1 2840:1 2841:5 2852:3 2856:1 2860:1 2879:1 2902:1 2904:1 2908:1 2915:2 2923:1 2938:2 2956:2 2968:1 2991:1 2992:1 3026:1 3027:2 3028:1 3031:1 3034:1 3048:6 3103:1 3147:2 3152:1 3192:1 3193:1 3194:1 3203:1 3210:1 3213:1 3252:1 3268:1 3286:2 3291:1 3309:1 3314:1 3315:10 3325:1 3328:2 3330:1 3331:1 3346:1 3350:1 3358:1 3394:1 3399:1 3400:1 3406:1 3407:1 3410:3 3414:1 3423:1 3459:1 3470:1 3473:1 3480:2 3483:1 3486:1 3488:1 3494:1 3506:1 3510:1 3513:2 3520:1 3523:1 3540:2 3542:1 3560:2 3575:1 3576:1 3581:4 3583:1 3587:1 3591:2 3600:2 3610:1 3611:2 3629:1 3631:2 3650:1 3652:2 3660:1 3683:1 3691:4 3692:3 3698:2 3730:1 3733:2 3737:1 3742:1 3759:1 3760:2 3779:1 3787:2 3794:1 3813:1 3828:1 3838:1 3845:3 3848:1 3849:1 3853:2 3859:1 3863:2 3875:1 3882:1 3888:1 3898:1 3917:1 3952:7 3957:1 3977:3 3984:1 3993:1 4003:1 4005:1 4018:2 4032:2 4038:1 4057:1 4062:1 4064:2 4084:3 4097:1 4107:1 4116:1 4118:1 4140:2 4160:1 4164:1 4167:1 4172:1 4173:2 4189:1 4201:1 4218:1 4226:1 4234:1 4246:1 4249:1 4275:3 4284:2 4294:1 4302:2 4307:1 4319:3 4344:2 4361:1 4365:2 4369:2 4383:3 4386:1 4394:1 4403:1 4445:1 4467:1 4477:1 4488:9 4490:1 4499:1 4501:1 4502:1 4516:1 4535:1 4546:1 4554:1 4608:1 4625:1 4629:4 4631:4 4632:2 4634:1 4637:1 4638:1 4639:1 4642:1 4643:1 4645:4 4646:3 4650:1 4651:2 4652:4 4659:3 4663:1 4701:1 4718:1 4737:2 4744:1 4762:1 4767:1 4776:1 4834:1 4842:1 4877:1 4911:1 4916:1 4941:2 4945:2 4955:1 4985:1 5006:3 5018:1 5037:1 5050:1 5055:1 5064:2 5075:1 5081:1 5088:1 5094:1 5101:1 5121:1 5130:1 5153:1 5156:1 5197:1 5207:1 5212:2 5216:1 5230:4 5231:1 5234:2 5236:1 5239:2 5240:1 5255:1 5256:1 5281:3 5292:1 5293:1 5309:5 5314:1 5315:1 5330:2 5336:1 5398:1 5416:1 5420:1 5422:1 5440:1 5445:1 5446:1 5453:1 5467:1 5479:1 5503:1 5510:1 5521:2 5535:2 5538:1 5565:5 5567:1 5568:1 5575:1 5576:2 5586:1 5588:1 5591:1 5620:1 5623:1 5624:1 5632:1 5639:1 5641:1 5642:1 5643:1 5647:9 5680:2 5703:1 5715:1 5725:2 5735:1 5751:5 5756:1 5761:1 5763:1 5801:1 5805:1 5828:1 5834:1 5836:1 5838:1 5844:2 5845:3 5849:1 5850:1 5852:1 5859:2 5860:3 5861:2 5872:1 5897:1 5904:1 5938:1 5954:1 5987:1 5991:4 5992:2 6006:1 6047:1 6055:1 6066:1 6082:1 6092:1 6115:1 6129:2 6137:2 6146:1 6152:1 6162:1 6210:1 6235:1 6238:1 6246:1 6254:7 6262:2 6265:1 6267:1 6273:1 6275:1 6279:1 6287:2 6300:1 6344:1 6345:3 6357:1 6361:1 6366:2 6385:1 6389:1 6394:1 6398:1 6401:2 6430:1 6449:1 6453:1 6460:1 6465:1 6468:1 6469:1 6477:1 6486:1 6490:6 6498:2 6524:1 6528:1 6534:1 6537:1 6538:2 6549:3 6550:1 6552:1 6557:5 6560:1 6564:1 6587:1 6588:1 6599:1 6602:1 6604:1 6621:1 6626:3 6631:2 6641:1 6658:1 6672:1 6677:1 6686:1 6712:1 6728:1 6742:1 6800:1 6806:1 6810:1 6846:1 6857:1 6859:1 6860:1 6864:1 6870:1 6876:3 6881:1 6894:4 6898:2 6912:1 6913:2 6922:1 6935:1 6943:2 6951:1 6964:1 6969:1 6980:1 6997:1 7027:1 7052:2 7067:3 7068:6 7081:1 7086:1 7090:3 7092:2 7093:3 7116:2 7117:2 7121:1 7136:34 7137:1 7140:2 7147:1 7155:5 7156:3 7162:2 7194:1 7201:1 7202:1 7211:1 7222:1 7224:1 7229:3 7230:2 7235:1 7242:1 7244:1 7256:1 7276:1 7294:2 7300:1 7305:1 7326:1 7352:1 7355:1 7356:3 7385:1 7390:1 7391:1 7402:2 7461:1 7477:1 7489:1 7507:1 7517:1 7520:1 7523:1 7547:1 7556:1 7558:1 7559:1 7568:1 7575:1 7576:1 7580:2 7592:1 7609:18 7618:1 7619:1 7637:3 7640:1 7642:1 7644:2 7696:2 7698:1 7700:1 7706:1 7734:1 7744:2 7748:2 7751:1 7756:1 7771:1 7777:1 7778:4 7784:2 7790:1 7812:2 7814:1 7820:1 7836:1 7840:1 7850:1 7857:1 7858:1 7876:1 7877:1 7886:1 7890:1 7940:1 7944:1 7945:1 7950:1 7952:1 7957:1 7976:1 7978:1 7989:4 8005:1 8008:3 8023:1 8034:1 8043:1 8049:2 8052:1 8069:1 8073:1 8085:2 8113:1 8124:1 8153:1 8154:1 8163:1 8164:1 8171:1 8197:1 8199:1 8215:1 8228:1 8247:1 8250:1 8253:1 8254:1 8258:3 8282:2 8289:1 8295:2 8306:1 8311:1 8331:1 8332:1 8345:1 8350:3 8351:1 8356:1 8358:1 8363:1 8370:4 8378:1 8407:4 8423:1 8445:3 8446:5 8460:2 8501:1 8515:1 8521:1 8525:2 8541:1 8544:1 8550:1 8552:1 8553:2 8555:2 8600:1 8612:1 8620:2 8622:1 8632:1 8635:4 8656:2 8658:2 8674:4 8698:1 8699:1 8728:1 8735:1 8741:1 8756:2 8765:2 8782:1 8786:1 8793:1 8820:1 8833:1 8838:1 8846:1 8853:6 8856:2 8885:2 8904:2 8908:1 8926:1 8947:1 8953:1 8954:2 8956:2 8958:2 8990:1 9020:1 9022:1 9031:1 9067:2 9073:1 9077:1 9090:1 9101:2 9113:1 9131:1 9132:1 9144:1 9155:1 9172:1 9173:1 9178:1 9179:1 9191:1 9196:1 9216:1 9221:1 9222:1 9230:5 9243:3 9249:3 9251:1 9263:1 9281:2 9300:1 9301:1 9332:1 9337:2 9348:1 9358:1 9361:3 9364:1 9388:1 9391:1 9396:9 9398:1 9402:2 9406:1 9424:1 9425:1 9434:1 9439:1 9488:1 9491:2 9493:1 9524:1 9534:1 9536:1 9537:1 9540:1 9542:3 9550:1 9552:1 9555:2 9588:1 9601:4 9608:1 9610:1 9612:1 9617:1 9620:1 9626:1 9632:1 9642:4 9660:1 9681:1 9695:1 9703:1 9708:1 9710:1 9713:2 9725:2 9732:1 9750:2 9764:1 9769:1 9775:4 9778:2 9791:1 9795:3 9802:1 9812:1 9820:1 9834:2 9848:3 9849:1 9868:1 9869:1 9878:3 9899:1 9916:1 9926:3 9936:1 9946:4 9964:1 9972:1 9980:1 9982:1 9993:2 10030:1 10096:1 10102:1 10118:1 10120:1 10136:1 10137:2 10141:1 10144:1 10145:2 10149:1 10156:1 10157:5 10158:5 10159:1 10168:1 10174:2 10177:2 10183:3 10188:1 10189:1 10195:1 10201:3 10213:1 10226:2 10234:1 10255:1 10257:1 10259:1 10294:1 10297:1 10312:1 10321:1 10323:1 10326:1 10341:1 10412:1 10426:2 10445:1 10474:1 10477:1 10484:1 10500:2 10503:1 10507:1 10518:1 10523:2 10525:1 10526:1 10528:1 10537:2 10539:1 10541:2 10550:1 10556:2 10559:1 10572:1 10587:10 10588:1 10611:1 10625:3 10635:2 10636:2 10648:1 10675:2 10682:2 10683:1 10690:1 10693:2 10695:2 10696:1 10706:1 10724:1 10738:1 10766:1 10783:1 10803:3 10805:1 10808:1 10814:1 10821:1 10822:2 10827:2 10828:1 10830:1 10840:1 10841:1 10851:1 10860:1 10863:1 10864:1 10874:3 10875:1 10880:2 10898:1 10921:1 10934:2 10938:1 10972:1 10983:1 10984:1 10998:1 11023:5 11032:1 11043:1 11046:1 11058:1 11063:1 11071:1 11076:1 11081:1 11100:2 11129:1 11150:1 11170:1 11175:1 11189:1 11195:1 11201:1 11236:1 11244:1 11246:1 11251:5 11252:1 11253:1 11255:1 11256:2 11267:1 11273:2 11279:1 11283:1 11285:1 11290:1 11335:1 11338:1 11357:1 11376:1 11393:1 11407:1 11413:1 11439:1 11476:3 11494:1 11520:1 11527:1 11539:1 11550:1 11552:2 11553:1 11568:1 11570:2 11579:1 11593:1 11606:1 11647:1 11658:1 11663:1 11665:1 11666:1 11674:1 11705:8 11710:2 11719:1 11723:2 11728:1 11746:1 11747:1 11753:2 11775:1 11779:1 11792:2 11794:1 11798:1 11800:1 11829:1 11850:1 11858:1 11863:1 11886:1 11890:1 11903:1 11923:1 11924:1 11930:1 11944:1 11946:1 11963:1 11977:1 11982:3 11994:1 12041:1 12060:1 12078:1 12082:1 12083:1 12085:2 12090:4 12101:1 12106:2 12115:1 12122:1 12138:3 12157:1 12161:2 12186:1 12193:3 12194:1 12221:1 12223:1 12224:1 12225:1 12233:4 12236:1 12242:2 12247:1 12260:1 12264:1 12272:1 12273:1 12283:1 12289:1 12301:11 12306:1 12308:1 12342:2 12343:1 12350:1 12371:1 12384:1 12395:1 12397:1 12421:3 12441:1 12446:6 12449:1 12465:1 12475:1 12478:1 12499:2 12515:1 12521:1 12525:1 12533:2 12535:1 12537:1 12544:1 12551:1 12558:5 12559:1 12561:1 12563:1 12564:2 12565:1 12569:6 12570:1 12590:1 12593:1 12595:1 12620:1 12643:1 12675:1 12685:1 12719:3 12756:1 12758:1 12760:1 12767:1 12770:1 12773:2 12774:1 12778:1 12794:1 12814:2 12821:1 12833:1 12836:7 12857:2 12861:1 12867:1 12890:1 12902:1 12909:1 12923:1 12934:1 12957:1 12983:1 12984:1 12997:1 13004:1 13010:1 13017:1 13052:1 13063:2 13077:3 13091:1 13104:1 13123:1 13143:1 13175:1 13199:1 13200:1 13204:2 13205:2 13212:1 13222:1 13223:1 13225:1 13229:2 13230:1 13256:1 13265:2 13294:1 13305:1 13327:2 13349:1 13355:1 13361:2 13367:1 13375:3 13380:2 13428:1 13430:2 13433:1 13476:1 13477:1 13484:1 13506:1 13513:1 13540:3 13552:1 13555:1 13558:2 13587:1 13589:1 13643:2 13693:2 13696:1 13712:1 13734:1 13762:1 13774:1 13776:3 13781:1 13793:1 13794:1 13804:1 13806:1 13829:1 13891:1 13900:1 13922:1 13928:1 13974:1 14004:1 14027:1 14032:1 14034:1 14035:1 14047:1 14064:1 14071:2 14075:1 14096:1 14098:1 14113:2 14130:1 14134:1 14156:1 14168:1 14184:1 14189:1 14217:1 14229:2 14244:1 14252:1 14263:2 14266:1 14279:1 14302:1 14311:1 14328:1 14332:1 14335:1 14377:1 14391:1 14392:1 14403:2 14413:1 14417:3 14420:1 14424:1 14426:1 14432:1 14445:2 14446:1 14450:1 14453:1 14465:1 14475:1 14491:2 14497:1 14532:2 14550:3 14559:1 14570:1 14572:3 14587:1 14600:2 14676:1 14683:1 14687:10 14704:1 14709:3 14738:2 14772:1 14783:1 14789:2 14796:2 14817:2 14821:1 14832:1 14845:1 14876:1 14883:1 14891:1 14892:1 14902:2 14928:1 14929:1 14946:1 14950:1 14954:3 14955:2 14956:2 14957:4 14958:1 14963:2 14965:1 14967:1 14968:3 14972:1 14973:1 14975:1 14979:1 14987:1 15024:1 15060:1 15083:1 15087:1 15088:1 15109:1 15114:1 15117:1 15119:2 15120:1 15140:1 15162:1 15169:1 15178:1 15198:1 15217:1 15240:1 15250:1 15254:1 15262:1 15272:1 15274:2 15281:1 15282:1 15290:1 15294:4 15302:2 15308:1 15316:1 15321:2 15329:1 15334:1 15342:3 15344:1 15353:1 15359:1 15367:1 15407:6 15408:1 15431:1 15432:3 15437:1 15490:1 15491:1 15497:2 15499:1 15507:1 15512:2 15524:1 15525:1 15534:1 15538:1 15541:2 15575:2 15596:4 15617:2 15619:1 15622:1 15646:1 15661:2 15688:1 15703:2 15705:2 15720:1 15722:1 15731:1 15765:1 15768:1 15790:1 15799:1 15808:2 15814:1 15821:1 15845:1 15858:2 15862:1 15873:1 15889:1 15909:1 15930:1 15938:1 15979:1 15982:1 16000:1 16005:1 16021:2 16027:1 16036:1 16037:2 16041:1 16047:1 16054:3 16059:2 16060:2 16064:1 16070:1 16071:3 16109:1 16112:1 16116:1 16117:1 16121:1 16128:1 16139:1 16140:1 16156:1 16189:1 16203:1 16204:1 16222:2 16236:1 16244:2 16256:1 16257:1 16261:1 16276:1 16279:1 16311:1 16312:1 16313:1 16339:1 16343:1 16344:1 16347:2 16379:1 16405:1 16426:2 16439:1 16452:1 16466:1 16514:1 16540:1 16542:1 16551:1 16570:2 16651:1 16657:2 16658:1 16664:1 16674:1 16687:1 16703:1 16721:1 16758:1 16770:1 16787:1 16791:2 16805:1 16848:6 16906:1 16932:1 16954:11 16963:2 16964:1 16977:3 16990:1 16997:1 17001:1 17012:1 17025:1 17048:4 17058:2 17068:2 17084:1 17087:1 17107:1 17112:2 17125:2 17126:2 17137:1723 17147:1 17151:1 17162:1 17188:1 17197:1 17200:1 17201:1 17220:2 17251:1 17262:1 17263:1 17282:1 17296:1 17307:1 17311:1 17314:1 17317:2 17321:2 17322:2 17341:1 17351:1 17359:1 17375:1 17406:1 17407:1 17448:1 17450:1 17453:2 17459:1 17494:1 17503:2 17521:1 17534:2 17549:1 17551:1 17564:2 17573:1 17591:1 17603:2 17608:1 17616:1 17636:1 17642:2 17646:1 17655:1 17661:1 17670:1 17672:1 17691:2 17692:2 17708:2 17712:1 17716:1 17728:2 17752:2 17753:1 17761:1 17770:1 17771:2 17777:3 17803:1 17818:1 17823:2 17824:1 17825:1 17846:2 17860:1 17862:1 17891:1 17900:4 17905:1 17907:2 17914:1 17929:4 17938:1 17942:1 17956:1 17961:1 17968:2 17970:1 17975:1 18006:1 18009:1 18031:1 18038:1 18039:2 18046:1 18047:1 18050:1 18077:1 18078:1 18079:1 18080:1 18083:1 18088:1 18117:1 18130:1 18144:1 18145:2 18146:1 18147:1 18152:1 18153:1 18158:1 18182:1 18183:1 18185:1 18187:1 18196:1 18203:1 18214:1 18227:1 18229:1 18237:1 18238:1 18249:1 18252:1 18279:1 18282:3 18287:1 18288:3 18289:1 18335:1 18354:1 18360:1 18363:1 18368:2 18369:1 18371:1 18388:1 18389:1 18399:2 18404:1 18405:2 18407:2 18409:1 18421:4 18430:2 18449:1 18462:1 18465:1 18466:3 18494:1 18495:1 18504:1 18505:1 18507:1 18510:1 18526:1 18531:1 18552:1 18553:1 18569:1 18577:3 18578:10 18579:2 18586:1 18592:3 18596:1 18612:1 18643:1 18652:1 18663:1 18672:1 18678:1 18683:1 18695:1 18697:1 18701:1 18705:1 18726:1 18738:1 18768:4 18787:1 18789:1 18802:2 18807:1 18817:1 18828:1 18830:1 18840:2 18850:1 18865:6 18886:1 18916:1 18917:1 18937:1 18973:2 18987:3 18999:1 19002:1 19006:1 19010:1 19011:1 19020:1 19023:1 19051:2 19057:3 19063:2 19066:2 19073:2 19081:1 19089:2 19116:3 19126:2 19149:2 19153:1 19162:1 19178:2 19183:1 19198:3 19202:1 19207:1 19213:1 19215:2 19227:3 19258:2 19264:1 19277:1 19296:1 19297:1 19298:1 19302:1 19319:2 19321:2 19327:1 19331:1 19332:1 19337:2 19353:1 19358:2 19381:2 19392:1 19393:1 19401:1 19402:1 19403:3 19420:1 19427:2 19435:1 19441:1 19446:1 19447:1 19450:1 19460:1 19480:1 19481:1 19486:1 19510:1 19517:1 19519:1 19524:2 19525:2 19550:1 19618:1 19652:2 19656:1 19664:2 19665:2 19667:1 19669:1 19673:1 19674:1 19687:1 19694:2 19699:2 19705:1 19723:1 19740:1 19746:1 19750:1 19768:1 19787:1 19789:1 19790:1 19791:1 19794:1 19796:2 19799:1 19800:1 19811:1 19825:1 19830:2 19833:1 19838:1 19841:1 19851:1 19853:2 19874:6 19886:1 19892:2 19902:1 19916:1 19929:1 19943:1 19948:1 19952:1 19955:1 20000:1 20010:1 20019:2 20024:1 20026:1 20030:1 20034:3 20036:1 20037:1 20046:2 20054:1 20056:1 20059:1 20082:1 20083:1 20085:2 20087:3 20088:1 20114:1 20151:1 20171:3 20174:1 20176:2 20178:2 20179:2 20181:1 20186:1 20189:1 20194:2 20205:4 20213:1 20218:1 20236:1 20244:2 20252:2 20255:1 20269:1 20315:1 20317:2 20324:1 20338:1 20344:1 20365:2 20368:1 20374:1 20377:1 20383:1 20396:1 20405:1 20409:1 20421:1 20423:1 20425:3 20431:1 20440:1 20441:3 20446:1 20447:2 20455:1 20463:1 20484:2 20487:1 20491:1 20492:4 20498:2 20503:1 20512:1 20513:5 20519:1 20525:1 20531:1 20547:1 20549:1 20553:1 20575:7 20576:1 20589:1 20609:1 20624:1 20631:3 20632:1 20640:1 20649:1 20664:1 20687:1 20690:2 20717:1 20723:1 20726:3 20728:1 20735:3 20740:3 20749:1 20753:1 20757:1 20773:1 20775:3 20787:1 20794:1 20795:1 20800:3 20809:1 20815:1 20827:1 20834:1 20846:1 20851:1 20863:1 20866:1 20890:1 20903:1 20904:1 20906:1 20921:2 20935:3 20936:2 20952:1 20957:2 20962:3 20970:3 20982:2 20996:1 21021:1 21032:1 21033:1 21037:2 21040:1 21055:1 21056:1 21084:1 21085:1 21086:1 21101:1 21104:1 21128:2 21131:1 21138:2 21139:1 21142:1 21175:3 21204:3 21253:1 21269:1 21294:3 21297:1 21304:5 21314:2 21322:1 21328:1 21330:3 21341:2 21344:1 21345:1 21358:1 21368:4 21406:1 21413:1 21446:1 21458:1 21463:1 21472:2 21484:1 21502:1 21505:1 21510:1 21527:2 21534:1 21537:1 21548:1 21549:1 21559:1 21579:2 21584:2 21590:1 21592:1 21605:1 21624:3 21625:1 21628:2 21641:1 21644:1 21650:1 21695:1 21696:4 21698:1 21701:1 21714:1 21715:2 21716:1 21718:1 21719:1 21722:1 21749:1 21766:1 21769:1 21779:1 21789:1 21845:2 21853:1 21878:2 21884:1 21943:2 21951:1 21953:1 21964:1 21998:1 22008:1 22017:1 22047:1 22066:1 22084:1 22090:1 22101:2 22113:1 22136:1 22140:1 22165:2 22176:2 22186:1 22213:5 22228:1 22233:1 22241:2 22259:1 22261:1 22267:1 22270:2 22279:1 22280:1 22287:1 22293:1 22317:3 22319:1 22340:2 22341:1 22345:1 22346:1 22381:1 22425:1 22426:1 22451:1 22454:1 22455:1 22461:1 22467:3 22469:1 22473:1 22476:1 22477:1 22479:2 22482:1 22483:1 22484:1 22494:1 22518:5 22535:1 22536:1 22539:1 22544:1 22551:1 22552:1 22555:1 22557:1 22582:8 22585:1 22587:1 22609:1 22611:2 22618:1 22630:1 22636:1 22639:1 22643:3 22651:1 22667:1 22670:1 22681:1 22756:1 22781:1 22787:1 22794:1 22800:2 22809:2 22817:1 22822:2 22823:1 22826:1 22858:1 22863:1 22874:1 22890:1 22901:2 22913:2 22917:1 22918:1 22930:1 22932:1 22941:2 22946:1 22952:2 22957:1 22968:1 22974:1 23002:9 23003:2 23026:1 23032:1 23033:1 23036:1 23045:1 23066:1 23067:1 23078:1 23085:1 23098:2 23101:1 23105:2 23110:1 23111:1 23131:1 23133:1 23139:1 23143:1 23145:1 23160:1 23166:1 23198:1 23220:7 23221:1 23235:1 23240:2 23253:1 23276:1 23280:1 23285:3 23286:1 23308:1 23311:2 23314:1 23340:1 23353:2 23359:1 23365:1 23398:1 23407:1 23422:1 23426:2 23428:1 23437:2 23448:1 23452:1 23473:1 23527:1 23534:1 23538:1 23540:1 23560:1 23564:2 23569:3 23571:1 23579:1 23617:3 23629:1 23632:1 23650:4 23663:1 23688:1 23689:1 23698:1 23701:1 23715:1 23746:1 23777:2 23821:1 23826:1 23838:1 23853:1 23860:1 23919:2 23928:1 23929:1 23945:1 23952:1 23953:1 23958:1 23988:1 24023:3 24030:1 24035:1 24058:1 24065:1 24074:2 24075:1 24094:11 24095:2 24105:1 24115:1 24124:1 24126:1 24151:2 24163:1 24165:1 24183:1 24188:1 24199:1 24211:3 24215:3 24221:3 24224:2 24226:4 24228:1 24230:1 24253:1 24300:1 24337:1 24340:1 24350:1 24362:2 24370:1 24380:1 24384:1 24386:1 24387:1 24388:2 24415:6 24417:1 24418:1 24425:1 24439:1 24442:1 24447:1 24467:1 24470:1 24483:1 24531:1 24537:1 24553:1 24562:1 24569:1 24596:1 24634:1 24635:1 24641:5 24652:1 24653:1 24677:1 24684:1 24689:1 24690:1 24703:1 24707:1 24711:1 24721:1 24746:2 24747:2 24758:3 24769:1 24785:1 24788:1 24793:1 24797:2 24823:1 24849:1 24851:1 24886:1 24895:1 24912:1 24915:3 24918:1 24921:1 24922:1 24931:1 24936:1 24938:2 24950:1 24961:2 24972:1 24974:1 24977:1 24985:2 24986:1 24991:1 25000:1 25013:1 25016:1 25026:1 25028:1 25032:2 25037:1 25063:1 25077:3 25081:1 25084:2 25098:1 25126:1 25132:2 25137:1 25143:1 25148:1 25155:2 25163:1 25164:1 25172:2 25174:1 25187:1 25193:1 25200:1 25201:1 25204:1 25205:1 25206:1 25210:1 25217:2 25229:2 25238:2 25243:1 25247:1 25279:1 25297:2 25318:1 25361:1 25404:1 25439:1 25444:1 25445:2 25459:1 25465:1 25480:1 25487:1 25492:1 25499:1 25521:1 25532:1 25563:2 25598:1 25613:1 25652:1 25655:1 25660:2 25674:2 25680:1 25699:1 25715:1 25742:1 25745:1 25759:1 25760:3 25766:1 25773:2 25775:1 25778:1 25790:1 25792:1 25799:1 25801:5 25813:1 25815:1 25817:1 25828:1 25832:2 25836:2 25840:1 25845:1 25847:5 25851:1 25860:1 25867:3 25870:1 25883:3 25884:1 25886:1 25906:1 25922:1 25924:1 25941:1 25949:1 25963:1 25969:2 25971:4 25977:4 26008:4 26021:1 26034:1 26045:1 26051:1 26052:1 26064:1 26081:1 26083:1 26114:1 26120:1 26126:1 26131:1 26146:1 26158:1 26162:1 26164:1 26172:1 26173:2 26179:1 26182:1 26196:3 26234:1 26245:5 26249:1 26252:1 26259:1 26263:2 26276:1 26308:3 26401:1 26488:1 26495:1 26497:1 26498:1 26502:2 26504:3 26511:1 26515:1 26516:1 26525:1 26539:1 26552:1 26571:1 26611:3 26620:2 26648:2 26653:2 26668:1 26699:1 26715:1 26721:2 26722:1 26727:1 26728:2 26760:1 26763:3 26767:2 26780:1 26784:1 26806:1 26819:1 26825:1 26836:1 26844:1 26866:1 26868:3 26876:1 26878:1 26892:1 26901:2 26903:1 26919:1 26940:1 26943:2 26961:1 26965:1 26966:3 26973:2 26974:2 26975:1 26978:1 27022:4 27025:1
1 12:1 34:1 43:1 50:1 55:1 60:1 90:1 108:1 124:1 137:1 138:3 147:1 152:1 153:1 159:1 165:1 168:2 178:5 189:1 194:1 221:1 231:1 236:6 255:3 262:1 277:1 301:1 312:3 314:3 318:3 326:3 333:1 337:2 356:2 363:1 375:1 392:5 394:3 403:1 451:1 480:1 509:1 518:1 522:2 538:1 548:3 554:1 565:1 571:1 573:2 575:1 580:1 588:2 656:1 665:1 698:1 708:1 730:2 731:1 738:1 750:1 776:5 779:1 782:1 786:1 787:3 798:1 814:9 815:4 823:3 841:2 848:1 853:1 854:4 856:2 857:6 859:1 861:1 863:2 877:2 895:3 898:3 909:1 943:2 951:1 964:1 994:1 1011:1 1028:1 1029:1 1053:2 1054:1 1057:1 1100:3 1101:2 1105:1 1107:1 1111:1 1118:1 1132:1 1141:1 1145:2 1161:2 1178:1 1184:2 1189:1 1215:1 1230:1 1243:1 1247:1 1249:1 1253:1 1256:1 1264:1 1275:1 1296:1 1300:1 1301:2 1303:1 1319:1 1332:1 1334:1 1340:2 1346:1 1352:1 1361:1 1367:1 1371:2 1385:1 1406:1 1411:4 1417:7 1420:2 1429:1 1450:2 1458:1 1461:1 1465:1 1467:1 1476:1 1480:1 1485:2 1498:2 1511:1 1513:1 1517:1 1526:1 1529:1 1540:1 1545:1 1549:1 1556:1 1560:1 1564:1 1570:1 1580:1 1595:2 1598:1 1614:1 1615:5 1621:1 1626:1 1632:1 1636:1 1639:2 1642:1 1643:1 1645:1 1651:2 1653:6 1660:1 1676:3 1678:2 1692:1 1710:1 1713:2 1715:4 1717:1 1721:1 1731:1 1744:1 1751:1 1757:2 1764:1 1765:1 1778:2 1787:1 1821:1 1825:4 1830:1 1836:1 1840:1 1845:2 1851:1 1854:1 1859:1 1862:2 1873:1 1877:1 1884:1 1902:1 1905:1 1920:1 1921:1 1924:1 1926:2 1929:1 1966:8 1970:1 1975:1 1979:1 1984:1 1999:1 2006:2 2025:2 2038:3 2040:1 2052:1 2053:1 2056:1 2061:2 2078:2 2079:2 2083:2 2084:4 2087:1 2090:2 2095:2 2096:2 2097:1 2098:1 2099:2 2105:4 2107:3 2109:5 2111:4 2113:1 2123:1 2131:1 2149:1 2152:1 2155:3 2158:1 2172:1 2179:1 2190:1 2191:1 2200:1 2208:1 2210:1 2243:1 2247:1 2262:1 2278:1 2280:1 2287:1 2291:1 2297:1 2306:3 2316:1 2317:1 2325:1 2330:1 2334:1 2345:1 2347:1 2353:3 2356:2 2358:1 2361:5 2365:1 2366:1 2367:1 2379:1 2382:1 2397:1 2408:4 2410:1 2416:1 2430:2 2436:1 2437:1 2438:1 2447:6 2452:1 2458:1 2460:5 2465:4 2467:1 2474:1 2475:1 2483:1 2485:1 2490:3 2492:2 2503:1 2515:1 2516:2 2520:2 2524:1 2557:1 2561:1 2562:2 2563:2 2575:2 2577:1 2579:1 2583:3 2590:2 2595:1 2619:1 2639:1 2656:2 2660:1 2664:1 2667:12 2689:2 2690:1 2694:1 2695:1 2697:1 2706:2 2711:2 2731:12 2733:1 2756:2 2758:2 2773:1 2783:1 2814:1 2822:1 2826:1 2840:1 2841:5 2852:3 2856:1 2860:1 2879:1 2902:1 2904:1 2908:1 2915:2 2923:1 2938:2 2956:2 2968:1 2991:1 2992:1 3026:1 3027:2 3028:1 3031:1 3034:1 3048:6 3103:1 3147:2 3152:1 3192:1 3193:1 3194:1 3203:1 3209:1 3210:1 3213:1 3230:1 3252:1 3268:1 3286:2 3291:1 3309:1 3314:1 3315:10 3318:1 3325:1 3328:2 3330:1 3331:1 3332:1 3346:1 3350:1 3358:1 3394:1 3399:1 3400:1 3406:1 3407:1 3410:3 3414:1 3423:1 3459:1 3470:1 3473:1 3480:2 3483:1 3486:1 3488:1 3494:1 3506:1 3510:1 3513:2 3520:1 3523:1 3540:2 3542:1 3560:2 3575:1 3576:1 3581:4 3583:1 3587:2 3591:2 3600:2 3610:2 3611:2 3629:1 3631:2 3650:1 3652:2 3660:1 3683:1 3691:6 3692:3 3698:2 3730:1 3733:2 3737:1 3742:1 3759:1 3760:2 3779:1 3787:2 3794:1 3813:1 3828:1 3838:1 3845:3 3848:1 3849:1 3853:2 3859:1 3863:2 3875:1 3882:1 3888:1 3898:1 3917:1 3952:7 3957:1 3977:3 3984:1 3993:1 4003:1 4005:1 4018:2 4032:2 4038:1 4057:1 4062:1 4064:2 4084:3 4097:1 4107:1 4116:1 4118:1 4125:1 4140:2 4160:1 4164:1 4167:1 4172:1 4173:2 4189:1 4201:1 4218:1 4226:1 4234:2 4246:1 4249:1 4275:4 4284:2 4294:1 4302:2 4307:1 4319:4 4344:2 4361:1 4365:2 4369:3 4383:3 4386:1 4394:1 4403:1 4422:1 4445:1 4467:1 4477:1 4488:10 4490:1 4499:1 4501:1 4502:1 4516:1 4535:1 4546:1 4554:1 4608:2 4625:1 4629:4 4631:5 4632:2 4634:1 4637:1 4638:1 4639:1 4642:1 4643:1 4645:4 4646:3 4650:1 4651:2 4652:4 4659:3 4663:1 4674:1 4701:1 4718:1 4737:2 4744:1 4762:1 4767:1 4776:1 4834:1 4842:1 4866:1 4877:1 4911:1 4916:1 4941:2 4945:2 4955:1 4985:1 5006:3 5018:1 5037:1 5050:1 5055:1 5064:2 5075:1 5081:1 5088:1 5094:1 5101:1 5121:1 5130:1 5153:1 5156:1 5197:1 5207:1 5212:2 5216:1 5230:4 5231:1 5234:2 5236:1 5239:2 5240:1 5255:1 5256:1 5281:3 5292:1 5293:1 5309:6 5314:1 5315:1 5330:2 5336:1 5398:1 5416:1 5420:1 5422:1 5440:1 5445:1 5446:1 5453:2 5467:1 5479:1 5503:1 5510:1 5521:2 5535:2 5538:1 5565:5 5567:1 5568:1 5575:1 5576:2 5585:1 5586:1 5588:1 5591:1 5620:1 5623:1 5624:1 5629:1 5632:1 5639:1 5641:1 5642:1 5643:1 5647:10 5680:2 5686:1 5703:1 5715:1 5725:3 5735:1 5751:5 5756:1 5761:1 5763:1 5801:1 5805:1 5828:1 5834:1 5836:1 5838:1 5844:2 5845:3 5849:1 5850:1 5852:2 5859:2 5860:3 5861:2 5872:1 5897:1 5904:1 5938:1 5954:1 5987:1 5991:4 5992:2 6006:1 6047:1 6055:1 6066:1 6082:1 6092:1 6115:1 6129:2 6137:2 6146:1 6152:1 6162:1 6210:1 6235:1 6238:1 6246:1 6254:7 6262:2 6265:1 6267:1 6273:1 6275:1 6279:1 6287:2 6300:1 6307:1 6310:1 6340:1 6344:1 6345:3 6357:1 6361:1 6366:2 6385:1 6389:1 6394:1 6398:1 6401:2 6430:1 6449:1 6453:1 6460:1 6465:1 6468:1 6469:1 6477:1 6486:1 6490:6 6498:2 6524:1 6528:1 6534:1 6537:1 6538:2 6549:3 6550:1 6552:1 6557:5 6560:1 6564:1 6587:1 6588:1 6599:1 6602:1 6604:1 6621:1 6626:3 6631:2 6641:1 6658:1 6672:2 6677:1 6679:1 6686:1 6703:1 6712:1 6721:1 6728:1 6742:1 6800:1 6806:1 6810:1 6846:1 6857:1 6859:2 6860:1 6864:1 6870:1 6876:3 6881:1 6894:4 6898:2 6912:1 6913:2 6922:1 6935:1 6943:2 6951:1 6964:1 6969:1 6980:1 6981:1 6989:1 6997:1 7027:1 7052:2 7067:3 7068:6 7081:1 7086:1 7090:3 7092:2 7093:3 7116:2 7117:2 7121:1 7136:36 7137:1 7140:2 7147:1 7155:5 7156:3 7162:2 7194:1 7201:1 7202:1 7211:1 7222:1 7224:1 7229:3 7230:2 7235:1 7242:1 7244:1 7256:1 7264:1 7276:1 7294:2 7300:1 7305:1 7326:1 7352:1 7355:1 7356:3 7385:1 7389:1 7390:1 7391:1 7402:2 7461:1 7477:1 7489:1 7507:1 7508:1 7517:1 7520:1 7523:1 7547:1 7556:1 7558:1 7559:2 7568:1 7575:1 7576:1 7580:2 7592:1 7609:18 7618:1 7619:1 7637:3 7640:1 7642:1 7644:2 7696:3 7698:1 7700:1 7706:1 7734:1 7744:2 7748:2 7751:1 7756:1 7771:1 7777:1 7778:4 7784:2 7790:1 7812:2 7814:1 7820:1 7825:1 7836:1 7840:1 7850:1 7857:1 7858:1 7876:1 7877:1 7886:1 7890:1 7940:1 7944:1 7945:1 7950:1 7952:1 7957:1 7976:1 7978:1 7989:4 8005:2 8008:3 8023:1 8034:1 8043:1 8049:2 8052:1 8069:1 8073:1 8085:2 8113:1 8124:1 8153:1 8154:1 8163:1 8164:1 8171:1 8197:1 8199:1 8215:1 8228:1 8247:1 8250:1 8253:1 8254:1 8258:3 8282:2 8289:1 8295:2 8306:1 8311:1 8331:1 8332:1 8345:1 8350:3 8351:1 8356:1 8358:1 8363:1 8370:4 8378:1 8389:1 8407:4 8423:1 8437:1 8445:5 8446:5 8460:2 8501:1 8515:1 8521:1 8525:2 8541:1 8544:1 8550:1 8552:1 8553:2 8555:2 8584:1 8600:1 8612:1 8620:2 8622:1 8632:1 8635:4 8637:1 8656:2 8658:2 8674:4 8698:1 8699:1 8728:1 8735:1 8741:1 8756:2 8765:2 8771:1 8782:1 8786:1 8793:1 8820:1 8833:1 8838:1 8846:1 8853:7 8856:2 8885:3 8904:3 8908:1 8926:1 8947:1 8953:1 8954:3 8956:2 8958:2 8990:1 9020:1 9022:1 9031:1 9067:2 9073:1 9077:1 9090:1 9101:2 9113:1 9124:1 9131:1 9132:1 9144:1 9155:1 9172:1 9173:1 9178:1 9179:1 9191:1 9196:1 9216:1 9221:1 9222:1 9224:1 9230:5 9243:3 9249:3 9251:2 9263:1 9281:2 9300:1 9301:1 9332:1 9337:2 9348:1 9358:1 9361:3 9364:1 9388:1 9391:1 9396:10 9398:1 9402:2 9406:1 9424:1 9425:1 9434:1 9439:1 9469:1 9488:1 9491:2 9493:1 9524:1 9534:1 9536:1 9537:1 9540:1 9542:3 9550:1 9552:1 9555:2 9588:1 9601:4 9608:1 9610:1 9612:1 9617:1 9620:1 9626:1 9632:1 9642:4 9660:1 9681:1 9695:1 9703:1 9708:1 9710:1 9713:2 9718:1 9725:2 9732:1 9750:2 9764:1 9766:1 9769:1 9775:5 9778:2 9791:1 9795:3 9799:1 9802:1 9812:1 9820:1 9834:2 9848:3 9849:1 9868:1 9869:1 9878:3 9899:1 9916:1 9920:1 9926:3 9936:1 9946:4 9964:1 9972:1 9980:1 9982:1 9993:2 10030:1 10096:1 10102:1 10118:1 10120:1 10136:1 10137:2 10141:1 10144:1 10145:2 10149:1 10156:1 10157:5 10158:5 10159:1 10168:1 10174:2 10177:2 10181:1 10183:3 10188:1 10189:1 10195:1 10201:3 10203:1 10213:1 10226:2 10234:1 10255:1 10257:1 10259:2 10294:1 10297:1 10312:1 10321:1 10323:1 10326:1 10341:1 10385:1 10412:1 10426:2 10445:1 10463:1 10474:1 10477:1 10484:1 10500:2 10503:1 10507:1 10518:1 10523:2 10525:1 10526:1 10528:1 10537:2 10539:1 10540:1 10541:2 10550:1 10556:2 10559:1 10572:1 10587:11 10588:1 10611:1 10625:3 10635:2 10636:2 10648:1 10675:2 10682:2 10683:1 10690:1 10693:2 10695:2 10696:1 10706:1 10724:1 10738:1 10766:1 10783:1 10796:1 10803:3 10805:1 10808:1 10814:1 10821:1 10822:2 10827:2 10828:1 10830:1 10840:1 10841:1 10851:1 10860:1 10863:1 10864:1 10866:1 10874:3 10875:1 10880:2 10898:1 10921:1 10934:2 10938:1 10972:1 10975:1 10983:1 10984:1 10998:1 11023:5 11032:1 11043:1 11046:1 11058:1 11063:1 11071:1 11076:1 11081:1 11100:2 11127:1 11129:1 11150:1 11170:1 11175:1 11189:1 11195:1 11201:1 11205:1 11236:1 11244:1 11246:1 11251:5 11252:1 11253:1 11255:1 11256:2 11267:1 11273:2 11279:1 11283:1 11285:1 11290:1 11335:1 11338:1 11339:1 11357:1 11368:1 11376:1 11393:1 11407:1 11410:1 11413:1 11439:1 11476:3 11494:2 11507:1 11520:1 11527:1 11539:1 11550:1 11552:2 11553:1 11568:1 11570:2 11579:1 11593:1 11606:1 11647:1 11658:1 11663:1 11665:1 11666:2 11674:1 11705:8 11710:3 11719:1 11723:2 11728:1 11739:1 11746:1 11747:1 11753:2 11770:1 11775:1 11779:1 11792:2 11794:1 11798:1 11800:1 11829:1 11850:1 11858:1 11863:1 11886:1 11890:1 11903:1 11923:1 11924:1 11930:1 11932:1 11944:1 11946:1 11963:1 11977:1 11982:3 11994:1 12041:1 12060:1 12078:1 12082:1 12083:1 12085:2 12090:4 12101:1 12106:2 12115:2 12122:1 12138:5 12157:1 12161:2 12186:1 12193:3 12194:1 12221:1 12223:1 12224:1 12225:1 12233:4 12236:1 12242:2 12247:1 12260:1 12264:1 12272:1 12273:1 12283:1 12289:1 12301:11 12306:1 12308:1 12342:2 12343:1 12350:1 12371:1 12384:1 12395:1 12397:1 12421:3 12441:1 12446:6 12449:1 12465:1 12475:1 12478:1 12499:2 12515:1 12521:1 12525:1 12533:2 12535:1 12537:1 12544:1 12549:1 12551:1 12558:6 12559:1 12561:1 12563:1 12564:2 12565:1 12569:7 12570:1 12590:1 12591:1 12593:1 12595:1 12620:1 12643:1 12675:1 12685:1 12719:3 12756:1 12758:1 12760:1 12767:1 12770:1 12773:2 12774:1 12778:1 12794:1 12814:2 12821:1 12833:1 12836:7 12857:2 12861:1 12867:1 12890:1 12902:1 12903:1 12909:1 12923:1 12931:1 12934:1 12957:1 12983:1 12984:1 12997:1 13004:1 13010:1 13017:1 13052:1 13063:2 13077:3 13091:1 13104:1 13123:1 13143:1 13175:1 13199:1 13200:1 13204:2 13205:3 13212:1 13222:1 13223:1 13225:1 13229:2 13230:1 13256:1 13265:2 13294:1 13305:1 13327:2 13349:1 13355:1 13361:2 13367:1 13375:3 13380:2 13428:1 13430:2 13433:1 13476:1 13477:1 13484:1 13506:1 13513:1 13540:3 13552:1 13555:1 13558:2 13587:1 13589:1 13595:1 13643:2 13693:2 13696:1 13712:1 13734:1 13762:1 13774:1 13776:3 13781:1 13793:1 13794:1 13804:1 13806:1 13829:1 13891:1 13900:2 13922:1 13928:1 13974:1 14004:1 14010:1 14027:1 14032:1 14034:1 14035:1 14047:1 14064:1 14071:2 14075:1 14096:1 14098:1 14113:2 14130:1 14134:1 14156:1 14168:1 14184:1 14189:1 14217:1 14229:3 14244:1 14252:1 14263:2 14266:1 14279:1 14302:1 14311:1 14328:1 14332:1 14335:2 14377:1 14391:1 14392:1 14403:2 14413:1 14417:3 14420:1 14424:1 14426:1 14432:1 14445:3 14446:1 14450:1 14453:1 14462:1 14465:1 14475:1 14491:2 14497:1 14532:2 14539:1 14550:3 14559:1 14570:1 14572:3 14587:1 14600:2 14676:1 14683:1 14687:10 14704:1 14709:3 14738:2 14772:1 14783:1 14789:2 14796:2 14817:2 14821:1 14832:1 14845:1 14876:1 14883:1 14891:1 14892:1 14902:2 14928:1 14929:1 14931:1 14946:1 14950:1 14954:3 14955:2 14956:2 14957:4 14958:1 14963:2 14965:1 14967:1 14968:3 14972:1 14973:1 14975:1 14979:1 14987:1 15024:1 15060:1 15083:1 15087:1 15088:1 15109:1 15114:1 15117:1 15119:2 15120:1 15140:1 15162:1 15169:1 15178:1 15198:1 15217:1 15240:1 15250:1 15254:1 15262:2 15272:1 15274:2 15281:1 15282:1 15290:1 15294:5 15299:1 15302:2 15308:1 15316:1 15321:2 15325:1 15329:1 15334:1 15342:3 15344:2 15353:1 15359:1 15367:1 15407:7 15408:1 15431:1 15432:3 15437:1 15490:1 15491:1 15497:2 15499:1 15507:1 15512:2 15524:1 15525:1 15534:1 15538:1 15541:2 15575:2 15596:4 15603:1 15617:2 15619:1 15622:1 15646:1 15661:2 15688:1 15703:2 15705:2 15719:1 15720:1 15722:1 15731:1 15765:1 15768:1 15790:1 15799:1 15808:2 15814:1 15821:1 15828:1 15845:1 15858:2 15862:1 15873:1 15889:1 15909:1 15930:1 15938:1 15979:1 15982:1 16000:1 16005:1 16021:2 16027:1 16036:1 16037:2 16041:1 16047:1 16054:3 16059:2 16060:2 16064:1 16070:1 16071:4 16109:1 16111:1 16112:1 16116:1 16117:1 16121:1 16128:1 16139:1 16140:1 16156:1 16189:1 16203:1 16204:1 16222:3 16226:1 16236:1 16244:2 16256:1 16257:1 16261:1 16276:1 16279:1 16311:1 16312:1 16313:1 16339:1 16343:1 16344:1 16347:2 16379:1 16405:1 16426:2 16439:1 16452:1 16466:1 16514:1 16540:1 16542:1 16551:1 16570:2 16651:1 16657:2 16658:1 16664:1 16674:1 16687:1 16703:1 16721:1 16758:1 16770:1 16787:1 16791:2 16805:1 16848:7 16880:1 16906:1 16932:1 16954:11 16963:2 16964:1 16977:3 16990:1 16997:1 17001:1 17012:1 17025:1 17048:4 17058:2 17068:2 17084:1 17087:1 17107:1 17112:2 17125:2 17126:2 17137:1871 17147:1 17151:1 17161:1 17162:1 17188:1 17197:1 17200:1 17201:1 17220:2 17251:1 17262:1 17263:1 17282:1 17296:1 17307:1 17311:1 17314:1 17317:2 17321:2 17322:2 17341:1 17351:1 17359:1 17375:1 17406:1 17407:1 17448:1 17450:1 17453:2 17459:1 17494:1 17503:3 17521:1 17534:2 17549:1 17551:1 17564:2 17573:1 17591:1 17603:2 17608:1 17616:1 17636:1 17642:2 17646:1 17655:1 17661:1 17670:1 17672:1 17691:2 17692:2 17708:2 17712:1 17716:1 17728:2 17752:2 17753:1 17761:1 17770:1 17771:2 17777:3 17803:1 17818:1 17823:2 17824:1 17825:1 17833:1 17846:2 17860:1 17862:1 17891:1 17900:4 17905:1 17907:2 17914:1 17929:4 17938:1 17942:1 17956:1 17961:2 17968:2 17970:1 17975:1 18006:1 18009:1 18017:1 18031:1 18038:1 18039:2 18046:1 18047:1 18050:1 18077:1 18078:1 18079:1 18080:1 18083:1 18088:1 18117:1 18130:2 18144:1 18145:2 18146:1 18147:1 18152:1 18153:1 18158:1 18182:1 18183:1 18185:1 18187:1 18196:1 18203:1 18214:1 18227:1 18229:1 18237:1 18238:1 18249:1 18252:1 18279:1 18282:4 18287:1 18288:3 18289:1 18335:1 18354:1 18360:1 18363:1 18368:2 18369:1 18371:1 18388:1 18389:1 18399:2 18404:1 18405:2 18407:2 18409:1 18421:4 18430:2 18449:1 18458:1 18462:1 18465:1 18466:3 18494:1 18495:1 18504:1 18505:1 18507:1 18510:1 18526:1 18531:1 18548:1 18552:1 18553:1 18569:1 18577:3 18578:12 18579:2 18586:1 18592:3 18596:1 18612:1 18643:1 18652:1 18663:1 18672:1 18678:1 18683:1 18695:1 18697:1 18701:1 18705:1 18726:1 18738:1 18768:4 18787:1 18789:1 18802:2 18807:1 18817:1 18828:1 18830:1 18840:2 18850:1 18865:6 18886:1 18916:1 18917:1 18937:1 18973:2 18987:3 18999:1 19002:1 19006:1 19010:1 19011:1 19020:1 19023:1 19051:2 19057:3 19063:2 19066:2 19073:2 19080:1 19081:1 19089:2 19116:3 19126:2 19149:2 19153:1 19162:1 19178:2 19183:1 19198:3 19202:1 19207:1 19213:1 19215:2 19227:3 19258:2 19264:1 19277:1 19296:1 19297:1 19298:1 19302:1 19319:2 19321:2 19327:1 19331:1 19332:1 19337:2 19353:1 19358:2 19381:2 19392:1 19393:1 19401:1 19402:1 19403:3 19420:1 19427:2 19435:1 19441:1 19446:1 19447:1 19450:1 19460:1 19463:1 19480:1 19481:1 19486:1 19510:1 19517:1 19519:1 19524:2 19525:2 19538:1 19550:1 19618:1 19652:2 19656:1 19664:2 19665:2 19667:1 19669:1 19673:1 19674:1 19687:1 19694:2 19699:2 19705:1 19723:1 19740:1 19746:1 19750:1 19768:1 19769:1 19787:1 19789:1 19790:1 19791:1 19794:1 19796:2 19799:1 19800:1 19811:1 19818:1 19825:1 19830:2 19833:1 19838:1 19841:1 19851:1 19853:2 19874:7 19886:1 19892:2 19902:1 19916:1 19929:1 19943:1 19948:1 19952:1 19955:1 20000:2 20010:1 20019:2 20024:1 20026:1 20030:1 20034:3 20036:1 20037:1 20046:2 20054:1 20056:1 20059:1 20082:1 20083:1 20085:2 20087:3 20088:1 20114:1 20151:1 20171:3 20174:1 20176:2 20178:2 20179:2 20181:1 20182:1 20186:1 20189:1 20194:2 20205:4 20213:1 20218:1 20236:1 20244:2 20252:2 20255:1 20269:1 20315:1 20317:2 20324:1 20338:1 20344:1 20365:2 20368:1 20374:1 20375:1 20377:1 20383:1 20396:1 20405:1 20409:1 20421:1 20423:1 20425:3 20431:1 20440:1 20441:3 20446:1 20447:2 20455:1 20463:1 20484:2 20487:1 20491:1 20492:4 20498:2 20503:1 20512:1 20513:5 20519:1 20525:1 20531:1 20547:1 20549:1 20553:1 20575:7 20576:1 20589:1 20609:1 20624:1 20631:3 20632:1 20640:1 20649:1 20664:1 20687:1 20690:2 20717:1 20723:1 20726:4 20728:1 20735:3 20740:3 20749:1 20753:1 20757:1 20773:1 20775:3 20787:1 20794:1 20795:2 20800:3 20809:1 20815:1 20827:1 20834:1 20846:1 20851:1 20863:1 20866:1 20890:1 20902:1 20903:1 20904:1 20906:1 20921:2 20935:4 20936:2 20952:1 20957:2 20962:3 20970:3 20982:2 20996:1 21021:1 21032:1 21033:1 21037:2 21040:1 21055:1 21056:1 21084:1 21085:1 21086:1 21101:1 21104:1 21121:1 21128:2 21131:1 21138:2 21139:1 21142:1 21175:3 21204:3 21215:1 21253:1 21269:1 21294:3 21297:1 21304:5 21314:2 21322:1 21328:1 21330:3 21341:2 21344:1 21345:1 21358:1 21368:4 21406:1 21413:1 21446:1 21458:1 21463:1 21472:2 21484:1 21502:1 21505:1 21510:1 21527:2 21534:1 21537:2 21548:1 21549:1 21559:1 21579:2 21584:3 21590:1 21592:1 21605:1 21624:3 21625:1 21628:2 21641:1 21644:1 21650:1 21695:1 21696:4 21698:1 21701:1 21714:1 21715:2 21716:1 21718:1 21719:1 21722:1 21749:1 21766:1 21769:1 21779:1 21789:1 21845:2 21853:1 21878:2 21884:1 21941:1 21943:2 21951:1 21953:1 21964:1 21998:1 22008:1 22017:1 22047:1 22066:1 22084:1 22090:1 22101:2 22113:1 22136:1 22140:1 22165:2 22176:2 22186:1 22213:7 22228:1 22233:1 22241:2 22259:1 22261:1 22267:1 22270:2 22279:1 22280:1 22287:1 22293:1 22317:3 22319:1 22340:2 22341:1 22345:1 22346:1 22381:1 22425:1 22426:1 22451:1 22454:1 22455:1 22461:1 22467:3 22469:1 22473:1 22476:1 22477:1 22479:2 22482:1 22483:1 22484:1 22494:1 22518:5 22535:1 22536:1 22539:1 22544:1 22551:1 22552:1 22555:1 22557:1 22582:8 22585:2 22587:1 22609:1 22611:2 22618:1 22630:1 22635:1 22636:1 22639:1 22643:3 22651:2 22667:1 22670:1 22681:1 22756:1 22777:1 22781:1 22787:1 22794:1 22800:2 22809:2 22813:1 22817:1 22822:2 22823:2 22826:1 22843:1 22858:1 22863:1 22874:1 22890:1 22901:2 22913:2 22917:1 22918:1 22930:1 22932:1 22941:2 22946:1 22952:2 22957:1 22968:1 22974:1 23002:10 23003:2 23026:1 23032:1 23033:1 23036:1 23045:1 23066:1 23067:1 23078:1 23085:1 23098:2 23101:1 23105:2 23110:1 23111:1 23131:1 23133:1 23139:1 23143:1 23145:1 23160:1 23166:1 23198:1 23220:9 23221:1 23235:1 23240:2 23253:1 23270:1 23276:1 23280:1 23285:5 23286:1 23308:1 23311:2 23314:1 23340:1 23353:2 23359:1 23365:1 23398:1 23407:1 23422:1 23426:2 23428:1 23437:2 23448:1 23452:1 23459:1 23473:1 23527:1 23534:1 23538:1 23540:1 23560:1 23564:2 23569:3 23571:1 23577:1 23579:1 23617:3 23629:1 23632:1 23650:4 23663:1 23688:1 23689:1 23698:1 23701:1 23715:1 23746:1 23777:2 23821:1 23826:1 23838:1 23853:1 23860:1 23919:2 23928:1 23929:1 23945:1 23952:1 23953:1 23958:1 23988:1 24023:3 24030:1 24035:1 24058:1 24065:1 24074:2 24075:1 24094:11 24095:2 24105:1 24115:1 24124:1 24126:1 24151:2 24163:1 24165:1 24183:1 24186:1 24188:1 24199:1 24211:3 24215:3 24221:3 24224:2 24226:4 24228:1 24230:1 24253:1 24300:1 24337:1 24340:1 24350:1 24362:2 24370:1 24380:1 24384:1 24386:1 24387:1 24388:2 24415:6 24417:1 24418:1 24425:1 24439:1 24442:1 24447:1 24467:1 24470:1 24483:1 24531:1 24537:1 24553:1 24562:1 24569:2 24596:1 24621:1 24634:1 24635:1 24641:5 24652:1 24653:1 24677:1 24684:1 24689:1 24690:1 24703:1 24707:1 24711:1 24721:1 24746:2 24747:2 24758:3 24769:1 24785:1 24788:1 24793:1 24797:2 24823:1 24849:1 24851:1 24886:1 24895:1 24912:1 24915:3 24918:1 24921:1 24922:1 24931:1 24936:1 24938:2 24950:1 24961:2 24972:2 24974:1 24977:1 24985:2 24986:1 24991:1 25000:1 25013:1 25016:1 25026:1 25028:1 25032:2 25037:1 25063:1 25077:4 25081:1 25084:2 25098:1 25126:1 25132:2 25137:1 25143:1 25148:1 25155:2 25163:1 25164:1 25172:2 25174:1 25187:1 25193:1 25200:1 25201:1 25204:1 25205:1 25206:1 25210:1 25217:2 25229:2 25238:2 25243:1 25247:1 25279:1 25288:1 25297:2 25318:1 25335:1 25361:1 25404:1 25439:1 25444:1 25445:2 25459:1 25465:2 25480:1 25487:1 25492:1 25499:2 25521:1 25532:1 25563:2 25598:1 25613:1 25652:1 25655:1 25660:2 25674:2 25680:1 25699:1 25715:1 25742:1 25745:1 25759:1 25760:3 25766:1 25773:2 25775:1 25778:2 25790:1 25792:1 25799:1 25801:5 25813:1 25815:1 25817:1 25828:1 25832:2 25836:2 25840:1 25845:1 25847:5 25851:1 25860:1 25867:3 25870:1 25883:3 25884:1 25886:1 25906:1 25922:1 25924:1 25941:1 25949:1 25963:1 25969:2 25971:4 25977:4 26008:4 26021:1 26023:1 26034:1 26045:1 26051:1 26052:1 26064:1 26081:1 26083:2 26114:1 26120:1 26126:1 26131:1 26146:1 26158:1 26162:1 26164:1 26172:1 26173:2 26179:1 26182:1 26196:3 26234:1 26245:6 26249:1 26252:1 26257:1 26259:1 26263:2 26276:1 26308:3 26351:1 26401:1 26488:1 26495:1 26497:1 26498:1 26502:2 26504:3 26511:1 26515:1 26516:1 26525:1 26539:1 26552:1 26571:1 26611:3 26620:2 26648:2 26653:2 26668:1 26699:1 26715:1 26721:2 26722:1 26727:1 26728:2 26758:1 26760:1 26763:3 26767:2 26780:1 26784:1 26806:1 26819:1 26825:1 26836:1 26844:1 26866:1 26868:3 26876:1 26878:1 26892:1 26901:2 26903:1 26919:1 26940:1 26943:2 26961:1 26965:1 26966:3 26973:2 26974:3 26975:1 26978:1 27022:5 27025:1
1 12:1 34:1 43:1 50:1 55:1 60:1 90:1 108:1 124:1 137:1 138:3 147:1 152:1 153:1 159:1 165:1 168:3 178:5 189:1 194:1 221:1 231:1 236:6 255:3 262:1 277:1 301:1 312:3 314:3 318:3 326:3 333:1 337:2 356:2 363:1 375:1 392:5 394:3 403:1 451:1 480:1 509:1 518:1 522:2 538:1 548:3 554:1 565:1 571:1 573:2 575:1 580:1 588:2 656:1 665:1 698:1 708:1 730:2 731:1 738:1 750:1 776:5 779:1 782:1 786:1 787:4 798:1 814:10 815:4 823:3 841:2 848:1 853:1 854:4 856:2 857:6 859:1 861:1 863:2 877:2 895:3 898:4 909:1 943:2 951:1 964:1 994:1 1011:1 1028:1 1029:1 1053:2 1054:1 1057:1 1100:3 1101:2 1105:1 1107:1 1111:1 1118:1 1132:1 1141:1 1145:2 1156:1 1161:2 1178:1 1184:2 1189:1 1215:1 1230:1 1243:1 1247:1 1249:1 1253:1 1256:1 1264:1 1275:1 1296:1 1300:1 1301:2 1303:1 1318:1 1319:2 1332:1 1334:1 1340:2 1346:1 1352:1 1361:1 1367:1 1371:2 1385:1 1406:1 1411:4 1417:7 1420:2 1429:1 1450:2 1458:1 1461:1 1465:1 1467:1 1476:1 1480:1 1485:2 1498:2 1511:1 1513:1 1517:1 1526:1 1529:2 1540:1 1545:1 1549:1 1556:1 1560:1 1564:1 1570:1 1580:1 1595:2 1598:1 1614:1 1615:5 1621:1 1626:1 1632:1 1636:1 1639:2 1642:1 1643:1 1645:1 1651:2 1653:6 1660:1 1676:4 1678:2 1692:1 1710:2 1713:2 1715:4 1717:1 1721:1 1731:1 1744:1 1751:1 1757:2 1763:2 1764:1 1765:1 1778:2 1782:1 1787:1 1821:1 1825:4 1830:1 1836:1 1840:1 1845:2 1851:1 1854:1 1859:1 1862:2 1873:1 1877:1 1884:1 1902:1 1905:1 1920:2 1921:1 1923:1 1924:1 1926:2 1929:1 1966:9 1970:1 1975:1 1979:1 1984:1 1999:1 2006:2 2025:2 2038:3 2040:1 2052:1 2053:1 2056:1 2061:2 2078:2 2079:2 2083:2 2084:4 2087:1 2090:2 2095:2 2096:2 2097:1 2098:1 2099:3 2105:4 2107:3 2109:5 2111:5 2113:1 2123:1 2131:1 2149:1 2152:1 2155:3 2158:1 2162:1 2172:1 2179:1 2190:1 2191:1 2200:1 2208:1 2210:1 2243:1 2247:1 2262:1 2278:1 2280:1 2287:1 2291:1 2297:1 2306:3 2316:1 2317:1 2325:1 2330:1 2334:1 2345:1 2347:1 2353:3 2356:2 2358:1 2361:5 2365:1 2366:1 2367:1 2379:1 2382:1 2397:1 2408:4 2410:1 2416:1 2430:2 2436:1 2437:1 2438:1 2447:6 2452:1 2458:1 2460:5 2465:4 2467:1 2474:1 2475:1 2483:2 2485:1 2490:3 2492:2 2503:1 2515:1 2516:2 2520:2 2524:1 2557:1 2561:1 2562:2 2563:2 2575:2 2577:1 2579:1 2583:3 2590:2 2595:1 2614:1 2619:1 2639:1 2656:3 2660:1 2664:1 2667:13 2689:2 2690:1 2694:1 2695:1 2697:1 2706:2 2711:2 2731:13 2733:1 2756:2 2758:2 2773:1 2783:1 2814:1 2822:1 2826:1 2840:1 2841:5 2852:3 2856:1 2860:1 2879:1 2889:1 2902:1 2904:1 2908:1 2915:2 2923:1 2938:2 2956:3 2968:1 2991:1 2992:1 3026:1 3027:2 3028:1 3031:1 3034:1 3048:6 3103:1 3147:2 3152:1 3192:1 3193:1 3194:1 3203:1 3209:1 3210:1 3213:1 3230:1 3252:1 3268:1 3286:2 3291:1 3309:1 3314:1 3315:11 3318:1 3325:1 3328:2 3330:1 3331:2 3332:1 3346:1 3350:1 3358:1 3394:1 3399:1 3400:1 3406:1 3407:1 3410:3 3414:1 3423:1 3446:1 3459:1 3470:1 3473:1 3480:2 3483:1 3486:1 3488:1 3494:1 3506:1 3510:1 3513:2 3520:1 3523:1 3540:2 3542:1 3554:1 3560:2 3575:1 3576:1 3581:4 3583:1 3587:2 3591:2 3600:2 3610:2 3611:2 3629:1 3631:2 3650:1 3652:2 3660:1 3683:1 3691:6 3692:3 3698:2 3730:1 3733:2 3737:1 3742:1 3759:1 3760:2 3779:1 3787:2 3794:1 3813:2 3828:1 3838:1 3845:3 3848:1 3849:1 3853:2 3859:1 3863:2 3875:1 3882:1 3888:1 3898:1 3917:1 3952:7 3957:1 3977:3 3984:1 3993:1 4003:1 4005:1 4018:2 4032:2 4038:1 4057:1 4062:1 4064:2 4084:3 4097:1 4107:1 4116:1 4118:1 4125:1 4140:2 4160:1 4164:1 4167:1 4172:1 4173:2 4189:1 4201:1 4217:1 4218:1 4226:1 4234:3 4246:1 4249:1 4275:4 4284:2 4294:1 4302:2 4307:1 4319:4 4344:2 4361:1 4365:2 4369:3 4383:3 4386:1 4394:1 4403:1 4422:1 4445:1 4467:1 4477:1 4488:11 4490:1 4499:1 4501:1 4502:1 4516:1 4535:1 4546:1 4554:1 4608:2 4625:1 4629:4 4631:5 4632:2 4634:1 4637:1 4638:1 4639:1 4642:1 4643:1 4645:5 4646:4 4650:1 4651:2 4652:5 4658:1 4659:3 4663:1 4674:1 4701:1 4718:1 4737:2 4744:1 4762:1 4767:1 4776:1 4834:1 4842:1 4866:1 4877:1 4887:2 4911:1 4916:1 4941:2 4945:2 4955:1 4985:1 5006:3 5018:1 5037:1 5050:1 5055:1 5064:2 5075:1 5081:1 5088:1 5094:1 5101:1 5121:1 5130:1 5153:1 5156:1 5197:2 5207:1 5212:2 5216:1 5230:4 5231:1 5234:2 5236:1 5239:2 5240:1 5255:1 5256:1 5281:3 5292:2 5293:1 5309:6 5314:1 5315:1 5330:2 5336:1 5398:1 5416:1 5420:1 5422:1 5440:1 5444:1 5445:1 5446:1 5453:2 5467:1 5479:1 5503:1 5510:2 5521:2 5535:2 5538:1 5565:5 5567:1 5568:1 5575:1 5576:2 5585:1 5586:1 5588:1 5591:1 5620:1 5623:1 5624:1 5629:1 5632:1 5639:1 5641:1 5642:1 5643:1 5647:10 5680:2 5686:1 5703:1 5715:1 5725:3 5735:1 5751:6 5756:1 5761:1 5763:1 5801:1 5805:1 5828:1 5834:1 5836:1 5838:1 5844:2 5845:3 5849:1 5850:1 5852:2 5859:2 5860:3 5861:2 5872:1 5897:1 5904:1 5938:1 5954:1 5987:1 5991:4 5992:2 6006:1 6047:1 6055:1 6066:1 6082:1 6092:1 6115:1 6129:2 6137:2 6146:1 6152:1 6162:1 6210:1 6223:1 6235:1 6238:1 6246:1 6254:7 6262:2 6265:2 6267:1 6273:1 6275:1 6279:1 6287:2 6300:1 6307:1 6310:1 6340:1 6344:1 6345:3 6357:1 6361:1 6366:2 6385:1 6389:1 6394:1 6398:1 6401:2 6430:1 6449:1 6453:1 6460:1 6465:1 6468:1 6469:1 6477:1 6486:1 6490:6 6498:2 6524:1 6528:1 6534:1 6537:1 6538:2 6545:1 6549:3 6550:1 6552:1 6557:5 6560:1 6564:1 6587:1 6588:1 6599:1 6602:1 6604:1 6621:1 6626:3 6631:3 6641:1 6658:1 6672:2 6677:1 6679:1 6686:1 6703:1 6712:1 6721:1 6728:1 6742:1 6797:1 6800:1 6806:1 6810:1 6846:1 6857:1 6859:2 6860:1 6864:1 6870:1 6876:3 6881:1 6894:4 6895:1 6898:2 6912:1 6913:2 6922:1 6935:1 6943:2 6946:1 6951:1 6964:1 6969:1 6980:1 6981:1 6989:1 6997:1 7016:1 7027:1 7052:2 7067:3 7068:6 7081:2 7086:1 7090:4 7092:2 7093:3 7116:2 7117:2 7121:1 7136:37 7137:1 7140:2 7147:1 7155:6 7156:3 7162:2 7194:1 7201:1 7202:1 7211:1 7222:1 7224:1 7229:3 7230:2 7235:1 7242:1 7244:1 7256:1 7264:1 7276:1 7294:2 7300:1 7305:1 7326:1 7352:1 7355:1 7356:3 7385:1 7389:1 7390:1 7391:1 7402:2 7461:1 7477:1 7489:1 7507:1 7508:1 7517:1 7520:1 7523:1 7547:1 7556:1 7558:1 7559:2 7568:1 7575:1 7576:1 7580:2 7592:1 7609:19 7618:1 7619:1 7637:3 7640:2 7642:1 7644:2 7696:3 7698:1 7700:1 7706:1 7734:1 7744:2 7748:2 7751:1 7756:1 7771:1 7777:1 7778:4 7784:2 7790:1 7812:2 7814:1 7820:1 7825:1 7836:1 7840:1 7850:1 7857:1 7858:1 7876:1 7877:1 7886:1 7890:1 7940:1 7944:1 7945:1 7950:1 7952:1 7957:1 7976:1 7978:1 7989:4 8005:2 8008:3 8023:1 8034:1 8043:1 8049:2 8052:1 8069:1 8073:1 8085:2 8113:1 8124:1 8153:1 8154:1 8163:1 8164:1 8171:1 8197:1 8199:1 8215:1 8228:1 8247:1 8250:1 8253:1 8254:1 8258:3 8282:2 8289:1 8295:2 8306:1 8311:1 8331:1 8332:1 8345:1 8350:3 8351:1 8356:1 8358:1 8363:1 8370:4 8378:1 8389:1 8407:4 8423:1 8437:1 8445:6 8446:5 8460:2 8461:1 8501:1 8515:1 8521:1 8525:2 8541:1 8544:1 8550:1 8552:1 8553:2 8555:2 8578:1 8584:1 8600:1 8612:1 8620:2 8622:1 8632:1 8635:5 8637:1 8656:2 8658:2 8664:1 8674:4 8698:1 8699:1 8728:1 8735:1 8741:1 8756:2 8765:2 8771:1 8782:1 8786:1 8793:1 8820:1 8833:1 8838:1 8846:1 8853:7 8856:2 8885:3 8895:1 8904:3 8908:1 8926:1 8947:1 8953:1 8954:3 8956:3 8958:2 8990:1 9020:1 9022:1 9031:1 9067:2 9073:1 9077:1 9090:1 9101:2 9113:1 9124:1 9131:1 9132:1 9144:1 9155:1 9172:1 9173:1 9178:1 9179:1 9191:1 9196:1 9216:1 9221:1 9222:1 9224:1 9230:5 9243:3 9249:3 9251:2 9263:1 9281:2 9300:1 9301:1 9332:1 9337:2 9348:1 9358:1 9361:3 9364:1 9388:1 9391:1 9396:10 9398:2 9402:2 9406:1 9424:1 9425:1 9434:1 9439:1 9469:1 9488:1 9491:2 9493:1 9524:1 9534:1 9536:1 9537:1 9540:1 9542:4 9550:1 9552:1 9555:2 9588:1 9601:4 9608:1 9610:1 9612:1 9617:1 9620:1 9626:1 9632:1 9635:1 9642:4 9660:1 9681:1 9695:1 9703:1 9708:1 9710:1 9713:2 9718:1 9725:2 9732:1 9750:2 9764:1 9766:1 9769:1 9775:5 9778:2 9791:1 9795:3 9799:1 9802:1 9812:1 9820:1 9834:2 9848:3 9849:2 9868:1 9869:1 9878:3 9899:1 9916:1 9920:1 9926:3 9936:1 9946:4 9964:1 9972:1 9980:1 9982:1 9993:2 10030:1 10096:1 10102:1 10118:1 10120:1 10136:1 10137:2 10141:1 10144:1 10145:2 10149:1 10156:1 10157:5 10158:5 10159:1 10168:1 10174:2 10177:2 10181:1 10183:3 10188:1 10189:1 10195:1 10201:3 10203:1 10213:1 10226:2 10234:1 10255:1 10257:1 10259:2 10294:1 10297:1 10312:1 10321:1 10323:1 10326:1 10341:1 10385:1 10412:1 10425:1 10426:2 10445:1 10463:1 10474:1 10477:1 10484:2 10500:2 10503:1 10507:1 10518:1 10523:2 10525:1 10526:1 10528:2 10537:3 10539:1 10540:1 10541:2 10550:1 10556:2 10559:1 10572:1 10587:13 10588:1 10611:1 10621:1 10625:3 10632:1 10635:2 10636:2 10648:1 10675:2 10682:2 10683:1 10690:1 10693:2 10695:2 10696:1 10706:1 10724:1 10738:1 10766:1 10783:1 10796:1 10803:3 10804:1 10805:1 10808:1 10814:1 10821:1 10822:2 10827:2 10828:1 10830:1 10840:1 10841:1 10851:1 10860:1 10863:1 10864:1 10866:1 10870:2 10874:3 10875:1 10880:2 10898:1 10921:1 10934:2 10938:1 10972:1 10975:1 10983:1 10984:1 10998:1 11023:5 11032:1 11043:1 11046:1 11058:1 11063:1 11071:1 11076:2 11081:1 11100:2 11127:1 11129:1 11150:1 11170:2 11175:1 11189:1 11195:1 11201:1 11205:1 11236:1 11244:1 11246:1 11251:5 11252:1 11253:1 11255:1 11256:2 11267:1 11273:2 11279:1 11283:1 11285:1 11290:1 11335:1 11338:1 11339:1 11357:1 11368:1 11376:1 11388:1 11393:1 11407:1 11410:1 11413:1 11439:1 11476:3 11494:2 11507:1 11520:1 11527:1 11539:1 11550:1 11552:2 11553:1 11568:1 11570:3 11579:1 11593:1 11606:1 11647:1 11658:1 11663:1 11665:1 11666:2 11674:1 11705:9 11710:3 11719:1 11723:2 11728:1 11739:1 11746:1 11747:1 11753:2 11770:1 11775:1 11779:1 11792:2 11794:1 11798:1 11800:1 11829:1 11850:1 11858:1 11863:1 11886:1 11889:1 11890:1 11903:1 11923:1 11924:1 11930:1 11932:1 11944:1 11946:1 11963:1 11977:1 11982:3 11994:1 12041:1 12060:1 12078:1 12082:1 12083:1 12085:2 12090:4 12101:1 12106:2 12115:2 12122:1 12138:5 12157:1 12161:2 12186:1 12193:3 12194:1 12221:1 12223:1 12224:1 12225:1 12233:4 12236:1 12242:2 12247:1 12260:1 12264:1 12272:1 12273:1 12283:1 12289:1 12301:11 12306:1 12308:1 12311:1 12342:2 12343:1 12350:2 12371:1 12384:1 12395:1 12397:1 12421:3 12441:1 12446:6 12449:1 12465:1 12475:1 12478:1 12499:2 12515:1 12521:1 12525:1 12533:2 12535:1 12537:1 12544:1 12549:1 12551:1 12558:6 12559:1 12561:1 12563:1 12564:2 12565:1 12569:7 12570:2 12590:1 12591:1 12593:1 12595:1 12620:1 12643:1 12675:1 12685:1 12706:1 12719:3 12751:1 12756:1 12758:1 12760:1 12767:1 12770:1 12773:2 12774:1 12778:1 12794:1 12814:2 12821:1 12833:1 12836:7 12857:2 12861:1 12867:1 12890:1 12902:1 12903:1 12909:1 12923:1 12931:1 12934:1 12957:1 12983:1 12984:1 12997:1 13004:1 13010:1 13017:1 13052:1 13063:2 13077:4 13091:1 13104:1 13123:1 13143:1 13175:1 13199:1 13200:1 13204:3 13205:3 13212:1 13222:1 13223:1 13225:1 13229:2 13230:1 13256:1 13265:2 13294:1 13305:1 13327:2 13337:1 13349:1 13355:1 13361:2 13367:1 13375:3 13380:2 13428:1 13430:2 13433:1 13476:1 13477:1 13484:1 13506:1 13513:1 13517:1 13540:3 13552:1 13555:1 13558:2 13587:1 13589:1 13595:1 13643:2 13693:2 13696:1 13712:1 13734:1 13762:1 13774:1 13776:3 13781:1 13793:1 13794:1 13801:1 13804:1 13806:1 13829:1 13891:1 13900:2 13922:1 13928:1 13974:1 13995:1 14004:1 14010:1 14027:1 14032:1 14034:1 14035:1 14047:1 14064:1 14071:2 14075:1 14096:1 14098:1 14113:2 14130:2 14134:1 14156:1 14168:2 14184:1 14189:1 14211:1 14217:1 14229:3 14244:1 14252:1 14263:2 14266:1 14279:1 14302:1 14311:1 14328:1 14332:1 14335:2 14377:1 14391:1 14392:1 14403:2 14413:1 14417:3 14420:1 14424:1 14426:1 14432:1 14445:3 14446:1 14450:1 14453:1 14462:1 14465:1 14475:1 14491:2 14497:2 14532:2 14535:1 14539:1 14550:3 14559:1 14570:1 14572:3 14587:1 14600:2 14667:1 14676:1 14683:1 14687:10 14704:1 14709:3 14738:2 14772:1 14783:1 14789:2 14796:2 14817:2 14821:1 14832:1 14845:1 14876:1 14883:1 14891:1 14892:1 14902:2 14928:1 14929:1 14931:1 14946:1 14950:1 14954:3 14955:2 14956:2 14957:5 14958:1 14963:2 14965:1 14967:1 14968:3 14972:1 14973:1 14975:1 14979:1 14987:1 15024:1 15060:1 15083:1 15087:1 15088:1 15109:1 15114:1 15117:1 15119:2 15120:1 15140:1 15162:1 15169:1 15178:1 15198:1 15217:1 15240:1 15250:1 15254:1 15262:2 15272:1 15274:2 15281:1 15282:1 15290:1 15294:5 15299:1 15302:2 15308:1 15316:1 15321:2 15325:1 15329:2 15334:1 15342:3 15344:2 15353:1 15359:1 15367:1 15402:1 15407:8 15408:1 15431:1 15432:3 15437:1 15490:1 15491:1 15497:2 15499:1 15507:1 15512:2 15524:1 15525:1 15534:1 15538:1 15541:2 15575:2 15596:5 15603:1 15617:2 15619:1 15622:1 15646:1 15661:2 15688:1 15703:2 15705:2 15719:1 15720:1 15722:1 15731:1 15765:1 15768:1 15790:1 15799:1 15808:2 15814:1 15821:1 15828:1 15845:1 15858:2 15862:1 15873:1 15889:1 15909:1 15930:1 15938:1 15979:1 15982:1 16000:1 16005:1 16021:2 16027:1 16036:1 16037:2 16041:1 16047:1 16054:3 16059:2 16060:2 16064:2 16070:1 16071:5 16109:1 16111:1 16112:1 16116:1 16117:1 16121:1 16128:1 16139:1 16140:1 16156:1 16189:1 16203:1 16204:1 16222:3 16226:1 16236:1 16244:2 16256:1 16257:1 16261:1 16276:1 16279:1 16311:1 16312:1 16313:1 16339:1 16343:1 16344:1 16347:2 16379:1 16405:1 16426:2 16439:1 16452:1 16466:1 16487:1 16514:1 16540:1 16542:1 16551:1 16570:2 16651:2 16657:2 16658:1 16664:1 16674:1 16680:1 16687:1 16703:1 16721:1 16758:1 16770:1 16787:1 16791:2 16805:1 16848:8 16880:1 16906:1 16932:1 16954:12 16963:2 16964:1 16977:5 16990:1 16997:1 17001:2 17012:1 17025:1 17048:4 17058:2 17068:2 17084:1 17087:1 17107:1 17112:2 17125:2 17126:3 17137:2012 17147:1 17151:1 17161:1 17162:1 17188:1 17197:1 17200:1 17201:1 17220:2 17251:1 17262:1 17263:1 17282:1 17296:1 17307:1 17311:1 17314:1 17317:2 17321:3 17322:2 17341:1 17351:1 17359:1 17375:1 17386:1 17406:1 17407:1 17448:1 17450:1 17453:2 17459:1 17494:1 17503:3 17521:1 17534:2 17549:1 17551:1 17564:2 17566:1 17573:1 17591:1 17603:2 17608:1 17616:1 17636:1 17642:2 17643:1 17646:1 17655:1 17661:1 17670:1 17672:1 17691:2 17692:2 17708:2 17712:1 17716:1 17728:2 17752:2 17753:1 17761:1 17770:1 17771:2 17777:4 17803:1 17818:1 17823:2 17824:1 17825:1 17833:1 17846:3 17860:1 17862:1 17891:1 17900:4 17905:1 17907:2 17914:2 17929:4 17938:1 17942:1 17956:1 17961:2 17968:2 17970:1 17975:1 18006:1 18009:1 18017:1 18031:1 18038:1 18039:2 18046:1 18047:1 18050:1 18077:1 18078:1 18079:1 18080:1 18083:1 18088:1 18117:1 18130:2 18144:1 18145:2 18146:1 18147:1 18152:1 18153:1 18158:1 18182:1 18183:1 18185:1 18187:1 18196:1 18203:1 18214:1 18227:1 18229:1 18237:1 18238:1 18249:1 18252:1 18276:1 18279:1 18282:4 18287:1 18288:3 18289:1 18335:1 18354:1 18360:1 18363:1 18368:2 18369:1 18371:2 18388:1 18389:1 18399:2 18404:1 18405:2 18407:2 18409:1 18421:4 18430:2 18449:1 18458:1 18460:1 18462:1 18465:1 18466:4 18494:1 18495:1 18504:1 18505:1 18507:1 18510:1 18526:1 18531:2 18548:1 18552:1 18553:1 18569:1 18577:3 18578:13 18579:2 18586:1 18592:3 18596:1 18612:1 18643:1 18652:1 18663:1 18672:1 18678:1 18683:1 18695:1 18697:1 18701:1 18705:1 18726:1 18738:1 18768:4 18787:1 18789:2 18802:2 18807:1 18817:2 18828:1 18830:1 18840:2 18850:1 18865:6 18878:1 18886:1 18916:1 18917:1 18937:1 18968:1 18973:2 18987:3 18999:1 19002:1 19006:1 19010:1 19011:1 19020:1 19023:2 19051:2 19057:3 19063:2 19066:2 19073:2 19078:1 19080:1 19081:1 19089:2 19116:4 19126:2 19149:2 19153:1 19162:1 19178:2 19183:1 19190:2 19198:4 19202:1 19207:1 19213:1 19215:2 19227:3 19258:2 19264:1 19277:1 19296:1 19297:1 19298:1 19302:1 19304:1 19312:1 19319:2 19321:2 19327:1 19331:1 19332:1 19337:2 19353:1 19358:2 19381:2 19392:1 19393:1 19401:1 19402:1 19403:3 19420:1 19427:2 19435:1 19440:1 19441:1 19446:2 19447:1 19450:1 19460:1 19463:1 19480:1 19481:1 19486:1 19510:1 19517:1 19519:1 19524:2 19525:2 19538:1 19550:1 19618:1 19652:2 19656:1 19664:2 19665:2 19667:1 19669:1 19673:1 19674:1 19687:1 19694:2 19699:3 19705:1 19723:1 19740:1 19746:1 19750:1 19768:1 19769:1 19787:1 19789:1 19790:1 19791:1 19794:1 19796:2 19799:1 19800:1 19811:1 19818:1 19825:1 19830:2 19833:1 19838:2 19841:1 19851:1 19853:2 19874:8 19886:1 19887:2 19892:2 19902:1 19916:1 19929:1 19943:1 19948:1 19952:1 19955:1 20000:2 20010:1 20019:2 20024:1 20026:1 20030:1 20034:3 20036:1 20037:1 20046:2 20054:1 20056:1 20059:1 20082:1 20083:1 20085:2 20087:3 20088:2 20111:1 20114:1 20151:1 20171:3 20174:1 20176:3 20178:2 20179:2 20181:1 20182:1 20186:1 20189:1 20193:1 20194:2 20205:4 20213:1 20218:1 20223:1 20236:1 20244:2 20252:2 20255:2 20269:1 20315:2 20317:2 20324:1 20338:1 20344:1 20364:1 20365:2 20368:1 20374:1 20375:1 20377:1 20383:1 20396:1 20405:1 20409:1 20421:1 20423:1 20425:4 20431:1 20440:1 20441:3 20446:1 20447:3 20455:1 20463:1 20484:2 20487:1 20491:1 20492:4 20498:2 20503:1 20512:1 20513:6 20519:1 20525:1 20526:1 20531:1 20547:1 20549:1 20553:1 20575:7 20576:1 20589:1 20609:1 20624:1 20631:3 20632:1 20640:1 20649:1 20664:1 20665:1 20687:1 20690:2 20717:1 20723:1 20726:4 20728:1 20735:3 20740:3 20749:1 20753:1 20757:1 20773:1 20775:3 20787:1 20794:1 20795:2 20800:3 20809:1 20815:1 20817:1 20827:1 20834:1 20846:1 20851:1 20863:1 20866:1 20890:1 20902:1 20903:1 20904:1 20906:1 20914:1 20921:2 20935:5 20936:2 20941:1 20952:1 20957:2 20962:3 20970:3 20982:2 20996:1 21021:1 21032:1 21033:1 21037:2 21040:1 21055:1 21056:1 21084:1 21085:1 21086:1 21101:1 21104:1 21121:1 21128:2 21131:1 21138:2 21139:1 21142:1 21175:3 21204:3 21215:1 21253:1 21269:1 21294:3 21297:2 21304:5 21314:2 21322:1 21328:1 21330:3 21341:2 21344:1 21345:1 21358:1 21368:4 21406:1 21413:1 21436:1 21446:1 21458:1 21463:1 21472:2 21484:1 21502:1 21505:1 21510:1 21527:2 21534:1 21537:2 21548:1 21549:1 21559:1 21576:1 21579:2 21584:3 21590:1 21592:1 21605:1 21624:3 21625:2 21628:2 21641:1 21644:1 21650:1 21695:1 21696:4 21698:1 21701:1 21706:1 21714:1 21715:2 21716:1 21718:1 21719:1 21722:1 21749:1 21766:1 21769:1 21779:1 21789:1 21845:2 21853:1 21878:2 21884:1 21941:1 21943:2 21951:1 21953:1 21964:1 21979:1 21998:1 22008:1 22017:1 22047:1 22066:1 22084:1 22090:1 22101:2 22113:1 22136:2 22140:1 22165:2 22176:3 22186:1 22213:7 22228:1 22233:1 22241:2 22259:1 22261:1 22267:1 22270:2 22279:1 22280:1 22287:1 22293:1 22317:3 22319:1 22340:2 22341:1 22345:1 22346:1 22381:1 22425:1 22426:1 22451:1 22454:1 22455:1 22461:1 22467:3 22469:1 22473:1 22476:1 22477:1 22479:2 22482:1 22483:1 22484:1 22494:1 22518:5 22535:1 22536:1 22539:1 22544:1 22551:1 22552:1 22555:1 22557:1 22582:8 22585:3 22587:1 22609:1 22611:2 22618:1 22630:1 22635:1 22636:1 22639:1 22643:3 22651:2 22667:1 22670:1 22681:1 22756:1 22777:1 22781:1 22787:1 22794:1 22796:1 22800:2 22809:2 22813:1 22817:1 22822:2 22823:2 22826:1 22843:1 22858:1 22863:1 22874:1 22890:1 22901:2 22913:2 22917:1 22918:1 22930:1 22932:1 22941:2 22946:1 22952:2 22957:1 22968:1 22974:1 23002:11 23003:2 23026:1 23032:1 23033:1 23036:1 23045:1 23066:1 23067:1 23074:2 23078:1 23085:1 23098:2 23101:1 23105:2 23110:1 23111:1 23131:1 23133:1 23139:1 23143:1 23145:1 23160:1 23166:1 23198:1 23220:9 23221:1 23235:1 23240:2 23247:1 23253:1 23270:1 23276:1 23280:1 23285:5 23286:1 23308:1 23311:2 23314:1 23340:1 23353:2 23359:1 23365:1 23398:1 23407:1 23422:1 23426:2 23428:1 23437:2 23448:1 23452:1 23459:1 23473:1 23527:1 23528:1 23534:1 23538:1 23540:1 23560:1 23564:2 23569:3 23571:1 23577:1 23579:1 23594:1 23617:3 23629:1 23632:1 23636:1 23650:4 23663:1 23677:1 23688:1 23689:1 23698:1 23701:1 23715:1 23746:1 23769:1 23777:2 23821:1 23826:1 23838:1 23853:1 23860:1 23919:2 23928:1 23929:1 23945:1 23952:1 23953:1 23958:1 23988:1 24023:3 24030:1 24035:1 24058:1 24065:1 24074:2 24075:1 24094:12 24095:2 24105:1 24115:1 24124:1 24126:1 24151:2 24163:1 24165:1 24183:1 24186:1 24188:1 24199:1 24211:3 24215:3 24221:3 24224:2 24226:4 24228:1 24230:1 24253:1 24300:1 24324:1 24337:1 24340:1 24350:1 24362:2 24370:2 24380:1 24384:1 24386:1 24387:1 24388:2 24415:6 24417:1 24418:1 24425:1 24439:1 24442:1 24447:1 24467:1 24470:1 24483:1 24531:1 24537:2 24553:1 24562:1 24569:2 24596:1 24621:1 24634:1 24635:1 24641:5 24652:1 24653:1 24677:1 24684:1 24689:1 24690:1 24703:1 24707:1 24711:1 24721:1 24746:2 24747:2 24758:3 24769:1 24785:1 24788:1 24793:1 24797:2 24823:1 24849:1 24851:1 24886:1 24895:2 24912:1 24915:3 24918:1 24921:1 24922:1 24931:1 24936:1 24938:2 24950:1 24961:2 24972:2 24974:1 24977:1 24985:2 24986:1 24991:1 25000:1 25013:1 25016:1 25026:1 25028:1 25032:2 25037:1 25063:1 25077:5 25081:1 25084:2 25098:1 25099:1 25108:1 25126:1 25132:2 25137:1 25143:1 25148:1 25155:2 25163:1 25164:1 25172:2 25174:1 25181:1 25187:1 25193:1 25200:1 25201:1 25204:1 25205:1 25206:1 25210:1 25217:2 25229:2 25238:2 25243:1 25247:1 25279:1 25288:1 25297:2 25318:1 25335:1 25361:1 25404:2 25439:1 25444:1 25445:2 25459:1 25465:2 25480:1 25487:1 25492:1 25499:3 25521:1 25532:1 25563:2 25598:1 25613:1 25652:1 25655:1 25660:2 25674:2 25680:1 25699:1 25715:1 25742:1 25745:1 25759:1 25760:3 25766:1 25773:2 25775:1 25778:2 25790:1 25792:1 25799:1 25801:5 25813:1 25815:1 25817:1 25828:1 25832:2 25836:2 25840:1 25845:1 25847:5 25851:1 25860:1 25867:3 25870:1 25883:3 25884:1 25886:1 25906:1 25922:1 25924:1 25941:1 25949:1 25963:1 25969:2 25971:4 25977:4 26008:4 26021:1 26023:1 26034:1 26045:1 26051:1 26052:1 26064:1 26081:1 26083:2 26114:1 26120:1 26126:1 26131:1 26146:1 26158:1 26162:1 26164:1 26172:1 26173:2 26179:1 26182:1 26196:3 26234:1 26245:6 26249:1 26252:1 26257:1 26259:1 26263:2 26276:1 26308:4 26351:1 26401:1 26488:1 26495:1 26497:1 26498:1 26499:1 26502:2 26504:3 26511:1 26515:1 26516:1 26525:1 26539:1 26552:1 26571:1 26611:3 26620:2 26648:2 26653:2 26668:1 26699:1 26715:1 26721:2 26722:1 26727:1 26728:2 26758:1 26760:1 26763:3 26767:2 26780:1 26784:1 26806:1 26813:1 26819:1 26825:1 26836:1 26844:1 26866:1 26868:3 26876:1 26878:1 26892:1 26901:2 26903:1 26919:1 26940:2 26943:2 26961:1 26965:1 26966:3 26973:3 26974:3 26975:1 26978:1 27022:5 27025:1
1 12:1 34:1 43:1 50:1 55:1 60:1 90:1 108:1 124:1 137:1 138:3 147:1 152:2 153:1 159:1 165:1 168:3 178:5 189:1 194:1 221:1 231:1 236:7 248:1 255:3 262:1 277:2 301:1 312:3 314:3 318:3 326:3 333:1 337:2 356:2 363:1 375:1 392:5 394:3 403:1 451:1 480:2 509:1 518:1 522:2 538:1 548:3 554:1 565:1 571:1 573:2 575:1 580:1 588:2 656:1 665:1 698:1 708:2 728:1 730:2 731:1 738:1 750:1 776:5 779:1 782:1 786:1 787:4 798:1 814:10 815:4 823:3 841:2 848:1 853:1 854:4 856:2 857:6 859:1 861:1 863:2 877:2 895:3 898:4 909:1 943:2 951:1 964:1 994:1 1011:1 1028:1 1029:1 1053:2 1054:1 1057:1 1100:3 1101:2 1105:1 1107:1 1111:2 1118:1 1119:1 1132:1 1141:1 1145:2 1156:1 1161:2 1178:1 1184:2 1189:1 1214:1 1215:1 1230:1 1243:1 1247:1 1249:1 1253:1 1256:1 1264:1 1275:1 1296:1 1300:1 1301:2 1303:1 1318:1 1319:2 1332:1 1334:1 1340:2 1346:1 1352:1 1361:1 1367:1 1371:2 1385:1 1406:1 1411:4 1417:7 1420:2 1429:1 1450:2 1458:1 1461:1 1465:1 1467:1 1476:1 1480:1 1485:2 1498:2 1508:1 1511:1 1513:1 1517:1 1526:1 1529:2 1540:1 1545:1 1549:1 1556:1 1560:1 1564:1 1570:1 1580:1 1595:2 1598:1 1614:1 1615:5 1621:1 1626:1 1632:1 1636:1 1639:2 1642:1 1643:2 1645:1 1651:2 1653:6 1660:1 1676:4 1678:2 1692:1 1704:1 1710:2 1713:2 1715:4 1717:1 1721:1 1731:1 1742:1 1744:1 1751:1 1757:2 1763:2 1764:1 1765:1 1778:2 1782:1 1787:1 1821:1 1825:5 1830:1 1836:1 1840:1 1845:2 1851:1 1854:1 1859:1 1862:2 1873:1 1877:1 1884:1 1902:1 1905:1 1920:2 1921:1 1923:1 1924:1 1926:2 1929:1 1966:9 1970:1 1975:1 1979:1 1984:1 1999:1 2006:2 2025:2 2038:3 2040:1 2052:1 2053:1 2056:1 2061:2 2078:2 2079:2 2083:2 2084:4 2087:1 2090:2 2095:2 2096:2 2097:1 2098:1 2099:4 2105:4 2107:3 2109:5 2111:6 2113:1 2123:1 2131:1 2146:1 2149:1 2152:1 2155:3 2158:1 2162:1 2172:1 2179:1 2190:1 2191:1 2200:1 2208:1 2210:1 2243:1 2247:1 2262:1 2278:1 2280:1 2287:1 2291:1 2297:1 2306:3 2316:1 2317:1 2325:1 2330:1 2334:1 2345:1 2347:1 2353:3 2356:2 2358:1 2361:5 2365:1 2366:1 2367:1 2379:1 2382:1 2397:1 2408:4 2410:1 2416:1 2430:2 2436:1 2437:1 2438:1 2447:6 2452:1 2458:2 2460:5 2465:4 2467:1 2474:2 2475:1 2483:2 2485:1 2490:3 2492:2 2503:2 2515:1 2516:2 2520:3 2524:1 2557:1 2561:1 2562:2 2563:2 2575:3 2577:1 2579:1 2583:4 2590:2 2595:1 2614:1 2619:1 2639:1 2656:3 2660:1 2664:1 2667:13 2689:2 2690:1 2694:1 2695:1 2697:1 2706:2 2711:2 2731:14 2733:1 2756:2 2758:3 2773:1 2783:1 2814:1 2822:1 2826:1 2840:1 2841:5 2852:3 2856:1 2860:1 2879:1 2889:1 2902:1 2904:1 2908:1 2915:2 2923:1 2938:2 2956:3 2968:1 2991:1 2992:1 3026:1 3027:2 3028:1 3031:1 3034:1 3048:6 3103:1 3137:1 3147:2 3152:1 3192:1 3193:1 3194:1 3203:1 3209:1 3210:1 3213:1 3230:1 3252:1 3268:1 3286:2 3291:1 3309:1 3314:1 3315:12 3318:1 3325:1 3328:2 3330:2 3331:2 3332:1 3346:1 3350:1 3352:1 3358:1 3394:1 3399:1 3400:1 3406:1 3407:1 3410:3 3414:1 3423:1 3446:1 3459:1 3470:1 3473:1 3480:2 3483:1 3486:1 3488:1 3494:1 3506:1 3510:1 3513:2 3520:1 3523:1 3540:2 3542:1 3554:1 3560:2 3575:1 3576:1 3581:4 3583:1 3587:2 3591:2 3600:2 3610:2 3611:2 3629:1 3631:2 3650:1 3652:2 3660:1 3683:1 3691:6 3692:3 3698:2 3730:1 3733:2 3737:1 3742:1 3759:1 3760:2 3779:1 3787:2 3790:1 3794:1 3813:2 3828:2 3838:1 3845:3 3848:1 3849:1 3853:2 3859:1 3863:2 3875:1 3882:1 3888:1 3898:1 3912:1 3917:1 3937:1 3952:7 3957:1 3977:3 3984:1 3993:1 4003:1 4005:1 4018:2 4032:2 4038:1 4057:1 4062:1 4064:2 4084:3 4097:1 4107:1 4116:1 4118:1 4125:1 4140:2 4160:1 4164:1 4167:1 4172:1 4173:3 4175:1 4189:1 4201:1 4217:1 4218:1 4226:1 4234:4 4246:1 4249:1 4275:4 4284:2 4294:1 4302:3 4307:1 4319:4 4344:2 4361:1 4365:2 4369:3 4383:3 4386:1 4394:1 4403:1 4422:2 4431:1 4445:1 4467:1 4477:1 4488:11 4490:1 4499:1 4501:1 4502:1 4516:1 4535:1 4546:1 4554:1 4608:2 4625:1 4629:4 4631:5 4632:2 4634:1 4637:1 4638:1 4639:1 4642:1 4643:1 4645:5 4646:4 4650:1 4651:2 4652:6 4658:1 4659:3 4663:1 4674:1 4701:1 4718:1 4737:2 4744:1 4762:1 4767:1 4776:1 4801:1 4834:1 4842:1 4866:1 4877:1 4887:2 4911:1 4916:1 4941:2 4945:2 4955:1 4985:1 5006:3 5018:1 5037:1 5050:1 5055:1 5064:2 5075:1 5081:1 5088:1 5094:1 5101:1 5121:1 5130:1 5153:1 5156:1 5197:2 5207:1 5212:2 5216:1 5230:5 5231:1 5234:2 5236:1 5239:2 5240:1 5255:1 5256:1 5281:3 5292:2 5293:1 5296:1 5309:6 5314:1 5315:1 5330:2 5336:1 5398:1 5416:1 5420:1 5422:1 5440:1 5444:1 5445:1 5446:1 5453:2 5467:1 5479:1 5503:1 5510:2 5521:2 5535:2 5538:1 5565:5 5567:1 5568:1 5575:1 5576:2 5585:1 5586:1 5588:1 5591:1 5620:1 5623:1 5624:1 5629:1 5632:1 5634:1 5639:1 5641:1 5642:1 5643:1 5647:12 5680:3 5686:1 5703:1 5715:1 5725:3 5735:1 5751:6 5756:1 5761:1 5763:1 5801:1 5805:1 5828:1 5834:1 5836:1 5838:1 5844:2 5845:3 5849:1 5850:1 5852:2 5859:2 5860:3 5861:2 5872:1 5897:1 5904:1 5938:1 5954:1 5987:1 5991:4 5992:2 6006:1 6047:1 6055:1 6066:1 6082:1 6092:1 6115:1 6129:2 6137:2 6146:1 6152:1 6162:1 6210:1 6223:1 6235:1 6238:1 6246:1 6254:7 6262:2 6265:2 6267:1 6273:1 6275:1 6279:1 6287:2 6300:1 6307:1 6310:1 6340:1 6344:1 6345:3 6357:2 6361:1 6366:2 6385:1 6389:1 6394:1 6398:1 6401:2 6430:1 6449:1 6453:1 6460:1 6465:1 6468:1 6469:1 6477:1 6486:1 6490:6 6498:2 6516:1 6524:1 6528:1 6534:1 6537:2 6538:2 6545:1 6549:3 6550:1 6552:1 6557:5 6560:1 6564:1 6587:1 6588:1 6590:1 6599:1 6602:1 6604:1 6621:1 6626:4 6631:3 6641:1 6654:1 6658:1 6672:2 6677:1 6679:1 6686:1 6703:1 6712:1 6721:1 6728:1 6742:1 6797:1 6800:1 6806:1 6810:1 6846:1 6857:1 6859:2 6860:2 6864:2 6870:1 6876:3 6881:1 6894:4 6895:1 6898:2 6912:1 6913:3 6922:1 6935:1 6943:2 6946:1 6951:1 6964:1 6969:1 6980:1 6981:1 6989:1 6997:1 7016:1 7027:1 7052:3 7067:3 7068:6 7081:2 7086:1 7090:4 7092:2 7093:3 7109:1 7116:4 7117:2 7121:1 7136:38 7137:2 7140:2 7147:1 7155:6 7156:4 7162:2 7194:1 7201:1 7202:1 7211:1 7222:1 7224:1 7229:3 7230:2 7235:1 7242:1 7244:1 7256:2 7264:1 7276:1 7294:2 7300:1 7305:1 7326:1 7352:1 7355:1 7356:3 7385:1 7389:1 7390:1 7391:1 7402:2 7461:1 7477:1 7489:1 7507:1 7508:1 7517:1 7520:1 7523:1 7547:1 7556:1 7558:1 7559:2 7568:1 7575:1 7576:1 7580:2 7592:1 7593:1 7609:20 7618:1 7619:1 7637:3 7640:2 7642:1 7644:2 7696:3 7698:1 7700:1 7706:1 7734:1 7744:2 7748:2 7751:1 7756:1 7771:1 7777:1 7778:4 7784:3 7790:1 7812:2 7814:1 7820:1 7825:1 7836:1 7840:1 7850:1 7857:1 7858:1 7876:1 7877:1 7886:2 7889:1 7890:1 7940:1 7944:1 7945:1 7950:1 7952:1 7957:1 7976:1 7978:1 7989:5 8005:2 8008:3 8023:1 8034:1 8043:1 8049:2 8052:1 8054:1 8069:1 8073:1 8085:2 8113:1 8124:1 8153:1 8154:1 8163:1 8164:1 8171:1 8197:1 8199:1 8215:1 8228:1 8247:1 8250:1 8253:1 8254:1 8258:3 8282:2 8289:1 8295:2 8306:1 8311:1 8331:1 8332:1 8345:1 8350:3 8351:1 8356:1 8358:1 8363:1 8370:4 8378:1 8389:1 8407:4 8423:1 8426:1 8437:1 8445:7 8446:5 8460:2 8461:1 8501:1 8515:1 8521:1 8525:2 8541:1 8544:1 8550:2 8552:2 8553:3 8555:2 8578:1 8584:1 8600:1 8612:1 8620:2 8622:1 8632:1 8635:5 8637:1 8656:3 8658:2 8664:1 8674:4 8698:1 8699:1 8728:1 8735:1 8741:1 8756:2 8765:3 8771:1 8782:1 8786:1 8793:1 8820:1 8833:1 8838:1 8846:1 8853:7 8856:2 8885:3 8894:1 8895:1 8904:3 8908:1 8926:1 8947:1 8953:1 8954:3 8956:3 8958:2 8964:1 8981:1 8990:1 9020:1 9022:1 9031:1 9067:2 9073:1 9077:1 9090:1 9101:2 9113:1 9124:1 9131:1 9132:1 9144:1 9155:1 9172:1 9173:1 9178:1 9179:1 9191:1 9196:1 9216:1 9221:1 9222:1 9224:1 9230:5 9243:3 9249:3 9251:2 9263:1 9281:2 9300:2 9301:1 9332:1 9337:2 9348:1 9358:1 9361:3 9364:1 9388:1 9391:1 9396:12 9398:2 9402:2 9406:1 9424:1 9425:1 9434:1 9439:1 9469:1 9488:1 9491:2 9493:1 9524:1 9534:1 9536:1 9537:1 9540:1 9542:4 9550:1 9552:1 9555:2 9588:1 9601:4 9608:1 9610:1 9612:1 9617:1 9620:2 9626:1 9632:1 9635:1 9642:4 9660:1 9681:1 9695:1 9696:1 9703:1 9708:1 9710:1 9713:2 9718:1 9725:2 9732:1 9750:2 9764:1 9766:1 9769:1 9775:5 9778:2 9791:1 9795:3 9799:1 9802:1 9812:1 9820:1 9834:2 9848:4 9849:2 9866:1 9868:1 9869:1 9878:3 9899:1 9916:1 9920:1 9926:3 9936:1 9946:5 9964:1 9972:1 9980:1 9982:1 9993:2 10030:1 10096:1 10102:1 10118:1 10120:1 10136:1 10137:2 10141:2 10144:1 10145:2 10149:1 10152:1 10156:1 10157:5 10158:5 10159:1 10168:1 10174:2 10177:2 10181:1 10183:3 10188:1 10189:1 10195:1 10201:3 10203:1 10213:1 10226:2 10234:1 10255:1 10257:1 10259:2 10294:1 10297:1 10312:1 10321:1 10323:1 10326:1 10341:1 10385:1 10392:1 10412:1 10425:1 10426:2 10445:1 10463:1 10474:1 10477:1 10484:2 10500:2 10503:2 10507:1 10518:1 10523:2 10525:1 10526:1 10528:2 10537:3 10539:1 10540:1 10541:2 10550:1 10556:3 10559:2 10572:1 10587:13 10588:1 10611:1 10621:1 10625:3 10632:1 10635:2 10636:2 10648:1 10675:2 10682:2 10683:1 10690:1 10693:2 10695:2 10696:1 10706:1 10724:1 10738:1 10766:1 10783:1 10796:1 10803:3 10804:1 10805:1 10808:1 10814:1 10821:1 10822:2 10827:2 10828:1 10830:1 10840:1 10841:1 10851:1 10860:1 10863:1 10864:1 10866:1 10870:2 10874:3 10875:1 10880:2 10898:1 10921:1 10934:2 10938:1 10972:1 10975:1 10983:1 10984:1 10998:1 11016:1 11023:5 11032:1 11043:2 11046:1 11058:1 11063:1 11071:1 11076:2 11081:1 11100:2 11127:1 11129:1 11150:1 11170:2 11175:1 11189:1 11195:1 11201:2 11205:1 11219:1 11236:1 11244:1 11246:1 11251:5 11252:1 11253:2 11255:1 11256:2 11267:1 11273:2 11279:1 11283:1 11285:1 11290:1 11335:1 11338:2 11339:1 11357:1 11368:1 11376:1 11388:1 11393:1 11407:1 11410:1 11413:1 11439:1 11476:3 11494:2 11507:1 11520:1 11527:1 11539:1 11550:1 11552:2 11553:1 11568:1 11570:3 11579:1 11593:1 11606:1 11647:1 11658:1 11663:1 11665:1 11666:2 11674:1 11705:10 11710:3 11719:1 11723:2 11728:1 11739:1 11746:1 11747:2 11753:2 11770:1 11775:1 11779:1 11792:2 11794:1 11798:1 11800:1 11829:1 11850:1 11858:1 11863:1 11886:1 11889:1 11890:1 11903:1 11923:1 11924:1 11930:2 11932:1 11944:1 11946:1 11963:1 11977:1 11982:3 11994:1 12041:1 12060:1 12078:1 12082:1 12083:1 12085:2 12090:4 12101:1 12106:2 12115:2 12122:1 12138:6 12157:1 12161:2 12186:1 12193:4 12194:1 12221:1 12223:1 12224:1 12225:1 12233:5 12236:1 12242:2 12247:1 12260:1 12264:1 12272:1 12273:1 12283:1 12289:1 12290:1 12301:12 12306:1 12308:1 12311:1 12342:2 12343:1 12350:2 12366:1 12371:1 12384:1 12395:1 12397:1 12421:3 12441:1 12446:6 12449:1 12465:1 12475:1 12478:1 12499:2 12515:1 12521:1 12525:1 12533:2 12535:1 12537:1 12544:1 12549:1 12551:1 12558:6 12559:1 12561:1 12563:1 12564:2 12565:1 12569:7 12570:2 12590:1 12591:1 12593:1 12595:1 12620:1 12643:1 12675:1 12685:1 12706:1 12719:3 12751:1 12756:1 12758:1 12760:1 12767:1 12770:1 12773:2 12774:1 12778:1 12790:1 12794:1 12814:2 12820:1 12821:1 12833:1 12836:7 12857:2 12861:1 12867:1 12890:1 12902:1 12903:1 12909:1 12913:1 12923:1 12929:1 12931:1 12934:1 12957:1 12983:1 12984:1 12997:1 13004:1 13010:1 13017:1 13052:1 13063:2 13077:4 13091:1 13104:1 13123:1 13143:1 13175:1 13199:1 13200:1 13204:3 13205:3 13212:1 13222:1 13223:1 13225:1 13229:2 13230:1 13250:1 13256:1 13265:2 13294:1 13305:1 13327:2 13334:1 13337:1 13349:1 13355:1 13361:2 13367:1 13375:3 13380:2 13428:1 13430:2 13433:1 13476:2 13477:1 13484:1 13506:1 13513:1 13517:1 13540:3 13552:1 13555:1 13558:2 13587:1 13589:1 13595:1 13643:2 13693:2 13696:1 13712:1 13734:1 13762:1 13774:1 13776:3 13781:1 13793:1 13794:1 13801:1 13804:1 13806:1 13829:1 13891:1 13900:2 13922:1 13928:1 13974:1 13995:1 14004:1 14010:1 14027:1 14032:1 14034:1 14035:2 14047:1 14064:2 14071:2 14075:1 14096:1 14098:1 14113:2 14130:2 14134:1 14156:1 14168:2 14184:1 14189:1 14211:1 14217:1 14225:1 14229:3 14244:1 14252:1 14263:2 14266:1 14279:1 14299:1 14302:1 14311:1 14328:1 14332:1 14335:2 14377:1 14391:1 14392:1 14403:2 14413:1 14417:3 14420:1 14424:1 14426:1 14432:1 14445:3 14446:1 14450:1 14453:1 14462:1 14465:1 14475:1 14491:2 14497:2 14532:2 14535:1 14539:1 14550:3 14559:1 14570:1 14572:3 14587:1 14600:2 14667:1 14676:1 14683:1 14687:11 14704:1 14709:3 14712:1 14738:2 14772:1 14783:1 14789:2 14796:2 14817:2 14821:1 14832:1 14845:1 14876:1 14883:1 14890:1 14891:1 14892:1 14902:2 14903:1 14928:1 14929:1 14931:1 14946:1 14950:1 14954:4 14955:2 14956:2 14957:5 14958:1 14959:1 14963:2 14965:1 14967:2 14968:3 14972:1 14973:1 14975:1 14979:1 14987:1 15024:1 15037:1 15060:1 15083:1 15087:1 15088:1 15109:1 15114:1 15117:1 15119:2 15120:1 15140:1 15162:1 15169:1 15178:1 15198:1 15217:1 15240:1 15250:1 15252:1 15254:1 15262:2 15272:1 15274:2 15281:2 15282:1 15290:1 15294:5 15299:1 15302:2 15308:1 15316:1 15321:2 15325:1 15329:2 15334:1 15342:3 15344:2 15353:2 15359:1 15367:1 15372:1 15402:1 15407:9 15408:1 15431:1 15432:3 15437:1 15476:1 15490:1 15491:1 15497:2 15499:1 15507:1 15512:3 15524:1 15525:1 15534:1 15538:1 15541:2 15575:2 15596:5 15603:1 15617:2 15619:1 15622:1 15646:1 15661:2 15688:1 15703:2 15705:3 15719:1 15720:1 15722:1 15731:1 15765:1 15768:1 15790:1 15799:1 15808:2 15814:1 15821:1 15828:1 15845:1 15858:2 15862:1 15864:1 15873:1 15886:1 15889:1 15909:1 15930:1 15938:1 15966:1 15979:1 15982:1 16000:1 16005:1 16021:2 16027:1 16036:1 16037:3 16041:1 16047:1 16054:3 16059:2 16060:2 16064:2 16070:1 16071:6 16109:1 16111:1 16112:1 16116:1 16117:1 16121:1 16128:1 16139:1 16140:1 16156:1 16176:1 16189:1 16203:1 16204:1 16222:3 16226:1 16236:1 16244:2 16256:1 16257:1 16261:1 16276:1 16279:1 16311:1 16312:1 16313:1 16339:1 16343:1 16344:1 16347:2 16379:1 16401:1 16405:1 16426:2 16437:1 16439:1 16450:1 16452:1 16466:1 16487:1 16514:1 16540:1 16542:1 16551:1 16570:2 16651:2 16657:2 16658:1 16664:1 16674:1 16680:1 16687:1 16703:1 16721:1 16727:1 16758:1 16770:1 16771:1 16787:1 16791:2 16805:1 16848:9 16880:1 16906:1 16932:1 16954:13 16963:2 16964:1 16977:5 16990:1 16997:1 17001:2 17012:1 17025:1 17048:4 17058:2 17068:2 17084:1 17085:1 17087:1 17107:1 17112:2 17125:2 17126:3 17137:2101 17147:1 17151:1 17161:1 17162:1 17188:1 17197:1 17200:1 17201:1 17220:2 17251:1 17262:1 17263:1 17282:1 17296:1 17307:1 17311:1 17314:1 17317:2 17321:3 17322:2 17339:1 17341:1 17351:1 17359:1 17375:1 17386:1 17406:1 17407:1 17448:1 17450:1 17453:2 17459:1 17494:1 17503:3 17521:1 17534:2 17549:1 17551:1 17564:2 17566:1 17573:1 17591:1 17603:2 17608:1 17616:1 17627:1 17636:1 17642:2 17643:1 17646:2 17655:1 17661:1 17670:1 17672:1 17691:2 17692:2 17708:2 17712:1 17716:1 17728:2 17752:2 17753:1 17761:1 17770:1 17771:2 17777:4 17803:1 17818:1 17823:2 17824:1 17825:1 17833:1 17846:5 17860:1 17862:1 17891:1 17900:4 17905:1 17907:2 17914:2 17929:4 17938:1 17942:1 17956:1 17961:3 17968:2 17970:1 17975:1 18006:1 18009:1 18017:1 18031:1 18034:1 18038:1 18039:2 18046:1 18047:1 18050:1 18077:1 18078:1 18079:1 18080:1 18083:1 18088:1 18117:1 18130:2 18144:1 18145:2 18146:1 18147:1 18152:1 18153:1 18158:1 18182:1 18183:1 18185:1 18187:1 18196:1 18203:1 18214:1 18227:1 18229:1 18237:1 18238:1 18249:1 18252:1 18276:1 18279:1 18282:4 18287:1 18288:3 18289:1 18335:1 18354:1 18360:1 18363:1 18368:2 18369:1 18371:2 18388:1 18389:1 18399:2 18404:1 18405:2 18407:2 18409:1 18421:4 18430:2 18449:1 18458:1 18460:1 18462:1 18465:1 18466:4 18494:1 18495:1 18504:1 18505:1 18507:1 18510:1 18526:1 18531:2 18548:1 18552:1 18553:1 18569:1 18577:3 18578:14 18579:2 18586:1 18592:3 18596:1 18612:1 18643:1 18652:1 18663:1 18672:1 18678:1 18683:1 18695:1 18697:1 18701:1 18705:1 18726:1 18738:1 18768:4 18787:1 18789:2 18802:2 18807:1 18817:2 18828:1 18830:1 18840:2 18850:1 18865:6 18871:2 18878:1 18886:1 18916:1 18917:1 18937:1 18968:1 18973:3 18987:3 18999:1 19002:1 19006:1 19010:1 19011:1 19020:1 19023:2 19051:2 19057:3 19063:2 19066:2 19073:2 19078:1 19080:1 19081:1 19089:2 19116:4 19126:2 19149:2 19153:1 19162:1 19178:2 19183:1 19190:2 19198:4 19202:1 19207:1 19213:1 19215:2 19227:3 19258:2 19264:1 19277:1 19296:1 19297:1 19298:1 19302:1 19304:1 19312:1 19319:2 19321:2 19327:1 19331:2 19332:1 19337:2 19353:1 19358:2 19381:2 19392:1 19393:1 19401:1 19402:1 19403:4 19420:1 19427:2 19435:1 19440:1 19441:1 19446:2 19447:1 19450:1 19460:1 19463:1 19480:1 19481:1 19486:1 19510:1 19517:1 19519:1 19524:2 19525:2 19538:1 19550:1 19618:1 19652:2 19656:1 19664:2 19665:2 19667:1 19669:1 19673:1 19674:1 19687:1 19694:2 19699:3 19705:1 19714:1 19723:1 19740:1 19746:1 19750:1 19768:1 19769:1 19787:1 19789:1 19790:1 19791:1 19794:1 19796:2 19799:1 19800:1 19811:1 19818:1 19825:1 19830:2 19833:1 19838:2 19841:1 19851:1 19853:2 19874:9 19886:1 19887:2 19892:2 19902:1 19916:1 19929:1 19943:1 19948:1 19952:1 19955:1 20000:2 20010:1 20019:2 20024:1 20026:1 20030:1 20034:3 20036:2 20037:1 20046:2 20054:1 20056:1 20059:1 20082:1 20083:1 20085:2 20087:3 20088:2 20111:1 20114:1 20151:1 20171:3 20174:1 20176:3 20178:2 20179:3 20181:1 20182:1 20186:1 20189:1 20193:1 20194:2 20205:4 20213:1 20218:1 20223:1 20236:1 20244:2 20252:2 20255:2 20269:1 20315:2 20317:2 20324:1 20338:1 20344:1 20364:1 20365:2 20368:1 20374:1 20375:1 20377:1 20383:1 20392:1 20396:1 20405:1 20409:1 20421:1 20423:1 20425:4 20431:1 20440:1 20441:3 20446:1 20447:3 20455:1 20463:1 20484:2 20487:1 20491:1 20492:4 20498:2 20503:1 20512:1 20513:7 20519:1 20525:1 20526:1 20531:1 20547:1 20549:1 20553:1 20575:7 20576:1 20589:1 20609:1 20624:1 20631:3 20632:1 20640:1 20649:1 20664:1 20665:1 20687:1 20690:2 20717:1 20723:1 20726:4 20728:1 20735:3 20740:3 20749:1 20753:1 20757:1 20773:1 20775:3 20787:1 20794:1 20795:2 20800:3 20809:1 20815:1 20817:1 20827:1 20834:1 20846:1 20851:1 20863:1 20866:1 20890:1 20895:1 20902:1 20903:1 20904:1 20906:1 20914:1 20921:2 20935:6 20936:2 20941:1 20952:2 20957:2 20962:4 20970:3 20982:2 20996:1 21021:1 21032:1 21033:1 21037:2 21040:2 21055:1 21056:1 21080:1 21083:1 21084:1 21085:1 21086:1 21101:1 21104:1 21121:1 21128:2 21131:1 21138:2 21139:1 21142:1 21175:3 21204:3 21215:1 21253:1 21269:1 21294:3 21297:2 21304:5 21314:2 21322:1 21328:1 21330:3 21341:2 21344:2 21345:1 21358:1 21368:4 21406:1 21413:1 21436:1 21446:1 21458:1 21463:1 21472:2 21484:1 21502:1 21505:1 21510:1 21527:2 21534:1 21537:2 21548:1 21549:1 21559:1 21566:1 21575:1 21576:1 21579:2 21584:3 21590:1 21592:1 21605:1 21624:3 21625:2 21628:2 21641:1 21644:1 21650:1 21695:1 21696:4 21698:1 21701:1 21706:1 21714:1 21715:2 21716:1 21718:1 21719:1 21722:1 21749:1 21766:1 21769:1 21779:1 21789:1 21845:2 21853:1 21878:2 21884:1 21941:1 21943:2 21951:1 21953:1 21964:1 21979:1 21996:1 21998:1 22008:1 22017:1 22047:1 22066:1 22084:1 22090:1 22101:2 22113:1 22136:2 22140:1 22165:2 22176:3 22186:1 22213:7 22228:1 22233:1 22241:3 22259:1 22261:1 22267:1 22270:3 22279:1 22280:1 22287:1 22293:1 22317:3 22319:1 22340:2 22341:1 22345:1 22346:1 22381:1 22425:1 22426:1 22451:1 22454:1 22455:1 22461:1 22467:3 22469:1 22473:1 22476:1 22477:1 22479:2 22482:1 22483:1 22484:1 22494:1 22518:5 22535:1 22536:1 22539:1 22544:1 22551:1 22552:1 22555:1 22557:1 22582:8 22585:4 22587:1 22609:1 22611:2 22618:1 22630:1 22635:1 22636:1 22639:1 22643:3 22651:2 22667:1 22670:1 22681:1 22756:1 22777:1 22781:1 22787:1 22794:1 22796:1 22800:2 22809:2 22813:1 22817:1 22822:2 22823:2 22826:1 22843:1 22845:1 22858:2 22863:1 22866:1 22874:1 22890:1 22901:3 22913:2 22917:1 22918:1 22930:1 22932:1 22941:2 22946:1 22952:2 22957:1 22968:1 22974:1 23002:12 23003:2 23026:1 23032:1 23033:1 23036:1 23045:1 23066:1 23067:1 23074:2 23078:1 23085:1 23098:2 23101:1 23105:2 23110:1 23111:1 23131:1 23133:1 23139:1 23143:1 23145:1 23160:1 23166:1 23198:1 23220:10 23221:1 23235:1 23240:2 23241:1 23247:1 23253:1 23270:1 23276:1 23280:1 23285:6 23286:1 23308:1 23311:2 23314:1 23340:1 23353:2 23359:1 23365:1 23398:1 23407:1 23422:1 23426:2 23428:1 23437:2 23448:1 23452:1 23459:1 23473:1 23527:1 23528:1 23534:1 23538:1 23540:1 23560:1 23564:2 23569:3 23571:1 23577:1 23579:1 23594:1 23617:4 23629:1 23632:1 23636:1 23648:1 23650:5 23663:1 23677:1 23688:1 23689:1 23698:1 23701:1 23715:1 23746:1 23769:1 23777:2 23821:1 23826:1 23838:1 23853:1 23860:1 23919:2 23928:1 23929:1 23945:1 23952:1 23953:1 23958:1 23971:1 23988:1 24023:3 24030:1 24035:1 24058:1 24065:1 24074:2 24075:1 24094:13 24095:2 24105:1 24115:1 24124:1 24126:1 24151:2 24163:1 24165:1 24183:1 24186:1 24188:1 24199:1 24211:3 24215:3 24221:3 24224:2 24226:4 24228:1 24230:1 24245:1 24253:1 24300:1 24324:1 24337:1 24340:2 24350:1 24362:2 24370:2 24380:1 24384:1 24386:1 24387:1 24388:2 24415:6 24417:1 24418:1 24425:1 24426:1 24434:1 24439:1 24442:1 24447:1 24467:1 24470:1 24483:1 24531:1 24537:2 24553:1 24561:1 24562:1 24569:2 24596:1 24621:1 24634:1 24635:1 24641:5 24652:1 24653:1 24677:1 24684:1 24689:1 24690:1 24703:1 24707:1 24711:1 24721:1 24744:1 24746:2 24747:2 24758:3 24769:1 24785:1 24788:1 24793:1 24797:2 24823:1 24838:2 24849:1 24851:1 24886:1 24895:2 24912:1 24915:3 24918:1 24921:1 24922:1 24931:1 24936:1 24938:2 24950:1 24956:1 24961:2 24972:2 24974:1 24977:1 24985:2 24986:1 24991:1 25000:1 25013:1 25016:1 25026:1 25028:1 25032:2 25037:1 25063:1 25077:5 25081:1 25084:2 25098:1 25099:1 25108:1 25126:1 25132:2 25137:1 25143:1 25148:1 25155:2 25163:1 25164:1 25172:2 25174:1 25181:1 25187:1 25193:1 25200:1 25201:1 25204:1 25205:1 25206:1 25210:1 25217:2 25219:1 25229:2 25238:2 25243:1 25247:1 25279:1 25288:1 25297:2 25318:1 25335:1 25361:1 25404:2 25439:1 25444:1 25445:2 25459:1 25465:2 25480:1 25487:1 25490:1 25492:1 25499:4 25521:1 25532:1 25563:3 25598:1 25613:1 25652:1 25655:1 25660:2 25674:2 25680:1 25691:1 25699:1 25715:1 25742:1 25745:1 25759:2 25760:3 25761:1 25766:1 25773:2 25775:1 25778:2 25790:1 25792:1 25799:1 25801:5 25813:1 25815:1 25817:1 25828:2 25832:2 25836:2 25840:1 25845:1 25847:5 25851:1 25860:1 25867:3 25870:1 25883:3 25884:1 25886:1 25906:1 25922:1 25924:1 25941:1 25949:1 25963:1 25969:2 25971:4 25977:4 26008:4 26021:1 26023:1 26034:1 26045:1 26051:1 26052:1 26064:1 26081:1 26083:2 26114:1 26120:1 26126:1 26131:1 26146:1 26158:1 26162:1 26164:1 26172:1 26173:2 26179:1 26182:1 26196:3 26231:1 26234:1 26245:6 26249:1 26252:1 26257:1 26259:1 26263:2 26276:1 26308:5 26351:1 26401:1 26468:1 26488:2 26495:1 26497:1 26498:1 26499:1 26502:2 26504:3 26511:1 26515:1 26516:1 26525:1 26539:1 26552:1 26571:1 26576:1 26611:3 26620:2 26648:2 26653:2 26668:1 26699:1 26715:1 26721:3 26722:1 26727:1 26728:2 26758:1 26760:1 26763:4 26767:2 26780:1 26784:1 26806:1 26813:1 26819:1 26825:1 26836:1 26844:1 26866:1 26868:3 26876:1 26878:1 26892:1 26901:2 26903:1 26919:1 26940:2 26943:2 26961:1 26965:1 26966:3 26973:3 26974:3 26975:1 26978:1 27022:5 27025:1
1 12:1 34:1 43:1 50:1 55:1 60:1 90:1 108:1 124:1 137:1 138:3 147:1 152:2 153:1 159:1 165:1 168:3 178:5 189:1 194:1 221:1 231:1 236:7 248:1 255:3 262:1 277:2 301:1 312:4 314:3 318:3 326:3 333:1 337:2 356:2 363:1 375:1 392:5 394:3 403:1 451:1 480:2 509:1 518:1 522:2 538:1 548:3 554:1 565:1 571:1 573:2 575:1 580:1 588:2 656:1 665:1 698:1 708:2 728:1 730:2 731:1 738:1 750:1 776:5 779:1 782:1 786:1 787:4 798:1 814:13 815:4 823:3 841:3 848:1 853:1 854:4 856:2 857:7 859:1 861:1 863:2 877:2 895:3 898:4 909:1 943:2 951:1 964:1 994:1 1011:1 1028:1 1029:1 1053:2 1054:1 1057:1 1100:3 1101:2 1105:1 1107:1 1111:2 1118:1 1119:1 1132:1 1139:1 1141:1 1145:2 1156:1 1161:2 1178:1 1184:2 1189:1 1214:1 1215:1 1230:1 1243:1 1247:1 1249:1 1253:1 1256:1 1264:1 1275:1 1293:1 1296:1 1300:1 1301:2 1303:1 1318:1 1319:2 1332:1 1334:1 1340:2 1346:1 1352:1 1361:1 1367:1 1371:2 1385:1 1406:1 1411:4 1417:7 1420:2 1429:1 1450:2 1458:1 1461:1 1465:1 1467:1 1476:1 1480:1 1485:2 1498:2 1508:1 1511:1 1513:1 1517:1 1526:1 1529:2 1540:1 1545:1 1549:1 1556:1 1560:1 1564:1 1570:1 1580:1 1595:2 1598:1 1614:1 1615:5 1621:1 1626:1 1632:1 1636:1 1639:2 1642:1 1643:2 1645:1 1651:2 1653:6 1660:1 1676:4 1678:2 1692:1 1702:1 1704:1 1710:2 1713:2 1715:4 1717:1 1718:1 1721:1 1731:1 1742:1 1744:1 1751:1 1757:2 1763:2 1764:1 1765:1 1778:2 1782:1 1787:1 1821:1 1825:6 1830:1 1836:1 1840:1 1845:2 1851:1 1854:1 1859:1 1862:2 1873:1 1877:1 1884:1 1902:1 1905:1 1920:2 1921:1 1923:1 1924:1 1926:2 1929:1 1950:1 1966:9 1970:1 1975:1 1979:1 1984:1 1999:1 2006:2 2025:2 2038:3 2040:1 2052:1 2053:1 2056:1 2061:2 2078:2 2079:2 2083:2 2084:4 2087:1 2089:1 2090:2 2095:2 2096:2 2097:1 2098:1 2099:4 2103:1 2105:4 2107:3 2109:5 2111:7 2113:1 2123:1 2131:1 2146:1 2149:1 2152:1 2155:3 2158:1 2162:1 2170:1 2172:1 2179:1 2190:1 2191:1 2200:1 2208:1 2210:1 2243:1 2247:1 2262:1 2278:1 2280:1 2287:1 2291:1 2297:1 2306:3 2316:1 2317:1 2325:1 2330:1 2334:1 2345:1 2347:1 2353:3 2356:2 2358:1 2361:6 2365:1 2366:1 2367:1 2379:1 2382:1 2397:1 2408:4 2410:1 2416:1 2430:2 2436:1 2437:1 2438:1 2447:6 2452:1 2458:2 2460:5 2465:4 2467:1 2474:2 2475:1 2481:1 2483:2 2485:1 2490:3 2492:2 2503:2 2515:1 2516:2 2520:3 2524:1 2557:1 2561:1 2562:2 2563:2 2575:3 2577:1 2579:1 2583:4 2590:2 2595:1 2614:1 2619:1 2639:2 2656:3 2660:1 2664:1 2667:13 2689:2 2690:1 2694:1 2695:1 2697:1 2706:2 2711:2 2731:15 2733:1 2756:2 2758:3 2773:1 2783:1 2814:1 2822:1 2826:1 2840:1 2841:5 2852:3 2856:1 2860:1 2879:1 2889:1 2902:1 2904:1 2908:1 2915:2 2923:1 2938:2 2956:3 2968:1 2991:1 2992:2 3026:1 3027:2 3028:1 3031:1 3034:1 3048:6 3103:1 3137:1 3147:2 3152:1 3192:1 3193:1 3194:1 3203:1 3209:1 3210:1 3213:1 3230:1 3252:1 3268:1 3286:2 3291:1 3309:1 3314:1 3315:12 3318:1 3325:1 3328:2 3330:2 3331:2 3332:1 3346:1 3350:1 3352:1 3358:1 3394:1 3399:1 3400:1 3406:1 3407:1 3410:3 3414:2 3423:1 3446:1 3459:1 3470:1 3473:1 3480:2 3483:1 3486:2 3488:1 3494:1 3506:1 3510:1 3513:2 3520:1 3523:1 3540:2 3542:1 3554:1 3560:3 3575:1 3576:1 3581:4 3583:1 3587:2 3591:2 3600:2 3610:2 3611:2 3629:1 3631:2 3646:1 3650:1 3652:2 3660:1 3683:1 3691:6 3692:3 3698:2 3730:1 3733:2 3737:1 3742:1 3756:1 3759:1 3760:2 3779:1 3787:2 3790:1 3794:1 3813:2 3828:2 3838:1 3845:3 3848:1 3849:1 3853:2 3859:1 3863:2 3875:1 3882:1 3888:1 3898:1 3912:1 3917:1 3937:1 3952:7 3957:1 3977:3 3984:1 3993:1 4003:1 4005:2 4018:2 4032:2 4038:1 4057:1 4062:1 4064:2 4084:3 4097:1 4107:1 4116:1 4118:1 4125:1 4140:2 4160:1 4164:1 4167:1 4172:1 4173:3 4175:1 4189:1 4201:1 4217:1 4218:1 4226:1 4234:5 4246:1 4249:1 4275:4 4284:2 4294:1 4302:3 4307:1 4319:4 4344:2 4361:1 4365:2 4369:3 4383:3 4386:1 4394:1 4403:1 4422:2 4431:1 4445:1 4467:1 4477:1 4488:12 4490:1 4499:1 4501:1 4502:1 4516:1 4535:1 4546:1 4554:1 4608:2 4625:1 4629:4 4631:5 4632:3 4634:1 4637:1 4638:2 4639:1 4642:1 4643:1 4645:6 4646:4 4650:1 4651:2 4652:6 4658:2 4659:3 4663:1 4674:1 4701:1 4718:1 4737:2 4744:1 4762:1 4767:1 4776:1 4801:1 4834:1 4842:1 4866:1 4877:1 4887:2 4911:1 4916:1 4941:2 4945:2 4955:1 4985:1 5006:3 5018:1 5037:1 5050:1 5055:1 5064:2 5075:1 5081:1 5088:1 5094:1 5101:1 5121:1 5130:1 5153:1 5156:1 5197:2 5207:1 5212:2 5216:1 5230:5 5231:1 5234:2 5236:1 5239:2 5240:1 5255:1 5256:1 5281:3 5292:2 5293:1 5296:1 5309:6 5314:1 5315:1 5330:2 5336:1 5398:1 5416:1 5420:1 5422:1 5440:1 5444:1 5445:1 5446:1 5453:2 5456:1 5467:1 5479:1 5503:1 5510:2 5521:2 5535:2 5538:1 5565:6 5567:1 5568:1 5575:1 5576:2 5585:1 5586:1 5588:1 5591:1 5620:1 5623:1 5624:1 5629:1 5632:1 5634:1 5639:1 5641:1 5642:1 5643:1 5647:12 5680:3 5686:1 5703:1 5715:1 5725:3 5735:1 5751:6 5756:1 5761:1 5763:1 5801:1 5805:1 5828:1 5834:1 5836:1 5838:1 5844:2 5845:3 5849:1 5850:1 5852:2 5859:2 5860:3 5861:2 5872:1 5897:1 5904:1 5938:1 5954:1 5987:1 5991:4 5992:2 6006:1 6047:1 6055:1 6066:1 6082:1 6092:1 6115:1 6129:2 6137:2 6146:1 6152:1 6162:1 6210:1 6223:1 6233:2 6235:1 6238:1 6242:1 6246:1 6254:7 6262:2 6265:2 6267:1 6273:1 6275:1 6279:1 6287:2 6300:1 6307:1 6310:1 6340:1 6344:1 6345:3 6357:2 6361:1 6366:2 6385:1 6389:1 6394:1 6398:1 6401:2 6430:1 6449:1 6453:1 6460:1 6465:1 6468:1 6469:1 6477:1 6486:1 6490:6 6498:2 6516:1 6524:1 6528:1 6534:1 6537:2 6538:2 6545:1 6549:3 6550:1 6552:1 6557:5 6560:1 6564:1 6587:1 6588:1 6590:1 6599:1 6602:1 6604:1 6621:1 6626:4 6631:3 6641:1 6654:1 6658:1 6672:2 6677:1 6679:1 6686:1 6703:1 6705:1 6712:1 6721:1 6728:1 6742:1 6797:1 6800:1 6806:1 6810:2 6846:1 6857:1 6859:2 6860:3 6864:2 6870:1 6876:3 6881:1 6894:4 6895:1 6898:2 6912:1 6913:3 6922:1 6935:1 6943:2 6946:1 6951:1 6959:1 6962:1 6964:1 6969:1 6980:1 6981:1 6989:1 6997:1 7016:1 7027:1 7052:3 7067:3 7068:6 7081:2 7086:1 7090:4 7092:2 7093:3 7109:1 7116:4 7117:2 7121:1 7136:40 7137:2 7140:2 7147:1 7155:7 7156:4 7162:2 7194:1 7201:1 7202:1 7211:1 7222:1 7224:1 7229:3 7230:2 7235:1 7242:1 7244:1 7256:2 7264:1 7276:1 7294:2 7300:1 7305:1 7326:1 7352:1 7355:1 7356:3 7385:1 7389:1 7390:1 7391:1 7402:2 7461:1 7477:1 7489:1 7507:1 7508:1 7517:1 7520:1 7523:1 7547:1 7556:1 7558:1 7559:2 7568:1 7575:1 7576:1 7580:2 7592:1 7593:1 7609:20 7618:1 7619:1 7637:3 7640:2 7642:1 7644:2 7696:3 7698:1 7700:1 7706:1 7734:1 7744:2 7748:2 7751:1 7756:1 7771:1 7777:1 7778:4 7784:3 7790:1 7812:2 7814:1 7820:1 7825:1 7836:1 7840:1 7850:1 7857:1 7858:1 7876:1 7877:1 7886:2 7889:1 7890:1 7940:1 7944:1 7945:1 7950:1 7952:1 7957:1 7976:1 7978:1 7989:5 8005:2 8008:3 8023:1 8034:1 8043:1 8049:2 8052:1 8054:1 8069:1 8073:1 8085:2 8113:1 8124:1 8153:1 8154:1 8163:1 8164:1 8171:1 8197:1 8199:1 8215:1 8228:1 8247:1 8250:1 8253:1 8254:1 8258:3 8282:2 8289:1 8295:2 8306:1 8311:1 8331:1 8332:1 8345:1 8350:3 8351:1 8356:1 8358:1 8363:1 8370:4 8378:1 8387:1 8389:1 8407:4 8423:1 8426:1 8437:1 8445:8 8446:5 8460:2 8461:1 8501:1 8515:1 8521:1 8525:2 8541:1 8544:1 8550:2 8552:2 8553:3 8555:2 8567:1 8578:1 8584:1 8600:1 8612:1 8620:2 8622:1 8632:1 8635:5 8637:1 8656:3 8658:2 8664:1 8674:4 8698:1 8699:1 8728:1 8735:1 8741:1 8756:3 8765:3 8771:1 8782:1 8786:1 8793:1 8820:1 8833:1 8838:1 8846:1 8853:7 8856:2 8885:3 8894:1 8895:1 8904:3 8908:1 8926:1 8947:1 8953:1 8954:3 8956:3 8958:2 8964:1 8981:1 8987:1 8990:1 9020:1 9022:1 9031:1 9041:1 9067:2 9073:1 9077:1 9090:1 9101:2 9113:1 9124:1 9131:1 9132:1 9144:1 9155:1 9172:1 9173:1 9178:1 9179:1 9191:1 9196:1 9216:1 9221:1 9222:1 9224:1 9230:5 9243:3 9249:4 9251:2 9263:1 9281:2 9300:2 9301:1 9332:1 9337:2 9348:1 9358:1 9361:3 9364:1 9388:1 9391:1 9396:12 9398:2 9402:2 9406:1 9424:2 9425:1 9434:1 9439:1 9450:1 9469:1 9488:1 9491:2 9493:1 9524:1 9534:1 9536:1 9537:1 9540:1 9542:4 9550:1 9552:1 9555:2 9588:1 9601:4 9608:1 9610:1 9612:1 9617:1 9620:2 9626:1 9632:1 9635:1 9642:4 9660:1 9681:1 9691:1 9695:1 9696:1 9703:1 9708:1 9710:1 9713:2 9718:1 9725:2 9732:1 9750:2 9764:1 9766:1 9769:1 9775:5 9778:2 9791:2 9795:3 9799:1 9802:1 9812:1 9820:1 9834:2 9848:4 9849:2 9866:1 9868:1 9869:1 9878:3 9899:1 9916:1 9920:1 9926:3 9936:1 9946:5 9964:1 9972:1 9980:1 9982:1 9993:2 10030:1 10096:1 10102:1 10118:1 10120:1 10136:1 10137:2 10141:2 10144:1 10145:2 10149:1 10152:1 10156:1 10157:5 10158:5 10159:1 10168:1 10174:2 10177:2 10181:1 10183:3 10188:1 10189:1 10195:1 10201:3 10203:1 10213:1 10226:2 10234:1 10255:1 10257:1 10259:2 10294:1 10297:1 10312:1 10321:1 10323:1 10326:1 10341:1 10385:1 10392:1 10412:1 10425:1 10426:2 10445:1 10463:1 10474:1 10477:1 10484:2 10500:3 10503:2 10507:1 10518:1 10523:2 10525:1 10526:1 10528:2 10537:3 10539:1 10540:1 10541:2 10550:1 10556:3 10559:2 10572:1 10587:14 10588:1 10611:1 10621:1 10625:4 10632:1 10635:2 10636:2 10648:1 10673:1 10675:2 10682:2 10683:1 10690:1 10693:2 10695:2 10696:1 10706:1 10724:1 10738:1 10766:1 10783:1 10796:1 10803:3 10804:1 10805:1 10808:1 10814:1 10821:1 10822:2 10826:1 10827:2 10828:1 10830:1 10840:1 10841:1 10851:1 10860:1 10863:1 10864:1 10866:1 10870:2 10874:3 10875:1 10880:2 10898:1 10921:1 10934:2 10938:1 10972:1 10975:1 10983:1 10984:1 10998:1 11016:1 11017:1 11023:5 11032:1 11043:2 11046:1 11058:1 11063:1 11071:1 11076:2 11081:1 11100:2 11127:1 11129:1 11150:1 11170:2 11175:1 11189:1 11195:1 11201:2 11205:1 11219:1 11236:1 11244:1 11246:1 11251:5 11252:1 11253:2 11255:1 11256:2 11267:1 11273:2 11279:1 11283:1 11285:1 11290:1 11335:1 11338:2 11339:1 11357:1 11368:1 11376:1 11388:1 11393:1 11407:1 11410:1 11413:1 11439:1 11476:3 11494:2 11507:1 11520:1 11527:1 11539:1 11550:1 11552:2 11553:1 11568:1 11570:3 11579:1 11593:1 11606:1 11647:1 11658:1 11663:1 11665:1 11666:2 11674:1 11705:11 11710:3 11719:1 11723:2 11728:1 11739:1 11746:1 11747:2 11753:2 11770:1 11775:1 11779:1 11780:1 11786:1 11792:2 11794:1 11798:1 11800:1 11829:1 11850:1 11858:1 11863:1 11886:1 11889:1 11890:1 11903:1 11923:1 11924:1 11930:2 11932:1 11944:1 11946:1 11963:1 11977:1 11982:3 11994:1 12041:1 12060:1 12078:1 12082:1 12083:1 12085:2 12090:4 12101:1 12106:2 12115:2 12122:1 12138:6 12157:1 12161:2 12186:1 12193:4 12194:1 12221:1 12223:1 12224:1 12225:1 12233:5 12236:1 12242:2 12247:1 12260:1 12264:1 12272:1 12273:1 12283:1 12289:1 12290:1 12301:14 12306:1 12308:1 12311:1 12342:2 12343:1 12350:2 12366:1 12371:1 12384:1 12395:1 12397:1 12421:3 12441:1 12446:6 12449:1 12465:1 12475:1 12478:1 12499:2 12515:1 12521:1 12525:1 12533:2 12535:1 12537:1 12544:1 12549:1 12551:1 12558:6 12559:1 12561:1 12562:1 12563:1 12564:2 12565:1 12569:7 12570:2 12590:1 12591:1 12593:1 12595:1 12620:1 12643:1 12675:1 12685:1 12686:1 12706:1 12719:3 12751:1 12756:1 12758:1 12760:1 12767:1 12770:1 12773:2 12774:1 12778:1 12790:1 12794:1 12814:2 12820:1 12821:1 12833:1 12836:7 12857:2 12861:1 12867:1 12890:1 12902:1 12903:1 12909:1 12913:1 12923:1 12929:1 12931:1 12934:1 12957:1 12983:1 12984:1 12997:1 13004:1 13010:1 13017:1 13052:1 13063:2 13077:4 13091:1 13104:1 13123:1 13143:1 13175:1 13199:1 13200:1 13204:3 13205:3 13212:1 13222:2 13223:1 13225:1 13229:2 13230:1 13250:1 13256:1 13265:2 13294:1 13305:1 13327:2 13334:1 13337:1 13349:1 13355:1 13361:2 13367:1 13375:3 13380:2 13428:1 13430:2 13433:1 13476:2 13477:1 13484:1 13506:1 13513:1 13517:1 13540:3 13552:1 13555:1 13558:2 13587:1 13589:1 13595:1 13643:2 13689:1 13693:2 13696:1 13712:1 13734:1 13762:1 13774:1 13776:3 13781:1 13793:1 13794:1 13801:1 13804:1 13806:1 13829:1 13891:1 13894:1 13900:2 13922:1 13928:1 13974:1 13995:2 14004:1 14010:1 14027:1 14032:1 14034:1 14035:2 14047:1 14064:2 14071:2 14075:1 14096:1 14098:1 14113:2 14130:2 14134:1 14156:1 14168:2 14184:1 14189:1 14211:1 14217:1 14225:1 14229:3 14244:3 14252:1 14263:2 14266:1 14279:2 14299:1 14302:1 14311:1 14328:1 14332:1 14335:2 14377:1 14391:1 14392:1 14403:2 14413:1 14417:4 14420:1 14424:1 14426:1 14432:1 14445:3 14446:1 14450:1 14453:1 14462:1 14465:1 14475:1 14491:2 14497:2 14532:2 14535:1 14539:1 14550:3 14559:1 14570:1 14572:3 14587:1 14600:2 14648:1 14667:1 14676:1 14683:1 14687:13 14690:1 14704:1 14709:3 14712:1 14738:3 14772:1 14783:1 14789:2 14796:2 14817:2 14821:1 14832:2 14845:1 14876:1 14883:1 14890:1 14891:1 14892:1 14902:2 14903:1 14928:1 14929:1 14931:1 14946:1 14950:1 14954:4 14955:2 14956:2 14957:5 14958:1 14959:1 14963:2 14965:1 14967:2 14968:3 14972:1 14973:1 14975:1 14979:1 14987:1 15024:1 15037:1 15060:1 15083:1 15087:1 15088:1 15109:2 15114:1 15117:1 15119:2 15120:1 15140:1 15162:1 15169:1 15178:1 15192:1 15198:1 15217:1 15240:1 15250:1 15252:1 15254:1 15262:2 15272:1 15274:2 15281:2 15282:1 15290:1 15294:5 15299:1 15302:2 15308:1 15316:1 15321:2 15325:1 15329:2 15334:1 15342:3 15344:2 15353:2 15359:1 15367:1 15372:1 15402:1 15407:10 15408:1 15422:1 15426:1 15431:1 15432:4 15437:1 15476:1 15490:1 15491:1 15497:2 15499:1 15507:1 15512:3 15524:1 15525:1 15534:1 15538:1 15541:2 15575:2 15596:5 15603:1 15617:2 15619:1 15622:1 15646:1 15661:2 15667:1 15688:1 15703:2 15705:3 15719:1 15720:1 15722:1 15731:1 15765:1 15768:1 15790:1 15799:1 15808:2 15814:1 15821:1 15828:1 15845:1 15858:2 15862:1 15864:1 15873:1 15886:1 15889:1 15909:1 15930:1 15938:1 15966:1 15979:1 15982:1 16000:1 16005:1 16021:2 16027:1 16036:1 16037:3 16041:1 16047:1 16054:3 16059:2 16060:2 16064:2 16070:1 16071:7 16109:1 16111:1 16112:1 16116:1 16117:1 16121:1 16128:1 16139:1 16140:1 16156:1 16176:1 16189:1 16203:1 16204:1 16222:3 16226:1 16236:1 16244:2 16256:1 16257:1 16261:1 16276:1 16279:1 16311:1 16312:1 16313:1 16339:1 16343:1 16344:1 16347:2 16379:1 16401:1 16405:1 16426:2 16433:1 16437:1 16439:1 16450:1 16452:1 16466:1 16487:1 16514:1 16540:1 16542:1 16551:1 16570:2 16651:2 16657:2 16658:1 16664:1 16674:1 16680:1 16687:1 16703:1 16721:1 16727:1 16758:1 16770:1 16771:1 16787:1 16791:3 16795:1 16805:1 16848:10 16880:1 16906:1 16932:1 16954:13 16963:3 16964:1 16977:5 16990:1 16997:1 17001:2 17012:1 17025:1 17048:4 17058:2 17068:2 17084:1 17085:1 17087:1 17107:1 17112:2 17125:2 17126:3 17137:2123 17147:1 17151:1 17161:1 17162:1 17188:1 17197:1 17200:1 17201:1 17220:2 17251:1 17262:1 17263:1 17282:1 17296:1 17307:1 17311:1 17314:1 17317:2 17321:4 17322:2 17339:1 17341:1 17351:1 17359:1 17375:1 17386:1 17406:1 17407:1 17448:1 17450:1 17453:2 17459:1 17494:1 17503:3 17521:1 17534:2 17549:1 17551:1 17564:2 17566:1 17573:1 17591:1 17603:2 17608:1 17616:1 17627:1 17636:1 17642:2 17643:1 17646:2 17655:1 17661:1 17670:1 17672:1 17691:2 17692:2 17708:2 17712:1 17716:1 17728:2 17752:2 17753:1 17761:1 17770:1 17771:2 17777:7 17787:1 17801:1 17803:1 17818:1 17823:2 17824:1 17825:1 17833:1 17846:5 17860:1 17862:1 17891:1 17900:4 17905:1 17907:2 17912:1 17914:2 17929:4 17938:1 17942:1 17956:1 17961:3 17968:2 17970:1 17975:2 18006:3 18009:1 18017:1 18031:1 18034:1 18038:1 18039:2 18046:1 18047:1 18050:1 18077:1 18078:1 18079:1 18080:1 18083:1 18088:1 18117:1 18130:2 18144:1 18145:2 18146:1 18147:1 18152:1 18153:1 18158:1 18182:1 18183:1 18185:1 18187:1 18196:1 18203:1 18214:1 18227:1 18229:1 18237:1 18238:1 18249:1 18252:1 18276:1 18279:1 18282:4 18287:1 18288:3 18289:1 18335:1 18354:1 18360:1 18363:1 18368:2 18369:1 18371:2 18388:1 18389:1 18399:2 18404:1 18405:2 18407:2 18409:1 18421:4 18430:2 18449:1 18458:1 18460:1 18462:1 18465:1 18466:4 18494:1 18495:1 18504:1 18505:1 18507:1 18510:1 18526:1 18531:2 18548:1 18552:1 18553:1 18569:1 18577:3 18578:15 18579:2 18586:1 18592:4 18596:1 18612:1 18643:1 18652:1 18663:1 18672:1 18678:1 18683:1 18695:1 18697:1 18701:1 18705:1 18726:1 18738:1 18768:4 18787:1 18789:2 18802:2 18807:1 18817:2 18828:1 18830:1 18840:2 18850:1 18865:6 18871:2 18878:1 18886:1 18916:1 18917:1 18927:1 18937:1 18968:1 18973:3 18987:3 18999:1 19002:1 19006:1 19010:1 19011:1 19020:1 19023:2 19051:2 19057:3 19063:2 19066:2 19073:2 19078:1 19080:1 19081:1 19089:2 19116:4 19126:2 19149:2 19153:1 19162:1 19178:2 19183:1 19190:2 19198:5 19202:1 19207:1 19213:1 19215:2 19227:3 19258:2 19264:1 19277:1 19296:1 19297:1 19298:1 19302:1 19304:1 19312:2 19319:2 19321:2 19327:1 19331:2 19332:1 19337:2 19353:1 19358:2 19381:2 19392:1 19393:1 19401:1 19402:1 19403:4 19420:1 19427:2 19435:1 19440:1 19441:1 19446:2 19447:1 19450:1 19460:1 19463:1 19480:1 19481:1 19486:1 19510:1 19517:1 19519:1 19524:2 19525:2 19538:1 19550:1 19618:1 19652:2 19656:1 19664:2 19665:2 19667:1 19669:1 19673:1 19674:1 19687:1 19694:2 19699:3 19705:1 19714:1 19723:1 19740:1 19746:1 19750:1 19768:1 19769:1 19787:2 19789:1 19790:1 19791:1 19794:1 19796:2 19799:1 19800:1 19811:1 19818:1 19825:1 19830:2 19833:1 19838:2 19841:1 19851:1 19853:2 19874:10 19886:1 19887:2 19892:2 19902:1 19916:1 19929:1 19943:1 19948:1 19952:1 19955:1 20000:2 20010:1 20019:2 20024:1 20026:1 20030:1 20034:3 20036:2 20037:1 20046:2 20054:1 20056:1 20059:1 20082:1 20083:1 20085:2 20087:3 20088:2 20111:1 20114:1 20151:1 20171:3 20174:1 20176:3 20178:2 20179:3 20181:1 20182:1 20186:1 20189:2 20193:1 20194:2 20205:5 20213:1 20218:1 20223:1 20236:1 20244:2 20252:2 20255:2 20269:1 20315:2 20317:2 20324:1 20329:1 20338:1 20344:1 20364:1 20365:2 20368:1 20374:1 20375:1 20377:1 20383:1 20392:1 20395:1 20396:1 20405:1 20409:1 20421:1 20423:1 20425:5 20431:1 20440:1 20441:3 20446:1 20447:3 20455:1 20463:1 20484:2 20487:1 20490:1 20491:1 20492:4 20498:2 20503:1 20512:2 20513:8 20519:1 20525:1 20526:1 20531:1 20547:1 20549:1 20553:1 20575:7 20576:1 20589:1 20609:1 20624:1 20631:3 20632:1 20640:1 20649:1 20664:1 20665:1 20687:1 20690:2 20717:1 20723:1 20726:4 20728:1 20735:3 20740:3 20749:1 20753:1 20757:1 20759:1 20773:1 20775:3 20787:1 20794:1 20795:2 20800:3 20809:1 20815:1 20817:1 20827:1 20834:1 20846:1 20851:1 20863:1 20866:1 20890:1 20895:1 20902:1 20903:1 20904:1 20906:1 20914:1 20921:2 20935:7 20936:2 20941:1 20952:2 20957:2 20962:4 20970:3 20982:2 20996:1 21021:1 21032:1 21033:1 21037:2 21040:2 21055:1 21056:1 21080:1 21083:1 21084:1 21085:1 21086:1 21101:1 21104:1 21121:1 21128:2 21131:1 21138:2 21139:1 21142:1 21175:3 21204:3 21215:1 21253:1 21269:1 21294:3 21297:2 21304:5 21314:2 21322:1 21328:1 21330:3 21341:2 21344:2 21345:2 21358:1 21368:4 21406:1 21413:1 21436:1 21446:1 21458:1 21463:1 21472:2 21484:1 21502:1 21505:1 21510:2 21527:2 21534:1 21537:2 21548:1 21549:1 21559:1 21566:1 21575:1 21576:2 21579:2 21584:3 21590:1 21592:1 21605:1 21624:3 21625:2 21628:2 21641:1 21644:1 21650:1 21695:1 21696:4 21698:1 21701:1 21706:1 21714:1 21715:2 21716:1 21718:1 21719:1 21722:1 21749:1 21766:1 21769:1 21779:1 21789:1 21845:2 21853:1 21878:2 21884:1 21941:1 21943:2 21951:1 21953:1 21964:1 21979:1 21996:1 21998:1 22008:1 22017:1 22047:1 22066:1 22084:1 22090:1 22101:2 22113:1 22136:2 22140:1 22165:2 22176:3 22186:1 22213:7 22228:1 22233:1 22241:3 22259:1 22261:1 22267:1 22270:3 22279:1 22280:1 22287:1 22293:1 22317:3 22319:1 22340:2 22341:1 22345:1 22346:1 22381:1 22425:1 22426:1 22451:1 22454:1 22455:1 22461:1 22467:3 22469:2 22473:1 22476:1 22477:1 22479:2 22482:1 22483:1 22484:1 22494:1 22518:5 22535:1 22536:1 22539:1 22544:1 22551:1 22552:1 22555:1 22557:1 22582:8 22585:5 22587:1 22609:1 22611:2 22618:1 22619:1 22630:1 22635:1 22636:1 22639:1 22643:3 22651:2 22667:1 22670:1 22681:1 22756:1 22777:1 22781:1 22787:1 22794:1 22796:1 22800:2 22809:2 22813:1 22817:1 22822:2 22823:2 22826:1 22843:1 22845:1 22850:1 22858:2 22863:1 22866:1 22874:1 22890:1 22901:3 22913:2 22917:1 22918:1 22930:1 22932:1 22941:2 22946:1 22952:2 22957:1 22968:1 22974:1 23002:13 23003:2 23026:1 23032:1 23033:1 23036:1 23045:1 23066:1 23067:1 23074:2 23078:1 23085:1 23098:2 23101:1 23105:2 23110:1 23111:1 23131:1 23133:1 23139:1 23143:1 23145:1 23160:1 23166:1 23198:1 23220:10 23221:1 23235:1 23240:2 23241:1 23247:1 23253:1 23270:1 23276:1 23280:1 23285:6 23286:1 23308:1 23311:2 23314:1 23340:1 23353:2 23359:1 23365:1 23398:1 23407:1 23422:1 23426:2 23428:1 23437:2 23448:1 23452:1 23459:1 23473:1 23527:1 23528:1 23534:1 23538:1 23540:1 23560:1 23564:2 23569:3 23571:1 23577:1 23579:1 23594:1 23617:4 23629:1 23632:1 23636:1 23648:1 23650:6 23663:1 23677:1 23682:1 23688:2 23689:1 23698:1 23701:1 23715:1 23746:1 23769:1 23777:2 23821:1 23826:1 23838:1 23853:1 23860:1 23919:2 23928:1 23929:2 23945:1 23952:1 23953:1 23958:1 23971:1 23988:2 24023:4 24030:1 24035:1 24058:1 24065:1 24074:2 24075:1 24084:1 24094:13 24095:2 24105:1 24115:1 24124:1 24126:1 24151:2 24163:1 24165:1 24183:1 24186:1 24188:1 24199:1 24211:4 24215:3 24221:3 24224:2 24226:4 24228:1 24230:1 24245:1 24253:1 24300:1 24324:1 24337:1 24340:2 24350:1 24362:2 24370:2 24380:1 24384:1 24386:1 24387:1 24388:2 24415:6 24417:1 24418:1 24425:1 24426:1 24434:1 24439:1 24442:1 24447:1 24467:1 24470:1 24471:1 24483:1 24531:1 24537:2 24553:1 24561:1 24562:1 24569:2 24596:1 24621:1 24634:1 24635:1 24641:5 24652:1 24653:1 24677:1 24684:1 24689:1 24690:1 24703:1 24707:1 24711:2 24721:1 24744:1 24746:2 24747:2 24758:3 24769:1 24785:1 24788:1 24793:1 24797:2 24823:1 24838:2 24849:1 24851:1 24886:1 24895:2 24912:1 24915:3 24918:1 24921:1 24922:1 24931:1 24936:1 24938:2 24950:1 24956:1 24961:2 24972:2 24974:1 24977:1 24985:2 24986:1 24991:1 25000:1 25013:1 25016:1 25026:1 25028:1 25032:2 25037:1 25063:1 25077:5 25081:1 25084:2 25098:1 25099:1 25108:1 25126:1 25132:2 25137:1 25143:1 25148:1 25155:2 25163:1 25164:1 25172:2 25174:1 25181:1 25187:1 25193:1 25200:1 25201:1 25204:1 25205:1 25206:1 25210:1 25217:2 25219:1 25229:2 25238:2 25243:1 25247:1 25279:1 25288:1 25297:2 25318:1 25335:1 25358:1 25361:1 25404:2 25439:1 25444:1 25445:2 25459:1 25465:2 25480:1 25487:1 25490:1 25492:1 25499:5 25521:1 25532:1 25563:4 25598:1 25613:1 25652:1 25655:1 25660:2 25674:2 25680:1 25691:1 25699:1 25715:1 25742:1 25745:1 25759:2 25760:3 25761:1 25766:1 25773:2 25775:1 25778:2 25790:1 25792:1 25799:1 25801:5 25813:1 25815:1 25817:1 25828:2 25832:2 25836:2 25840:1 25845:1 25847:5 25851:1 25860:1 25867:3 25870:1 25883:3 25884:1 25886:2 25906:1 25922:1 25924:1 25941:1 25949:1 25963:1 25969:2 25971:4 25977:4 26008:4 26021:1 26023:1 26034:1 26045:1 26051:1 26052:1 26064:1 26081:1 26083:2 26092:1 26114:1 26120:1 26126:1 26131:1 26146:1 26158:1 26162:1 26164:1 26172:1 26173:2 26179:1 26182:1 26196:3 26231:1 26234:1 26245:7 26249:1 26252:1 26257:1 26259:1 26263:2 26276:1 26308:5 26351:1 26401:1 26468:1 26488:2 26495:1 26497:1 26498:2 26499:1 26502:2 26504:3 26511:1 26515:1 26516:1 26525:1 26539:1 26552:1 26571:1 26576:1 26611:3 26620:2 26648:2 26653:2 26668:1 26683:1 26699:1 26715:1 26721:3 26722:1 26727:1 26728:2 26758:1 26760:1 26763:4 26767:2 26780:1 26784:1 26806:1 26813:1 26819:1 26825:1 26836:1 26844:1 26866:1 26868:3 26876:1 26878:1 26892:1 26901:2 26903:1 26919:1 26940:2 26943:2 26961:1 26965:1 26966:3 26973:3 26974:3 26975:1 26978:1 27022:5 27025:1
1 12:1 34:1 43:1 50:1 55:1 60:1 90:1 108:1 124:1 137:1 138:3 147:1 152:2 153:1 159:1 165:1 168:3 178:5 189:1 194:1 221:1 231:1 236:7 248:1 255:3 262:1 277:2 301:1 312:4 314:3 318:3 326:3 333:1 337:2 356:2 363:1 375:1 392:5 394:5 403:1 451:1 480:2 509:1 518:1 522:2 538:1 548:3 554:1 565:1 571:1 573:2 575:1 580:1 588:2 656:1 665:1 698:1 708:2 728:1 730:2 731:1 738:1 750:1 776:5 779:1 782:1 786:1 787:4 798:1 814:14 815:4 823:3 841:3 848:1 853:1 854:4 856:2 857:7 859:1 861:2 863:2 877:2 895:4 898:4 909:1 943:2 951:1 964:1 994:1 1011:1 1028:1 1029:1 1044:1 1053:2 1054:1 1057:1 1100:3 1101:2 1105:1 1107:1 1111:2 1118:1 1119:1 1132:1 1139:1 1140:1 1141:1 1145:2 1156:1 1161:2 1178:1 1184:2 1189:1 1214:1 1215:1 1230:1 1243:1 1247:1 1249:1 1253:1 1256:1 1264:1 1275:1 1293:1 1296:1 1300:1 1301:2 1303:1 1318:1 1319:2 1332:1 1334:1 1340:3 1346:1 1352:1 1361:1 1367:1 1371:2 1385:1 1390:1 1406:1 1411:4 1417:7 1420:2 1429:1 1450:2 1458:1 1461:1 1465:1 1467:1 1476:1 1480:1 1485:2 1498:2 1508:1 1511:1 1513:1 1517:1 1526:1 1529:2 1540:1 1545:1 1549:1 1556:1 1560:1 1564:1 1570:1 1580:1 1595:2 1598:1 1614:1 1615:5 1621:1 1626:1 1632:1 1636:1 1639:2 1642:1 1643:2 1645:1 1651:2 1653:6 1660:1 1676:4 1678:2 1692:1 1702:1 1704:1 1710:2 1713:2 1715:4 1717:1 1718:1 1721:1 1731:1 1742:1 1744:1 1751:1 1757:2 1763:2 1764:1 1765:1 1778:2 1781:1 1782:1 1787:1 1821:1 1825:7 1830:1 1836:1 1840:1 1845:2 1851:1 1854:2 1859:1 1862:2 1873:1 1877:1 1884:1 1902:1 1905:1 1920:2 1921:1 1923:1 1924:1 1926:2 1929:1 1950:1 1966:10 1970:1 1975:1 1979:1 1984:1 1999:1 2006:2 2025:2 2038:3 2040:1 2052:1 2053:1 2056:1 2061:2 2078:2 2079:2 2083:2 2084:5 2087:1 2089:1 2090:2 2095:2 2096:2 2097:1 2098:1 2099:4 2103:1 2105:4 2107:3 2109:5 2111:7 2113:1 2123:1 2131:1 2146:1 2149:1 2152:1 2155:3 2158:1 2162:1 2170:1 2172:1 2179:1 2190:1 2191:1 2200:1 2208:1 2210:1 2243:1 2247:1 2262:1 2278:1 2280:1 2287:1 2291:1 2297:1 2306:3 2316:1 2317:1 2325:1 2330:1 2334:1 2345:1 2347:1 2353:3 2356:2 2358:1 2361:6 2365:1 2366:1 2367:1 2379:1 2382:1 2397:1 2408:4 2410:1 2416:1 2430:2 2436:1 2437:1 2438:1 2447:6 2452:1 2458:2 2460:7 2465:4 2467:1 2474:2 2475:1 2481:1 2483:2 2485:1 2490:3 2492:2 2503:2 2515:1 2516:2 2520:3 2524:1 2557:1 2561:1 2562:2 2563:2 2575:3 2577:1 2579:1 2583:4 2590:2 2595:1 2614:1 2619:1 2639:2 2656:3 2660:1 2664:1 2667:14 2689:2 2690:1 2694:1 2695:1 2697:1 2706:2 2711:2 2731:16 2733:1 2756:2 2758:3 2773:1 2783:1 2814:1 2822:1 2826:1 2840:1 2841:5 2852:3 2856:1 2860:1 2879:1 2889:1 2902:1 2904:1 2908:1 2915:2 2923:1 2938:2 2956:3 2968:1 2991:1 2992:2 3026:1 3027:2 3028:1 3031:1 3034:1 3048:6 3103:1 3137:1 3147:2 3152:1 3192:1 3193:1 3194:1 3203:1 3209:1 3210:1 3213:1 3230:1 3252:1 3268:1 3286:2 3291:1 3309:1 3314:1 3315:12 3318:1 3325:1 3328:2 3330:2 3331:2 3332:1 3346:1 3350:1 3352:1 3358:1 3359:1 3366:1 3394:1 3399:1 3400:1 3406:1 3407:1 3410:3 3414:2 3423:1 3446:1 3459:1 3470:1 3473:1 3480:2 3483:1 3486:2 3488:1 3494:1 3506:1 3510:1 3513:2 3520:1 3523:1 3540:2 3542:1 3554:1 3560:3 3575:1 3576:1 3581:4 3583:1 3587:2 3591:2 3600:2 3610:2 3611:2 3629:1 3631:2 3646:1 3650:1 3652:2 3660:1 3683:1 3691:6 3692:3 3698:2 3730:1 3733:2 3737:1 3742:1 3756:1 3759:1 3760:2 3779:1 3787:2 3790:1 3794:1 3813:2 3828:2 3838:1 3845:3 3848:1 3849:1 3853:2 3859:1 3863:2 3875:1 3882:1 3888:1 3898:1 3912:1 3917:1 3937:1 3952:7 3957:1 3977:3 3984:1 3993:1 4003:1 4005:2 4018:2 4032:2 4038:1 4057:1 4062:1 4064:2 4084:3 4097:1 4107:1 4116:1 4118:1 4125:1 4140:2 4160:1 4164:1 4167:1 4172:1 4173:3 4175:1 4189:1 4201:1 4217:3 4218:1 4226:1 4234:5 4246:1 4249:1 4275:4 4284:2 4294:1 4295:1 4302:3 4307:1 4319:4 4344:2 4361:1 4365:2 4369:3 4383:3 4386:1 4394:1 4403:1 4422:2 4431:1 4445:1 4467:1 4477:1 4488:13 4490:1 4499:1 4501:1 4502:1 4516:1 4527:1 4535:1 4546:1 4554:1 4608:2 4625:1 4629:4 4631:6 4632:3 4634:1 4637:2 4638:2 4639:1 4642:1 4643:1 4645:6 4646:4 4650:1 4651:2 4652:7 4658:2 4659:4 4663:1 4674:1 4677:1 4701:1 4718:1 4737:2 4744:1 4762:1 4767:1 4776:1 4801:1 4834:1 4842:1 4866:1 4877:1 4887:2 4911:1 4916:1 4941:2 4945:2 4955:1 4985:1 5006:3 5018:1 5037:1 5050:1 5055:1 5064:2 5075:1 5081:1 5088:1 5094:1 5101:1 5121:1 5130:1 5153:1 5156:1 5197:2 5207:1 5212:2 5216:1 5221:1 5230:5 5231:1 5234:2 5236:1 5239:2 5240:1 5255:1 5256:1 5281:3 5292:2 5293:1 5296:1 5309:6 5314:1 5315:1 5330:2 5336:1 5383:1 5398:1 5416:1 5420:1 5422:1 5440:1 5444:1 5445:1 5446:1 5453:2 5456:1 5467:1 5479:1 5503:1 5510:2 5521:2 5535:2 5538:1 5565:6 5567:1 5568:1 5575:1 5576:2 5585:1 5586:1 5588:1 5591:1 5620:1 5623:1 5624:1 5629:1 5632:1 5634:1 5639:1 5641:1 5642:1 5643:1 5647:12 5680:3 5686:1 5703:1 5715:1 5725:3 5735:1 5751:6 5756:1 5761:1 5763:1 5801:1 5805:1 5828:1 5834:1 5836:1 5838:1 5844:2 5845:3 5849:1 5850:1 5852:2 5859:2 5860:4 5861:3 5872:1 5897:1 5904:1 5938:1 5954:1 5987:1 5991:4 5992:2 6006:1 6047:1 6055:1 6066:1 6082:1 6092:1 6115:1 6129:2 6137:2 6146:1 6152:1 6162:1 6210:1 6223:1 6233:2 6235:1 6238:1 6242:1 6246:1 6254:7 6262:2 6265:2 6267:1 6273:1 6275:1 6279:1 6287:2 6300:1 6307:1 6310:1 6340:1 6344:1 6345:3 6357:2 6361:1 6366:2 6385:1 6389:1 6394:1 6398:1 6401:2 6430:1 6449:1 6453:1 6460:1 6465:1 6468:1 6469:1 6477:1 6486:1 6490:6 6498:2 6516:1 6524:1 6528:1 6534:1 6537:2 6538:2 6545:1 6549:4 6550:1 6552:1 6557:5 6560:1 6564:1 6587:1 6588:1 6590:1 6599:1 6602:1 6604:1 6621:1 6626:4 6631:3 6641:1 6654:1 6658:1 6672:2 6674:1 6677:1 6679:1 6686:1 6703:1 6705:1 6712:1 6721:1 6728:1 6742:1 6797:1 6800:1 6806:1 6810:2 6846:1 6857:1 6859:2 6860:4 6864:2 6870:1 6876:3 6881:1 6894:4 6895:1 6898:2 6912:1 6913:3 6922:1 6935:1 6943:2 6946:1 6951:1 6959:1 6962:1 6964:1 6969:1 6980:1 6981:1 6989:1 6997:1 7016:1 7027:1 7052:3 7067:3 7068:6 7081:2 7086:1 7090:4 7092:2 7093:3 7109:1 7116:4 7117:2 7121:1 7136:41 7137:2 7140:2 7147:1 7155:7 7156:4 7162:2 7194:1 7201:1 7202:1 7211:1 7222:1 7224:1 7229:3 7230:2 7235:1 7242:1 7244:1 7256:2 7264:3 7276:1 7294:2 7300:1 7305:1 7326:2 7352:1 7355:1 7356:3 7385:1 7389:1 7390:1 7391:1 7402:2 7446:1 7461:1 7477:1 7489:1 7507:1 7508:1 7517:1 7520:1 7523:1 7547:1 7556:1 7558:1 7559:2 7568:1 7575:1 7576:1 7580:2 7592:1 7593:1 7609:21 7618:1 7619:1 7637:3 7640:2 7642:1 7644:2 7696:4 7698:1 7700:1 7706:1 7734:1 7744:2 7748:2 7751:1 7756:1 7771:1 7777:1 7778:4 7784:3 7790:1 7812:2 7814:1 7820:1 7825:1 7836:1 7840:1 7850:1 7857:1 7858:1 7876:1 7877:1 7886:2 7889:1 7890:1 7940:1 7944:1 7945:1 7950:1 7952:1 7957:1 7976:1 7978:1 7989:5 8005:2 8008:3 8023:1 8034:1 8043:1 8049:2 8052:1 8054:1 8069:1 8073:1 8085:2 8113:1 8124:1 8153:1 8154:1 8163:1 8164:1 8171:1 8197:1 8199:1 8215:1 8228:1 8247:1 8250:1 8253:1 8254:1 8258:3 8282:2 8289:1 8295:2 8306:1 8311:1 8331:1 8332:1 8345:1 8350:5 8351:1 8356:1 8358:1 8363:1 8370:4 8378:1 8387:1 8389:1 8407:5 8423:1 8426:1 8437:1 8445:9 8446:5 8460:2 8461:1 8469:1 8501:3 8515:1 8521:1 8525:2 8541:1 8544:1 8550:2 8552:2 8553:3 8555:2 8567:1 8578:1 8584:1 8600:1 8612:1 8620:2 8622:1 8632:1 8635:5 8637:1 8656:3 8658:2 8664:1 8674:4 8698:1 8699:1 8706:1 8728:1 8735:1 8741:1 8756:3 8765:3 8771:1 8782:1 8786:1 8793:1 8820:1 8833:1 8838:1 8846:1 8853:7 8856:2 8885:3 8894:1 8895:1 8904:3 8908:1 8926:1 8947:1 8953:1 8954:3 8956:3 8958:2 8964:1 8981:1 8987:1 8990:1 9020:1 9022:1 9031:1 9041:1 9067:2 9073:1 9077:1 9090:1 9101:2 9113:1 9124:1 9131:1 9132:1 9144:1 9155:1 9172:1 9173:1 9178:1 9179:1 9191:1 9196:1 9216:1 9221:1 9222:1 9224:1 9230:5 9243:3 9249:4 9251:2 9263:1 9281:2 9300:3 9301:1 9332:1 9337:2 9348:1 9358:1 9361:3 9364:1 9388:1 9391:1 9396:12 9398:2 9402:2 9406:1 9424:2 9425:1 9434:1 9439:1 9450:1 9469:1 9488:1 9491:2 9493:1 9509:1 9524:1 9534:1 9536:1 9537:1 9540:1 9542:4 9550:1 9552:1 9555:2 9588:1 9601:4 9608:1 9610:1 9612:1 9617:1 9620:2 9626:1 9632:1 9635:1 9642:4 9660:1 9681:1 9691:1 9695:1 9696:1 9703:1 9708:1 9710:1 9713:2 9718:1 9725:2 9732:1 9750:2 9764:1 9766:1 9769:1 9775:7 9778:4 9791:2 9795:3 9799:1 9802:1 9812:2 9820:1 9834:2 9848:4 9849:2 9866:1 9868:1 9869:1 9878:3 9899:1 9916:1 9920:1 9926:3 9936:1 9946:5 9964:1 9972:1 9980:1 9982:1 9993:2 10030:1 10096:1 10102:1 10118:1 10120:1 10136:1 10137:2 10141:2 10144:1 10145:2 10149:1 10152:1 10156:1 10157:5 10158:5 10159:1 10168:1 10174:2 10177:2 10181:1 10183:3 10188:1 10189:1 10195:1 10201:3 10203:1 10208:1 10213:1 10226:2 10234:1 10255:1 10257:1 10259:2 10294:1 10297:1 10312:1 10321:1 10323:1 10326:1 10341:1 10385:1 10392:1 10412:1 10425:1 10426:2 10445:1 10463:1 10474:1 10477:1 10484:2 10500:3 10503:2 10507:1 10518:1 10523:2 10525:1 10526:1 10528:2 10537:3 10539:1 10540:1 10541:2 10550:1 10556:3 10559:2 10572:1 10587:14 10588:1 10611:1 10621:1 10625:4 10632:1 10635:2 10636:2 10648:1 10655:1 10673:1 10675:2 10682:2 10683:1 10690:1 10693:2 10695:2 10696:1 10706:1 10724:1 10738:1 10766:1 10783:1 10796:1 10803:3 10804:1 10805:1 10808:1 10814:1 10821:1 10822:3 10826:1 10827:2 10828:1 10830:1 10840:1 10841:1 10851:1 10860:1 10863:1 10864:1 10866:1 10870:2 10874:4 10875:1 10880:2 10898:1 10921:1 10934:2 10938:1 10947:1 10972:1 10975:1 10983:1 10984:1 10998:1 11016:1 11017:1 11023:5 11032:1 11043:2 11046:1 11058:1 11063:1 11071:1 11076:2 11081:1 11100:2 11127:1 11129:1 11150:1 11170:2 11175:1 11189:1 11195:1 11201:2 11205:1 11219:1 11236:1 11244:1 11246:1 11251:5 11252:1 11253:2 11255:1 11256:2 11267:1 11273:2 11279:1 11283:1 11285:1 11290:1 11335:1 11338:2 11339:1 11357:1 11368:1 11376:1 11388:1 11393:1 11407:1 11410:1 11413:1 11439:1 11476:3 11494:2 11507:1 11520:1 11527:1 11539:1 11550:1 11552:2 11553:1 11568:1 11570:3 11579:1 11593:1 11599:1 11606:1 11647:1 11658:1 11663:1 11665:1 11666:2 11674:1 11705:12 11710:3 11719:1 11723:2 11728:1 11739:1 11746:1 11747:2 11753:2 11770:1 11775:1 11779:1 11780:1 11786:1 11792:2 11794:1 11798:1 11800:1 11829:1 11845:1 11850:1 11858:2 11863:1 11886:1 11889:1 11890:1 11903:1 11923:1 11924:1 11930:2 11932:1 11944:1 11946:1 11963:1 11977:1 11982:3 11994:1 11996:1 12041:1 12042:1 12060:1 12078:1 12082:1 12083:1 12085:2 12090:4 12101:1 12106:2 12115:2 12122:1 12138:6 12157:1 12161:2 12186:1 12193:4 12194:1 12205:1 12221:1 12223:1 12224:1 12225:1 12233:5 12236:1 12242:2 12247:1 12260:1 12264:1 12272:1 12273:1 12279:2 12283:1 12289:1 12290:1 12301:15 12306:1 12308:1 12311:1 12342:2 12343:1 12350:2 12366:1 12371:1 12384:1 12394:1 12395:1 12397:1 12421:3 12441:1 12446:6 12449:1 12465:1 12475:1 12478:1 12499:2 12515:1 12521:1 12525:1 12533:2 12535:1 12537:1 12544:1 12549:1 12551:1 12558:6 12559:1 12561:1 12562:1 12563:1 12564:2 12565:1 12569:7 12570:2 12590:1 12591:1 12593:1 12595:1 12620:1 12643:1 12675:1 12685:1 12686:1 12706:1 12719:3 12751:1 12756:1 12758:1 12760:1 12767:1 12770:1 12773:2 12774:1 12778:1 12790:1 12794:1 12814:2 12820:1 12821:1 12833:1 12836:7 12857:2 12861:1 12867:1 12890:1 12902:1 12903:1 12909:1 12913:1 12923:1 12929:1 12931:1 12934:1 12957:1 12983:1 12984:1 12993:1 12997:1 13004:1 13010:1 13017:1 13052:1 13063:2 13077:4 13091:1 13104:1 13123:1 13143:1 13175:1 13199:1 13200:1 13204:3 13205:3 13212:1 13222:2 13223:1 13225:1 13229:2 13230:1 13250:1 13256:1 13265:2 13294:1 13305:1 13327:2 13334:1 13337:1 13349:1 13353:1 13355:1 13361:2 13367:1 13375:3 13380:2 13428:1 13430:2 13433:1 13444:1 13476:2 13477:1 13484:1 13506:1 13513:1 13517:1 13540:3 13552:1 13555:1 13558:2 13587:1 13589:1 13595:1 13643:2 13689:2 13693:2 13696:1 13712:1 13734:1 13762:1 13774:1 13776:3 13781:1 13793:1 13794:1 13801:1 13804:1 13806:1 13829:1 13891:1 13894:1 13900:2 13922:1 13928:1 13974:1 13995:2 14004:1 14010:1 14027:1 14032:1 14034:1 14035:2 14047:1 14064:2 14071:3 14075:1 14096:1 14098:1 14099:1 14113:2 14130:2 14134:1 14156:1 14168:2 14184:1 14189:1 14211:1 14217:1 14225:1 14229:4 14244:3 14252:1 14263:2 14266:1 14279:2 14299:1 14302:1 14311:1 14328:1 14332:1 14335:2 14377:1 14391:1 14392:1 14403:2 14409:1 14413:1 14417:4 14420:1 14424:1 14426:1 14432:1 14445:3 14446:1 14450:1 14453:1 14462:1 14465:1 14475:1 14491:2 14497:2 14532:2 14535:1 14539:1 14550:3 14559:1 14570:1 14572:3 14587:1 14600:2 14648:1 14667:1 14676:1 14683:1 14687:14 14690:1 14704:1 14709:3 14712:1 14738:3 14772:1 14783:1 14789:2 14796:2 14817:2 14821:1 14832:2 14845:1 14876:1 14883:1 14890:1 14891:1 14892:1 14902:2 14903:1 14928:1 14929:1 14931:3 14946:1 14950:1 14954:5 14955:2 14956:2 14957:5 14958:1 14959:1 14963:2 14965:1 14967:2 14968:3 14972:1 14973:1 14975:1 14979:1 14987:1 15024:1 15037:1 15060:1 15083:1 15087:1 15088:1 15109:2 15114:1 15117:1 15119:2 15120:1 15140:1 15162:1 15169:1 15170:1 15178:1 15192:1 15198:1 15217:1 15240:1 15250:1 15252:1 15254:1 15262:2 15272:1 15274:2 15281:2 15282:1 15290:1 15294:5 15299:1 15302:2 15308:1 15316:1 15321:2 15325:2 15329:2 15334:1 15342:3 15344:2 15353:2 15359:1 15367:1 15372:1 15402:1 15407:11 15408:1 15422:1 15426:1 15431:1 15432:4 15437:1 15472:1 15476:1 15490:1 15491:1 15497:2 15499:1 15507:1 15512:3 15524:1 15525:1 15534:1 15538:1 15541:2 15575:2 15596:5 15603:1 15617:2 15619:1 15622:1 15646:1 15661:2 15667:1 15688:1 15703:2 15705:3 15719:1 15720:1 15722:1 15731:1 15765:1 15768:1 15787:1 15790:1 15799:1 15808:2 15814:1 15821:1 15828:1 15845:2 15858:2 15862:1 15864:1 15873:1 15886:1 15889:1 15909:1 15930:1 15938:1 15966:1 15979:1 15982:1 16000:1 16005:1 16021:2 16027:1 16036:1 16037:3 16041:1 16047:1 16054:3 16059:2 16060:2 16064:2 16070:1 16071:8 16109:1 16111:2 16112:1 16116:1 16117:1 16121:1 16128:1 16133:1 16139:1 16140:1 16156:1 16176:1 16189:1 16203:1 16204:1 16222:3 16226:1 16236:1 16244:2 16256:1 16257:1 16261:1 16266:1 16276:1 16279:1 16311:1 16312:1 16313:1 16339:1 16343:1 16344:1 16347:2 16379:1 16401:1 16405:1 16426:2 16433:1 16437:1 16439:1 16450:1 16452:1 16466:1 16487:1 16514:1 16540:1 16542:1 16551:2 16570:2 16651:2 16657:2 16658:1 16664:1 16674:1 16680:1 16687:1 16703:1 16721:1 16727:1 16758:1 16770:1 16771:1 16787:1 16791:3 16795:1 16805:1 16838:1 16848:11 16880:1 16906:1 16932:1 16954:13 16963:3 16964:1 16975:1 16977:5 16990:1 16997:1 17001:2 17012:1 17025:2 17048:4 17058:2 17068:2 17084:1 17085:1 17087:1 17107:1 17112:2 17125:2 17126:3 17137:2165 17147:1 17151:1 17161:1 17162:1 17188:1 17197:1 17200:1 17201:1 17220:2 17251:1 17262:1 17263:1 17282:1 17296:1 17307:1 17311:1 17314:1 17317:2 17321:5 17322:2 17339:1 17341:1 17351:1 17359:1 17375:1 17386:1 17406:1 17407:1 17448:1 17450:3 17453:2 17459:1 17494:1 17503:3 17521:1 17534:2 17549:1 17551:1 17564:2 17566:1 17573:1 17591:1 17603:2 17608:1 17616:1 17627:1 17636:1 17642:2 17643:1 17646:2 17655:1 17661:1 17670:1 17672:1 17691:2 17692:2 17708:2 17712:1 17716:1 17728:2 17752:2 17753:1 17761:1 17770:1 17771:2 17777:8 17787:1 17801:1 17803:1 17818:1 17823:2 17824:1 17825:1 17833:1 17846:5 17860:1 17862:1 17891:1 17900:4 17905:1 17907:2 17912:1 17914:2 17929:4 17938:1 17942:1 17956:1 17961:3 17968:2 17970:1 17975:2 18006:3 18009:1 18017:1 18031:1 18034:1 18038:2 18039:2 18046:1 18047:1 18050:1 18077:1 18078:1 18079:1 18080:1 18083:1 18088:1 18117:1 18130:2 18144:1 18145:2 18146:1 18147:1 18152:1 18153:1 18158:1 18182:1 18183:1 18185:1 18187:1 18196:1 18203:1 18214:1 18227:1 18229:1 18237:1 18238:1 18249:1 18252:1 18276:1 18279:2 18282:4 18287:1 18288:3 18289:1 18335:1 18340:1 18354:1 18360:1 18363:1 18368:2 18369:1 18371:2 18388:1 18389:1 18392:2 18399:2 18404:1 18405:2 18407:2 18409:1 18421:4 18430:2 18449:1 18458:1 18460:1 18462:1 18465:1 18466:4 18494:1 18495:1 18504:1 18505:1 18507:1 18510:1 18526:1 18531:2 18548:1 18552:1 18553:1 18569:1 18577:3 18578:16 18579:2 18586:1 18592:4 18596:1 18612:1 18613:1 18627:1 18643:1 18652:1 18663:1 18672:1 18678:1 18683:1 18695:1 18697:1 18701:1 18705:1 18726:1 18738:1 18768:4 18787:1 18789:2 18802:2 18807:1 18817:2 18828:1 18830:1 18840:2 18850:1 18865:7 18871:2 18878:1 18886:1 18916:1 18917:1 18927:1 18937:1 18968:1 18973:3 18987:3 18999:1 19002:1 19006:1 19010:1 19011:1 19020:1 19023:2 19051:2 19057:3 19063:2 19066:2 19073:2 19078:1 19080:1 19081:1 19089:2 19116:4 19126:2 19149:2 19153:1 19162:1 19178:2 19183:1 19190:2 19198:5 19202:1 19207:1 19213:1 19215:2 19227:3 19258:2 19264:1 19277:1 19296:1 19297:1 19298:1 19302:1 19304:1 19312:2 19319:2 19321:2 19327:1 19331:2 19332:1 19337:2 19353:1 19358:2 19381:2 19392:1 19393:1 19401:1 19402:1 19403:4 19420:1 19427:2 19431:1 19435:1 19440:1 19441:1 19446:2 19447:1 19450:1 19460:1 19463:1 19480:1 19481:1 19486:1 19510:1 19517:1 19519:1 19524:2 19525:2 19538:1 19550:1 19618:1 19640:1 19652:2 19656:1 19664:2 19665:2 19667:1 19669:1 19673:1 19674:1 19687:1 19694:2 19699:3 19705:1 19714:1 19723:1 19740:1 19746:1 19750:1 19768:1 19769:1 19787:2 19789:1 19790:1 19791:1 19794:1 19796:2 19799:1 19800:1 19811:1 19818:2 19825:2 19830:2 19833:1 19838:2 19841:1 19851:1 19853:2 19874:11 19886:1 19887:2 19892:2 19902:1 19916:1 19929:1 19943:1 19948:1 19952:1 19955:1 20000:2 20010:1 20019:2 20024:1 20026:1 20030:1 20034:4 20036:3 20037:1 20046:2 20054:1 20056:1 20059:1 20061:1 20082:1 20083:1 20085:2 20087:3 20088:2 20111:1 20114:1 20151:1 20171:3 20174:1 20176:4 20178:3 20179:3 20181:1 20182:1 20186:1 20189:2 20193:1 20194:2 20205:5 20213:1 20218:1 20223:1 20236:1 20244:2 20252:2 20255:2 20269:1 20315:2 20317:2 20324:1 20329:1 20338:1 20344:1 20364:1 20365:2 20368:1 20374:1 20375:1 20377:1 20381:1 20383:1 20392:1 20395:1 20396:1 20405:1 20409:1 20421:1 20423:1 20425:5 20431:1 20440:1 20441:3 20446:1 20447:3 20455:1 20463:1 20470:1 20484:2 20487:1 20490:1 20491:1 20492:4 20498:2 20503:1 20512:2 20513:8 20515:1 20519:1 20525:1 20526:1 20529:1 20531:1 20547:1 20549:1 20553:1 20575:7 20576:1 20589:1 20609:1 20624:1 20631:4 20632:1 20640:1 20649:1 20664:1 20665:1 20687:1 20690:2 20717:1 20723:1 20726:6 20728:1 20735:3 20740:3 20749:1 20753:1 20757:1 20759:1 20773:1 20775:3 20787:1 20794:1 20795:2 20800:3 20809:1 20815:1 20817:1 20827:1 20834:1 20846:1 20851:1 20863:1 20866:1 20890:1 20895:1 20902:1 20903:1 20904:1 20906:1 20914:1 20921:2 20935:8 20936:2 20941:1 20952:2 20957:2 20962:4 20970:3 20982:2 20996:1 21021:1 21032:1 21033:1 21037:2 21040:2 21055:1 21056:1 21080:1 21083:1 21084:1 21085:1 21086:1 21101:1 21104:1 21121:1 21128:2 21131:1 21138:2 21139:1 21142:1 21175:3 21204:3 21215:1 21249:1 21253:1 21269:1 21294:3 21297:2 21304:5 21314:2 21322:1 21328:1 21330:3 21341:2 21344:2 21345:2 21358:1 21368:4 21406:1 21413:1 21436:1 21446:1 21458:1 21463:1 21472:2 21484:1 21502:1 21505:1 21510:2 21527:2 21534:1 21537:2 21548:1 21549:1 21559:1 21566:1 21575:1 21576:2 21579:2 21584:3 21590:1 21592:1 21605:1 21624:3 21625:2 21628:2 21641:1 21644:1 21650:1 21695:1 21696:4 21698:1 21701:1 21706:1 21712:1 21714:1 21715:2 21716:1 21718:1 21719:1 21722:1 21749:1 21766:1 21769:1 21779:1 21789:1 21845:2 21853:1 21878:2 21884:1 21941:1 21943:2 21951:1 21953:1 21964:1 21979:1 21996:1 21998:1 22008:1 22017:1 22047:1 22057:1 22066:1 22084:1 22090:1 22101:2 22113:1 22136:2 22140:1 22165:2 22176:3 22186:1 22212:1 22213:7 22228:1 22233:1 22241:3 22259:1 22261:1 22267:1 22270:4 22279:1 22280:1 22287:1 22293:1 22317:3 22319:1 22340:2 22341:1 22345:1 22346:1 22381:1 22425:1 22426:1 22451:1 22454:1 22455:1 22461:1 22467:3 22469:2 22473:1 22475:1 22476:1 22477:1 22479:2 22482:1 22483:1 22484:1 22494:1 22518:5 22535:1 22536:1 22539:1 22544:1 22551:1 22552:1 22555:1 22557:1 22582:9 22585:5 22587:1 22609:1 22611:2 22618:1 22619:1 22630:1 22635:1 22636:1 22639:1 22643:3 22651:2 22667:1 22670:1 22681:1 22756:1 22777:2 22781:1 22787:1 22794:1 22796:1 22800:2 22809:2 22813:1 22817:1 22822:2 22823:2 22826:1 22843:1 22845:1 22850:1 22857:1 22858:2 22863:1 22866:1 22874:1 22890:1 22901:3 22913:2 22917:1 22918:1 22930:1 22932:1 22941:2 22946:1 22952:2 22957:1 22968:1 22974:1 23002:14 23003:2 23026:1 23032:1 23033:1 23036:1 23045:1 23055:1 23066:1 23067:1 23074:2 23078:1 23085:1 23098:2 23101:1 23105:2 23110:1 23111:1 23131:1 23133:1 23139:1 23143:1 23145:1 23160:1 23166:1 23198:1 23220:10 23221:1 23235:1 23240:2 23241:1 23247:1 23253:1 23270:1 23276:1 23280:1 23285:6 23286:1 23291:1 23308:1 23311:2 23314:1 23340:1 23353:2 23359:1 23365:1 23398:1 23407:1 23422:1 23426:2 23428:1 23437:2 23448:1 23452:1 23459:1 23473:1 23527:1 23528:1 23534:1 23538:1 23540:1 23560:1 23564:2 23569:3 23571:1 23577:1 23579:1 23594:1 23617:4 23629:1 23632:1 23636:1 23648:1 23650:6 23663:1 23677:1 23682:1 23688:2 23689:1 23698:1 23701:1 23715:1 23746:1 23769:1 23777:2 23821:1 23826:1 23838:1 23853:1 23860:1 23919:2 23928:1 23929:2 23944:1 23945:1 23952:1 23953:1 23958:1 23971:1 23988:3 24023:4 24030:1 24035:1 24058:1 24065:1 24074:2 24075:1 24084:1 24094:14 24095:2 24105:2 24115:1 24124:1 24126:1 24151:2 24163:1 24165:1 24183:1 24186:1 24188:1 24199:1 24211:4 24215:3 24221:3 24224:2 24226:4 24228:1 24230:1 24245:1 24253:1 24300:1 24324:1 24337:1 24340:2 24350:1 24362:2 24370:2 24380:1 24384:1 24386:1 24387:1 24388:2 24415:6 24417:1 24418:1 24425:1 24426:1 24434:1 24439:1 24442:1 24447:1 24467:1 24470:1 24471:2 24483:1 24531:1 24537:2 24553:1 24561:1 24562:1 24569:2 24596:1 24621:1 24634:1 24635:1 24641:5 24652:1 24653:1 24677:1 24684:1 24689:1 24690:1 24703:1 24707:1 24711:2 24721:1 24744:1 24746:2 24747:2 24758:3 24769:1 24785:1 24788:1 24793:1 24797:2 24823:1 24838:2 24839:1 24849:1 24851:1 24886:1 24895:2 24912:1 24915:3 24918:1 24921:1 24922:1 24931:1 24936:1 24938:2 24950:1 24956:1 24961:2 24972:2 24974:1 24977:1 24985:2 24986:1 24991:1 25000:1 25013:1 25016:1 25021:1 25026:1 25028:1 25032:2 25037:1 25063:1 25077:5 25081:1 25084:2 25098:1 25099:1 25108:1 25126:1 25132:2 25137:1 25143:1 25148:2 25155:2 25163:1 25164:1 25172:2 25174:1 25181:1 25187:1 25190:1 25193:1 25200:1 25201:1 25204:1 25205:1 25206:1 25210:1 25217:2 25219:1 25229:2 25238:2 25243:1 25247:1 25279:1 25288:1 25297:3 25318:2 25335:1 25358:1 25361:1 25404:2 25439:1 25444:1 25445:2 25459:1 25465:2 25480:1 25487:1 25490:1 25492:2 25499:5 25521:1 25532:1 25563:5 25598:1 25613:1 25652:1 25655:1 25660:2 25674:2 25680:1 25691:1 25699:1 25715:1 25742:1 25745:1 25759:2 25760:3 25761:1 25766:1 25773:2 25775:1 25778:2 25790:1 25792:1 25799:1 25801:5 25811:1 25813:1 25815:1 25817:1 25828:2 25832:2 25836:2 25840:1 25845:1 25847:5 25851:1 25860:1 25867:3 25870:1 25883:3 25884:1 25886:2 25906:2 25922:1 25924:1 25941:1 25949:1 25963:1 25969:3 25971:4 25977:4 26008:4 26021:1 26023:1 26034:1 26045:1 26051:1 26052:1 26054:1 26064:1 26081:1 26083:3 26088:1 26092:2 26114:1 26120:1 26126:1 26131:1 26146:1 26158:1 26162:1 26164:1 26172:1 26173:2 26179:1 26182:1 26196:3 26231:1 26234:1 26245:7 26249:1 26252:1 26257:1 26259:1 26263:2 26276:1 26308:5 26351:1 26401:1 26468:1 26488:2 26495:1 26497:1 26498:2 26499:1 26502:2 26504:3 26511:1 26515:1 26516:1 26525:1 26539:1 26552:1 26571:1 26576:1 26611:3 26620:2 26648:2 26653:2 26668:1 26670:1 26683:1 26699:1 26715:1 26721:3 26722:1 26727:1 26728:2 26758:1 26760:1 26763:4 26767:2 26780:1 26784:1 26806:1 26813:1 26819:1 26825:1 26836:1 26844:1 26862:1 26866:1 26868:3 26876:1 26878:1 26892:1 26901:2 26903:1 26919:1 26940:2 26943:2 26961:1 26965:1 26966:3 26973:3 26974:3 26975:1 26978:1 27022:5 27025:1
1 12:1 34:1 43:1 50:1 55:1 60:1 90:1 108:1 124:1 137:1 138:3 147:1 152:2 153:1 159:1 165:1 168:3 178:5 189:1 194:1 221:1 231:1 236:7 248:1 255:3 262:1 277:2 301:1 312:4 314:3 318:3 326:3 333:1 337:2 356:2 363:1 375:1 392:5 394:5 403:1 446:1 451:1 480:2 509:1 518:1 522:2 538:1 548:3 554:1 565:1 571:1 573:2 575:1 580:1 588:2 656:1 665:1 698:1 708:2 728:1 730:2 731:1 738:1 750:1 776:5 779:1 782:1 786:1 787:4 798:1 814:14 815:4 823:3 841:3 848:1 853:1 854:4 856:2 857:7 859:1 861:2 863:3 877:2 895:5 898:4 909:1 943:2 951:1 964:1 994:1 1011:1 1028:1 1029:1 1044:1 1053:2 1054:1 1057:1 1100:3 1101:2 1105:1 1107:1 1108:1 1111:2 1118:1 1119:1 1132:1 1139:1 1140:1 1141:1 1145:2 1156:1 1161:2 1178:1 1184:2 1189:1 1214:1 1215:1 1230:1 1243:1 1247:1 1249:1 1253:1 1256:1 1264:1 1275:1 1293:1 1296:1 1300:1 1301:2 1303:1 1311:1 1318:1 1319:2 1332:1 1334:1 1340:3 1346:1 1352:1 1361:1 1367:1 1371:2 1385:1 1390:1 1406:1 1411:4 1417:7 1420:2 1429:1 1450:2 1458:1 1461:1 1465:1 1467:1 1476:1 1480:1 1485:2 1498:2 1508:1 1511:1 1513:1 1517:1 1526:1 1529:2 1540:1 1545:1 1549:1 1556:1 1560:1 1564:1 1570:1 1580:1 1588:1 1595:2 1598:1 1614:1 1615:5 1621:1 1626:1 1632:1 1636:1 1639:3 1642:1 1643:2 1645:1 1651:2 1653:6 1660:1 1676:4 1678:2 1682:1 1692:1 1702:1 1704:1 1710:2 1713:2 1715:4 1717:1 1718:1 1721:1 1731:1 1742:1 1744:1 1751:1 1757:2 1763:2 1764:1 1765:1 1778:2 1781:1 1782:1 1787:1 1821:1 1825:8 1830:1 1836:1 1840:1 1845:2 1851:1 1854:2 1859:1 1862:2 1873:1 1877:1 1884:1 1902:1 1905:1 1920:2 1921:1 1923:1 1924:1 1926:2 1929:1 1950:1 1966:11 1970:1 1975:1 1979:1 1984:1 1999:1 2006:2 2025:2 2038:3 2040:1 2052:1 2053:1 2056:1 2061:2 2078:2 2079:2 2083:2 2084:5 2087:1 2089:1 2090:2 2095:2 2096:2 2097:1 2098:1 2099:4 2103:1 2105:4 2107:3 2109:5 2111:7 2113:1 2123:1 2131:1 2146:1 2149:1 2152:1 2155:3 2158:1 2162:1 2170:2 2172:1 2179:1 2190:1 2191:1 2200:1 2208:1 2210:1 2236:1 2243:1 2247:1 2262:1 2278:1 2280:1 2287:1 2291:1 2297:1 2306:3 2316:2 2317:1 2323:1 2325:1 2330:1 2334:1 2345:1 2347:1 2353:3 2356:2 2358:1 2361:6 2365:1 2366:1 2367:1 2379:1 2382:1 2397:1 2408:4 2410:1 2411:1 2416:1 2430:2 2436:1 2437:1 2438:1 2447:6 2452:1 2458:2 2460:8 2465:4 2467:1 2474:2 2475:1 2481:1 2483:2 2485:1 2490:3 2492:2 2503:2 2515:1 2516:2 2520:3 2524:1 2557:1 2561:1 2562:2 2563:2 2575:3 2576:1 2577:1 2579:1 2583:4 2590:2 2595:1 2612:1 2614:1 2619:1 2639:2 2641:1 2656:3 2660:1 2664:1 2667:14 2689:3 2690:1 2694:1 2695:1 2697:1 2706:2 2711:2 2714:1 2731:17 2733:1 2756:2 2758:3 2773:1 2783:1 2814:1 2822:1 2826:1 2840:1 2841:5 2852:3 2856:1 2860:1 2866:1 2879:1 2889:1 2902:1 2904:1 2908:1 2915:2 2923:1 2938:2 2956:3 2968:1 2991:1 2992:2 3026:1 3027:2 3028:1 3031:1 3034:1 3048:6 3103:1 3137:1 3147:2 3152:1 3162:1 3192:1 3193:1 3194:1 3203:1 3209:1 3210:1 3213:1 3230:1 3252:1 3268:1 3286:2 3291:1 3309:1 3314:1 3315:12 3318:1 3325:1 3328:2 3330:2 3331:2 3332:1 3346:1 3350:1 3352:1 3358:1 3359:1 3366:1 3394:1 3399:1 3400:1 3406:1 3407:1 3410:3 3414:2 3423:1 3446:1 3459:1 3470:1 3473:1 3480:2 3483:1 3486:2 3488:1 3494:1 3506:1 3510:1 3513:2 3520:1 3523:1 3540:2 3542:1 3554:1 3560:3 3575:1 3576:1 3581:4 3583:1 3587:2 3591:2 3600:3 3610:2 3611:2 3629:1 3631:2 3646:1 3650:2 3652:2 3660:1 3683:1 3691:6 3692:4 3698:2 3730:1 3733:2 3737:1 3742:1 3756:1 3759:1 3760:2 3779:1 3787:2 3790:1 3791:1 3794:1 3813:2 3828:2 3838:1 3845:3 3848:1 3849:1 3853:2 3856:1 3859:1 3863:2 3875:1 3882:1 3888:1 3898:1 3912:1 3917:1 3937:1 3952:7 3957:1 3977:3 3984:1 3993:1 4003:1 4005:2 4018:2 4032:2 4038:1 4057:1 4062:1 4064:2 4084:3 4097:1 4107:1 4116:1 4118:1 4125:1 4140:2 4160:1 4164:1 4167:1 4172:1 4173:3 4175:1 4189:1 4201:1 4217:3 4218:1 4226:1 4234:5 4246:1 4249:1 4275:4 4284:2 4294:1 4295:1 4302:3 4307:1 4319:4 4344:2 4361:1 4365:2 4369:3 4383:3 4386:1 4394:1 4403:1 4419:1 4422:2 4431:1 4445:1 4461:1 4467:1 4477:1 4488:13 4490:1 4499:1 4501:1 4502:1 4516:1 4527:1 4535:1 4546:1 4554:1 4608:2 4625:1 4629:4 4631:7 4632:3 4634:1 4637:2 4638:2 4639:1 4642:1 4643:1 4645:6 4646:4 4650:1 4651:2 4652:7 4658:2 4659:4 4662:1 4663:1 4674:1 4677:1 4701:1 4718:1 4737:2 4744:1 4762:1 4767:1 4776:1 4801:1 4834:1 4842:1 4866:1 4877:1 4887:2 4911:1 4916:1 4941:3 4945:2 4955:1 4982:1 4985:1 5006:3 5018:1 5037:1 5050:1 5055:1 5064:2 5075:1 5081:1 5088:1 5094:1 5101:1 5121:1 5130:1 5153:1 5156:1 5197:2 5207:1 5212:2 5216:1 5221:1 5230:5 5231:1 5234:2 5236:1 5239:2 5240:1 5255:1 5256:1 5281:3 5292:2 5293:1 5296:1 5309:6 5314:1 5315:1 5330:2 5336:1 5383:1 5398:1 5416:1 5420:1 5422:1 5440:1 5444:1 5445:1 5446:1 5453:2 5456:1 5467:1 5479:1 5503:1 5510:2 5521:2 5535:2 5538:1 5539:1 5565:6 5567:1 5568:1 5575:1 5576:2 5583:1 5585:1 5586:1 5588:1 5589:1 5591:1 5620:1 5623:1 5624:1 5629:1 5632:1 5634:1 5639:1 5641:1 5642:1 5643:1 5647:12 5680:3 5686:1 5703:1 5715:1 5725:3 5735:1 5751:6 5756:1 5761:1 5763:1 5801:1 5805:1 5828:1 5834:1 5836:1 5838:1 5844:2 5845:3 5847:1 5849:1 5850:1 5852:2 5859:2 5860:4 5861:3 5872:1 5897:1 5904:1 5938:1 5954:1 5987:1 5991:4 5992:2 6006:1 6015:1 6047:1 6055:1 6066:1 6082:1 6092:1 6115:1 6129:2 6137:2 6146:1 6152:1 6162:1 6210:1 6223:1 6233:2 6235:1 6238:1 6242:1 6246:1 6254:7 6262:2 6265:2 6267:1 6273:1 6275:1 6279:1 6287:2 6300:1 6301:1 6307:1 6310:1 6340:1 6344:1 6345:3 6357:2 6361:1 6366:2 6385:1 6389:1 6394:1 6398:1 6401:2 6430:1 6449:2 6453:1 6460:1 6465:1 6468:1 6469:1 6477:1 6486:1 6490:6 6498:2 6516:1 6524:1 6528:1 6534:1 6537:3 6538:2 6545:1 6549:4 6550:1 6552:1 6557:5 6560:1 6564:1 6587:1 6588:1 6590:1 6599:1 6602:1 6604:1 6620:1 6621:1 6626:4 6631:3 6641:1 6654:1 6658:1 6672:2 6674:1 6677:1 6679:1 6686:1 6703:1 6705:1 6712:1 6721:1 6728:1 6742:1 6797:1 6800:1 6806:1 6810:2 6846:1 6857:1 6859:2 6860:5 6864:2 6869:1 6870:1 6876:3 6881:1 6894:4 6895:1 6898:2 6912:1 6913:3 6922:1 6935:1 6943:2 6946:1 6951:1 6959:1 6962:1 6964:1 6969:1 6980:1 6981:1 6988:1 6989:1 6997:1 7002:1 7006:1 7016:1 7027:1 7052:3 7067:3 7068:6 7081:2 7086:1 7090:4 7092:2 7093:3 7109:1 7116:4 7117:2 7121:1 7136:41 7137:2 7140:2 7147:1 7155:7 7156:5 7162:2 7194:1 7201:1 7202:1 7211:1 7222:1 7224:1 7229:3 7230:2 7235:1 7242:1 7244:1 7256:2 7264:3 7276:1 7294:2 7300:1 7305:1 7326:2 7352:1 7355:1 7356:3 7385:1 7389:1 7390:1 7391:1 7402:2 7446:1 7461:1 7477:1 7489:1 7507:1 7508:1 7517:1 7520:1 7523:1 7547:1 7556:1 7558:1 7559:2 7568:1 7575:1 7576:1 7580:2 7592:1 7593:1 7609:22 7618:1 7619:1 7637:3 7640:2 7642:1 7644:2 7696:5 7698:1 7700:1 7706:1 7734:1 7744:2 7748:2 7751:1 7756:1 7771:1 7777:1 7778:4 7784:3 7790:1 7812:2 7814:1 7820:1 7825:1 7836:1 7840:1 7850:1 7857:1 7858:1 7876:1 7877:1 7886:2 7889:1 7890:1 7940:1 7944:1 7945:1 7950:1 7952:1 7957:1 7976:1 7978:2 7989:5 8005:2 8008:3 8023:1 8034:1 8043:1 8049:2 8052:1 8054:1 8069:1 8073:1 8085:2 8095:1 8113:1 8124:1 8153:1 8154:1 8163:1 8164:1 8171:1 8197:1 8199:1 8215:2 8228:1 8247:1 8250:1 8253:1 8254:1 8258:3 8282:3 8289:1 8295:2 8306:1 8311:1 8331:1 8332:1 8345:1 8350:6 8351:1 8356:1 8358:1 8363:1 8370:4 8378:1 8387:1 8389:1 8407:6 8409:1 8423:1 8426:1 8437:1 8445:10 8446:5 8460:2 8461:1 8469:1 8501:3 8515:1 8521:1 8525:2 8527:1 8541:1 8544:1 8550:2 8552:2 8553:3 8555:2 8567:1 8578:1 8584:1 8600:1 8612:1 8620:2 8622:1 8632:1 8635:5 8637:1 8656:3 8658:2 8664:1 8674:4 8698:1 8699:1 8706:1 8728:1 8735:1 8741:1 8756:3 8765:3 8771:1 8782:1 8786:1 8793:1 8820:1 8833:1 8838:1 8846:1 8853:7 8856:2 8885:3 8894:1 8895:1 8904:3 8908:1 8926:1 8947:1 8953:1 8954:3 8956:3 8958:2 8964:1 8981:1 8987:1 8990:1 9020:1 9022:1 9031:1 9041:1 9067:2 9073:1 9077:1 9090:1 9101:2 9113:1 9124:1 9131:1 9132:1 9144:1 9155:1 9172:1 9173:1 9178:1 9179:1 9191:1 9196:1 9216:1 9221:1 9222:1 9224:1 9230:5 9243:4 9249:4 9251:2 9263:1 9281:2 9300:3 9301:1 9332:1 9337:2 9348:1 9358:1 9361:3 9364:1 9388:1 9391:1 9396:12 9398:2 9402:2 9406:1 9424:2 9425:1 9434:1 9439:1 9450:1 9469:1 9488:1 9491:2 9493:1 9509:1 9524:1 9534:1 9536:1 9537:1 9540:1 9542:4 9550:1 9552:1 9555:2 9588:1 9601:4 9608:1 9610:1 9612:1 9617:1 9620:2 9626:1 9632:1 9635:1 9642:4 9660:1 9681:1 9691:1 9695:1 9696:1 9703:1 9708:1 9710:1 9713:2 9718:1 9725:2 9732:1 9739:1 9748:1 9750:2 9757:1 9764:1 9766:1 9769:1 9775:7 9778:4 9791:2 9795:3 9799:1 9802:1 9807:1 9812:2 9820:1 9834:2 9848:4 9849:2 9866:2 9868:1 9869:1 9878:3 9899:1 9916:1 9920:1 9926:3 9936:1 9946:5 9964:1 9972:1 9980:1 9982:1 9993:3 10025:1 10030:1 10096:1 10102:1 10118:1 10120:1 10136:1 10137:2 10141:2 10144:1 10145:2 10149:1 10152:1 10156:1 10157:5 10158:5 10159:1 10168:1 10174:2 10177:2 10181:1 10183:3 10188:1 10189:1 10195:1 10201:3 10203:1 10208:1 10213:1 10226:2 10234:1 10255:1 10257:1 10259:3 10294:1 10297:1 10312:1 10321:1 10323:1 10326:1 10341:1 10385:1 10392:1 10406:1 10412:1 10425:1 10426:2 10445:1 10463:1 10474:1 10477:1 10484:2 10500:3 10503:2 10507:1 10518:1 10523:2 10525:1 10526:1 10528:2 10537:3 10539:1 10540:1 10541:2 10550:1 10556:3 10559:2 10572:1 10587:14 10588:1 10611:1 10621:1 10625:4 10632:1 10635:2 10636:2 10648:2 10655:1 10673:1 10675:2 10682:2 10683:1 10690:1 10693:2 10695:2 10696:1 10706:1 10724:1 10738:1 10766:1 10783:1 10796:1 10803:3 10804:1 10805:1 10808:1 10814:1 10821:1 10822:3 10826:1 10827:2 10828:1 10830:1 10840:1 10841:1 10851:1 10860:1 10863:1 10864:1 10866:1 10870:2 10874:5 10875:1 10880:2 10898:1 10921:1 10934:2 10938:1 10947:1 10972:1 10975:1 10983:1 10984:1 10998:1 11016:1 11017:1 11023:5 11032:1 11043:2 11046:1 11058:1 11063:1 11071:1 11076:2 11081:1 11100:2 11117:2 11127:1 11129:2 11150:1 11170:2 11175:1 11189:1 11195:1 11201:2 11205:1 11219:1 11236:1 11244:1 11246:1 11251:5 11252:1 11253:2 11255:1 11256:2 11267:1 11273:2 11279:1 11283:1 11285:1 11290:1 11335:1 11338:2 11339:1 11357:1 11368:1 11376:1 11388:1 11393:1 11407:1 11410:1 11413:1 11439:1 11476:3 11494:2 11507:1 11520:1 11527:1 11539:1 11550:1 11552:2 11553:1 11568:1 11570:3 11579:1 11593:1 11599:1 11606:1 11647:1 11658:1 11663:1 11665:1 11666:2 11674:1 11705:13 11710:3 11719:1 11723:2 11728:1 11739:1 11746:1 11747:2 11753:2 11770:1 11775:1 11779:1 11780:1 11786:1 11792:2 11794:1 11798:1 11800:1 11829:1 11845:1 11850:1 11858:2 11863:1 11886:1 11887:1 11889:1 11890:1 11903:1 11923:1 11924:1 11930:2 11932:1 11944:1 11946:1 11963:1 11977:1 11982:3 11994:1 11996:1 12041:1 12042:1 12060:1 12078:1 12082:1 12083:1 12085:2 12090:4 12101:1 12106:2 12115:2 12122:1 12138:6 12157:1 12161:2 12186:1 12193:4 12194:1 12205:1 12221:1 12223:1 12224:1 12225:1 12233:5 12236:1 12242:2 12247:1 12260:1 12264:1 12272:1 12273:1 12279:2 12283:1 12289:1 12290:1 12301:15 12306:1 12308:1 12311:1 12342:2 12343:1 12350:2 12366:1 12371:1 12384:1 12394:1 12395:1 12397:1 12421:3 12441:1 12446:6 12449:1 12465:1 12475:1 12478:1 12499:2 12515:1 12521:1 12525:1 12533:2 12535:1 12537:1 12544:1 12549:1 12551:1 12558:6 12559:1 12561:1 12562:1 12563:1 12564:2 12565:1 12569:7 12570:2 12590:1 12591:1 12593:1 12595:1 12620:1 12643:1 12675:1 12685:1 12686:1 12706:1 12711:1 12719:3 12751:1 12756:1 12758:1 12760:1 12767:1 12770:1 12773:2 12774:1 12778:1 12790:1 12794:1 12814:2 12820:1 12821:1 12829:1 12833:1 12836:7 12857:2 12861:1 12867:1 12890:1 12902:1 12903:1 12909:1 12913:1 12923:1 12929:1 12931:1 12934:1 12944:1 12957:1 12983:1 12984:1 12993:1 12997:1 13004:1 13010:1 13017:1 13052:1 13063:2 13077:4 13091:1 13104:1 13123:1 13143:1 13175:1 13199:1 13200:1 13204:3 13205:4 13212:1 13222:2 13223:1 13225:1 13229:2 13230:1 13248:1 13250:1 13256:1 13265:2 13294:1 13305:1 13327:2 13334:1 13337:1 13349:1 13353:1 13355:1 13361:2 13367:1 13375:3 13380:2 13428:1 13430:2 13433:1 13444:1 13476:2 13477:1 13484:1 13506:1 13513:1 13517:1 13540:3 13552:1 13555:1 13558:2 13587:1 13589:1 13595:1 13643:2 13689:2 13693:2 13696:1 13712:1 13734:1 13762:1 13774:1 13776:3 13781:1 13793:1 13794:1 13795:1 13801:1 13804:1 13806:1 13829:1 13887:1 13891:1 13894:1 13900:2 13922:1 13928:1 13974:1 13995:2 14004:1 14010:1 14027:1 14032:1 14034:1 14035:2 14047:1 14064:2 14071:3 14075:1 14096:1 14098:1 14099:1 14113:2 14130:2 14134:1 14156:1 14168:2 14184:1 14189:1 14211:1 14216:1 14217:1 14225:1 14229:5 14244:3 14252:1 14263:3 14266:1 14279:3 14299:1 14302:1 14311:1 14328:1 14332:1 14335:2 14377:1 14391:1 14392:1 14403:2 14409:1 14413:1 14417:4 14420:1 14424:1 14426:1 14432:1 14445:4 14446:1 14450:1 14453:1 14462:1 14465:1 14475:1 14491:2 14497:2 14532:2 14535:1 14539:1 14550:3 14559:1 14567:1 14570:1 14572:3 14587:1 14600:2 14648:1 14667:1 14676:1 14683:1 14687:14 14690:1 14704:1 14709:3 14712:1 14738:3 14772:1 14783:1 14789:2 14796:2 14817:2 14821:1 14832:2 14845:1 14876:1 14883:1 14890:1 14891:1 14892:1 14902:2 14903:1 14928:1 14929:1 14931:3 14946:1 14950:1 14954:5 14955:2 14956:2 14957:5 14958:1 14959:1 14963:2 14965:1 14967:2 14968:3 14972:1 14973:1 14975:1 14978:1 14979:1 14987:1 15024:1 15037:1 15060:1 15083:1 15087:1 15088:1 15109:2 15114:1 15117:1 15119:2 15120:1 15140:1 15162:1 15169:1 15170:1 15178:1 15192:1 15198:1 15217:1 15240:1 15250:1 15252:1 15254:1 15262:2 15272:1 15274:2 15281:2 15282:1 15290:1 15294:5 15299:1 15302:2 15308:1 15316:1 15321:2 15325:3 15329:2 15334:1 15342:3 15344:2 15353:2 15359:1 15367:1 15372:1 15402:1 15407:12 15408:1 15422:1 15426:1 15431:1 15432:4 15437:1 15472:1 15476:1 15490:1 15491:1 15497:2 15499:1 15507:1 15512:4 15524:1 15525:1 15534:1 15538:1 15541:2 15575:2 15596:5 15603:1 15617:2 15619:1 15622:1 15646:1 15661:2 15667:1 15688:1 15703:2 15705:3 15719:1 15720:1 15722:1 15731:1 15765:1 15768:1 15787:1 15790:1 15799:1 15808:2 15814:1 15821:1 15828:1 15845:2 15858:2 15862:1 15864:1 15873:1 15886:1 15889:1 15909:1 15930:1 15938:1 15966:1 15979:1 15982:1 16000:1 16005:1 16021:2 16027:1 16036:1 16037:3 16041:1 16047:1 16054:3 16059:2 16060:2 16064:2 16070:1 16071:9 16109:1 16111:2 16112:1 16116:1 16117:1 16121:1 16128:1 16133:1 16139:1 16140:1 16156:1 16176:1 16189:1 16203:1 16204:1 16222:3 16226:1 16236:1 16244:2 16256:1 16257:1 16261:1 16266:1 16276:1 16279:1 16309:1 16311:1 16312:1 16313:1 16339:1 16343:1 16344:1 16347:2 16379:1 16401:1 16405:1 16425:1 16426:2 16433:1 16437:1 16439:1 16450:1 16452:1 16466:1 16487:1 16514:1 16540:1 16542:1 16551:2 16570:2 16651:2 16657:2 16658:1 16664:1 16674:1 16680:1 16687:1 16703:1 16721:1 16727:1 16758:1 16770:1 16771:1 16787:1 16791:3 16795:1 16805:1 16838:1 16848:12 16860:1 16880:1 16906:1 16932:1 16954:13 16963:3 16964:1 16975:1 16977:5 16990:1 16997:1 17001:2 17012:1 17025:2 17048:4 17058:2 17068:2 17084:1 17085:1 17087:1 17107:2 17112:2 17125:2 17126:3 17137:2204 17147:1 17151:1 17161:1 17162:1 17188:1 17197:1 17200:1 17201:1 17220:2 17251:1 17262:1 17263:1 17282:1 17296:1 17307:1 17311:1 17314:1 17317:2 17321:5 17322:3 17332:1 17339:1 17341:1 17351:1 17359:1 17375:1 17386:1 17399:1 17406:1 17407:1 17448:1 17450:3 17453:2 17459:1 17494:1 17502:1 17503:3 17521:1 17534:2 17549:1 17551:1 17564:2 17566:1 17573:1 17591:1 17603:2 17608:1 17616:1 17627:1 17636:1 17642:2 17643:2 17646:2 17655:1 17661:1 17670:1 17672:1 17691:2 17692:2 17708:2 17712:1 17716:1 17728:2 17752:2 17753:1 17758:1 17761:1 17770:1 17771:2 17777:8 17787:1 17801:1 17803:1 17818:1 17823:2 17824:1 17825:1 17833:1 17846:5 17860:1 17862:1 17891:1 17900:4 17905:1 17907:2 17912:1 17914:2 17929:4 17930:1 17935:1 17938:1 17942:1 17956:1 17961:3 17968:2 17970:1 17975:2 18006:3 18009:1 18017:1 18031:1 18034:1 18038:2 18039:2 18046:1 18047:1 18050:1 18068:1 18077:1 18078:1 18079:1 18080:1 18083:1 18088:1 18117:1 18130:2 18144:1 18145:2 18146:1 18147:1 18152:1 18153:1 18158:1 18182:1 18183:1 18185:1 18187:1 18196:1 18203:1 18214:1 18227:1 18229:1 18237:1 18238:1 18249:1 18252:1 18268:1 18276:1 18279:2 18282:4 18287:1 18288:3 18289:1 18335:1 18340:1 18354:2 18360:1 18363:1 18368:2 18369:1 18371:2 18388:1 18389:1 18392:3 18399:2 18404:1 18405:2 18407:2 18409:1 18421:5 18430:2 18449:1 18458:1 18460:1 18462:1 18465:1 18466:4 18494:1 18495:1 18504:2 18505:1 18507:1 18510:1 18526:1 18531:2 18548:1 18552:1 18553:2 18569:1 18577:3 18578:17 18579:2 18586:1 18592:4 18596:1 18612:1 18613:1 18627:1 18643:1 18652:1 18663:1 18672:1 18678:1 18683:1 18695:1 18697:1 18701:1 18705:1 18726:1 18738:1 18768:4 18787:1 18789:2 18802:2 18807:1 18817:2 18828:1 18830:1 18840:2 18850:1 18865:8 18871:2 18878:1 18886:1 18916:1 18917:1 18927:1 18937:1 18968:1 18973:4 18987:3 18999:1 19002:1 19006:1 19010:1 19011:1 19020:1 19023:2 19051:2 19057:3 19063:2 19066:2 19073:2 19078:1 19080:1 19081:1 19089:2 19116:4 19126:2 19149:2 19153:1 19162:1 19178:2 19183:1 19190:2 19191:1 19198:5 19202:1 19207:1 19213:1 19215:2 19227:3 19258:2 19264:1 19277:1 19296:1 19297:1 19298:1 19302:1 19304:1 19312:2 19319:2 19321:2 19327:1 19331:2 19332:1 19337:2 19353:1 19358:2 19381:2 19392:1 19393:1 19401:1 19402:1 19403:4 19420:1 19427:2 19431:1 19435:1 19440:1 19441:1 19446:2 19447:1 19450:1 19460:1 19463:1 19480:1 19481:1 19486:1 19510:1 19517:1 19519:1 19524:2 19525:2 19538:1 19550:1 19618:1 19640:1 19652:2 19656:1 19664:2 19665:2 19667:1 19669:1 19673:1 19674:1 19679:1 19687:1 19694:2 19699:3 19705:1 19714:1 19723:1 19740:1 19746:1 19750:1 19768:1 19769:1 19787:2 19789:1 19790:1 19791:1 19794:1 19796:2 19799:1 19800:1 19811:1 19818:2 19825:2 19830:2 19833:1 19838:2 19841:1 19851:1 19853:2 19874:12 19886:2 19887:2 19892:2 19902:1 19916:1 19929:1 19931:1 19943:1 19948:1 19949:1 19952:1 19955:1 20000:2 20010:1 20019:2 20024:1 20026:1 20030:1 20034:4 20036:3 20037:1 20046:2 20054:1 20056:1 20059:1 20061:1 20082:1 20083:1 20085:2 20087:4 20088:2 20111:1 20114:1 20151:1 20171:3 20174:1 20176:4 20178:3 20179:3 20181:1 20182:1 20186:1 20189:2 20193:1 20194:2 20205:5 20212:1 20213:1 20218:1 20223:1 20236:1 20244:2 20252:2 20255:2 20269:1 20315:2 20317:2 20324:1 20329:1 20338:1 20344:1 20351:1 20364:1 20365:2 20368:1 20374:1 20375:1 20377:1 20381:1 20383:1 20392:1 20395:1 20396:1 20405:1 20409:1 20421:1 20423:1 20425:5 20431:1 20440:1 20441:3 20446:1 20447:3 20455:1 20463:1 20470:1 20484:2 20487:1 20490:1 20491:1 20492:4 20498:2 20503:1 20512:2 20513:8 20515:1 20519:1 20525:1 20526:1 20529:1 20531:1 20547:1 20549:1 20553:1 20575:7 20576:1 20589:1 20609:1 20624:1 20631:5 20632:1 20640:1 20649:1 20664:1 20665:1 20687:1 20690:2 20717:1 20722:1 20723:1 20726:6 20728:1 20735:3 20739:1 20740:3 20749:1 20753:1 20757:1 20759:1 20773:1 20775:3 20787:1 20794:1 20795:2 20800:3 20809:1 20815:1 20817:1 20827:1 20834:1 20846:1 20851:1 20863:1 20866:1 20890:1 20895:1 20902:1 20903:1 20904:1 20906:1 20914:1 20921:2 20935:9 20936:2 20941:1 20952:2 20957:2 20962:4 20969:1 20970:3 20982:2 20996:1 21021:1 21032:1 21033:1 21037:2 21040:2 21055:1 21056:1 21080:1 21083:1 21084:1 21085:1 21086:1 21101:1 21104:1 21121:1 21128:2 21131:1 21138:2 21139:1 21142:1 21175:3 21204:3 21215:1 21249:1 21253:1 21269:1 21294:3 21297:2 21304:5 21314:2 21322:1 21328:1 21330:3 21341:2 21344:2 21345:2 21358:1 21368:4 21406:1 21410:1 21413:1 21436:1 21446:1 21458:1 21463:1 21472:2 21484:1 21502:1 21505:1 21510:2 21527:2 21534:1 21537:2 21548:1 21549:1 21559:1 21566:1 21575:1 21576:2 21579:2 21584:3 21590:1 21592:1 21605:1 21609:1 21624:3 21625:2 21628:2 21641:1 21644:1 21650:1 21695:1 21696:4 21698:1 21701:1 21706:1 21712:1 21714:1 21715:2 21716:1 21718:1 21719:1 21722:1 21749:1 21766:1 21769:1 21779:1 21789:1 21832:1 21845:2 21853:1 21878:2 21884:1 21941:1 21943:2 21951:1 21953:1 21964:1 21979:1 21996:1 21998:1 22008:1 22017:1 22047:1 22057:1 22066:1 22084:1 22090:1 22101:2 22113:1 22136:2 22140:1 22165:2 22176:3 22186:1 22212:1 22213:7 22228:1 22233:1 22241:3 22259:1 22261:1 22267:1 22270:4 22279:1 22280:1 22287:1 22293:1 22317:3 22319:1 22340:2 22341:1 22345:1 22346:1 22381:1 22425:1 22426:1 22451:1 22454:1 22455:1 22461:1 22467:3 22469:2 22473:1 22475:1 22476:1 22477:1 22479:2 22482:1 22483:1 22484:1 22494:1 22505:1 22518:6 22535:1 22536:1 22539:1 22544:1 22551:1 22552:1 22555:1 22557:1 22582:9 22585:6 22587:1 22609:1 22611:2 22618:1 22619:1 22630:1 22635:1 22636:1 22639:1 22643:3 22651:2 22667:1 22670:1 22681:1 22756:1 22777:2 22781:1 22787:1 22794:1 22796:1 22800:2 22809:2 22813:1 22817:1 22822:2 22823:2 22826:1 22843:1 22845:1 22850:1 22857:1 22858:2 22863:1 22866:1 22874:1 22890:1 22901:3 22913:2 22917:1 22918:1 22930:1 22932:1 22941:2 22946:1 22950:1 22952:2 22957:1 22968:1 22974:1 22975:1 23002:15 23003:2 23026:1 23032:1 23033:1 23036:1 23045:1 23055:1 23066:1 23067:1 23074:2 23078:1 23085:1 23098:2 23101:1 23105:2 23110:1 23111:1 23131:1 23133:1 23139:1 23143:1 23145:1 23160:1 23166:1 23198:1 23220:10 23221:1 23235:1 23240:2 23241:1 23247:1 23253:1 23270:1 23276:1 23280:1 23285:6 23286:1 23291:1 23304:1 23308:1 23311:2 23314:1 23340:1 23353:2 23359:1 23365:1 23371:1 23398:1 23407:1 23422:1 23426:2 23428:1 23437:2 23448:1 23452:1 23459:1 23473:1 23527:1 23528:2 23534:1 23538:1 23540:1 23560:1 23564:2 23569:5 23571:1 23577:1 23579:1 23594:1 23617:4 23629:1 23632:1 23636:1 23648:1 23650:6 23663:1 23677:1 23682:1 23685:1 23688:2 23689:1 23698:1 23701:1 23715:1 23746:1 23769:1 23777:2 23821:1 23826:1 23838:1 23853:1 23860:1 23889:1 23919:2 23928:1 23929:2 23944:1 23945:1 23952:1 23953:1 23958:1 23971:1 23988:3 23991:1 24023:4 24030:1 24035:1 24058:1 24065:1 24074:2 24075:1 24084:1 24094:14 24095:2 24105:2 24115:1 24124:1 24126:1 24151:2 24163:1 24165:1 24183:1 24186:1 24188:2 24199:1 24211:4 24215:3 24221:3 24224:2 24226:4 24228:1 24230:1 24245:1 24253:1 24300:1 24324:1 24337:1 24340:2 24350:1 24362:2 24370:2 24380:1 24384:1 24386:1 24387:1 24388:2 24415:6 24417:1 24418:1 24425:1 24426:1 24434:1 24439:1 24442:1 24446:1 24447:1 24467:1 24470:1 24471:2 24483:1 24531:1 24537:2 24553:1 24561:1 24562:1 24569:2 24596:1 24621:1 24634:1 24635:1 24641:5 24652:1 24653:1 24677:1 24684:1 24689:1 24690:1 24703:1 24707:1 24711:2 24721:1 24744:1 24746:2 24747:2 24758:3 24769:1 24785:1 24788:1 24793:1 24797:2 24823:1 24838:2 24839:1 24849:1 24851:1 24886:1 24895:2 24912:1 24915:3 24918:1 24921:1 24922:1 24931:1 24936:1 24938:2 24950:1 24956:1 24961:2 24972:2 24974:1 24977:1 24985:2 24986:1 24991:1 25000:1 25013:1 25016:1 25021:1 25026:1 25028:1 25032:2 25037:1 25063:1 25077:5 25081:3 25084:2 25098:1 25099:1 25108:1 25126:1 25132:2 25137:1 25143:1 25148:2 25155:2 25163:1 25164:1 25172:2 25174:1 25181:1 25187:1 25190:1 25193:1 25200:1 25201:1 25204:1 25205:1 25206:1 25210:1 25213:1 25217:2 25219:1 25229:2 25238:2 25243:1 25247:1 25279:1 25288:1 25297:4 25311:1 25318:2 25335:1 25358:1 25361:1 25404:2 25439:1 25444:1 25445:2 25459:1 25465:2 25480:1 25486:1 25487:1 25490:1 25492:3 25499:5 25521:1 25532:1 25563:6 25598:1 25613:1 25652:1 25655:1 25660:2 25674:2 25680:1 25691:1 25699:1 25715:1 25742:1 25745:1 25759:2 25760:3 25761:1 25766:1 25773:2 25775:1 25778:2 25790:1 25792:1 25799:1 25801:5 25811:1 25813:1 25815:1 25817:1 25828:2 25832:2 25836:2 25840:1 25845:1 25847:5 25851:1 25860:1 25867:3 25870:1 25883:3 25884:1 25886:2 25906:3 25922:1 25924:1 25941:1 25949:1 25963:1 25969:3 25971:4 25977:5 26008:4 26021:1 26023:1 26034:1 26045:1 26051:1 26052:1 26054:1 26064:1 26081:1 26083:4 26088:1 26092:2 26114:1 26120:1 26126:1 26131:1 26146:1 26158:1 26162:1 26164:1 26172:1 26173:2 26179:1 26182:1 26196:3 26231:1 26233:1 26234:1 26245:7 26249:1 26252:1 26257:1 26259:1 26263:2 26276:1 26308:5 26351:1 26401:1 26468:1 26488:2 26495:1 26497:1 26498:2 26499:1 26502:2 26504:3 26511:1 26515:1 26516:1 26525:1 26539:1 26552:1 26571:1 26576:1 26611:3 26620:2 26648:2 26653:2 26668:1 26670:1 26683:1 26699:1 26715:1 26721:3 26722:1 26727:1 26728:2 26758:1 26760:1 26763:4 26767:2 26780:1 26784:1 26806:1 26813:1 26819:1 26825:1 26836:1 26844:1 26862:1 26866:1 26868:3 26876:1 26878:1 26892:1 26901:2 26903:1 26919:1 26940:2 26943:2 26961:1 26965:1 26966:3 26973:3 26974:3 26975:1 26978:1 27022:5 27025:1
1 12:1 34:1 43:1 50:1 55:1 60:1 90:1 108:1 124:1 137:1 138:3 147:1 152:2 153:1 159:1 165:1 168:3 178:5 189:1 194:1 221:1 231:1 236:7 248:1 255:3 262:1 277:2 301:1 312:4 314:3 318:3 326:3 333:1 337:2 356:2 363:1 375:2 392:5 394:5 403:1 446:1 451:1 480:2 509:1 518:1 522:2 538:1 548:3 554:1 565:1 571:1 573:3 575:1 580:1 588:2 595:1 656:1 665:1 698:1 708:2 728:1 730:2 731:1 738:1 750:1 776:5 779:1 782:1 786:1 787:4 798:1 814:14 815:4 823:3 841:3 848:1 853:1 854:4 856:2 857:7 859:1 861:2 863:3 877:2 895:5 898:4 909:1 943:2 951:1 964:1 994:1 1005:1 1011:1 1028:1 1029:1 1044:1 1053:2 1054:1 1057:1 1100:3 1101:2 1105:1 1107:1 1108:1 1111:2 1118:1 1119:1 1132:1 1139:1 1140:1 1141:1 1145:2 1156:1 1161:2 1170:1 1178:1 1184:2 1189:1 1214:1 1215:1 1230:1 1243:1 1247:1 1249:1 1253:1 1256:1 1264:1 1275:1 1293:1 1296:1 1300:1 1301:2 1303:1 1311:1 1318:1 1319:2 1332:1 1334:1 1340:3 1346:1 1352:1 1361:1 1367:1 1370:1 1371:2 1373:1 1385:1 1390:1 1406:1 1411:4 1417:7 1420:2 1429:1 1450:2 1458:1 1461:1 1465:1 1467:1 1476:1 1480:1 1485:2 1498:2 1508:1 1511:1 1513:1 1517:1 1526:1 1529:2 1540:1 1545:1 1549:1 1556:1 1560:1 1564:1 1570:1 1580:1 1588:1 1595:2 1598:1 1614:1 1615:5 1621:1 1626:1 1632:1 1636:1 1639:3 1642:1 1643:2 1645:1 1651:2 1653:6 1660:1 1676:4 1678:2 1682:1 1692:1 1702:1 1704:1 1710:2 1713:2 1715:4 1717:1 1718:1 1721:1 1731:1 1742:1 1744:1 1751:1 1757:2 1763:2 1764:1 1765:1 1778:2 1781:1 1782:1 1787:1 1821:1 1825:8 1830:1 1836:1 1840:1 1845:3 1851:1 1854:2 1859:1 1862:2 1873:1 1877:1 1884:1 1902:1 1905:1 1920:2 1921:1 1923:1 1924:1 1926:2 1929:1 1950:1 1966:11 1970:1 1975:1 1979:1 1984:1 1999:1 2006:2 2007:1 2025:2 2038:3 2040:1 2052:1 2053:1 2056:1 2061:2 2078:2 2079:2 2083:2 2084:5 2087:1 2089:1 2090:2 2095:2 2096:2 2097:1 2098:1 2099:4 2103:1 2105:4 2107:3 2109:5 2111:7 2113:1 2123:1 2131:1 2146:1 2149:1 2152:1 2155:3 2158:1 2162:1 2170:2 2172:1 2179:1 2190:1 2191:1 2200:1 2208:1 2210:1 2236:1 2243:1 2247:1 2262:1 2278:2 2280:1 2287:1 2291:1 2297:1 2306:3 2316:2 2317:1 2323:1 2325:1 2330:1 2334:1 2345:1 2347:2 2353:3 2356:2 2358:1 2361:6 2365:1 2366:1 2367:1 2379:1 2382:1 2397:1 2408:4 2410:1 2411:1 2416:1 2430:2 2436:1 2437:1 2438:1 2447:6 2452:2 2458:2 2460:8 2465:4 2467:1 2474:2 2475:1 2481:1 2483:2 2485:1 2490:3 2492:2 2503:2 2515:1 2516:2 2520:3 2524:1 2557:1 2561:1 2562:2 2563:2 2575:3 2576:1 2577:1 2579:1 2583:4 2590:2 2595:1 2612:1 2614:1 2619:1 2639:2 2641:1 2656:4 2660:1 2664:1 2667:14 2689:3 2690:1 2694:1 2695:1 2697:1 2706:2 2711:2 2714:1 2731:18 2733:1 2743:1 2756:2 2758:3 2773:1 2783:1 2814:1 2822:1 2826:1 2840:1 2841:5 2852:3 2856:1 2860:1 2866:1 2879:1 2889:1 2902:1 2904:1 2908:1 2915:2 2923:1 2938:2 2956:3 2968:1 2991:1 2992:2 3026:1 3027:2 3028:1 3031:1 3034:1 3048:6 3103:1 3137:1 3147:2 3152:1 3162:1 3192:1 3193:1 3194:1 3203:1 3209:1 3210:1 3213:1 3230:1 3252:1 3268:1 3286:2 3291:1 3309:1 3314:1 3315:12 3318:1 3325:1 3328:2 3330:2 3331:2 3332:1 3346:1 3350:1 3352:1 3358:1 3359:1 3366:1 3394:1 3399:2 3400:1 3406:1 3407:1 3410:3 3414:2 3423:1 3446:1 3459:1 3470:1 3473:1 3480:2 3483:1 3486:2 3488:1 3494:2 3506:1 3510:1 3513:2 3520:1 3523:1 3540:2 3542:1 3554:1 3560:3 3575:1 3576:1 3581:4 3583:1 3587:2 3590:1 3591:2 3600:3 3608:1 3610:2 3611:2 3629:1 3631:2 3646:1 3650:2 3652:2 3660:1 3683:1 3691:6 3692:4 3698:2 3730:1 3733:2 3737:1 3742:1 3756:1 3759:1 3760:2 3779:1 3787:2 3790:1 3791:1 3794:1 3798:1 3813:2 3828:2 3838:1 3845:3 3848:1 3849:1 3853:2 3856:1 3859:1 3863:2 3875:1 3882:1 3888:1 3898:1 3912:1 3917:1 3937:1 3952:7 3957:1 3977:3 3984:1 3993:1 3999:1 4003:1 4005:2 4018:2 4032:2 4038:1 4057:1 4062:1 4064:2 4084:3 4097:1 4107:1 4116:1 4118:1 4125:1 4140:2 4160:1 4164:1 4167:1 4172:1 4173:3 4175:1 4189:1 4201:1 4217:3 4218:1 4226:1 4234:5 4246:1 4249:1 4275:4 4284:2 4294:1 4295:1 4302:3 4307:1 4319:4 4344:2 4361:1 4365:2 4369:3 4383:3 4386:1 4394:1 4403:1 4419:1 4422:2 4431:1 4445:1 4461:1 4467:1 4477:1 4488:13 4490:1 4499:1 4501:1 4502:1 4516:1 4527:1 4535:1 4546:1 4554:1 4608:3 4625:1 4629:4 4631:7 4632:3 4634:1 4637:2 4638:2 4639:1 4642:1 4643:2 4645:6 4646:4 4650:1 4651:2 4652:7 4658:2 4659:4 4662:1 4663:1 4674:1 4677:1 4701:1 4718:1 4737:2 4744:1 4762:1 4767:1 4776:1 4801:1 4834:1 4842:1 4866:1 4877:1 4887:2 4911:1 4916:1 4941:3 4945:2 4955:1 4982:1 4985:1 5006:3 5018:1 5037:1 5050:1 5055:1 5064:2 5075:1 5081:1 5088:1 5094:1 5101:1 5121:1 5130:1 5153:1 5156:1 5173:1 5197:2 5207:1 5212:2 5216:1 5221:1 5230:5 5231:1 5234:2 5236:1 5239:2 5240:1 5255:1 5256:1 5281:3 5292:2 5293:1 5296:1 5309:6 5314:1 5315:1 5330:2 5336:1 5383:1 5398:1 5416:1 5420:1 5422:1 5440:1 5444:1 5445:1 5446:1 5453:2 5456:1 5467:1 5479:1 5503:1 5510:2 5521:2 5535:2 5538:1 5539:1 5565:6 5567:1 5568:1 5575:1 5576:2 5583:1 5585:1 5586:1 5588:1 5589:1 5591:1 5620:1 5623:1 5624:1 5629:1 5632:2 5634:1 5639:1 5641:1 5642:1 5643:1 5647:12 5680:3 5686:1 5703:1 5715:1 5725:3 5735:1 5751:6 5756:1 5761:1 5763:1 5801:1 5805:1 5828:1 5834:1 5836:1 5838:1 5844:2 5845:3 5847:1 5849:1 5850:1 5852:2 5853:1 5859:2 5860:4 5861:3 5872:1 5897:1 5904:1 5938:1 5954:1 5987:1 5991:4 5992:2 6006:1 6015:1 6047:1 6055:1 6066:1 6082:1 6092:1 6115:1 6129:2 6137:2 6146:1 6152:1 6162:1 6210:1 6223:1 6233:2 6235:1 6238:1 6242:1 6246:1 6254:7 6262:2 6265:3 6267:1 6273:1 6275:1 6279:1 6287:2 6300:1 6301:1 6307:1 6310:1 6340:1 6344:1 6345:3 6357:2 6361:1 6366:2 6385:1 6389:1 6394:1 6398:1 6401:2 6430:1 6449:2 6453:1 6460:1 6465:1 6468:1 6469:1 6477:1 6486:1 6490:6 6498:2 6516:1 6524:1 6528:1 6534:1 6537:3 6538:2 6545:1 6549:4 6550:1 6552:1 6557:5 6560:1 6564:1 6587:1 6588:1 6590:1 6599:1 6602:1 6604:1 6620:1 6621:1 6626:4 6631:3 6641:1 6654:1 6658:1 6672:2 6674:1 6677:1 6679:1 6686:1 6703:1 6705:1 6712:1 6721:1 6728:1 6742:1 6772:1 6797:1 6800:1 6806:1 6810:2 6846:1 6857:1 6859:2 6860:5 6864:3 6869:1 6870:1 6876:3 6881:1 6894:4 6895:1 6898:2 6912:1 6913:3 6922:1 6935:1 6943:2 6946:1 6951:1 6959:1 6962:1 6964:1 6969:1 6980:1 6981:1 6988:1 6989:1 6997:1 7002:1 7006:1 7016:1 7027:1 7052:3 7067:3 7068:6 7081:2 7086:1 7090:4 7092:2 7093:3 7109:1 7116:4 7117:2 7121:1 7136:41 7137:2 7140:2 7147:1 7155:8 7156:5 7162:2 7194:1 7201:1 7202:1 7211:1 7222:1 7224:1 7229:3 7230:2 7235:1 7242:1 7244:1 7256:2 7264:3 7276:1 7294:2 7300:1 7305:1 7326:2 7352:1 7355:1 7356:3 7385:1 7389:1 7390:1 7391:1 7402:2 7446:1 7461:1 7477:1 7489:1 7507:1 7508:1 7517:1 7520:1 7523:1 7547:1 7556:1 7558:1 7559:2 7568:1 7575:1 7576:1 7580:2 7592:1 7593:1 7609:22 7618:1 7619:1 7637:3 7640:2 7642:1 7644:2 7676:1 7696:6 7698:1 7700:1 7706:1 7734:1 7744:3 7748:2 7751:1 7756:1 7771:1 7777:1 7778:4 7784:3 7790:1 7796:1 7812:2 7814:1 7820:1 7825:1 7836:1 7840:1 7850:1 7857:1 7858:1 7876:1 7877:1 7886:2 7889:1 7890:1 7940:1 7944:1 7945:1 7950:1 7952:1 7957:1 7976:1 7978:2 7989:5 7991:1 8005:2 8008:3 8023:1 8034:1 8043:1 8049:2 8052:1 8054:1 8069:1 8073:1 8085:2 8095:1 8113:1 8124:1 8148:1 8153:1 8154:1 8163:1 8164:1 8171:1 8197:1 8199:1 8215:3 8228:1 8247:1 8250:1 8253:1 8254:1 8258:3 8282:3 8289:1 8295:2 8306:1 8311:1 8331:1 8332:1 8345:1 8350:6 8351:1 8356:1 8358:1 8363:1 8370:4 8378:1 8387:1 8389:1 8407:6 8409:1 8423:1 8426:1 8437:1 8445:11 8446:5 8460:2 8461:1 8469:1 8501:3 8507:1 8515:1 8521:1 8525:2 8527:1 8541:1 8544:1 8550:2 8552:2 8553:3 8555:2 8567:1 8578:1 8584:1 8600:1 8612:1 8620:2 8622:1 8632:1 8635:5 8637:1 8656:3 8658:2 8664:1 8674:4 8698:1 8699:1 8706:1 8728:1 8735:1 8741:1 8756:3 8763:1 8765:3 8771:1 8782:1 8786:1 8793:1 8820:1 8833:1 8838:1 8846:1 8853:7 8856:2 8885:3 8894:1 8895:1 8904:3 8908:1 8926:1 8947:1 8953:1 8954:3 8956:3 8958:2 8964:1 8981:1 8987:1 8990:1 9020:1 9022:1 9031:1 9041:1 9067:2 9073:1 9077:1 9090:1 9101:2 9113:1 9124:1 9131:1 9132:1 9144:1 9155:1 9172:1 9173:1 9178:1 9179:1 9191:1 9196:1 9216:1 9221:1 9222:1 9224:1 9230:5 9243:4 9249:4 9251:2 9263:1 9281:2 9300:3 9301:1 9332:2 9337:2 9348:1 9358:1 9361:4 9364:1 9388:1 9391:1 9396:12 9398:2 9402:2 9406:1 9424:2 9425:1 9434:1 9439:1 9450:1 9469:1 9488:1 9491:2 9493:1 9509:1 9524:1 9534:1 9536:1 9537:1 9540:1 9542:4 9550:1 9552:1 9555:2 9588:1 9601:4 9608:1 9610:1 9612:1 9617:1 9620:2 9626:1 9632:1 9635:1 9642:4 9660:1 9681:1 9691:1 9695:1 9696:1 9703:1 9708:1 9710:2 9713:2 9718:1 9725:2 9732:1 9739:1 9748:1 9750:2 9757:1 9764:2 9766:1 9769:1 9775:7 9778:4 9791:2 9795:3 9799:1 9802:1 9807:1 9812:2 9820:1 9834:2 9848:4 9849:2 9866:2 9868:1 9869:1 9878:3 9899:1 9916:1 9920:1 9926:3 9936:1 9943:1 9946:5 9964:1 9972:1 9980:1 9982:1 9993:3 10025:1 10030:1 10036:1 10096:1 10102:1 10118:1 10120:1 10136:1 10137:2 10141:2 10144:1 10145:2 10149:1 10152:1 10156:1 10157:5 10158:5 10159:1 10168:1 10174:2 10177:2 10181:1 10183:4 10188:1 10189:1 10195:1 10201:3 10203:3 10208:1 10213:1 10226:2 10234:1 10255:1 10257:1 10259:3 10294:1 10297:1 10312:1 10321:1 10323:1 10326:1 10341:1 10385:1 10392:1 10406:1 10412:1 10425:1 10426:2 10445:1 10463:1 10474:1 10477:1 10484:2 10500:3 10503:2 10507:1 10518:2 10523:2 10525:1 10526:1 10528:2 10537:3 10539:1 10540:1 10541:2 10550:1 10556:3 10559:2 10572:1 10587:14 10588:1 10611:1 10621:1 10625:4 10632:1 10635:2 10636:2 10648:2 10655:1 10673:1 10675:2 10682:2 10683:1 10690:1 10693:2 10695:2 10696:1 10706:1 10724:1 10738:1 10766:1 10783:1 10796:1 10803:3 10804:1 10805:1 10808:1 10814:1 10821:1 10822:3 10826:1 10827:2 10828:1 10830:1 10840:1 10841:1 10851:1 10860:1 10863:1 10864:1 10866:1 10870:2 10874:5 10875:1 10880:2 10898:1 10921:1 10934:2 10938:1 10947:1 10972:1 10975:1 10983:1 10984:1 10998:1 11016:1 11017:1 11023:5 11032:1 11043:2 11046:1 11058:1 11063:1 11071:1 11076:2 11081:1 11100:2 11117:2 11127:1 11129:2 11150:1 11170:2 11175:1 11189:1 11195:1 11201:2 11205:1 11219:1 11236:1 11244:1 11246:1 11251:5 11252:1 11253:2 11255:1 11256:2 11267:1 11273:2 11279:1 11283:1 11285:1 11290:1 11335:1 11338:2 11339:1 11357:1 11368:1 11376:1 11388:1 11393:1 11407:1 11410:1 11413:1 11439:1 11476:3 11494:2 11507:1 11520:1 11527:1 11539:1 11550:1 11552:2 11553:1 11568:1 11570:3 11579:1 11593:1 11599:1 11606:1 11647:1 11658:1 11663:1 11665:1 11666:2 11674:1 11687:1 11705:13 11710:3 11719:1 11723:2 11728:1 11739:1 11746:1 11747:2 11753:2 11767:1 11770:1 11775:1 11779:1 11780:1 11786:1 11792:2 11794:1 11798:1 11800:1 11829:1 11845:1 11850:1 11858:2 11863:1 11886:1 11887:1 11889:1 11890:1 11903:1 11923:1 11924:1 11930:2 11932:1 11944:1 11946:1 11963:1 11977:1 11982:3 11994:1 11996:1 12041:1 12042:1 12060:1 12075:1 12078:1 12082:1 12083:1 12085:2 12090:4 12101:1 12106:2 12115:2 12122:1 12138:6 12157:1 12161:2 12186:1 12193:4 12194:1 12205:1 12221:1 12223:1 12224:1 12225:1 12233:7 12236:1 12242:2 12247:1 12260:1 12264:1 12272:1 12273:1 12279:2 12283:1 12289:1 12290:1 12301:15 12306:1 12308:1 12311:1 12327:1 12342:2 12343:1 12350:3 12366:1 12371:1 12384:1 12394:1 12395:1 12397:1 12421:3 12441:1 12446:6 12449:1 12465:1 12471:1 12475:1 12478:1 12499:3 12515:1 12521:1 12525:1 12528:1 12533:2 12535:1 12537:1 12544:1 12549:1 12551:1 12558:6 12559:1 12561:1 12562:1 12563:1 12564:2 12565:1 12569:7 12570:2 12590:1 12591:1 12593:1 12595:1 12620:1 12636:1 12643:1 12675:2 12685:1 12686:1 12706:1 12711:1 12719:3 12751:1 12756:1 12758:1 12760:1 12767:1 12770:1 12773:2 12774:1 12778:1 12790:1 12794:1 12814:2 12820:1 12821:1 12829:1 12833:1 12836:7 12857:2 12861:1 12867:1 12890:1 12902:1 12903:2 12909:1 12913:1 12923:1 12929:1 12931:1 12934:1 12944:1 12957:1 12983:1 12984:1 12993:1 12997:1 13004:1 13010:1 13017:1 13052:1 13063:2 13077:4 13091:1 13104:1 13123:1 13143:1 13175:1 13199:1 13200:1 13204:3 13205:4 13212:1 13222:2 13223:2 13225:1 13229:2 13230:1 13248:1 13250:1 13256:1 13265:2 13294:1 13305:1 13312:1 13327:2 13334:1 13337:1 13349:1 13353:1 13355:1 13361:2 13367:1 13375:3 13380:2 13428:1 13430:2 13433:1 13444:1 13476:2 13477:1 13484:1 13506:1 13513:1 13517:1 13540:3 13552:1 13555:1 13558:2 13563:1 13587:1 13589:1 13595:1 13637:1 13643:2 13689:2 13693:2 13696:1 13712:1 13734:1 13762:2 13774:1 13776:3 13781:1 13793:1 13794:1 13795:1 13801:1 13804:1 13806:1 13829:1 13887:1 13891:1 13894:1 13900:2 13922:1 13928:1 13974:1 13995:2 14004:1 14010:1 14027:1 14032:1 14034:1 14035:2 14047:1 14064:2 14071:3 14075:1 14096:1 14098:1 14099:1 14113:2 14130:2 14134:1 14156:1 14168:2 14184:1 14189:1 14211:1 14213:1 14216:1 14217:1 14225:1 14229:6 14244:3 14252:1 14263:3 14266:1 14279:3 14299:1 14302:1 14311:1 14328:1 14332:1 14335:2 14377:1 14391:2 14392:1 14403:2 14409:1 14413:1 14417:4 14420:1 14424:1 14426:1 14432:1 14445:4 14446:1 14450:1 14453:1 14462:1 14465:1 14475:1 14491:2 14497:2 14532:2 14535:1 14539:1 14550:3 14559:1 14567:1 14570:1 14572:3 14587:1 14600:2 14648:1 14667:1 14676:1 14683:1 14687:14 14690:1 14704:1 14709:3 14712:1 14738:3 14772:1 14783:1 14789:2 14796:2 14817:2 14821:1 14832:2 14845:1 14876:1 14883:1 14890:1 14891:1 14892:1 14902:2 14903:1 14928:1 14929:1 14931:3 14934:1 14946:1 14950:1 14954:5 14955:2 14956:2 14957:5 14958:1 14959:1 14963:2 14965:1 14967:2 14968:3 14972:1 14973:1 14975:1 14978:1 14979:1 14987:1 15021:1 15024:1 15037:1 15060:1 15083:1 15087:1 15088:1 15109:2 15114:1 15117:1 15119:2 15120:1 15140:1 15162:1 15169:1 15170:1 15178:1 15192:1 15198:1 15217:1 15240:1 15250:1 15252:1 15254:1 15262:2 15272:1 15274:2 15281:2 15282:1 15290:1 15294:5 15299:1 15302:2 15308:1 15316:1 15321:2 15324:1 15325:4 15329:2 15334:1 15342:3 15344:2 15353:2 15359:1 15367:1 15372:1 15402:1 15407:13 15408:1 15422:1 15426:1 15431:1 15432:4 15437:1 15472:1 15476:1 15490:1 15491:1 15497:2 15499:1 15507:1 15512:4 15524:1 15525:1 15534:1 15538:1 15541:2 15575:2 15580:1 15596:5 15603:1 15617:2 15619:1 15622:1 15646:1 15661:2 15667:1 15688:1 15703:2 15705:3 15719:1 15720:1 15722:1 15731:1 15763:1 15765:1 15768:1 15787:1 15790:1 15799:1 15808:2 15814:1 15821:1 15828:1 15837:1 15845:2 15858:2 15862:1 15864:2 15870:1 15873:1 15886:1 15889:1 15909:1 15930:1 15938:1 15966:1 15979:1 15982:1 16000:1 16005:1 16021:2 16027:1 16036:1 16037:3 16041:1 16047:1 16054:3 16059:2 16060:2 16064:2 16070:1 16071:10 16109:1 16111:2 16112:1 16116:2 16117:1 16121:1 16128:1 16133:1 16139:1 16140:1 16156:1 16176:1 16189:1 16203:1 16204:1 16222:3 16226:1 16236:1 16244:2 16256:1 16257:1 16261:1 16266:1 16276:1 16279:1 16309:1 16311:1 16312:1 16313:1 16339:1 16343:1 16344:1 16347:2 16379:1 16401:1 16405:1 16425:1 16426:2 16433:1 16437:1 16439:1 16450:1 16452:1 16466:1 16487:1 16514:1 16540:1 16542:1 16551:2 16570:2 16651:2 16657:2 16658:1 16664:1 16674:1 16680:1 16687:1 16703:1 16721:1 16727:1 16758:1 16770:1 16771:1 16787:1 16791:3 16795:1 16805:1 16838:1 16848:14 16860:1 16880:1 16906:1 16932:1 16954:13 16963:3 16964:1 16975:1 16977:5 16990:1 16997:1 17001:2 17012:1 17025:2 17048:4 17058:2 17068:2 17084:1 17085:1 17087:1 17107:3 17112:2 17125:2 17126:3 17137:2237 17147:1 17151:1 17161:1 17162:1 17188:1 17197:1 17200:1 17201:1 17220:2 17235:1 17251:1 17262:1 17263:1 17282:1 17296:1 17307:1 17311:1 17314:1 17317:2 17321:5 17322:3 17332:1 17339:1 17341:1 17351:1 17359:1 17375:1 17386:1 17399:1 17406:1 17407:1 17448:1 17450:3 17453:2 17459:1 17494:1 17502:1 17503:3 17521:1 17534:2 17549:1 17551:1 17564:2 17566:1 17573:1 17588:1 17591:1 17603:2 17608:1 17616:1 17627:1 17636:1 17642:2 17643:2 17646:2 17655:1 17661:1 17670:1 17672:1 17691:2 17692:2 17708:2 17712:1 17716:1 17728:2 17752:2 17753:1 17758:1 17761:1 17770:1 17771:2 17777:8 17787:1 17801:1 17803:1 17818:1 17823:2 17824:1 17825:1 17833:2 17846:5 17860:1 17862:1 17891:1 17900:4 17905:1 17907:2 17912:1 17914:2 17929:4 17930:1 17935:1 17938:1 17942:1 17956:1 17961:3 17968:2 17970:1 17975:3 18006:3 18009:1 18017:1 18031:1 18034:1 18038:2 18039:2 18046:1 18047:1 18050:1 18068:1 18077:1 18078:1 18079:1 18080:1 18083:1 18088:1 18117:1 18130:2 18144:1 18145:2 18146:1 18147:1 18152:1 18153:1 18158:1 18182:1 18183:1 18185:1 18187:1 18196:1 18203:1 18214:1 18227:1 18229:1 18237:1 18238:1 18249:1 18252:1 18268:1 18276:1 18279:2 18282:4 18287:1 18288:3 18289:1 18335:1 18340:1 18354:2 18360:1 18363:1 18368:2 18369:1 18371:2 18388:1 18389:1 18392:3 18399:2 18404:1 18405:2 18407:2 18409:1 18421:5 18430:2 18449:1 18458:1 18460:1 18462:1 18465:2 18466:4 18494:1 18495:1 18504:2 18505:1 18507:1 18510:1 18526:1 18531:2 18548:1 18552:1 18553:2 18569:1 18577:3 18578:18 18579:2 18586:1 18592:5 18596:1 18612:1 18613:1 18627:1 18643:1 18652:1 18653:1 18663:1 18672:1 18678:1 18683:1 18695:1 18697:1 18701:1 18705:1 18726:1 18738:1 18768:4 18787:1 18789:2 18802:2 18807:1 18817:2 18828:1 18830:1 18840:2 18850:1 18865:8 18871:2 18878:1 18886:1 18916:1 18917:1 18927:1 18937:1 18968:1 18969:1 18973:4 18987:3 18996:1 18999:1 19002:1 19006:1 19010:1 19011:1 19020:1 19023:2 19051:2 19057:3 19063:2 19066:2 19073:2 19078:1 19080:1 19081:1 19089:2 19093:1 19116:4 19126:2 19149:2 19153:1 19162:1 19178:2 19183:1 19190:2 19191:1 19198:5 19202:1 19206:2 19207:1 19213:1 19215:2 19227:3 19258:2 19264:1 19277:1 19296:1 19297:1 19298:1 19302:2 19304:1 19312:2 19319:2 19321:2 19327:2 19331:2 19332:1 19337:2 19353:1 19358:2 19381:2 19392:1 19393:2 19401:1 19402:1 19403:4 19418:1 19420:1 19427:2 19431:1 19435:1 19440:1 19441:1 19446:2 19447:1 19450:1 19460:1 19463:1 19480:1 19481:1 19486:1 19510:1 19517:1 19519:1 19524:2 19525:2 19538:1 19550:1 19618:1 19640:1 19652:2 19656:1 19664:2 19665:2 19667:1 19669:1 19673:1 19674:1 19679:1 19687:1 19694:2 19699:3 19705:1 19714:1 19723:1 19740:1 19746:1 19750:1 19758:1 19768:1 19769:1 19787:2 19789:1 19790:1 19791:1 19794:1 19796:2 19799:1 19800:1 19811:1 19814:1 19818:2 19825:2 19830:2 19833:1 19838:2 19841:1 19851:1 19853:2 19874:13 19886:2 19887:2 19892:2 19902:1 19916:1 19929:1 19931:1 19943:1 19948:1 19949:1 19952:1 19955:1 20000:2 20010:1 20019:2 20024:1 20026:1 20030:1 20034:4 20036:3 20037:1 20046:2 20054:1 20056:1 20059:1 20061:1 20082:1 20083:1 20085:2 20087:4 20088:2 20111:1 20114:1 20151:1 20171:3 20174:1 20176:4 20178:3 20179:3 20181:1 20182:1 20186:1 20189:2 20193:1 20194:2 20204:1 20205:5 20212:1 20213:1 20218:1 20223:1 20236:1 20244:2 20252:2 20255:2 20269:1 20315:2 20317:2 20324:1 20329:1 20338:1 20344:1 20351:1 20364:1 20365:2 20368:1 20374:1 20375:1 20377:1 20381:1 20383:1 20392:1 20395:1 20396:1 20405:1 20409:1 20421:2 20423:1 20425:5 20431:1 20440:1 20441:3 20446:1 20447:3 20455:1 20463:1 20470:1 20484:2 20487:1 20490:1 20491:1 20492:4 20498:2 20503:1 20512:2 20513:9 20515:1 20519:1 20525:1 20526:1 20529:1 20531:1 20547:1 20549:1 20553:1 20575:7 20576:1 20589:1 20609:1 20624:1 20631:5 20632:1 20640:1 20649:1 20664:1 20665:1 20687:1 20690:2 20701:1 20717:1 20722:1 20723:1 20726:6 20728:1 20735:3 20739:1 20740:3 20749:1 20753:1 20757:1 20759:1 20773:1 20775:3 20787:1 20794:1 20795:2 20800:3 20809:1 20815:1 20817:1 20827:1 20834:1 20846:1 20851:1 20863:1 20866:1 20890:1 20895:1 20902:1 20903:1 20904:1 20906:1 20914:1 20921:2 20935:10 20936:3 20941:1 20952:2 20957:2 20962:4 20969:1 20970:3 20982:2 20996:1 21021:1 21032:1 21033:1 21037:2 21040:2 21055:1 21056:1 21080:1 21083:1 21084:1 21085:1 21086:1 21101:1 21104:1 21121:1 21128:2 21131:1 21138:2 21139:1 21142:1 21175:3 21204:3 21215:1 21249:1 21253:1 21269:1 21294:3 21297:2 21304:5 21314:2 21322:1 21328:1 21330:3 21341:2 21344:2 21345:3 21358:1 21368:4 21406:1 21410:1 21413:1 21436:1 21446:1 21458:1 21463:1 21472:2 21484:1 21502:1 21505:1 21510:2 21527:2 21534:1 21537:2 21548:1 21549:1 21559:1 21566:1 21575:1 21576:2 21579:2 21584:3 21590:1 21592:1 21605:1 21609:1 21624:3 21625:2 21628:2 21641:1 21644:1 21650:1 21695:1 21696:4 21698:1 21701:1 21706:1 21712:1 21714:1 21715:2 21716:1 21718:1 21719:1 21722:1 21749:1 21766:1 21769:1 21779:1 21789:1 21832:1 21845:2 21853:1 21878:2 21884:1 21941:1 21943:2 21951:1 21953:1 21964:1 21979:1 21994:1 21996:1 21998:1 22008:1 22017:1 22047:1 22057:1 22066:1 22084:1 22090:1 22101:2 22113:1 22136:2 22140:1 22165:2 22176:3 22186:1 22212:1 22213:7 22228:1 22233:1 22241:3 22259:1 22261:1 22267:1 22270:4 22279:1 22280:1 22287:1 22293:1 22317:3 22319:1 22340:2 22341:1 22345:1 22346:1 22381:1 22425:1 22426:1 22451:1 22454:1 22455:1 22461:1 22467:3 22469:2 22473:1 22475:1 22476:1 22477:1 22479:2 22482:1 22483:1 22484:1 22494:1 22505:1 22518:6 22535:1 22536:1 22539:1 22544:1 22551:1 22552:1 22555:1 22557:1 22582:11 22585:6 22587:1 22609:1 22611:2 22618:1 22619:1 22630:1 22635:1 22636:1 22639:1 22643:3 22651:2 22667:1 22670:1 22681:1 22728:1 22756:1 22777:2 22781:1 22787:1 22794:1 22796:1 22800:2 22809:2 22813:1 22817:1 22822:2 22823:2 22826:1 22843:1 22845:1 22850:1 22857:1 22858:2 22863:1 22866:1 22874:1 22890:1 22901:3 22913:2 22917:1 22918:1 22930:1 22932:1 22941:2 22946:1 22950:1 22952:2 22957:1 22968:1 22974:1 22975:1 23002:17 23003:2 23026:1 23032:1 23033:1 23036:1 23045:1 23055:1 23066:1 23067:1 23074:2 23078:1 23085:1 23098:2 23101:1 23105:2 23110:1 23111:1 23131:1 23133:1 23139:1 23143:1 23145:1 23160:1 23166:1 23173:1 23198:1 23220:10 23221:1 23235:1 23240:2 23241:1 23247:1 23253:1 23270:1 23276:1 23280:1 23285:6 23286:1 23291:1 23304:1 23308:1 23311:2 23314:1 23340:1 23353:2 23359:1 23365:1 23371:1 23386:1 23398:1 23407:1 23422:1 23426:2 23428:1 23437:2 23448:1 23452:1 23459:1 23473:1 23527:1 23528:2 23534:1 23538:1 23540:1 23560:1 23564:2 23569:5 23571:1 23577:1 23579:1 23594:1 23617:4 23629:1 23632:1 23636:1 23648:1 23650:7 23663:1 23677:1 23682:1 23685:1 23688:2 23689:1 23698:1 23701:1 23715:1 23746:1 23759:1 23769:1 23777:2 23821:1 23826:1 23838:1 23853:1 23860:1 23889:1 23919:2 23928:1 23929:2 23944:1 23945:1 23952:1 23953:1 23958:1 23971:1 23988:3 23991:1 24023:4 24030:1 24035:1 24058:1 24065:1 24074:2 24075:1 24084:1 24094:14 24095:2 24105:2 24115:1 24124:1 24126:1 24151:2 24163:1 24165:1 24183:1 24186:2 24188:2 24199:1 24211:4 24215:3 24221:3 24224:2 24226:4 24228:1 24230:1 24245:1 24253:1 24300:1 24324:1 24337:1 24340:2 24350:1 24362:2 24370:2 24380:1 24384:2 24386:1 24387:1 24388:2 24415:6 24417:1 24418:1 24425:1 24426:1 24434:1 24439:1 24442:1 24446:1 24447:1 24467:1 24470:1 24471:2 24483:1 24531:1 24537:2 24553:1 24561:1 24562:1 24569:2 24596:1 24621:1 24634:1 24635:1 24641:5 24652:1 24653:1 24677:1 24684:1 24689:1 24690:1 24703:1 24707:1 24711:2 24721:1 24744:1 24746:2 24747:2 24758:3 24769:1 24785:1 24788:1 24793:1 24797:2 24823:1 24838:2 24839:1 24849:1 24851:1 24886:1 24895:2 24912:1 24915:3 24918:1 24921:1 24922:1 24931:1 24936:1 24938:2 24950:1 24956:1 24961:2 24972:2 24974:1 24977:1 24985:2 24986:1 24991:1 25000:1 25013:1 25016:1 25021:1 25026:1 25028:1 25032:2 25037:1 25063:1 25077:5 25081:3 25084:2 25098:1 25099:1 25108:1 25126:1 25132:2 25137:1 25143:1 25148:2 25155:2 25163:1 25164:1 25172:2 25174:1 25181:1 25187:1 25190:1 25192:1 25193:1 25200:1 25201:1 25204:1 25205:1 25206:1 25210:2 25213:1 25217:2 25219:1 25229:2 25238:2 25243:1 25247:1 25279:1 25288:1 25297:4 25311:1 25318:2 25335:1 25358:1 25361:1 25401:1 25404:2 25439:1 25444:1 25445:2 25459:1 25465:2 25480:1 25486:1 25487:1 25490:1 25492:3 25499:5 25521:1 25532:1 25563:6 25598:1 25600:1 25613:1 25652:1 25655:1 25656:1 25660:2 25674:2 25680:1 25691:1 25699:1 25715:1 25734:1 25742:1 25745:1 25759:2 25760:3 25761:1 25766:1 25773:2 25775:1 25778:2 25790:1 25792:1 25799:1 25801:5 25811:1 25813:1 25815:1 25817:1 25828:2 25832:2 25836:2 25840:1 25845:1 25847:5 25851:1 25860:1 25867:3 25870:1 25883:3 25884:1 25886:3 25906:3 25922:1 25924:1 25941:1 25949:1 25963:1 25969:3 25971:4 25977:5 26008:4 26021:1 26023:1 26034:1 26045:1 26051:1 26052:1 26054:1 26064:1 26081:1 26083:5 26088:1 26092:2 26114:1 26120:1 26126:1 26131:1 26146:1 26158:1 26162:1 26164:1 26172:1 26173:2 26179:1 26182:1 26196:3 26231:1 26233:1 26234:1 26245:7 26249:1 26252:1 26257:1 26259:1 26263:2 26276:1 26308:5 26351:1 26401:1 26468:1 26488:2 26495:1 26497:1 26498:2 26499:1 26502:2 26504:3 26511:1 26515:1 26516:1 26525:1 26539:1 26552:1 26571:1 26576:1 26611:3 26620:2 26648:2 26653:2 26668:1 26670:1 26683:1 26699:1 26715:1 26721:3 26722:1 26727:1 26728:2 26758:1 26760:1 26763:4 26767:2 26780:1 26784:1 26806:1 26813:1 26819:1 26825:1 26836:1 26844:1 26862:1 26866:1 26868:3 26876:1 26878:1 26892:1 26901:2 26903:1 26919:1 26940:2 26943:2 26961:1 26965:1 26966:3 26973:3 26974:3 26975:1 26978:1 27022:5 27025:1
1 12:1 34:1 43:1 50:1 55:1 60:1 90:1 108:1 124:1 137:1 138:3 147:1 152:2 153:1 159:1 165:1 168:3 178:5 189:1 194:1 221:1 231:1 236:7 248:1 255:3 262:1 277:2 301:1 312:4 314:3 318:3 326:3 333:1 337:2 356:3 363:1 375:2 392:5 394:5 403:1 414:1 446:1 451:1 480:2 509:1 518:1 522:2 538:1 548:3 554:1 565:1 571:1 573:4 575:1 580:1 588:2 595:1 656:1 665:1 698:1 707:1 708:2 728:1 730:2 731:1 738:1 750:1 776:5 779:1 782:1 786:1 787:4 798:1 814:14 815:4 823:3 841:3 848:1 853:1 854:4 856:2 857:8 859:1 861:2 863:4 877:2 895:5 898:4 909:1 910:1 943:2 951:1 964:1 994:1 1005:1 1011:1 1028:1 1029:1 1044:1 1053:2 1054:1 1057:1 1100:3 1101:2 1105:1 1107:2 1108:1 1111:2 1118:1 1119:1 1132:1 1139:1 1140:1 1141:1 1145:2 1156:2 1161:2 1170:1 1178:1 1184:2 1189:1 1214:1 1215:1 1230:1 1243:1 1247:1 1249:1 1253:1 1256:1 1264:1 1275:1 1293:1 1296:1 1300:1 1301:2 1303:1 1311:1 1318:1 1319:2 1332:1 1334:1 1340:3 1346:1 1352:1 1361:1 1367:1 1370:1 1371:2 1373:1 1385:1 1390:1 1406:1 1411:4 1417:7 1420:2 1429:1 1450:2 1458:1 1461:1 1465:1 1467:1 1476:1 1480:1 1482:1 1485:2 1498:2 1508:1 1511:1 1513:1 1517:2 1518:1 1526:1 1529:2 1540:1 1545:1 1549:1 1556:1 1560:1 1564:1 1570:1 1580:1 1588:1 1595:2 1598:1 1614:1 1615:5 1621:1 1626:1 1632:1 1636:1 1639:3 1642:1 1643:2 1645:1 1651:2 1653:6 1660:1 1676:4 1678:2 1682:1 1692:1 1702:1 1704:1 1710:2 1713:2 1715:4 1717:1 1718:1 1721:1 1731:1 1742:2 1744:1 1750:1 1751:1 1757:2 1763:2 1764:1 1765:1 1778:2 1781:1 1782:1 1787:1 1821:1 1825:8 1830:1 1836:1 1840:1 1845:4 1850:1 1851:1 1854:2 1859:1 1862:2 1873:1 1877:1 1884:1 1896:1 1902:1 1905:1 1920:2 1921:1 1923:1 1924:1 1926:2 1929:1 1950:1 1966:11 1970:1 1975:1 1979:1 1984:1 1999:1 2006:2 2007:1 2025:2 2038:3 2040:1 2052:1 2053:1 2056:1 2061:2 2078:2 2079:2 2081:1 2083:3 2084:5 2087:1 2089:1 2090:2 2095:2 2096:2 2097:1 2098:2 2099:4 2103:1 2105:5 2107:3 2109:5 2111:7 2113:1 2123:1 2131:1 2146:1 2149:1 2152:2 2155:3 2158:1 2162:1 2170:2 2172:1 2179:1 2190:1 2191:1 2200:1 2208:1 2210:1 2236:1 2243:1 2247:1 2262:1 2278:3 2280:1 2287:1 2291:1 2297:1 2306:3 2316:2 2317:1 2323:1 2325:1 2330:1 2334:1 2345:1 2347:2 2353:3 2356:2 2358:1 2361:6 2365:1 2366:1 2367:1 2379:1 2382:1 2397:1 2408:4 2410:1 2411:1 2416:1 2430:2 2436:1 2437:1 2438:1 2447:6 2452:2 2458:2 2460:8 2465:4 2467:1 2474:2 2475:1 2481:1 2483:2 2485:1 2490:3 2492:2 2503:2 2515:1 2516:2 2520:3 2524:1 2528:1 2557:1 2561:1 2562:2 2563:2 2575:3 2576:1 2577:1 2579:1 2583:5 2590:2 2595:1 2612:1 2614:1 2619:1 2637:1 2639:2 2641:1 2656:4 2660:1 2664:1 2667:14 2689:3 2690:1 2694:1 2695:1 2697:1 2706:2 2711:2 2714:1 2731:18 2733:1 2743:1 2756:2 2758:3 2773:1 2783:1 2814:1 2822:1 2826:1 2840:1 2841:5 2852:3 2856:1 2860:1 2866:1 2879:1 2889:1 2902:1 2904:1 2908:1 2915:2 2923:1 2938:2 2949:1 2956:3 2968:1 2991:1 2992:2 3026:1 3027:2 3028:1 3031:1 3034:1 3048:6 3103:1 3137:1 3147:2 3152:1 3162:1 3192:1 3193:1 3194:1 3203:1 3209:1 3210:1 3213:1 3230:1 3232:1 3252:1 3268:1 3286:2 3291:1 3309:1 3314:1 3315:13 3318:1 3325:1 3328:2 3330:2 3331:2 3332:1 3346:1 3350:1 3352:1 3358:1 3359:1 3366:1 3394:1 3399:2 3400:1 3406:1 3407:1 3410:3 3414:2 3423:1 3446:1 3459:1 3470:1 3473:1 3480:2 3483:1 3486:2 3488:1 3494:3 3506:1 3510:1 3513:2 3520:1 3523:1 3540:2 3542:1 3554:1 3560:3 3561:1 3575:1 3576:1 3581:4 3583:1 3587:2 3590:1 3591:2 3600:4 3608:1 3610:2 3611:2 3629:1 3631:2 3646:1 3650:2 3652:2 3660:1 3683:2 3691:6 3692:4 3698:2 3730:1 3733:2 3737:1 3742:1 3756:1 3759:1 3760:2 3779:1 3787:2 3790:1 3791:1 3794:1 3798:1 3813:2 3828:2 3838:1 3845:4 3846:1 3848:1 3849:1 3853:2 3856:1 3859:1 3863:2 3875:1 3882:1 3888:1 3898:1 3912:1 3917:1 3937:1 3952:7 3957:1 3977:3 3984:1 3993:1 3999:1 4003:1 4005:2 4018:2 4032:2 4038:1 4057:1 4062:1 4064:2 4084:4 4097:1 4107:1 4116:1 4118:1 4125:1 4140:2 4160:1 4164:1 4167:1 4172:1 4173:3 4175:1 4189:1 4201:1 4217:3 4218:1 4226:1 4234:5 4246:1 4249:1 4275:4 4284:2 4294:1 4295:1 4302:3 4307:1 4319:4 4344:2 4361:1 4365:2 4369:3 4383:3 4386:1 4394:1 4403:1 4419:1 4422:2 4429:1 4431:1 4445:1 4446:1 4461:1 4467:1 4477:1 4488:14 4490:2 4499:1 4501:1 4502:1 4509:1 4516:1 4527:1 4535:1 4546:1 4554:1 4608:3 4625:1 4629:4 4631:7 4632:3 4634:1 4637:2 4638:2 4639:1 4642:1 4643:2 4645:6 4646:4 4650:1 4651:2 4652:7 4658:2 4659:4 4662:1 4663:1 4674:1 4677:1 4701:1 4718:1 4737:2 4744:1 4762:1 4767:1 4776:1 4801:1 4834:1 4842:1 4866:1 4877:1 4887:2 4911:1 4916:1 4941:3 4945:2 4955:1 4982:1 4985:1 5006:3 5018:1 5037:1 5050:1 5055:1 5064:2 5075:1 5081:1 5088:1 5094:1 5101:1 5121:1 5130:1 5153:1 5156:1 5173:1 5197:2 5207:1 5212:2 5216:1 5221:1 5230:5 5231:1 5234:2 5236:1 5239:2 5240:1 5255:1 5256:1 5281:3 5292:2 5293:1 5296:1 5309:6 5314:1 5315:1 5330:2 5336:1 5383:1 5398:1 5416:1 5420:1 5422:1 5440:1 5444:1 5445:1 5446:1 5453:2 5456:1 5467:1 5479:1 5503:1 5510:2 5521:2 5535:2 5538:1 5539:1 5541:1 5561:1 5565:6 5567:1 5568:1 5575:1 5576:2 5583:1 5585:1 5586:1 5588:1 5589:1 5591:1 5620:1 5623:1 5624:1 5629:1 5632:2 5634:1 5639:1 5641:1 5642:2 5643:1 5647:12 5680:3 5686:1 5703:1 5715:1 5725:3 5735:2 5751:6 5756:1 5761:1 5763:1 5801:1 5805:1 5828:1 5834:1 5836:1 5838:1 5844:2 5845:3 5847:1 5849:1 5850:1 5852:2 5853:1 5859:2 5860:4 5861:3 5872:1 5897:1 5904:1 5938:1 5954:1 5987:1 5991:4 5992:2 6006:1 6015:1 6047:1 6055:1 6066:1 6082:1 6092:2 6115:1 6129:2 6137:2 6146:1 6152:1 6162:1 6210:1 6223:1 6233:2 6235:1 6238:1 6242:1 6246:1 6254:7 6262:2 6265:3 6267:1 6273:1 6275:1 6279:1 6287:2 6300:1 6301:1 6307:1 6310:1 6340:1 6344:1 6345:3 6357:2 6361:1 6366:2 6385:1 6389:1 6394:1 6398:1 6401:2 6402:1 6430:1 6449:2 6453:1 6460:1 6465:1 6468:1 6469:1 6477:1 6486:1 6490:6 6498:2 6516:1 6524:1 6528:1 6534:1 6537:3 6538:2 6545:1 6549:4 6550:1 6552:1 6557:5 6560:1 6564:1 6587:1 6588:1 6590:1 6599:1 6602:1 6604:1 6620:1 6621:1 6626:4 6631:4 6641:1 6654:1 6658:1 6672:3 6674:1 6677:1 6679:1 6686:1 6697:1 6703:1 6705:1 6712:1 6721:1 6728:1 6742:1 6772:1 6797:1 6800:1 6806:1 6810:2 6846:1 6857:1 6859:2 6860:5 6864:3 6869:1 6870:1 6876:3 6881:1 6894:6 6895:1 6898:2 6912:1 6913:3 6922:1 6935:1 6943:2 6946:1 6951:1 6959:1 6962:1 6964:1 6969:1 6980:1 6981:1 6988:1 6989:2 6997:1 7002:1 7006:1 7015:1 7016:1 7027:1 7052:3 7067:4 7068:6 7081:2 7086:1 7090:4 7092:2 7093:3 7094:1 7109:1 7116:4 7117:2 7121:1 7136:45 7137:2 7140:2 7147:1 7155:9 7156:5 7162:2 7194:1 7201:1 7202:1 7211:1 7222:1 7224:1 7229:3 7230:2 7235:1 7242:1 7244:1 7256:2 7264:3 7276:1 7294:2 7300:1 7305:1 7325:1 7326:2 7352:1 7355:1 7356:3 7385:1 7389:1 7390:1 7391:1 7402:2 7446:1 7461:1 7477:1 7489:1 7491:1 7507:1 7508:1 7517:1 7520:1 7523:1 7547:1 7556:1 7558:1 7559:2 7568:1 7575:1 7576:1 7580:2 7592:1 7593:1 7609:22 7618:1 7619:1 7637:3 7640:2 7642:1 7644:2 7670:1 7676:1 7696:6 7698:1 7700:1 7706:1 7734:1 7744:3 7747:1 7748:2 7751:1 7756:1 7771:1 7777:1 7778:4 7784:3 7790:1 7796:1 7812:2 7814:1 7820:1 7825:1 7836:1 7840:1 7850:1 7857:1 7858:1 7876:1 7877:1 7886:2 7889:1 7890:1 7940:1 7944:1 7945:1 7950:1 7952:1 7957:1 7976:1 7978:2 7989:5 7991:1 8005:2 8008:3 8023:1 8034:1 8043:1 8049:2 8052:1 8054:1 8069:1 8073:1 8085:2 8095:1 8113:1 8124:1 8148:1 8153:1 8154:1 8163:1 8164:1 8171:1 8197:1 8199:1 8215:3 8228:1 8247:1 8250:1 8253:1 8254:1 8258:3 8282:3 8289:1 8295:2 8306:1 8311:1 8331:1 8332:1 8345:1 8350:6 8351:1 8356:1 8358:1 8363:1 8370:4 8378:1 8387:1 8389:1 8407:6 8409:1 8423:1 8426:1 8437:1 8445:11 8446:5 8460:2 8461:1 8469:1 8501:3 8507:1 8515:1 8521:1 8525:2 8527:1 8541:1 8544:1 8550:2 8552:2 8553:3 8555:2 8567:1 8578:1 8584:1 8600:1 8612:1 8620:2 8622:1 8632:1 8635:5 8637:1 8650:1 8656:3 8658:2 8663:1 8664:1 8674:4 8698:1 8699:1 8706:1 8728:1 8735:1 8741:1 8756:3 8763:1 8765:3 8771:1 8782:1 8786:1 8793:1 8820:1 8833:1 8838:1 8846:1 8853:7 8856:2 8885:3 8894:1 8895:1 8904:3 8908:1 8926:1 8947:1 8953:1 8954:3 8956:3 8958:2 8964:1 8981:1 8987:1 8990:1 9020:2 9022:1 9031:1 9041:1 9067:2 9073:1 9077:1 9087:1 9090:1 9101:2 9113:1 9124:1 9131:1 9132:1 9144:1 9155:1 9172:1 9173:1 9178:1 9179:1 9191:1 9196:1 9216:1 9218:1 9221:1 9222:1 9224:1 9230:5 9243:4 9249:4 9251:2 9263:1 9281:2 9300:3 9301:1 9328:1 9332:2 9337:2 9348:1 9358:1 9361:4 9364:1 9388:2 9391:1 9396:12 9398:2 9402:2 9406:1 9424:2 9425:1 9434:1 9439:1 9450:1 9469:1 9488:1 9491:2 9493:1 9509:1 9524:1 9534:1 9536:1 9537:1 9540:1 9542:4 9550:1 9552:1 9555:2 9588:1 9601:4 9608:1 9610:1 9612:1 9617:1 9620:3 9626:1 9632:1 9635:1 9642:4 9660:1 9681:1 9691:1 9695:1 9696:1 9703:1 9708:1 9710:2 9713:2 9718:1 9725:2 9732:1 9739:1 9748:1 9750:2 9757:1 9764:2 9766:1 9769:1 9775:7 9778:4 9791:2 9795:3 9799:1 9802:1 9807:1 9812:2 9820:1 9834:2 9848:5 9849:2 9866:2 9868:1 9869:1 9878:3 9899:1 9916:1 9920:1 9926:3 9936:2 9943:1 9946:6 9964:1 9972:1 9980:1 9982:1 9993:3 10025:1 10030:1 10036:1 10096:1 10102:1 10118:1 10120:1 10136:1 10137:2 10141:2 10144:1 10145:2 10149:1 10152:1 10156:1 10157:5 10158:5 10159:1 10168:1 10174:2 10177:2 10181:1 10183:4 10188:1 10189:1 10192:1 10195:1 10201:3 10203:3 10208:1 10213:1 10226:2 10234:1 10255:1 10257:1 10259:3 10294:1 10297:1 10312:1 10321:1 10323:1 10326:1 10341:1 10385:1 10392:1 10406:1 10412:1 10425:1 10426:2 10445:1 10463:1 10474:1 10477:1 10484:2 10500:3 10503:2 10507:1 10518:2 10523:2 10525:1 10526:1 10528:2 10531:1 10537:3 10539:1 10540:1 10541:2 10550:1 10556:3 10559:2 10572:1 10587:15 10588:1 10611:1 10621:1 10625:4 10632:1 10635:2 10636:2 10648:2 10655:1 10673:1 10675:2 10682:2 10683:1 10690:1 10693:2 10695:2 10696:1 10706:1 10724:1 10738:1 10766:1 10783:1 10796:1 10803:3 10804:1 10805:1 10808:1 10814:1 10821:1 10822:4 10826:1 10827:2 10828:1 10830:1 10840:1 10841:1 10851:1 10860:1 10863:1 10864:1 10866:1 10870:2 10874:5 10875:1 10880:2 10898:1 10921:1 10934:2 10938:1 10947:1 10972:1 10975:1 10983:1 10984:1 10998:1 11009:1 11016:1 11017:1 11023:5 11032:1 11043:2 11046:1 11058:1 11063:1 11071:1 11076:2 11081:2 11100:2 11117:2 11127:1 11129:2 11150:1 11170:2 11175:1 11189:1 11195:1 11201:2 11205:1 11219:1 11236:1 11244:1 11246:1 11251:5 11252:1 11253:2 11255:1 11256:2 11267:1 11273:2 11279:1 11283:1 11285:1 11290:1 11335:1 11338:2 11339:1 11357:1 11368:1 11376:1 11388:1 11393:1 11407:1 11410:1 11413:1 11423:1 11439:1 11476:3 11494:2 11507:1 11520:1 11527:1 11539:1 11545:1 11550:1 11552:2 11553:1 11568:1 11570:3 11579:1 11593:1 11599:1 11606:1 11647:1 11658:1 11663:1 11665:1 11666:2 11674:1 11687:1 11705:13 11710:3 11719:1 11723:2 11728:1 11739:1 11746:1 11747:3 11753:2 11767:1 11770:1 11775:1 11779:1 11780:1 11786:1 11792:2 11794:1 11798:1 11800:1 11829:1 11845:1 11850:1 11858:2 11863:1 11886:1 11887:1 11889:1 11890:1 11903:1 11923:1 11924:1 11930:2 11932:1 11944:1 11946:1 11963:1 11977:1 11982:3 11994:2 11996:1 12041:1 12042:1 12060:1 12075:1 12078:1 12082:1 12083:1 12085:2 12090:4 12101:1 12106:2 12115:2 12122:1 12138:6 12157:1 12161:2 12186:1 12193:4 12194:1 12205:1 12221:1 12223:1 12224:1 12225:1 12233:7 12236:1 12242:2 12247:1 12260:1 12264:1 12272:1 12273:1 12279:2 12283:1 12289:1 12290:1 12301:15 12306:1 12308:1 12311:1 12327:1 12342:2 12343:1 12350:3 12366:1 12371:2 12384:2 12394:1 12395:1 12397:1 12421:3 12441:1 12446:6 12449:1 12465:1 12471:1 12475:1 12478:1 12499:3 12515:1 12521:1 12525:1 12528:1 12533:2 12535:1 12537:1 12544:1 12549:1 12551:1 12558:6 12559:1 12561:1 12562:1 12563:1 12564:2 12565:1 12569:7 12570:2 12590:1 12591:1 12593:1 12595:1 12620:1 12636:1 12643:1 12675:2 12685:1 12686:1 12706:1 12711:1 12719:3 12751:1 12756:1 12758:1 12760:1 12767:1 12770:1 12773:2 12774:1 12778:1 12790:1 12794:1 12814:2 12820:1 12821:1 12829:1 12830:1 12833:1 12836:7 12857:3 12861:1 12867:1 12890:1 12902:1 12903:2 12909:1 12913:1 12923:1 12929:1 12931:1 12934:1 12944:1 12957:1 12983:1 12984:1 12990:1 12993:1 12997:1 13004:1 13010:1 13017:1 13052:1 13063:2 13077:4 13091:1 13104:1 13123:1 13143:1 13175:1 13199:1 13200:1 13204:3 13205:4 13212:1 13222:2 13223:2 13225:1 13229:2 13230:1 13248:1 13250:1 13256:1 13265:2 13285:1 13294:1 13305:1 13312:1 13327:2 13334:1 13337:1 13349:1 13353:1 13355:1 13361:2 13367:1 13375:3 13380:2 13428:1 13430:2 13433:1 13444:2 13476:2 13477:1 13484:1 13491:1 13506:1 13513:1 13517:1 13540:3 13552:1 13555:1 13558:2 13563:1 13587:1 13589:1 13595:1 13637:1 13643:2 13689:2 13693:2 13696:1 13702:1 13712:1 13734:1 13762:2 13774:1 13776:3 13781:1 13793:1 13794:1 13795:2 13801:1 13804:1 13806:1 13829:1 13887:1 13891:1 13894:1 13900:2 13922:1 13928:1 13974:1 13995:2 14004:1 14010:1 14027:1 14032:1 14034:1 14035:2 14047:1 14064:2 14071:3 14075:1 14096:1 14098:1 14099:1 14107:1 14113:2 14130:2 14134:1 14156:1 14158:1 14168:2 14184:1 14189:2 14211:1 14213:1 14216:1 14217:1 14225:1 14229:6 14244:3 14252:1 14263:3 14266:1 14279:3 14299:1 14302:1 14311:1 14328:1 14332:1 14335:2 14377:1 14391:2 14392:1 14403:2 14409:1 14413:1 14417:4 14420:1 14424:1 14426:1 14432:1 14445:4 14446:1 14450:1 14453:1 14462:1 14465:1 14475:1 14491:2 14497:2 14532:2 14535:1 14539:1 14550:3 14559:1 14567:1 14570:1 14572:3 14587:1 14600:3 14615:1 14648:1 14667:1 14676:1 14683:1 14687:14 14690:1 14704:1 14709:3 14712:1 14738:3 14772:1 14783:1 14789:2 14796:2 14817:2 14821:1 14832:2 14845:1 14876:1 14883:1 14890:1 14891:1 14892:1 14902:2 14903:1 14928:1 14929:1 14931:3 14934:1 14946:1 14950:1 14954:5 14955:2 14956:2 14957:5 14958:1 14959:1 14963:2 14965:1 14967:2 14968:3 14972:1 14973:1 14975:1 14978:1 14979:1 14987:1 15021:1 15024:1 15037:1 15060:1 15069:1 15083:1 15087:2 15088:1 15109:2 15114:1 15117:1 15119:2 15120:2 15140:1 15162:1 15169:1 15170:1 15178:1 15192:1 15198:1 15217:1 15240:1 15250:1 15252:1 15254:1 15262:2 15272:1 15274:2 15281:2 15282:1 15290:1 15294:5 15299:1 15302:2 15308:1 15316:1 15321:2 15324:1 15325:4 15329:2 15334:1 15342:3 15344:2 15353:3 15359:1 15367:1 15372:1 15402:1 15407:13 15408:1 15422:1 15426:1 15431:1 15432:4 15437:1 15472:1 15476:1 15490:1 15491:1 15497:2 15499:1 15507:1 15512:4 15524:1 15525:1 15534:1 15538:1 15541:2 15575:2 15580:1 15596:5 15603:1 15617:2 15619:1 15622:1 15646:1 15661:2 15667:1 15688:1 15703:2 15705:3 15719:1 15720:1 15722:1 15731:1 15763:1 15765:1 15768:1 15787:1 15790:1 15799:1 15808:2 15814:1 15821:1 15828:1 15837:1 15845:2 15858:2 15862:1 15864:2 15870:1 15873:1 15886:1 15889:1 15909:1 15930:1 15938:1 15966:1 15979:1 15982:1 16000:1 16005:1 16021:2 16027:1 16036:1 16037:3 16041:1 16047:1 16054:3 16059:2 16060:2 16064:2 16068:1 16070:1 16071:10 16109:1 16111:2 16112:1 16116:2 16117:1 16121:1 16128:1 16133:1 16136:1 16139:1 16140:1 16156:1 16176:1 16189:1 16203:1 16204:1 16222:3 16226:1 16236:1 16244:2 16256:1 16257:1 16261:1 16266:1 16276:1 16279:1 16309:1 16311:1 16312:1 16313:1 16339:1 16343:1 16344:1 16347:2 16357:1 16379:1 16401:1 16405:1 16425:1 16426:2 16433:1 16437:1 16439:1 16450:1 16452:1 16466:1 16487:1 16514:1 16540:1 16542:1 16551:2 16570:2 16651:2 16657:2 16658:1 16664:1 16674:1 16680:1 16687:1 16703:1 16719:1 16721:1 16727:1 16758:1 16770:1 16771:1 16787:1 16791:3 16795:1 16805:1 16838:1 16848:14 16860:1 16880:1 16906:1 16932:1 16954:13 16963:3 16964:1 16975:1 16977:5 16990:1 16997:1 17001:2 17012:1 17025:2 17048:4 17058:2 17068:2 17084:2 17085:1 17087:1 17107:3 17112:2 17125:2 17126:3 17137:2284 17147:1 17151:1 17161:1 17162:1 17188:1 17197:1 17200:1 17201:1 17220:2 17235:1 17251:1 17262:1 17263:1 17282:1 17296:1 17307:1 17311:1 17314:1 17317:2 17321:5 17322:3 17332:1 17339:1 17341:1 17351:1 17359:1 17375:1 17386:1 17399:1 17404:1 17406:1 17407:1 17448:1 17450:3 17453:2 17459:1 17494:1 17502:1 17503:3 17521:1 17534:2 17549:1 17551:1 17564:2 17566:1 17573:1 17581:1 17588:1 17591:1 17603:2 17608:1 17616:1 17627:1 17636:1 17642:2 17643:2 17646:2 17655:1 17661:1 17670:1 17672:1 17691:2 17692:2 17708:2 17712:1 17716:1 17728:2 17752:2 17753:1 17758:1 17761:1 17770:1 17771:2 17777:8 17787:1 17801:1 17803:1 17818:1 17823:2 17824:1 17825:1 17833:2 17846:5 17860:1 17862:1 17877:1 17891:1 17900:4 17905:1 17907:2 17912:1 17914:2 17929:4 17930:1 17935:1 17938:1 17942:2 17956:1 17961:4 17968:2 17970:1 17975:3 18006:3 18009:1 18017:1 18031:1 18034:1 18038:2 18039:2 18046:1 18047:1 18050:1 18058:1 18068:1 18077:1 18078:1 18079:1 18080:1 18083:1 18088:1 18117:1 18130:3 18144:1 18145:2 18146:1 18147:1 18152:1 18153:2 18158:1 18182:1 18183:1 18185:1 18187:1 18196:1 18203:1 18214:1 18227:1 18229:1 18237:1 18238:1 18249:1 18252:1 18268:1 18276:1 18279:2 18282:4 18287:1 18288:3 18289:1 18335:1 18340:1 18354:2 18360:1 18363:1 18368:2 18369:2 18371:2 18388:1 18389:1 18392:3 18399:2 18404:1 18405:2 18407:2 18409:1 18421:5 18430:2 18449:1 18458:1 18460:1 18462:1 18465:2 18466:4 18494:1 18495:1 18504:2 18505:1 18507:1 18510:1 18526:1 18531:2 18548:1 18552:1 18553:2 18569:1 18577:3 18578:18 18579:2 18586:1 18592:5 18596:1 18612:1 18613:1 18627:1 18643:1 18652:1 18653:1 18663:1 18672:1 18678:1 18683:1 18695:1 18697:1 18701:1 18705:1 18726:1 18738:1 18768:4 18787:1 18789:2 18802:2 18807:1 18817:2 18828:1 18830:1 18840:2 18850:1 18865:8 18871:2 18878:1 18886:1 18916:1 18917:1 18927:1 18937:1 18968:1 18969:1 18973:4 18987:3 18996:1 18999:1 19002:1 19006:1 19010:1 19011:1 19020:1 19023:2 19051:2 19057:3 19063:2 19066:2 19073:2 19078:1 19080:1 19081:1 19089:2 19093:1 19116:4 19126:2 19149:2 19153:1 19162:1 19178:2 19183:1 19190:2 19191:1 19198:5 19202:1 19206:2 19207:1 19213:1 19215:2 19227:3 19258:2 19264:1 19277:1 19296:1 19297:1 19298:1 19302:2 19304:1 19312:2 19319:2 19321:2 19327:2 19331:2 19332:1 19337:2 19353:1 19358:2 19381:2 19392:1 19393:2 19401:1 19402:1 19403:4 19418:1 19420:1 19427:2 19431:1 19435:1 19440:1 19441:1 19446:2 19447:1 19450:1 19460:1 19463:1 19480:1 19481:1 19486:1 19510:1 19517:1 19519:1 19524:2 19525:2 19538:1 19550:1 19618:1 19640:1 19652:2 19656:1 19664:2 19665:2 19667:1 19669:1 19673:1 19674:1 19679:1 19687:1 19694:2 19699:3 19705:1 19714:1 19723:1 19740:1 19746:1 19750:1 19758:1 19768:1 19769:1 19787:2 19789:1 19790:1 19791:1 19794:1 19796:2 19799:1 19800:1 19811:1 19814:1 19818:2 19825:2 19830:2 19833:1 19838:2 19841:1 19851:1 19853:2 19874:13 19886:2 19887:2 19892:2 19902:1 19916:1 19929:1 19931:1 19943:1 19948:1 19949:1 19952:1 19955:1 20000:2 20010:1 20019:2 20024:1 20026:1 20030:1 20034:4 20036:3 20037:1 20046:2 20054:1 20055:1 20056:1 20059:1 20061:1 20082:1 20083:1 20085:3 20087:4 20088:2 20111:1 20114:1 20151:1 20171:3 20174:1 20176:4 20178:3 20179:3 20181:1 20182:1 20186:1 20189:2 20193:1 20194:2 20204:1 20205:5 20212:1 20213:1 20218:1 20223:1 20236:1 20244:2 20252:2 20255:2 20269:1 20297:1 20315:2 20317:2 20322:1 20324:1 20329:1 20338:1 20344:1 20351:1 20364:1 20365:2 20368:1 20374:1 20375:1 20377:1 20381:1 20383:1 20392:1 20395:1 20396:1 20405:1 20409:1 20421:2 20423:1 20425:5 20431:1 20440:1 20441:3 20446:1 20447:3 20455:1 20463:1 20470:1 20484:2 20487:1 20490:1 20491:1 20492:4 20498:2 20503:1 20512:2 20513:9 20515:1 20519:1 20525:1 20526:1 20529:1 20531:1 20547:1 20549:1 20553:1 20575:7 20576:1 20589:1 20609:1 20624:1 20631:5 20632:1 20640:1 20649:1 20650:1 20664:1 20665:1 20687:1 20690:2 20701:1 20717:1 20722:1 20723:1 20726:6 20728:2 20735:3 20739:1 20740:3 20749:1 20753:1 20757:1 20759:1 20773:1 20775:3 20787:1 20794:1 20795:3 20800:3 20809:1 20815:1 20817:1 20827:1 20834:1 20838:1 20846:1 20851:1 20863:1 20866:1 20890:1 20895:1 20902:1 20903:1 20904:1 20906:1 20914:1 20921:2 20935:10 20936:3 20941:1 20952:2 20957:2 20962:4 20969:1 20970:3 20982:2 20996:1 21021:1 21032:1 21033:1 21037:2 21040:2 21055:1 21056:1 21059:1 21080:1 21083:1 21084:1 21085:1 21086:1 21101:1 21104:1 21121:1 21128:2 21131:1 21138:2 21139:1 21142:1 21170:1 21175:3 21204:3 21215:1 21249:1 21253:1 21269:1 21294:3 21297:2 21304:5 21314:2 21322:1 21328:1 21330:3 21341:2 21344:2 21345:3 21358:1 21368:4 21406:1 21410:1 21413:1 21436:1 21446:1 21458:1 21463:1 21472:2 21484:1 21502:1 21505:1 21510:2 21527:2 21534:1 21537:2 21548:1 21549:1 21559:1 21566:1 21575:1 21576:2 21579:2 21584:3 21590:1 21592:1 21605:1 21609:1 21624:3 21625:2 21628:2 21641:1 21644:1 21650:1 21695:1 21696:4 21698:1 21701:1 21706:1 21712:1 21714:1 21715:2 21716:1 21718:1 21719:1 21722:1 21725:1 21749:1 21766:1 21769:1 21779:1 21789:1 21832:2 21845:2 21853:1 21878:2 21884:1 21941:1 21943:2 21951:1 21953:1 21964:1 21979:1 21994:1 21996:1 21998:1 22008:2 22017:1 22047:1 22057:1 22066:1 22084:1 22090:1 22101:2 22113:1 22136:2 22140:1 22165:2 22176:3 22186:1 22212:1 22213:7 22228:1 22233:1 22241:3 22259:1 22261:1 22267:1 22270:4 22279:1 22280:1 22287:1 22293:1 22317:3 22319:1 22340:2 22341:1 22345:1 22346:2 22381:1 22425:1 22426:1 22451:1 22454:1 22455:1 22461:1 22464:1 22467:3 22469:2 22473:1 22475:1 22476:1 22477:1 22479:2 22482:1 22483:1 22484:1 22494:1 22505:1 22518:6 22535:1 22536:1 22539:1 22544:1 22551:1 22552:1 22555:1 22557:1 22582:11 22585:6 22587:1 22609:1 22611:2 22618:1 22619:1 22630:1 22635:1 22636:1 22639:1 22643:3 22651:2 22667:1 22670:1 22681:1 22728:1 22756:1 22767:1 22768:1 22777:2 22781:1 22787:1 22794:1 22796:1 22800:2 22809:2 22813:1 22817:1 22822:2 22823:2 22826:1 22843:1 22845:1 22850:1 22857:1 22858:2 22863:1 22866:1 22874:1 22890:1 22901:4 22913:2 22917:1 22918:1 22924:1 22930:1 22932:1 22941:2 22946:2 22950:1 22952:2 22957:1 22968:1 22974:1 22975:1 23002:17 23003:2 23026:1 23032:1 23033:1 23036:1 23045:1 23055:1 23066:1 23067:1 23074:2 23078:1 23085:1 23098:2 23101:1 23105:2 23110:1 23111:1 23131:1 23133:1 23139:1 23143:1 23145:1 23160:1 23166:1 23173:1 23198:1 23220:10 23221:1 23235:1 23240:2 23241:1 23247:1 23253:1 23264:1 23270:1 23276:1 23280:1 23285:6 23286:1 23291:1 23304:1 23308:1 23311:2 23314:1 23340:1 23353:2 23359:1 23365:1 23371:1 23386:1 23398:1 23407:1 23422:2 23426:2 23428:1 23437:2 23448:1 23452:1 23459:1 23473:1 23527:1 23528:2 23534:1 23538:1 23540:1 23560:1 23564:2 23569:5 23571:1 23577:1 23579:1 23594:1 23617:5 23629:1 23632:1 23636:1 23648:1 23650:7 23663:1 23677:1 23682:1 23685:1 23688:3 23689:1 23698:1 23701:1 23705:1 23715:1 23746:1 23759:1 23769:1 23777:2 23821:1 23826:1 23838:1 23853:1 23860:1 23889:1 23919:2 23928:1 23929:2 23944:1 23945:1 23952:1 23953:1 23958:1 23971:1 23988:3 23991:1 24023:4 24030:1 24035:1 24058:1 24065:1 24074:2 24075:1 24084:1 24094:14 24095:2 24105:2 24115:1 24124:1 24126:1 24151:2 24163:1 24165:1 24170:1 24183:1 24186:2 24188:2 24199:1 24211:4 24215:3 24221:3 24224:2 24226:4 24228:1 24230:1 24245:1 24253:1 24293:1 24300:1 24324:1 24337:1 24340:2 24350:1 24362:2 24370:2 24380:1 24384:2 24386:1 24387:1 24388:2 24415:6 24417:1 24418:1 24425:1 24426:1 24434:1 24439:1 24442:1 24446:1 24447:1 24467:1 24470:2 24471:2 24483:1 24531:1 24537:2 24553:1 24561:1 24562:1 24569:3 24596:1 24621:1 24634:1 24635:1 24641:5 24652:1 24653:1 24677:1 24684:1 24689:1 24690:1 24703:1 24707:1 24711:2 24716:1 24721:1 24744:1 24746:2 24747:2 24758:3 24769:1 24773:1 24785:1 24788:1 24793:1 24797:2 24823:1 24838:2 24839:1 24849:1 24851:1 24886:1 24895:2 24912:1 24915:3 24918:1 24921:1 24922:1 24931:1 24936:1 24938:2 24950:1 24956:1 24961:2 24972:2 24974:1 24977:1 24980:1 24985:2 24986:1 24991:1 25000:1 25013:1 25016:1 25021:1 25026:1 25028:1 25032:2 25037:1 25063:1 25077:5 25081:3 25084:2 25098:1 25099:1 25108:1 25126:1 25132:2 25137:1 25143:1 25148:2 25155:2 25163:1 25164:1 25172:2 25174:1 25181:1 25187:1 25190:1 25192:1 25193:1 25200:1 25201:1 25204:2 25205:1 25206:1 25210:3 25213:1 25217:2 25219:1 25229:2 25238:2 25243:1 25247:1 25279:1 25288:1 25297:4 25311:1 25318:2 25335:2 25358:1 25361:1 25401:1 25404:2 25439:1 25444:1 25445:2 25459:1 25465:2 25480:1 25486:1 25487:1 25490:1 25492:3 25499:5 25521:1 25532:1 25563:6 25598:1 25600:1 25613:1 25631:1 25652:1 25655:1 25656:1 25660:2 25674:2 25680:1 25691:1 25699:1 25715:1 25734:1 25742:1 25745:1 25759:2 25760:3 25761:1 25766:1 25773:2 25775:1 25778:2 25790:1 25792:1 25799:1 25801:5 25811:1 25813:1 25815:1 25817:1 25828:2 25832:2 25836:2 25840:1 25845:1 25847:5 25851:1 25860:1 25867:3 25870:1 25883:3 25884:1 25886:3 25906:3 25922:1 25924:1 25941:1 25949:1 25963:1 25969:3 25971:4 25977:5 26008:5 26021:1 26023:1 26034:1 26045:1 26051:1 26052:1 26054:1 26064:1 26081:1 26083:5 26088:1 26092:2 26114:1 26120:1 26126:1 26131:1 26146:1 26158:1 26162:1 26164:1 26172:1 26173:2 26179:1 26182:1 26196:3 26231:1 26233:1 26234:1 26245:7 26246:1 26249:1 26252:1 26257:1 26259:1 26263:2 26276:1 26308:5 26325:1 26351:1 26401:1 26468:1 26488:2 26495:1 26497:1 26498:2 26499:1 26502:2 26504:3 26511:1 26515:1 26516:1 26525:1 26539:1 26552:1 26561:1 26571:1 26576:1 26611:3 26620:2 26648:2 26651:1 26653:2 26668:1 26670:1 26683:1 26699:1 26705:1 26715:1 26721:3 26722:1 26727:1 26728:2 26758:1 26760:1 26763:4 26767:2 26780:1 26784:1 26806:1 26813:1 26819:1 26825:1 26836:1 26844:1 26862:1 26866:1 26868:3 26876:1 26878:1 26892:1 26901:3 26903:1 26919:1 26940:2 26943:2 26961:1 26965:1 26966:3 26973:3 26974:3 26975:1 26978:1 27006:1 27022:5 27025:1
1 12:1 34:1 43:1 45:1 50:1 55:1 60:1 90:1 108:1 124:1 137:1 138:3 147:1 152:2 153:1 159:1 165:2 168:3 178:6 189:1 194:1 221:1 231:1 236:7 248:1 255:3 262:1 277:2 301:1 312:4 314:3 318:3 326:3 333:1 337:2 356:3 363:1 375:2 392:5 394:5 403:1 414:1 446:1 451:1 480:2 509:1 518:1 522:2 538:1 548:3 554:1 565:1 571:1 573:4 575:2 580:1 588:2 595:1 656:1 665:1 698:1 707:1 708:2 728:1 730:2 731:1 738:1 750:1 776:6 779:1 782:1 786:1 787:4 792:1 798:1 814:15 815:4 823:3 841:4 848:1 853:1 854:4 856:2 857:8 859:1 861:2 863:4 877:2 895:5 898:4 909:1 910:1 943:2 951:1 964:1 994:1 1005:1 1011:1 1028:1 1029:1 1044:1 1053:2 1054:1 1057:1 1100:3 1101:2 1105:1 1107:2 1108:1 1111:2 1118:1 1119:1 1132:1 1139:1 1140:1 1141:1 1145:2 1151:1 1156:2 1161:2 1170:1 1178:1 1184:2 1189:1 1214:1 1215:1 1230:1 1236:1 1243:1 1247:1 1249:1 1253:1 1256:1 1264:1 1275:1 1293:1 1296:1 1300:1 1301:2 1303:1 1311:1 1318:1 1319:2 1332:1 1334:1 1340:3 1346:1 1352:1 1361:1 1367:1 1370:1 1371:2 1373:1 1385:1 1390:1 1406:1 1411:4 1417:7 1420:2 1429:1 1450:2 1458:1 1461:1 1465:1 1467:1 1476:1 1480:1 1482:1 1485:2 1498:2 1508:1 1511:1 1513:1 1517:2 1518:1 1526:1 1529:2 1540:1 1545:1 1549:1 1556:1 1560:1 1564:1 1565:1 1570:1 1580:1 1588:1 1595:2 1598:1 1614:1 1615:5 1621:1 1626:1 1632:1 1636:1 1639:3 1642:1 1643:2 1645:1 1651:2 1653:6 1660:1 1676:4 1678:2 1682:1 1692:1 1702:1 1704:1 1710:2 1713:2 1715:4 1717:1 1718:1 1721:1 1731:1 1734:1 1742:2 1744:1 1750:1 1751:1 1757:3 1763:2 1764:1 1765:1 1778:2 1781:1 1782:1 1787:1 1821:1 1825:8 1830:1 1836:1 1840:1 1845:4 1850:1 1851:1 1854:2 1859:1 1862:2 1873:1 1877:1 1884:1 1896:1 1902:1 1905:1 1920:2 1921:1 1923:1 1924:1 1926:2 1929:1 1950:1 1966:11 1970:1 1975:1 1979:1 1984:1 1999:1 2006:2 2007:1 2025:2 2038:3 2040:1 2052:1 2053:1 2056:1 2061:2 2078:2 2079:2 2081:1 2083:3 2084:5 2087:1 2089:1 2090:2 2095:2 2096:2 2097:1 2098:2 2099:4 2103:1 2105:5 2107:3 2109:5 2111:7 2113:1 2123:1 2131:1 2146:1 2149:1 2152:2 2155:3 2158:1 2162:1 2170:2 2172:1 2179:1 2190:1 2191:1 2200:1 2208:1 2210:1 2236:1 2243:1 2247:1 2262:1 2278:3 2280:1 2287:1 2291:1 2297:1 2306:3 2316:2 2317:1 2323:1 2325:1 2330:1 2334:1 2345:1 2347:2 2353:3 2356:2 2358:1 2361:6 2365:1 2366:1 2367:1 2379:1 2382:1 2397:1 2408:4 2410:1 2411:1 2416:1 2430:2 2436:1 2437:1 2438:2 2447:6 2452:2 2458:2 2460:9 2465:4 2467:1 2474:2 2475:1 2481:1 2483:2 2485:1 2490:3 2492:2 2503:2 2515:1 2516:2 2520:3 2524:1 2528:1 2557:1 2561:1 2562:2 2563:2 2575:3 2576:1 2577:1 2579:1 2583:6 2590:2 2595:1 2612:1 2614:1 2619:1 2637:1 2639:2 2641:1 2656:4 2660:1 2664:1 2667:14 2689:3 2690:1 2694:1 2695:1 2697:1 2706:2 2711:2 2714:1 2731:18 2733:1 2743:1 2756:2 2758:3 2773:1 2783:1 2814:1 2822:1 2826:1 2840:1 2841:5 2852:3 2856:1 2860:1 2866:1 2879:1 2889:1 2902:1 2904:1 2908:1 2915:2 2923:1 2938:2 2949:1 2956:3 2968:1 2991:1 2992:2 3026:1 3027:2 3028:1 3031:1 3034:1 3048:6 3049:1 3103:1 3137:1 3147:2 3152:1 3162:1 3192:1 3193:1 3194:1 3203:1 3209:1 3210:1 3213:1 3222:1 3230:1 3232:1 3252:1 3268:1 3286:2 3291:1 3309:1 3314:1 3315:13 3318:1 3325:1 3328:2 3330:2 3331:2 3332:1 3346:1 3350:1 3352:1 3358:1 3359:1 3366:1 3394:1 3399:2 3400:1 3406:1 3407:1 3410:3 3414:2 3423:1 3446:1 3459:1 3470:1 3473:1 3480:2 3483:1 3486:2 3488:1 3494:3 3506:1 3510:1 3513:2 3520:1 3523:1 3540:2 3542:1 3554:1 3560:3 3561:1 3575:1 3576:1 3581:4 3583:1 3587:2 3590:1 3591:2 3600:4 3608:1 3610:2 3611:2 3629:1 3631:2 3646:1 3650:2 3652:2 3660:1 3683:2 3691:6 3692:4 3698:2 3730:1 3733:2 3737:1 3742:1 3756:1 3759:1 3760:2 3779:1 3787:2 3790:1 3791:1 3794:1 3798:1 3813:2 3822:1 3828:2 3838:1 3845:4 3846:1 3848:1 3849:1 3853:2 3856:1 3859:1 3863:2 3875:1 3882:1 3888:1 3898:1 3912:1 3917:1 3937:1 3952:7 3957:1 3977:3 3984:1 3993:2 3999:1 4003:1 4005:2 4018:2 4032:2 4038:1 4057:1 4062:1 4064:3 4065:1 4084:4 4097:1 4107:1 4116:1 4118:1 4125:1 4140:2 4146:1 4160:1 4164:1 4167:1 4172:1 4173:3 4175:1 4189:1 4201:1 4217:3 4218:1 4226:1 4234:5 4246:1 4249:1 4275:4 4284:2 4294:1 4295:1 4302:3 4307:1 4319:4 4344:2 4361:1 4365:2 4369:3 4383:3 4386:1 4394:1 4403:1 4419:1 4422:2 4429:1 4431:1 4445:1 4446:1 4461:1 4467:1 4477:1 4488:14 4490:2 4499:1 4501:1 4502:1 4509:1 4516:1 4527:1 4535:1 4546:1 4554:1 4608:3 4625:1 4629:4 4631:7 4632:3 4634:1 4637:2 4638:2 4639:1 4642:1 4643:2 4645:6 4646:4 4650:1 4651:2 4652:7 4658:2 4659:5 4662:1 4663:1 4674:1 4677:1 4701:1 4718:1 4737:2 4744:1 4762:1 4767:1 4776:1 4801:1 4834:1 4842:1 4866:1 4877:1 4887:2 4911:1 4916:1 4941:3 4945:2 4955:1 4982:1 4985:1 5006:4 5018:1 5037:1 5050:1 5055:1 5064:2 5075:1 5081:1 5088:1 5094:1 5101:1 5121:1 5130:1 5153:1 5156:1 5173:1 5197:2 5207:1 5212:2 5216:1 5221:1 5230:5 5231:1 5234:2 5236:1 5239:3 5240:1 5255:1 5256:1 5281:3 5292:2 5293:1 5296:1 5309:6 5314:1 5315:1 5330:2 5336:1 5383:1 5398:1 5416:1 5420:1 5422:1 5440:1 5444:1 5445:1 5446:1 5453:2 5456:1 5467:1 5479:1 5503:1 5510:2 5521:2 5535:2 5538:2 5539:1 5541:2 5561:1 5565:6 5567:1 5568:1 5575:1 5576:2 5583:1 5585:1 5586:1 5588:1 5589:1 5591:1 5620:1 5622:1 5623:1 5624:1 5629:1 5632:2 5634:1 5639:1 5641:1 5642:2 5643:1 5647:12 5680:3 5686:1 5703:1 5715:1 5725:3 5735:2 5751:6 5756:1 5761:1 5763:1 5801:1 5805:1 5828:1 5834:1 5836:1 5838:1 5844:2 5845:3 5847:1 5849:1 5850:1 5852:2 5853:1 5859:2 5860:4 5861:3 5872:1 5897:1 5904:1 5938:1 5954:1 5987:1 5991:4 5992:2 6006:1 6015:1 6047:1 6055:1 6064:1 6066:1 6082:1 6092:2 6115:1 6129:2 6137:2 6146:1 6152:1 6162:1 6210:1 6223:1 6233:2 6235:1 6238:1 6242:1 6246:1 6254:8 6262:2 6265:3 6267:1 6273:1 6275:1 6279:1 6287:2 6300:1 6301:1 6307:1 6310:1 6340:1 6344:1 6345:3 6357:2 6361:1 6366:2 6385:1 6389:1 6394:1 6398:1 6401:2 6402:1 6430:1 6449:2 6453:1 6460:1 6465:1 6468:1 6469:1 6477:1 6486:1 6490:6 6498:2 6516:1 6524:1 6528:1 6534:1 6537:3 6538:2 6545:1 6549:4 6550:1 6552:1 6557:5 6560:1 6564:1 6587:1 6588:1 6590:1 6599:1 6602:1 6604:1 6620:1 6621:1 6626:4 6631:4 6641:1 6654:1 6658:1 6672:3 6674:1 6677:1 6679:1 6686:1 6689:1 6697:1 6703:1 6705:1 6712:1 6721:1 6728:1 6742:1 6772:1 6797:1 6800:1 6806:1 6810:2 6846:1 6857:1 6859:2 6860:5 6864:3 6869:1 6870:1 6876:3 6881:1 6894:6 6895:1 6898:2 6912:1 6913:3 6922:1 6935:1 6943:2 6946:1 6951:1 6959:1 6962:1 6964:1 6969:1 6980:1 6981:1 6988:1 6989:2 6997:1 7002:1 7006:1 7015:1 7016:1 7027:1 7052:3 7067:4 7068:6 7081:2 7086:1 7090:4 7092:2 7093:3 7094:1 7109:1 7116:4 7117:2 7121:1 7136:45 7137:2 7140:2 7147:1 7155:9 7156:5 7162:2 7194:1 7201:1 7202:1 7211:1 7222:1 7224:1 7229:3 7230:2 7235:1 7242:1 7244:2 7256:2 7264:3 7276:1 7294:2 7300:1 7305:1 7325:1 7326:2 7352:1 7355:1 7356:3 7385:1 7389:1 7390:1 7391:1 7402:2 7446:1 7461:1 7477:1 7489:1 7491:1 7507:1 7508:1 7517:1 7520:1 7523:1 7547:1 7556:1 7558:1 7559:2 7568:1 7575:1 7576:1 7580:2 7592:1 7593:1 7609:23 7618:1 7619:1 7637:3 7640:3 7642:1 7644:2 7670:1 7676:1 7696:6 7698:1 7700:1 7706:1 7734:1 7744:3 7747:1 7748:2 7751:1 7756:1 7771:1 7777:1 7778:4 7784:3 7790:1 7796:1 7812:2 7814:1 7820:1 7825:1 7836:1 7840:1 7850:1 7857:1 7858:1 7876:1 7877:2 7886:2 7889:1 7890:1 7940:1 7944:1 7945:1 7950:1 7952:1 7957:1 7976:1 7978:2 7989:6 7991:1 8005:2 8008:3 8023:1 8034:1 8036:1 8043:1 8049:2 8052:1 8054:1 8063:1 8069:1 8073:1 8085:2 8095:1 8113:1 8120:1 8124:1 8148:1 8153:1 8154:1 8163:1 8164:1 8171:1 8197:1 8199:1 8215:3 8228:1 8247:1 8250:1 8253:1 8254:1 8258:3 8282:3 8289:1 8295:2 8306:1 8311:1 8331:1 8332:1 8340:1 8345:1 8350:6 8351:1 8356:1 8358:1 8363:1 8370:4 8378:1 8387:2 8389:1 8407:6 8409:1 8423:1 8426:1 8437:1 8445:11 8446:5 8460:2 8461:1 8469:1 8501:3 8507:1 8515:1 8521:1 8525:3 8527:1 8541:1 8544:1 8550:2 8552:2 8553:3 8555:2 8567:1 8578:1 8584:1 8600:1 8612:1 8620:2 8622:1 8632:1 8635:5 8637:1 8650:1 8656:3 8658:2 8663:1 8664:1 8674:4 8698:1 8699:1 8706:1 8728:1 8735:1 8741:1 8756:3 8763:1 8765:3 8771:1 8782:1 8786:1 8793:1 8820:1 8833:1 8838:1 8846:1 8853:7 8856:2 8885:3 8894:1 8895:1 8904:3 8908:1 8926:1 8943:1 8947:1 8953:1 8954:3 8956:3 8958:2 8964:1 8981:1 8987:2 8990:1 9020:2 9022:1 9031:1 9041:1 9067:2 9073:1 9077:1 9087:1 9090:1 9101:2 9113:1 9124:1 9131:1 9132:1 9144:1 9155:1 9172:1 9173:1 9178:1 9179:1 9191:1 9196:1 9216:1 9218:1 9221:1 9222:1 9224:1 9230:5 9243:4 9249:4 9251:2 9263:1 9281:2 9300:3 9301:1 9328:1 9332:2 9337:2 9348:1 9358:1 9361:4 9364:1 9388:2 9391:1 9396:12 9398:2 9402:2 9406:1 9424:2 9425:1 9434:1 9439:1 9450:1 9469:1 9488:1 9491:2 9493:1 9509:1 9524:1 9534:1 9536:1 9537:1 9540:1 9542:4 9550:1 9552:1 9555:2 9588:1 9601:4 9608:1 9610:1 9612:1 9617:1 9620:3 9626:1 9632:1 9635:1 9642:4 9660:1 9681:1 9691:1 9695:1 9696:1 9703:1 9708:1 9710:2 9713:2 9718:1 9725:2 9732:1 9739:1 9748:1 9750:3 9757:1 9764:2 9766:1 9769:1 9775:7 9778:4 9791:2 9795:3 9799:1 9802:1 9807:1 9812:2 9820:1 9834:2 9848:6 9849:2 9866:2 9868:1 9869:1 9878:3 9899:1 9916:1 9920:1 9926:3 9936:2 9943:1 9946:6 9964:1 9972:1 9980:1 9982:1 9993:3 10025:1 10030:1 10036:1 10096:1 10102:1 10118:1 10120:1 10136:1 10137:2 10141:2 10144:1 10145:2 10149:1 10152:1 10156:1 10157:5 10158:5 10159:1 10168:1 10174:2 10177:2 10181:1 10183:4 10188:1 10189:1 10192:1 10195:1 10198:1 10201:3 10203:3 10208:1 10213:1 10226:2 10234:1 10255:1 10257:1 10259:3 10294:1 10297:1 10312:1 10321:2 10323:1 10326:1 10341:1 10385:1 10392:1 10406:1 10412:1 10425:1 10426:3 10445:1 10463:1 10474:1 10477:1 10478:1 10484:2 10500:3 10503:2 10507:1 10518:2 10523:2 10525:1 10526:1 10528:2 10531:1 10537:3 10539:1 10540:1 10541:2 10550:1 10556:3 10559:2 10572:1 10587:15 10588:1 10611:1 10621:1 10625:4 10632:1 10635:2 10636:2 10648:2 10655:1 10673:1 10675:2 10682:2 10683:1 10690:1 10693:2 10695:2 10696:1 10706:1 10724:1 10738:1 10766:1 10783:1 10796:1 10803:3 10804:1 10805:1 10808:1 10814:1 10821:1 10822:4 10826:1 10827:2 10828:1 10830:1 10840:1 10841:1 10851:1 10860:1 10863:1 10864:1 10866:1 10870:2 10874:5 10875:1 10880:2 10898:1 10921:1 10934:2 10938:1 10947:1 10972:1 10975:1 10983:1 10984:1 10998:1 11009:1 11016:1 11017:1 11023:5 11032:1 11043:2 11046:1 11058:1 11063:1 11071:1 11076:2 11081:2 11100:2 11117:2 11127:1 11129:2 11150:1 11170:2 11175:1 11189:1 11191:1 11195:1 11201:2 11205:1 11219:1 11236:1 11244:1 11246:1 11251:5 11252:1 11253:2 11255:1 11256:2 11267:1 11273:2 11279:1 11283:1 11285:1 11290:1 11335:1 11338:2 11339:1 11357:1 11368:1 11376:1 11388:1 11393:1 11407:1 11410:1 11413:1 11423:1 11439:1 11476:3 11494:2 11507:1 11520:1 11527:1 11539:1 11545:1 11550:1 11552:2 11553:1 11568:1 11570:3 11579:1 11593:1 11599:1 11606:1 11647:1 11658:1 11663:1 11665:1 11666:2 11674:1 11687:1 11705:14 11710:3 11719:1 11723:2 11728:1 11739:1 11746:1 11747:3 11753:3 11767:1 11770:1 11775:1 11779:1 11780:1 11786:1 11792:2 11794:1 11798:1 11800:1 11829:1 11845:1 11850:1 11858:2 11863:1 11886:1 11887:1 11889:1 11890:1 11903:1 11923:1 11924:1 11930:2 11932:1 11944:1 11946:1 11963:1 11977:1 11982:3 11994:2 11996:1 12041:1 12042:1 12060:1 12071:1 12075:1 12078:1 12082:1 12083:1 12085:2 12090:4 12101:1 12106:2 12115:2 12122:1 12138:6 12157:1 12161:2 12186:1 12193:4 12194:1 12205:1 12217:1 12221:1 12223:1 12224:1 12225:1 12233:8 12236:1 12242:2 12247:1 12260:1 12264:1 12272:1 12273:1 12279:2 12283:1 12289:1 12290:1 12301:16 12306:1 12308:1 12311:1 12327:1 12342:2 12343:1 12350:3 12366:1 12371:2 12384:2 12394:1 12395:1 12397:1 12421:3 12441:1 12446:6 12449:1 12465:1 12471:2 12475:1 12478:1 12499:3 12515:1 12521:1 12525:1 12528:1 12533:3 12535:1 12537:1 12544:1 12549:1 12551:1 12558:6 12559:1 12561:1 12562:2 12563:1 12564:2 12565:1 12569:7 12570:2 12590:1 12591:1 12593:1 12595:1 12620:1 12636:1 12643:1 12675:2 12680:1 12685:1 12686:1 12706:1 12711:1 12719:4 12751:1 12756:1 12758:1 12760:1 12767:1 12770:1 12773:2 12774:1 12778:1 12790:1 12794:1 12814:2 12820:1 12821:1 12829:1 12830:1 12833:1 12836:7 12857:3 12861:1 12867:1 12890:1 12902:1 12903:2 12909:1 12913:1 12923:1 12929:1 12931:1 12934:1 12944:1 12957:1 12977:1 12983:1 12984:1 12990:1 12993:1 12997:1 13004:1 13010:1 13017:1 13052:1 13063:2 13077:5 13091:1 13104:1 13123:1 13143:1 13175:1 13199:1 13200:1 13204:3 13205:4 13212:1 13222:2 13223:2 13225:1 13229:2 13230:1 13248:1 13250:1 13256:1 13265:2 13285:1 13294:1 13305:1 13312:1 13327:2 13334:1 13337:1 13349:1 13353:1 13355:1 13361:2 13367:1 13375:3 13380:2 13428:1 13430:2 13433:1 13444:2 13476:2 13477:1 13484:1 13491:1 13506:1 13513:1 13517:1 13540:3 13552:1 13555:1 13558:2 13563:1 13587:1 13589:1 13595:1 13637:1 13643:2 13689:2 13693:2 13696:1 13702:1 13712:1 13722:1 13734:1 13762:2 13774:1 13776:3 13781:1 13793:1 13794:1 13795:2 13801:1 13804:1 13806:1 13829:1 13887:1 13891:1 13894:1 13900:2 13922:1 13928:1 13944:1 13974:1 13995:2 14004:1 14010:1 14027:1 14032:1 14034:1 14035:2 14047:1 14064:2 14071:3 14075:1 14096:1 14098:1 14099:1 14107:1 14113:2 14130:2 14134:1 14156:1 14158:1 14168:2 14184:1 14189:2 14211:1 14213:1 14216:1 14217:1 14225:1 14229:6 14244:3 14252:1 14263:3 14266:1 14279:3 14299:1 14302:1 14311:1 14328:1 14332:1 14335:2 14377:1 14391:2 14392:1 14403:2 14409:1 14413:1 14417:4 14420:1 14424:1 14426:1 14432:1 14445:4 14446:1 14450:1 14453:1 14462:1 14465:1 14475:1 14491:2 14497:2 14532:2 14535:1 14539:1 14550:3 14559:2 14567:1 14570:1 14572:3 14587:1 14600:3 14615:1 14648:1 14667:1 14676:1 14683:1 14687:15 14690:1 14704:1 14706:1 14709:3 14712:1 14738:3 14772:1 14783:1 14789:2 14796:2 14817:2 14821:1 14832:2 14845:1 14876:1 14883:1 14890:1 14891:1 14892:1 14902:2 14903:1 14928:1 14929:1 14931:3 14934:1 14946:1 14950:1 14954:5 14955:2 14956:2 14957:6 14958:1 14959:1 14963:2 14965:1 14967:2 14968:3 14972:1 14973:1 14975:1 14978:1 14979:1 14987:1 15013:1 15021:1 15024:1 15037:1 15060:1 15069:1 15083:1 15087:2 15088:1 15109:2 15114:1 15117:1 15119:2 15120:2 15140:1 15162:1 15169:1 15170:1 15178:1 15192:1 15198:1 15217:1 15240:1 15250:1 15252:1 15254:1 15262:2 15272:1 15274:2 15281:2 15282:1 15290:1 15294:5 15299:1 15302:2 15308:1 15316:1 15321:2 15324:1 15325:4 15329:2 15334:1 15342:3 15344:2 15353:3 15359:1 15367:1 15372:1 15402:1 15407:13 15408:1 15422:1 15426:1 15431:1 15432:4 15437:1 15472:1 15476:1 15490:1 15491:1 15497:2 15499:1 15507:1 15512:4 15524:1 15525:1 15534:1 15538:1 15541:2 15558:1 15575:2 15580:1 15596:5 15603:1 15617:2 15619:1 15622:1 15646:1 15661:2 15667:1 15688:1 15703:2 15705:3 15719:1 15720:1 15722:1 15731:1 15763:1 15765:1 15768:1 15787:1 15790:1 15799:1 15808:2 15814:1 15821:1 15828:1 15837:1 15845:2 15858:2 15862:1 15864:2 15870:1 15873:1 15886:1 15889:1 15909:1 15930:1 15938:1 15966:1 15979:1 15982:1 16000:1 16005:1 16021:2 16027:1 16036:1 16037:3 16041:1 16046:1 16047:1 16054:3 16059:2 16060:2 16064:2 16068:1 16070:1 16071:10 16109:1 16111:2 16112:1 16116:2 16117:1 16121:1 16128:1 16133:1 16136:1 16139:1 16140:1 16156:1 16176:1 16189:1 16203:1 16204:1 16222:3 16226:1 16236:1 16244:2 16256:1 16257:1 16261:1 16266:1 16276:1 16279:1 16309:1 16311:1 16312:1 16313:1 16339:1 16343:1 16344:1 16347:2 16357:1 16379:1 16401:1 16405:1 16425:1 16426:2 16433:1 16437:1 16439:1 16450:1 16452:1 16466:1 16487:1 16514:1 16540:1 16542:1 16551:2 16570:2 16651:2 16657:2 16658:1 16664:1 16674:1 16680:1 16687:1 16703:1 16719:1 16721:1 16727:1 16758:1 16770:1 16771:1 16787:1 16791:3 16795:1 16805:1 16838:1 16848:14 16860:1 16880:1 16906:1 16932:1 16954:14 16963:4 16964:1 16975:1 16977:5 16990:1 16997:1 17001:2 17012:1 17025:2 17048:4 17058:2 17068:2 17084:2 17085:1 17087:1 17107:3 17112:2 17125:2 17126:3 17137:2330 17147:1 17151:1 17161:1 17162:1 17188:1 17197:1 17200:1 17201:1 17220:2 17235:1 17251:1 17262:1 17263:1 17282:1 17296:1 17307:1 17311:1 17314:1 17317:2 17321:5 17322:4 17332:1 17339:1 17341:1 17351:1 17359:1 17375:1 17386:1 17399:1 17404:1 17406:1 17407:1 17448:1 17450:3 17453:2 17459:1 17494:1 17502:1 17503:3 17521:1 17534:2 17549:1 17551:1 17564:2 17566:1 17573:1 17581:1 17588:1 17591:1 17603:2 17608:1 17616:1 17627:1 17636:1 17642:2 17643:2 17646:2 17655:1 17661:1 17670:2 17672:1 17691:2 17692:2 17708:3 17712:1 17716:1 17728:3 17752:3 17753:1 17758:1 17761:1 17770:1 17771:2 17777:8 17787:1 17801:1 17803:1 17818:1 17823:2 17824:1 17825:1 17833:2 17846:5 17860:1 17862:1 17877:1 17891:1 17900:4 17905:1 17907:2 17912:1 17914:2 17929:4 17930:1 17935:1 17938:1 17942:2 17956:1 17961:4 17968:2 17970:1 17975:3 18006:3 18009:1 18017:1 18031:1 18034:1 18038:2 18039:2 18046:1 18047:2 18050:1 18058:1 18068:1 18075:1 18077:1 18078:1 18079:1 18080:1 18083:1 18088:1 18117:1 18130:3 18144:1 18145:2 18146:1 18147:1 18152:1 18153:3 18158:1 18182:1 18183:1 18185:1 18187:1 18196:1 18203:1 18214:1 18227:1 18229:1 18237:2 18238:1 18249:1 18252:1 18268:1 18276:1 18279:2 18282:4 18287:1 18288:4 18289:1 18335:1 18340:1 18354:2 18360:1 18363:1 18368:2 18369:2 18371:2 18388:1 18389:2 18392:3 18399:3 18404:1 18405:2 18407:2 18409:1 18421:5 18430:2 18449:1 18458:1 18460:1 18462:1 18465:2 18466:4 18494:1 18495:1 18504:2 18505:1 18507:1 18510:1 18526:1 18531:3 18548:1 18552:1 18553:2 18569:1 18577:3 18578:18 18579:2 18586:1 18592:5 18596:1 18612:1 18613:1 18627:1 18643:1 18652:1 18653:1 18663:1 18672:1 18678:1 18683:1 18695:1 18697:1 18701:1 18705:1 18726:1 18738:1 18768:4 18787:1 18789:2 18802:2 18807:1 18817:2 18828:1 18830:1 18840:2 18850:1 18865:8 18871:2 18878:1 18886:1 18916:1 18917:1 18920:1 18927:1 18937:1 18968:1 18969:1 18973:4 18987:3 18996:1 18999:1 19002:1 19006:1 19010:1 19011:1 19020:1 19023:2 19051:2 19057:3 19063:2 19066:2 19073:2 19078:1 19080:1 19081:1 19089:2 19093:1 19116:5 19126:2 19127:1 19135:1 19149:2 19153:1 19162:1 19178:2 19183:1 19190:2 19191:1 19198:5 19202:1 19206:2 19207:1 19213:1 19215:2 19227:3 19258:2 19264:1 19277:1 19296:1 19297:1 19298:1 19302:2 19304:1 19312:2 19319:2 19321:2 19327:2 19331:2 19332:1 19337:2 19353:1 19358:2 19381:2 19392:1 19393:3 19401:1 19402:1 19403:4 19418:1 19420:1 19427:2 19431:1 19435:1 19440:1 19441:1 19446:2 19447:1 19450:1 19460:1 19463:1 19480:1 19481:1 19486:1 19510:1 19517:1 19519:1 19524:2 19525:2 19538:1 19550:1 19618:1 19640:1 19652:2 19656:1 19664:2 19665:2 19667:1 19669:1 19673:1 19674:1 19679:1 19687:1 19694:2 19699:3 19705:1 19714:1 19723:1 19740:1 19746:1 19750:1 19758:1 19768:1 19769:1 19787:2 19789:1 19790:1 19791:1 19794:1 19796:2 19799:1 19800:1 19811:1 19814:1 19818:2 19825:2 19830:2 19833:1 19838:2 19841:1 19851:1 19853:2 19874:13 19886:2 19887:2 19892:2 19902:1 19916:1 19929:1 19931:1 19943:1 19948:1 19949:1 19952:1 19955:1 20000:2 20010:1 20019:2 20024:1 20026:1 20030:1 20034:4 20036:3 20037:1 20046:2 20054:1 20055:1 20056:1 20059:1 20061:1 20082:1 20083:1 20085:3 20087:4 20088:2 20111:1 20114:1 20151:1 20171:4 20174:1 20176:4 20178:3 20179:3 20181:1 20182:1 20186:1 20189:2 20193:1 20194:2 20204:1 20205:5 20212:1 20213:1 20218:1 20223:1 20236:1 20244:2 20252:2 20255:2 20269:1 20297:1 20315:2 20317:2 20322:1 20324:1 20329:1 20338:1 20344:1 20351:1 20364:1 20365:3 20368:1 20374:1 20375:1 20377:1 20381:2 20383:1 20392:1 20395:1 20396:1 20405:1 20409:1 20421:2 20423:1 20425:5 20431:1 20440:1 20441:4 20446:1 20447:3 20455:1 20463:1 20470:1 20484:2 20487:1 20490:1 20491:1 20492:4 20498:2 20503:1 20512:2 20513:9 20515:1 20519:1 20525:1 20526:1 20529:1 20531:1 20547:1 20549:1 20553:1 20575:7 20576:1 20589:1 20609:1 20624:1 20631:5 20632:1 20637:1 20640:1 20649:1 20650:1 20664:1 20665:1 20687:1 20690:3 20701:1 20717:1 20722:1 20723:1 20726:6 20728:2 20735:3 20739:1 20740:3 20749:1 20753:1 20757:1 20759:1 20773:1 20775:4 20787:1 20794:1 20795:3 20800:3 20809:1 20815:1 20817:1 20827:1 20834:1 20838:1 20846:1 20851:1 20863:1 20866:1 20890:1 20895:1 20902:1 20903:1 20904:1 20906:1 20914:1 20921:2 20935:10 20936:3 20941:1 20952:2 20957:2 20962:4 20969:1 20970:3 20982:2 20996:1 21021:1 21032:1 21033:1 21037:2 21040:2 21055:1 21056:1 21059:1 21080:1 21083:1 21084:1 21085:1 21086:1 21101:1 21104:1 21121:1 21128:2 21131:1 21138:2 21139:1 21142:1 21170:1 21175:3 21204:3 21215:1 21249:2 21253:1 21269:1 21294:3 21297:2 21304:5 21314:2 21322:1 21328:1 21330:3 21341:2 21344:2 21345:3 21358:1 21368:4 21406:1 21410:1 21413:1 21434:1 21436:1 21446:1 21458:1 21463:1 21472:3 21484:1 21502:1 21505:1 21510:2 21527:2 21534:1 21537:2 21548:1 21549:1 21559:1 21566:1 21575:1 21576:2 21579:2 21584:3 21590:1 21592:1 21605:1 21609:1 21624:3 21625:2 21628:2 21641:1 21644:1 21650:1 21695:1 21696:4 21698:1 21701:1 21706:1 21712:1 21714:1 21715:3 21716:1 21718:1 21719:1 21722:1 21725:1 21749:1 21766:2 21769:1 21779:1 21789:1 21832:2 21845:2 21853:1 21878:2 21884:1 21941:1 21943:2 21951:2 21953:1 21964:1 21979:1 21994:1 21996:1 21998:1 22008:2 22017:1 22029:1 22047:1 22057:1 22066:1 22084:1 22090:1 22101:2 22113:1 22136:2 22140:1 22165:2 22176:4 22186:1 22212:1 22213:7 22228:1 22233:1 22241:3 22259:1 22261:1 22267:1 22270:4 22279:1 22280:1 22287:1 22293:1 22317:3 22319:1 22340:2 22341:1 22345:1 22346:2 22381:1 22425:1 22426:1 22451:1 22454:1 22455:1 22461:1 22464:1 22467:3 22469:2 22473:1 22475:1 22476:1 22477:1 22479:2 22482:1 22483:1 22484:1 22493:1 22494:1 22505:1 22518:6 22535:1 22536:1 22539:1 22544:1 22551:1 22552:1 22555:1 22557:1 22582:11 22585:6 22587:1 22609:1 22611:2 22618:1 22619:1 22630:1 22635:1 22636:1 22639:1 22643:3 22651:2 22667:1 22670:1 22681:1 22728:1 22756:1 22767:1 22768:1 22777:2 22781:1 22787:1 22794:1 22796:1 22800:2 22809:2 22813:1 22817:1 22822:2 22823:2 22826:1 22843:1 22845:1 22850:1 22857:1 22858:2 22863:1 22866:1 22874:1 22890:1 22901:4 22913:2 22917:1 22918:1 22924:1 22930:1 22932:1 22941:2 22946:2 22950:1 22952:2 22957:1 22968:1 22974:1 22975:1 23002:17 23003:2 23026:1 23032:1 23033:1 23036:1 23045:1 23055:1 23066:1 23067:1 23074:2 23078:1 23085:1 23098:2 23101:1 23105:2 23110:1 23111:1 23131:1 23133:1 23139:1 23143:1 23145:1 23160:1 23166:1 23173:1 23198:1 23220:10 23221:1 23235:1 23240:2 23241:1 23247:1 23253:1 23264:1 23270:1 23276:1 23280:1 23285:6 23286:1 23291:1 23304:1 23308:1 23311:2 23314:1 23340:1 23353:2 23359:1 23365:1 23371:1 23386:1 23398:1 23407:1 23422:2 23426:2 23428:1 23437:2 23448:1 23452:1 23459:1 23473:1 23527:1 23528:2 23534:1 23538:1 23540:1 23560:1 23564:2 23569:5 23571:1 23577:1 23579:1 23594:1 23617:6 23629:1 23632:1 23636:1 23648:1 23650:7 23663:2 23677:1 23682:1 23685:1 23688:3 23689:1 23698:1 23701:1 23705:1 23714:1 23715:1 23746:1 23759:1 23769:1 23777:2 23821:1 23826:1 23838:1 23853:1 23860:1 23889:1 23919:2 23928:1 23929:2 23944:1 23945:1 23952:1 23953:1 23958:1 23971:1 23988:3 23991:1 24023:4 24030:1 24035:1 24058:1 24065:1 24074:2 24075:1 24084:1 24088:1 24094:15 24095:2 24105:2 24115:1 24124:1 24126:1 24147:1 24151:2 24163:1 24165:1 24170:1 24183:1 24186:2 24188:2 24199:1 24211:4 24215:3 24221:3 24224:2 24226:4 24228:1 24230:1 24245:1 24253:1 24293:1 24300:1 24324:1 24337:1 24340:2 24350:1 24362:2 24370:2 24380:1 24384:2 24386:1 24387:1 24388:2 24399:1 24415:6 24417:1 24418:1 24425:1 24426:1 24427:1 24434:1 24439:1 24442:1 24446:1 24447:1 24467:1 24470:2 24471:2 24483:1 24531:1 24537:2 24553:1 24561:1 24562:1 24569:3 24596:1 24621:1 24634:1 24635:1 24641:5 24652:1 24653:1 24677:1 24684:1 24689:1 24690:1 24703:1 24707:1 24711:3 24716:1 24721:1 24744:1 24746:2 24747:2 24758:3 24769:1 24773:1 24785:1 24788:1 24793:1 24797:2 24823:1 24838:2 24839:1 24849:1 24851:1 24886:1 24895:2 24912:1 24915:3 24918:1 24921:1 24922:2 24931:1 24936:1 24938:2 24950:1 24956:1 24961:2 24972:2 24974:1 24977:1 24980:1 24985:2 24986:1 24991:1 25000:1 25013:1 25016:1 25021:1 25026:1 25028:1 25032:2 25037:1 25063:1 25077:5 25081:3 25084:2 25098:1 25099:1 25108:1 25126:1 25132:2 25137:1 25143:1 25148:2 25155:2 25163:1 25164:1 25172:2 25174:1 25181:1 25187:1 25190:1 25192:1 25193:1 25200:1 25201:1 25204:2 25205:1 25206:1 25210:3 25213:1 25217:2 25219:1 25229:2 25238:2 25243:1 25247:1 25279:1 25288:1 25297:4 25311:1 25318:2 25335:2 25358:1 25361:1 25401:1 25404:2 25439:1 25444:1 25445:2 25459:1 25465:2 25480:1 25486:1 25487:1 25490:1 25492:3 25499:5 25521:1 25532:1 25563:6 25598:1 25600:1 25613:1 25631:1 25652:1 25655:1 25656:1 25660:2 25674:2 25680:1 25691:1 25699:1 25715:1 25734:1 25742:1 25745:1 25759:2 25760:3 25761:1 25766:1 25773:2 25775:1 25778:2 25790:1 25792:1 25799:1 25801:5 25811:1 25813:1 25815:1 25817:1 25828:2 25832:2 25836:2 25840:1 25845:1 25847:5 25851:1 25860:1 25867:3 25870:1 25883:3 25884:1 25886:3 25889:1 25906:3 25922:1 25924:1 25941:1 25949:1 25963:1 25969:3 25971:4 25977:5 26008:5 26021:1 26023:1 26034:1 26045:1 26051:1 26052:1 26054:1 26064:1 26081:1 26083:6 26088:1 26092:2 26114:1 26120:1 26126:1 26131:1 26146:1 26158:1 26162:1 26164:1 26172:1 26173:2 26179:1 26182:1 26196:3 26231:1 26233:1 26234:1 26245:7 26246:1 26249:2 26252:1 26257:1 26259:1 26263:2 26276:1 26308:5 26325:1 26351:1 26365:1 26401:1 26441:1 26468:1 26488:2 26495:1 26497:1 26498:2 26499:1 26502:2 26504:3 26511:1 26515:1 26516:1 26525:1 26539:1 26552:1 26561:1 26571:1 26576:1 26611:3 26614:1 26620:2 26648:2 26651:1 26653:2 26668:1 26670:1 26683:1 26699:1 26704:1 26705:1 26715:1 26721:3 26722:1 26727:1 26728:2 26758:1 26760:1 26763:4 26767:2 26780:1 26784:1 26806:1 26813:1 26819:1 26825:1 26836:1 26844:1 26862:1 26866:1 26868:3 26876:1 26878:1 26892:1 26901:3 26903:1 26919:1 26940:2 26943:2 26961:1 26965:1 26966:3 26973:3 26974:3 26975:1 26978:1 27006:1 27022:5 27025:1
1 12:1 34:1 43:1 45:1 50:1 55:1 60:1 90:1 108:1 124:1 137:1 138:3 147:1 152:2 153:1 159:1 165:2 168:3 175:1 178:6 189:1 194:1 221:1 231:1 236:7 248:1 255:3 262:1 277:2 301:1 312:4 314:3 318:3 326:3 333:1 337:2 356:3 363:1 375:2 392:5 394:5 403:1 414:1 446:1 451:1 480:2 509:1 518:1 522:2 538:1 548:3 554:1 565:1 571:1 573:4 575:2 580:1 588:2 595:1 656:1 665:1 698:1 707:1 708:2 728:1 730:2 731:1 738:1 750:1 776:6 779:1 782:1 786:1 787:4 792:1 798:1 814:15 815:4 823:3 841:4 848:1 853:1 854:4 856:2 857:8 859:1 861:2 863:4 877:2 895:5 898:4 909:1 910:1 943:2 951:1 964:1 994:1 1005:1 1011:1 1028:1 1029:1 1044:1 1053:2 1054:1 1057:1 1100:3 1101:2 1105:1 1107:2 1108:1 1111:2 1118:1 1119:1 1132:1 1139:1 1140:1 1141:1 1145:2 1151:1 1156:2 1161:2 1169:1 1170:1 1178:1 1184:2 1189:1 1214:1 1215:1 1230:1 1236:1 1243:1 1247:1 1249:1 1253:1 1256:1 1264:1 1275:1 1293:1 1296:1 1300:1 1301:2 1303:1 1311:1 1318:1 1319:2 1332:1 1334:1 1340:3 1346:1 1352:1 1361:1 1367:1 1370:1 1371:2 1373:1 1385:1 1390:1 1406:1 1411:4 1417:7 1420:2 1429:1 1450:2 1458:1 1461:1 1465:1 1467:1 1476:1 1480:1 1482:1 1485:2 1498:2 1508:1 1511:1 1513:1 1517:2 1518:1 1526:1 1529:2 1540:1 1545:1 1549:1 1556:1 1560:1 1564:1 1565:1 1570:1 1580:1 1588:1 1595:2 1598:1 1614:1 1615:5 1621:1 1626:1 1632:1 1636:1 1639:3 1642:1 1643:2 1645:1 1651:2 1653:6 1660:1 1676:4 1678:3 1682:1 1692:1 1702:1 1704:1 1710:2 1713:2 1715:4 1717:1 1718:1 1721:1 1731:1 1734:1 1742:2 1744:1 1750:1 1751:1 1757:3 1763:2 1764:1 1765:1 1778:2 1781:1 1782:1 1787:1 1821:1 1825:8 1830:1 1836:1 1840:2 1845:4 1850:1 1851:1 1854:2 1859:1 1862:2 1873:1 1877:1 1884:1 1896:1 1902:1 1905:1 1920:2 1921:1 1923:1 1924:1 1926:2 1929:1 1950:1 1966:11 1970:1 1975:1 1979:1 1984:1 1999:1 2006:2 2007:1 2025:2 2038:3 2040:1 2052:1 2053:1 2056:1 2061:2 2078:2 2079:2 2081:1 2083:3 2084:5 2087:1 2089:1 2090:2 2095:2 2096:2 2097:1 2098:2 2099:4 2103:1 2105:5 2107:3 2109:5 2111:7 2113:1 2123:1 2131:1 2146:1 2149:1 2152:3 2155:3 2158:1 2162:1 2170:2 2172:1 2179:1 2190:1 2191:1 2200:1 2208:1 2210:1 2236:1 2243:1 2247:1 2262:1 2278:3 2280:1 2287:1 2291:1 2297:1 2306:3 2316:2 2317:1 2323:1 2325:1 2330:1 2334:1 2345:1 2347:2 2353:3 2356:2 2358:1 2361:6 2365:1 2366:1 2367:1 2379:1 2382:1 2397:1 2408:4 2410:1 2411:1 2416:1 2430:2 2436:1 2437:1 2438:2 2447:6 2452:2 2458:2 2460:9 2465:4 2467:1 2474:2 2475:1 2481:1 2483:2 2485:1 2490:3 2492:2 2503:2 2515:1 2516:2 2520:3 2524:1 2528:1 2557:1 2561:1 2562:2 2563:2 2575:3 2576:1 2577:1 2579:1 2583:7 2590:2 2595:1 2612:1 2614:1 2619:1 2637:1 2639:3 2641:1 2656:4 2660:1 2664:1 2667:15 2689:3 2690:1 2694:1 2695:1 2697:1 2706:2 2711:3 2714:1 2731:19 2733:2 2743:1 2756:2 2758:3 2773:1 2783:1 2814:1 2822:1 2826:1 2840:1 2841:5 2852:3 2856:1 2860:1 2866:1 2879:1 2889:1 2902:1 2904:1 2908:1 2915:2 2923:1 2938:2 2949:1 2956:3 2968:1 2991:1 2992:2 3026:1 3027:2 3028:1 3031:1 3034:1 3048:6 3049:1 3103:1 3137:1 3147:2 3152:1 3162:1 3192:1 3193:1 3194:1 3203:1 3209:1 3210:1 3213:1 3222:1 3230:1 3232:1 3252:1 3268:1 3286:2 3291:1 3309:1 3314:1 3315:13 3318:1 3325:1 3328:2 3330:2 3331:2 3332:1 3346:1 3350:1 3352:1 3358:1 3359:1 3366:1 3394:1 3399:2 3400:1 3406:1 3407:1 3410:3 3414:2 3423:1 3446:1 3459:1 3470:1 3473:1 3480:2 3483:1 3486:2 3488:1 3494:3 3506:1 3510:1 3513:2 3520:1 3523:1 3540:2 3542:1 3554:1 3560:3 3561:1 3575:2 3576:1 3581:4 3583:1 3587:2 3590:1 3591:2 3600:4 3602:1 3608:1 3610:2 3611:2 3629:1 3631:2 3646:1 3650:2 3652:2 3660:1 3683:2 3691:6 3692:4 3698:2 3730:1 3733:2 3737:1 3742:1 3756:1 3759:1 3760:2 3779:1 3787:2 3790:1 3791:1 3794:1 3798:1 3813:2 3822:1 3828:2 3838:1 3845:4 3846:1 3848:1 3849:1 3853:2 3856:1 3859:1 3863:2 3875:1 3882:1 3888:1 3898:1 3912:1 3917:1 3937:1 3952:7 3957:1 3977:3 3984:1 3993:2 3999:1 4003:1 4005:2 4018:2 4032:2 4038:1 4057:1 4062:1 4064:3 4065:2 4084:4 4097:1 4107:1 4116:1 4118:1 4125:1 4140:2 4146:2 4160:1 4164:1 4167:1 4172:1 4173:3 4175:1 4189:1 4201:1 4217:3 4218:1 4226:1 4234:5 4246:1 4249:1 4275:4 4284:2 4294:1 4295:1 4302:4 4307:1 4319:4 4344:2 4361:1 4365:2 4369:3 4383:3 4386:1 4394:1 4403:1 4419:1 4422:2 4429:1 4431:1 4445:1 4446:1 4461:1 4467:1 4477:1 4488:14 4490:2 4499:1 4501:1 4502:1 4509:1 4516:1 4527:1 4535:1 4546:1 4554:1 4608:3 4625:1 4629:4 4631:7 4632:3 4634:1 4637:2 4638:2 4639:1 4642:1 4643:2 4645:6 4646:4 4650:1 4651:2 4652:7 4658:2 4659:5 4662:1 4663:1 4674:1 4677:1 4701:1 4718:1 4737:2 4744:1 4762:1 4767:1 4776:1 4801:1 4834:1 4842:1 4866:1 4877:1 4887:2 4911:1 4916:1 4941:3 4945:2 4955:1 4982:1 4985:1 5006:5 5018:1 5037:1 5050:1 5055:1 5064:2 5075:1 5081:1 5088:1 5094:1 5101:1 5121:1 5130:1 5153:1 5156:1 5173:1 5197:2 5207:1 5212:2 5216:1 5221:1 5230:5 5231:1 5234:2 5236:1 5239:3 5240:1 5255:1 5256:1 5281:3 5292:2 5293:1 5296:1 5309:6 5314:1 5315:1 5330:2 5336:1 5383:1 5398:1 5416:1 5420:1 5422:1 5440:1 5444:1 5445:1 5446:1 5453:2 5456:1 5467:1 5479:1 5503:1 5510:2 5521:2 5535:2 5538:2 5539:1 5541:2 5561:1 5565:6 5567:1 5568:1 5575:1 5576:2 5583:1 5585:1 5586:1 5588:1 5589:1 5591:1 5620:1 5622:1 5623:1 5624:1 5629:1 5632:2 5634:1 5639:1 5641:1 5642:2 5643:1 5647:12 5680:3 5686:1 5703:1 5715:1 5725:3 5735:2 5751:6 5756:1 5761:1 5763:1 5801:1 5805:1 5828:1 5834:1 5836:1 5838:1 5844:2 5845:3 5847:1 5849:1 5850:1 5852:2 5853:1 5859:2 5860:4 5861:3 5872:1 5897:1 5904:1 5938:1 5954:1 5975:1 5987:1 5991:4 5992:2 6006:1 6015:1 6047:1 6055:1 6064:1 6066:1 6082:1 6092:2 6115:1 6129:2 6137:2 6146:1 6152:1 6162:1 6210:1 6223:1 6233:2 6235:1 6238:1 6242:1 6246:1 6254:8 6259:1 6262:2 6265:3 6267:1 6273:1 6275:1 6279:1 6287:2 6300:1 6301:1 6307:1 6310:1 6340:1 6344:1 6345:3 6357:2 6361:1 6366:2 6385:1 6389:1 6394:1 6398:1 6401:2 6402:1 6430:1 6449:2 6453:1 6460:1 6465:1 6468:1 6469:1 6477:1 6486:1 6490:6 6498:2 6516:1 6524:1 6528:1 6534:1 6537:3 6538:2 6545:1 6549:4 6550:1 6552:1 6557:5 6560:1 6564:1 6587:1 6588:1 6590:1 6599:1 6602:1 6604:1 6620:1 6621:1 6626:4 6631:4 6641:1 6654:1 6658:1 6672:3 6674:1 6677:1 6679:1 6686:1 6689:1 6697:1 6703:1 6705:1 6712:1 6721:1 6728:1 6742:1 6772:1 6797:1 6800:1 6806:1 6810:2 6846:1 6857:1 6859:2 6860:5 6864:3 6869:1 6870:1 6876:3 6881:1 6894:6 6895:2 6898:2 6912:1 6913:3 6922:1 6935:1 6943:2 6946:1 6951:1 6959:1 6962:1 6964:1 6969:1 6980:1 6981:1 6988:1 6989:2 6997:1 7002:1 7006:1 7015:1 7016:1 7027:1 7052:3 7067:4 7068:6 7081:2 7086:1 7090:4 7092:2 7093:3 7094:1 7109:1 7116:4 7117:2 7121:1 7136:45 7137:2 7140:2 7147:1 7155:10 7156:6 7162:2 7194:1 7201:1 7202:1 7211:1 7222:1 7224:1 7229:3 7230:2 7235:1 7242:1 7244:2 7256:2 7264:3 7276:1 7294:2 7300:1 7305:1 7325:1 7326:2 7352:1 7355:1 7356:3 7359:1 7385:1 7389:1 7390:1 7391:1 7402:2 7446:1 7461:1 7477:1 7489:1 7491:1 7507:1 7508:1 7517:1 7520:1 7523:1 7547:1 7556:1 7558:1 7559:2 7568:1 7575:1 7576:1 7580:2 7592:1 7593:1 7609:24 7618:1 7619:1 7637:3 7640:3 7642:1 7644:2 7670:1 7676:1 7696:6 7698:1 7700:1 7706:1 7734:1 7744:3 7747:1 7748:2 7751:1 7756:1 7771:1 7777:2 7778:4 7784:3 7790:1 7796:1 7812:2 7814:1 7820:1 7825:1 7836:1 7840:1 7850:1 7857:1 7858:1 7876:1 7877:2 7886:2 7889:1 7890:1 7940:1 7944:1 7945:1 7950:1 7952:1 7957:1 7976:1 7978:2 7989:6 7991:1 8005:2 8008:3 8023:1 8034:1 8036:1 8043:1 8049:2 8052:1 8054:1 8063:1 8069:1 8073:1 8085:2 8095:1 8113:1 8120:1 8124:1 8148:1 8153:1 8154:1 8163:1 8164:1 8171:1 8197:1 8199:1 8215:3 8228:1 8247:1 8250:1 8253:1 8254:1 8258:3 8282:3 8289:1 8295:2 8306:1 8311:1 8331:1 8332:1 8340:1 8345:1 8350:6 8351:1 8356:1 8358:1 8363:1 8370:4 8378:1 8387:2 8389:1 8407:6 8409:1 8423:1 8426:1 8437:1 8445:11 8446:6 8460:2 8461:1 8469:1 8501:3 8507:1 8515:1 8521:1 8525:3 8527:1 8541:1 8544:1 8550:2 8552:2 8553:3 8555:2 8567:1 8578:1 8584:1 8600:1 8612:1 8620:2 8622:1 8632:1 8635:5 8637:1 8650:1 8656:3 8658:2 8663:1 8664:1 8674:4 8698:1 8699:1 8706:1 8728:1 8735:1 8741:1 8756:3 8763:1 8765:3 8771:1 8782:1 8786:1 8793:1 8820:1 8833:1 8838:1 8846:1 8853:7 8856:2 8885:3 8894:1 8895:1 8904:3 8908:1 8926:1 8943:1 8947:1 8953:1 8954:3 8956:3 8958:2 8964:1 8981:1 8987:2 8990:1 9020:2 9022:1 9031:1 9041:1 9067:2 9073:1 9077:1 9087:1 9090:1 9101:2 9113:1 9124:1 9131:1 9132:1 9144:1 9155:1 9172:1 9173:1 9178:1 9179:1 9191:1 9196:1 9216:1 9218:1 9221:1 9222:1 9224:1 9230:5 9243:4 9249:4 9251:2 9263:1 9281:2 9291:1 9300:3 9301:1 9328:1 9332:2 9337:2 9348:1 9358:1 9361:4 9364:1 9388:2 9391:1 9396:12 9398:2 9402:2 9406:1 9424:2 9425:1 9434:1 9439:1 9450:1 9469:1 9488:1 9491:2 9493:1 9509:1 9524:1 9534:1 9536:1 9537:1 9540:1 9542:4 9550:1 9552:1 9555:2 9588:1 9601:4 9608:1 9610:1 9612:1 9617:1 9620:3 9626:1 9632:1 9635:1 9642:4 9660:1 9681:1 9691:1 9695:1 9696:1 9703:1 9708:1 9710:2 9713:2 9718:1 9725:2 9732:1 9739:1 9748:1 9750:3 9757:1 9764:2 9766:1 9769:1 9775:7 9778:4 9791:2 9795:3 9799:1 9802:1 9807:1 9812:2 9820:1 9834:2 9848:7 9849:2 9866:2 9868:1 9869:1 9878:4 9899:1 9916:1 9920:1 9926:3 9936:2 9943:1 9946:6 9964:1 9972:1 9980:1 9982:1 9993:3 10025:1 10030:1 10036:1 10096:1 10102:1 10118:1 10120:1 10136:1 10137:2 10141:2 10144:1 10145:2 10149:1 10152:1 10156:1 10157:5 10158:5 10159:1 10168:1 10174:2 10177:2 10181:1 10183:4 10188:1 10189:1 10192:1 10195:1 10198:1 10201:3 10203:3 10208:1 10213:1 10226:2 10234:1 10255:1 10257:1 10259:3 10294:1 10297:1 10312:1 10321:2 10323:1 10326:1 10341:1 10385:1 10392:1 10406:1 10412:1 10425:1 10426:3 10445:1 10463:1 10474:1 10477:1 10478:1 10484:2 10500:3 10503:2 10507:1 10518:2 10523:2 10525:1 10526:1 10528:2 10531:1 10537:3 10539:1 10540:1 10541:2 10550:1 10556:3 10559:2 10572:1 10587:15 10588:1 10611:1 10621:1 10625:4 10632:1 10635:2 10636:2 10648:2 10655:1 10673:1 10675:2 10682:2 10683:1 10690:1 10693:2 10695:2 10696:1 10706:1 10724:1 10738:1 10759:1 10766:1 10783:1 10796:1 10803:3 10804:1 10805:1 10808:1 10814:1 10821:1 10822:4 10826:1 10827:2 10828:1 10830:1 10840:1 10841:1 10851:1 10860:1 10863:1 10864:1 10866:1 10870:2 10874:5 10875:1 10880:3 10898:1 10921:1 10934:2 10938:1 10947:1 10972:1 10975:1 10983:1 10984:1 10998:1 11009:1 11016:1 11017:1 11023:5 11032:1 11043:2 11046:1 11058:1 11063:1 11071:1 11076:2 11081:2 11100:2 11117:2 11127:1 11129:2 11150:1 11170:2 11175:1 11189:1 11191:1 11195:1 11201:2 11205:1 11219:1 11236:1 11244:1 11246:1 11251:5 11252:1 11253:2 11255:1 11256:2 11267:1 11273:2 11279:1 11283:1 11285:1 11290:1 11335:1 11338:2 11339:1 11357:1 11368:1 11376:1 11388:1 11393:1 11407:1 11410:1 11413:1 11423:1 11439:1 11476:3 11494:2 11507:1 11520:1 11527:1 11539:1 11545:1 11550:1 11552:2 11553:1 11568:1 11570:3 11579:1 11593:1 11599:1 11606:1 11647:1 11658:1 11663:1 11665:1 11666:2 11674:1 11687:1 11705:14 11710:4 11719:1 11723:2 11728:1 11739:1 11746:2 11747:3 11753:4 11767:1 11770:1 11775:1 11779:1 11780:1 11786:1 11792:2 11794:1 11798:1 11800:1 11829:1 11845:1 11850:1 11858:2 11863:1 11886:1 11887:1 11889:1 11890:1 11903:1 11923:1 11924:1 11930:2 11932:1 11944:1 11946:1 11963:1 11977:1 11982:3 11994:2 11996:1 12041:1 12042:1 12060:1 12071:1 12075:1 12078:1 12082:1 12083:1 12085:2 12090:4 12101:1 12106:2 12115:2 12122:1 12138:6 12157:1 12161:2 12186:1 12193:4 12194:1 12205:1 12217:1 12221:1 12223:1 12224:1 12225:1 12233:9 12236:1 12242:2 12247:1 12260:1 12264:1 12272:1 12273:1 12279:2 12283:1 12289:1 12290:1 12301:16 12306:1 12308:1 12311:1 12327:1 12342:2 12343:1 12350:3 12366:1 12371:2 12384:2 12394:1 12395:1 12397:1 12421:3 12441:1 12446:6 12449:1 12465:1 12471:2 12475:1 12478:1 12499:3 12515:1 12521:1 12525:1 12528:1 12533:3 12535:1 12537:1 12544:1 12549:1 12551:1 12558:6 12559:1 12561:1 12562:2 12563:1 12564:2 12565:1 12569:7 12570:2 12590:1 12591:1 12593:1 12595:1 12620:1 12636:1 12643:1 12675:2 12680:2 12685:1 12686:1 12695:1 12706:1 12711:1 12719:4 12751:1 12756:1 12758:1 12760:1 12767:1 12770:1 12773:2 12774:1 12778:1 12790:1 12794:1 12814:2 12820:1 12821:1 12829:1 12830:1 12833:1 12836:7 12857:3 12861:1 12867:1 12890:1 12902:1 12903:2 12909:1 12913:1 12923:1 12929:1 12931:1 12934:1 12944:1 12957:1 12977:1 12983:1 12984:1 12990:1 12993:1 12997:1 13004:1 13010:1 13017:1 13052:1 13063:2 13077:5 13091:1 13104:1 13123:1 13143:1 13175:1 13199:1 13200:1 13204:3 13205:4 13212:1 13222:2 13223:2 13225:1 13229:2 13230:1 13248:1 13250:1 13256:1 13265:2 13285:1 13294:1 13305:1 13312:1 13327:2 13334:1 13337:1 13349:1 13353:1 13355:1 13361:2 13367:1 13375:3 13380:2 13428:1 13430:2 13433:1 13444:2 13476:2 13477:1 13484:1 13491:1 13506:1 13513:1 13517:1 13531:1 13540:3 13552:1 13555:1 13558:2 13563:1 13587:1 13589:1 13595:1 13637:1 13643:2 13689:2 13693:2 13696:1 13702:1 13712:1 13722:1 13734:1 13762:2 13774:1 13776:3 13781:1 13793:1 13794:1 13795:2 13801:1 13804:1 13806:1 13829:1 13887:1 13891:1 13894:1 13900:2 13922:1 13928:1 13944:1 13974:1 13995:2 14004:1 14010:1 14027:1 14032:1 14034:1 14035:2 14047:1 14064:2 14071:3 14075:1 14096:1 14098:1 14099:1 14107:1 14113:2 14130:2 14134:1 14156:1 14158:1 14168:2 14184:1 14189:2 14211:1 14213:1 14216:1 14217:1 14225:1 14229:6 14244:3 14252:1 14263:3 14266:1 14279:3 14299:1 14302:1 14311:1 14328:1 14332:1 14335:2 14377:1 14391:2 14392:1 14403:2 14409:1 14413:1 14417:4 14420:1 14424:1 14426:1 14432:1 14445:4 14446:1 14450:1 14453:1 14462:1 14465:1 14475:1 14491:2 14497:2 14532:2 14535:1 14539:1 14550:3 14559:2 14567:1 14570:1 14572:3 14587:1 14600:3 14615:1 14648:1 14667:1 14676:1 14683:1 14687:15 14690:1 14704:1 14706:1 14709:3 14712:1 14738:3 14772:1 14783:1 14789:2 14796:3 14817:2 14821:1 14832:2 14845:1 14876:1 14883:1 14890:1 14891:1 14892:1 14902:2 14903:1 14928:1 14929:1 14931:3 14934:1 14946:1 14950:1 14954:6 14955:2 14956:2 14957:6 14958:1 14959:1 14963:2 14965:1 14967:2 14968:3 14972:1 14973:1 14975:1 14978:1 14979:1 14987:1 15013:1 15021:1 15024:1 15037:1 15060:1 15069:1 15083:1 15087:2 15088:1 15109:2 15114:1 15117:1 15119:2 15120:2 15140:1 15162:1 15169:1 15170:1 15178:1 15192:1 15198:1 15217:1 15240:1 15250:1 15252:1 15254:1 15262:2 15272:1 15274:2 15281:2 15282:1 15290:1 15294:5 15299:1 15302:2 15308:1 15316:1 15321:2 15324:1 15325:4 15329:2 15334:1 15342:3 15344:2 15353:3 15359:1 15367:1 15372:1 15402:1 15407:14 15408:1 15422:1 15426:1 15431:1 15432:4 15434:1 15437:1 15472:1 15476:1 15490:1 15491:1 15497:2 15499:1 15507:1 15512:4 15524:1 15525:1 15534:1 15538:1 15541:2 15558:1 15575:2 15580:1 15596:5 15603:1 15617:2 15619:1 15622:1 15646:1 15661:2 15667:1 15688:1 15703:2 15705:3 15719:1 15720:1 15722:1 15731:1 15763:1 15765:1 15768:1 15787:1 15790:1 15799:1 15808:2 15814:1 15821:1 15828:1 15837:1 15845:2 15858:2 15862:1 15864:2 15870:1 15873:1 15886:1 15889:1 15909:1 15930:1 15938:1 15966:1 15979:1 15982:1 16000:1 16005:1 16021:2 16027:1 16036:1 16037:3 16041:1 16046:1 16047:1 16054:3 16059:2 16060:2 16064:2 16068:1 16070:1 16071:10 16109:1 16111:2 16112:1 16116:2 16117:1 16121:1 16128:1 16133:1 16136:1 16139:1 16140:1 16156:1 16176:1 16189:1 16203:1 16204:1 16222:3 16226:1 16236:1 16244:2 16256:1 16257:1 16261:1 16266:1 16276:1 16279:1 16309:1 16311:1 16312:1 16313:1 16339:1 16343:1 16344:1 16347:2 16357:1 16379:1 16401:1 16405:1 16425:1 16426:2 16433:1 16437:1 16439:1 16450:1 16452:1 16466:1 16487:1 16514:1 16540:1 16542:1 16551:2 16570:2 16651:2 16657:2 16658:1 16664:1 16674:1 16680:1 16687:1 16703:1 16719:1 16721:1 16727:1 16758:1 16770:1 16771:1 16787:1 16791:3 16795:1 16805:1 16838:1 16848:15 16860:1 16880:1 16906:1 16932:1 16954:14 16963:4 16964:1 16975:1 16977:5 16990:1 16997:1 17001:2 17012:1 17025:2 17048:4 17058:2 17068:2 17084:2 17085:1 17087:1 17107:3 17112:2 17125:2 17126:3 17137:2347 17147:1 17151:1 17161:1 17162:1 17188:1 17197:1 17200:1 17201:1 17220:2 17235:1 17251:1 17262:1 17263:1 17282:1 17296:1 17307:1 17311:1 17314:1 17317:2 17321:5 17322:4 17332:1 17339:1 17341:1 17351:1 17359:1 17375:1 17386:1 17399:1 17404:1 17406:1 17407:1 17448:1 17450:3 17453:2 17459:1 17494:1 17500:1 17502:1 17503:3 17521:1 17522:1 17534:2 17549:1 17551:1 17564:2 17566:1 17573:1 17581:1 17588:1 17591:1 17603:2 17608:1 17616:1 17627:1 17636:1 17642:2 17643:2 17646:2 17655:1 17661:1 17670:2 17672:1 17691:2 17692:2 17708:3 17712:1 17716:1 17728:3 17752:3 17753:1 17758:1 17761:1 17770:1 17771:2 17777:8 17787:1 17801:1 17803:1 17818:1 17823:2 17824:1 17825:1 17833:2 17846:5 17860:1 17862:1 17877:1 17891:1 17900:4 17905:1 17907:2 17912:1 17914:2 17929:4 17930:1 17935:1 17938:1 17942:2 17956:1 17961:4 17968:2 17970:1 17975:3 18006:3 18009:1 18017:1 18031:1 18034:1 18038:2 18039:2 18046:1 18047:2 18050:1 18058:1 18068:1 18075:1 18077:1 18078:1 18079:1 18080:1 18083:1 18088:1 18117:1 18130:3 18144:1 18145:2 18146:1 18147:1 18152:1 18153:3 18158:1 18182:1 18183:1 18185:1 18187:1 18196:1 18203:2 18208:1 18214:1 18227:1 18229:1 18237:2 18238:1 18249:1 18252:1 18268:1 18276:1 18279:2 18282:4 18287:1 18288:4 18289:1 18335:1 18340:1 18354:2 18360:1 18363:1 18368:2 18369:2 18371:2 18388:1 18389:2 18392:3 18399:3 18404:1 18405:2 18407:2 18409:1 18421:5 18430:2 18449:1 18458:1 18460:1 18462:1 18465:2 18466:4 18494:1 18495:1 18504:2 18505:1 18507:1 18510:1 18526:1 18531:3 18548:1 18552:1 18553:2 18569:1 18577:3 18578:19 18579:2 18586:1 18592:5 18596:1 18612:1 18613:1 18620:1 18627:1 18643:2 18652:1 18653:1 18663:1 18672:1 18678:1 18683:1 18695:1 18697:1 18701:1 18705:1 18726:1 18738:1 18768:4 18787:1 18789:2 18802:2 18807:1 18817:2 18828:1 18830:1 18840:2 18850:1 18865:8 18871:2 18878:1 18886:1 18916:1 18917:1 18920:1 18927:1 18937:1 18968:1 18969:1 18973:4 18987:3 18996:1 18999:1 19002:1 19006:1 19010:1 19011:1 19020:1 19023:2 19051:2 19057:3 19063:2 19066:2 19073:2 19078:1 19080:1 19081:1 19089:2 19093:1 19116:5 19126:2 19127:1 19135:1 19149:2 19153:1 19162:1 19178:2 19183:1 19190:2 19191:1 19198:5 19202:1 19206:2 19207:1 19209:1 19213:1 19215:2 19227:3 19258:2 19264:1 19277:1 19296:1 19297:1 19298:1 19302:2 19304:1 19312:2 19319:2 19321:2 19327:2 19331:2 19332:1 19337:2 19353:1 19358:2 19381:2 19392:1 19393:4 19401:1 19402:1 19403:4 19418:1 19420:1 19427:2 19431:1 19435:1 19440:1 19441:1 19446:2 19447:1 19450:1 19460:1 19463:1 19480:1 19481:1 19486:1 19510:1 19517:1 19519:1 19524:2 19525:2 19538:1 19550:1 19618:1 19622:1 19640:1 19652:2 19656:1 19664:2 19665:2 19667:1 19669:1 19673:1 19674:1 19679:1 19687:1 19694:2 19699:3 19705:1 19714:1 19723:1 19740:1 19746:1 19750:1 19758:1 19768:1 19769:1 19787:2 19789:1 19790:1 19791:1 19794:1 19796:2 19799:1 19800:1 19811:1 19814:1 19818:2 19825:2 19830:2 19833:1 19834:1 19838:2 19841:1 19851:1 19853:2 19874:14 19886:2 19887:2 19892:2 19902:1 19916:1 19929:1 19931:1 19943:1 19948:1 19949:1 19952:1 19955:1 20000:2 20010:1 20019:2 20024:1 20026:1 20030:1 20034:4 20036:3 20037:1 20046:2 20054:1 20055:1 20056:1 20059:1 20061:1 20082:1 20083:1 20085:3 20087:4 20088:2 20111:1 20114:1 20151:1 20171:4 20174:1 20176:4 20178:3 20179:3 20181:1 20182:1 20186:1 20189:2 20193:1 20194:2 20202:1 20204:1 20205:5 20212:1 20213:1 20218:1 20223:1 20236:1 20244:2 20252:2 20255:2 20269:1 20297:1 20315:2 20317:2 20322:1 20324:1 20326:1 20329:1 20338:1 20344:1 20351:1 20364:1 20365:3 20368:1 20374:1 20375:1 20377:1 20381:2 20383:1 20392:1 20395:1 20396:1 20405:1 20409:1 20421:2 20423:1 20425:5 20431:1 20440:1 20441:4 20446:1 20447:3 20455:1 20463:1 20470:1 20484:2 20487:1 20490:1 20491:1 20492:4 20498:2 20503:1 20512:2 20513:9 20515:1 20519:1 20525:1 20526:1 20529:1 20531:1 20547:1 20549:1 20553:1 20575:8 20576:1 20589:1 20609:1 20624:1 20631:5 20632:1 20637:1 20640:1 20649:1 20650:1 20664:1 20665:2 20687:1 20690:3 20701:1 20717:1 20722:1 20723:1 20726:6 20728:2 20735:3 20739:1 20740:3 20749:1 20753:1 20757:1 20759:1 20773:1 20775:4 20787:1 20794:1 20795:3 20800:3 20809:1 20815:1 20817:1 20827:1 20834:1 20838:1 20846:1 20851:1 20863:1 20866:1 20890:1 20895:1 20902:1 20903:1 20904:1 20906:1 20914:1 20921:2 20935:10 20936:3 20941:1 20952:2 20957:2 20962:4 20969:1 20970:3 20982:2 20996:1 21021:1 21032:1 21033:1 21037:2 21040:2 21055:1 21056:1 21059:1 21080:1 21083:1 21084:1 21085:1 21086:1 21101:1 21104:1 21121:1 21128:2 21131:1 21138:2 21139:1 21142:1 21170:1 21175:3 21204:3 21215:1 21249:2 21253:1 21269:1 21294:3 21297:2 21304:5 21314:2 21322:1 21328:1 21330:3 21341:2 21344:2 21345:3 21358:1 21368:4 21406:1 21410:1 21413:1 21434:1 21436:1 21446:1 21458:1 21463:1 21472:3 21484:1 21502:1 21505:1 21510:2 21527:2 21534:1 21537:2 21548:1 21549:1 21559:1 21566:1 21575:1 21576:2 21579:2 21584:3 21590:1 21592:1 21605:1 21609:1 21624:3 21625:2 21626:1 21628:2 21641:1 21644:1 21650:1 21695:1 21696:4 21698:1 21701:1 21706:1 21712:1 21714:1 21715:4 21716:1 21718:1 21719:1 21722:1 21725:1 21749:1 21766:2 21769:1 21779:1 21789:1 21832:2 21845:2 21853:1 21878:2 21884:1 21941:1 21943:2 21951:2 21953:1 21964:1 21979:1 21994:1 21996:1 21998:1 22008:2 22017:1 22029:2 22047:1 22057:1 22066:1 22084:1 22090:1 22101:2 22113:1 22136:2 22140:1 22165:2 22176:4 22186:1 22212:1 22213:7 22228:1 22233:1 22241:3 22259:1 22261:1 22267:1 22270:5 22279:1 22280:1 22287:1 22293:1 22317:3 22319:1 22340:2 22341:1 22345:1 22346:2 22381:1 22425:1 22426:1 22451:1 22454:1 22455:1 22461:1 22464:1 22467:3 22469:3 22473:1 22475:1 22476:1 22477:1 22479:2 22482:1 22483:1 22484:1 22493:1 22494:1 22505:1 22518:6 22535:1 22536:1 22539:1 22544:1 22551:1 22552:1 22555:1 22557:1 22582:12 22585:6 22587:1 22609:1 22611:2 22618:1 22619:1 22630:1 22635:1 22636:1 22639:1 22643:3 22651:2 22667:1 22670:1 22681:1 22728:1 22756:1 22767:1 22768:1 22777:2 22781:1 22787:1 22794:1 22796:1 22800:2 22809:2 22813:1 22817:1 22822:2 22823:2 22826:1 22843:1 22845:1 22850:1 22857:1 22858:2 22863:1 22866:1 22874:1 22890:1 22896:1 22901:4 22913:2 22917:1 22918:1 22924:1 22930:1 22932:1 22941:2 22946:2 22950:1 22952:2 22957:1 22968:1 22974:1 22975:1 23002:18 23003:2 23026:1 23032:1 23033:1 23036:1 23045:1 23055:1 23066:1 23067:1 23074:2 23078:1 23085:1 23098:2 23101:1 23105:2 23110:1 23111:1 23131:1 23133:1 23139:1 23143:1 23145:1 23160:1 23166:1 23173:1 23197:1 23198:1 23220:10 23221:1 23235:1 23240:2 23241:1 23247:1 23253:1 23264:1 23270:1 23276:1 23280:1 23285:6 23286:1 23291:1 23304:1 23308:1 23311:2 23314:1 23340:1 23353:2 23359:1 23365:1 23371:1 23386:1 23398:1 23407:1 23422:2 23426:2 23428:1 23437:2 23448:1 23452:1 23459:1 23473:1 23527:1 23528:2 23534:1 23538:1 23540:1 23560:1 23564:2 23569:5 23571:1 23577:1 23579:1 23594:1 23617:7 23629:1 23632:1 23636:1 23648:1 23650:7 23663:2 23677:1 23682:1 23685:1 23688:3 23689:1 23698:1 23701:1 23705:1 23714:1 23715:1 23746:1 23759:1 23769:1 23777:2 23821:1 23826:1 23838:1 23853:1 23860:1 23889:1 23919:2 23922:1 23928:1 23929:2 23944:1 23945:1 23952:1 23953:1 23958:1 23971:1 23988:3 23991:1 24023:4 24030:1 24035:1 24058:1 24065:1 24074:2 24075:1 24084:1 24088:1 24094:15 24095:2 24105:2 24115:1 24124:1 24126:1 24147:1 24151:2 24163:1 24165:1 24170:1 24183:1 24186:2 24188:2 24199:1 24211:4 24215:3 24221:3 24224:2 24226:4 24228:1 24230:1 24245:1 24253:1 24293:1 24300:1 24324:1 24337:1 24340:2 24350:1 24362:2 24370:2 24380:1 24384:2 24386:1 24387:1 24388:2 24399:1 24415:6 24417:1 24418:1 24425:1 24426:1 24427:1 24434:1 24439:1 24442:1 24446:1 24447:1 24467:1 24470:2 24471:2 24483:1 24531:1 24537:2 24553:1 24561:1 24562:1 24569:3 24596:1 24621:1 24634:1 24635:1 24641:5 24652:1 24653:1 24677:1 24684:1 24689:1 24690:1 24703:1 24707:1 24711:3 24716:1 24721:1 24744:1 24746:2 24747:2 24758:3 24769:1 24773:1 24785:1 24788:1 24793:1 24797:2 24823:1 24838:2 24839:1 24849:1 24851:1 24862:1 24886:1 24895:2 24912:1 24915:3 24918:1 24921:1 24922:2 24931:1 24936:1 24938:2 24950:1 24956:1 24961:2 24972:2 24974:1 24977:1 24980:1 24985:2 24986:1 24991:1 25000:1 25013:1 25016:1 25021:1 25026:1 25028:1 25032:2 25037:1 25063:1 25077:5 25081:3 25084:2 25098:1 25099:1 25108:1 25126:1 25132:2 25137:1 25143:1 25148:2 25155:2 25163:1 25164:1 25172:2 25174:1 25181:1 25187:1 25190:1 25192:1 25193:1 25200:1 25201:1 25204:3 25205:1 25206:1 25210:3 25213:1 25217:2 25219:1 25222:1 25229:2 25238:2 25243:1 25247:1 25279:1 25288:1 25297:4 25311:1 25318:2 25335:2 25358:1 25361:1 25401:1 25404:2 25439:1 25444:1 25445:2 25459:1 25465:2 25480:1 25486:1 25487:1 25490:1 25492:3 25499:5 25521:1 25532:1 25542:1 25563:6 25598:1 25600:1 25613:1 25631:1 25652:1 25655:1 25656:1 25660:2 25674:2 25680:1 25691:1 25699:1 25715:1 25734:1 25742:1 25745:1 25759:2 25760:3 25761:1 25766:1 25773:2 25775:1 25778:2 25790:1 25792:1 25799:1 25801:5 25811:1 25813:1 25815:1 25817:1 25828:2 25832:2 25836:2 25840:1 25845:1 25847:5 25851:1 25860:1 25867:3 25870:1 25883:3 25884:1 25886:3 25889:1 25906:3 25922:1 25924:1 25941:1 25949:1 25963:1 25969:3 25971:4 25977:5 26008:5 26021:1 26023:1 26034:1 26045:1 26051:1 26052:1 26054:1 26064:1 26081:1 26083:6 26088:1 26092:2 26114:1 26120:1 26126:1 26131:1 26141:1 26146:1 26158:1 26162:1 26164:1 26172:1 26173:2 26179:1 26182:1 26196:3 26231:1 26233:1 26234:1 26245:7 26246:1 26249:2 26252:1 26257:1 26259:1 26263:2 26276:1 26308:5 26325:1 26351:1 26365:1 26401:1 26441:1 26468:1 26488:2 26495:1 26497:1 26498:2 26499:2 26502:2 26504:3 26511:1 26515:1 26516:1 26525:1 26539:1 26552:1 26561:1 26571:1 26576:1 26611:3 26614:1 26620:2 26648:2 26651:1 26653:2 26668:1 26670:1 26683:1 26699:1 26704:1 26705:1 26715:1 26721:3 26722:1 26727:1 26728:2 26758:1 26760:1 26763:4 26767:2 26780:1 26784:1 26806:1 26813:1 26819:1 26825:1 26836:1 26844:1 26862:1 26866:1 26868:3 26876:1 26878:1 26892:1 26901:3 26903:1 26919:1 26940:2 26943:2 26961:1 26965:1 26966:3 26973:3 26974:3 26975:1 26978:1 27006:1 27022:5 27025:1
1 12:1 34:1 43:1 45:1 50:1 55:1 60:1 90:1 108:1 124:1 137:1 138:3 147:1 152:2 153:1 159:1 165:2 168:3 175:1 178:6 189:1 194:1 221:1 231:1 236:7 248:1 255:3 262:1 277:2 301:1 312:4 314:3 318:3 326:3 333:1 337:2 356:3 363:1 375:2 392:5 394:5 403:1 414:1 446:1 451:1 480:2 509:1 518:1 522:2 538:1 548:3 554:1 565:1 571:1 573:4 575:2 580:1 588:2 595:1 656:1 665:1 698:1 707:1 708:2 728:1 730:2 731:1 738:1 750:1 776:6 779:1 782:1 786:1 787:4 792:1 798:1 814:16 815:4 823:3 841:4 848:1 853:1 854:4 856:2 857:8 859:1 861:2 863:4 877:2 895:5 898:4 909:1 910:1 943:2 951:1 964:1 994:1 1005:1 1011:1 1028:1 1029:1 1044:1 1053:2 1054:1 1057:1 1100:3 1101:2 1105:1 1107:2 1108:1 1111:2 1118:1 1119:1 1132:1 1139:1 1140:1 1141:1 1145:2 1151:1 1156:2 1161:2 1169:1 1170:1 1178:1 1184:2 1189:1 1214:1 1215:1 1230:1 1236:1 1243:1 1247:1 1249:1 1253:1 1256:1 1264:1 1275:1 1293:1 1296:1 1300:1 1301:2 1303:1 1311:1 1318:1 1319:2 1332:1 1334:1 1340:3 1346:1 1352:1 1361:1 1367:1 1370:1 1371:2 1373:1 1385:1 1390:1 1406:1 1411:4 1417:7 1420:2 1429:1 1450:2 1458:1 1461:1 1465:1 1467:2 1476:1 1480:1 1482:1 1485:2 1498:2 1508:1 1511:1 1513:1 1517:2 1518:1 1526:1 1529:2 1540:1 1545:1 1549:1 1556:1 1560:2 1564:1 1565:1 1570:1 1580:1 1588:1 1595:2 1598:1 1614:1 1615:5 1621:1 1626:1 1632:1 1636:1 1639:3 1642:1 1643:2 1645:1 1651:2 1653:6 1660:1 1676:4 1678:3 1682:1 1692:1 1702:1 1704:1 1710:2 1713:2 1715:4 1717:1 1718:1 1721:1 1731:1 1734:1 1742:2 1744:1 1750:1 1751:1 1757:3 1763:2 1764:1 1765:1 1778:2 1781:1 1782:1 1787:1 1821:1 1825:9 1830:1 1836:1 1840:2 1845:4 1850:1 1851:1 1854:2 1859:1 1862:2 1873:1 1877:1 1884:1 1896:1 1902:1 1905:1 1920:2 1921:1 1923:1 1924:1 1926:2 1929:1 1950:1 1966:11 1970:1 1975:1 1979:1 1984:1 1999:1 2006:2 2007:1 2025:2 2038:3 2040:1 2052:1 2053:1 2056:1 2061:2 2078:2 2079:2 2081:1 2083:3 2084:5 2087:1 2089:1 2090:2 2095:2 2096:2 2097:1 2098:3 2099:5 2103:1 2105:5 2107:3 2109:5 2111:7 2113:1 2123:1 2131:1 2146:1 2149:1 2152:3 2155:3 2158:1 2162:1 2170:2 2172:1 2179:1 2190:1 2191:1 2200:1 2208:1 2210:1 2236:1 2243:1 2247:1 2262:1 2278:3 2280:1 2287:1 2291:1 2297:1 2306:3 2316:2 2317:1 2323:1 2325:1 2330:1 2334:1 2345:1 2347:2 2353:3 2356:2 2358:1 2361:6 2365:1 2366:1 2367:1 2379:1 2382:1 2397:1 2408:4 2410:1 2411:1 2416:1 2430:2 2436:1 2437:1 2438:2 2447:6 2452:2 2458:2 2460:9 2465:4 2467:1 2474:2 2475:1 2481:1 2483:2 2485:1 2490:3 2492:2 2503:2 2515:1 2516:2 2520:3 2524:1 2528:1 2533:1 2557:1 2561:1 2562:2 2563:2 2575:3 2576:1 2577:1 2579:1 2583:7 2590:2 2595:1 2612:1 2614:1 2619:1 2637:1 2639:3 2641:1 2656:4 2660:1 2664:1 2667:16 2689:3 2690:1 2694:1 2695:1 2697:1 2706:2 2711:3 2714:1 2731:20 2733:2 2743:1 2756:2 2758:3 2773:2 2783:1 2814:1 2822:1 2826:1 2840:1 2841:5 2852:3 2856:1 2860:1 2866:1 2879:1 2889:1 2902:1 2904:1 2908:1 2915:2 2923:1 2938:2 2949:1 2956:3 2968:1 2991:1 2992:2 3026:1 3027:2 3028:1 3031:1 3034:1 3048:6 3049:1 3103:1 3137:1 3147:2 3152:1 3162:1 3192:1 3193:1 3194:1 3203:1 3209:1 3210:1 3213:1 3222:1 3230:1 3232:1 3252:1 3268:1 3286:2 3291:1 3309:1 3314:1 3315:13 3318:1 3325:1 3328:2 3330:2 3331:2 3332:1 3346:1 3350:1 3352:1 3358:1 3359:1 3366:1 3394:1 3399:2 3400:1 3406:1 3407:1 3410:3 3414:2 3423:1 3446:1 3459:1 3470:1 3473:1 3480:2 3483:1 3486:2 3488:1 3494:3 3506:1 3510:1 3513:2 3520:1 3523:1 3540:2 3542:1 3554:1 3560:3 3561:1 3575:2 3576:1 3581:4 3583:1 3587:2 3590:1 3591:2 3600:4 3602:1 3608:1 3610:2 3611:2 3629:1 3631:2 3646:1 3650:2 3652:3 3660:1 3683:2 3691:6 3692:4 3698:2 3730:1 3733:2 3737:1 3742:1 3756:1 3759:1 3760:2 3779:1 3787:2 3790:1 3791:1 3794:1 3798:1 3813:2 3822:1 3828:2 3838:1 3845:4 3846:1 3848:1 3849:1 3853:2 3856:1 3859:1 3863:2 3875:1 3882:1 3888:1 3898:1 3912:1 3917:1 3937:1 3952:7 3957:1 3977:3 3984:1 3993:2 3999:1 4003:1 4005:2 4018:2 4032:2 4038:1 4057:1 4062:1 4064:4 4065:2 4084:4 4097:1 4107:1 4116:1 4118:1 4125:1 4140:2 4146:2 4160:1 4164:1 4167:1 4172:1 4173:3 4175:1 4189:1 4201:1 4217:3 4218:1 4226:1 4234:5 4246:1 4249:1 4275:4 4284:2 4287:1 4294:1 4295:1 4302:4 4307:1 4319:4 4344:2 4361:1 4365:2 4369:3 4383:3 4386:1 4394:1 4403:1 4419:1 4422:2 4429:1 4431:1 4445:1 4446:1 4461:1 4467:1 4477:1 4488:15 4490:2 4499:1 4501:1 4502:1 4509:1 4516:1 4527:1 4535:1 4546:1 4554:1 4608:3 4625:1 4629:4 4631:7 4632:3 4634:1 4637:2 4638:2 4639:1 4642:1 4643:2 4645:6 4646:4 4650:1 4651:2 4652:8 4658:2 4659:5 4662:1 4663:1 4674:1 4677:1 4701:1 4718:1 4737:2 4744:1 4762:1 4767:1 4776:1 4801:1 4834:1 4842:1 4866:1 4877:1 4887:2 4911:1 4916:1 4941:3 4945:2 4955:1 4982:1 4985:1 5006:5 5018:1 5037:1 5050:1 5055:1 5064:2 5075:1 5081:1 5088:1 5094:1 5101:1 5121:1 5130:1 5153:1 5156:1 5173:1 5197:2 5207:1 5212:2 5216:1 5221:1 5230:5 5231:1 5234:2 5236:1 5239:3 5240:1 5255:1 5256:1 5281:3 5292:2 5293:1 5296:1 5309:6 5314:1 5315:1 5330:2 5336:1 5383:1 5392:1 5398:1 5416:1 5420:1 5422:1 5440:1 5444:1 5445:1 5446:1 5453:2 5456:1 5467:1 5479:1 5503:1 5510:2 5521:2 5535:2 5538:2 5539:1 5541:2 5561:1 5565:6 5567:1 5568:1 5575:1 5576:2 5583:1 5585:1 5586:1 5588:1 5589:1 5591:1 5620:1 5622:1 5623:1 5624:1 5629:1 5632:2 5634:1 5639:1 5641:1 5642:2 5643:1 5647:12 5680:3 5686:1 5703:1 5715:1 5725:3 5735:2 5751:6 5756:1 5761:1 5763:1 5801:1 5805:1 5828:1 5834:1 5836:1 5838:1 5844:2 5845:3 5847:1 5849:1 5850:1 5852:2 5853:1 5859:2 5860:4 5861:3 5872:1 5897:1 5904:1 5938:1 5954:1 5975:1 5987:1 5991:4 5992:2 6006:1 6015:1 6047:1 6055:1 6064:2 6066:1 6082:1 6092:2 6115:1 6129:2 6137:2 6146:1 6152:1 6162:1 6210:1 6223:1 6233:2 6235:1 6238:1 6242:1 6246:1 6254:8 6259:1 6262:2 6265:3 6267:1 6273:1 6275:1 6279:1 6287:2 6300:1 6301:1 6307:1 6310:1 6340:1 6344:1 6345:3 6357:2 6361:1 6366:2 6385:1 6389:1 6394:1 6398:1 6401:2 6402:1 6430:1 6449:2 6453:1 6460:1 6465:1 6468:1 6469:1 6477:1 6486:1 6490:6 6498:2 6516:1 6524:1 6528:1 6534:1 6537:3 6538:2 6545:1 6549:4 6550:1 6552:1 6557:5 6560:1 6564:1 6587:1 6588:1 6590:1 6599:1 6602:1 6604:1 6620:1 6621:1 6626:4 6631:4 6641:1 6654:1 6658:1 6672:3 6674:1 6677:1 6679:1 6686:1 6689:1 6697:1 6701:1 6703:1 6705:1 6712:1 6721:1 6728:1 6742:1 6772:1 6797:1 6800:1 6806:1 6810:2 6846:1 6857:1 6859:2 6860:6 6864:3 6869:1 6870:1 6876:3 6881:1 6894:6 6895:2 6898:2 6912:1 6913:3 6922:1 6935:1 6943:2 6946:1 6951:1 6959:1 6962:1 6964:1 6969:1 6980:1 6981:1 6988:1 6989:2 6997:1 7002:1 7006:1 7015:1 7016:1 7027:1 7052:3 7067:4 7068:6 7081:2 7086:1 7090:4 7092:2 7093:3 7094:1 7109:1 7116:4 7117:2 7121:1 7136:46 7137:2 7140:2 7147:1 7155:10 7156:6 7162:2 7166:1 7194:1 7201:1 7202:1 7211:1 7222:1 7224:1 7229:3 7230:2 7235:1 7242:1 7244:2 7256:2 7264:3 7276:1 7294:2 7300:1 7305:1 7325:1 7326:2 7352:1 7355:1 7356:3 7359:1 7385:1 7389:1 7390:1 7391:1 7402:2 7446:1 7461:1 7477:1 7489:1 7491:1 7507:1 7508:1 7517:1 7520:1 7523:1 7538:1 7547:1 7556:1 7558:1 7559:2 7568:1 7575:1 7576:1 7580:2 7592:1 7593:1 7609:25 7618:1 7619:1 7637:3 7640:3 7642:1 7644:2 7670:1 7676:1 7696:6 7698:1 7700:1 7706:1 7734:1 7744:3 7747:1 7748:2 7751:1 7756:1 7771:1 7777:2 7778:4 7784:3 7790:1 7796:1 7812:2 7814:1 7820:1 7825:1 7836:1 7840:1 7850:1 7857:1 7858:1 7876:1 7877:2 7886:2 7889:1 7890:1 7940:1 7944:1 7945:1 7950:1 7952:1 7957:1 7976:1 7978:2 7989:6 7991:1 8005:2 8008:3 8023:1 8034:1 8036:1 8043:1 8049:2 8052:1 8054:1 8063:1 8069:1 8073:1 8085:2 8095:1 8113:1 8120:1 8124:1 8148:1 8153:1 8154:1 8163:1 8164:1 8171:1 8197:1 8199:1 8215:3 8228:1 8247:1 8250:1 8253:1 8254:1 8258:3 8282:3 8289:1 8295:2 8306:1 8311:1 8331:1 8332:1 8340:1 8345:2 8350:6 8351:1 8356:1 8358:1 8363:1 8370:4 8378:1 8387:2 8389:1 8407:6 8409:1 8423:1 8426:1 8437:1 8445:11 8446:6 8460:2 8461:1 8469:1 8501:3 8507:1 8515:1 8521:1 8525:3 8527:1 8541:1 8544:1 8550:2 8552:2 8553:3 8555:2 8567:1 8578:1 8584:1 8600:1 8612:1 8620:2 8622:1 8632:1 8635:5 8637:1 8650:1 8656:3 8658:2 8663:1 8664:1 8674:4 8698:1 8699:1 8706:1 8728:1 8735:1 8741:1 8756:3 8763:1 8765:3 8771:1 8782:1 8786:1 8793:1 8820:1 8833:1 8838:1 8846:1 8853:7 8856:2 8885:3 8894:1 8895:1 8904:3 8908:1 8926:1 8943:1 8947:1 8953:1 8954:3 8956:3 8958:2 8964:1 8981:1 8987:2 8990:2 9020:2 9022:1 9031:1 9041:1 9067:2 9073:1 9077:1 9087:1 9090:1 9101:2 9109:1 9113:2 9124:1 9131:1 9132:1 9144:1 9155:1 9172:1 9173:1 9178:1 9179:1 9191:1 9196:1 9216:1 9218:1 9221:1 9222:1 9224:1 9230:5 9243:4 9249:4 9251:2 9263:1 9281:2 9291:1 9300:3 9301:1 9328:1 9332:2 9337:2 9348:1 9358:1 9361:4 9364:1 9388:2 9391:1 9396:12 9398:2 9402:2 9406:1 9424:2 9425:1 9434:1 9439:1 9450:1 9469:1 9488:1 9491:2 9493:1 9509:1 9524:1 9534:1 9536:1 9537:1 9540:1 9542:4 9550:1 9552:1 9555:2 9588:1 9601:4 9608:1 9610:1 9612:1 9617:1 9620:3 9626:1 9632:1 9635:1 9642:4 9660:1 9681:1 9691:1 9695:1 9696:1 9703:1 9708:1 9710:2 9713:2 9718:1 9725:2 9732:1 9739:1 9748:1 9750:3 9757:1 9764:2 9766:1 9769:1 9775:7 9778:4 9791:2 9795:3 9799:1 9802:1 9807:1 9812:2 9820:1 9834:2 9848:7 9849:2 9866:2 9868:1 9869:1 9878:4 9899:1 9916:1 9920:1 9926:3 9936:2 9943:1 9946:6 9964:1 9972:1 9980:1 9982:1 9993:3 10025:1 10030:1 10036:1 10096:1 10102:1 10118:1 10120:1 10136:1 10137:2 10141:2 10144:1 10145:2 10149:1 10152:1 10156:1 10157:5 10158:5 10159:1 10168:1 10174:2 10177:2 10181:1 10183:4 10188:1 10189:1 10192:1 10195:1 10198:1 10201:3 10203:3 10208:1 10213:1 10226:2 10234:1 10255:1 10257:1 10259:3 10294:1 10297:1 10312:1 10321:2 10323:1 10326:1 10341:1 10385:1 10392:1 10406:1 10412:1 10425:1 10426:3 10445:1 10463:1 10474:1 10477:1 10478:1 10484:2 10487:1 10500:3 10503:2 10507:1 10518:2 10523:2 10525:1 10526:1 10528:2 10531:1 10537:3 10539:1 10540:1 10541:2 10550:1 10556:3 10559:2 10572:1 10587:15 10588:1 10611:1 10621:1 10625:4 10632:1 10635:2 10636:2 10648:2 10655:1 10673:1 10675:2 10682:2 10683:1 10690:1 10693:2 10695:2 10696:1 10706:1 10724:1 10738:1 10759:1 10766:1 10783:1 10796:1 10803:3 10804:1 10805:1 10807:1 10808:1 10814:1 10821:1 10822:4 10826:1 10827:2 10828:1 10830:1 10840:1 10841:1 10851:1 10860:1 10863:1 10864:1 10866:1 10870:2 10874:5 10875:1 10880:3 10898:1 10921:1 10934:2 10938:1 10947:1 10953:1 10972:1 10975:1 10983:1 10984:1 10998:1 11009:1 11016:1 11017:1 11023:5 11032:1 11043:2 11046:1 11058:1 11063:1 11071:1 11076:2 11081:2 11100:2 11117:2 11127:1 11129:2 11150:1 11170:2 11175:1 11189:1 11191:1 11195:1 11201:2 11205:1 11219:1 11236:1 11244:1 11246:1 11251:5 11252:1 11253:2 11255:1 11256:2 11267:1 11273:2 11279:1 11283:1 11285:1 11290:1 11335:1 11338:2 11339:1 11357:1 11368:1 11376:1 11388:1 11393:1 11407:1 11410:1 11413:1 11423:1 11439:1 11476:3 11494:2 11507:1 11520:1 11527:1 11539:1 11545:1 11550:1 11552:2 11553:1 11568:1 11570:3 11579:1 11593:1 11599:1 11606:1 11647:1 11658:1 11663:1 11665:1 11666:2 11674:1 11687:1 11705:15 11710:5 11719:1 11723:2 11728:1 11739:1 11746:2 11747:3 11753:4 11767:1 11770:1 11775:1 11779:1 11780:1 11786:1 11792:2 11794:1 11798:1 11800:1 11829:1 11845:1 11850:1 11858:2 11863:1 11886:1 11887:1 11889:1 11890:1 11903:1 11923:1 11924:1 11930:2 11932:1 11944:1 11946:1 11963:1 11977:1 11982:3 11994:2 11996:1 12041:1 12042:1 12060:1 12071:1 12075:1 12078:1 12082:1 12083:1 12085:3 12090:4 12101:1 12105:1 12106:2 12115:2 12122:1 12138:6 12157:1 12161:2 12186:1 12193:4 12194:1 12205:1 12217:1 12221:1 12223:1 12224:1 12225:1 12233:9 12236:1 12242:2 12247:1 12260:1 12264:1 12272:1 12273:1 12279:2 12283:1 12289:1 12290:1 12301:16 12306:1 12308:1 12311:1 12327:1 12342:2 12343:1 12350:3 12366:1 12371:2 12384:2 12394:1 12395:1 12397:1 12421:3 12441:1 12446:6 12449:1 12465:1 12471:2 12475:1 12478:1 12499:3 12515:1 12521:1 12525:1 12528:1 12533:3 12535:1 12537:1 12544:1 12549:1 12551:1 12558:6 12559:1 12561:1 12562:2 12563:1 12564:2 12565:1 12569:7 12570:2 12590:1 12591:1 12593:1 12595:1 12620:1 12636:1 12643:1 12675:2 12680:2 12685:1 12686:1 12695:1 12706:1 12711:1 12719:4 12751:1 12756:1 12758:1 12760:1 12767:1 12770:1 12773:2 12774:1 12778:1 12790:1 12794:1 12814:2 12820:1 12821:1 12829:1 12830:1 12833:1 12836:7 12857:3 12861:1 12867:1 12890:1 12902:1 12903:2 12909:1 12913:1 12923:1 12929:1 12931:1 12934:1 12944:1 12957:1 12977:1 12983:1 12984:1 12990:1 12993:1 12997:1 13004:1 13010:1 13017:1 13052:1 13063:2 13075:1 13077:5 13091:1 13104:1 13123:1 13143:1 13175:1 13199:1 13200:1 13204:3 13205:4 13212:1 13222:2 13223:2 13225:1 13229:2 13230:1 13248:1 13250:1 13251:1 13256:1 13265:2 13285:1 13294:1 13305:1 13312:1 13327:2 13334:1 13337:1 13349:1 13353:1 13355:1 13361:2 13367:1 13375:3 13380:2 13428:1 13430:2 13433:1 13444:2 13457:2 13476:2 13477:1 13484:1 13491:1 13506:1 13513:1 13517:1 13531:1 13540:3 13552:1 13555:1 13558:2 13563:1 13587:1 13589:1 13595:1 13637:1 13643:2 13689:2 13693:2 13696:1 13702:1 13712:1 13722:1 13734:1 13762:2 13774:1 13776:3 13781:1 13793:1 13794:1 13795:2 13801:1 13804:1 13806:1 13829:1 13887:1 13891:1 13894:1 13900:2 13922:1 13928:1 13944:1 13974:1 13995:2 14004:1 14010:1 14027:1 14032:1 14034:1 14035:2 14047:1 14064:2 14071:3 14075:1 14096:1 14098:1 14099:1 14107:1 14113:2 14130:3 14134:1 14156:1 14158:1 14168:2 14184:1 14189:2 14211:1 14213:1 14216:1 14217:1 14225:1 14229:6 14244:3 14252:1 14263:3 14266:1 14279:3 14299:1 14302:1 14311:1 14328:1 14332:1 14335:2 14377:1 14391:2 14392:1 14403:2 14409:1 14413:1 14417:4 14420:1 14424:1 14426:1 14432:1 14445:4 14446:1 14450:1 14453:1 14462:1 14465:1 14475:1 14491:2 14497:2 14532:2 14535:1 14539:1 14550:3 14559:2 14567:1 14570:1 14572:3 14587:1 14600:3 14615:1 14648:1 14667:1 14676:1 14683:1 14687:15 14690:1 14704:1 14706:1 14709:3 14712:1 14738:3 14772:1 14783:1 14789:2 14796:3 14817:2 14821:1 14832:2 14845:1 14876:1 14883:1 14890:1 14891:1 14892:1 14902:2 14903:1 14928:1 14929:1 14931:3 14934:1 14946:1 14950:1 14954:6 14955:2 14956:2 14957:6 14958:1 14959:1 14963:2 14965:1 14967:2 14968:4 14972:1 14973:1 14975:1 14978:1 14979:1 14987:1 15013:2 15021:1 15024:1 15037:1 15060:1 15069:1 15083:1 15087:2 15088:1 15109:2 15114:1 15117:1 15119:2 15120:2 15140:1 15162:1 15169:1 15170:1 15178:1 15192:1 15198:1 15217:1 15240:1 15250:1 15252:1 15254:1 15262:2 15272:1 15274:2 15281:2 15282:1 15290:1 15294:5 15299:1 15302:2 15308:1 15316:1 15321:2 15324:1 15325:4 15329:2 15334:1 15342:3 15344:2 15353:3 15359:1 15367:1 15372:1 15402:1 15407:14 15408:1 15422:1 15426:1 15431:1 15432:4 15434:1 15437:1 15472:1 15476:1 15490:1 15491:1 15497:2 15499:1 15507:1 15512:4 15524:1 15525:1 15534:1 15538:2 15541:2 15558:1 15575:2 15580:1 15596:5 15603:1 15617:2 15619:1 15622:1 15646:1 15661:2 15667:1 15688:1 15703:2 15705:3 15719:1 15720:1 15722:1 15731:1 15763:1 15765:1 15768:1 15787:1 15790:1 15799:1 15808:2 15814:1 15821:1 15828:1 15837:1 15845:2 15858:2 15862:1 15864:2 15870:1 15873:1 15886:1 15889:1 15909:1 15930:1 15938:1 15966:1 15979:1 15982:1 16000:1 16005:1 16021:2 16027:1 16036:1 16037:3 16041:1 16046:1 16047:1 16054:3 16059:2 16060:2 16064:2 16068:1 16070:1 16071:10 16109:1 16111:2 16112:1 16116:2 16117:1 16121:1 16128:1 16133:1 16136:2 16139:1 16140:1 16156:1 16176:1 16189:1 16203:1 16204:1 16222:3 16226:1 16236:1 16244:2 16256:1 16257:1 16261:1 16266:1 16276:1 16279:1 16309:1 16311:1 16312:1 16313:1 16339:1 16343:1 16344:1 16347:2 16357:1 16379:1 16401:1 16405:1 16425:1 16426:2 16433:1 16437:1 16439:1 16450:1 16452:1 16466:1 16487:1 16514:1 16540:1 16542:1 16551:2 16570:2 16651:2 16657:2 16658:1 16664:1 16674:1 16680:1 16687:1 16703:1 16719:1 16721:1 16727:1 16758:1 16770:1 16771:1 16787:1 16791:3 16795:1 16805:1 16838:1 16848:15 16860:1 16880:1 16906:1 16932:1 16954:14 16963:4 16964:1 16975:1 16977:5 16990:1 16997:1 17001:3 17012:1 17025:2 17048:4 17058:2 17068:2 17084:2 17085:1 17087:1 17107:3 17112:2 17125:2 17126:3 17137:2372 17147:1 17151:1 17161:1 17162:1 17188:1 17197:1 17200:1 17201:1 17220:2 17235:1 17251:1 17262:1 17263:1 17282:1 17296:1 17307:1 17311:1 17314:1 17317:2 17321:6 17322:4 17332:1 17339:1 17341:1 17351:1 17359:1 17375:1 17386:1 17399:1 17404:1 17406:1 17407:1 17448:1 17450:3 17453:2 17459:1 17494:1 17500:1 17502:1 17503:3 17521:1 17522:1 17534:2 17549:1 17551:1 17552:1 17564:2 17566:1 17573:1 17581:1 17588:1 17591:1 17603:2 17608:1 17616:1 17627:1 17636:1 17642:2 17643:2 17646:2 17655:1 17661:1 17670:2 17672:1 17691:2 17692:2 17708:3 17712:1 17716:1 17728:3 17752:3 17753:1 17758:1 17761:1 17770:1 17771:2 17777:9 17787:1 17801:1 17803:1 17818:1 17823:2 17824:1 17825:1 17833:2 17846:5 17860:1 17862:1 17877:1 17891:1 17900:4 17905:1 17907:2 17912:1 17914:2 17929:4 17930:1 17935:1 17938:1 17942:2 17956:1 17961:4 17968:2 17970:1 17975:3 18006:3 18009:1 18017:1 18031:1 18034:1 18038:2 18039:2 18046:1 18047:2 18050:1 18058:1 18068:1 18075:1 18077:1 18078:1 18079:1 18080:1 18083:1 18088:1 18117:1 18130:3 18144:1 18145:2 18146:1 18147:1 18152:1 18153:3 18158:1 18182:1 18183:1 18185:1 18187:1 18196:1 18203:2 18208:1 18214:1 18227:1 18229:1 18237:2 18238:1 18249:1 18252:1 18268:1 18276:1 18279:2 18282:4 18287:1 18288:4 18289:1 18335:1 18340:1 18354:2 18360:1 18363:1 18368:2 18369:2 18371:2 18388:1 18389:2 18392:3 18399:3 18404:1 18405:2 18407:2 18409:1 18421:5 18430:2 18449:1 18458:1 18460:1 18462:1 18465:2 18466:4 18494:1 18495:1 18504:2 18505:1 18507:1 18510:1 18526:1 18531:3 18548:1 18552:1 18553:2 18569:1 18577:3 18578:20 18579:2 18586:1 18592:5 18596:1 18612:1 18613:1 18620:1 18627:1 18643:2 18652:1 18653:1 18663:1 18672:1 18678:1 18683:1 18695:1 18697:1 18701:1 18705:1 18726:1 18738:1 18768:4 18787:1 18789:2 18802:2 18807:1 18817:2 18828:1 18830:1 18840:2 18850:1 18865:8 18871:2 18878:1 18886:1 18916:1 18917:1 18920:1 18927:1 18937:1 18968:1 18969:1 18973:4 18987:3 18996:1 18999:1 19002:1 19006:1 19010:1 19011:1 19020:1 19023:2 19051:2 19057:3 19063:2 19066:2 19073:2 19078:1 19080:1 19081:1 19089:2 19093:1 19116:5 19126:2 19127:1 19135:1 19142:1 19149:2 19153:1 19162:1 19178:2 19183:1 19190:2 19191:1 19198:5 19202:1 19206:2 19207:1 19209:1 19213:1 19215:2 19227:3 19258:2 19264:1 19277:1 19296:1 19297:1 19298:1 19302:2 19304:1 19312:2 19319:2 19321:2 19327:2 19331:2 19332:1 19337:2 19353:1 19358:2 19381:2 19392:1 19393:4 19401:1 19402:1 19403:4 19418:1 19420:1 19427:2 19431:1 19435:1 19440:1 19441:1 19446:2 19447:1 19450:1 19460:1 19463:1 19480:1 19481:1 19486:1 19510:1 19517:1 19519:1 19524:2 19525:2 19538:1 19550:1 19618:1 19622:1 19640:2 19652:2 19656:1 19664:2 19665:2 19667:1 19669:1 19673:1 19674:1 19679:1 19687:1 19694:2 19699:3 19705:1 19714:1 19723:1 19740:1 19746:1 19750:1 19758:1 19768:1 19769:1 19787:2 19789:1 19790:1 19791:1 19794:1 19796:2 19799:1 19800:1 19811:1 19814:1 19818:2 19825:2 19830:2 19833:1 19834:1 19838:2 19839:1 19841:1 19851:1 19853:2 19874:14 19886:2 19887:2 19892:2 19902:1 19916:1 19929:1 19931:1 19943:1 19948:1 19949:1 19952:1 19955:1 20000:2 20010:1 20019:2 20024:1 20026:1 20030:1 20034:4 20036:3 20037:1 20046:2 20054:1 20055:1 20056:1 20059:1 20061:1 20082:1 20083:1 20085:3 20087:4 20088:2 20111:1 20114:1 20151:1 20171:4 20174:1 20176:5 20178:3 20179:3 20181:1 20182:1 20186:1 20189:2 20193:1 20194:2 20202:1 20204:1 20205:5 20212:1 20213:1 20218:1 20223:1 20236:1 20244:2 20252:2 20255:2 20269:1 20297:1 20315:2 20317:2 20322:1 20324:1 20326:1 20329:1 20338:1 20344:1 20351:1 20364:1 20365:3 20368:1 20374:1 20375:1 20377:1 20381:2 20383:1 20392:1 20395:1 20396:1 20405:1 20409:1 20421:2 20423:1 20425:5 20431:1 20440:1 20441:4 20446:1 20447:3 20455:1 20463:1 20470:1 20484:2 20487:1 20490:1 20491:1 20492:4 20498:2 20503:1 20512:2 20513:9 20515:1 20519:1 20525:1 20526:1 20529:1 20531:1 20547:1 20549:1 20553:1 20575:8 20576:1 20589:1 20609:1 20624:1 20631:6 20632:1 20637:1 20640:1 20649:1 20650:1 20664:1 20665:3 20687:1 20690:4 20701:1 20717:1 20722:1 20723:1 20726:6 20728:2 20735:3 20739:1 20740:3 20749:1 20753:1 20757:1 20759:1 20773:1 20775:4 20787:1 20794:1 20795:3 20800:3 20809:1 20815:1 20817:1 20827:1 20834:1 20838:1 20846:1 20851:1 20863:1 20866:1 20890:1 20895:1 20902:1 20903:1 20904:1 20906:1 20914:1 20921:2 20935:10 20936:3 20941:1 20952:2 20957:2 20962:4 20969:1 20970:3 20982:2 20996:1 21021:1 21032:1 21033:1 21037:2 21040:2 21055:1 21056:1 21059:1 21080:1 21083:1 21084:1 21085:1 21086:1 21101:1 21104:1 21121:1 21128:2 21131:1 21138:2 21139:1 21142:1 21170:1 21175:3 21204:3 21215:1 21249:2 21253:1 21269:1 21294:3 21297:3 21304:5 21314:2 21322:1 21328:1 21330:3 21341:2 21344:2 21345:3 21358:1 21368:4 21406:1 21410:1 21413:1 21434:1 21436:1 21446:1 21458:1 21463:1 21472:4 21484:1 21502:1 21505:1 21510:2 21527:2 21534:1 21537:2 21548:1 21549:1 21559:1 21566:1 21575:1 21576:2 21579:3 21584:3 21590:1 21592:1 21603:1 21605:1 21609:1 21624:3 21625:2 21626:1 21628:2 21641:1 21644:1 21650:1 21695:1 21696:4 21698:1 21701:1 21706:1 21712:1 21714:1 21715:4 21716:1 21718:1 21719:1 21722:1 21725:1 21749:1 21766:3 21769:1 21779:1 21789:1 21832:2 21845:2 21853:1 21878:2 21884:1 21929:1 21941:1 21943:2 21951:2 21953:1 21964:1 21979:1 21994:1 21996:1 21998:1 22008:2 22017:1 22029:2 22047:1 22057:1 22066:1 22084:1 22090:1 22101:2 22113:1 22136:2 22140:1 22165:2 22176:4 22186:1 22212:1 22213:7 22228:1 22233:1 22241:3 22259:1 22261:1 22267:1 22270:5 22279:1 22280:1 22287:1 22293:1 22317:3 22319:1 22340:2 22341:1 22345:1 22346:2 22381:1 22425:1 22426:1 22451:1 22454:1 22455:1 22461:1 22464:1 22467:3 22469:4 22473:1 22475:1 22476:1 22477:1 22479:2 22482:1 22483:1 22484:1 22493:1 22494:1 22505:1 22518:6 22535:1 22536:1 22539:1 22544:1 22551:1 22552:1 22555:1 22557:1 22582:12 22585:6 22587:1 22609:1 22611:2 22618:1 22619:1 22630:1 22635:1 22636:1 22639:1 22643:3 22651:2 22667:1 22670:1 22681:1 22728:1 22756:1 22767:1 22768:1 22777:2 22781:1 22787:1 22794:1 22796:1 22800:2 22809:2 22813:1 22817:1 22822:2 22823:2 22826:1 22843:1 22845:1 22850:1 22857:1 22858:2 22863:1 22866:1 22874:1 22890:1 22896:1 22901:4 22913:2 22917:1 22918:1 22924:1 22930:1 22932:1 22941:2 22946:2 22950:1 22952:2 22957:1 22968:1 22974:1 22975:1 23002:18 23003:2 23023:1 23026:1 23032:1 23033:1 23036:1 23045:1 23055:1 23066:1 23067:1 23074:2 23078:1 23085:1 23098:2 23101:1 23105:2 23110:1 23111:1 23131:1 23133:1 23139:1 23143:1 23145:1 23160:1 23166:1 23173:1 23197:1 23198:1 23220:10 23221:1 23235:1 23240:2 23241:1 23247:1 23253:1 23264:2 23270:1 23276:1 23280:1 23285:6 23286:1 23291:1 23304:1 23308:1 23311:2 23314:1 23340:1 23353:2 23359:1 23365:1 23371:1 23386:1 23398:1 23407:1 23422:2 23426:2 23428:1 23437:2 23448:1 23452:1 23459:1 23473:1 23527:1 23528:2 23534:1 23538:1 23540:1 23560:1 23564:2 23569:5 23571:1 23577:1 23579:1 23594:1 23617:7 23629:1 23632:1 23636:1 23648:1 23650:7 23663:2 23677:1 23682:1 23685:1 23688:3 23689:1 23698:1 23701:1 23705:1 23714:1 23715:1 23746:1 23759:1 23769:1 23777:2 23821:1 23826:1 23838:1 23853:1 23860:1 23889:1 23903:1 23919:2 23922:1 23928:1 23929:2 23944:1 23945:1 23952:1 23953:1 23958:1 23971:1 23988:3 23991:1 24023:4 24030:1 24035:1 24058:1 24065:1 24074:2 24075:1 24084:1 24088:1 24094:15 24095:2 24105:2 24115:1 24124:1 24126:1 24147:1 24151:2 24163:1 24165:1 24170:1 24183:1 24186:2 24188:2 24199:1 24211:4 24215:3 24221:3 24224:2 24226:4 24228:1 24230:1 24245:1 24253:1 24293:1 24300:1 24324:1 24337:1 24340:2 24350:1 24362:2 24370:2 24380:1 24384:2 24386:1 24387:1 24388:2 24399:1 24415:6 24417:1 24418:1 24425:1 24426:1 24427:1 24434:1 24439:1 24442:1 24446:1 24447:1 24467:1 24470:2 24471:2 24483:1 24531:1 24537:2 24553:1 24561:1 24562:1 24569:3 24596:1 24621:1 24634:1 24635:1 24641:5 24652:1 24653:1 24677:1 24684:1 24689:1 24690:1 24703:1 24707:1 24711:3 24716:1 24721:1 24744:1 24746:2 24747:2 24758:3 24769:1 24773:1 24785:1 24788:1 24793:1 24797:2 24823:1 24838:2 24839:1 24849:1 24851:1 24862:1 24886:1 24895:2 24912:1 24915:4 24918:1 24921:1 24922:2 24931:1 24936:1 24938:2 24950:1 24956:1 24961:2 24972:2 24974:1 24977:1 24980:1 24985:2 24986:1 24991:1 25000:1 25013:1 25016:1 25021:1 25026:1 25028:1 25032:2 25037:1 25063:1 25077:5 25081:3 25084:2 25098:1 25099:1 25108:1 25126:1 25132:2 25137:1 25143:1 25148:2 25155:2 25163:1 25164:1 25172:2 25174:1 25181:1 25187:1 25190:1 25192:1 25193:1 25200:1 25201:1 25204:3 25205:1 25206:1 25210:3 25213:1 25217:2 25219:1 25222:1 25229:2 25238:2 25243:1 25247:1 25279:1 25288:1 25297:4 25311:1 25318:2 25335:2 25358:1 25361:1 25401:1 25404:2 25439:1 25444:1 25445:2 25459:1 25465:2 25480:1 25486:1 25487:1 25490:1 25492:3 25499:5 25521:1 25532:1 25542:1 25553:1 25563:7 25598:1 25600:1 25613:1 25631:1 25648:1 25652:1 25655:1 25656:1 25660:2 25674:2 25680:1 25691:1 25699:1 25715:1 25734:1 25742:1 25745:1 25759:2 25760:3 25761:1 25766:1 25773:2 25775:1 25778:2 25790:1 25792:1 25799:1 25801:5 25811:1 25813:1 25815:1 25817:1 25828:2 25832:2 25836:2 25840:1 25845:1 25847:5 25851:1 25860:1 25867:3 25870:1 25883:3 25884:1 25886:3 25889:1 25906:3 25922:1 25924:1 25941:1 25949:1 25963:1 25969:3 25971:4 25977:5 26008:5 26021:1 26023:1 26034:1 26045:1 26051:1 26052:1 26054:1 26064:1 26081:1 26083:6 26088:1 26092:2 26114:1 26120:1 26126:1 26131:1 26141:1 26146:1 26158:1 26162:1 26164:1 26172:1 26173:2 26179:1 26182:1 26196:3 26231:1 26233:1 26234:1 26245:7 26246:1 26249:2 26252:1 26257:1 26259:1 26263:2 26276:1 26308:5 26325:1 26351:1 26365:1 26401:1 26426:1 26441:1 26468:1 26488:2 26495:1 26497:1 26498:2 26499:3 26502:2 26504:3 26511:1 26515:1 26516:1 26525:1 26539:1 26552:1 26561:1 26571:1 26576:1 26611:3 26614:1 26620:2 26648:2 26651:1 26653:2 26668:1 26670:1 26683:1 26699:1 26704:1 26705:1 26715:1 26721:3 26722:1 26727:1 26728:2 26758:1 26760:1 26763:4 26767:2 26780:1 26784:1 26806:1 26813:1 26819:1 26825:1 26836:1 26844:1 26862:1 26866:1 26868:3 26876:1 26878:1 26892:1 26901:3 26903:1 26919:1 26940:2 26943:2 26961:1 26965:1 26966:3 26973:3 26974:3 26975:1 26978:1 27006:1 27022:5 27025:1
1 12:1 34:1 43:1 45:1 50:1 55:1 60:1 72:1 90:1 92:1 108:1 124:1 137:1 138:3 147:1 152:2 153:1 159:1 165:2 168:3 175:1 178:6 189:1 194:1 221:1 231:1 236:7 248:1 255:3 262:1 277:2 301:1 312:4 314:3 318:3 320:1 326:3 333:1 337:2 356:3 363:1 375:2 392:5 394:5 403:1 414:1 446:1 451:1 480:2 509:1 518:1 522:2 538:1 548:3 554:1 565:1 571:1 573:4 575:2 580:1 588:2 595:1 656:1 665:1 698:1 707:1 708:2 728:1 730:2 731:1 738:2 750:1 776:6 779:1 782:1 786:1 787:4 792:1 798:1 814:16 815:4 823:3 841:4 848:1 853:1 854:4 856:2 857:8 859:1 861:2 863:4 877:2 895:5 898:4 909:1 910:1 943:2 951:1 964:1 994:1 1005:1 1011:1 1028:1 1029:1 1044:1 1053:2 1054:1 1057:1 1100:3 1101:3 1105:1 1107:2 1108:1 1111:2 1118:1 1119:1 1132:1 1139:1 1140:1 1141:1 1145:2 1151:1 1156:2 1161:2 1169:1 1170:1 1178:1 1184:2 1189:1 1198:1 1211:1 1214:1 1215:1 1230:1 1236:1 1243:1 1247:1 1249:1 1253:1 1256:1 1264:1 1275:1 1293:1 1296:1 1300:1 1301:2 1303:1 1311:1 1318:1 1319:2 1332:1 1334:1 1338:1 1340:3 1346:1 1352:1 1361:1 1367:1 1370:1 1371:2 1373:1 1385:1 1390:1 1406:1 1411:4 1417:7 1420:2 1429:1 1450:2 1458:1 1461:1 1465:1 1467:2 1476:1 1480:1 1482:1 1485:2 1498:2 1508:1 1511:1 1513:1 1517:2 1518:1 1526:1 1529:3 1540:1 1545:1 1549:1 1556:1 1560:2 1564:1 1565:1 1570:1 1580:1 1588:1 1595:2 1598:1 1607:1 1614:1 1615:5 1621:1 1626:1 1632:1 1636:1 1639:3 1642:1 1643:2 1645:1 1651:2 1653:6 1660:1 1676:4 1678:3 1682:1 1692:1 1702:1 1704:1 1710:2 1713:2 1715:4 1717:1 1718:1 1721:1 1731:1 1734:1 1742:2 1744:1 1750:1 1751:1 1757:3 1763:2 1764:1 1765:1 1778:2 1781:1 1782:1 1787:1 1821:1 1825:9 1830:1 1836:1 1840:2 1845:5 1850:1 1851:1 1854:2 1859:1 1862:2 1873:1 1877:1 1884:1 1896:1 1902:1 1905:1 1920:2 1921:1 1923:1 1924:1 1926:2 1929:1 1950:1 1966:11 1970:1 1975:1 1979:1 1984:1 1999:1 2006:2 2007:1 2025:2 2038:5 2040:1 2052:1 2053:1 2056:1 2061:2 2078:2 2079:2 2081:1 2083:3 2084:5 2087:1 2089:1 2090:2 2095:2 2096:2 2097:1 2098:3 2099:5 2102:1 2103:1 2105:5 2107:3 2109:5 2111:7 2113:1 2123:1 2131:1 2146:1 2149:1 2152:3 2155:3 2158:1 2162:1 2170:2 2172:1 2179:1 2190:1 2191:1 2200:1 2208:1 2210:1 2236:1 2243:1 2246:1 2247:1 2262:1 2278:3 2280:1 2287:1 2291:1 2297:1 2306:3 2316:2 2317:1 2323:1 2325:1 2330:1 2334:1 2345:1 2347:2 2353:3 2356:2 2358:1 2361:7 2365:1 2366:1 2367:1 2379:1 2382:1 2397:1 2408:4 2410:1 2411:1 2416:1 2430:2 2436:2 2437:1 2438:2 2447:7 2452:2 2458:2 2460:9 2465:6 2467:1 2474:2 2475:1 2481:1 2483:2 2485:1 2490:3 2492:2 2503:2 2515:1 2516:2 2520:3 2524:1 2528:1 2533:1 2557:1 2561:1 2562:2 2563:2 2575:3 2576:1 2577:1 2579:1 2583:7 2590:2 2595:1 2612:1 2614:1 2619:1 2637:1 2639:3 2641:1 2656:4 2660:1 2664:1 2667:16 2689:3 2690:1 2694:1 2695:1 2697:1 2706:2 2711:3 2712:1 2714:1 2731:20 2733:3 2743:1 2756:2 2758:3 2773:2 2783:1 2809:1 2814:1 2822:1 2826:1 2840:1 2841:5 2852:3 2856:1 2860:1 2866:1 2879:1 2889:1 2902:1 2904:1 2908:1 2915:2 2923:1 2924:1 2938:2 2949:1 2956:3 2968:1 2991:1 2992:2 3026:1 3027:2 3028:1 3031:1 3034:1 3038:1 3048:6 3049:1 3103:1 3137:1 3147:2 3152:1 3153:1 3162:1 3190:1 3192:1 3193:1 3194:1 3199:1 3203:1 3209:1 3210:1 3213:1 3222:1 3230:1 3232:1 3252:1 3268:1 3286:2 3291:1 3309:1 3314:1 3315:14 3318:1 3325:1 3328:2 3330:2 3331:2 3332:1 3346:1 3350:1 3352:1 3358:1 3359:1 3366:1 3394:1 3399:2 3400:1 3406:1 3407:1 3410:3 3414:2 3423:1 3446:1 3459:1 3470:1 3473:1 3480:2 3483:1 3486:2 3488:1 3494:3 3496:1 3506:1 3510:1 3513:2 3520:1 3523:1 3540:2 3542:1 3554:1 3560:3 3561:1 3575:2 3576:1 3581:4 3583:1 3587:2 3590:1 3591:2 3600:4 3602:1 3608:1 3610:2 3611:2 3629:1 3631:2 3646:1 3650:2 3652:3 3660:1 3683:2 3691:6 3692:4 3698:2 3730:1 3733:2 3737:1 3742:1 3756:1 3759:1 3760:2 3779:1 3787:2 3790:1 3791:1 3794:1 3798:1 3813:2 3822:1 3828:2 3838:1 3845:4 3846:1 3848:2 3849:1 3853:2 3856:1 3859:1 3863:2 3875:1 3882:1 3888:1 3898:1 3912:1 3917:1 3937:1 3952:7 3957:1 3977:3 3984:1 3993:2 3999:1 4003:1 4005:2 4018:2 4032:2 4038:1 4057:1 4062:1 4064:4 4065:2 4084:4 4097:1 4107:1 4116:1 4118:1 4125:1 4140:2 4146:2 4160:1 4164:1 4167:1 4172:1 4173:3 4175:1 4189:1 4201:1 4217:3 4218:1 4226:1 4234:5 4246:1 4249:1 4251:1 4275:4 4284:2 4287:1 4294:1 4295:1 4302:4 4307:1 4319:4 4344:2 4361:1 4365:2 4369:3 4383:3 4386:1 4394:1 4403:1 4419:1 4422:2 4429:1 4431:1 4445:1 4446:1 4461:1 4467:1 4477:1 4488:15 4490:2 4499:1 4501:1 4502:1 4509:1 4516:1 4527:1 4535:1 4546:1 4554:1 4608:3 4625:1 4629:4 4631:7 4632:3 4634:1 4637:2 4638:2 4639:1 4642:1 4643:2 4645:6 4646:4 4650:1 4651:2 4652:8 4658:2 4659:5 4662:1 4663:1 4674:1 4677:1 4701:1 4718:1 4737:2 4744:1 4762:1 4767:1 4776:1 4801:1 4834:1 4842:1 4866:1 4877:1 4887:2 4911:1 4916:1 4941:3 4945:2 4955:1 4982:1 4985:1 5006:5 5012:1 5018:1 5037:1 5050:1 5055:1 5064:2 5075:1 5081:1 5088:1 5094:1 5101:1 5121:1 5130:1 5144:1 5153:1 5156:1 5173:1 5197:2 5207:1 5212:2 5216:1 5221:1 5230:5 5231:1 5234:2 5236:1 5239:3 5240:1 5255:1 5256:1 5281:3 5292:2 5293:1 5296:1 5309:6 5314:1 5315:1 5330:2 5336:1 5383:1 5392:1 5398:1 5416:1 5420:1 5422:1 5440:1 5444:1 5445:1 5446:1 5453:2 5456:1 5467:1 5479:1 5503:1 5510:2 5521:2 5528:1 5535:2 5538:2 5539:1 5541:3 5561:1 5565:6 5567:1 5568:1 5575:1 5576:2 5583:2 5585:1 5586:1 5588:1 5589:1 5591:1 5596:1 5620:1 5622:1 5623:1 5624:1 5629:1 5632:2 5634:1 5639:1 5641:1 5642:2 5643:1 5647:12 5680:3 5686:1 5703:1 5715:1 5725:4 5735:2 5751:6 5756:1 5761:1 5763:1 5801:1 5805:1 5828:1 5834:1 5836:1 5838:1 5844:2 5845:3 5847:1 5849:1 5850:1 5852:2 5853:1 5859:2 5860:4 5861:3 5872:1 5897:1 5904:1 5938:1 5954:1 5975:1 5987:1 5991:4 5992:2 6006:1 6015:1 6047:1 6055:2 6064:2 6066:1 6076:1 6082:1 6092:2 6115:1 6129:2 6137:2 6146:1 6152:1 6162:1 6210:1 6215:1 6223:1 6233:2 6235:1 6238:1 6242:1 6246:1 6254:8 6259:1 6262:2 6264:1 6265:3 6267:1 6273:1 6275:1 6279:1 6287:2 6300:1 6301:1 6307:1 6310:1 6340:1 6344:1 6345:3 6357:2 6361:1 6366:2 6385:1 6389:1 6394:1 6398:1 6401:2 6402:1 6430:1 6449:2 6453:1 6460:1 6465:1 6468:1 6469:1 6477:1 6486:1 6490:6 6498:2 6516:1 6524:1 6528:1 6534:1 6537:3 6538:2 6545:1 6549:6 6550:1 6552:1 6557:5 6560:1 6564:1 6587:1 6588:1 6590:1 6599:1 6602:1 6604:1 6620:1 6621:1 6626:4 6631:4 6641:1 6654:1 6658:1 6672:3 6674:1 6677:1 6679:1 6686:1 6689:1 6697:1 6701:1 6703:1 6705:1 6712:1 6721:1 6728:1 6742:1 6772:1 6797:1 6800:1 6806:1 6810:2 6846:1 6857:1 6859:2 6860:6 6864:3 6869:1 6870:1 6876:3 6881:1 6894:6 6895:2 6898:2 6912:1 6913:3 6922:1 6935:1 6942:1 6943:2 6946:1 6951:1 6959:1 6962:1 6964:1 6969:1 6980:1 6981:1 6988:1 6989:2 6997:1 7002:1 7006:1 7015:1 7016:1 7027:1 7052:3 7067:4 7068:6 7081:2 7086:1 7090:4 7092:2 7093:3 7094:1 7109:1 7116:4 7117:3 7121:1 7136:46 7137:2 7140:2 7147:1 7155:10 7156:7 7162:2 7166:1 7194:1 7201:1 7202:1 7211:1 7212:1 7222:1 7224:1 7229:3 7230:2 7235:1 7242:1 7244:2 7256:2 7264:3 7276:1 7283:1 7294:2 7300:1 7305:1 7319:1 7325:1 7326:2 7352:1 7355:1 7356:3 7359:1 7385:1 7389:1 7390:1 7391:1 7402:2 7446:1 7461:1 7477:1 7486:1 7489:1 7491:1 7507:1 7508:1 7517:1 7520:1 7523:1 7538:1 7547:1 7556:1 7558:1 7559:2 7568:1 7575:1 7576:1 7580:2 7592:1 7593:1 7609:26 7618:1 7619:1 7637:3 7640:3 7642:1 7644:2 7670:1 7676:1 7696:6 7698:1 7700:1 7706:1 7734:1 7744:4 7747:1 7748:2 7751:1 7756:1 7757:1 7771:1 7777:2 7778:4 7784:3 7790:1 7792:1 7796:1 7812:2 7814:1 7820:1 7825:1 7836:1 7840:1 7850:1 7857:1 7858:1 7864:1 7876:1 7877:2 7886:2 7889:1 7890:1 7940:1 7944:1 7945:1 7950:1 7952:1 7957:1 7976:2 7978:2 7989:6 7991:1 8005:2 8008:3 8023:1 8034:1 8036:1 8043:1 8049:2 8052:1 8054:1 8063:1 8069:1 8073:1 8085:2 8095:1 8113:1 8120:1 8124:1 8148:1 8153:1 8154:1 8163:1 8164:1 8171:1 8197:1 8199:1 8215:3 8228:1 8247:1 8250:1 8253:2 8254:1 8258:3 8282:3 8289:1 8295:2 8306:1 8311:1 8330:1 8331:1 8332:1 8340:1 8345:2 8350:6 8351:1 8356:1 8358:1 8363:1 8370:4 8378:1 8387:2 8389:1 8407:7 8409:1 8423:1 8426:1 8437:1 8445:11 8446:6 8460:2 8461:1 8469:1 8501:3 8507:1 8515:1 8521:1 8525:3 8527:1 8541:1 8544:1 8550:2 8552:2 8553:3 8555:2 8558:1 8567:1 8578:1 8584:1 8600:1 8612:1 8620:2 8622:1 8632:1 8635:5 8637:1 8638:1 8650:1 8655:1 8656:3 8658:2 8663:1 8664:1 8674:4 8698:1 8699:1 8706:1 8728:1 8735:1 8741:1 8756:3 8763:1 8765:3 8771:1 8782:1 8786:1 8793:1 8817:1 8820:1 8833:1 8838:1 8846:1 8853:7 8856:3 8885:3 8887:1 8894:1 8895:1 8904:3 8908:1 8926:1 8943:1 8947:1 8953:1 8954:3 8956:3 8958:2 8964:1 8981:1 8987:2 8990:2 9020:2 9022:1 9031:1 9041:1 9067:2 9073:1 9077:1 9087:1 9090:1 9101:2 9107:1 9109:1 9113:2 9124:1 9131:1 9132:1 9144:1 9155:1 9172:1 9173:1 9178:1 9179:1 9191:1 9196:1 9216:1 9218:1 9221:1 9222:1 9224:1 9230:5 9243:4 9249:4 9251:2 9263:1 9281:2 9291:1 9300:3 9301:1 9328:1 9332:2 9337:2 9347:1 9348:1 9358:1 9361:4 9364:1 9388:2 9391:1 9396:12 9398:2 9402:2 9406:1 9424:2 9425:1 9434:1 9439:1 9450:1 9469:1 9488:1 9491:2 9493:1 9509:1 9524:1 9534:1 9536:1 9537:1 9540:1 9542:4 9550:1 9552:1 9555:2 9588:1 9601:4 9608:1 9610:1 9612:1 9617:1 9620:3 9626:1 9632:1 9635:2 9642:4 9660:1 9681:1 9691:1 9695:1 9696:1 9703:1 9708:1 9710:2 9713:2 9718:1 9725:2 9728:1 9732:1 9739:1 9748:1 9750:3 9757:1 9764:2 9766:1 9769:1 9775:7 9778:4 9791:2 9795:3 9799:1 9802:1 9807:1 9812:2 9820:1 9834:2 9848:7 9849:2 9866:2 9868:1 9869:1 9878:4 9899:1 9916:1 9920:1 9926:3 9936:2 9943:1 9946:6 9964:1 9972:1 9980:1 9982:1 9993:3 10025:1 10030:1 10036:1 10085:1 10096:1 10102:1 10118:1 10120:1 10136:1 10137:2 10141:2 10144:1 10145:2 10149:1 10152:1 10156:1 10157:5 10158:5 10159:1 10168:1 10174:2 10177:2 10181:1 10183:4 10188:1 10189:1 10192:1 10195:1 10198:1 10200:1 10201:3 10203:3 10208:1 10213:1 10226:2 10234:1 10255:1 10257:1 10259:4 10294:1 10297:1 10312:1 10321:2 10323:1 10326:1 10341:1 10385:1 10392:1 10406:1 10412:1 10425:1 10426:3 10445:1 10463:1 10474:1 10477:1 10478:1 10484:2 10487:1 10500:3 10503:2 10507:1 10518:2 10523:2 10525:1 10526:1 10528:2 10531:1 10537:3 10539:1 10540:1 10541:2 10550:1 10556:3 10559:2 10572:1 10587:17 10588:1 10611:1 10621:1 10625:4 10632:1 10635:2 10636:2 10648:2 10655:1 10673:1 10675:2 10682:2 10683:1 10690:1 10693:2 10695:2 10696:1 10706:1 10724:1 10738:1 10759:1 10766:1 10783:1 10796:1 10803:3 10804:1 10805:1 10807:1 10808:1 10814:1 10821:1 10822:4 10826:1 10827:2 10828:1 10830:2 10840:1 10841:1 10851:1 10860:1 10863:1 10864:1 10866:1 10870:2 10874:5 10875:1 10880:4 10884:1 10898:1 10921:1 10934:2 10938:1 10947:1 10953:1 10972:1 10975:1 10983:1 10984:1 10998:1 11009:1 11014:1 11016:1 11017:1 11023:6 11032:1 11043:2 11046:1 11058:1 11063:1 11071:1 11076:2 11081:2 11100:2 11103:1 11117:2 11127:1 11129:2 11150:1 11170:2 11175:1 11189:1 11191:1 11195:1 11201:2 11205:1 11219:1 11236:1 11244:1 11246:1 11247:1 11251:5 11252:1 11253:3 11255:1 11256:2 11267:1 11273:2 11279:1 11283:1 11285:1 11290:1 11335:1 11338:2 11339:1 11341:1 11357:1 11368:1 11376:1 11388:1 11393:1 11407:1 11410:1 11413:1 11423:1 11439:1 11476:3 11494:2 11507:1 11518:1 11520:1 11527:1 11539:1 11545:1 11550:1 11552:2 11553:1 11568:1 11570:3 11579:1 11593:1 11599:1 11606:1 11647:1 11658:1 11663:1 11665:1 11666:2 11674:1 11687:1 11705:15 11710:5 11719:1 11723:2 11728:1 11739:1 11746:2 11747:3 11753:4 11767:1 11770:1 11775:1 11779:1 11780:1 11786:1 11792:2 11794:1 11798:1 11800:1 11829:1 11845:1 11850:1 11858:2 11863:1 11886:1 11887:1 11889:1 11890:1 11903:1 11923:1 11924:1 11930:2 11932:1 11944:1 11946:1 11963:1 11977:1 11982:5 11994:2 11996:1 12041:1 12042:1 12060:1 12071:1 12075:1 12078:1 12082:1 12083:1 12085:4 12090:4 12099:1 12101:1 12105:1 12106:2 12115:2 12122:1 12138:6 12157:1 12161:2 12186:1 12193:4 12194:1 12205:1 12217:1 12221:2 12223:1 12224:1 12225:1 12233:9 12236:1 12242:2 12247:1 12260:1 12264:1 12272:1 12273:1 12279:2 12283:1 12289:1 12290:1 12301:16 12306:1 12308:1 12311:1 12327:1 12342:2 12343:1 12350:3 12366:1 12371:2 12384:2 12394:1 12395:1 12397:1 12421:3 12441:1 12446:6 12449:1 12465:1 12471:2 12475:1 12478:1 12499:4 12515:1 12521:1 12525:1 12528:1 12533:3 12535:1 12537:1 12544:1 12549:1 12551:1 12558:6 12559:1 12561:1 12562:2 12563:1 12564:2 12565:1 12569:7 12570:3 12584:1 12590:1 12591:1 12593:1 12595:1 12620:1 12636:1 12643:1 12675:2 12680:2 12685:1 12686:1 12695:1 12706:1 12711:1 12719:5 12751:1 12756:1 12758:1 12760:1 12767:1 12770:1 12773:2 12774:1 12778:1 12790:1 12794:1 12814:2 12820:1 12821:1 12829:1 12830:1 12833:1 12836:7 12857:3 12861:1 12867:1 12890:1 12902:1 12903:2 12909:1 12913:1 12923:1 12929:1 12931:1 12934:1 12944:1 12957:2 12977:1 12983:1 12984:1 12990:1 12993:1 12997:1 13004:1 13010:1 13017:1 13052:1 13063:2 13075:1 13077:5 13091:1 13104:1 13123:1 13143:1 13175:1 13199:1 13200:1 13204:3 13205:4 13212:1 13222:2 13223:2 13225:1 13229:2 13230:1 13248:1 13250:1 13251:1 13256:1 13265:2 13276:1 13285:1 13294:2 13305:1 13312:1 13327:2 13334:1 13337:1 13349:1 13353:1 13355:1 13361:2 13367:1 13375:3 13380:2 13428:1 13430:2 13433:1 13444:2 13457:2 13476:2 13477:1 13484:1 13491:1 13506:1 13513:1 13517:1 13531:1 13540:3 13552:1 13555:1 13558:2 13563:1 13587:1 13589:1 13595:1 13637:1 13643:2 13689:2 13693:2 13696:1 13702:1 13712:1 13722:1 13734:1 13762:2 13774:1 13776:3 13781:1 13793:1 13794:1 13795:2 13801:1 13804:1 13806:1 13829:1 13887:1 13891:1 13894:1 13900:2 13922:1 13928:1 13944:1 13974:1 13995:2 14004:1 14010:1 14027:1 14032:1 14034:1 14035:2 14047:1 14064:2 14071:3 14075:1 14096:1 14098:1 14099:1 14107:1 14113:2 14130:3 14134:1 14156:1 14158:1 14168:2 14184:1 14189:2 14211:1 14213:1 14216:1 14217:1 14225:1 14229:6 14244:3 14252:1 14263:4 14266:1 14279:3 14299:1 14302:1 14311:1 14328:1 14332:1 14335:2 14377:1 14391:2 14392:1 14403:2 14409:1 14413:1 14417:4 14420:1 14424:1 14426:1 14432:1 14445:4 14446:1 14450:1 14453:1 14462:1 14465:1 14475:1 14491:2 14497:2 14532:2 14535:1 14539:1 14550:3 14559:2 14567:1 14570:1 14572:3 14587:1 14600:3 14615:1 14648:1 14667:1 14676:1 14683:1 14686:1 14687:15 14690:1 14704:1 14706:1 14709:3 14712:1 14738:3 14772:2 14783:1 14789:2 14796:3 14817:2 14821:1 14832:2 14845:1 14876:1 14883:1 14890:1 14891:1 14892:1 14902:2 14903:1 14928:1 14929:1 14931:3 14934:1 14946:1 14950:1 14954:6 14955:2 14956:2 14957:6 14958:1 14959:1 14963:2 14965:1 14967:2 14968:5 14972:1 14973:1 14975:1 14978:1 14979:2 14987:1 15013:2 15021:1 15024:1 15037:1 15060:1 15069:1 15083:1 15087:2 15088:1 15109:2 15114:1 15117:1 15119:2 15120:2 15128:1 15140:1 15143:1 15162:1 15169:1 15170:1 15178:1 15192:1 15198:1 15217:1 15240:1 15250:1 15252:1 15254:1 15262:2 15272:1 15274:2 15281:2 15282:1 15290:1 15294:5 15299:1 15302:2 15308:1 15316:1 15321:2 15324:1 15325:4 15329:2 15334:1 15336:1 15342:3 15344:2 15353:3 15359:1 15367:1 15372:1 15402:1 15407:14 15408:1 15422:1 15426:1 15431:2 15432:4 15434:1 15437:1 15472:1 15476:1 15490:1 15491:1 15497:2 15499:1 15507:1 15512:4 15524:1 15525:1 15534:1 15538:2 15541:2 15558:1 15575:2 15580:1 15596:5 15603:1 15617:2 15619:1 15622:1 15646:1 15661:2 15667:1 15688:1 15703:2 15705:3 15719:1 15720:1 15722:1 15731:1 15748:1 15763:1 15765:1 15768:1 15787:1 15790:1 15799:1 15808:2 15814:1 15821:1 15828:1 15837:1 15845:2 15854:1 15858:2 15862:1 15864:2 15870:1 15873:1 15886:1 15889:1 15909:1 15930:1 15938:1 15966:1 15979:1 15982:1 16000:1 16005:1 16021:2 16027:1 16036:1 16037:3 16041:1 16046:1 16047:1 16054:3 16059:2 16060:2 16064:2 16068:1 16070:1 16071:10 16109:1 16111:2 16112:1 16116:2 16117:1 16121:1 16128:1 16133:1 16136:2 16139:1 16140:1 16156:1 16176:1 16189:1 16203:1 16204:1 16222:4 16226:1 16236:1 16244:2 16256:1 16257:1 16261:1 16266:1 16276:1 16279:1 16309:1 16311:1 16312:1 16313:1 16339:1 16343:1 16344:1 16347:2 16357:1 16379:1 16401:1 16405:1 16417:1 16425:1 16426:2 16433:1 16437:1 16439:1 16450:1 16452:1 16466:1 16487:1 16514:2 16540:1 16542:1 16551:2 16570:2 16651:2 16657:2 16658:1 16664:1 16674:1 16680:1 16687:1 16703:1 16719:1 16721:1 16727:1 16735:1 16758:1 16770:1 16771:1 16787:1 16791:3 16795:1 16805:1 16838:1 16848:15 16860:1 16880:1 16906:1 16932:1 16954:14 16963:4 16964:1 16975:1 16977:5 16990:1 16997:1 17001:3 17012:1 17025:2 17048:6 17058:2 17068:2 17084:2 17085:1 17087:1 17107:3 17112:2 17125:2 17126:3 17137:2414 17147:1 17151:1 17160:1 17161:1 17162:1 17188:1 17197:1 17200:1 17201:1 17220:2 17235:1 17251:1 17262:1 17263:1 17282:1 17296:1 17307:1 17311:1 17314:1 17317:2 17321:6 17322:4 17332:1 17339:1 17341:1 17351:1 17359:1 17375:1 17386:1 17399:1 17404:1 17406:1 17407:1 17448:1 17450:3 17453:2 17459:1 17466:1 17494:1 17500:1 17502:1 17503:3 17507:1 17521:1 17522:1 17534:2 17549:1 17551:1 17552:1 17564:2 17566:1 17573:1 17581:1 17588:1 17591:1 17603:2 17608:1 17616:1 17627:1 17636:1 17642:2 17643:2 17646:2 17655:1 17661:1 17670:2 17672:1 17691:2 17692:2 17708:3 17712:1 17716:1 17728:3 17752:3 17753:1 17758:1 17761:1 17770:1 17771:2 17777:9 17787:1 17801:1 17803:1 17818:1 17823:2 17824:1 17825:1 17833:2 17846:5 17847:1 17860:1 17862:2 17877:1 17891:1 17900:4 17905:1 17907:2 17912:1 17914:2 17929:4 17930:1 17935:1 17938:1 17942:2 17956:1 17961:4 17968:2 17970:1 17975:3 18006:3 18009:1 18017:1 18031:1 18034:1 18038:2 18039:2 18046:1 18047:2 18050:1 18058:1 18068:1 18075:1 18077:1 18078:1 18079:1 18080:1 18083:1 18088:1 18117:1 18130:3 18144:1 18145:2 18146:1 18147:1 18152:1 18153:3 18158:1 18178:1 18182:1 18183:1 18185:1 18187:1 18196:1 18203:2 18208:1 18214:2 18227:1 18229:2 18237:2 18238:1 18249:1 18252:1 18268:1 18269:1 18276:1 18279:2 18282:4 18287:1 18288:4 18289:1 18335:1 18340:1 18354:2 18360:1 18363:1 18368:2 18369:2 18371:2 18388:1 18389:2 18392:3 18399:3 18404:1 18405:2 18407:2 18409:1 18421:5 18430:2 18449:1 18458:1 18460:1 18462:1 18465:2 18466:4 18494:1 18495:2 18504:2 18505:1 18507:1 18510:1 18526:1 18531:3 18548:1 18552:2 18553:2 18569:1 18570:1 18577:3 18578:20 18579:2 18586:1 18592:5 18596:1 18612:2 18613:1 18620:1 18627:1 18643:3 18652:1 18653:1 18663:1 18672:1 18678:1 18683:1 18695:1 18697:1 18700:1 18701:1 18705:1 18726:1 18738:1 18768:4 18787:1 18789:2 18802:2 18807:1 18817:2 18828:1 18830:1 18840:2 18850:1 18865:8 18871:2 18878:1 18886:1 18916:1 18917:1 18920:1 18927:1 18933:1 18937:1 18968:1 18969:1 18973:4 18987:3 18996:1 18999:1 19002:1 19006:1 19010:1 19011:1 19020:1 19023:2 19051:2 19057:3 19063:2 19066:2 19073:2 19078:1 19080:1 19081:1 19089:2 19093:1 19116:5 19126:2 19127:1 19135:1 19142:1 19149:2 19153:1 19162:1 19176:1 19178:2 19183:1 19190:2 19191:1 19198:5 19202:1 19206:2 19207:1 19209:1 19213:1 19215:2 19227:3 19258:2 19264:1 19271:1 19277:1 19296:1 19297:1 19298:1 19302:2 19304:1 19312:2 19319:2 19321:2 19327:2 19331:2 19332:1 19337:2 19353:1 19358:2 19381:2 19392:1 19393:4 19401:1 19402:1 19403:4 19418:1 19420:1 19427:2 19431:1 19435:1 19440:1 19441:1 19446:2 19447:1 19450:1 19460:1 19463:1 19480:1 19481:1 19486:1 19510:1 19517:1 19519:1 19524:2 19525:2 19535:1 19538:1 19550:1 19618:1 19622:1 19640:2 19652:2 19656:1 19664:2 19665:2 19667:1 19669:1 19673:1 19674:1 19679:1 19687:1 19694:2 19699:3 19705:1 19714:1 19723:1 19740:1 19746:1 19750:1 19758:1 19768:1 19769:1 19787:2 19789:1 19790:1 19791:1 19794:1 19796:2 19799:1 19800:1 19811:1 19814:1 19818:2 19825:2 19830:2 19833:1 19834:1 19838:2 19839:1 19841:1 19851:1 19853:2 19874:14 19886:2 19887:2 19892:2 19902:1 19916:1 19929:1 19931:1 19943:2 19948:1 19949:1 19952:1 19955:1 20000:2 20010:1 20019:2 20024:1 20026:1 20030:1 20034:6 20036:3 20037:1 20046:2 20054:1 20055:1 20056:1 20059:1 20061:1 20081:1 20082:1 20083:1 20085:3 20087:4 20088:2 20111:1 20114:1 20151:1 20171:4 20174:1 20176:5 20178:3 20179:3 20181:1 20182:1 20186:1 20189:2 20193:1 20194:2 20202:1 20204:1 20205:5 20212:1 20213:1 20218:1 20219:1 20223:1 20236:1 20244:2 20252:2 20255:2 20269:1 20297:1 20315:2 20317:2 20322:1 20324:1 20326:1 20329:1 20338:1 20344:1 20351:1 20364:1 20365:3 20368:1 20374:1 20375:1 20377:1 20381:2 20383:1 20392:1 20395:1 20396:1 20405:1 20409:1 20421:2 20423:1 20425:5 20431:1 20440:1 20441:4 20446:1 20447:3 20455:1 20463:1 20470:1 20484:2 20487:1 20490:1 20491:1 20492:4 20498:2 20503:1 20512:2 20513:9 20515:1 20519:1 20525:1 20526:1 20529:1 20531:1 20547:1 20549:1 20553:1 20575:8 20576:1 20589:1 20609:1 20624:1 20631:6 20632:1 20637:1 20640:1 20649:1 20650:1 20664:1 20665:3 20678:1 20687:1 20690:4 20701:1 20715:1 20717:1 20722:1 20723:1 20726:6 20728:2 20735:3 20739:1 20740:4 20749:1 20753:1 20757:1 20759:1 20773:1 20775:4 20787:1 20794:1 20795:3 20797:1 20800:3 20809:1 20815:1 20817:1 20827:1 20834:1 20838:1 20846:1 20851:1 20863:1 20866:1 20890:1 20895:1 20902:1 20903:1 20904:1 20906:1 20914:1 20921:2 20935:10 20936:3 20941:1 20952:2 20957:2 20962:4 20969:1 20970:3 20982:2 20996:1 21021:1 21032:1 21033:1 21037:2 21040:2 21055:1 21056:1 21059:1 21080:1 21083:1 21084:1 21085:1 21086:1 21101:1 21104:1 21121:1 21128:2 21131:1 21138:2 21139:1 21142:1 21170:1 21175:3 21204:3 21215:1 21249:2 21253:1 21269:1 21294:3 21297:3 21304:7 21314:2 21322:1 21328:1 21330:3 21341:2 21344:2 21345:3 21358:1 21368:4 21406:1 21410:1 21413:1 21434:1 21436:1 21446:1 21458:1 21463:1 21472:4 21484:1 21502:1 21505:1 21510:2 21527:2 21534:1 21537:2 21548:1 21549:1 21559:1 21566:1 21575:1 21576:2 21579:4 21584:3 21590:1 21592:1 21603:1 21605:1 21609:1 21624:3 21625:2 21626:1 21628:2 21641:1 21644:1 21650:1 21695:1 21696:4 21698:1 21701:1 21706:1 21712:1 21714:1 21715:4 21716:1 21718:1 21719:1 21722:1 21725:1 21749:1 21766:3 21769:1 21779:1 21789:1 21832:2 21845:2 21853:1 21878:2 21884:1 21929:1 21941:1 21943:2 21951:2 21953:1 21964:1 21979:1 21994:1 21996:1 21998:1 22008:2 22017:1 22029:2 22047:1 22057:1 22066:1 22084:1 22090:1 22101:2 22103:1 22113:1 22136:2 22140:1 22165:2 22176:4 22186:1 22212:1 22213:7 22228:1 22233:1 22236:1 22241:3 22245:1 22259:1 22261:1 22267:1 22270:5 22279:1 22280:1 22287:1 22293:1 22317:3 22319:1 22340:2 22341:1 22345:1 22346:2 22381:1 22425:1 22426:1 22451:1 22454:1 22455:1 22461:1 22464:1 22467:3 22469:4 22473:1 22475:1 22476:1 22477:1 22479:2 22482:1 22483:1 22484:1 22493:1 22494:1 22505:1 22518:6 22535:1 22536:1 22539:1 22544:1 22551:1 22552:1 22555:1 22557:1 22582:12 22585:6 22587:1 22609:1 22611:2 22612:1 22618:1 22619:1 22630:1 22635:1 22636:1 22639:2 22643:3 22651:2 22667:1 22670:1 22681:1 22690:1 22728:1 22756:1 22767:1 22768:1 22777:2 22781:1 22787:1 22794:1 22796:1 22800:2 22809:2 22813:1 22817:1 22822:2 22823:2 22826:1 22843:1 22845:1 22850:1 22857:1 22858:2 22863:1 22866:1 22874:1 22890:1 22896:1 22901:4 22913:2 22917:1 22918:1 22924:1 22930:1 22932:1 22941:2 22946:2 22950:1 22952:2 22953:1 22957:1 22968:1 22974:1 22975:1 23002:18 23003:2 23023:1 23026:1 23032:1 23033:1 23036:1 23045:1 23055:1 23066:1 23067:1 23074:2 23078:1 23085:1 23098:2 23101:1 23105:2 23110:1 23111:1 23131:1 23133:1 23139:1 23143:1 23145:1 23160:1 23166:1 23173:1 23197:1 23198:1 23220:10 23221:1 23235:1 23240:2 23241:1 23247:1 23253:1 23264:2 23270:1 23276:1 23280:1 23285:6 23286:1 23291:1 23304:1 23308:1 23311:2 23314:1 23340:1 23353:2 23359:1 23365:1 23371:1 23386:1 23398:1 23407:1 23422:2 23426:2 23428:1 23437:2 23448:1 23452:1 23459:1 23473:1 23527:1 23528:2 23534:1 23538:1 23540:1 23550:1 23560:1 23564:2 23569:5 23571:1 23577:1 23579:1 23594:1 23617:7 23629:1 23632:1 23636:1 23648:1 23650:7 23663:2 23677:1 23682:1 23685:1 23688:3 23689:1 23698:1 23701:1 23705:1 23714:1 23715:1 23746:1 23759:1 23769:1 23777:2 23803:1 23821:1 23826:1 23833:1 23838:1 23853:1 23860:1 23889:1 23903:1 23904:1 23919:2 23922:1 23928:1 23929:2 23944:1 23945:1 23952:1 23953:1 23958:1 23971:1 23988:3 23991:1 24023:4 24030:1 24035:1 24044:1 24058:1 24065:1 24074:2 24075:1 24084:1 24088:1 24094:15 24095:2 24105:2 24115:1 24124:1 24126:1 24147:1 24151:2 24163:1 24165:1 24170:1 24183:1 24186:2 24188:2 24199:1 24211:4 24215:3 24221:3 24224:2 24226:4 24228:1 24230:1 24245:1 24253:1 24293:1 24300:1 24301:1 24314:1 24324:1 24337:1 24340:2 24350:1 24362:2 24370:2 24380:1 24384:2 24386:1 24387:1 24388:2 24399:1 24415:6 24417:1 24418:1 24425:1 24426:1 24427:1 24429:1 24434:1 24439:1 24442:1 24446:1 24447:1 24467:1 24470:2 24471:2 24483:1 24531:1 24537:2 24553:1 24561:1 24562:1 24569:3 24596:1 24621:1 24634:1 24635:1 24641:6 24652:1 24653:1 24677:1 24684:1 24689:1 24690:1 24703:1 24707:1 24711:3 24716:1 24721:1 24744:1 24746:2 24747:2 24758:3 24769:1 24773:1 24785:1 24788:1 24793:1 24797:2 24823:1 24837:1 24838:2 24839:1 24849:1 24851:1 24862:1 24886:1 24895:2 24912:1 24915:4 24918:1 24921:1 24922:2 24931:1 24936:1 24938:2 24950:1 24956:1 24961:2 24972:2 24974:1 24977:1 24980:1 24985:2 24986:1 24991:1 25000:1 25013:1 25016:1 25021:1 25026:1 25028:1 25032:2 25037:1 25063:1 25077:6 25081:3 25084:2 25098:1 25099:1 25108:1 25120:1 25126:1 25132:2 25137:1 25143:1 25148:2 25155:2 25163:1 25164:1 25172:2 25174:1 25181:1 25187:1 25190:1 25192:1 25193:1 25200:1 25201:1 25204:3 25205:1 25206:1 25207:1 25210:3 25213:1 25217:2 25219:1 25222:1 25229:2 25238:2 25243:1 25247:1 25279:1 25288:1 25297:5 25311:1 25318:2 25335:2 25358:1 25361:1 25401:1 25404:2 25439:1 25444:1 25445:2 25457:1 25459:1 25465:2 25480:1 25486:1 25487:1 25490:1 25492:3 25499:5 25521:1 25532:1 25542:1 25553:1 25563:7 25598:1 25600:1 25613:1 25631:1 25648:1 25652:1 25655:1 25656:1 25660:2 25674:2 25680:1 25691:1 25699:1 25715:1 25734:1 25742:1 25745:1 25759:2 25760:3 25761:1 25766:1 25768:1 25773:2 25775:1 25778:2 25790:1 25792:1 25799:1 25801:5 25811:1 25813:1 25815:1 25817:1 25828:3 25832:2 25836:2 25840:1 25845:1 25847:5 25851:1 25860:1 25867:3 25870:1 25883:3 25884:1 25886:3 25889:1 25906:3 25922:1 25924:1 25941:1 25949:1 25963:1 25969:3 25971:4 25977:5 26008:5 26021:1 26023:1 26034:1 26045:1 26051:1 26052:1 26054:1 26064:1 26081:1 26083:6 26088:1 26092:2 26114:1 26120:1 26126:1 26131:1 26141:1 26146:1 26158:1 26162:1 26164:1 26172:1 26173:2 26179:1 26182:1 26196:3 26231:1 26233:1 26234:1 26245:7 26246:1 26249:2 26252:1 26257:1 26259:1 26263:2 26276:1 26277:1 26308:6 26325:1 26351:1 26365:1 26401:1 26426:1 26441:1 26468:1 26470:1 26488:2 26495:1 26497:1 26498:2 26499:3 26502:2 26504:3 26511:1 26515:1 26516:1 26525:1 26539:1 26552:1 26561:1 26571:1 26576:1 26611:3 26614:1 26620:2 26648:2 26651:1 26653:2 26668:1 26670:1 26683:1 26699:1 26704:1 26705:1 26715:1 26721:3 26722:1 26727:1 26728:2 26758:1 26760:1 26763:4 26767:2 26780:1 26784:1 26806:1 26813:1 26819:1 26825:1 26836:1 26844:1 26862:1 26866:1 26868:3 26876:1 26878:1 26892:1 26901:3 26903:1 26919:1 26940:2 26943:2 26961:1 26965:1 26966:3 26973:3 26974:3 26975:1 26978:1 27006:1 27020:1 27022:5 27025:1
1 12:2 34:1 36:1 43:1 45:1 50:1 55:1 60:1 72:1 90:1 92:1 108:1 124:1 137:1 138:3 147:1 152:2 153:1 159:1 165:2 168:3 175:1 178:6 181:1 189:1 194:1 204:1 221:1 231:1 236:7 248:1 255:3 262:1 277:2 301:1 312:4 314:3 318:3 320:1 326:3 333:1 337:2 356:3 363:1 375:2 392:6 394:5 403:1 414:2 446:1 451:1 480:2 509:1 518:1 522:2 538:1 546:1 548:3 554:1 565:1 571:1 573:4 575:2 580:1 588:2 595:1 653:1 656:1 665:1 698:1 707:1 708:2 728:1 730:2 731:1 738:2 750:1 776:6 779:1 782:1 786:1 787:4 792:1 798:1 814:16 815:4 823:3 841:4 847:1 848:1 853:1 854:4 856:2 857:8 859:1 861:3 863:4 877:2 895:5 898:4 909:1 910:1 943:2 951:1 964:1 994:1 1005:1 1011:1 1028:1 1029:1 1044:1 1053:2 1054:1 1057:1 1100:3 1101:3 1105:1 1107:2 1108:1 1111:2 1118:1 1119:1 1132:1 1139:1 1140:1 1141:1 1145:2 1151:1 1156:2 1161:2 1169:1 1170:1 1178:1 1184:2 1189:1 1198:1 1211:1 1214:1 1215:1 1230:1 1236:1 1243:1 1247:1 1249:1 1253:1 1256:1 1264:1 1275:1 1293:1 1296:1 1300:1 1301:2 1303:1 1311:1 1318:1 1319:2 1332:1 1334:1 1338:1 1340:3 1346:1 1352:1 1361:1 1367:1 1370:1 1371:2 1373:1 1385:1 1390:1 1406:1 1411:4 1417:8 1420:2 1429:1 1450:2 1458:1 1461:1 1465:1 1467:3 1476:1 1480:1 1482:1 1485:2 1498:2 1508:1 1511:1 1513:1 1517:2 1518:1 1526:1 1529:3 1540:1 1545:1 1549:1 1556:1 1560:2 1564:1 1565:1 1570:1 1580:1 1588:1 1594:1 1595:2 1598:1 1607:1 1614:1 1615:5 1621:1 1626:1 1632:1 1636:1 1639:3 1642:1 1643:2 1645:1 1651:2 1653:6 1660:1 1676:4 1678:3 1682:1 1692:1 1702:1 1704:1 1710:2 1713:2 1715:4 1717:1 1718:1 1721:1 1731:1 1734:2 1741:1 1742:2 1744:1 1750:1 1751:1 1757:3 1763:2 1764:1 1765:1 1778:2 1781:1 1782:1 1787:1 1821:1 1825:9 1830:1 1836:1 1840:2 1845:6 1850:1 1851:1 1854:2 1859:1 1862:2 1873:2 1877:1 1884:1 1893:1 1896:1 1902:1 1905:1 1920:2 1921:1 1923:2 1924:1 1926:2 1929:1 1950:1 1966:11 1970:2 1975:1 1979:1 1984:1 1999:1 2006:2 2007:1 2025:2 2038:5 2040:1 2052:1 2053:1 2056:1 2061:2 2078:3 2079:2 2081:1 2083:3 2084:5 2087:1 2089:1 2090:2 2095:2 2096:2 2097:1 2098:4 2099:5 2102:1 2103:1 2105:5 2107:3 2109:5 2111:7 2113:1 2123:1 2131:1 2146:1 2149:2 2152:3 2155:3 2158:1 2162:1 2170:2 2172:1 2179:1 2190:1 2191:1 2200:1 2208:1 2210:1 2236:1 2243:1 2246:1 2247:1 2262:1 2278:3 2280:1 2287:1 2291:1 2297:1 2304:1 2306:3 2316:2 2317:1 2323:1 2325:1 2330:1 2334:1 2345:1 2347:2 2353:3 2356:2 2358:1 2361:7 2365:1 2366:1 2367:1 2379:1 2382:1 2397:1 2408:4 2410:1 2411:1 2416:1 2430:2 2436:2 2437:1 2438:2 2447:7 2452:2 2458:2 2460:9 2465:6 2467:1 2474:2 2475:1 2481:1 2483:2 2485:1 2490:3 2492:2 2503:2 2515:1 2516:2 2520:3 2524:1 2528:2 2533:1 2557:1 2561:1 2562:2 2563:2 2575:3 2576:1 2577:1 2579:1 2583:7 2590:2 2595:1 2612:1 2614:1 2619:1 2637:1 2639:3 2641:1 2656:4 2660:1 2664:1 2667:16 2678:1 2689:3 2690:1 2694:1 2695:1 2697:1 2706:2 2711:3 2712:1 2714:1 2731:20 2733:3 2743:1 2756:2 2758:3 2773:2 2783:1 2786:1 2809:1 2814:1 2822:1 2826:1 2840:1 2841:5 2852:3 2856:1 2860:1 2866:1 2879:1 2889:1 2902:1 2904:1 2908:1 2915:2 2923:1 2924:1 2938:2 2949:1 2956:3 2968:1 2991:1 2992:2 3026:1 3027:2 3028:1 3031:1 3034:1 3038:2 3048:7 3049:1 3103:1 3137:1 3147:3 3152:1 3153:1 3162:1 3190:1 3192:1 3193:1 3194:1 3199:1 3203:1 3209:1 3210:2 3213:1 3222:1 3230:1 3232:1 3252:1 3268:1 3286:2 3291:1 3309:1 3314:1 3315:16 3318:1 3325:1 3328:2 3330:2 3331:2 3332:1 3346:1 3350:1 3352:1 3358:1 3359:1 3366:1 3394:1 3399:2 3400:1 3406:1 3407:1 3410:3 3414:2 3423:1 3446:1 3459:1 3470:1 3473:1 3480:2 3483:1 3486:2 3488:1 3494:3 3496:1 3506:1 3510:1 3513:2 3520:1 3523:1 3540:2 3542:1 3554:2 3560:3 3561:1 3575:2 3576:1 3581:4 3583:1 3587:2 3590:1 3591:2 3600:4 3602:1 3608:1 3610:2 3611:2 3629:1 3631:2 3646:1 3650:2 3652:3 3660:1 3683:2 3691:6 3692:4 3698:2 3730:1 3733:2 3737:1 3742:1 3756:1 3759:1 3760:2 3779:1 3787:2 3790:1 3791:1 3794:1 3798:1 3813:2 3822:1 3828:2 3838:1 3845:4 3846:1 3848:2 3849:1 3853:2 3856:1 3859:1 3863:2 3875:1 3882:1 3888:1 3898:1 3912:1 3917:1 3937:1 3952:7 3957:1 3977:3 3984:1 3993:2 3999:1 4003:1 4005:2 4018:2 4032:2 4038:1 4057:1 4062:1 4064:4 4065:2 4084:4 4097:1 4107:1 4116:1 4118:1 4125:1 4134:1 4140:2 4146:2 4160:1 4164:1 4167:1 4172:1 4173:3 4175:1 4189:1 4201:1 4217:3 4218:1 4226:1 4234:5 4246:1 4249:1 4251:1 4275:4 4284:2 4287:1 4294:1 4295:1 4302:4 4307:2 4319:5 4341:1 4344:2 4361:1 4365:2 4369:3 4383:3 4386:1 4394:1 4403:1 4419:1 4422:2 4429:1 4431:1 4445:1 4446:1 4461:1 4467:1 4477:1 4488:15 4490:2 4499:1 4501:1 4502:1 4509:1 4516:1 4527:1 4535:1 4546:1 4554:1 4585:1 4608:3 4616:1 4625:1 4629:4 4631:7 4632:3 4634:1 4637:2 4638:2 4639:2 4642:1 4643:2 4645:6 4646:4 4650:1 4651:2 4652:8 4658:2 4659:5 4662:1 4663:1 4674:1 4677:1 4701:1 4718:1 4737:2 4744:1 4762:1 4767:1 4776:1 4801:1 4834:1 4842:1 4866:1 4877:1 4887:2 4911:1 4916:1 4941:3 4945:2 4955:1 4982:1 4985:1 5006:5 5012:1 5018:1 5026:1 5037:1 5050:1 5055:1 5064:2 5075:1 5081:1 5088:1 5094:1 5101:1 5121:1 5130:1 5144:1 5153:1 5156:1 5173:1 5197:2 5206:1 5207:1 5212:2 5216:1 5221:1 5230:5 5231:1 5234:2 5236:1 5239:3 5240:1 5255:1 5256:1 5277:1 5281:3 5292:2 5293:1 5296:1 5309:6 5314:1 5315:1 5330:2 5336:1 5383:1 5392:1 5398:1 5416:1 5420:1 5422:1 5440:1 5444:1 5445:1 5446:1 5453:3 5456:1 5467:1 5479:1 5497:1 5503:1 5510:2 5521:2 5528:1 5535:2 5538:2 5539:1 5541:4 5561:1 5565:6 5567:1 5568:1 5575:1 5576:2 5583:2 5585:1 5586:1 5588:1 5589:1 5591:1 5596:1 5620:1 5622:1 5623:1 5624:1 5629:1 5632:2 5634:1 5639:1 5641:1 5642:2 5643:1 5647:12 5680:3 5686:1 5703:1 5715:1 5725:4 5735:2 5751:6 5756:1 5761:1 5763:1 5801:1 5805:1 5828:1 5834:1 5836:1 5838:1 5844:2 5845:3 5847:1 5849:1 5850:1 5852:2 5853:1 5859:2 5860:4 5861:3 5872:1 5897:1 5904:1 5938:1 5954:1 5975:1 5987:1 5991:4 5992:2 6006:1 6015:1 6047:1 6055:2 6064:2 6066:1 6076:1 6082:1 6092:2 6115:1 6129:2 6137:2 6146:1 6152:1 6162:1 6210:1 6215:1 6223:1 6233:2 6235:1 6238:1 6242:1 6246:1 6254:8 6255:1 6259:1 6262:2 6264:1 6265:3 6267:1 6273:1 6275:1 6279:1 6287:2 6297:1 6300:1 6301:1 6307:1 6310:1 6340:1 6344:1 6345:3 6357:2 6361:1 6366:2 6369:1 6385:1 6389:1 6394:1 6398:1 6401:2 6402:1 6430:1 6449:2 6453:1 6460:1 6465:1 6468:1 6469:1 6477:1 6486:1 6490:6 6498:2 6516:1 6524:1 6528:1 6534:1 6537:3 6538:2 6545:1 6549:6 6550:1 6552:1 6557:5 6560:1 6564:1 6587:1 6588:1 6590:1 6599:1 6602:1 6604:1 6620:1 6621:1 6626:4 6631:4 6641:1 6654:1 6658:1 6672:3 6674:1 6677:1 6679:1 6686:1 6689:1 6697:1 6701:1 6703:1 6705:1 6712:1 6721:1 6728:1 6742:1 6772:1 6797:1 6800:1 6806:1 6810:2 6846:1 6857:1 6859:2 6860:6 6864:3 6868:1 6869:1 6870:1 6876:3 6881:1 6894:6 6895:2 6898:2 6912:1 6913:3 6922:1 6935:1 6942:1 6943:2 6946:2 6951:1 6959:1 6962:1 6964:1 6969:1 6980:1 6981:1 6988:1 6989:2 6997:1 7002:2 7006:1 7015:1 7016:1 7027:1 7052:3 7067:4 7068:6 7081:2 7086:1 7090:4 7092:2 7093:3 7094:1 7109:1 7116:4 7117:3 7121:1 7136:48 7137:2 7140:2 7147:1 7155:10 7156:7 7162:2 7166:1 7194:1 7201:1 7202:1 7211:1 7212:2 7222:1 7224:1 7229:3 7230:2 7235:1 7242:1 7244:2 7256:2 7264:3 7276:1 7283:1 7294:2 7300:1 7305:2 7319:1 7325:1 7326:2 7352:1 7355:1 7356:3 7359:1 7385:1 7389:1 7390:1 7391:1 7402:2 7446:1 7461:1 7477:1 7486:1 7489:1 7491:1 7507:1 7508:1 7517:1 7520:1 7523:1 7538:1 7547:1 7556:1 7558:1 7559:2 7568:1 7575:1 7576:1 7580:2 7592:1 7593:1 7609:27 7618:1 7619:1 7637:3 7640:3 7642:1 7644:2 7670:1 7676:1 7696:6 7698:1 7700:1 7706:1 7734:1 7744:4 7747:2 7748:2 7751:1 7756:1 7757:1 7771:1 7777:2 7778:4 7784:3 7790:1 7792:1 7796:1 7812:2 7814:1 7820:1 7825:1 7836:1 7840:1 7850:1 7857:1 7858:1 7864:1 7866:1 7876:1 7877:2 7886:2 7889:1 7890:1 7918:1 7940:1 7944:1 7945:1 7950:1 7952:1 7957:1 7976:2 7978:2 7989:6 7991:1 8005:2 8008:3 8023:1 8034:1 8036:1 8043:1 8049:2 8052:1 8054:1 8063:1 8069:1 8073:1 8085:2 8095:1 8113:1 8120:1 8124:1 8148:1 8153:1 8154:1 8163:1 8164:1 8171:1 8197:1 8199:1 8215:3 8228:1 8247:1 8250:1 8253:2 8254:1 8258:3 8282:3 8289:1 8295:2 8306:1 8311:1 8330:1 8331:1 8332:1 8340:1 8345:2 8350:7 8351:1 8356:1 8358:1 8363:1 8370:4 8378:1 8387:2 8389:1 8407:7 8409:1 8423:1 8426:1 8437:1 8445:11 8446:6 8460:3 8461:1 8469:1 8472:1 8501:3 8507:1 8515:1 8521:1 8525:3 8527:1 8541:1 8544:1 8550:2 8552:2 8553:3 8555:2 8558:1 8567:1 8578:1 8584:1 8600:1 8612:1 8620:2 8622:1 8632:1 8635:5 8637:1 8638:1 8650:1 8655:1 8656:3 8658:2 8663:1 8664:1 8674:4 8698:1 8699:1 8706:1 8728:1 8735:1 8741:1 8756:3 8763:1 8765:3 8771:1 8782:1 8784:1 8786:1 8791:1 8793:1 8817:1 8820:1 8833:1 8838:1 8846:1 8853:7 8856:3 8885:3 8887:1 8894:1 8895:1 8904:3 8908:1 8926:1 8943:1 8947:1 8953:1 8954:3 8956:3 8958:2 8964:1 8981:1 8987:2 8990:2 9020:2 9022:1 9031:1 9041:1 9067:2 9073:1 9077:1 9087:1 9090:1 9101:2 9107:1 9109:1 9113:2 9124:1 9131:1 9132:1 9144:1 9155:1 9172:1 9173:1 9178:1 9179:1 9191:1 9196:1 9216:1 9218:1 9221:1 9222:1 9224:1 9230:5 9243:4 9249:4 9251:2 9263:1 9281:2 9291:1 9300:3 9301:1 9314:1 9328:1 9332:2 9337:2 9347:1 9348:1 9358:1 9361:4 9364:1 9388:2 9391:1 9396:12 9398:2 9402:2 9406:1 9424:2 9425:1 9434:1 9439:1 9450:1 9469:1 9488:1 9491:2 9493:1 9509:1 9524:1 9534:1 9536:1 9537:1 9540:1 9542:4 9550:1 9552:1 9555:2 9588:1 9598:1 9601:4 9608:1 9610:1 9612:1 9617:1 9620:3 9624:1 9626:1 9632:1 9635:2 9642:4 9660:1 9681:1 9691:1 9695:1 9696:1 9703:1 9708:1 9710:2 9713:2 9718:1 9725:2 9728:1 9732:1 9739:1 9748:1 9750:3 9757:1 9764:2 9766:1 9769:1 9774:1 9775:7 9778:4 9791:2 9795:3 9799:1 9802:1 9807:1 9812:2 9820:1 9834:2 9848:7 9849:2 9866:2 9868:1 9869:1 9878:4 9899:1 9916:1 9920:1 9926:3 9936:2 9943:1 9946:7 9964:2 9972:1 9980:1 9982:1 9993:3 10025:1 10030:1 10036:1 10085:1 10096:1 10102:1 10118:1 10120:1 10136:1 10137:2 10141:2 10144:1 10145:2 10149:1 10152:1 10156:1 10157:5 10158:5 10159:1 10167:1 10168:1 10174:2 10177:2 10181:1 10183:4 10188:1 10189:1 10192:1 10195:1 10198:1 10200:1 10201:3 10203:3 10208:1 10213:1 10226:2 10234:1 10255:1 10257:1 10259:4 10262:1 10294:1 10297:1 10312:1 10321:2 10323:1 10326:1 10341:1 10385:1 10392:1 10404:1 10406:1 10412:1 10425:1 10426:3 10445:1 10463:1 10474:1 10477:1 10478:1 10484:2 10487:1 10500:3 10503:2 10507:1 10518:2 10523:2 10525:1 10526:1 10528:2 10531:1 10537:3 10539:1 10540:1 10541:2 10550:1 10556:3 10559:2 10572:1 10587:17 10588:1 10611:1 10621:1 10625:4 10632:1 10635:2 10636:2 10648:2 10655:1 10673:1 10675:2 10682:2 10683:1 10690:1 10693:2 10695:2 10696:1 10706:1 10724:1 10738:1 10759:1 10766:1 10783:1 10796:1 10803:3 10804:1 10805:1 10807:1 10808:1 10814:1 10821:1 10822:4 10826:1 10827:2 10828:1 10830:2 10840:1 10841:1 10851:1 10860:1 10863:1 10864:1 10866:1 10870:2 10874:5 10875:1 10880:4 10884:1 10898:1 10921:1 10934:2 10938:1 10947:1 10953:1 10972:1 10975:1 10983:1 10984:1 10998:1 11009:1 11014:1 11016:1 11017:1 11023:6 11032:1 11043:2 11046:1 11058:1 11063:1 11070:1 11071:1 11076:2 11081:2 11100:2 11103:1 11117:2 11127:1 11129:2 11150:1 11170:2 11175:1 11189:1 11191:2 11195:1 11201:2 11205:1 11219:1 11236:1 11244:1 11246:1 11247:1 11251:5 11252:1 11253:3 11255:1 11256:2 11267:1 11273:2 11279:1 11283:1 11285:1 11290:1 11335:1 11338:2 11339:1 11341:1 11357:1 11368:1 11376:1 11388:1 11393:1 11407:1 11410:1 11413:1 11423:1 11439:1 11476:3 11494:2 11507:1 11518:1 11520:1 11527:1 11539:1 11545:1 11550:1 11552:2 11553:1 11568:1 11570:3 11579:1 11593:1 11599:1 11606:1 11647:1 11658:1 11663:1 11665:1 11666:2 11674:1 11687:1 11705:15 11710:5 11719:1 11723:2 11728:1 11739:1 11746:2 11747:3 11753:4 11767:1 11770:1 11775:1 11779:2 11780:1 11786:1 11792:2 11794:1 11798:1 11800:1 11829:1 11845:1 11850:1 11858:2 11863:1 11886:1 11887:1 11889:1 11890:1 11903:1 11923:1 11924:1 11930:2 11932:1 11942:1 11944:1 11946:1 11963:1 11977:1 11982:5 11994:2 11996:1 12041:1 12042:1 12060:1 12071:2 12075:1 12078:1 12082:1 12083:1 12085:4 12090:4 12099:1 12101:2 12105:1 12106:2 12115:2 12122:1 12138:6 12157:1 12161:2 12186:1 12193:4 12194:1 12205:1 12217:1 12221:2 12223:1 12224:1 12225:2 12233:9 12236:1 12242:2 12247:1 12260:1 12264:1 12272:1 12273:1 12279:2 12283:1 12289:1 12290:1 12301:16 12306:1 12308:1 12311:1 12327:1 12342:2 12343:2 12350:3 12366:1 12371:2 12384:2 12394:1 12395:1 12397:1 12421:3 12441:1 12446:6 12449:1 12465:1 12471:2 12475:1 12478:1 12499:4 12515:1 12521:1 12525:1 12528:1 12533:3 12535:1 12537:1 12544:1 12549:1 12551:1 12558:6 12559:1 12561:1 12562:2 12563:1 12564:2 12565:1 12569:7 12570:3 12584:1 12590:1 12591:1 12593:1 12594:1 12595:1 12620:1 12636:1 12643:1 12675:2 12680:2 12685:1 12686:1 12695:1 12706:1 12711:1 12719:6 12751:1 12756:1 12758:1 12760:1 12767:1 12770:1 12773:2 12774:1 12778:1 12790:2 12794:1 12814:2 12820:1 12821:1 12829:1 12830:1 12833:1 12836:7 12857:3 12861:1 12867:1 12890:1 12902:1 12903:2 12909:1 12913:1 12923:1 12929:1 12931:1 12934:1 12944:1 12957:2 12977:1 12983:1 12984:1 12990:1 12993:1 12997:1 13004:1 13010:1 13017:1 13052:1 13063:2 13075:1 13077:5 13091:1 13104:1 13123:1 13143:1 13175:1 13199:1 13200:1 13204:3 13205:4 13212:1 13222:2 13223:2 13225:1 13229:2 13230:1 13248:1 13250:1 13251:1 13256:1 13265:2 13276:1 13285:1 13294:2 13305:1 13312:1 13327:2 13334:1 13337:1 13349:1 13353:1 13355:1 13361:2 13367:1 13375:3 13380:2 13428:1 13430:2 13433:1 13444:2 13457:2 13476:2 13477:1 13484:1 13491:2 13506:1 13513:1 13517:1 13531:1 13540:3 13552:1 13555:1 13558:2 13563:1 13587:1 13589:1 13595:1 13637:1 13643:2 13689:2 13693:2 13696:1 13702:1 13712:1 13722:2 13734:1 13762:2 13774:1 13776:3 13781:1 13793:1 13794:1 13795:2 13799:1 13801:1 13804:1 13806:1 13829:1 13887:1 13891:1 13894:1 13900:2 13922:1 13928:1 13944:1 13974:1 13995:2 14004:1 14010:1 14027:1 14032:1 14034:1 14035:2 14047:1 14064:2 14071:3 14075:1 14096:1 14098:1 14099:1 14107:1 14113:2 14130:3 14134:1 14156:1 14158:1 14168:2 14184:1 14189:2 14211:1 14213:1 14216:1 14217:1 14225:1 14229:6 14244:3 14252:1 14263:4 14266:1 14279:3 14299:1 14302:1 14311:1 14321:1 14328:1 14332:1 14335:2 14377:1 14391:2 14392:1 14403:2 14409:1 14413:1 14417:4 14420:1 14424:1 14426:1 14432:1 14443:2 14445:4 14446:1 14450:1 14453:1 14462:1 14465:1 14475:1 14491:2 14497:2 14532:2 14535:1 14539:1 14550:3 14559:2 14567:1 14570:1 14572:3 14587:1 14600:3 14615:1 14648:1 14667:1 14676:1 14682:1 14683:1 14686:1 14687:15 14690:1 14704:1 14706:1 14709:3 14712:1 14738:3 14772:2 14783:1 14789:2 14796:3 14817:2 14821:1 14832:2 14845:1 14876:1 14883:1 14890:1 14891:1 14892:1 14902:2 14903:1 14928:1 14929:1 14931:3 14934:1 14946:1 14950:1 14954:6 14955:2 14956:2 14957:6 14958:2 14959:1 14963:2 14965:1 14967:2 14968:5 14972:1 14973:1 14975:1 14978:1 14979:2 14987:1 15004:1 15013:2 15021:1 15024:1 15037:1 15060:1 15069:1 15083:1 15087:2 15088:1 15109:2 15113:1 15114:1 15117:1 15119:2 15120:2 15128:1 15140:2 15143:1 15162:1 15169:1 15170:1 15178:1 15192:1 15198:1 15217:1 15240:1 15250:1 15252:1 15254:1 15262:2 15272:1 15274:2 15281:2 15282:1 15290:1 15294:5 15299:1 15302:2 15308:1 15316:1 15321:2 15324:1 15325:4 15329:2 15334:1 15336:1 15342:3 15344:2 15353:3 15359:1 15367:1 15372:1 15402:1 15407:14 15408:1 15422:1 15426:1 15431:2 15432:4 15434:1 15437:1 15472:1 15476:1 15490:1 15491:1 15497:2 15499:1 15507:1 15512:4 15524:1 15525:1 15534:1 15538:3 15541:2 15558:1 15575:2 15580:1 15596:5 15603:1 15617:2 15619:1 15622:1 15646:1 15661:2 15667:1 15688:1 15703:2 15705:3 15719:1 15720:1 15722:1 15731:1 15748:1 15763:1 15765:1 15768:1 15787:1 15790:1 15799:1 15808:2 15814:1 15821:1 15828:1 15837:1 15845:2 15854:1 15858:2 15862:1 15864:2 15870:1 15873:1 15886:1 15889:1 15890:1 15909:1 15930:1 15938:1 15959:1 15966:1 15979:1 15982:1 15988:1 16000:1 16005:1 16007:1 16021:3 16027:1 16036:1 16037:3 16041:1 16046:1 16047:1 16054:3 16059:2 16060:2 16064:2 16068:1 16070:1 16071:10 16109:1 16111:2 16112:1 16116:2 16117:1 16121:1 16128:1 16133:1 16136:2 16139:1 16140:1 16156:1 16176:1 16189:1 16203:1 16204:1 16222:4 16226:1 16236:1 16244:2 16256:1 16257:1 16261:1 16266:1 16276:1 16279:1 16309:1 16311:1 16312:1 16313:1 16339:1 16343:1 16344:1 16347:2 16357:1 16379:1 16401:1 16405:1 16417:1 16425:1 16426:3 16433:1 16437:1 16439:1 16450:1 16452:1 16466:1 16487:1 16514:2 16540:1 16542:1 16551:2 16570:2 16651:2 16657:2 16658:1 16664:1 16674:1 16680:1 16687:1 16703:1 16719:1 16721:1 16727:1 16735:1 16758:1 16770:1 16771:1 16787:1 16791:3 16795:1 16805:1 16838:1 16848:15 16860:1 16880:1 16906:1 16932:1 16954:14 16963:4 16964:2 16975:1 16977:6 16990:1 16997:1 17001:3 17012:1 17025:2 17048:6 17058:2 17068:2 17084:2 17085:1 17087:1 17107:3 17112:2 17125:2 17126:3 17137:2495 17147:1 17151:1 17160:1 17161:1 17162:1 17172:1 17188:1 17197:1 17200:1 17201:1 17202:1 17220:2 17235:1 17251:1 17258:2 17262:1 17263:1 17282:1 17296:1 17307:1 17311:1 17314:1 17317:2 17321:6 17322:4 17332:1 17339:1 17341:1 17351:1 17359:1 17375:1 17386:1 17399:1 17404:1 17406:1 17407:1 17448:1 17450:3 17453:2 17459:1 17466:1 17494:1 17500:1 17502:1 17503:3 17507:2 17521:1 17522:1 17534:2 17549:1 17551:2 17552:1 17564:2 17566:1 17573:1 17581:1 17588:1 17591:1 17603:2 17608:1 17616:1 17627:1 17636:1 17639:1 17642:2 17643:2 17646:2 17655:1 17661:1 17670:2 17672:1 17691:2 17692:2 17708:3 17712:1 17716:1 17728:3 17752:3 17753:1 17758:1 17761:1 17770:1 17771:2 17777:9 17787:1 17801:1 17803:1 17818:1 17823:2 17824:1 17825:1 17833:2 17846:5 17847:1 17860:1 17862:2 17877:1 17891:1 17900:4 17905:1 17907:2 17912:1 17914:2 17929:4 17930:1 17935:1 17938:1 17942:2 17956:1 17960:1 17961:4 17968:2 17970:1 17975:3 18006:3 18009:1 18012:1 18017:1 18031:1 18034:1 18038:2 18039:2 18046:1 18047:2 18050:1 18058:1 18068:1 18075:1 18077:1 18078:1 18079:1 18080:1 18083:1 18088:1 18117:1 18130:3 18144:1 18145:2 18146:1 18147:1 18152:1 18153:3 18158:1 18178:1 18182:1 18183:1 18185:1 18187:1 18196:1 18203:2 18208:1 18214:2 18227:1 18229:2 18237:2 18238:1 18242:1 18249:1 18252:1 18268:1 18269:1 18276:1 18279:2 18282:4 18287:1 18288:4 18289:1 18335:1 18340:1 18354:2 18360:1 18363:1 18368:2 18369:2 18371:2 18388:1 18389:2 18392:3 18399:3 18404:1 18405:2 18407:2 18409:1 18421:5 18430:2 18449:1 18458:1 18460:1 18462:1 18465:2 18466:4 18494:1 18495:2 18504:2 18505:1 18507:1 18510:1 18526:1 18531:3 18548:1 18552:2 18553:2 18569:1 18570:1 18577:3 18578:20 18579:2 18586:1 18592:5 18596:1 18612:2 18613:1 18620:1 18627:1 18643:3 18652:1 18653:1 18663:1 18672:1 18678:1 18683:1 18695:1 18697:1 18700:1 18701:1 18705:1 18726:1 18738:1 18757:1 18768:4 18787:1 18789:2 18802:2 18807:1 18817:2 18828:1 18830:1 18840:2 18850:1 18865:8 18871:2 18878:1 18886:1 18916:1 18917:1 18920:1 18927:1 18933:1 18937:1 18968:1 18969:1 18973:4 18987:3 18996:1 18999:1 19002:1 19006:1 19010:1 19011:1 19020:1 19023:2 19024:1 19051:2 19057:3 19063:2 19066:2 19073:2 19078:1 19080:1 19081:1 19089:2 19093:1 19116:5 19126:2 19127:1 19135:1 19142:1 19149:2 19153:1 19162:1 19176:1 19178:2 19183:1 19190:2 19191:1 19198:5 19202:1 19206:2 19207:1 19209:1 19213:1 19215:2 19227:3 19258:2 19264:1 19271:1 19277:2 19296:1 19297:1 19298:1 19302:2 19304:1 19312:2 19319:2 19321:2 19327:2 19331:2 19332:1 19337:2 19353:1 19358:2 19381:2 19392:1 19393:4 19401:1 19402:1 19403:4 19418:1 19420:1 19427:2 19431:1 19435:1 19440:1 19441:1 19446:2 19447:1 19450:1 19452:1 19460:1 19463:1 19476:1 19480:1 19481:1 19486:1 19510:1 19517:1 19519:1 19524:2 19525:2 19535:1 19538:1 19550:1 19618:1 19622:1 19640:2 19652:2 19656:1 19664:2 19665:2 19667:1 19669:1 19673:1 19674:1 19679:1 19687:1 19694:2 19699:3 19705:1 19714:1 19723:1 19740:1 19746:1 19750:1 19758:1 19768:1 19769:1 19787:2 19789:1 19790:1 19791:1 19794:1 19796:2 19799:1 19800:1 19811:1 19814:1 19818:2 19825:2 19830:2 19833:1 19834:1 19838:2 19839:1 19841:1 19842:1 19851:1 19853:2 19874:14 19886:2 19887:2 19892:2 19902:1 19916:1 19924:1 19929:1 19931:1 19943:2 19948:1 19949:1 19952:1 19955:1 19984:1 20000:2 20010:1 20019:2 20024:1 20026:1 20030:1 20034:6 20036:3 20037:1 20046:2 20054:1 20055:1 20056:1 20059:1 20061:1 20081:1 20082:1 20083:1 20085:3 20087:4 20088:2 20089:1 20111:1 20114:1 20151:1 20171:4 20174:1 20176:5 20178:3 20179:3 20181:1 20182:1 20186:1 20189:2 20193:1 20194:2 20202:1 20204:1 20205:5 20212:1 20213:1 20218:1 20219:1 20223:1 20236:1 20244:2 20252:2 20255:2 20269:1 20297:1 20315:2 20317:2 20322:1 20324:1 20326:1 20329:1 20338:1 20344:1 20351:1 20364:1 20365:3 20368:1 20374:1 20375:1 20377:1 20381:2 20383:1 20392:1 20395:1 20396:1 20405:1 20409:1 20421:2 20423:1 20425:5 20431:1 20440:1 20441:4 20446:1 20447:3 20455:1 20463:1 20470:1 20476:1 20484:2 20487:1 20490:1 20491:1 20492:4 20498:2 20503:1 20512:2 20513:9 20515:1 20519:1 20525:1 20526:1 20529:1 20531:1 20547:1 20549:1 20553:1 20575:8 20576:1 20589:1 20609:1 20624:1 20631:6 20632:1 20637:1 20640:1 20649:1 20650:1 20664:1 20665:3 20678:1 20687:1 20690:4 20701:1 20715:1 20717:1 20722:1 20723:1 20726:6 20728:2 20735:3 20739:1 20740:4 20749:1 20753:1 20757:1 20759:1 20773:1 20775:4 20787:1 20794:1 20795:3 20797:1 20800:3 20809:1 20815:1 20817:1 20827:1 20834:1 20838:1 20846:1 20851:1 20863:1 20866:1 20890:1 20895:1 20902:1 20903:1 20904:1 20906:1 20914:1 20921:2 20935:10 20936:3 20941:1 20952:2 20957:3 20962:4 20969:1 20970:3 20982:2 20986:1 20996:1 21021:1 21032:1 21033:1 21037:2 21040:2 21055:1 21056:1 21059:1 21080:1 21083:1 21084:1 21085:1 21086:1 21101:1 21104:1 21113:1 21121:1 21128:2 21131:1 21138:2 21139:1 21142:1 21170:1 21175:3 21204:3 21215:1 21249:2 21253:1 21269:1 21294:3 21297:3 21304:7 21314:2 21322:1 21328:1 21330:3 21341:2 21344:2 21345:3 21358:1 21368:4 21406:1 21410:1 21413:1 21434:1 21436:1 21446:1 21458:1 21463:1 21472:4 21484:1 21502:1 21505:1 21510:3 21527:2 21534:1 21537:2 21548:1 21549:1 21559:1 21566:1 21575:1 21576:2 21579:4 21584:3 21590:1 21592:1 21603:1 21605:1 21609:1 21624:3 21625:2 21626:1 21628:2 21641:1 21644:1 21650:1 21695:1 21696:4 21697:1 21698:1 21701:1 21706:1 21712:1 21714:1 21715:4 21716:1 21718:1 21719:1 21722:1 21725:1 21749:1 21766:3 21769:1 21779:1 21789:2 21832:2 21840:1 21845:2 21853:1 21878:2 21884:1 21886:1 21929:1 21941:1 21943:2 21951:2 21953:1 21964:1 21979:1 21994:1 21996:1 21998:1 22008:2 22017:1 22029:2 22047:1 22057:1 22066:1 22084:1 22090:1 22101:2 22103:1 22113:1 22136:2 22140:1 22165:2 22176:4 22186:1 22212:1 22213:8 22220:1 22228:1 22233:1 22236:1 22241:3 22245:1 22259:1 22261:1 22267:1 22270:5 22279:1 22280:1 22287:1 22293:1 22317:3 22319:1 22340:2 22341:1 22345:1 22346:2 22381:1 22425:1 22426:1 22427:1 22451:1 22453:1 22454:1 22455:1 22461:1 22464:2 22467:3 22469:4 22471:1 22473:2 22475:1 22476:1 22477:1 22479:2 22482:1 22483:1 22484:1 22493:1 22494:1 22505:1 22518:6 22535:1 22536:2 22539:1 22544:1 22551:1 22552:1 22555:1 22557:1 22582:12 22585:6 22587:1 22609:1 22611:2 22612:1 22618:1 22619:1 22630:1 22635:1 22636:1 22639:2 22643:3 22651:2 22667:1 22670:1 22681:1 22690:1 22728:1 22756:1 22767:1 22768:1 22777:2 22781:1 22787:1 22794:1 22796:1 22800:2 22809:2 22813:1 22817:1 22822:2 22823:2 22826:1 22843:1 22845:1 22850:1 22857:1 22858:2 22860:1 22863:1 22866:1 22872:1 22874:1 22890:1 22896:1 22901:4 22913:2 22917:1 22918:1 22924:1 22930:1 22932:1 22941:2 22946:2 22950:1 22952:2 22953:1 22957:1 22968:1 22974:1 22975:1 23002:18 23003:2 23023:1 23026:1 23032:1 23033:1 23036:1 23045:1 23055:1 23066:1 23067:1 23074:2 23078:1 23085:1 23098:2 23101:1 23105:2 23106:1 23110:1 23111:1 23131:1 23133:1 23139:1 23143:1 23145:1 23160:1 23166:1 23173:1 23197:1 23198:1 23220:11 23221:1 23235:1 23240:2 23241:1 23247:1 23253:1 23264:2 23270:1 23276:1 23280:1 23285:6 23286:1 23291:1 23304:1 23308:1 23311:2 23314:1 23340:1 23353:2 23359:1 23365:1 23371:1 23386:1 23398:1 23407:1 23422:2 23426:2 23428:1 23437:2 23448:1 23452:1 23459:1 23473:1 23491:1 23527:1 23528:2 23534:1 23538:1 23540:1 23550:1 23560:1 23564:2 23569:5 23571:1 23577:1 23579:2 23594:1 23617:7 23629:1 23632:1 23636:1 23648:1 23650:7 23663:2 23677:1 23682:1 23685:1 23688:3 23689:1 23698:1 23701:1 23705:1 23714:1 23715:1 23746:1 23751:1 23759:1 23769:1 23777:2 23803:1 23821:1 23826:1 23833:2 23838:1 23853:1 23860:1 23889:1 23903:1 23904:1 23906:1 23919:2 23922:1 23928:1 23929:3 23944:1 23945:1 23952:1 23953:1 23958:1 23971:1 23981:1 23988:3 23991:1 24023:5 24030:1 24035:1 24044:1 24058:1 24065:1 24074:2 24075:1 24084:1 24088:1 24094:15 24095:2 24105:2 24115:1 24124:1 24126:1 24147:1 24151:2 24163:1 24165:1 24170:2 24183:1 24186:2 24188:2 24199:1 24207:1 24211:4 24215:3 24221:3 24224:3 24226:4 24228:1 24230:1 24245:1 24246:1 24253:1 24293:1 24300:1 24301:1 24302:1 24314:2 24324:1 24337:1 24340:2 24350:1 24362:2 24370:2 24380:1 24384:2 24386:1 24387:1 24388:2 24399:2 24415:6 24417:1 24418:1 24425:1 24426:1 24427:1 24429:1 24434:1 24439:1 24442:1 24446:1 24447:1 24467:1 24470:2 24471:2 24483:1 24531:1 24537:2 24553:1 24561:1 24562:1 24569:3 24596:1 24621:1 24634:1 24635:1 24641:6 24652:1 24653:1 24677:1 24684:1 24689:1 24690:1 24703:1 24707:1 24711:3 24716:1 24721:1 24744:1 24746:2 24747:2 24758:3 24769:1 24773:1 24785:1 24788:1 24793:1 24797:2 24823:1 24837:1 24838:2 24839:1 24849:1 24851:1 24862:1 24886:1 24895:2 24912:1 24915:4 24918:1 24921:1 24922:2 24931:1 24936:1 24938:2 24950:1 24956:1 24961:3 24972:2 24974:1 24977:1 24980:1 24985:2 24986:1 24991:1 25000:1 25013:1 25016:1 25021:1 25026:1 25028:1 25032:2 25037:1 25063:1 25077:6 25081:3 25084:2 25098:1 25099:1 25108:1 25120:1 25126:1 25132:2 25137:1 25143:1 25148:2 25151:1 25155:2 25163:1 25164:1 25172:2 25174:1 25181:1 25187:1 25190:1 25192:1 25193:1 25200:1 25201:1 25204:3 25205:1 25206:1 25207:1 25210:3 25213:1 25217:2 25219:1 25222:1 25229:2 25238:2 25243:1 25247:1 25279:1 25288:1 25297:5 25311:1 25318:2 25335:2 25358:1 25361:1 25401:1 25404:2 25439:1 25444:1 25445:2 25457:1 25459:1 25465:2 25480:2 25486:1 25487:1 25490:1 25492:3 25499:5 25513:1 25521:1 25532:1 25542:1 25553:1 25563:7 25598:1 25600:1 25613:1 25631:1 25648:1 25652:1 25655:1 25656:1 25660:2 25674:2 25680:1 25691:1 25699:1 25715:1 25734:1 25742:1 25745:1 25755:2 25759:2 25760:3 25761:1 25766:1 25768:1 25773:2 25775:1 25778:2 25790:1 25792:1 25799:1 25801:5 25811:1 25813:1 25815:1 25817:1 25828:3 25832:2 25836:2 25840:1 25845:1 25847:5 25851:1 25860:1 25867:3 25870:1 25883:3 25884:1 25886:3 25889:1 25893:1 25906:3 25922:1 25924:1 25941:1 25949:1 25963:1 25969:3 25971:4 25977:5 26008:5 26021:1 26023:1 26034:1 26045:1 26051:1 26052:1 26054:1 26064:1 26072:1 26081:1 26083:6 26088:1 26092:2 26114:1 26120:1 26126:1 26131:1 26141:1 26146:1 26158:1 26162:1 26164:1 26172:1 26173:2 26179:2 26182:1 26196:3 26231:1 26233:1 26234:1 26245:7 26246:2 26249:2 26252:1 26257:1 26259:1 26263:2 26276:1 26277:1 26308:6 26325:1 26351:1 26365:1 26401:1 26426:1 26441:1 26468:1 26470:1 26488:2 26495:1 26497:1 26498:2 26499:3 26502:2 26504:3 26511:1 26515:1 26516:1 26525:1 26539:1 26552:1 26561:1 26571:1 26576:1 26592:1 26611:3 26614:1 26620:2 26648:2 26651:2 26653:2 26668:1 26670:1 26683:1 26686:1 26699:1 26704:1 26705:1 26715:1 26721:3 26722:1 26727:1 26728:2 26758:1 26760:1 26763:4 26767:2 26780:1 26784:1 26806:1 26813:1 26819:1 26825:1 26836:1 26844:1 26862:1 26866:1 26868:3 26876:1 26878:1 26892:1 26901:3 26903:1 26919:1 26940:2 26943:2 26961:1 26965:1 26966:3 26973:3 26974:4 26975:1 26978:1 27006:1 27020:1 27022:5 27025:1
1 12:2 34:1 36:1 43:1 45:1 50:1 55:1 60:1 72:1 90:1 92:1 108:1 124:1 137:1 138:3 147:1 152:2 153:1 159:1 165:2 168:3 175:1 178:6 181:1 189:1 194:1 204:1 221:1 231:1 236:7 248:1 255:3 262:1 277:2 301:1 312:4 314:3 318:3 320:1 326:3 333:1 337:2 356:3 363:1 375:2 392:6 394:5 403:1 414:2 446:1 451:1 458:1 480:2 509:1 518:1 522:2 538:1 546:1 548:3 554:1 565:1 571:1 573:4 575:2 580:1 588:3 595:1 653:1 656:1 665:1 698:1 707:1 708:2 728:1 730:2 731:1 738:2 750:1 776:6 779:1 782:1 786:1 787:4 792:1 798:1 814:16 815:4 823:5 841:4 847:1 848:1 853:1 854:4 856:2 857:9 859:1 861:3 863:4 877:2 895:5 898:4 904:1 909:1 910:1 943:2 951:1 964:1 994:1 1005:1 1011:1 1028:1 1029:1 1044:1 1053:2 1054:1 1057:1 1100:3 1101:3 1105:1 1107:2 1108:1 1111:2 1118:1 1119:2 1132:1 1139:1 1140:1 1141:1 1145:2 1151:1 1156:2 1161:2 1169:1 1170:1 1178:1 1184:2 1189:1 1198:1 1211:1 1214:1 1215:1 1230:1 1236:1 1243:1 1247:1 1249:1 1253:1 1256:1 1264:1 1275:1 1293:1 1296:1 1300:1 1301:2 1303:1 1311:1 1318:1 1319:2 1332:1 1334:1 1338:1 1340:3 1346:1 1352:1 1361:1 1367:1 1370:1 1371:2 1373:1 1385:1 1390:1 1406:1 1411:4 1417:8 1420:2 1429:1 1450:2 1458:1 1461:1 1465:1 1467:3 1476:1 1480:1 1482:1 1485:2 1490:1 1498:2 1508:1 1511:1 1513:1 1517:2 1518:1 1526:1 1529:3 1540:1 1545:1 1549:1 1556:1 1560:2 1564:1 1565:1 1570:1 1580:1 1588:1 1594:1 1595:2 1598:1 1607:1 1614:1 1615:5 1621:1 1625:1 1626:1 1632:1 1636:1 1639:3 1642:1 1643:2 1645:1 1651:2 1653:6 1660:1 1676:4 1678:3 1682:1 1692:1 1699:1 1702:1 1704:1 1710:2 1713:2 1715:4 1717:1 1718:1 1721:1 1731:1 1734:2 1741:1 1742:3 1744:1 1750:1 1751:1 1757:3 1763:2 1764:1 1765:1 1778:2 1781:1 1782:1 1787:1 1821:1 1825:9 1830:1 1836:1 1840:2 1845:6 1850:1 1851:2 1854:2 1859:1 1862:2 1873:2 1877:1 1884:1 1893:1 1896:1 1902:1 1905:1 1920:2 1921:1 1923:2 1924:1 1926:2 1929:2 1950:1 1966:11 1970:2 1975:1 1979:1 1984:1 1999:1 2006:2 2007:1 2025:3 2038:5 2040:1 2052:1 2053:1 2056:1 2061:2 2078:3 2079:2 2081:1 2083:3 2084:5 2087:1 2089:2 2090:2 2095:2 2096:2 2097:1 2098:4 2099:5 2102:1 2103:1 2105:5 2107:4 2109:5 2111:7 2113:1 2115:2 2123:1 2131:1 2146:1 2149:2 2152:3 2155:3 2158:1 2162:1 2170:2 2172:1 2179:1 2190:1 2191:1 2200:1 2208:1 2210:1 2236:1 2243:1 2246:1 2247:1 2262:1 2278:3 2280:1 2287:1 2291:1 2297:1 2304:1 2306:3 2316:2 2317:1 2323:1 2325:1 2330:1 2334:1 2345:1 2347:2 2353:3 2356:2 2358:1 2361:7 2365:1 2366:1 2367:1 2379:1 2382:1 2397:1 2408:4 2410:1 2411:1 2416:2 2430:2 2436:2 2437:1 2438:2 2447:7 2452:2 2458:2 2460:9 2465:6 2467:1 2474:2 2475:1 2481:1 2483:2 2485:1 2490:3 2492:2 2503:3 2515:1 2516:3 2520:3 2524:1 2528:2 2533:1 2557:1 2561:1 2562:2 2563:2 2575:3 2576:1 2577:1 2579:1 2583:7 2590:2 2595:1 2612:1 2614:1 2619:1 2637:1 2639:3 2641:1 2656:4 2660:1 2664:1 2667:16 2678:1 2689:3 2690:1 2694:1 2695:1 2697:1 2706:2 2711:3 2712:1 2714:1 2731:21 2733:3 2743:1 2756:2 2758:3 2773:2 2783:1 2786:1 2802:1 2809:1 2814:1 2822:1 2826:1 2840:1 2841:5 2852:3 2856:1 2860:1 2866:1 2879:1 2889:1 2902:1 2904:1 2908:1 2915:2 2923:1 2924:1 2938:2 2949:1 2956:3 2968:1 2991:1 2992:2 3026:1 3027:2 3028:1 3031:1 3034:1 3038:2 3048:7 3049:1 3103:1 3137:1 3147:3 3152:1 3153:1 3162:1 3190:1 3192:1 3193:1 3194:1 3199:1 3203:1 3209:1 3210:2 3213:1 3222:1 3230:1 3232:1 3252:1 3268:1 3286:2 3291:1 3309:1 3314:1 3315:16 3318:1 3325:1 3328:2 3330:2 3331:2 3332:1 3346:1 3350:1 3352:1 3358:1 3359:1 3366:1 3394:1 3399:2 3400:1 3406:1 3407:1 3410:3 3414:2 3423:1 3446:1 3459:1 3470:1 3473:1 3480:2 3483:1 3486:2 3488:1 3494:3 3496:1 3506:1 3510:1 3513:2 3520:1 3523:1 3540:2 3542:1 3554:2 3560:3 3561:1 3575:2 3576:1 3581:4 3583:2 3587:2 3590:1 3591:2 3600:4 3602:1 3608:1 3610:2 3611:2 3629:1 3631:2 3646:1 3650:2 3652:3 3660:1 3683:2 3691:7 3692:5 3698:2 3730:1 3733:2 3737:1 3742:1 3756:1 3759:1 3760:2 3779:1 3787:2 3790:1 3791:1 3794:1 3798:1 3813:2 3822:1 3828:2 3838:1 3845:4 3846:1 3848:2 3849:1 3853:2 3856:1 3859:1 3863:2 3875:1 3882:1 3888:1 3898:1 3912:1 3917:1 3930:1 3937:1 3952:7 3957:1 3977:3 3984:1 3993:2 3999:1 4003:1 4005:3 4018:2 4032:2 4038:1 4045:1 4057:1 4062:1 4064:4 4065:2 4084:4 4097:1 4107:1 4116:1 4118:1 4125:1 4134:1 4140:2 4146:2 4160:1 4164:1 4167:1 4172:1 4173:3 4175:1 4189:1 4201:1 4217:3 4218:1 4226:1 4234:5 4246:1 4249:1 4251:1 4275:4 4284:2 4287:1 4294:1 4295:1 4302:4 4307:2 4319:5 4341:1 4344:2 4350:1 4361:1 4365:2 4369:3 4383:3 4386:1 4394:1 4403:1 4419:1 4422:2 4429:1 4431:1 4445:1 4446:1 4461:1 4467:1 4477:1 4488:15 4490:2 4499:1 4501:1 4502:1 4509:1 4516:1 4527:1 4535:1 4546:1 4554:1 4585:1 4608:3 4616:1 4625:1 4629:4 4631:7 4632:3 4634:1 4637:2 4638:2 4639:2 4642:1 4643:2 4645:6 4646:4 4650:1 4651:2 4652:8 4658:2 4659:5 4662:1 4663:1 4674:1 4677:1 4701:1 4718:1 4730:1 4737:3 4744:1 4762:1 4767:1 4776:1 4801:1 4834:1 4842:1 4866:1 4877:1 4887:2 4911:1 4916:1 4941:3 4945:2 4955:1 4982:1 4985:1 5006:6 5012:1 5018:1 5026:1 5037:1 5050:1 5055:1 5064:2 5075:1 5081:1 5088:1 5094:1 5101:1 5121:1 5130:1 5144:1 5153:1 5156:1 5173:1 5197:2 5206:1 5207:1 5212:2 5216:1 5221:1 5230:5 5231:1 5234:2 5236:1 5239:3 5240:1 5255:1 5256:1 5277:1 5281:3 5292:2 5293:1 5296:1 5298:1 5309:6 5314:1 5315:1 5330:2 5336:1 5383:1 5392:1 5398:1 5416:1 5420:1 5422:1 5440:1 5444:1 5445:1 5446:1 5453:3 5456:1 5467:1 5479:1 5497:1 5503:1 5510:2 5521:2 5528:1 5535:2 5538:2 5539:1 5541:4 5561:1 5565:6 5567:1 5568:1 5575:1 5576:2 5583:2 5585:1 5586:1 5588:1 5589:1 5591:1 5596:1 5620:1 5622:1 5623:1 5624:1 5629:1 5632:2 5634:1 5639:1 5641:1 5642:2 5643:1 5647:12 5680:3 5686:1 5703:1 5715:1 5725:4 5735:2 5751:6 5756:1 5761:1 5763:1 5801:1 5805:1 5828:1 5834:1 5836:1 5838:1 5844:2 5845:3 5847:1 5849:1 5850:1 5852:2 5853:1 5859:2 5860:4 5861:3 5872:1 5897:1 5904:1 5938:1 5954:1 5973:1 5975:1 5987:1 5991:4 5992:2 6006:1 6015:1 6047:1 6055:2 6064:2 6066:1 6076:1 6082:1 6092:2 6115:1 6129:2 6137:2 6146:1 6152:1 6162:1 6210:1 6215:1 6223:1 6233:2 6235:1 6238:1 6242:1 6246:1 6254:8 6255:1 6259:1 6262:2 6264:1 6265:3 6267:1 6273:1 6275:1 6279:1 6287:2 6297:1 6300:1 6301:1 6307:1 6310:1 6340:2 6344:1 6345:3 6357:2 6361:1 6366:2 6369:1 6385:1 6389:1 6394:1 6398:1 6401:2 6402:1 6430:1 6449:2 6453:1 6460:1 6465:1 6468:1 6469:1 6477:1 6486:1 6490:6 6498:2 6516:1 6524:1 6528:1 6534:1 6537:3 6538:2 6545:1 6549:6 6550:1 6552:1 6554:1 6557:5 6560:1 6564:1 6587:1 6588:1 6590:1 6599:1 6602:1 6604:1 6620:1 6621:1 6626:4 6631:4 6641:1 6654:1 6658:1 6672:3 6674:1 6677:1 6679:1 6686:1 6689:1 6697:1 6701:1 6703:1 6705:1 6712:1 6721:1 6728:1 6742:1 6772:1 6797:1 6800:1 6806:1 6810:2 6846:1 6857:1 6859:2 6860:6 6864:3 6868:1 6869:1 6870:1 6876:3 6881:1 6894:6 6895:2 6898:2 6912:1 6913:3 6922:1 6935:1 6942:1 6943:2 6946:2 6951:1 6959:1 6962:1 6964:1 6969:1 6980:1 6981:1 6988:1 6989:2 6997:1 7002:2 7006:1 7015:1 7016:1 7027:1 7052:3 7067:4 7068:8 7081:2 7086:1 7090:4 7092:4 7093:3 7094:1 7109:1 7116:4 7117:3 7121:1 7136:50 7137:2 7140:2 7147:1 7155:10 7156:8 7162:2 7166:1 7194:1 7201:1 7202:1 7211:1 7212:2 7222:1 7224:1 7229:3 7230:2 7235:1 7242:1 7244:2 7256:2 7264:3 7276:1 7283:1 7294:2 7300:1 7305:2 7319:1 7325:1 7326:2 7348:1 7352:1 7355:1 7356:3 7359:1 7385:1 7389:1 7390:1 7391:1 7402:2 7446:1 7461:1 7477:1 7486:1 7489:1 7491:1 7507:1 7508:1 7517:1 7520:1 7523:1 7538:1 7547:1 7556:1 7558:1 7559:3 7568:1 7575:1 7576:1 7580:2 7592:1 7593:1 7609:27 7618:1 7619:1 7637:3 7640:3 7642:1 7644:2 7648:1 7670:1 7676:1 7696:6 7698:1 7700:1 7706:1 7734:1 7744:4 7747:2 7748:2 7751:1 7756:1 7757:1 7771:1 7777:2 7778:4 7784:3 7790:1 7792:1 7796:1 7812:2 7814:1 7820:1 7825:1 7836:1 7840:1 7850:1 7857:1 7858:1 7864:1 7866:1 7876:1 7877:2 7886:2 7889:1 7890:1 7918:1 7940:1 7944:1 7945:1 7950:1 7952:1 7957:1 7976:3 7978:2 7989:7 7991:1 8005:2 8008:3 8023:2 8034:1 8036:1 8043:1 8049:2 8052:1 8054:2 8063:1 8069:1 8073:1 8085:2 8095:1 8113:1 8120:1 8124:1 8148:1 8153:1 8154:1 8163:1 8164:1 8171:1 8197:1 8199:1 8215:3 8228:1 8247:1 8250:1 8253:2 8254:1 8258:3 8282:3 8289:1 8295:2 8306:1 8311:1 8330:1 8331:1 8332:1 8340:1 8345:2 8350:7 8351:1 8356:1 8358:1 8363:1 8370:4 8378:1 8387:2 8389:1 8407:7 8409:1 8423:1 8426:1 8434:1 8437:1 8445:11 8446:6 8460:3 8461:1 8469:1 8472:1 8501:3 8507:1 8515:1 8521:1 8525:3 8527:1 8541:1 8544:1 8550:2 8552:2 8553:3 8555:2 8558:1 8567:2 8578:1 8584:1 8600:1 8612:1 8620:2 8622:1 8632:1 8635:5 8637:2 8638:1 8650:1 8655:1 8656:3 8658:2 8663:1 8664:1 8674:4 8698:1 8699:1 8706:1 8728:1 8735:1 8741:1 8756:3 8763:1 8765:3 8771:1 8782:1 8784:1 8786:1 8791:1 8793:1 8817:1 8820:1 8833:1 8838:1 8846:1 8853:8 8856:3 8885:3 8887:1 8894:1 8895:1 8904:3 8908:1 8926:1 8942:1 8943:1 8947:1 8953:1 8954:3 8956:3 8958:2 8964:1 8981:1 8987:2 8990:2 9020:2 9022:1 9031:1 9041:1 9067:2 9073:1 9077:1 9087:1 9090:1 9101:2 9107:1 9109:1 9113:2 9124:1 9131:1 9132:1 9144:1 9155:1 9172:1 9173:1 9178:2 9179:1 9191:1 9196:1 9216:1 9218:1 9221:1 9222:1 9224:1 9230:5 9243:4 9249:4 9251:2 9263:1 9281:2 9291:1 9300:3 9301:1 9314:1 9328:1 9332:2 9337:2 9347:1 9348:1 9358:1 9361:4 9364:1 9388:2 9391:1 9396:12 9398:2 9402:2 9406:1 9424:2 9425:1 9434:1 9439:1 9450:1 9469:1 9488:1 9491:2 9493:1 9509:1 9524:1 9534:1 9536:1 9537:1 9540:1 9542:4 9550:1 9552:1 9555:2 9588:1 9598:1 9601:4 9608:1 9610:1 9612:1 9617:1 9620:3 9624:1 9626:1 9632:1 9635:2 9642:4 9660:1 9681:1 9691:1 9695:1 9696:1 9703:1 9708:1 9710:2 9713:2 9718:1 9725:2 9728:1 9732:1 9739:1 9748:1 9750:3 9757:1 9764:2 9766:1 9769:1 9774:1 9775:7 9778:4 9791:2 9795:3 9799:1 9802:1 9807:1 9812:2 9820:1 9834:2 9848:7 9849:2 9866:2 9868:1 9869:1 9878:4 9899:1 9916:1 9920:1 9926:3 9936:2 9943:1 9946:7 9964:2 9972:1 9980:1 9982:1 9993:3 10025:1 10030:1 10036:1 10085:1 10096:1 10102:1 10118:1 10120:1 10136:1 10137:2 10141:2 10144:1 10145:2 10149:1 10152:1 10156:1 10157:5 10158:5 10159:1 10167:1 10168:1 10172:1 10174:2 10177:3 10181:1 10183:4 10188:1 10189:1 10192:1 10195:1 10198:1 10200:1 10201:3 10203:3 10208:1 10213:1 10226:2 10234:1 10255:1 10257:1 10259:4 10262:1 10294:1 10297:1 10312:1 10321:2 10323:1 10326:2 10339:1 10341:1 10385:1 10392:1 10404:1 10405:1 10406:1 10412:1 10423:1 10425:1 10426:3 10445:1 10463:1 10474:1 10477:1 10478:1 10484:2 10487:1 10500:3 10503:2 10507:1 10518:2 10523:2 10525:1 10526:1 10528:2 10531:1 10537:3 10539:1 10540:1 10541:2 10550:1 10556:3 10559:2 10570:1 10572:1 10587:19 10588:1 10611:1 10621:1 10625:4 10632:1 10635:2 10636:2 10648:2 10655:1 10673:1 10675:2 10682:3 10683:1 10690:1 10693:2 10695:2 10696:1 10706:1 10724:1 10738:1 10759:1 10766:1 10783:1 10796:1 10798:1 10803:3 10804:1 10805:1 10807:1 10808:1 10814:1 10821:1 10822:4 10826:1 10827:2 10828:1 10830:2 10840:1 10841:1 10851:1 10860:1 10863:1 10864:1 10866:1 10870:2 10874:5 10875:1 10880:4 10884:1 10898:1 10921:1 10934:2 10938:1 10947:1 10953:1 10972:1 10975:1 10983:1 10984:1 10998:1 11009:1 11014:1 11016:1 11017:1 11023:6 11032:1 11038:1 11043:2 11046:1 11058:1 11063:1 11070:1 11071:1 11076:2 11081:2 11100:2 11103:1 11117:2 11127:1 11129:2 11150:1 11170:2 11175:1 11189:1 11191:2 11195:1 11201:2 11205:1 11219:1 11236:1 11244:1 11246:1 11247:1 11251:5 11252:1 11253:4 11255:1 11256:2 11267:1 11273:2 11279:1 11283:1 11285:1 11290:1 11335:1 11338:2 11339:1 11341:1 11357:1 11368:1 11376:1 11388:1 11393:1 11407:1 11410:1 11413:1 11423:1 11439:1 11476:3 11494:2 11507:1 11518:1 11520:1 11527:1 11539:1 11545:1 11550:1 11552:2 11553:1 11568:1 11570:3 11579:1 11593:1 11599:1 11606:1 11647:1 11658:1 11663:1 11665:1 11666:3 11674:1 11687:1 11705:15 11710:5 11719:1 11723:2 11728:1 11739:1 11746:2 11747:3 11753:4 11767:1 11770:1 11775:1 11779:2 11780:1 11786:1 11792:2 11794:1 11798:1 11800:1 11829:1 11845:1 11850:1 11851:1 11858:2 11863:1 11879:1 11886:1 11887:1 11889:1 11890:1 11903:1 11923:1 11924:1 11930:2 11932:1 11942:1 11944:1 11946:1 11963:1 11977:1 11982:5 11994:2 11996:1 12041:1 12042:1 12060:1 12071:2 12075:1 12078:1 12082:1 12083:1 12085:4 12090:4 12099:1 12101:2 12105:1 12106:2 12115:3 12122:1 12138:7 12157:1 12161:2 12186:1 12193:4 12194:1 12205:1 12217:1 12221:2 12223:1 12224:1 12225:2 12233:9 12236:1 12242:2 12247:1 12260:1 12264:1 12272:1 12273:1 12279:2 12283:1 12289:1 12290:1 12301:17 12306:1 12308:1 12311:1 12327:1 12342:2 12343:2 12346:1 12350:3 12366:1 12371:2 12384:2 12394:1 12395:1 12397:1 12421:3 12441:1 12446:6 12449:1 12465:1 12471:2 12475:1 12478:1 12499:4 12515:1 12521:1 12525:1 12528:1 12533:3 12535:1 12537:2 12544:1 12549:1 12551:1 12558:6 12559:1 12561:1 12562:2 12563:1 12564:2 12565:1 12569:8 12570:3 12584:1 12587:1 12590:1 12591:1 12593:1 12594:1 12595:1 12620:1 12636:1 12643:1 12675:2 12680:2 12685:1 12686:1 12695:1 12706:1 12711:1 12719:7 12751:1 12756:1 12758:1 12760:1 12767:1 12770:1 12773:2 12774:1 12778:1 12790:2 12794:1 12814:2 12820:1 12821:1 12829:1 12830:1 12833:1 12836:8 12857:3 12861:1 12867:1 12890:1 12902:1 12903:2 12909:1 12913:1 12923:1 12929:1 12931:1 12934:1 12944:1 12957:2 12977:1 12983:1 12984:1 12990:1 12993:1 12997:1 13004:1 13010:1 13017:1 13052:1 13063:2 13075:1 13077:5 13091:1 13104:1 13123:1 13143:1 13175:1 13199:1 13200:1 13204:3 13205:4 13212:1 13222:2 13223:2 13225:1 13229:2 13230:1 13248:1 13250:1 13251:1 13256:1 13265:2 13276:1 13285:1 13294:2 13305:1 13312:1 13327:2 13334:1 13337:1 13349:1 13353:1 13355:1 13361:2 13367:1 13375:3 13380:2 13428:1 13430:2 13433:1 13444:2 13457:2 13476:2 13477:1 13484:1 13491:2 13506:1 13513:1 13517:1 13529:1 13531:1 13540:3 13552:1 13555:1 13558:2 13563:1 13587:1 13589:1 13595:1 13637:1 13643:2 13689:2 13693:2 13696:1 13702:1 13712:1 13722:2 13734:1 13762:2 13774:1 13776:3 13781:1 13793:1 13794:1 13795:2 13799:1 13801:1 13804:1 13806:1 13829:1 13887:1 13891:1 13894:1 13900:2 13922:1 13928:1 13944:1 13974:1 13995:2 14004:1 14010:1 14027:1 14032:1 14034:1 14035:2 14047:1 14064:2 14071:3 14075:1 14096:1 14098:1 14099:1 14107:1 14113:2 14130:3 14134:1 14156:1 14158:1 14168:2 14184:1 14189:2 14211:1 14213:1 14216:1 14217:1 14225:1 14229:6 14244:3 14252:1 14263:4 14266:1 14279:3 14299:1 14302:1 14311:1 14321:1 14328:1 14332:1 14335:2 14377:1 14391:2 14392:1 14403:2 14409:1 14413:1 14417:4 14420:1 14424:1 14426:1 14432:1 14443:2 14445:4 14446:1 14450:1 14453:1 14462:1 14465:1 14475:1 14491:2 14497:2 14523:1 14532:2 14535:1 14539:1 14550:3 14559:2 14567:1 14570:1 14572:3 14587:1 14600:3 14615:1 14648:1 14667:1 14673:1 14676:1 14682:1 14683:1 14686:1 14687:16 14690:1 14704:1 14706:1 14709:3 14712:1 14738:3 14772:2 14783:1 14789:2 14796:4 14817:2 14821:1 14832:2 14845:1 14876:1 14883:1 14890:1 14891:1 14892:1 14902:2 14903:1 14912:1 14928:1 14929:1 14931:3 14934:1 14946:1 14950:1 14954:6 14955:2 14956:2 14957:6 14958:2 14959:1 14963:2 14965:1 14967:2 14968:5 14972:1 14973:1 14975:1 14978:1 14979:2 14987:1 15004:1 15013:2 15021:1 15024:1 15037:1 15060:1 15069:1 15083:1 15087:2 15088:1 15095:1 15109:2 15113:1 15114:1 15117:1 15119:2 15120:2 15128:1 15140:2 15143:1 15162:1 15169:1 15170:1 15178:1 15192:1 15198:1 15217:1 15240:1 15250:1 15252:1 15254:1 15262:3 15272:1 15274:2 15281:2 15282:1 15290:1 15294:5 15299:1 15302:2 15308:1 15316:1 15321:2 15324:1 15325:4 15329:2 15334:1 15336:1 15342:3 15344:2 15353:4 15359:1 15367:1 15372:1 15402:1 15407:14 15408:1 15422:1 15426:1 15431:2 15432:4 15434:1 15437:1 15472:1 15476:1 15490:1 15491:1 15497:2 15499:1 15507:1 15512:4 15524:1 15525:1 15534:1 15538:3 15541:2 15558:1 15575:2 15580:1 15596:5 15603:1 15617:2 15619:1 15622:1 15646:1 15661:2 15667:1 15688:1 15703:2 15705:3 15719:1 15720:1 15722:1 15731:1 15748:1 15763:1 15765:1 15768:1 15787:1 15790:1 15799:1 15808:2 15814:1 15821:1 15828:1 15837:1 15845:2 15854:1 15858:2 15862:1 15864:2 15870:1 15873:1 15886:1 15889:1 15890:1 15909:1 15930:1 15938:1 15959:1 15966:1 15979:1 15982:1 15988:1 16000:1 16005:1 16007:1 16021:3 16027:1 16036:1 16037:3 16041:1 16046:1 16047:1 16054:3 16059:2 16060:2 16064:2 16068:1 16070:1 16071:10 16109:1 16111:2 16112:1 16116:2 16117:1 16121:1 16128:1 16133:1 16136:2 16139:1 16140:1 16156:1 16176:1 16189:1 16203:1 16204:1 16222:4 16226:1 16236:1 16244:2 16256:1 16257:1 16261:1 16266:1 16276:1 16279:1 16309:1 16311:1 16312:1 16313:1 16315:1 16334:1 16339:1 16343:1 16344:1 16347:2 16357:1 16379:1 16401:1 16405:1 16417:1 16425:1 16426:3 16433:1 16437:1 16439:1 16450:1 16452:1 16466:1 16487:1 16514:2 16540:1 16542:1 16551:2 16570:2 16651:2 16657:2 16658:1 16664:1 16674:1 16680:1 16687:1 16703:1 16709:1 16719:1 16721:1 16727:1 16735:1 16748:1 16758:1 16770:1 16771:1 16787:1 16791:3 16795:1 16805:1 16838:1 16848:15 16860:1 16880:1 16906:1 16932:1 16954:14 16963:4 16964:2 16975:1 16977:6 16990:1 16997:1 17001:3 17012:1 17025:2 17048:6 17058:2 17068:2 17084:2 17085:1 17087:1 17107:3 17112:2 17125:2 17126:3 17137:2579 17147:1 17151:1 17160:1 17161:1 17162:1 17163:1 17172:1 17188:1 17197:1 17200:1 17201:1 17202:1 17210:1 17220:2 17235:1 17251:1 17258:2 17262:1 17263:1 17282:1 17296:1 17307:1 17311:1 17314:1 17317:2 17321:6 17322:4 17332:1 17339:1 17341:1 17351:1 17355:1 17359:1 17375:1 17386:1 17399:1 17404:1 17406:1 17407:1 17448:1 17450:3 17453:2 17459:1 17466:1 17494:1 17500:1 17502:1 17503:3 17507:2 17521:1 17522:1 17534:2 17549:1 17551:2 17552:1 17564:2 17566:1 17573:1 17581:1 17588:1 17591:1 17603:2 17608:1 17616:1 17627:1 17636:1 17639:1 17642:2 17643:2 17644:1 17646:2 17655:1 17661:1 17670:2 17672:1 17691:2 17692:2 17708:3 17712:1 17716:1 17728:3 17752:3 17753:1 17758:1 17761:1 17770:1 17771:2 17773:1 17777:9 17787:1 17801:1 17803:1 17818:1 17823:2 17824:1 17825:1 17833:2 17846:5 17847:1 17860:1 17862:2 17877:1 17891:1 17900:4 17905:1 17907:2 17912:1 17914:2 17929:4 17930:1 17935:1 17938:1 17942:2 17956:1 17960:1 17961:4 17968:2 17970:1 17975:3 18006:4 18009:1 18012:1 18017:1 18031:1 18034:1 18038:2 18039:2 18046:1 18047:2 18050:1 18058:1 18068:1 18075:1 18077:1 18078:1 18079:1 18080:1 18083:1 18088:1 18117:1 18130:3 18144:1 18145:2 18146:1 18147:1 18152:1 18153:3 18158:1 18178:1 18182:1 18183:1 18185:1 18187:1 18196:1 18203:2 18208:1 18214:2 18227:1 18229:2 18237:2 18238:1 18242:1 18249:1 18252:1 18263:1 18268:1 18269:1 18276:1 18279:2 18282:4 18287:1 18288:4 18289:1 18335:1 18340:1 18354:3 18360:1 18363:1 18368:2 18369:2 18371:2 18388:1 18389:2 18392:3 18399:3 18404:1 18405:2 18407:2 18409:1 18421:5 18430:2 18449:1 18451:1 18458:1 18460:1 18462:1 18465:2 18466:4 18494:1 18495:2 18504:2 18505:1 18507:1 18510:1 18526:1 18531:3 18548:1 18552:2 18553:3 18569:1 18570:1 18577:3 18578:21 18579:2 18586:1 18592:5 18596:1 18612:2 18613:1 18620:1 18627:1 18643:3 18652:1 18653:1 18663:1 18672:1 18678:1 18683:1 18695:1 18697:1 18700:1 18701:1 18705:1 18726:1 18738:1 18746:1 18757:1 18768:4 18787:1 18789:2 18802:2 18807:1 18817:2 18828:1 18830:1 18840:2 18850:1 18865:8 18871:2 18878:1 18886:1 18916:1 18917:1 18920:1 18927:1 18933:1 18937:1 18968:1 18969:1 18973:4 18987:3 18996:1 18999:1 19002:1 19006:1 19010:1 19011:1 19020:1 19023:2 19024:1 19051:2 19057:3 19063:2 19066:3 19073:2 19078:1 19080:1 19081:1 19089:2 19093:1 19116:5 19126:2 19127:1 19135:1 19142:1 19149:2 19153:1 19162:1 19176:1 19178:2 19183:1 19190:2 19191:1 19198:5 19202:1 19206:2 19207:1 19209:1 19213:1 19215:2 19227:3 19258:2 19264:1 19271:1 19277:2 19296:1 19297:1 19298:1 19302:2 19304:1 19312:2 19319:2 19321:2 19327:2 19331:2 19332:1 19337:2 19353:1 19358:2 19381:2 19392:1 19393:4 19401:1 19402:1 19403:4 19418:1 19420:1 19427:2 19431:1 19435:1 19440:1 19441:1 19446:2 19447:1 19450:1 19452:1 19460:1 19463:1 19476:1 19480:1 19481:1 19486:1 19510:1 19517:1 19519:1 19524:2 19525:2 19535:1 19538:1 19550:1 19618:1 19622:1 19640:2 19652:2 19656:1 19664:2 19665:2 19667:1 19669:1 19673:1 19674:1 19679:1 19687:1 19694:2 19699:3 19705:1 19714:1 19723:1 19740:1 19746:1 19750:1 19758:1 19768:1 19769:1 19787:2 19789:1 19790:1 19791:1 19794:1 19796:2 19799:1 19800:1 19811:1 19814:1 19818:2 19825:2 19830:2 19833:1 19834:1 19838:2 19839:1 19841:1 19842:1 19851:1 19853:2 19874:14 19886:2 19887:2 19892:2 19902:1 19916:1 19924:1 19929:1 19931:1 19941:1 19943:2 19948:1 19949:2 19952:1 19955:1 19984:1 20000:2 20010:1 20019:2 20024:1 20026:1 20030:1 20034:6 20036:3 20037:1 20046:2 20054:1 20055:1 20056:1 20059:1 20061:1 20081:1 20082:1 20083:1 20085:3 20087:4 20088:2 20089:1 20111:1 20114:1 20151:1 20171:4 20174:1 20176:5 20178:3 20179:3 20181:1 20182:1 20186:1 20189:2 20193:1 20194:2 20202:1 20204:1 20205:5 20212:1 20213:1 20218:1 20219:1 20223:1 20236:1 20244:2 20252:2 20255:2 20269:1 20297:1 20315:2 20317:2 20322:1 20324:1 20326:1 20329:1 20338:1 20344:1 20351:1 20364:1 20365:3 20368:1 20374:1 20375:1 20377:1 20381:2 20383:1 20392:1 20395:1 20396:1 20405:1 20409:1 20421:2 20423:1 20425:5 20431:1 20440:1 20441:4 20446:1 20447:3 20455:1 20463:1 20470:1 20476:1 20484:2 20487:1 20490:1 20491:1 20492:4 20498:2 20503:1 20512:2 20513:9 20515:1 20519:2 20525:1 20526:1 20529:1 20531:1 20547:1 20549:1 20553:1 20575:9 20576:1 20589:1 20609:1 20624:1 20631:6 20632:1 20637:1 20640:1 20649:1 20650:1 20664:1 20665:3 20678:1 20687:1 20690:4 20701:1 20715:1 20717:1 20722:1 20723:1 20726:6 20728:2 20735:3 20739:1 20740:4 20749:1 20753:1 20757:1 20759:1 20773:1 20775:4 20787:1 20794:1 20795:3 20797:1 20800:3 20809:1 20815:1 20817:1 20827:1 20834:1 20838:1 20846:1 20851:1 20863:1 20866:1 20890:1 20895:1 20902:1 20903:1 20904:1 20906:1 20914:1 20921:2 20935:10 20936:3 20941:1 20952:2 20957:3 20962:4 20969:1 20970:3 20982:2 20983:1 20986:1 20996:1 21021:1 21032:1 21033:1 21037:2 21040:2 21055:1 21056:1 21059:1 21080:1 21083:1 21084:1 21085:1 21086:1 21101:1 21104:1 21113:1 21121:1 21128:2 21131:1 21138:2 21139:1 21142:1 21170:1 21175:3 21204:3 21215:1 21249:2 21253:1 21269:1 21294:3 21297:3 21304:7 21314:2 21322:1 21328:1 21330:3 21341:2 21344:2 21345:3 21358:1 21368:4 21406:1 21410:1 21413:1 21434:1 21436:1 21446:1 21458:1 21463:1 21472:4 21484:1 21502:1 21505:1 21510:3 21527:2 21534:1 21537:2 21548:1 21549:1 21559:1 21566:1 21575:1 21576:2 21579:4 21584:3 21590:1 21592:1 21603:1 21605:1 21609:1 21624:3 21625:2 21626:1 21628:2 21641:1 21644:1 21650:1 21695:1 21696:4 21697:1 21698:1 21701:1 21706:1 21712:1 21714:1 21715:4 21716:1 21718:1 21719:1 21722:1 21725:1 21737:1 21749:1 21766:3 21769:1 21779:1 21789:2 21832:2 21840:1 21845:2 21853:1 21878:2 21884:1 21886:1 21902:1 21914:1 21929:1 21941:1 21943:2 21951:2 21953:1 21964:1 21979:1 21994:1 21996:1 21998:1 22008:2 22017:1 22029:2 22047:1 22057:1 22066:1 22084:1 22090:1 22101:2 22103:1 22113:1 22136:2 22140:1 22165:2 22176:4 22186:1 22212:1 22213:8 22220:1 22228:1 22233:1 22236:1 22241:3 22245:1 22259:1 22261:1 22267:1 22270:5 22279:1 22280:1 22287:1 22293:1 22317:3 22319:1 22340:4 22341:2 22345:1 22346:2 22381:1 22425:1 22426:1 22427:1 22451:1 22453:1 22454:1 22455:1 22461:1 22464:2 22467:3 22469:4 22471:1 22473:2 22475:1 22476:1 22477:1 22479:2 22482:1 22483:1 22484:1 22493:1 22494:1 22505:1 22518:6 22535:1 22536:2 22539:1 22544:1 22551:1 22552:1 22555:1 22557:1 22582:12 22585:6 22587:1 22609:1 22611:2 22612:1 22618:1 22619:1 22630:1 22635:1 22636:1 22639:2 22643:3 22651:3 22667:1 22669:1 22670:1 22681:1 22690:1 22728:1 22735:1 22756:1 22767:1 22768:1 22777:2 22781:1 22787:1 22794:1 22796:1 22800:2 22809:2 22813:1 22817:1 22822:2 22823:2 22826:1 22843:1 22845:1 22850:1 22857:1 22858:2 22860:1 22863:1 22866:1 22872:1 22874:1 22890:1 22896:1 22901:5 22913:2 22917:1 22918:1 22924:1 22930:1 22932:1 22941:2 22946:2 22950:1 22952:3 22953:1 22957:1 22968:1 22974:1 22975:1 23002:18 23003:2 23023:1 23026:1 23032:1 23033:1 23036:1 23045:1 23055:1 23066:1 23067:1 23074:2 23078:1 23085:1 23098:2 23101:1 23105:2 23106:1 23110:1 23111:1 23131:1 23133:1 23139:1 23143:1 23145:1 23160:1 23166:1 23173:1 23179:1 23197:1 23198:1 23220:12 23221:1 23235:1 23240:2 23241:1 23247:1 23253:1 23264:2 23270:1 23276:1 23280:1 23285:7 23286:1 23291:1 23304:1 23308:1 23311:2 23314:1 23340:1 23353:2 23359:1 23365:1 23371:1 23386:1 23398:1 23407:1 23422:2 23426:2 23428:1 23437:2 23448:1 23452:1 23459:1 23473:1 23480:1 23491:1 23527:1 23528:2 23534:1 23538:1 23540:1 23550:1 23560:1 23564:2 23569:5 23571:1 23577:1 23579:2 23594:1 23617:7 23629:1 23632:1 23636:1 23648:1 23650:7 23663:2 23677:1 23682:1 23685:1 23688:3 23689:1 23698:1 23701:1 23705:1 23714:1 23715:1 23746:1 23751:1 23759:1 23769:1 23777:2 23795:1 23803:1 23821:1 23826:1 23833:3 23838:1 23853:1 23860:1 23889:1 23903:1 23904:1 23906:1 23919:2 23922:1 23928:1 23929:3 23944:1 23945:1 23952:1 23953:1 23958:2 23971:1 23981:1 23988:3 23991:1 24023:5 24030:1 24035:1 24044:1 24058:1 24065:1 24074:2 24075:1 24084:1 24088:1 24094:15 24095:2 24105:2 24115:1 24124:1 24126:1 24147:2 24151:2 24163:1 24165:1 24170:2 24183:1 24186:2 24188:2 24199:1 24207:1 24211:4 24215:3 24221:3 24224:3 24226:4 24228:1 24230:1 24241:1 24245:1 24246:1 24253:1 24293:1 24300:1 24301:1 24302:1 24314:2 24324:1 24337:1 24340:2 24350:1 24362:2 24370:2 24380:1 24384:2 24386:1 24387:1 24388:2 24399:2 24415:6 24417:1 24418:1 24425:1 24426:1 24427:1 24429:1 24434:1 24439:1 24442:1 24446:1 24447:1 24467:1 24470:2 24471:2 24483:1 24531:1 24537:2 24553:1 24561:1 24562:1 24569:3 24596:1 24621:1 24634:1 24635:1 24641:6 24652:1 24653:1 24677:1 24684:1 24689:1 24690:1 24703:1 24707:1 24711:3 24716:1 24721:1 24744:1 24746:2 24747:2 24758:3 24769:1 24773:1 24785:1 24788:1 24793:1 24797:2 24823:1 24837:1 24838:2 24839:1 24849:1 24851:1 24862:1 24886:1 24895:2 24912:1 24915:4 24918:1 24921:1 24922:2 24931:1 24936:1 24938:2 24950:1 24956:1 24961:3 24972:2 24974:1 24977:1 24980:1 24985:2 24986:2 24991:1 25000:1 25013:1 25016:1 25021:1 25026:1 25028:1 25032:2 25037:1 25063:1 25077:6 25081:3 25084:2 25098:1 25099:1 25108:1 25120:1 25126:1 25132:2 25137:1 25143:1 25148:2 25151:1 25155:2 25163:1 25164:1 25172:2 25174:1 25181:1 25187:1 25190:1 25192:1 25193:1 25200:1 25201:1 25204:3 25205:1 25206:1 25207:1 25210:3 25213:1 25217:2 25219:1 25222:1 25229:2 25238:2 25243:1 25247:1 25279:1 25288:1 25297:5 25311:1 25318:2 25335:2 25358:1 25361:1 25401:1 25404:2 25425:1 25429:1 25439:1 25444:1 25445:2 25457:1 25459:1 25465:2 25480:2 25482:1 25486:1 25487:1 25490:1 25492:3 25499:5 25513:1 25521:1 25532:1 25542:1 25553:1 25563:7 25598:1 25600:1 25613:1 25631:1 25636:1 25648:1 25652:1 25655:1 25656:1 25660:2 25674:2 25680:1 25691:1 25699:1 25715:1 25734:1 25739:1 25742:1 25745:1 25755:2 25759:2 25760:3 25761:1 25766:1 25768:1 25773:2 25775:1 25778:2 25790:1 25792:2 25799:1 25801:5 25811:1 25813:1 25815:1 25817:1 25823:1 25828:3 25832:2 25836:2 25840:1 25845:1 25847:5 25851:1 25860:2 25867:3 25870:1 25883:3 25884:1 25886:3 25889:1 25893:1 25906:3 25922:1 25924:1 25941:1 25949:1 25963:1 25969:3 25971:4 25977:7 26008:5 26021:1 26023:1 26034:1 26045:1 26051:1 26052:1 26054:1 26064:1 26072:1 26081:1 26083:6 26088:1 26092:2 26114:1 26120:1 26126:1 26131:1 26141:1 26146:1 26158:1 26162:1 26164:1 26172:1 26173:2 26179:2 26182:1 26196:3 26231:1 26233:1 26234:1 26245:7 26246:2 26249:2 26252:1 26257:1 26259:1 26263:2 26276:1 26277:1 26308:6 26325:1 26351:1 26365:1 26401:1 26424:1 26426:1 26441:1 26468:1 26470:1 26488:2 26495:1 26497:1 26498:2 26499:3 26502:2 26504:3 26511:1 26515:1 26516:1 26525:1 26539:1 26552:1 26561:1 26571:1 26576:1 26592:1 26611:3 26614:1 26620:2 26648:2 26651:2 26653:2 26668:1 26670:1 26683:1 26686:1 26699:1 26704:1 26705:1 26715:1 26721:4 26722:1 26727:1 26728:2 26736:1 26758:1 26760:1 26763:4 26767:2 26780:1 26784:1 26806:1 26813:1 26819:1 26825:1 26836:1 26844:1 26862:1 26866:1 26868:3 26876:1 26878:1 26892:1 26901:3 26903:1 26919:1 26940:2 26943:2 26961:1 26965:1 26966:3 26973:3 26974:4 26975:1 26978:1 27006:1 27020:1 27022:5 27025:1
1 12:2 34:1 36:1 43:1 45:1 50:1 55:1 60:1 72:1 90:1 92:1 108:1 124:1 137:1 138:3 147:1 152:2 153:1 159:1 165:2 168:3 175:1 178:6 181:1 189:1 194:1 204:1 221:1 231:1 236:7 248:1 255:3 262:1 277:2 301:1 312:4 314:3 318:3 320:1 326:3 333:1 337:2 356:3 363:1 375:2 392:6 394:5 403:1 414:2 446:1 451:1 458:1 478:1 480:2 509:1 518:1 522:2 538:1 546:1 548:3 554:1 565:1 571:1 573:4 575:2 580:1 588:3 595:1 653:1 656:1 665:1 698:1 707:1 708:2 728:1 730:2 731:1 738:2 750:1 776:6 779:1 782:1 786:2 787:4 792:1 798:1 814:16 815:4 823:5 841:4 847:1 848:1 853:1 854:4 856:2 857:9 859:1 861:3 863:4 877:2 895:5 898:4 904:1 909:1 910:1 943:2 951:1 964:1 994:1 1005:1 1011:1 1028:1 1029:1 1044:1 1053:2 1054:1 1057:1 1100:3 1101:3 1105:1 1107:2 1108:1 1111:2 1118:1 1119:2 1132:1 1139:1 1140:1 1141:1 1145:2 1151:1 1156:2 1161:2 1169:1 1170:1 1178:1 1184:2 1189:1 1198:1 1211:1 1214:1 1215:1 1230:1 1236:1 1243:1 1247:1 1249:1 1253:1 1256:1 1264:1 1275:1 1293:1 1296:1 1300:1 1301:2 1303:1 1311:1 1318:1 1319:2 1329:1 1332:1 1334:1 1338:1 1340:3 1346:1 1352:1 1361:1 1367:1 1370:1 1371:2 1373:1 1385:1 1390:1 1406:1 1411:4 1417:8 1420:2 1429:1 1444:1 1450:2 1458:1 1461:1 1465:1 1467:3 1476:1 1480:1 1482:1 1485:2 1490:1 1498:2 1508:1 1511:1 1513:1 1517:2 1518:1 1526:1 1529:3 1540:1 1545:1 1549:1 1556:1 1560:2 1564:1 1565:1 1570:1 1580:1 1588:1 1594:1 1595:2 1598:1 1607:1 1614:1 1615:5 1621:1 1625:1 1626:1 1632:1 1636:1 1639:3 1642:1 1643:2 1645:1 1651:2 1653:6 1660:1 1676:5 1678:3 1682:1 1692:1 1699:1 1702:1 1704:1 1710:2 1713:2 1715:4 1717:1 1718:1 1721:1 1731:1 1734:2 1741:1 1742:3 1744:1 1750:1 1751:1 1757:3 1763:2 1764:1 1765:1 1778:2 1781:1 1782:1 1787:1 1800:1 1821:2 1825:9 1830:1 1836:1 1840:2 1845:7 1850:1 1851:2 1854:2 1859:1 1862:2 1873:2 1877:1 1884:1 1893:1 1896:1 1902:1 1905:1 1920:2 1921:1 1923:2 1924:1 1926:2 1929:2 1950:1 1966:11 1970:2 1975:1 1979:1 1984:1 1999:1 2006:2 2007:1 2025:3 2038:5 2039:1 2040:1 2052:1 2053:1 2056:1 2061:2 2078:3 2079:2 2081:1 2083:3 2084:5 2087:1 2089:2 2090:2 2095:2 2096:2 2097:1 2098:4 2099:5 2102:1 2103:1 2105:5 2107:4 2109:5 2111:7 2113:1 2115:2 2123:1 2131:1 2146:1 2149:2 2152:3 2155:3 2158:1 2162:1 2170:2 2172:1 2179:1 2190:1 2191:1 2200:1 2208:1 2210:1 2236:1 2243:1 2246:1 2247:1 2262:1 2278:3 2280:1 2287:1 2291:1 2297:1 2304:1 2306:3 2316:2 2317:1 2323:1 2325:1 2330:1 2334:1 2345:1 2347:2 2353:3 2356:2 2358:1 2361:7 2365:1 2366:1 2367:1 2379:1 2382:1 2397:1 2408:4 2410:1 2411:1 2416:2 2430:2 2436:2 2437:1 2438:2 2447:7 2452:2 2458:2 2460:9 2465:6 2467:1 2474:2 2475:1 2481:1 2483:2 2485:1 2490:3 2492:2 2503:3 2515:1 2516:3 2520:3 2524:1 2528:2 2533:1 2557:1 2561:1 2562:2 2563:2 2575:4 2576:1 2577:1 2579:1 2583:7 2590:2 2595:1 2612:1 2614:1 2619:1 2637:1 2639:3 2641:1 2656:4 2660:1 2664:1 2667:16 2678:1 2689:3 2690:1 2694:1 2695:1 2697:1 2706:2 2711:3 2712:1 2714:1 2731:21 2733:3 2743:1 2756:2 2758:3 2773:2 2783:1 2786:1 2802:1 2809:1 2814:1 2822:1 2826:1 2840:1 2841:5 2852:3 2856:1 2860:1 2866:1 2879:1 2889:1 2899:1 2902:1 2904:1 2908:1 2915:2 2923:1 2924:1 2938:2 2949:1 2956:3 2968:1 2991:1 2992:2 3026:1 3027:2 3028:1 3031:1 3034:1 3038:2 3048:8 3049:1 3103:1 3127:1 3137:1 3147:3 3152:1 3153:1 3162:1 3190:1 3192:1 3193:1 3194:1 3199:1 3203:1 3209:1 3210:2 3213:1 3222:1 3230:1 3232:1 3252:1 3268:1 3286:2 3291:1 3309:1 3314:1 3315:17 3318:1 3325:1 3328:2 3330:2 3331:2 3332:1 3346:1 3350:1 3352:1 3358:1 3359:1 3366:1 3394:1 3399:2 3400:1 3406:1 3407:1 3410:3 3414:2 3423:1 3446:1 3459:1 3470:1 3473:1 3480:2 3483:1 3486:2 3488:1 3494:3 3496:1 3506:1 3510:1 3513:2 3520:1 3523:1 3540:2 3542:1 3554:2 3560:3 3561:1 3575:2 3576:1 3581:5 3583:2 3587:2 3590:1 3591:2 3600:4 3602:1 3608:1 3610:2 3611:2 3629:1 3631:2 3646:1 3650:2 3652:3 3660:1 3683:2 3691:7 3692:5 3698:2 3730:1 3733:2 3737:1 3742:1 3756:1 3759:1 3760:2 3779:1 3787:2 3790:1 3791:1 3794:1 3798:1 3799:1 3813:2 3822:1 3828:2 3838:1 3845:4 3846:1 3848:3 3849:1 3853:2 3856:1 3859:1 3863:2 3875:1 3882:1 3888:1 3898:1 3912:1 3917:1 3930:1 3937:1 3952:7 3957:1 3977:3 3984:1 3993:2 3999:1 4003:1 4005:3 4018:2 4032:2 4038:1 4045:1 4057:1 4060:1 4062:1 4064:4 4065:2 4084:4 4097:1 4107:1 4116:1 4118:1 4125:1 4134:1 4140:2 4146:2 4160:1 4164:1 4167:1 4172:1 4173:3 4175:1 4189:1 4201:1 4217:3 4218:1 4226:1 4234:5 4246:1 4249:1 4251:1 4275:4 4284:3 4287:1 4294:1 4295:1 4302:4 4307:2 4319:5 4341:1 4344:2 4350:1 4361:1 4365:2 4369:3 4383:3 4386:1 4394:1 4403:1 4419:1 4422:2 4429:1 4431:1 4445:1 4446:1 4461:1 4467:1 4477:1 4488:16 4490:2 4496:1 4499:1 4501:1 4502:1 4509:1 4516:1 4527:1 4535:1 4546:1 4554:1 4585:1 4608:3 4616:1 4625:1 4629:4 4631:7 4632:3 4634:1 4637:2 4638:2 4639:2 4642:1 4643:2 4645:6 4646:4 4650:1 4651:2 4652:8 4658:2 4659:5 4662:1 4663:1 4674:1 4677:1 4701:1 4718:1 4730:1 4737:3 4744:1 4762:1 4767:1 4776:1 4801:1 4834:1 4842:1 4866:1 4877:1 4887:2 4911:1 4916:1 4941:3 4945:2 4955:1 4982:1 4985:1 5006:6 5012:1 5018:1 5026:1 5037:1 5050:1 5055:1 5064:2 5075:1 5081:1 5088:1 5094:1 5101:1 5121:1 5130:1 5144:1 5153:1 5156:1 5173:1 5197:2 5206:1 5207:1 5212:2 5216:1 5221:1 5230:5 5231:1 5234:2 5236:1 5239:4 5240:1 5255:1 5256:1 5263:1 5277:1 5281:3 5292:2 5293:1 5296:1 5298:1 5309:6 5314:1 5315:1 5330:2 5336:1 5383:1 5392:1 5398:1 5416:1 5420:1 5422:1 5428:1 5440:1 5444:1 5445:1 5446:1 5453:3 5456:1 5467:1 5479:1 5497:1 5503:1 5510:2 5521:2 5528:1 5535:2 5538:2 5539:1 5541:4 5561:1 5565:6 5567:1 5568:1 5575:1 5576:2 5583:2 5585:1 5586:1 5588:1 5589:1 5591:1 5596:1 5620:1 5622:1 5623:1 5624:1 5629:1 5632:2 5634:1 5639:1 5641:1 5642:2 5643:1 5647:12 5680:3 5686:1 5703:1 5715:1 5725:4 5735:2 5751:6 5756:1 5761:1 5763:1 5801:1 5805:1 5828:1 5834:1 5836:1 5838:1 5844:2 5845:3 5847:1 5849:1 5850:1 5852:2 5853:1 5859:2 5860:4 5861:3 5872:1 5897:1 5904:1 5938:1 5954:1 5973:1 5975:1 5987:2 5991:4 5992:2 6006:1 6015:1 6047:1 6055:2 6064:2 6066:1 6076:1 6082:1 6092:2 6115:1 6129:2 6137:2 6146:1 6152:1 6162:1 6210:1 6215:1 6223:1 6233:2 6235:1 6238:1 6242:1 6246:1 6253:1 6254:8 6255:1 6259:1 6262:2 6264:1 6265:3 6267:1 6273:1 6275:1 6279:1 6287:2 6297:1 6300:1 6301:1 6307:1 6310:1 6340:2 6344:1 6345:3 6357:2 6361:1 6366:2 6369:1 6385:1 6389:1 6394:1 6398:1 6401:2 6402:1 6430:1 6449:2 6453:1 6460:1 6465:1 6468:1 6469:2 6477:1 6486:1 6490:6 6498:2 6516:1 6524:1 6528:1 6534:1 6537:3 6538:2 6545:1 6549:6 6550:1 6552:1 6554:1 6557:5 6560:1 6564:1 6581:1 6587:1 6588:1 6590:1 6599:1 6602:1 6604:1 6620:1 6621:1 6626:4 6631:5 6641:1 6654:1 6658:1 6672:3 6674:1 6677:1 6679:1 6686:1 6689:1 6697:1 6701:1 6703:1 6705:1 6712:1 6721:1 6728:1 6742:1 6772:1 6797:1 6800:1 6806:1 6810:2 6846:1 6857:1 6859:2 6860:6 6864:3 6868:1 6869:1 6870:1 6876:3 6881:1 6894:6 6895:2 6898:2 6912:1 6913:3 6922:1 6935:1 6942:1 6943:2 6946:2 6951:1 6959:1 6962:1 6964:1 6969:1 6980:1 6981:1 6988:1 6989:2 6991:1 6997:1 7002:2 7006:1 7015:1 7016:1 7027:1 7052:4 7067:4 7068:8 7081:2 7086:1 7090:4 7092:4 7093:3 7094:1 7109:1 7116:4 7117:3 7121:1 7136:50 7137:2 7140:2 7147:1 7155:10 7156:8 7162:2 7166:1 7194:1 7201:1 7202:1 7211:1 7212:2 7222:1 7224:1 7229:3 7230:2 7235:1 7242:1 7244:2 7256:2 7264:3 7276:1 7283:1 7294:2 7300:1 7305:2 7319:1 7325:1 7326:2 7348:1 7352:2 7355:1 7356:3 7359:1 7385:1 7389:1 7390:1 7391:1 7402:2 7446:1 7461:1 7477:1 7486:1 7489:2 7491:1 7507:1 7508:1 7517:1 7520:1 7523:1 7538:1 7547:1 7556:1 7558:1 7559:3 7568:1 7575:1 7576:1 7580:2 7592:1 7593:2 7609:27 7618:1 7619:1 7637:3 7640:3 7642:1 7644:2 7648:1 7670:1 7676:1 7696:6 7698:1 7700:1 7706:1 7734:1 7744:5 7747:2 7748:2 7751:1 7756:1 7757:1 7771:1 7777:2 7778:4 7784:3 7790:1 7792:1 7796:1 7812:2 7814:1 7820:1 7825:1 7836:1 7840:1 7850:1 7857:1 7858:2 7864:1 7866:1 7876:1 7877:2 7886:2 7889:2 7890:1 7918:1 7940:1 7944:1 7945:1 7950:1 7952:1 7957:1 7976:3 7978:2 7989:7 7991:1 8005:2 8008:3 8023:2 8034:1 8036:1 8043:1 8049:2 8052:1 8054:2 8063:1 8069:1 8073:1 8085:2 8095:1 8113:1 8120:1 8124:1 8148:1 8153:1 8154:1 8163:1 8164:1 8171:1 8197:1 8199:1 8215:3 8228:1 8247:1 8250:1 8253:2 8254:1 8258:3 8282:3 8289:1 8295:2 8306:1 8311:1 8330:1 8331:1 8332:1 8335:1 8340:1 8345:2 8350:8 8351:1 8356:1 8358:1 8363:1 8370:4 8378:1 8387:2 8389:1 8407:7 8409:1 8423:1 8426:1 8434:1 8437:1 8445:11 8446:6 8460:3 8461:1 8469:1 8472:1 8501:3 8507:1 8515:1 8521:1 8525:3 8527:1 8541:1 8544:1 8550:2 8552:2 8553:3 8555:2 8558:1 8567:2 8578:1 8584:1 8600:1 8612:1 8620:2 8622:1 8632:1 8635:5 8637:2 8638:1 8650:1 8655:1 8656:3 8658:2 8663:1 8664:1 8674:4 8698:1 8699:1 8706:1 8728:1 8735:1 8741:1 8756:3 8763:1 8765:3 8771:1 8782:1 8784:1 8786:1 8791:1 8793:1 8817:1 8820:1 8833:1 8838:1 8846:1 8853:8 8856:3 8885:3 8887:1 8894:1 8895:1 8904:3 8908:1 8926:1 8942:1 8943:1 8947:1 8953:1 8954:3 8956:3 8958:2 8964:1 8981:1 8987:2 8990:2 9020:2 9022:1 9031:1 9041:1 9067:2 9073:1 9077:1 9087:1 9090:1 9101:2 9107:1 9109:1 9113:2 9124:1 9131:1 9132:1 9144:1 9155:1 9172:1 9173:1 9178:2 9179:1 9191:1 9196:1 9216:1 9218:1 9221:1 9222:1 9224:1 9230:5 9243:4 9249:4 9251:2 9263:1 9281:2 9291:1 9300:3 9301:1 9314:1 9328:1 9332:2 9337:2 9347:1 9348:1 9358:1 9361:4 9364:1 9388:2 9391:1 9396:12 9398:2 9402:2 9406:1 9424:2 9425:2 9434:1 9439:1 9450:1 9469:1 9488:1 9491:2 9493:1 9509:1 9524:1 9534:1 9536:1 9537:1 9540:1 9542:4 9550:1 9552:1 9555:2 9588:1 9598:1 9601:4 9603:1 9608:1 9610:1 9612:1 9617:1 9620:3 9624:1 9626:1 9632:1 9635:2 9642:4 9660:1 9681:1 9691:1 9695:1 9696:1 9703:1 9708:1 9710:2 9713:2 9718:1 9725:2 9728:1 9732:1 9739:1 9748:1 9750:3 9755:1 9757:1 9764:2 9766:1 9769:1 9774:1 9775:7 9778:4 9791:2 9795:3 9799:1 9802:1 9807:1 9812:2 9820:1 9834:2 9848:7 9849:2 9866:2 9868:1 9869:1 9878:4 9899:1 9913:1 9916:1 9920:1 9926:3 9936:2 9943:1 9946:7 9964:2 9972:1 9980:1 9982:1 9993:3 10025:1 10030:1 10036:1 10085:1 10091:1 10096:1 10102:1 10118:1 10120:1 10136:1 10137:2 10141:2 10144:1 10145:2 10149:1 10152:2 10156:1 10157:5 10158:6 10159:1 10167:1 10168:1 10172:1 10174:2 10177:3 10181:1 10183:4 10188:1 10189:1 10192:1 10195:1 10198:1 10200:1 10201:3 10203:3 10208:1 10213:1 10226:2 10234:2 10255:1 10257:1 10259:4 10262:1 10294:1 10297:1 10312:1 10321:2 10323:1 10326:2 10339:1 10341:1 10385:1 10392:1 10404:1 10405:1 10406:1 10412:1 10423:1 10425:1 10426:3 10445:1 10463:1 10474:1 10477:1 10478:1 10484:2 10487:1 10500:3 10503:2 10507:1 10518:2 10523:2 10525:1 10526:1 10528:2 10531:1 10537:3 10539:1 10540:1 10541:2 10550:1 10556:3 10559:2 10570:1 10572:1 10587:19 10588:1 10611:1 10621:1 10625:4 10632:1 10635:2 10636:2 10644:1 10648:2 10655:1 10673:1 10675:2 10682:3 10683:1 10690:1 10693:2 10695:2 10696:1 10706:1 10724:1 10738:1 10759:1 10766:1 10783:1 10796:1 10798:1 10803:3 10804:1 10805:1 10807:1 10808:1 10814:1 10821:1 10822:5 10826:1 10827:2 10828:1 10830:2 10840:1 10841:1 10851:1 10860:1 10863:1 10864:1 10866:1 10870:2 10874:5 10875:1 10880:4 10884:1 10898:1 10921:1 10934:2 10938:1 10947:1 10953:1 10972:1 10975:1 10983:1 10984:1 10998:1 11009:1 11014:1 11016:1 11017:1 11023:6 11032:1 11038:1 11043:2 11046:1 11058:1 11063:1 11070:1 11071:1 11076:2 11081:2 11100:2 11103:1 11117:2 11127:1 11129:2 11150:1 11170:2 11175:1 11189:1 11191:2 11195:1 11201:2 11205:1 11219:1 11236:1 11244:1 11246:1 11247:1 11251:5 11252:1 11253:4 11255:1 11256:2 11267:1 11273:2 11279:1 11283:1 11285:1 11290:1 11335:1 11338:2 11339:1 11341:1 11357:1 11368:1 11376:1 11388:1 11393:1 11407:1 11410:1 11413:1 11423:1 11439:1 11476:3 11494:2 11507:1 11518:1 11520:1 11527:1 11539:1 11545:1 11550:1 11552:2 11553:1 11568:1 11570:3 11579:1 11593:1 11599:1 11606:1 11647:1 11658:1 11663:1 11665:1 11666:3 11674:1 11687:1 11705:15 11710:5 11719:1 11723:2 11728:1 11739:1 11746:2 11747:3 11753:4 11767:1 11770:1 11775:1 11779:2 11780:1 11786:1 11792:2 11794:1 11798:1 11800:1 11829:1 11845:1 11850:1 11851:1 11858:2 11863:1 11879:1 11886:1 11887:1 11889:1 11890:1 11903:1 11923:1 11924:1 11930:2 11932:1 11942:1 11944:1 11946:1 11963:1 11977:1 11982:5 11994:2 11996:1 12041:1 12042:1 12060:1 12071:2 12075:1 12078:1 12082:1 12083:1 12085:4 12090:4 12099:1 12101:2 12105:1 12106:2 12115:3 12122:1 12138:7 12157:1 12161:2 12186:1 12193:4 12194:1 12205:1 12217:1 12221:2 12223:1 12224:1 12225:2 12233:9 12236:1 12242:3 12247:1 12260:1 12264:1 12272:1 12273:1 12279:2 12283:1 12289:1 12290:1 12301:18 12306:1 12308:1 12311:1 12327:1 12342:2 12343:2 12346:1 12350:3 12366:1 12371:2 12374:1 12384:2 12394:1 12395:1 12397:1 12421:3 12441:1 12446:6 12449:1 12465:1 12471:2 12475:1 12478:1 12499:5 12515:1 12521:1 12525:1 12528:1 12533:3 12535:1 12537:2 12544:1 12549:1 12551:1 12558:6 12559:1 12561:1 12562:2 12563:1 12564:2 12565:1 12569:8 12570:3 12584:1 12587:1 12590:1 12591:1 12593:1 12594:1 12595:1 12620:1 12636:1 12643:1 12675:2 12680:2 12685:1 12686:1 12695:1 12706:1 12711:1 12719:7 12751:1 12756:1 12758:1 12760:1 12767:1 12770:1 12773:2 12774:1 12778:1 12790:2 12794:1 12814:2 12820:1 12821:1 12829:1 12830:1 12833:1 12836:8 12857:3 12861:1 12867:1 12890:1 12902:1 12903:2 12909:1 12913:1 12923:1 12929:1 12931:1 12934:1 12944:1 12957:2 12977:1 12983:1 12984:1 12990:1 12993:1 12997:1 13004:1 13010:1 13017:1 13052:1 13063:2 13075:1 13077:5 13091:1 13104:1 13123:1 13143:1 13175:1 13199:1 13200:1 13204:3 13205:4 13212:1 13222:2 13223:2 13225:1 13229:2 13230:1 13248:1 13250:1 13251:1 13256:1 13265:2 13276:1 13285:1 13294:2 13305:1 13312:1 13327:2 13334:1 13337:1 13349:1 13353:1 13355:1 13361:2 13367:1 13375:3 13380:2 13428:1 13430:2 13433:1 13444:2 13457:2 13476:2 13477:1 13484:1 13491:2 13506:1 13513:1 13517:1 13529:1 13531:1 13540:3 13552:1 13555:1 13558:2 13563:1 13587:1 13589:1 13595:1 13637:1 13643:2 13689:2 13693:2 13696:1 13702:1 13712:1 13722:2 13734:1 13762:2 13774:1 13776:3 13781:1 13793:1 13794:1 13795:2 13799:1 13800:1 13801:1 13804:1 13806:1 13829:1 13887:1 13891:1 13894:1 13900:2 13922:1 13928:1 13944:1 13974:1 13991:1 13995:2 14004:1 14010:1 14027:1 14032:1 14034:1 14035:2 14047:1 14064:2 14071:3 14075:1 14096:1 14098:1 14099:1 14107:1 14113:2 14130:3 14134:1 14156:1 14158:1 14168:2 14184:1 14189:2 14211:1 14213:1 14216:1 14217:1 14225:1 14229:6 14244:4 14252:1 14263:4 14266:1 14279:3 14299:1 14302:1 14311:1 14321:1 14328:1 14332:1 14335:2 14377:1 14391:2 14392:1 14403:2 14409:1 14413:1 14417:4 14420:1 14424:1 14426:1 14432:1 14443:2 14445:4 14446:1 14450:1 14453:1 14462:1 14465:1 14475:1 14491:2 14497:2 14523:1 14532:2 14535:1 14539:1 14550:3 14559:2 14567:1 14570:1 14572:3 14587:1 14600:3 14605:1 14615:1 14648:1 14667:1 14673:1 14676:1 14682:1 14683:1 14686:1 14687:17 14690:1 14704:1 14706:1 14709:3 14712:1 14738:3 14772:2 14783:1 14789:2 14796:4 14817:2 14821:1 14832:2 14845:1 14876:1 14883:1 14890:1 14891:1 14892:1 14902:2 14903:1 14912:1 14928:1 14929:1 14931:3 14934:1 14946:1 14950:1 14954:6 14955:2 14956:2 14957:6 14958:2 14959:1 14963:2 14965:1 14967:2 14968:5 14972:1 14973:1 14975:1 14978:1 14979:2 14987:1 15004:1 15013:2 15021:1 15024:1 15037:1 15060:1 15069:1 15083:1 15087:2 15088:1 15095:1 15109:2 15113:1 15114:1 15117:1 15119:2 15120:2 15128:1 15140:2 15143:1 15162:1 15169:1 15170:1 15178:1 15192:1 15198:1 15217:1 15240:1 15250:1 15252:1 15254:1 15262:3 15272:1 15274:2 15281:2 15282:1 15290:1 15294:5 15299:1 15302:2 15308:1 15316:1 15321:2 15324:1 15325:4 15329:2 15334:1 15336:1 15342:3 15344:2 15353:4 15359:1 15367:1 15372:1 15402:1 15407:14 15408:1 15422:1 15426:1 15431:2 15432:4 15434:1 15437:1 15472:1 15476:1 15490:1 15491:1 15497:2 15499:1 15507:1 15512:4 15524:1 15525:1 15534:1 15538:3 15541:2 15558:1 15575:2 15580:1 15596:5 15603:1 15617:2 15619:1 15622:1 15646:1 15661:2 15667:1 15688:1 15703:2 15705:3 15719:1 15720:1 15722:1 15731:1 15748:1 15763:1 15765:1 15768:1 15787:1 15790:1 15799:1 15808:2 15814:1 15821:1 15828:1 15837:1 15845:2 15854:1 15858:2 15862:1 15864:2 15870:1 15873:1 15886:1 15889:1 15890:1 15909:1 15930:1 15938:1 15959:1 15966:1 15979:1 15982:1 15988:1 16000:1 16005:1 16007:1 16021:3 16027:1 16036:1 16037:3 16041:1 16046:1 16047:1 16054:3 16059:2 16060:2 16064:2 16068:1 16070:1 16071:10 16109:1 16111:2 16112:1 16116:3 16117:1 16121:1 16128:1 16133:1 16136:2 16139:1 16140:1 16156:1 16176:1 16189:1 16203:1 16204:1 16222:4 16226:1 16236:1 16244:2 16256:1 16257:1 16261:1 16266:1 16276:1 16279:1 16309:1 16311:1 16312:1 16313:1 16315:1 16334:1 16339:1 16343:1 16344:1 16347:2 16357:1 16379:1 16401:1 16405:1 16417:1 16425:1 16426:3 16433:1 16437:1 16439:1 16450:1 16452:1 16466:1 16487:1 16514:2 16540:1 16542:1 16551:2 16570:2 16651:2 16657:2 16658:1 16664:1 16674:1 16680:1 16687:1 16703:1 16709:1 16719:1 16721:1 16727:1 16735:1 16745:1 16748:1 16758:1 16770:1 16771:1 16787:1 16791:3 16795:1 16805:1 16838:1 16848:15 16860:1 16880:1 16906:1 16931:1 16932:1 16954:14 16963:4 16964:2 16975:1 16977:6 16990:1 16997:1 17001:3 17012:1 17025:2 17048:6 17058:2 17068:2 17084:2 17085:1 17087:1 17107:3 17112:2 17114:1 17125:2 17126:3 17137:2616 17147:1 17151:1 17160:1 17161:1 17162:1 17163:1 17172:1 17188:1 17197:1 17200:1 17201:1 17202:1 17210:1 17220:2 17235:1 17251:1 17258:2 17262:1 17263:1 17282:1 17296:1 17307:1 17311:1 17314:1 17317:2 17321:6 17322:4 17332:1 17339:1 17341:1 17351:1 17355:1 17359:1 17375:1 17386:1 17399:1 17404:1 17406:1 17407:1 17448:1 17450:3 17453:2 17459:1 17466:1 17494:1 17500:1 17502:1 17503:3 17507:2 17521:1 17522:1 17534:2 17536:1 17549:1 17551:2 17552:1 17564:2 17566:1 17573:1 17581:1 17588:1 17591:1 17603:2 17608:1 17616:1 17627:2 17636:1 17639:1 17642:2 17643:2 17644:1 17646:2 17655:1 17661:1 17670:2 17672:1 17691:2 17692:2 17708:3 17712:1 17716:1 17728:3 17752:3 17753:1 17758:1 17761:1 17770:1 17771:2 17773:1 17777:9 17787:1 17801:1 17803:1 17818:1 17823:2 17824:1 17825:1 17833:2 17846:5 17847:1 17860:1 17862:2 17877:1 17891:1 17900:4 17905:1 17907:2 17912:1 17914:2 17929:4 17930:1 17935:1 17938:1 17942:2 17956:1 17960:1 17961:4 17968:2 17970:1 17975:3 18006:4 18009:1 18012:1 18017:1 18031:1 18034:2 18038:2 18039:2 18046:1 18047:2 18050:1 18058:1 18068:2 18075:1 18077:1 18078:1 18079:1 18080:1 18083:1 18088:1 18117:1 18130:3 18144:1 18145:2 18146:1 18147:1 18152:1 18153:3 18158:1 18178:1 18182:1 18183:1 18185:1 18187:1 18196:1 18203:2 18208:1 18214:2 18227:1 18229:2 18237:2 18238:1 18242:1 18249:1 18252:1 18263:1 18268:1 18269:1 18276:1 18279:2 18282:4 18287:1 18288:4 18289:1 18335:1 18340:1 18354:3 18360:1 18363:1 18368:2 18369:2 18371:2 18388:1 18389:2 18392:3 18399:3 18404:1 18405:2 18407:2 18409:1 18421:5 18430:2 18449:1 18451:1 18458:1 18460:1 18462:1 18465:2 18466:4 18494:1 18495:2 18504:2 18505:1 18507:1 18510:1 18526:1 18531:3 18548:1 18552:2 18553:3 18569:1 18570:1 18577:3 18578:21 18579:2 18586:1 18592:5 18596:1 18612:2 18613:1 18620:1 18627:1 18643:3 18652:1 18653:1 18663:1 18672:1 18678:1 18683:1 18695:1 18697:1 18700:1 18701:1 18705:1 18726:1 18738:1 18746:1 18757:1 18768:4 18787:1 18789:2 18802:2 18807:1 18817:2 18828:1 18830:1 18840:2 18850:1 18865:8 18871:2 18878:1 18886:1 18916:1 18917:1 18920:1 18927:1 18933:1 18937:1 18968:1 18969:1 18973:4 18987:4 18996:1 18999:1 19002:1 19006:1 19010:1 19011:1 19020:1 19023:2 19024:1 19051:2 19057:3 19063:2 19066:3 19073:2 19078:1 19080:1 19081:1 19089:2 19093:1 19116:5 19126:2 19127:1 19135:1 19142:1 19149:2 19153:2 19162:1 19176:1 19178:2 19183:1 19190:2 19191:1 19198:5 19202:1 19206:2 19207:1 19209:1 19213:1 19215:2 19227:3 19258:2 19264:1 19271:1 19277:2 19296:1 19297:1 19298:1 19302:2 19304:1 19312:2 19319:2 19321:2 19327:2 19331:2 19332:1 19337:2 19353:1 19358:2 19381:2 19392:1 19393:4 19401:1 19402:1 19403:4 19418:1 19420:1 19427:2 19431:1 19435:1 19440:1 19441:1 19446:2 19447:1 19450:1 19452:1 19460:1 19463:1 19476:1 19480:1 19481:1 19486:1 19510:1 19517:1 19519:1 19524:2 19525:2 19535:1 19538:1 19550:1 19618:1 19622:1 19640:2 19652:2 19656:1 19664:2 19665:2 19667:1 19669:1 19673:1 19674:1 19679:1 19687:1 19694:2 19699:3 19705:1 19714:1 19723:1 19740:1 19746:1 19750:1 19758:1 19768:1 19769:1 19787:2 19789:1 19790:1 19791:1 19794:1 19796:2 19799:1 19800:1 19811:1 19814:1 19818:2 19825:2 19830:2 19833:1 19834:1 19838:2 19839:1 19841:1 19842:1 19851:1 19853:2 19874:14 19886:2 19887:2 19892:2 19902:1 19916:1 19924:1 19929:1 19931:1 19941:1 19943:2 19948:1 19949:2 19952:1 19955:1 19984:1 20000:2 20010:1 20019:2 20024:1 20026:1 20030:1 20034:6 20036:3 20037:1 20046:2 20054:1 20055:1 20056:1 20059:1 20061:1 20081:1 20082:1 20083:1 20085:3 20087:4 20088:2 20089:1 20111:1 20114:1 20151:1 20171:4 20174:1 20176:5 20178:3 20179:3 20181:1 20182:1 20186:1 20189:2 20193:1 20194:2 20202:1 20204:1 20205:5 20212:1 20213:1 20218:1 20219:1 20223:1 20236:1 20244:2 20252:2 20255:2 20269:1 20297:1 20315:2 20317:2 20322:1 20324:1 20326:1 20329:1 20338:1 20344:1 20351:1 20364:1 20365:3 20368:1 20374:1 20375:1 20377:1 20381:2 20383:1 20392:2 20395:1 20396:1 20405:1 20409:1 20421:2 20423:1 20425:5 20431:1 20440:1 20441:4 20446:1 20447:3 20455:1 20463:1 20470:1 20476:1 20484:2 20487:1 20490:1 20491:1 20492:4 20498:2 20503:1 20512:2 20513:9 20515:1 20519:2 20525:1 20526:1 20529:1 20531:1 20547:1 20549:1 20553:1 20575:9 20576:1 20589:1 20609:1 20624:1 20631:6 20632:1 20637:1 20640:1 20649:1 20650:1 20664:1 20665:3 20678:1 20687:1 20690:4 20701:1 20715:1 20717:1 20722:2 20723:1 20726:6 20728:2 20735:3 20739:1 20740:4 20749:1 20753:1 20757:1 20759:1 20773:1 20775:4 20787:1 20794:1 20795:3 20797:1 20800:3 20809:1 20815:1 20817:1 20827:1 20831:1 20834:1 20838:1 20846:1 20851:1 20863:1 20866:1 20890:1 20895:1 20902:1 20903:1 20904:1 20906:1 20914:1 20921:2 20935:10 20936:3 20941:1 20952:2 20957:3 20962:4 20969:1 20970:3 20982:2 20983:1 20986:1 20996:1 21021:1 21032:1 21033:1 21037:2 21040:2 21055:1 21056:1 21059:1 21080:1 21083:1 21084:1 21085:1 21086:1 21101:1 21104:2 21113:1 21121:1 21128:2 21131:1 21138:2 21139:1 21142:1 21170:1 21175:3 21204:3 21215:1 21249:2 21253:1 21269:1 21294:3 21297:3 21304:7 21314:2 21322:1 21328:1 21330:3 21341:2 21344:2 21345:3 21358:1 21368:4 21406:1 21410:1 21413:1 21434:1 21436:1 21446:1 21458:1 21463:1 21472:4 21476:1 21484:1 21502:1 21505:1 21510:3 21527:2 21534:1 21537:2 21548:1 21549:1 21559:1 21566:1 21575:1 21576:2 21579:4 21584:3 21590:1 21592:1 21603:1 21605:1 21609:1 21624:3 21625:2 21626:1 21628:2 21641:1 21644:1 21650:1 21695:1 21696:4 21697:1 21698:1 21701:1 21706:1 21712:1 21714:1 21715:4 21716:1 21718:1 21719:1 21722:1 21725:1 21737:1 21749:1 21766:3 21769:1 21779:1 21789:2 21832:2 21840:1 21845:2 21853:1 21878:2 21884:1 21886:1 21902:1 21914:1 21929:1 21941:1 21943:2 21951:2 21953:1 21964:1 21979:1 21994:1 21996:1 21998:1 22008:2 22017:1 22029:2 22047:1 22057:1 22066:1 22084:1 22090:1 22101:2 22103:1 22113:1 22136:2 22140:1 22165:2 22176:4 22186:1 22212:1 22213:8 22220:1 22228:1 22233:1 22236:1 22241:3 22245:1 22259:1 22261:1 22267:1 22270:5 22279:1 22280:1 22287:1 22293:1 22317:3 22319:1 22340:4 22341:2 22345:1 22346:2 22381:1 22425:1 22426:1 22427:1 22451:1 22453:1 22454:1 22455:1 22461:1 22464:2 22467:3 22469:4 22471:1 22473:2 22475:1 22476:1 22477:1 22479:2 22482:1 22483:1 22484:1 22493:1 22494:1 22505:1 22518:6 22535:1 22536:2 22539:1 22544:1 22551:1 22552:1 22555:1 22557:1 22582:12 22585:6 22587:1 22609:1 22611:2 22612:1 22618:1 22619:1 22630:1 22635:1 22636:1 22639:2 22643:3 22651:3 22667:1 22669:1 22670:1 22681:1 22690:1 22728:1 22735:1 22756:1 22767:1 22768:1 22777:2 22781:1 22787:1 22794:1 22796:1 22800:2 22809:2 22813:1 22817:1 22822:2 22823:2 22826:1 22843:1 22845:1 22850:1 22857:1 22858:2 22860:1 22863:1 22866:1 22872:1 22874:1 22890:1 22896:1 22901:5 22913:2 22917:1 22918:1 22924:1 22930:1 22932:1 22941:2 22946:2 22950:1 22952:3 22953:1 22957:1 22968:1 22974:1 22975:1 23001:1 23002:18 23003:2 23023:1 23026:1 23032:1 23033:1 23036:1 23045:1 23055:1 23066:1 23067:1 23074:2 23078:1 23085:1 23098:2 23101:1 23105:2 23106:1 23110:1 23111:1 23131:1 23133:1 23139:1 23143:1 23145:1 23160:1 23166:1 23173:1 23179:1 23197:1 23198:1 23220:12 23221:1 23235:1 23240:2 23241:1 23247:1 23253:1 23264:2 23270:1 23276:1 23280:1 23285:7 23286:1 23291:1 23304:1 23308:1 23311:2 23314:1 23340:1 23353:2 23359:1 23365:1 23371:1 23386:1 23398:1 23407:1 23422:2 23426:2 23428:1 23437:2 23448:1 23452:1 23459:1 23473:1 23480:2 23491:1 23527:1 23528:2 23534:1 23538:1 23540:1 23550:1 23560:1 23564:2 23569:5 23571:1 23577:1 23579:2 23594:1 23617:7 23629:1 23632:1 23636:1 23648:1 23650:7 23663:2 23677:1 23682:1 23685:1 23688:3 23689:1 23698:1 23701:1 23705:1 23714:1 23715:1 23746:1 23751:1 23759:1 23769:1 23777:2 23795:1 23803:1 23821:1 23826:1 23833:3 23838:1 23853:1 23860:1 23889:1 23903:1 23904:1 23906:1 23919:2 23922:1 23928:1 23929:3 23944:1 23945:1 23952:1 23953:1 23958:2 23971:1 23981:1 23988:3 23991:1 24023:5 24030:1 24035:1 24044:1 24058:1 24065:1 24074:2 24075:1 24084:1 24088:1 24094:15 24095:2 24105:2 24115:1 24124:1 24126:1 24147:2 24151:2 24163:1 24165:1 24170:2 24183:1 24186:2 24188:2 24199:1 24207:1 24211:4 24215:3 24221:3 24224:3 24226:4 24228:1 24230:1 24241:1 24245:1 24246:1 24253:1 24293:1 24300:1 24301:1 24302:1 24314:2 24324:1 24337:1 24340:2 24350:1 24362:2 24370:2 24380:1 24384:2 24386:1 24387:1 24388:2 24399:2 24415:6 24417:1 24418:1 24425:1 24426:1 24427:1 24429:1 24434:2 24439:1 24442:1 24446:1 24447:1 24467:1 24470:2 24471:2 24483:1 24531:1 24537:2 24553:1 24561:1 24562:1 24569:3 24596:1 24621:1 24634:1 24635:1 24641:6 24652:1 24653:1 24677:1 24684:1 24689:1 24690:1 24703:1 24707:1 24711:3 24716:1 24721:1 24744:1 24746:2 24747:2 24758:3 24769:1 24773:1 24785:1 24788:1 24793:1 24797:2 24813:1 24823:1 24837:1 24838:2 24839:1 24849:1 24851:1 24862:1 24886:1 24895:2 24912:2 24915:4 24918:1 24921:1 24922:2 24931:1 24936:1 24938:2 24943:1 24950:1 24956:1 24961:3 24972:2 24974:1 24977:1 24980:1 24985:2 24986:2 24991:1 25000:1 25013:1 25016:1 25021:1 25026:1 25028:1 25032:2 25037:1 25063:1 25077:6 25081:3 25084:2 25098:1 25099:1 25108:1 25120:1 25126:1 25132:2 25137:1 25143:2 25148:2 25151:1 25155:2 25163:1 25164:1 25172:2 25174:1 25181:1 25187:1 25190:1 25192:1 25193:1 25200:1 25201:1 25204:3 25205:1 25206:1 25207:1 25210:3 25213:1 25217:2 25219:1 25222:1 25229:2 25238:2 25243:1 25247:1 25279:1 25288:1 25297:5 25311:1 25318:2 25335:2 25358:1 25361:1 25401:1 25404:2 25425:1 25429:1 25439:1 25444:1 25445:2 25457:1 25459:1 25465:2 25480:2 25482:1 25486:1 25487:1 25490:1 25492:3 25499:5 25513:1 25521:1 25532:1 25542:1 25553:1 25563:7 25598:2 25600:1 25613:1 25631:1 25636:1 25648:1 25652:1 25655:1 25656:1 25660:2 25674:2 25680:1 25691:1 25699:1 25715:1 25734:1 25739:1 25742:1 25745:1 25755:2 25759:2 25760:3 25761:1 25766:1 25768:1 25773:2 25775:1 25778:2 25790:1 25792:2 25799:1 25801:5 25811:1 25813:1 25815:1 25816:1 25817:1 25823:1 25828:3 25832:2 25836:2 25840:1 25845:1 25847:5 25851:1 25860:3 25867:3 25870:1 25883:3 25884:1 25886:3 25889:1 25893:1 25906:3 25922:1 25924:1 25941:1 25949:1 25963:1 25969:3 25971:4 25977:7 26008:5 26021:1 26023:1 26034:1 26045:1 26051:1 26052:1 26054:1 26064:1 26072:1 26081:1 26083:6 26088:1 26092:2 26114:1 26120:1 26126:1 26131:1 26141:1 26146:1 26158:1 26162:1 26164:1 26170:1 26172:1 26173:2 26179:2 26182:1 26196:3 26231:1 26233:1 26234:1 26245:7 26246:2 26249:2 26252:1 26257:1 26259:1 26263:2 26276:1 26277:1 26308:6 26325:1 26351:1 26365:1 26372:1 26401:1 26424:1 26426:1 26441:1 26468:1 26470:1 26488:2 26495:1 26497:1 26498:2 26499:3 26502:2 26504:3 26511:1 26515:1 26516:1 26525:1 26539:1 26552:1 26561:1 26571:1 26576:1 26592:1 26611:3 26614:1 26620:2 26648:2 26651:2 26653:2 26668:1 26670:1 26683:1 26686:1 26699:1 26704:1 26705:1 26715:1 26721:4 26722:1 26727:1 26728:2 26736:1 26758:1 26760:1 26763:4 26767:2 26780:1 26784:1 26806:1 26813:1 26819:1 26825:1 26836:1 26844:1 26862:1 26866:1 26868:3 26876:1 26878:1 26892:1 26901:3 26903:1 26919:1 26940:2 26943:2 26961:1 26965:1 26966:3 26973:3 26974:4 26975:1 26978:1 27006:1 27020:1 27022:5 27025:1
1 12:2 34:1 36:1 43:1 45:1 50:1 55:1 60:1 72:1 90:2 92:1 108:1 124:1 137:1 138:4 147:1 152:2 153:1 159:1 165:2 168:3 175:1 178:6 181:1 189:1 194:1 204:1 221:1 231:1 236:7 248:1 255:3 262:1 277:2 301:1 312:5 314:3 318:3 320:1 326:3 333:1 337:2 356:3 363:1 375:2 392:6 394:6 403:1 414:2 446:1 451:1 458:1 478:1 480:2 509:1 518:1 522:2 538:1 546:1 548:3 554:1 565:1 571:1 573:4 575:2 580:1 588:3 595:1 624:1 653:1 656:1 665:1 698:1 707:1 708:3 728:1 730:2 731:1 738:2 750:1 776:7 779:1 782:1 786:2 787:4 792:2 798:1 814:16 815:4 823:5 841:4 847:1 848:1 853:1 854:4 856:2 857:9 859:1 861:3 863:4 877:2 895:5 898:4 904:1 909:1 910:1 943:2 951:1 964:1 994:1 1005:1 1011:1 1028:1 1029:1 1044:1 1053:3 1054:1 1057:2 1100:3 1101:3 1105:1 1107:2 1108:1 1111:2 1118:1 1119:2 1132:1 1139:1 1140:1 1141:1 1145:2 1151:1 1156:2 1161:2 1167:1 1169:1 1170:1 1178:1 1184:2 1189:1 1198:1 1211:1 1214:1 1215:1 1230:1 1236:1 1243:1 1247:1 1249:1 1253:1 1256:1 1264:1 1275:1 1293:1 1296:1 1300:1 1301:2 1303:1 1311:1 1318:1 1319:2 1329:1 1332:1 1334:1 1338:1 1340:3 1346:1 1352:1 1361:1 1367:1 1370:1 1371:2 1373:1 1385:1 1390:1 1406:1 1411:4 1417:8 1420:2 1429:1 1444:1 1450:2 1458:1 1461:1 1465:1 1467:4 1476:1 1480:1 1482:1 1485:2 1490:1 1498:3 1508:1 1511:1 1513:1 1517:2 1518:1 1526:2 1529:3 1540:1 1545:1 1548:1 1549:1 1556:1 1560:2 1564:1 1565:1 1570:1 1580:1 1588:1 1594:1 1595:2 1598:1 1607:2 1614:1 1615:5 1621:1 1625:1 1626:1 1632:1 1636:1 1639:3 1642:1 1643:2 1645:1 1651:2 1653:6 1660:1 1676:5 1678:3 1682:1 1692:1 1699:1 1702:1 1704:1 1710:2 1713:2 1715:4 1717:1 1718:1 1721:1 1731:1 1734:2 1741:1 1742:3 1744:1 1750:1 1751:1 1757:3 1763:2 1764:1 1765:1 1778:3 1781:1 1782:1 1787:1 1800:1 1821:2 1825:9 1830:1 1836:1 1840:2 1845:7 1850:1 1851:2 1854:2 1859:1 1862:2 1873:2 1877:1 1884:1 1893:1 1896:1 1902:1 1905:1 1920:2 1921:1 1923:2 1924:1 1926:2 1929:2 1950:1 1966:11 1970:2 1975:1 1979:1 1984:1 1999:1 2006:2 2007:1 2025:3 2038:5 2039:1 2040:1 2052:1 2053:1 2056:1 2061:2 2078:3 2079:2 2081:1 2083:3 2084:5 2087:1 2089:2 2090:2 2095:2 2096:2 2097:1 2098:4 2099:5 2102:1 2103:1 2105:5 2107:4 2109:5 2111:7 2113:1 2115:2 2123:1 2131:1 2146:1 2149:2 2152:3 2155:3 2158:1 2162:1 2167:1 2170:2 2172:1 2179:1 2190:1 2191:1 2200:1 2208:1 2210:1 2236:1 2243:1 2246:1 2247:1 2262:1 2278:3 2280:1 2287:1 2291:1 2297:1 2304:1 2306:3 2316:2 2317:1 2323:1 2325:1 2330:1 2334:1 2345:1 2347:2 2353:3 2356:2 2358:1 2361:7 2365:1 2366:1 2367:1 2379:1 2382:1 2397:1 2408:4 2410:2 2411:1 2416:2 2430:2 2436:2 2437:1 2438:2 2447:7 2452:2 2458:2 2460:9 2465:6 2467:1 2474:2 2475:1 2481:1 2483:2 2485:1 2490:3 2492:2 2503:4 2515:1 2516:3 2520:3 2524:1 2528:2 2533:1 2557:1 2561:1 2562:2 2563:2 2575:4 2576:1 2577:1 2579:1 2583:7 2590:2 2591:1 2595:1 2612:1 2614:1 2619:1 2637:1 2639:3 2641:1 2656:5 2660:1 2664:1 2667:17 2678:1 2689:3 2690:1 2694:1 2695:1 2697:1 2706:2 2711:3 2712:1 2714:1 2731:22 2733:3 2743:1 2756:2 2758:3 2773:2 2783:1 2786:2 2802:1 2809:1 2814:1 2816:1 2822:1 2826:1 2840:1 2841:5 2852:3 2856:1 2860:1 2866:1 2879:1 2889:1 2899:1 2902:1 2904:1 2908:1 2915:2 2923:1 2924:1 2938:2 2949:1 2956:3 2968:1 2991:1 2992:2 3026:1 3027:2 3028:1 3031:1 3034:1 3038:2 3048:8 3049:1 3103:1 3127:1 3137:1 3147:3 3152:1 3153:1 3162:1 3190:1 3192:1 3193:2 3194:1 3199:1 3203:1 3209:1 3210:2 3213:1 3222:1 3230:1 3232:1 3252:1 3268:1 3286:2 3291:1 3309:1 3314:1 3315:17 3318:1 3325:1 3328:2 3330:2 3331:2 3332:1 3346:1 3350:1 3352:1 3358:1 3359:1 3366:1 3394:1 3399:2 3400:1 3406:1 3407:1 3410:3 3414:2 3423:1 3446:1 3459:1 3470:1 3473:1 3480:2 3483:1 3486:2 3488:1 3494:3 3496:1 3506:1 3510:1 3513:2 3520:1 3523:1 3540:2 3541:1 3542:2 3554:2 3560:3 3561:1 3575:2 3576:1 3581:5 3583:2 3587:2 3590:1 3591:2 3600:4 3602:1 3608:1 3610:2 3611:2 3629:1 3631:2 3646:1 3650:2 3652:4 3660:1 3672:1 3674:1 3683:2 3691:7 3692:5 3698:2 3730:1 3733:2 3737:1 3742:1 3756:1 3759:1 3760:2 3779:1 3787:2 3790:1 3791:1 3794:1 3798:1 3799:1 3813:2 3822:1 3828:2 3838:2 3845:4 3846:1 3848:3 3849:1 3853:2 3856:1 3859:1 3863:2 3875:1 3882:1 3888:1 3898:1 3912:1 3917:1 3930:1 3937:1 3952:7 3957:1 3977:3 3984:1 3993:2 3999:1 4003:1 4005:3 4018:2 4032:2 4038:1 4045:1 4057:1 4060:1 4062:1 4064:4 4065:2 4078:1 4084:4 4097:1 4107:1 4116:1 4118:1 4125:1 4134:1 4140:2 4146:2 4160:1 4164:1 4167:2 4172:1 4173:3 4175:1 4189:1 4201:1 4217:3 4218:1 4226:1 4234:5 4246:1 4249:1 4251:1 4275:5 4284:3 4287:1 4294:1 4295:1 4302:4 4307:2 4317:1 4319:5 4341:1 4344:2 4350:1 4361:1 4365:3 4369:3 4383:3 4386:1 4394:1 4403:1 4419:1 4422:2 4429:1 4431:1 4445:1 4446:1 4461:1 4467:1 4477:1 4488:16 4490:2 4496:1 4499:1 4501:1 4502:1 4509:1 4516:1 4527:1 4535:1 4546:1 4554:1 4585:1 4608:3 4616:1 4625:1 4629:4 4631:7 4632:3 4634:1 4637:2 4638:2 4639:2 4642:1 4643:2 4645:6 4646:4 4650:1 4651:2 4652:8 4658:2 4659:6 4662:1 4663:1 4674:1 4677:1 4701:1 4718:1 4730:1 4737:3 4744:1 4762:1 4767:1 4776:1 4801:1 4834:1 4842:1 4866:1 4877:1 4887:2 4911:1 4916:1 4941:3 4945:2 4955:1 4982:1 4985:1 5006:6 5012:1 5018:1 5026:1 5037:1 5050:1 5055:1 5064:2 5075:1 5081:1 5088:1 5094:1 5101:1 5121:1 5130:1 5144:1 5153:1 5156:1 5173:1 5197:2 5206:1 5207:1 5212:2 5216:1 5221:1 5230:5 5231:1 5234:2 5236:1 5239:4 5240:1 5255:2 5256:1 5263:1 5277:1 5281:3 5292:2 5293:1 5296:1 5298:1 5309:6 5314:1 5315:1 5330:2 5336:1 5383:1 5392:1 5398:1 5416:1 5420:1 5422:1 5428:1 5440:1 5444:1 5445:1 5446:1 5453:3 5456:1 5467:1 5479:1 5497:1 5503:1 5510:2 5521:2 5528:1 5535:2 5538:2 5539:1 5541:4 5561:1 5565:6 5567:1 5568:1 5575:1 5576:2 5583:2 5585:1 5586:1 5588:1 5589:1 5591:1 5596:1 5620:1 5622:1 5623:1 5624:1 5629:2 5632:2 5634:1 5639:1 5641:1 5642:2 5643:1 5647:13 5680:3 5686:1 5703:1 5715:1 5725:4 5735:2 5751:6 5756:1 5761:1 5763:1 5801:1 5805:1 5828:1 5834:1 5836:1 5838:1 5844:2 5845:3 5847:1 5849:1 5850:1 5852:2 5853:1 5859:2 5860:4 5861:3 5872:1 5897:1 5904:1 5938:1 5954:1 5973:1 5975:1 5987:2 5991:4 5992:2 6006:1 6015:1 6047:1 6055:2 6064:2 6066:1 6076:1 6082:1 6092:2 6115:1 6129:2 6137:2 6146:1 6152:1 6162:1 6210:1 6215:1 6223:1 6233:2 6235:1 6238:1 6242:1 6246:1 6253:1 6254:9 6255:1 6259:1 6262:2 6264:1 6265:3 6267:1 6273:1 6275:1 6279:1 6287:2 6297:1 6300:1 6301:1 6307:1 6310:1 6316:1 6340:2 6344:1 6345:3 6357:2 6361:1 6366:2 6369:1 6385:1 6389:1 6394:1 6398:1 6401:2 6402:1 6430:2 6449:2 6453:1 6460:1 6465:1 6468:1 6469:2 6477:1 6486:1 6490:7 6498:2 6516:1 6524:1 6528:1 6534:1 6537:3 6538:2 6545:1 6549:6 6550:1 6552:1 6554:1 6557:5 6560:1 6564:1 6581:1 6587:1 6588:1 6590:1 6599:1 6602:1 6604:1 6620:1 6621:1 6626:4 6631:5 6641:1 6654:1 6658:1 6672:3 6674:1 6677:1 6679:1 6686:1 6689:1 6697:1 6701:1 6703:1 6705:1 6712:1 6721:1 6728:1 6742:1 6772:1 6797:1 6800:1 6806:1 6810:2 6846:1 6857:1 6859:2 6860:6 6864:4 6868:1 6869:1 6870:1 6876:3 6881:1 6894:6 6895:2 6898:2 6912:1 6913:3 6922:1 6935:1 6942:1 6943:2 6946:2 6951:1 6959:1 6962:1 6964:1 6969:1 6980:1 6981:1 6988:1 6989:2 6991:1 6997:1 7002:2 7006:1 7015:1 7016:1 7027:1 7052:4 7067:4 7068:9 7081:2 7086:1 7090:4 7092:4 7093:3 7094:1 7109:1 7116:4 7117:3 7121:1 7136:50 7137:2 7140:2 7147:1 7155:11 7156:9 7162:2 7166:1 7194:1 7201:1 7202:1 7211:1 7212:2 7222:1 7224:1 7229:3 7230:2 7235:1 7242:1 7244:2 7256:2 7264:3 7276:1 7283:1 7294:2 7300:1 7305:2 7319:1 7325:1 7326:2 7348:1 7352:2 7355:1 7356:3 7359:1 7385:1 7389:1 7390:1 7391:1 7402:3 7446:1 7461:1 7477:1 7486:1 7489:2 7491:1 7496:1 7507:1 7508:1 7509:1 7517:1 7520:1 7523:1 7538:2 7547:1 7556:1 7558:1 7559:3 7568:1 7575:1 7576:1 7580:2 7592:1 7593:2 7609:27 7618:1 7619:1 7637:3 7640:3 7642:1 7644:2 7648:1 7670:1 7676:1 7696:6 7698:1 7700:1 7706:1 7734:1 7744:5 7747:2 7748:2 7751:1 7756:1 7757:1 7771:1 7777:2 7778:4 7784:3 7790:1 7792:1 7796:1 7812:2 7814:1 7820:1 7825:1 7836:1 7840:1 7850:1 7857:1 7858:2 7864:1 7866:1 7876:1 7877:2 7886:2 7889:2 7890:1 7918:1 7940:1 7944:1 7945:1 7950:1 7952:1 7957:1 7976:3 7978:2 7989:7 7991:1 8005:2 8008:3 8023:2 8034:1 8036:1 8043:1 8049:2 8052:1 8054:2 8063:1 8069:1 8073:1 8085:2 8095:1 8113:2 8120:1 8124:1 8148:1 8153:1 8154:1 8163:1 8164:1 8171:1 8197:1 8199:1 8215:3 8228:1 8247:1 8250:1 8253:2 8254:1 8258:3 8282:3 8289:1 8295:2 8306:1 8311:1 8330:1 8331:1 8332:1 8335:1 8340:1 8345:2 8350:8 8351:1 8356:1 8358:1 8363:2 8370:4 8378:1 8387:2 8389:1 8407:7 8409:1 8423:1 8426:1 8434:2 8437:1 8445:11 8446:6 8460:3 8461:1 8469:1 8472:1 8501:3 8507:1 8515:1 8521:1 8525:3 8527:1 8541:1 8544:1 8550:2 8552:2 8553:3 8555:2 8558:1 8567:2 8578:1 8584:1 8600:1 8610:1 8612:1 8620:2 8622:1 8632:1 8635:5 8637:2 8638:1 8642:1 8650:1 8655:1 8656:4 8658:2 8663:1 8664:1 8674:4 8698:1 8699:1 8706:1 8728:1 8735:1 8741:1 8756:3 8763:1 8765:3 8771:1 8782:1 8784:1 8786:1 8791:1 8793:1 8817:1 8820:1 8833:1 8838:1 8846:1 8853:8 8856:3 8885:3 8887:1 8894:1 8895:1 8904:3 8908:1 8926:1 8942:1 8943:2 8947:1 8953:1 8954:3 8956:3 8958:2 8964:1 8981:1 8987:2 8990:2 9020:2 9022:1 9031:1 9041:1 9067:2 9073:1 9077:1 9087:1 9090:1 9101:2 9107:1 9109:1 9110:1 9113:2 9124:1 9131:1 9132:1 9144:1 9155:1 9172:1 9173:1 9178:2 9179:1 9191:1 9192:1 9196:1 9216:1 9218:1 9221:1 9222:1 9224:1 9230:5 9243:4 9249:4 9251:2 9263:1 9281:2 9291:1 9300:3 9301:1 9314:2 9328:1 9332:2 9337:2 9347:1 9348:1 9354:1 9358:1 9361:4 9364:1 9388:2 9391:1 9396:13 9398:2 9402:2 9406:1 9424:2 9425:2 9434:1 9439:1 9450:1 9469:1 9488:1 9491:2 9493:1 9509:1 9524:1 9534:1 9536:1 9537:1 9539:1 9540:1 9542:4 9550:1 9552:1 9555:2 9588:1 9598:1 9601:4 9603:1 9608:1 9610:1 9612:1 9617:1 9620:3 9624:1 9626:1 9632:1 9635:2 9642:4 9660:1 9681:1 9691:1 9695:1 9696:1 9699:1 9703:1 9708:1 9709:1 9710:2 9711:1 9713:2 9718:1 9725:2 9728:1 9732:1 9739:1 9748:1 9750:3 9755:1 9757:1 9764:2 9766:1 9769:1 9774:1 9775:7 9778:4 9791:2 9795:3 9799:1 9802:1 9807:1 9812:2 9820:1 9834:2 9848:7 9849:2 9866:2 9868:1 9869:1 9878:4 9899:1 9913:1 9916:1 9920:1 9926:3 9936:2 9943:1 9946:7 9964:2 9972:1 9980:1 9982:1 9993:3 10025:1 10030:1 10036:1 10057:1 10085:1 10091:1 10096:1 10102:1 10118:1 10120:1 10136:1 10137:2 10141:3 10144:1 10145:2 10149:1 10152:2 10156:1 10157:5 10158:6 10159:1 10167:1 10168:1 10172:1 10174:2 10177:3 10181:1 10183:4 10188:1 10189:1 10192:1 10195:1 10198:1 10200:1 10201:3 10203:3 10208:1 10213:1 10226:3 10232:1 10234:2 10255:1 10257:1 10259:4 10262:1 10294:1 10297:1 10312:1 10321:2 10323:1 10326:2 10339:1 10341:1 10385:1 10392:1 10404:1 10405:1 10406:1 10412:1 10423:1 10425:1 10426:3 10445:1 10463:1 10474:1 10477:1 10478:1 10484:2 10487:1 10500:3 10503:2 10507:1 10509:1 10518:2 10523:2 10525:1 10526:1 10528:2 10531:1 10537:3 10539:1 10540:1 10541:2 10550:1 10556:3 10559:2 10570:1 10572:1 10587:21 10588:1 10611:1 10621:1 10625:5 10632:1 10635:2 10636:2 10644:1 10648:2 10655:1 10673:1 10675:2 10682:3 10683:1 10690:1 10693:3 10695:2 10696:1 10706:1 10724:1 10738:1 10759:1 10766:1 10783:1 10796:1 10798:1 10803:3 10804:1 10805:1 10807:1 10808:1 10814:1 10821:1 10822:5 10826:1 10827:2 10828:1 10830:2 10840:1 10841:1 10851:1 10860:1 10863:1 10864:1 10866:1 10870:2 10874:5 10875:1 10880:5 10884:1 10898:1 10921:1 10934:2 10938:1 10947:1 10953:2 10972:1 10975:1 10983:1 10984:1 10998:1 11009:1 11014:1 11016:1 11017:1 11023:6 11032:1 11038:1 11043:2 11046:1 11058:1 11063:1 11070:1 11071:1 11076:2 11081:2 11100:2 11103:1 11117:2 11127:1 11129:2 11150:1 11170:2 11175:1 11189:1 11191:2 11195:1 11201:2 11205:1 11219:1 11236:1 11244:1 11246:1 11247:1 11251:5 11252:1 11253:4 11255:1 11256:2 11267:2 11273:2 11279:1 11283:1 11285:1 11290:1 11335:1 11338:2 11339:1 11341:1 11357:1 11368:1 11376:1 11388:1 11393:1 11407:1 11410:1 11413:1 11423:1 11439:1 11476:3 11494:2 11507:1 11518:1 11520:1 11523:1 11527:1 11539:1 11545:1 11550:1 11552:2 11553:1 11568:1 11570:3 11579:1 11593:1 11599:1 11606:1 11647:1 11658:1 11663:1 11665:1 11666:3 11674:1 11687:1 11705:15 11710:6 11719:1 11723:2 11728:1 11739:1 11746:2 11747:3 11753:4 11767:1 11770:1 11775:1 11779:2 11780:1 11786:1 11792:2 11794:1 11798:1 11800:1 11829:1 11845:1 11850:1 11851:1 11858:2 11863:1 11879:1 11886:1 11887:1 11889:1 11890:1 11903:1 11923:1 11924:1 11928:1 11930:2 11932:1 11942:1 11944:1 11946:1 11963:1 11977:1 11982:5 11994:2 11996:1 12041:1 12042:1 12060:1 12071:2 12075:1 12078:1 12082:1 12083:1 12085:4 12090:4 12099:1 12101:2 12105:2 12106:2 12115:3 12122:1 12138:8 12157:1 12161:2 12186:1 12193:4 12194:1 12205:1 12217:1 12221:2 12223:1 12224:1 12225:2 12233:9 12236:1 12242:3 12247:1 12260:1 12264:1 12272:1 12273:1 12279:2 12283:1 12289:1 12290:1 12301:20 12306:1 12308:1 12311:1 12327:1 12342:2 12343:2 12346:1 12350:3 12366:1 12371:2 12374:1 12384:2 12394:1 12395:1 12397:1 12421:3 12441:1 12446:6 12449:1 12465:1 12471:2 12475:1 12478:1 12499:5 12515:1 12521:1 12525:1 12528:1 12533:3 12535:1 12537:2 12542:1 12544:1 12549:1 12551:1 12558:6 12559:1 12561:1 12562:2 12563:1 12564:2 12565:1 12569:8 12570:3 12584:1 12587:1 12590:1 12591:1 12593:1 12594:1 12595:1 12616:1 12620:1 12636:1 12643:1 12675:2 12680:2 12685:1 12686:1 12695:1 12706:1 12711:1 12719:7 12751:1 12756:1 12758:1 12760:1 12767:1 12768:1 12770:1 12773:2 12774:1 12778:1 12790:2 12794:1 12814:2 12820:1 12821:1 12829:1 12830:1 12833:1 12836:8 12845:1 12857:3 12861:1 12867:1 12890:1 12902:1 12903:2 12909:2 12913:1 12923:1 12929:1 12931:1 12934:1 12944:1 12957:2 12977:1 12983:1 12984:1 12990:1 12993:1 12997:1 13004:1 13010:1 13017:1 13052:1 13063:2 13075:1 13077:5 13091:1 13104:1 13123:1 13143:1 13175:1 13199:1 13200:1 13204:3 13205:4 13212:1 13222:2 13223:2 13225:1 13227:1 13229:2 13230:1 13248:1 13250:1 13251:1 13256:1 13265:2 13276:1 13285:1 13294:2 13305:1 13312:1 13327:2 13334:1 13337:1 13349:1 13353:1 13355:1 13361:2 13367:1 13375:3 13380:2 13428:1 13430:2 13433:1 13444:2 13457:2 13476:2 13477:1 13484:1 13491:2 13506:1 13513:1 13517:1 13529:1 13531:1 13540:3 13552:1 13555:1 13558:2 13563:1 13587:1 13589:1 13595:1 13637:1 13643:3 13689:2 13693:2 13696:1 13700:1 13702:1 13712:1 13722:2 13734:1 13762:2 13774:1 13776:3 13781:1 13793:1 13794:1 13795:2 13799:1 13800:1 13801:1 13804:1 13806:1 13829:1 13887:1 13891:1 13894:1 13900:2 13922:1 13928:1 13944:1 13974:1 13991:1 13995:2 14004:1 14010:1 14027:1 14032:1 14034:1 14035:2 14047:1 14064:2 14071:3 14075:1 14096:1 14098:1 14099:1 14107:1 14113:2 14130:3 14134:1 14156:1 14158:1 14168:2 14184:1 14189:2 14211:1 14213:1 14216:1 14217:2 14225:1 14229:6 14244:4 14252:1 14263:5 14266:1 14279:3 14299:1 14302:1 14311:1 14321:1 14328:2 14332:1 14335:2 14377:1 14391:2 14392:1 14403:2 14409:1 14413:1 14417:4 14420:1 14424:1 14426:1 14432:1 14443:2 14445:4 14446:1 14450:1 14453:1 14462:2 14465:1 14475:1 14491:2 14497:2 14523:1 14532:2 14535:1 14539:1 14550:3 14559:2 14567:1 14570:1 14572:3 14587:1 14600:3 14605:1 14615:1 14648:1 14667:1 14673:1 14676:1 14682:1 14683:1 14686:1 14687:18 14690:1 14703:1 14704:1 14706:1 14709:3 14712:1 14738:3 14772:2 14783:1 14789:2 14796:4 14817:2 14821:1 14832:2 14845:1 14876:1 14883:1 14890:1 14891:1 14892:1 14902:2 14903:1 14912:1 14928:1 14929:1 14931:3 14934:1 14946:1 14950:1 14954:6 14955:2 14956:2 14957:6 14958:2 14959:1 14963:2 14965:1 14967:2 14968:5 14972:1 14973:1 14975:1 14978:1 14979:2 14987:1 15004:1 15013:2 15021:1 15024:1 15037:1 15060:1 15068:1 15069:1 15083:1 15087:2 15088:1 15090:1 15095:1 15109:2 15113:1 15114:1 15117:1 15119:2 15120:2 15128:1 15140:2 15143:1 15162:1 15169:1 15170:1 15178:1 15192:1 15198:1 15204:1 15214:1 15217:1 15240:1 15250:1 15252:1 15254:1 15262:3 15272:1 15274:2 15281:2 15282:1 15290:1 15294:5 15299:1 15302:2 15308:1 15316:1 15321:2 15324:1 15325:4 15329:2 15334:1 15336:1 15342:4 15344:2 15353:4 15359:1 15367:1 15372:1 15402:1 15407:14 15408:1 15422:1 15426:1 15431:2 15432:4 15434:2 15437:1 15472:1 15476:1 15490:1 15491:1 15497:2 15499:1 15507:1 15512:4 15524:1 15525:1 15534:1 15538:4 15541:2 15558:1 15574:1 15575:2 15580:1 15596:5 15603:1 15607:1 15617:2 15619:1 15622:1 15646:1 15661:2 15667:1 15688:1 15703:2 15705:4 15719:1 15720:1 15722:1 15731:1 15748:1 15763:1 15765:1 15768:1 15787:1 15790:1 15799:1 15808:2 15814:1 15821:1 15828:1 15837:1 15845:2 15854:1 15858:2 15862:1 15864:2 15870:1 15873:1 15886:1 15889:1 15890:1 15909:1 15930:1 15938:1 15959:1 15966:1 15979:1 15982:1 15988:1 16000:1 16005:1 16007:1 16021:3 16027:1 16036:1 16037:3 16041:1 16046:1 16047:1 16054:3 16059:2 16060:2 16064:2 16068:1 16070:1 16071:10 16109:1 16111:2 16112:1 16116:3 16117:1 16121:1 16128:3 16133:1 16136:2 16139:1 16140:1 16156:1 16176:1 16189:1 16203:1 16204:1 16222:4 16226:1 16236:1 16244:2 16256:1 16257:1 16261:1 16266:1 16276:1 16279:1 16309:1 16311:1 16312:1 16313:1 16315:1 16334:1 16339:1 16343:1 16344:1 16347:2 16357:1 16379:1 16401:1 16405:1 16417:1 16425:1 16426:3 16433:1 16437:1 16439:1 16450:1 16452:1 16466:1 16487:1 16514:2 16540:1 16542:1 16551:2 16570:2 16577:1 16651:2 16657:2 16658:1 16664:1 16674:1 16680:1 16687:1 16703:1 16709:1 16719:1 16721:1 16727:1 16735:1 16745:1 16746:1 16748:1 16758:1 16770:1 16771:1 16787:1 16791:3 16795:1 16805:1 16838:1 16848:15 16860:1 16880:1 16906:1 16931:1 16932:1 16954:14 16963:4 16964:2 16975:1 16977:6 16990:1 16997:1 17001:3 17012:1 17025:2 17048:6 17058:2 17068:2 17084:2 17085:1 17087:1 17107:3 17112:2 17114:1 17125:2 17126:3 17137:2670 17147:1 17151:1 17160:1 17161:1 17162:1 17163:1 17172:1 17188:1 17197:1 17200:1 17201:1 17202:1 17210:1 17220:2 17235:1 17238:1 17251:1 17258:2 17262:1 17263:1 17282:1 17296:1 17307:1 17311:1 17314:1 17317:2 17321:6 17322:4 17332:1 17339:1 17341:1 17351:1 17355:1 17359:1 17365:1 17375:1 17386:1 17399:1 17404:1 17406:1 17407:1 17448:1 17450:3 17453:2 17459:1 17466:1 17494:1 17500:2 17502:1 17503:3 17507:2 17521:1 17522:1 17534:2 17536:1 17549:1 17551:2 17552:1 17564:2 17566:1 17573:1 17581:1 17588:1 17591:1 17603:2 17608:1 17616:1 17627:2 17632:1 17636:1 17639:1 17642:2 17643:2 17644:2 17646:2 17655:1 17661:1 17670:2 17672:1 17691:2 17692:3 17708:3 17712:1 17716:1 17728:3 17752:3 17753:1 17758:1 17761:1 17770:1 17771:2 17773:1 17777:9 17787:1 17801:1 17803:1 17818:1 17823:2 17824:1 17825:1 17833:2 17846:5 17847:1 17860:1 17862:2 17877:1 17891:1 17900:4 17905:1 17907:2 17912:1 17914:2 17929:4 17930:1 17935:1 17938:1 17942:2 17956:1 17960:1 17961:4 17968:2 17970:1 17975:3 18006:4 18009:1 18012:1 18017:1 18031:1 18034:2 18038:2 18039:2 18043:1 18046:1 18047:2 18050:1 18058:1 18068:2 18075:1 18077:1 18078:1 18079:1 18080:1 18083:1 18088:1 18117:1 18130:3 18144:1 18145:2 18146:1 18147:1 18149:1 18152:1 18153:3 18158:1 18178:1 18182:1 18183:1 18185:1 18187:1 18196:1 18203:2 18208:1 18214:2 18227:1 18229:2 18237:2 18238:1 18242:1 18249:1 18252:1 18263:1 18268:1 18269:1 18276:1 18279:2 18282:4 18287:1 18288:4 18289:1 18335:1 18340:1 18354:3 18360:1 18363:1 18368:2 18369:2 18371:2 18388:2 18389:3 18392:3 18399:3 18404:1 18405:3 18407:2 18409:1 18421:5 18430:3 18449:1 18451:1 18458:1 18460:1 18462:1 18465:2 18466:4 18494:1 18495:2 18504:2 18505:1 18507:1 18510:1 18526:2 18531:3 18548:1 18552:2 18553:3 18569:1 18570:1 18577:3 18578:22 18579:2 18586:1 18592:5 18596:1 18612:2 18613:1 18620:1 18627:1 18643:3 18652:1 18653:1 18663:1 18672:1 18678:1 18683:1 18695:1 18697:1 18700:1 18701:1 18705:1 18726:1 18738:1 18746:1 18757:1 18768:4 18787:1 18789:2 18802:2 18807:1 18817:2 18828:1 18830:1 18834:1 18840:2 18850:1 18865:8 18871:2 18878:1 18886:1 18916:1 18917:1 18920:1 18927:1 18933:1 18937:1 18968:1 18969:1 18973:4 18987:4 18996:1 18999:1 19002:1 19006:1 19010:1 19011:1 19020:1 19023:2 19024:1 19051:2 19057:3 19063:2 19066:3 19073:3 19074:1 19078:1 19080:1 19081:1 19089:2 19093:1 19116:5 19126:2 19127:1 19135:1 19142:1 19149:2 19153:3 19162:2 19176:1 19178:2 19183:1 19190:2 19191:1 19198:5 19202:1 19206:2 19207:1 19209:1 19213:1 19215:2 19227:3 19258:2 19264:1 19271:1 19277:2 19296:1 19297:1 19298:1 19302:2 19304:1 19312:2 19319:2 19321:2 19327:2 19331:2 19332:1 19337:2 19353:1 19358:2 19381:2 19392:1 19393:4 19401:1 19402:1 19403:4 19418:1 19420:1 19427:2 19431:1 19435:1 19440:1 19441:1 19446:2 19447:1 19450:1 19452:1 19460:1 19463:1 19476:1 19480:1 19481:1 19486:1 19510:2 19517:1 19519:1 19524:2 19525:3 19533:1 19535:1 19538:1 19550:1 19618:1 19622:1 19640:2 19652:2 19656:1 19664:2 19665:2 19667:1 19669:1 19673:1 19674:1 19679:1 19687:1 19694:2 19699:3 19705:1 19714:1 19723:1 19740:1 19746:1 19750:1 19758:1 19768:1 19769:1 19787:2 19789:1 19790:1 19791:1 19794:1 19796:2 19799:1 19800:1 19811:1 19814:1 19818:2 19825:2 19830:2 19833:1 19834:1 19838:2 19839:1 19841:1 19842:1 19851:1 19853:2 19874:14 19886:2 19887:2 19892:2 19902:1 19916:1 19924:1 19929:1 19931:1 19941:1 19943:2 19948:1 19949:2 19952:1 19955:1 19984:1 20000:2 20010:1 20019:2 20024:1 20026:1 20030:1 20034:6 20036:3 20037:1 20046:2 20054:1 20055:1 20056:1 20059:1 20061:1 20081:1 20082:1 20083:1 20085:3 20087:4 20088:2 20089:1 20111:1 20114:1 20151:1 20171:4 20174:1 20176:5 20178:3 20179:3 20181:1 20182:1 20186:1 20189:2 20193:1 20194:2 20202:1 20204:1 20205:5 20212:1 20213:1 20218:1 20219:1 20223:1 20236:1 20244:2 20252:2 20255:2 20269:1 20297:1 20315:2 20317:2 20322:1 20324:1 20326:1 20329:1 20338:1 20344:1 20351:1 20364:1 20365:3 20368:1 20374:1 20375:1 20377:1 20381:3 20383:2 20392:2 20395:1 20396:1 20405:1 20409:1 20421:2 20423:1 20425:5 20431:1 20440:1 20441:4 20446:1 20447:3 20455:1 20463:1 20470:1 20476:1 20484:2 20487:1 20490:1 20491:1 20492:4 20498:2 20503:1 20512:2 20513:10 20515:1 20519:2 20525:1 20526:1 20529:1 20531:1 20547:1 20549:1 20553:1 20575:9 20576:1 20589:1 20609:1 20624:1 20631:6 20632:1 20637:1 20640:1 20642:1 20649:1 20650:1 20664:1 20665:3 20678:1 20687:1 20690:4 20701:1 20715:1 20717:1 20722:2 20723:1 20726:7 20728:2 20735:3 20739:1 20740:4 20749:1 20753:1 20757:1 20759:1 20773:1 20775:5 20787:1 20794:1 20795:3 20797:1 20800:3 20809:1 20815:1 20817:1 20827:1 20831:1 20834:1 20838:1 20846:1 20851:1 20863:1 20866:1 20890:1 20895:1 20902:1 20903:1 20904:1 20906:1 20914:1 20921:2 20935:10 20936:3 20941:1 20952:2 20957:3 20962:4 20969:1 20970:3 20982:2 20983:1 20986:1 20996:1 21021:1 21032:1 21033:1 21037:2 21040:2 21055:1 21056:1 21059:1 21080:1 21083:1 21084:1 21085:1 21086:2 21101:1 21104:2 21113:1 21121:1 21128:2 21131:1 21138:2 21139:1 21142:1 21170:1 21175:3 21204:3 21215:1 21249:3 21253:1 21269:1 21294:3 21297:3 21304:7 21314:2 21322:1 21328:1 21330:3 21341:2 21344:2 21345:3 21358:1 21368:4 21406:1 21410:1 21413:1 21434:1 21436:1 21441:1 21446:1 21458:1 21463:1 21472:4 21476:1 21484:1 21502:1 21505:1 21510:3 21527:2 21534:1 21537:2 21548:1 21549:1 21559:1 21566:1 21575:1 21576:2 21579:4 21584:3 21590:1 21592:1 21603:1 21605:1 21609:1 21624:3 21625:2 21626:1 21628:2 21638:1 21641:1 21644:1 21650:1 21692:1 21695:1 21696:4 21697:1 21698:1 21701:1 21706:1 21712:1 21714:1 21715:4 21716:1 21718:1 21719:1 21722:1 21725:1 21737:1 21749:1 21766:3 21769:1 21779:1 21789:2 21832:3 21840:1 21845:2 21853:1 21878:2 21884:1 21886:1 21902:1 21914:1 21929:1 21941:1 21943:2 21951:2 21953:1 21964:1 21979:1 21994:1 21996:1 21998:1 22008:2 22017:1 22029:2 22047:1 22057:1 22066:1 22084:1 22090:1 22101:2 22103:1 22113:1 22136:2 22140:1 22165:2 22176:4 22186:1 22212:1 22213:8 22220:1 22228:1 22233:1 22236:1 22241:3 22245:1 22259:1 22261:1 22267:1 22270:5 22279:1 22280:1 22287:1 22293:1 22317:4 22319:1 22340:4 22341:2 22345:1 22346:2 22381:1 22425:1 22426:1 22427:1 22451:1 22453:1 22454:1 22455:1 22461:1 22464:2 22467:3 22469:4 22471:1 22473:2 22475:1 22476:1 22477:1 22479:2 22482:1 22483:1 22484:1 22493:1 22494:1 22505:1 22518:6 22535:1 22536:2 22539:1 22544:1 22551:1 22552:1 22555:1 22557:1 22582:12 22585:6 22587:1 22609:1 22611:2 22612:1 22618:1 22619:1 22630:1 22635:1 22636:1 22639:2 22643:3 22651:3 22667:1 22669:1 22670:1 22681:1 22690:1 22728:1 22735:1 22756:1 22767:1 22768:1 22777:3 22781:1 22787:1 22794:1 22796:1 22800:3 22809:2 22813:1 22817:1 22822:3 22823:2 22826:1 22843:1 22845:1 22850:1 22857:1 22858:2 22860:1 22863:1 22866:1 22872:1 22874:1 22890:1 22896:1 22901:5 22913:2 22917:1 22918:1 22924:1 22930:1 22932:1 22941:2 22946:2 22950:1 22952:3 22953:1 22957:1 22968:1 22974:1 22975:1 23001:1 23002:18 23003:2 23023:1 23026:1 23032:1 23033:1 23036:1 23045:1 23055:1 23066:1 23067:1 23074:2 23078:1 23085:1 23098:2 23101:1 23105:2 23106:1 23110:1 23111:1 23131:1 23133:1 23139:1 23143:1 23145:1 23160:1 23166:1 23173:1 23179:1 23197:1 23198:1 23203:1 23220:12 23221:1 23235:1 23240:2 23241:1 23247:1 23253:1 23258:1 23264:3 23270:1 23276:1 23280:1 23285:7 23286:1 23291:1 23304:1 23308:1 23311:2 23314:1 23340:1 23353:3 23359:1 23365:1 23371:1 23386:1 23398:1 23407:1 23422:2 23426:2 23428:1 23437:2 23448:1 23452:1 23459:1 23473:1 23480:2 23491:1 23527:1 23528:2 23534:1 23538:1 23540:1 23550:1 23560:1 23564:3 23569:5 23571:1 23577:1 23579:2 23594:1 23617:7 23629:1 23632:1 23636:1 23648:1 23650:8 23663:2 23677:1 23682:1 23685:1 23688:4 23689:1 23690:1 23698:1 23701:1 23705:1 23714:1 23715:1 23746:1 23751:1 23759:1 23769:1 23777:2 23795:1 23803:1 23821:1 23826:1 23833:3 23838:1 23853:1 23860:1 23882:1 23889:1 23903:1 23904:1 23906:1 23919:2 23922:1 23926:1 23928:1 23929:3 23944:1 23945:1 23952:1 23953:1 23958:2 23959:1 23971:1 23981:1 23988:3 23991:1 24023:5 24030:1 24035:1 24044:1 24058:1 24065:1 24074:2 24075:1 24084:1 24088:1 24094:16 24095:2 24105:2 24115:1 24124:1 24126:1 24147:4 24150:1 24151:2 24163:1 24165:1 24170:2 24183:1 24186:2 24188:2 24199:1 24207:1 24211:4 24215:3 24221:3 24224:3 24226:4 24228:1 24230:1 24241:1 24245:1 24246:1 24253:1 24293:1 24300:1 24301:1 24302:1 24314:2 24324:1 24337:1 24340:2 24350:1 24362:2 24370:2 24380:1 24384:2 24386:1 24387:1 24388:2 24399:2 24415:6 24417:1 24418:1 24425:1 24426:1 24427:1 24429:1 24434:2 24439:1 24442:1 24446:1 24447:1 24467:1 24470:2 24471:2 24483:2 24531:1 24537:2 24553:1 24561:1 24562:1 24569:3 24596:1 24621:1 24634:1 24635:1 24641:6 24652:1 24653:1 24677:1 24684:1 24689:1 24690:1 24703:1 24707:1 24711:3 24716:1 24721:1 24744:2 24746:2 24747:2 24750:2 24758:3 24769:1 24773:1 24785:1 24788:1 24793:1 24797:2 24813:1 24823:2 24837:1 24838:2 24839:1 24849:1 24851:1 24862:1 24886:1 24895:2 24912:2 24915:5 24918:1 24921:1 24922:2 24931:1 24933:2 24936:1 24938:2 24943:1 24950:1 24956:1 24961:3 24972:2 24974:1 24977:1 24980:1 24985:2 24986:2 24991:1 25000:1 25013:1 25016:1 25021:1 25026:1 25028:1 25032:2 25037:1 25063:1 25077:6 25081:3 25084:2 25098:1 25099:1 25108:1 25120:1 25126:1 25132:2 25137:1 25143:2 25148:2 25151:1 25155:2 25163:1 25164:1 25172:2 25174:1 25181:1 25187:1 25190:1 25192:1 25193:1 25200:1 25201:1 25204:4 25205:1 25206:1 25207:1 25210:3 25213:1 25217:2 25219:1 25222:1 25229:3 25238:2 25243:1 25247:1 25279:1 25288:1 25297:5 25311:1 25318:2 25335:2 25350:1 25358:1 25361:1 25401:1 25404:2 25425:1 25429:1 25439:1 25444:1 25445:2 25457:1 25459:1 25465:2 25480:2 25482:1 25486:1 25487:1 25490:1 25492:3 25499:5 25513:1 25521:1 25532:1 25542:1 25553:1 25563:7 25598:2 25600:1 25613:1 25631:1 25636:1 25648:1 25652:1 25655:1 25656:1 25660:2 25674:2 25680:1 25691:1 25699:1 25715:1 25734:1 25739:1 25742:1 25745:1 25755:2 25759:2 25760:3 25761:1 25766:1 25768:1 25773:3 25775:1 25778:2 25790:1 25792:2 25799:1 25801:5 25811:1 25813:1 25815:1 25816:1 25817:1 25823:1 25828:3 25832:2 25836:2 25840:1 25845:1 25847:5 25851:1 25860:3 25867:3 25870:1 25883:3 25884:1 25886:3 25889:1 25893:1 25906:3 25922:1 25924:1 25941:1 25949:1 25963:1 25969:3 25971:5 25977:7 26008:5 26021:1 26023:1 26034:1 26045:1 26051:1 26052:1 26054:1 26064:1 26072:1 26081:1 26083:7 26088:1 26092:2 26114:1 26120:1 26126:1 26131:1 26141:1 26146:1 26158:1 26162:1 26164:1 26170:1 26172:1 26173:2 26179:2 26182:1 26196:3 26231:1 26233:1 26234:1 26245:7 26246:2 26249:2 26252:1 26257:1 26259:1 26263:2 26276:1 26277:1 26308:6 26325:1 26351:1 26365:1 26372:1 26401:1 26424:1 26426:1 26441:1 26468:1 26470:1 26488:2 26495:1 26497:1 26498:2 26499:3 26502:2 26504:3 26511:1 26515:2 26516:1 26525:1 26539:1 26552:1 26561:1 26571:1 26576:1 26592:1 26611:3 26614:1 26620:2 26648:2 26651:2 26653:2 26668:1 26670:1 26683:1 26686:1 26699:1 26704:1 26705:1 26715:1 26721:4 26722:1 26727:1 26728:2 26730:1 26736:1 26758:1 26760:1 26763:4 26767:2 26780:1 26784:1 26806:1 26813:1 26819:1 26825:1 26836:1 26844:1 26862:1 26866:1 26868:3 26876:1 26878:1 26892:1 26901:3 26903:1 26919:1 26940:2 26943:2 26961:1 26965:1 26966:3 26973:3 26974:4 26975:1 26978:1 27006:1 27012:1 27020:1 27022:5 27025:1
1 12:2 34:1 36:1 43:1 45:1 50:1 55:1 56:1 60:1 72:1 90:2 92:1 108:1 124:1 137:1 138:4 147:1 152:2 153:1 159:1 165:2 168:3 175:1 178:6 181:1 189:1 194:1 204:1 221:1 222:1 231:1 236:7 248:1 255:3 262:1 277:2 301:1 312:5 314:3 318:3 320:1 326:3 333:1 337:2 356:3 363:1 375:2 392:6 394:6 403:1 414:2 446:1 451:1 458:1 478:1 480:2 509:1 518:1 522:2 538:1 546:1 548:3 554:1 565:1 571:1 573:4 575:2 580:1 588:3 595:1 624:1 653:1 656:1 665:1 698:1 707:1 708:3 728:1 730:2 731:1 738:2 750:1 776:7 779:1 782:1 786:2 787:4 792:2 798:1 814:16 815:4 823:5 841:4 847:1 848:1 853:1 854:4 856:2 857:11 859:1 861:3 863:4 877:2 895:5 898:4 904:1 909:1 910:1 927:1 943:2 951:1 964:1 994:1 1005:1 1011:1 1028:1 1029:1 1044:1 1053:3 1054:1 1057:2 1100:3 1101:3 1105:1 1107:2 1108:1 1111:2 1118:1 1119:2 1132:1 1139:1 1140:1 1141:1 1145:2 1151:1 1156:2 1161:2 1167:1 1169:1 1170:1 1178:1 1184:2 1189:1 1198:1 1211:1 1214:1 1215:1 1230:1 1236:1 1243:1 1247:1 1249:1 1253:1 1256:1 1264:1 1275:1 1293:1 1296:1 1300:1 1301:2 1303:1 1311:1 1318:1 1319:2 1329:1 1332:1 1334:2 1338:1 1340:3 1346:1 1352:1 1361:1 1367:1 1370:1 1371:2 1373:1 1385:1 1390:1 1406:1 1411:4 1417:8 1420:2 1429:1 1444:1 1450:2 1458:1 1461:1 1465:1 1467:4 1476:1 1480:1 1482:1 1485:2 1490:1 1498:3 1508:1 1511:1 1513:1 1517:2 1518:1 1526:2 1529:3 1540:1 1545:1 1548:1 1549:1 1556:1 1560:2 1564:1 1565:1 1570:1 1580:1 1588:1 1594:1 1595:2 1598:1 1607:2 1614:1 1615:5 1621:1 1625:1 1626:1 1632:1 1636:1 1639:3 1642:1 1643:2 1645:1 1651:2 1653:6 1660:1 1676:5 1678:3 1682:1 1692:1 1699:1 1702:1 1704:1 1710:2 1713:2 1715:4 1717:1 1718:1 1721:1 1731:1 1734:2 1735:1 1741:1 1742:3 1744:1 1750:1 1751:1 1757:3 1763:2 1764:1 1765:1 1778:3 1781:1 1782:1 1787:1 1794:1 1800:1 1818:1 1821:2 1825:9 1830:1 1836:1 1840:2 1845:7 1850:1 1851:2 1854:2 1859:1 1862:2 1873:2 1877:1 1884:1 1893:1 1896:1 1902:1 1905:1 1920:2 1921:1 1923:2 1924:1 1926:2 1929:2 1950:1 1966:11 1970:2 1975:1 1979:1 1984:1 1999:1 2006:2 2007:1 2025:3 2038:5 2039:1 2040:1 2052:1 2053:1 2056:1 2061:2 2078:3 2079:2 2081:1 2083:3 2084:5 2087:2 2089:2 2090:2 2095:2 2096:2 2097:1 2098:4 2099:5 2102:1 2103:1 2104:1 2105:5 2107:4 2109:5 2111:7 2113:1 2115:2 2123:1 2131:1 2146:1 2149:2 2152:3 2155:3 2158:1 2162:1 2167:1 2170:2 2172:1 2179:1 2190:1 2191:1 2200:1 2208:1 2210:1 2236:1 2243:1 2246:1 2247:1 2262:1 2278:3 2280:1 2287:1 2289:1 2291:1 2295:1 2297:1 2304:1 2306:3 2316:2 2317:1 2323:1 2325:1 2330:1 2334:1 2345:1 2347:2 2353:3 2356:2 2358:1 2361:7 2365:1 2366:1 2367:1 2379:1 2382:1 2397:1 2408:4 2410:2 2411:1 2416:2 2430:2 2436:2 2437:1 2438:2 2447:7 2452:2 2458:2 2460:10 2465:6 2467:1 2474:2 2475:1 2481:1 2483:2 2485:1 2490:3 2492:2 2503:4 2515:1 2516:3 2520:4 2524:1 2528:2 2533:1 2557:1 2561:1 2562:2 2563:2 2575:4 2576:1 2577:1 2579:1 2583:7 2590:2 2591:1 2595:1 2612:1 2614:1 2619:1 2637:1 2639:3 2641:1 2656:5 2660:1 2664:1 2667:17 2678:1 2689:3 2690:1 2694:1 2695:1 2697:1 2706:2 2711:3 2712:1 2714:1 2731:23 2733:3 2743:1 2744:1 2756:2 2758:3 2773:2 2783:1 2786:2 2800:1 2802:1 2809:1 2814:1 2816:1 2822:1 2826:1 2840:1 2841:5 2852:3 2856:2 2860:1 2866:1 2879:1 2889:1 2899:1 2902:1 2904:1 2906:1 2908:1 2915:2 2923:1 2924:1 2938:2 2949:1 2956:3 2968:1 2991:1 2992:2 3026:1 3027:3 3028:1 3031:1 3034:1 3038:2 3048:8 3049:1 3103:1 3127:1 3137:1 3147:3 3152:1 3153:1 3162:1 3190:1 3192:1 3193:2 3194:1 3199:1 3203:1 3209:1 3210:2 3213:1 3222:1 3230:1 3232:1 3252:1 3268:1 3286:2 3291:1 3309:1 3314:1 3315:17 3318:1 3325:1 3328:2 3330:2 3331:2 3332:2 3346:1 3350:1 3352:1 3358:1 3359:1 3366:1 3394:1 3399:2 3400:1 3406:1 3407:1 3410:3 3414:2 3423:1 3446:1 3459:1 3470:1 3473:1 3480:2 3483:1 3486:2 3488:1 3494:3 3496:1 3506:1 3510:1 3513:2 3520:1 3523:1 3540:2 3541:1 3542:2 3554:2 3560:3 3561:1 3575:2 3576:1 3581:5 3583:2 3587:2 3590:1 3591:2 3600:5 3602:1 3608:1 3610:2 3611:2 3629:1 3631:2 3646:1 3650:2 3652:4 3660:1 3672:1 3674:1 3683:2 3691:7 3692:5 3698:2 3730:1 3733:2 3737:1 3742:1 3756:1 3759:1 3760:2 3779:1 3787:2 3790:1 3791:1 3794:1 3798:1 3799:1 3813:2 3822:1 3828:2 3838:2 3845:4 3846:1 3848:3 3849:1 3853:3 3856:1 3859:1 3863:2 3875:1 3882:1 3888:1 3898:1 3912:1 3917:1 3930:1 3937:1 3952:7 3957:1 3977:3 3984:1 3993:2 3999:1 4003:1 4005:3 4018:2 4032:2 4038:1 4045:1 4057:1 4060:1 4062:1 4064:4 4065:2 4078:1 4084:4 4097:1 4107:1 4116:1 4118:1 4125:1 4134:1 4140:2 4146:2 4160:1 4164:1 4167:2 4172:1 4173:3 4175:1 4189:1 4201:1 4217:3 4218:1 4226:1 4234:5 4246:1 4249:1 4251:1 4275:5 4284:3 4287:1 4294:1 4295:1 4302:4 4307:2 4317:1 4319:5 4341:1 4344:2 4350:1 4361:1 4365:3 4369:4 4383:3 4386:1 4394:1 4403:1 4419:1 4422:2 4429:1 4431:1 4445:1 4446:1 4461:1 4467:1 4477:1 4488:17 4490:2 4496:1 4499:1 4501:1 4502:1 4509:1 4516:1 4527:1 4535:1 4546:1 4554:1 4585:1 4608:4 4616:1 4625:1 4629:4 4631:7 4632:3 4634:1 4637:2 4638:2 4639:2 4642:1 4643:2 4645:6 4646:4 4650:1 4651:2 4652:8 4658:2 4659:6 4662:1 4663:1 4674:1 4677:1 4701:1 4718:1 4730:1 4737:3 4744:1 4762:1 4767:1 4776:1 4801:1 4834:1 4842:1 4866:1 4877:1 4887:2 4911:1 4916:1 4941:3 4945:2 4955:1 4982:1 4985:1 5006:6 5012:1 5018:1 5026:1 5037:1 5050:1 5055:1 5064:2 5075:1 5081:1 5088:1 5094:1 5101:1 5121:1 5130:1 5144:1 5153:1 5156:1 5173:1 5197:2 5206:1 5207:1 5212:2 5216:1 5221:1 5230:5 5231:1 5234:2 5236:1 5239:4 5240:1 5255:2 5256:1 5263:1 5277:1 5281:3 5292:2 5293:1 5296:1 5298:1 5309:6 5314:1 5315:1 5330:2 5336:1 5383:1 5392:1 5398:1 5416:1 5420:1 5422:1 5428:1 5440:1 5444:1 5445:1 5446:1 5453:3 5456:1 5467:1 5479:1 5497:1 5503:1 5510:2 5521:2 5528:1 5535:2 5538:2 5539:1 5541:5 5561:1 5565:6 5567:1 5568:1 5569:1 5575:1 5576:2 5583:2 5585:1 5586:1 5588:1 5589:1 5591:1 5596:1 5620:1 5622:1 5623:1 5624:1 5629:2 5632:2 5634:1 5639:1 5641:1 5642:2 5643:1 5647:14 5680:3 5686:1 5703:1 5715:1 5725:4 5735:2 5751:6 5756:1 5761:1 5763:1 5801:1 5805:1 5828:1 5834:1 5836:1 5838:1 5844:3 5845:3 5847:1 5849:1 5850:1 5852:2 5853:1 5859:2 5860:4 5861:3 5872:1 5884:1 5897:1 5904:1 5938:1 5954:1 5973:1 5975:1 5987:2 5991:4 5992:2 6006:1 6015:1 6047:1 6055:2 6064:2 6066:1 6076:1 6082:1 6092:2 6115:1 6129:2 6137:2 6146:1 6152:1 6162:1 6199:1 6210:1 6215:2 6223:1 6233:2 6235:1 6238:1 6242:1 6246:1 6247:1 6253:1 6254:9 6255:1 6259:1 6262:2 6264:1 6265:3 6267:1 6273:1 6275:1 6279:1 6287:2 6297:1 6300:1 6301:1 6307:1 6310:1 6316:1 6340:2 6344:1 6345:3 6357:2 6361:1 6366:2 6369:1 6385:1 6389:1 6394:1 6398:1 6401:2 6402:1 6430:2 6449:2 6453:1 6460:1 6465:1 6468:1 6469:2 6477:1 6486:1 6490:7 6498:2 6516:1 6524:1 6528:1 6534:1 6537:3 6538:2 6545:1 6549:6 6550:1 6552:1 6554:1 6557:5 6560:1 6564:1 6581:1 6587:1 6588:1 6590:1 6599:1 6602:1 6604:1 6609:1 6620:1 6621:1 6626:4 6631:5 6641:1 6654:1 6658:1 6672:3 6674:1 6677:1 6679:1 6686:1 6689:1 6697:1 6701:1 6703:1 6705:1 6712:1 6721:1 6728:1 6742:1 6772:1 6797:1 6800:1 6806:1 6810:2 6846:1 6857:1 6859:2 6860:6 6864:4 6868:1 6869:1 6870:1 6876:3 6881:1 6894:6 6895:2 6898:2 6912:1 6913:3 6922:1 6935:1 6942:1 6943:2 6946:2 6951:1 6959:1 6962:1 6964:1 6969:1 6980:1 6981:1 6988:1 6989:2 6991:1 6997:1 7002:2 7006:1 7015:1 7016:1 7027:1 7052:4 7067:4 7068:9 7081:2 7086:1 7090:4 7092:4 7093:3 7094:1 7107:1 7109:1 7116:4 7117:3 7121:1 7136:52 7137:2 7140:2 7147:1 7155:11 7156:9 7162:2 7166:1 7194:1 7201:1 7202:1 7211:1 7212:2 7222:1 7224:1 7229:3 7230:2 7235:1 7242:1 7244:2 7256:2 7264:3 7276:1 7283:1 7294:2 7300:1 7305:2 7319:1 7325:1 7326:2 7348:1 7352:2 7355:1 7356:3 7359:1 7385:1 7389:1 7390:1 7391:1 7402:3 7446:1 7461:1 7477:1 7486:1 7489:2 7491:1 7496:2 7507:1 7508:1 7509:1 7517:1 7519:1 7520:1 7523:1 7538:2 7547:1 7556:1 7558:1 7559:3 7568:1 7575:1 7576:1 7580:2 7588:1 7592:1 7593:2 7609:27 7618:1 7619:1 7637:3 7640:3 7642:1 7644:2 7648:1 7670:1 7676:1 7696:6 7698:1 7700:1 7706:1 7734:1 7744:5 7747:2 7748:2 7751:1 7756:1 7757:1 7771:1 7777:2 7778:4 7784:3 7790:1 7792:1 7796:1 7812:2 7814:1 7820:1 7825:1 7836:1 7840:1 7850:1 7857:1 7858:2 7864:1 7866:1 7876:1 7877:2 7886:2 7889:2 7890:1 7918:1 7940:1 7944:1 7945:1 7950:1 7952:1 7957:1 7976:3 7978:2 7989:7 7991:1 8005:2 8008:3 8014:1 8023:2 8034:1 8036:1 8043:1 8049:2 8052:1 8054:2 8063:1 8069:1 8073:1 8085:2 8095:1 8113:2 8120:1 8124:1 8148:1 8153:1 8154:1 8163:1 8164:1 8171:1 8197:1 8199:1 8211:1 8215:3 8228:1 8247:1 8250:1 8253:2 8254:1 8258:3 8282:3 8289:1 8295:2 8306:1 8311:1 8330:1 8331:1 8332:1 8335:1 8340:2 8345:2 8350:8 8351:1 8356:1 8358:1 8363:2 8370:4 8378:1 8387:2 8389:1 8407:7 8409:1 8423:1 8426:1 8434:2 8437:1 8445:11 8446:7 8460:3 8461:1 8469:1 8472:1 8501:3 8507:2 8515:1 8521:1 8525:4 8527:1 8541:1 8544:1 8550:2 8552:2 8553:4 8555:2 8558:1 8567:2 8578:1 8584:1 8600:1 8610:1 8612:1 8620:2 8622:1 8632:1 8635:5 8637:2 8638:1 8642:1 8650:1 8655:1 8656:4 8658:2 8663:1 8664:1 8674:4 8698:1 8699:1 8706:1 8728:1 8735:1 8741:1 8756:3 8763:1 8765:3 8771:1 8782:1 8784:1 8786:1 8791:1 8793:1 8817:1 8820:1 8833:1 8838:1 8846:1 8853:8 8856:3 8885:3 8887:1 8894:1 8895:1 8904:3 8908:1 8926:1 8942:1 8943:2 8947:1 8953:1 8954:3 8956:3 8958:2 8964:1 8981:1 8987:2 8990:2 9020:2 9022:1 9031:1 9041:1 9067:2 9073:1 9077:1 9087:1 9090:1 9101:2 9107:1 9109:1 9110:1 9113:2 9124:1 9131:1 9132:1 9144:1 9155:1 9172:1 9173:1 9178:2 9179:1 9191:1 9192:1 9196:1 9216:1 9218:1 9221:1 9222:1 9224:1 9230:5 9243:4 9249:4 9251:2 9263:1 9281:2 9291:1 9300:3 9301:1 9314:2 9328:1 9332:2 9337:2 9347:1 9348:1 9354:1 9358:1 9360:1 9361:4 9364:1 9388:2 9391:1 9396:14 9398:2 9402:2 9406:1 9424:2 9425:2 9434:1 9439:1 9450:1 9469:1 9488:1 9491:2 9493:1 9509:1 9524:1 9534:1 9536:1 9537:1 9539:1 9540:1 9542:4 9550:1 9552:1 9555:2 9588:1 9598:1 9601:4 9603:1 9608:1 9610:1 9612:1 9617:1 9620:3 9624:1 9626:1 9632:1 9635:2 9642:4 9660:1 9681:1 9691:1 9695:1 9696:1 9699:1 9703:1 9708:1 9709:1 9710:2 9711:1 9713:2 9718:1 9725:2 9728:1 9732:1 9739:1 9748:1 9750:3 9755:1 9757:1 9764:2 9766:1 9769:1 9774:1 9775:7 9778:4 9791:2 9795:3 9799:1 9802:1 9807:1 9812:2 9820:1 9834:2 9848:7 9849:2 9866:2 9868:1 9869:1 9878:4 9899:1 9913:1 9916:1 9920:1 9926:3 9936:2 9943:1 9946:7 9964:2 9972:1 9980:1 9982:1 9993:4 10025:1 10030:1 10036:1 10057:1 10085:1 10091:1 10096:1 10102:1 10118:1 10120:1 10136:1 10137:2 10141:3 10144:1 10145:2 10149:1 10152:2 10156:1 10157:5 10158:6 10159:1 10167:1 10168:1 10172:1 10174:2 10177:3 10181:1 10183:4 10188:1 10189:1 10192:1 10195:1 10198:1 10200:1 10201:3 10203:3 10208:1 10213:1 10226:3 10232:1 10234:2 10255:1 10257:1 10259:4 10262:1 10294:1 10297:1 10312:1 10321:2 10323:1 10326:2 10339:1 10341:1 10385:1 10392:1 10404:1 10405:1 10406:1 10412:1 10423:1 10425:1 10426:3 10445:1 10463:1 10474:1 10477:1 10478:1 10484:2 10487:1 10500:3 10503:2 10507:1 10509:1 10518:2 10523:2 10525:1 10526:1 10528:2 10531:1 10537:3 10539:1 10540:1 10541:2 10550:1 10556:3 10559:2 10570:1 10572:1 10587:21 10588:1 10611:1 10621:1 10625:5 10632:1 10635:2 10636:2 10644:1 10648:2 10655:1 10673:1 10675:2 10682:3 10683:1 10690:1 10693:3 10695:2 10696:1 10706:1 10724:1 10738:1 10759:1 10766:1 10783:1 10796:2 10798:1 10803:3 10804:1 10805:1 10807:1 10808:1 10814:1 10821:1 10822:5 10826:1 10827:2 10828:1 10830:2 10840:1 10841:1 10851:1 10860:1 10863:1 10864:1 10866:1 10870:2 10874:5 10875:1 10880:5 10884:1 10898:1 10921:1 10934:2 10938:1 10947:1 10953:2 10972:1 10975:1 10983:1 10984:1 10998:1 11009:1 11014:1 11016:1 11017:1 11023:6 11032:1 11038:1 11043:2 11046:1 11058:1 11063:1 11070:1 11071:1 11076:2 11081:2 11100:2 11103:1 11117:2 11127:1 11129:2 11150:1 11170:2 11175:1 11189:1 11191:2 11195:1 11201:2 11205:1 11219:1 11236:1 11244:1 11246:1 11247:1 11251:5 11252:1 11253:4 11255:1 11256:2 11267:2 11273:2 11279:1 11283:1 11285:1 11290:1 11320:1 11335:1 11338:2 11339:1 11341:1 11357:1 11368:1 11376:1 11388:1 11393:1 11407:1 11410:1 11413:1 11423:1 11439:1 11476:3 11494:2 11507:1 11518:1 11520:1 11523:1 11527:1 11539:1 11545:1 11550:1 11552:2 11553:1 11568:1 11570:3 11579:1 11593:1 11599:1 11606:1 11647:1 11658:1 11663:1 11665:1 11666:3 11674:1 11687:1 11705:15 11710:6 11719:1 11723:2 11728:1 11734:1 11739:1 11746:2 11747:3 11753:4 11755:2 11767:1 11770:1 11775:1 11779:2 11780:1 11786:1 11792:2 11794:1 11798:1 11800:1 11829:1 11845:1 11850:1 11851:1 11858:2 11863:1 11879:1 11886:1 11887:1 11889:1 11890:1 11903:1 11923:1 11924:1 11928:1 11930:2 11932:1 11942:1 11944:1 11946:1 11963:1 11977:1 11982:5 11994:2 11996:1 12041:1 12042:1 12060:1 12071:2 12075:1 12078:1 12082:1 12083:1 12085:4 12090:4 12099:2 12101:2 12105:2 12106:2 12115:3 12122:1 12138:8 12157:1 12161:2 12186:1 12193:4 12194:1 12205:1 12217:1 12221:2 12223:1 12224:1 12225:2 12233:9 12236:1 12242:3 12247:1 12256:1 12260:1 12264:1 12272:1 12273:1 12279:2 12283:1 12289:1 12290:1 12301:22 12306:1 12308:1 12311:1 12327:1 12342:2 12343:2 12346:1 12350:3 12366:1 12371:2 12374:1 12384:2 12394:1 12395:1 12397:1 12421:3 12441:1 12446:6 12449:1 12465:1 12471:2 12475:1 12478:1 12492:1 12499:5 12515:1 12521:1 12525:1 12528:1 12533:3 12535:1 12537:2 12542:1 12544:1 12549:1 12551:1 12558:6 12559:1 12561:1 12562:2 12563:1 12564:2 12565:1 12569:8 12570:3 12584:1 12587:1 12590:1 12591:1 12593:1 12594:1 12595:1 12616:1 12620:1 12636:1 12643:1 12675:2 12680:2 12685:1 12686:1 12695:1 12706:1 12711:1 12719:7 12751:1 12756:1 12758:1 12760:1 12767:1 12768:1 12770:1 12773:2 12774:1 12778:1 12790:3 12794:1 12814:2 12820:1 12821:1 12829:1 12830:1 12833:1 12836:8 12845:1 12857:3 12861:1 12867:1 12890:1 12902:1 12903:2 12909:2 12913:1 12923:1 12929:1 12931:1 12934:1 12944:1 12957:2 12977:1 12983:1 12984:1 12990:1 12993:1 12997:1 13004:1 13010:1 13017:1 13052:1 13063:2 13075:1 13077:5 13091:1 13104:1 13123:1 13143:1 13175:1 13199:1 13200:1 13204:3 13205:4 13212:1 13222:2 13223:2 13225:1 13227:1 13229:2 13230:1 13248:1 13250:1 13251:1 13256:1 13265:2 13276:1 13285:1 13294:2 13305:1 13312:1 13327:2 13334:1 13337:1 13349:1 13353:1 13355:1 13361:2 13367:1 13375:4 13380:2 13428:1 13430:2 13433:1 13444:2 13457:2 13476:2 13477:1 13481:1 13484:1 13491:2 13506:1 13513:1 13517:1 13529:1 13531:1 13540:3 13552:1 13555:1 13558:2 13563:1 13587:1 13589:1 13595:1 13637:1 13643:3 13689:2 13693:2 13696:1 13700:1 13702:1 13712:1 13722:2 13734:1 13762:2 13774:1 13776:3 13781:1 13793:1 13794:1 13795:2 13799:1 13800:1 13801:1 13804:1 13806:1 13829:1 13887:1 13891:1 13894:1 13900:2 13922:1 13928:1 13944:1 13974:1 13991:1 13995:2 14004:1 14010:1 14027:1 14032:1 14034:1 14035:2 14047:1 14064:2 14071:3 14075:1 14096:1 14098:1 14099:1 14107:1 14113:2 14130:3 14134:1 14156:1 14158:1 14168:2 14184:1 14189:2 14211:1 14213:1 14216:1 14217:2 14225:1 14229:6 14244:4 14252:1 14263:5 14266:1 14279:3 14299:1 14302:1 14311:1 14321:1 14328:2 14332:1 14335:2 14377:1 14391:2 14392:1 14403:2 14409:1 14413:1 14417:4 14420:1 14424:1 14426:1 14432:1 14443:2 14445:4 14446:1 14450:1 14453:1 14462:2 14465:1 14475:1 14491:2 14497:2 14523:1 14532:2 14535:1 14539:1 14550:3 14559:2 14567:1 14570:1 14572:3 14587:1 14600:3 14605:1 14615:1 14648:1 14667:1 14669:1 14673:1 14676:1 14682:1 14683:1 14686:1 14687:20 14690:1 14703:1 14704:1 14706:1 14709:3 14712:1 14738:3 14772:2 14783:1 14789:2 14796:4 14817:2 14821:1 14832:2 14845:1 14876:1 14883:1 14890:1 14891:1 14892:1 14902:2 14903:1 14912:1 14925:1 14928:1 14929:1 14931:3 14934:1 14946:1 14950:1 14954:6 14955:2 14956:2 14957:6 14958:2 14959:1 14963:2 14965:1 14967:2 14968:5 14972:1 14973:1 14975:1 14978:1 14979:2 14987:1 15004:1 15013:2 15021:1 15024:1 15037:1 15060:1 15068:1 15069:1 15083:1 15087:2 15088:1 15090:1 15095:1 15109:2 15113:1 15114:1 15117:1 15119:2 15120:2 15128:1 15140:2 15143:1 15162:1 15169:1 15170:1 15177:1 15178:1 15183:1 15192:1 15198:1 15204:1 15214:1 15217:1 15240:1 15250:1 15252:1 15254:1 15262:3 15272:1 15274:2 15281:2 15282:1 15290:1 15294:5 15299:1 15302:2 15308:1 15316:1 15321:2 15324:1 15325:4 15329:2 15334:1 15336:1 15342:4 15344:2 15353:4 15359:1 15367:1 15372:1 15402:1 15407:14 15408:1 15422:1 15426:1 15431:2 15432:4 15434:2 15437:1 15472:1 15476:1 15490:1 15491:1 15497:2 15499:1 15507:1 15512:4 15524:1 15525:1 15534:1 15538:4 15541:2 15553:1 15558:1 15574:1 15575:2 15580:1 15596:5 15603:1 15607:1 15617:2 15619:1 15622:1 15646:1 15661:2 15667:1 15688:1 15703:2 15705:4 15719:1 15720:1 15722:1 15731:1 15748:1 15763:1 15765:1 15768:1 15787:1 15790:1 15799:1 15808:2 15814:1 15821:1 15828:1 15837:1 15845:2 15854:1 15858:2 15862:1 15864:2 15868:1 15870:1 15873:1 15886:1 15889:1 15890:1 15909:1 15930:1 15938:1 15959:1 15966:1 15979:1 15982:1 15988:1 16000:1 16005:1 16007:1 16021:3 16027:1 16036:1 16037:3 16041:1 16046:1 16047:1 16054:3 16059:2 16060:2 16064:2 16068:1 16070:1 16071:10 16109:1 16111:2 16112:1 16116:3 16117:1 16121:1 16128:3 16133:1 16136:2 16139:1 16140:1 16156:1 16176:1 16189:1 16194:1 16203:1 16204:1 16222:4 16226:1 16236:1 16244:2 16256:1 16257:1 16261:1 16266:1 16276:1 16279:1 16309:1 16311:1 16312:1 16313:1 16315:1 16334:1 16339:1 16343:1 16344:1 16347:2 16357:1 16379:1 16401:1 16405:1 16417:1 16425:1 16426:3 16433:1 16437:1 16439:1 16450:1 16452:1 16466:1 16487:1 16514:2 16540:1 16542:1 16551:2 16570:2 16577:1 16651:2 16657:2 16658:1 16664:1 16674:1 16680:1 16687:1 16703:1 16709:1 16719:1 16721:1 16727:1 16735:1 16745:1 16746:1 16748:1 16758:1 16770:1 16771:1 16787:1 16791:3 16795:1 16805:1 16838:1 16848:15 16860:1 16880:1 16906:1 16931:1 16932:1 16954:14 16963:4 16964:2 16975:1 16977:7 16990:1 16997:1 17001:3 17012:1 17025:2 17048:6 17058:2 17068:2 17084:2 17085:1 17087:1 17107:3 17112:2 17114:1 17125:2 17126:3 17137:2726 17147:1 17151:1 17160:1 17161:1 17162:1 17163:1 17172:1 17188:1 17197:1 17200:1 17201:1 17202:1 17210:1 17220:2 17235:1 17238:1 17251:1 17258:2 17262:1 17263:1 17282:1 17296:1 17307:1 17311:1 17314:1 17317:2 17321:6 17322:4 17332:1 17339:1 17341:1 17351:1 17355:1 17359:1 17365:1 17375:1 17386:1 17399:1 17404:1 17406:1 17407:1 17448:1 17450:3 17453:2 17459:1 17466:1 17494:1 17500:2 17502:1 17503:3 17507:2 17521:1 17522:1 17534:2 17536:1 17549:1 17551:2 17552:1 17564:2 17566:1 17573:1 17581:1 17588:1 17591:1 17603:2 17608:1 17616:1 17627:2 17632:1 17636:1 17639:1 17642:2 17643:2 17644:2 17646:2 17655:1 17661:1 17670:2 17672:1 17691:2 17692:3 17708:4 17712:1 17716:1 17728:3 17752:3 17753:1 17758:1 17761:1 17764:1 17770:1 17771:2 17773:2 17777:9 17787:1 17801:1 17803:1 17818:1 17823:2 17824:1 17825:1 17833:2 17846:5 17847:1 17860:1 17862:2 17877:1 17891:1 17900:4 17905:1 17907:2 17912:1 17914:2 17929:4 17930:1 17935:1 17938:1 17942:2 17956:1 17960:1 17961:4 17968:2 17970:1 17975:3 18006:5 18009:2 18012:1 18017:1 18031:1 18034:2 18038:2 18039:2 18043:1 18046:1 18047:2 18050:1 18058:1 18068:2 18075:1 18077:1 18078:1 18079:1 18080:1 18083:1 18088:1 18117:1 18130:3 18144:1 18145:2 18146:1 18147:1 18149:1 18152:1 18153:3 18158:1 18178:1 18182:1 18183:1 18185:1 18187:1 18196:1 18203:2 18208:1 18214:2 18227:1 18229:2 18237:2 18238:1 18242:1 18249:1 18252:1 18263:1 18268:1 18269:1 18276:1 18279:2 18282:4 18287:1 18288:4 18289:1 18335:1 18340:1 18354:3 18360:1 18363:1 18368:2 18369:2 18371:2 18388:2 18389:3 18392:3 18399:3 18404:1 18405:3 18407:2 18409:1 18421:5 18430:3 18449:1 18451:1 18458:1 18460:1 18462:1 18465:2 18466:4 18494:1 18495:2 18504:2 18505:1 18507:1 18510:1 18526:2 18531:3 18548:1 18552:2 18553:3 18569:1 18570:1 18577:3 18578:23 18579:2 18586:1 18592:5 18596:1 18610:1 18612:2 18613:1 18620:1 18627:1 18643:3 18652:1 18653:1 18663:1 18672:1 18678:1 18683:1 18695:1 18697:1 18700:2 18701:1 18705:1 18726:1 18738:1 18746:1 18757:1 18759:1 18768:4 18787:1 18789:2 18802:2 18807:1 18817:2 18828:1 18830:1 18834:1 18840:2 18850:1 18865:8 18871:2 18878:1 18886:1 18916:1 18917:1 18920:1 18927:1 18933:1 18937:1 18968:1 18969:1 18973:4 18987:4 18996:1 18999:1 19002:1 19006:1 19010:1 19011:1 19020:1 19023:2 19024:1 19051:2 19057:3 19063:2 19066:3 19073:3 19074:1 19078:1 19080:1 19081:1 19089:2 19093:1 19116:5 19126:2 19127:1 19128:1 19135:1 19142:1 19149:2 19151:1 19153:3 19162:2 19176:1 19178:2 19183:1 19190:2 19191:1 19198:5 19202:1 19206:2 19207:1 19209:1 19213:1 19215:2 19227:3 19243:1 19250:1 19258:2 19264:1 19271:1 19277:2 19296:1 19297:1 19298:1 19302:2 19304:1 19312:2 19319:2 19321:2 19327:2 19331:2 19332:1 19337:2 19353:1 19358:2 19381:2 19392:1 19393:4 19401:1 19402:1 19403:4 19418:1 19420:1 19427:2 19431:1 19435:1 19440:1 19441:1 19446:2 19447:1 19450:1 19452:1 19460:1 19463:1 19476:1 19480:1 19481:1 19486:1 19510:2 19517:1 19519:1 19524:2 19525:3 19533:1 19535:1 19538:1 19550:1 19618:1 19622:1 19640:2 19652:3 19656:1 19664:3 19665:2 19667:1 19669:1 19673:1 19674:1 19679:1 19687:1 19694:2 19699:3 19705:1 19714:1 19723:1 19740:1 19746:1 19750:1 19758:1 19768:1 19769:1 19787:2 19789:1 19790:1 19791:1 19794:1 19796:2 19799:1 19800:1 19811:1 19814:1 19818:2 19825:2 19830:2 19833:1 19834:1 19838:2 19839:1 19841:1 19842:1 19851:1 19853:2 19865:1 19874:14 19886:2 19887:3 19892:2 19902:1 19916:1 19924:1 19926:1 19929:1 19931:1 19941:1 19943:2 19948:1 19949:2 19952:1 19955:1 19984:1 20000:2 20010:1 20019:2 20024:1 20026:1 20030:1 20034:6 20036:3 20037:1 20046:2 20054:1 20055:1 20056:1 20059:1 20061:1 20081:1 20082:1 20083:1 20085:3 20087:4 20088:2 20089:1 20111:1 20114:1 20151:1 20171:4 20174:1 20176:5 20178:3 20179:3 20181:1 20182:1 20186:1 20189:2 20193:1 20194:2 20202:1 20204:1 20205:5 20212:1 20213:1 20218:1 20219:1 20223:1 20236:1 20244:2 20252:2 20255:2 20269:1 20297:1 20315:2 20317:3 20322:1 20324:1 20326:1 20329:1 20338:1 20344:1 20351:1 20364:1 20365:3 20368:1 20374:1 20375:1 20377:1 20381:3 20383:2 20392:2 20395:1 20396:1 20405:1 20409:1 20421:2 20423:1 20425:5 20431:1 20440:1 20441:4 20446:1 20447:3 20455:1 20463:1 20470:1 20476:1 20484:2 20487:1 20490:1 20491:1 20492:4 20498:2 20503:1 20512:2 20513:10 20515:1 20519:2 20525:1 20526:1 20529:1 20531:1 20547:1 20549:1 20553:1 20575:9 20576:1 20589:1 20609:1 20624:1 20631:6 20632:1 20637:1 20640:1 20642:1 20649:1 20650:1 20664:1 20665:3 20678:1 20687:1 20690:4 20701:1 20715:1 20717:1 20722:2 20723:1 20726:7 20728:2 20735:3 20739:1 20740:4 20749:1 20753:1 20757:1 20759:1 20773:1 20775:5 20787:1 20794:1 20795:3 20797:1 20800:3 20809:1 20815:1 20817:1 20827:1 20831:1 20834:1 20838:1 20846:1 20848:1 20851:1 20863:1 20866:1 20890:1 20895:1 20902:1 20903:1 20904:1 20906:1 20914:1 20921:2 20935:10 20936:3 20941:1 20952:2 20957:3 20962:4 20969:1 20970:3 20982:2 20983:1 20986:1 20996:1 21021:1 21032:1 21033:1 21037:2 21040:2 21055:1 21056:1 21059:1 21080:1 21083:1 21084:1 21085:1 21086:2 21101:1 21104:2 21113:1 21121:1 21128:2 21131:1 21138:2 21139:1 21142:1 21170:1 21175:3 21181:1 21204:3 21215:1 21249:3 21253:1 21269:1 21294:3 21297:3 21304:7 21314:2 21322:1 21328:1 21330:3 21341:2 21344:2 21345:3 21358:1 21368:4 21406:1 21410:1 21413:1 21434:1 21436:1 21441:1 21446:1 21458:1 21463:1 21472:4 21476:1 21484:1 21502:1 21505:1 21510:3 21527:2 21534:1 21537:2 21548:1 21549:1 21559:1 21566:1 21575:1 21576:2 21579:4 21584:3 21590:1 21592:1 21603:1 21605:1 21609:1 21624:3 21625:2 21626:1 21628:2 21638:1 21641:1 21644:1 21650:1 21692:1 21695:1 21696:4 21697:1 21698:1 21701:1 21706:1 21712:1 21714:1 21715:4 21716:1 21718:1 21719:1 21722:1 21725:1 21737:1 21749:1 21766:3 21769:1 21779:1 21789:2 21790:2 21832:3 21840:1 21845:2 21853:1 21878:2 21884:1 21886:1 21902:1 21914:1 21929:1 21941:1 21943:2 21951:2 21953:1 21964:1 21979:1 21994:1 21996:1 21998:1 22008:2 22017:1 22029:2 22038:1 22047:1 22057:1 22066:1 22084:1 22090:1 22101:2 22103:1 22113:1 22136:2 22140:1 22165:2 22176:4 22186:1 22212:1 22213:8 22220:1 22228:1 22233:1 22236:1 22241:4 22245:1 22259:1 22261:1 22267:1 22270:5 22279:1 22280:1 22287:1 22293:1 22317:4 22319:1 22340:4 22341:2 22345:1 22346:2 22381:1 22425:1 22426:1 22427:1 22451:1 22453:1 22454:1 22455:1 22461:1 22464:2 22467:3 22469:4 22471:1 22473:2 22475:1 22476:1 22477:1 22479:2 22482:1 22483:2 22484:1 22493:1 22494:1 22505:1 22518:6 22535:1 22536:2 22539:1 22544:1 22551:1 22552:1 22555:1 22557:1 22582:12 22585:6 22587:1 22609:1 22611:2 22612:1 22618:1 22619:1 22630:1 22635:1 22636:1 22638:1 22639:2 22643:3 22651:3 22667:1 22669:1 22670:1 22681:1 22690:1 22728:1 22735:1 22756:1 22767:1 22768:1 22777:3 22781:2 22787:1 22794:1 22796:1 22800:3 22809:2 22813:1 22817:1 22822:3 22823:2 22826:1 22843:1 22845:1 22850:1 22857:1 22858:2 22860:1 22863:1 22866:1 22872:1 22874:1 22890:1 22896:1 22901:5 22913:2 22917:1 22918:1 22924:1 22930:1 22932:1 22941:2 22946:2 22950:1 22952:3 22953:1 22957:1 22968:1 22974:1 22975:1 23001:1 23002:18 23003:2 23023:1 23026:1 23032:1 23033:1 23036:1 23045:1 23055:1 23066:2 23067:1 23074:2 23078:1 23085:1 23098:2 23101:1 23105:2 23106:1 23110:1 23111:1 23131:1 23133:1 23139:1 23143:1 23145:1 23160:1 23166:1 23173:1 23179:1 23197:1 23198:1 23203:1 23220:12 23221:1 23235:1 23240:2 23241:1 23247:1 23253:1 23258:1 23264:3 23270:1 23276:1 23280:1 23285:7 23286:1 23291:1 23304:1 23308:1 23311:2 23314:1 23340:1 23353:3 23359:1 23365:1 23371:1 23386:1 23394:1 23398:1 23407:1 23422:2 23426:2 23428:1 23437:2 23448:1 23452:1 23459:1 23473:1 23480:2 23491:1 23527:1 23528:2 23534:1 23538:1 23540:1 23550:1 23560:1 23564:3 23569:5 23571:1 23577:1 23579:2 23594:1 23617:7 23629:1 23632:1 23636:1 23648:1 23650:8 23663:2 23677:1 23681:1 23682:1 23685:1 23688:4 23689:1 23690:1 23698:1 23701:1 23705:1 23714:1 23715:1 23746:1 23751:1 23759:1 23769:1 23777:2 23795:1 23803:1 23821:1 23826:1 23833:3 23838:1 23853:1 23860:1 23882:1 23889:1 23903:1 23904:1 23906:1 23919:2 23922:1 23926:1 23928:1 23929:3 23934:1 23944:1 23945:1 23952:1 23953:1 23958:2 23959:1 23971:1 23981:1 23983:1 23988:3 23991:1 24023:5 24030:1 24035:1 24044:1 24058:1 24065:1 24074:2 24075:1 24084:1 24088:1 24094:16 24095:2 24105:2 24115:1 24124:1 24126:1 24147:4 24150:1 24151:2 24163:1 24165:1 24170:2 24183:1 24186:2 24188:2 24199:1 24207:1 24211:4 24215:3 24221:3 24224:3 24226:4 24228:1 24230:1 24241:1 24245:1 24246:1 24253:1 24266:1 24293:1 24300:1 24301:1 24302:1 24314:2 24324:1 24337:1 24340:2 24350:1 24362:2 24370:2 24380:1 24384:2 24386:1 24387:1 24388:2 24399:2 24415:6 24417:1 24418:1 24425:1 24426:1 24427:1 24429:1 24434:2 24439:1 24442:1 24446:1 24447:1 24467:1 24470:2 24471:2 24483:2 24531:1 24537:2 24553:1 24561:1 24562:1 24569:3 24596:1 24621:1 24634:1 24635:1 24641:6 24652:1 24653:1 24677:1 24684:1 24689:1 24690:1 24703:1 24707:1 24711:3 24716:1 24721:1 24744:2 24746:2 24747:2 24750:2 24758:3 24769:1 24773:1 24785:1 24788:1 24793:1 24797:2 24813:1 24823:2 24837:1 24838:2 24839:1 24849:1 24851:1 24862:1 24886:1 24895:2 24912:2 24915:5 24918:1 24921:1 24922:2 24931:1 24933:2 24936:1 24938:2 24943:1 24950:1 24956:1 24961:3 24972:2 24974:1 24977:1 24980:1 24985:2 24986:2 24991:1 25000:1 25013:1 25016:1 25021:1 25026:1 25028:1 25032:2 25037:1 25063:1 25077:6 25081:3 25084:2 25091:1 25098:1 25099:1 25108:1 25120:1 25126:1 25132:2 25137:1 25143:2 25148:2 25151:1 25155:2 25163:1 25164:1 25172:2 25174:1 25181:1 25187:1 25190:1 25192:1 25193:1 25200:1 25201:1 25204:4 25205:1 25206:1 25207:1 25210:3 25213:1 25217:2 25219:1 25222:1 25229:3 25238:2 25243:1 25247:1 25279:1 25288:1 25297:5 25311:1 25318:2 25335:2 25350:1 25358:1 25361:1 25401:1 25404:2 25425:1 25429:1 25439:1 25444:1 25445:2 25457:1 25459:1 25465:2 25480:2 25482:1 25486:1 25487:1 25490:1 25492:3 25499:5 25513:1 25521:1 25532:1 25542:1 25553:1 25563:7 25598:2 25600:1 25613:1 25631:1 25636:1 25648:1 25652:1 25655:1 25656:1 25660:2 25674:2 25680:1 25691:1 25699:1 25709:1 25715:1 25734:1 25739:1 25742:1 25745:1 25755:2 25759:2 25760:3 25761:1 25766:1 25768:1 25773:3 25775:1 25778:3 25790:1 25792:2 25799:1 25801:5 25802:1 25811:1 25813:1 25815:1 25816:1 25817:1 25823:1 25828:3 25832:2 25836:2 25840:1 25845:1 25847:5 25851:1 25860:3 25867:3 25870:1 25883:3 25884:1 25886:3 25889:1 25893:1 25906:3 25922:1 25924:1 25941:2 25949:1 25963:1 25969:3 25971:5 25977:7 26008:5 26021:1 26023:1 26034:1 26045:2 26051:1 26052:1 26054:1 26064:1 26072:1 26081:1 26083:7 26088:1 26092:2 26114:1 26120:1 26126:1 26131:1 26141:1 26146:1 26158:1 26162:1 26164:1 26170:1 26172:1 26173:2 26179:2 26182:1 26196:3 26222:1 26231:1 26232:1 26233:1 26234:1 26245:7 26246:2 26249:2 26252:1 26257:1 26259:1 26263:2 26276:1 26277:1 26308:6 26325:1 26351:1 26365:1 26372:1 26399:1 26401:1 26424:1 26426:1 26441:1 26468:1 26470:1 26488:2 26495:1 26497:1 26498:2 26499:3 26502:2 26504:3 26511:1 26515:2 26516:1 26525:1 26539:1 26552:1 26561:1 26571:1 26576:1 26592:1 26611:3 26614:1 26620:2 26648:2 26651:2 26653:2 26668:1 26670:1 26683:1 26686:1 26699:1 26704:1 26705:1 26715:1 26721:4 26722:1 26727:1 26728:2 26730:1 26736:1 26758:1 26760:1 26763:4 26767:2 26780:1 26784:1 26806:1 26813:1 26819:1 26825:1 26836:1 26844:1 26862:1 26866:1 26868:3 26876:1 26878:1 26892:1 26901:3 26903:1 26919:1 26940:2 26943:2 26961:1 26965:1 26966:3 26973:3 26974:4 26975:1 26978:1 27006:1 27012:1 27020:1 27022:5 27025:1
1 12:2 34:1 36:1 43:1 45:1 50:1 55:1 56:1 60:1 72:1 90:2 92:1 108:1 124:1 137:1 138:4 147:1 152:2 153:1 159:1 165:2 168:3 175:1 178:6 181:1 189:1 194:1 204:1 221:1 222:1 231:1 236:7 248:1 255:3 262:1 277:2 301:1 312:6 314:3 318:3 320:1 326:3 333:1 337:2 356:3 363:1 375:2 392:6 394:6 403:1 414:3 446:1 451:1 458:1 478:1 480:2 509:1 518:1 522:2 538:1 546:1 548:3 554:1 565:1 571:1 573:5 575:2 580:1 588:3 595:1 624:1 653:1 656:1 665:1 698:1 707:1 708:3 728:1 730:2 731:1 738:2 750:1 776:7 779:1 782:1 786:2 787:4 792:2 798:1 814:16 815:5 823:5 841:4 847:1 848:1 853:1 854:4 856:2 857:11 859:1 861:3 863:4 877:2 895:5 898:4 904:1 909:1 910:1 927:1 943:2 951:1 964:1 994:1 1005:1 1011:1 1028:1 1029:1 1044:1 1053:3 1054:1 1057:2 1100:3 1101:4 1105:1 1107:2 1108:1 1111:2 1118:1 1119:2 1132:1 1139:1 1140:1 1141:1 1145:2 1151:1 1156:2 1161:2 1167:1 1169:1 1170:1 1178:1 1184:2 1189:1 1198:1 1211:1 1214:1 1215:1 1230:1 1236:1 1243:1 1247:1 1249:1 1253:1 1256:1 1264:1 1275:1 1293:1 1296:1 1300:1 1301:2 1303:1 1311:2 1318:1 1319:2 1329:1 1332:1 1334:2 1338:1 1340:3 1346:1 1352:1 1361:1 1367:1 1370:1 1371:2 1373:1 1385:1 1390:1 1406:1 1411:5 1417:8 1420:2 1429:1 1444:1 1450:2 1458:1 1461:1 1465:1 1467:4 1476:1 1480:1 1482:1 1485:2 1490:1 1498:3 1508:1 1511:1 1513:1 1517:2 1518:1 1526:2 1529:3 1540:1 1545:1 1548:1 1549:1 1556:1 1560:2 1564:1 1565:1 1570:1 1580:1 1588:1 1594:1 1595:2 1598:1 1607:2 1614:1 1615:6 1621:1 1625:1 1626:1 1632:1 1636:1 1639:3 1642:1 1643:2 1645:1 1651:2 1653:7 1660:1 1676:5 1678:3 1682:1 1692:1 1699:1 1702:1 1704:1 1710:2 1713:2 1715:4 1717:1 1718:1 1721:1 1731:1 1734:2 1735:1 1741:1 1742:3 1744:1 1750:1 1751:1 1757:3 1763:2 1764:1 1765:1 1778:3 1781:1 1782:1 1787:1 1794:1 1800:1 1818:1 1821:2 1825:9 1830:1 1836:1 1840:2 1845:7 1850:1 1851:2 1854:2 1859:1 1861:1 1862:2 1873:2 1877:1 1884:1 1893:1 1896:2 1902:1 1905:1 1920:2 1921:1 1923:2 1924:1 1926:2 1929:2 1950:1 1966:11 1970:2 1975:1 1979:1 1984:1 1999:1 2006:2 2007:1 2025:3 2038:5 2039:2 2040:1 2052:1 2053:1 2056:1 2061:2 2078:3 2079:2 2081:2 2083:3 2084:5 2087:2 2089:2 2090:2 2095:2 2096:2 2097:1 2098:4 2099:6 2102:1 2103:1 2104:1 2105:5 2107:4 2109:5 2111:7 2113:1 2115:2 2123:1 2131:1 2146:1 2149:2 2152:3 2155:3 2158:1 2162:1 2167:1 2170:2 2172:1 2179:1 2190:1 2191:1 2200:1 2208:1 2210:1 2236:1 2243:1 2246:1 2247:1 2262:1 2278:4 2280:1 2287:1 2289:1 2291:1 2295:1 2297:1 2304:1 2306:3 2316:2 2317:1 2323:1 2325:1 2330:1 2334:1 2345:1 2347:2 2353:3 2356:2 2358:1 2361:7 2365:1 2366:1 2367:1 2379:1 2382:1 2397:1 2408:4 2410:2 2411:1 2416:2 2430:2 2436:2 2437:1 2438:2 2447:7 2452:2 2458:2 2460:10 2465:6 2467:1 2474:2 2475:1 2481:1 2483:2 2485:1 2490:3 2492:2 2503:4 2515:1 2516:3 2520:5 2524:1 2528:2 2533:1 2557:1 2561:1 2562:2 2563:2 2575:4 2576:1 2577:1 2579:1 2583:7 2590:2 2591:1 2595:1 2612:1 2614:1 2619:1 2637:1 2639:3 2641:1 2656:5 2660:1 2664:1 2667:17 2678:1 2689:3 2690:1 2694:1 2695:1 2697:1 2706:2 2711:3 2712:1 2714:1 2731:23 2733:3 2743:1 2744:1 2756:2 2758:4 2773:2 2783:1 2786:2 2800:1 2802:1 2809:1 2814:1 2816:1 2822:1 2826:1 2840:1 2841:6 2852:3 2856:2 2860:1 2866:1 2879:1 2889:1 2899:1 2902:1 2904:1 2906:1 2908:1 2915:2 2923:1 2924:1 2938:2 2949:1 2956:3 2968:1 2991:1 2992:2 3026:1 3027:3 3028:1 3031:1 3034:1 3038:2 3048:9 3049:1 3103:1 3127:1 3137:1 3147:3 3152:1 3153:1 3162:1 3190:1 3192:1 3193:2 3194:1 3199:1 3203:1 3209:1 3210:2 3213:1 3222:1 3230:1 3232:1 3252:1 3268:1 3286:2 3291:1 3309:1 3314:1 3315:19 3318:1 3325:1 3328:2 3330:2 3331:3 3332:2 3346:1 3350:1 3352:1 3358:1 3359:1 3366:1 3394:1 3399:2 3400:1 3406:1 3407:1 3410:3 3414:2 3423:1 3446:1 3459:1 3470:1 3473:1 3480:2 3483:1 3486:2 3488:1 3494:4 3496:1 3506:1 3510:1 3513:2 3520:1 3523:1 3540:2 3541:1 3542:2 3554:2 3560:3 3561:1 3575:2 3576:1 3581:5 3583:2 3587:3 3590:1 3591:2 3600:5 3602:1 3608:1 3610:3 3611:2 3629:1 3631:2 3646:1 3650:2 3652:4 3660:1 3672:1 3674:1 3683:2 3691:7 3692:5 3698:2 3730:1 3733:2 3737:1 3742:1 3756:1 3759:1 3760:2 3779:1 3787:2 3790:1 3791:1 3794:1 3798:1 3799:1 3813:2 3822:1 3828:2 3838:2 3845:4 3846:1 3848:3 3849:1 3853:3 3856:1 3859:1 3863:2 3875:1 3882:1 3888:1 3898:1 3912:1 3917:1 3930:1 3937:1 3952:7 3957:1 3977:3 3984:1 3993:2 3999:1 4003:1 4005:3 4018:2 4032:2 4038:1 4045:1 4057:1 4060:1 4062:1 4064:4 4065:2 4078:1 4084:4 4097:1 4107:1 4116:1 4118:1 4125:1 4134:1 4140:2 4146:2 4160:1 4164:1 4167:2 4172:1 4173:3 4175:1 4189:1 4201:1 4217:3 4218:1 4226:1 4234:5 4246:1 4249:1 4251:1 4275:5 4284:3 4287:1 4294:1 4295:1 4302:4 4307:2 4317:1 4319:5 4341:1 4344:2 4350:1 4361:1 4365:3 4369:4 4383:3 4386:1 4394:1 4403:1 4419:1 4422:2 4429:1 4431:1 4445:1 4446:1 4461:1 4467:1 4477:1 4488:17 4490:2 4496:1 4499:1 4501:1 4502:1 4509:1 4516:1 4527:1 4535:1 4546:1 4554:1 4585:1 4608:4 4616:1 4625:1 4629:4 4631:7 4632:3 4634:1 4637:2 4638:2 4639:2 4642:1 4643:2 4645:6 4646:4 4650:1 4651:2 4652:8 4658:2 4659:6 4662:1 4663:1 4674:1 4677:1 4701:1 4718:1 4730:1 4737:3 4744:1 4762:1 4767:1 4776:1 4801:1 4834:1 4842:1 4866:1 4873:1 4877:1 4887:2 4911:1 4916:1 4941:3 4945:2 4955:1 4982:1 4985:1 5006:6 5012:1 5018:1 5026:1 5037:1 5050:1 5055:1 5064:2 5075:1 5081:1 5088:1 5094:1 5101:1 5121:1 5130:1 5144:1 5153:2 5156:1 5173:1 5197:2 5206:1 5207:1 5212:2 5216:1 5221:1 5230:5 5231:1 5234:2 5236:1 5239:4 5240:1 5255:2 5256:1 5263:2 5267:1 5277:1 5281:3 5292:2 5293:1 5296:1 5298:1 5309:6 5314:1 5315:1 5330:2 5336:1 5383:1 5392:1 5398:1 5416:1 5420:1 5422:1 5428:1 5440:1 5444:1 5445:1 5446:1 5453:3 5456:1 5467:1 5479:1 5497:1 5503:1 5510:2 5521:2 5528:1 5535:2 5538:2 5539:1 5541:6 5561:1 5565:6 5567:1 5568:1 5569:1 5575:1 5576:2 5583:2 5585:1 5586:1 5588:1 5589:1 5591:2 5596:1 5620:1 5622:1 5623:1 5624:1 5629:2 5632:2 5634:2 5639:1 5641:1 5642:2 5643:1 5647:14 5680:3 5686:1 5703:1 5715:1 5725:4 5735:2 5751:6 5756:1 5761:1 5763:1 5801:1 5805:1 5828:1 5834:1 5836:1 5838:1 5844:3 5845:3 5847:1 5849:1 5850:1 5852:2 5853:1 5859:2 5860:4 5861:3 5872:1 5884:1 5897:1 5904:1 5938:1 5954:1 5973:1 5975:1 5987:2 5991:5 5992:2 6006:1 6015:1 6047:1 6055:2 6064:2 6066:1 6076:1 6082:1 6092:2 6115:1 6129:2 6137:2 6146:1 6152:1 6162:1 6199:1 6210:1 6215:2 6223:1 6233:2 6235:1 6238:1 6242:1 6246:1 6247:1 6253:1 6254:9 6255:1 6259:1 6262:2 6264:1 6265:3 6267:1 6273:1 6275:1 6279:1 6285:1 6287:2 6297:1 6300:1 6301:1 6307:1 6310:1 6316:1 6340:2 6344:2 6345:3 6357:2 6361:1 6366:2 6369:1 6385:1 6389:1 6394:1 6396:1 6398:1 6401:2 6402:1 6430:2 6449:2 6453:1 6460:1 6465:1 6468:1 6469:2 6477:1 6486:1 6490:7 6498:2 6516:1 6524:1 6528:1 6534:2 6537:3 6538:2 6545:1 6549:6 6550:1 6552:1 6554:1 6557:5 6560:1 6564:1 6581:1 6587:1 6588:1 6590:2 6599:1 6602:1 6604:1 6609:1 6620:1 6621:1 6626:4 6631:5 6641:1 6654:1 6658:1 6672:3 6674:1 6677:1 6679:1 6686:1 6689:1 6697:1 6701:1 6703:1 6705:1 6712:1 6721:1 6728:1 6742:1 6772:1 6797:1 6800:1 6806:1 6810:2 6846:1 6857:1 6859:2 6860:6 6864:4 6868:1 6869:1 6870:1 6876:4 6881:1 6894:6 6895:2 6898:2 6912:1 6913:3 6922:1 6935:1 6942:1 6943:2 6946:2 6951:1 6959:1 6962:1 6964:1 6969:1 6980:1 6981:1 6988:1 6989:2 6991:1 6997:1 7002:2 7006:1 7015:1 7016:1 7027:1 7052:4 7067:5 7068:9 7081:2 7086:1 7090:4 7092:4 7093:3 7094:1 7107:1 7109:1 7116:4 7117:3 7121:1 7136:53 7137:2 7140:2 7147:1 7155:11 7156:9 7162:2 7166:1 7194:1 7201:1 7202:1 7211:1 7212:2 7222:1 7224:1 7229:3 7230:2 7235:1 7242:1 7244:2 7256:2 7264:3 7276:1 7283:1 7294:2 7300:1 7305:2 7319:1 7325:1 7326:2 7348:1 7352:2 7355:1 7356:4 7359:1 7385:1 7389:1 7390:1 7391:1 7402:3 7446:1 7461:1 7477:1 7486:1 7489:2 7491:1 7496:2 7507:1 7508:1 7509:1 7517:1 7519:1 7520:1 7523:1 7538:2 7547:1 7556:1 7558:1 7559:3 7568:1 7575:1 7576:1 7580:2 7588:1 7592:1 7593:2 7609:27 7618:1 7619:1 7637:3 7640:3 7642:1 7644:2 7648:1 7670:1 7676:1 7696:6 7698:1 7700:1 7706:1 7734:1 7744:5 7747:2 7748:2 7751:1 7756:1 7757:1 7771:1 7777:2 7778:4 7784:3 7790:1 7792:1 7796:1 7812:2 7814:1 7820:1 7825:1 7836:1 7840:1 7850:1 7857:1 7858:2 7864:1 7866:1 7876:1 7877:2 7886:2 7889:2 7890:1 7918:1 7940:1 7944:1 7945:1 7950:1 7952:1 7957:1 7976:3 7978:2 7989:7 7991:1 8005:3 8008:3 8014:1 8023:2 8034:1 8036:1 8043:1 8049:2 8052:1 8054:2 8063:1 8069:1 8073:1 8085:3 8095:1 8113:2 8120:1 8124:1 8148:1 8153:1 8154:1 8163:1 8164:1 8171:1 8197:1 8199:1 8211:1 8215:3 8228:1 8247:1 8250:1 8253:2 8254:1 8258:3 8282:3 8289:1 8295:2 8306:1 8311:1 8330:1 8331:1 8332:1 8335:1 8340:2 8345:2 8350:8 8351:1 8356:1 8358:1 8363:2 8370:4 8378:1 8382:1 8387:3 8389:1 8407:7 8409:1 8423:1 8426:1 8434:2 8437:1 8445:11 8446:7 8460:3 8461:1 8469:1 8472:1 8501:3 8507:2 8515:1 8521:1 8525:4 8527:1 8541:1 8544:1 8550:2 8552:2 8553:5 8555:2 8558:1 8567:2 8578:1 8584:1 8597:1 8600:1 8610:1 8612:1 8620:2 8622:1 8632:1 8635:5 8637:2 8638:1 8642:1 8650:1 8655:1 8656:4 8658:2 8663:1 8664:1 8674:5 8698:1 8699:1 8706:1 8728:1 8735:1 8741:1 8756:3 8763:1 8765:3 8771:1 8782:1 8784:1 8786:1 8791:1 8793:1 8817:1 8820:1 8833:1 8838:1 8846:1 8853:8 8856:3 8885:3 8887:1 8894:1 8895:1 8904:3 8908:2 8917:1 8926:1 8942:1 8943:2 8947:1 8953:1 8954:3 8956:3 8958:2 8964:1 8981:1 8987:2 8990:2 9020:2 9022:1 9031:1 9041:1 9067:2 9073:1 9077:1 9087:1 9090:1 9101:2 9107:1 9109:1 9110:1 9113:2 9124:1 9131:1 9132:1 9144:1 9155:1 9172:1 9173:1 9178:2 9179:1 9191:1 9192:1 9196:1 9216:1 9218:1 9221:1 9222:1 9224:1 9230:5 9243:4 9249:4 9251:2 9263:1 9281:2 9291:1 9300:3 9301:1 9314:2 9328:1 9332:2 9337:2 9347:1 9348:1 9354:1 9358:1 9360:1 9361:4 9364:1 9388:2 9391:1 9396:14 9398:2 9402:2 9406:1 9424:2 9425:2 9434:1 9439:1 9450:1 9469:1 9488:1 9491:2 9493:1 9509:1 9524:1 9534:1 9536:1 9537:1 9539:1 9540:1 9542:4 9550:1 9552:1 9555:2 9588:1 9598:1 9601:4 9603:1 9605:1 9608:1 9610:1 9612:1 9613:1 9617:1 9620:3 9624:1 9626:1 9632:1 9635:2 9642:5 9660:1 9681:1 9691:1 9695:1 9696:1 9699:1 9703:1 9708:1 9709:1 9710:2 9711:1 9713:2 9718:1 9725:2 9728:1 9732:1 9739:2 9748:1 9750:3 9755:1 9757:1 9764:2 9766:1 9769:1 9774:1 9775:7 9778:4 9791:2 9795:3 9799:1 9802:1 9807:1 9812:2 9820:1 9834:2 9848:7 9849:2 9866:2 9868:1 9869:1 9878:4 9899:1 9913:1 9916:1 9920:1 9926:3 9936:2 9943:1 9946:7 9964:2 9972:1 9980:1 9982:1 9993:4 10025:1 10030:1 10036:1 10057:1 10085:1 10091:2 10096:1 10102:1 10118:1 10120:1 10136:1 10137:2 10141:3 10144:1 10145:2 10149:1 10152:2 10156:1 10157:5 10158:6 10159:1 10167:1 10168:1 10172:1 10174:2 10177:3 10181:1 10183:4 10188:1 10189:1 10192:1 10195:1 10198:1 10200:1 10201:3 10203:3 10208:1 10213:1 10226:3 10232:1 10234:2 10255:1 10257:1 10259:5 10262:1 10271:1 10294:1 10297:1 10312:1 10321:2 10323:1 10326:2 10339:1 10341:1 10385:1 10392:1 10404:1 10405:1 10406:1 10412:1 10423:1 10425:1 10426:3 10445:1 10463:1 10474:1 10477:1 10478:1 10484:2 10487:1 10500:3 10503:2 10507:1 10509:1 10518:2 10523:2 10525:1 10526:1 10528:2 10531:1 10537:3 10539:1 10540:1 10541:2 10550:1 10556:3 10559:2 10570:1 10572:1 10587:21 10588:1 10611:1 10621:1 10625:5 10632:1 10635:2 10636:3 10644:1 10648:2 10655:1 10673:1 10675:2 10682:3 10683:1 10690:1 10693:3 10695:2 10696:1 10706:1 10724:1 10738:1 10759:1 10766:1 10783:1 10796:2 10798:1 10803:3 10804:1 10805:1 10807:1 10808:1 10814:1 10821:1 10822:5 10826:1 10827:2 10828:1 10830:2 10840:1 10841:1 10851:1 10860:1 10863:1 10864:1 10866:1 10870:2 10874:5 10875:1 10880:5 10884:1 10898:1 10921:1 10934:2 10938:1 10947:1 10953:2 10972:1 10975:1 10983:1 10984:1 10998:1 11009:1 11014:1 11016:1 11017:1 11023:6 11032:1 11038:1 11043:2 11046:1 11058:1 11063:1 11070:1 11071:1 11076:2 11081:2 11100:2 11103:1 11117:2 11127:1 11129:2 11150:1 11170:2 11175:1 11189:1 11191:2 11195:1 11201:2 11205:1 11219:1 11236:1 11244:1 11246:1 11247:1 11251:5 11252:1 11253:4 11255:1 11256:2 11267:2 11273:2 11279:1 11283:1 11285:1 11290:1 11320:1 11335:1 11338:2 11339:1 11341:1 11357:1 11368:1 11376:1 11388:1 11393:1 11407:1 11410:1 11413:1 11423:1 11439:1 11476:3 11494:2 11507:1 11518:1 11520:1 11523:1 11527:1 11539:1 11545:1 11550:1 11552:2 11553:1 11568:1 11570:3 11579:1 11593:1 11599:1 11606:1 11647:1 11658:1 11663:1 11665:1 11666:3 11674:1 11687:1 11705:15 11710:6 11719:1 11723:2 11728:1 11734:1 11739:1 11746:2 11747:3 11753:4 11755:2 11767:1 11770:1 11775:1 11779:2 11780:1 11786:1 11792:2 11794:1 11798:1 11800:1 11829:1 11845:1 11850:1 11851:1 11858:2 11863:1 11879:1 11886:1 11887:1 11889:1 11890:1 11903:1 11923:1 11924:1 11928:1 11930:2 11932:1 11942:1 11944:1 11946:1 11963:1 11977:1 11982:5 11994:2 11996:1 12041:1 12042:1 12060:1 12071:2 12075:1 12078:1 12082:1 12083:1 12085:4 12090:4 12099:2 12101:2 12105:2 12106:2 12115:3 12122:1 12138:8 12157:1 12161:2 12186:1 12193:4 12194:1 12205:1 12217:1 12221:2 12223:1 12224:1 12225:2 12233:9 12236:1 12242:3 12247:1 12256:1 12260:1 12264:1 12272:1 12273:1 12279:2 12283:1 12289:1 12290:1 12301:23 12306:1 12308:1 12311:1 12327:1 12342:2 12343:2 12346:1 12350:3 12366:1 12371:2 12374:1 12384:2 12394:1 12395:1 12397:1 12421:3 12441:1 12446:6 12449:1 12465:1 12471:2 12475:1 12478:1 12492:1 12499:5 12515:1 12521:1 12525:1 12528:1 12533:3 12535:1 12537:2 12542:1 12544:1 12549:1 12551:1 12558:6 12559:1 12561:1 12562:2 12563:1 12564:2 12565:1 12569:8 12570:3 12584:1 12587:1 12590:1 12591:1 12593:1 12594:1 12595:1 12616:1 12620:1 12636:1 12643:1 12675:2 12680:2 12685:1 12686:1 12695:1 12706:1 12711:1 12719:7 12751:1 12756:1 12758:1 12760:1 12767:1 12768:1 12770:1 12773:2 12774:1 12778:1 12790:3 12794:1 12814:2 12820:1 12821:1 12829:1 12830:1 12833:1 12836:8 12845:1 12857:3 12861:1 12867:1 12890:1 12902:1 12903:2 12909:2 12913:1 12923:1 12929:1 12931:1 12934:1 12944:1 12957:2 12977:1 12983:1 12984:1 12990:1 12993:1 12997:1 13004:1 13010:1 13017:1 13052:1 13063:2 13075:1 13077:5 13091:1 13104:1 13123:1 13143:1 13175:1 13199:1 13200:1 13204:3 13205:4 13212:1 13222:2 13223:2 13225:1 13227:1 13229:2 13230:1 13248:1 13250:1 13251:1 13256:1 13265:2 13276:1 13285:1 13294:2 13305:1 13312:1 13327:2 13334:1 13337:1 13349:1 13353:1 13355:1 13361:2 13367:1 13375:4 13380:2 13428:1 13430:2 13433:1 13444:2 13457:2 13476:2 13477:1 13481:1 13484:1 13491:2 13506:1 13513:1 13517:1 13529:1 13531:1 13540:4 13552:1 13555:1 13558:2 13563:1 13587:1 13589:1 13595:1 13637:1 13643:3 13689:2 13693:2 13696:1 13700:1 13702:1 13712:1 13722:2 13734:1 13762:2 13774:1 13776:3 13781:1 13793:1 13794:1 13795:2 13799:1 13800:1 13801:1 13804:1 13806:1 13829:1 13887:1 13891:1 13894:1 13900:2 13922:1 13928:1 13944:1 13974:1 13991:1 13995:2 14004:1 14010:1 14027:1 14032:1 14034:1 14035:2 14047:1 14064:2 14071:3 14075:1 14096:1 14098:1 14099:1 14107:1 14113:2 14130:3 14134:1 14156:1 14158:1 14168:2 14184:1 14189:2 14211:1 14213:1 14216:1 14217:2 14225:1 14229:6 14244:4 14252:1 14263:5 14266:1 14279:3 14299:1 14302:1 14311:1 14321:1 14328:2 14332:1 14335:2 14340:1 14377:1 14391:2 14392:1 14403:2 14409:1 14413:1 14417:4 14420:1 14424:1 14426:1 14432:1 14443:2 14445:5 14446:1 14450:1 14453:1 14462:2 14465:1 14475:1 14491:2 14497:2 14523:1 14532:2 14535:1 14539:1 14550:3 14559:2 14567:1 14570:1 14572:3 14587:1 14600:3 14605:1 14615:1 14648:1 14667:1 14669:1 14673:1 14676:1 14682:1 14683:1 14686:1 14687:21 14690:1 14703:1 14704:1 14706:1 14709:3 14712:1 14738:3 14772:2 14783:1 14789:2 14796:4 14817:2 14821:1 14826:1 14832:2 14845:1 14876:1 14883:1 14890:1 14891:1 14892:1 14902:2 14903:1 14912:1 14925:1 14928:1 14929:1 14931:3 14934:1 14946:1 14950:1 14954:6 14955:2 14956:2 14957:6 14958:2 14959:1 14963:2 14965:1 14967:2 14968:5 14972:1 14973:1 14975:1 14978:1 14979:2 14987:1 15004:1 15013:2 15021:1 15024:1 15037:1 15060:1 15068:1 15069:1 15083:1 15087:2 15088:1 15090:1 15095:1 15109:2 15113:1 15114:1 15117:1 15119:2 15120:2 15128:1 15140:2 15143:1 15162:1 15169:1 15170:1 15177:1 15178:1 15183:1 15192:1 15198:1 15204:1 15214:1 15217:1 15240:1 15250:1 15252:1 15254:1 15262:3 15272:1 15274:2 15281:2 15282:1 15290:1 15294:5 15299:1 15302:2 15308:1 15316:1 15321:2 15324:1 15325:4 15327:1 15329:2 15334:1 15336:1 15342:4 15344:2 15353:4 15359:1 15367:1 15372:1 15402:1 15407:14 15408:1 15422:1 15426:1 15431:2 15432:4 15434:2 15437:1 15472:1 15476:1 15490:1 15491:1 15497:2 15499:1 15507:1 15512:4 15524:1 15525:1 15534:1 15538:4 15541:2 15553:1 15558:1 15574:1 15575:2 15580:1 15596:5 15603:1 15607:1 15617:2 15619:1 15622:1 15646:1 15661:2 15667:1 15688:1 15703:2 15705:4 15719:1 15720:1 15722:1 15731:1 15748:1 15763:1 15765:1 15768:1 15787:1 15790:1 15799:1 15808:2 15814:1 15821:1 15828:1 15837:1 15845:2 15854:1 15858:2 15862:1 15864:2 15868:1 15870:1 15873:1 15886:1 15889:1 15890:1 15909:1 15930:1 15938:1 15959:1 15966:1 15979:1 15982:1 15988:1 16000:1 16005:1 16007:1 16021:3 16027:1 16036:1 16037:3 16041:1 16046:1 16047:1 16054:3 16059:2 16060:2 16064:3 16068:1 16070:1 16071:10 16109:1 16111:2 16112:1 16116:4 16117:1 16121:1 16128:3 16133:1 16136:2 16139:1 16140:1 16156:1 16176:1 16189:1 16194:1 16203:1 16204:1 16222:4 16226:1 16236:1 16244:2 16256:1 16257:1 16261:1 16266:1 16276:1 16279:1 16309:1 16311:1 16312:1 16313:1 16315:1 16334:1 16339:1 16343:1 16344:1 16347:2 16357:2 16379:1 16401:1 16405:1 16417:1 16425:1 16426:3 16433:1 16437:1 16439:1 16450:1 16452:1 16466:1 16487:1 16514:2 16540:1 16542:1 16551:2 16570:2 16577:1 16651:2 16657:2 16658:1 16664:1 16674:1 16680:1 16687:1 16703:1 16709:1 16719:1 16721:1 16727:1 16735:1 16745:1 16746:1 16748:1 16758:1 16770:1 16771:1 16787:1 16791:3 16795:1 16805:1 16838:1 16848:15 16860:2 16880:1 16906:1 16931:1 16932:1 16954:15 16963:4 16964:2 16975:1 16977:7 16990:1 16997:1 17001:3 17012:1 17025:2 17048:6 17058:2 17068:2 17084:2 17085:1 17087:1 17107:3 17112:2 17114:1 17125:3 17126:3 17132:1 17137:2777 17147:1 17151:1 17160:1 17161:1 17162:1 17163:1 17172:1 17188:1 17197:1 17200:1 17201:1 17202:1 17210:1 17220:2 17235:1 17238:1 17251:1 17258:2 17262:1 17263:1 17282:1 17296:1 17307:1 17311:1 17314:1 17317:2 17321:6 17322:4 17332:1 17339:1 17341:1 17351:1 17355:1 17359:1 17365:1 17375:1 17386:1 17399:1 17404:1 17406:1 17407:1 17448:1 17450:3 17453:2 17459:1 17466:1 17494:1 17500:2 17502:1 17503:3 17507:2 17521:1 17522:1 17534:2 17536:1 17549:1 17551:2 17552:1 17564:2 17566:1 17573:1 17581:1 17588:1 17591:1 17599:1 17603:2 17608:1 17616:1 17627:2 17632:1 17636:1 17639:1 17642:2 17643:2 17644:2 17646:2 17655:1 17661:1 17670:2 17672:1 17691:2 17692:3 17708:4 17712:1 17716:1 17728:3 17752:3 17753:1 17758:1 17761:1 17764:1 17770:1 17771:2 17773:2 17777:9 17787:1 17801:1 17803:1 17818:1 17823:2 17824:1 17825:1 17833:2 17846:5 17847:1 17860:1 17862:2 17877:1 17891:1 17900:4 17905:1 17907:2 17912:1 17914:2 17929:4 17930:2 17935:1 17938:1 17942:2 17956:1 17960:1 17961:5 17968:2 17970:1 17975:3 18006:5 18009:2 18012:1 18017:1 18031:2 18034:2 18038:2 18039:2 18043:1 18046:1 18047:2 18050:1 18058:2 18068:2 18075:1 18077:1 18078:1 18079:1 18080:1 18083:1 18088:1 18117:1 18130:3 18144:1 18145:2 18146:1 18147:1 18149:1 18152:1 18153:3 18158:1 18178:1 18182:1 18183:1 18185:1 18187:1 18196:1 18203:2 18208:1 18214:2 18227:1 18229:2 18237:2 18238:1 18242:1 18249:1 18252:1 18263:1 18268:2 18269:1 18276:1 18279:2 18282:4 18287:1 18288:4 18289:1 18335:1 18340:1 18354:3 18360:1 18363:1 18368:2 18369:2 18371:2 18388:2 18389:3 18392:3 18399:3 18404:1 18405:3 18407:2 18409:1 18421:5 18430:3 18449:1 18451:1 18458:1 18460:1 18462:1 18465:2 18466:4 18494:1 18495:2 18504:2 18505:1 18507:1 18510:1 18526:2 18531:3 18548:1 18552:2 18553:3 18569:1 18570:1 18577:3 18578:23 18579:2 18586:1 18592:5 18596:1 18610:1 18612:2 18613:1 18620:1 18627:1 18643:3 18652:1 18653:1 18663:1 18672:1 18678:1 18683:1 18695:1 18697:1 18700:2 18701:1 18705:1 18726:1 18738:1 18746:1 18757:1 18759:1 18768:4 18787:1 18789:2 18802:2 18807:1 18817:2 18828:1 18830:1 18834:1 18840:2 18850:1 18865:8 18871:3 18878:1 18886:1 18916:1 18917:1 18920:1 18927:1 18933:1 18937:1 18968:1 18969:1 18973:4 18987:4 18996:1 18999:1 19002:1 19006:1 19010:1 19011:1 19020:1 19023:2 19024:1 19051:2 19057:3 19063:2 19066:3 19067:1 19073:3 19074:1 19078:1 19080:1 19081:1 19089:2 19093:1 19116:5 19126:2 19127:1 19128:1 19135:1 19142:1 19149:2 19151:1 19153:3 19162:2 19176:1 19178:2 19183:1 19190:2 19191:1 19198:5 19202:1 19206:2 19207:1 19209:1 19213:1 19215:2 19227:3 19243:1 19250:1 19258:2 19264:1 19271:1 19277:2 19296:1 19297:1 19298:1 19302:2 19304:1 19312:2 19319:2 19321:2 19327:2 19331:2 19332:1 19337:2 19353:1 19358:2 19381:2 19392:1 19393:4 19401:1 19402:1 19403:4 19418:1 19420:1 19427:2 19431:1 19435:1 19440:1 19441:1 19446:2 19447:1 19450:1 19452:1 19460:1 19463:1 19476:1 19480:1 19481:1 19486:1 19510:2 19514:1 19517:1 19519:1 19524:2 19525:3 19533:1 19535:1 19538:1 19550:1 19618:1 19622:1 19640:2 19652:3 19656:1 19664:4 19665:2 19667:1 19669:1 19673:1 19674:1 19679:1 19687:1 19694:2 19699:3 19705:1 19714:1 19723:1 19740:1 19746:1 19750:1 19758:1 19768:1 19769:1 19787:2 19789:1 19790:1 19791:1 19794:1 19796:2 19799:1 19800:1 19811:1 19814:1 19818:2 19825:2 19830:2 19833:1 19834:1 19838:2 19839:1 19841:1 19842:1 19851:1 19853:2 19865:1 19874:14 19886:2 19887:3 19892:2 19902:1 19916:1 19924:1 19926:1 19929:1 19931:1 19941:1 19943:2 19948:1 19949:2 19952:1 19955:1 19984:1 20000:3 20010:1 20019:2 20024:1 20026:1 20030:1 20034:6 20036:3 20037:1 20046:2 20054:1 20055:1 20056:1 20059:1 20061:1 20081:1 20082:1 20083:1 20085:3 20087:4 20088:2 20089:1 20111:1 20114:1 20151:1 20171:4 20174:1 20176:5 20178:3 20179:3 20181:1 20182:1 20186:1 20189:2 20193:1 20194:2 20202:1 20204:1 20205:5 20212:1 20213:1 20218:1 20219:1 20223:1 20236:1 20244:2 20252:2 20255:2 20269:1 20297:1 20315:2 20317:3 20322:1 20324:1 20326:1 20329:1 20338:1 20344:1 20351:1 20364:1 20365:3 20368:1 20374:1 20375:1 20377:1 20381:3 20383:2 20392:2 20395:1 20396:1 20405:1 20409:1 20421:2 20423:1 20425:5 20431:1 20440:1 20441:4 20446:1 20447:3 20455:1 20463:1 20470:1 20476:1 20484:2 20487:1 20490:1 20491:1 20492:4 20498:2 20503:1 20512:2 20513:10 20515:1 20519:2 20525:1 20526:1 20529:1 20531:1 20547:1 20549:1 20553:1 20575:9 20576:1 20589:1 20609:1 20624:1 20631:6 20632:1 20636:1 20637:1 20640:1 20642:1 20649:1 20650:1 20664:1 20665:3 20678:1 20687:1 20690:4 20701:1 20715:1 20717:1 20722:2 20723:1 20726:7 20728:2 20735:3 20739:1 20740:4 20749:1 20753:1 20757:1 20759:1 20773:1 20775:5 20787:1 20794:1 20795:4 20797:1 20800:3 20809:1 20815:1 20817:1 20827:1 20831:1 20834:1 20838:1 20846:1 20848:1 20851:1 20863:1 20866:1 20890:1 20895:1 20902:1 20903:1 20904:1 20906:1 20914:1 20921:2 20935:10 20936:3 20941:1 20952:2 20957:3 20962:4 20969:1 20970:3 20982:2 20983:1 20986:1 20996:1 21021:1 21032:1 21033:1 21037:2 21040:2 21055:1 21056:1 21059:1 21080:1 21083:1 21084:1 21085:1 21086:2 21101:1 21104:2 21113:1 21121:1 21128:2 21131:1 21138:2 21139:1 21142:1 21170:2 21175:3 21181:1 21204:3 21215:1 21249:3 21253:1 21269:1 21294:3 21297:3 21304:7 21314:2 21322:1 21328:1 21330:3 21341:3 21344:2 21345:3 21358:1 21368:4 21406:1 21410:1 21413:2 21434:1 21436:2 21441:1 21446:1 21458:1 21463:1 21472:4 21476:1 21484:1 21502:1 21505:1 21510:3 21527:2 21534:1 21537:2 21548:1 21549:1 21559:1 21566:1 21575:1 21576:2 21579:4 21584:3 21590:1 21592:1 21603:1 21605:1 21609:1 21624:3 21625:2 21626:1 21628:2 21638:1 21641:1 21644:1 21650:1 21692:1 21695:1 21696:5 21697:1 21698:1 21701:1 21706:1 21712:1 21714:1 21715:4 21716:1 21718:1 21719:1 21722:1 21725:1 21737:1 21749:1 21766:3 21769:1 21779:1 21789:2 21790:2 21832:3 21840:1 21845:2 21853:1 21878:2 21884:1 21886:1 21902:1 21914:1 21929:1 21941:1 21943:2 21951:2 21953:1 21964:1 21979:1 21994:1 21996:1 21998:1 22008:2 22017:1 22029:2 22038:1 22047:1 22057:1 22066:1 22084:1 22090:1 22101:2 22103:1 22113:1 22136:2 22140:1 22165:2 22176:4 22186:1 22212:1 22213:8 22220:1 22228:1 22233:1 22236:1 22241:5 22245:1 22259:1 22261:1 22267:1 22270:5 22279:1 22280:1 22287:1 22293:1 22317:4 22319:1 22340:4 22341:2 22345:1 22346:2 22381:1 22425:1 22426:1 22427:1 22451:1 22453:1 22454:1 22455:1 22461:1 22464:2 22467:3 22469:4 22471:1 22473:2 22475:1 22476:1 22477:1 22479:2 22482:1 22483:3 22484:1 22493:1 22494:1 22505:1 22518:6 22535:1 22536:2 22539:1 22544:1 22551:1 22552:1 22555:1 22557:1 22582:12 22585:6 22587:1 22609:1 22611:2 22612:1 22618:1 22619:1 22630:1 22635:1 22636:1 22638:1 22639:2 22643:3 22651:3 22667:1 22669:1 22670:1 22681:1 22690:1 22728:1 22735:1 22756:1 22767:1 22768:1 22777:3 22781:2 22787:1 22794:1 22796:1 22800:3 22807:1 22809:2 22813:1 22817:1 22822:3 22823:2 22826:1 22843:1 22845:1 22850:1 22857:1 22858:2 22860:1 22863:1 22866:1 22872:1 22874:1 22890:1 22896:1 22901:5 22913:3 22917:1 22918:1 22924:1 22930:1 22932:1 22941:2 22946:2 22950:1 22952:3 22953:1 22957:1 22968:1 22974:1 22975:1 23001:1 23002:18 23003:2 23023:1 23026:1 23032:1 23033:1 23036:1 23045:1 23055:1 23066:2 23067:1 23074:2 23078:1 23085:1 23098:2 23101:1 23105:2 23106:1 23110:1 23111:1 23131:1 23133:1 23139:1 23143:1 23145:1 23160:1 23166:1 23173:1 23179:1 23197:1 23198:1 23203:1 23220:12 23221:1 23235:1 23240:2 23241:1 23247:1 23253:1 23258:1 23264:3 23270:1 23276:1 23280:1 23285:7 23286:1 23291:1 23304:1 23308:1 23311:2 23314:1 23340:1 23353:3 23359:1 23365:1 23371:2 23385:1 23386:1 23394:1 23398:1 23407:1 23422:2 23426:2 23428:1 23437:2 23448:1 23452:1 23459:1 23473:1 23480:2 23491:1 23527:1 23528:2 23534:1 23538:1 23540:1 23550:1 23560:1 23564:3 23569:5 23571:1 23577:1 23579:2 23594:1 23617:7 23629:1 23632:1 23636:1 23648:1 23650:8 23663:2 23677:1 23681:1 23682:1 23685:1 23688:4 23689:1 23690:1 23698:1 23701:1 23705:1 23714:1 23715:1 23746:1 23751:1 23759:1 23769:1 23777:2 23795:1 23803:1 23821:1 23826:1 23833:3 23838:1 23853:1 23860:1 23882:1 23889:1 23903:1 23904:1 23906:1 23919:2 23922:1 23926:2 23928:1 23929:3 23934:1 23944:1 23945:1 23952:1 23953:1 23958:2 23959:1 23971:1 23981:1 23983:1 23988:3 23991:1 24023:5 24030:1 24035:1 24044:1 24058:1 24065:1 24074:2 24075:1 24084:1 24088:1 24094:17 24095:2 24105:2 24115:1 24124:1 24126:2 24147:4 24150:1 24151:2 24163:1 24165:1 24170:2 24183:1 24186:2 24188:2 24199:1 24207:1 24211:4 24215:3 24221:4 24224:3 24226:4 24228:1 24230:1 24241:1 24245:1 24246:1 24253:1 24266:1 24293:1 24300:1 24301:1 24302:1 24314:2 24324:1 24337:1 24340:2 24350:1 24362:3 24370:2 24380:1 24384:2 24386:1 24387:1 24388:2 24399:2 24415:6 24417:1 24418:1 24425:1 24426:1 24427:1 24429:1 24434:2 24439:1 24442:1 24446:1 24447:1 24467:1 24470:2 24471:2 24483:2 24531:1 24537:2 24553:1 24561:1 24562:1 24569:3 24596:1 24621:1 24634:1 24635:1 24641:6 24652:1 24653:1 24677:1 24684:1 24689:1 24690:1 24703:1 24707:1 24711:3 24716:1 24721:1 24744:2 24746:2 24747:2 24750:2 24758:3 24769:1 24773:1 24785:1 24788:1 24793:1 24797:2 24813:1 24823:2 24837:1 24838:2 24839:1 24849:1 24851:1 24862:1 24886:1 24895:2 24912:2 24915:5 24918:1 24921:1 24922:2 24931:1 24933:2 24936:1 24938:2 24943:2 24950:1 24956:1 24961:3 24972:2 24974:1 24977:1 24980:1 24985:2 24986:2 24991:1 25000:1 25013:1 25016:1 25021:1 25026:1 25028:1 25032:2 25037:1 25063:1 25077:6 25081:3 25084:2 25091:1 25098:1 25099:1 25108:1 25120:1 25126:1 25132:2 25137:1 25143:2 25148:2 25151:1 25155:2 25163:1 25164:1 25172:2 25174:1 25181:1 25187:1 25190:1 25192:1 25193:1 25200:1 25201:1 25204:4 25205:1 25206:1 25207:1 25210:4 25213:1 25217:2 25219:1 25222:1 25229:3 25238:2 25243:1 25247:1 25279:1 25288:1 25297:5 25311:1 25318:2 25335:2 25350:1 25358:1 25361:1 25401:1 25404:2 25425:1 25429:1 25439:1 25444:1 25445:2 25457:1 25459:1 25465:2 25480:2 25482:1 25486:1 25487:1 25490:1 25492:3 25499:5 25513:1 25521:1 25532:1 25542:1 25553:1 25563:7 25598:2 25600:1 25613:1 25631:1 25636:1 25648:1 25652:1 25655:1 25656:1 25660:2 25674:2 25680:1 25691:2 25699:1 25709:1 25715:1 25734:1 25739:1 25742:1 25745:1 25755:2 25759:2 25760:3 25761:1 25766:1 25768:1 25773:3 25775:1 25778:3 25790:1 25792:2 25799:1 25801:5 25802:1 25811:1 25813:1 25815:1 25816:1 25817:1 25823:1 25828:3 25832:2 25836:2 25840:1 25845:1 25847:5 25851:1 25860:3 25867:3 25870:1 25883:3 25884:1 25886:3 25889:1 25893:1 25906:3 25922:1 25924:1 25941:2 25949:1 25963:1 25969:3 25971:5 25977:7 26008:6 26021:1 26023:1 26034:1 26045:3 26051:1 26052:1 26054:1 26064:1 26072:1 26081:1 26083:7 26088:1 26092:2 26114:1 26120:1 26126:1 26131:1 26141:1 26146:1 26158:1 26162:1 26164:2 26170:1 26172:1 26173:3 26179:2 26182:1 26196:3 26222:1 26231:1 26232:1 26233:1 26234:1 26245:8 26246:2 26249:2 26252:1 26257:1 26259:1 26263:2 26276:1 26277:1 26308:6 26325:1 26351:1 26365:1 26372:2 26399:1 26401:1 26424:1 26426:1 26441:1 26468:1 26470:1 26488:2 26495:1 26497:1 26498:2 26499:3 26502:2 26504:3 26511:1 26515:2 26516:1 26525:1 26539:1 26552:1 26561:1 26571:1 26576:1 26592:1 26611:3 26614:1 26620:2 26648:2 26651:2 26653:2 26668:1 26670:1 26683:1 26686:1 26699:1 26704:1 26705:1 26715:1 26721:4 26722:1 26727:1 26728:2 26730:1 26736:1 26758:1 26760:2 26763:4 26767:2 26780:1 26784:1 26806:1 26813:1 26819:1 26825:1 26836:1 26844:1 26862:1 26866:1 26868:3 26876:1 26878:1 26892:1 26901:4 26903:1 26919:1 26940:2 26943:2 26961:1 26965:1 26966:3 26973:3 26974:4 26975:1 26978:1 27006:1 27012:1 27020:1 27022:5 27025:1
|
f059a4f780f7d891def7edc74c9f62c66971f427 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2153/CH7/EX7.1/ex_7_1.sce | bbe6b757adf91048a0503debd704b98d28e29d00 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 207 | sce | ex_7_1.sce | //Example 7.1 : shear modulus of the material
clc;
clear;
close;
//given data :
format('v',6)
E=210; // youngs's modulus in GN/m^2
v=0.3; // poisson ratio
G=E/(2*(1+v));
disp(G,"shear modulus,G(GN/m^2) = ")
|
3904e6b074a41fed691f0109c0ba29a9a9d80ea0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3754/CH21/EX21.5/21_5.sce | 7c572fa71d56c8ba72acecff43b4988f1fb965f4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 426 | sce | 21_5.sce | clear//
//Variables
TON = 30.0 //Chopper ON time (in milli-second)
TOFF = 10.0 //Chopper OFF time (in milli-second)
//Calculation
T = TON + TOFF //Total time (in milli-second)
cdc = TON / T //Chopper duty cycle
f = 1 / T //Chopping frequency (in Hertz)
//Result
printf("\n Chopper duty cycle is %0.3f .\nChopping frequency is %0.3f Hz.",cdc,f*10**3)
|
6e7cc43537b64d6b68b447b5f73be5632d323325 | b26cbe6bc3e201f030705aaf9eb82da94def231f | /tests/Morisita_RP-020.tst | ac4256d3cde9969d7cdfe9f5c7738cfd7be1db44 | [] | no_license | RP-pbm/Recurrence-plot | f86c5cd85460661b01a609f8f4281d2cda6b4e07 | b5da95f9b30c1a924a002102219bf0a2ad47df2c | refs/heads/master | 2022-07-24T12:11:34.163543 | 2022-07-09T19:32:43 | 2022-07-09T19:32:43 | 92,934,698 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 31 | tst | Morisita_RP-020.tst | ../inputs/pops-11x2-sine-01.ssv |
c671c56a3a7797e748bce6c6707928356efc61ba | 645b54435638226a1dfff613a3516b3d8756740e | /nand/projects/07_/StackArithmetic/SimpleAdd/SimpleAdd.tst | 174c1e84fecb4f250e780518aff42d1562a69cad | [] | no_license | lebronjamesking/brianrepo | 7582c1f166a5b10e57e3e2618503e7c95643850e | aa68ee0b5567957a98b0acb5fe9a73429ea0773e | refs/heads/master | 2021-01-10T09:16:00.197088 | 2011-01-23T20:52:18 | 2011-01-23T20:52:18 | 45,513,556 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 171 | tst | SimpleAdd.tst | rom-load SimpleAdd.asm,
output-file SimpleAdd.out,
compare-to SimpleAdd.cmp,
output-list RAM[0]%D2.6.2 RAM[256]%D2.6.2;
set RAM[0] 256,
repeat 60 {
ticktock;
}
output;
|
5cde20862f62de7922db8e6a5eb7ad63063daf8b | ad617742f184bf6d4cceb3e9c99232d8bd52b862 | /tests/ilc.tst | ae71f34669d92049064e5f4682291ab83cf81172 | [
"LicenseRef-scancode-unknown-license-reference",
"LicenseRef-scancode-other-permissive",
"BSD-2-Clause"
] | permissive | 9track/hyperion | d621343e7eea27c45db49c7c284dd1680491c82c | 9ceed2cc7261820eef01c55dac9b9a6ae47636b2 | refs/heads/master | 2022-09-15T12:19:09.059528 | 2020-05-28T03:05:29 | 2020-05-28T03:05:29 | 268,044,749 | 3 | 1 | NOASSERTION | 2020-05-30T09:03:56 | 2020-05-30T09:03:55 | null | UTF-8 | Scilab | false | false | 851 | tst | ilc.tst | # This test file was generated from offline assembler source
# by bldhtc.rexx 16 Jan 2016 12:11:11
# Treat as object code. That is, modifications will be lost.
# assemble and listing files are provided for information only.
*Testcase ilc
numcpu 1
sysclear
archmode z
r 60=00020000000000000000000000000000
r 70=0002000000000000000000000000DEAD
r 1A0=00000001800000000000000000000200
r 1D0=00000001800000000000000000000220
r 200=41F00C0041200021EB110240002FEB9B
r 210=0248002FAD440000A72C0002B2B20060
r 220=D213F000008C41F0F020D5010260008E
r 230=47700238B2B20150
r 238=B2B20070000000000000000000000020
r 248=00000000400000000000000000000218
r 258=000000000000021B0080
runtest .1
*Compare
gpr
*Gpr 2 0042
r 8c.14 # last program check for info
r c00.14
r c00.c
*Want "MHI ilc" 00040080 00000000 000040F0
r c20.14
*Done
|
11fab535bcb1021323c4f12358050426aca5937c | 449d555969bfd7befe906877abab098c6e63a0e8 | /49/CH7/EX7.2/ex2.sce | 9053b0beeec77f05b6eeba3eabc1d22e72602549 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | ex2.sce | //CHAPTER 7_ Flow Measurement
//Caption : Anemometers
// Example 2// Page 426
// To derive an expression for velocity across a hot wire anemometer in terms of the wire resistance Rw, the current through the wire Iw and the empirical constants C0 and C1 and the fluid temperature.
disp("C0+C1(v)^.5)(Tw-Tf)=Iw^2Rw")
disp("Rw= Rr[1+a(Tw-Tr)]")
disp("Rw/Rr=1+a(Tw-Tr)")
disp("Tw-Tr=1/a[Rw/Rr-1]")
disp("Tw=1/a[Rw/Rr-1]+Tr")
disp("Co+C1(v)^0.5=Iw^2Rw/Tw-Tf")
disp("so,")
disp("v=1/C1[{Iw^2Rw/(1/a[Rw/Rr-1]+Tr-Tf)]}^2-C0")
|
e408466bfea11f35a3744a1f0ce488cda0104b88 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2672/CH4/EX4.9/Ex4_9.sce | ca89c5ac3beb48d1f06d9445edba6a7999bf0e1b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 351 | sce | Ex4_9.sce | //Example 4_9
clc;
clear;
close;
format('v',6)
//given data :
//me=2*mh
meBYmh=2;//ratio
T=300;//K
kT=0.026;//eV//at room temperature/T=300 K
//EF=3/4*kT*log(1/meBYmh)-EG/2
//position of fermi level below centre of forbidden gap
EF=-3/4*kT*log(1/meBYmh);//eV
disp(EF,"Position of fermi level below centre of forbidden gap by (eV) : ");
|
ed96fc8699aeba635f14a02525281027fb392706 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1092/CH14/EX14.13/Example14_13.sce | 6825bf47a392724c5e9c2e4074b79a16c8f428d6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 2,322 | sce | Example14_13.sce | // Electric Machinery and Transformers
// Irving L kosow
// Prentice Hall of India
// 2nd editiom
// Chapter 14: TRANSFORMERS
// Example 14-13
clear; clc; close; // Clear the work space and console.
// Given data
kVA = 500 ; // kVA rating of the step-down transformer
V_1 = 2300 ; // Primary voltage in volt
V_2 = 230 ; // Secondary voltage in volt
f = 60 ; // Frequency in Hz
r_1 = 0.1 ; // Primary winding resistance in ohm
x_1 = 0.3 ; // Primary winding reactance in ohm
r_2 = 0.001 ; // Secondary winding resistance in ohm
x_2 = 0.003 ; // Secondary winding reactance in ohm
// calculated data from Example 14-12
Z_L = 0.1058 ; // Load impedance in ohm
// Calculations
alpha = V_1 / V_2 ; // Transformation ratio
// case a
R_e1 = r_1 + (alpha)^2 * r_2 ; // Equivalent internal resistance referred to the
// primary side in ohm
// case b
X_e1 = x_1 + (alpha)^2 * x_2 ; // Equivalent internal reactance referred to the
// primary side in ohm
// case c
Z_e1 = R_e1 + %i*(X_e1) ; // Equivalent internal impedance referred to the
// primary side in ohm
Z_e1_m = abs(Z_e1);//Z_e1_m=magnitude of Z_e1 in ohm
Z_e1_a = atan(imag(Z_e1) /real(Z_e1))*180/%pi;//Z_e1_a=phase angle of Z_e1 in degrees
// case d
Z_L_prime = (alpha)^2 * (Z_L); // Equivalent secondary load impedance referred
// to the primary side in ohm
// case e
R_L = Z_L ; // Load resistance in ohm
X_L = 0 ; // Load reactance in ohm
// Primary load current in A , when V_1 = 2300 V
I_1 = V_1 / ( (R_e1 + alpha^2*R_L) + %i*(X_e1 + alpha^2*X_L) );
// Display the results
disp("Example 14-13 Solution : ");
printf(" \n a: Equivalent internal resistance referred to the primary side :");
printf(" \n R_c1 = %.2f ohm \n ",R_e1 );
printf(" \n b: Equivalent internal reactance referred to the primary side :");
printf(" \n X_c1 = %.2f ohm \n ",X_e1 );
printf(" \n c: Equivalent internal impedance referred to the primary side : ");
printf(" \n Z_c1 in ohm = ");disp(Z_e1);
printf(" \n Z_c1 = %.3f <%.2f ohm \n ", Z_e1_m , Z_e1_a );
printf(" \n d: Equivalent secondary load impedance referred to the primary side :");
printf(" \n (alpha)^2 * Z_L = %.2f ohm = (alpha)^2 * R_L \n",Z_L_prime);
printf(" \n e: Primary load current :\n I_1 = %f A ≈ %.f A ", I_1, I_1);
|
5d391eb6f5939916dd842140139eaba183fce842 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3733/CH34/EX34.21/Ex34_21.sce | 095e4d252a4ed995bda4db09073ca55134813d69 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 931 | sce | Ex34_21.sce | // Example 34_21
clc;funcprot(0);
//Given data
P=142.5;// Plant capacity in MW
CC=130*10^7;// The Capital cost in rupees
Ac_o=18.8*10^7;// Annual cost of coal,oil,tax and salaries in rupees
R_i=5;// Rate of interest in % of capital
R_d=5;// Rate of depreciation in % of capital
U_e=6;// Unit of energy used in % of the total units supplied
F_l=0.6;// The annual load factor
F_c=0.5;// Annual capacity factor
//Calculation
MD=(P*F_c)/F_l;// Maximum demand in MW
Rc=P-MD;// Reserve capacity in MW
E_s=MD*10^3*F_l*8760;// Yearly energy supplied by the plant in kWh
E_g=(1+(U_e/100))*E_s;// Yearly energy generated in kWh
ID=((R_i+R_d)/100)*CC;//Interest and decpreciation in Rs./year
TC=(ID+Ac_o);// Total cost in Rs./year
Oc=(TC/E_g);// Overall cost of generation in Rs./kWh
printf('\nReserve capacity=%0.2f MW \nOverall cost of generation=Rs.%0.3f/kWh',Rc,Oc);
// The answer provided in the textbook is wrong
|
ca0c8a812044d6390d631d7cfd0c1f9fcccda193 | ebd6f68d47e192da7f81c528312358cfe8052c8d | /swig/Examples/scilab/contract/runme.sci | 718424b29fd23556ed000655e243e0b7d4292e52 | [
"LicenseRef-scancode-swig",
"GPL-3.0-or-later",
"LicenseRef-scancode-unknown-license-reference",
"GPL-3.0-only",
"Apache-2.0"
] | permissive | inishchith/DeepSpeech | 965ad34d69eb4d150ddf996d30d02a1b29c97d25 | dcb7c716bc794d7690d96ed40179ed1996968a41 | refs/heads/master | 2021-01-16T16:16:05.282278 | 2020-05-19T08:00:33 | 2020-05-19T08:00:33 | 243,180,319 | 1 | 0 | Apache-2.0 | 2020-02-26T05:54:51 | 2020-02-26T05:54:50 | null | UTF-8 | Scilab | false | false | 828 | sci | runme.sci | lines(0);
ilib_verbose(0);
ierr = exec('loader.sce', 'errcatch');
if ierr <> 0 then
disp(lasterror());
exit(ierr);
end
// Call our gcd() function
x = 42;
y = 105;
g = gcd(x, y);
printf("The gcd of %d and %d is %d\n", x, y, g);
// Call our fact() function
x = 5;
g = fact(x);
printf("The fact of %d is %d\n", x, g);
// Manipulate the Foo global variable
// Output its current value
printf("Foo = %f\n", Foo_get());
// Change its value
Foo_set(3.1415926);
// See if the change took effect
printf("Foo = %f\n", Foo_get());
// Check error messages when violating contract
ierr = execstr('gcd(-42, 105)', 'errcatch');
if ierr <> 20003 then
error("gcd(-42, 105) must provoke a RunTimeError")
end
ierr = execstr('fact(-4)', 'errcatch');
if ierr <> 20003 then
error("fact(-4) must provoke a RunTimeError")
end
exit
|
54e5485b354cdb502191d95aa7cc5f3c547578b5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1364/CH9/EX9.2.1/9_2_1.sce | e412c365f4e3833b7c38fe0f8e2968009fbdcfda | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 321 | sce | 9_2_1.sce | clc
//initialisation of variables
S= 5 //ft
F= 70 //lbf
a= 4 //degrees
l= 1 //ft
d= 0.002378 //slug/ft^3
u= 120 //ft/sec
//CALCULATIONS
L= F*cosd(a)
D=F*sind(a)
S1= S*l
p= 0.5*d*u^2
Cl= L/(p*S1)
Cd= D/(p*S1)
//RESULTS
printf (' coefficient of lift= %.2f',Cl)
printf (' \n coefficient of drag= %.4f',Cd)
|
1dbd9c0c2a583506f2771f930202456e6b7d0be4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1787/CH2/EX2.2/Exa2_2.sce | 01c5988dc46113151d564efdd2f8fffa19bfe133 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 242 | sce | Exa2_2.sce | //Exa 2.2
clc;
clear;
close;
//given data
J=2.4;//in A/mm^2
J=J*10^6;//in A/m^2
n=5*10^28;//electrons/m^3
e=1.6*10^-19;//constant
//Formula : J=e*n*v
v=J/(e*n);//in m/s
disp(v*10^3,"Velocity of electron at fermi level in mm/s : "); |
f797b4c73bd0bf2b6f87996716d263b0c7838bd5 | 2ae858a680a4ccf8a2ec89a45a1e48a0292d8eab | /macros/getParamsdtree.sci | b2bf6769837e1f8b7a9d55359972fe448ada8de9 | [] | no_license | shreyneil/FOSSEE-Image-Processing-Toolbox | f315a82c325b2d6cbd0611689f3e30071a38490d | dd1cbd0dcbe0c3dd11d6ce1ab205b4b72011ae56 | refs/heads/master | 2020-12-02T16:26:13.755637 | 2017-07-07T19:22:33 | 2017-07-07T19:22:33 | 96,552,147 | 0 | 0 | null | 2017-07-07T15:32:15 | 2017-07-07T15:32:15 | null | UTF-8 | Scilab | false | false | 367 | sci | getParamsdtree.sci | function classifierDescription = getParamsdtree(Categoryclassifier)
Categoryclassifier_list = classifierToList(Categoryclassifier);
temp = raw_getParamsdtree(Categoryclassifier_list);
classifierDescription = struct("cv_f", temp(1), "max_cat", temp(2),"md",temp(3),"msc",temp(4),"reg_acc",temp(5),"prune",temp(6),"use1_se",temp(7),"use_surr",temp(8));
endfunction
|
6245266fbdc3dd9ef1ff3cab804bbf3b3ac94fd3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2891/CH9/EX9.7/Ex9_7.sce | 4ecf61fbff8895054d94b913474ee9ee5f7a9c6f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 553 | sce | Ex9_7.sce | //Exa 9.7
clc;
clear;
close;
// given ;
Ht=300 // height of antenna in feet
Hr=100 // height of receiving antenna in feet
dt=sqrt(2*Ht) // radio horizon distance for a transmitting antenna in miles
dr=sqrt(2*Hr) // radio horizon distance for a transmitting antenna in miles
dmax=dt+dr // maximum range of space wave propagation in miles
disp(dt,"radio horizon distance for a transmitting antenna in miles:")
disp(dr,"radio horizon distance for a receiving antenna in miles:")
disp(dmax,"maximum range of space wave propagation in miles:")
|
baacfbe237080f0ee26de978b62211bccb5ff3e6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1004/CH1/EX1.6/Ch01Ex6.sci | a6be0359f631fee68b318f301d6dacae36bba426 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | sci | Ch01Ex6.sci | // Scilab Code Ex1.6 Energy equivalent of mass: Pg:22 (2008)
m = 1; // Mass of a substance, kg
c = 3e+08; // Speed of light, m/s
U = m*c^2; // Energy equivalent of mass, J
printf("\nThe energy equivalent of mass = %1.0e J", U);
// Result
// The energy equivalent of mass = 9e+016 J |
4a6ab1ea175787e584a4de761026f61a07c4375d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1427/CH19/EX19.6/19_6.sce | e017c6f4c3e91de4f63c20d0c414bfdc088de5cc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 267 | sce | 19_6.sce | //ques-19.6
//Determining number of photons of light required
clc
w=400;//wavelength (in nm)
E1=1;//energy required (in J)
E=(6.63*10^-34*3*10^8)/(w*10^-9);//energy of 1 photon (in J)
n=E1/E;
printf("The number of photons of light are %.2f*10^18.",n*10^-18);
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.