blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 214 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2
values | repo_name stringlengths 6 115 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 21
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 141k 586M ⌀ | star_events_count int64 0 30.4k | fork_events_count int64 0 9.67k | gha_license_id stringclasses 8
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 50
values | src_encoding stringclasses 23
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 1
class | length_bytes int64 5 10.4M | extension stringclasses 29
values | filename stringlengths 2 96 | content stringlengths 5 10.4M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
3a0f69f0e0cb9f836f9e2032f994e8f55744af0a | 02193ece59037456d298d519b38661b5dfd0ab17 | /2nd-year/scilab/graphe-etoile-cycle.sce | 2b3e4fc36cfc973969afc03fe7adc7b221dcde3d | [] | no_license | pakpake/licence-informatique | 561558d00f012a536ae97f74ee705e6c04dcecda | c9877ad75d3c4ee6e3904fe8b457f8b3242c7c3f | refs/heads/main | 2023-05-09T06:33:19.927698 | 2021-05-26T19:49:03 | 2021-05-26T19:49:03 | 368,866,811 | 3 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 1,239 | sce | graphe-etoile-cycle.sce | // fichier de fonctions
//construire le graphe en étoile
function [graphe] = etoile(n)
/*sommets = n
orientation = %F // graphes non-orienté
un = ones(1,n-1) // matrice composée de 1 uniquement
colonnes = [2:1:n]
aretes = [un; colonnes]' // transposée de la matrice
graphe = list(sommets,orientation,aretes)
*/
un = ones(n-1,1)
colonnes = (2:1:n)'
aretes = [un, colonnes]' // transposée de la matrice
graphe = list(n,%F,aretes)
endfunction
// appel de la fonction avec : [graphe] = etoile(6)
// avec une boucle for
function [graphe] = etoilefor(n)
A = ones(n-1,2) // Matrice a de 2 colonnes , n lignes
for k = 1:n-1
A(k,2) = k + 1
end
graphe = list(n, %F, A)
endfunction
function [graphe] = etoilefor2(n)
aretes =[]
for i=2:n
aretes = [aretes;1,i]
end
graphe = list(n,%F,aretes)
endfunction
//faire un cycle où les sommets sont reliés
function [graphe] = cycle(n)
A = ones(1,n-1)
for i=1:n-1
A(1,i) = i + 1
end
graphe = list(n,%F,A)
endfunction
function [graphe] = cycle2(n)
aretes = []
for i = 1:n-1
aretes = [aretes;i,i+1]
end
aretes = [aretes;n,1]
graphe = list(n,%F,aretes)
endfunction
|
99e892c4f571aaff1f035b727c82b18f065fa286 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2609/CH9/EX9.8/Ex9_8.sce | af35c21416a2e7c311308d495aecfc27ec759299 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 824 | sce | Ex9_8.sce | //Ex 9.8
clc;
clear;
close;
format('v',6);
f0=3;//kHz(Critical frequency)
Ap=4;//Pass band gain
//For Butterworth filter using sallen key
alfa=1.414;klp=1;//constant
fH=f0;//kHz
f_3dB=f0;//kHz
disp("Various design parameters are :-");
C1=0.01;//micro F//Chosen for the design
disp(C1,"Capacitance C1(micro F)");
C2=alfa^2*C1/4;//micro F
disp(C2,"Capacitance C2(micro F)");
disp("Use C2=0.004 micro F");
C2=0.004;// micro F
R=1/(2*%pi*fH*10^3*sqrt(C1*10^-6*C2*10^-6))/1000;//kohm
format('v',4);
disp(R,"Resistance R(kohm)");
disp("Use R=8.2 kohm");
R=8.2;//kohm
//For offset minimization
Rdash=2*R;//kohm
disp(Rdash,"Resistance R*(kohm)");
RfBYRi=Ap-1;//Rf=Ri here
//Ri=10 kohm chosen for design
Ri=10;//kohm
Rf=RfBYRi*Ri;//kohm
disp(Ri,"Resistance Ri(kohm)");
disp(Rf,"Resistance Rf(kohm)");
|
e2812dcfcf6b4d14dbf4283edce752ed43cb9627 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1670/CH11/EX11.17/11_17.sce | 1b218bb0ac5048d7206a52837c4c45f023e0ea17 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 717 | sce | 11_17.sce | //Example 11.17
//Bender Schmidt Method
//Page no. 396
clc;clear;close;
h=1;k=1/10;c=sqrt(5);
r=k*c^2/h^2;
for i=1:6
if i<4 then
u(6,i)=20*(i-1)
else
u(6,i)=60
end
end
disp(u,'u = ')
k=1;
printf('\n\n')
for i=5:-1:1
for j=2:6
if j~=6 then
u(i,j)=(u(i+1,j-1)+u(i+1,j+1))/2
else
u(i,j)=60
end
printf('\t u%i = %g \t',k,u(i,j))
k=k+1;
end
end
printf('\n')
printf('\n\n j\\i |\t')
for i=1:6
printf('%i\t',i-1)
end
printf('\n')
for i=1:51
printf('_')
end
k=0;
for i=6:-1:1
printf('\n %i |\t',k)
for j=1:6
printf('%g\t',u(i,j))
end
k=k+1;
end |
4892ccba3350890e7f4050db2727e9f91ead4e42 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3809/CH5/EX5.3/EX5_3.sce | d201ad9442b42e15cd232a998db40ecc39e00578 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 273 | sce | EX5_3.sce | //Chapter 5, Example 5.3
clc
//Initialisation'
di=3 //change in current w.r.t time
l=10*10**-3 //inductance in henry
//Calculation
v=l*di //voltage induced
//Results
printf("Voltage Induced V = %d mV",v*10**3)
|
5946f2e6acb92885e1188c679c5a170cdd7089ec | e16ed2b1e5415e101f10dbee6680d11e6fdb5e6d | /MPages/dcp_mp_acm_worklist/script/mp_dcp_update_static_patients.tst | c0442bb83bafbf1170b9046271c06f9bda65fdfa | [] | no_license | mikeysjob/ccl | 484145533a1e880c9369022c02c9756c86cfdce2 | 2e7b7cbc7a5bad0f035f744e1bab07a19d250f9a | refs/heads/master | 2023-02-09T23:40:06.341187 | 2021-01-06T17:31:02 | 2021-01-06T17:31:02 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 211 | tst | mp_dcp_update_static_patients.tst | declare json = vc go
set json = '{"patient_request":{"patient_list_id":5406073.0,"person_id":45142166.0 ,"rank":1,"action_desc":"\
update rank"}}' go
execute mp_dcp_update_static_patients "MINE", json go
|
2de2abd5a6fe8434246599cd7f9a917259a1ca73 | f542bc49c4d04b47d19c88e7c89d5db60922e34e | /PresentationFiles_Subjects - Kopie/CONT/LG82ZTE/ATWM1_Working_Memory_MEG_LG82ZTE_Session1/ATWM1_Working_Memory_MEG_Salient_Cued_Run1.sce | 9a0adfa3a1330523435247448d68786e5aab3e90 | [] | no_license | atwm1/Presentation | 65c674180f731f050aad33beefffb9ba0caa6688 | 9732a004ca091b184b670c56c55f538ff6600c08 | refs/heads/master | 2020-04-15T14:04:41.900640 | 2020-02-14T16:10:11 | 2020-02-14T16:10:11 | 56,771,016 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 49,384 | sce | ATWM1_Working_Memory_MEG_Salient_Cued_Run1.sce | # ATWM1 MEG Experiment
scenario = "ATWM1_Working_Memory_MEG_salient_cued_run1";
#scenario_type = fMRI; # Fuer Scanner
#scenario_type = fMRI_emulation; # Zum Testen
scenario_type = trials; # for MEG
#scan_period = 2000; # TR
#pulses_per_scan = 1;
#pulse_code = 1;
pulse_width=6;
default_monitor_sounds = false;
active_buttons = 2;
response_matching = simple_matching;
button_codes = 10, 20;
default_font_size = 28;
default_font = "Arial";
default_background_color = 0 ,0 ,0 ;
write_codes=true; # for MEG only
begin;
#Picture definitions
box { height = 300; width = 300; color = 0, 0, 0;} frame1;
box { height = 290; width = 290; color = 255, 255, 255;} frame2;
box { height = 30; width = 4; color = 0, 0, 0;} fix1;
box { height = 4; width = 30; color = 0, 0, 0;} fix2;
box { height = 30; width = 4; color = 255, 0, 0;} fix3;
box { height = 4; width = 30; color = 255, 0, 0;} fix4;
box { height = 290; width = 290; color = 128, 128, 128;} background;
TEMPLATE "StimuliDeclaration.tem" {};
trial {
sound sound_incorrect;
time = 0;
duration = 1;
} wrong;
trial {
sound sound_correct;
time = 0;
duration = 1;
} right;
trial {
sound sound_no_response;
time = 0;
duration = 1;
} miss;
# Start of experiment (MEG only) - sync with CTF software
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
} expStart;
time = 0;
duration = 1000;
code = "ExpStart";
port_code = 80;
};
# baselinePre (at the beginning of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
}default;
time = 0;
duration = 10000;
#mri_pulse = 1;
code = "BaselinePre";
port_code = 91;
};
TEMPLATE "ATWM1_Working_Memory_MEG.tem" {
trigger_encoding trigger_retrieval cue_time preparation_time encoding_time single_stimulus_presentation_time delay_time retrieval_time intertrial_interval alerting_cross stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 trial_code stim_retr1 stim_retr2 stim_retr3 stim_retr4 stim_cue1 stim_cue2 stim_cue3 stim_cue4 fixationcross_cued retr_code the_target_button posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4;
41 61 292 292 399 125 2242 2992 2492 fixation_cross gabor_006 gabor_139 gabor_179 gabor_124 gabor_006_alt gabor_139_alt gabor_179 gabor_124 "1_1_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2500_gabor_patch_orientation_006_139_179_124_target_position_1_2_retrieval_position_1" gabor_052_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_1_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_052_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 1942 2992 2542 fixation_cross gabor_123 gabor_174 gabor_142 gabor_014 gabor_123_alt gabor_174_alt gabor_142 gabor_014 "1_2_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_2550_gabor_patch_orientation_123_174_142_014_target_position_1_2_retrieval_position_2" gabor_circ gabor_174_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_2_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_174_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 2042 2992 2192 fixation_cross gabor_112 gabor_024 gabor_079 gabor_138 gabor_112_alt gabor_024 gabor_079_alt gabor_138 "1_3_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2200_gabor_patch_orientation_112_024_079_138_target_position_1_3_retrieval_position_1" gabor_112_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_3_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_112_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1792 2992 2342 fixation_cross gabor_085 gabor_149 gabor_010 gabor_069 gabor_085_alt gabor_149 gabor_010 gabor_069_alt "1_4_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2350_gabor_patch_orientation_085_149_010_069_target_position_1_4_retrieval_position_1" gabor_036_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_4_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_036_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 63 292 292 399 125 1842 2992 1992 fixation_cross gabor_017 gabor_173 gabor_107 gabor_068 gabor_017_alt gabor_173 gabor_107_alt gabor_068 "1_5_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_UncuedRetriev_300_300_399_1850_3000_2000_gabor_patch_orientation_017_173_107_068_target_position_1_3_retrieval_position_2" gabor_circ gabor_033_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_5_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_033_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1742 2992 1892 fixation_cross gabor_106 gabor_141 gabor_022 gabor_069 gabor_106 gabor_141_alt gabor_022_alt gabor_069 "1_6_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_1900_gabor_patch_orientation_106_141_022_069_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_158_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_6_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_158_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 2142 2992 2042 fixation_cross gabor_043 gabor_104 gabor_026 gabor_155 gabor_043 gabor_104_alt gabor_026_alt gabor_155 "1_7_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2050_gabor_patch_orientation_043_104_026_155_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_026_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_7_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_026_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 2242 2992 2392 fixation_cross gabor_164 gabor_138 gabor_076 gabor_003 gabor_164_alt gabor_138_alt gabor_076 gabor_003 "1_8_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2400_gabor_patch_orientation_164_138_076_003_target_position_1_2_retrieval_position_1" gabor_028_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_8_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_028_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 2042 2992 1892 fixation_cross gabor_143 gabor_180 gabor_006 gabor_159 gabor_143 gabor_180 gabor_006_alt gabor_159_alt "1_9_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_1900_gabor_patch_orientation_143_180_006_159_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_113_framed blank blank blank blank fixation_cross_target_position_3_4 "1_9_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_113_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 64 292 292 399 125 1892 2992 1942 fixation_cross gabor_157 gabor_082 gabor_040 gabor_017 gabor_157 gabor_082 gabor_040_alt gabor_017_alt "1_10_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_UncuedRetriev_300_300_399_1900_3000_1950_gabor_patch_orientation_157_082_040_017_target_position_3_4_retrieval_position_2" gabor_circ gabor_082_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_10_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_082_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 2142 2992 2242 fixation_cross gabor_168 gabor_050 gabor_103 gabor_128 gabor_168_alt gabor_050 gabor_103 gabor_128_alt "1_11_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_2250_gabor_patch_orientation_168_050_103_128_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_078_framed blank blank blank blank fixation_cross_target_position_1_4 "1_11_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_078_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 1892 2992 2242 fixation_cross gabor_050 gabor_016 gabor_091 gabor_034 gabor_050 gabor_016_alt gabor_091_alt gabor_034 "1_12_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2250_gabor_patch_orientation_050_016_091_034_target_position_2_3_retrieval_position_2" gabor_circ gabor_016_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_12_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_016_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1842 2992 2592 fixation_cross gabor_160 gabor_041 gabor_012 gabor_077 gabor_160 gabor_041 gabor_012_alt gabor_077_alt "1_13_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2600_gabor_patch_orientation_160_041_012_077_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_127_framed blank blank blank blank fixation_cross_target_position_3_4 "1_13_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_127_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 2142 2992 2592 fixation_cross gabor_045 gabor_151 gabor_065 gabor_171 gabor_045_alt gabor_151_alt gabor_065 gabor_171 "1_14_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_2600_gabor_patch_orientation_045_151_065_171_target_position_1_2_retrieval_position_2" gabor_circ gabor_011_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_14_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_011_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1792 2992 1892 fixation_cross gabor_036 gabor_053 gabor_074 gabor_109 gabor_036 gabor_053_alt gabor_074 gabor_109_alt "1_15_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_1900_gabor_patch_orientation_036_053_074_109_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_159_framed blank blank blank blank fixation_cross_target_position_2_4 "1_15_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_159_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 2142 2992 2042 fixation_cross gabor_010 gabor_094 gabor_077 gabor_136 gabor_010_alt gabor_094_alt gabor_077 gabor_136 "1_16_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_2050_gabor_patch_orientation_010_094_077_136_target_position_1_2_retrieval_position_1" gabor_059_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_16_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_059_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 63 292 292 399 125 1992 2992 2142 fixation_cross gabor_062 gabor_022 gabor_001 gabor_091 gabor_062_alt gabor_022_alt gabor_001 gabor_091 "1_17_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_UncuedRetriev_300_300_399_2000_3000_2150_gabor_patch_orientation_062_022_001_091_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_141_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_17_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_141_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 2192 2992 1942 fixation_cross gabor_002 gabor_137 gabor_109 gabor_154 gabor_002 gabor_137_alt gabor_109_alt gabor_154 "1_18_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_1950_gabor_patch_orientation_002_137_109_154_target_position_2_3_retrieval_position_2" gabor_circ gabor_137_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_18_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_137_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1992 2992 2192 fixation_cross gabor_175 gabor_094 gabor_116 gabor_055 gabor_175_alt gabor_094_alt gabor_116 gabor_055 "1_19_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2200_gabor_patch_orientation_175_094_116_055_target_position_1_2_retrieval_position_1" gabor_038_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_19_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_038_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 1992 2992 1992 fixation_cross gabor_060 gabor_121 gabor_148 gabor_180 gabor_060 gabor_121_alt gabor_148_alt gabor_180 "1_20_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2000_gabor_patch_orientation_060_121_148_180_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_148_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_20_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_148_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1942 2992 2292 fixation_cross gabor_104 gabor_140 gabor_179 gabor_028 gabor_104_alt gabor_140_alt gabor_179 gabor_028 "1_21_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2300_gabor_patch_orientation_104_140_179_028_target_position_1_2_retrieval_position_1" gabor_055_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_21_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_055_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 64 292 292 399 125 2042 2992 2492 fixation_cross gabor_151 gabor_083 gabor_013 gabor_166 gabor_151_alt gabor_083_alt gabor_013 gabor_166 "1_22_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_UncuedRetriev_300_300_399_2050_3000_2500_gabor_patch_orientation_151_083_013_166_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_166_framed blank blank blank blank fixation_cross_target_position_1_2 "1_22_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_166_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 1892 2992 2492 fixation_cross gabor_128 gabor_086 gabor_161 gabor_104 gabor_128 gabor_086 gabor_161_alt gabor_104_alt "1_23_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2500_gabor_patch_orientation_128_086_161_104_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_161_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_23_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_161_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1792 2992 2392 fixation_cross gabor_108 gabor_142 gabor_091 gabor_052 gabor_108_alt gabor_142 gabor_091_alt gabor_052 "1_24_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2400_gabor_patch_orientation_108_142_091_052_target_position_1_3_retrieval_position_1" gabor_158_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_24_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_158_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 64 292 292 399 125 2192 2992 2092 fixation_cross gabor_079 gabor_146 gabor_008 gabor_031 gabor_079_alt gabor_146 gabor_008 gabor_031_alt "1_25_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_UncuedRetriev_300_300_399_2200_3000_2100_gabor_patch_orientation_079_146_008_031_target_position_1_4_retrieval_position_2" gabor_circ gabor_146_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_25_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_146_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 1892 2992 2092 fixation_cross gabor_035 gabor_092 gabor_161 gabor_141 gabor_035 gabor_092_alt gabor_161 gabor_141_alt "1_26_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2100_gabor_patch_orientation_035_092_161_141_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_141_framed blank blank blank blank fixation_cross_target_position_2_4 "1_26_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_141_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 2092 2992 2142 fixation_cross gabor_113 gabor_031 gabor_069 gabor_049 gabor_113 gabor_031 gabor_069_alt gabor_049_alt "1_27_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2150_gabor_patch_orientation_113_031_069_049_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_049_framed blank blank blank blank fixation_cross_target_position_3_4 "1_27_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_049_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 2092 2992 2042 fixation_cross gabor_028 gabor_134 gabor_105 gabor_149 gabor_028_alt gabor_134_alt gabor_105 gabor_149 "1_28_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2050_gabor_patch_orientation_028_134_105_149_target_position_1_2_retrieval_position_1" gabor_028_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_28_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_028_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 2242 2992 2292 fixation_cross gabor_174 gabor_029 gabor_064 gabor_046 gabor_174_alt gabor_029 gabor_064 gabor_046_alt "1_29_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2300_gabor_patch_orientation_174_029_064_046_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_095_framed blank blank blank blank fixation_cross_target_position_1_4 "1_29_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_095_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 63 292 292 399 125 2092 2992 2592 fixation_cross gabor_098 gabor_126 gabor_168 gabor_057 gabor_098 gabor_126 gabor_168_alt gabor_057_alt "1_30_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_UncuedRetriev_300_300_399_2100_3000_2600_gabor_patch_orientation_098_126_168_057_target_position_3_4_retrieval_position_2" gabor_circ gabor_078_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_30_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_078_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1842 2992 1892 fixation_cross gabor_028 gabor_114 gabor_143 gabor_008 gabor_028 gabor_114 gabor_143_alt gabor_008_alt "1_31_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_1900_gabor_patch_orientation_028_114_143_008_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_095_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_31_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_095_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 2142 2992 2192 fixation_cross gabor_001 gabor_053 gabor_082 gabor_109 gabor_001 gabor_053_alt gabor_082_alt gabor_109 "1_32_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2200_gabor_patch_orientation_001_053_082_109_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_082_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_32_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_082_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 2142 2992 2042 fixation_cross gabor_017 gabor_153 gabor_043 gabor_069 gabor_017 gabor_153_alt gabor_043_alt gabor_069 "1_33_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2050_gabor_patch_orientation_017_153_043_069_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_043_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_33_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_043_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1942 2992 2092 fixation_cross gabor_013 gabor_088 gabor_064 gabor_035 gabor_013_alt gabor_088 gabor_064 gabor_035_alt "1_34_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2100_gabor_patch_orientation_013_088_064_035_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_175_framed blank blank blank blank fixation_cross_target_position_1_4 "1_34_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_175_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 2242 2992 2092 fixation_cross gabor_128 gabor_076 gabor_143 gabor_106 gabor_128 gabor_076 gabor_143_alt gabor_106_alt "1_35_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_2100_gabor_patch_orientation_128_076_143_106_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_106_framed blank blank blank blank fixation_cross_target_position_3_4 "1_35_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_106_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1992 2992 2142 fixation_cross gabor_034 gabor_099 gabor_017 gabor_067 gabor_034 gabor_099_alt gabor_017 gabor_067_alt "1_36_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2150_gabor_patch_orientation_034_099_017_067_target_position_2_4_retrieval_position_2" gabor_circ gabor_149_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_36_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_149_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 2242 2992 2342 fixation_cross gabor_117 gabor_030 gabor_091 gabor_057 gabor_117_alt gabor_030_alt gabor_091 gabor_057 "1_37_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_2350_gabor_patch_orientation_117_030_091_057_target_position_1_2_retrieval_position_2" gabor_circ gabor_030_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_37_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_030_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 64 292 292 399 125 2192 2992 2592 fixation_cross gabor_024 gabor_148 gabor_003 gabor_075 gabor_024 gabor_148 gabor_003_alt gabor_075_alt "1_38_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_UncuedRetriev_300_300_399_2200_3000_2600_gabor_patch_orientation_024_148_003_075_target_position_3_4_retrieval_position_1" gabor_024_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_38_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_024_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 2092 2992 2192 fixation_cross gabor_112 gabor_145 gabor_160 gabor_070 gabor_112 gabor_145_alt gabor_160_alt gabor_070 "1_39_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2200_gabor_patch_orientation_112_145_160_070_target_position_2_3_retrieval_position_2" gabor_circ gabor_145_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_39_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_145_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1792 2992 2342 fixation_cross gabor_171 gabor_037 gabor_001 gabor_142 gabor_171_alt gabor_037_alt gabor_001 gabor_142 "1_40_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2350_gabor_patch_orientation_171_037_001_142_target_position_1_2_retrieval_position_2" gabor_circ gabor_087_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_40_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_087_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 2192 2992 2242 fixation_cross gabor_174 gabor_065 gabor_024 gabor_007 gabor_174_alt gabor_065_alt gabor_024 gabor_007 "1_41_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_2250_gabor_patch_orientation_174_065_024_007_target_position_1_2_retrieval_position_2" gabor_circ gabor_113_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_41_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_113_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 64 292 292 399 125 1842 2992 2442 fixation_cross gabor_028 gabor_140 gabor_072 gabor_118 gabor_028 gabor_140 gabor_072_alt gabor_118_alt "1_42_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_UncuedRetriev_300_300_399_1850_3000_2450_gabor_patch_orientation_028_140_072_118_target_position_3_4_retrieval_position_2" gabor_circ gabor_140_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_42_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_140_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1792 2992 2542 fixation_cross gabor_156 gabor_136 gabor_048 gabor_023 gabor_156_alt gabor_136_alt gabor_048 gabor_023 "1_43_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2550_gabor_patch_orientation_156_136_048_023_target_position_1_2_retrieval_position_1" gabor_109_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_43_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_109_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 2092 2992 2242 fixation_cross gabor_052 gabor_017 gabor_178 gabor_106 gabor_052_alt gabor_017 gabor_178_alt gabor_106 "1_44_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2250_gabor_patch_orientation_052_017_178_106_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_178_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_44_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_178_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 2192 2992 2292 fixation_cross gabor_090 gabor_137 gabor_172 gabor_008 gabor_090_alt gabor_137 gabor_172 gabor_008_alt "1_45_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2300_gabor_patch_orientation_090_137_172_008_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_008_framed blank blank blank blank fixation_cross_target_position_1_4 "1_45_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_008_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 2092 2992 2242 fixation_cross gabor_112 gabor_151 gabor_095 gabor_179 gabor_112 gabor_151_alt gabor_095_alt gabor_179 "1_46_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2250_gabor_patch_orientation_112_151_095_179_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_095_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_46_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_095_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 63 292 292 399 125 1942 2992 2492 fixation_cross gabor_022 gabor_104 gabor_084 gabor_046 gabor_022_alt gabor_104 gabor_084_alt gabor_046 "1_47_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_UncuedRetriev_300_300_399_1950_3000_2500_gabor_patch_orientation_022_104_084_046_target_position_1_3_retrieval_position_2" gabor_circ gabor_154_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_47_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_154_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 2042 2992 2392 fixation_cross gabor_123 gabor_068 gabor_041 gabor_011 gabor_123 gabor_068 gabor_041_alt gabor_011_alt "1_48_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_2400_gabor_patch_orientation_123_068_041_011_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_087_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_48_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_087_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 64 292 292 399 125 1992 2992 2142 fixation_cross gabor_084 gabor_005 gabor_171 gabor_064 gabor_084_alt gabor_005 gabor_171_alt gabor_064 "1_49_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_UncuedRetriev_300_300_399_2000_3000_2150_gabor_patch_orientation_084_005_171_064_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_064_framed blank blank blank blank fixation_cross_target_position_1_3 "1_49_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_064_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 1842 2992 1942 fixation_cross gabor_025 gabor_135 gabor_172 gabor_049 gabor_025 gabor_135_alt gabor_172 gabor_049_alt "1_50_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_1950_gabor_patch_orientation_025_135_172_049_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_049_framed blank blank blank blank fixation_cross_target_position_2_4 "1_50_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_049_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1742 2992 2542 fixation_cross gabor_073 gabor_147 gabor_042 gabor_017 gabor_073 gabor_147_alt gabor_042 gabor_017_alt "1_51_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2550_gabor_patch_orientation_073_147_042_017_target_position_2_4_retrieval_position_2" gabor_circ gabor_101_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_51_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_101_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 2042 2992 2442 fixation_cross gabor_004 gabor_131 gabor_070 gabor_109 gabor_004_alt gabor_131 gabor_070 gabor_109_alt "1_52_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2450_gabor_patch_orientation_004_131_070_109_target_position_1_4_retrieval_position_1" gabor_004_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_52_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_004_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 1992 2992 2192 fixation_cross gabor_038 gabor_119 gabor_063 gabor_097 gabor_038 gabor_119_alt gabor_063 gabor_097_alt "1_53_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2200_gabor_patch_orientation_038_119_063_097_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_097_framed blank blank blank blank fixation_cross_target_position_2_4 "1_53_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_097_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 1792 2992 1992 fixation_cross gabor_065 gabor_007 gabor_154 gabor_135 gabor_065_alt gabor_007 gabor_154_alt gabor_135 "1_54_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2000_gabor_patch_orientation_065_007_154_135_target_position_1_3_retrieval_position_1" gabor_065_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_54_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_065_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 63 292 292 399 125 2192 2992 1942 fixation_cross gabor_042 gabor_150 gabor_166 gabor_023 gabor_042_alt gabor_150 gabor_166 gabor_023_alt "1_55_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_UncuedRetriev_300_300_399_2200_3000_1950_gabor_patch_orientation_042_150_166_023_target_position_1_4_retrieval_position_2" gabor_circ gabor_101_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_55_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_101_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 1792 2992 2142 fixation_cross gabor_098 gabor_030 gabor_155 gabor_173 gabor_098_alt gabor_030 gabor_155 gabor_173_alt "1_56_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2150_gabor_patch_orientation_098_030_155_173_target_position_1_4_retrieval_position_1" gabor_098_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_56_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_098_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 1742 2992 2042 fixation_cross gabor_015 gabor_071 gabor_176 gabor_031 gabor_015_alt gabor_071_alt gabor_176 gabor_031 "1_57_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2050_gabor_patch_orientation_015_071_176_031_target_position_1_2_retrieval_position_1" gabor_015_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_57_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_015_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1742 2992 2392 fixation_cross gabor_172 gabor_055 gabor_098 gabor_012 gabor_172 gabor_055_alt gabor_098_alt gabor_012 "1_58_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2400_gabor_patch_orientation_172_055_098_012_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_145_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_58_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_145_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1742 2992 1892 fixation_cross gabor_003 gabor_117 gabor_165 gabor_085 gabor_003 gabor_117_alt gabor_165 gabor_085_alt "1_59_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_1900_gabor_patch_orientation_003_117_165_085_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_040_framed blank blank blank blank fixation_cross_target_position_2_4 "1_59_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_040_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 63 292 292 399 125 2242 2992 2092 fixation_cross gabor_085 gabor_018 gabor_127 gabor_157 gabor_085_alt gabor_018_alt gabor_127 gabor_157 "1_60_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_UncuedRetriev_300_300_399_2250_3000_2100_gabor_patch_orientation_085_018_127_157_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_107_framed blank blank blank blank fixation_cross_target_position_1_2 "1_60_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_107_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1892 2992 2292 fixation_cross gabor_090 gabor_159 gabor_032 gabor_047 gabor_090_alt gabor_159_alt gabor_032 gabor_047 "1_61_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2300_gabor_patch_orientation_090_159_032_047_target_position_1_2_retrieval_position_2" gabor_circ gabor_110_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_61_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_110_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 2042 2992 2442 fixation_cross gabor_020 gabor_169 gabor_125 gabor_054 gabor_020_alt gabor_169 gabor_125 gabor_054_alt "1_62_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2450_gabor_patch_orientation_020_169_125_054_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_054_framed blank blank blank blank fixation_cross_target_position_1_4 "1_62_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_054_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 1942 2992 2342 fixation_cross gabor_132 gabor_108 gabor_048 gabor_023 gabor_132_alt gabor_108 gabor_048_alt gabor_023 "1_63_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_2350_gabor_patch_orientation_132_108_048_023_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_048_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_63_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_048_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 1892 2992 2342 fixation_cross gabor_002 gabor_128 gabor_088 gabor_062 gabor_002 gabor_128_alt gabor_088_alt gabor_062 "1_64_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2350_gabor_patch_orientation_002_128_088_062_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_088_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_64_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_088_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 64 292 292 399 125 1742 2992 2442 fixation_cross gabor_160 gabor_178 gabor_107 gabor_092 gabor_160_alt gabor_178 gabor_107 gabor_092_alt "1_65_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_UncuedRetriev_300_300_399_1750_3000_2450_gabor_patch_orientation_160_178_107_092_target_position_1_4_retrieval_position_2" gabor_circ gabor_178_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_65_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_178_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1742 2992 1992 fixation_cross gabor_161 gabor_123 gabor_043 gabor_002 gabor_161 gabor_123_alt gabor_043_alt gabor_002 "1_66_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2000_gabor_patch_orientation_161_123_043_002_target_position_2_3_retrieval_position_2" gabor_circ gabor_077_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_66_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_077_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1942 2992 2542 fixation_cross gabor_103 gabor_160 gabor_175 gabor_139 gabor_103_alt gabor_160 gabor_175 gabor_139_alt "1_67_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2550_gabor_patch_orientation_103_160_175_139_target_position_1_4_retrieval_position_1" gabor_053_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_67_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_053_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1842 2992 2292 fixation_cross gabor_146 gabor_040 gabor_060 gabor_170 gabor_146 gabor_040 gabor_060_alt gabor_170_alt "1_68_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2300_gabor_patch_orientation_146_040_060_170_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_106_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_68_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_106_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 1892 2992 1992 fixation_cross gabor_100 gabor_049 gabor_156 gabor_081 gabor_100_alt gabor_049 gabor_156 gabor_081_alt "1_69_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2000_gabor_patch_orientation_100_049_156_081_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_081_framed blank blank blank blank fixation_cross_target_position_1_4 "1_69_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_081_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 63 292 292 399 125 1842 2992 1942 fixation_cross gabor_136 gabor_077 gabor_047 gabor_160 gabor_136 gabor_077_alt gabor_047_alt gabor_160 "1_70_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_UncuedRetriev_300_300_399_1850_3000_1950_gabor_patch_orientation_136_077_047_160_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_020_framed blank blank blank blank fixation_cross_target_position_2_3 "1_70_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_020_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
};
# baselinePost (at the end of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
};
time = 0;
duration = 5000;
code = "BaselinePost";
port_code = 92;
}; |
7b3dfd600d3cea2c52302d5016081e16268569e2 | 42b878bf7609e6525c6b670ef0f8b2c4e6adb9d9 | /archive/VB.old/V1.SCE | 0a5f23ab0c5dcf23f1be15307500bad671f450da | [] | no_license | albertz/Robot2 | 71038775a4b14e48f3cc2fee1ea5cbb02f069e12 | c7226d6c65dab4410a04d98a00c762f9a15b56ca | refs/heads/master | 2022-12-06T02:17:01.243097 | 2020-08-23T22:57:04 | 2020-08-23T22:57:04 | 289,780,114 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 94,593 | sce | V1.SCE | :RAUM1
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
FIGUR.BMP
HINTER.BMP
AETZ.BMP
TUER1.BMP
TUER2.BMP
WAND2.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
PUNKT1.BMP
PUNKT1.BMP
PUNKT1.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND2.BMP
TUER3.BMP
WAND2.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
PUNKT1.BMP
PUNKT1.BMP
WAND1.BMP
WAND1.BMP
SCHL1.BMP
SCHL2.BMP
SCHL3.BMP
WAND2.BMP
WAND1.BMP
WAND2.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
PUNKT1.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND2.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
DIAMANT1.BMP
DIAMANT2.BMP
DIAMANT3.BMP
WAND2.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND2.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
CODE1.BMP
CODE2.BMP
CODE3.BMP
WAND2.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
WAND2.BMP
WAND2.BMP
WAND2.BMP
WAND2.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
SPEICHER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND3.BMP
HINTER.BMP
WAND3.BMP
WAND3.BMP
WAND3.BMP
WAND3.BMP
WAND3.BMP
WAND3.BMP
WAND3.BMP
WAND3.BMP
WAND3.BMP
WAND3.BMP
WAND3.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND3.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND3.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
AETZ.BMP
AETZ.BMP
AETZ.BMP
AETZ.BMP
AETZ.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND3.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND3.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND3.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
LEBEN.BMP
LEBEN.BMP
LEBEN.BMP
LEBEN.BMP
LEBEN.BMP
WAND3.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
KONIG.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
:RAUM2
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
:RAUM3
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
:RAUM4
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
:RAUM5
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
:RAUM6
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
:RAUM7
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
:RAUM8
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
:RAUM9
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
:RAUM10
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
:RAUM11
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
:RAUM12
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
:RAUM13
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
:RAUM14
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
:RAUM15
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
:RAUM16
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
:RAUM17
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
:RAUM18
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
:RAUM19
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
:RAUM20
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
HINTER.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
WAND1.BMP
|
afbf8f570d2cf22180130e2466f0d9d7cd38612d | 449d555969bfd7befe906877abab098c6e63a0e8 | /551/CH9/EX9.20/20.sce | b5c900bd5a9352198cfb89a68383560026aac8e7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 490 | sce | 20.sce | clc
cv_O2=0.39; //kJ/kg K
cv_N2=0.446; //kJ/kg K
n_O2=1;
n_N2=2;
M_O2=32;
M_N2=28;
m_O2=32; //kg
m_N2=2*28; //kg
T_O2=293; //K
T_N2=301; //K
R0=8.314;
p_O2=2.5*10^5; //Pa
p_N2=1.5*10^5; //Pa
T2=(m_O2*cv_O2*T_O2 + m_N2*cv_N2*T_N2)/(m_O2*cv_O2 + m_N2*cv_N2);
V_O2=n_O2*R0*10^5*T_O2/p_O2;
V_N2=n_N2*R0*10^5*T_N2/p_N2;
V=V_O2+V_N2;
dS=m_O2*[cv_O2*log(T2/T_O2) + R0/M_O2*log(V/V_O2)] + m_N2*[cv_N2*log(T2/T_N2) + R0/M_N2*log(V/V_N2)];
disp("dS=")
disp(dS)
disp("kJ") |
8008b93506e276bfdd99859c4c2ef52e25fab83d | 449d555969bfd7befe906877abab098c6e63a0e8 | /3845/CH8/EX8.2/Ex8_2.sce | a324a174487d158e5a859599c9c63b9ff3a0ca98 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex8_2.sce | //Example 8.2
m=0.057;//Mass of ball (kg)
v_i=0;//Initial velocity (m/s)
v_f=58;//Final velocity (m/s)
delta_p=m*(v_f-v_i);//Change in momentum (kg.m/s)
delta_t=5*10^-3;//Duration of contact of ball with racquet (s)
F_net=delta_p/delta_t;//Net external force (N)
printf('Average force exerted on the ball by the racquet = %0.1f N',F_net)
//Answer varies due to round off error
//Openstax - College Physics
//Download for free at http://cnx.org/content/col11406/latest
|
4a13b3eff8ceff7d54298ab2988942c55d2604e4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1694/CH1/EX1.13/EX1_13.sce | 9eecf187069f88aaf6171372d16b4bfb359f8ba3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 325 | sce | EX1_13.sce | clear;
clc;
printf("\nEx1.13\n");
//page no.-24
//given
d=1.5;.............//interatomic spacing in Angstrom
lambda=1.4;.......//wavelength
theta=90;.......//angle in degree
//by BRAGG'S RELATION 2dsin(theta)=n*lambda
n=(2*d)/lambda.........//order of diffraction
printf("\nmaximum order of spectrum is 2\n");
|
071ec5259ed916de6e4518103442a32af5e60dff | e0124ace5e8cdd9581e74c4e29f58b56f7f97611 | /3899/CH10/EX10.5/Ex10_5.sci | 8cf414dfb82e8c0b71d37ed6f2bb7873ce826fa7 | [] | no_license | psinalkar1988/Scilab-TBC-Uploads-1 | 159b750ddf97aad1119598b124c8ea6508966e40 | ae4c2ff8cbc3acc5033a9904425bc362472e09a3 | refs/heads/master | 2021-09-25T22:44:08.781062 | 2018-10-26T06:57:45 | 2018-10-26T06:57:45 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 932 | sci | Ex10_5.sci | //program to graph the frequency response of the system
close all;
f=[0:2:2000]';W=2*%pi*f;
//compute the frequency response vector
H=6e6./((%i*W + 200).^2+2441.3^2);
//Graph the magnitude and phase of the frequency response
subplot(3,1,1); plot(f,abs(H),'k');
a=gca();
xlabel('Frequency,{\itf} (Hz)');
ylabel('|H({\itf})|');
subplot(3,1,2); plot(f,angle(H),'k');
a=gca();
f0=500; T0=1/f0;
//set the number of plotting points per cycle and the time between points.
X=24; dt=T0/X;
//set the number of cycles to graph and total number of points in the graph
Y=4; N=96;
// create a vector of times for the graphs and compute the corrosponding exitation vector
t=dt*[0:95]'; x=cos(1000*%pi*t);
w0=f0*2*%pi;H0=6e6./((%i*w0 + 200).^2 + 2441.3^2);
y=abs(H0)*cos(1000*%pi*t-angle(H0));
//Graph the excitation and response
subplot(3,1,3);
plot(t*1000,x,'k',t*1000,y,'k--');
a=gca();
xlabel('Time,{\itt}(ms)');
|
ee3224ab8de06f51379213761ad1e8f5b6d7bdf4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2339/CH6/EX6.26.1/Ex6_26.sce | 323713a9aeeb2b52d8334484db71305c85edfdec | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 379 | sce | Ex6_26.sce | clc
clear
T1=288; //in K
T3=1673; //in K
Qs=800; //in kJ/kg
G=1.4;
Cv=0.718;
R=0.287;
P1=1;
Cp=Cv*G;
T2=T3-(Qs/Cp);
x=T2/T1;
r=x^(1/(G-1));
printf('Compression Ratio %2.1f ',r);
printf('\n');
Eff=100*[1-(1/(r^(G-1)))];
printf('Efficiency is %2.1f Percent',Eff);
printf('\n');
P3=r*T3*P1/T1;
printf('P3= %2.1f bar',P3);
printf('\n');
|
689809658e1fb7796d9f22a509e1945fa1dd2097 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1895/CH5/EX5.37/EXAMPLE5_37.SCE | fadec0504c0d16fa3637282e640101f2d732447a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 950 | sce | EXAMPLE5_37.SCE | //ANALOG AND DIGITAL COMMUNICATION
//BY Dr.SANJAY SHARMA
//CHAPTER 5
//ANGLE MODULATION
clear all;
clc;
printf("EXAMPLE 5.37(PAGENO 260)");
//given
// s(t) = 20*sin(6*10^8*t + 7*sin(1250*t))
//comparing with standard eqn s(t) = A*sin(w_c*t + m_f*sin(w_m*t))
//we get
w_c = 6*10^8//carrier angular frequency in rad/sec
w_m = 1250//modulating angular frequency in rad/sec
m_f = 7//modualation index
A = 20//amplitude of modulated wave
R = 100//resistance
//calculations
f_c = w_c/(2*%pi)//carrier frequency in hertz
f_m = w_m/(2*%pi)//modulating frequency in hertz
delta_f = m_f*f_m//frequency deviation
P = (A/sqrt(2))^2/R//power dissipated
//results
printf("\n\ni.Carrier frequency = %.2f Hz ",f_c);
printf("\n\nii.Modulating frequency = %.2f Hz ",f_m);
printf("\n\niii.Modulation index = %.2f ",m_f);
printf("\n\niv.Frequency deviation = %.2f Hz",delta_f);
printf("\n\nv.Power dissipated by FM wave = %.2f W",P);
|
46de527bf7499b99192dc1342d9272d4411b4542 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1118/CH22/EX22.2/eg22_2.sce | 872752c910162299de82653dbe22f5f1d581bc27 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 385 | sce | eg22_2.sce | clear;
//clc();
v=110;
f=50;
l=150;
d=10*10^(-3);
irr_fac=0.85;
v_grad=30;
p=750;
t=30;
D=2.5;
r=d/2;
del=(0.392*p)/(273 + t);
e=v_grad*100*irr_fac*r*del*log([D/r])/sqrt(2);
en=v/sqrt(3);
pc=(244/del)*(f+25)*(en-e)^(2)*sqrt(r/D)*l/100000;
tot_loss=3*pc;
printf("The total corona loss is: %.2f kW",tot_loss);
//difference in answer is due to rounding off of pc
|
e18ab811f7112e3419980c3dfcaf2bf9f4f69d4e | 449d555969bfd7befe906877abab098c6e63a0e8 | /3701/CH8/EX8.2/Ex8_2.sce | fbbcc2f79071022a1e9d6e6c2fd3098003010319 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 193 | sce | Ex8_2.sce | ////Given
b=-32
a=32.0
c=1
//Calculation
//
r=(-b+(sqrt(b**2-(4*a*c))))/(2.0*a)
//Result
printf("\n The ratio of E/V0 = %0.3f ",r*10**0)
printf("\n -ve value is not possible. ")
|
71d3f34d0896398a28bd9ba6e8e2966f90a95201 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3647/CH12/EX12.2/ex12_2.sce | 40f5897eaecb1660d5fe6904559bb2e59ffea468 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 349 | sce | ex12_2.sce | //Solutions to Problems In applied mechanics
//A N Gobby
clear all;
clc
//initialisation of variables
p=1.23//ft^2
t=0.197//ft^2
u=1.595//ft^2
g=13.56//ft^2
w=9.2//in
m=0.97//in
//CALCULATIONS
H=(g-1)*w/12//ft^2
Q=m*u*sqrt(H)//ft^3
S=Q*60*62.4/10//gallons/min
//RESULTS
printf('the head difference in feet of water=% f gallons/min',S)
|
bdf4ba0deb0862963c63606f3ac76df2b9d7ea2d | 449d555969bfd7befe906877abab098c6e63a0e8 | /788/CH13/EX13.2.b/13_2_soln.sce | 1369545d568f0f54111b7baf75c511d5f321bcf7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 405 | sce | 13_2_soln.sce | clc;
pathname=get_absolute_file_path('13_2_soln.sce')
filename=pathname+filesep()+'13_2_data.sci'
exec(filename)
// Solution:
// initial temperature of air in Rankine,
T1=T1+460; //deg R
// final temperature of air in Rankine,
T2=T2+460; //deg R
// final volume of air,
// Charle's Law,
V2=(T2/T1)*V1; //in^3
// Results:
printf("\n Results: ")
printf("\n The final volume of air is %.1f in^3.",V2)
|
8f30fea72df99bf4ee4f8b78c5ba4fde8c8e0cd8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3769/CH13/EX13.32/Ex13_32.sce | 95af3826a14180137495ee09bcfb439f3e7d2822 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 445 | sce | Ex13_32.sce | clear
//Given
f=50 //Hz
L=0.03
R=8 //ohm
Ev=240 //V
//Calculation
//
Xl=2*%pi*f*L
Z=sqrt(R**2+Xl**2)
Iv=Ev/Z
P=Iv**2*R
a=R/Z
Xc=2*Xl
C=1/(2*%pi*f*Xc)
//Result
printf("\n (i) The value of current is %0.2f A",Iv)
printf("\n The value of power is %0.0f W",P)
printf("\n Power factor is %0.2f lag",a)
printf("\n (ii) The vaue of capacitance is %0.0f micro F",C*10**6)
|
7f9b47a715195c99535880188a5a825709a622df | 449d555969bfd7befe906877abab098c6e63a0e8 | /2594/CH5/EX5.18/Ex5_18.sce | ff43bb7aa05f857ea6b6621d56393766700ef460 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,056 | sce | Ex5_18.sce | clc
Na=10^17
disp("Na = "+string(Na)+" cm^-3") //initializing value of acceptor concentration.
Nd=5*10^16
disp("Nd = "+string(Nd)+" cm^-3") //initializing value of donor concentration.
e=1.6*10^-19
disp("e = "+string(e)+" columbs") //initializing value of charge of electrons.
no=1.5*10^10
disp("no = "+string(no)+" cm^3") //initializing value of intrinsic carrier concentration.
T=300
disp("T = "+string(T)+" K") //initializing value of temperature.
Vt=0.0259
disp("Vt = "+string(Vt)+" eV") //initializing value of thermal voltage.
Vbi=(Vt*(log(Na*Nd/(no^2))))
disp("(a)Vbi=(Vt*(log(Na*Nd/(no^2))))="+string(Vbi)+" V")//calculation.
Efi_Efp=(Vt*log(Na/(no)))
disp("(b)value of fermi level on each side of junction,Efi_Efp=(Vt*log(Na/(no)))="+string(Efi_Efp)+" V")//calculation.
Efn_Efi=(Vt*log(Nd/(no)))
disp("Efn_Efi=(Vt*log(Nd/(no)))="+string(Efn_Efi)+" V")//calculation.
disp("(c)The energy band digram is similar to Fig P5.3")
Vbi=((Efi_Efp)+(Efn_Efi))
disp("(d)Vbi=((Efi_Efp)+(Efn_Efi))/(e)=Vj="+string(Vbi)+" V")//calculation.
|
5036342c1c55dd50f889bea3618de74a2fad5907 | b2efed85f1632d9ed4b7d9f4eebc7126d3074940 | /ted_mini/artandsci_positive/165.ted.sci | ff0eacf200a86c2e6b381dbe2ffea95220af1356 | [] | no_license | joytafty-work/unsupervised_nlp | 837d8ed75eb084b630d75a1deba7bdd53bbcf261 | 7812c7d24bb677c90cf6397ed0e274caba1b884c | refs/heads/master | 2021-01-10T09:24:33.254190 | 2015-11-11T20:40:32 | 2015-11-11T20:40:32 | 45,651,958 | 2 | 7 | null | 2018-01-28T18:54:18 | 2015-11-06T01:42:42 | Scilab | UTF-8 | Scilab | false | false | 5,672 | sci | 165.ted.sci | so where are the robots we ve been told for 40 years already that they re coming soon very soon they ll be doing everything for us they ll be cooking cleaning buying things shopping building but they are n t here meanwhile we have illegal immigrants doing all the work but we do n t have any robots so what can we do about that what can we say so i want to give a little bit of a different perspective of how we can perhaps look at these things in a little bit of a different way and this is an x ray picture of a real beetle and a swiss watch back from 88 you look at that what was true then is certainly true today we can still make the pieces we can make the right pieces we can make the circuitry of the right computational power but we ca n t actually put them together to make something that will actually work and be as adaptive as these systems so let s try to look at it from a different perspective let s summon the best designer the mother of all designers let s see what evolution can do for us so we threw in we created a primordial soup with lots of pieces of robots with bars with motors with neurons put them all together and put all this under kind of natural selection under mutation and rewarded things for how well they can move forward a very simple task and it s interesting to see what kind of things came out of that so if you look you can see a lot of different machines come out of this they all move around they all crawl in different ways and you can see on the right that we actually made a couple of these things and they work in reality these are not very fantastic robots but they evolved to do exactly what we reward them for for moving forward so that was all done in simulation but we can also do that on a real machine here s a physical robot that we actually have a population of brains competing or evolving on the machine it s like a rodeo show they all get a ride on the machine and they get rewarded for how fast or how far they can make the machine move forward and you can see these robots are not ready to take over the world yet but they gradually learn how to move forward and they do this autonomously so in these two examples we had basically machines that learned how to walk in simulation and also machines that learned how to walk in reality but i want to show you a different approach and this is this robot over here which has four legs it has eight motors four on the knees and four on the hip it has also two tilt sensors that tell the machine which way it s tilting but this machine does n t know what it looks like you look at it and you see it has four legs the machine does n t know if it s a snake if it s a tree it does n t have any idea what it looks like but it s going to try to find that out initially it does some random motion and then it tries to figure out what it might look like and you re seeing a lot of things passing through its minds a lot of self models that try to explain the relationship between actuation and sensing it then tries to do a second action that creates the most disagreement among predictions of these alternative models like a scientist in a lab then it does that and tries to explain that and prune out its self models this is the last cycle and you can see it s pretty much figured out what its self looks like and once it has a self model it can use that to derive a pattern of locomotion so what you re seeing here are a couple of machines a pattern of locomotion we were hoping that it wass going to have a kind of evil spidery walk but instead it created this pretty lame way of moving forward but when you look at that you have to remember that this machine did not do any physical trials on how to move forward nor did it have a model of itself it kind of figured out what it looks like and how to move forward and then actually tried that out so we ll move forward to a different idea so that was what happened when we had a couple of that s what happened when you had a couple of ok ok ok they do n t like each other so there s a different robot that s what happened when the robots actually are rewarded for doing something what happens if you do n t reward them for anything you just throw them in so we have these cubes like the diagram showed here the cube can swivel or flip on its side and we just throw 1 000 of these cubes into a soup this is in simulation and do n t reward them for anything we just let them flip we pump energy into this and see what happens in a couple of mutations so initially nothing happens they re just flipping around there but after a very short while you can see these blue things on the right there begin to take over they begin to self replicate so in absence of any reward the intrinsic reward is self replication and we ve actually built a couple of these and this is part of a larger robot made out of these cubes it s an accelerated view where you can see the robot actually carrying out some of its replication process so you re feeding it with more material cubes in this case and more energy and it can make another robot so of course this is a very crude machine but we re working on a micro scale version of these and hopefully the cubes will be like a powder that you pour in ok so what can we learn these robots are of course not very useful in themselves but they might teach us something about how we can build better robots and perhaps how humans animals create self models and learn and one of the things that i think is important is that we have to get away from this idea of designing the machines manually but actually let them evolve and learn like children and perhaps that s the way we ll get there thank you |
a3c1e78fa42599c1831e0bd4e5ee2e44133b7c74 | 2ae858a680a4ccf8a2ec89a45a1e48a0292d8eab | /macros/extractLBPFeatures.sci | 15277532c703c7c1103adeb3be7012b0592d4bd8 | [] | 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 | 5,391 | sci | extractLBPFeatures.sci | // Copyright (C) 2015 - IIT Bombay - FOSSEE
//
// This file must be used under the terms of the CeCILL.
// This source file is licensed as described in the file COPYING, which
// you should have received as part of this distribution. The terms
// are also available at
// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
// Author: Shreyash Sharma
// Organization: FOSSEE, IIT Bombay
// Email: toolbox@scilab.in
function [out]=extractLBPFeatures(img,varargin)
// This function is used to extract features from an image.
//
// Calling Sequence
// im = imread(image);
// feat = extractLBPFeatures(im);
// feat = extractLBPFeatures(im,name,value);
// feat = extractLBPFeatures(im,"NumNeighbors",NumNeighbors)
// feat = extractLBPFeatures(im,"NumNeighbors",NumNeighbors,"Radius",Radius)
// feat = extractLBPFeatures(im,"NumNeighbors",NumNeighbors,"Radius",Radius,"Upright",Upright)
// feat = extractLBPFeatures(im,"NumNeighbors",NumNeighbors,"Radius",Radius,"Upright",Upright,"Interpolation",Interpolation)
// feat = extractLBPFeatures(im,"NumNeighbors",NumNeighbors,"Radius",Radius,"Upright",Upright,"Interpolation",Interpolation,"CellSize",CellSize)
// feat = extractLBPFeatures(im,"NumNeighbors",NumNeighbors,"Radius",Radius,"Upright",Upright,"Interpolation",Interpolation,"CellSize",CellSize,"Normalization",Normalization)
//
// Parameters
// feat : Feature matrix returned by obtaining features from a particular image.
// cellsize : The size of the cell specified by the user for extractng features.
// NumNeighbors : It denotes the number of neighbors presnt across the vicinity of the central pixel.
// Radius : The radius of the circle on which the points correspond to image coordinates.
// Upright : Rotation invariance flag, specified as the comma-separated pair consisting of 'Upright' and a logical scalar. When you set this property to true, the LBP features do not encode rotation information. Set 'Upright' to false when rotationally invariant features are required.
// Interpolation :Interpolation method used to compute pixel neighbors, specified as the comma-separated pair consisting of 'Interpolation' and the character vector 'Linear' or 'Nearest'. Use 'Nearest' for faster computation, but with less accuracy.
// Normalization :Type of normalization applied to each LBP cell histogram, specified as the comma-separated pair consisting of 'Normalization' and the character vector 'L2' or 'None'. To apply a custom normalization method as a post-processing step, set this value to 'None'.
//
// Description
// This function is used to extract features from an image by comparing pixel values between the central and neighbouring pixels,further , it stores the features in the form of a matrix and returns this matrix to the user.
//
// Examples
// i1= imread('kevin.jpg',0);
// i2= imread('air.jpg',0);
// i3= imread('bike.jpg',0);
// rr= extractLBPFeatures(i1);
// rr1 = extractLBPFeatures(i2);
// rr2 =extractLBPFeatures(i3);
input1 = mattolist(img);
[lhs rhs] = argn(0);
if rhs>13 then
error(msprintf("Too many input arguments"));
end
if rhs<1 then
error(msprintf("Not enough input arguments"));
end
if rhs==13 then
a=raw_extractLBPFeatures(input1,varargin(1),varargin(2),varargin(3),varargin(4),varargin(5),varargin(6),varargin(7),varargin(8),varargin(9),varargin(10),varargin(11),varargin(12));
out(:,:,1)=a;
elseif rhs==12 then
a=raw_extractLBPFeatures(input1,varargin(1),varargin(2),varargin(3),varargin(4),varargin(5),varargin(6),varargin(7),varargin(8),varargin(9),varargin(10),varargin(11));
out(:,:,1)=a;
elseif rhs==11 then
a=raw_extractLBPFeatures(input1,varargin(1),varargin(2),varargin(3),varargin(4),varargin(5),varargin(6),varargin(7),varargin(8),varargin(9),varargin(10));
out(:,:,1)=a;
elseif rhs==10 then
a=raw_extractLBPFeatures(input1,varargin(1),varargin(2),varargin(3),varargin(4),varargin(5),varargin(6),varargin(7),varargin(8),varargin(9));
out(:,:,1)=a;
elseif rhs==9 then
a=raw_extractLBPFeatures(input1,varargin(1),varargin(2),varargin(3),varargin(4),varargin(5),varargin(6),varargin(7),varargin(8));
out(:,:,1)=a;
elseif rhs==8 then
a=raw_extractLBPFeatures(input1,varargin(1),varargin(2),varargin(3),varargin(4),varargin(5),varargin(6),varargin(7));
out(:,:,1)=a;
elseif rhs==7 then
a=raw_extractLBPFeatures(input1,varargin(1),varargin(2),varargin(3),varargin(4),varargin(5),varargin(6));
out(:,:,1)=a;
elseif rhs==6 then
a=raw_extractLBPFeatures(input1,varargin(1),varargin(2),varargin(3),varargin(4),varargin(5));
out(:,:,1)=a;
elseif rhs==5 then
a=raw_extractLBPFeatures(input1,varargin(1),varargin(2),varargin(3),varargin(4));
out(:,:,1)=a;
elseif rhs==4 then
a=raw_extractLBPFeatures(input1,varargin(1),varargin(2),varargin(3));
out(:,:,1)=a;
elseif rhs==3 then
a=raw_extractLBPFeatures(input1,varargin(1),varargin(2));
out(:,:,1)=a;
elseif rhs==2 then
a=raw_extractLBPFeatures(input1,varargin(1));
out(:,:,1)=a;
else
a=raw_extractLBPFeatures(input1);
out(:,:,1)=a;
end
endfunction
|
b768f404d5068ea457e148810a84e06f583e986e | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.3/Unix-Windows/scilab-2.3/examples/link-examples/ext10c.sce | 8c0c4a819b29b45afcf4a0fb06e903c44374ff71 | [
"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 | 235 | sce | ext10c.sce | //Passing a parameter to argument funtion of ode
host('make /tmp/ext10c.o');
param=[0.04,10000,3d+7];
link('/tmp/ext10c.o','ext10c','C');
y=ode([1;0;0],0,[0.4,4],'ext10c')
//param must be defined as a scilab variable upon calling ode
|
5bc5d0e068085a8c52ad26096f683b0d01ef23cc | 449d555969bfd7befe906877abab098c6e63a0e8 | /3637/CH2/EX2.6/Ex2_6.sce | f1cb6352134487904d206f784ca213b951d893f1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 197 | sce | Ex2_6.sce | //problem 6 pagenumber 2.90
//given
format(6);
r1=2e3;//ohm
rf1=8e3;//ohm
A=45;//open loop gain
a=1+(rf1/r1);//Nonverting gain
gain=A/(1+A/a);
disp( 'Gain = '+string(gain));//no unit
|
ca156ec098c0e36319fd92c8b985b204c9759d36 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1475/CH6/EX6.34/Example_6_34.sce | 19658db85baed36e298e4ebadc15f832a15e4cbf | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 355 | sce | Example_6_34.sce | // Example 6.34 Calculate the seasonal indices in the case of the following
clc;
clear;
Q1=[39 45 44 53];
Q2=[21 23 26 23 ];
Q3=[52 63 69 64];
Q4=[81 76 75 84];
T1=sum(Q1);
T2=sum(Q2);
T3=sum(Q3);
T4=sum(Q4);
T=[T1 T2 T3 T4];
AM=T./4;
GA=sum(AM)/4;
SI=(AM./GA)*100;
disp(SI,"Seasonal Index=",GA,"Grand Average =",AM,"Average Movement =");
|
629500cf26309c342d4d7f51bb28650186a027e1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1703/CH4/EX4.1/4_1.sce | 5a55c48e9c79f60aff2d36bdb524509208ce73a6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 250 | sce | 4_1.sce |
clc
//initialisation of variables
Cd= 0.98
g= 32.2 //ft/sec^2
H= 2 //ft
//CALCULATIONS
v= sqrt(2*g*H)
t= H/v
h= 0.5*g*t^2
//RESULTS
printf ('Vertical distance fallen in this ttime = %.f ft',h)
//The answer given in textbook is wrong.
|
45313f1fe3937ab71c68ed29d899d2850969345c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2870/CH17/EX17.9/Ex17_9.sce | 28e3da2c2cce732c67508dcee94bb139d7f97da5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 899 | sce | Ex17_9.sce | clc;clear;
//Example 17.9
//given data
m=2.86;
Ma1=2;
P01=1;
P1=0.1278;
T1=444.5;
p1=1.002;
//from Table A-2a
R=0.287;//in kJ/kg-K
cp=1.005;//in kJ/kg-K
k=1.4;
//calculations
//part - a
//from Table A-33 at Ma1=2.0
Ma2=0.5774;
P0201=0.7209;//P02/P01
P21=4.5;//P2/P1;
T21=1.6875;//T2/T1
p21=2.6667;//p2/p1
P02=P0201*P01;
P2=P21*P1;
T2=T21*T1;
p2=p21*p1;
disp(P02,'the stagnation pressure in MPa');
disp(P2,'the static pressure in MPa');
disp(T2,'static temperature in K');
disp(p2,'static density in kg/m^3');
//part - b
//s21 = s2 - s1
s21=cp*log(T2/T1)-R*log(P2/P1);
disp(s21,'the entropy change across the shock in kJ/kg-K');
//part - c
V2=Ma2*sqrt(k*R*T2*1000);//factor of 1000 to convert kJ to J
V2=ceil(V2);
disp(V2,'the exit velocity in m/s');
//part - d
disp('flow rate is not affected by presence of shock waves amd remains 2.86 kg/sec')
|
f7d9a5158bab85cad8d3f160f9329d7752faf30a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1382/CH6/EX6.8/EX_6_8.sce | 27ad8874dd608c08cd20fda63f999e1a233a6226 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 662 | sce | EX_6_8.sce | // Example 6.8;// GAIN,INPUT VOLTAGE AND OUTPUT VOLTAGE
clc;
clear;
close;
Vs=10;//output voltage in milli volts
Vi= 0.01;//input voltage in volts
A=200;//amplifier gain without feedback
D=0.1;//distortion without feedback
Df=0.01;//distortion with feedback
Beta=( (D/Df)-1)/A;// feedback ratio
fop= (Beta*100);//percentage of output voltage which is fedback to the input is
Af= (A/(1+(Beta*A)));//GAIN WITH FEEDBACL
Vo= Af*Vs*10^-3;//new output volate in volts
Vin= (Vi +(-Beta*Vo))*10^3;//new input voltage in milli volts
disp(Af,"gain with feedback is")
disp(Vo,"new output volate in volts")
disp(Vin,"new input voltage in milli volts is")
|
46165813a27d7e1c3db9a79fac943cbf042322f8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /680/CH6/EX6.09/6_09.sce | 15e0c6020c712449942de678a201deac21a7f450 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 535 | sce | 6_09.sce | //Problem 6.09:
//initializing the variables:
H0 = 28; // in Btu/lb
H1 = 1151; // in Btu/lb
Qh = 700; // in Btu/lb
S0 = 0.056; // in Btu/lb deg R
S1 = 1.757; // in Btu/lb deg R
Th = 300; // in deg F
Tc = 60; // in deg F
P1 = 1; // in atm
T1 = 212; // in deg F
T0 = 60; // in deg F
//calculation:
Qc = H1 - H0 - Qh
//the entropy change of the steam
dSs = S0 - S1
dSh = Qh/(Th + 460)
dSc = Qc/(Tc + 460)
dSt = dSs + dSh + dSc
printf("\n\nResult\n\n")
printf("\n total entropy change is %.3f Btu/lb deg R",dSt) |
970056ebc041c2299cecc689a542d691182b6cfa | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/ngram/5.20_16.tst | cb5a703ae8fc82e9b2f1425d7f4eca16faa7f970 | [] | 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 | 502,652 | tst | 5.20_16.tst | 20 17:1 263:1 1059:1 1202:1 1211:1 1328:1 1369:1 1709:1 1883:1 1996:1 2007:1 2212:1 2826:1 3664:1 4323:1 4701:2 4795:1 4845:1 4959:1 5040:1 5066:2 5123:1 5173:2 5375:1 5925:2 6080:1 6103:1 6212:1 6385:1 7066:1 7328:1 7347:1 7357:1 7401:1 7538:1 7791:1 7842:1 7855:1 7969:1 8002:1 8136:1 8383:1 8433:1 8488:1 8560:1 8585:1 8813:1 8817:1 9017:1 9958:2 10010:1 10472:1 10495:1 10566:1 10788:2 10869:2 11031:1 11045:1 11056:1 11297:1 11365:2 11480:1 12394:1 12759:1 12927:1 13015:1 13122:1 13498:1 13810:1 13834:1 13887:1 14177:1 14385:1 14777:1 14888:1 15130:1 15197:1 15210:1 15282:1 15755:1 16050:1 16412:1 16548:1 16556:1 16748:1 16879:1 17169:1 17374:1 17559:61 17699:1 18071:1 18209:1 18613:1 18968:1 19030:1 19061:1 19626:1 19668:1 19788:1 20152:1 20210:1 20972:1 21158:1 21167:1 21393:1 21444:1 21961:2 21998:1 22010:1 22020:1 22108:1 22416:1 22608:1 22678:1 22857:1 22909:1 22922:1 22968:1 23039:1 23068:1 24440:1 24571:1 24743:1 24855:1 25033:1 25551:1 25712:1 25723:1 26341:1 26382:1 26392:1 26770:1 27578:1
20 17:1 29:1 72:1 241:1 263:1 441:1 526:1 620:1 1059:1 1202:1 1211:1 1328:1 1369:1 1418:2 1437:1 1446:1 1486:1 1490:1 1501:1 1608:1 1703:1 1709:1 1851:1 1883:1 1954:1 1996:1 2007:1 2196:1 2212:1 2214:1 2218:1 2225:1 2232:1 2278:1 2618:1 2655:1 2742:1 2826:2 2983:2 3108:1 3116:1 3174:1 3460:1 3489:1 3662:1 3664:1 4191:1 4323:1 4701:3 4795:1 4845:1 4959:1 5030:1 5040:1 5066:2 5123:2 5173:2 5355:1 5375:1 5664:1 5799:1 5925:2 6080:1 6095:1 6103:1 6212:1 6385:1 6408:1 6665:1 6714:1 6817:1 6970:1 7066:1 7328:6 7346:1 7347:2 7357:1 7401:1 7538:1 7572:1 7587:1 7704:1 7791:2 7842:1 7855:1 7969:1 8002:1 8136:1 8299:1 8383:1 8423:1 8433:1 8445:1 8488:1 8518:1 8560:1 8566:1 8585:1 8598:1 8791:1 8794:1 8813:1 8817:1 9017:1 9110:1 9288:1 9487:1 9958:2 10010:1 10021:1 10130:1 10133:1 10229:1 10349:1 10472:1 10495:1 10531:1 10566:1 10601:1 10651:1 10763:1 10788:4 10869:2 10944:1 11020:1 11031:1 11045:1 11056:2 11183:1 11277:1 11297:2 11365:2 11384:1 11480:1 11484:1 11499:1 11582:1 11680:1 12018:1 12280:1 12394:2 12418:1 12439:1 12689:1 12759:1 12927:1 13015:1 13095:1 13122:1 13301:1 13498:1 13563:1 13739:2 13794:1 13810:1 13834:1 13887:1 14177:1 14240:1 14382:2 14385:1 14589:1 14757:1 14777:1 14888:1 15085:1 15130:1 15197:1 15210:1 15244:1 15282:1 15287:1 15653:1 15661:1 15733:1 15755:1 15758:1 15772:1 15941:1 15997:1 16050:1 16068:1 16214:1 16412:1 16416:1 16534:1 16548:1 16556:2 16704:1 16748:1 16789:1 16839:1 16879:1 16899:1 16963:1 17012:1 17112:1 17169:1 17184:1 17277:1 17374:2 17559:140 17575:2 17699:2 18071:1 18142:1 18209:1 18338:1 18605:1 18613:1 18657:1 18782:1 18879:1 18946:1 18956:1 18968:1 18973:2 18994:1 19030:1 19061:2 19207:1 19327:1 19340:1 19409:1 19589:1 19626:1 19646:1 19658:1 19668:1 19788:2 19864:1 20026:1 20084:1 20152:1 20167:1 20168:1 20193:1 20210:1 20270:1 20302:1 20322:1 20473:1 20693:1 20926:1 20972:1 21158:2 21167:1 21243:1 21336:1 21352:1 21393:1 21444:1 21682:1 21942:1 21961:2 21998:1 22010:1 22020:1 22057:1 22082:1 22108:1 22416:1 22608:1 22657:1 22678:1 22688:1 22857:1 22858:1 22862:1 22909:1 22922:1 22932:1 22968:2 23039:1 23068:2 23282:1 23384:1 23436:1 23660:1 24300:1 24365:1 24440:1 24509:1 24571:2 24642:1 24743:1 24855:1 24909:1 25033:1 25551:1 25614:1 25712:1 25723:1 25782:1 25998:1 26178:2 26250:2 26341:1 26382:1 26392:1 26529:2 26590:1 26770:1 26810:1 26910:1 27011:1 27219:1 27509:1 27578:1 27653:1
20 17:1 29:1 72:1 145:1 241:1 263:1 323:1 366:1 441:1 526:1 620:1 915:1 937:1 939:1 991:1 992:1 1059:1 1079:1 1202:1 1211:1 1271:1 1328:1 1369:1 1418:2 1430:1 1437:1 1446:1 1486:2 1490:1 1501:1 1608:1 1703:1 1709:1 1843:1 1851:1 1883:1 1954:2 1996:2 2007:1 2136:1 2139:1 2163:1 2196:2 2212:1 2214:1 2218:1 2225:1 2232:1 2278:1 2528:1 2618:1 2655:1 2686:1 2742:1 2774:1 2791:1 2826:3 2929:2 2983:2 3108:1 3116:1 3125:1 3174:2 3389:1 3456:1 3460:1 3489:1 3662:1 3664:1 3772:1 3820:1 4191:1 4255:1 4323:1 4418:1 4455:1 4616:1 4619:1 4701:4 4795:1 4845:1 4959:1 5030:1 5040:1 5066:2 5123:2 5173:2 5261:1 5333:2 5355:1 5375:1 5398:1 5428:1 5566:1 5664:1 5799:1 5925:2 6080:1 6095:1 6103:1 6108:1 6169:1 6212:1 6385:1 6408:1 6475:1 6642:1 6659:1 6665:1 6669:1 6714:1 6793:1 6817:1 6901:1 6970:1 6993:1 7066:2 7140:1 7268:1 7284:1 7328:7 7346:1 7347:3 7357:1 7401:1 7538:1 7572:1 7587:2 7596:1 7704:1 7791:2 7842:1 7855:1 7969:1 8002:2 8130:2 8133:1 8136:1 8299:1 8383:1 8423:1 8433:1 8445:1 8488:1 8518:1 8560:1 8566:1 8585:1 8598:1 8791:1 8794:1 8813:1 8817:1 9017:1 9110:1 9208:1 9249:1 9288:1 9353:1 9475:1 9487:1 9836:1 9945:1 9958:2 9991:1 10010:1 10021:1 10036:1 10130:2 10133:1 10229:1 10348:2 10349:1 10462:1 10472:1 10495:1 10531:1 10566:1 10601:1 10651:1 10763:1 10788:4 10869:2 10944:1 11020:1 11031:1 11045:1 11051:1 11056:2 11102:1 11183:1 11185:2 11254:1 11277:1 11297:2 11335:1 11365:2 11384:1 11480:1 11484:1 11499:1 11582:1 11680:1 11742:1 12018:1 12057:1 12141:1 12280:1 12315:1 12378:1 12394:2 12418:1 12439:1 12473:1 12526:1 12597:1 12626:1 12689:1 12757:1 12759:1 12927:1 13015:1 13055:1 13080:2 13095:1 13122:1 13300:1 13301:1 13343:1 13403:1 13422:1 13498:1 13552:1 13563:1 13739:2 13756:1 13794:1 13810:1 13834:1 13887:1 14042:1 14087:1 14177:1 14240:2 14382:2 14383:1 14385:1 14550:2 14589:1 14757:1 14777:1 14799:1 14888:1 14911:1 15037:1 15057:1 15085:1 15094:1 15130:1 15197:1 15210:1 15244:1 15273:1 15282:1 15287:1 15331:1 15653:1 15661:1 15733:1 15755:2 15758:1 15772:1 15941:1 15997:1 16050:1 16068:1 16100:1 16197:1 16214:1 16412:1 16416:1 16534:1 16548:1 16556:2 16704:1 16748:1 16786:2 16789:1 16839:1 16879:1 16888:1 16899:1 16963:1 17005:1 17012:1 17112:1 17169:1 17184:1 17277:1 17374:2 17448:1 17559:268 17575:2 17690:1 17699:2 18020:1 18071:1 18142:1 18209:2 18223:1 18338:1 18452:1 18605:1 18613:2 18657:1 18702:1 18719:1 18782:1 18840:1 18879:1 18946:1 18956:1 18968:1 18973:2 18991:1 18994:1 19030:1 19061:3 19207:1 19327:1 19340:1 19378:1 19403:1 19409:1 19538:1 19589:1 19626:1 19646:1 19658:1 19668:1 19788:2 19807:1 19856:1 19864:1 19869:1 20026:1 20084:1 20152:1 20167:1 20168:1 20193:1 20210:1 20270:1 20302:1 20322:1 20361:1 20473:1 20524:1 20693:1 20787:1 20902:1 20926:1 20972:1 21112:1 21158:2 21167:1 21243:1 21332:1 21336:1 21352:1 21393:2 21401:1 21444:1 21568:1 21682:1 21706:1 21942:1 21961:2 21998:1 22010:1 22020:1 22057:1 22082:1 22108:1 22189:1 22416:1 22608:1 22657:1 22662:1 22672:1 22678:1 22688:2 22857:1 22858:1 22862:1 22909:1 22922:1 22932:1 22968:2 23039:1 23068:2 23081:1 23274:1 23282:1 23328:1 23384:1 23407:1 23436:1 23437:1 23596:1 23647:1 23660:1 23854:1 23963:1 24300:1 24365:1 24394:1 24440:1 24469:1 24509:1 24571:2 24587:1 24642:1 24671:1 24743:1 24816:1 24855:1 24909:1 25033:1 25095:1 25385:1 25440:1 25461:2 25551:1 25614:1 25712:1 25723:1 25782:1 25998:1 26065:1 26178:2 26250:2 26341:1 26372:1 26382:1 26392:4 26430:1 26529:2 26560:1 26590:1 26632:1 26726:1 26770:1 26808:1 26810:1 26910:1 27011:1 27015:2 27219:1 27509:1 27568:1 27578:1 27612:1 27643:1 27653:1
20 17:1 29:1 72:1 145:1 241:1 263:1 323:1 366:1 441:1 526:1 549:1 620:1 915:2 937:1 939:1 991:1 992:1 1059:1 1079:1 1110:1 1202:1 1211:1 1271:1 1328:1 1369:1 1418:2 1430:1 1437:1 1446:1 1460:2 1486:3 1490:1 1501:1 1522:1 1550:2 1608:1 1703:1 1709:1 1843:2 1851:1 1868:1 1883:1 1954:2 1996:2 2007:1 2055:1 2123:1 2136:1 2139:1 2163:1 2196:2 2212:1 2214:1 2218:2 2225:1 2228:1 2232:1 2278:1 2324:1 2387:1 2458:1 2528:1 2562:1 2592:1 2618:1 2655:1 2686:1 2742:1 2765:1 2774:1 2775:1 2791:1 2826:3 2929:2 2983:2 3108:1 3116:1 3125:1 3174:2 3389:1 3456:1 3460:1 3489:1 3662:1 3664:1 3703:1 3772:1 3819:1 3820:1 4191:1 4255:1 4323:1 4418:1 4455:1 4564:1 4616:1 4619:1 4701:4 4795:1 4817:1 4845:1 4959:1 5030:1 5040:1 5066:2 5123:2 5173:2 5261:1 5333:2 5355:1 5375:1 5385:1 5398:1 5428:1 5566:1 5664:1 5799:1 5925:2 6080:1 6095:1 6103:1 6108:1 6169:1 6212:1 6385:1 6408:1 6475:1 6504:1 6642:1 6659:1 6665:1 6669:1 6714:1 6793:1 6817:1 6901:1 6906:1 6907:1 6970:1 6993:1 7066:2 7140:1 7268:2 7284:1 7328:9 7346:2 7347:3 7357:1 7401:1 7538:1 7572:1 7587:2 7596:1 7601:1 7704:1 7723:2 7791:4 7839:1 7842:1 7855:1 7969:2 8002:2 8130:2 8133:1 8136:1 8248:1 8299:1 8368:1 8383:1 8423:1 8433:1 8445:1 8488:1 8518:1 8560:2 8566:1 8573:1 8585:1 8598:1 8791:1 8794:1 8813:1 8817:1 8988:1 9017:1 9110:1 9208:1 9249:1 9263:1 9288:1 9353:1 9475:1 9487:1 9836:1 9870:1 9945:1 9958:2 9991:1 10010:1 10021:1 10036:1 10099:1 10125:1 10130:2 10133:1 10229:1 10348:2 10349:1 10462:1 10472:1 10495:1 10531:1 10566:1 10601:1 10651:1 10763:1 10788:4 10869:2 10944:1 11020:1 11031:1 11045:1 11051:1 11056:2 11102:1 11183:1 11185:4 11254:1 11277:1 11297:2 11335:1 11365:2 11384:1 11480:1 11484:1 11499:1 11582:1 11680:1 11742:2 11975:1 12018:1 12057:2 12141:1 12280:1 12315:1 12378:1 12394:2 12414:2 12418:1 12439:1 12473:1 12511:1 12526:2 12597:1 12626:1 12689:1 12757:1 12759:1 12894:1 12927:1 13005:1 13012:1 13015:1 13055:1 13080:2 13095:1 13122:1 13170:1 13300:1 13301:1 13343:1 13403:1 13412:1 13422:1 13498:1 13552:1 13563:1 13586:1 13739:2 13756:1 13794:1 13810:1 13819:1 13834:1 13887:1 14042:2 14087:1 14177:1 14232:1 14240:2 14382:2 14383:1 14385:1 14432:1 14550:3 14584:1 14589:1 14757:1 14777:1 14799:1 14808:1 14849:1 14888:1 14911:1 15037:1 15057:1 15085:1 15094:1 15130:1 15197:1 15210:1 15244:1 15273:1 15274:1 15282:1 15287:1 15300:1 15331:1 15495:1 15528:1 15567:1 15623:1 15653:1 15661:1 15733:1 15755:2 15758:1 15772:1 15868:2 15941:1 15997:1 16050:1 16068:1 16100:1 16197:1 16214:1 16412:1 16416:1 16534:1 16548:1 16556:2 16598:1 16704:1 16748:1 16786:2 16789:1 16839:1 16879:1 16888:1 16899:1 16940:1 16963:1 17005:1 17012:1 17112:1 17169:1 17184:1 17277:1 17374:2 17383:1 17448:1 17559:347 17560:1 17575:2 17690:1 17699:2 17770:1 17964:1 18020:1 18071:1 18100:1 18142:1 18209:2 18223:1 18293:1 18338:1 18394:1 18452:1 18605:1 18613:2 18641:1 18657:1 18669:1 18702:1 18719:1 18782:1 18840:1 18879:1 18946:1 18956:1 18968:1 18973:2 18991:1 18994:2 19030:1 19061:3 19207:1 19254:1 19327:1 19340:1 19378:1 19403:1 19409:1 19446:1 19538:1 19589:1 19626:1 19646:1 19658:1 19668:1 19781:1 19788:2 19807:1 19856:1 19864:1 19866:1 19869:1 20026:1 20070:1 20084:1 20152:1 20167:1 20168:1 20193:1 20210:1 20270:1 20285:1 20302:1 20322:1 20346:1 20361:1 20473:1 20524:1 20589:1 20604:1 20693:1 20787:1 20902:1 20926:1 20968:1 20972:1 21112:1 21158:2 21167:1 21202:1 21243:1 21332:1 21336:1 21352:1 21393:2 21401:1 21415:1 21444:1 21568:1 21640:1 21682:1 21706:1 21813:1 21942:1 21961:2 21998:1 22010:1 22020:1 22057:1 22073:1 22082:1 22108:1 22165:1 22189:1 22416:1 22502:1 22608:1 22657:1 22662:1 22672:1 22678:1 22687:1 22688:3 22705:1 22744:1 22857:1 22858:1 22862:1 22909:1 22919:1 22922:1 22932:1 22953:1 22960:1 22968:2 23039:1 23068:2 23081:1 23274:1 23282:1 23328:1 23384:1 23396:1 23407:1 23436:1 23437:1 23579:1 23596:1 23647:1 23660:1 23675:1 23854:1 23963:1 24300:1 24355:1 24365:1 24394:1 24440:1 24444:1 24469:1 24509:1 24571:2 24587:1 24642:1 24671:1 24743:1 24816:1 24855:1 24893:1 24909:1 25033:1 25095:1 25385:1 25440:1 25461:2 25551:1 25614:1 25631:1 25680:1 25712:1 25723:1 25782:1 25807:1 25998:1 26065:1 26178:2 26250:2 26341:1 26372:1 26382:1 26392:4 26430:1 26529:2 26560:2 26590:1 26632:1 26726:1 26770:1 26808:1 26810:1 26910:1 27011:1 27015:3 27219:1 27227:1 27509:1 27568:1 27578:1 27612:1 27643:1 27653:1
20 17:1 29:1 72:1 145:1 241:1 245:1 263:1 323:1 366:1 441:1 526:1 549:1 620:1 915:2 937:1 939:1 991:1 992:1 1059:1 1079:1 1110:1 1202:1 1211:1 1271:1 1328:1 1369:1 1418:2 1430:1 1437:1 1446:1 1460:2 1486:3 1490:1 1501:1 1522:1 1550:3 1608:1 1703:2 1709:1 1843:2 1851:1 1868:1 1883:1 1954:3 1996:2 2007:1 2055:1 2123:2 2136:1 2139:1 2163:1 2196:3 2212:1 2214:1 2218:2 2225:1 2228:1 2232:1 2278:1 2324:1 2387:1 2458:1 2528:1 2562:1 2592:1 2618:1 2655:1 2686:1 2742:1 2765:1 2774:1 2775:2 2791:1 2826:3 2929:2 2983:2 3108:1 3116:1 3125:1 3174:2 3389:1 3456:1 3460:1 3489:1 3662:1 3664:1 3703:1 3772:1 3819:1 3820:1 4191:1 4255:1 4323:1 4418:1 4455:1 4564:1 4616:1 4619:1 4701:4 4795:1 4817:2 4845:1 4959:1 5030:1 5040:1 5066:2 5123:2 5173:2 5261:1 5333:2 5355:1 5375:1 5385:1 5398:1 5428:1 5566:1 5664:1 5799:1 5925:2 6010:1 6080:1 6095:1 6103:1 6108:1 6169:1 6212:1 6385:1 6408:1 6416:1 6475:1 6483:1 6504:1 6642:1 6659:1 6665:1 6669:1 6714:1 6793:2 6804:1 6817:1 6901:1 6906:1 6907:1 6970:1 6993:1 7066:2 7140:1 7268:2 7284:1 7328:10 7346:2 7347:3 7357:1 7401:1 7538:1 7572:1 7587:2 7596:1 7601:1 7704:1 7723:3 7791:4 7839:1 7842:1 7855:1 7969:2 8002:2 8130:2 8133:1 8136:1 8248:1 8299:1 8368:1 8383:1 8423:1 8433:1 8445:1 8488:1 8518:1 8560:2 8566:3 8573:1 8585:1 8598:1 8684:1 8791:1 8794:1 8813:1 8817:1 8988:1 9017:1 9110:3 9208:1 9249:1 9263:1 9288:1 9353:1 9475:1 9487:1 9836:1 9870:1 9901:1 9945:1 9958:2 9991:1 9999:1 10010:1 10016:1 10021:1 10036:1 10099:1 10125:1 10130:2 10133:1 10202:1 10229:1 10348:2 10349:1 10462:1 10472:1 10495:1 10531:3 10566:1 10601:1 10651:1 10763:1 10788:4 10869:2 10944:1 11020:1 11031:1 11045:1 11051:1 11056:2 11102:1 11183:1 11185:5 11254:1 11277:1 11297:2 11335:1 11365:2 11384:1 11480:1 11484:1 11499:1 11582:1 11680:1 11742:2 11975:2 12018:1 12057:3 12141:1 12280:1 12315:1 12378:1 12394:2 12414:3 12418:1 12439:1 12473:1 12511:2 12526:3 12597:1 12626:1 12689:1 12757:1 12759:1 12894:1 12927:1 13005:2 13012:1 13015:1 13055:1 13080:2 13095:1 13122:1 13170:1 13300:1 13301:1 13343:1 13403:1 13412:1 13422:1 13498:1 13552:1 13563:1 13586:1 13739:2 13756:1 13794:1 13810:1 13819:1 13834:1 13887:1 14042:2 14087:1 14177:1 14232:1 14240:2 14382:2 14383:1 14385:1 14432:1 14550:4 14584:1 14589:1 14757:1 14770:1 14777:1 14799:1 14808:1 14849:1 14888:1 14911:1 15037:1 15057:1 15085:1 15094:1 15130:1 15197:1 15210:1 15244:1 15273:1 15274:1 15282:1 15287:1 15300:1 15331:1 15495:1 15528:1 15567:1 15623:1 15653:1 15661:1 15733:1 15755:2 15758:1 15772:1 15868:3 15941:1 15997:1 16050:1 16068:1 16100:1 16197:1 16214:1 16230:1 16412:1 16416:1 16534:1 16548:1 16556:2 16598:1 16704:3 16748:1 16786:2 16789:1 16839:1 16879:2 16888:1 16899:1 16940:2 16963:1 17005:1 17012:1 17112:1 17169:1 17184:1 17277:1 17374:2 17383:1 17448:1 17559:365 17560:1 17575:2 17690:1 17699:2 17761:1 17770:1 17773:1 17964:1 18020:1 18071:1 18100:1 18142:1 18209:2 18223:1 18293:1 18338:1 18351:1 18394:2 18452:1 18605:1 18613:2 18641:1 18657:1 18669:1 18702:1 18719:1 18782:1 18840:1 18879:1 18890:1 18946:1 18956:1 18968:1 18973:2 18991:1 18994:2 19030:1 19061:3 19207:1 19254:1 19327:1 19340:1 19378:1 19403:1 19409:1 19446:1 19538:1 19589:1 19626:1 19646:1 19658:1 19668:1 19679:1 19728:1 19781:2 19788:2 19807:1 19856:1 19864:1 19866:1 19869:1 20026:1 20070:1 20084:1 20152:1 20167:1 20168:1 20193:1 20210:1 20270:1 20285:1 20302:1 20322:1 20346:1 20361:1 20473:1 20524:1 20589:1 20604:2 20693:1 20787:1 20884:1 20902:1 20926:1 20968:1 20972:1 21049:1 21112:1 21158:2 21167:1 21202:1 21243:1 21332:1 21336:1 21352:1 21393:2 21401:1 21415:1 21444:1 21568:1 21640:1 21682:1 21706:1 21813:1 21942:1 21944:1 21961:2 21998:1 22010:1 22020:1 22057:1 22073:1 22082:1 22108:1 22165:1 22189:1 22416:1 22502:2 22608:1 22657:1 22662:1 22672:1 22678:1 22687:1 22688:3 22705:1 22744:1 22857:1 22858:1 22862:1 22863:1 22909:1 22919:1 22922:1 22932:1 22953:1 22960:1 22968:2 23039:1 23068:2 23081:1 23274:1 23282:1 23328:1 23384:3 23396:1 23407:1 23436:1 23437:1 23579:1 23596:1 23647:1 23660:2 23675:1 23854:1 23963:1 24300:1 24355:1 24365:1 24394:1 24420:1 24440:1 24444:1 24469:1 24500:1 24509:1 24571:2 24587:1 24642:1 24671:1 24743:1 24816:1 24855:1 24893:1 24909:1 25033:1 25095:1 25385:1 25440:1 25461:2 25551:1 25614:1 25631:1 25680:1 25694:1 25712:1 25723:1 25782:1 25807:1 25998:3 26065:1 26178:2 26250:2 26341:1 26372:1 26382:1 26392:4 26394:1 26430:1 26529:2 26560:2 26590:1 26632:1 26726:1 26770:1 26808:1 26810:1 26910:1 27011:1 27015:4 27219:1 27227:1 27509:1 27568:1 27578:1 27585:1 27612:1 27643:1 27653:1
20 17:1 29:1 72:1 145:1 241:1 245:1 263:1 323:1 366:1 441:1 471:1 526:1 549:1 620:1 848:1 908:1 915:2 937:1 939:1 991:1 992:1 1059:1 1079:1 1110:1 1202:1 1211:1 1271:1 1328:1 1369:1 1418:2 1430:1 1437:1 1446:1 1460:2 1486:3 1490:1 1501:1 1522:1 1550:3 1608:1 1703:3 1709:1 1843:2 1851:1 1868:1 1883:1 1954:3 1994:1 1996:2 2007:1 2055:1 2120:1 2123:2 2136:1 2139:1 2163:1 2196:3 2212:1 2214:1 2218:2 2225:1 2228:1 2232:1 2278:1 2304:1 2324:1 2387:1 2458:1 2528:1 2562:1 2592:1 2618:1 2655:1 2686:1 2742:1 2765:1 2774:1 2775:2 2791:1 2826:4 2929:2 2983:2 3108:1 3116:1 3125:1 3174:2 3389:1 3456:1 3460:1 3489:1 3537:1 3592:1 3638:1 3662:1 3664:1 3703:1 3772:1 3819:1 3820:1 4191:1 4255:1 4323:1 4418:1 4455:1 4564:1 4616:1 4619:1 4688:1 4701:4 4795:1 4817:2 4845:1 4959:1 5030:1 5040:1 5066:2 5123:2 5173:2 5261:1 5333:2 5355:1 5375:1 5385:1 5398:1 5428:1 5566:1 5664:1 5799:1 5925:2 5932:1 6010:1 6080:1 6095:1 6103:1 6108:1 6169:1 6212:1 6385:1 6408:1 6416:1 6475:1 6483:1 6504:1 6642:1 6659:1 6665:1 6669:1 6714:1 6793:2 6804:1 6817:1 6901:1 6906:1 6907:1 6970:1 6993:1 7066:2 7140:1 7268:2 7284:1 7328:10 7346:2 7347:4 7357:1 7401:1 7538:1 7572:1 7587:2 7596:1 7601:1 7704:1 7723:3 7791:4 7839:1 7842:1 7855:1 7969:2 8002:2 8130:2 8133:1 8136:1 8248:1 8299:1 8368:1 8383:1 8423:1 8433:1 8445:1 8488:1 8518:1 8560:2 8566:4 8573:1 8585:1 8598:1 8684:1 8791:1 8794:1 8813:1 8817:1 8988:1 9017:1 9110:4 9208:1 9249:1 9263:1 9288:1 9353:1 9430:1 9475:1 9487:1 9836:1 9870:1 9901:1 9945:1 9958:2 9991:1 9999:1 10010:1 10016:1 10021:1 10036:1 10099:1 10125:1 10130:2 10133:1 10202:1 10229:1 10348:2 10349:1 10462:1 10472:1 10495:1 10531:4 10566:1 10601:1 10630:1 10635:1 10651:1 10763:1 10788:4 10869:2 10944:1 11020:1 11031:1 11045:1 11051:1 11056:2 11102:1 11183:1 11185:5 11254:1 11277:1 11297:2 11335:1 11365:2 11384:1 11480:1 11484:1 11499:1 11582:1 11680:1 11742:2 11870:1 11975:2 12018:1 12057:3 12141:1 12280:1 12315:1 12378:1 12394:2 12414:3 12418:1 12439:1 12473:1 12511:2 12526:3 12597:1 12626:1 12689:1 12757:1 12759:1 12894:1 12927:1 13005:2 13012:1 13015:1 13055:1 13080:2 13095:1 13122:1 13170:1 13300:1 13301:1 13343:1 13403:1 13412:1 13422:1 13498:1 13552:1 13563:1 13586:1 13739:2 13756:1 13794:1 13810:1 13819:1 13834:1 13887:1 14042:2 14087:1 14177:1 14232:1 14240:2 14382:2 14383:1 14385:1 14432:1 14500:1 14550:5 14584:1 14589:1 14757:1 14770:1 14777:1 14799:1 14808:1 14849:1 14888:1 14911:1 15037:1 15057:1 15085:1 15094:1 15130:1 15166:1 15197:1 15210:1 15244:1 15273:1 15274:1 15282:1 15287:1 15300:1 15331:1 15495:1 15528:1 15567:1 15623:1 15653:1 15661:1 15733:1 15755:2 15758:2 15772:1 15861:1 15868:3 15941:1 15997:1 16050:1 16068:1 16100:1 16197:1 16214:1 16230:1 16412:1 16416:1 16534:1 16548:1 16556:2 16598:1 16704:4 16748:1 16786:2 16789:1 16839:1 16879:2 16888:1 16899:1 16940:2 16963:1 17005:1 17012:1 17112:1 17169:1 17184:1 17277:1 17374:2 17383:1 17448:1 17559:454 17560:1 17575:2 17690:1 17699:2 17761:1 17770:1 17773:1 17964:1 18020:1 18039:1 18071:1 18100:1 18142:1 18209:2 18223:1 18239:1 18293:1 18338:1 18351:1 18394:2 18452:1 18605:1 18613:2 18641:1 18657:2 18669:1 18694:1 18702:1 18719:1 18773:1 18782:1 18840:1 18879:1 18890:1 18946:1 18956:1 18968:1 18973:2 18991:1 18994:2 19030:1 19061:4 19207:1 19254:1 19327:1 19340:1 19378:1 19403:1 19409:1 19446:1 19538:1 19589:1 19626:2 19646:1 19658:1 19668:1 19679:1 19728:1 19781:2 19788:2 19807:1 19856:1 19864:1 19866:1 19869:1 20026:1 20070:1 20084:1 20152:1 20167:1 20168:1 20193:1 20210:1 20270:1 20285:1 20302:1 20322:1 20346:1 20361:1 20473:1 20495:1 20524:1 20589:1 20604:2 20693:1 20772:1 20787:1 20884:1 20902:1 20926:1 20968:1 20972:1 21049:1 21112:1 21158:2 21167:1 21202:1 21243:1 21332:1 21336:1 21352:1 21393:2 21401:1 21415:1 21426:1 21444:1 21487:1 21568:1 21626:1 21640:1 21682:1 21687:1 21706:1 21722:1 21813:1 21942:1 21944:1 21961:2 21998:1 22010:1 22020:1 22057:1 22073:1 22082:1 22103:1 22108:1 22165:1 22189:1 22416:1 22502:2 22608:1 22657:1 22662:1 22672:1 22678:1 22687:1 22688:3 22705:1 22744:1 22857:1 22858:1 22862:1 22863:1 22909:1 22919:1 22922:1 22932:1 22953:1 22960:1 22968:2 23007:1 23039:1 23068:2 23081:1 23274:1 23282:1 23328:1 23384:4 23396:1 23407:1 23436:1 23437:1 23579:1 23596:1 23647:1 23660:2 23675:1 23854:1 23946:1 23948:1 23963:1 24300:1 24355:1 24365:1 24382:1 24394:1 24420:1 24440:1 24444:1 24469:1 24500:1 24509:1 24571:2 24587:1 24642:1 24671:1 24743:1 24816:1 24855:1 24893:1 24909:1 25033:1 25095:1 25385:1 25440:1 25461:2 25527:1 25551:1 25614:1 25631:1 25680:1 25694:1 25712:1 25723:1 25782:1 25807:1 25946:1 25996:1 25998:4 26065:1 26178:2 26250:2 26341:1 26372:1 26382:1 26392:4 26394:1 26430:1 26529:2 26560:2 26590:1 26632:1 26667:1 26705:1 26726:1 26770:1 26808:1 26810:1 26910:1 27011:1 27015:4 27048:1 27219:1 27227:1 27509:1 27568:1 27578:1 27585:1 27612:1 27643:1 27653:1
20 17:1 29:1 72:1 109:1 145:1 241:1 245:1 263:1 323:1 366:1 441:1 471:1 526:1 549:1 620:1 848:1 908:1 915:2 933:1 937:1 939:1 956:1 991:1 992:1 1059:1 1079:1 1110:1 1139:1 1202:1 1211:1 1271:1 1328:1 1369:1 1418:2 1430:1 1437:1 1446:1 1460:2 1486:3 1490:1 1501:1 1522:1 1550:4 1608:1 1703:3 1709:1 1843:2 1851:1 1868:1 1883:1 1954:3 1994:1 1996:2 2007:1 2055:1 2099:1 2120:1 2123:3 2136:1 2139:1 2163:1 2196:3 2212:1 2214:1 2218:2 2225:1 2228:1 2232:1 2278:1 2298:1 2304:1 2324:1 2387:1 2458:1 2497:1 2528:1 2562:1 2592:1 2618:1 2655:1 2686:1 2742:1 2765:1 2774:1 2775:3 2778:1 2791:1 2826:4 2929:2 2983:2 3108:1 3116:1 3125:1 3174:2 3389:1 3456:1 3460:1 3489:1 3537:1 3592:1 3638:1 3662:1 3664:1 3703:1 3772:1 3819:1 3820:1 3897:1 4191:1 4228:1 4255:1 4289:1 4323:1 4418:1 4455:1 4503:1 4553:1 4564:1 4616:1 4619:1 4688:1 4701:4 4795:1 4799:1 4817:2 4845:1 4950:1 4959:1 5030:1 5040:1 5066:2 5123:2 5173:2 5231:1 5261:1 5333:2 5355:1 5375:1 5385:1 5398:1 5407:1 5428:1 5486:1 5537:1 5566:1 5664:1 5665:1 5799:1 5829:1 5859:1 5925:2 5932:1 6010:1 6080:2 6095:1 6103:1 6108:1 6169:1 6212:1 6385:1 6408:1 6416:1 6475:1 6483:1 6504:1 6642:1 6659:1 6665:1 6669:1 6714:1 6793:2 6804:1 6817:1 6901:1 6906:1 6907:1 6970:1 6993:1 7025:1 7066:2 7091:1 7140:1 7227:1 7268:3 7284:1 7328:10 7346:2 7347:4 7357:1 7401:1 7538:1 7572:1 7587:2 7596:1 7601:1 7615:1 7693:1 7704:1 7723:4 7791:5 7839:1 7842:1 7855:1 7969:2 8002:2 8024:1 8130:2 8133:1 8136:1 8248:1 8277:1 8299:1 8368:1 8383:1 8391:1 8423:1 8433:1 8445:1 8488:1 8518:1 8560:2 8566:4 8573:1 8585:1 8598:1 8684:1 8791:1 8794:1 8813:1 8817:1 8988:1 9017:1 9110:4 9123:1 9163:1 9208:1 9249:1 9263:1 9272:1 9288:1 9293:1 9353:1 9376:1 9430:1 9475:1 9487:1 9836:1 9870:1 9901:1 9945:1 9958:2 9991:1 9999:1 10010:1 10016:1 10021:1 10036:1 10099:1 10125:1 10130:2 10133:1 10202:1 10229:1 10316:1 10348:2 10349:1 10462:1 10472:1 10495:1 10531:4 10566:1 10601:1 10630:1 10635:1 10651:1 10763:1 10788:4 10869:2 10944:1 11020:1 11031:1 11045:1 11051:1 11056:2 11102:1 11183:1 11185:6 11254:1 11277:1 11297:2 11335:1 11365:2 11384:1 11480:1 11484:1 11499:1 11520:1 11582:1 11680:1 11742:2 11868:1 11870:1 11975:3 12018:1 12057:4 12115:1 12141:1 12280:1 12315:1 12378:1 12394:2 12414:4 12418:1 12439:1 12473:1 12511:3 12526:5 12597:1 12626:1 12689:1 12757:1 12759:1 12894:1 12927:1 12978:1 13005:4 13012:1 13015:1 13055:1 13080:2 13095:1 13122:1 13138:1 13170:1 13199:1 13300:1 13301:1 13343:1 13403:1 13412:1 13422:1 13498:1 13552:1 13563:1 13586:1 13593:2 13739:2 13756:1 13794:1 13810:1 13819:1 13834:1 13867:1 13879:1 13887:1 14042:2 14087:1 14177:1 14232:1 14240:2 14352:2 14382:2 14383:1 14385:1 14432:1 14500:1 14549:1 14550:6 14584:1 14589:1 14628:1 14757:1 14770:1 14777:1 14799:1 14808:1 14849:1 14888:1 14911:1 15037:1 15057:1 15085:1 15094:1 15130:1 15166:1 15197:1 15210:1 15244:1 15273:1 15274:2 15282:1 15287:1 15300:1 15331:1 15495:1 15528:1 15567:1 15623:1 15653:1 15661:1 15664:1 15671:1 15733:1 15755:2 15758:2 15772:1 15814:1 15861:1 15868:4 15892:1 15941:1 15997:1 16015:1 16050:1 16068:1 16090:1 16100:1 16161:1 16197:1 16214:1 16230:1 16412:1 16416:1 16534:1 16548:1 16556:2 16598:1 16704:4 16748:1 16769:1 16786:2 16789:1 16839:1 16879:2 16888:1 16899:1 16918:1 16940:3 16963:1 17005:1 17012:1 17112:1 17169:1 17184:1 17277:1 17348:1 17374:2 17383:2 17448:1 17559:517 17560:1 17575:2 17670:1 17690:1 17699:2 17761:1 17770:1 17773:1 17776:1 17964:1 18020:1 18039:1 18071:1 18079:1 18100:1 18142:1 18169:1 18209:2 18223:1 18239:1 18293:1 18338:1 18351:1 18383:1 18394:3 18452:1 18579:1 18605:1 18613:2 18641:1 18657:2 18669:1 18694:1 18702:1 18719:1 18773:1 18782:1 18840:1 18879:1 18890:1 18898:1 18946:1 18956:1 18968:1 18973:2 18991:1 18994:2 19030:1 19061:4 19207:1 19254:1 19327:1 19340:1 19378:1 19403:1 19409:1 19446:1 19538:1 19589:1 19620:1 19626:2 19646:1 19658:1 19668:1 19679:1 19728:1 19781:4 19788:2 19807:1 19856:1 19864:1 19866:1 19869:1 19922:1 20026:1 20070:1 20084:1 20152:1 20167:1 20168:1 20193:1 20210:1 20270:1 20285:1 20302:1 20322:1 20346:1 20361:1 20366:1 20473:1 20495:1 20524:1 20589:1 20604:2 20693:1 20772:1 20775:1 20787:1 20884:1 20902:1 20913:1 20926:1 20946:1 20968:1 20972:1 21049:1 21112:1 21158:2 21167:1 21202:1 21243:1 21332:1 21336:1 21352:1 21393:2 21401:1 21415:1 21426:2 21444:1 21487:1 21568:1 21626:1 21640:1 21682:1 21687:1 21706:1 21722:1 21813:1 21914:1 21942:1 21944:1 21961:2 21998:1 22010:1 22020:1 22057:1 22073:1 22082:1 22103:1 22108:1 22165:1 22189:1 22305:2 22416:1 22502:3 22608:1 22657:1 22662:1 22672:1 22678:1 22687:1 22688:3 22705:1 22744:1 22857:1 22858:1 22862:1 22863:1 22909:1 22919:1 22922:1 22932:1 22953:1 22960:1 22968:2 23007:1 23039:1 23068:2 23081:1 23090:1 23176:1 23274:1 23282:1 23328:1 23384:4 23396:1 23407:1 23436:1 23437:1 23579:1 23596:1 23647:1 23651:1 23660:2 23675:1 23729:1 23854:1 23861:1 23946:1 23948:1 23963:1 24300:1 24355:1 24365:1 24382:1 24394:1 24420:1 24440:1 24444:1 24469:1 24477:1 24500:1 24509:1 24571:2 24587:1 24642:1 24671:1 24743:1 24816:1 24855:1 24888:1 24893:1 24909:1 25033:1 25084:1 25095:1 25385:1 25440:1 25461:2 25527:1 25551:1 25614:2 25631:1 25680:1 25694:2 25712:1 25723:1 25782:1 25807:1 25946:1 25996:1 25998:4 26045:1 26065:1 26178:2 26250:2 26341:1 26372:1 26382:1 26392:4 26394:1 26430:1 26529:2 26560:3 26590:1 26632:1 26667:1 26688:1 26705:1 26726:1 26770:1 26808:1 26810:1 26875:1 26910:1 26997:1 27011:1 27015:5 27048:1 27219:1 27227:1 27475:2 27479:1 27509:1 27568:1 27578:1 27585:1 27587:1 27612:1 27643:1 27653:1
20 17:1 29:1 72:1 109:1 114:1 145:1 241:1 245:1 263:1 323:1 366:1 441:1 471:1 526:1 549:1 620:1 848:1 908:1 915:2 933:1 937:1 939:1 956:1 991:1 992:1 1045:1 1059:1 1079:1 1102:1 1110:1 1139:1 1202:1 1211:1 1271:1 1328:1 1369:1 1395:1 1418:3 1430:1 1437:1 1446:1 1460:2 1486:3 1490:1 1501:1 1522:1 1550:5 1608:1 1703:4 1709:1 1791:1 1843:2 1851:1 1868:1 1883:1 1924:1 1954:3 1994:1 1996:2 2007:1 2055:1 2088:1 2099:1 2120:1 2123:4 2126:1 2136:1 2139:1 2163:1 2195:1 2196:3 2212:1 2214:1 2218:2 2225:1 2228:1 2232:1 2278:1 2298:1 2304:1 2324:1 2387:1 2458:1 2497:1 2528:1 2562:1 2592:1 2610:1 2618:1 2655:1 2686:1 2691:1 2742:1 2765:1 2774:1 2775:3 2778:1 2791:1 2826:4 2909:1 2929:2 2983:2 3108:1 3116:1 3125:1 3174:2 3337:1 3389:1 3456:1 3460:1 3489:1 3537:1 3592:1 3638:1 3662:1 3664:1 3703:1 3769:1 3772:1 3819:1 3820:1 3897:1 4191:1 4228:1 4255:1 4289:1 4323:1 4418:1 4455:1 4503:1 4553:1 4564:1 4592:1 4616:1 4619:1 4679:1 4688:1 4693:1 4701:4 4795:1 4799:1 4817:2 4818:1 4845:1 4862:1 4950:1 4959:1 4995:1 5030:1 5040:1 5066:2 5071:1 5123:2 5149:1 5173:2 5231:1 5261:1 5333:2 5355:1 5375:1 5385:1 5398:1 5407:1 5428:1 5486:1 5537:1 5566:1 5664:1 5665:1 5781:1 5799:1 5829:1 5859:1 5925:2 5932:1 6010:1 6041:1 6063:1 6080:2 6095:1 6103:1 6105:1 6106:2 6108:1 6169:1 6212:1 6230:1 6385:1 6408:1 6415:1 6416:1 6475:1 6483:1 6504:1 6642:1 6659:1 6665:1 6669:1 6714:1 6793:2 6794:1 6804:1 6817:1 6887:1 6901:1 6906:1 6907:1 6970:1 6993:1 7025:1 7066:2 7091:1 7140:1 7195:1 7227:1 7261:1 7268:3 7284:1 7328:11 7346:2 7347:4 7357:1 7401:1 7538:1 7572:1 7587:2 7596:1 7601:1 7615:1 7693:1 7704:1 7723:5 7791:6 7839:1 7842:1 7855:1 7950:1 7969:2 8002:2 8024:1 8130:2 8133:1 8136:1 8248:1 8277:1 8299:1 8368:1 8383:1 8391:1 8423:1 8433:1 8445:1 8488:1 8518:1 8560:2 8566:5 8573:1 8585:1 8598:1 8684:1 8713:1 8735:1 8791:1 8794:1 8811:1 8813:1 8817:1 8925:1 8988:1 9017:1 9110:5 9123:2 9163:1 9208:1 9224:1 9249:1 9263:1 9272:1 9288:1 9293:1 9353:1 9376:1 9430:1 9433:1 9475:1 9487:1 9551:1 9719:1 9836:1 9870:1 9901:1 9945:1 9958:2 9991:1 9999:1 10010:1 10016:1 10021:1 10026:1 10036:1 10099:1 10125:1 10130:2 10133:1 10202:1 10229:1 10316:1 10348:2 10349:1 10462:1 10472:1 10495:1 10531:5 10566:1 10601:1 10630:1 10635:1 10651:1 10741:1 10763:1 10788:5 10869:2 10944:1 11020:1 11031:1 11045:1 11051:1 11056:2 11102:1 11118:1 11167:1 11183:1 11185:7 11254:1 11277:1 11297:2 11335:1 11365:2 11384:1 11436:1 11480:1 11484:1 11499:1 11520:1 11582:1 11680:1 11742:2 11868:1 11870:1 11885:1 11975:3 12018:1 12035:1 12057:5 12114:1 12115:1 12141:1 12253:1 12280:1 12315:1 12378:1 12394:2 12414:5 12418:1 12439:1 12473:1 12511:4 12526:6 12597:1 12626:1 12689:1 12757:1 12759:1 12764:1 12894:1 12903:1 12927:1 12978:1 13005:5 13012:1 13015:1 13055:1 13080:2 13095:1 13107:1 13122:1 13138:1 13170:1 13199:1 13300:1 13301:1 13343:1 13403:1 13412:1 13422:1 13498:1 13552:1 13563:1 13586:1 13593:2 13671:1 13739:2 13756:1 13794:1 13810:1 13819:1 13834:1 13867:1 13879:1 13887:1 14015:1 14042:2 14087:1 14177:1 14184:1 14232:1 14240:2 14352:2 14382:2 14383:1 14385:1 14432:1 14500:1 14549:1 14550:8 14584:1 14589:1 14628:1 14757:2 14770:1 14777:1 14799:2 14808:1 14849:1 14888:1 14911:1 15037:1 15057:1 15085:1 15094:1 15130:1 15166:1 15197:1 15210:1 15244:1 15273:1 15274:2 15282:1 15287:1 15295:1 15300:1 15331:1 15495:1 15528:1 15567:1 15623:1 15653:1 15661:1 15664:1 15667:1 15671:1 15733:1 15755:2 15758:2 15772:1 15814:1 15861:2 15868:5 15892:1 15941:1 15962:1 15992:1 15997:1 16015:1 16050:1 16068:1 16081:1 16090:1 16100:1 16161:1 16197:1 16214:1 16230:2 16412:1 16416:1 16534:1 16548:1 16556:2 16598:1 16704:5 16748:1 16769:1 16786:2 16788:1 16789:1 16839:1 16871:1 16879:3 16888:1 16899:1 16912:1 16918:1 16940:4 16963:1 17005:1 17012:1 17067:1 17112:1 17154:1 17169:1 17184:1 17188:1 17277:1 17348:2 17374:2 17383:2 17448:1 17470:1 17559:600 17560:1 17575:2 17670:1 17690:1 17699:2 17761:1 17770:1 17773:1 17776:1 17964:1 18020:1 18039:1 18071:1 18079:1 18100:1 18142:1 18169:1 18209:2 18223:1 18239:1 18245:1 18293:1 18330:1 18338:1 18351:1 18383:1 18394:4 18452:1 18547:1 18579:1 18605:1 18613:2 18641:1 18657:2 18669:1 18694:1 18695:1 18702:1 18719:1 18773:1 18782:1 18840:1 18879:1 18890:1 18898:1 18946:1 18948:1 18956:1 18968:1 18973:2 18991:1 18994:2 19030:1 19061:4 19207:1 19254:1 19327:1 19333:1 19340:1 19378:1 19403:1 19409:1 19446:1 19470:1 19535:1 19538:1 19589:1 19620:1 19626:2 19646:1 19658:1 19668:1 19679:1 19728:2 19781:5 19788:2 19807:1 19856:1 19864:1 19866:1 19869:1 19922:1 20026:2 20065:1 20070:1 20084:2 20152:1 20161:1 20167:1 20168:1 20193:2 20210:1 20270:1 20285:1 20302:1 20322:1 20346:1 20361:1 20366:1 20414:1 20473:1 20495:1 20523:1 20524:1 20589:1 20604:2 20611:1 20693:1 20772:1 20775:1 20787:1 20884:1 20902:1 20913:1 20926:1 20946:1 20968:1 20972:1 20978:1 21049:1 21100:1 21112:1 21158:2 21167:1 21202:1 21211:1 21239:1 21243:1 21332:1 21336:1 21352:1 21356:1 21388:1 21393:2 21399:1 21401:1 21415:1 21426:2 21438:1 21444:1 21487:1 21568:1 21626:1 21640:1 21682:1 21687:1 21706:1 21711:1 21720:1 21722:1 21813:1 21871:1 21914:1 21942:1 21944:2 21961:2 21998:1 22010:1 22020:1 22057:1 22073:1 22082:1 22103:1 22108:1 22165:1 22189:1 22305:2 22416:1 22502:4 22608:1 22657:1 22662:1 22672:1 22678:1 22687:1 22688:3 22705:1 22711:1 22744:1 22856:1 22857:1 22858:1 22862:1 22863:1 22909:1 22919:1 22922:2 22932:1 22933:1 22953:1 22960:1 22968:3 23007:1 23039:1 23068:2 23081:1 23090:1 23176:1 23274:1 23282:1 23328:1 23384:5 23396:1 23407:1 23413:1 23436:1 23437:1 23579:1 23596:1 23647:1 23651:1 23660:2 23675:1 23708:1 23729:1 23818:1 23854:1 23861:1 23946:1 23948:1 23963:1 24092:1 24111:1 24121:1 24142:1 24300:1 24355:1 24365:1 24382:1 24394:1 24420:2 24440:1 24444:1 24469:1 24477:1 24500:2 24509:1 24571:2 24587:2 24642:1 24671:1 24743:1 24816:1 24855:1 24888:1 24893:1 24909:1 25033:1 25084:1 25095:1 25385:1 25440:1 25461:3 25527:1 25551:1 25614:2 25631:1 25664:1 25680:1 25694:2 25712:1 25723:1 25782:2 25807:1 25835:1 25915:1 25946:1 25996:1 25998:5 26045:1 26065:1 26178:2 26221:1 26250:2 26341:1 26372:1 26382:1 26392:4 26394:1 26430:1 26443:1 26512:1 26529:2 26560:3 26590:1 26605:1 26632:1 26634:1 26667:1 26688:1 26705:1 26726:1 26770:1 26808:1 26810:1 26869:1 26873:1 26875:1 26910:1 26997:1 27011:1 27015:6 27048:1 27104:1 27112:1 27167:1 27219:1 27227:1 27475:2 27479:1 27509:1 27568:1 27578:1 27585:1 27587:1 27602:1 27612:1 27643:1 27653:1
20 17:1 29:1 72:1 86:1 109:1 114:1 145:1 241:1 245:1 263:2 323:1 366:1 441:1 471:1 526:1 549:1 615:1 620:1 848:1 877:1 908:1 915:2 933:1 937:1 939:1 956:1 991:2 992:2 1041:2 1045:1 1059:1 1079:1 1102:1 1110:1 1139:1 1202:1 1211:1 1271:1 1328:1 1369:1 1395:1 1418:3 1430:1 1437:1 1441:1 1446:1 1460:2 1486:3 1490:1 1501:1 1522:1 1550:6 1608:1 1703:4 1709:1 1791:1 1843:2 1851:1 1868:1 1883:1 1924:1 1942:1 1954:3 1994:1 1996:2 2007:1 2055:2 2088:1 2099:1 2120:1 2123:4 2126:1 2136:1 2139:1 2146:1 2163:1 2195:1 2196:3 2212:1 2214:1 2218:2 2225:1 2228:1 2232:2 2278:1 2298:1 2304:1 2324:1 2387:1 2406:1 2458:1 2497:1 2528:1 2562:1 2592:1 2610:1 2618:1 2655:2 2686:1 2691:1 2742:1 2765:1 2774:1 2775:4 2778:1 2791:1 2826:4 2909:1 2929:2 2983:3 3108:1 3116:1 3125:1 3174:2 3266:1 3328:1 3337:1 3389:1 3456:1 3460:1 3489:1 3524:1 3537:1 3592:1 3638:1 3639:1 3662:1 3664:2 3703:1 3736:1 3769:1 3772:1 3819:1 3820:1 3842:1 3850:1 3897:1 4120:1 4160:1 4191:1 4228:1 4255:1 4289:1 4323:1 4418:1 4434:1 4455:1 4503:1 4553:1 4564:1 4592:1 4616:1 4619:1 4679:1 4688:1 4693:1 4701:4 4795:2 4799:1 4817:2 4818:1 4840:1 4841:2 4845:1 4862:1 4950:1 4959:1 4995:1 5030:1 5040:1 5066:2 5071:1 5123:2 5149:1 5173:2 5231:1 5261:1 5333:2 5355:1 5375:1 5385:1 5398:1 5407:1 5414:2 5428:1 5486:1 5537:1 5566:1 5664:1 5665:1 5781:1 5789:1 5799:1 5829:1 5859:1 5925:2 5932:1 6010:1 6041:1 6063:1 6080:2 6095:1 6103:1 6105:1 6106:2 6108:1 6169:1 6212:1 6230:1 6385:1 6408:1 6415:1 6416:1 6475:1 6483:2 6501:1 6504:1 6642:1 6659:1 6665:1 6669:1 6696:1 6714:1 6731:1 6793:3 6794:1 6804:1 6817:1 6887:1 6901:1 6906:1 6907:1 6970:1 6993:1 7025:1 7056:2 7066:2 7091:1 7140:1 7162:1 7195:1 7227:1 7261:1 7268:3 7284:1 7328:12 7346:2 7347:4 7357:1 7401:1 7467:1 7538:1 7572:1 7587:2 7596:1 7601:1 7615:1 7693:1 7704:1 7723:6 7791:7 7839:1 7842:1 7855:1 7950:1 7969:2 8002:2 8024:1 8112:1 8130:2 8133:1 8136:1 8248:1 8277:1 8299:1 8368:1 8383:1 8391:1 8423:1 8433:1 8445:1 8488:1 8518:1 8560:2 8566:5 8573:1 8585:2 8598:1 8684:1 8713:1 8735:1 8791:1 8794:1 8811:1 8813:1 8817:1 8925:1 8974:1 8988:2 9017:1 9105:2 9110:5 9123:3 9163:1 9208:1 9224:1 9249:1 9263:1 9272:1 9288:1 9293:1 9353:1 9376:1 9430:1 9433:1 9475:1 9487:1 9551:1 9619:1 9719:1 9836:1 9870:1 9901:1 9945:1 9958:2 9991:1 9999:1 10010:1 10013:1 10016:1 10021:1 10026:1 10035:1 10036:1 10099:2 10125:1 10130:2 10133:1 10202:1 10229:2 10316:1 10348:2 10349:1 10462:1 10470:1 10472:1 10495:1 10531:5 10566:1 10601:1 10630:1 10635:1 10651:2 10741:1 10763:1 10788:5 10867:1 10869:2 10944:1 10983:3 11020:1 11031:1 11045:1 11051:1 11056:2 11102:3 11118:2 11167:1 11183:1 11185:8 11254:1 11277:1 11297:2 11335:1 11365:2 11384:1 11436:1 11480:1 11484:1 11499:1 11520:1 11582:1 11680:1 11742:2 11868:1 11870:1 11885:1 11975:4 12018:1 12035:1 12057:7 12114:1 12115:1 12141:1 12251:1 12253:1 12280:1 12315:1 12378:3 12394:2 12413:1 12414:5 12418:1 12439:1 12473:1 12511:5 12526:9 12597:1 12626:1 12689:1 12757:1 12759:1 12764:1 12894:2 12903:1 12927:1 12978:1 13005:6 13012:1 13015:1 13055:1 13056:1 13080:2 13095:1 13107:1 13122:1 13128:1 13138:1 13170:2 13199:1 13300:1 13301:1 13343:1 13403:1 13412:1 13422:1 13498:1 13552:1 13563:1 13586:1 13593:2 13671:2 13739:3 13756:1 13771:1 13794:1 13810:1 13819:1 13834:1 13867:1 13879:1 13887:1 13930:1 14015:1 14042:2 14087:1 14177:2 14184:1 14232:1 14240:2 14352:2 14382:3 14383:1 14385:1 14432:1 14500:1 14549:1 14550:9 14574:1 14584:1 14589:1 14628:1 14757:2 14770:1 14777:1 14799:2 14808:1 14814:1 14849:1 14888:1 14911:1 15004:1 15037:1 15057:1 15085:1 15094:1 15130:1 15166:1 15197:1 15210:1 15244:1 15273:1 15274:2 15282:1 15287:1 15295:1 15300:2 15331:2 15351:1 15495:1 15528:1 15567:1 15623:1 15653:1 15661:1 15664:1 15667:1 15671:1 15733:1 15755:2 15758:2 15772:1 15814:1 15861:2 15868:6 15892:1 15921:2 15941:1 15962:1 15992:1 15997:1 15999:2 16015:1 16050:1 16068:1 16081:1 16090:1 16100:1 16129:1 16161:1 16197:1 16200:1 16214:1 16230:2 16412:1 16416:1 16534:1 16548:1 16556:2 16598:1 16695:1 16704:5 16748:1 16769:1 16786:2 16788:1 16789:2 16839:1 16871:1 16879:3 16888:1 16899:1 16912:1 16918:1 16940:4 16963:1 17005:1 17012:1 17067:1 17096:1 17112:1 17154:1 17169:1 17184:1 17188:1 17203:1 17277:1 17348:2 17374:2 17383:2 17448:1 17470:1 17559:684 17560:1 17575:3 17670:1 17690:1 17699:2 17761:2 17770:1 17773:2 17774:1 17776:1 17805:1 17964:1 18020:1 18039:1 18071:1 18079:1 18100:1 18142:1 18169:1 18209:2 18223:1 18239:1 18245:1 18293:1 18330:1 18338:1 18351:1 18383:1 18394:5 18402:1 18452:1 18547:1 18579:1 18605:1 18613:2 18641:1 18657:2 18669:1 18694:1 18695:1 18702:1 18719:1 18773:1 18782:1 18840:1 18879:1 18890:1 18898:1 18946:1 18948:1 18956:1 18968:1 18973:2 18991:1 18994:2 19030:1 19044:1 19061:4 19065:2 19207:1 19254:1 19327:1 19330:1 19333:1 19340:2 19378:1 19403:1 19409:1 19446:1 19470:1 19535:1 19538:1 19589:1 19620:1 19626:2 19646:1 19658:1 19668:1 19679:1 19728:2 19781:6 19788:2 19807:3 19856:1 19864:1 19866:1 19869:1 19893:1 19922:1 20026:2 20065:1 20070:1 20084:2 20152:1 20161:1 20167:1 20168:1 20193:2 20210:1 20270:1 20285:1 20302:1 20322:1 20346:1 20361:1 20366:1 20414:1 20473:1 20495:1 20523:1 20524:1 20589:1 20603:1 20604:2 20605:2 20611:1 20638:2 20693:1 20761:1 20772:1 20775:1 20787:1 20884:1 20902:1 20913:1 20926:1 20946:1 20968:1 20972:1 20978:1 21049:1 21100:1 21112:1 21158:2 21167:2 21169:1 21202:1 21211:1 21239:1 21243:1 21270:1 21332:2 21336:1 21352:1 21356:1 21376:1 21388:1 21393:2 21399:1 21401:1 21415:1 21426:2 21438:1 21444:2 21487:1 21568:1 21626:1 21640:1 21682:1 21687:1 21706:1 21711:1 21720:1 21722:1 21813:1 21867:1 21871:1 21875:1 21914:1 21942:1 21944:2 21961:2 21974:1 21998:1 22010:1 22020:1 22057:1 22060:1 22073:1 22082:1 22103:1 22108:1 22165:1 22189:1 22305:2 22416:2 22502:5 22608:1 22657:1 22662:1 22672:1 22678:1 22687:1 22688:3 22705:1 22710:1 22711:1 22744:1 22856:1 22857:1 22858:1 22862:1 22863:1 22909:1 22918:1 22919:1 22922:2 22932:1 22933:1 22953:1 22960:1 22968:3 23007:1 23039:1 23068:2 23081:1 23090:1 23176:1 23274:1 23282:1 23328:1 23381:1 23384:5 23396:1 23397:1 23407:1 23413:1 23436:1 23437:1 23579:1 23596:1 23598:3 23635:1 23647:1 23651:1 23660:2 23675:1 23708:1 23729:1 23818:1 23854:1 23861:1 23946:1 23948:1 23963:1 24092:1 24104:1 24111:1 24121:1 24142:1 24285:1 24300:1 24355:1 24362:1 24365:1 24382:1 24394:1 24420:2 24440:1 24444:1 24469:1 24477:1 24500:2 24509:1 24525:1 24571:2 24587:2 24642:1 24671:1 24743:1 24776:1 24816:1 24855:1 24888:1 24893:1 24909:1 24947:1 25033:1 25084:1 25095:1 25264:1 25385:1 25440:1 25461:3 25527:1 25551:1 25614:3 25631:1 25664:1 25680:1 25694:2 25696:1 25702:1 25712:1 25723:1 25782:2 25807:1 25835:1 25912:1 25915:1 25946:1 25996:1 25998:5 26023:1 26045:1 26065:1 26178:3 26221:1 26250:3 26341:1 26372:1 26378:1 26382:1 26392:5 26394:1 26430:1 26443:1 26512:1 26529:3 26560:3 26590:1 26605:1 26632:1 26634:1 26667:1 26688:1 26705:1 26726:1 26770:1 26808:1 26810:1 26869:1 26873:1 26875:1 26910:1 26997:1 27011:1 27015:7 27048:1 27104:1 27112:1 27167:1 27219:1 27227:1 27233:1 27475:2 27479:1 27509:1 27528:1 27568:1 27578:1 27585:1 27587:1 27602:1 27612:1 27640:1 27643:1 27653:1
20 17:1 29:1 72:1 86:1 109:1 114:1 145:1 241:1 245:1 263:3 298:1 323:1 366:1 441:1 471:1 526:1 549:1 615:1 620:1 848:1 877:1 908:1 915:2 933:1 937:1 939:1 956:1 991:2 992:2 1041:2 1045:1 1059:1 1079:1 1102:1 1110:1 1139:1 1202:1 1211:1 1271:1 1328:1 1369:1 1395:1 1418:3 1430:1 1437:1 1441:1 1446:1 1460:2 1486:3 1490:1 1501:1 1522:1 1550:7 1608:1 1703:4 1709:1 1791:1 1843:2 1851:1 1868:1 1883:1 1924:1 1942:1 1954:3 1994:1 1996:3 2007:1 2055:2 2088:1 2099:1 2120:1 2123:5 2126:1 2136:1 2139:1 2146:1 2163:1 2195:1 2196:3 2212:1 2214:1 2218:2 2225:1 2228:1 2232:2 2278:1 2298:1 2304:1 2324:1 2387:1 2406:1 2458:1 2497:1 2528:1 2562:1 2592:1 2610:1 2618:1 2655:2 2686:1 2691:1 2742:1 2765:1 2774:1 2775:5 2778:1 2791:2 2826:4 2909:1 2929:2 2983:3 3074:1 3108:1 3116:1 3125:1 3174:2 3266:1 3328:1 3337:1 3389:1 3440:1 3456:1 3460:1 3489:1 3524:1 3537:1 3592:1 3638:1 3639:1 3662:1 3664:3 3703:1 3736:1 3769:1 3772:1 3819:1 3820:1 3842:1 3850:1 3897:1 3949:1 4120:1 4160:1 4168:1 4170:1 4191:1 4228:1 4255:1 4289:1 4323:1 4418:1 4434:1 4455:1 4503:1 4553:1 4564:1 4592:1 4616:1 4619:1 4679:1 4688:1 4693:1 4701:4 4795:3 4799:1 4817:2 4818:1 4840:1 4841:2 4843:1 4845:1 4862:1 4950:1 4959:1 4995:1 5030:1 5040:1 5066:2 5071:1 5123:2 5149:1 5173:2 5211:1 5231:1 5261:1 5333:2 5355:2 5375:1 5385:1 5398:1 5407:1 5414:2 5428:1 5486:1 5537:1 5566:1 5664:1 5665:1 5745:1 5781:2 5789:1 5799:1 5829:1 5859:1 5925:2 5932:1 6010:1 6041:1 6063:1 6080:2 6095:1 6103:1 6105:1 6106:2 6108:1 6169:1 6212:1 6230:1 6385:1 6408:1 6415:1 6416:1 6473:1 6475:1 6483:2 6501:1 6504:1 6610:1 6642:1 6659:1 6665:1 6669:1 6696:1 6714:1 6731:1 6793:4 6794:1 6804:1 6817:1 6887:1 6901:1 6906:1 6907:1 6970:1 6993:1 7025:1 7056:2 7066:3 7091:1 7140:1 7162:1 7195:1 7227:1 7261:1 7268:3 7284:1 7328:12 7346:2 7347:4 7357:1 7401:1 7407:1 7467:1 7538:1 7572:1 7587:2 7596:1 7601:1 7615:1 7693:1 7704:1 7723:7 7791:7 7839:1 7842:1 7855:1 7950:1 7969:2 8002:3 8024:1 8112:1 8125:1 8130:2 8133:1 8136:1 8248:1 8277:1 8299:1 8368:1 8383:1 8391:1 8423:1 8433:1 8445:1 8488:1 8518:1 8560:2 8566:5 8573:1 8585:3 8598:1 8684:1 8713:1 8735:1 8791:1 8794:1 8811:1 8813:1 8817:1 8925:1 8974:1 8988:2 9017:1 9105:3 9110:5 9123:3 9163:1 9208:1 9224:1 9249:1 9263:1 9272:1 9288:1 9293:1 9353:1 9376:1 9430:1 9433:1 9475:1 9487:1 9551:1 9619:1 9719:1 9836:1 9870:1 9901:1 9945:1 9958:2 9991:2 9999:1 10010:1 10013:1 10016:1 10021:1 10026:1 10035:1 10036:1 10099:2 10125:1 10130:2 10133:1 10202:1 10229:2 10316:1 10348:2 10349:1 10462:1 10470:1 10472:1 10495:1 10531:5 10566:1 10601:1 10630:1 10632:1 10635:1 10651:2 10741:1 10763:1 10788:5 10867:1 10869:2 10926:1 10944:1 10983:3 11020:1 11031:1 11045:1 11051:1 11056:2 11102:3 11118:3 11167:1 11183:1 11185:9 11254:1 11277:1 11297:2 11335:1 11365:2 11384:1 11436:1 11480:1 11484:1 11499:1 11520:1 11582:2 11680:1 11742:2 11868:1 11870:1 11885:1 11975:5 12018:1 12035:1 12057:8 12114:1 12115:1 12141:1 12251:1 12253:1 12280:1 12315:1 12378:3 12394:2 12413:1 12414:6 12418:1 12439:1 12473:1 12511:6 12526:10 12597:1 12626:1 12689:1 12757:1 12759:1 12764:1 12894:2 12903:1 12927:1 12939:1 12978:1 13005:7 13012:1 13015:1 13055:2 13056:1 13080:2 13095:1 13107:1 13122:1 13128:1 13138:1 13170:2 13199:1 13300:1 13301:1 13343:1 13403:2 13412:1 13422:1 13430:1 13498:1 13552:1 13563:1 13586:1 13593:2 13671:3 13739:3 13756:1 13771:1 13794:1 13810:1 13819:1 13834:1 13867:1 13879:1 13887:1 13930:1 13943:1 14015:1 14042:2 14087:1 14177:2 14184:1 14232:1 14240:2 14271:1 14352:2 14382:3 14383:1 14385:1 14432:1 14500:1 14544:1 14549:1 14550:10 14574:1 14584:1 14589:1 14628:1 14757:2 14770:1 14777:1 14799:2 14808:1 14814:1 14847:1 14849:1 14888:1 14911:1 15004:1 15037:1 15057:1 15085:1 15094:1 15130:1 15152:1 15166:1 15197:1 15210:1 15244:1 15273:1 15274:2 15282:1 15287:1 15295:1 15300:2 15331:2 15351:1 15495:1 15528:1 15567:1 15623:1 15653:1 15661:1 15664:1 15667:1 15671:1 15733:1 15755:2 15758:2 15772:1 15814:1 15861:2 15868:7 15892:1 15921:2 15941:1 15962:1 15992:1 15997:1 15999:2 16015:1 16050:1 16068:1 16081:1 16090:1 16100:1 16129:1 16161:1 16197:1 16200:1 16214:1 16230:2 16412:1 16416:1 16534:1 16548:1 16556:2 16598:1 16695:1 16704:5 16748:1 16769:1 16786:2 16788:1 16789:2 16839:1 16871:1 16879:3 16888:1 16899:1 16912:1 16918:1 16940:5 16963:1 17005:1 17012:1 17067:1 17096:1 17112:1 17154:1 17169:1 17176:1 17184:1 17188:1 17203:1 17277:1 17348:2 17374:2 17383:2 17448:1 17470:1 17559:750 17560:1 17575:3 17670:1 17690:1 17699:2 17761:3 17770:1 17773:3 17774:1 17776:1 17805:1 17964:1 18020:1 18039:1 18071:1 18079:1 18100:1 18142:1 18169:1 18208:1 18209:2 18223:1 18239:1 18245:2 18293:1 18330:1 18338:1 18351:1 18383:1 18394:6 18402:1 18452:1 18547:1 18579:1 18605:1 18613:2 18641:1 18657:2 18669:1 18694:1 18695:1 18702:1 18719:1 18754:2 18773:1 18782:1 18840:1 18879:1 18890:1 18898:1 18946:1 18948:1 18956:1 18965:1 18968:1 18973:2 18991:1 18994:2 19030:1 19044:1 19061:4 19065:2 19183:1 19207:1 19254:1 19327:1 19330:1 19333:1 19340:2 19378:1 19403:1 19409:1 19446:1 19470:1 19535:1 19538:1 19589:1 19620:1 19626:2 19646:1 19658:1 19668:1 19679:1 19718:1 19728:2 19781:7 19788:2 19807:3 19856:1 19864:1 19866:1 19869:1 19893:1 19922:1 20026:2 20065:1 20070:1 20084:2 20152:1 20161:1 20167:1 20168:1 20193:2 20210:1 20270:1 20285:1 20302:1 20322:1 20346:1 20361:1 20366:1 20414:1 20473:1 20495:1 20523:1 20524:1 20589:1 20603:1 20604:2 20605:2 20611:1 20634:1 20638:2 20693:1 20761:1 20772:1 20775:1 20787:1 20884:1 20902:1 20913:1 20926:1 20946:1 20968:1 20972:1 20978:2 21049:1 21100:1 21112:2 21158:2 21167:2 21169:1 21202:1 21211:1 21239:1 21243:1 21270:1 21332:2 21336:1 21352:1 21356:1 21376:1 21388:1 21393:2 21399:1 21401:1 21415:1 21426:2 21438:1 21444:3 21487:1 21490:1 21494:1 21568:1 21626:1 21640:1 21675:1 21682:1 21687:1 21706:1 21711:1 21720:1 21722:1 21813:1 21867:1 21871:1 21875:1 21914:1 21942:1 21944:3 21961:2 21974:1 21998:1 22010:1 22020:1 22057:1 22060:1 22073:1 22082:1 22103:1 22108:1 22165:1 22189:1 22305:2 22410:1 22416:3 22502:6 22608:1 22657:1 22662:1 22672:1 22678:1 22687:1 22688:3 22705:1 22710:1 22711:1 22744:1 22856:1 22857:1 22858:1 22862:1 22863:1 22909:1 22918:1 22919:1 22922:2 22932:1 22933:1 22953:1 22960:1 22968:3 23007:1 23039:1 23068:2 23081:1 23090:1 23109:1 23173:1 23176:1 23274:1 23282:1 23328:1 23381:1 23384:5 23396:1 23397:1 23407:1 23413:1 23436:1 23437:1 23579:1 23596:1 23598:3 23635:1 23637:1 23647:1 23651:1 23660:2 23675:1 23708:1 23729:1 23818:1 23854:1 23861:1 23946:1 23948:1 23963:1 24092:1 24104:1 24111:1 24121:1 24142:1 24198:1 24285:1 24300:1 24355:1 24362:1 24364:1 24365:1 24382:1 24394:1 24420:3 24440:1 24444:1 24469:1 24477:1 24500:3 24509:1 24525:1 24571:2 24587:2 24642:1 24671:1 24743:1 24776:1 24816:1 24855:1 24888:1 24893:1 24909:1 24947:1 25033:1 25084:1 25095:1 25264:1 25385:1 25440:1 25461:3 25527:1 25551:1 25614:3 25631:1 25664:1 25680:1 25694:2 25696:1 25702:1 25712:1 25723:1 25782:2 25807:1 25835:1 25912:2 25915:1 25946:1 25996:1 25998:5 26023:1 26045:1 26065:1 26178:3 26221:1 26250:3 26341:1 26366:1 26372:1 26378:1 26382:1 26385:1 26392:6 26394:1 26430:1 26443:1 26489:1 26512:1 26529:3 26560:3 26590:1 26605:1 26632:2 26634:1 26667:1 26688:1 26705:1 26726:1 26770:1 26808:1 26810:1 26869:1 26873:1 26875:1 26910:1 26997:1 27011:1 27015:8 27048:1 27104:1 27112:1 27167:1 27219:1 27227:1 27233:1 27394:1 27475:2 27479:1 27509:1 27528:1 27568:1 27578:1 27585:1 27587:1 27602:1 27612:1 27640:1 27643:1 27653:1
20 17:1 26:1 29:1 72:1 86:1 109:1 114:1 145:1 168:1 241:1 245:1 263:3 298:1 323:1 366:1 435:1 441:1 471:1 526:1 549:1 615:1 620:1 848:1 877:1 908:1 915:2 933:1 937:1 939:1 941:2 956:1 991:2 992:2 1041:2 1045:1 1059:1 1079:1 1102:1 1110:1 1139:1 1202:1 1211:1 1271:1 1328:1 1369:1 1395:1 1418:3 1430:1 1437:1 1440:1 1441:1 1446:1 1460:2 1486:4 1490:1 1501:1 1522:1 1527:1 1550:8 1608:1 1703:4 1709:1 1791:1 1843:2 1851:1 1868:1 1883:1 1924:1 1942:1 1954:3 1994:1 1996:3 2007:1 2055:3 2088:1 2099:1 2120:1 2123:6 2126:1 2136:1 2139:1 2146:1 2163:1 2195:1 2196:3 2212:1 2214:1 2218:2 2225:1 2228:1 2232:2 2278:1 2298:1 2304:1 2324:1 2387:1 2406:1 2458:1 2497:1 2522:1 2528:1 2562:1 2592:1 2610:1 2618:1 2655:2 2686:1 2691:1 2742:1 2765:3 2774:2 2775:5 2778:1 2791:2 2810:1 2826:5 2909:1 2929:2 2983:3 3074:1 3108:1 3116:1 3125:1 3174:2 3205:1 3266:1 3328:1 3337:1 3389:1 3440:1 3456:1 3460:1 3489:1 3524:1 3537:1 3592:1 3638:1 3639:1 3662:1 3664:3 3703:1 3723:1 3736:1 3769:1 3772:1 3819:1 3820:1 3842:1 3850:1 3897:1 3949:1 4120:1 4160:1 4168:1 4170:1 4191:1 4228:1 4255:1 4289:1 4323:1 4418:1 4434:1 4455:1 4503:1 4553:1 4564:1 4592:1 4616:1 4619:1 4679:1 4688:1 4693:1 4701:4 4795:3 4799:2 4817:2 4818:1 4840:1 4841:2 4843:1 4845:2 4862:1 4950:1 4959:1 4995:1 5030:1 5040:1 5066:2 5071:1 5123:2 5141:1 5149:1 5173:2 5211:1 5231:2 5261:1 5333:2 5355:2 5375:1 5385:1 5398:1 5407:1 5414:2 5428:1 5486:1 5537:1 5540:1 5566:1 5664:1 5665:1 5745:1 5781:2 5789:1 5799:1 5829:1 5859:1 5925:2 5928:1 5932:1 6010:1 6041:1 6063:1 6080:2 6095:1 6103:1 6105:1 6106:2 6108:2 6169:1 6212:1 6230:1 6277:1 6385:1 6408:1 6415:1 6416:1 6473:1 6475:1 6483:2 6501:1 6504:1 6610:1 6642:1 6653:1 6659:1 6665:1 6669:1 6696:1 6714:1 6731:1 6793:4 6794:1 6804:1 6817:1 6887:1 6901:1 6906:1 6907:1 6970:1 6993:1 7025:1 7056:2 7066:3 7091:1 7140:1 7162:1 7195:1 7227:1 7261:1 7268:3 7284:1 7287:1 7328:12 7346:4 7347:5 7357:1 7401:1 7407:1 7467:1 7538:1 7572:1 7587:2 7596:1 7601:1 7615:1 7693:1 7704:1 7723:8 7791:9 7835:1 7839:1 7842:1 7855:1 7950:1 7969:2 8002:3 8024:1 8112:1 8125:1 8130:2 8133:1 8136:1 8248:1 8277:1 8299:1 8368:1 8383:1 8391:1 8423:1 8433:1 8445:1 8488:1 8495:1 8514:1 8518:1 8524:1 8560:2 8566:5 8573:1 8585:3 8598:1 8684:1 8713:1 8735:1 8791:1 8794:1 8811:1 8813:1 8817:1 8925:1 8974:1 8988:2 9017:1 9105:3 9110:5 9123:3 9163:1 9208:1 9224:1 9249:1 9263:1 9272:1 9283:1 9288:1 9293:1 9353:1 9376:1 9430:1 9433:1 9475:1 9487:1 9551:1 9565:1 9619:1 9719:1 9727:1 9836:1 9870:1 9901:1 9945:1 9958:2 9991:2 9999:1 10010:1 10013:1 10016:1 10021:1 10026:1 10028:1 10035:1 10036:1 10099:2 10125:1 10130:2 10133:1 10202:1 10229:2 10316:1 10348:2 10349:1 10462:1 10470:1 10472:1 10495:1 10531:5 10566:1 10601:1 10630:1 10632:1 10635:1 10651:2 10741:1 10763:1 10771:1 10788:5 10839:1 10867:1 10869:2 10926:1 10944:1 10983:4 11020:1 11031:1 11045:1 11051:1 11056:2 11102:3 11118:3 11167:1 11183:1 11185:10 11254:1 11277:1 11297:2 11335:1 11365:2 11384:1 11436:1 11480:1 11484:1 11499:1 11520:1 11582:2 11680:1 11742:2 11849:1 11868:1 11870:1 11885:1 11975:6 12018:1 12035:1 12057:10 12114:1 12115:1 12141:2 12251:1 12253:1 12280:1 12315:1 12378:4 12394:2 12413:1 12414:7 12418:1 12439:1 12473:1 12510:1 12511:7 12523:1 12526:12 12597:1 12626:1 12689:1 12757:1 12759:1 12764:1 12894:2 12903:1 12927:1 12939:1 12978:1 13005:8 13012:1 13015:1 13055:2 13056:1 13080:2 13095:1 13107:1 13122:1 13128:1 13138:1 13170:2 13199:2 13245:1 13300:1 13301:1 13336:1 13343:1 13403:2 13412:1 13422:1 13430:1 13463:1 13498:1 13552:1 13563:1 13586:1 13593:2 13671:3 13739:3 13756:1 13771:1 13794:1 13810:1 13819:1 13834:1 13867:1 13879:1 13887:1 13930:1 13943:1 14015:1 14042:2 14087:1 14177:2 14184:1 14232:1 14240:2 14271:1 14352:2 14382:3 14383:1 14385:1 14387:1 14432:1 14433:1 14500:1 14544:1 14549:1 14550:11 14574:1 14584:1 14589:1 14628:1 14757:2 14770:1 14777:1 14799:2 14808:1 14814:1 14847:1 14849:1 14888:1 14911:1 15004:1 15037:1 15057:1 15085:1 15094:1 15130:1 15152:1 15166:1 15197:1 15206:1 15210:1 15244:1 15273:1 15274:2 15282:1 15284:1 15287:1 15290:1 15295:1 15300:2 15331:2 15351:1 15495:1 15528:1 15567:1 15623:1 15653:1 15661:1 15664:1 15667:1 15671:1 15725:1 15733:1 15755:2 15758:3 15772:1 15804:1 15814:1 15844:1 15861:2 15868:8 15892:1 15921:2 15941:1 15962:1 15992:1 15997:1 15999:2 16015:1 16050:1 16068:1 16081:1 16090:1 16100:1 16118:1 16129:1 16161:1 16197:1 16200:1 16214:1 16230:2 16412:1 16416:1 16534:1 16548:1 16556:2 16578:1 16598:1 16695:1 16704:5 16748:2 16769:1 16786:2 16788:1 16789:2 16839:1 16871:1 16879:3 16888:1 16899:1 16912:1 16918:1 16940:6 16963:1 17005:1 17012:1 17067:1 17096:1 17112:1 17154:1 17169:1 17176:1 17184:1 17188:1 17203:1 17277:1 17348:2 17374:3 17383:2 17448:1 17470:1 17559:832 17560:2 17575:3 17601:1 17642:1 17670:1 17690:1 17699:2 17704:1 17750:1 17761:3 17770:1 17773:3 17774:1 17775:1 17776:1 17805:1 17964:2 18020:1 18039:1 18071:1 18079:1 18100:1 18142:1 18169:1 18208:1 18209:2 18223:2 18239:1 18245:2 18265:1 18293:1 18330:1 18338:1 18351:1 18383:1 18394:7 18402:1 18452:1 18547:1 18579:1 18605:1 18613:2 18635:1 18641:1 18657:2 18658:1 18669:1 18694:1 18695:1 18702:1 18719:1 18754:2 18773:1 18782:1 18840:1 18879:1 18890:1 18898:1 18946:1 18948:1 18956:1 18959:1 18965:1 18968:1 18973:2 18977:1 18991:2 18994:2 19030:1 19044:1 19061:5 19065:3 19183:1 19207:1 19254:1 19285:1 19327:1 19330:1 19333:1 19340:2 19378:1 19403:1 19409:1 19440:1 19446:1 19470:1 19535:1 19538:1 19555:1 19589:1 19620:1 19626:2 19646:1 19658:1 19668:1 19679:1 19718:1 19728:2 19736:1 19781:8 19788:2 19807:4 19844:1 19856:1 19864:1 19866:1 19869:1 19875:1 19893:1 19922:1 20026:2 20065:1 20070:2 20084:2 20152:1 20161:1 20167:1 20168:1 20193:2 20210:1 20270:1 20285:1 20302:1 20322:1 20346:1 20361:1 20363:1 20366:2 20414:1 20473:1 20495:1 20523:1 20524:1 20589:1 20603:2 20604:2 20605:3 20611:1 20615:1 20634:1 20638:2 20676:1 20693:1 20761:1 20772:1 20775:1 20787:1 20884:1 20902:1 20913:1 20926:1 20946:1 20968:1 20972:1 20978:2 21049:1 21100:1 21112:2 21158:2 21167:2 21169:1 21202:1 21211:1 21239:1 21243:1 21270:1 21332:2 21336:1 21352:1 21356:1 21376:1 21388:1 21393:2 21399:1 21401:1 21415:1 21426:2 21438:1 21444:3 21487:1 21490:1 21494:1 21500:1 21568:1 21626:1 21640:1 21675:1 21682:1 21687:1 21706:1 21711:1 21720:1 21722:1 21813:1 21867:1 21871:1 21875:1 21883:1 21914:1 21942:1 21944:3 21951:1 21961:2 21974:1 21998:1 22010:1 22020:1 22057:1 22060:1 22073:1 22082:1 22103:1 22108:1 22127:1 22136:1 22165:2 22189:1 22305:2 22410:1 22416:3 22502:7 22608:1 22634:1 22657:1 22662:1 22672:1 22678:1 22687:1 22688:4 22705:1 22710:1 22711:1 22744:1 22856:1 22857:1 22858:1 22862:1 22863:1 22909:1 22918:1 22919:1 22922:2 22932:1 22933:1 22953:1 22960:1 22968:3 23007:1 23039:1 23068:2 23081:1 23090:1 23109:1 23173:1 23176:1 23274:1 23282:1 23328:1 23381:1 23384:5 23396:1 23397:1 23407:1 23413:1 23436:1 23437:1 23579:1 23596:1 23598:4 23635:1 23637:1 23647:1 23651:1 23660:2 23675:1 23708:1 23729:1 23818:1 23854:1 23861:1 23891:1 23946:1 23948:1 23963:1 24092:1 24104:1 24111:1 24121:1 24142:1 24143:1 24198:1 24285:1 24300:1 24355:1 24362:1 24364:1 24365:1 24382:1 24394:1 24420:3 24440:1 24444:2 24469:1 24477:1 24498:1 24500:3 24509:1 24525:1 24571:3 24587:2 24642:1 24654:1 24671:1 24721:1 24743:1 24776:1 24816:1 24855:1 24888:1 24893:1 24897:1 24909:1 24947:1 25033:1 25082:1 25084:1 25095:1 25264:1 25308:1 25368:1 25385:1 25440:1 25461:3 25527:1 25551:1 25614:3 25631:1 25664:1 25680:1 25694:2 25696:1 25702:1 25712:1 25723:1 25782:2 25807:1 25835:1 25912:2 25915:1 25946:1 25996:1 25998:5 26023:1 26045:1 26065:1 26178:3 26221:1 26250:3 26258:1 26341:1 26366:1 26372:1 26378:1 26382:1 26385:1 26392:6 26394:1 26396:1 26430:1 26443:1 26465:1 26489:1 26512:1 26529:3 26560:3 26590:1 26605:1 26632:2 26634:1 26667:1 26688:2 26705:1 26726:1 26770:1 26808:2 26810:1 26869:1 26873:1 26875:1 26910:1 26997:2 27011:1 27015:9 27048:1 27104:1 27112:1 27167:1 27219:1 27227:1 27233:1 27394:1 27442:1 27475:2 27479:1 27509:1 27512:1 27528:1 27568:1 27578:1 27585:1 27587:1 27602:1 27612:1 27640:1 27643:1 27653:1
20 17:1 26:1 29:1 72:1 86:1 109:1 114:1 145:1 168:1 241:1 245:1 263:3 298:1 323:1 366:1 435:1 441:1 471:1 526:1 549:1 615:1 620:1 848:1 877:1 908:1 915:2 933:1 937:1 939:1 941:2 956:1 991:3 992:3 1040:1 1041:2 1045:1 1059:1 1079:1 1102:1 1110:1 1139:1 1202:1 1211:1 1271:1 1328:1 1369:1 1395:1 1418:3 1430:1 1437:1 1440:1 1441:1 1446:1 1460:2 1486:5 1490:1 1501:1 1522:1 1527:1 1550:9 1608:1 1703:4 1709:1 1754:1 1760:2 1791:1 1843:2 1851:1 1868:1 1883:1 1924:1 1942:1 1954:3 1994:1 1996:3 2007:1 2055:3 2088:1 2099:1 2120:1 2123:7 2126:1 2136:1 2139:1 2146:1 2163:1 2195:1 2196:3 2210:1 2212:1 2214:1 2218:2 2225:1 2228:1 2232:2 2278:1 2298:1 2304:1 2324:1 2387:1 2406:1 2458:1 2497:1 2509:1 2522:1 2528:1 2562:1 2592:1 2610:1 2618:1 2655:2 2686:1 2691:1 2742:1 2765:3 2774:2 2775:5 2778:1 2791:2 2810:1 2826:5 2909:1 2929:2 2983:3 3074:1 3108:1 3116:1 3125:1 3174:2 3205:1 3266:1 3328:1 3337:1 3389:1 3440:1 3456:1 3460:1 3489:1 3524:1 3537:1 3592:1 3638:1 3639:1 3662:1 3664:3 3703:1 3723:1 3736:1 3744:1 3769:1 3772:1 3819:1 3820:1 3842:1 3850:1 3897:1 3949:1 3991:1 4097:1 4120:1 4160:1 4168:1 4170:1 4191:1 4225:1 4228:1 4255:1 4289:1 4323:1 4418:1 4434:1 4455:1 4503:1 4553:1 4564:1 4592:1 4616:1 4619:1 4679:1 4688:1 4693:1 4701:4 4795:3 4799:3 4817:2 4818:1 4840:1 4841:2 4843:1 4845:2 4862:1 4950:1 4959:1 4995:1 5030:1 5040:1 5066:2 5071:1 5123:2 5141:1 5149:1 5173:2 5186:1 5211:1 5231:2 5261:1 5333:2 5355:2 5375:1 5385:1 5398:1 5407:1 5414:2 5428:1 5486:1 5537:1 5540:1 5566:1 5664:1 5665:1 5745:1 5781:2 5789:1 5799:1 5815:2 5829:2 5859:1 5925:2 5928:1 5932:1 6010:1 6041:1 6063:1 6080:3 6095:1 6103:1 6105:1 6106:2 6108:3 6169:1 6212:1 6230:1 6277:1 6385:1 6408:1 6415:1 6416:1 6473:1 6475:1 6483:2 6501:1 6504:1 6610:1 6642:1 6653:1 6659:1 6665:1 6669:1 6696:1 6714:1 6731:1 6793:4 6794:1 6804:1 6817:1 6887:1 6901:1 6906:1 6907:1 6970:1 6993:1 7025:1 7056:2 7066:3 7091:1 7140:1 7142:1 7162:1 7193:1 7195:1 7227:1 7261:1 7268:4 7284:1 7287:1 7328:13 7346:4 7347:5 7357:1 7401:1 7407:1 7467:1 7538:1 7572:1 7587:2 7596:1 7601:1 7615:1 7677:1 7693:1 7704:1 7723:9 7791:9 7835:1 7839:1 7842:1 7855:1 7950:1 7969:2 8002:3 8024:1 8112:1 8125:1 8130:2 8133:1 8136:1 8248:1 8277:1 8299:1 8368:1 8383:1 8391:2 8423:1 8433:1 8445:2 8488:1 8495:1 8514:1 8518:1 8524:1 8560:2 8566:5 8573:1 8585:3 8598:1 8684:1 8713:1 8735:1 8791:1 8794:1 8811:1 8813:1 8817:1 8925:1 8974:1 8988:2 9017:1 9105:3 9110:5 9123:3 9163:1 9180:1 9208:1 9224:1 9249:1 9263:1 9272:1 9283:1 9288:1 9293:1 9353:1 9367:2 9376:2 9430:1 9433:1 9475:1 9487:1 9551:1 9565:1 9619:1 9719:1 9727:1 9729:1 9836:1 9870:1 9901:1 9945:1 9958:2 9991:2 9999:1 10010:1 10011:1 10013:1 10016:1 10021:1 10026:1 10028:1 10035:1 10036:1 10099:2 10125:1 10130:2 10133:2 10202:1 10229:2 10316:1 10348:2 10349:1 10462:1 10470:1 10472:1 10495:1 10531:5 10566:1 10601:1 10630:1 10632:1 10635:1 10651:2 10688:1 10741:1 10763:1 10771:1 10788:5 10839:1 10867:1 10869:2 10926:1 10944:1 10983:4 11020:1 11031:1 11045:1 11051:1 11056:2 11101:1 11102:3 11118:3 11167:1 11183:1 11185:11 11254:1 11277:1 11297:2 11335:1 11365:2 11384:1 11436:1 11443:1 11480:1 11484:1 11499:1 11520:1 11582:2 11680:1 11742:2 11849:1 11868:1 11870:1 11885:1 11975:6 12018:1 12035:1 12057:11 12114:1 12115:1 12141:2 12251:1 12253:1 12280:1 12315:1 12378:4 12394:2 12413:1 12414:8 12418:1 12439:1 12473:1 12510:1 12511:8 12523:1 12526:13 12597:1 12626:1 12689:1 12757:1 12759:1 12764:1 12894:2 12903:1 12927:1 12939:1 12978:1 13005:9 13012:1 13015:1 13055:2 13056:1 13080:2 13095:1 13096:1 13107:1 13122:1 13128:1 13138:1 13170:2 13199:2 13245:1 13300:1 13301:1 13336:1 13343:1 13403:2 13412:1 13422:1 13430:1 13463:1 13498:1 13535:1 13552:1 13563:1 13586:1 13593:2 13671:3 13739:3 13756:1 13771:1 13794:1 13810:1 13819:1 13834:1 13867:1 13879:1 13887:1 13895:1 13930:1 13943:1 14001:1 14015:1 14042:2 14087:1 14177:3 14184:1 14232:1 14240:2 14271:1 14352:2 14382:3 14383:1 14385:1 14387:1 14432:1 14433:1 14500:1 14544:1 14549:1 14550:12 14574:1 14584:1 14589:1 14628:1 14757:2 14765:1 14770:1 14777:1 14789:1 14794:1 14799:2 14808:1 14814:1 14847:1 14849:1 14888:1 14911:1 15004:1 15037:1 15057:1 15085:1 15094:1 15128:1 15130:2 15152:1 15166:1 15197:1 15206:1 15210:1 15244:1 15273:1 15274:2 15282:1 15284:1 15287:1 15290:1 15295:1 15300:2 15314:1 15331:3 15351:1 15495:1 15528:1 15567:1 15623:1 15653:1 15661:1 15664:1 15667:1 15671:1 15725:1 15733:1 15755:2 15758:3 15772:1 15804:1 15814:1 15844:1 15861:2 15868:9 15870:1 15892:1 15921:2 15924:1 15930:2 15941:1 15962:1 15992:1 15997:1 15999:2 16015:1 16050:1 16068:1 16081:1 16090:1 16100:1 16118:1 16129:1 16161:1 16197:1 16200:1 16214:1 16230:2 16374:1 16412:1 16416:1 16534:1 16548:1 16556:2 16578:1 16598:1 16607:1 16695:1 16704:5 16748:2 16769:1 16786:2 16788:1 16789:2 16828:1 16839:1 16871:1 16879:3 16888:1 16899:1 16912:1 16918:1 16940:7 16963:1 17005:1 17012:1 17067:1 17096:1 17112:1 17154:1 17169:1 17176:1 17184:1 17188:1 17203:1 17277:1 17348:2 17374:3 17383:2 17448:1 17470:1 17559:881 17560:2 17575:3 17601:1 17642:1 17670:1 17690:1 17699:2 17704:1 17750:1 17761:3 17770:1 17773:3 17774:1 17775:1 17776:1 17805:1 17964:2 18020:1 18039:1 18071:2 18079:1 18100:1 18142:1 18169:1 18208:1 18209:2 18223:2 18239:1 18245:2 18265:1 18293:1 18330:1 18338:1 18351:1 18383:1 18394:8 18402:1 18452:1 18547:1 18579:1 18605:1 18613:2 18635:1 18641:1 18657:2 18658:1 18669:1 18694:1 18695:1 18702:1 18719:1 18754:2 18773:1 18782:1 18840:1 18879:1 18890:1 18898:1 18946:1 18948:1 18956:1 18959:1 18965:1 18968:1 18973:2 18977:1 18991:2 18994:3 19005:2 19030:1 19044:1 19061:5 19065:3 19183:1 19207:1 19254:1 19285:1 19327:1 19330:1 19333:1 19340:2 19378:1 19403:1 19409:1 19440:1 19446:1 19470:1 19535:1 19538:1 19555:1 19589:1 19620:1 19626:2 19646:1 19658:1 19668:1 19679:1 19718:1 19728:2 19736:1 19781:9 19788:2 19807:4 19844:1 19856:1 19864:1 19866:1 19869:1 19875:1 19893:1 19922:1 19970:1 20026:2 20065:1 20070:3 20084:2 20152:1 20161:1 20167:1 20168:1 20193:2 20210:1 20270:1 20285:1 20302:1 20322:1 20346:1 20361:2 20363:1 20366:2 20414:1 20472:1 20473:1 20495:1 20523:1 20524:1 20589:1 20603:2 20604:2 20605:3 20611:1 20615:1 20634:1 20638:2 20676:1 20693:1 20761:1 20772:1 20775:2 20787:1 20884:1 20902:1 20913:2 20926:1 20946:1 20968:1 20972:2 20978:2 21049:1 21100:1 21112:2 21158:2 21167:2 21169:1 21202:1 21211:1 21239:1 21243:1 21270:1 21332:3 21336:1 21352:1 21356:1 21376:1 21388:1 21393:2 21399:1 21401:1 21415:1 21426:2 21438:1 21444:3 21487:1 21490:2 21494:1 21500:1 21568:1 21626:1 21640:2 21675:2 21682:1 21687:1 21696:1 21706:1 21711:1 21720:1 21722:1 21813:1 21867:1 21871:1 21875:1 21883:1 21914:1 21942:1 21944:3 21951:1 21961:2 21974:1 21998:1 22010:1 22020:1 22057:1 22060:1 22073:1 22082:1 22103:1 22108:1 22127:1 22136:1 22165:3 22189:1 22305:2 22410:1 22416:3 22502:8 22608:1 22634:1 22657:1 22662:1 22672:1 22678:1 22687:1 22688:5 22705:1 22710:1 22711:1 22744:1 22811:1 22856:1 22857:1 22858:1 22862:1 22863:1 22864:1 22909:1 22918:1 22919:1 22922:2 22932:1 22933:1 22953:1 22960:1 22968:3 23007:1 23039:1 23068:2 23081:1 23090:1 23109:1 23173:1 23176:1 23211:2 23274:1 23282:1 23328:1 23381:1 23384:5 23396:1 23397:1 23407:1 23413:1 23436:1 23437:1 23579:1 23596:1 23598:4 23635:1 23637:1 23647:1 23651:1 23660:2 23675:1 23708:1 23729:1 23734:1 23818:1 23854:1 23861:1 23878:1 23891:1 23946:1 23948:1 23963:1 24092:1 24104:1 24111:1 24121:1 24142:1 24143:1 24148:1 24198:1 24233:1 24285:1 24300:1 24355:1 24362:1 24364:1 24365:1 24382:1 24394:1 24420:3 24436:1 24437:1 24440:1 24444:3 24469:1 24477:1 24498:1 24500:3 24509:1 24525:1 24571:3 24587:2 24642:2 24654:1 24671:1 24721:1 24743:1 24757:1 24776:1 24816:1 24855:2 24888:1 24893:1 24897:1 24909:1 24947:1 25033:1 25082:1 25084:1 25095:1 25264:1 25308:1 25368:1 25385:1 25430:2 25440:1 25461:3 25527:1 25551:1 25614:3 25631:1 25664:1 25680:1 25694:2 25696:1 25702:1 25712:1 25723:1 25782:2 25807:1 25835:1 25912:2 25915:1 25946:1 25980:2 25996:1 25998:5 26023:1 26045:1 26065:1 26178:3 26221:1 26250:3 26258:1 26341:1 26366:1 26372:1 26378:1 26382:1 26385:1 26392:6 26394:1 26396:1 26430:1 26443:1 26465:1 26489:2 26512:1 26529:3 26560:3 26561:1 26590:1 26605:1 26632:2 26634:1 26667:1 26688:2 26705:1 26726:1 26770:1 26808:2 26810:2 26838:1 26864:1 26869:1 26873:1 26875:1 26910:1 26997:2 27011:1 27015:10 27048:1 27104:1 27112:1 27167:1 27219:1 27227:1 27233:1 27394:1 27403:1 27442:1 27475:2 27479:1 27509:1 27512:1 27528:1 27549:1 27568:1 27578:1 27585:1 27587:1 27602:1 27612:1 27640:1 27643:1 27653:1
20 17:1 26:1 29:1 72:1 86:1 109:1 114:1 145:1 168:1 241:1 245:1 263:3 298:1 323:1 366:1 435:1 441:1 471:1 526:1 549:1 556:1 615:1 620:1 848:1 877:1 908:1 915:2 933:1 937:1 939:1 941:2 956:1 991:3 992:3 1040:1 1041:2 1045:1 1059:1 1079:1 1102:1 1110:1 1139:1 1202:1 1211:1 1271:1 1328:1 1369:1 1383:1 1395:1 1418:3 1430:1 1437:1 1440:1 1441:1 1446:1 1460:2 1486:6 1490:1 1501:1 1522:1 1527:1 1550:9 1608:1 1655:1 1703:4 1709:1 1754:1 1760:2 1791:1 1830:1 1843:2 1851:1 1868:1 1883:1 1924:1 1942:1 1954:4 1994:1 1996:3 2007:1 2055:3 2088:1 2099:1 2120:1 2123:8 2126:1 2136:1 2139:1 2141:1 2146:1 2163:1 2195:1 2196:4 2210:1 2212:1 2214:1 2215:1 2218:2 2225:1 2228:1 2232:2 2278:1 2298:1 2304:1 2324:1 2387:1 2406:1 2458:1 2497:1 2509:1 2522:1 2528:1 2562:1 2592:1 2610:1 2618:1 2655:2 2686:1 2691:1 2742:1 2765:3 2774:2 2775:5 2778:1 2791:2 2810:1 2826:6 2909:1 2929:2 2983:3 3074:1 3108:1 3116:1 3125:1 3174:2 3205:2 3266:1 3328:1 3337:1 3389:1 3440:1 3456:1 3460:1 3489:1 3524:1 3537:1 3592:1 3593:1 3638:2 3639:1 3662:1 3664:3 3703:1 3723:1 3736:1 3744:1 3769:1 3772:1 3819:1 3820:1 3842:1 3850:1 3897:1 3949:1 3991:1 4097:1 4120:1 4160:1 4168:1 4170:1 4191:1 4225:1 4228:1 4255:1 4289:1 4323:1 4372:1 4418:1 4434:1 4455:1 4463:1 4503:1 4553:1 4564:1 4592:1 4616:1 4619:1 4679:1 4688:1 4693:1 4701:5 4756:1 4795:3 4799:3 4817:2 4818:1 4840:1 4841:2 4843:1 4845:2 4862:1 4950:1 4959:1 4995:1 5030:1 5040:1 5066:2 5071:1 5123:2 5141:1 5144:1 5149:1 5173:2 5186:1 5211:1 5217:1 5231:2 5261:1 5333:2 5355:2 5375:1 5385:1 5398:1 5407:1 5414:2 5428:1 5486:1 5537:1 5540:1 5566:1 5664:1 5665:1 5745:1 5781:2 5789:1 5799:1 5815:2 5829:2 5859:1 5925:2 5928:1 5932:1 6010:1 6041:1 6063:1 6080:3 6095:1 6103:1 6105:1 6106:2 6108:3 6169:1 6212:1 6230:1 6277:1 6385:1 6408:1 6415:1 6416:2 6465:1 6473:1 6475:1 6483:2 6501:1 6504:1 6610:1 6642:1 6652:1 6653:1 6659:1 6665:1 6669:1 6696:1 6714:1 6731:1 6793:4 6794:1 6804:1 6817:1 6887:1 6901:1 6906:1 6907:1 6970:1 6976:1 6993:1 7025:1 7056:3 7066:3 7091:1 7140:1 7142:1 7162:1 7193:1 7195:1 7227:1 7261:1 7268:4 7284:1 7287:1 7328:14 7346:4 7347:6 7357:1 7401:1 7407:1 7467:1 7538:1 7572:1 7587:2 7596:1 7601:1 7615:1 7677:1 7693:1 7704:1 7723:9 7791:10 7835:1 7839:1 7842:1 7855:1 7950:1 7969:2 8002:3 8024:1 8112:1 8125:1 8130:2 8133:1 8136:1 8248:1 8277:1 8299:1 8368:1 8383:1 8391:2 8423:1 8433:1 8445:2 8457:1 8488:1 8495:1 8514:1 8518:1 8524:1 8560:2 8566:5 8573:1 8585:3 8598:1 8684:1 8713:1 8735:1 8791:1 8794:1 8811:1 8813:1 8817:1 8893:1 8925:1 8974:1 8988:2 9017:1 9102:1 9105:3 9110:5 9123:3 9163:1 9180:1 9208:1 9224:1 9249:1 9263:1 9272:1 9283:1 9288:1 9293:1 9353:1 9367:2 9376:2 9430:1 9433:1 9446:1 9475:1 9487:1 9551:1 9565:1 9619:1 9719:1 9727:1 9729:1 9836:1 9870:1 9901:1 9945:1 9958:2 9991:2 9999:1 10010:1 10011:1 10013:1 10016:1 10021:1 10026:1 10028:1 10035:1 10036:1 10099:2 10125:1 10130:3 10133:2 10202:1 10229:3 10316:1 10348:2 10349:1 10462:1 10470:1 10472:1 10495:1 10531:5 10566:1 10601:1 10630:1 10632:1 10635:1 10651:3 10688:1 10732:1 10741:1 10763:1 10771:1 10788:5 10839:1 10867:1 10869:2 10926:1 10944:1 10983:4 11020:1 11031:1 11045:1 11051:1 11056:2 11101:1 11102:3 11118:3 11167:1 11183:1 11185:11 11254:1 11277:1 11297:2 11335:1 11365:2 11384:1 11395:1 11436:1 11443:1 11480:1 11484:1 11499:1 11506:1 11520:1 11582:2 11608:1 11680:1 11742:2 11849:2 11868:1 11870:1 11885:1 11975:6 12005:1 12018:1 12035:1 12057:11 12063:1 12085:1 12114:1 12115:1 12141:2 12251:1 12253:1 12280:1 12315:1 12378:4 12391:1 12394:2 12413:1 12414:8 12418:1 12439:1 12473:1 12510:1 12511:8 12523:1 12526:14 12597:1 12626:1 12689:1 12728:1 12757:1 12759:1 12764:1 12894:2 12903:1 12927:1 12939:1 12978:1 13005:10 13012:1 13015:1 13051:1 13055:2 13056:1 13080:2 13095:1 13096:1 13107:1 13122:1 13128:1 13138:1 13170:2 13199:2 13245:1 13297:1 13300:1 13301:1 13336:1 13343:1 13403:2 13412:1 13422:1 13430:1 13463:1 13498:1 13535:1 13541:1 13552:1 13563:1 13586:1 13593:2 13671:3 13687:1 13739:3 13756:1 13771:1 13794:1 13810:1 13819:1 13834:1 13867:1 13879:1 13887:1 13895:1 13930:1 13943:1 14001:1 14015:1 14042:2 14087:1 14177:3 14184:1 14232:1 14240:2 14271:1 14330:1 14352:2 14382:3 14383:1 14385:1 14387:1 14432:1 14433:1 14500:1 14544:1 14549:1 14550:14 14574:1 14580:1 14584:1 14589:1 14628:1 14757:2 14765:1 14770:1 14777:1 14789:1 14794:1 14799:2 14808:1 14814:1 14847:2 14849:1 14888:1 14911:1 15004:1 15037:1 15057:1 15085:1 15094:1 15128:1 15130:2 15152:1 15166:2 15197:1 15204:1 15206:1 15210:1 15244:1 15273:1 15274:2 15282:2 15284:1 15287:1 15290:1 15295:1 15300:2 15314:1 15331:3 15351:1 15495:1 15528:1 15567:1 15623:1 15653:1 15661:1 15664:1 15667:1 15671:1 15725:1 15733:1 15755:2 15758:3 15772:1 15804:1 15814:2 15844:1 15861:2 15868:9 15870:1 15892:1 15921:2 15924:1 15930:2 15941:1 15962:1 15992:1 15997:1 15999:2 16015:1 16050:1 16068:1 16080:1 16081:1 16090:1 16100:1 16118:1 16129:1 16131:1 16161:1 16197:1 16200:1 16214:1 16230:2 16374:1 16412:1 16416:1 16534:1 16548:1 16556:2 16578:1 16598:1 16607:1 16695:1 16704:5 16748:2 16769:1 16786:3 16788:1 16789:2 16828:1 16839:1 16871:1 16879:3 16888:1 16899:1 16912:1 16918:1 16940:8 16963:1 17005:1 17012:1 17056:1 17067:1 17096:1 17112:1 17154:1 17169:1 17176:1 17184:1 17188:1 17203:1 17237:1 17277:1 17348:2 17374:3 17383:2 17448:1 17470:1 17559:1017 17560:2 17575:3 17601:1 17642:1 17670:1 17690:1 17699:2 17704:1 17750:1 17761:3 17770:1 17773:3 17774:1 17775:1 17776:1 17805:1 17842:1 17964:2 18020:1 18039:1 18071:2 18079:1 18100:1 18142:1 18169:1 18208:1 18209:2 18223:2 18239:1 18245:2 18265:1 18293:1 18330:1 18338:1 18351:1 18383:1 18394:8 18402:1 18452:1 18547:1 18579:1 18605:1 18613:2 18635:1 18641:1 18657:2 18658:1 18669:1 18694:1 18695:1 18702:1 18719:1 18754:2 18773:1 18782:1 18840:1 18879:1 18890:1 18898:2 18946:1 18948:1 18956:1 18959:1 18965:1 18968:1 18973:2 18977:1 18991:2 18994:3 19005:2 19030:1 19044:1 19061:5 19065:3 19107:1 19183:1 19207:1 19254:1 19285:1 19327:1 19330:1 19333:1 19340:2 19378:1 19403:1 19409:1 19440:1 19446:1 19470:1 19535:1 19538:1 19555:1 19589:1 19620:1 19626:2 19646:1 19658:1 19668:1 19679:1 19718:1 19728:3 19736:1 19781:10 19788:2 19807:4 19844:1 19856:1 19859:1 19864:1 19866:1 19869:1 19875:1 19893:1 19922:2 19970:1 20026:3 20065:1 20070:3 20084:2 20152:1 20161:1 20167:1 20168:1 20193:2 20210:1 20270:1 20285:1 20302:1 20322:2 20346:1 20361:2 20363:1 20366:2 20414:1 20472:1 20473:1 20495:1 20523:1 20524:1 20589:1 20603:2 20604:2 20605:3 20611:1 20615:1 20634:1 20638:2 20676:1 20693:1 20761:1 20772:1 20775:2 20787:1 20884:1 20902:1 20913:2 20926:1 20946:1 20968:1 20972:2 20978:2 21021:1 21049:1 21050:1 21100:1 21112:2 21158:2 21160:1 21167:2 21169:1 21202:1 21211:1 21239:1 21243:1 21270:1 21332:3 21336:1 21352:1 21356:1 21376:1 21388:1 21393:2 21399:1 21401:1 21415:1 21426:3 21438:1 21444:3 21487:1 21490:2 21494:1 21500:1 21568:1 21626:1 21640:2 21675:2 21682:1 21687:1 21696:1 21706:1 21711:1 21720:1 21722:1 21743:1 21813:1 21867:1 21871:1 21875:1 21883:1 21914:1 21942:1 21944:3 21951:1 21961:2 21974:1 21998:1 22010:1 22020:1 22057:1 22060:1 22073:1 22082:1 22103:2 22108:1 22127:1 22136:1 22165:3 22189:1 22305:2 22387:1 22410:1 22416:3 22500:1 22502:8 22608:1 22634:1 22657:1 22662:1 22672:1 22678:1 22687:1 22688:6 22705:1 22710:1 22711:1 22744:1 22811:1 22856:1 22857:1 22858:1 22862:1 22863:1 22864:1 22909:1 22918:1 22919:1 22922:2 22932:1 22933:1 22953:1 22960:1 22968:3 23007:1 23039:1 23068:2 23081:1 23090:1 23109:1 23173:1 23176:1 23211:2 23274:1 23282:1 23328:1 23381:1 23384:5 23396:1 23397:1 23407:1 23413:1 23436:1 23437:1 23579:1 23596:1 23598:4 23635:1 23637:1 23647:2 23651:1 23660:2 23675:1 23708:1 23729:1 23734:1 23818:1 23827:1 23854:1 23861:1 23878:1 23891:1 23946:1 23948:1 23963:1 24092:1 24104:1 24111:1 24121:1 24142:1 24143:1 24148:1 24198:1 24233:1 24285:1 24300:1 24355:1 24362:1 24364:1 24365:1 24382:1 24394:1 24420:3 24436:1 24437:1 24440:1 24444:3 24469:1 24477:1 24498:1 24500:3 24509:1 24525:1 24571:3 24587:2 24642:2 24654:1 24671:1 24721:1 24738:1 24743:1 24750:1 24757:1 24776:1 24816:1 24855:2 24888:1 24893:1 24897:1 24909:1 24947:1 25010:1 25033:1 25082:1 25084:1 25095:1 25264:1 25308:1 25353:1 25368:1 25385:1 25430:2 25440:1 25461:4 25527:2 25531:1 25551:1 25614:4 25631:1 25664:1 25680:1 25694:2 25696:1 25702:1 25712:1 25723:1 25782:2 25807:1 25835:1 25912:2 25915:1 25946:1 25980:2 25996:1 25998:5 26023:1 26045:1 26065:1 26178:3 26221:1 26250:3 26258:1 26341:1 26366:1 26372:1 26378:1 26382:1 26385:1 26392:6 26394:1 26396:1 26430:1 26443:1 26465:1 26489:2 26512:1 26529:3 26560:3 26561:1 26568:1 26590:1 26605:1 26632:2 26634:1 26667:1 26688:2 26705:1 26726:1 26770:1 26808:2 26810:2 26838:1 26864:1 26869:1 26873:1 26875:1 26910:1 26997:2 27010:1 27011:1 27015:10 27048:1 27104:1 27112:1 27121:1 27167:1 27219:1 27227:1 27233:1 27394:1 27403:1 27442:1 27475:2 27479:1 27509:1 27512:1 27528:1 27549:1 27568:1 27578:1 27585:1 27587:1 27600:1 27602:1 27612:1 27640:1 27643:1 27653:1
20 17:1 26:1 29:1 72:1 86:1 109:1 114:1 145:1 168:1 241:1 245:1 263:3 298:1 323:1 366:1 435:1 441:2 471:1 526:1 549:1 556:1 615:1 620:1 848:1 877:1 894:1 908:1 915:2 933:1 937:1 939:1 941:2 956:1 991:3 992:3 1040:1 1041:2 1045:1 1059:1 1079:1 1102:1 1110:1 1139:1 1202:1 1211:1 1271:1 1328:1 1369:1 1383:1 1395:1 1418:3 1430:1 1437:1 1440:1 1441:1 1446:1 1460:2 1486:6 1490:1 1501:1 1522:1 1527:1 1550:9 1608:1 1635:1 1655:1 1703:4 1709:1 1754:1 1760:2 1791:1 1830:1 1843:2 1851:1 1868:1 1883:1 1924:1 1942:1 1954:4 1994:1 1996:3 2007:1 2055:3 2088:1 2099:1 2120:1 2123:8 2126:1 2136:1 2139:1 2141:1 2146:1 2163:1 2195:1 2196:4 2202:1 2210:1 2212:1 2214:2 2215:2 2218:2 2225:1 2228:1 2232:2 2278:1 2298:1 2304:1 2324:1 2387:1 2406:1 2458:1 2497:1 2509:1 2520:1 2522:1 2528:1 2562:1 2592:1 2610:1 2618:2 2655:2 2686:1 2691:1 2742:1 2765:3 2774:2 2775:5 2778:1 2791:2 2810:1 2826:7 2909:1 2929:2 2983:3 3074:1 3108:1 3116:1 3125:1 3174:2 3205:2 3266:1 3286:1 3328:1 3337:1 3389:1 3440:1 3456:1 3460:1 3489:1 3524:1 3537:1 3543:1 3553:1 3592:1 3593:2 3638:3 3639:1 3662:1 3664:3 3703:1 3723:1 3736:1 3744:1 3769:1 3772:1 3819:1 3820:1 3842:1 3850:1 3897:1 3949:1 3991:1 4097:1 4120:1 4160:1 4168:1 4170:1 4191:1 4225:1 4228:1 4255:1 4289:1 4323:1 4372:1 4418:1 4434:1 4455:1 4456:1 4463:1 4503:1 4553:1 4564:1 4592:1 4616:1 4619:1 4659:1 4679:1 4688:1 4693:1 4701:5 4756:1 4795:3 4799:4 4817:2 4818:1 4840:1 4841:2 4843:1 4845:2 4862:1 4950:1 4959:1 4995:1 5030:1 5040:1 5066:2 5071:1 5123:2 5141:1 5144:1 5149:1 5173:2 5186:1 5211:1 5217:1 5231:2 5261:1 5333:2 5355:2 5375:1 5385:1 5391:1 5398:1 5407:1 5414:3 5428:1 5473:1 5486:1 5537:1 5540:1 5566:1 5664:1 5665:1 5708:1 5745:1 5781:2 5789:1 5799:1 5815:2 5829:2 5859:1 5925:2 5928:1 5932:1 6010:1 6041:1 6063:1 6080:3 6095:1 6099:1 6103:1 6105:1 6106:2 6108:3 6169:1 6212:1 6230:1 6277:1 6385:1 6403:1 6408:1 6415:1 6416:2 6465:1 6473:1 6475:1 6477:1 6483:2 6501:1 6504:1 6557:1 6610:1 6642:1 6652:1 6653:1 6659:1 6665:1 6669:1 6696:1 6714:1 6731:1 6793:4 6794:1 6804:1 6817:1 6887:1 6901:1 6906:1 6907:1 6970:1 6976:1 6993:1 7008:1 7025:1 7056:3 7065:1 7066:3 7091:1 7140:1 7142:1 7162:1 7193:1 7195:1 7227:1 7261:1 7268:4 7284:1 7287:1 7292:1 7328:15 7346:4 7347:6 7357:1 7401:1 7407:1 7467:1 7538:1 7572:1 7587:2 7596:1 7601:1 7615:1 7677:1 7693:1 7704:1 7717:1 7723:9 7762:1 7791:11 7835:1 7839:1 7842:1 7855:1 7950:1 7969:2 8002:3 8024:1 8112:1 8125:1 8130:2 8133:1 8136:1 8219:1 8248:1 8277:1 8299:1 8368:1 8383:1 8391:2 8423:1 8433:1 8445:2 8457:1 8488:1 8495:1 8514:1 8518:1 8524:1 8560:2 8566:5 8573:1 8585:3 8598:1 8684:1 8713:1 8735:1 8791:1 8794:1 8811:1 8813:1 8817:1 8893:1 8925:1 8974:1 8988:2 9017:1 9102:1 9105:3 9110:5 9123:3 9163:1 9180:1 9182:1 9208:1 9224:1 9249:1 9263:1 9272:1 9283:1 9288:1 9293:1 9353:1 9367:2 9376:2 9430:1 9433:1 9446:2 9475:1 9487:1 9551:1 9565:1 9619:1 9719:1 9727:1 9729:1 9836:1 9870:1 9901:1 9945:1 9958:2 9991:2 9999:1 10010:1 10011:1 10013:1 10016:1 10021:1 10026:1 10028:1 10035:1 10036:1 10099:2 10106:1 10125:1 10130:3 10133:3 10202:1 10229:3 10299:1 10316:1 10348:2 10349:1 10462:1 10470:1 10472:1 10495:1 10497:1 10531:5 10540:1 10566:1 10598:1 10601:1 10630:1 10632:1 10635:1 10651:3 10688:1 10732:1 10741:1 10763:1 10771:1 10788:5 10839:1 10867:1 10869:2 10926:1 10944:1 10983:4 11020:1 11031:1 11045:1 11051:1 11056:2 11061:1 11101:1 11102:3 11118:3 11167:1 11183:1 11185:11 11254:1 11277:1 11297:2 11335:1 11365:2 11384:1 11395:1 11408:1 11436:1 11443:1 11456:1 11457:1 11480:1 11484:1 11499:1 11506:1 11520:1 11538:1 11552:1 11582:2 11608:1 11680:1 11742:2 11849:2 11868:1 11870:1 11885:1 11932:1 11975:6 12005:1 12018:1 12035:1 12057:11 12063:1 12085:1 12114:1 12115:1 12141:2 12180:1 12251:1 12253:1 12280:1 12315:1 12378:4 12391:1 12394:2 12413:1 12414:8 12418:1 12439:1 12473:1 12510:1 12511:8 12523:1 12526:14 12597:1 12626:1 12689:1 12728:1 12757:1 12759:1 12764:1 12891:1 12894:2 12903:1 12927:1 12939:1 12978:1 13005:10 13012:1 13015:1 13051:1 13055:2 13056:1 13080:2 13095:1 13096:1 13107:1 13122:1 13128:1 13138:1 13170:2 13199:2 13245:1 13290:1 13297:1 13300:1 13301:1 13336:1 13343:1 13403:2 13412:1 13422:1 13430:1 13463:1 13498:1 13535:1 13541:1 13552:1 13563:1 13586:1 13593:2 13671:3 13687:1 13739:3 13756:1 13771:1 13793:1 13794:1 13810:1 13819:1 13834:1 13867:1 13879:1 13887:1 13895:1 13930:1 13943:1 14001:1 14015:1 14042:2 14053:1 14087:1 14177:3 14184:1 14232:1 14240:2 14271:1 14330:1 14352:2 14382:3 14383:1 14385:1 14387:1 14432:1 14433:1 14500:1 14544:1 14549:1 14550:14 14574:1 14580:1 14584:1 14589:1 14628:1 14674:1 14757:2 14765:1 14770:1 14777:1 14789:1 14794:1 14799:2 14808:1 14814:1 14847:2 14849:1 14888:1 14911:1 14912:1 15004:1 15037:1 15057:1 15085:1 15094:1 15128:1 15130:2 15152:1 15166:3 15184:1 15197:1 15204:1 15206:1 15210:1 15244:1 15273:1 15274:2 15282:2 15284:1 15287:1 15290:1 15295:1 15300:2 15314:1 15331:3 15351:1 15495:1 15528:1 15567:1 15604:1 15623:1 15649:1 15653:1 15661:1 15664:1 15667:1 15671:1 15725:1 15733:1 15755:2 15758:3 15772:1 15804:1 15814:2 15836:1 15844:1 15861:2 15868:9 15870:1 15892:1 15921:2 15924:1 15930:2 15941:1 15962:1 15992:1 15997:1 15999:2 16015:1 16050:1 16068:1 16080:1 16081:1 16090:1 16100:1 16118:1 16129:1 16131:1 16161:1 16197:1 16200:1 16214:1 16230:2 16374:1 16412:1 16416:1 16534:1 16548:1 16556:2 16578:1 16598:1 16607:1 16666:1 16695:1 16704:5 16748:2 16769:1 16786:3 16788:1 16789:2 16828:1 16839:1 16871:1 16879:3 16888:1 16899:1 16912:1 16918:1 16940:8 16963:1 17005:1 17012:1 17056:1 17067:1 17096:1 17112:1 17154:1 17169:1 17176:1 17184:1 17188:1 17203:1 17237:1 17277:1 17284:1 17348:2 17374:3 17383:2 17448:1 17470:1 17559:1059 17560:2 17575:3 17601:1 17642:1 17670:1 17690:1 17693:1 17699:2 17704:1 17750:1 17761:3 17770:1 17773:3 17774:1 17775:1 17776:1 17805:1 17842:2 17964:2 18020:1 18039:1 18071:2 18079:1 18092:1 18100:1 18142:1 18169:1 18208:1 18209:2 18223:2 18239:1 18245:2 18265:1 18274:1 18293:1 18330:1 18338:1 18351:1 18383:1 18394:8 18402:1 18452:1 18547:1 18579:1 18605:1 18613:2 18635:1 18641:1 18657:2 18658:1 18669:1 18673:1 18694:1 18695:1 18702:1 18719:1 18754:2 18773:1 18782:1 18840:1 18879:1 18890:1 18898:2 18946:1 18948:1 18956:1 18959:1 18965:1 18968:1 18973:2 18977:1 18991:2 18994:3 19005:2 19030:1 19044:1 19061:5 19065:3 19099:1 19107:1 19183:1 19207:1 19254:1 19285:1 19327:1 19330:1 19333:1 19339:1 19340:2 19378:1 19403:1 19409:1 19440:1 19446:1 19470:1 19535:1 19538:1 19555:1 19589:1 19620:1 19626:2 19646:1 19658:1 19668:1 19679:1 19718:1 19728:3 19736:1 19781:10 19788:2 19807:4 19844:1 19856:1 19859:1 19864:1 19866:1 19869:1 19875:1 19893:1 19922:2 19970:1 20026:3 20065:1 20070:3 20084:2 20152:1 20161:1 20167:1 20168:1 20193:2 20199:1 20210:1 20211:1 20270:1 20285:1 20302:1 20322:2 20346:1 20361:2 20363:1 20366:2 20414:1 20472:1 20473:1 20495:1 20520:1 20523:1 20524:1 20589:1 20603:2 20604:2 20605:3 20611:1 20615:1 20634:1 20638:2 20676:1 20693:1 20761:1 20772:1 20775:2 20787:1 20846:1 20884:1 20902:1 20913:2 20926:1 20946:1 20968:1 20972:2 20978:2 21021:1 21049:1 21050:1 21100:1 21112:2 21158:2 21160:1 21167:2 21169:1 21202:1 21211:1 21239:1 21243:1 21270:1 21284:1 21332:3 21336:1 21352:1 21356:1 21376:1 21388:1 21393:2 21399:1 21401:1 21415:1 21426:3 21438:1 21444:3 21487:1 21490:2 21494:1 21500:1 21568:1 21626:1 21640:2 21675:2 21682:1 21687:1 21696:1 21706:1 21711:1 21720:1 21722:1 21743:1 21813:1 21867:1 21871:1 21875:1 21883:1 21914:1 21942:1 21944:3 21951:1 21961:2 21974:1 21998:1 22010:1 22013:1 22020:1 22057:1 22060:1 22073:1 22082:1 22103:3 22108:1 22127:1 22136:1 22165:3 22189:1 22191:1 22305:2 22387:1 22410:1 22416:3 22500:1 22502:8 22608:1 22634:1 22657:1 22662:1 22672:1 22678:1 22687:1 22688:6 22705:1 22710:1 22711:1 22744:1 22811:1 22856:1 22857:1 22858:1 22862:1 22863:1 22864:1 22874:1 22909:1 22918:1 22919:1 22922:2 22932:1 22933:1 22953:1 22960:1 22968:3 23006:1 23007:1 23039:1 23068:2 23081:1 23090:1 23109:1 23173:1 23176:1 23211:2 23274:1 23282:1 23328:1 23381:1 23384:5 23396:1 23397:1 23407:1 23413:1 23436:1 23437:1 23579:1 23596:1 23598:4 23635:1 23637:1 23647:2 23651:1 23660:2 23675:1 23708:1 23729:1 23734:1 23818:1 23827:1 23854:1 23861:1 23878:1 23891:1 23946:1 23948:1 23963:1 24092:1 24104:1 24111:1 24121:1 24142:1 24143:1 24148:1 24198:1 24233:1 24262:1 24285:1 24300:1 24355:1 24362:1 24364:1 24365:1 24382:1 24394:1 24420:3 24436:1 24437:1 24440:1 24444:3 24469:1 24477:1 24494:1 24498:1 24500:3 24509:1 24525:1 24571:3 24587:2 24642:3 24654:1 24671:1 24721:1 24738:1 24743:1 24750:1 24757:1 24776:1 24795:1 24816:1 24855:2 24888:1 24893:1 24897:1 24909:1 24941:1 24947:1 25010:1 25033:1 25082:1 25084:1 25095:1 25264:1 25308:1 25353:1 25368:1 25385:1 25430:2 25440:1 25448:1 25461:4 25527:3 25531:1 25551:1 25614:4 25631:1 25635:1 25664:1 25680:1 25694:2 25696:1 25702:1 25712:1 25723:1 25782:2 25807:1 25835:1 25912:2 25915:1 25946:1 25980:2 25996:1 25998:5 26023:1 26045:1 26065:1 26178:3 26221:1 26250:3 26258:1 26293:1 26341:1 26366:1 26372:1 26378:1 26382:1 26385:1 26392:6 26394:1 26396:1 26430:1 26443:1 26465:1 26489:2 26512:1 26518:1 26529:3 26560:3 26561:1 26568:1 26590:1 26605:1 26632:2 26634:1 26667:1 26688:2 26705:1 26726:1 26770:1 26785:1 26808:2 26810:3 26838:1 26864:1 26869:1 26873:1 26875:1 26910:1 26997:2 27010:1 27011:1 27015:10 27048:1 27104:1 27112:1 27121:1 27167:1 27188:1 27219:1 27227:1 27233:1 27394:1 27403:1 27433:1 27442:1 27475:2 27479:1 27509:1 27512:1 27528:1 27549:1 27568:1 27578:1 27585:1 27587:1 27600:1 27602:1 27612:1 27640:1 27643:1 27653:1
20 17:1 22:1 26:1 29:1 72:1 86:1 109:1 114:1 145:1 168:1 241:1 245:1 263:3 298:1 323:1 366:1 435:1 441:2 471:1 526:1 549:1 556:1 615:1 620:1 848:1 853:1 865:1 877:1 894:1 908:1 915:2 933:1 937:1 939:2 941:2 956:1 991:3 992:3 1040:1 1041:2 1045:1 1059:1 1079:1 1102:1 1110:1 1139:1 1202:1 1211:1 1271:1 1328:1 1356:1 1369:1 1383:1 1395:1 1418:3 1430:1 1437:1 1440:1 1441:1 1446:1 1460:2 1486:6 1490:1 1496:1 1501:1 1505:1 1517:1 1522:1 1527:1 1550:9 1593:1 1608:1 1635:1 1655:1 1703:4 1709:1 1754:1 1760:2 1791:1 1830:1 1843:2 1851:1 1868:1 1883:1 1924:1 1942:1 1954:4 1994:1 1996:3 2007:1 2014:1 2055:3 2088:1 2093:1 2099:1 2120:1 2123:8 2126:1 2136:1 2139:1 2141:1 2146:1 2161:1 2163:2 2195:1 2196:4 2198:1 2202:1 2210:2 2212:1 2214:2 2215:2 2218:2 2225:1 2228:1 2232:2 2278:1 2298:1 2304:1 2324:1 2387:1 2406:1 2458:1 2497:1 2509:1 2520:1 2522:1 2528:1 2562:1 2592:1 2610:1 2618:2 2655:2 2686:1 2691:1 2713:1 2742:1 2765:3 2774:2 2775:6 2778:1 2791:2 2810:1 2826:7 2909:1 2929:2 2983:3 3074:1 3108:1 3116:1 3125:1 3174:2 3205:2 3238:1 3266:1 3286:1 3328:1 3337:1 3389:1 3440:1 3456:1 3460:1 3489:1 3524:1 3537:1 3543:1 3553:1 3584:1 3592:1 3593:2 3638:3 3639:1 3662:1 3664:4 3703:1 3723:1 3736:1 3744:1 3751:1 3769:1 3772:1 3819:1 3820:1 3842:1 3849:1 3850:1 3897:1 3949:1 3991:1 4097:1 4120:1 4160:1 4168:1 4170:1 4191:1 4225:1 4228:1 4255:1 4289:1 4323:1 4372:1 4411:1 4418:1 4434:1 4455:1 4456:1 4463:1 4503:1 4553:1 4564:1 4592:1 4616:1 4619:1 4659:1 4679:1 4688:1 4693:1 4701:5 4756:1 4795:3 4799:4 4817:2 4818:1 4840:1 4841:2 4843:1 4845:2 4862:1 4950:1 4959:1 4995:1 5030:1 5038:1 5040:1 5066:2 5071:1 5123:2 5141:1 5144:1 5149:1 5173:2 5186:1 5211:1 5217:1 5231:2 5261:1 5333:2 5355:2 5375:1 5385:1 5391:1 5398:1 5407:1 5414:3 5428:1 5447:1 5473:1 5486:1 5537:1 5540:1 5566:1 5652:1 5657:1 5664:1 5665:1 5708:1 5745:1 5764:1 5781:2 5789:1 5799:1 5815:2 5829:2 5859:1 5873:1 5925:2 5928:1 5932:1 6010:1 6041:1 6063:1 6080:3 6095:1 6099:1 6103:1 6105:1 6106:2 6108:3 6169:1 6212:1 6230:1 6277:1 6385:1 6403:1 6408:1 6415:1 6416:2 6427:1 6465:1 6473:1 6475:1 6477:1 6483:2 6501:1 6504:1 6527:1 6557:1 6610:2 6642:1 6652:1 6653:1 6659:1 6665:1 6669:1 6696:1 6714:1 6718:1 6731:1 6793:4 6794:1 6804:1 6817:1 6887:1 6901:1 6906:1 6907:1 6970:1 6976:1 6993:1 7008:1 7025:1 7056:3 7065:1 7066:3 7085:1 7091:1 7140:1 7142:1 7162:1 7168:1 7193:1 7195:1 7197:1 7227:1 7234:1 7261:1 7268:4 7284:1 7287:1 7292:1 7328:17 7346:4 7347:6 7357:1 7401:2 7407:1 7467:1 7538:1 7572:1 7587:2 7596:1 7601:1 7615:1 7677:1 7693:1 7700:1 7704:1 7717:1 7723:9 7733:1 7762:1 7791:13 7835:1 7839:1 7842:1 7849:1 7855:1 7950:1 7969:2 7986:1 8002:3 8024:1 8112:1 8113:1 8125:2 8130:2 8133:1 8136:1 8141:1 8219:1 8248:1 8277:1 8299:1 8368:1 8383:1 8391:2 8423:1 8433:1 8445:2 8457:1 8488:1 8495:1 8514:1 8518:1 8524:1 8560:2 8566:5 8569:2 8573:1 8585:3 8598:1 8684:1 8707:1 8713:1 8735:1 8791:2 8794:1 8811:1 8813:1 8817:1 8893:1 8925:1 8974:1 8988:2 9017:1 9102:1 9105:3 9110:5 9123:3 9163:1 9166:1 9180:1 9182:1 9208:1 9224:1 9249:1 9263:1 9272:1 9283:1 9288:1 9293:1 9353:1 9367:2 9376:2 9430:1 9433:1 9446:2 9475:1 9487:1 9508:1 9551:1 9565:1 9619:1 9719:1 9727:1 9729:1 9732:1 9836:1 9870:1 9901:1 9945:1 9958:2 9967:1 9990:1 9991:2 9999:1 10010:1 10011:1 10013:1 10016:1 10018:1 10021:1 10026:1 10028:1 10035:1 10036:1 10061:1 10099:2 10106:1 10121:1 10125:1 10130:3 10133:3 10202:1 10212:2 10229:3 10299:1 10316:1 10348:2 10349:1 10462:1 10470:1 10472:1 10495:1 10497:1 10531:5 10540:1 10566:1 10571:1 10598:1 10601:1 10630:1 10632:1 10635:1 10651:3 10656:1 10688:1 10732:1 10741:1 10758:1 10763:1 10771:1 10786:1 10788:6 10839:1 10867:1 10869:2 10926:1 10944:1 10983:4 11020:1 11031:1 11045:1 11051:1 11056:2 11061:1 11101:1 11102:3 11118:3 11167:1 11183:1 11185:11 11254:1 11277:1 11297:2 11303:1 11335:1 11365:2 11384:1 11395:1 11408:1 11436:1 11443:1 11456:1 11457:1 11479:1 11480:1 11484:1 11499:1 11506:1 11520:1 11538:1 11552:1 11582:2 11608:1 11680:1 11742:2 11849:2 11868:1 11870:1 11885:1 11912:1 11932:1 11975:6 11979:1 12005:1 12018:1 12035:1 12057:11 12063:1 12085:1 12114:1 12115:1 12141:2 12164:1 12179:1 12180:1 12251:1 12253:1 12280:1 12315:1 12378:4 12391:1 12394:2 12413:1 12414:8 12418:1 12439:1 12473:1 12474:1 12510:1 12511:8 12523:1 12526:14 12597:1 12626:1 12653:1 12689:1 12728:1 12757:1 12759:1 12764:1 12889:1 12891:1 12894:2 12903:1 12927:2 12939:1 12978:1 13005:10 13012:1 13015:1 13051:1 13055:2 13056:1 13080:2 13088:1 13095:1 13096:1 13097:1 13107:1 13122:1 13128:1 13138:1 13170:2 13172:1 13199:2 13245:1 13290:1 13297:1 13300:1 13301:1 13336:1 13343:1 13403:2 13412:1 13422:1 13429:1 13430:1 13463:1 13498:1 13535:1 13541:1 13552:1 13563:1 13586:1 13593:2 13671:3 13687:1 13739:3 13756:1 13771:1 13793:1 13794:1 13810:1 13819:1 13834:1 13867:1 13879:1 13887:1 13895:1 13930:1 13943:1 14001:1 14015:1 14042:2 14053:1 14087:1 14177:3 14184:1 14232:1 14240:2 14271:1 14330:1 14352:2 14382:3 14383:1 14385:1 14387:1 14432:1 14433:1 14475:1 14500:1 14544:1 14549:1 14550:15 14574:1 14580:1 14584:1 14589:1 14625:1 14628:1 14674:1 14695:1 14757:2 14765:1 14768:1 14770:1 14777:1 14789:1 14794:1 14799:2 14808:1 14814:1 14847:2 14849:1 14888:1 14895:1 14911:2 14912:1 15004:1 15037:1 15057:1 15085:1 15094:1 15128:1 15130:2 15152:1 15166:3 15184:1 15185:1 15197:1 15204:1 15206:1 15210:1 15244:1 15269:1 15273:1 15274:2 15280:1 15282:2 15284:1 15287:1 15290:1 15295:1 15300:3 15314:1 15331:3 15351:1 15495:1 15528:1 15567:1 15604:1 15623:1 15649:1 15653:1 15661:1 15664:1 15667:1 15671:1 15725:1 15733:1 15755:2 15758:3 15772:1 15804:1 15814:2 15836:1 15844:1 15861:2 15868:9 15870:1 15892:1 15921:2 15924:1 15930:2 15939:1 15941:2 15962:1 15971:1 15992:1 15997:1 15999:2 16015:1 16020:1 16050:1 16068:1 16080:1 16081:1 16090:1 16100:1 16102:1 16118:1 16129:1 16131:1 16161:1 16197:1 16200:1 16214:1 16230:2 16374:1 16412:1 16416:1 16534:1 16548:1 16556:2 16578:1 16598:1 16604:1 16607:1 16666:1 16695:1 16704:5 16748:2 16769:1 16786:3 16788:1 16789:2 16799:1 16828:1 16839:1 16862:1 16871:1 16879:3 16888:1 16899:1 16912:1 16918:1 16940:8 16963:1 17005:1 17012:1 17056:1 17067:1 17096:1 17112:1 17154:1 17169:1 17176:1 17184:1 17188:1 17203:1 17237:1 17277:1 17284:1 17348:2 17374:3 17383:2 17448:1 17470:1 17559:1134 17560:2 17575:3 17601:1 17642:1 17670:1 17690:1 17693:1 17699:2 17704:1 17724:1 17750:1 17761:3 17770:1 17773:3 17774:1 17775:1 17776:1 17805:1 17842:2 17964:2 18020:1 18039:1 18071:2 18079:1 18092:1 18100:1 18142:1 18169:1 18208:1 18209:2 18223:2 18239:1 18245:3 18265:1 18274:2 18293:1 18330:1 18338:1 18351:1 18383:1 18394:8 18402:1 18452:1 18547:1 18579:1 18605:1 18613:2 18629:1 18635:1 18641:1 18657:2 18658:1 18669:1 18673:1 18694:1 18695:1 18702:1 18719:1 18754:2 18773:1 18777:1 18782:1 18840:1 18846:1 18879:1 18890:1 18898:3 18946:1 18948:1 18956:1 18959:1 18965:1 18968:1 18973:2 18977:1 18991:2 18994:3 19005:2 19011:1 19030:1 19044:1 19061:5 19065:3 19099:1 19107:1 19168:1 19183:1 19207:1 19209:1 19254:1 19285:1 19327:1 19330:1 19333:1 19339:1 19340:2 19378:1 19403:1 19409:1 19440:1 19446:1 19470:1 19535:1 19538:1 19555:1 19589:1 19620:1 19626:2 19646:1 19658:1 19668:1 19679:1 19718:1 19728:3 19736:1 19781:10 19788:2 19807:4 19844:1 19856:1 19859:1 19864:1 19866:1 19869:1 19875:1 19893:1 19922:2 19970:1 20026:3 20065:1 20070:3 20084:2 20152:1 20161:1 20167:1 20168:1 20193:2 20199:1 20210:1 20211:1 20270:1 20285:1 20302:1 20322:2 20346:1 20361:2 20363:1 20366:2 20414:1 20472:1 20473:1 20495:1 20520:1 20523:1 20524:1 20589:1 20603:2 20604:2 20605:3 20611:1 20615:1 20634:1 20638:2 20646:1 20676:1 20693:1 20715:1 20749:1 20761:1 20772:1 20775:2 20787:1 20831:1 20846:1 20884:1 20902:1 20913:2 20926:1 20946:1 20968:1 20972:2 20978:2 21021:1 21049:1 21050:1 21100:1 21112:2 21158:2 21160:1 21167:2 21169:1 21202:1 21211:1 21239:1 21243:1 21270:1 21284:1 21332:3 21336:1 21352:1 21356:1 21376:1 21388:1 21393:2 21396:1 21399:1 21401:1 21415:1 21426:3 21438:1 21444:3 21487:1 21490:2 21494:1 21500:1 21536:1 21568:1 21615:1 21626:1 21640:2 21675:2 21682:1 21687:1 21696:1 21706:1 21711:1 21720:1 21722:1 21743:1 21777:1 21813:1 21867:1 21871:1 21875:1 21883:1 21914:1 21942:1 21944:3 21946:1 21951:1 21961:2 21974:1 21998:1 22010:1 22013:1 22020:1 22057:1 22060:1 22073:1 22082:1 22103:3 22108:1 22127:1 22136:1 22165:3 22189:1 22191:1 22198:1 22305:2 22387:1 22410:1 22416:3 22500:1 22502:8 22608:1 22634:1 22657:1 22662:1 22672:1 22678:1 22687:1 22688:6 22691:1 22705:1 22710:1 22711:1 22732:1 22744:1 22811:1 22856:1 22857:1 22858:1 22862:1 22863:1 22864:1 22870:1 22874:1 22909:1 22918:1 22919:1 22922:2 22927:1 22932:1 22933:1 22953:1 22960:1 22968:3 23006:1 23007:1 23039:1 23068:2 23081:1 23090:1 23109:1 23173:1 23176:1 23211:2 23274:1 23282:1 23328:2 23381:1 23384:5 23396:1 23397:1 23399:1 23407:1 23413:1 23436:1 23437:1 23579:1 23596:1 23598:4 23635:1 23637:1 23647:2 23651:1 23660:2 23675:1 23705:1 23708:1 23729:1 23734:1 23818:1 23827:1 23854:1 23861:1 23878:1 23891:1 23946:1 23948:1 23963:1 24092:1 24104:1 24111:1 24121:1 24142:1 24143:1 24148:1 24198:1 24233:1 24262:2 24285:1 24300:1 24355:1 24362:1 24364:1 24365:1 24382:1 24394:1 24420:3 24436:1 24437:1 24440:1 24444:3 24469:1 24477:1 24494:1 24498:1 24500:3 24509:1 24525:1 24571:3 24572:1 24587:2 24642:3 24654:1 24671:2 24721:1 24738:1 24743:1 24750:1 24757:1 24776:1 24795:1 24816:1 24819:1 24855:2 24888:1 24893:1 24897:1 24909:1 24941:1 24947:1 24958:1 24973:1 25010:1 25033:1 25045:1 25082:1 25084:1 25095:1 25233:1 25264:1 25308:1 25349:1 25353:1 25368:1 25385:1 25407:1 25430:2 25440:1 25448:1 25461:4 25527:3 25531:1 25551:1 25614:4 25631:1 25635:1 25664:1 25680:2 25694:2 25696:1 25702:1 25712:1 25723:1 25782:2 25807:1 25835:1 25837:1 25912:2 25915:1 25946:1 25980:2 25996:1 25998:5 26023:1 26045:1 26065:1 26105:1 26120:1 26178:3 26221:1 26250:3 26258:1 26293:1 26312:1 26341:1 26366:1 26372:1 26378:1 26382:1 26385:1 26392:9 26394:1 26396:1 26430:1 26443:1 26465:1 26489:2 26512:1 26518:1 26529:3 26560:3 26561:1 26568:1 26590:1 26605:1 26632:2 26634:1 26667:1 26688:2 26705:1 26726:1 26770:1 26785:1 26808:3 26810:3 26838:1 26864:1 26869:1 26873:1 26875:1 26910:1 26997:2 27010:1 27011:1 27015:10 27048:1 27104:1 27112:1 27121:1 27167:1 27188:1 27219:1 27227:1 27233:1 27394:1 27403:1 27433:1 27442:1 27475:2 27479:1 27509:1 27512:1 27528:1 27549:1 27561:1 27568:1 27578:1 27585:1 27587:1 27592:1 27600:1 27602:1 27612:1 27640:1 27643:1 27653:1
20 17:1 21:1 22:1 26:1 29:1 72:1 86:1 109:1 114:1 145:1 168:1 241:1 245:1 263:3 298:1 317:1 323:1 366:1 435:1 441:2 471:1 526:1 549:1 556:1 615:1 620:1 848:1 853:1 865:1 877:1 883:1 894:1 908:1 915:2 933:1 937:1 939:3 941:2 956:1 966:2 991:3 992:3 1009:1 1040:1 1041:2 1045:1 1059:1 1079:1 1102:1 1110:1 1139:1 1201:1 1202:1 1211:1 1271:1 1328:1 1356:1 1369:1 1383:1 1393:1 1395:1 1418:3 1430:1 1437:1 1440:1 1441:1 1446:1 1460:3 1482:1 1486:6 1490:1 1496:1 1501:1 1505:1 1517:1 1518:1 1522:1 1527:1 1550:9 1593:1 1608:1 1635:1 1655:1 1703:4 1709:1 1754:1 1760:2 1791:1 1799:1 1830:1 1843:2 1851:1 1868:1 1882:1 1883:1 1924:1 1942:1 1954:4 1994:1 1996:3 2007:1 2014:1 2055:3 2088:1 2093:1 2099:1 2120:1 2123:8 2126:1 2136:1 2139:1 2141:2 2146:1 2161:1 2163:2 2195:1 2196:4 2198:1 2202:1 2210:2 2212:1 2214:2 2215:2 2218:2 2225:1 2228:1 2232:2 2278:1 2298:1 2304:1 2324:1 2387:1 2406:1 2458:1 2497:1 2509:1 2520:1 2522:1 2528:1 2562:1 2592:1 2610:1 2618:2 2655:2 2686:1 2691:1 2713:1 2742:1 2765:3 2774:2 2775:6 2778:1 2791:2 2806:1 2810:1 2826:7 2909:1 2929:2 2983:3 3074:1 3108:1 3116:1 3125:1 3174:2 3205:2 3238:1 3266:1 3286:1 3328:1 3337:1 3389:1 3440:1 3456:1 3458:1 3460:1 3489:1 3524:1 3535:1 3537:1 3543:1 3544:1 3553:1 3584:1 3592:1 3593:2 3638:3 3639:1 3662:1 3664:4 3703:1 3723:1 3736:1 3744:1 3751:2 3769:1 3772:1 3804:1 3819:1 3820:1 3842:1 3849:1 3850:1 3897:1 3949:1 3969:1 3991:1 4097:1 4120:1 4160:1 4168:1 4170:1 4191:1 4225:1 4228:1 4255:1 4289:1 4323:1 4372:1 4411:1 4418:1 4434:1 4455:1 4456:1 4463:1 4503:1 4553:1 4564:1 4592:1 4616:1 4619:1 4659:1 4679:1 4688:1 4693:1 4701:5 4756:1 4795:3 4799:4 4817:2 4818:1 4839:1 4840:1 4841:2 4843:2 4845:2 4862:1 4950:1 4959:1 4995:1 5030:1 5038:1 5040:1 5066:2 5071:1 5123:2 5141:1 5144:1 5149:1 5173:2 5186:1 5211:1 5217:1 5231:2 5261:1 5333:2 5355:2 5375:1 5385:1 5391:1 5398:1 5407:1 5414:3 5428:1 5447:1 5473:1 5486:1 5537:1 5540:1 5566:1 5652:1 5657:1 5664:1 5665:1 5708:1 5745:1 5764:1 5781:2 5789:1 5799:1 5815:2 5829:2 5859:1 5863:1 5873:1 5925:2 5928:1 5932:1 5996:1 6010:1 6024:1 6041:1 6063:1 6080:3 6095:1 6099:1 6100:1 6103:1 6105:1 6106:2 6108:3 6151:1 6169:1 6212:1 6230:1 6277:1 6385:1 6403:1 6408:1 6415:1 6416:2 6424:1 6427:1 6465:1 6473:1 6475:1 6477:1 6483:2 6501:1 6502:1 6504:1 6527:1 6557:1 6610:2 6642:1 6652:1 6653:1 6659:1 6665:1 6669:1 6696:1 6714:1 6718:1 6731:1 6753:1 6793:4 6794:1 6804:1 6817:1 6887:1 6901:1 6906:1 6907:1 6970:1 6976:1 6993:1 7008:1 7025:1 7056:3 7065:1 7066:3 7083:1 7085:1 7091:1 7140:1 7142:1 7162:1 7168:1 7193:1 7195:1 7197:1 7227:1 7234:1 7261:1 7268:4 7284:1 7287:1 7289:2 7292:1 7328:17 7346:4 7347:6 7357:1 7401:2 7407:1 7467:1 7538:1 7572:1 7587:2 7596:1 7601:1 7615:1 7677:1 7693:1 7700:1 7704:1 7717:1 7723:9 7733:1 7762:1 7791:13 7816:1 7835:1 7839:1 7842:1 7849:1 7855:1 7944:1 7950:1 7964:1 7969:2 7986:1 8002:3 8024:1 8073:1 8112:1 8113:1 8125:2 8130:2 8133:1 8136:1 8141:2 8219:1 8248:1 8277:1 8299:1 8368:1 8383:1 8391:2 8423:1 8433:1 8445:2 8457:1 8488:1 8495:1 8514:1 8518:1 8524:1 8560:2 8566:5 8569:2 8573:1 8585:3 8598:1 8684:1 8707:1 8713:1 8735:1 8791:2 8794:1 8811:1 8813:1 8817:1 8893:1 8925:1 8974:1 8988:2 9017:1 9102:1 9105:3 9110:5 9123:3 9163:1 9166:1 9180:1 9182:1 9208:2 9224:1 9231:1 9249:1 9263:1 9272:1 9283:1 9288:1 9293:1 9353:1 9367:2 9376:2 9430:1 9433:1 9446:2 9475:1 9487:1 9508:1 9551:1 9564:1 9565:1 9619:1 9719:1 9727:1 9729:1 9732:1 9773:1 9836:1 9859:1 9870:1 9901:2 9932:1 9945:1 9958:2 9967:1 9990:1 9991:2 9999:1 10010:1 10011:1 10013:1 10016:1 10018:1 10021:1 10026:1 10028:1 10035:1 10036:1 10061:1 10099:2 10106:1 10121:1 10125:1 10130:3 10133:3 10172:1 10202:1 10212:2 10229:3 10299:1 10316:1 10348:2 10349:1 10462:1 10470:1 10472:1 10495:1 10497:1 10531:5 10540:1 10566:1 10571:1 10598:1 10601:1 10630:1 10632:1 10635:1 10651:3 10656:1 10688:1 10712:1 10732:1 10741:1 10758:1 10763:1 10771:1 10786:1 10788:6 10839:1 10867:1 10869:2 10926:1 10944:1 10983:4 11020:1 11031:1 11045:1 11051:1 11056:2 11061:1 11101:1 11102:3 11112:1 11118:3 11167:1 11183:1 11185:11 11254:1 11277:1 11297:2 11303:2 11335:1 11365:2 11384:1 11395:1 11408:1 11436:1 11443:1 11456:1 11457:1 11479:1 11480:1 11484:1 11499:1 11506:1 11520:1 11538:1 11552:1 11582:2 11608:1 11680:1 11693:1 11723:1 11742:2 11818:1 11849:2 11868:1 11870:1 11885:1 11912:1 11932:1 11975:6 11979:1 12005:1 12018:1 12035:1 12057:11 12063:1 12085:1 12114:1 12115:1 12141:2 12164:1 12179:1 12180:1 12251:1 12253:1 12280:1 12315:1 12378:4 12387:1 12390:1 12391:1 12394:2 12408:1 12413:1 12414:8 12418:1 12439:1 12456:1 12473:1 12474:1 12510:1 12511:8 12523:1 12526:14 12597:1 12626:1 12653:1 12689:1 12728:1 12757:1 12759:1 12764:1 12889:1 12891:1 12894:2 12903:1 12927:2 12939:1 12978:1 13005:10 13012:1 13015:1 13051:1 13055:2 13056:1 13080:2 13088:1 13095:1 13096:1 13097:1 13107:1 13122:1 13128:1 13138:1 13170:3 13172:1 13199:2 13245:1 13290:1 13297:1 13300:1 13301:1 13336:1 13343:1 13403:2 13412:1 13422:1 13429:1 13430:1 13463:1 13468:1 13498:1 13509:1 13527:1 13535:1 13541:1 13552:1 13563:1 13586:1 13593:2 13671:3 13687:1 13739:3 13756:1 13771:1 13793:1 13794:1 13810:1 13819:1 13834:1 13867:1 13879:1 13887:1 13895:1 13930:1 13943:1 14001:1 14015:1 14042:2 14053:1 14087:1 14177:3 14184:1 14232:1 14240:2 14271:1 14330:1 14352:2 14382:3 14383:1 14385:1 14387:1 14432:1 14433:1 14475:1 14483:1 14500:1 14544:1 14549:1 14550:16 14574:1 14580:1 14584:1 14589:1 14625:1 14628:1 14674:1 14695:1 14757:2 14765:1 14768:1 14769:1 14770:1 14777:1 14789:1 14794:1 14799:2 14808:1 14814:1 14847:2 14849:1 14888:1 14895:1 14911:2 14912:1 14939:1 15004:1 15037:1 15057:1 15068:1 15085:1 15094:1 15128:1 15130:2 15152:1 15166:3 15184:1 15185:1 15197:1 15204:1 15206:1 15210:1 15244:1 15269:1 15273:1 15274:2 15280:1 15282:2 15284:1 15287:1 15290:1 15295:1 15300:3 15314:1 15331:3 15351:1 15495:1 15528:1 15567:1 15604:1 15623:1 15649:1 15653:1 15661:1 15664:1 15667:1 15671:1 15725:1 15733:1 15742:1 15755:2 15758:3 15772:1 15804:1 15814:2 15836:1 15844:1 15861:2 15868:9 15870:1 15892:1 15921:2 15924:1 15928:1 15930:2 15939:1 15941:2 15962:1 15971:1 15992:1 15997:1 15999:2 16015:1 16020:1 16050:1 16068:1 16080:1 16081:1 16090:1 16100:1 16102:1 16118:1 16129:1 16131:1 16161:1 16187:1 16197:1 16200:1 16214:1 16230:2 16374:1 16412:1 16416:1 16534:1 16548:1 16556:2 16578:1 16598:1 16604:1 16607:1 16666:1 16695:1 16704:5 16748:2 16769:1 16786:3 16788:1 16789:2 16799:1 16828:1 16839:1 16859:1 16862:1 16871:1 16879:3 16886:1 16888:1 16891:1 16899:1 16912:1 16918:1 16940:8 16963:1 17005:1 17012:1 17056:1 17067:1 17096:1 17112:1 17154:1 17169:1 17176:1 17184:1 17188:2 17203:1 17237:1 17277:1 17284:1 17348:2 17374:3 17383:2 17448:1 17470:1 17559:1226 17560:2 17575:3 17601:1 17642:1 17670:1 17690:1 17693:1 17699:2 17704:1 17724:1 17750:1 17761:3 17770:1 17773:3 17774:1 17775:1 17776:1 17805:1 17842:2 17964:3 18020:1 18039:1 18071:2 18079:1 18092:1 18100:1 18142:1 18169:1 18208:1 18209:2 18223:2 18239:1 18245:3 18265:1 18274:2 18293:1 18330:1 18338:1 18351:1 18383:1 18394:8 18402:1 18452:1 18547:1 18579:1 18605:1 18613:2 18629:1 18635:1 18641:1 18657:2 18658:1 18669:1 18673:1 18694:1 18695:1 18702:1 18719:1 18754:2 18773:1 18777:1 18782:1 18840:1 18846:1 18879:1 18890:1 18898:3 18946:1 18948:1 18956:1 18959:1 18965:1 18968:1 18973:2 18977:1 18991:2 18994:3 19005:2 19011:1 19030:1 19044:1 19046:1 19061:5 19065:3 19099:1 19107:1 19168:1 19183:1 19207:1 19209:1 19254:1 19285:1 19308:1 19327:1 19330:1 19333:1 19339:1 19340:2 19378:1 19403:1 19409:1 19440:1 19446:1 19470:1 19535:1 19538:1 19555:1 19589:1 19620:1 19626:2 19646:1 19658:1 19662:1 19668:1 19679:1 19718:1 19728:3 19736:1 19781:10 19788:2 19807:4 19844:1 19856:1 19859:1 19864:1 19866:1 19869:1 19875:1 19893:1 19922:2 19970:1 20026:3 20065:1 20070:3 20084:2 20152:1 20161:1 20167:1 20168:1 20193:2 20199:1 20210:1 20211:1 20270:1 20285:1 20302:1 20322:2 20346:1 20361:2 20363:1 20366:2 20414:1 20472:1 20473:1 20495:1 20520:1 20523:1 20524:1 20589:1 20603:2 20604:2 20605:3 20611:1 20615:1 20634:1 20636:1 20638:2 20646:1 20665:1 20676:1 20693:1 20715:1 20749:1 20761:1 20772:1 20775:2 20787:1 20831:1 20846:1 20884:1 20902:1 20913:2 20920:1 20926:1 20946:1 20968:1 20972:2 20978:2 21021:1 21049:1 21050:1 21078:1 21100:1 21112:2 21158:2 21160:1 21167:2 21169:1 21202:1 21211:1 21239:1 21243:1 21270:1 21284:1 21332:3 21336:1 21352:1 21356:1 21376:1 21388:1 21393:2 21396:1 21399:1 21401:1 21415:1 21426:3 21433:1 21438:1 21444:3 21487:1 21490:2 21494:1 21500:1 21536:1 21568:1 21615:1 21626:1 21640:2 21675:2 21682:1 21687:1 21696:1 21706:1 21711:1 21720:1 21722:1 21743:1 21777:1 21813:1 21867:1 21871:1 21875:1 21883:1 21914:1 21942:1 21944:3 21946:1 21951:1 21961:2 21974:1 21998:1 22010:1 22013:1 22020:1 22057:1 22060:1 22073:1 22082:1 22103:3 22108:1 22127:1 22136:1 22165:3 22189:1 22191:1 22198:1 22305:2 22387:1 22410:1 22416:3 22500:1 22502:8 22573:1 22608:1 22634:1 22657:1 22662:1 22672:1 22678:1 22687:2 22688:6 22691:1 22705:1 22710:1 22711:1 22732:1 22744:1 22811:1 22856:1 22857:1 22858:1 22862:1 22863:1 22864:1 22870:1 22874:1 22909:1 22918:1 22919:1 22922:2 22927:1 22932:1 22933:1 22939:1 22953:1 22960:1 22968:3 22984:1 23006:1 23007:1 23039:1 23068:2 23081:1 23090:1 23109:1 23173:1 23176:1 23211:2 23274:1 23282:1 23328:2 23381:1 23384:5 23396:1 23397:1 23399:1 23407:1 23413:1 23436:1 23437:1 23579:1 23596:1 23598:4 23635:1 23637:1 23647:2 23651:1 23660:2 23675:1 23705:1 23708:1 23729:1 23734:1 23818:1 23827:1 23854:1 23861:1 23878:1 23891:1 23946:1 23948:1 23963:1 23994:1 24092:1 24104:1 24111:1 24121:1 24142:1 24143:1 24144:1 24148:1 24198:1 24233:1 24262:2 24285:1 24300:1 24355:1 24362:1 24364:1 24365:1 24382:1 24394:1 24420:3 24436:1 24437:1 24440:1 24444:3 24469:1 24477:1 24494:1 24498:1 24500:3 24509:1 24525:1 24571:3 24572:1 24587:2 24642:3 24654:1 24671:2 24721:1 24738:1 24743:1 24750:1 24757:1 24776:1 24795:1 24816:1 24819:1 24836:1 24855:2 24888:1 24893:1 24897:1 24909:1 24941:1 24947:1 24958:1 24973:1 25010:1 25033:1 25045:1 25082:1 25084:1 25095:1 25233:1 25241:1 25264:1 25280:1 25308:1 25349:1 25353:1 25368:1 25385:1 25407:1 25430:2 25440:1 25448:1 25461:4 25527:3 25531:1 25551:1 25614:4 25631:1 25635:1 25664:1 25680:2 25694:2 25696:1 25702:1 25712:1 25723:1 25782:2 25807:1 25835:1 25837:1 25912:2 25915:1 25946:1 25980:2 25996:1 25998:5 26023:1 26045:1 26065:1 26105:1 26120:1 26178:3 26221:1 26250:3 26258:1 26293:1 26312:1 26341:1 26366:1 26372:1 26378:1 26382:1 26385:1 26392:10 26394:1 26396:1 26430:2 26443:1 26465:1 26489:2 26512:1 26518:1 26529:3 26560:3 26561:1 26568:1 26590:1 26605:1 26632:2 26634:1 26667:1 26688:2 26705:1 26726:1 26770:1 26785:1 26808:3 26810:3 26838:1 26852:1 26864:1 26869:1 26873:1 26875:2 26910:1 26997:2 27010:1 27011:1 27015:10 27048:1 27104:1 27112:1 27121:1 27167:1 27188:1 27204:1 27219:1 27227:1 27233:1 27394:1 27403:1 27433:1 27439:1 27442:1 27475:2 27479:1 27509:1 27512:1 27528:1 27548:1 27549:1 27561:1 27568:1 27578:1 27585:1 27587:1 27592:1 27600:1 27602:1 27612:1 27640:1 27643:2 27653:1
20 17:1 21:1 22:1 26:1 29:1 72:1 86:1 109:1 114:1 145:1 168:1 241:1 245:1 246:1 263:3 298:1 317:1 323:1 366:1 435:1 441:2 471:1 526:1 549:1 556:1 615:1 617:1 620:1 848:1 853:2 865:1 877:1 883:1 894:1 908:1 915:2 933:1 937:1 939:3 941:2 956:1 966:2 991:3 992:3 1009:1 1040:1 1041:2 1045:1 1059:1 1079:1 1102:1 1110:1 1139:1 1201:1 1202:1 1211:1 1271:1 1328:1 1356:2 1369:1 1383:1 1393:1 1395:1 1397:2 1418:3 1430:1 1437:1 1440:1 1441:1 1446:1 1460:3 1482:1 1484:2 1486:6 1490:1 1496:1 1501:1 1505:1 1517:1 1518:1 1522:1 1527:1 1550:9 1593:1 1608:1 1635:1 1655:1 1703:4 1709:1 1754:1 1760:2 1791:1 1799:1 1830:1 1843:2 1851:1 1868:1 1882:1 1883:1 1924:1 1942:1 1954:4 1994:1 1996:3 2007:1 2014:1 2055:3 2088:1 2093:2 2099:1 2120:1 2123:8 2126:1 2136:1 2139:1 2141:2 2146:1 2161:1 2163:2 2195:1 2196:4 2198:1 2202:1 2210:2 2212:1 2214:2 2215:2 2218:2 2225:1 2228:1 2232:2 2278:1 2298:1 2304:1 2324:1 2387:1 2406:1 2458:1 2497:1 2509:1 2520:1 2522:1 2528:1 2562:1 2592:1 2610:1 2618:2 2655:2 2686:1 2691:1 2713:1 2742:1 2765:3 2774:2 2775:7 2778:1 2791:2 2806:1 2810:1 2826:7 2909:1 2929:2 2983:3 3074:1 3108:1 3116:1 3125:1 3174:2 3205:2 3238:1 3266:1 3286:1 3328:1 3337:1 3389:1 3440:1 3456:1 3458:1 3460:1 3489:1 3497:1 3524:1 3535:1 3537:1 3543:1 3544:1 3553:1 3584:2 3592:1 3593:2 3638:3 3639:1 3662:1 3664:4 3703:1 3723:1 3736:1 3744:1 3751:2 3769:1 3772:1 3804:1 3819:1 3820:1 3842:1 3849:2 3850:1 3897:1 3949:1 3969:1 3991:1 4097:1 4120:1 4160:1 4168:1 4170:1 4191:1 4225:1 4228:1 4255:1 4289:1 4323:1 4355:1 4372:1 4411:1 4418:1 4434:1 4455:1 4456:1 4463:1 4503:1 4553:1 4564:1 4592:1 4616:1 4619:1 4659:1 4679:1 4688:1 4693:1 4701:5 4756:1 4795:3 4799:4 4817:2 4818:1 4839:1 4840:1 4841:2 4843:2 4845:2 4862:1 4950:1 4959:1 4995:1 5004:1 5007:1 5030:1 5038:1 5040:1 5066:2 5071:1 5086:1 5123:2 5141:1 5144:1 5149:1 5173:2 5186:1 5211:1 5217:1 5231:2 5261:1 5333:2 5355:2 5375:1 5385:1 5391:1 5398:1 5407:1 5414:3 5428:1 5447:1 5473:1 5486:1 5537:1 5540:1 5549:2 5566:1 5652:2 5657:2 5664:1 5665:1 5708:1 5716:1 5745:1 5764:2 5781:2 5789:1 5799:1 5815:2 5829:2 5859:1 5863:1 5873:1 5925:2 5928:1 5932:1 5967:1 5996:1 6010:1 6024:1 6041:1 6063:1 6065:1 6080:3 6095:1 6099:2 6100:1 6103:2 6105:1 6106:2 6108:3 6151:1 6169:1 6201:1 6212:1 6217:1 6230:1 6277:1 6385:1 6403:1 6408:1 6415:1 6416:2 6424:1 6427:2 6465:1 6473:1 6475:1 6477:1 6483:2 6501:1 6502:1 6504:1 6527:1 6557:1 6610:3 6642:1 6652:1 6653:1 6659:1 6665:1 6669:1 6696:1 6714:1 6718:2 6731:1 6753:1 6766:1 6793:5 6794:1 6804:1 6817:1 6887:1 6901:1 6906:1 6907:1 6970:1 6976:1 6993:1 7008:1 7025:1 7056:3 7065:1 7066:3 7083:1 7085:1 7091:1 7140:2 7142:1 7162:1 7168:1 7193:1 7195:1 7197:1 7227:1 7234:1 7261:1 7268:4 7284:1 7287:1 7289:2 7292:1 7328:17 7346:4 7347:6 7357:1 7384:1 7401:2 7407:1 7467:1 7538:1 7572:1 7587:2 7596:1 7601:1 7615:1 7677:1 7693:1 7700:1 7704:1 7717:1 7723:9 7733:1 7762:1 7791:14 7816:1 7835:1 7839:1 7842:1 7849:1 7855:1 7944:1 7950:1 7964:1 7969:2 7986:1 8002:3 8024:1 8073:1 8112:1 8113:2 8125:3 8130:2 8133:1 8136:1 8141:3 8219:1 8248:1 8277:1 8299:1 8368:1 8383:1 8391:2 8423:1 8433:1 8445:2 8457:1 8488:1 8495:1 8514:1 8518:1 8524:1 8560:2 8566:5 8569:4 8573:1 8585:3 8598:1 8684:1 8707:1 8713:1 8735:1 8791:2 8794:1 8811:1 8813:1 8817:1 8893:1 8925:1 8967:1 8974:1 8988:2 9017:1 9102:1 9105:3 9110:5 9123:3 9163:1 9166:1 9180:1 9182:1 9208:4 9224:1 9231:1 9249:1 9263:1 9272:1 9283:1 9288:1 9293:1 9353:1 9367:2 9376:2 9430:1 9433:1 9446:2 9475:1 9487:1 9508:2 9551:1 9564:1 9565:1 9619:1 9719:1 9727:1 9729:1 9732:2 9773:1 9832:1 9836:1 9859:1 9870:1 9901:2 9932:1 9945:1 9958:2 9967:1 9990:2 9991:2 9999:1 10001:1 10010:1 10011:1 10013:1 10016:1 10018:1 10021:1 10026:1 10028:1 10035:1 10036:1 10061:1 10099:2 10106:1 10121:1 10125:1 10130:3 10133:3 10172:1 10202:1 10212:4 10229:3 10299:1 10316:1 10348:2 10349:1 10462:1 10470:1 10472:1 10495:1 10497:1 10531:5 10540:1 10566:1 10571:1 10598:1 10601:1 10630:1 10632:1 10635:1 10651:3 10656:2 10688:1 10712:1 10723:1 10732:1 10741:1 10758:1 10763:1 10771:1 10786:2 10788:6 10839:1 10845:1 10867:1 10869:2 10926:1 10944:1 10983:4 11020:1 11031:1 11045:1 11051:1 11056:2 11061:1 11101:1 11102:3 11112:1 11118:4 11167:1 11183:1 11185:11 11254:1 11277:1 11297:2 11303:3 11335:1 11365:2 11384:1 11395:1 11408:1 11436:1 11443:1 11456:1 11457:1 11479:1 11480:1 11484:1 11499:1 11506:1 11520:1 11538:1 11552:1 11582:2 11608:1 11680:1 11693:1 11723:1 11742:2 11818:1 11849:2 11868:1 11870:1 11885:1 11912:1 11932:1 11975:6 11979:1 12005:1 12018:1 12035:1 12057:11 12063:1 12085:1 12090:2 12114:1 12115:1 12141:2 12164:1 12179:1 12180:1 12186:1 12251:1 12253:1 12261:1 12263:1 12280:1 12315:1 12378:4 12387:1 12390:1 12391:1 12394:2 12408:1 12413:1 12414:8 12418:1 12439:1 12456:1 12473:1 12474:1 12510:1 12511:8 12523:1 12526:14 12597:1 12626:1 12653:1 12670:1 12689:1 12728:1 12757:2 12759:1 12764:1 12889:1 12891:1 12894:2 12903:1 12927:2 12939:1 12978:1 13005:10 13012:1 13015:1 13051:1 13055:2 13056:1 13080:2 13088:1 13095:1 13096:1 13097:1 13107:1 13122:1 13128:1 13138:1 13170:3 13172:2 13199:2 13245:1 13290:1 13297:1 13300:1 13301:1 13336:1 13343:1 13403:2 13412:1 13422:1 13429:1 13430:1 13463:1 13468:1 13498:1 13509:1 13527:1 13535:1 13541:1 13552:1 13563:1 13586:1 13593:2 13641:1 13671:3 13687:1 13739:3 13756:1 13771:1 13793:1 13794:1 13810:1 13819:1 13834:1 13867:1 13879:1 13887:1 13895:1 13930:1 13943:1 14001:1 14015:1 14042:2 14053:1 14087:1 14177:3 14184:1 14232:1 14240:2 14271:1 14330:1 14352:2 14382:3 14383:1 14385:1 14387:1 14432:1 14433:1 14475:1 14483:1 14500:1 14544:1 14549:1 14550:16 14574:1 14580:1 14584:1 14589:1 14625:1 14628:1 14674:1 14695:1 14757:2 14765:1 14768:2 14769:1 14770:1 14777:1 14789:1 14794:1 14799:2 14808:1 14814:1 14847:2 14849:1 14888:1 14895:1 14911:3 14912:1 14939:1 15004:1 15037:1 15057:1 15068:1 15085:1 15094:1 15128:1 15130:2 15152:1 15166:3 15184:1 15185:1 15197:1 15204:1 15206:1 15210:1 15244:1 15269:1 15273:1 15274:2 15279:1 15280:1 15282:2 15284:1 15287:1 15290:1 15295:1 15300:4 15314:1 15331:3 15351:1 15495:1 15528:1 15567:1 15604:1 15623:1 15649:1 15653:1 15661:1 15664:1 15667:1 15668:1 15671:1 15725:1 15733:1 15734:1 15742:1 15755:2 15758:3 15772:1 15780:1 15804:1 15814:2 15836:1 15844:1 15861:2 15868:9 15870:1 15892:1 15921:2 15924:1 15928:1 15930:2 15939:2 15941:2 15962:1 15971:2 15992:1 15997:1 15999:2 16015:1 16020:2 16050:1 16068:1 16080:1 16081:1 16090:1 16096:1 16100:1 16102:1 16118:1 16129:1 16131:1 16161:1 16187:1 16193:1 16197:1 16200:1 16214:1 16230:2 16374:1 16412:1 16416:1 16534:1 16548:1 16556:2 16563:1 16578:1 16598:1 16604:1 16607:1 16666:1 16695:1 16704:5 16748:2 16769:1 16786:3 16788:1 16789:2 16799:1 16828:1 16839:1 16859:1 16862:1 16871:1 16879:3 16886:1 16888:1 16891:1 16899:1 16912:1 16918:1 16940:8 16963:1 17005:1 17012:1 17056:1 17067:1 17096:1 17112:1 17154:1 17169:1 17176:1 17184:1 17188:2 17203:1 17237:1 17277:1 17284:1 17348:2 17374:3 17383:2 17448:1 17470:1 17559:1268 17560:2 17575:3 17601:1 17642:1 17670:1 17690:1 17693:1 17699:2 17704:1 17724:1 17750:1 17761:3 17770:1 17773:3 17774:1 17775:1 17776:1 17805:1 17842:2 17964:3 18020:1 18039:1 18071:2 18079:1 18092:1 18100:1 18142:1 18169:1 18208:1 18209:2 18223:2 18239:1 18245:4 18265:1 18274:2 18293:1 18330:1 18338:1 18351:1 18383:1 18394:8 18402:1 18452:1 18547:1 18579:1 18605:1 18613:2 18629:1 18635:1 18641:1 18657:2 18658:1 18669:1 18673:1 18694:1 18695:1 18702:1 18719:1 18754:2 18773:1 18777:1 18782:1 18840:1 18846:2 18879:1 18890:1 18898:3 18946:1 18948:1 18956:1 18959:1 18965:1 18968:1 18973:2 18977:1 18991:2 18994:3 19005:2 19011:1 19030:1 19044:1 19046:1 19061:5 19065:3 19099:1 19107:1 19168:1 19183:1 19207:1 19209:1 19254:1 19285:1 19308:1 19327:1 19330:1 19333:1 19339:1 19340:2 19378:1 19403:1 19409:1 19440:1 19446:1 19470:1 19535:1 19538:1 19555:1 19589:1 19620:1 19626:2 19646:1 19658:1 19662:1 19668:1 19679:1 19718:1 19728:3 19736:1 19781:10 19788:2 19807:4 19844:1 19856:1 19859:1 19864:1 19866:1 19869:1 19875:1 19893:1 19922:2 19970:1 20026:3 20065:1 20070:3 20084:2 20152:1 20161:1 20167:1 20168:1 20193:3 20195:1 20199:1 20210:1 20211:1 20270:1 20285:1 20302:1 20322:2 20346:1 20361:2 20363:1 20366:2 20408:1 20414:1 20472:1 20473:1 20495:1 20520:1 20523:1 20524:1 20589:1 20603:2 20604:2 20605:3 20611:1 20615:1 20634:1 20636:1 20638:2 20646:1 20665:1 20676:1 20693:1 20715:2 20749:1 20761:1 20772:1 20775:2 20787:1 20831:1 20846:1 20884:1 20902:1 20913:2 20920:2 20926:1 20946:1 20968:1 20972:2 20978:2 21021:1 21049:1 21050:1 21078:1 21100:1 21112:2 21158:2 21160:1 21167:2 21169:1 21202:1 21211:1 21239:1 21243:1 21270:1 21284:1 21332:3 21336:1 21352:1 21356:1 21376:1 21388:1 21393:2 21396:1 21399:1 21401:1 21415:1 21426:3 21433:1 21438:1 21444:3 21487:1 21490:2 21494:1 21500:1 21536:1 21568:1 21615:1 21626:1 21640:2 21675:2 21682:1 21687:1 21696:1 21706:1 21711:1 21720:1 21722:1 21743:1 21777:1 21813:1 21867:1 21871:1 21875:1 21877:1 21883:1 21914:1 21942:1 21944:3 21946:1 21951:1 21961:2 21974:1 21998:1 22010:1 22013:1 22020:1 22057:1 22060:1 22073:1 22082:1 22103:3 22108:1 22127:1 22136:1 22165:3 22189:1 22191:1 22198:1 22305:2 22387:1 22410:1 22416:3 22460:1 22500:1 22502:8 22573:1 22608:1 22634:1 22657:1 22662:1 22672:1 22678:1 22687:2 22688:6 22691:1 22705:1 22710:1 22711:1 22732:2 22744:1 22811:1 22856:1 22857:1 22858:1 22862:1 22863:1 22864:1 22870:1 22874:1 22909:1 22918:1 22919:1 22922:2 22927:1 22932:1 22933:1 22939:1 22953:1 22960:1 22968:3 22984:1 23006:1 23007:1 23039:1 23068:2 23081:1 23090:1 23109:1 23173:1 23176:1 23211:2 23274:1 23282:1 23328:3 23381:1 23384:5 23396:1 23397:1 23399:1 23407:1 23413:1 23436:1 23437:1 23579:1 23596:1 23598:4 23635:1 23637:1 23647:2 23651:1 23660:2 23675:1 23705:1 23708:1 23729:1 23734:1 23818:1 23827:1 23854:1 23861:1 23878:1 23891:1 23946:1 23948:1 23963:1 23994:1 24092:1 24104:1 24111:1 24121:1 24142:1 24143:1 24144:2 24148:1 24198:1 24233:1 24262:3 24285:1 24300:1 24355:1 24362:1 24364:1 24365:1 24382:1 24394:1 24420:3 24436:1 24437:1 24440:1 24444:3 24469:1 24477:1 24494:1 24498:1 24500:3 24509:1 24525:1 24571:3 24572:1 24587:2 24642:3 24654:1 24671:2 24721:1 24738:1 24743:1 24750:1 24757:1 24776:1 24795:1 24796:1 24816:1 24819:1 24836:2 24855:2 24888:1 24893:1 24897:1 24909:1 24941:1 24947:1 24958:1 24973:1 25010:1 25033:1 25045:1 25082:1 25084:1 25095:1 25233:1 25241:1 25264:1 25280:1 25308:1 25349:1 25353:1 25368:1 25385:1 25404:1 25407:1 25430:2 25440:1 25448:1 25461:4 25527:3 25531:1 25548:1 25551:1 25614:4 25631:1 25635:1 25664:1 25680:2 25694:2 25696:1 25702:1 25712:1 25723:1 25782:2 25807:1 25817:1 25835:1 25837:1 25912:2 25915:1 25928:1 25946:1 25980:2 25996:1 25998:5 26023:1 26045:1 26065:1 26105:1 26120:1 26178:3 26221:1 26250:3 26258:1 26293:1 26312:1 26341:1 26366:1 26372:1 26378:1 26382:1 26385:1 26392:13 26394:1 26396:1 26430:4 26443:1 26465:1 26489:2 26512:1 26518:1 26529:3 26560:3 26561:1 26568:1 26590:1 26605:1 26632:2 26634:1 26667:1 26688:2 26705:1 26726:1 26770:1 26785:1 26808:3 26810:3 26838:1 26852:1 26864:1 26869:1 26873:1 26875:2 26910:1 26997:2 27010:1 27011:1 27015:10 27032:1 27048:1 27054:1 27104:1 27112:1 27121:1 27167:1 27188:1 27204:1 27219:1 27227:1 27233:1 27394:1 27403:1 27433:1 27439:1 27442:1 27475:2 27479:1 27509:1 27511:1 27512:1 27528:1 27548:1 27549:1 27561:1 27568:1 27578:1 27585:1 27587:1 27592:1 27600:1 27602:1 27612:1 27640:1 27643:2 27653:1
20 17:1 21:1 22:1 26:1 29:1 72:1 86:1 109:1 114:1 145:1 155:1 168:1 207:1 241:1 245:1 246:1 263:3 298:1 317:1 323:1 366:1 435:1 441:2 471:1 526:1 549:1 556:1 615:1 617:1 620:1 848:1 853:2 865:1 867:1 877:1 883:2 894:1 908:1 915:2 933:1 937:1 939:3 941:2 956:1 966:2 991:3 992:3 996:1 1009:1 1040:1 1041:2 1045:1 1059:1 1079:1 1102:1 1110:1 1139:1 1201:1 1202:1 1211:1 1235:1 1271:1 1328:1 1356:2 1369:1 1383:1 1393:1 1395:1 1397:2 1418:3 1430:1 1437:1 1440:1 1441:1 1446:1 1460:3 1482:2 1484:2 1486:7 1490:1 1496:1 1501:1 1505:1 1517:1 1518:1 1522:1 1527:1 1543:1 1550:9 1593:1 1608:1 1635:1 1655:1 1703:5 1709:1 1754:1 1760:2 1791:1 1799:1 1830:1 1843:2 1851:1 1868:1 1882:1 1883:1 1924:1 1942:1 1954:4 1994:1 1996:3 2007:1 2014:1 2055:3 2088:1 2093:2 2099:1 2120:1 2123:8 2126:1 2136:1 2139:1 2141:2 2142:1 2146:1 2161:1 2163:2 2186:1 2195:1 2196:4 2198:1 2202:1 2210:2 2212:1 2214:2 2215:2 2218:2 2225:1 2228:1 2232:2 2278:1 2298:1 2304:1 2324:1 2376:1 2387:1 2406:1 2458:1 2490:1 2497:1 2509:1 2520:1 2522:1 2528:1 2562:1 2592:1 2610:1 2618:2 2655:2 2686:1 2691:1 2713:1 2742:1 2765:3 2774:2 2775:8 2778:1 2788:1 2791:2 2806:1 2810:1 2826:7 2909:1 2929:2 2983:3 3074:1 3108:1 3116:1 3125:1 3174:2 3205:2 3238:1 3266:1 3286:1 3328:1 3337:1 3389:1 3440:1 3456:1 3458:1 3460:1 3467:1 3489:1 3497:1 3524:1 3535:1 3537:1 3543:1 3544:1 3553:1 3584:2 3592:1 3593:2 3638:3 3639:1 3662:1 3664:5 3703:1 3723:1 3736:1 3744:1 3751:2 3769:1 3772:1 3804:1 3819:1 3820:1 3842:1 3849:2 3850:1 3897:1 3949:1 3969:1 3991:1 4020:1 4097:1 4120:1 4160:1 4168:1 4170:1 4191:1 4225:1 4228:1 4255:1 4289:1 4323:1 4355:1 4372:1 4411:1 4418:1 4434:1 4455:1 4456:1 4463:1 4501:1 4503:1 4553:1 4564:1 4592:1 4616:1 4619:1 4659:1 4679:1 4688:1 4693:1 4701:5 4756:1 4795:3 4799:4 4817:2 4818:1 4839:1 4840:1 4841:2 4843:2 4845:2 4849:1 4862:1 4950:1 4959:1 4995:1 5004:1 5007:1 5030:1 5038:1 5040:1 5066:2 5071:1 5086:1 5123:2 5141:1 5144:1 5149:1 5173:2 5186:1 5211:1 5217:1 5231:2 5261:1 5333:2 5355:2 5375:1 5385:1 5391:1 5398:1 5407:1 5414:3 5428:1 5447:1 5473:1 5486:1 5537:1 5540:1 5549:2 5566:1 5570:1 5572:1 5592:1 5652:2 5657:2 5664:1 5665:1 5708:1 5716:1 5745:1 5764:2 5781:2 5789:1 5799:1 5815:2 5829:2 5859:1 5863:1 5873:1 5925:2 5928:1 5932:1 5967:1 5996:1 6010:1 6024:1 6041:1 6063:1 6065:1 6080:3 6095:1 6099:2 6100:1 6103:2 6105:1 6106:2 6108:3 6151:1 6169:1 6201:1 6212:1 6217:1 6230:1 6277:1 6385:1 6403:1 6408:1 6415:1 6416:2 6424:1 6427:2 6465:1 6473:1 6475:1 6477:1 6483:2 6501:1 6502:1 6504:1 6526:1 6527:1 6557:1 6610:3 6642:3 6652:1 6653:1 6659:1 6665:1 6669:1 6696:1 6714:1 6718:2 6731:1 6753:1 6766:1 6793:5 6794:1 6804:1 6817:1 6855:2 6887:1 6901:1 6906:1 6907:1 6970:1 6976:1 6993:1 7008:1 7025:1 7056:3 7065:1 7066:3 7083:1 7085:1 7091:1 7104:1 7140:2 7142:1 7162:1 7168:1 7185:1 7193:1 7195:1 7197:1 7227:1 7234:1 7261:2 7268:5 7284:1 7287:1 7289:2 7292:1 7328:17 7346:4 7347:6 7357:1 7384:1 7401:2 7407:1 7467:1 7538:1 7572:1 7587:3 7596:1 7601:1 7615:1 7677:1 7693:1 7700:1 7704:1 7717:1 7723:9 7733:1 7762:1 7791:14 7816:1 7835:1 7839:1 7842:1 7849:1 7855:1 7944:1 7950:1 7964:1 7969:2 7986:1 8002:3 8024:1 8073:1 8112:1 8113:2 8125:3 8130:4 8133:1 8136:1 8141:3 8219:1 8248:1 8277:1 8299:1 8368:1 8383:1 8391:2 8423:1 8433:1 8445:2 8457:1 8480:1 8488:1 8495:1 8514:1 8518:1 8524:1 8560:2 8566:6 8569:4 8573:1 8585:3 8598:1 8684:1 8707:1 8713:1 8735:1 8791:2 8794:1 8811:1 8813:1 8817:1 8893:1 8925:1 8967:1 8974:1 8988:2 9002:1 9017:1 9102:1 9105:3 9110:6 9123:3 9163:1 9166:1 9180:1 9182:1 9208:6 9224:1 9231:1 9249:1 9263:1 9272:1 9283:1 9288:1 9293:1 9353:1 9367:2 9376:2 9430:1 9433:1 9446:2 9472:1 9475:1 9487:1 9508:2 9551:1 9564:1 9565:1 9619:1 9719:1 9727:1 9729:1 9732:2 9773:2 9832:1 9836:1 9859:1 9870:1 9901:2 9932:1 9945:1 9958:2 9967:1 9990:2 9991:2 9999:1 10001:1 10010:1 10011:1 10013:1 10016:1 10018:1 10021:1 10026:1 10028:1 10035:1 10036:1 10061:1 10099:3 10106:1 10121:1 10125:1 10130:3 10133:3 10172:1 10202:1 10212:4 10229:3 10299:1 10316:1 10348:2 10349:1 10462:1 10470:1 10472:1 10495:1 10497:1 10531:6 10540:1 10566:1 10571:1 10598:1 10601:1 10625:1 10630:1 10632:1 10635:1 10651:3 10656:2 10688:1 10712:1 10723:1 10732:1 10741:1 10758:1 10763:1 10771:1 10786:2 10788:6 10839:1 10845:1 10867:1 10869:2 10926:1 10944:1 10970:1 10983:5 11007:1 11020:1 11031:1 11045:1 11051:1 11056:2 11061:1 11079:1 11101:1 11102:4 11112:2 11118:4 11167:1 11183:1 11185:11 11254:1 11277:1 11297:2 11303:4 11335:1 11365:2 11384:1 11395:1 11408:1 11436:1 11443:1 11456:1 11457:1 11462:1 11479:2 11480:1 11484:1 11499:1 11506:1 11520:1 11538:1 11552:1 11582:2 11608:1 11626:1 11680:1 11693:1 11723:1 11742:2 11818:1 11849:2 11868:1 11870:1 11885:1 11912:1 11932:1 11975:7 11979:1 12005:1 12018:1 12035:1 12057:11 12063:1 12085:1 12090:2 12114:1 12115:1 12141:2 12164:1 12179:1 12180:1 12186:1 12251:1 12253:1 12261:1 12263:1 12280:1 12315:1 12378:4 12387:1 12390:1 12391:1 12394:2 12408:1 12413:1 12414:8 12418:1 12439:1 12456:1 12473:2 12474:1 12510:1 12511:8 12523:1 12526:14 12597:3 12626:1 12653:1 12670:1 12689:1 12728:1 12757:2 12759:1 12764:1 12889:1 12891:1 12894:2 12903:1 12927:2 12939:1 12978:1 13005:10 13012:1 13015:1 13051:1 13055:2 13056:1 13080:2 13088:1 13095:1 13096:1 13097:1 13107:1 13122:1 13128:1 13138:1 13170:3 13172:2 13199:2 13244:1 13245:1 13290:1 13297:1 13300:1 13301:1 13336:1 13343:1 13403:2 13412:1 13422:1 13429:1 13430:1 13463:1 13468:1 13498:1 13509:1 13527:1 13535:1 13541:1 13552:1 13563:1 13586:1 13593:2 13641:1 13671:3 13687:1 13739:3 13756:1 13771:1 13793:1 13794:1 13810:1 13819:1 13834:1 13867:1 13879:1 13887:1 13895:1 13930:1 13943:1 14001:1 14015:1 14042:2 14053:1 14066:1 14087:1 14177:3 14184:1 14232:1 14240:2 14271:1 14330:1 14352:2 14382:3 14383:1 14385:1 14387:1 14432:1 14433:1 14475:1 14483:1 14500:1 14544:1 14549:1 14550:17 14574:1 14580:1 14584:1 14589:1 14621:1 14625:1 14628:1 14674:1 14695:1 14757:2 14765:1 14768:2 14769:1 14770:1 14777:1 14789:1 14794:1 14799:2 14808:1 14814:1 14847:2 14849:1 14888:1 14895:1 14911:3 14912:1 14939:1 15004:1 15037:2 15057:1 15068:1 15085:1 15094:1 15128:1 15130:2 15152:1 15166:3 15184:1 15185:1 15197:1 15204:1 15206:1 15210:1 15244:1 15269:1 15273:1 15274:2 15279:1 15280:1 15282:2 15284:1 15287:1 15290:1 15295:1 15300:4 15314:1 15331:3 15351:1 15495:1 15528:1 15567:1 15604:1 15623:1 15649:1 15653:1 15661:1 15664:1 15667:1 15668:1 15671:1 15680:1 15725:1 15733:1 15734:1 15742:1 15755:2 15758:3 15772:1 15780:1 15804:1 15814:2 15836:1 15844:1 15861:2 15868:9 15870:1 15892:1 15921:2 15924:1 15928:1 15930:2 15939:2 15941:2 15962:1 15971:2 15992:1 15997:1 15999:2 16015:1 16020:2 16042:1 16050:1 16068:1 16074:1 16080:1 16081:1 16090:1 16096:1 16100:1 16102:1 16118:1 16129:1 16131:1 16161:1 16187:1 16193:1 16197:1 16200:1 16214:1 16230:2 16374:1 16412:1 16416:1 16534:1 16548:1 16556:2 16563:1 16578:1 16598:1 16604:1 16607:1 16628:1 16666:1 16695:1 16704:6 16748:2 16769:1 16786:3 16788:1 16789:2 16799:1 16828:1 16839:1 16854:1 16859:1 16862:1 16871:1 16879:3 16886:2 16888:1 16891:1 16899:1 16912:1 16918:1 16940:8 16963:1 17005:1 17012:1 17056:1 17067:1 17096:1 17112:1 17154:1 17169:1 17176:1 17184:1 17188:2 17203:1 17237:1 17277:1 17284:1 17348:2 17374:3 17383:2 17448:1 17449:1 17470:1 17559:1323 17560:2 17575:3 17601:1 17642:1 17670:1 17690:1 17693:1 17699:2 17704:1 17724:1 17750:1 17761:3 17770:1 17773:3 17774:1 17775:1 17776:1 17805:1 17842:2 17964:3 18020:1 18024:1 18039:1 18071:2 18079:1 18092:1 18100:1 18142:1 18169:1 18208:1 18209:2 18223:2 18239:1 18245:4 18265:1 18274:2 18293:1 18303:1 18330:1 18338:1 18351:1 18383:1 18394:8 18402:1 18452:1 18480:1 18516:1 18547:1 18579:1 18605:1 18613:2 18629:1 18635:1 18641:1 18657:2 18658:1 18669:1 18673:1 18694:1 18695:1 18702:1 18719:1 18754:2 18773:1 18777:1 18782:1 18820:1 18839:1 18840:1 18846:2 18879:1 18890:1 18898:3 18946:1 18948:1 18956:1 18959:1 18965:1 18968:1 18973:2 18977:1 18991:2 18994:3 19005:2 19011:1 19030:1 19044:2 19046:1 19061:5 19065:3 19099:1 19107:1 19168:1 19183:1 19207:1 19209:1 19254:1 19285:1 19308:1 19327:1 19330:1 19333:1 19339:1 19340:2 19378:1 19394:1 19403:1 19409:1 19440:1 19446:1 19470:1 19535:1 19538:1 19551:1 19555:1 19589:1 19620:1 19626:2 19646:1 19658:1 19662:1 19668:1 19679:1 19718:1 19728:3 19736:1 19781:10 19788:2 19807:4 19834:1 19844:1 19856:1 19859:1 19864:1 19866:1 19869:1 19875:1 19876:1 19893:1 19922:2 19970:1 20026:3 20065:1 20070:3 20084:2 20152:1 20161:1 20167:1 20168:1 20183:1 20193:3 20195:1 20199:1 20210:1 20211:1 20270:1 20285:1 20302:1 20322:2 20346:1 20361:2 20363:1 20366:2 20408:1 20414:1 20472:1 20473:1 20495:1 20520:1 20523:1 20524:1 20589:1 20603:3 20604:2 20605:3 20611:1 20615:1 20634:1 20636:1 20638:2 20646:1 20665:1 20676:1 20693:1 20715:2 20749:1 20761:1 20772:1 20775:2 20787:3 20815:1 20831:1 20846:1 20884:1 20902:1 20913:2 20920:2 20926:1 20946:1 20968:1 20972:2 20978:2 21021:1 21049:1 21050:1 21078:1 21100:1 21112:2 21158:2 21160:1 21167:2 21169:1 21202:1 21211:1 21239:1 21243:1 21270:1 21284:1 21304:1 21332:3 21336:1 21352:1 21356:1 21376:1 21388:1 21393:2 21396:1 21399:1 21401:1 21415:1 21426:3 21433:1 21438:1 21444:3 21487:1 21490:2 21494:1 21500:1 21536:1 21568:1 21615:2 21626:1 21640:2 21675:2 21682:1 21687:1 21696:1 21706:1 21711:1 21720:1 21722:1 21743:1 21777:1 21813:1 21867:1 21871:1 21875:1 21877:1 21883:1 21914:1 21942:1 21944:3 21946:1 21951:1 21961:2 21974:1 21998:1 22010:1 22013:1 22020:1 22057:1 22060:1 22073:1 22082:1 22103:3 22108:1 22127:1 22136:1 22165:3 22189:1 22191:1 22198:1 22305:2 22387:1 22410:1 22416:3 22460:1 22500:1 22502:8 22573:2 22608:1 22634:1 22657:1 22662:1 22672:1 22678:1 22687:2 22688:7 22691:1 22705:1 22710:1 22711:1 22732:2 22744:1 22754:1 22811:1 22856:1 22857:1 22858:1 22862:1 22863:1 22864:1 22870:1 22874:1 22909:1 22918:1 22919:1 22922:2 22927:2 22932:1 22933:1 22939:1 22953:1 22960:1 22968:3 22984:1 23006:1 23007:1 23039:1 23068:2 23081:1 23090:1 23109:1 23173:1 23176:1 23204:1 23211:2 23248:1 23274:1 23282:1 23328:3 23381:1 23384:6 23396:1 23397:1 23399:1 23407:1 23413:1 23436:1 23437:1 23579:1 23596:2 23598:5 23635:1 23637:1 23647:2 23651:1 23660:2 23675:1 23705:1 23708:1 23729:1 23734:1 23818:1 23827:1 23854:1 23856:1 23861:1 23878:1 23891:1 23946:1 23948:1 23963:1 23964:1 23994:1 24092:1 24104:1 24111:1 24121:1 24142:1 24143:1 24144:2 24148:1 24198:1 24233:1 24262:3 24285:1 24300:1 24355:1 24362:1 24364:1 24365:1 24382:1 24394:1 24420:3 24436:1 24437:1 24440:1 24444:3 24469:1 24477:1 24494:1 24498:1 24500:3 24509:1 24525:1 24571:3 24572:1 24587:2 24642:3 24654:1 24671:2 24721:1 24738:1 24743:1 24750:1 24757:1 24776:1 24795:1 24796:1 24816:1 24819:1 24832:1 24836:3 24855:2 24888:1 24893:1 24897:1 24909:1 24941:1 24947:1 24958:1 24973:1 25010:1 25021:1 25033:1 25045:1 25082:1 25084:1 25095:1 25233:1 25241:1 25264:1 25280:1 25308:1 25349:1 25353:1 25367:1 25368:1 25385:1 25404:1 25407:1 25430:2 25440:1 25448:1 25461:4 25527:3 25531:1 25548:1 25551:1 25614:4 25631:1 25635:1 25664:1 25680:2 25694:2 25696:1 25702:1 25712:1 25723:1 25782:2 25807:1 25817:1 25835:1 25837:1 25912:2 25915:1 25928:1 25946:1 25980:2 25996:1 25998:6 26023:1 26045:1 26065:1 26105:1 26120:1 26178:3 26221:1 26250:3 26258:1 26293:1 26312:2 26341:1 26366:1 26372:1 26378:1 26382:1 26385:1 26392:14 26394:1 26396:1 26430:6 26443:1 26465:1 26489:2 26512:1 26518:1 26529:3 26560:4 26561:1 26568:1 26590:1 26605:1 26632:2 26634:1 26667:1 26688:2 26705:1 26726:1 26770:1 26785:1 26808:3 26810:3 26838:1 26852:1 26864:1 26869:1 26873:1 26875:2 26901:1 26910:1 26997:2 27010:1 27011:1 27015:10 27032:1 27048:1 27054:1 27104:1 27112:1 27121:1 27167:1 27188:1 27204:1 27219:1 27227:1 27233:2 27394:1 27403:1 27433:1 27439:2 27442:1 27475:2 27479:1 27502:1 27509:1 27511:1 27512:1 27528:1 27548:1 27549:1 27561:1 27568:1 27578:1 27585:1 27587:2 27592:1 27600:1 27602:1 27612:1 27640:1 27643:2 27653:1
20 17:1 21:1 22:1 26:1 29:1 72:1 86:1 96:1 109:1 114:1 145:1 155:1 168:1 207:1 241:1 245:1 246:1 263:3 298:1 317:1 323:2 324:1 366:1 435:1 441:2 471:1 526:1 549:1 556:1 592:1 615:1 617:1 620:1 716:1 848:1 853:2 865:2 867:1 877:1 883:3 894:1 908:1 915:3 933:1 935:1 937:1 939:3 941:2 948:1 956:1 966:3 991:3 992:3 996:1 1009:1 1040:1 1041:2 1045:1 1059:1 1079:1 1102:1 1110:1 1139:1 1186:1 1201:1 1202:1 1211:1 1215:1 1235:1 1271:1 1328:1 1356:2 1369:1 1383:1 1393:1 1395:1 1397:2 1418:3 1430:1 1437:1 1440:1 1441:1 1446:1 1460:3 1482:5 1484:2 1486:7 1490:1 1496:1 1501:1 1505:1 1517:1 1518:1 1522:1 1527:1 1541:1 1543:1 1550:9 1568:1 1569:1 1593:1 1608:1 1635:1 1655:1 1703:5 1709:1 1754:1 1760:2 1791:1 1799:1 1830:1 1843:2 1851:1 1868:1 1882:1 1883:1 1924:1 1942:1 1954:4 1974:1 1994:1 1996:3 2007:1 2014:1 2055:3 2059:1 2088:1 2093:2 2099:1 2120:1 2123:8 2126:1 2136:1 2139:1 2141:2 2142:1 2146:1 2161:1 2163:2 2186:1 2195:1 2196:4 2198:1 2202:1 2210:2 2212:1 2214:3 2215:2 2218:2 2225:1 2228:2 2232:2 2278:1 2298:1 2304:1 2324:1 2348:1 2351:1 2376:1 2387:1 2406:1 2434:1 2458:1 2490:1 2497:1 2509:1 2520:1 2522:1 2528:1 2562:1 2571:1 2592:1 2610:1 2618:2 2625:1 2655:2 2686:1 2691:1 2713:1 2742:1 2765:3 2774:2 2775:8 2778:1 2788:1 2791:2 2806:1 2810:1 2826:7 2909:1 2929:2 2983:3 3074:1 3108:1 3116:1 3125:1 3174:2 3205:3 3238:1 3266:1 3286:1 3328:1 3337:1 3389:1 3440:1 3456:1 3458:1 3460:1 3467:1 3489:1 3497:1 3524:1 3535:1 3537:1 3543:1 3544:1 3553:1 3584:2 3592:1 3593:2 3638:3 3639:1 3662:1 3664:6 3703:1 3723:1 3736:1 3744:1 3751:3 3769:1 3772:1 3795:1 3804:1 3819:1 3820:2 3842:1 3849:2 3850:1 3878:1 3897:1 3949:1 3969:1 3991:1 4020:1 4097:1 4120:1 4160:1 4168:1 4170:1 4191:1 4225:2 4228:1 4255:1 4289:1 4323:1 4324:1 4355:1 4372:1 4411:1 4418:1 4434:1 4455:2 4456:1 4463:1 4501:1 4503:1 4553:1 4564:1 4579:1 4592:1 4616:1 4619:1 4659:1 4679:1 4688:1 4693:1 4701:5 4736:1 4756:1 4795:3 4799:4 4817:3 4818:1 4839:1 4840:1 4841:2 4843:2 4845:2 4849:1 4862:1 4950:1 4959:1 4995:1 5004:1 5007:1 5018:1 5030:1 5038:1 5040:1 5066:3 5071:1 5086:1 5123:2 5141:1 5144:1 5149:1 5173:2 5186:1 5211:1 5217:1 5231:2 5261:1 5333:2 5355:2 5375:1 5385:1 5391:1 5398:1 5407:1 5414:3 5428:1 5447:1 5473:1 5486:1 5529:1 5537:1 5540:1 5549:2 5566:1 5570:1 5572:1 5592:1 5629:3 5652:2 5657:2 5664:1 5665:1 5708:1 5716:1 5745:1 5764:2 5781:2 5789:1 5799:1 5815:2 5829:2 5859:1 5863:1 5873:1 5925:3 5928:1 5932:1 5967:1 5996:3 5998:1 6010:1 6024:1 6041:1 6063:1 6065:1 6080:3 6095:1 6099:2 6100:1 6103:2 6105:1 6106:2 6108:3 6151:1 6169:1 6201:1 6212:1 6217:1 6230:1 6277:1 6336:1 6385:1 6403:1 6408:1 6415:1 6416:2 6424:1 6427:2 6465:1 6473:1 6475:1 6477:1 6483:2 6501:1 6502:1 6504:1 6526:1 6527:1 6557:1 6610:3 6642:3 6652:1 6653:1 6659:1 6665:1 6669:1 6696:1 6714:1 6718:2 6731:1 6753:1 6766:1 6793:5 6794:1 6804:1 6817:1 6855:2 6887:1 6901:1 6906:1 6907:1 6955:1 6970:1 6976:1 6993:1 7008:1 7025:1 7056:3 7065:1 7066:3 7083:1 7085:1 7091:1 7104:1 7140:2 7142:1 7162:1 7168:1 7185:1 7193:2 7195:1 7197:1 7227:1 7234:1 7261:2 7268:6 7284:1 7287:1 7289:3 7292:1 7328:19 7346:4 7347:6 7357:1 7384:1 7401:2 7407:1 7467:1 7538:1 7572:1 7587:3 7596:1 7601:1 7615:1 7677:1 7693:1 7700:1 7704:1 7717:1 7723:9 7733:1 7735:1 7762:1 7791:16 7816:1 7835:1 7839:1 7842:1 7849:1 7855:1 7944:1 7950:1 7964:1 7969:2 7986:1 8002:3 8024:1 8073:1 8112:1 8113:2 8125:3 8130:4 8133:1 8136:1 8141:3 8219:1 8248:1 8277:1 8299:1 8368:1 8383:1 8391:2 8423:1 8433:1 8440:1 8445:2 8457:1 8480:1 8488:1 8495:1 8514:1 8518:1 8524:1 8560:2 8566:6 8569:4 8573:1 8585:3 8598:1 8684:1 8707:1 8713:1 8735:1 8791:2 8794:1 8811:1 8813:1 8817:1 8893:1 8925:1 8967:1 8974:1 8988:2 9002:1 9017:1 9102:1 9105:3 9110:6 9123:3 9163:1 9166:1 9180:2 9182:1 9186:1 9208:6 9224:1 9231:1 9249:1 9263:1 9272:1 9283:1 9288:1 9293:1 9353:2 9367:2 9376:2 9430:1 9433:1 9446:2 9472:1 9475:1 9487:1 9508:2 9551:1 9564:1 9565:1 9619:1 9719:1 9727:1 9729:1 9732:2 9773:2 9832:1 9836:1 9859:1 9870:1 9901:2 9932:1 9945:1 9958:3 9967:1 9990:2 9991:2 9999:1 10001:1 10010:1 10011:1 10013:1 10016:1 10018:1 10021:1 10026:1 10028:1 10035:1 10036:1 10060:1 10061:1 10099:3 10106:1 10121:1 10125:1 10130:3 10133:4 10172:1 10202:1 10212:4 10229:3 10299:1 10316:1 10348:3 10349:1 10462:1 10470:1 10472:1 10474:1 10495:1 10497:1 10531:6 10540:1 10566:1 10571:1 10598:1 10601:1 10625:1 10630:1 10632:1 10635:1 10651:3 10656:2 10688:1 10712:1 10723:1 10732:1 10741:1 10758:1 10763:1 10771:1 10786:2 10788:6 10839:1 10845:1 10867:1 10869:2 10926:1 10944:1 10970:1 10983:5 11007:1 11020:1 11031:1 11045:1 11051:1 11056:2 11061:1 11079:1 11101:1 11102:4 11112:2 11118:4 11167:1 11183:1 11185:11 11254:1 11277:1 11297:2 11303:4 11335:1 11365:3 11384:1 11395:1 11408:1 11436:1 11443:1 11456:1 11457:1 11462:1 11479:3 11480:1 11484:1 11499:1 11506:1 11520:1 11538:1 11552:1 11582:2 11608:1 11626:1 11680:1 11693:1 11723:1 11742:2 11818:1 11849:2 11868:1 11870:1 11885:1 11912:1 11932:1 11975:7 11979:1 12005:1 12018:1 12035:1 12057:11 12063:1 12085:1 12090:2 12114:1 12115:1 12141:2 12164:1 12179:1 12180:1 12186:1 12251:1 12253:1 12261:1 12263:1 12280:1 12315:1 12378:4 12387:1 12390:1 12391:2 12394:2 12408:1 12413:1 12414:8 12416:1 12418:1 12439:1 12456:1 12473:2 12474:1 12510:1 12511:8 12516:1 12523:1 12526:14 12597:3 12626:1 12653:1 12670:1 12689:1 12728:1 12753:1 12757:2 12759:1 12764:1 12889:1 12891:1 12894:2 12903:1 12927:2 12939:1 12978:1 13005:10 13012:1 13015:1 13051:1 13055:2 13056:1 13080:2 13088:1 13095:1 13096:1 13097:1 13107:1 13122:1 13128:1 13138:1 13170:3 13172:2 13199:2 13244:1 13245:1 13290:1 13297:1 13300:1 13301:1 13336:1 13343:1 13403:2 13412:1 13422:1 13429:1 13430:1 13463:1 13465:1 13468:1 13498:1 13509:1 13527:1 13535:1 13541:1 13552:1 13563:1 13586:1 13587:1 13593:2 13618:1 13641:1 13671:3 13687:1 13739:3 13756:1 13771:1 13793:1 13794:1 13810:1 13819:1 13834:1 13867:1 13879:1 13887:1 13895:1 13910:1 13930:1 13943:1 14001:1 14015:1 14042:2 14053:1 14066:1 14087:1 14177:3 14184:1 14232:1 14240:2 14271:1 14278:1 14330:1 14352:2 14382:3 14383:1 14385:1 14387:1 14432:1 14433:1 14475:1 14483:1 14500:1 14544:1 14549:1 14550:17 14574:1 14580:1 14584:1 14589:1 14621:1 14625:1 14628:1 14674:1 14695:1 14757:2 14765:1 14768:2 14769:1 14770:2 14777:1 14789:1 14794:1 14799:2 14808:1 14814:1 14847:2 14849:1 14888:1 14895:1 14911:3 14912:1 14939:1 15004:1 15037:2 15051:1 15057:1 15068:1 15085:1 15094:1 15128:2 15130:2 15152:1 15166:3 15184:1 15185:1 15197:1 15204:1 15206:1 15210:1 15217:3 15244:1 15269:1 15273:1 15274:2 15279:1 15280:1 15282:2 15284:1 15287:1 15288:1 15290:1 15295:1 15300:5 15314:1 15331:3 15351:1 15495:1 15501:1 15528:1 15567:1 15604:1 15623:1 15649:1 15653:1 15661:1 15664:1 15667:1 15668:1 15671:1 15680:1 15725:1 15733:1 15734:1 15742:1 15755:2 15758:3 15772:1 15780:1 15804:1 15814:2 15818:1 15836:1 15844:1 15846:1 15861:3 15868:9 15870:1 15892:1 15921:2 15924:1 15928:1 15930:2 15939:2 15941:2 15962:1 15971:2 15992:1 15997:1 15999:2 16015:1 16020:2 16042:1 16050:1 16068:1 16074:1 16080:1 16081:1 16090:1 16096:1 16100:1 16102:1 16118:1 16129:1 16131:1 16161:1 16187:1 16193:1 16197:1 16200:1 16214:1 16230:2 16374:1 16412:1 16416:1 16466:1 16534:1 16548:1 16556:2 16563:1 16578:1 16598:1 16604:1 16607:1 16610:1 16628:1 16666:1 16695:1 16704:6 16748:2 16769:1 16786:3 16788:1 16789:2 16799:1 16828:1 16839:1 16854:1 16859:1 16862:1 16871:1 16879:3 16886:2 16888:1 16891:1 16899:1 16912:1 16918:1 16940:8 16963:1 17005:1 17012:1 17056:1 17067:1 17096:1 17112:1 17154:1 17169:1 17176:1 17184:1 17188:2 17203:1 17237:1 17277:1 17284:1 17348:2 17374:3 17383:2 17448:1 17449:1 17470:1 17559:1370 17560:2 17575:3 17590:1 17601:1 17624:1 17642:1 17670:1 17690:1 17693:1 17699:2 17704:1 17724:1 17750:1 17761:3 17770:1 17773:3 17774:1 17775:1 17776:1 17805:1 17842:2 17964:3 18020:1 18024:2 18039:1 18071:2 18079:1 18092:1 18100:1 18142:1 18169:1 18208:1 18209:2 18223:2 18239:1 18245:4 18265:1 18274:2 18293:1 18303:1 18330:1 18338:1 18350:1 18351:1 18383:1 18394:8 18402:1 18452:1 18480:1 18516:1 18547:1 18579:1 18605:1 18613:2 18629:1 18635:1 18639:1 18641:1 18657:2 18658:1 18669:1 18673:1 18678:1 18694:1 18695:1 18702:1 18719:1 18754:2 18773:1 18777:1 18782:1 18820:1 18839:1 18840:1 18846:2 18879:1 18890:1 18898:3 18909:1 18946:1 18948:1 18956:1 18959:1 18965:1 18968:1 18973:2 18977:1 18991:2 18994:3 19005:2 19011:1 19030:1 19044:2 19046:1 19061:5 19065:3 19099:1 19107:1 19168:1 19183:1 19207:1 19209:1 19254:1 19285:1 19308:1 19327:1 19330:1 19333:1 19339:1 19340:2 19378:1 19394:1 19403:1 19409:1 19440:1 19446:1 19470:1 19535:1 19538:1 19551:1 19555:1 19569:1 19589:1 19620:1 19626:2 19646:1 19658:1 19662:1 19668:1 19679:1 19718:1 19728:3 19736:1 19781:10 19788:2 19807:4 19830:1 19834:1 19844:1 19856:1 19859:1 19864:1 19866:1 19869:1 19875:1 19876:1 19893:1 19914:1 19922:2 19970:1 20026:3 20065:1 20070:3 20084:2 20152:1 20161:1 20167:1 20168:1 20183:1 20193:3 20195:1 20199:1 20210:1 20211:1 20270:1 20285:1 20302:1 20322:2 20346:1 20361:2 20363:1 20366:2 20408:1 20414:1 20472:1 20473:1 20495:1 20520:1 20523:1 20524:1 20589:1 20603:3 20604:3 20605:3 20611:1 20615:1 20634:1 20636:1 20638:2 20646:1 20665:1 20676:1 20693:1 20715:2 20749:1 20761:1 20772:1 20775:2 20787:3 20815:1 20831:1 20846:1 20884:1 20902:1 20913:2 20920:2 20926:1 20946:1 20968:1 20972:2 20978:2 21021:1 21049:1 21050:1 21065:1 21078:1 21091:1 21100:1 21112:2 21158:2 21160:1 21162:1 21167:2 21169:1 21202:1 21211:1 21239:1 21243:1 21270:1 21284:1 21304:1 21332:3 21336:1 21352:1 21356:1 21376:1 21388:1 21393:2 21396:1 21399:1 21401:1 21415:1 21426:3 21433:1 21438:1 21444:3 21487:2 21490:2 21494:1 21500:1 21536:1 21568:1 21615:3 21626:1 21640:2 21675:2 21682:1 21687:1 21696:1 21706:1 21711:1 21720:1 21722:1 21728:1 21743:1 21777:1 21813:1 21850:1 21867:1 21871:1 21875:1 21877:1 21883:1 21914:1 21942:1 21944:3 21946:1 21951:1 21961:2 21974:1 21998:1 22000:1 22010:1 22013:1 22020:1 22057:1 22060:1 22073:1 22082:1 22084:1 22103:3 22108:1 22127:1 22136:1 22165:3 22189:1 22191:2 22198:1 22282:1 22305:2 22387:2 22401:1 22410:1 22416:3 22460:1 22500:1 22502:8 22573:2 22608:1 22634:1 22657:1 22662:1 22672:1 22678:1 22687:2 22688:7 22691:1 22705:1 22710:1 22711:1 22729:1 22732:2 22744:1 22754:1 22811:1 22856:1 22857:1 22858:1 22862:1 22863:1 22864:1 22870:1 22874:1 22909:1 22918:1 22919:1 22922:2 22927:2 22932:1 22933:1 22939:1 22953:1 22958:1 22960:1 22968:3 22984:1 23006:1 23007:1 23039:1 23042:1 23068:2 23081:2 23090:1 23109:1 23173:1 23176:1 23204:1 23211:2 23248:1 23274:2 23282:1 23328:3 23381:1 23384:6 23393:1 23396:1 23397:1 23399:1 23407:1 23413:1 23436:1 23437:1 23579:1 23596:2 23598:5 23635:1 23637:1 23647:2 23651:1 23660:2 23675:1 23705:1 23708:1 23729:1 23734:1 23818:1 23826:1 23827:1 23854:1 23856:1 23861:1 23878:1 23891:1 23946:1 23948:1 23963:1 23964:1 23994:1 24092:1 24104:1 24111:1 24121:1 24142:1 24143:1 24144:2 24148:1 24198:1 24233:2 24262:3 24285:1 24300:1 24355:1 24362:1 24364:1 24365:1 24382:1 24394:1 24420:3 24436:1 24437:1 24440:1 24444:3 24448:1 24469:1 24477:1 24494:1 24498:1 24500:3 24509:1 24525:1 24571:3 24572:1 24587:2 24642:3 24654:1 24671:2 24721:1 24738:1 24743:1 24750:1 24757:1 24776:1 24795:1 24796:1 24816:1 24819:1 24832:1 24836:3 24855:2 24888:1 24893:1 24897:1 24909:1 24941:1 24947:1 24958:1 24973:1 25010:1 25021:1 25033:1 25045:1 25082:1 25084:1 25095:1 25233:1 25241:1 25264:1 25271:1 25280:1 25308:1 25349:1 25353:1 25367:1 25368:1 25385:2 25393:1 25404:1 25407:1 25430:2 25440:1 25448:1 25461:4 25513:1 25527:3 25531:1 25548:1 25551:1 25614:4 25631:1 25635:1 25664:1 25680:2 25694:2 25695:1 25696:1 25702:1 25703:1 25712:1 25723:1 25782:2 25807:1 25817:1 25835:1 25837:1 25912:2 25915:1 25928:1 25946:1 25980:2 25996:1 25998:6 26023:1 26045:1 26065:1 26105:1 26120:1 26165:1 26178:3 26221:1 26250:3 26258:1 26293:1 26312:3 26341:1 26366:1 26372:1 26378:1 26382:1 26385:1 26392:14 26394:1 26396:1 26430:6 26443:1 26465:1 26489:2 26512:1 26518:1 26529:3 26560:5 26561:1 26568:1 26590:1 26605:1 26632:2 26634:1 26667:2 26687:1 26688:2 26705:1 26726:1 26770:1 26785:1 26808:3 26810:3 26838:1 26852:1 26864:1 26869:1 26873:1 26875:2 26901:1 26910:1 26997:2 27010:1 27011:1 27015:10 27032:1 27048:1 27052:1 27054:1 27087:1 27104:1 27112:1 27121:1 27167:1 27188:1 27204:1 27219:1 27227:1 27233:2 27393:1 27394:1 27403:1 27433:1 27439:2 27442:1 27466:1 27475:2 27479:1 27502:1 27509:1 27511:1 27512:1 27528:1 27548:1 27549:1 27561:1 27568:1 27578:2 27585:1 27587:2 27592:1 27600:1 27602:1 27612:1 27640:1 27643:3 27653:1
20 17:1 21:1 22:1 26:1 29:1 72:1 86:1 96:1 109:1 114:1 145:1 155:1 168:1 207:1 241:1 245:1 246:1 263:3 298:1 317:1 323:2 324:1 366:1 435:1 441:2 471:1 526:1 529:1 549:1 556:1 579:1 592:1 615:2 617:1 620:1 716:1 848:1 853:2 865:2 867:1 877:1 883:3 885:1 894:1 908:1 915:3 933:1 935:2 937:1 939:3 941:2 948:1 956:1 966:3 991:3 992:3 996:1 1009:1 1018:1 1040:1 1041:2 1045:1 1059:1 1079:1 1102:1 1110:1 1139:1 1186:1 1201:1 1202:1 1211:1 1215:1 1219:1 1235:1 1271:1 1328:1 1356:2 1369:1 1383:1 1393:1 1395:1 1397:2 1418:3 1430:1 1437:1 1440:1 1441:1 1446:1 1460:3 1482:6 1484:2 1486:7 1490:1 1496:1 1501:1 1505:1 1517:1 1518:1 1522:1 1527:1 1541:1 1543:1 1550:9 1568:1 1569:1 1593:1 1607:1 1608:1 1635:1 1655:1 1703:5 1709:1 1726:1 1754:1 1760:2 1791:1 1799:1 1830:1 1843:2 1851:1 1868:1 1882:1 1883:1 1924:1 1942:1 1954:4 1974:1 1994:1 1996:3 2007:1 2014:1 2055:3 2059:1 2088:1 2093:2 2099:1 2120:1 2123:8 2126:2 2136:1 2139:1 2141:2 2142:1 2146:1 2161:1 2163:2 2186:1 2195:1 2196:4 2198:1 2202:1 2210:2 2212:1 2214:3 2215:2 2218:2 2225:1 2228:2 2232:2 2256:1 2278:1 2298:1 2304:1 2324:1 2348:1 2351:1 2376:1 2387:1 2406:1 2434:1 2458:1 2490:1 2497:1 2509:1 2520:1 2522:1 2528:1 2562:1 2571:1 2592:1 2610:1 2618:2 2625:1 2655:2 2686:1 2691:1 2713:1 2742:1 2765:3 2774:2 2775:8 2778:1 2788:1 2791:2 2806:1 2810:1 2826:8 2909:1 2929:2 2983:3 3037:1 3074:1 3108:1 3116:1 3125:1 3135:1 3174:2 3205:3 3238:1 3266:1 3286:1 3328:1 3337:1 3389:1 3440:1 3456:1 3458:1 3460:1 3467:1 3489:1 3497:1 3524:1 3535:1 3537:1 3543:1 3544:1 3553:2 3584:2 3592:1 3593:2 3638:3 3639:1 3662:1 3664:6 3703:1 3723:1 3736:1 3744:1 3751:3 3769:1 3772:1 3795:1 3804:1 3819:1 3820:2 3842:1 3849:2 3850:1 3878:1 3897:1 3949:1 3969:1 3991:1 4020:1 4097:1 4120:1 4160:1 4168:1 4170:1 4191:1 4225:2 4228:1 4255:1 4289:1 4293:1 4323:1 4324:1 4355:1 4372:1 4411:1 4418:1 4434:1 4455:2 4456:1 4463:1 4501:1 4503:1 4553:1 4564:1 4579:1 4592:1 4616:1 4619:1 4659:1 4679:1 4688:1 4693:1 4701:5 4710:1 4736:1 4756:1 4795:3 4799:4 4817:3 4818:1 4839:1 4840:1 4841:2 4843:2 4845:2 4849:1 4862:1 4950:1 4959:1 4995:1 5004:2 5007:1 5018:1 5030:1 5038:1 5040:1 5066:3 5071:1 5086:1 5123:2 5141:1 5144:1 5149:1 5173:2 5186:1 5211:1 5217:1 5227:1 5231:3 5261:1 5333:2 5355:2 5375:1 5385:1 5391:1 5398:1 5407:1 5414:3 5428:1 5447:1 5473:1 5486:1 5529:1 5537:1 5540:1 5549:2 5566:1 5570:1 5572:1 5592:1 5629:3 5630:1 5652:2 5657:2 5664:1 5665:1 5708:1 5716:1 5745:1 5764:2 5781:2 5789:1 5799:1 5815:2 5829:2 5831:1 5859:1 5863:1 5873:1 5925:3 5928:1 5932:1 5967:1 5996:3 5998:1 6010:1 6024:1 6041:1 6063:1 6065:1 6080:3 6095:1 6099:2 6100:1 6103:2 6105:1 6106:2 6108:3 6151:1 6169:1 6201:2 6212:1 6217:2 6230:1 6277:1 6336:1 6385:1 6403:1 6408:1 6415:1 6416:2 6424:1 6427:2 6465:1 6473:1 6475:1 6477:1 6483:2 6501:1 6502:1 6504:1 6526:1 6527:1 6557:1 6601:1 6610:3 6642:3 6652:1 6653:1 6659:1 6665:1 6669:1 6696:1 6714:1 6718:2 6731:1 6753:1 6766:1 6793:5 6794:1 6804:1 6817:1 6855:2 6879:1 6887:1 6901:1 6906:1 6907:1 6955:1 6970:1 6976:1 6993:1 7008:1 7025:1 7056:3 7065:1 7066:3 7083:1 7085:1 7091:1 7104:1 7140:2 7142:1 7162:1 7168:1 7185:1 7193:2 7195:1 7197:1 7227:1 7234:1 7261:2 7268:7 7284:1 7287:1 7289:3 7292:1 7328:19 7346:4 7347:7 7357:1 7384:1 7401:2 7407:1 7467:1 7538:1 7572:1 7587:3 7596:1 7601:1 7615:1 7677:1 7693:1 7700:1 7704:1 7717:1 7723:9 7733:1 7735:1 7762:1 7791:16 7816:1 7835:1 7839:1 7842:1 7849:1 7855:1 7877:1 7944:1 7950:1 7964:1 7969:2 7974:1 7986:1 7996:1 8002:3 8015:1 8024:1 8073:1 8112:1 8113:2 8123:1 8125:3 8130:4 8133:1 8136:1 8141:3 8154:1 8219:1 8248:1 8277:1 8299:1 8347:1 8368:1 8383:1 8391:2 8423:1 8433:1 8440:1 8445:2 8457:1 8480:1 8488:1 8495:1 8514:1 8518:1 8524:1 8560:2 8566:6 8569:4 8573:1 8585:3 8598:1 8684:1 8707:1 8713:1 8735:1 8791:2 8794:1 8811:1 8813:1 8817:1 8824:1 8893:1 8925:1 8967:1 8974:1 8988:2 9002:1 9017:1 9102:1 9105:3 9110:6 9123:3 9163:1 9166:1 9180:2 9182:1 9186:1 9208:8 9224:1 9231:1 9249:1 9263:1 9272:1 9283:1 9288:1 9293:1 9353:2 9367:2 9376:2 9430:1 9433:1 9446:2 9468:1 9472:1 9475:1 9487:1 9508:2 9551:1 9564:1 9565:1 9619:1 9719:1 9727:1 9729:1 9732:2 9773:2 9832:2 9836:1 9859:1 9870:1 9901:2 9932:1 9945:1 9958:3 9967:1 9990:2 9991:2 9999:1 10001:1 10010:1 10011:1 10013:1 10016:1 10018:1 10021:1 10026:1 10028:1 10035:1 10036:1 10060:1 10061:1 10099:3 10106:1 10121:1 10125:1 10130:4 10133:4 10172:1 10202:1 10212:4 10229:3 10299:1 10316:1 10328:1 10347:1 10348:3 10349:1 10462:1 10470:1 10472:1 10474:1 10495:1 10497:1 10531:6 10540:1 10566:1 10571:1 10598:1 10601:1 10625:1 10630:1 10632:1 10635:1 10651:3 10656:2 10688:1 10712:1 10723:1 10732:1 10741:1 10758:1 10763:1 10771:1 10786:2 10788:6 10839:1 10845:2 10867:1 10869:2 10902:1 10926:1 10944:1 10950:1 10970:1 10983:5 11007:1 11020:1 11031:1 11045:1 11051:1 11056:2 11061:1 11079:1 11101:1 11102:5 11112:2 11118:5 11167:1 11183:1 11185:11 11254:1 11277:1 11289:1 11297:2 11303:4 11335:1 11365:3 11384:1 11395:1 11408:1 11436:1 11443:1 11456:2 11457:2 11462:1 11479:3 11480:1 11484:1 11499:1 11506:1 11520:1 11538:1 11552:1 11582:2 11608:1 11626:1 11680:1 11693:1 11723:1 11742:2 11818:1 11849:2 11868:1 11870:1 11885:1 11912:1 11932:1 11975:7 11979:1 12005:1 12018:1 12035:1 12057:11 12063:1 12085:1 12090:2 12114:1 12115:1 12141:2 12164:1 12179:1 12180:1 12186:1 12251:1 12253:1 12261:1 12263:2 12280:1 12315:1 12378:4 12387:1 12390:1 12391:2 12394:2 12408:1 12413:1 12414:8 12416:1 12418:1 12437:1 12439:1 12456:1 12473:2 12474:1 12510:1 12511:8 12516:1 12523:1 12526:14 12538:1 12597:3 12626:1 12653:1 12670:1 12689:1 12728:1 12753:1 12757:2 12759:1 12764:1 12889:1 12891:1 12894:2 12903:1 12927:2 12939:1 12978:1 13005:10 13012:1 13015:1 13051:1 13055:2 13056:1 13080:2 13088:1 13095:1 13096:1 13097:1 13107:1 13122:1 13128:1 13138:1 13170:3 13172:2 13199:2 13244:1 13245:1 13290:1 13297:1 13300:1 13301:1 13336:1 13343:1 13403:2 13412:1 13422:1 13429:1 13430:1 13463:1 13465:1 13468:1 13498:1 13509:1 13527:1 13535:1 13541:1 13552:1 13563:1 13586:1 13587:1 13593:2 13618:1 13641:2 13671:3 13687:1 13739:3 13756:1 13771:1 13793:1 13794:1 13810:1 13819:2 13834:1 13867:1 13879:1 13887:1 13895:1 13910:1 13930:1 13943:1 14001:1 14015:1 14042:2 14053:2 14066:1 14087:1 14177:3 14184:1 14185:1 14232:1 14240:2 14271:1 14278:1 14330:1 14352:3 14382:3 14383:1 14385:1 14387:1 14432:1 14433:1 14475:1 14483:1 14500:1 14544:1 14549:1 14550:18 14574:1 14580:1 14584:1 14589:1 14621:1 14625:1 14628:1 14662:1 14674:1 14695:1 14757:2 14765:1 14768:2 14769:1 14770:2 14777:1 14789:1 14794:1 14799:2 14808:1 14814:1 14847:2 14849:1 14888:1 14895:1 14911:4 14912:1 14939:1 15004:1 15037:2 15051:1 15057:1 15068:1 15085:1 15094:1 15128:2 15130:2 15152:1 15166:3 15184:1 15185:1 15197:1 15204:1 15206:1 15210:1 15217:3 15238:1 15244:1 15269:1 15273:1 15274:2 15279:1 15280:1 15282:2 15284:1 15287:1 15288:1 15290:1 15295:1 15300:5 15314:1 15331:3 15351:1 15495:1 15501:1 15528:1 15567:1 15604:1 15623:1 15649:1 15653:1 15661:1 15664:1 15667:1 15668:1 15671:1 15680:1 15725:1 15733:1 15734:1 15742:1 15755:2 15758:4 15767:1 15772:1 15780:1 15804:1 15814:2 15818:1 15836:1 15844:1 15846:1 15861:3 15868:9 15870:1 15892:1 15921:2 15924:1 15928:1 15930:2 15939:2 15941:2 15962:1 15971:2 15992:1 15997:1 15999:2 16015:1 16020:2 16042:1 16050:1 16068:1 16074:1 16080:1 16081:1 16090:1 16096:1 16100:1 16102:1 16118:1 16129:1 16131:1 16161:1 16187:1 16193:1 16197:1 16200:1 16214:1 16230:2 16269:1 16374:1 16412:1 16416:1 16466:1 16487:1 16534:1 16548:1 16556:2 16563:1 16578:1 16598:1 16604:1 16607:1 16610:1 16628:1 16655:1 16666:1 16695:1 16704:6 16748:2 16769:1 16786:3 16788:1 16789:2 16799:1 16828:1 16839:1 16854:1 16859:1 16862:1 16871:1 16879:3 16886:2 16888:1 16891:1 16899:1 16912:1 16918:1 16920:1 16940:8 16963:1 17005:1 17012:1 17056:1 17067:1 17096:1 17112:1 17142:1 17154:1 17169:1 17176:1 17184:1 17188:2 17203:1 17237:1 17277:1 17284:1 17348:2 17374:3 17383:2 17444:1 17448:1 17449:1 17470:1 17559:1426 17560:2 17575:3 17590:1 17601:1 17624:1 17642:1 17670:1 17690:1 17693:1 17699:2 17704:1 17724:1 17750:1 17761:3 17770:1 17773:3 17774:1 17775:1 17776:1 17805:1 17842:2 17964:3 18020:1 18024:2 18039:1 18071:2 18079:1 18092:1 18100:1 18142:1 18166:1 18169:1 18208:1 18209:2 18223:2 18239:1 18245:4 18265:1 18274:2 18293:1 18303:1 18330:1 18338:1 18350:1 18351:1 18383:1 18394:8 18402:1 18452:1 18480:1 18516:1 18518:1 18544:1 18547:1 18579:1 18605:1 18613:2 18629:1 18635:1 18639:1 18641:1 18657:2 18658:2 18669:1 18673:1 18678:1 18694:1 18695:1 18702:1 18719:1 18754:2 18773:1 18777:1 18782:1 18820:1 18839:1 18840:1 18846:2 18879:1 18890:1 18898:4 18909:1 18946:1 18948:1 18956:1 18959:1 18965:1 18968:1 18973:2 18977:1 18991:2 18994:3 19005:2 19011:1 19030:1 19044:2 19046:1 19061:6 19065:3 19099:1 19107:1 19168:1 19183:1 19207:1 19209:1 19254:1 19285:1 19308:1 19327:1 19330:3 19333:1 19339:1 19340:2 19378:1 19394:1 19403:1 19409:1 19440:1 19446:1 19470:1 19535:1 19538:1 19551:1 19555:1 19569:1 19589:1 19620:1 19626:2 19646:1 19658:1 19662:1 19668:1 19679:1 19718:1 19728:3 19736:1 19781:10 19788:2 19807:4 19830:1 19834:1 19844:1 19856:1 19859:1 19864:1 19866:1 19869:1 19875:1 19876:1 19893:1 19914:1 19922:2 19970:1 20026:3 20065:1 20070:3 20084:2 20152:1 20161:1 20167:1 20168:1 20183:1 20193:3 20195:1 20199:1 20210:1 20211:1 20270:1 20285:1 20302:1 20322:2 20346:1 20361:2 20363:1 20366:2 20408:1 20414:1 20463:1 20472:1 20473:1 20495:1 20520:1 20523:1 20524:1 20589:1 20603:3 20604:3 20605:3 20611:1 20615:1 20634:1 20636:1 20638:2 20646:1 20665:1 20676:1 20693:1 20715:2 20749:1 20761:1 20772:2 20775:2 20787:3 20815:1 20831:1 20846:1 20884:1 20902:1 20913:2 20920:2 20926:1 20946:1 20968:1 20972:2 20978:2 21021:1 21049:1 21050:1 21065:1 21078:1 21091:1 21100:1 21112:2 21158:2 21160:1 21162:1 21167:2 21169:1 21202:1 21211:1 21239:1 21243:1 21270:1 21284:1 21304:1 21332:3 21336:1 21352:1 21356:1 21376:1 21388:1 21393:2 21396:1 21399:1 21401:1 21409:1 21415:1 21426:3 21433:1 21438:1 21444:3 21487:2 21490:2 21494:1 21500:1 21518:1 21536:1 21549:1 21568:1 21615:4 21626:1 21640:2 21675:2 21682:1 21687:1 21696:1 21706:1 21711:1 21720:1 21722:1 21728:1 21743:1 21777:1 21813:1 21850:1 21867:1 21871:1 21875:1 21877:1 21883:1 21914:1 21942:1 21944:3 21946:1 21951:1 21961:2 21974:1 21998:1 22000:1 22010:1 22013:1 22020:1 22057:1 22060:1 22073:1 22082:1 22084:1 22103:3 22108:1 22127:1 22136:1 22165:3 22189:1 22191:2 22198:1 22282:1 22305:2 22325:1 22387:2 22401:1 22410:1 22416:3 22460:1 22500:1 22502:8 22573:2 22608:1 22634:1 22657:1 22662:1 22672:1 22678:1 22687:2 22688:7 22691:1 22705:1 22710:1 22711:1 22729:1 22732:2 22744:1 22754:1 22811:1 22856:1 22857:1 22858:1 22861:1 22862:1 22863:1 22864:1 22870:1 22874:1 22909:1 22918:1 22919:1 22922:2 22927:2 22932:1 22933:1 22939:1 22953:1 22958:1 22960:1 22968:3 22984:1 23006:1 23007:1 23039:1 23042:1 23061:1 23068:2 23081:2 23090:1 23109:1 23173:1 23176:1 23204:1 23211:2 23248:1 23274:2 23282:1 23328:4 23371:1 23381:1 23384:6 23393:1 23396:1 23397:1 23399:1 23407:1 23413:1 23436:1 23437:1 23535:1 23579:1 23596:2 23598:5 23635:1 23637:1 23647:2 23651:1 23660:2 23675:1 23705:1 23708:1 23729:1 23734:1 23818:1 23826:1 23827:1 23854:1 23856:1 23859:1 23861:1 23878:1 23891:1 23946:1 23948:1 23963:1 23964:1 23994:1 24092:1 24104:1 24111:1 24121:1 24142:1 24143:1 24144:2 24148:1 24198:1 24233:2 24262:3 24285:1 24300:1 24355:1 24362:1 24364:1 24365:1 24382:1 24394:1 24420:3 24436:1 24437:1 24440:1 24444:3 24448:1 24469:1 24477:1 24494:1 24498:1 24500:3 24509:1 24525:1 24571:3 24572:1 24587:2 24642:3 24654:1 24671:2 24721:1 24738:1 24743:1 24750:1 24757:1 24776:1 24795:1 24796:2 24812:1 24816:1 24819:1 24832:1 24836:3 24837:1 24855:2 24888:1 24893:1 24897:1 24909:3 24941:1 24947:1 24958:1 24973:1 25010:1 25021:1 25033:1 25045:1 25082:1 25084:1 25095:1 25228:1 25233:1 25241:1 25264:1 25271:1 25280:1 25308:1 25349:1 25353:1 25367:1 25368:2 25385:2 25393:1 25404:1 25407:1 25430:2 25440:1 25448:1 25461:4 25513:1 25524:1 25527:3 25531:1 25548:1 25551:1 25614:4 25631:1 25635:2 25664:1 25680:2 25694:2 25695:2 25696:1 25702:1 25703:1 25712:1 25723:1 25782:2 25807:1 25817:1 25835:1 25837:1 25912:2 25915:1 25928:2 25946:1 25980:2 25996:1 25998:6 26023:1 26045:1 26065:1 26105:1 26120:1 26165:1 26178:3 26221:1 26250:3 26258:1 26293:1 26312:4 26341:1 26366:1 26372:1 26378:1 26382:1 26385:1 26392:15 26394:1 26396:1 26430:8 26443:1 26465:1 26489:2 26512:1 26518:1 26529:3 26560:6 26561:1 26568:1 26590:1 26605:1 26632:2 26634:1 26667:2 26687:1 26688:2 26705:1 26726:1 26770:1 26785:1 26808:3 26810:3 26838:1 26852:1 26864:1 26869:1 26873:1 26875:2 26901:1 26910:1 26997:3 27010:1 27011:1 27015:10 27032:1 27048:1 27052:1 27054:1 27087:1 27104:1 27112:1 27121:1 27167:1 27176:1 27188:1 27204:1 27219:1 27227:1 27233:2 27393:1 27394:1 27403:1 27410:1 27433:1 27439:2 27442:1 27466:1 27475:2 27479:1 27502:1 27509:1 27511:1 27512:1 27528:1 27548:1 27549:1 27561:1 27568:1 27572:1 27578:2 27585:1 27587:2 27592:1 27600:1 27602:1 27612:1 27640:1 27643:3 27653:1
20 10:1 17:1 21:1 22:1 26:1 29:1 72:1 86:1 96:1 109:1 114:1 145:1 155:1 168:1 191:1 207:1 241:1 245:2 246:1 263:3 298:1 317:1 323:2 324:1 366:1 368:1 435:1 441:2 471:1 526:1 529:1 549:2 556:1 579:1 592:2 615:2 617:1 620:1 716:1 748:1 848:1 853:2 865:2 867:1 877:1 883:3 885:1 894:1 908:1 915:3 933:1 935:2 937:1 939:3 941:2 948:1 956:1 966:3 991:3 992:3 996:1 1009:1 1018:1 1040:1 1041:2 1045:1 1059:1 1079:1 1102:1 1110:2 1139:1 1186:1 1201:1 1202:1 1211:1 1215:1 1217:1 1219:1 1235:1 1271:1 1328:1 1356:2 1369:1 1383:1 1393:1 1395:1 1397:2 1418:3 1430:1 1437:1 1440:1 1441:1 1446:1 1460:3 1482:7 1484:2 1486:7 1490:1 1496:1 1501:1 1505:1 1517:1 1518:1 1522:1 1527:1 1541:1 1543:1 1550:9 1568:1 1569:1 1593:1 1607:1 1608:1 1635:1 1655:1 1703:5 1709:2 1726:1 1754:1 1760:2 1791:1 1799:1 1830:1 1839:1 1843:2 1851:1 1863:1 1868:1 1882:1 1883:1 1924:1 1942:1 1954:4 1974:1 1994:1 1996:3 2007:1 2014:1 2055:3 2059:1 2088:1 2093:2 2099:1 2120:2 2123:8 2126:2 2136:1 2139:1 2141:2 2142:1 2146:1 2161:1 2163:2 2186:1 2195:1 2196:4 2198:1 2202:1 2210:2 2212:1 2214:3 2215:2 2218:2 2225:1 2228:2 2232:2 2256:1 2278:1 2298:1 2304:1 2324:1 2348:1 2351:1 2376:1 2387:1 2406:1 2434:1 2458:1 2490:1 2497:1 2509:1 2520:1 2522:1 2528:1 2562:1 2571:1 2592:1 2610:1 2618:2 2625:1 2655:2 2686:1 2691:1 2713:1 2742:1 2765:3 2774:2 2775:8 2778:1 2788:1 2791:2 2792:1 2806:1 2810:1 2826:8 2909:1 2929:2 2983:3 3037:1 3074:1 3108:1 3116:1 3125:1 3135:1 3144:1 3174:2 3205:3 3238:1 3266:1 3286:1 3328:1 3337:1 3389:1 3440:1 3456:1 3458:1 3460:1 3467:1 3489:1 3497:1 3524:1 3535:1 3537:1 3543:1 3544:1 3553:2 3584:2 3592:1 3593:2 3638:3 3639:1 3662:1 3664:6 3703:1 3723:1 3736:1 3744:1 3751:3 3769:1 3772:1 3795:1 3804:1 3819:1 3820:2 3842:1 3849:2 3850:1 3878:1 3897:1 3949:1 3969:1 3991:1 4020:1 4097:1 4120:1 4160:1 4168:1 4170:1 4191:1 4225:2 4228:1 4255:1 4289:1 4293:1 4323:1 4324:1 4355:1 4372:1 4411:1 4418:1 4434:1 4455:2 4456:1 4463:1 4501:1 4503:1 4553:1 4564:1 4579:1 4592:1 4616:1 4619:1 4659:1 4679:1 4688:1 4693:1 4701:6 4710:1 4736:1 4756:1 4795:3 4799:4 4817:3 4818:1 4839:1 4840:1 4841:2 4843:2 4845:2 4849:1 4862:1 4950:1 4959:1 4995:1 5004:3 5007:1 5018:1 5030:1 5038:1 5040:1 5066:3 5071:1 5086:1 5123:2 5141:1 5144:1 5149:1 5173:2 5186:1 5211:1 5217:1 5227:1 5231:3 5261:1 5333:2 5355:2 5375:1 5385:2 5391:1 5398:1 5400:1 5407:1 5414:3 5428:1 5447:1 5473:1 5486:1 5529:1 5537:1 5540:1 5549:2 5566:1 5570:1 5572:1 5592:2 5629:3 5630:1 5652:2 5657:2 5664:1 5665:1 5708:1 5716:1 5745:1 5764:2 5781:2 5789:1 5799:1 5815:2 5829:2 5831:1 5859:1 5863:1 5873:1 5925:3 5928:1 5932:1 5967:1 5996:3 5998:1 6010:1 6024:1 6031:1 6041:1 6063:2 6065:2 6080:3 6095:1 6099:2 6100:1 6103:2 6105:1 6106:2 6108:3 6151:1 6169:1 6201:3 6212:1 6217:3 6230:1 6277:1 6278:1 6336:1 6385:1 6403:1 6408:1 6415:1 6416:2 6424:1 6427:2 6465:1 6473:1 6475:1 6477:1 6483:2 6501:1 6502:1 6504:1 6526:1 6527:1 6557:2 6601:1 6610:3 6642:3 6652:1 6653:1 6659:1 6665:1 6669:1 6696:1 6714:1 6718:2 6731:1 6753:1 6766:1 6793:6 6794:1 6804:1 6817:1 6855:2 6879:1 6887:1 6901:1 6906:1 6907:1 6955:1 6970:1 6976:1 6993:1 7008:1 7025:1 7056:3 7065:1 7066:3 7083:1 7085:1 7091:1 7104:1 7140:2 7142:1 7162:1 7168:1 7185:1 7193:2 7195:1 7197:1 7227:1 7234:1 7261:2 7268:7 7284:1 7287:1 7289:3 7292:1 7328:19 7346:4 7347:8 7357:1 7384:1 7401:2 7407:1 7415:1 7467:1 7538:1 7572:1 7587:3 7596:1 7601:1 7615:1 7677:1 7693:1 7700:1 7704:1 7717:1 7723:9 7733:1 7735:1 7762:1 7791:16 7816:1 7835:1 7839:1 7842:1 7849:1 7855:1 7877:1 7910:1 7944:1 7950:1 7964:1 7969:2 7974:1 7986:1 7996:1 8002:3 8015:1 8024:1 8073:1 8112:1 8113:2 8123:1 8125:3 8130:4 8133:1 8136:1 8141:3 8154:1 8157:1 8217:1 8219:1 8248:1 8277:1 8299:1 8347:1 8368:1 8383:1 8391:2 8423:1 8433:1 8440:1 8445:2 8457:1 8480:1 8488:1 8495:1 8514:1 8518:1 8524:1 8558:1 8560:2 8566:6 8569:4 8573:1 8585:3 8598:1 8684:1 8707:1 8713:1 8735:1 8791:2 8794:1 8804:1 8811:1 8813:1 8817:1 8824:1 8893:1 8909:1 8925:2 8967:1 8974:1 8988:2 9002:1 9017:1 9074:1 9102:1 9105:3 9110:6 9123:3 9141:1 9163:1 9166:1 9180:2 9182:1 9186:1 9208:9 9224:1 9231:1 9249:1 9263:1 9272:1 9280:1 9283:1 9288:1 9293:1 9353:2 9367:2 9376:2 9394:1 9430:1 9433:1 9446:2 9468:1 9472:1 9475:1 9487:1 9508:2 9551:1 9564:1 9565:1 9619:1 9719:1 9727:1 9729:1 9732:2 9773:2 9832:3 9836:1 9856:1 9859:1 9870:1 9901:2 9932:1 9945:1 9958:3 9967:1 9990:2 9991:2 9999:1 10001:1 10010:1 10011:1 10013:1 10016:1 10018:1 10021:1 10026:1 10028:1 10035:1 10036:1 10060:1 10061:1 10099:3 10106:1 10121:1 10125:1 10130:4 10133:4 10172:1 10202:1 10212:4 10229:3 10299:1 10316:1 10328:1 10347:1 10348:3 10349:1 10462:1 10470:1 10472:1 10474:1 10495:1 10497:1 10531:6 10540:1 10566:1 10571:1 10598:1 10601:1 10625:1 10630:1 10632:1 10635:1 10651:3 10656:2 10687:1 10688:1 10712:1 10723:1 10732:1 10741:1 10758:1 10763:1 10771:1 10786:2 10788:6 10839:1 10845:2 10867:1 10869:2 10902:1 10926:1 10930:1 10944:1 10950:1 10970:1 10983:5 10988:1 11007:1 11020:1 11031:1 11034:1 11045:1 11051:1 11056:2 11061:1 11079:1 11101:1 11102:5 11112:2 11118:6 11167:1 11183:1 11185:11 11254:1 11277:1 11289:1 11297:2 11303:4 11335:1 11365:3 11384:1 11395:1 11408:1 11410:1 11436:1 11443:1 11456:2 11457:2 11462:1 11479:3 11480:1 11484:1 11499:1 11506:1 11520:1 11538:1 11552:1 11582:2 11608:1 11626:1 11680:1 11693:1 11723:1 11742:2 11818:1 11849:2 11868:1 11870:1 11885:1 11912:1 11932:1 11975:7 11979:1 12005:1 12018:1 12035:1 12057:11 12063:1 12085:1 12090:2 12114:1 12115:1 12141:2 12164:1 12179:1 12180:1 12186:1 12251:1 12253:1 12261:1 12263:2 12280:1 12315:1 12356:1 12378:4 12387:1 12390:1 12391:3 12394:2 12408:1 12413:1 12414:8 12416:1 12418:1 12437:1 12439:1 12456:1 12473:2 12474:1 12510:1 12511:8 12516:1 12523:1 12526:14 12538:1 12555:1 12597:3 12626:1 12653:1 12670:2 12689:1 12728:1 12753:1 12757:2 12759:1 12764:1 12887:1 12889:1 12891:1 12894:2 12903:1 12927:2 12939:1 12978:1 13005:10 13012:1 13015:1 13051:1 13055:2 13056:1 13080:2 13088:1 13095:1 13096:1 13097:1 13107:1 13122:1 13128:1 13138:1 13170:3 13172:2 13199:2 13244:1 13245:1 13290:1 13297:1 13300:1 13301:2 13336:1 13343:1 13403:2 13412:1 13422:1 13429:1 13430:1 13463:1 13465:1 13468:1 13498:1 13509:1 13527:1 13535:1 13541:1 13552:1 13563:1 13586:1 13587:1 13593:2 13618:1 13638:1 13641:3 13671:3 13687:1 13739:3 13756:1 13771:1 13793:1 13794:1 13810:1 13819:2 13834:1 13867:1 13879:1 13887:1 13895:1 13910:1 13930:1 13943:1 14001:1 14015:1 14042:2 14053:2 14066:1 14087:1 14177:3 14184:1 14185:1 14207:1 14232:1 14240:2 14271:1 14278:1 14330:1 14352:3 14382:3 14383:1 14385:1 14387:1 14432:1 14433:1 14475:1 14483:1 14500:1 14544:1 14549:1 14550:19 14574:1 14580:1 14584:1 14589:1 14621:1 14625:1 14628:1 14662:1 14674:1 14695:1 14757:2 14765:1 14768:2 14769:1 14770:2 14777:1 14789:1 14794:1 14799:2 14808:1 14814:1 14847:2 14849:1 14888:1 14895:1 14911:5 14912:2 14939:1 15004:1 15037:2 15051:1 15057:1 15068:1 15085:1 15094:1 15128:2 15130:2 15152:1 15166:3 15184:1 15185:1 15197:1 15204:1 15206:1 15210:1 15217:3 15238:1 15244:1 15269:1 15273:1 15274:2 15279:1 15280:1 15282:2 15284:1 15287:1 15288:1 15290:1 15295:1 15300:5 15314:1 15331:3 15351:1 15495:1 15501:1 15528:1 15567:1 15604:1 15623:1 15647:1 15649:1 15653:1 15661:1 15664:1 15667:1 15668:1 15671:1 15680:1 15725:1 15733:1 15734:2 15742:1 15755:2 15758:4 15767:2 15772:1 15780:1 15804:1 15814:2 15818:1 15836:1 15844:1 15846:1 15861:3 15868:9 15870:1 15892:1 15921:2 15924:1 15928:1 15930:2 15939:2 15941:2 15962:1 15971:2 15992:1 15997:1 15999:2 16015:1 16020:2 16042:1 16050:1 16068:1 16074:1 16080:1 16081:1 16090:1 16096:1 16100:1 16102:1 16118:1 16129:1 16131:1 16161:1 16187:1 16193:2 16197:1 16200:1 16214:1 16230:2 16255:1 16269:2 16374:1 16412:1 16416:1 16466:1 16487:1 16489:1 16534:1 16548:1 16556:2 16563:2 16578:1 16598:1 16604:1 16607:1 16610:1 16628:2 16655:1 16666:1 16695:1 16704:6 16740:1 16748:2 16769:1 16786:3 16788:1 16789:2 16799:1 16828:1 16839:1 16848:1 16854:1 16859:1 16862:1 16871:1 16879:3 16886:2 16888:1 16891:1 16899:1 16912:1 16918:1 16920:1 16940:8 16963:1 17005:1 17012:1 17056:1 17067:1 17096:1 17112:1 17142:1 17154:1 17169:1 17176:1 17184:1 17188:2 17203:1 17237:1 17277:1 17284:1 17348:2 17374:3 17383:2 17444:1 17448:1 17449:1 17470:1 17559:1474 17560:2 17575:3 17590:1 17601:1 17624:1 17642:1 17670:1 17690:1 17693:1 17699:2 17704:1 17724:1 17750:1 17761:4 17770:1 17773:3 17774:1 17775:1 17776:1 17788:1 17805:1 17842:2 17964:3 18020:1 18024:2 18039:1 18071:2 18079:1 18092:1 18100:1 18142:1 18166:1 18169:1 18208:1 18209:2 18223:2 18239:1 18245:4 18265:1 18274:2 18293:1 18303:1 18330:1 18338:1 18350:1 18351:1 18383:1 18394:8 18402:1 18452:1 18480:1 18516:1 18518:1 18544:1 18547:1 18579:1 18605:1 18613:2 18629:1 18635:1 18639:1 18641:1 18657:2 18658:2 18669:2 18673:1 18678:1 18694:1 18695:1 18702:1 18719:1 18754:2 18773:1 18777:1 18782:1 18820:1 18839:1 18840:1 18846:2 18879:1 18890:1 18898:4 18908:1 18909:1 18946:1 18948:1 18956:1 18959:1 18965:1 18968:1 18973:2 18977:1 18991:2 18994:3 19005:2 19011:1 19030:1 19044:2 19046:1 19061:6 19065:3 19099:1 19107:1 19168:1 19183:1 19207:1 19209:1 19254:1 19285:1 19308:1 19327:1 19330:4 19333:1 19339:1 19340:2 19378:1 19394:1 19403:1 19409:1 19440:1 19446:1 19470:1 19533:1 19535:1 19538:1 19551:1 19555:1 19569:1 19589:1 19620:1 19626:2 19646:1 19658:1 19662:1 19664:1 19668:1 19679:1 19691:1 19718:1 19728:3 19736:1 19781:10 19788:2 19792:1 19807:4 19830:1 19834:1 19844:1 19856:1 19859:1 19864:1 19866:1 19869:1 19875:1 19876:1 19893:1 19914:1 19922:2 19970:1 20026:3 20065:1 20070:3 20084:2 20152:1 20161:1 20167:1 20168:1 20183:1 20193:3 20195:1 20199:1 20210:1 20211:1 20270:1 20285:1 20302:1 20322:2 20346:1 20361:2 20363:1 20366:2 20408:1 20414:1 20463:1 20472:1 20473:1 20495:1 20520:1 20523:1 20524:1 20589:1 20603:3 20604:3 20605:3 20611:1 20615:1 20634:1 20636:1 20638:2 20646:1 20665:1 20676:1 20693:1 20715:2 20749:1 20761:1 20772:2 20775:2 20787:3 20815:1 20831:1 20846:1 20884:1 20902:1 20913:2 20919:1 20920:2 20926:1 20946:1 20968:1 20972:2 20978:2 21021:1 21038:1 21049:1 21050:1 21065:1 21078:1 21091:1 21100:1 21112:2 21158:2 21160:1 21162:2 21167:2 21169:1 21202:1 21211:1 21239:1 21243:1 21270:1 21284:1 21304:1 21332:3 21336:1 21352:1 21356:1 21376:1 21388:1 21393:2 21396:1 21399:1 21401:1 21409:1 21415:1 21426:3 21433:1 21438:1 21444:3 21487:2 21490:2 21494:1 21500:1 21518:1 21536:1 21549:1 21568:1 21615:4 21626:1 21640:2 21675:2 21682:1 21687:1 21696:1 21706:1 21711:1 21720:1 21722:1 21728:1 21743:1 21777:1 21813:1 21850:1 21867:1 21871:1 21875:1 21877:1 21883:1 21914:1 21942:1 21944:3 21946:1 21951:1 21961:2 21974:1 21998:1 22000:1 22010:1 22013:1 22020:1 22057:1 22060:1 22073:1 22082:1 22084:1 22103:3 22108:1 22127:1 22136:1 22165:3 22189:1 22191:2 22198:1 22282:2 22305:2 22325:1 22387:2 22401:1 22410:1 22416:3 22460:1 22500:1 22502:8 22573:2 22608:1 22634:1 22657:1 22662:1 22672:1 22678:1 22687:2 22688:7 22691:1 22705:1 22710:1 22711:1 22729:1 22732:2 22744:1 22754:1 22811:1 22856:1 22857:1 22858:1 22861:1 22862:1 22863:1 22864:1 22870:1 22874:1 22909:1 22918:1 22919:1 22922:2 22925:1 22927:2 22932:1 22933:1 22939:1 22953:1 22958:1 22960:2 22968:3 22969:1 22984:1 23006:1 23007:1 23039:1 23042:1 23061:1 23068:2 23081:2 23090:1 23109:1 23173:1 23176:1 23204:1 23211:2 23248:1 23274:2 23282:1 23328:5 23371:1 23381:1 23384:6 23393:1 23396:1 23397:1 23399:1 23407:1 23413:1 23436:1 23437:1 23535:1 23579:1 23596:2 23598:5 23635:1 23637:1 23647:2 23651:1 23660:2 23675:1 23701:1 23705:1 23708:1 23729:1 23734:1 23818:1 23826:1 23827:1 23854:1 23856:1 23859:1 23861:1 23878:1 23891:1 23946:1 23948:1 23949:1 23963:1 23964:1 23994:1 24034:1 24092:1 24104:1 24111:1 24121:1 24142:1 24143:1 24144:3 24148:1 24198:1 24233:2 24262:3 24285:1 24300:1 24355:1 24362:1 24364:1 24365:1 24382:1 24394:1 24420:3 24436:1 24437:1 24440:1 24444:3 24448:1 24469:1 24477:1 24494:1 24498:1 24500:3 24509:1 24525:1 24571:3 24572:1 24587:2 24642:3 24654:1 24671:2 24721:1 24738:1 24743:1 24750:1 24757:1 24776:1 24795:1 24796:2 24812:1 24816:1 24819:1 24832:2 24836:3 24837:1 24855:2 24882:1 24888:1 24893:1 24897:1 24909:3 24941:1 24947:1 24958:1 24973:1 25010:1 25021:1 25033:1 25034:1 25045:1 25082:1 25084:1 25095:1 25228:1 25233:1 25241:1 25264:1 25271:1 25280:1 25308:1 25349:1 25353:1 25367:1 25368:2 25384:1 25385:2 25389:1 25393:1 25404:1 25407:1 25430:2 25440:1 25447:1 25448:1 25461:4 25513:1 25524:1 25527:3 25531:1 25548:1 25551:1 25614:4 25631:1 25635:2 25664:1 25680:2 25694:2 25695:2 25696:1 25702:1 25703:1 25706:1 25712:1 25723:1 25782:2 25786:1 25807:1 25817:1 25835:1 25837:1 25849:1 25912:2 25915:1 25928:3 25946:1 25980:2 25996:1 25998:6 26017:1 26023:1 26045:1 26065:1 26105:1 26120:1 26165:1 26178:3 26221:1 26250:3 26258:1 26293:1 26312:4 26341:1 26366:1 26372:1 26378:1 26382:1 26385:1 26392:15 26394:1 26396:1 26430:10 26443:1 26465:1 26489:2 26512:1 26518:1 26522:1 26529:3 26560:6 26561:1 26568:1 26590:1 26605:1 26632:2 26634:1 26667:2 26687:1 26688:2 26705:1 26726:1 26770:1 26785:1 26808:3 26810:3 26838:1 26852:1 26864:1 26869:1 26873:1 26875:2 26901:1 26910:1 26997:3 27010:1 27011:1 27015:10 27032:1 27048:1 27052:1 27054:2 27087:1 27104:1 27112:1 27121:1 27167:1 27176:1 27188:1 27194:1 27204:1 27219:1 27227:1 27233:2 27393:1 27394:1 27403:1 27410:1 27433:1 27439:2 27442:1 27466:1 27475:2 27479:1 27502:1 27509:1 27511:1 27512:1 27528:1 27548:1 27549:1 27561:1 27568:1 27572:1 27578:2 27585:2 27587:2 27592:1 27600:1 27602:1 27612:1 27640:1 27643:3 27653:1
20 10:1 17:1 21:1 22:1 26:1 29:1 72:1 86:1 96:1 109:1 114:1 145:1 155:1 168:1 191:1 207:1 241:1 245:2 246:1 263:3 298:1 317:1 323:2 324:1 366:1 368:2 435:1 441:2 471:1 511:1 526:1 529:1 549:2 556:1 579:2 592:2 615:2 617:1 620:2 716:1 748:1 848:1 853:2 865:2 867:1 877:1 883:3 885:1 894:1 908:1 915:3 933:1 935:2 937:1 939:5 941:2 948:1 956:1 966:4 991:3 992:3 996:1 1000:1 1009:1 1018:1 1040:1 1041:2 1045:1 1059:1 1079:1 1097:1 1102:1 1110:2 1139:1 1180:1 1186:1 1201:1 1202:1 1211:1 1215:1 1217:1 1219:1 1235:1 1271:1 1328:1 1344:1 1356:2 1369:1 1383:1 1393:1 1395:1 1397:2 1418:3 1430:1 1437:1 1440:1 1441:1 1446:1 1460:3 1482:8 1484:2 1486:7 1490:1 1496:1 1501:1 1505:1 1517:1 1518:1 1522:1 1527:1 1541:1 1543:1 1550:9 1568:1 1569:1 1593:1 1607:1 1608:1 1635:1 1655:1 1703:5 1709:2 1726:1 1754:1 1760:2 1791:1 1799:1 1830:1 1839:1 1843:2 1851:1 1863:1 1868:1 1882:1 1883:1 1924:1 1942:1 1954:4 1974:1 1994:1 1996:3 2007:1 2014:1 2055:3 2059:1 2077:1 2088:1 2093:2 2099:1 2120:2 2123:8 2126:3 2136:1 2139:1 2141:2 2142:1 2146:1 2161:1 2163:2 2186:1 2195:1 2196:4 2198:1 2202:1 2209:1 2210:2 2212:1 2214:3 2215:2 2218:2 2225:1 2228:2 2232:2 2256:1 2278:1 2298:1 2304:1 2324:1 2348:1 2351:1 2376:1 2387:1 2406:1 2427:1 2434:1 2458:1 2490:1 2497:1 2509:1 2520:1 2522:1 2528:1 2562:1 2571:1 2592:1 2610:1 2618:2 2625:1 2655:2 2676:1 2686:1 2691:1 2713:1 2742:1 2765:3 2774:2 2775:8 2778:1 2788:1 2791:2 2792:1 2806:1 2810:1 2826:8 2909:1 2929:2 2983:3 3037:1 3074:1 3108:1 3116:1 3125:1 3135:1 3144:1 3174:2 3205:3 3227:1 3238:1 3266:1 3286:1 3328:1 3337:1 3389:1 3440:1 3456:1 3458:1 3460:1 3467:1 3489:1 3497:1 3524:1 3535:1 3537:1 3543:1 3544:1 3550:1 3553:2 3584:2 3592:1 3593:2 3638:3 3639:1 3662:1 3664:6 3703:1 3723:1 3736:1 3744:1 3751:4 3769:1 3772:1 3795:1 3804:1 3819:1 3820:2 3842:1 3849:2 3850:1 3878:1 3897:1 3931:1 3949:1 3969:1 3991:1 4020:1 4097:1 4120:1 4160:1 4168:1 4170:1 4191:1 4225:2 4228:1 4255:1 4289:1 4293:1 4323:1 4324:2 4355:1 4372:1 4411:1 4418:1 4434:1 4455:2 4456:1 4463:1 4478:1 4501:1 4503:1 4553:1 4564:1 4579:1 4592:1 4616:1 4619:1 4659:1 4679:1 4688:1 4693:1 4701:8 4710:1 4736:1 4756:1 4795:3 4799:5 4817:3 4818:1 4839:1 4840:1 4841:2 4843:2 4845:2 4848:1 4849:1 4862:1 4950:1 4959:1 4995:1 5004:4 5007:1 5018:1 5030:1 5038:1 5040:1 5066:3 5071:1 5086:1 5123:2 5141:1 5144:1 5149:1 5173:2 5186:1 5211:1 5217:1 5227:1 5231:3 5261:1 5333:2 5355:2 5375:1 5385:2 5391:1 5398:1 5400:1 5407:1 5414:3 5428:2 5447:1 5473:1 5486:1 5529:1 5537:1 5540:1 5549:2 5566:1 5570:1 5572:1 5592:2 5599:1 5629:3 5630:1 5652:2 5657:2 5664:1 5665:1 5708:1 5716:1 5745:1 5764:2 5781:2 5789:1 5799:1 5815:2 5829:2 5831:1 5859:1 5863:1 5873:1 5925:3 5928:1 5932:1 5967:1 5996:3 5998:1 6006:1 6010:1 6024:1 6031:2 6041:1 6063:2 6065:2 6080:3 6082:1 6095:1 6099:2 6100:1 6103:2 6105:1 6106:2 6108:3 6151:1 6169:1 6201:4 6212:1 6217:4 6230:1 6277:1 6278:1 6336:1 6385:1 6403:1 6408:1 6415:1 6416:2 6424:1 6427:2 6465:1 6473:1 6475:1 6477:1 6483:2 6501:1 6502:1 6504:1 6526:1 6527:1 6557:2 6601:1 6610:3 6642:3 6652:1 6653:1 6659:1 6665:1 6669:1 6696:1 6714:1 6718:2 6731:1 6753:1 6766:1 6793:6 6794:1 6804:1 6817:1 6855:2 6879:1 6887:1 6901:1 6906:1 6907:1 6955:1 6970:1 6976:1 6993:1 7008:1 7025:1 7056:3 7065:1 7066:3 7083:1 7085:1 7091:1 7104:1 7140:2 7142:1 7148:1 7162:1 7168:1 7185:1 7193:2 7195:1 7197:1 7227:1 7234:1 7258:1 7261:2 7268:7 7284:1 7287:1 7289:4 7292:1 7328:20 7346:4 7347:8 7357:1 7384:1 7401:2 7407:1 7415:1 7467:1 7538:1 7572:1 7587:3 7596:2 7601:1 7615:1 7677:1 7693:1 7700:1 7704:1 7717:1 7723:9 7733:1 7735:1 7762:1 7791:16 7816:1 7835:1 7839:1 7842:1 7849:1 7855:1 7877:1 7910:1 7944:1 7950:1 7964:1 7969:2 7974:1 7986:1 7988:1 7996:1 8002:3 8015:1 8024:1 8073:1 8112:1 8113:2 8115:1 8123:1 8125:3 8130:4 8133:1 8136:1 8141:3 8154:1 8157:1 8217:1 8219:1 8248:1 8277:1 8299:1 8347:1 8368:1 8383:1 8391:2 8423:1 8433:1 8440:1 8445:2 8457:1 8480:1 8488:1 8495:1 8514:1 8518:1 8524:1 8558:1 8560:2 8566:6 8569:4 8573:1 8585:3 8598:1 8684:1 8707:1 8713:1 8735:1 8791:2 8794:1 8804:1 8811:1 8813:1 8817:1 8824:1 8893:1 8909:1 8925:2 8956:1 8957:1 8967:1 8974:1 8988:2 9002:1 9017:2 9074:1 9102:1 9105:3 9110:6 9123:3 9141:1 9163:1 9166:1 9180:2 9182:1 9186:1 9208:9 9224:1 9231:1 9249:1 9263:1 9272:1 9280:1 9283:1 9288:1 9293:1 9353:2 9367:2 9376:2 9394:1 9430:1 9433:1 9446:2 9468:1 9472:1 9475:1 9487:1 9508:2 9551:1 9564:1 9565:1 9619:1 9719:1 9727:1 9729:1 9732:2 9773:2 9832:4 9836:1 9856:1 9859:1 9870:1 9901:2 9908:1 9926:1 9932:1 9945:1 9958:3 9967:1 9990:2 9991:2 9999:1 10001:1 10010:2 10011:1 10013:1 10016:1 10018:1 10021:1 10026:1 10028:1 10035:1 10036:1 10060:1 10061:1 10099:3 10106:1 10121:1 10125:1 10130:4 10133:4 10172:1 10202:1 10212:4 10229:3 10299:1 10316:1 10328:1 10340:1 10347:1 10348:3 10349:1 10352:1 10353:1 10433:1 10462:1 10470:1 10472:1 10474:1 10495:1 10497:1 10531:6 10540:1 10566:1 10571:1 10598:1 10601:1 10625:1 10630:1 10632:1 10635:1 10651:3 10656:2 10687:1 10688:1 10712:1 10723:1 10732:1 10741:1 10758:1 10763:1 10771:1 10786:2 10788:6 10839:1 10845:2 10867:1 10869:2 10902:1 10903:1 10926:1 10930:1 10944:1 10950:2 10970:1 10983:5 10985:1 10988:1 11007:1 11020:1 11031:1 11034:1 11042:1 11045:1 11051:1 11056:2 11061:1 11079:1 11101:1 11102:5 11112:2 11118:7 11167:1 11183:1 11185:11 11254:1 11277:1 11289:1 11297:2 11303:4 11335:1 11365:3 11384:1 11395:1 11408:1 11410:1 11436:1 11443:1 11456:2 11457:2 11462:1 11479:3 11480:1 11484:1 11499:1 11506:1 11520:1 11538:1 11552:1 11582:2 11608:1 11626:1 11680:1 11693:1 11723:1 11742:2 11818:1 11849:2 11868:1 11870:1 11885:1 11912:1 11932:1 11975:7 11979:1 12005:1 12018:1 12035:1 12057:11 12063:1 12085:1 12090:2 12114:1 12115:1 12141:2 12164:1 12179:1 12180:1 12186:1 12251:1 12253:1 12261:1 12263:3 12280:1 12315:1 12356:1 12378:4 12387:1 12390:1 12391:3 12394:2 12408:1 12413:1 12414:8 12416:1 12418:1 12437:1 12439:1 12456:1 12473:2 12474:1 12510:1 12511:8 12516:1 12523:1 12526:14 12538:1 12555:1 12597:3 12626:1 12653:1 12670:2 12689:1 12728:1 12753:1 12757:2 12759:1 12764:1 12887:1 12889:1 12891:1 12894:2 12903:1 12927:2 12939:1 12978:1 13005:10 13012:1 13015:1 13051:1 13055:2 13056:1 13080:2 13088:1 13095:1 13096:1 13097:1 13100:1 13107:1 13122:1 13128:1 13138:1 13170:3 13172:2 13199:2 13244:1 13245:1 13290:1 13297:1 13300:1 13301:2 13336:1 13343:1 13403:2 13412:1 13422:1 13429:1 13430:1 13463:1 13465:1 13468:1 13498:1 13509:1 13527:1 13535:1 13541:1 13542:1 13552:1 13563:1 13586:1 13587:1 13593:2 13618:1 13638:1 13641:4 13671:3 13687:1 13732:1 13739:3 13756:1 13771:1 13793:1 13794:1 13810:1 13819:2 13834:1 13867:1 13869:1 13879:1 13887:1 13895:1 13910:1 13930:1 13933:1 13943:1 14001:1 14015:1 14042:2 14045:1 14053:2 14066:1 14087:2 14177:3 14184:1 14185:1 14207:1 14232:1 14240:2 14271:1 14278:1 14330:1 14352:3 14382:3 14383:1 14385:1 14387:1 14405:1 14432:1 14433:1 14475:1 14483:1 14500:1 14544:1 14549:1 14550:20 14574:1 14580:1 14584:1 14589:1 14621:1 14625:1 14628:1 14662:1 14671:1 14674:1 14695:1 14757:2 14765:1 14768:2 14769:1 14770:2 14777:1 14789:1 14794:1 14799:3 14808:1 14814:1 14847:2 14849:1 14888:1 14889:1 14895:1 14911:5 14912:2 14939:1 15004:1 15037:2 15051:1 15057:1 15068:1 15085:1 15094:1 15128:2 15130:2 15152:1 15166:3 15176:1 15184:1 15185:1 15197:1 15204:1 15206:1 15210:1 15217:3 15238:1 15244:1 15269:1 15273:1 15274:2 15279:1 15280:1 15282:2 15284:1 15287:1 15288:1 15290:1 15295:1 15300:5 15314:1 15331:3 15351:1 15410:1 15495:1 15501:1 15528:1 15567:1 15604:1 15623:1 15647:1 15649:1 15653:1 15661:1 15664:1 15667:1 15668:1 15671:1 15680:1 15725:1 15733:1 15734:2 15742:1 15755:2 15758:4 15767:2 15772:1 15780:1 15804:1 15814:2 15818:1 15836:1 15844:1 15846:1 15861:3 15868:9 15870:1 15892:1 15921:2 15924:1 15928:1 15930:2 15939:2 15941:2 15962:1 15968:1 15971:2 15992:1 15997:1 15999:2 16015:1 16020:2 16042:1 16050:1 16068:1 16074:1 16080:1 16081:1 16090:1 16096:1 16100:1 16102:1 16118:1 16129:1 16131:1 16161:1 16187:1 16193:2 16197:1 16200:1 16214:1 16230:2 16252:1 16255:1 16269:2 16374:1 16378:1 16412:1 16416:1 16466:1 16487:1 16489:1 16534:1 16535:1 16548:1 16556:2 16563:2 16578:1 16580:1 16598:1 16604:1 16607:1 16610:1 16628:2 16655:1 16666:1 16695:1 16704:6 16740:1 16748:2 16769:1 16786:3 16788:1 16789:2 16799:1 16828:1 16839:1 16848:1 16854:1 16859:1 16862:1 16871:1 16879:3 16886:2 16888:1 16891:1 16899:1 16912:1 16918:1 16920:1 16923:1 16940:8 16963:1 16966:2 17005:1 17012:1 17056:1 17067:1 17096:1 17112:1 17142:1 17154:1 17169:1 17176:1 17184:1 17188:2 17203:1 17237:1 17277:1 17284:1 17348:2 17374:4 17383:2 17385:1 17444:1 17448:1 17449:1 17470:1 17559:1555 17560:2 17575:3 17590:1 17601:1 17624:1 17642:1 17670:1 17690:1 17693:1 17699:2 17704:1 17724:1 17750:1 17761:4 17770:1 17773:3 17774:1 17775:1 17776:1 17788:1 17805:1 17842:2 17964:3 18020:1 18024:2 18039:1 18071:2 18079:1 18092:1 18100:1 18142:1 18166:1 18169:1 18208:1 18209:2 18223:2 18239:1 18245:4 18265:1 18274:2 18293:1 18303:1 18330:1 18338:1 18350:1 18351:1 18383:1 18394:8 18402:1 18452:1 18480:1 18483:1 18516:1 18518:1 18544:1 18547:1 18579:1 18605:1 18613:2 18629:1 18635:1 18639:1 18641:1 18657:2 18658:2 18669:2 18673:1 18678:1 18694:1 18695:1 18702:1 18719:1 18754:2 18773:1 18777:1 18782:1 18820:1 18839:1 18840:1 18846:2 18879:1 18890:1 18898:4 18908:1 18909:1 18946:1 18948:1 18956:1 18959:1 18965:1 18968:1 18973:2 18977:2 18991:2 18994:3 19005:2 19011:1 19030:1 19044:2 19046:1 19061:6 19065:3 19099:1 19107:1 19168:1 19183:1 19207:1 19209:1 19254:1 19285:1 19308:1 19327:1 19330:4 19333:1 19339:1 19340:2 19378:1 19394:1 19403:1 19409:1 19440:1 19446:1 19470:1 19533:1 19535:1 19538:1 19551:1 19555:1 19569:1 19589:1 19620:1 19626:2 19646:1 19658:1 19662:1 19664:1 19668:1 19679:1 19691:1 19718:1 19728:3 19736:1 19781:10 19788:2 19792:1 19807:4 19830:1 19834:1 19844:1 19856:1 19859:1 19864:1 19866:1 19869:1 19875:1 19876:1 19893:1 19914:1 19922:2 19970:1 20026:3 20065:1 20070:3 20084:2 20124:1 20152:1 20161:1 20167:1 20168:1 20183:1 20193:3 20195:1 20199:1 20210:1 20211:1 20270:1 20285:1 20302:1 20322:2 20341:1 20346:1 20361:2 20363:1 20366:2 20408:1 20414:1 20441:1 20463:1 20472:1 20473:1 20495:1 20520:1 20523:1 20524:1 20589:1 20603:3 20604:3 20605:3 20611:1 20615:1 20634:1 20636:1 20638:2 20646:1 20660:1 20665:1 20676:1 20693:1 20715:2 20749:1 20761:1 20772:2 20775:2 20787:3 20802:1 20815:1 20831:1 20846:1 20884:1 20902:1 20913:2 20919:1 20920:2 20926:1 20946:1 20968:1 20972:2 20978:2 20982:1 21021:1 21038:1 21049:1 21050:1 21065:1 21078:1 21091:1 21100:1 21112:2 21158:2 21160:1 21162:2 21167:2 21169:1 21202:1 21211:1 21239:1 21243:1 21270:1 21284:1 21304:1 21332:3 21336:1 21352:1 21356:1 21376:1 21388:1 21393:2 21396:1 21399:1 21401:1 21409:1 21415:1 21426:3 21433:1 21438:1 21444:3 21487:2 21490:2 21494:1 21500:1 21518:1 21536:1 21549:1 21568:2 21615:4 21626:1 21640:2 21675:2 21682:1 21687:1 21696:1 21701:1 21706:1 21711:1 21720:1 21722:1 21728:1 21743:1 21777:1 21813:1 21850:1 21867:1 21871:1 21875:1 21877:1 21883:1 21914:1 21942:1 21944:3 21946:1 21951:1 21961:2 21972:1 21974:1 21998:1 22000:1 22010:1 22013:1 22020:1 22057:1 22060:1 22073:1 22082:1 22084:1 22103:3 22108:1 22127:1 22136:1 22165:3 22189:1 22191:2 22198:1 22282:2 22305:2 22325:1 22387:2 22401:1 22410:1 22416:3 22460:1 22500:1 22502:8 22573:2 22608:1 22634:1 22657:1 22662:1 22672:2 22678:1 22687:2 22688:7 22691:1 22705:1 22710:1 22711:1 22729:1 22732:2 22744:1 22754:1 22811:1 22856:1 22857:1 22858:1 22861:1 22862:1 22863:1 22864:1 22870:1 22874:1 22909:1 22918:1 22919:1 22922:2 22925:1 22927:2 22932:1 22933:1 22939:1 22953:1 22958:1 22960:2 22968:3 22969:1 22984:1 23006:1 23007:1 23039:1 23042:1 23061:1 23068:2 23081:2 23090:1 23109:1 23173:1 23176:1 23204:1 23211:2 23248:1 23274:2 23282:1 23328:6 23371:1 23381:1 23384:6 23393:1 23396:1 23397:1 23399:1 23407:1 23413:1 23436:1 23437:1 23535:1 23579:1 23596:2 23598:5 23635:1 23637:1 23647:2 23651:1 23660:2 23675:1 23701:1 23705:1 23708:1 23729:1 23734:1 23818:1 23826:1 23827:1 23854:1 23856:1 23859:1 23861:1 23878:1 23891:1 23946:1 23948:1 23949:1 23963:1 23964:1 23994:1 24034:1 24092:1 24104:1 24111:1 24121:1 24142:1 24143:1 24144:3 24148:1 24198:1 24233:2 24262:3 24285:1 24300:1 24355:1 24362:1 24364:1 24365:1 24382:1 24394:1 24420:3 24436:1 24437:1 24440:1 24444:3 24448:1 24469:1 24477:1 24494:1 24498:1 24500:3 24509:1 24525:1 24571:3 24572:1 24587:2 24642:3 24654:1 24671:2 24702:1 24721:1 24738:1 24743:1 24750:1 24757:1 24776:1 24795:1 24796:2 24812:1 24816:1 24819:1 24832:2 24836:3 24837:1 24855:2 24882:1 24888:1 24893:1 24897:1 24909:3 24941:1 24947:1 24958:1 24973:1 25010:1 25021:1 25033:1 25034:1 25045:1 25082:1 25084:1 25095:1 25228:1 25233:1 25241:1 25264:1 25271:1 25280:1 25308:1 25349:1 25353:1 25367:1 25368:2 25384:1 25385:2 25389:1 25393:1 25404:1 25407:1 25430:2 25440:1 25447:1 25448:1 25461:4 25513:1 25524:1 25527:3 25531:1 25548:1 25551:1 25614:4 25623:1 25631:1 25635:2 25664:1 25680:2 25694:2 25695:2 25696:1 25702:1 25703:1 25706:1 25712:1 25719:1 25723:1 25782:2 25786:1 25807:1 25817:1 25835:1 25837:1 25849:1 25912:2 25915:1 25928:4 25946:1 25980:2 25996:1 25998:6 26017:1 26023:1 26045:1 26065:1 26105:1 26120:1 26165:1 26178:3 26221:1 26250:3 26258:1 26287:1 26293:1 26312:4 26341:1 26366:1 26372:1 26378:1 26382:1 26385:1 26392:15 26394:1 26396:1 26411:1 26430:10 26443:1 26465:1 26489:2 26512:1 26518:1 26522:1 26529:3 26560:6 26561:1 26568:1 26590:1 26605:1 26632:2 26634:1 26667:2 26687:1 26688:2 26705:1 26726:1 26770:1 26785:1 26808:3 26810:3 26838:1 26852:1 26864:1 26869:1 26873:1 26875:2 26901:1 26910:1 26997:3 27010:1 27011:1 27015:10 27032:1 27048:1 27052:1 27054:2 27087:1 27104:1 27112:1 27121:1 27167:1 27176:1 27188:1 27194:1 27204:1 27219:1 27227:1 27233:2 27379:1 27393:1 27394:1 27403:1 27410:1 27433:1 27439:2 27442:1 27466:1 27475:2 27479:1 27502:1 27509:1 27511:1 27512:1 27528:1 27548:1 27549:1 27561:1 27568:1 27572:1 27578:3 27585:2 27587:2 27592:1 27596:1 27600:1 27602:1 27612:1 27640:1 27643:3 27653:1 27654:1 27671:1
20 10:1 17:1 21:1 22:1 26:1 29:1 72:1 86:1 96:1 109:1 114:1 145:1 155:1 168:1 191:1 207:1 241:1 245:2 246:1 263:3 298:1 317:1 323:2 324:1 366:1 368:2 435:1 441:2 471:1 511:1 526:1 529:1 549:2 556:1 579:2 592:2 615:2 617:1 620:2 716:1 748:1 848:1 853:2 856:1 865:2 867:1 877:1 883:3 885:1 894:1 908:1 915:3 933:1 935:2 937:1 939:5 941:2 948:1 956:1 966:4 991:3 992:3 996:1 1000:1 1009:1 1018:1 1040:1 1041:2 1045:1 1059:1 1079:1 1097:1 1102:2 1110:2 1139:1 1180:1 1186:1 1201:1 1202:1 1211:1 1215:1 1217:1 1219:1 1235:1 1252:1 1271:1 1328:1 1344:1 1356:2 1369:1 1383:1 1393:1 1395:1 1397:2 1418:3 1430:1 1437:1 1440:1 1441:1 1446:1 1460:3 1482:9 1484:2 1486:7 1490:1 1496:1 1501:1 1505:1 1517:1 1518:1 1522:1 1527:1 1541:1 1543:1 1550:9 1568:1 1569:1 1593:1 1607:1 1608:1 1635:1 1655:1 1703:5 1709:2 1726:1 1754:1 1760:2 1791:1 1799:1 1814:1 1830:1 1839:2 1843:2 1851:1 1863:2 1868:1 1882:1 1883:1 1924:1 1942:1 1954:4 1974:1 1994:1 1996:3 2005:1 2007:1 2014:1 2055:3 2059:1 2077:1 2088:1 2093:2 2099:1 2120:2 2123:8 2126:3 2136:1 2139:1 2141:2 2142:1 2146:1 2161:1 2163:2 2186:1 2195:1 2196:4 2198:1 2202:1 2205:1 2209:1 2210:2 2212:1 2214:3 2215:2 2218:2 2225:1 2228:2 2232:2 2250:1 2256:1 2278:1 2298:1 2304:1 2324:1 2348:1 2351:1 2376:1 2387:1 2406:1 2427:1 2433:1 2434:1 2458:1 2490:1 2497:1 2509:1 2520:1 2522:1 2528:1 2562:1 2571:1 2592:1 2610:1 2618:2 2625:1 2626:1 2655:2 2670:1 2676:1 2686:1 2691:1 2713:1 2742:1 2765:3 2774:2 2775:8 2778:1 2788:1 2791:2 2792:1 2806:1 2810:1 2826:8 2849:1 2909:1 2929:2 2983:3 3037:1 3074:1 3108:1 3116:1 3125:1 3135:1 3144:1 3174:2 3205:3 3227:1 3238:1 3266:1 3286:1 3328:1 3337:1 3389:1 3440:1 3456:1 3458:1 3460:1 3467:1 3489:1 3497:1 3524:1 3535:1 3537:1 3543:1 3544:1 3550:1 3553:2 3584:2 3592:1 3593:2 3638:3 3639:1 3662:1 3664:6 3703:1 3723:1 3736:1 3744:1 3751:4 3769:1 3772:1 3795:1 3804:1 3819:1 3820:2 3825:1 3842:1 3849:2 3850:1 3878:1 3897:1 3931:1 3949:1 3969:1 3991:1 4020:1 4097:1 4120:1 4160:1 4168:1 4170:1 4191:1 4225:2 4228:1 4255:1 4289:1 4291:1 4293:1 4323:1 4324:2 4355:1 4372:1 4411:1 4418:1 4434:1 4455:2 4456:1 4463:1 4478:1 4501:1 4503:1 4553:1 4564:1 4579:1 4592:1 4616:1 4619:1 4659:1 4679:1 4688:1 4693:1 4701:8 4710:1 4736:1 4756:1 4795:3 4799:5 4817:3 4818:1 4828:1 4834:1 4839:1 4840:1 4841:2 4843:3 4845:2 4848:1 4849:1 4862:1 4950:1 4959:1 4995:1 5004:4 5007:1 5018:1 5030:1 5038:1 5040:1 5066:3 5071:1 5086:1 5123:2 5141:1 5144:1 5149:1 5173:2 5186:1 5211:1 5217:1 5227:1 5231:3 5261:1 5333:2 5355:2 5375:1 5385:2 5391:1 5398:1 5400:1 5407:1 5414:3 5428:2 5447:1 5473:2 5486:1 5529:1 5537:1 5540:1 5546:1 5549:2 5566:1 5570:1 5572:1 5592:2 5599:1 5629:3 5630:1 5652:2 5657:2 5664:1 5665:2 5708:1 5716:1 5745:1 5764:2 5781:2 5789:1 5799:1 5815:2 5829:2 5831:1 5859:1 5863:1 5873:1 5877:1 5925:3 5928:1 5932:1 5967:1 5976:1 5996:3 5998:1 6006:1 6010:1 6024:1 6031:2 6041:1 6063:2 6065:2 6080:3 6082:1 6095:1 6096:1 6099:2 6100:1 6103:2 6105:2 6106:2 6108:3 6151:1 6169:1 6201:4 6212:1 6217:4 6230:1 6277:1 6278:1 6336:1 6385:2 6403:1 6408:1 6415:1 6416:2 6424:1 6427:2 6465:1 6473:1 6475:1 6477:1 6483:2 6501:1 6502:1 6504:1 6509:1 6526:1 6527:1 6557:2 6601:1 6610:3 6642:3 6652:1 6653:1 6659:1 6665:1 6669:1 6696:1 6714:1 6718:2 6731:1 6749:1 6753:1 6766:1 6793:6 6794:1 6804:1 6817:1 6855:2 6879:1 6887:1 6901:1 6906:1 6907:1 6955:1 6970:1 6976:1 6993:1 7008:1 7025:1 7056:3 7065:1 7066:3 7083:1 7085:1 7091:1 7104:1 7140:2 7142:1 7148:1 7162:1 7168:1 7185:1 7193:2 7195:1 7197:1 7209:1 7227:1 7234:1 7258:1 7261:2 7268:7 7284:1 7287:1 7289:4 7292:1 7328:20 7346:4 7347:8 7357:1 7384:1 7401:2 7407:1 7415:1 7467:1 7538:1 7572:1 7587:3 7596:2 7601:1 7615:1 7677:1 7693:1 7700:1 7704:1 7717:1 7723:9 7733:1 7735:1 7762:1 7791:17 7816:1 7835:1 7839:1 7842:1 7849:1 7855:1 7877:1 7910:1 7944:1 7950:1 7964:1 7969:2 7974:1 7986:1 7988:1 7996:1 8002:3 8015:1 8024:1 8073:1 8112:1 8113:2 8115:1 8123:1 8125:3 8128:1 8130:4 8133:1 8136:2 8141:3 8154:1 8157:2 8217:2 8219:1 8248:1 8277:1 8299:1 8347:1 8368:1 8383:1 8391:2 8423:1 8433:1 8440:1 8445:2 8457:1 8480:1 8488:1 8495:1 8514:1 8518:1 8524:1 8558:1 8560:2 8566:6 8569:4 8573:1 8585:3 8598:1 8656:1 8684:1 8707:1 8713:1 8735:1 8791:2 8794:1 8804:1 8811:1 8813:1 8817:1 8824:1 8893:1 8909:1 8925:2 8956:1 8957:1 8967:1 8974:1 8988:2 9002:1 9017:2 9074:1 9089:1 9102:1 9105:3 9110:6 9123:3 9141:1 9163:1 9166:1 9180:2 9182:1 9186:1 9208:9 9223:1 9224:1 9231:1 9249:1 9263:1 9272:1 9280:1 9283:1 9288:1 9293:1 9353:2 9362:1 9367:2 9376:2 9394:1 9430:1 9433:1 9446:2 9468:1 9472:1 9475:1 9481:1 9487:1 9508:2 9551:1 9556:1 9564:1 9565:1 9619:1 9719:1 9727:1 9729:1 9732:2 9773:2 9832:4 9836:1 9856:1 9859:1 9870:1 9901:2 9908:1 9917:1 9926:1 9932:1 9945:1 9958:3 9967:1 9990:2 9991:2 9999:1 10001:1 10010:2 10011:1 10013:1 10016:1 10018:1 10021:1 10026:1 10028:1 10035:1 10036:1 10060:1 10061:1 10099:3 10106:1 10121:1 10125:1 10130:4 10133:4 10172:1 10202:1 10212:4 10229:3 10299:1 10316:1 10328:1 10340:1 10347:1 10348:3 10349:1 10352:1 10353:1 10433:1 10462:1 10470:1 10472:1 10474:1 10495:1 10497:1 10531:6 10540:1 10566:1 10571:1 10598:1 10601:1 10608:1 10625:1 10630:1 10632:1 10635:1 10651:3 10656:2 10687:1 10688:1 10712:1 10716:1 10718:1 10723:1 10732:1 10741:1 10758:1 10763:1 10771:1 10786:2 10788:6 10839:1 10845:2 10867:1 10869:2 10902:1 10903:1 10926:1 10930:1 10944:1 10950:2 10970:1 10983:5 10985:1 10988:1 11007:1 11020:1 11031:1 11034:1 11042:1 11045:1 11051:1 11056:2 11061:1 11079:1 11101:1 11102:5 11112:2 11118:8 11167:1 11174:1 11183:1 11185:11 11254:1 11273:1 11277:1 11289:1 11297:2 11303:4 11335:1 11365:3 11384:1 11395:1 11408:1 11410:2 11436:1 11443:1 11456:2 11457:2 11462:1 11479:3 11480:1 11484:1 11499:1 11506:1 11520:1 11538:1 11552:1 11582:2 11608:1 11626:1 11680:1 11693:1 11723:1 11742:2 11818:1 11849:2 11868:1 11870:1 11885:1 11912:1 11932:1 11975:7 11979:1 12005:1 12018:1 12035:1 12057:11 12063:1 12085:1 12090:2 12114:1 12115:1 12141:2 12164:1 12179:1 12180:1 12186:1 12251:1 12253:1 12261:1 12263:3 12280:1 12315:1 12356:2 12378:4 12387:1 12390:1 12391:3 12394:2 12408:2 12413:1 12414:8 12416:1 12418:1 12437:1 12439:1 12456:1 12473:2 12474:1 12510:1 12511:8 12516:1 12523:1 12526:14 12538:1 12555:1 12597:3 12626:1 12653:1 12670:2 12689:1 12728:1 12753:1 12757:2 12759:1 12764:1 12818:1 12887:1 12889:1 12891:1 12894:3 12903:1 12927:2 12939:1 12978:1 13005:10 13012:1 13015:2 13051:1 13055:2 13056:1 13080:2 13088:1 13095:1 13096:1 13097:1 13100:1 13107:1 13122:1 13128:1 13138:1 13170:3 13172:2 13199:2 13244:1 13245:1 13290:1 13297:1 13300:1 13301:2 13336:1 13343:1 13403:2 13405:1 13412:1 13422:1 13424:1 13429:1 13430:1 13463:1 13465:1 13468:1 13498:1 13509:1 13527:1 13535:1 13541:1 13542:1 13552:1 13563:1 13586:1 13587:1 13593:2 13618:1 13638:1 13641:4 13671:4 13687:1 13732:1 13739:3 13756:1 13771:1 13793:1 13794:1 13810:1 13819:2 13834:1 13867:1 13869:1 13879:1 13887:1 13895:1 13910:1 13930:1 13933:1 13943:1 14001:1 14015:1 14042:2 14045:1 14053:2 14066:1 14087:2 14177:3 14184:1 14185:1 14207:1 14232:1 14240:2 14271:1 14278:1 14330:1 14352:3 14382:3 14383:1 14385:1 14387:1 14405:1 14432:1 14433:1 14475:1 14483:1 14500:1 14544:1 14549:1 14550:20 14574:1 14580:1 14584:1 14589:1 14621:1 14625:1 14628:1 14662:1 14671:1 14674:1 14695:1 14757:2 14765:1 14768:2 14769:1 14770:2 14777:1 14789:1 14794:1 14799:3 14808:1 14814:1 14847:2 14849:1 14888:1 14889:1 14895:1 14911:5 14912:3 14939:1 15004:1 15037:2 15051:1 15057:1 15068:1 15085:1 15094:1 15128:2 15130:2 15152:1 15166:3 15176:1 15184:1 15185:1 15197:1 15204:1 15206:1 15210:1 15217:3 15238:1 15244:1 15269:1 15273:1 15274:2 15279:1 15280:1 15282:2 15284:1 15287:1 15288:1 15290:1 15295:2 15300:5 15314:1 15331:3 15351:1 15410:1 15495:1 15501:1 15528:1 15530:1 15567:1 15604:2 15623:1 15647:1 15649:1 15653:1 15661:1 15664:1 15667:1 15668:1 15671:1 15680:1 15725:1 15733:1 15734:2 15742:1 15755:2 15758:4 15767:2 15772:1 15780:1 15804:1 15814:2 15818:1 15836:1 15844:1 15846:1 15861:3 15868:9 15870:1 15892:1 15921:2 15924:1 15928:1 15930:2 15939:2 15941:2 15962:1 15968:1 15971:2 15992:1 15997:1 15999:2 16015:1 16020:2 16042:1 16050:1 16068:1 16074:1 16080:1 16081:1 16090:1 16096:1 16100:1 16102:1 16118:1 16129:1 16131:1 16161:1 16187:1 16193:2 16197:1 16200:1 16214:1 16230:2 16252:1 16255:1 16269:2 16374:1 16378:1 16412:1 16416:1 16466:1 16487:1 16489:1 16534:1 16535:1 16548:1 16556:2 16563:2 16571:1 16578:1 16580:1 16598:1 16604:1 16607:1 16610:1 16628:2 16655:1 16666:1 16695:1 16704:6 16740:1 16748:2 16749:1 16769:1 16772:1 16786:3 16788:1 16789:2 16799:1 16828:1 16839:1 16848:1 16854:1 16859:1 16862:1 16871:1 16879:3 16886:2 16888:1 16891:1 16899:1 16912:1 16918:1 16920:1 16923:1 16940:8 16963:1 16966:2 17005:1 17012:1 17056:1 17067:1 17096:1 17112:1 17142:1 17148:1 17154:1 17169:1 17176:1 17184:1 17188:2 17203:1 17237:1 17277:1 17284:1 17348:2 17353:1 17374:4 17383:2 17385:1 17399:1 17444:1 17448:1 17449:1 17470:1 17559:1601 17560:2 17575:3 17590:1 17601:1 17624:1 17642:1 17670:1 17690:1 17693:1 17699:2 17704:1 17724:1 17750:1 17761:4 17770:1 17773:3 17774:1 17775:1 17776:1 17788:1 17805:1 17842:2 17944:1 17964:3 18020:1 18024:2 18039:1 18071:2 18079:1 18092:1 18100:1 18142:1 18166:1 18169:1 18208:1 18209:2 18223:2 18239:1 18245:4 18265:1 18274:2 18293:1 18303:1 18330:1 18338:1 18348:1 18350:1 18351:1 18383:1 18394:8 18402:1 18452:1 18480:1 18483:1 18516:1 18518:1 18544:1 18547:1 18579:1 18605:1 18613:2 18629:1 18635:1 18639:1 18641:1 18657:2 18658:2 18669:2 18673:1 18678:1 18694:1 18695:1 18702:1 18719:1 18754:2 18773:1 18777:1 18782:1 18820:1 18839:1 18840:1 18846:2 18879:1 18890:1 18898:4 18908:1 18909:1 18946:1 18948:1 18956:1 18959:1 18965:1 18968:1 18973:2 18977:2 18991:2 18994:3 19005:2 19011:1 19030:1 19044:2 19046:1 19061:6 19065:3 19099:1 19107:1 19168:1 19183:1 19207:1 19209:1 19254:1 19285:1 19308:1 19327:1 19330:5 19333:2 19339:1 19340:2 19378:1 19394:1 19403:1 19409:1 19440:1 19446:1 19470:1 19479:1 19506:1 19533:1 19535:1 19538:1 19551:1 19555:1 19569:1 19589:1 19620:1 19626:2 19646:1 19658:1 19662:1 19664:1 19668:1 19679:1 19691:1 19718:1 19728:3 19736:1 19781:10 19788:2 19792:1 19807:4 19830:1 19834:1 19844:1 19856:1 19859:1 19864:1 19866:1 19869:1 19875:1 19876:1 19893:1 19914:1 19922:2 19970:1 19971:1 20026:3 20065:1 20070:3 20084:2 20124:1 20152:1 20161:1 20167:1 20168:1 20183:1 20193:3 20195:1 20199:1 20210:1 20211:1 20270:1 20285:1 20302:1 20322:2 20341:2 20346:1 20361:2 20363:1 20366:2 20408:1 20414:1 20425:1 20441:1 20463:1 20472:1 20473:1 20495:1 20520:1 20523:1 20524:1 20559:1 20589:1 20603:3 20604:3 20605:3 20611:1 20615:1 20634:1 20636:2 20638:2 20646:1 20660:1 20665:1 20676:1 20693:1 20715:2 20749:1 20761:1 20772:2 20775:2 20787:3 20802:1 20815:1 20831:1 20838:1 20846:2 20884:1 20902:1 20913:2 20919:1 20920:4 20926:1 20946:1 20968:1 20972:2 20978:2 20982:1 21021:1 21038:1 21049:1 21050:1 21065:1 21078:1 21091:1 21100:1 21112:2 21158:2 21160:1 21162:2 21167:2 21169:1 21202:1 21211:1 21239:1 21243:1 21270:1 21284:1 21304:1 21332:3 21336:1 21352:1 21356:1 21376:1 21388:1 21393:2 21396:1 21399:1 21401:1 21409:1 21415:1 21426:3 21433:1 21438:1 21444:3 21487:2 21490:2 21494:1 21500:1 21518:1 21536:1 21549:1 21568:2 21615:4 21626:1 21640:2 21675:2 21682:1 21687:1 21696:1 21701:1 21706:1 21711:1 21720:1 21722:1 21728:1 21743:1 21777:1 21813:1 21821:1 21850:1 21867:1 21871:2 21875:1 21877:1 21883:1 21914:1 21942:1 21944:3 21946:1 21951:1 21961:2 21972:1 21974:1 21998:1 22000:1 22010:1 22013:1 22020:1 22057:1 22060:1 22073:1 22082:1 22084:1 22103:3 22108:1 22127:1 22136:1 22165:3 22189:1 22191:2 22198:1 22282:2 22291:1 22305:2 22325:1 22387:2 22401:1 22410:1 22416:3 22460:1 22500:1 22502:8 22573:2 22598:1 22608:1 22617:1 22634:1 22657:1 22662:1 22672:2 22678:1 22687:2 22688:7 22691:1 22705:1 22710:1 22711:1 22729:1 22732:2 22744:1 22754:1 22757:1 22803:1 22811:1 22856:1 22857:1 22858:1 22861:1 22862:1 22863:1 22864:1 22870:1 22874:1 22909:1 22918:1 22919:1 22921:1 22922:2 22925:1 22927:2 22932:1 22933:1 22939:1 22953:1 22958:1 22960:2 22968:5 22969:1 22984:1 23006:1 23007:1 23026:1 23039:1 23042:1 23061:1 23068:2 23081:2 23090:1 23109:1 23173:1 23176:1 23204:1 23211:2 23248:1 23274:2 23282:1 23328:6 23371:1 23381:1 23384:6 23393:1 23396:1 23397:1 23399:1 23407:1 23413:1 23436:1 23437:1 23535:1 23579:1 23596:2 23598:5 23635:1 23637:1 23647:2 23651:1 23660:2 23675:1 23701:1 23705:1 23708:1 23729:1 23734:1 23818:1 23826:1 23827:1 23854:1 23856:1 23859:1 23861:1 23878:1 23891:1 23946:1 23948:1 23949:1 23963:1 23964:1 23994:1 24014:1 24034:1 24092:1 24104:1 24111:1 24121:1 24142:2 24143:1 24144:5 24148:1 24198:1 24233:2 24262:3 24285:1 24300:1 24355:1 24362:1 24364:1 24365:1 24382:1 24394:1 24420:3 24436:1 24437:1 24440:1 24444:3 24448:1 24469:1 24477:1 24494:1 24498:1 24500:4 24509:1 24525:1 24571:3 24572:1 24587:2 24642:3 24654:1 24671:2 24702:1 24721:1 24738:1 24743:1 24750:1 24757:1 24776:1 24795:1 24796:2 24812:1 24816:1 24819:1 24832:2 24836:3 24837:1 24855:2 24882:2 24888:1 24893:1 24897:1 24909:3 24941:1 24947:1 24958:1 24973:1 25010:1 25021:1 25033:1 25034:1 25045:1 25082:1 25084:1 25095:1 25228:1 25233:1 25241:1 25264:1 25271:1 25280:1 25308:1 25349:1 25353:1 25357:1 25367:1 25368:2 25384:1 25385:2 25389:1 25393:1 25404:1 25407:1 25430:2 25440:1 25447:1 25448:1 25461:4 25513:1 25524:1 25527:3 25531:1 25548:1 25551:1 25614:4 25623:1 25631:1 25635:2 25664:1 25680:2 25694:2 25695:2 25696:1 25702:1 25703:1 25706:1 25712:1 25719:1 25723:1 25761:1 25782:2 25786:1 25807:1 25817:1 25835:1 25837:1 25849:1 25912:2 25915:1 25928:4 25946:1 25980:2 25996:1 25998:6 26017:1 26023:1 26045:1 26065:1 26105:1 26120:1 26165:1 26178:3 26221:1 26250:3 26258:1 26287:1 26293:1 26312:4 26341:1 26366:1 26372:1 26378:1 26382:1 26385:1 26392:17 26394:1 26396:1 26411:1 26430:10 26443:1 26465:1 26489:2 26512:1 26518:1 26522:3 26529:3 26560:6 26561:1 26568:1 26590:1 26605:1 26632:2 26634:1 26667:2 26687:1 26688:2 26705:1 26726:1 26770:1 26785:1 26808:3 26810:3 26838:1 26852:1 26864:1 26869:1 26873:1 26875:2 26901:1 26910:1 26997:3 27010:1 27011:1 27015:10 27032:1 27042:1 27048:1 27052:1 27054:2 27087:1 27104:1 27112:1 27121:1 27167:1 27176:1 27188:1 27194:1 27204:1 27211:1 27219:1 27227:1 27233:2 27379:1 27393:1 27394:1 27403:1 27406:1 27410:1 27433:1 27439:2 27442:1 27466:1 27475:2 27479:1 27502:1 27509:1 27511:1 27512:1 27528:1 27548:1 27549:1 27561:1 27568:1 27572:1 27578:3 27585:2 27587:2 27592:1 27596:1 27600:1 27602:1 27612:1 27640:1 27643:3 27653:1 27654:1 27671:1
20 10:1 17:1 21:1 22:1 26:1 29:1 72:1 86:1 96:1 109:1 114:1 145:1 155:1 168:1 191:1 207:1 241:1 245:2 246:1 263:3 298:1 317:1 323:2 324:1 366:1 368:2 435:1 441:2 471:1 511:1 526:1 529:1 549:3 556:1 579:2 592:2 615:2 617:1 620:2 716:1 748:1 808:1 848:1 853:2 856:1 865:2 867:1 877:1 883:3 885:1 894:1 908:1 915:3 933:1 935:2 937:1 939:5 941:2 948:1 956:1 966:4 991:3 992:3 996:1 1000:1 1009:1 1018:1 1040:1 1041:2 1045:1 1059:1 1079:1 1097:1 1102:3 1110:3 1139:1 1180:1 1186:1 1201:1 1202:1 1211:1 1215:1 1217:1 1219:1 1235:1 1252:1 1271:1 1328:1 1344:1 1356:2 1369:1 1383:1 1393:1 1395:1 1397:2 1418:3 1430:1 1437:1 1440:1 1441:1 1446:1 1460:3 1482:9 1484:2 1486:7 1490:1 1496:1 1501:1 1505:1 1517:1 1518:1 1522:1 1527:1 1541:1 1543:1 1550:9 1568:1 1569:1 1593:1 1607:1 1608:1 1635:1 1655:1 1703:5 1709:2 1726:1 1754:1 1760:2 1791:1 1799:1 1814:1 1830:1 1839:2 1843:2 1851:1 1863:2 1868:1 1882:1 1883:1 1887:1 1924:1 1942:1 1954:4 1974:1 1994:1 1996:3 2005:1 2007:1 2014:1 2055:4 2059:1 2077:1 2088:1 2093:2 2099:1 2120:2 2123:8 2126:3 2136:1 2139:1 2141:2 2142:1 2146:1 2161:1 2163:2 2186:1 2195:1 2196:4 2198:1 2202:1 2205:1 2209:1 2210:2 2212:1 2214:3 2215:2 2218:2 2225:1 2228:2 2232:2 2250:1 2256:1 2278:1 2298:1 2304:1 2324:1 2334:1 2348:1 2351:1 2376:1 2387:1 2406:1 2427:1 2433:1 2434:1 2458:1 2490:1 2497:1 2509:1 2520:1 2522:1 2528:1 2562:1 2571:1 2592:1 2610:1 2618:2 2625:1 2626:1 2655:2 2670:1 2676:1 2686:1 2691:1 2713:1 2742:1 2765:3 2774:2 2775:8 2778:1 2788:1 2791:2 2792:1 2806:1 2810:1 2826:8 2849:1 2909:1 2929:2 2983:3 3037:1 3074:1 3108:1 3116:1 3125:1 3135:1 3144:1 3174:3 3205:3 3227:1 3238:1 3266:1 3286:1 3328:1 3337:1 3389:1 3440:1 3456:1 3458:1 3460:1 3467:1 3489:1 3497:1 3524:1 3535:1 3537:1 3543:1 3544:1 3550:1 3553:2 3584:2 3592:1 3593:2 3638:3 3639:1 3662:1 3664:6 3703:1 3723:1 3736:1 3744:1 3751:4 3769:1 3772:1 3795:1 3804:1 3819:1 3820:2 3825:1 3842:1 3849:2 3850:1 3865:1 3878:1 3897:1 3931:1 3949:1 3969:1 3991:1 4020:1 4094:1 4097:1 4120:1 4160:1 4168:1 4170:1 4191:1 4225:2 4228:1 4245:1 4255:1 4289:1 4291:1 4293:1 4323:1 4324:2 4355:1 4372:1 4411:1 4418:1 4434:1 4455:2 4456:1 4463:1 4478:1 4501:1 4503:1 4553:1 4564:1 4579:1 4592:1 4616:1 4619:1 4659:1 4679:1 4688:1 4693:1 4701:8 4710:1 4736:1 4756:1 4795:3 4799:5 4817:3 4818:1 4823:1 4828:1 4834:1 4839:1 4840:1 4841:2 4843:3 4845:2 4848:1 4849:1 4862:1 4950:1 4959:1 4995:1 5004:4 5007:1 5018:1 5030:1 5038:1 5040:1 5066:3 5071:1 5086:1 5123:2 5141:1 5144:1 5149:1 5173:2 5186:1 5211:1 5217:1 5222:1 5227:1 5231:3 5261:1 5333:2 5355:2 5375:1 5380:1 5385:2 5391:1 5398:1 5400:1 5407:1 5414:3 5428:2 5447:1 5473:2 5486:1 5529:1 5537:1 5540:1 5546:1 5549:2 5566:1 5570:1 5572:1 5592:2 5599:1 5629:3 5630:1 5652:2 5657:2 5664:1 5665:2 5708:1 5716:1 5745:1 5764:2 5781:2 5789:1 5799:1 5815:2 5829:2 5831:1 5859:1 5863:1 5873:1 5877:2 5925:3 5928:1 5932:1 5965:1 5967:1 5976:1 5996:3 5998:1 6006:1 6010:1 6024:1 6031:2 6041:1 6063:2 6065:2 6068:1 6080:3 6082:1 6095:1 6096:1 6099:3 6100:1 6103:2 6105:2 6106:2 6108:3 6151:1 6169:1 6201:4 6212:1 6217:4 6230:1 6277:1 6278:1 6336:1 6385:2 6403:1 6408:1 6415:1 6416:2 6424:1 6427:2 6465:1 6466:1 6473:1 6475:1 6477:1 6483:2 6501:1 6502:1 6504:1 6509:1 6526:1 6527:1 6557:2 6601:1 6610:3 6642:3 6652:1 6653:1 6659:1 6665:1 6669:1 6696:1 6714:1 6718:2 6731:1 6749:1 6753:1 6766:1 6793:6 6794:1 6804:1 6817:1 6855:2 6879:1 6887:1 6901:1 6906:1 6907:1 6955:1 6970:1 6976:1 6993:1 7008:1 7025:1 7056:3 7065:1 7066:3 7083:1 7085:1 7091:1 7104:1 7135:1 7140:2 7142:1 7148:1 7162:1 7168:1 7185:1 7193:2 7195:1 7197:1 7208:1 7209:1 7227:1 7234:1 7258:1 7261:2 7268:7 7284:1 7287:1 7289:4 7292:1 7328:20 7346:4 7347:8 7357:1 7384:1 7401:2 7407:1 7415:1 7467:1 7538:1 7572:1 7587:3 7596:2 7601:1 7615:1 7677:1 7693:1 7700:1 7704:1 7717:1 7723:9 7733:1 7735:1 7762:1 7791:18 7816:1 7835:1 7839:1 7842:1 7849:1 7855:1 7877:1 7910:1 7944:1 7950:1 7964:1 7969:2 7974:1 7986:1 7988:1 7996:1 8002:3 8015:1 8024:1 8073:1 8112:1 8113:2 8115:1 8123:1 8125:3 8128:1 8130:4 8133:1 8134:1 8136:2 8141:3 8154:1 8157:2 8217:2 8219:1 8246:1 8248:1 8275:1 8277:1 8299:1 8347:1 8368:1 8383:1 8391:2 8402:1 8412:1 8423:1 8433:1 8440:1 8445:2 8457:1 8480:1 8488:1 8495:1 8514:1 8518:1 8524:1 8558:1 8560:2 8566:6 8569:4 8573:1 8585:3 8598:1 8656:1 8684:1 8707:1 8713:1 8735:1 8791:2 8794:1 8804:1 8811:1 8812:1 8813:1 8817:1 8824:1 8893:1 8909:1 8925:2 8956:1 8957:1 8967:1 8974:1 8988:2 9002:1 9017:2 9074:1 9089:2 9102:1 9105:3 9110:6 9123:3 9141:1 9163:1 9166:1 9180:2 9182:1 9186:1 9208:9 9223:1 9224:1 9231:1 9249:1 9260:1 9263:1 9272:1 9280:1 9283:1 9288:2 9293:1 9353:2 9362:1 9367:2 9376:2 9394:1 9430:1 9433:1 9446:2 9468:1 9472:1 9475:1 9481:1 9487:1 9508:2 9551:1 9556:2 9564:1 9565:1 9595:1 9619:1 9719:1 9727:1 9729:1 9732:2 9773:2 9832:4 9836:1 9856:1 9859:1 9870:1 9901:2 9908:1 9917:1 9926:1 9932:1 9945:1 9958:3 9967:1 9990:2 9991:2 9999:1 10001:1 10010:2 10011:1 10013:1 10016:1 10018:1 10021:1 10026:1 10028:1 10035:1 10036:1 10060:1 10061:1 10099:3 10106:1 10121:1 10125:1 10130:4 10133:4 10172:1 10196:1 10202:1 10212:4 10229:3 10299:1 10316:1 10328:1 10340:1 10347:1 10348:3 10349:2 10352:1 10353:1 10433:1 10462:1 10470:1 10472:1 10474:1 10495:1 10497:1 10531:6 10540:1 10566:1 10571:1 10598:1 10601:1 10608:1 10625:1 10630:1 10632:1 10635:1 10651:3 10656:2 10687:1 10688:1 10712:1 10716:1 10718:1 10723:1 10732:1 10741:1 10758:1 10763:1 10771:1 10786:2 10788:6 10839:2 10845:2 10867:1 10869:2 10902:1 10903:1 10926:1 10930:1 10944:1 10950:2 10970:1 10983:5 10985:1 10988:1 11007:1 11020:1 11031:1 11034:1 11042:1 11045:1 11051:1 11056:2 11061:1 11079:1 11101:1 11102:5 11112:2 11118:8 11167:1 11174:1 11183:1 11185:11 11254:1 11273:1 11277:1 11289:1 11297:2 11303:4 11335:1 11365:3 11384:1 11395:1 11408:1 11410:2 11436:2 11443:1 11456:2 11457:2 11462:1 11479:3 11480:1 11484:1 11499:1 11506:1 11520:1 11538:1 11552:1 11582:2 11608:1 11626:1 11680:1 11693:1 11723:1 11742:2 11818:1 11849:2 11868:1 11870:1 11885:1 11912:1 11918:1 11932:1 11975:7 11979:1 12005:1 12018:1 12035:1 12057:11 12063:1 12085:1 12090:2 12114:1 12115:1 12141:2 12164:1 12179:1 12180:1 12186:1 12251:1 12253:1 12261:1 12263:3 12280:1 12315:1 12356:2 12378:4 12387:1 12390:1 12391:3 12394:2 12408:2 12413:1 12414:8 12416:1 12418:1 12437:1 12439:1 12456:1 12473:2 12474:1 12498:1 12510:1 12511:8 12516:1 12523:1 12526:14 12538:1 12555:1 12597:3 12626:1 12653:1 12670:2 12689:1 12696:1 12728:1 12753:1 12757:2 12759:1 12764:1 12818:1 12887:1 12889:1 12891:1 12894:3 12903:1 12920:1 12927:2 12939:1 12978:1 13005:10 13012:1 13015:2 13051:1 13055:2 13056:1 13080:2 13088:1 13095:1 13096:1 13097:1 13100:1 13107:1 13122:1 13128:1 13138:1 13170:3 13172:2 13199:2 13244:1 13245:1 13290:1 13297:1 13300:1 13301:2 13336:1 13343:1 13403:2 13405:1 13412:1 13422:1 13424:1 13429:1 13430:1 13463:1 13465:1 13468:1 13498:1 13509:1 13527:1 13535:1 13541:1 13542:1 13552:1 13563:1 13586:1 13587:1 13593:2 13618:1 13638:1 13641:4 13671:4 13687:1 13732:1 13739:3 13756:1 13771:1 13793:1 13794:1 13810:1 13819:2 13834:1 13844:1 13867:1 13869:1 13879:1 13887:1 13895:1 13910:1 13930:1 13933:1 13943:1 14001:1 14015:1 14042:2 14045:1 14053:2 14066:1 14087:2 14177:3 14184:1 14185:1 14207:1 14232:1 14240:2 14271:1 14278:1 14330:1 14352:3 14382:3 14383:1 14385:1 14387:1 14405:1 14432:1 14433:1 14475:1 14483:1 14500:1 14512:1 14544:1 14549:1 14550:20 14574:1 14580:1 14584:1 14589:1 14621:1 14625:1 14628:1 14662:1 14671:1 14674:1 14695:1 14757:2 14765:1 14768:2 14769:1 14770:2 14777:1 14785:1 14789:1 14794:1 14799:3 14808:1 14814:1 14847:2 14849:1 14888:1 14889:1 14895:1 14903:1 14911:5 14912:3 14939:1 14949:1 15004:1 15037:2 15051:1 15057:1 15068:1 15085:1 15094:1 15128:2 15130:2 15135:1 15152:1 15166:3 15176:1 15184:1 15185:1 15197:1 15204:1 15206:1 15210:1 15217:3 15238:1 15244:1 15269:1 15273:1 15274:2 15279:1 15280:1 15282:2 15284:1 15287:1 15288:1 15290:1 15295:3 15300:5 15314:1 15331:3 15351:1 15410:1 15495:1 15501:1 15528:1 15530:1 15567:1 15604:2 15623:1 15647:1 15649:1 15653:1 15661:1 15664:1 15667:1 15668:1 15671:1 15680:1 15725:1 15733:1 15734:2 15742:1 15755:2 15758:4 15767:2 15772:1 15780:1 15804:1 15814:2 15818:1 15836:1 15844:1 15846:1 15861:3 15868:9 15870:1 15892:1 15921:2 15924:1 15928:1 15930:2 15939:2 15941:2 15962:1 15968:1 15971:2 15992:1 15997:1 15999:2 16015:1 16020:2 16042:1 16050:1 16068:1 16074:1 16080:1 16081:1 16090:1 16096:1 16100:1 16102:1 16118:1 16129:1 16131:1 16161:1 16187:1 16193:2 16197:1 16200:1 16214:1 16230:2 16252:1 16255:1 16269:2 16374:1 16378:1 16412:1 16416:1 16466:1 16487:1 16489:1 16534:1 16535:1 16548:1 16556:2 16563:2 16571:1 16578:1 16580:1 16598:1 16604:1 16607:1 16610:1 16628:2 16655:1 16666:1 16695:1 16704:6 16740:1 16748:2 16749:1 16769:1 16772:2 16786:3 16788:1 16789:2 16799:1 16828:1 16839:1 16848:1 16854:1 16859:1 16862:1 16871:1 16879:3 16886:2 16888:1 16891:1 16899:1 16912:1 16914:1 16918:1 16920:1 16923:1 16940:8 16963:2 16966:2 17005:1 17012:1 17056:1 17067:1 17096:1 17109:1 17112:1 17142:1 17148:1 17154:1 17169:1 17176:1 17184:1 17188:2 17203:1 17237:1 17249:1 17277:1 17284:1 17348:2 17353:1 17374:4 17383:2 17385:1 17399:1 17444:1 17448:1 17449:1 17470:1 17554:1 17559:1662 17560:2 17575:3 17590:1 17601:1 17624:1 17642:1 17670:1 17690:1 17693:1 17699:2 17704:1 17724:1 17750:1 17752:1 17761:4 17770:1 17773:3 17774:1 17775:1 17776:1 17788:1 17805:1 17842:2 17944:1 17964:3 18020:1 18024:2 18039:1 18071:2 18079:1 18092:1 18100:1 18142:1 18166:1 18169:1 18208:1 18209:2 18223:2 18239:1 18245:4 18265:1 18274:2 18293:1 18303:1 18329:1 18330:2 18338:1 18348:2 18350:1 18351:1 18383:1 18394:8 18402:1 18452:1 18480:1 18483:1 18516:1 18518:1 18544:1 18547:1 18579:1 18605:1 18613:2 18629:1 18635:1 18639:1 18641:1 18657:2 18658:2 18669:3 18673:1 18678:1 18694:1 18695:1 18702:1 18719:1 18754:2 18773:1 18777:1 18782:1 18820:1 18839:1 18840:1 18846:2 18879:1 18890:1 18898:4 18908:1 18909:1 18946:1 18948:1 18956:1 18959:1 18965:1 18968:1 18973:2 18977:2 18991:2 18994:3 19005:2 19011:1 19030:1 19044:2 19046:1 19061:6 19065:3 19099:1 19107:1 19168:1 19183:1 19207:1 19209:1 19254:1 19285:2 19308:1 19327:1 19330:5 19333:3 19339:1 19340:2 19378:1 19394:1 19403:1 19409:1 19440:1 19446:1 19470:1 19479:1 19506:1 19533:1 19535:1 19538:1 19551:1 19555:1 19569:1 19589:1 19620:1 19626:2 19646:1 19658:1 19662:1 19664:1 19668:1 19679:1 19691:1 19718:1 19728:3 19736:1 19781:10 19788:2 19792:1 19807:4 19830:1 19834:1 19844:1 19856:1 19859:1 19864:1 19866:1 19869:1 19875:1 19876:1 19893:1 19914:1 19922:2 19970:1 19971:1 20026:3 20065:1 20070:3 20084:2 20124:1 20152:1 20161:1 20167:1 20168:1 20183:1 20193:3 20195:1 20196:1 20199:1 20210:1 20211:1 20270:1 20285:1 20302:1 20322:2 20341:2 20346:1 20361:2 20363:1 20366:2 20408:1 20414:1 20425:1 20441:1 20463:1 20472:1 20473:1 20495:1 20520:1 20523:1 20524:1 20559:1 20589:1 20603:3 20604:3 20605:3 20611:1 20615:1 20634:1 20636:2 20638:2 20646:1 20660:1 20665:1 20676:1 20693:1 20715:2 20749:1 20761:1 20772:2 20775:2 20787:3 20802:1 20815:1 20831:1 20838:1 20846:2 20884:1 20902:1 20913:2 20919:1 20920:4 20924:1 20926:1 20946:1 20968:1 20972:2 20978:2 20982:1 21021:1 21038:1 21049:1 21050:1 21065:1 21078:1 21091:1 21100:1 21112:2 21158:2 21160:1 21162:2 21167:3 21169:1 21202:1 21211:1 21239:1 21243:1 21270:1 21284:1 21304:1 21332:3 21336:1 21352:1 21356:1 21376:1 21388:2 21393:2 21396:1 21399:1 21401:1 21409:1 21415:1 21426:3 21433:1 21438:1 21444:3 21487:2 21490:2 21494:1 21500:1 21518:1 21536:1 21539:1 21549:1 21568:2 21615:4 21626:1 21640:2 21675:2 21682:1 21687:1 21696:1 21701:1 21706:1 21711:1 21720:1 21722:1 21728:1 21743:1 21777:1 21813:1 21821:1 21850:1 21867:1 21871:3 21875:1 21877:1 21883:1 21914:1 21942:1 21944:3 21946:1 21951:1 21961:2 21972:1 21974:1 21998:1 22000:1 22010:1 22013:1 22020:1 22057:1 22060:1 22073:1 22082:1 22084:1 22103:3 22108:1 22127:1 22136:1 22165:3 22189:1 22191:2 22198:1 22282:2 22291:1 22304:1 22305:2 22325:1 22387:2 22401:1 22410:1 22416:3 22460:1 22500:1 22502:8 22573:2 22598:1 22608:1 22617:1 22634:1 22657:1 22662:1 22672:2 22678:1 22687:2 22688:7 22691:1 22705:1 22710:1 22711:1 22729:1 22732:2 22744:1 22754:1 22757:1 22803:1 22811:1 22856:1 22857:1 22858:1 22861:1 22862:1 22863:1 22864:1 22870:1 22874:1 22909:1 22918:1 22919:2 22921:1 22922:2 22925:1 22927:2 22932:1 22933:1 22939:1 22953:1 22958:1 22960:3 22968:5 22969:1 22984:1 23006:1 23007:1 23026:1 23039:1 23042:1 23061:1 23068:2 23076:1 23081:2 23090:1 23109:1 23173:1 23176:1 23204:1 23211:2 23248:1 23274:2 23282:1 23328:6 23369:1 23371:1 23381:1 23384:6 23393:1 23396:1 23397:1 23399:1 23407:1 23413:1 23436:1 23437:1 23535:1 23579:1 23596:2 23598:5 23635:1 23637:1 23647:2 23651:1 23660:2 23675:1 23701:1 23705:1 23708:1 23729:1 23734:1 23764:1 23818:1 23826:1 23827:1 23854:1 23856:1 23859:1 23861:1 23878:1 23891:1 23932:1 23946:1 23948:1 23949:1 23963:1 23964:1 23994:1 24014:1 24034:1 24092:1 24104:1 24111:1 24121:1 24142:3 24143:1 24144:5 24148:1 24198:1 24233:2 24262:3 24264:1 24285:1 24300:1 24355:1 24362:1 24364:1 24365:2 24382:1 24394:1 24420:3 24436:1 24437:1 24440:1 24444:3 24448:1 24469:1 24477:1 24494:1 24498:1 24500:4 24509:1 24525:1 24571:3 24572:1 24587:2 24642:3 24654:1 24671:2 24702:1 24721:1 24730:1 24738:1 24743:1 24750:1 24757:1 24776:1 24795:1 24796:2 24812:1 24816:1 24819:1 24832:2 24836:3 24837:1 24855:2 24882:2 24888:1 24893:1 24897:1 24909:3 24941:1 24947:1 24958:1 24973:1 25010:1 25021:1 25033:1 25034:1 25045:1 25082:1 25084:1 25095:1 25228:1 25233:1 25241:1 25264:1 25271:1 25280:1 25308:1 25349:1 25353:1 25357:1 25367:1 25368:2 25384:1 25385:2 25389:1 25393:1 25404:1 25407:1 25430:2 25440:1 25447:1 25448:1 25461:4 25513:1 25524:1 25527:3 25531:1 25548:1 25551:1 25614:4 25623:1 25631:1 25635:2 25646:1 25664:1 25680:2 25694:2 25695:2 25696:1 25702:1 25703:1 25706:1 25712:1 25719:1 25723:1 25761:1 25782:2 25786:1 25807:2 25817:1 25835:1 25837:1 25849:1 25909:1 25912:2 25915:1 25928:4 25946:1 25980:2 25996:1 25998:6 26017:2 26023:1 26045:1 26065:1 26105:1 26120:1 26165:1 26178:3 26221:1 26250:3 26258:1 26287:1 26293:1 26312:4 26341:1 26366:1 26372:1 26378:1 26382:1 26385:1 26392:17 26394:1 26396:1 26411:1 26430:10 26443:2 26465:1 26489:2 26512:1 26518:1 26522:3 26529:3 26560:6 26561:1 26568:1 26590:1 26605:1 26632:2 26634:1 26643:1 26667:2 26687:1 26688:2 26705:1 26726:1 26743:1 26770:1 26785:1 26808:3 26810:3 26838:1 26852:1 26864:1 26869:1 26873:1 26875:2 26901:1 26910:1 26997:3 27010:1 27011:1 27015:10 27032:1 27042:1 27048:1 27052:1 27054:2 27059:1 27087:1 27104:1 27112:1 27121:1 27167:1 27176:1 27188:1 27194:1 27204:1 27211:1 27219:1 27227:2 27233:2 27379:1 27393:1 27394:1 27403:1 27406:1 27410:1 27433:1 27439:2 27442:1 27466:1 27475:2 27479:1 27502:1 27509:1 27511:1 27512:1 27528:1 27548:1 27549:1 27561:1 27568:1 27572:1 27578:3 27585:2 27587:2 27592:1 27596:1 27600:1 27602:1 27612:1 27640:1 27643:3 27653:1 27654:1 27671:1
20 10:1 17:1 21:1 22:1 26:1 29:1 72:1 86:1 96:1 109:1 114:1 145:1 155:1 168:1 185:1 191:1 207:1 241:1 245:2 246:1 263:3 266:1 298:1 317:1 323:2 324:1 366:1 368:2 435:1 441:2 471:1 511:1 526:1 529:1 548:1 549:3 556:1 579:2 592:2 615:2 617:1 620:2 716:1 748:1 808:1 848:1 853:2 856:1 865:2 867:1 877:1 883:3 885:1 894:1 908:1 915:3 933:1 935:3 937:1 939:5 941:2 948:1 956:1 966:4 991:3 992:3 996:1 1000:1 1009:1 1018:1 1040:1 1041:2 1045:1 1059:1 1079:1 1097:1 1102:3 1110:4 1139:1 1180:1 1186:1 1201:1 1202:1 1211:1 1215:1 1217:1 1219:1 1235:1 1252:1 1271:1 1328:1 1344:1 1356:2 1369:1 1383:1 1393:1 1395:1 1397:3 1418:3 1430:1 1437:1 1440:1 1441:1 1446:1 1460:3 1482:9 1484:2 1486:7 1490:1 1496:1 1501:1 1505:1 1517:1 1518:1 1522:1 1527:1 1541:1 1543:1 1550:9 1568:1 1569:1 1593:1 1607:1 1608:1 1635:1 1655:1 1703:5 1709:2 1726:1 1754:1 1760:2 1791:1 1799:1 1814:1 1830:1 1839:2 1843:2 1851:1 1863:2 1868:1 1882:1 1883:1 1887:1 1924:1 1942:1 1954:4 1974:1 1994:1 1996:3 2005:1 2007:1 2014:1 2055:4 2059:1 2077:1 2088:1 2093:2 2099:1 2120:2 2123:8 2126:3 2129:1 2136:1 2139:1 2141:3 2142:1 2146:1 2161:1 2163:2 2186:1 2195:1 2196:4 2198:1 2202:1 2205:1 2209:1 2210:2 2212:1 2214:3 2215:2 2218:2 2225:1 2228:2 2232:2 2250:1 2256:1 2278:1 2298:1 2304:1 2324:1 2334:1 2348:1 2351:1 2376:1 2387:1 2406:1 2427:1 2433:1 2434:1 2458:1 2490:1 2497:1 2509:1 2520:1 2522:1 2528:1 2562:1 2571:1 2592:1 2610:1 2618:2 2625:1 2626:1 2655:2 2670:1 2676:1 2686:1 2691:1 2713:1 2742:1 2765:3 2774:2 2775:9 2778:1 2788:1 2791:2 2792:1 2806:1 2810:1 2826:8 2849:1 2909:1 2929:2 2983:3 3037:1 3074:1 3108:1 3116:1 3125:1 3135:1 3144:2 3174:3 3205:3 3227:1 3238:1 3266:1 3286:1 3328:1 3337:1 3389:1 3440:1 3456:1 3458:1 3460:1 3467:1 3489:1 3497:1 3524:1 3535:1 3537:1 3543:1 3544:1 3550:1 3553:2 3584:2 3592:1 3593:2 3638:3 3639:1 3662:1 3664:6 3703:1 3723:1 3736:1 3744:1 3751:4 3769:1 3772:1 3795:1 3804:1 3819:1 3820:2 3825:1 3842:1 3849:2 3850:1 3865:1 3878:1 3897:1 3931:1 3949:1 3969:1 3991:1 4020:1 4094:1 4097:1 4120:1 4160:1 4168:1 4170:1 4191:1 4225:2 4228:1 4245:1 4255:1 4289:1 4291:1 4293:1 4323:1 4324:2 4355:1 4372:1 4411:1 4418:1 4434:1 4455:2 4456:1 4463:1 4478:1 4501:1 4503:1 4553:1 4564:1 4579:1 4592:1 4616:1 4619:1 4659:1 4679:1 4688:1 4693:1 4701:9 4710:1 4736:1 4756:1 4795:3 4799:5 4817:3 4818:1 4823:1 4828:1 4834:1 4839:1 4840:1 4841:2 4843:3 4845:2 4848:1 4849:1 4862:1 4950:1 4959:1 4995:1 5004:4 5007:1 5018:1 5030:1 5038:1 5040:1 5066:3 5071:1 5086:1 5096:1 5123:2 5141:1 5144:1 5149:1 5173:2 5186:1 5211:1 5217:1 5222:1 5227:1 5231:3 5261:1 5333:2 5355:2 5366:1 5375:1 5380:1 5385:2 5391:1 5398:1 5400:1 5407:1 5414:3 5428:2 5447:1 5473:2 5486:1 5529:1 5537:1 5540:1 5546:1 5549:2 5566:1 5570:1 5572:1 5592:2 5599:1 5629:3 5630:1 5652:2 5657:2 5664:1 5665:2 5708:1 5716:1 5745:1 5764:2 5781:2 5789:1 5799:1 5815:2 5829:2 5831:1 5859:1 5863:1 5873:1 5877:2 5925:3 5928:1 5932:1 5965:1 5967:1 5976:1 5996:3 5998:1 6006:1 6010:1 6024:1 6031:2 6041:1 6063:2 6065:2 6068:1 6080:3 6082:1 6088:1 6095:1 6096:1 6099:3 6100:1 6103:2 6105:2 6106:2 6108:3 6151:1 6169:1 6201:4 6212:1 6217:4 6230:1 6277:1 6278:1 6336:1 6385:2 6403:1 6408:1 6415:1 6416:2 6424:1 6427:2 6465:1 6466:1 6473:1 6475:1 6477:1 6483:2 6501:1 6502:1 6504:1 6509:1 6526:1 6527:1 6557:2 6601:1 6610:3 6642:3 6652:1 6653:1 6659:1 6665:1 6669:1 6696:1 6714:1 6718:2 6731:1 6749:1 6753:1 6766:1 6793:6 6794:1 6804:1 6817:1 6855:2 6879:1 6887:1 6901:1 6906:1 6907:1 6955:1 6970:1 6976:1 6993:1 7008:1 7025:1 7056:3 7065:1 7066:3 7083:1 7085:1 7091:1 7104:1 7128:1 7135:1 7140:2 7142:1 7148:1 7162:1 7168:1 7185:1 7193:2 7195:1 7197:1 7208:1 7209:1 7227:1 7234:1 7258:1 7261:3 7268:8 7284:1 7287:1 7289:4 7292:1 7328:20 7346:4 7347:8 7357:1 7384:1 7401:2 7407:1 7415:1 7467:1 7538:1 7572:1 7587:3 7596:2 7601:1 7615:1 7677:1 7693:1 7700:1 7704:1 7717:1 7723:9 7733:1 7735:1 7762:1 7791:18 7816:1 7835:1 7839:1 7842:1 7849:1 7855:1 7877:1 7910:1 7944:1 7947:1 7950:1 7964:1 7969:2 7974:1 7986:1 7988:1 7996:1 8002:3 8015:1 8024:1 8073:1 8112:1 8113:2 8115:1 8123:1 8125:3 8128:1 8130:4 8133:1 8134:1 8136:2 8141:3 8154:1 8157:2 8217:2 8219:1 8246:1 8248:1 8275:1 8277:1 8299:1 8347:1 8368:1 8383:1 8391:2 8402:1 8412:1 8423:1 8433:1 8440:1 8445:2 8457:1 8480:1 8488:1 8495:1 8511:1 8514:1 8518:1 8524:1 8558:1 8560:2 8566:6 8569:4 8573:1 8585:3 8598:1 8656:1 8684:1 8707:1 8713:1 8735:1 8791:2 8794:1 8804:1 8811:1 8812:1 8813:1 8817:1 8824:1 8893:1 8909:1 8925:2 8956:1 8957:1 8967:1 8974:1 8988:2 9002:1 9017:2 9074:1 9089:2 9102:1 9105:3 9110:6 9123:3 9141:1 9163:1 9166:1 9180:2 9182:1 9186:1 9208:9 9223:1 9224:1 9231:1 9249:1 9260:1 9263:1 9272:1 9280:1 9283:1 9288:2 9293:1 9353:2 9362:1 9367:2 9376:2 9394:1 9430:1 9433:1 9446:2 9468:1 9472:1 9475:1 9481:1 9487:1 9508:2 9551:1 9556:2 9564:1 9565:1 9595:1 9619:1 9719:1 9727:1 9729:1 9732:2 9773:2 9832:4 9836:1 9856:1 9859:1 9870:1 9901:2 9908:1 9917:1 9926:1 9932:1 9945:1 9958:3 9967:1 9990:2 9991:2 9999:1 10001:2 10010:2 10011:1 10013:1 10016:1 10018:1 10021:1 10026:1 10028:1 10035:1 10036:1 10060:1 10061:1 10099:3 10106:1 10121:1 10125:1 10130:4 10133:4 10172:1 10196:1 10202:1 10212:4 10229:3 10299:1 10316:1 10328:1 10340:1 10347:1 10348:3 10349:2 10352:1 10353:1 10427:1 10433:1 10462:1 10470:1 10472:1 10474:1 10495:1 10497:1 10531:6 10540:1 10566:1 10571:1 10598:1 10601:1 10608:1 10625:1 10630:1 10632:1 10635:1 10651:3 10656:2 10687:1 10688:1 10712:1 10716:1 10718:1 10723:1 10732:1 10741:1 10758:1 10763:1 10771:1 10786:2 10788:6 10839:2 10845:2 10867:1 10869:2 10902:1 10903:1 10926:1 10930:1 10944:1 10950:2 10970:1 10983:5 10985:1 10988:1 11007:1 11020:1 11031:1 11034:1 11037:1 11042:1 11045:1 11051:1 11056:2 11061:1 11079:1 11101:1 11102:5 11112:2 11118:8 11167:1 11174:1 11183:1 11185:11 11254:1 11273:1 11277:1 11289:1 11297:2 11303:4 11335:1 11365:3 11384:1 11395:1 11408:1 11410:2 11436:2 11443:1 11456:2 11457:2 11462:1 11479:3 11480:1 11484:1 11499:1 11506:1 11520:1 11538:1 11552:1 11582:2 11608:1 11626:1 11680:1 11693:1 11723:1 11742:3 11818:1 11849:2 11868:1 11870:1 11885:1 11912:1 11918:1 11932:1 11975:8 11979:1 12005:1 12018:1 12035:1 12057:11 12063:1 12085:1 12090:2 12114:1 12115:1 12141:2 12164:1 12179:1 12180:1 12186:1 12251:1 12253:1 12261:1 12263:3 12280:1 12315:1 12356:2 12378:4 12387:1 12390:1 12391:3 12394:2 12408:2 12413:1 12414:8 12416:1 12418:1 12437:1 12439:1 12456:1 12473:2 12474:1 12498:1 12510:1 12511:8 12516:1 12523:1 12526:14 12538:1 12555:1 12597:3 12626:1 12653:1 12670:2 12689:1 12696:1 12728:1 12753:1 12757:2 12759:1 12764:1 12818:1 12887:1 12889:1 12891:1 12894:3 12903:1 12920:1 12927:2 12939:1 12978:1 13005:10 13012:1 13015:2 13051:1 13055:2 13056:1 13080:2 13088:1 13095:1 13096:1 13097:1 13100:1 13107:1 13122:1 13128:1 13138:1 13170:3 13172:2 13199:2 13244:1 13245:1 13290:1 13297:1 13300:1 13301:2 13336:1 13343:1 13403:2 13405:1 13412:1 13422:1 13424:1 13429:1 13430:1 13463:1 13465:1 13468:1 13498:1 13509:1 13527:1 13535:1 13541:1 13542:1 13552:1 13563:1 13586:1 13587:1 13593:2 13618:1 13638:1 13641:4 13671:4 13687:1 13727:1 13732:1 13739:3 13756:1 13771:1 13793:1 13794:1 13810:1 13819:2 13834:1 13844:1 13867:1 13869:1 13879:1 13887:1 13895:1 13910:1 13930:1 13933:1 13943:1 14001:1 14015:1 14042:3 14045:1 14053:2 14066:1 14087:2 14177:3 14184:1 14185:1 14207:1 14232:1 14240:2 14271:1 14278:1 14330:1 14352:3 14382:3 14383:1 14385:1 14387:1 14405:1 14432:1 14433:1 14475:1 14483:1 14500:1 14512:1 14544:1 14549:1 14550:22 14574:1 14580:1 14584:1 14589:1 14621:1 14625:1 14628:1 14662:1 14671:1 14674:1 14695:1 14757:2 14765:1 14768:2 14769:1 14770:2 14777:1 14785:1 14789:1 14794:1 14799:3 14808:1 14814:1 14847:2 14849:1 14888:1 14889:1 14895:1 14903:1 14911:5 14912:3 14939:1 14949:1 15004:1 15030:1 15037:2 15051:1 15057:1 15068:1 15085:1 15094:1 15128:2 15130:2 15135:1 15152:1 15166:3 15176:1 15184:1 15185:1 15197:1 15204:1 15206:1 15210:1 15217:3 15238:1 15244:1 15269:1 15273:1 15274:2 15279:1 15280:1 15282:2 15284:1 15287:1 15288:1 15290:1 15295:3 15300:5 15314:1 15331:3 15351:1 15410:1 15495:1 15501:1 15528:1 15530:1 15567:1 15604:2 15623:1 15647:1 15649:1 15653:1 15661:1 15664:1 15667:1 15668:1 15671:1 15680:1 15725:1 15733:1 15734:2 15742:1 15755:2 15758:4 15767:2 15772:1 15780:1 15804:1 15814:2 15818:1 15836:1 15844:1 15846:1 15861:3 15868:9 15870:1 15892:1 15921:2 15924:1 15928:1 15930:2 15939:2 15941:2 15962:1 15968:1 15971:2 15992:1 15997:1 15999:2 16015:1 16020:2 16042:1 16050:1 16068:1 16074:1 16080:1 16081:1 16090:1 16096:1 16100:1 16102:1 16118:1 16129:1 16131:1 16161:1 16187:1 16193:2 16197:1 16200:1 16214:1 16230:2 16252:1 16255:1 16269:2 16328:1 16374:1 16378:1 16412:1 16416:1 16466:1 16487:1 16489:1 16534:1 16535:1 16548:1 16556:2 16563:2 16571:1 16578:1 16580:1 16598:1 16604:1 16607:1 16610:1 16628:2 16655:1 16666:1 16695:1 16704:6 16724:1 16740:1 16748:2 16749:1 16769:1 16772:2 16786:3 16788:1 16789:2 16799:1 16828:1 16839:1 16848:1 16854:1 16859:1 16862:1 16871:1 16879:3 16886:2 16888:1 16891:1 16899:1 16912:1 16914:1 16918:1 16920:1 16923:1 16940:8 16963:2 16966:2 17005:1 17012:1 17056:1 17067:1 17096:1 17109:1 17112:1 17142:1 17148:1 17154:1 17169:1 17176:1 17184:1 17188:2 17203:1 17237:1 17249:1 17277:1 17284:1 17348:2 17353:1 17374:4 17383:2 17385:1 17399:1 17444:1 17448:1 17449:1 17470:1 17554:1 17559:1689 17560:2 17575:3 17590:1 17601:1 17624:1 17642:1 17670:1 17690:1 17693:1 17699:2 17704:1 17724:1 17750:1 17752:1 17761:4 17770:1 17773:3 17774:1 17775:2 17776:1 17788:1 17805:1 17842:2 17944:1 17964:3 18020:1 18024:2 18039:1 18071:2 18079:1 18092:1 18100:1 18142:1 18166:1 18169:1 18208:1 18209:2 18223:3 18239:1 18245:4 18265:1 18274:2 18293:1 18303:1 18329:1 18330:2 18338:1 18348:2 18350:1 18351:1 18383:1 18394:8 18402:1 18452:1 18480:1 18483:1 18516:1 18518:1 18544:1 18547:1 18555:1 18579:1 18605:1 18613:2 18629:1 18635:1 18639:1 18641:1 18657:2 18658:2 18669:4 18673:1 18678:1 18694:1 18695:1 18702:1 18719:1 18754:2 18773:1 18777:1 18782:1 18820:1 18839:1 18840:1 18846:2 18879:1 18890:1 18898:4 18908:1 18909:1 18946:1 18948:1 18956:1 18959:1 18965:1 18968:1 18973:2 18977:2 18991:2 18994:3 19005:2 19011:1 19030:1 19044:2 19046:1 19061:6 19065:3 19099:1 19107:1 19168:1 19183:1 19207:1 19209:1 19254:1 19285:2 19308:1 19327:1 19330:5 19333:3 19339:1 19340:2 19378:1 19394:1 19403:1 19409:1 19440:1 19446:1 19470:1 19479:1 19506:1 19533:1 19535:1 19538:1 19551:1 19555:1 19569:1 19589:1 19620:1 19626:2 19646:1 19658:1 19662:1 19664:1 19668:1 19679:1 19691:1 19718:1 19728:3 19736:1 19781:10 19788:2 19792:1 19807:4 19830:1 19834:1 19844:1 19856:1 19859:1 19864:1 19866:1 19869:1 19875:1 19876:1 19893:1 19914:1 19922:2 19970:1 19971:1 20009:1 20026:3 20051:1 20065:1 20070:3 20084:2 20124:1 20152:1 20161:1 20167:1 20168:1 20183:1 20193:3 20195:1 20196:1 20199:1 20210:1 20211:1 20270:1 20285:1 20302:1 20322:2 20341:2 20346:1 20361:2 20363:1 20366:2 20408:1 20414:1 20425:1 20441:1 20463:1 20472:1 20473:1 20495:1 20520:1 20523:1 20524:1 20559:1 20589:1 20603:3 20604:3 20605:3 20611:1 20615:1 20634:1 20636:2 20638:2 20646:1 20660:1 20665:1 20676:1 20693:1 20715:2 20749:1 20761:1 20772:2 20775:2 20787:3 20802:1 20815:1 20831:1 20838:1 20846:2 20884:1 20902:1 20913:2 20919:1 20920:4 20924:1 20926:1 20946:1 20968:1 20972:2 20978:2 20982:1 21021:1 21038:1 21049:1 21050:1 21065:1 21078:1 21091:1 21100:1 21112:2 21158:2 21160:1 21162:2 21167:3 21169:1 21202:1 21211:1 21239:1 21243:1 21270:1 21284:1 21304:1 21307:1 21332:3 21336:1 21352:1 21356:1 21376:1 21388:2 21393:2 21396:1 21399:1 21401:1 21409:1 21415:1 21426:3 21433:1 21438:1 21444:3 21487:2 21490:2 21494:1 21500:1 21518:1 21536:1 21539:1 21549:1 21568:2 21615:4 21626:1 21640:2 21675:2 21682:1 21687:1 21696:1 21701:1 21706:1 21711:1 21720:1 21722:1 21728:1 21743:1 21777:1 21813:1 21821:1 21850:1 21867:1 21871:3 21875:1 21877:1 21883:1 21914:1 21942:1 21944:3 21946:1 21951:1 21961:2 21972:1 21974:1 21998:1 22000:1 22010:1 22013:1 22020:1 22057:1 22060:1 22073:1 22082:1 22084:1 22103:3 22108:1 22127:1 22136:1 22165:3 22189:1 22191:2 22198:1 22282:2 22291:1 22304:1 22305:2 22325:1 22387:2 22401:1 22410:1 22416:3 22460:1 22500:1 22502:8 22573:2 22598:1 22608:1 22617:1 22634:1 22657:1 22662:1 22672:2 22678:1 22687:2 22688:7 22691:1 22705:1 22710:1 22711:1 22729:1 22732:2 22744:1 22754:1 22757:1 22803:1 22811:1 22856:1 22857:1 22858:1 22861:1 22862:1 22863:1 22864:1 22870:1 22874:1 22909:1 22918:1 22919:3 22921:1 22922:2 22925:1 22927:2 22932:1 22933:1 22939:1 22953:1 22958:1 22960:4 22968:5 22969:1 22984:1 23006:1 23007:1 23026:1 23039:1 23042:1 23061:1 23068:2 23076:1 23081:2 23090:1 23109:1 23173:1 23176:1 23204:1 23211:2 23248:1 23274:2 23282:1 23328:6 23369:1 23371:1 23381:1 23384:6 23393:1 23396:1 23397:1 23399:1 23407:1 23413:1 23436:1 23437:1 23535:1 23579:1 23596:2 23598:5 23635:1 23637:1 23647:2 23651:1 23660:2 23675:1 23701:1 23705:1 23708:1 23729:1 23734:1 23764:1 23817:1 23818:1 23826:1 23827:1 23854:1 23856:1 23859:1 23861:1 23878:1 23891:1 23932:1 23946:1 23948:1 23949:1 23963:1 23964:1 23994:1 24014:1 24034:1 24092:1 24104:1 24111:1 24121:1 24142:3 24143:1 24144:5 24148:1 24198:1 24233:2 24262:3 24264:1 24285:1 24300:1 24355:1 24362:1 24364:1 24365:2 24382:1 24394:1 24420:3 24436:1 24437:1 24440:1 24444:3 24448:1 24469:1 24477:1 24494:1 24498:1 24500:4 24509:1 24525:1 24571:3 24572:1 24587:2 24642:3 24654:1 24671:2 24702:1 24721:1 24730:1 24738:1 24743:1 24750:1 24757:1 24776:1 24795:1 24796:2 24812:1 24816:1 24819:1 24832:2 24836:3 24837:1 24855:2 24882:2 24888:1 24893:1 24897:1 24909:3 24941:1 24947:1 24958:1 24973:1 25010:1 25021:1 25033:1 25034:1 25045:1 25082:1 25084:1 25095:1 25228:1 25233:1 25241:1 25264:1 25271:1 25280:1 25308:1 25349:1 25353:1 25357:1 25367:1 25368:2 25384:1 25385:2 25389:1 25393:1 25404:1 25407:1 25430:2 25440:1 25447:1 25448:1 25461:4 25513:1 25524:1 25527:3 25531:1 25548:2 25551:1 25614:4 25623:1 25631:1 25635:2 25646:1 25664:1 25680:2 25694:2 25695:2 25696:1 25702:1 25703:1 25706:1 25712:1 25719:1 25723:1 25761:1 25782:2 25786:1 25807:3 25817:1 25835:1 25837:1 25849:1 25909:1 25912:2 25915:1 25928:4 25946:1 25980:2 25996:1 25998:6 26017:2 26023:1 26045:1 26065:1 26105:1 26120:1 26165:1 26178:3 26221:1 26250:3 26258:1 26287:1 26293:1 26312:4 26341:1 26366:1 26372:1 26378:1 26382:1 26385:1 26392:17 26394:1 26396:1 26411:1 26430:10 26443:2 26465:1 26489:2 26512:1 26518:1 26522:3 26529:3 26560:7 26561:1 26568:1 26590:1 26605:1 26632:2 26634:1 26643:1 26667:2 26687:1 26688:2 26705:1 26726:1 26743:1 26770:1 26785:1 26808:3 26810:3 26838:1 26852:1 26864:1 26869:1 26873:1 26875:2 26901:1 26910:1 26997:3 27010:1 27011:1 27015:10 27032:1 27042:1 27048:1 27052:1 27054:2 27059:1 27087:1 27104:1 27112:1 27121:1 27167:1 27176:1 27188:1 27194:1 27204:1 27211:1 27219:1 27227:3 27233:2 27379:1 27393:1 27394:1 27403:1 27406:1 27410:1 27433:1 27439:2 27442:1 27466:1 27475:2 27479:1 27502:1 27509:1 27511:1 27512:1 27528:1 27548:1 27549:1 27561:1 27568:1 27572:1 27578:3 27585:2 27587:2 27592:1 27596:1 27600:1 27602:1 27612:1 27640:1 27643:3 27653:1 27654:1 27671:1
20 10:1 17:1 21:1 22:1 26:1 29:1 72:1 86:1 96:1 109:1 114:1 145:1 155:1 168:1 185:1 191:1 207:1 241:1 245:2 246:1 263:3 266:1 298:1 317:1 323:2 324:1 366:1 368:2 435:1 441:2 471:1 511:1 526:1 529:1 548:1 549:3 556:1 579:2 592:2 615:2 617:1 620:2 716:1 748:1 808:1 848:1 853:2 856:1 865:2 867:1 877:1 883:3 885:1 894:1 908:1 915:3 933:1 935:3 937:1 939:5 941:3 948:1 956:1 966:4 991:3 992:3 996:2 1000:1 1009:1 1018:1 1040:1 1041:2 1045:1 1059:1 1079:1 1097:1 1102:3 1110:4 1139:1 1180:1 1186:1 1201:1 1202:1 1211:1 1215:1 1217:1 1219:1 1235:1 1252:1 1271:1 1328:1 1344:1 1356:2 1369:1 1383:1 1393:1 1395:1 1397:3 1418:3 1430:1 1437:1 1440:1 1441:1 1446:1 1460:3 1482:11 1484:2 1486:7 1490:1 1496:1 1501:1 1505:1 1517:1 1518:2 1522:1 1527:1 1541:1 1543:1 1550:9 1568:1 1569:1 1593:1 1607:1 1608:1 1635:2 1655:1 1703:5 1709:2 1726:1 1754:1 1760:2 1791:1 1799:1 1814:1 1830:1 1839:2 1843:2 1851:1 1863:2 1868:1 1882:1 1883:1 1887:1 1924:1 1942:1 1954:4 1974:1 1994:1 1996:3 2005:1 2007:1 2014:1 2055:4 2059:1 2077:1 2088:1 2093:2 2099:1 2120:2 2123:8 2126:3 2129:1 2130:1 2136:1 2139:1 2141:3 2142:1 2146:1 2158:1 2161:1 2163:2 2186:1 2195:1 2196:4 2198:1 2202:1 2205:1 2209:1 2210:2 2212:1 2214:3 2215:2 2218:2 2225:1 2228:2 2232:2 2250:1 2256:1 2278:1 2298:1 2304:1 2324:1 2334:1 2348:1 2351:1 2376:1 2387:1 2406:1 2427:1 2433:1 2434:1 2458:1 2490:1 2497:1 2509:1 2520:1 2522:1 2528:1 2562:1 2571:1 2592:1 2610:1 2618:2 2625:1 2626:1 2655:2 2670:1 2676:1 2686:1 2691:1 2695:1 2713:1 2742:1 2765:3 2774:2 2775:9 2778:1 2788:1 2791:2 2792:2 2806:1 2810:1 2826:8 2849:1 2909:1 2929:2 2983:3 3037:1 3074:1 3108:1 3116:1 3125:1 3135:1 3144:2 3174:3 3205:3 3227:1 3238:1 3266:1 3286:1 3328:1 3337:1 3389:1 3440:1 3456:1 3458:1 3460:1 3467:1 3489:1 3497:1 3524:1 3535:1 3537:1 3543:1 3544:1 3550:1 3553:2 3584:2 3592:1 3593:2 3638:3 3639:1 3662:1 3664:6 3703:1 3723:1 3736:1 3744:1 3751:5 3769:1 3772:1 3795:1 3804:1 3819:1 3820:2 3825:1 3842:1 3849:2 3850:1 3865:1 3878:1 3897:1 3931:1 3949:1 3969:1 3991:1 4020:1 4094:1 4097:1 4120:1 4160:1 4162:1 4168:1 4170:1 4191:1 4225:2 4228:1 4245:1 4255:1 4289:1 4291:1 4293:1 4323:1 4324:2 4355:1 4359:1 4372:1 4411:1 4418:1 4434:1 4455:2 4456:1 4463:1 4478:3 4501:1 4503:1 4553:1 4564:1 4579:1 4592:1 4616:1 4619:1 4659:1 4679:1 4688:1 4693:1 4701:9 4710:1 4736:1 4756:1 4795:3 4799:6 4817:3 4818:1 4823:1 4828:1 4834:1 4839:1 4840:1 4841:2 4843:3 4845:2 4848:1 4849:1 4862:1 4950:1 4959:1 4995:1 5004:4 5007:1 5018:1 5030:1 5038:1 5040:1 5066:3 5071:1 5086:1 5096:1 5123:2 5141:1 5144:1 5149:1 5173:2 5186:1 5211:1 5217:1 5222:1 5227:1 5231:3 5261:1 5333:2 5355:2 5366:1 5375:1 5380:1 5385:2 5391:1 5398:1 5400:1 5407:1 5414:3 5428:2 5447:1 5473:2 5486:1 5529:1 5537:1 5540:1 5546:1 5549:2 5566:1 5570:1 5572:1 5592:2 5599:3 5629:3 5630:1 5652:2 5657:2 5664:1 5665:2 5708:1 5716:1 5745:1 5764:2 5781:2 5789:1 5799:1 5815:2 5829:2 5831:1 5859:1 5863:1 5873:1 5877:2 5925:3 5928:1 5932:2 5965:1 5967:1 5976:1 5996:3 5998:1 6006:1 6010:1 6024:1 6031:2 6041:1 6063:2 6065:2 6068:1 6080:3 6081:1 6082:1 6088:1 6095:1 6096:1 6099:3 6100:1 6103:2 6105:2 6106:2 6108:3 6151:1 6169:1 6201:4 6212:1 6217:4 6230:1 6277:1 6278:1 6321:1 6336:1 6385:2 6403:1 6408:1 6415:1 6416:2 6424:1 6427:2 6465:1 6466:1 6473:1 6475:1 6477:1 6483:2 6501:1 6502:1 6504:1 6509:1 6526:1 6527:1 6557:2 6601:1 6610:3 6642:3 6652:1 6653:1 6659:1 6665:1 6669:1 6696:1 6714:1 6718:2 6731:1 6749:1 6753:1 6766:1 6793:6 6794:1 6804:1 6817:1 6855:2 6879:1 6887:1 6901:1 6906:1 6907:1 6955:1 6970:1 6976:1 6993:1 7008:1 7025:1 7056:3 7065:1 7066:3 7083:1 7085:1 7091:1 7104:1 7128:1 7135:1 7140:2 7142:1 7148:1 7162:1 7168:1 7185:1 7193:2 7195:1 7197:1 7208:1 7209:1 7227:1 7234:1 7258:1 7261:3 7268:8 7284:1 7287:1 7289:4 7292:1 7328:20 7346:4 7347:9 7357:1 7384:1 7401:2 7407:1 7415:1 7467:1 7538:1 7572:1 7587:3 7596:2 7601:1 7615:1 7677:1 7693:1 7700:1 7704:1 7717:1 7723:9 7733:2 7735:1 7743:1 7762:1 7791:19 7816:1 7835:1 7839:1 7842:1 7849:1 7855:1 7877:1 7910:1 7944:1 7947:1 7950:1 7964:1 7969:2 7974:1 7986:1 7988:1 7996:1 8002:3 8015:1 8024:1 8073:1 8112:1 8113:2 8115:1 8123:1 8125:3 8128:1 8130:4 8133:1 8134:1 8136:2 8141:3 8153:1 8154:1 8157:2 8217:2 8219:1 8246:1 8248:1 8275:1 8277:1 8299:1 8347:1 8368:1 8383:1 8391:2 8402:1 8412:1 8423:1 8433:1 8440:1 8445:2 8457:1 8480:1 8488:1 8495:1 8511:1 8514:1 8518:1 8524:1 8558:1 8560:2 8566:6 8569:4 8573:1 8585:3 8598:1 8656:1 8684:1 8707:1 8713:1 8735:1 8791:2 8794:1 8804:1 8811:1 8812:1 8813:1 8817:1 8824:1 8893:1 8909:1 8925:2 8933:1 8956:1 8957:1 8967:1 8972:1 8974:1 8988:2 9002:1 9017:2 9074:1 9089:3 9102:1 9105:3 9110:6 9123:3 9141:1 9163:1 9166:1 9180:2 9182:1 9186:1 9208:9 9215:1 9223:1 9224:1 9231:1 9249:1 9260:1 9263:1 9272:1 9280:1 9283:1 9288:2 9293:1 9353:2 9362:1 9367:2 9376:2 9394:1 9430:1 9433:1 9446:2 9468:1 9472:1 9475:1 9481:1 9487:1 9508:2 9551:1 9556:2 9564:1 9565:1 9595:1 9619:1 9719:1 9727:1 9729:1 9732:2 9773:2 9832:4 9836:1 9847:1 9856:1 9859:1 9870:1 9901:2 9908:1 9917:1 9926:1 9932:1 9945:1 9958:3 9967:1 9990:2 9991:2 9999:1 10001:2 10010:2 10011:1 10013:1 10016:1 10018:1 10021:1 10026:1 10028:1 10035:1 10036:1 10060:1 10061:1 10099:3 10106:1 10121:1 10125:1 10130:4 10133:4 10172:1 10181:1 10196:1 10202:1 10212:4 10229:3 10299:1 10316:1 10328:1 10340:1 10347:1 10348:4 10349:2 10352:1 10353:1 10387:1 10427:1 10433:1 10462:1 10470:1 10472:1 10474:1 10495:1 10497:1 10531:6 10540:1 10566:1 10571:1 10598:1 10601:1 10608:1 10625:1 10630:1 10632:1 10635:1 10651:3 10656:2 10687:1 10688:1 10712:1 10716:1 10718:1 10723:1 10732:1 10741:1 10758:1 10763:1 10771:1 10786:2 10788:6 10839:2 10845:2 10848:1 10867:1 10869:2 10902:1 10903:1 10926:1 10930:1 10944:1 10950:2 10970:1 10983:5 10985:1 10988:1 11007:1 11020:1 11031:1 11034:1 11037:1 11042:1 11045:1 11051:1 11056:2 11061:1 11079:1 11101:1 11102:5 11112:2 11118:8 11167:1 11174:1 11183:1 11185:11 11254:1 11273:1 11277:1 11289:1 11297:2 11303:4 11335:1 11365:3 11384:1 11395:1 11408:1 11410:2 11436:2 11443:1 11456:2 11457:2 11462:1 11479:3 11480:1 11484:1 11499:1 11506:1 11520:1 11538:1 11552:1 11582:2 11608:1 11626:1 11680:1 11693:1 11723:1 11742:3 11818:1 11849:2 11868:1 11870:1 11885:1 11912:1 11918:1 11932:1 11975:8 11979:1 12005:1 12018:1 12035:1 12057:11 12063:1 12085:1 12090:2 12114:1 12115:1 12141:2 12164:1 12179:1 12180:1 12186:1 12251:1 12253:1 12261:1 12263:4 12280:1 12315:1 12356:2 12378:4 12387:1 12390:1 12391:3 12394:2 12408:2 12413:1 12414:8 12416:1 12418:1 12437:1 12439:1 12456:1 12473:2 12474:1 12498:1 12510:1 12511:8 12516:1 12523:1 12526:14 12538:1 12555:1 12597:3 12626:1 12653:1 12670:2 12689:1 12696:1 12728:1 12753:1 12757:2 12759:1 12764:1 12787:1 12818:1 12887:1 12889:1 12891:1 12894:3 12903:1 12905:1 12920:1 12927:2 12939:1 12978:1 13005:10 13012:1 13015:2 13051:1 13055:2 13056:1 13080:2 13088:1 13095:1 13096:1 13097:1 13100:1 13107:1 13122:1 13128:1 13138:1 13170:3 13172:2 13199:2 13244:1 13245:1 13282:1 13290:1 13297:1 13300:1 13301:2 13336:1 13343:1 13403:2 13405:1 13412:1 13422:1 13424:1 13429:1 13430:1 13463:1 13465:1 13468:1 13498:1 13509:1 13527:1 13535:1 13541:1 13542:1 13552:1 13563:1 13586:1 13587:1 13593:2 13618:1 13638:1 13641:4 13671:4 13687:1 13727:1 13732:1 13739:3 13756:1 13771:1 13793:1 13794:1 13810:1 13819:2 13834:1 13844:1 13867:1 13869:1 13879:1 13887:1 13895:1 13910:1 13930:1 13933:1 13943:1 13957:1 14001:1 14015:1 14042:3 14045:1 14053:2 14066:1 14087:2 14177:3 14184:1 14185:1 14207:1 14232:1 14240:2 14271:1 14278:1 14330:1 14352:3 14382:3 14383:1 14385:1 14387:1 14405:1 14432:1 14433:1 14475:1 14483:1 14500:1 14512:1 14524:1 14534:1 14544:1 14549:1 14550:24 14574:1 14580:1 14584:1 14589:1 14621:1 14625:1 14628:1 14662:1 14671:1 14674:1 14695:1 14757:2 14765:1 14768:2 14769:1 14770:2 14777:1 14785:1 14789:1 14794:1 14799:3 14808:1 14814:1 14847:2 14849:1 14888:1 14889:1 14895:1 14903:1 14911:5 14912:3 14939:1 14949:1 15004:1 15030:1 15037:2 15051:1 15057:1 15068:1 15085:1 15094:1 15128:2 15130:2 15135:1 15152:1 15166:3 15176:1 15184:1 15185:1 15197:1 15204:1 15206:1 15210:1 15217:3 15238:1 15244:1 15269:1 15273:1 15274:2 15279:1 15280:1 15282:2 15284:1 15287:1 15288:1 15290:1 15295:3 15297:1 15300:5 15314:1 15331:3 15351:1 15410:1 15495:1 15501:1 15528:1 15530:1 15567:1 15604:2 15623:1 15647:1 15649:1 15653:1 15661:1 15664:1 15667:1 15668:1 15671:1 15680:1 15725:1 15733:1 15734:2 15742:1 15755:2 15758:4 15767:2 15772:1 15780:1 15804:1 15814:2 15818:1 15836:1 15844:1 15846:1 15861:3 15868:9 15870:1 15892:1 15921:2 15924:1 15928:1 15930:2 15939:2 15941:2 15962:1 15968:1 15971:2 15992:1 15997:1 15999:2 16015:1 16020:2 16042:1 16050:1 16068:1 16074:1 16080:1 16081:1 16090:1 16096:1 16100:1 16102:1 16118:1 16129:1 16131:1 16161:1 16187:1 16193:2 16197:1 16200:1 16214:1 16230:2 16252:3 16255:1 16269:2 16319:1 16328:1 16374:1 16378:1 16412:1 16416:1 16466:1 16487:1 16489:1 16534:1 16535:1 16548:1 16556:2 16563:2 16571:1 16578:1 16580:1 16598:1 16604:1 16607:1 16610:1 16628:2 16655:1 16666:1 16674:1 16695:1 16704:6 16724:1 16740:1 16741:1 16748:2 16749:1 16769:1 16772:2 16786:3 16788:1 16789:2 16799:1 16828:1 16839:1 16848:1 16854:1 16859:1 16862:1 16871:1 16879:3 16886:2 16888:1 16891:1 16899:1 16912:1 16914:1 16918:1 16920:1 16923:1 16940:8 16963:2 16966:2 16994:1 17005:1 17012:1 17056:1 17067:1 17096:1 17109:1 17112:1 17142:1 17148:1 17154:1 17169:1 17176:1 17184:1 17188:2 17203:1 17237:1 17249:1 17277:1 17284:1 17348:2 17353:1 17374:4 17383:2 17385:1 17399:1 17444:1 17448:1 17449:1 17470:1 17554:1 17559:1737 17560:2 17575:3 17590:1 17601:1 17624:1 17642:1 17670:1 17690:1 17693:1 17699:2 17704:1 17724:1 17750:1 17752:1 17761:4 17770:1 17773:3 17774:1 17775:2 17776:1 17788:1 17805:1 17842:2 17873:1 17944:1 17964:3 18020:1 18024:2 18039:1 18071:2 18079:1 18092:1 18100:1 18142:1 18166:1 18169:1 18208:1 18209:2 18223:3 18239:1 18245:4 18265:1 18274:2 18293:1 18303:1 18329:1 18330:2 18338:1 18348:2 18350:1 18351:1 18383:1 18394:8 18402:1 18452:1 18480:1 18483:1 18516:1 18518:1 18544:1 18547:1 18555:1 18579:1 18605:1 18613:2 18629:1 18635:1 18639:1 18641:1 18657:2 18658:2 18669:4 18673:1 18678:1 18694:1 18695:1 18702:1 18719:1 18754:2 18773:1 18777:1 18782:1 18801:1 18820:1 18839:1 18840:1 18846:2 18879:1 18890:1 18898:4 18908:1 18909:1 18933:1 18946:1 18948:1 18956:1 18959:1 18965:1 18968:1 18973:2 18977:2 18991:2 18994:3 19005:2 19011:1 19030:1 19044:2 19046:1 19061:6 19065:3 19099:1 19107:1 19168:1 19183:1 19207:1 19209:1 19254:1 19285:2 19308:1 19327:1 19330:5 19333:4 19339:1 19340:2 19378:1 19394:1 19403:1 19409:1 19440:1 19446:1 19470:1 19479:1 19506:1 19533:1 19535:1 19538:1 19551:1 19555:1 19569:1 19589:1 19620:1 19626:2 19646:1 19658:1 19662:1 19664:1 19668:1 19679:1 19691:1 19718:1 19728:3 19736:1 19781:10 19788:2 19792:1 19797:1 19807:4 19830:1 19834:1 19844:1 19856:1 19859:1 19864:1 19866:1 19869:1 19875:1 19876:1 19893:1 19914:1 19922:2 19970:1 19971:1 20009:1 20026:3 20051:1 20065:1 20070:3 20084:2 20124:1 20152:1 20161:1 20167:1 20168:1 20183:1 20193:3 20195:1 20196:1 20199:1 20210:1 20211:1 20270:1 20285:1 20302:1 20322:2 20341:2 20346:1 20348:1 20361:2 20363:1 20366:2 20408:1 20414:1 20425:1 20441:1 20463:1 20466:1 20472:1 20473:1 20495:1 20520:1 20523:1 20524:1 20559:1 20589:1 20603:3 20604:3 20605:3 20611:1 20615:1 20634:1 20636:2 20638:2 20646:1 20660:1 20665:1 20676:1 20693:1 20715:2 20749:1 20761:1 20772:2 20775:2 20787:3 20802:1 20815:1 20831:1 20838:1 20846:2 20884:1 20902:1 20913:2 20919:1 20920:4 20924:1 20926:1 20946:1 20968:1 20972:2 20978:2 20982:1 21021:1 21038:1 21049:1 21050:1 21065:1 21078:1 21091:1 21100:1 21112:2 21158:2 21160:1 21162:2 21167:3 21169:1 21202:1 21211:1 21239:1 21243:1 21270:1 21284:1 21304:1 21307:1 21332:3 21336:1 21352:1 21356:1 21376:1 21388:2 21393:2 21396:1 21399:1 21401:1 21409:1 21415:1 21426:3 21433:1 21438:1 21444:3 21487:2 21490:2 21494:1 21500:1 21518:1 21536:1 21539:1 21549:1 21568:2 21615:4 21626:1 21640:2 21675:2 21682:1 21687:1 21696:1 21701:1 21706:1 21711:1 21720:1 21722:1 21728:1 21743:1 21777:1 21813:1 21821:1 21836:1 21850:1 21867:1 21871:3 21875:1 21877:1 21883:1 21914:1 21942:1 21944:3 21946:1 21951:1 21961:2 21972:1 21974:1 21998:1 22000:1 22010:1 22013:1 22020:1 22057:1 22060:1 22073:1 22082:1 22084:1 22103:3 22108:1 22127:1 22136:1 22165:3 22189:1 22191:2 22198:1 22282:2 22291:1 22304:1 22305:2 22325:1 22387:2 22401:1 22410:1 22416:3 22460:1 22500:1 22502:8 22573:2 22598:1 22608:1 22617:1 22634:1 22657:1 22662:1 22672:2 22678:1 22687:2 22688:7 22691:1 22705:1 22710:1 22711:1 22729:1 22732:2 22744:1 22754:1 22757:1 22803:1 22811:1 22856:1 22857:1 22858:1 22861:1 22862:1 22863:1 22864:1 22870:1 22874:1 22909:1 22918:1 22919:3 22921:1 22922:2 22925:1 22927:2 22932:1 22933:1 22939:1 22953:1 22958:1 22960:4 22968:5 22969:1 22984:1 23006:1 23007:1 23026:1 23039:1 23042:1 23061:1 23068:2 23076:1 23081:2 23090:1 23109:1 23173:1 23176:1 23204:1 23211:2 23248:1 23274:2 23282:1 23328:6 23369:1 23371:1 23381:1 23384:6 23393:1 23396:1 23397:1 23399:1 23407:1 23413:1 23436:1 23437:1 23535:1 23579:1 23596:2 23598:5 23635:1 23637:1 23647:2 23651:1 23660:2 23675:1 23701:1 23705:1 23708:1 23729:1 23734:1 23764:1 23817:1 23818:1 23826:1 23827:1 23854:1 23856:1 23859:1 23861:1 23878:1 23891:1 23932:1 23946:1 23948:1 23949:1 23963:1 23964:1 23994:1 24014:1 24034:1 24092:1 24104:1 24111:1 24121:1 24142:4 24143:1 24144:5 24148:1 24198:1 24233:2 24262:3 24264:1 24285:1 24300:1 24355:1 24362:1 24364:1 24365:2 24382:1 24394:1 24420:3 24436:1 24437:1 24440:1 24444:3 24448:1 24469:1 24477:1 24494:1 24498:1 24500:4 24509:1 24525:1 24571:3 24572:1 24587:2 24642:3 24654:1 24671:2 24702:1 24721:1 24730:1 24738:1 24743:1 24750:1 24757:1 24776:1 24795:1 24796:2 24812:1 24816:1 24819:1 24832:2 24836:3 24837:1 24855:2 24882:2 24888:1 24893:1 24897:1 24909:3 24941:2 24947:1 24958:1 24973:1 25010:1 25021:1 25033:1 25034:1 25045:1 25082:1 25084:1 25095:1 25228:1 25233:1 25241:1 25264:1 25271:1 25280:1 25308:1 25349:1 25353:1 25357:1 25367:1 25368:2 25384:1 25385:2 25389:1 25393:1 25404:1 25407:1 25430:2 25440:1 25447:1 25448:1 25461:4 25513:1 25524:1 25527:3 25531:1 25548:2 25551:1 25614:4 25623:1 25631:1 25635:2 25646:1 25664:1 25680:2 25694:2 25695:2 25696:1 25702:1 25703:1 25706:1 25712:1 25719:1 25723:1 25761:1 25782:2 25786:1 25807:3 25817:1 25835:1 25837:1 25849:1 25909:1 25912:2 25915:1 25928:4 25946:1 25980:2 25996:1 25998:6 26017:2 26023:1 26045:1 26065:1 26105:1 26120:1 26165:1 26178:3 26221:1 26250:3 26258:1 26287:1 26293:1 26312:4 26341:1 26366:1 26372:1 26378:1 26382:1 26385:1 26392:17 26394:1 26396:1 26411:1 26423:1 26430:10 26443:2 26465:1 26489:2 26512:1 26518:1 26522:3 26529:3 26560:7 26561:1 26568:1 26590:1 26605:1 26632:2 26634:1 26643:1 26667:2 26687:1 26688:2 26705:1 26726:1 26743:1 26770:1 26785:1 26808:3 26810:3 26838:1 26852:1 26864:1 26869:1 26873:1 26875:2 26901:1 26910:1 26997:3 27010:1 27011:1 27015:10 27032:1 27042:1 27048:1 27052:1 27054:2 27059:1 27087:1 27104:1 27112:1 27121:1 27167:1 27176:1 27188:1 27194:1 27204:1 27211:1 27219:1 27227:3 27233:2 27379:1 27393:1 27394:1 27403:1 27406:1 27410:1 27420:1 27433:1 27439:2 27442:1 27466:1 27475:2 27479:1 27502:2 27509:1 27511:1 27512:1 27528:1 27548:1 27549:1 27561:1 27568:1 27572:1 27578:3 27585:2 27587:2 27592:1 27596:2 27600:1 27602:1 27612:1 27640:1 27643:3 27653:1 27654:1 27671:1
20 10:1 17:1 21:1 22:1 26:1 29:1 72:1 86:1 96:1 109:1 114:1 145:1 155:1 168:1 185:1 191:1 207:1 241:2 245:2 246:1 263:3 266:1 298:1 317:1 323:2 324:1 366:1 368:2 435:1 441:2 471:1 511:1 526:1 529:1 548:1 549:3 556:1 579:2 592:2 615:2 617:1 620:3 716:1 748:1 808:1 848:1 853:2 856:1 865:2 867:1 877:1 883:3 885:1 894:1 908:1 915:3 933:1 935:3 937:1 939:5 941:3 948:1 956:1 959:1 966:4 991:3 992:3 996:2 1000:1 1009:1 1018:1 1040:1 1041:2 1045:1 1059:1 1079:1 1097:1 1102:3 1110:4 1139:1 1180:1 1186:1 1201:1 1202:1 1211:1 1215:1 1217:1 1219:1 1235:1 1252:1 1271:1 1328:1 1344:2 1356:2 1369:1 1383:1 1393:1 1395:1 1397:3 1418:3 1430:1 1437:1 1440:1 1441:1 1446:1 1460:3 1482:12 1484:2 1486:7 1490:1 1496:1 1501:1 1505:1 1517:1 1518:2 1522:1 1527:1 1541:1 1543:1 1550:9 1568:1 1569:1 1589:1 1593:1 1607:1 1608:1 1635:2 1655:1 1703:5 1709:2 1726:1 1754:1 1760:2 1791:1 1799:1 1814:1 1830:1 1839:2 1843:2 1851:1 1863:2 1868:1 1882:1 1883:1 1887:1 1924:1 1942:1 1954:4 1974:1 1994:1 1996:3 2005:1 2007:1 2014:1 2055:4 2059:1 2077:1 2088:1 2093:2 2099:1 2120:2 2123:8 2126:3 2129:1 2130:1 2136:1 2139:2 2141:3 2142:1 2146:1 2158:1 2161:1 2163:2 2186:1 2195:1 2196:4 2198:1 2202:1 2205:1 2209:1 2210:2 2212:1 2214:3 2215:2 2218:2 2225:1 2228:2 2232:2 2250:1 2254:1 2256:1 2278:1 2298:1 2304:1 2324:1 2334:1 2348:1 2351:1 2376:1 2387:1 2406:1 2427:1 2433:1 2434:1 2458:1 2490:1 2497:1 2509:1 2520:1 2522:1 2528:1 2562:1 2571:1 2592:1 2610:1 2618:2 2625:1 2626:1 2655:2 2670:1 2676:1 2686:1 2691:1 2695:1 2713:1 2742:1 2765:3 2774:2 2775:9 2778:2 2788:1 2791:2 2792:2 2806:1 2810:1 2826:8 2849:1 2909:1 2929:2 2983:3 3032:1 3037:1 3074:1 3108:1 3116:1 3125:1 3135:1 3144:3 3174:3 3205:3 3226:1 3227:1 3235:1 3238:1 3266:1 3286:1 3328:1 3337:1 3374:1 3389:1 3440:1 3456:1 3458:1 3460:1 3467:1 3489:1 3497:1 3524:1 3535:1 3537:1 3543:1 3544:1 3550:1 3553:2 3584:2 3592:2 3593:2 3638:4 3639:1 3662:1 3664:6 3703:1 3723:1 3736:1 3744:1 3751:5 3769:1 3772:1 3795:1 3804:1 3819:1 3820:2 3825:1 3842:1 3849:2 3850:1 3865:1 3878:1 3897:1 3931:1 3949:1 3969:1 3991:1 3998:1 4020:1 4094:1 4097:1 4120:1 4160:1 4162:1 4167:1 4168:1 4170:1 4191:1 4225:2 4228:1 4245:1 4255:1 4289:1 4291:1 4293:1 4323:1 4324:2 4355:1 4359:1 4372:1 4411:1 4418:1 4434:1 4455:2 4456:1 4463:1 4478:3 4501:1 4503:1 4553:1 4564:1 4579:1 4592:1 4616:1 4619:1 4659:1 4679:1 4688:1 4693:1 4701:10 4710:1 4736:1 4756:1 4795:3 4799:6 4817:3 4818:1 4823:1 4828:1 4834:1 4839:1 4840:1 4841:2 4843:3 4845:2 4848:1 4849:1 4862:1 4950:1 4959:1 4995:1 5004:4 5007:1 5018:1 5030:1 5038:1 5040:1 5066:3 5071:1 5086:1 5096:1 5123:2 5141:1 5144:1 5149:1 5173:2 5186:1 5211:1 5217:1 5222:1 5227:1 5231:3 5261:1 5333:2 5355:2 5366:1 5375:1 5380:1 5385:2 5391:1 5398:1 5400:1 5407:1 5414:3 5428:3 5447:1 5473:2 5486:1 5529:1 5537:1 5540:1 5546:1 5549:2 5566:1 5570:1 5572:1 5592:2 5599:3 5629:4 5630:1 5652:2 5657:2 5664:1 5665:2 5708:1 5716:1 5745:1 5764:2 5781:2 5789:1 5799:1 5815:2 5829:2 5831:1 5859:1 5863:1 5873:1 5877:2 5925:3 5928:1 5932:2 5965:1 5967:1 5976:1 5996:3 5998:1 6006:1 6010:1 6011:1 6024:1 6031:2 6041:1 6063:2 6065:2 6068:1 6080:3 6081:1 6082:1 6088:2 6095:1 6096:1 6099:3 6100:1 6103:2 6105:2 6106:2 6108:4 6151:1 6169:1 6172:1 6201:4 6212:1 6217:4 6230:1 6277:1 6278:1 6321:1 6336:1 6385:2 6403:1 6408:1 6415:1 6416:2 6424:1 6427:2 6465:1 6466:1 6473:1 6475:1 6477:1 6483:2 6501:1 6502:1 6504:1 6509:1 6526:1 6527:1 6557:2 6601:1 6610:3 6642:3 6652:1 6653:1 6659:1 6665:1 6669:1 6696:1 6714:1 6718:2 6731:1 6749:1 6753:1 6766:1 6793:6 6794:1 6804:1 6817:1 6855:2 6879:1 6887:1 6901:1 6906:1 6907:1 6955:1 6970:1 6976:1 6993:1 7008:1 7025:1 7056:3 7065:1 7066:3 7083:1 7085:1 7091:1 7104:1 7128:1 7135:1 7140:2 7142:1 7148:1 7162:1 7168:1 7185:1 7193:2 7195:1 7197:1 7208:1 7209:1 7227:1 7234:1 7258:1 7261:3 7268:8 7284:1 7287:1 7289:4 7292:1 7328:20 7346:4 7347:9 7357:1 7384:1 7401:2 7407:1 7415:1 7467:1 7538:1 7572:1 7587:3 7596:3 7601:1 7615:1 7677:1 7693:1 7700:1 7704:1 7717:1 7723:9 7733:2 7735:1 7743:1 7762:1 7783:1 7791:20 7816:1 7835:1 7839:1 7842:1 7849:1 7855:1 7877:1 7910:1 7944:1 7947:1 7950:1 7964:1 7969:2 7974:1 7986:1 7988:1 7996:1 8002:3 8015:1 8024:1 8073:1 8112:1 8113:2 8115:1 8123:1 8125:3 8128:1 8130:4 8133:1 8134:1 8136:2 8141:3 8153:1 8154:1 8157:2 8216:1 8217:2 8219:1 8246:1 8248:1 8275:1 8277:1 8299:1 8347:1 8368:1 8383:1 8391:2 8402:1 8412:2 8423:1 8433:1 8440:1 8441:1 8445:2 8457:1 8480:1 8488:1 8495:1 8511:1 8514:1 8518:1 8524:1 8558:1 8560:2 8566:6 8569:4 8573:1 8585:3 8598:1 8656:1 8684:1 8707:1 8713:1 8735:1 8791:2 8794:1 8804:1 8811:1 8812:1 8813:1 8817:1 8824:1 8877:1 8893:1 8909:1 8925:2 8933:1 8956:2 8957:1 8967:1 8972:1 8974:1 8988:2 9002:1 9017:2 9074:1 9089:3 9102:1 9105:3 9110:6 9123:3 9141:1 9163:1 9166:1 9180:2 9182:1 9186:2 9208:9 9215:1 9223:1 9224:1 9231:1 9249:1 9260:1 9263:1 9272:1 9280:1 9283:1 9288:2 9293:1 9353:2 9362:1 9367:2 9376:2 9394:1 9430:2 9433:1 9446:2 9468:1 9472:1 9475:1 9481:1 9487:1 9508:2 9551:1 9556:2 9564:1 9565:1 9595:1 9619:1 9719:1 9727:1 9729:1 9732:2 9773:2 9832:4 9836:1 9847:1 9856:1 9859:1 9870:1 9901:2 9908:1 9917:1 9926:1 9932:1 9945:1 9958:3 9967:1 9990:2 9991:2 9999:1 10001:2 10010:3 10011:1 10013:1 10016:1 10018:1 10021:1 10026:1 10028:2 10035:1 10036:1 10060:1 10061:1 10099:3 10106:1 10121:1 10125:1 10130:4 10133:4 10172:1 10181:1 10196:1 10202:1 10212:4 10229:3 10299:1 10316:1 10328:1 10340:1 10347:1 10348:4 10349:2 10352:1 10353:1 10387:1 10427:1 10433:2 10462:1 10470:1 10472:1 10474:1 10495:1 10497:1 10531:6 10540:2 10566:1 10571:1 10598:1 10601:1 10608:1 10625:1 10630:1 10632:1 10635:1 10651:3 10656:2 10687:1 10688:1 10712:1 10716:1 10718:1 10723:1 10732:1 10741:1 10758:1 10763:1 10771:1 10786:2 10788:6 10839:2 10845:2 10848:1 10867:1 10869:2 10902:1 10903:1 10926:1 10930:1 10944:1 10950:2 10970:1 10983:5 10985:1 10988:1 11007:1 11020:1 11031:1 11032:1 11034:1 11037:1 11042:1 11045:1 11051:1 11056:2 11061:1 11079:1 11101:1 11102:5 11112:2 11118:8 11167:1 11174:1 11183:1 11185:11 11254:1 11273:1 11277:1 11289:1 11297:2 11303:4 11335:1 11365:3 11384:1 11395:1 11408:1 11410:2 11436:2 11443:1 11456:2 11457:2 11462:1 11479:3 11480:1 11484:1 11499:1 11506:1 11520:1 11538:1 11552:1 11582:2 11608:1 11626:1 11680:1 11693:1 11723:1 11742:3 11818:1 11849:2 11868:1 11870:1 11885:1 11912:1 11918:1 11932:1 11975:8 11979:1 12005:1 12018:1 12035:1 12057:11 12063:1 12085:1 12090:2 12114:1 12115:2 12141:2 12164:1 12179:1 12180:1 12186:1 12251:1 12253:1 12261:1 12263:4 12280:1 12315:1 12356:2 12378:4 12387:1 12390:1 12391:3 12394:2 12408:2 12413:1 12414:8 12416:1 12418:1 12437:1 12439:1 12456:1 12473:2 12474:1 12498:1 12510:1 12511:8 12516:1 12523:1 12526:14 12538:1 12555:1 12597:3 12626:1 12653:1 12670:2 12689:1 12696:1 12728:1 12753:1 12757:2 12759:1 12764:1 12787:1 12803:1 12818:1 12887:1 12889:1 12891:1 12894:3 12903:1 12905:1 12920:1 12927:2 12939:1 12978:1 13005:10 13012:1 13015:2 13051:1 13055:2 13056:1 13080:2 13088:1 13095:1 13096:1 13097:1 13100:2 13107:1 13122:1 13128:1 13138:1 13170:3 13172:2 13199:2 13244:1 13245:1 13282:1 13290:1 13297:1 13300:1 13301:2 13336:1 13343:1 13403:2 13405:1 13412:1 13422:1 13424:1 13429:1 13430:1 13463:1 13465:1 13468:1 13498:1 13509:1 13527:1 13535:1 13541:1 13542:1 13552:1 13563:1 13586:1 13587:1 13593:2 13618:1 13638:1 13641:4 13671:4 13687:1 13727:1 13732:1 13739:3 13756:1 13771:1 13793:1 13794:1 13810:1 13819:2 13834:1 13844:1 13867:1 13869:1 13879:1 13887:1 13895:1 13910:1 13930:1 13933:1 13943:1 13957:1 14001:1 14015:1 14042:3 14045:1 14053:2 14066:1 14087:3 14177:3 14184:1 14185:1 14207:1 14232:1 14240:2 14271:1 14278:1 14330:1 14352:3 14382:3 14383:1 14385:1 14387:1 14405:1 14432:1 14433:1 14475:1 14483:1 14500:1 14512:1 14524:1 14534:1 14544:1 14549:1 14550:25 14574:1 14580:1 14584:1 14589:1 14621:1 14625:1 14628:1 14660:1 14662:1 14671:2 14674:1 14695:1 14757:2 14765:1 14768:2 14769:1 14770:2 14777:1 14785:1 14789:1 14794:1 14799:3 14808:1 14814:1 14847:2 14849:1 14888:1 14889:1 14895:1 14903:1 14911:5 14912:4 14939:1 14949:1 15004:1 15030:1 15037:2 15051:1 15057:1 15068:1 15085:1 15094:1 15128:2 15130:2 15135:1 15152:1 15166:4 15176:1 15184:1 15185:1 15197:1 15204:1 15206:1 15210:1 15217:4 15238:1 15244:1 15269:1 15273:1 15274:2 15279:1 15280:1 15282:2 15284:1 15287:2 15288:1 15290:1 15295:3 15297:1 15300:5 15303:1 15314:1 15331:3 15351:1 15410:1 15495:1 15501:1 15528:1 15530:1 15567:1 15604:2 15623:1 15647:1 15649:1 15653:1 15661:1 15664:1 15667:1 15668:1 15671:1 15680:1 15725:1 15733:1 15734:2 15742:1 15755:2 15758:4 15767:2 15772:1 15780:1 15804:1 15814:2 15818:1 15836:1 15844:1 15846:1 15861:3 15868:9 15870:2 15892:1 15921:2 15924:1 15928:1 15930:2 15939:2 15941:2 15962:1 15968:1 15971:2 15992:1 15997:1 15999:2 16015:1 16020:2 16042:1 16050:1 16068:1 16074:1 16080:1 16081:1 16090:1 16096:1 16100:1 16102:1 16118:1 16129:1 16131:1 16161:1 16187:1 16193:2 16197:1 16200:1 16214:1 16230:2 16252:3 16255:1 16269:2 16319:1 16328:1 16374:1 16376:1 16378:1 16412:1 16416:1 16466:1 16467:1 16487:1 16489:1 16534:1 16535:2 16548:1 16556:2 16563:2 16571:1 16578:1 16580:1 16598:1 16604:1 16607:1 16610:1 16628:2 16655:1 16666:1 16674:1 16692:1 16695:1 16704:6 16724:1 16740:1 16741:1 16748:2 16749:1 16769:1 16772:2 16786:3 16788:1 16789:2 16799:1 16803:1 16828:1 16839:1 16848:1 16854:1 16859:1 16862:1 16871:1 16879:3 16886:2 16888:1 16891:1 16899:1 16912:1 16914:1 16918:1 16920:1 16923:1 16940:8 16963:2 16966:2 16994:1 17005:1 17007:1 17012:1 17056:1 17067:1 17096:1 17109:1 17112:1 17142:1 17148:1 17154:1 17169:1 17176:1 17184:1 17188:2 17203:1 17237:1 17249:1 17277:1 17284:1 17348:3 17353:1 17374:5 17383:2 17385:1 17399:1 17444:1 17448:1 17449:1 17470:1 17554:1 17559:1759 17560:2 17575:3 17590:1 17601:1 17624:1 17642:1 17670:1 17690:1 17693:1 17699:2 17704:1 17724:1 17750:1 17752:1 17761:4 17770:1 17773:3 17774:1 17775:2 17776:1 17788:1 17805:1 17842:2 17873:1 17944:1 17964:3 18020:1 18024:2 18039:1 18071:2 18079:1 18092:1 18100:1 18142:1 18166:1 18169:1 18208:1 18209:2 18223:3 18239:1 18245:4 18265:1 18274:2 18293:1 18297:1 18303:1 18329:1 18330:3 18338:1 18348:2 18350:1 18351:1 18383:1 18394:8 18402:1 18452:1 18480:1 18483:1 18516:1 18518:1 18544:1 18547:1 18555:1 18579:1 18605:1 18613:2 18629:1 18635:1 18639:1 18641:1 18657:2 18658:2 18669:4 18673:1 18678:1 18694:1 18695:1 18702:1 18719:1 18754:2 18773:1 18777:1 18782:1 18801:1 18820:1 18822:1 18839:1 18840:1 18846:2 18855:1 18879:1 18890:1 18898:4 18908:1 18909:1 18933:1 18946:1 18948:1 18956:1 18959:1 18965:1 18968:1 18973:2 18977:2 18991:2 18994:3 19005:2 19011:1 19030:1 19044:2 19046:1 19061:6 19065:3 19098:1 19099:1 19107:1 19168:1 19183:1 19207:1 19209:1 19254:1 19285:2 19308:1 19327:1 19330:5 19333:4 19339:1 19340:2 19378:1 19394:1 19403:1 19409:1 19440:1 19446:1 19470:1 19479:1 19506:1 19533:1 19535:1 19538:1 19551:1 19555:1 19569:1 19589:1 19620:1 19626:2 19646:1 19658:1 19662:1 19664:1 19668:2 19679:1 19691:1 19718:1 19728:3 19736:1 19781:10 19788:2 19792:1 19797:1 19807:4 19830:1 19834:1 19844:1 19856:1 19859:1 19864:1 19866:1 19869:1 19875:1 19876:1 19893:1 19914:1 19922:2 19965:1 19970:1 19971:1 20009:1 20026:3 20051:2 20065:1 20070:3 20084:2 20124:1 20152:1 20161:1 20167:1 20168:1 20183:1 20193:3 20195:1 20196:1 20199:1 20210:1 20211:1 20270:1 20285:1 20302:1 20315:1 20322:2 20341:2 20346:1 20348:1 20361:2 20363:2 20366:2 20408:1 20414:1 20425:1 20441:1 20463:1 20466:1 20472:1 20473:1 20495:1 20520:1 20523:1 20524:1 20559:1 20573:1 20589:1 20603:3 20604:3 20605:3 20611:1 20615:1 20634:1 20636:2 20638:2 20646:1 20660:1 20665:1 20676:1 20693:1 20715:2 20749:1 20761:1 20772:2 20775:2 20787:3 20802:1 20815:1 20831:1 20838:1 20846:2 20884:1 20902:1 20913:2 20919:1 20920:4 20924:1 20926:1 20946:1 20968:1 20972:2 20978:2 20982:1 21021:1 21038:1 21049:1 21050:1 21065:1 21078:1 21091:1 21100:1 21112:2 21128:1 21158:2 21160:1 21162:2 21167:3 21169:1 21202:1 21211:1 21239:1 21243:1 21270:1 21284:1 21304:1 21307:1 21332:3 21336:1 21352:1 21356:1 21376:1 21388:2 21393:2 21396:1 21399:1 21401:1 21409:1 21415:1 21426:3 21433:1 21438:1 21444:3 21487:2 21490:2 21494:1 21500:1 21518:1 21536:1 21539:1 21549:1 21568:3 21615:4 21626:1 21640:2 21675:2 21682:1 21687:1 21696:1 21701:1 21706:1 21711:1 21720:1 21722:1 21728:1 21743:1 21777:1 21813:1 21821:1 21836:1 21850:1 21867:1 21871:3 21875:1 21877:1 21883:1 21914:1 21942:1 21944:3 21946:1 21951:1 21961:2 21972:1 21974:1 21998:1 22000:1 22010:1 22013:1 22020:1 22021:1 22057:1 22060:1 22073:1 22082:1 22084:1 22103:4 22108:1 22127:1 22136:1 22165:3 22189:1 22191:2 22198:1 22282:2 22291:1 22304:1 22305:2 22325:1 22387:2 22401:1 22410:1 22416:3 22460:1 22500:1 22502:8 22573:2 22598:1 22608:1 22617:1 22634:1 22657:1 22662:1 22672:3 22678:1 22687:2 22688:7 22691:1 22705:1 22710:1 22711:1 22729:1 22732:2 22744:1 22754:1 22757:1 22803:1 22811:1 22849:1 22856:1 22857:1 22858:1 22861:1 22862:1 22863:1 22864:1 22870:1 22874:1 22909:1 22918:1 22919:3 22921:1 22922:2 22925:1 22927:2 22932:1 22933:1 22939:1 22953:1 22958:1 22960:4 22968:5 22969:1 22984:1 23006:1 23007:1 23026:1 23039:1 23042:1 23061:1 23068:2 23076:1 23081:2 23090:1 23109:1 23173:1 23176:1 23204:1 23211:2 23248:1 23274:2 23282:1 23328:6 23369:1 23371:1 23381:1 23384:6 23393:1 23396:1 23397:1 23399:1 23407:1 23413:1 23436:1 23437:1 23535:1 23579:1 23596:2 23598:5 23635:1 23637:1 23647:2 23651:1 23660:2 23675:1 23701:1 23705:1 23708:1 23729:1 23734:1 23764:1 23817:1 23818:1 23826:1 23827:1 23854:1 23856:1 23859:1 23861:1 23878:1 23891:1 23932:1 23946:1 23948:1 23949:1 23963:1 23964:1 23994:1 24014:1 24034:1 24092:1 24104:1 24111:1 24121:1 24142:4 24143:1 24144:5 24148:1 24198:1 24233:2 24262:3 24264:1 24285:1 24300:1 24355:1 24362:1 24364:1 24365:2 24382:1 24394:1 24408:1 24420:3 24436:1 24437:1 24440:1 24444:3 24448:1 24469:1 24477:1 24494:1 24498:1 24500:4 24509:1 24525:1 24571:4 24572:1 24587:2 24642:3 24654:1 24671:2 24702:1 24721:1 24730:1 24738:1 24743:1 24750:1 24757:1 24776:1 24795:1 24796:2 24800:1 24812:1 24816:1 24819:1 24832:2 24836:3 24837:1 24855:2 24882:2 24888:1 24893:1 24897:1 24909:3 24941:2 24947:1 24958:1 24973:1 25010:1 25021:1 25033:1 25034:1 25045:1 25082:1 25084:1 25095:1 25228:1 25233:1 25241:1 25264:1 25271:1 25280:1 25308:1 25349:1 25353:1 25357:1 25367:1 25368:2 25384:1 25385:2 25389:1 25393:1 25404:1 25407:1 25430:2 25440:1 25447:1 25448:1 25461:4 25513:1 25524:1 25527:4 25531:1 25548:2 25551:1 25614:4 25623:1 25631:1 25635:2 25646:1 25654:1 25664:1 25680:2 25694:2 25695:2 25696:1 25702:1 25703:1 25706:1 25712:1 25719:1 25723:1 25761:1 25782:2 25786:1 25807:3 25817:1 25835:1 25837:1 25849:1 25909:1 25912:2 25915:1 25928:4 25946:1 25980:2 25996:1 25998:6 26017:2 26023:1 26045:1 26065:1 26105:1 26120:1 26165:1 26178:3 26221:1 26250:3 26258:1 26287:1 26293:1 26312:4 26341:1 26366:1 26372:1 26378:1 26382:1 26385:1 26392:17 26394:1 26396:1 26411:1 26423:1 26430:10 26443:2 26465:1 26489:2 26512:1 26518:1 26522:3 26529:3 26560:7 26561:1 26568:1 26590:1 26605:1 26632:2 26634:1 26643:1 26667:2 26687:1 26688:2 26705:1 26726:1 26743:1 26770:1 26785:1 26808:3 26810:3 26838:1 26852:1 26864:1 26869:1 26873:1 26875:2 26881:1 26901:1 26910:1 26997:3 27010:1 27011:1 27015:10 27032:1 27042:1 27048:1 27052:1 27054:2 27059:1 27087:1 27104:1 27112:1 27121:1 27167:1 27176:1 27188:1 27194:1 27204:1 27211:1 27219:1 27227:3 27233:2 27379:1 27393:1 27394:1 27403:1 27406:1 27410:1 27420:1 27433:1 27439:2 27442:1 27466:1 27475:2 27479:1 27493:1 27502:2 27509:1 27511:1 27512:1 27528:1 27548:1 27549:1 27561:1 27568:1 27572:1 27578:3 27585:2 27587:2 27592:1 27596:2 27600:1 27602:1 27612:1 27640:1 27643:3 27653:1 27654:1 27671:1
20 10:1 17:1 21:1 22:1 26:1 29:1 57:1 68:1 72:1 81:1 86:1 96:1 109:1 114:1 145:1 155:1 168:1 185:1 191:1 207:1 241:2 245:2 246:1 263:3 266:1 298:1 317:1 323:2 324:1 366:1 368:2 435:1 441:2 471:1 511:1 526:1 529:1 548:1 549:3 556:1 579:2 592:2 615:2 617:1 620:3 716:1 748:1 808:1 848:1 853:2 856:1 865:2 867:1 877:1 883:3 885:1 894:1 908:1 915:3 933:1 935:3 937:1 939:5 941:3 948:1 956:1 959:1 966:4 991:3 992:3 996:2 1000:1 1009:1 1018:1 1040:1 1041:2 1045:1 1059:1 1079:1 1097:1 1102:3 1110:4 1136:1 1139:1 1161:1 1163:1 1180:1 1186:1 1201:1 1202:1 1211:1 1215:1 1217:1 1219:1 1235:1 1252:1 1271:1 1328:1 1344:2 1356:2 1369:1 1383:1 1393:1 1395:1 1397:3 1418:3 1430:1 1437:1 1440:1 1441:1 1446:1 1460:3 1482:13 1484:2 1486:7 1490:1 1496:1 1501:1 1505:1 1517:1 1518:2 1522:1 1527:1 1541:1 1543:1 1550:9 1568:1 1569:1 1589:1 1593:1 1607:1 1608:1 1635:2 1655:1 1675:1 1703:5 1709:2 1726:1 1754:1 1760:2 1791:1 1799:1 1814:1 1830:1 1839:2 1843:2 1851:1 1863:2 1868:1 1882:1 1883:1 1887:1 1924:1 1942:1 1954:4 1974:1 1994:1 1996:3 1999:1 2005:1 2007:1 2014:1 2055:5 2059:1 2077:1 2088:1 2093:2 2099:1 2120:2 2123:8 2126:3 2129:1 2130:1 2136:1 2139:2 2141:3 2142:1 2146:1 2158:1 2161:1 2163:2 2186:1 2193:1 2195:1 2196:4 2198:1 2202:1 2205:1 2209:1 2210:2 2212:1 2214:3 2215:2 2218:2 2225:1 2228:2 2230:1 2232:2 2250:1 2254:1 2256:1 2278:1 2298:1 2304:1 2324:1 2334:1 2348:1 2351:1 2376:1 2387:1 2406:1 2427:1 2433:1 2434:1 2458:1 2490:1 2492:1 2497:1 2509:1 2520:1 2522:1 2528:1 2562:1 2571:1 2592:1 2610:1 2618:2 2625:1 2626:1 2655:2 2656:1 2670:1 2676:1 2686:1 2691:1 2695:1 2713:1 2742:1 2765:3 2774:2 2775:9 2778:2 2788:1 2791:2 2792:2 2806:1 2810:1 2826:8 2849:1 2909:1 2929:2 2983:3 3032:1 3037:1 3074:1 3108:1 3116:1 3125:1 3135:1 3144:3 3174:3 3205:3 3226:1 3227:1 3235:1 3238:1 3266:1 3286:1 3328:1 3337:1 3374:2 3382:1 3389:1 3440:1 3443:1 3456:1 3458:1 3460:1 3467:1 3489:1 3497:1 3524:1 3535:1 3537:1 3543:1 3544:1 3550:1 3553:2 3584:2 3592:2 3593:2 3638:4 3639:1 3662:1 3664:6 3703:1 3723:1 3736:1 3744:1 3751:5 3769:1 3772:1 3795:1 3804:1 3819:1 3820:2 3825:1 3836:1 3842:2 3849:2 3850:1 3865:1 3878:1 3897:1 3931:1 3949:1 3969:1 3991:1 3998:1 4020:1 4094:1 4097:1 4120:1 4130:1 4160:1 4162:1 4167:1 4168:1 4170:1 4191:1 4225:2 4228:1 4245:1 4255:1 4289:1 4291:1 4293:1 4323:1 4324:2 4355:1 4359:1 4372:1 4393:1 4411:1 4418:1 4434:1 4455:2 4456:1 4463:1 4478:4 4501:1 4503:1 4553:1 4564:1 4579:1 4592:1 4616:1 4619:1 4659:1 4679:1 4688:1 4693:1 4701:11 4710:1 4736:1 4756:1 4795:3 4799:6 4817:3 4818:2 4823:1 4825:1 4828:1 4834:1 4839:1 4840:1 4841:2 4843:3 4845:3 4848:1 4849:1 4862:1 4894:1 4950:1 4959:1 4995:1 5004:4 5007:1 5018:1 5030:1 5038:1 5040:1 5066:3 5071:1 5086:1 5096:1 5123:2 5141:1 5144:1 5149:1 5173:2 5186:1 5211:1 5217:1 5222:1 5227:1 5231:3 5261:1 5333:2 5343:1 5355:2 5366:1 5375:1 5380:1 5385:2 5391:1 5398:1 5400:1 5407:1 5414:3 5428:3 5447:1 5473:2 5486:1 5488:1 5529:1 5537:1 5540:1 5546:1 5549:2 5566:1 5570:1 5572:1 5592:2 5599:3 5629:4 5630:2 5652:2 5657:2 5664:1 5665:2 5708:1 5716:1 5745:1 5757:1 5764:2 5781:2 5789:1 5799:1 5815:2 5829:2 5831:1 5859:1 5863:1 5873:1 5877:2 5925:3 5928:1 5932:3 5965:1 5967:1 5976:1 5996:3 5998:1 6006:1 6010:1 6011:1 6024:1 6031:2 6041:1 6063:2 6065:2 6068:1 6080:3 6081:1 6082:1 6088:2 6095:1 6096:1 6099:3 6100:1 6103:2 6105:3 6106:2 6108:4 6151:1 6169:1 6172:1 6201:4 6212:1 6217:4 6230:1 6277:1 6278:1 6321:1 6336:1 6385:2 6403:1 6408:1 6415:1 6416:2 6424:1 6427:2 6465:1 6466:1 6473:1 6475:1 6477:1 6483:2 6501:1 6502:1 6504:1 6509:1 6526:1 6527:1 6557:2 6601:1 6610:3 6642:3 6652:1 6653:1 6659:1 6665:1 6669:1 6696:1 6714:1 6718:2 6731:1 6749:1 6753:1 6766:1 6793:6 6794:1 6804:1 6817:1 6855:2 6879:1 6887:1 6901:1 6906:1 6907:1 6955:1 6970:1 6976:1 6993:1 7008:1 7025:1 7056:3 7065:1 7066:3 7083:1 7085:1 7091:1 7104:1 7128:1 7135:1 7140:2 7142:1 7148:1 7162:1 7166:1 7168:1 7185:1 7193:2 7195:1 7197:1 7208:1 7209:1 7227:1 7234:1 7258:1 7261:3 7268:8 7277:1 7284:1 7287:1 7289:4 7292:1 7328:22 7346:4 7347:9 7357:1 7384:1 7401:2 7407:1 7415:1 7467:1 7538:1 7572:1 7587:3 7596:3 7601:1 7615:1 7677:1 7691:1 7693:1 7700:1 7704:1 7717:1 7723:9 7733:2 7735:1 7743:1 7762:1 7783:1 7791:21 7816:1 7835:1 7839:1 7842:1 7849:1 7855:1 7877:1 7910:1 7944:1 7947:1 7950:1 7964:1 7969:2 7974:1 7986:1 7988:1 7996:1 8002:3 8015:1 8024:1 8054:1 8073:1 8112:1 8113:2 8115:1 8123:1 8125:3 8128:1 8130:4 8133:1 8134:1 8136:2 8141:3 8153:1 8154:1 8157:2 8187:1 8216:2 8217:2 8219:1 8246:1 8248:1 8275:1 8277:1 8299:1 8347:1 8368:1 8383:1 8391:2 8402:1 8412:3 8423:1 8433:1 8440:1 8441:1 8445:3 8457:1 8480:1 8488:1 8495:1 8511:1 8514:1 8518:1 8524:1 8530:1 8558:1 8560:2 8566:6 8569:4 8573:1 8585:3 8598:1 8647:1 8656:1 8684:1 8707:1 8713:1 8735:1 8791:2 8794:1 8804:1 8811:1 8812:1 8813:1 8817:1 8824:1 8830:1 8877:1 8893:1 8909:1 8925:2 8933:1 8950:1 8956:2 8957:1 8967:1 8972:1 8974:1 8979:1 8988:2 9002:1 9017:2 9074:1 9089:3 9102:1 9105:3 9110:6 9123:3 9141:1 9163:1 9166:1 9180:2 9182:1 9186:2 9208:9 9215:1 9223:1 9224:1 9231:1 9249:1 9260:1 9263:1 9267:1 9272:1 9280:1 9283:1 9288:2 9293:1 9353:2 9362:1 9367:3 9376:2 9394:1 9412:1 9430:2 9433:1 9446:2 9468:1 9472:1 9475:1 9481:2 9487:1 9508:2 9551:1 9556:2 9564:1 9565:1 9595:1 9619:1 9719:1 9727:1 9729:1 9732:2 9773:2 9832:4 9834:1 9836:1 9847:1 9856:1 9859:1 9870:1 9901:2 9908:1 9917:1 9926:1 9932:1 9945:1 9958:3 9967:1 9990:2 9991:2 9999:1 10001:2 10010:3 10011:1 10013:1 10016:1 10018:1 10021:1 10026:1 10028:2 10035:1 10036:1 10060:1 10061:1 10099:3 10106:1 10113:1 10121:1 10125:1 10130:4 10133:6 10172:1 10181:1 10196:1 10202:1 10212:4 10229:3 10299:1 10316:1 10328:1 10340:1 10347:1 10348:4 10349:2 10352:1 10353:1 10387:1 10427:1 10433:2 10462:1 10470:1 10472:1 10474:1 10495:1 10497:1 10531:6 10537:1 10540:2 10566:1 10571:1 10598:1 10601:1 10608:1 10625:1 10630:1 10632:1 10635:1 10651:3 10656:2 10687:1 10688:1 10712:1 10716:1 10718:1 10723:1 10732:1 10741:1 10758:1 10763:1 10771:1 10786:2 10788:6 10839:2 10845:2 10848:1 10867:1 10869:2 10902:1 10903:1 10926:1 10930:1 10944:1 10950:2 10970:1 10983:5 10985:1 10988:1 11007:1 11020:1 11031:1 11032:1 11034:1 11037:1 11042:1 11045:1 11051:1 11056:2 11061:1 11079:1 11101:1 11102:5 11112:2 11118:8 11167:1 11174:1 11183:1 11185:11 11224:1 11254:1 11273:1 11277:1 11289:1 11297:2 11303:4 11335:1 11365:3 11384:1 11395:1 11408:1 11410:2 11436:2 11443:1 11456:2 11457:2 11462:1 11474:1 11479:3 11480:1 11484:1 11499:1 11506:1 11520:1 11538:1 11552:1 11563:1 11582:2 11608:1 11626:1 11680:1 11693:1 11723:1 11742:3 11818:1 11849:2 11868:1 11870:1 11885:1 11912:1 11918:1 11932:1 11975:8 11979:1 12005:1 12018:1 12035:1 12057:11 12063:1 12085:1 12090:2 12114:1 12115:2 12141:2 12164:1 12179:1 12180:1 12186:1 12251:1 12253:1 12261:1 12263:4 12280:1 12315:1 12356:2 12378:4 12387:1 12390:1 12391:3 12394:2 12408:2 12413:1 12414:8 12416:1 12418:1 12437:1 12439:1 12456:1 12473:2 12474:1 12498:1 12510:1 12511:8 12516:1 12523:1 12526:14 12538:1 12555:1 12597:3 12626:1 12653:1 12670:2 12689:1 12696:1 12702:1 12728:1 12753:1 12757:2 12759:1 12764:1 12787:1 12803:1 12818:1 12887:1 12889:1 12891:1 12894:3 12895:1 12903:1 12905:1 12920:1 12927:2 12939:1 12960:1 12978:1 13005:10 13012:1 13015:2 13051:1 13055:2 13056:1 13080:2 13088:1 13095:1 13096:1 13097:1 13100:2 13107:1 13122:1 13128:1 13138:1 13170:3 13172:2 13199:2 13244:1 13245:1 13282:1 13290:1 13297:1 13300:1 13301:2 13336:1 13343:1 13403:2 13405:1 13412:1 13422:1 13424:1 13429:1 13430:1 13463:1 13465:1 13468:1 13498:1 13509:1 13527:1 13535:2 13541:1 13542:1 13552:1 13563:1 13586:1 13587:1 13593:2 13618:1 13638:1 13641:4 13671:4 13687:1 13705:1 13727:1 13732:1 13739:3 13756:2 13771:1 13793:1 13794:1 13810:1 13819:2 13834:1 13844:1 13867:1 13869:1 13879:1 13887:1 13895:1 13910:1 13930:1 13933:1 13943:1 13957:1 14001:1 14015:1 14042:3 14045:1 14053:2 14066:1 14087:3 14156:1 14177:4 14184:1 14185:1 14207:1 14232:1 14234:1 14240:2 14271:1 14276:1 14278:1 14330:1 14352:3 14363:1 14382:3 14383:1 14385:1 14387:1 14405:1 14432:1 14433:1 14475:1 14483:1 14500:1 14512:1 14524:1 14534:1 14544:1 14549:1 14550:26 14574:1 14580:1 14584:1 14589:1 14621:1 14625:1 14628:1 14639:1 14660:1 14662:1 14671:2 14674:1 14695:1 14757:3 14765:1 14768:2 14769:1 14770:2 14777:1 14779:1 14785:1 14789:1 14794:1 14799:3 14801:1 14808:1 14814:1 14847:2 14849:1 14888:1 14889:1 14895:1 14903:1 14911:5 14912:5 14939:1 14949:1 14968:1 15004:1 15030:1 15037:2 15051:1 15057:1 15068:1 15085:1 15094:1 15128:2 15130:2 15135:1 15152:1 15166:4 15176:1 15184:1 15185:1 15197:1 15204:1 15206:1 15210:1 15217:4 15238:1 15244:1 15253:1 15269:1 15273:1 15274:2 15278:1 15279:1 15280:1 15282:2 15284:1 15287:2 15288:1 15290:1 15295:3 15297:1 15300:5 15303:1 15314:1 15331:3 15351:1 15410:1 15495:1 15501:1 15528:1 15530:1 15567:1 15604:2 15623:1 15647:1 15649:1 15653:1 15661:1 15664:1 15667:1 15668:1 15671:1 15680:1 15725:1 15733:1 15734:2 15742:1 15755:2 15758:4 15767:2 15772:1 15780:1 15803:1 15804:1 15814:2 15818:1 15836:1 15844:2 15846:1 15861:3 15868:9 15870:2 15892:1 15921:2 15924:1 15928:1 15930:2 15939:2 15941:2 15962:1 15968:1 15971:2 15992:1 15997:1 15999:2 16015:1 16020:2 16042:1 16045:1 16050:1 16068:1 16074:1 16080:1 16081:1 16090:1 16096:1 16100:1 16102:1 16118:1 16129:1 16131:1 16161:1 16187:1 16193:2 16197:1 16200:1 16214:1 16230:2 16252:3 16255:1 16269:2 16319:1 16328:1 16374:1 16376:1 16378:1 16412:1 16416:1 16466:1 16467:1 16487:1 16489:1 16534:1 16535:2 16548:1 16556:2 16563:2 16571:1 16578:1 16580:1 16598:1 16604:1 16607:1 16610:1 16625:1 16628:2 16655:1 16666:1 16674:1 16692:1 16695:1 16704:6 16724:1 16740:1 16741:1 16748:2 16749:1 16769:1 16772:2 16786:3 16788:1 16789:2 16799:1 16803:1 16828:1 16839:1 16848:1 16854:1 16859:1 16862:1 16871:1 16879:3 16886:2 16888:1 16891:1 16899:1 16912:1 16914:1 16918:1 16920:1 16923:1 16940:8 16963:2 16966:2 16994:1 17005:1 17007:1 17012:1 17056:1 17067:1 17096:1 17100:1 17109:1 17112:1 17117:1 17142:1 17148:1 17154:1 17169:1 17176:1 17184:1 17188:2 17203:1 17230:1 17237:1 17249:1 17277:1 17284:1 17348:3 17353:1 17374:5 17383:2 17385:1 17399:1 17444:1 17448:1 17449:1 17470:1 17554:1 17559:1824 17560:2 17575:3 17590:1 17601:1 17624:1 17642:1 17670:1 17690:1 17693:1 17699:2 17704:1 17724:1 17750:1 17752:1 17761:4 17770:1 17773:3 17774:1 17775:2 17776:1 17788:1 17805:1 17842:2 17873:1 17944:1 17964:3 18020:1 18024:2 18039:1 18071:2 18079:1 18092:1 18100:1 18142:1 18166:1 18169:1 18208:1 18209:2 18223:3 18239:1 18245:4 18265:1 18274:2 18293:1 18297:1 18303:1 18329:1 18330:4 18338:1 18348:2 18350:1 18351:1 18383:1 18394:8 18402:1 18452:1 18480:1 18483:1 18516:1 18518:1 18544:1 18547:1 18555:1 18579:1 18605:1 18613:2 18629:1 18635:1 18639:1 18641:1 18657:2 18658:2 18669:4 18673:1 18678:1 18694:1 18695:1 18702:1 18719:1 18728:1 18754:2 18773:1 18777:1 18782:1 18801:1 18820:1 18822:1 18839:1 18840:1 18846:2 18855:1 18879:1 18890:1 18898:5 18908:1 18909:1 18933:1 18946:1 18948:1 18956:1 18959:1 18965:1 18968:1 18973:2 18977:2 18991:2 18994:4 19005:2 19011:1 19030:1 19044:2 19046:1 19061:6 19065:3 19098:1 19099:1 19107:1 19168:1 19183:1 19207:1 19209:1 19254:1 19285:3 19302:1 19308:1 19327:1 19330:5 19333:4 19339:1 19340:2 19378:1 19394:1 19403:1 19409:1 19431:1 19440:1 19446:1 19470:1 19479:1 19496:1 19506:1 19533:1 19535:1 19538:1 19551:1 19555:1 19569:1 19589:1 19620:1 19626:2 19646:1 19658:1 19662:1 19664:1 19668:2 19679:1 19691:1 19718:1 19728:3 19736:1 19781:10 19788:2 19792:2 19797:1 19807:4 19830:1 19834:1 19844:1 19856:1 19859:1 19864:1 19866:1 19869:1 19875:1 19876:1 19893:1 19914:1 19922:2 19965:1 19970:1 19971:1 20009:1 20026:3 20051:2 20065:1 20070:3 20078:1 20084:2 20124:1 20152:1 20161:1 20167:1 20168:1 20176:1 20183:1 20193:3 20195:1 20196:1 20199:1 20210:1 20211:1 20241:1 20270:1 20274:1 20285:1 20302:1 20315:1 20322:2 20341:2 20346:1 20348:1 20361:2 20363:2 20366:2 20408:1 20414:1 20425:2 20441:1 20463:1 20466:1 20472:1 20473:1 20495:1 20520:1 20523:1 20524:1 20559:1 20573:1 20585:1 20589:1 20603:3 20604:3 20605:3 20611:1 20613:1 20615:1 20634:1 20636:2 20638:2 20646:1 20660:1 20665:1 20676:1 20693:1 20715:2 20749:1 20756:1 20761:1 20772:2 20775:2 20787:3 20802:1 20815:1 20831:1 20838:1 20846:2 20878:1 20884:1 20902:1 20913:2 20919:1 20920:4 20924:1 20926:1 20946:1 20949:1 20968:1 20972:2 20978:2 20982:1 21021:1 21038:1 21049:1 21050:1 21065:1 21078:1 21091:1 21100:1 21112:2 21128:1 21158:2 21160:1 21162:2 21164:1 21167:3 21169:1 21202:1 21211:1 21239:1 21243:1 21270:1 21284:1 21304:1 21307:1 21332:3 21336:1 21352:1 21356:1 21376:1 21388:2 21393:2 21396:1 21399:1 21401:1 21409:1 21415:1 21426:3 21433:1 21438:1 21444:3 21487:2 21490:2 21494:1 21500:1 21518:1 21536:1 21539:1 21549:1 21568:3 21615:4 21626:1 21640:2 21675:2 21682:1 21687:1 21696:1 21701:1 21706:1 21711:1 21720:1 21722:1 21728:1 21743:1 21777:1 21813:1 21821:1 21836:1 21850:1 21867:1 21871:3 21875:1 21877:1 21883:1 21914:1 21942:1 21944:3 21946:1 21951:1 21961:2 21972:1 21974:1 21998:1 22000:1 22010:1 22013:1 22020:1 22021:1 22039:1 22057:1 22060:1 22073:1 22082:1 22084:1 22103:4 22108:1 22127:1 22136:1 22165:3 22189:1 22191:2 22198:1 22282:2 22291:1 22304:1 22305:2 22325:1 22387:2 22401:1 22410:1 22416:3 22460:1 22500:1 22502:8 22573:2 22598:1 22603:1 22608:1 22617:1 22634:1 22657:1 22662:1 22672:3 22678:1 22687:2 22688:7 22691:1 22705:1 22710:1 22711:1 22729:1 22732:2 22744:1 22754:1 22757:1 22772:1 22803:1 22811:1 22849:1 22856:1 22857:1 22858:1 22861:1 22862:1 22863:1 22864:1 22870:1 22874:1 22909:1 22918:1 22919:3 22921:1 22922:2 22925:1 22927:2 22932:1 22933:1 22939:1 22953:1 22958:1 22960:4 22968:5 22969:1 22984:1 23006:1 23007:1 23026:1 23039:1 23042:1 23061:1 23068:2 23076:1 23081:2 23090:1 23109:1 23173:1 23176:1 23204:1 23211:2 23248:1 23262:1 23274:2 23282:1 23328:6 23369:1 23371:1 23381:1 23384:6 23393:1 23396:1 23397:1 23399:1 23407:1 23413:1 23436:1 23437:1 23535:1 23579:1 23596:2 23598:5 23635:1 23637:1 23647:2 23651:1 23660:2 23675:1 23701:1 23705:1 23708:1 23729:1 23734:2 23764:1 23817:1 23818:1 23826:1 23827:1 23854:1 23856:1 23859:1 23861:1 23878:1 23891:1 23932:1 23934:1 23946:1 23948:1 23949:1 23963:1 23964:1 23994:1 24014:1 24034:1 24092:1 24104:1 24111:1 24121:1 24142:4 24143:1 24144:5 24148:1 24198:1 24233:2 24262:3 24264:1 24285:1 24300:1 24313:1 24355:1 24362:1 24364:1 24365:2 24382:1 24394:1 24408:1 24420:3 24436:1 24437:1 24440:1 24444:3 24448:1 24469:1 24477:1 24494:1 24498:1 24500:4 24509:1 24525:1 24558:1 24571:4 24572:1 24587:2 24642:3 24654:1 24671:2 24702:1 24721:1 24726:1 24730:1 24738:1 24743:1 24750:1 24757:1 24776:1 24795:1 24796:2 24800:1 24812:1 24816:1 24819:1 24832:2 24836:3 24837:1 24855:2 24882:2 24888:1 24890:1 24893:1 24897:1 24909:3 24941:2 24947:2 24958:1 24973:1 25010:1 25021:1 25033:1 25034:1 25045:1 25082:1 25084:1 25095:1 25161:1 25228:1 25233:1 25241:1 25264:1 25271:1 25280:1 25308:1 25349:1 25353:1 25357:1 25367:1 25368:2 25384:1 25385:2 25389:1 25393:1 25404:1 25407:1 25419:1 25430:3 25440:1 25447:1 25448:1 25461:4 25513:1 25524:1 25527:4 25531:1 25548:2 25551:1 25614:4 25623:2 25631:1 25634:1 25635:2 25646:1 25654:1 25664:1 25680:2 25694:2 25695:2 25696:1 25702:1 25703:1 25706:1 25712:1 25719:1 25723:1 25761:1 25782:2 25786:1 25807:3 25817:1 25835:1 25837:1 25849:1 25893:1 25909:1 25912:2 25915:1 25928:4 25946:1 25980:2 25996:1 25998:6 26017:2 26023:1 26045:1 26065:1 26105:1 26120:1 26165:1 26178:3 26221:1 26250:3 26258:1 26287:1 26293:1 26312:4 26315:1 26341:1 26366:1 26372:1 26378:1 26382:1 26385:1 26392:17 26394:1 26396:1 26411:1 26423:1 26430:10 26443:2 26465:1 26489:2 26512:1 26518:1 26522:3 26529:3 26560:7 26561:1 26568:1 26590:1 26605:1 26632:2 26634:1 26643:1 26667:2 26687:1 26688:2 26693:1 26705:1 26726:1 26743:1 26770:1 26785:1 26808:3 26810:3 26838:1 26852:1 26864:1 26869:1 26873:1 26875:2 26881:1 26901:1 26910:1 26997:3 27010:1 27011:1 27015:10 27032:1 27037:1 27042:1 27048:1 27052:1 27054:2 27059:1 27087:1 27104:1 27112:1 27121:1 27167:1 27176:1 27188:1 27194:1 27204:1 27211:1 27219:1 27227:3 27233:2 27277:1 27379:1 27393:1 27394:1 27403:1 27406:1 27410:1 27420:1 27433:1 27439:2 27442:1 27466:1 27469:1 27475:2 27479:1 27493:1 27502:2 27509:1 27511:1 27512:1 27528:1 27548:1 27549:1 27561:1 27568:1 27572:1 27575:1 27578:3 27585:2 27587:2 27592:1 27596:2 27600:1 27602:1 27612:1 27640:1 27643:3 27653:1 27654:1 27671:1
20 10:1 17:1 21:1 22:1 26:1 29:1 57:1 68:1 72:1 81:1 86:1 96:1 109:1 114:1 145:1 155:1 168:1 185:1 191:1 207:1 241:3 245:2 246:1 263:3 266:1 298:1 317:1 323:2 324:1 366:1 368:2 435:1 441:2 471:1 511:1 526:1 529:1 548:1 549:3 556:1 570:1 579:2 592:2 615:2 617:1 620:3 716:1 748:1 808:1 848:1 853:2 856:1 865:2 867:1 877:1 882:1 883:3 885:1 894:1 908:1 915:3 933:1 935:3 937:1 939:5 941:4 948:1 956:1 959:1 966:4 991:3 992:3 996:2 1000:1 1009:1 1018:1 1040:1 1041:2 1045:1 1059:1 1079:1 1097:1 1102:3 1110:4 1136:1 1139:1 1144:1 1161:1 1163:1 1180:1 1186:1 1201:1 1202:1 1211:1 1215:1 1217:1 1219:1 1235:1 1252:1 1258:1 1271:1 1285:1 1328:1 1344:2 1356:2 1369:1 1383:1 1393:1 1395:1 1397:3 1418:3 1430:1 1437:1 1440:1 1441:1 1446:1 1460:3 1482:13 1484:2 1486:7 1490:1 1496:2 1501:1 1505:1 1517:1 1518:2 1522:1 1527:1 1541:1 1543:1 1550:9 1568:1 1569:1 1589:1 1593:1 1607:1 1608:1 1635:2 1655:1 1675:1 1703:5 1709:2 1726:1 1754:1 1760:2 1791:1 1799:1 1814:1 1830:2 1839:3 1843:2 1851:1 1863:2 1868:1 1882:1 1883:1 1887:1 1924:1 1942:1 1954:4 1974:1 1994:1 1996:3 1999:1 2005:1 2007:1 2014:1 2055:5 2059:1 2077:1 2088:1 2093:2 2099:1 2120:2 2123:8 2126:3 2129:1 2130:1 2136:1 2138:1 2139:2 2141:3 2142:2 2143:1 2146:1 2158:1 2161:2 2163:2 2186:1 2193:1 2195:1 2196:4 2198:1 2202:1 2205:2 2209:1 2210:2 2212:1 2214:3 2215:2 2218:2 2225:1 2228:2 2230:1 2232:2 2250:1 2254:1 2256:1 2278:1 2298:1 2304:1 2324:1 2334:1 2348:1 2351:1 2352:1 2376:1 2387:1 2406:1 2427:1 2433:1 2434:1 2458:1 2490:1 2492:1 2497:1 2509:1 2520:1 2522:1 2528:1 2562:1 2571:1 2592:1 2610:1 2618:2 2625:1 2626:1 2655:2 2656:1 2670:1 2676:1 2686:1 2691:1 2695:1 2713:2 2742:1 2765:3 2774:2 2775:9 2778:2 2788:1 2791:2 2792:3 2806:1 2810:1 2826:9 2849:1 2909:1 2929:2 2983:3 3032:1 3037:1 3074:1 3108:1 3116:1 3125:1 3135:1 3144:3 3174:3 3205:3 3226:1 3227:1 3235:1 3238:1 3266:1 3286:1 3328:1 3337:1 3374:2 3382:1 3389:1 3440:1 3443:2 3456:1 3458:1 3460:1 3467:1 3489:1 3497:1 3524:1 3535:1 3537:1 3543:1 3544:1 3550:1 3553:2 3584:2 3592:2 3593:2 3638:4 3639:1 3662:1 3664:6 3703:1 3723:1 3736:1 3744:1 3751:6 3769:2 3772:1 3795:1 3804:1 3819:1 3820:2 3825:1 3836:1 3842:2 3849:2 3850:1 3865:1 3878:1 3897:1 3907:1 3931:1 3949:1 3969:1 3991:1 3998:1 4020:1 4094:1 4097:1 4120:1 4130:1 4160:1 4162:1 4167:1 4168:1 4170:1 4191:1 4225:2 4228:1 4245:1 4255:1 4289:1 4291:1 4293:1 4323:1 4324:2 4355:1 4359:1 4361:1 4372:1 4393:1 4411:1 4418:1 4434:1 4455:2 4456:1 4463:1 4478:4 4501:2 4503:1 4553:1 4564:1 4579:1 4592:1 4616:1 4619:1 4659:1 4679:1 4688:1 4693:1 4701:12 4710:1 4736:1 4756:1 4795:3 4799:6 4817:3 4818:2 4823:1 4825:1 4828:1 4834:1 4839:1 4840:1 4841:2 4843:3 4845:3 4848:1 4849:1 4862:1 4894:1 4950:1 4959:1 4995:1 5004:4 5007:1 5018:1 5030:1 5038:1 5040:1 5066:3 5071:1 5086:1 5096:1 5123:2 5141:1 5144:1 5149:1 5173:3 5186:1 5211:1 5217:1 5222:1 5227:1 5231:4 5261:1 5333:2 5343:1 5355:2 5366:1 5373:1 5375:1 5380:1 5385:2 5391:1 5398:1 5400:1 5407:1 5414:3 5428:3 5447:1 5473:2 5486:1 5488:1 5505:1 5512:1 5529:1 5537:1 5540:1 5546:1 5549:2 5566:1 5570:1 5572:1 5592:2 5599:3 5629:4 5630:2 5652:2 5657:2 5664:1 5665:2 5708:1 5716:1 5745:1 5757:1 5764:2 5781:2 5789:1 5799:1 5815:2 5829:2 5831:1 5859:1 5863:1 5873:1 5877:2 5925:3 5928:1 5932:3 5965:1 5967:1 5976:1 5996:3 5998:1 6006:1 6010:1 6011:1 6024:1 6031:2 6041:1 6063:2 6065:2 6068:1 6080:3 6081:1 6082:1 6088:2 6095:1 6096:1 6099:3 6100:1 6103:2 6105:4 6106:2 6108:4 6151:1 6169:1 6172:1 6201:4 6212:1 6217:4 6230:2 6277:1 6278:1 6321:1 6336:1 6385:2 6403:1 6408:1 6415:1 6416:2 6424:1 6427:2 6465:1 6466:1 6473:1 6475:1 6477:1 6483:2 6501:1 6502:1 6504:1 6509:1 6526:1 6527:1 6557:2 6601:1 6610:3 6642:3 6652:1 6653:1 6659:1 6665:1 6669:1 6696:1 6714:1 6718:2 6731:1 6749:1 6753:1 6766:1 6793:6 6794:1 6804:1 6817:1 6855:2 6879:1 6887:1 6901:1 6906:1 6907:1 6955:1 6970:1 6976:1 6993:1 6998:1 7008:1 7025:1 7056:3 7065:1 7066:3 7083:1 7085:1 7091:1 7104:1 7128:1 7135:1 7140:2 7142:1 7148:1 7162:1 7166:1 7168:1 7185:1 7193:2 7195:1 7197:1 7208:1 7209:1 7227:1 7234:1 7258:1 7261:3 7268:8 7277:1 7284:1 7287:1 7289:4 7292:1 7315:1 7320:1 7328:24 7346:4 7347:11 7357:1 7384:1 7401:2 7407:1 7415:1 7467:1 7519:1 7538:1 7572:1 7587:3 7596:3 7601:1 7615:1 7677:1 7691:1 7693:1 7700:1 7704:1 7717:1 7723:9 7733:2 7735:1 7743:1 7762:1 7783:1 7791:22 7816:1 7835:1 7839:1 7842:1 7849:1 7855:1 7877:1 7910:1 7944:1 7947:1 7950:1 7964:1 7969:2 7974:1 7986:1 7988:1 7996:1 8002:3 8015:1 8024:1 8054:1 8073:1 8112:1 8113:2 8115:1 8123:1 8125:3 8128:1 8130:4 8133:1 8134:1 8136:2 8141:3 8153:1 8154:1 8157:2 8187:1 8216:2 8217:2 8219:1 8246:1 8248:1 8275:1 8277:1 8299:1 8347:1 8368:1 8383:1 8391:2 8402:1 8412:3 8423:1 8433:1 8440:1 8441:1 8445:3 8457:1 8480:1 8488:1 8495:1 8511:1 8514:1 8518:1 8524:1 8530:1 8558:1 8560:2 8566:6 8569:4 8573:1 8585:3 8598:1 8602:1 8647:1 8656:1 8678:1 8684:1 8707:1 8713:1 8735:1 8791:2 8794:1 8804:1 8811:1 8812:1 8813:1 8817:1 8824:1 8830:1 8877:1 8893:1 8909:1 8925:2 8933:1 8950:1 8956:2 8957:1 8967:1 8972:1 8974:1 8979:1 8988:4 9002:1 9017:3 9074:1 9089:3 9102:1 9105:3 9110:6 9123:3 9141:1 9163:1 9166:1 9180:2 9182:1 9186:2 9208:9 9215:1 9223:1 9224:1 9231:1 9249:1 9260:1 9263:1 9267:1 9272:1 9280:1 9283:1 9288:2 9293:1 9353:2 9362:1 9367:3 9368:1 9376:2 9394:1 9412:1 9430:2 9433:2 9446:2 9468:1 9472:1 9475:1 9481:2 9487:1 9508:2 9551:1 9556:2 9564:1 9565:1 9595:1 9619:1 9676:1 9719:1 9727:1 9729:1 9732:2 9773:2 9832:4 9834:2 9836:1 9847:1 9856:1 9859:1 9870:1 9901:2 9908:1 9917:1 9926:1 9932:1 9945:1 9958:3 9967:1 9990:2 9991:2 9999:1 10001:2 10010:3 10011:1 10013:1 10016:1 10018:1 10021:1 10026:1 10028:2 10035:1 10036:1 10060:1 10061:1 10099:3 10106:1 10113:1 10118:1 10121:1 10125:1 10130:4 10133:6 10172:1 10181:2 10196:1 10202:1 10212:4 10229:3 10299:1 10316:1 10328:1 10340:1 10347:1 10348:4 10349:2 10352:1 10353:1 10387:1 10420:1 10427:1 10433:2 10462:1 10470:1 10472:1 10474:1 10495:1 10497:1 10531:6 10537:1 10540:2 10566:1 10571:1 10598:1 10601:1 10608:1 10625:1 10630:1 10632:1 10635:1 10651:3 10656:2 10687:1 10688:1 10701:1 10712:1 10716:1 10718:1 10723:1 10732:1 10741:1 10758:1 10763:1 10771:1 10786:2 10788:6 10825:1 10839:2 10845:2 10848:2 10867:1 10869:3 10902:1 10903:1 10926:1 10930:1 10944:1 10949:1 10950:2 10970:1 10983:5 10985:1 10988:1 11007:1 11020:2 11031:1 11032:1 11034:1 11037:1 11042:1 11045:1 11051:1 11056:2 11061:1 11079:1 11100:1 11101:1 11102:5 11112:2 11118:8 11167:1 11174:1 11183:1 11185:11 11224:1 11254:1 11273:1 11277:1 11289:1 11297:2 11303:4 11335:1 11365:3 11384:1 11395:1 11408:1 11410:3 11436:2 11443:1 11456:2 11457:2 11462:1 11474:1 11479:3 11480:1 11484:1 11499:1 11506:1 11520:1 11538:1 11552:1 11563:1 11582:2 11608:1 11626:1 11680:1 11693:1 11723:1 11742:3 11818:1 11849:2 11868:1 11870:1 11885:1 11912:1 11918:1 11932:1 11975:8 11979:1 12005:1 12018:1 12035:1 12057:11 12063:1 12085:1 12090:2 12114:1 12115:2 12141:2 12164:1 12179:1 12180:1 12186:1 12251:1 12253:1 12261:1 12263:4 12280:1 12315:1 12356:2 12378:4 12387:1 12390:1 12391:3 12394:2 12408:2 12413:1 12414:8 12416:1 12418:1 12437:1 12439:1 12456:1 12473:2 12474:1 12498:1 12510:1 12511:8 12516:1 12523:1 12526:14 12538:1 12555:1 12597:3 12626:1 12653:1 12670:2 12689:1 12696:1 12702:1 12728:1 12753:1 12757:2 12759:1 12764:1 12787:1 12803:1 12818:1 12829:1 12887:1 12889:1 12891:1 12894:5 12895:1 12903:1 12905:1 12920:1 12927:2 12939:1 12960:1 12978:1 13005:10 13012:1 13013:1 13015:2 13051:1 13055:2 13056:1 13080:2 13088:1 13095:1 13096:1 13097:1 13100:2 13107:1 13122:1 13128:1 13138:1 13170:5 13172:2 13199:2 13233:1 13244:1 13245:1 13282:1 13290:1 13297:1 13300:1 13301:2 13336:2 13343:1 13403:2 13405:1 13412:1 13422:1 13424:1 13429:1 13430:1 13463:1 13465:1 13468:1 13498:1 13509:1 13527:1 13535:2 13541:1 13542:1 13552:1 13563:1 13586:1 13587:1 13593:2 13618:1 13638:1 13641:4 13671:4 13687:1 13696:1 13705:1 13727:1 13732:1 13739:3 13756:2 13771:1 13780:1 13793:1 13794:1 13810:1 13819:2 13834:1 13844:1 13867:1 13869:1 13879:1 13887:1 13895:1 13910:1 13930:1 13933:1 13943:1 13957:1 14001:1 14015:1 14037:1 14042:3 14045:1 14053:2 14066:1 14087:3 14138:1 14156:1 14158:1 14177:4 14184:1 14185:1 14207:1 14232:1 14234:1 14240:2 14271:1 14276:1 14278:1 14295:1 14330:1 14352:3 14363:1 14382:3 14383:1 14385:1 14387:1 14405:1 14432:1 14433:1 14475:1 14483:1 14500:1 14512:1 14524:1 14534:1 14544:1 14549:1 14550:27 14574:1 14580:1 14584:1 14589:1 14621:1 14625:1 14628:1 14639:1 14660:1 14662:1 14671:2 14674:1 14695:1 14757:3 14765:1 14768:2 14769:1 14770:2 14777:1 14779:1 14785:1 14789:1 14794:1 14799:3 14801:1 14808:1 14814:1 14847:2 14849:1 14888:1 14889:1 14895:1 14903:1 14911:5 14912:5 14939:1 14949:1 14968:1 15004:1 15018:1 15030:1 15037:2 15051:1 15057:1 15068:1 15085:1 15094:1 15128:2 15130:2 15135:1 15152:1 15166:4 15176:1 15184:1 15185:1 15197:1 15204:1 15206:1 15210:1 15216:1 15217:4 15238:1 15244:1 15253:1 15269:1 15273:1 15274:2 15278:1 15279:1 15280:1 15282:2 15284:1 15287:2 15288:1 15290:1 15292:1 15295:3 15297:1 15300:5 15303:1 15314:1 15331:3 15351:1 15410:1 15495:1 15501:1 15528:1 15530:1 15567:1 15604:2 15623:1 15647:1 15649:1 15653:1 15661:1 15664:1 15667:1 15668:1 15671:1 15680:1 15725:1 15731:1 15733:2 15734:2 15742:1 15755:2 15758:5 15767:2 15772:1 15780:1 15803:1 15804:1 15814:2 15818:1 15836:1 15844:2 15846:1 15861:3 15868:9 15870:2 15892:1 15921:2 15924:1 15928:1 15930:2 15939:2 15941:2 15962:2 15968:1 15971:2 15992:2 15997:1 15999:2 16015:1 16020:2 16042:1 16045:1 16050:1 16068:1 16074:1 16080:1 16081:1 16090:1 16096:1 16100:1 16102:1 16118:1 16129:1 16131:1 16161:1 16187:1 16193:2 16197:1 16200:1 16214:1 16230:2 16241:1 16252:3 16255:1 16269:2 16319:1 16328:1 16374:1 16376:1 16378:1 16412:1 16416:1 16466:1 16467:1 16470:1 16487:1 16489:1 16534:1 16535:2 16548:1 16556:2 16563:2 16571:1 16578:1 16580:1 16598:1 16604:1 16607:1 16610:1 16625:1 16628:2 16655:1 16666:1 16669:1 16674:1 16692:1 16695:1 16704:6 16724:1 16740:1 16741:1 16748:3 16749:1 16769:1 16772:2 16786:3 16788:1 16789:2 16799:1 16803:1 16828:1 16839:1 16848:1 16854:1 16859:1 16862:1 16871:1 16879:4 16886:2 16888:1 16891:1 16899:1 16912:1 16914:1 16918:1 16920:1 16923:1 16940:8 16963:2 16966:2 16994:1 17005:1 17007:1 17012:1 17056:1 17067:1 17096:1 17100:1 17109:1 17112:1 17117:1 17142:1 17148:1 17154:1 17169:1 17176:1 17184:1 17188:2 17203:1 17230:1 17237:1 17249:1 17277:2 17284:1 17348:3 17353:1 17374:5 17383:2 17385:1 17399:1 17444:1 17448:1 17449:1 17470:1 17554:1 17559:1875 17560:2 17575:3 17590:1 17601:1 17624:1 17642:1 17670:1 17690:1 17693:1 17699:2 17704:1 17724:1 17750:1 17752:1 17761:4 17770:1 17773:3 17774:1 17775:2 17776:1 17788:2 17805:1 17842:2 17873:1 17893:1 17944:1 17964:3 18020:1 18024:2 18039:1 18071:2 18079:1 18092:1 18100:1 18142:1 18166:1 18169:1 18208:1 18209:2 18223:3 18239:1 18245:4 18265:1 18274:2 18293:1 18297:1 18303:1 18329:1 18330:4 18338:1 18348:2 18350:1 18351:1 18383:1 18394:8 18402:1 18452:1 18480:1 18483:1 18516:1 18518:1 18544:1 18547:1 18555:1 18578:1 18579:1 18605:1 18613:2 18629:1 18635:1 18639:1 18641:1 18657:2 18658:3 18669:4 18673:1 18678:1 18694:1 18695:1 18702:1 18719:1 18728:1 18746:1 18754:2 18773:1 18777:1 18782:1 18801:1 18820:1 18822:1 18839:1 18840:1 18846:2 18855:1 18879:1 18890:1 18898:7 18908:1 18909:1 18933:1 18939:1 18946:1 18948:1 18956:1 18959:1 18965:1 18968:1 18973:2 18977:2 18991:2 18994:4 19005:2 19011:1 19030:1 19044:2 19046:1 19061:7 19065:3 19087:1 19098:1 19099:1 19107:1 19168:1 19183:1 19207:1 19209:1 19254:1 19285:3 19302:1 19308:1 19327:1 19330:5 19333:4 19339:1 19340:2 19377:1 19378:1 19394:1 19403:1 19409:1 19431:1 19440:1 19446:1 19470:1 19479:1 19496:1 19506:1 19516:1 19533:1 19535:1 19538:1 19551:1 19555:1 19569:1 19589:1 19620:1 19626:3 19646:1 19658:1 19662:1 19664:2 19668:2 19679:1 19691:1 19718:1 19728:3 19736:1 19781:10 19788:2 19792:2 19797:1 19807:4 19830:1 19834:1 19844:1 19856:1 19859:1 19864:1 19866:1 19869:1 19875:1 19876:1 19893:1 19900:1 19914:1 19922:2 19965:1 19970:1 19971:1 20009:1 20026:3 20051:2 20065:1 20070:3 20078:1 20084:2 20124:1 20152:1 20161:1 20167:1 20168:1 20176:1 20183:1 20193:3 20195:1 20196:1 20199:1 20210:1 20211:1 20241:1 20270:2 20274:1 20285:1 20302:1 20315:1 20322:2 20341:2 20346:1 20348:1 20361:2 20363:2 20366:2 20408:1 20414:2 20425:2 20441:1 20463:1 20466:2 20472:1 20473:1 20495:1 20520:1 20523:1 20524:1 20559:1 20573:1 20585:1 20589:1 20603:3 20604:3 20605:3 20611:1 20613:1 20615:1 20634:1 20636:2 20638:2 20646:1 20660:1 20665:1 20676:1 20693:1 20715:2 20749:1 20756:1 20761:1 20772:2 20775:2 20787:3 20802:1 20815:1 20831:1 20838:1 20846:2 20878:1 20884:1 20902:1 20913:2 20919:1 20920:4 20924:1 20926:1 20946:1 20949:1 20968:1 20972:2 20978:2 20982:1 21021:1 21038:1 21049:1 21050:1 21065:1 21078:1 21091:1 21100:1 21112:2 21128:1 21158:2 21160:1 21162:2 21164:1 21167:3 21169:1 21202:1 21211:1 21239:1 21243:1 21270:1 21284:1 21304:1 21307:1 21332:3 21336:1 21352:1 21356:1 21376:1 21388:2 21393:2 21396:1 21399:1 21401:1 21409:1 21415:1 21426:3 21433:1 21438:1 21444:3 21487:2 21490:2 21494:1 21500:1 21518:1 21536:1 21539:1 21549:1 21568:3 21615:4 21626:1 21640:2 21675:2 21682:1 21687:1 21696:1 21701:1 21706:1 21711:1 21720:1 21722:1 21728:1 21743:1 21777:1 21813:1 21821:1 21836:1 21850:1 21867:1 21871:3 21875:1 21877:1 21883:1 21914:1 21931:1 21942:1 21944:3 21946:1 21951:1 21961:3 21972:1 21974:1 21998:1 22000:1 22010:1 22013:1 22020:1 22021:1 22039:1 22057:1 22060:1 22073:1 22082:1 22084:1 22103:4 22108:1 22127:1 22136:1 22165:3 22189:1 22191:2 22198:1 22282:2 22291:1 22304:1 22305:2 22325:1 22387:2 22401:1 22410:1 22416:3 22460:1 22500:1 22502:8 22573:2 22598:1 22603:1 22608:1 22617:1 22634:2 22657:1 22662:1 22672:3 22678:1 22687:2 22688:7 22691:1 22705:1 22710:1 22711:1 22729:1 22732:2 22744:1 22754:1 22757:1 22772:1 22803:1 22811:1 22849:1 22856:1 22857:1 22858:1 22861:1 22862:1 22863:1 22864:1 22870:1 22874:1 22909:1 22918:1 22919:3 22921:1 22922:2 22925:1 22927:2 22932:1 22933:1 22939:1 22953:1 22958:1 22960:4 22968:5 22969:1 22984:1 23006:1 23007:1 23026:1 23035:1 23039:1 23042:1 23061:1 23068:2 23076:1 23081:2 23090:2 23109:1 23150:1 23164:1 23173:1 23176:1 23204:1 23211:2 23248:1 23255:1 23262:1 23274:2 23282:1 23328:6 23360:1 23369:1 23371:1 23381:1 23384:6 23393:1 23396:1 23397:1 23399:1 23407:1 23413:1 23436:2 23437:1 23535:1 23569:1 23579:1 23596:2 23598:5 23626:1 23635:1 23637:1 23647:2 23651:1 23660:2 23675:1 23701:1 23705:1 23708:1 23729:1 23734:2 23764:1 23817:1 23818:1 23826:1 23827:1 23854:1 23856:1 23859:1 23861:1 23878:1 23891:1 23932:1 23934:1 23946:1 23948:1 23949:1 23963:1 23964:1 23994:1 24014:1 24034:1 24092:1 24104:1 24111:1 24121:1 24142:4 24143:1 24144:5 24148:1 24198:1 24233:2 24262:3 24264:1 24285:1 24300:1 24311:1 24313:1 24355:1 24362:1 24364:1 24365:2 24382:1 24394:1 24408:1 24420:3 24436:1 24437:1 24440:1 24444:3 24448:1 24469:1 24477:1 24494:1 24498:1 24500:4 24509:1 24525:1 24558:1 24571:4 24572:1 24587:2 24642:3 24650:1 24654:1 24671:2 24702:1 24721:1 24726:1 24730:1 24738:1 24743:1 24750:1 24757:1 24776:1 24795:1 24796:2 24800:1 24812:1 24816:1 24819:1 24832:2 24836:3 24837:1 24855:2 24882:2 24888:1 24890:1 24893:1 24897:1 24909:3 24941:2 24947:2 24958:1 24973:1 25010:1 25021:1 25033:1 25034:1 25045:1 25082:1 25084:1 25095:1 25161:1 25228:1 25233:1 25241:1 25264:1 25271:1 25280:1 25308:1 25349:1 25353:1 25357:1 25367:1 25368:3 25384:1 25385:2 25389:1 25393:1 25404:1 25407:1 25419:1 25430:3 25440:1 25447:1 25448:1 25461:4 25513:1 25524:1 25527:4 25531:1 25548:2 25551:1 25557:1 25614:4 25623:2 25631:1 25634:1 25635:2 25646:1 25654:1 25664:1 25680:2 25684:1 25694:2 25695:2 25696:1 25702:1 25703:1 25706:1 25712:1 25719:1 25723:1 25761:1 25782:2 25786:1 25807:3 25817:1 25835:1 25837:1 25845:1 25849:1 25889:1 25893:1 25909:1 25912:2 25915:1 25928:4 25946:1 25980:2 25996:1 25998:6 26017:2 26023:1 26045:1 26065:1 26105:1 26120:1 26165:1 26178:3 26221:1 26250:3 26258:2 26287:1 26293:1 26312:4 26315:1 26341:1 26366:1 26372:1 26378:1 26382:1 26385:1 26392:17 26394:1 26396:1 26411:1 26423:1 26430:10 26443:2 26465:1 26489:2 26512:1 26518:1 26522:3 26529:3 26560:7 26561:1 26568:1 26590:1 26605:1 26632:2 26634:1 26643:1 26667:2 26687:1 26688:2 26693:1 26705:1 26726:1 26743:1 26770:1 26785:1 26808:3 26810:3 26838:1 26852:1 26864:1 26869:1 26873:1 26875:2 26881:1 26901:1 26910:1 26997:4 27010:1 27011:1 27015:10 27032:1 27037:1 27042:1 27048:1 27052:1 27054:2 27059:1 27087:1 27104:1 27112:1 27121:1 27167:1 27176:1 27188:1 27194:1 27204:1 27211:1 27219:1 27227:3 27233:2 27277:1 27379:1 27393:1 27394:1 27403:1 27406:1 27410:1 27420:1 27433:1 27439:2 27442:1 27466:1 27469:1 27475:2 27479:1 27493:1 27502:2 27509:1 27511:1 27512:2 27528:1 27548:1 27549:1 27561:1 27568:1 27572:1 27575:1 27578:3 27585:2 27587:3 27592:1 27596:2 27600:1 27602:1 27612:1 27640:1 27643:3 27653:1 27654:1 27671:1 27676:1
20 10:1 17:1 21:1 22:1 26:2 29:1 57:1 68:1 72:1 81:2 86:1 96:1 109:1 114:1 115:1 145:1 155:1 168:1 185:1 191:1 207:1 241:3 245:2 246:1 263:3 266:1 298:1 317:1 323:2 324:1 366:1 368:2 382:1 411:1 435:1 441:3 471:1 511:1 526:1 529:1 548:1 549:3 556:1 570:1 579:2 592:2 615:2 617:1 620:3 716:1 748:1 808:1 848:1 853:2 856:1 865:2 867:1 877:1 882:1 883:3 885:1 894:1 908:1 915:3 933:1 935:3 937:1 939:5 941:4 948:1 956:1 959:1 966:4 991:3 992:3 996:2 1000:1 1009:1 1018:1 1040:1 1041:2 1045:1 1059:1 1079:1 1097:1 1102:3 1110:4 1136:1 1139:1 1144:1 1161:1 1163:1 1180:1 1186:1 1201:1 1202:1 1211:1 1215:1 1217:1 1219:1 1235:1 1252:1 1258:1 1271:1 1285:1 1328:1 1344:2 1356:2 1369:1 1371:1 1383:1 1393:1 1395:1 1397:3 1418:3 1430:1 1437:1 1440:1 1441:1 1446:1 1460:3 1482:13 1484:2 1486:7 1490:1 1496:2 1501:1 1505:1 1517:1 1518:2 1522:1 1527:1 1541:1 1543:1 1550:9 1568:1 1569:1 1589:1 1593:1 1607:1 1608:1 1635:2 1655:1 1675:1 1703:5 1709:2 1726:1 1754:1 1760:2 1791:1 1799:1 1814:1 1830:2 1839:3 1843:2 1851:1 1863:2 1868:1 1882:1 1883:1 1887:1 1924:1 1942:1 1954:4 1974:1 1982:1 1994:1 1996:3 1999:1 2002:1 2005:1 2007:1 2014:1 2055:5 2059:1 2077:1 2088:1 2093:2 2094:2 2099:1 2120:2 2123:8 2126:4 2129:1 2130:1 2136:1 2138:1 2139:2 2141:3 2142:2 2143:1 2146:1 2158:1 2161:2 2163:2 2186:1 2192:2 2193:1 2195:1 2196:4 2198:1 2202:1 2205:2 2209:1 2210:2 2212:1 2214:3 2215:2 2218:2 2222:2 2225:1 2228:2 2230:1 2232:2 2250:1 2254:1 2256:1 2278:1 2298:1 2304:1 2324:1 2334:1 2348:1 2351:1 2352:1 2376:1 2387:1 2406:1 2427:1 2433:1 2434:1 2458:1 2490:1 2492:1 2497:1 2509:1 2520:1 2522:1 2528:1 2562:1 2571:1 2592:1 2602:1 2605:2 2610:1 2618:2 2625:1 2626:1 2655:2 2656:1 2664:1 2670:1 2676:1 2686:1 2691:1 2695:1 2713:2 2742:1 2765:3 2774:2 2775:9 2778:2 2788:1 2791:2 2792:3 2806:1 2810:1 2826:9 2849:1 2909:1 2929:2 2934:1 2983:3 3032:1 3037:1 3074:1 3108:1 3116:1 3117:1 3125:1 3135:1 3144:3 3174:3 3205:3 3221:1 3226:1 3227:1 3235:1 3238:1 3266:1 3286:1 3328:1 3337:1 3374:2 3382:1 3389:1 3440:1 3443:2 3456:2 3458:1 3460:2 3467:1 3489:1 3497:1 3507:1 3524:1 3535:1 3537:1 3543:1 3544:1 3550:1 3553:2 3584:2 3592:2 3593:2 3638:4 3639:1 3662:1 3664:6 3703:1 3723:1 3736:1 3744:1 3751:6 3765:1 3769:2 3772:1 3795:1 3804:1 3819:1 3820:2 3825:1 3836:1 3842:2 3849:2 3850:1 3865:1 3878:1 3897:1 3907:1 3931:1 3949:1 3969:1 3991:1 3998:1 4020:1 4094:1 4097:1 4118:1 4120:1 4130:1 4160:1 4162:1 4167:1 4168:1 4170:1 4191:1 4225:2 4228:1 4245:1 4255:1 4289:1 4291:1 4293:1 4323:1 4324:2 4355:1 4359:1 4361:1 4372:1 4393:1 4411:1 4418:1 4434:1 4455:2 4456:1 4463:1 4478:4 4501:2 4503:1 4553:1 4564:1 4579:1 4592:1 4616:1 4619:1 4659:1 4679:1 4688:1 4693:1 4701:12 4710:1 4736:1 4756:1 4795:3 4799:7 4817:3 4818:2 4820:1 4823:1 4825:1 4828:1 4834:1 4839:1 4840:1 4841:2 4843:3 4845:3 4848:1 4849:1 4862:1 4894:1 4950:1 4959:1 4995:1 5004:4 5007:1 5018:1 5030:1 5038:1 5040:1 5066:3 5071:1 5086:1 5096:1 5123:2 5141:1 5144:1 5149:1 5173:3 5186:1 5211:1 5217:1 5222:1 5227:1 5231:4 5261:1 5333:2 5338:1 5343:1 5355:2 5366:1 5373:1 5375:1 5380:1 5385:2 5391:1 5398:1 5400:1 5407:1 5414:3 5428:3 5447:1 5473:2 5486:1 5488:1 5505:1 5512:1 5529:1 5537:1 5540:1 5546:1 5549:2 5566:1 5570:1 5572:1 5592:2 5599:3 5629:4 5630:2 5652:2 5657:2 5664:1 5665:2 5708:1 5716:1 5745:1 5757:1 5764:2 5781:3 5789:1 5799:1 5815:2 5829:2 5831:1 5859:1 5863:1 5873:1 5877:2 5925:3 5928:1 5932:3 5965:1 5967:1 5976:1 5996:3 5998:1 6006:1 6010:1 6011:1 6024:1 6031:2 6041:1 6063:2 6065:2 6068:1 6080:3 6081:1 6082:1 6088:2 6092:1 6095:1 6096:1 6099:3 6100:1 6103:2 6105:4 6106:2 6108:4 6151:1 6169:1 6172:1 6201:4 6212:1 6217:4 6230:2 6277:1 6278:1 6321:1 6336:1 6385:2 6403:1 6408:1 6415:1 6416:2 6424:1 6427:2 6428:1 6465:1 6466:1 6473:1 6475:1 6477:1 6483:2 6501:1 6502:1 6504:1 6509:1 6526:1 6527:1 6557:2 6601:1 6610:3 6642:3 6652:1 6653:1 6659:1 6665:1 6669:1 6696:1 6714:1 6718:2 6731:1 6749:1 6753:1 6766:1 6775:1 6793:6 6794:1 6804:1 6813:1 6817:1 6855:2 6879:1 6887:1 6901:1 6906:1 6907:1 6955:1 6970:1 6976:1 6993:1 6998:1 7008:1 7025:1 7056:3 7065:1 7066:3 7083:1 7085:1 7091:1 7104:1 7128:1 7135:1 7140:2 7142:1 7148:1 7162:1 7166:1 7168:1 7185:1 7193:2 7195:1 7197:1 7208:1 7209:1 7227:1 7234:1 7258:1 7261:4 7268:8 7277:1 7284:1 7287:1 7289:4 7292:1 7315:1 7320:1 7328:28 7346:5 7347:11 7357:1 7384:1 7401:2 7407:1 7415:1 7457:1 7467:1 7519:1 7538:1 7572:1 7587:3 7596:3 7601:1 7615:1 7677:1 7691:1 7693:1 7700:1 7704:1 7717:1 7723:9 7733:2 7735:1 7741:1 7743:1 7762:1 7783:1 7791:23 7816:1 7835:1 7839:1 7842:1 7849:1 7855:1 7877:1 7910:1 7944:1 7947:1 7950:1 7964:1 7969:2 7974:1 7986:1 7988:1 7996:1 8002:3 8015:1 8024:1 8054:1 8059:1 8073:1 8112:1 8113:2 8115:1 8123:1 8125:3 8128:1 8130:4 8133:1 8134:1 8136:2 8141:4 8153:1 8154:1 8157:2 8187:1 8216:2 8217:2 8219:1 8246:1 8248:1 8275:1 8277:1 8299:1 8347:1 8368:1 8383:1 8391:2 8402:1 8412:3 8423:1 8433:1 8440:1 8441:1 8445:3 8457:1 8480:1 8488:1 8495:1 8511:1 8514:1 8518:1 8524:1 8530:1 8558:1 8560:2 8566:6 8569:4 8573:1 8585:3 8598:1 8602:1 8647:1 8656:1 8678:1 8684:1 8707:1 8713:1 8735:1 8791:3 8794:1 8804:1 8811:1 8812:1 8813:1 8817:1 8824:1 8830:1 8877:1 8893:1 8909:1 8925:2 8933:1 8950:1 8956:2 8957:1 8967:1 8972:1 8974:1 8979:1 8988:4 9002:1 9017:3 9050:1 9074:1 9089:3 9102:1 9105:3 9110:6 9123:3 9141:1 9163:1 9166:1 9180:2 9182:1 9186:2 9208:9 9215:1 9223:1 9224:1 9231:1 9249:1 9260:1 9263:1 9267:1 9272:1 9280:1 9283:1 9288:2 9293:1 9353:2 9362:1 9367:3 9368:1 9376:2 9394:1 9412:1 9430:2 9433:2 9446:2 9468:1 9472:1 9475:1 9481:2 9487:1 9508:2 9551:1 9556:2 9564:1 9565:1 9595:1 9619:1 9650:2 9676:1 9719:1 9727:1 9729:1 9732:2 9773:3 9832:4 9834:2 9836:1 9847:1 9856:1 9859:1 9870:1 9901:2 9908:1 9917:1 9926:1 9931:1 9932:1 9945:1 9958:3 9967:1 9990:2 9991:2 9999:1 10001:2 10010:3 10011:1 10013:1 10016:1 10018:1 10021:1 10026:1 10028:2 10035:1 10036:1 10060:1 10061:1 10099:3 10106:1 10113:1 10118:1 10121:1 10125:1 10130:4 10133:7 10172:1 10181:2 10196:1 10202:1 10212:4 10224:1 10229:3 10299:1 10316:1 10328:1 10340:1 10347:1 10348:4 10349:2 10352:1 10353:1 10387:1 10420:1 10427:1 10433:2 10462:1 10470:1 10472:1 10474:1 10495:1 10497:1 10531:6 10537:1 10540:2 10566:1 10571:1 10598:1 10601:1 10608:1 10625:1 10630:1 10632:1 10635:1 10651:3 10656:2 10687:1 10688:1 10701:1 10712:1 10716:1 10718:1 10719:1 10723:1 10732:1 10741:1 10758:1 10763:1 10771:1 10786:2 10788:7 10825:1 10839:2 10845:2 10848:2 10849:1 10867:1 10869:3 10902:1 10903:1 10926:1 10930:1 10944:1 10949:1 10950:2 10970:1 10983:5 10985:1 10988:1 11007:1 11020:2 11031:1 11032:1 11034:1 11037:1 11042:1 11045:1 11051:1 11056:2 11061:1 11079:1 11100:1 11101:1 11102:5 11112:3 11118:8 11167:1 11174:1 11183:1 11185:11 11224:1 11254:1 11273:1 11277:1 11289:1 11297:2 11303:4 11335:1 11365:3 11384:1 11395:1 11408:1 11410:3 11436:2 11443:1 11456:2 11457:2 11462:1 11474:1 11479:3 11480:1 11484:1 11499:1 11506:1 11520:1 11538:1 11552:1 11563:1 11567:1 11582:2 11598:1 11608:1 11626:1 11680:1 11693:1 11723:1 11742:3 11772:1 11818:1 11849:2 11868:1 11870:1 11885:1 11912:1 11918:1 11932:1 11971:1 11975:8 11979:1 11992:1 12005:1 12018:1 12035:1 12057:11 12063:1 12085:1 12090:2 12114:1 12115:2 12141:2 12164:1 12179:1 12180:1 12186:1 12251:1 12253:1 12261:1 12263:4 12279:1 12280:1 12315:1 12356:2 12378:4 12387:1 12390:1 12391:3 12394:2 12408:2 12413:1 12414:8 12416:1 12418:1 12437:1 12439:1 12456:2 12473:2 12474:1 12498:1 12510:1 12511:8 12516:1 12523:1 12526:14 12538:1 12555:1 12597:3 12626:1 12653:2 12670:2 12689:1 12696:1 12702:1 12714:1 12728:1 12737:1 12753:1 12757:2 12759:2 12764:1 12787:1 12791:1 12803:1 12818:1 12829:1 12887:1 12889:1 12891:1 12894:5 12895:1 12903:1 12905:1 12920:1 12927:2 12939:1 12960:1 12968:1 12978:1 13005:10 13012:1 13013:1 13015:2 13051:1 13055:2 13056:1 13080:2 13088:1 13095:2 13096:1 13097:1 13100:2 13107:1 13122:1 13128:1 13138:1 13170:5 13172:2 13199:2 13233:1 13244:1 13245:2 13282:1 13290:1 13297:1 13300:1 13301:2 13336:2 13343:1 13372:1 13403:2 13405:1 13412:1 13422:1 13424:1 13429:1 13430:1 13463:1 13465:1 13468:1 13498:1 13509:1 13527:1 13535:2 13541:1 13542:1 13552:1 13563:1 13586:1 13587:1 13593:2 13618:1 13638:1 13641:4 13671:4 13687:1 13696:1 13705:1 13727:1 13732:1 13739:3 13747:1 13756:2 13771:1 13780:1 13793:1 13794:1 13810:1 13819:2 13834:1 13844:1 13867:1 13869:1 13879:1 13887:1 13895:1 13910:1 13930:1 13933:1 13938:1 13943:1 13957:1 14001:1 14015:1 14037:1 14042:3 14045:1 14053:2 14066:1 14087:3 14138:1 14156:1 14158:1 14177:4 14184:1 14185:1 14207:1 14232:1 14234:1 14240:2 14271:1 14276:1 14278:1 14295:1 14330:1 14352:3 14363:1 14382:3 14383:1 14385:1 14387:1 14405:1 14432:1 14433:1 14475:1 14483:1 14500:1 14512:1 14524:1 14534:1 14544:1 14549:1 14550:28 14574:1 14580:1 14584:1 14589:1 14621:1 14625:1 14628:1 14639:1 14660:1 14662:1 14671:2 14674:1 14695:1 14717:1 14755:1 14757:3 14765:1 14768:2 14769:1 14770:2 14777:1 14779:1 14785:1 14789:1 14794:1 14799:4 14801:1 14808:1 14814:1 14847:2 14849:1 14888:1 14889:1 14895:1 14903:1 14911:5 14912:5 14939:1 14949:1 14968:1 15004:1 15018:1 15030:1 15037:2 15051:1 15057:1 15068:1 15085:1 15094:1 15128:2 15130:2 15135:1 15152:1 15166:4 15176:1 15184:1 15185:1 15197:1 15204:1 15206:1 15210:1 15216:1 15217:4 15238:1 15244:2 15253:1 15267:1 15269:1 15273:1 15274:2 15278:1 15279:1 15280:1 15282:2 15284:1 15287:3 15288:1 15290:1 15292:1 15295:3 15297:1 15300:5 15303:1 15314:1 15331:3 15351:1 15399:1 15410:1 15495:1 15501:1 15528:1 15530:1 15567:1 15604:2 15623:1 15647:1 15649:1 15653:1 15661:2 15664:1 15667:1 15668:1 15671:1 15680:1 15725:1 15731:1 15733:2 15734:2 15742:1 15755:2 15758:5 15767:2 15772:1 15780:1 15803:1 15804:1 15814:2 15818:1 15836:1 15844:2 15846:1 15861:3 15868:9 15870:2 15892:1 15921:2 15924:1 15928:1 15930:2 15939:2 15941:3 15962:2 15968:1 15971:2 15992:2 15997:1 15999:2 16015:1 16020:2 16042:1 16045:1 16050:1 16068:1 16074:1 16080:1 16081:1 16090:1 16096:1 16100:1 16102:1 16118:1 16129:1 16131:1 16161:1 16187:1 16193:2 16197:1 16200:1 16214:1 16230:2 16241:1 16252:3 16255:1 16269:2 16283:1 16319:1 16328:1 16374:1 16376:1 16378:1 16412:1 16416:2 16466:1 16467:1 16470:1 16487:1 16489:1 16534:1 16535:2 16548:1 16556:2 16563:2 16571:1 16578:1 16580:1 16598:1 16604:1 16607:1 16610:1 16625:1 16628:2 16655:1 16666:1 16669:1 16674:1 16692:1 16695:1 16704:6 16724:1 16740:1 16741:1 16748:3 16749:1 16769:1 16772:2 16786:3 16788:1 16789:2 16799:1 16803:1 16828:1 16839:1 16848:1 16854:1 16859:1 16862:1 16871:1 16879:4 16886:3 16888:1 16891:1 16899:1 16912:1 16914:1 16918:1 16920:1 16923:1 16940:8 16963:2 16966:2 16994:1 17005:1 17007:1 17012:1 17056:1 17067:1 17096:1 17100:1 17109:1 17112:1 17117:1 17142:1 17148:1 17154:1 17169:1 17176:1 17184:1 17188:2 17203:1 17230:1 17237:1 17249:1 17277:2 17284:1 17348:3 17353:1 17374:6 17383:2 17385:1 17399:1 17444:1 17448:1 17449:1 17470:1 17523:1 17554:1 17559:1941 17560:2 17575:3 17590:1 17601:1 17624:1 17642:1 17670:1 17690:1 17693:1 17699:2 17704:1 17724:1 17750:1 17752:1 17761:4 17770:1 17773:3 17774:1 17775:2 17776:1 17788:2 17805:1 17842:2 17858:1 17873:1 17893:1 17944:1 17964:3 18020:1 18024:2 18039:1 18071:2 18079:1 18092:1 18100:1 18142:1 18166:1 18169:1 18208:1 18209:2 18223:3 18239:1 18245:4 18265:2 18274:2 18293:1 18297:1 18303:1 18329:1 18330:4 18338:1 18348:2 18350:1 18351:1 18383:1 18394:8 18402:1 18423:1 18452:1 18480:1 18483:1 18516:1 18518:1 18544:1 18547:1 18555:1 18578:1 18579:1 18605:1 18613:2 18629:1 18635:1 18639:1 18641:1 18657:2 18658:3 18669:4 18673:1 18678:1 18694:1 18695:1 18702:2 18719:1 18728:1 18746:1 18754:2 18773:1 18777:1 18782:1 18801:1 18820:1 18822:1 18839:1 18840:1 18846:2 18855:1 18879:1 18890:1 18898:7 18908:1 18909:1 18933:1 18939:1 18946:1 18948:1 18956:1 18959:1 18965:1 18968:1 18973:2 18977:2 18991:2 18994:4 19005:2 19011:2 19030:1 19044:2 19046:1 19061:7 19065:3 19087:1 19098:1 19099:1 19107:1 19168:1 19183:1 19207:1 19209:1 19254:1 19285:3 19302:1 19308:1 19327:1 19330:5 19333:4 19339:1 19340:2 19377:1 19378:1 19394:1 19403:1 19409:1 19431:1 19440:2 19446:1 19470:1 19479:1 19496:1 19506:1 19516:1 19522:1 19533:1 19535:1 19538:1 19551:1 19555:1 19569:1 19589:1 19620:1 19626:4 19646:1 19658:1 19662:1 19664:2 19668:2 19679:1 19691:1 19718:1 19728:3 19736:1 19781:10 19788:2 19792:2 19797:1 19807:4 19830:1 19834:1 19844:1 19856:1 19859:1 19864:1 19866:1 19869:1 19875:1 19876:1 19893:1 19900:1 19914:1 19922:2 19965:1 19970:1 19971:1 20009:1 20026:3 20051:2 20065:1 20070:3 20078:1 20084:2 20089:1 20124:1 20152:1 20161:1 20163:1 20167:1 20168:1 20176:1 20183:1 20193:3 20195:1 20196:1 20199:1 20210:1 20211:1 20241:1 20262:1 20270:2 20274:1 20285:1 20302:1 20315:1 20322:2 20341:2 20346:1 20348:1 20361:2 20363:2 20366:2 20408:1 20414:2 20425:2 20441:1 20463:1 20466:2 20472:1 20473:1 20495:1 20520:1 20523:1 20524:1 20559:1 20573:1 20585:1 20589:1 20603:3 20604:3 20605:3 20611:1 20613:1 20615:1 20634:1 20636:2 20638:2 20640:1 20646:2 20660:1 20665:1 20676:2 20693:1 20715:2 20749:1 20751:1 20756:1 20761:1 20772:3 20775:2 20787:3 20802:1 20815:1 20831:1 20838:1 20846:2 20878:1 20884:1 20902:1 20913:2 20919:1 20920:4 20924:1 20926:1 20946:1 20949:1 20968:1 20972:2 20978:2 20981:1 20982:1 20985:1 21021:1 21038:1 21049:1 21050:1 21065:1 21078:1 21091:1 21100:1 21112:2 21128:1 21144:1 21158:2 21160:1 21162:2 21164:1 21167:3 21169:1 21202:1 21211:1 21239:1 21243:1 21270:1 21284:1 21304:1 21307:1 21332:3 21336:1 21352:1 21356:1 21376:1 21388:2 21393:2 21396:1 21399:1 21401:1 21409:1 21415:1 21426:3 21433:1 21438:1 21444:3 21466:1 21487:2 21490:2 21494:1 21500:1 21518:1 21536:1 21539:1 21549:1 21568:3 21615:4 21626:1 21640:2 21675:2 21682:1 21687:1 21696:1 21701:1 21706:1 21711:1 21720:1 21722:1 21728:1 21743:1 21777:1 21813:1 21821:1 21836:1 21850:1 21867:1 21871:3 21875:1 21877:1 21883:1 21897:1 21914:1 21929:1 21931:1 21942:1 21944:3 21946:1 21951:1 21961:3 21972:1 21974:1 21998:1 22000:1 22010:1 22013:1 22020:1 22021:2 22039:1 22057:1 22060:1 22073:1 22082:1 22084:1 22103:4 22108:1 22127:1 22136:1 22165:3 22189:1 22191:2 22198:1 22282:2 22291:1 22304:1 22305:2 22325:1 22387:2 22401:1 22410:1 22416:3 22460:1 22500:1 22502:8 22573:2 22598:1 22603:1 22608:1 22617:1 22624:1 22634:2 22657:1 22662:1 22672:3 22678:1 22687:2 22688:7 22691:1 22705:1 22710:1 22711:1 22729:1 22732:2 22744:1 22754:1 22757:1 22772:1 22803:1 22811:1 22849:1 22856:1 22857:1 22858:1 22861:1 22862:1 22863:1 22864:1 22870:1 22874:1 22909:1 22918:1 22919:3 22921:1 22922:2 22925:1 22927:3 22932:1 22933:1 22939:1 22953:1 22958:1 22960:4 22968:5 22969:1 22984:1 23006:1 23007:1 23026:1 23035:1 23039:1 23042:1 23061:1 23068:2 23076:1 23081:2 23090:2 23109:1 23112:1 23150:1 23164:1 23173:1 23176:1 23204:1 23211:2 23248:1 23255:1 23262:1 23274:2 23282:1 23328:6 23360:1 23369:1 23371:1 23381:1 23384:6 23393:1 23396:1 23397:1 23399:1 23407:1 23413:1 23436:2 23437:1 23535:1 23569:1 23579:1 23596:2 23598:5 23626:2 23635:1 23637:1 23647:2 23651:1 23660:2 23670:1 23675:1 23701:1 23705:1 23708:1 23729:1 23734:2 23764:1 23817:1 23818:1 23826:1 23827:1 23854:1 23856:1 23859:1 23861:1 23878:1 23891:1 23932:1 23934:1 23946:1 23948:1 23949:1 23963:1 23964:1 23994:1 24014:1 24034:1 24092:1 24104:1 24111:1 24121:1 24142:4 24143:1 24144:5 24148:1 24198:1 24233:2 24262:4 24264:1 24285:1 24300:1 24311:1 24313:1 24355:1 24362:1 24364:1 24365:2 24382:1 24394:1 24408:1 24420:3 24436:1 24437:1 24440:1 24444:3 24448:1 24469:1 24477:1 24494:1 24498:1 24500:4 24509:1 24525:1 24558:1 24571:5 24572:1 24587:2 24642:3 24650:1 24654:2 24671:2 24702:1 24721:1 24726:1 24730:1 24738:1 24743:1 24750:1 24757:1 24776:1 24795:1 24796:2 24800:1 24812:1 24816:1 24819:1 24832:2 24836:3 24837:1 24855:2 24882:2 24888:1 24890:1 24893:1 24897:1 24909:3 24941:2 24947:2 24958:1 24973:1 25010:1 25021:1 25033:1 25034:1 25045:1 25082:1 25084:1 25095:1 25161:1 25228:1 25233:1 25241:1 25264:1 25271:1 25280:1 25308:1 25349:1 25353:1 25357:1 25367:1 25368:3 25384:1 25385:2 25389:1 25393:1 25404:1 25407:1 25419:1 25430:3 25440:1 25447:1 25448:1 25461:4 25513:1 25524:1 25527:4 25531:1 25548:2 25551:1 25557:1 25614:4 25623:2 25631:1 25634:1 25635:2 25646:1 25654:1 25664:1 25680:2 25684:1 25694:2 25695:2 25696:1 25702:1 25703:1 25706:1 25712:1 25719:1 25723:1 25728:1 25761:1 25782:2 25786:1 25807:3 25817:1 25835:1 25837:1 25845:1 25849:1 25889:1 25893:1 25909:1 25912:2 25915:1 25928:4 25946:1 25953:1 25980:2 25996:1 25998:6 26017:2 26023:1 26045:1 26065:1 26105:1 26120:1 26165:1 26178:3 26221:1 26250:3 26258:2 26287:1 26293:1 26312:4 26315:1 26341:1 26366:1 26372:1 26378:1 26382:1 26385:1 26392:18 26394:1 26396:1 26411:1 26423:1 26430:10 26438:1 26441:1 26443:2 26465:1 26489:2 26512:1 26518:1 26522:3 26529:3 26560:7 26561:1 26568:1 26590:1 26605:1 26632:2 26634:1 26643:1 26667:2 26687:1 26688:2 26693:1 26705:2 26726:1 26743:1 26770:1 26785:1 26808:4 26810:3 26838:1 26852:1 26864:1 26869:1 26873:1 26875:2 26881:1 26901:1 26910:1 26984:1 26997:4 27010:1 27011:1 27015:10 27032:1 27037:1 27042:1 27048:1 27052:1 27054:2 27059:1 27087:1 27104:1 27112:1 27121:1 27167:1 27176:1 27188:1 27194:1 27204:1 27211:1 27219:1 27227:3 27233:2 27277:1 27379:1 27393:1 27394:1 27403:1 27406:1 27410:1 27420:1 27433:1 27439:2 27442:1 27466:1 27469:1 27475:2 27479:1 27493:1 27502:2 27509:1 27511:1 27512:2 27528:1 27548:1 27549:1 27561:1 27568:1 27572:1 27575:1 27578:3 27585:2 27587:3 27592:1 27596:2 27600:1 27602:1 27612:1 27640:1 27643:3 27653:1 27654:1 27671:1 27676:1
20 10:1 17:1 21:1 22:1 26:2 29:1 40:1 57:1 68:1 72:1 81:5 86:1 96:1 109:1 114:1 115:1 145:1 155:1 168:1 185:1 191:1 207:1 241:3 245:2 246:1 263:3 266:1 298:1 317:1 323:2 324:1 366:1 368:2 382:1 411:1 435:1 441:3 471:1 479:1 511:1 526:1 529:1 548:1 549:3 556:1 570:1 579:2 592:2 615:2 617:1 620:3 716:1 748:1 784:1 808:1 848:1 853:2 856:1 865:2 867:1 877:1 882:1 883:3 885:1 894:1 908:1 915:3 933:1 935:3 937:1 939:5 941:4 948:1 956:1 959:1 966:4 991:3 992:3 996:2 1000:1 1009:1 1018:1 1040:1 1041:2 1045:1 1059:1 1079:1 1097:1 1102:3 1110:4 1136:1 1139:1 1144:1 1161:1 1163:1 1180:1 1186:1 1201:1 1202:1 1211:1 1215:1 1217:1 1219:1 1235:1 1244:1 1252:1 1258:1 1271:1 1285:1 1328:1 1344:2 1356:2 1369:1 1371:1 1383:1 1393:1 1395:1 1397:3 1408:1 1418:4 1430:1 1437:1 1440:1 1441:1 1446:1 1460:3 1482:13 1484:2 1486:7 1490:1 1496:2 1501:1 1505:1 1517:1 1518:2 1522:1 1527:1 1541:1 1543:1 1550:9 1568:1 1569:1 1589:1 1593:1 1607:1 1608:1 1635:2 1655:1 1675:1 1703:5 1709:2 1726:1 1754:1 1760:2 1791:1 1799:1 1814:1 1830:2 1839:3 1843:2 1851:1 1863:2 1868:1 1882:1 1883:1 1887:1 1924:1 1942:1 1954:4 1974:1 1982:1 1994:1 1996:3 1999:1 2002:1 2005:1 2007:1 2014:1 2055:5 2059:1 2077:1 2088:1 2093:2 2094:2 2099:1 2120:2 2123:8 2126:5 2129:1 2130:1 2136:1 2138:1 2139:2 2141:3 2142:2 2143:1 2146:1 2158:1 2161:2 2163:2 2186:1 2192:2 2193:1 2195:1 2196:4 2198:1 2202:1 2205:2 2209:1 2210:2 2212:1 2214:3 2215:2 2218:3 2222:2 2225:1 2228:2 2230:1 2232:2 2250:1 2254:1 2256:1 2278:1 2289:1 2298:1 2304:1 2324:1 2334:1 2348:1 2351:1 2352:1 2376:1 2387:1 2406:1 2427:1 2433:1 2434:1 2458:1 2490:1 2492:1 2497:1 2509:1 2520:1 2522:1 2528:1 2546:1 2562:1 2571:1 2584:1 2592:1 2602:1 2605:2 2610:1 2618:2 2625:1 2626:1 2655:2 2656:1 2664:1 2670:1 2676:1 2686:1 2691:1 2695:1 2713:2 2729:1 2742:1 2765:3 2774:2 2775:9 2778:2 2788:1 2791:2 2792:3 2806:1 2810:1 2826:9 2849:1 2909:1 2929:2 2934:1 2939:1 2983:3 3032:1 3037:1 3074:1 3108:1 3116:1 3117:1 3125:1 3135:1 3144:3 3174:3 3205:3 3221:1 3226:1 3227:1 3235:1 3238:1 3266:1 3286:1 3328:1 3337:1 3339:1 3374:2 3382:1 3389:1 3440:1 3443:2 3456:2 3458:1 3460:2 3467:1 3488:1 3489:1 3497:1 3507:3 3524:1 3535:1 3537:1 3543:1 3544:1 3550:1 3553:2 3584:2 3592:2 3593:2 3638:4 3639:1 3662:1 3664:6 3703:1 3715:1 3723:1 3736:1 3744:1 3751:6 3765:1 3769:2 3772:1 3795:1 3804:1 3819:1 3820:2 3825:1 3836:1 3842:2 3849:2 3850:1 3865:1 3878:1 3897:1 3907:1 3931:1 3949:1 3969:1 3991:1 3998:1 4020:1 4094:1 4097:1 4118:1 4120:1 4130:1 4160:1 4162:1 4167:2 4168:1 4170:1 4191:1 4225:2 4228:1 4245:1 4255:1 4259:1 4289:1 4291:1 4293:1 4323:1 4324:2 4355:1 4359:1 4361:1 4372:1 4393:1 4411:1 4418:1 4434:1 4455:2 4456:1 4463:1 4478:4 4501:2 4503:1 4553:1 4564:1 4579:1 4592:1 4616:1 4619:1 4659:1 4668:1 4679:1 4688:1 4693:1 4701:13 4710:1 4736:1 4756:1 4795:3 4799:7 4817:3 4818:2 4820:1 4823:1 4825:1 4828:1 4833:1 4834:1 4839:1 4840:1 4841:2 4843:3 4845:3 4848:1 4849:1 4862:2 4894:1 4926:1 4950:1 4959:1 4995:1 5004:4 5007:1 5018:1 5030:1 5038:1 5040:1 5066:3 5071:1 5086:1 5096:1 5123:2 5141:1 5144:1 5149:1 5173:3 5186:1 5211:1 5217:1 5222:1 5227:1 5231:4 5261:1 5332:1 5333:2 5338:1 5343:1 5355:2 5366:1 5373:1 5375:1 5380:1 5385:2 5391:1 5398:1 5400:1 5407:1 5414:3 5428:3 5447:1 5473:2 5486:1 5488:1 5505:1 5512:1 5529:1 5537:1 5540:1 5546:1 5549:2 5566:1 5570:1 5572:1 5592:2 5599:3 5629:4 5630:2 5652:2 5657:2 5664:1 5665:2 5708:1 5716:1 5745:1 5757:1 5764:2 5781:3 5789:1 5799:1 5815:2 5829:2 5831:1 5859:1 5863:1 5873:1 5877:2 5925:3 5928:1 5932:3 5965:1 5967:1 5976:1 5996:3 5998:1 6006:1 6010:1 6011:1 6024:1 6031:2 6041:1 6063:2 6065:2 6068:1 6080:3 6081:1 6082:1 6088:2 6092:1 6095:1 6096:1 6099:3 6100:1 6103:2 6105:4 6106:2 6108:4 6151:1 6169:1 6172:1 6201:4 6212:1 6217:4 6230:2 6277:1 6278:1 6321:1 6336:1 6385:2 6403:1 6408:1 6415:1 6416:2 6424:1 6427:2 6428:1 6465:1 6466:1 6473:1 6475:1 6477:1 6483:2 6501:2 6502:1 6504:1 6509:1 6526:1 6527:1 6534:1 6557:2 6601:1 6610:3 6633:1 6642:3 6652:1 6653:1 6659:1 6665:1 6669:1 6696:1 6714:1 6718:2 6731:1 6749:1 6753:1 6766:1 6775:1 6793:6 6794:1 6804:1 6813:1 6817:1 6855:2 6879:1 6887:1 6901:1 6906:1 6907:1 6955:1 6970:1 6976:1 6993:1 6998:1 7008:1 7025:1 7030:1 7056:3 7065:1 7066:3 7083:1 7085:1 7091:1 7092:1 7104:1 7128:1 7135:1 7140:2 7142:1 7148:1 7162:1 7166:1 7168:1 7185:1 7193:2 7195:1 7197:1 7208:1 7209:1 7227:1 7234:1 7258:1 7261:4 7268:9 7277:1 7284:1 7287:1 7289:4 7292:1 7315:1 7320:1 7328:29 7346:5 7347:11 7357:1 7384:1 7401:2 7407:1 7415:1 7457:1 7467:1 7519:1 7538:1 7572:1 7587:3 7596:3 7601:1 7615:1 7677:1 7691:1 7693:1 7700:1 7704:1 7717:1 7723:9 7733:2 7735:1 7741:1 7743:1 7762:1 7783:1 7791:24 7816:1 7835:1 7839:1 7842:1 7849:1 7855:1 7877:1 7910:1 7944:1 7947:1 7950:1 7964:1 7969:3 7974:1 7986:2 7988:1 7996:1 8002:3 8015:1 8024:1 8026:1 8054:1 8059:1 8073:1 8112:1 8113:2 8115:1 8123:1 8125:3 8128:1 8130:4 8133:1 8134:1 8136:2 8141:4 8153:1 8154:1 8157:2 8187:1 8216:2 8217:2 8219:1 8246:1 8248:1 8275:1 8277:1 8299:1 8302:1 8347:1 8368:1 8383:1 8391:2 8402:1 8412:3 8423:1 8433:1 8440:1 8441:1 8445:3 8457:1 8475:1 8480:1 8488:1 8495:1 8511:1 8514:1 8518:1 8524:1 8530:1 8533:1 8558:1 8560:2 8566:6 8569:4 8573:1 8576:1 8585:3 8598:1 8602:1 8647:1 8656:1 8678:1 8684:1 8707:1 8713:1 8735:1 8791:3 8794:1 8804:1 8811:1 8812:1 8813:1 8817:1 8824:1 8830:1 8877:1 8893:1 8909:1 8925:2 8933:1 8940:1 8950:1 8956:2 8957:1 8967:1 8972:1 8974:1 8979:1 8988:4 9002:1 9017:3 9050:1 9074:1 9089:3 9102:1 9105:3 9110:6 9123:3 9141:1 9163:1 9166:1 9180:2 9182:1 9186:2 9208:9 9215:1 9223:1 9224:1 9231:1 9249:1 9260:1 9263:1 9267:1 9272:1 9280:1 9283:1 9288:2 9293:1 9353:2 9362:1 9367:3 9368:1 9376:2 9394:1 9412:1 9430:2 9433:2 9446:2 9468:1 9472:1 9475:1 9481:2 9487:1 9508:2 9551:1 9556:2 9564:1 9565:2 9595:1 9619:1 9650:2 9657:1 9676:1 9719:1 9727:1 9729:1 9732:2 9773:3 9832:4 9834:2 9836:1 9847:1 9856:1 9859:1 9870:1 9881:1 9901:2 9908:1 9917:1 9926:1 9931:1 9932:1 9945:1 9958:3 9967:1 9990:2 9991:2 9999:1 10001:2 10010:3 10011:1 10013:1 10016:1 10018:1 10021:1 10026:1 10028:2 10035:1 10036:1 10060:2 10061:2 10099:3 10106:1 10113:1 10118:1 10121:1 10125:1 10130:4 10133:7 10172:1 10181:2 10196:1 10202:1 10212:4 10224:1 10229:3 10299:1 10316:1 10328:1 10340:1 10347:1 10348:4 10349:2 10352:1 10353:1 10387:1 10420:1 10427:1 10433:2 10462:1 10467:1 10470:1 10472:1 10474:1 10495:1 10497:1 10531:6 10537:1 10540:2 10566:1 10571:1 10598:1 10601:1 10608:1 10625:1 10630:1 10632:1 10635:1 10651:3 10656:2 10687:1 10688:1 10701:1 10712:1 10716:1 10718:1 10719:1 10723:1 10732:1 10737:1 10741:1 10758:1 10763:1 10771:1 10786:2 10788:7 10825:1 10839:2 10845:2 10848:2 10849:1 10865:1 10867:1 10869:3 10902:1 10903:1 10926:1 10930:1 10944:1 10949:1 10950:2 10970:1 10983:5 10985:2 10988:1 11007:1 11020:2 11031:1 11032:1 11034:1 11037:1 11042:1 11045:1 11051:1 11056:2 11061:1 11079:1 11081:1 11100:1 11101:1 11102:5 11112:3 11118:8 11167:1 11174:1 11183:1 11185:11 11224:1 11254:1 11273:1 11277:1 11289:1 11297:2 11303:4 11335:1 11365:3 11384:1 11395:1 11408:1 11410:3 11436:2 11443:1 11456:2 11457:2 11462:1 11474:1 11479:3 11480:1 11484:1 11499:1 11506:1 11520:1 11538:1 11552:1 11563:1 11567:1 11582:2 11598:2 11608:1 11626:1 11680:1 11693:1 11723:1 11742:3 11751:1 11772:1 11818:1 11849:2 11868:1 11870:1 11885:1 11912:1 11918:1 11932:1 11971:1 11975:8 11979:1 11992:1 12005:1 12018:1 12035:1 12057:11 12063:1 12085:1 12090:2 12114:1 12115:2 12141:2 12164:1 12179:1 12180:1 12186:1 12251:1 12253:1 12261:1 12263:4 12279:1 12280:1 12302:1 12315:1 12356:2 12378:4 12387:1 12390:1 12391:3 12394:2 12408:2 12413:1 12414:8 12416:1 12418:1 12437:1 12439:1 12454:1 12456:2 12473:2 12474:1 12498:1 12510:1 12511:8 12516:1 12523:1 12526:14 12538:1 12555:1 12597:3 12626:1 12640:1 12653:2 12670:2 12689:1 12696:1 12702:1 12710:1 12714:1 12728:1 12737:1 12753:1 12757:2 12759:2 12764:1 12787:1 12791:1 12803:1 12818:1 12829:1 12887:1 12889:1 12891:1 12894:5 12895:1 12903:1 12905:1 12920:1 12927:2 12939:1 12960:1 12968:1 12978:1 13005:10 13012:1 13013:1 13015:2 13051:1 13055:2 13056:1 13080:2 13088:1 13095:2 13096:1 13097:1 13100:2 13107:1 13122:1 13128:1 13138:1 13170:5 13172:2 13199:2 13233:1 13244:1 13245:2 13282:1 13290:1 13297:1 13300:1 13301:2 13336:2 13343:1 13372:1 13403:2 13405:1 13412:1 13422:1 13424:1 13429:1 13430:1 13463:1 13465:1 13468:1 13498:1 13509:1 13527:1 13534:1 13535:2 13541:1 13542:1 13552:1 13563:1 13586:1 13587:1 13593:2 13618:1 13638:1 13641:4 13671:4 13687:1 13696:1 13705:1 13727:1 13732:1 13739:3 13747:1 13756:4 13771:1 13780:1 13793:1 13794:1 13810:1 13819:2 13834:1 13844:1 13867:1 13869:1 13879:1 13887:1 13895:1 13898:1 13910:1 13930:1 13933:1 13938:1 13943:1 13957:1 14001:1 14015:1 14037:1 14042:3 14045:1 14053:2 14066:1 14087:3 14138:1 14156:1 14158:1 14177:4 14184:1 14185:1 14207:1 14232:1 14234:1 14238:1 14240:2 14271:1 14276:1 14278:1 14295:1 14330:1 14352:3 14363:1 14382:3 14383:1 14385:1 14387:1 14405:1 14432:1 14433:1 14475:1 14483:1 14500:1 14512:1 14524:1 14534:1 14544:1 14549:1 14550:28 14574:1 14580:1 14584:1 14589:1 14621:1 14625:1 14628:1 14639:1 14660:1 14662:1 14671:2 14674:1 14695:1 14717:1 14755:1 14757:4 14765:1 14768:2 14769:1 14770:2 14777:1 14779:1 14785:1 14789:1 14794:1 14797:1 14799:4 14801:1 14808:1 14814:1 14847:2 14849:1 14888:1 14889:1 14895:1 14903:1 14911:5 14912:5 14939:1 14949:1 14968:1 15004:1 15018:1 15030:1 15037:2 15051:1 15057:1 15068:1 15074:1 15085:1 15094:1 15128:2 15130:2 15135:1 15152:1 15157:1 15166:4 15176:1 15184:1 15185:1 15197:1 15204:1 15206:1 15210:1 15216:1 15217:4 15238:1 15244:2 15253:1 15267:1 15269:1 15273:1 15274:2 15278:1 15279:1 15280:2 15282:2 15284:1 15287:3 15288:1 15290:1 15292:1 15295:3 15297:1 15300:5 15303:1 15314:1 15331:3 15351:1 15399:1 15410:1 15495:1 15501:1 15528:1 15530:1 15567:1 15604:2 15623:1 15647:1 15649:1 15653:1 15661:2 15664:1 15667:2 15668:1 15671:1 15680:1 15725:1 15731:1 15733:2 15734:2 15742:1 15755:2 15758:5 15767:2 15772:1 15780:1 15803:1 15804:1 15814:2 15818:1 15836:1 15844:2 15846:1 15861:3 15868:9 15870:2 15892:1 15921:2 15924:1 15928:1 15930:2 15939:2 15941:3 15962:2 15968:1 15971:2 15992:2 15997:2 15999:2 16015:1 16020:2 16042:1 16045:1 16050:1 16068:1 16074:1 16080:1 16081:1 16090:1 16096:1 16100:1 16102:1 16118:1 16129:1 16131:1 16161:1 16187:1 16193:2 16197:1 16200:1 16214:1 16230:2 16235:1 16241:1 16252:3 16255:1 16269:2 16283:1 16319:1 16328:1 16341:1 16374:1 16376:1 16378:1 16412:1 16416:2 16466:1 16467:1 16470:1 16487:1 16489:1 16534:1 16535:2 16548:1 16556:2 16563:2 16571:1 16578:1 16580:1 16598:1 16604:1 16607:1 16610:1 16625:1 16628:2 16655:1 16666:1 16669:1 16674:1 16692:1 16695:1 16704:6 16724:1 16740:1 16741:1 16748:3 16749:1 16769:1 16772:2 16786:3 16788:1 16789:2 16799:1 16803:1 16828:1 16830:1 16839:1 16848:1 16854:1 16859:1 16862:1 16871:1 16879:4 16886:3 16888:1 16891:1 16899:1 16912:1 16914:1 16918:1 16920:1 16923:1 16940:8 16963:2 16966:2 16994:1 17005:1 17007:1 17012:1 17056:1 17067:1 17096:1 17100:1 17109:1 17112:1 17117:1 17142:1 17148:1 17154:1 17169:1 17176:1 17184:1 17188:2 17203:1 17230:1 17237:1 17249:1 17277:2 17284:1 17348:3 17353:1 17374:6 17383:2 17385:1 17399:1 17444:1 17448:1 17449:1 17470:1 17523:1 17554:1 17559:2023 17560:2 17575:3 17590:1 17601:1 17624:1 17642:1 17670:1 17690:1 17693:1 17699:2 17704:1 17724:1 17729:1 17738:1 17750:1 17752:1 17761:4 17770:1 17773:3 17774:1 17775:2 17776:1 17788:2 17805:1 17842:2 17858:1 17873:1 17893:1 17899:1 17940:1 17944:1 17964:3 18020:1 18024:2 18039:1 18071:2 18079:1 18092:1 18100:1 18142:1 18166:1 18169:1 18208:1 18209:2 18223:3 18239:1 18245:4 18265:2 18274:2 18293:1 18297:1 18303:1 18329:1 18330:5 18338:1 18348:2 18350:1 18351:1 18383:1 18394:8 18402:1 18423:1 18452:1 18480:1 18483:1 18516:1 18518:1 18544:1 18547:1 18555:1 18578:1 18579:1 18605:1 18613:2 18629:1 18635:1 18639:1 18641:1 18657:2 18658:3 18669:4 18673:1 18678:1 18694:1 18695:1 18702:2 18719:1 18728:1 18746:1 18754:2 18773:1 18777:1 18782:1 18801:1 18820:1 18822:1 18839:1 18840:1 18846:2 18855:1 18879:1 18890:1 18898:8 18904:1 18908:1 18909:1 18933:1 18939:1 18946:1 18948:1 18956:1 18959:1 18965:1 18968:1 18973:2 18977:2 18991:2 18994:4 19005:2 19011:2 19027:1 19030:1 19044:2 19046:1 19061:7 19065:3 19069:1 19087:1 19098:1 19099:1 19107:1 19168:1 19183:1 19207:1 19209:1 19254:1 19285:3 19302:1 19308:1 19327:1 19330:5 19333:4 19339:1 19340:2 19377:1 19378:1 19394:1 19403:1 19409:1 19431:1 19440:2 19446:1 19470:1 19479:1 19496:1 19506:1 19516:1 19522:1 19533:1 19535:1 19538:1 19551:1 19555:1 19569:1 19589:1 19620:1 19626:4 19646:1 19658:1 19662:1 19664:2 19668:2 19679:1 19691:1 19718:1 19728:3 19736:1 19781:10 19788:2 19792:2 19797:1 19807:4 19808:1 19830:1 19834:1 19844:1 19856:1 19859:1 19864:1 19866:1 19869:1 19875:1 19876:1 19893:1 19900:1 19914:1 19922:2 19965:1 19970:1 19971:1 20009:1 20010:1 20026:4 20051:2 20065:1 20070:3 20078:1 20084:2 20089:1 20124:1 20152:1 20161:1 20163:1 20167:1 20168:1 20176:1 20183:1 20193:4 20195:1 20196:1 20199:1 20210:1 20211:1 20219:1 20241:1 20262:1 20270:2 20274:1 20285:1 20302:1 20315:1 20322:2 20341:2 20346:1 20348:1 20361:2 20363:2 20366:2 20408:1 20414:2 20416:1 20425:2 20441:1 20463:1 20466:2 20472:1 20473:1 20495:1 20520:1 20523:1 20524:1 20559:1 20573:1 20585:1 20589:1 20603:3 20604:3 20605:3 20611:1 20613:1 20615:1 20634:1 20636:2 20638:2 20640:1 20646:2 20660:1 20665:1 20676:2 20693:1 20715:2 20727:1 20749:1 20751:2 20756:1 20761:1 20772:3 20775:2 20787:3 20802:1 20815:1 20831:1 20838:1 20846:2 20869:1 20878:1 20884:1 20902:1 20913:2 20919:1 20920:4 20924:1 20926:1 20946:1 20949:1 20962:1 20968:1 20972:2 20978:2 20981:1 20982:1 20985:1 21021:1 21038:1 21049:1 21050:1 21065:1 21078:1 21091:1 21100:1 21112:2 21128:1 21144:1 21158:2 21160:1 21162:2 21164:1 21167:3 21169:1 21202:1 21211:1 21239:1 21243:1 21270:1 21284:1 21285:1 21304:1 21307:1 21332:3 21336:1 21352:1 21356:1 21376:1 21388:2 21393:2 21396:1 21399:1 21401:1 21409:1 21415:1 21426:3 21433:1 21438:1 21444:3 21466:1 21487:2 21490:2 21494:1 21500:1 21518:1 21536:1 21539:1 21549:1 21568:3 21615:4 21626:1 21640:2 21675:2 21682:1 21687:1 21696:1 21701:1 21706:1 21711:1 21720:1 21722:1 21728:1 21743:1 21777:1 21813:1 21821:1 21836:1 21850:2 21865:1 21867:1 21871:3 21875:1 21877:1 21883:2 21897:1 21914:1 21929:1 21931:1 21942:1 21944:3 21946:1 21951:1 21958:1 21961:3 21972:1 21974:1 21998:1 22000:1 22010:1 22013:1 22020:1 22021:2 22039:1 22057:1 22060:1 22073:1 22082:1 22084:1 22103:4 22108:1 22113:1 22127:1 22136:1 22165:3 22189:1 22191:2 22198:1 22282:2 22291:1 22304:1 22305:2 22322:1 22325:1 22387:2 22401:1 22410:1 22416:3 22460:1 22500:1 22502:8 22573:2 22598:1 22603:1 22608:1 22617:1 22624:1 22634:2 22657:1 22662:1 22672:3 22678:1 22687:2 22688:7 22691:1 22693:1 22705:1 22710:1 22711:1 22729:1 22732:2 22744:1 22754:1 22757:1 22772:1 22803:1 22811:1 22849:1 22856:1 22857:1 22858:1 22861:1 22862:1 22863:1 22864:1 22870:1 22874:1 22909:1 22918:1 22919:3 22921:1 22922:2 22925:1 22927:4 22932:1 22933:1 22939:1 22953:1 22958:1 22960:4 22968:5 22969:1 22984:1 23006:1 23007:1 23026:1 23035:1 23039:1 23042:1 23061:1 23068:2 23076:1 23081:2 23090:2 23109:1 23112:2 23150:1 23164:1 23173:1 23176:1 23204:1 23211:2 23248:1 23255:1 23262:1 23274:2 23282:1 23309:1 23328:6 23360:1 23369:1 23371:1 23381:1 23384:6 23393:1 23396:1 23397:1 23399:1 23407:1 23413:1 23436:2 23437:1 23535:1 23569:1 23579:1 23596:2 23598:5 23626:2 23635:1 23637:1 23647:2 23651:1 23660:2 23670:1 23675:1 23701:1 23705:1 23708:1 23729:1 23734:2 23764:1 23817:1 23818:1 23821:1 23826:1 23827:1 23854:1 23856:1 23859:1 23861:1 23878:1 23891:1 23932:1 23934:1 23946:1 23948:1 23949:1 23963:1 23964:1 23994:1 24014:1 24034:1 24092:1 24104:1 24111:1 24121:1 24142:4 24143:1 24144:5 24148:1 24198:1 24233:2 24262:4 24264:1 24285:1 24300:1 24311:1 24313:1 24355:1 24362:1 24364:1 24365:2 24382:1 24394:1 24408:1 24420:3 24436:1 24437:1 24440:1 24444:3 24448:1 24469:1 24477:1 24494:1 24498:1 24500:4 24509:1 24525:1 24548:1 24558:1 24571:5 24572:1 24587:2 24623:1 24642:3 24650:1 24654:2 24671:2 24702:1 24721:1 24726:1 24730:1 24738:1 24743:1 24750:1 24757:1 24776:1 24795:1 24796:2 24800:1 24812:1 24816:1 24819:1 24832:2 24836:3 24837:1 24855:2 24882:2 24888:1 24890:1 24893:1 24897:1 24909:3 24941:2 24947:2 24958:1 24973:1 24991:1 25010:1 25021:1 25033:1 25034:1 25045:1 25082:1 25084:1 25095:1 25161:1 25228:1 25233:1 25241:1 25264:1 25270:1 25271:1 25280:1 25308:1 25349:1 25353:1 25357:1 25367:1 25368:3 25384:1 25385:2 25389:1 25393:1 25404:1 25407:1 25417:1 25419:1 25430:3 25440:1 25447:1 25448:1 25461:4 25474:1 25513:1 25524:1 25527:4 25531:1 25548:2 25551:1 25557:1 25614:4 25623:2 25624:1 25631:1 25634:1 25635:2 25638:1 25646:1 25654:1 25664:1 25680:2 25684:1 25694:2 25695:2 25696:1 25702:1 25703:1 25706:1 25712:1 25719:1 25723:1 25728:1 25754:1 25761:1 25782:2 25786:1 25805:1 25807:3 25817:1 25835:1 25837:1 25845:1 25849:1 25889:1 25893:1 25909:1 25912:2 25915:1 25928:4 25946:1 25953:1 25980:2 25996:1 25998:6 26017:2 26023:1 26045:1 26065:1 26105:2 26120:1 26165:1 26178:3 26221:1 26250:3 26258:2 26287:1 26293:1 26312:4 26315:1 26341:1 26366:1 26372:1 26378:1 26382:1 26385:1 26392:18 26394:1 26396:1 26411:1 26423:1 26430:10 26438:1 26441:1 26443:2 26465:1 26489:2 26512:1 26518:1 26522:3 26529:3 26560:8 26561:1 26568:1 26590:1 26605:1 26632:2 26634:1 26643:1 26667:2 26687:1 26688:2 26693:1 26705:2 26726:1 26743:1 26764:1 26770:1 26785:1 26808:4 26810:3 26838:1 26852:1 26864:1 26869:1 26873:1 26875:2 26881:1 26890:1 26901:1 26910:1 26984:1 26997:4 27008:1 27010:1 27011:1 27015:10 27032:1 27037:1 27042:1 27048:1 27052:1 27054:2 27059:1 27087:1 27104:1 27112:1 27121:1 27167:1 27176:1 27188:1 27194:1 27204:1 27211:1 27219:1 27227:3 27233:2 27277:1 27340:1 27379:1 27393:1 27394:1 27403:1 27406:1 27410:1 27420:1 27433:1 27439:2 27442:1 27466:1 27469:1 27475:2 27479:1 27493:1 27502:3 27509:1 27511:1 27512:2 27528:1 27548:1 27549:1 27561:1 27568:1 27572:1 27575:1 27578:3 27580:1 27585:2 27587:3 27592:1 27596:2 27600:1 27602:1 27612:1 27640:1 27643:3 27647:1 27653:1 27654:1 27671:1 27676:1
20 10:1 17:1 21:1 22:1 26:2 29:1 40:1 57:1 68:1 72:1 81:7 86:1 96:1 109:1 114:1 115:1 145:1 155:1 168:1 185:1 191:1 207:1 241:3 245:2 246:1 263:3 266:1 298:1 317:1 323:2 324:1 366:1 368:2 382:1 411:1 435:1 441:3 471:1 479:2 511:1 526:1 529:1 548:1 549:3 556:1 557:1 570:1 579:2 592:2 615:2 617:1 620:3 716:1 748:1 784:1 808:1 848:1 853:2 856:1 865:2 867:1 877:1 882:1 883:3 885:1 894:1 908:1 915:3 929:1 933:1 935:3 937:1 938:1 939:5 941:4 948:1 956:1 959:1 966:4 980:1 991:3 992:3 996:2 1000:1 1009:1 1018:1 1040:1 1041:2 1045:1 1059:1 1079:1 1083:1 1097:1 1102:4 1110:4 1136:1 1139:1 1144:1 1161:1 1163:1 1180:1 1186:1 1201:1 1202:1 1211:1 1215:1 1217:1 1219:1 1235:1 1244:1 1252:1 1258:1 1271:1 1285:1 1328:1 1344:2 1356:2 1369:1 1371:1 1383:1 1393:1 1395:1 1397:4 1408:2 1418:4 1430:1 1437:1 1440:1 1441:1 1446:1 1460:3 1482:13 1484:2 1486:7 1490:1 1496:2 1501:1 1505:1 1517:1 1518:2 1522:1 1527:1 1541:1 1543:1 1550:9 1568:1 1569:1 1589:1 1593:1 1607:1 1608:1 1635:2 1655:1 1675:1 1703:5 1709:2 1726:1 1754:1 1760:2 1791:1 1799:1 1814:1 1830:2 1839:3 1843:2 1851:1 1863:2 1868:1 1882:1 1883:1 1887:1 1922:1 1924:2 1942:1 1954:4 1974:1 1982:1 1994:1 1996:3 1999:1 2002:1 2005:1 2007:1 2014:1 2055:5 2059:1 2077:1 2088:1 2093:2 2094:2 2099:1 2120:2 2123:8 2126:5 2129:1 2130:1 2136:1 2138:1 2139:2 2141:3 2142:2 2143:1 2146:1 2158:1 2161:2 2163:2 2186:1 2192:2 2193:1 2195:2 2196:4 2198:1 2202:1 2205:2 2209:1 2210:2 2212:1 2214:3 2215:2 2218:3 2222:2 2225:1 2228:2 2230:1 2232:2 2250:1 2254:1 2256:1 2278:1 2289:1 2298:1 2304:1 2324:1 2334:1 2348:1 2351:1 2352:1 2376:1 2387:1 2406:1 2427:1 2433:1 2434:1 2458:1 2490:1 2492:1 2497:1 2509:1 2520:1 2522:1 2528:1 2546:2 2562:1 2571:1 2584:1 2592:1 2602:1 2605:2 2610:1 2618:2 2625:1 2626:1 2655:2 2656:1 2664:1 2670:1 2676:1 2686:1 2691:1 2695:1 2713:2 2729:1 2742:1 2765:3 2774:2 2775:9 2778:2 2788:1 2791:2 2792:3 2806:1 2810:1 2826:9 2849:1 2909:1 2929:2 2934:1 2939:1 2983:3 3032:1 3037:1 3074:1 3108:1 3116:1 3117:1 3125:2 3135:1 3144:3 3174:3 3205:3 3221:1 3226:1 3227:1 3235:1 3238:1 3266:1 3286:1 3328:1 3337:1 3339:1 3374:2 3382:1 3389:1 3440:1 3443:2 3456:2 3458:1 3460:2 3467:1 3488:1 3489:1 3497:1 3507:5 3524:1 3535:1 3537:1 3543:1 3544:1 3550:1 3553:2 3584:2 3592:2 3593:3 3638:5 3639:1 3662:1 3664:6 3703:1 3715:2 3723:1 3736:1 3744:1 3751:6 3765:1 3769:2 3772:1 3795:1 3804:1 3819:1 3820:2 3825:1 3836:1 3842:2 3849:2 3850:1 3865:1 3878:1 3897:1 3907:1 3931:1 3949:1 3969:1 3991:1 3998:1 4020:1 4094:1 4097:1 4118:1 4120:1 4130:1 4160:1 4162:1 4167:2 4168:1 4170:1 4191:1 4225:2 4228:1 4245:1 4255:1 4259:1 4289:1 4291:1 4293:1 4323:1 4324:2 4355:1 4359:1 4361:1 4372:1 4393:1 4411:1 4418:1 4434:1 4455:2 4456:1 4463:1 4478:4 4501:2 4503:1 4553:1 4564:1 4579:1 4592:1 4616:1 4619:1 4659:1 4668:1 4679:1 4688:1 4693:1 4701:14 4710:1 4730:1 4736:1 4756:1 4795:3 4799:7 4817:3 4818:2 4820:1 4823:1 4825:1 4828:1 4833:1 4834:1 4839:1 4840:1 4841:2 4843:3 4845:3 4848:1 4849:1 4862:2 4894:1 4915:1 4926:1 4950:1 4959:1 4995:1 5004:4 5007:1 5018:1 5030:1 5038:1 5040:1 5066:3 5071:1 5086:1 5096:1 5123:2 5141:1 5144:1 5149:1 5173:3 5186:1 5211:1 5217:1 5222:1 5227:1 5231:4 5261:1 5332:1 5333:2 5338:1 5343:1 5355:2 5366:1 5373:1 5375:1 5380:1 5385:2 5391:1 5398:1 5400:1 5407:1 5414:3 5428:3 5447:1 5473:2 5486:1 5488:1 5505:1 5512:1 5529:1 5537:1 5540:1 5546:1 5549:2 5566:1 5570:1 5572:1 5592:2 5599:3 5629:4 5630:2 5652:2 5657:2 5664:1 5665:2 5708:1 5716:1 5745:1 5757:1 5764:2 5781:3 5789:1 5799:1 5815:2 5829:2 5831:1 5859:1 5863:1 5873:1 5877:2 5925:3 5928:1 5932:3 5965:1 5967:1 5976:1 5996:3 5998:1 6006:1 6010:1 6011:1 6024:1 6031:2 6041:1 6063:2 6065:2 6068:1 6080:3 6081:1 6082:1 6088:2 6092:1 6095:1 6096:1 6099:4 6100:1 6103:2 6105:4 6106:2 6108:4 6151:1 6169:1 6172:1 6201:4 6212:1 6217:4 6230:2 6277:1 6278:1 6321:1 6336:1 6385:2 6403:1 6408:1 6415:1 6416:2 6424:1 6427:2 6428:1 6465:1 6466:1 6473:1 6475:1 6477:1 6483:2 6501:2 6502:1 6504:1 6509:1 6526:1 6527:1 6534:1 6557:2 6601:1 6610:3 6633:1 6642:3 6652:1 6653:1 6659:1 6665:1 6669:1 6696:1 6714:1 6718:2 6731:1 6749:1 6753:1 6766:1 6775:1 6793:6 6794:1 6804:1 6813:1 6817:1 6855:2 6879:1 6887:1 6901:1 6906:1 6907:1 6939:1 6955:1 6970:1 6976:1 6993:1 6998:1 7008:1 7025:1 7030:2 7056:3 7065:1 7066:3 7083:1 7085:1 7091:1 7092:1 7104:1 7128:1 7135:1 7140:2 7142:1 7148:1 7162:1 7166:1 7168:1 7185:1 7193:2 7195:1 7197:1 7208:1 7209:1 7227:1 7234:1 7258:1 7261:4 7268:9 7277:1 7284:1 7287:1 7289:4 7292:1 7315:1 7320:1 7328:30 7346:5 7347:11 7357:1 7384:1 7401:2 7407:1 7415:1 7457:1 7467:1 7519:1 7527:1 7538:1 7572:1 7587:3 7596:3 7601:1 7615:1 7677:1 7691:1 7693:1 7700:1 7704:1 7709:1 7717:1 7723:9 7733:2 7735:1 7741:1 7743:1 7762:1 7783:1 7791:27 7816:1 7835:1 7839:1 7842:1 7849:1 7855:1 7877:1 7910:1 7943:1 7944:1 7947:1 7950:1 7964:1 7969:4 7974:1 7986:2 7988:1 7996:1 8002:3 8015:1 8024:1 8026:2 8054:1 8059:1 8073:1 8112:1 8113:2 8115:1 8123:1 8125:3 8128:1 8130:4 8133:1 8134:1 8136:2 8141:4 8153:1 8154:1 8157:2 8187:1 8216:2 8217:2 8219:1 8246:1 8248:1 8275:2 8277:1 8299:1 8302:1 8347:1 8368:1 8383:1 8391:2 8402:1 8412:3 8423:1 8433:1 8440:1 8441:1 8445:3 8457:1 8475:1 8480:1 8488:1 8495:1 8511:1 8514:1 8518:1 8524:1 8530:1 8533:1 8558:1 8560:2 8566:6 8569:4 8573:1 8576:1 8585:3 8598:1 8602:1 8647:1 8656:1 8678:1 8684:1 8707:1 8713:1 8735:1 8791:3 8794:1 8804:1 8811:1 8812:1 8813:1 8817:1 8824:1 8830:1 8874:1 8877:1 8893:1 8909:1 8925:2 8933:1 8940:1 8950:1 8956:2 8957:1 8967:1 8972:1 8974:1 8979:1 8988:4 9002:1 9017:3 9050:1 9074:1 9089:4 9102:1 9105:3 9110:6 9123:3 9141:1 9163:1 9166:1 9180:2 9182:1 9186:2 9208:9 9215:1 9223:1 9224:1 9231:1 9249:1 9260:1 9263:1 9267:1 9272:1 9280:1 9283:1 9288:2 9293:1 9353:2 9362:1 9367:3 9368:1 9376:2 9394:1 9412:1 9430:2 9433:2 9446:2 9468:1 9472:1 9475:1 9481:2 9487:1 9508:2 9551:1 9556:2 9564:1 9565:2 9595:1 9619:1 9650:2 9657:2 9676:1 9719:1 9727:1 9729:1 9732:2 9773:3 9814:1 9832:4 9834:2 9836:1 9847:1 9856:1 9859:1 9870:1 9881:2 9901:2 9908:1 9917:1 9926:1 9931:1 9932:1 9945:1 9958:3 9965:1 9967:1 9990:2 9991:2 9999:1 10001:2 10010:3 10011:1 10013:1 10016:1 10018:1 10021:1 10026:1 10028:2 10035:1 10036:1 10060:3 10061:2 10099:3 10106:1 10113:1 10118:1 10121:1 10125:1 10130:4 10133:7 10172:1 10181:2 10196:1 10202:1 10212:4 10224:1 10229:3 10299:1 10316:1 10328:1 10340:1 10347:1 10348:4 10349:2 10352:1 10353:1 10387:1 10420:1 10427:1 10433:2 10462:1 10467:1 10470:1 10472:1 10474:1 10495:1 10497:1 10531:6 10537:1 10540:2 10566:1 10571:1 10598:1 10601:1 10608:1 10625:1 10630:1 10632:1 10635:1 10651:3 10656:2 10687:1 10688:1 10701:1 10712:1 10716:1 10718:1 10719:1 10723:1 10732:1 10737:1 10741:1 10758:1 10763:1 10771:1 10786:2 10788:7 10825:1 10839:2 10845:2 10848:2 10849:1 10865:1 10867:1 10869:3 10902:1 10903:1 10926:1 10930:1 10944:1 10949:1 10950:2 10970:1 10983:5 10985:3 10988:1 11007:1 11020:2 11031:1 11032:1 11034:1 11037:1 11042:1 11045:1 11051:1 11056:2 11061:1 11079:1 11081:1 11100:1 11101:1 11102:5 11112:3 11118:8 11167:1 11174:1 11183:1 11185:11 11224:1 11254:1 11273:1 11277:1 11289:1 11297:2 11303:4 11335:1 11365:3 11384:1 11395:1 11408:1 11410:3 11436:2 11443:1 11456:2 11457:2 11462:1 11463:1 11474:1 11479:3 11480:1 11484:1 11499:1 11506:1 11520:1 11538:1 11552:1 11563:1 11567:1 11582:2 11598:3 11608:1 11626:1 11680:1 11693:1 11723:1 11742:3 11751:1 11772:1 11818:1 11849:2 11868:1 11870:1 11885:1 11912:1 11918:1 11932:1 11971:1 11975:8 11979:1 11992:1 12005:1 12018:1 12035:1 12057:11 12063:1 12085:1 12090:2 12114:1 12115:2 12141:2 12164:1 12179:1 12180:1 12186:1 12251:1 12253:1 12261:1 12263:4 12279:1 12280:1 12302:2 12315:1 12356:2 12378:4 12387:1 12390:1 12391:3 12394:2 12408:2 12413:1 12414:8 12416:1 12418:1 12437:1 12439:1 12454:1 12456:2 12473:2 12474:1 12498:1 12510:1 12511:8 12516:1 12523:1 12526:14 12538:1 12555:1 12597:3 12626:1 12640:1 12653:2 12670:2 12689:1 12696:1 12702:1 12710:2 12714:1 12728:1 12737:1 12753:1 12757:2 12759:2 12764:1 12787:1 12791:1 12803:1 12818:1 12829:1 12887:1 12889:1 12891:1 12894:5 12895:1 12903:1 12905:1 12920:1 12927:2 12939:1 12947:1 12960:1 12968:1 12978:1 13005:10 13012:1 13013:1 13015:2 13051:1 13055:2 13056:1 13080:2 13088:1 13095:2 13096:1 13097:1 13100:2 13107:1 13122:1 13128:1 13138:1 13170:5 13172:2 13199:2 13233:1 13244:1 13245:2 13282:1 13290:1 13297:1 13300:1 13301:2 13336:2 13343:1 13372:1 13403:2 13405:1 13412:1 13422:1 13424:1 13429:1 13430:1 13463:1 13465:1 13468:1 13498:1 13509:1 13527:1 13534:1 13535:2 13541:1 13542:1 13552:1 13554:1 13563:1 13586:1 13587:1 13593:2 13618:1 13638:1 13641:4 13671:4 13687:1 13696:1 13705:1 13727:1 13732:1 13739:3 13747:1 13756:5 13771:1 13780:1 13793:1 13794:1 13810:1 13819:2 13834:1 13844:1 13867:1 13869:1 13879:1 13887:1 13895:1 13898:1 13910:1 13930:1 13933:1 13938:1 13943:1 13957:1 14001:1 14015:1 14037:1 14042:3 14045:1 14053:2 14066:1 14087:3 14138:1 14156:1 14158:1 14177:4 14184:1 14185:1 14207:1 14232:1 14234:1 14238:2 14240:2 14271:1 14276:1 14278:1 14295:1 14330:1 14352:3 14363:1 14382:3 14383:1 14385:1 14387:1 14405:1 14432:1 14433:1 14475:1 14483:1 14500:1 14512:1 14524:1 14534:1 14544:1 14549:1 14550:28 14574:1 14580:1 14584:1 14589:1 14621:1 14625:1 14628:1 14639:1 14660:1 14662:1 14671:2 14674:1 14695:1 14717:1 14755:1 14757:4 14765:1 14768:2 14769:1 14770:2 14777:1 14779:1 14785:1 14789:1 14794:1 14797:1 14799:6 14801:1 14808:1 14814:1 14847:2 14849:1 14888:1 14889:1 14895:1 14903:1 14911:5 14912:5 14939:1 14949:1 14968:1 15004:1 15018:1 15030:1 15037:2 15051:1 15057:1 15068:1 15074:1 15085:1 15094:1 15128:2 15130:2 15135:1 15152:1 15157:1 15163:1 15166:5 15176:1 15184:1 15185:1 15197:1 15204:1 15206:1 15210:1 15211:1 15216:1 15217:4 15238:1 15244:2 15253:1 15267:1 15269:1 15273:1 15274:2 15278:3 15279:1 15280:2 15282:2 15284:1 15287:3 15288:1 15290:1 15292:1 15295:4 15297:1 15300:5 15303:1 15314:1 15331:3 15351:1 15399:1 15410:1 15495:1 15501:1 15528:1 15530:1 15567:1 15604:2 15623:1 15647:1 15649:1 15653:1 15661:2 15664:1 15667:2 15668:1 15671:1 15680:1 15725:1 15731:1 15733:2 15734:2 15742:1 15755:2 15758:5 15767:2 15772:1 15780:1 15803:1 15804:1 15814:2 15818:1 15836:1 15844:2 15846:1 15861:3 15868:9 15870:2 15892:1 15921:2 15924:1 15928:1 15930:2 15939:2 15941:3 15962:2 15968:1 15971:2 15992:2 15997:2 15999:2 16015:1 16020:2 16042:1 16045:1 16050:1 16068:1 16074:1 16080:1 16081:1 16090:1 16096:1 16100:1 16102:1 16118:1 16129:1 16131:1 16161:1 16187:1 16193:2 16197:1 16200:1 16214:1 16230:2 16235:1 16241:1 16252:3 16255:1 16269:2 16283:1 16319:1 16328:1 16341:1 16348:1 16374:1 16376:1 16378:1 16390:1 16412:1 16416:2 16466:1 16467:1 16470:2 16487:1 16489:1 16534:1 16535:2 16548:1 16556:2 16563:2 16571:1 16578:1 16580:1 16598:1 16604:1 16607:1 16610:1 16625:1 16628:2 16655:1 16666:1 16669:1 16674:1 16692:1 16695:1 16704:6 16724:1 16740:1 16741:1 16748:3 16749:1 16769:1 16772:2 16786:3 16788:1 16789:2 16799:1 16803:1 16828:1 16830:1 16839:1 16848:1 16854:1 16859:1 16862:1 16871:1 16879:4 16886:3 16888:1 16891:1 16899:1 16912:1 16914:1 16918:1 16920:1 16923:1 16940:8 16963:2 16966:2 16994:1 17005:1 17007:1 17012:1 17056:1 17067:1 17096:1 17100:1 17109:1 17112:1 17117:1 17142:1 17148:1 17154:1 17169:1 17176:1 17184:1 17188:2 17203:1 17230:1 17237:1 17249:1 17277:2 17284:1 17348:3 17353:1 17374:7 17383:2 17385:1 17399:1 17444:1 17448:1 17449:1 17470:1 17523:1 17554:1 17559:2087 17560:2 17575:3 17590:1 17601:1 17624:1 17642:1 17670:1 17690:1 17693:1 17699:2 17704:1 17724:1 17729:1 17738:1 17750:1 17752:1 17761:4 17770:1 17773:3 17774:1 17775:2 17776:1 17788:2 17805:1 17842:2 17858:1 17873:1 17893:1 17899:1 17940:1 17944:1 17964:3 18020:1 18024:2 18039:1 18071:2 18079:1 18092:1 18100:1 18142:1 18166:1 18169:1 18208:1 18209:2 18223:3 18239:1 18245:4 18265:2 18274:2 18293:1 18297:1 18303:1 18329:1 18330:5 18338:1 18348:3 18350:1 18351:1 18383:1 18394:8 18402:1 18423:1 18452:1 18480:1 18483:1 18516:1 18518:1 18544:1 18547:1 18555:1 18578:1 18579:1 18605:1 18613:2 18629:1 18635:1 18639:1 18641:1 18649:1 18657:2 18658:3 18669:4 18673:1 18678:1 18694:2 18695:1 18702:3 18719:1 18728:1 18746:1 18754:2 18773:1 18777:1 18782:1 18801:1 18820:1 18822:1 18839:1 18840:1 18846:2 18855:1 18879:1 18890:1 18898:8 18904:2 18908:1 18909:1 18933:1 18939:1 18946:1 18948:1 18956:1 18959:1 18965:1 18968:1 18973:2 18977:2 18991:2 18994:4 19005:2 19011:2 19027:1 19030:1 19044:2 19046:1 19061:7 19065:3 19069:1 19087:1 19098:1 19099:1 19107:1 19147:1 19168:1 19183:1 19207:1 19209:1 19254:1 19285:3 19302:1 19308:1 19327:1 19330:5 19333:5 19339:1 19340:2 19377:1 19378:1 19394:1 19403:1 19409:1 19431:1 19440:2 19446:1 19470:1 19479:1 19496:1 19506:1 19516:1 19518:1 19522:1 19533:1 19535:1 19538:1 19551:1 19555:1 19569:1 19589:1 19620:1 19626:4 19646:1 19658:1 19662:1 19664:2 19668:2 19679:1 19691:1 19718:1 19728:3 19736:1 19781:10 19788:2 19792:2 19797:1 19807:4 19808:1 19830:1 19834:1 19844:1 19856:1 19859:1 19864:1 19866:1 19869:1 19875:1 19876:1 19893:1 19900:1 19914:1 19922:2 19965:1 19970:1 19971:1 20009:1 20010:1 20026:5 20051:2 20065:1 20070:3 20078:1 20084:2 20089:1 20124:1 20152:1 20161:1 20163:1 20167:1 20168:1 20176:1 20183:1 20191:1 20193:4 20195:1 20196:1 20199:1 20210:1 20211:1 20219:1 20241:1 20262:1 20270:2 20274:1 20285:1 20302:1 20315:1 20322:2 20341:2 20346:1 20348:1 20361:2 20363:2 20366:2 20408:1 20414:2 20416:2 20425:2 20441:1 20463:1 20466:2 20472:1 20473:1 20495:1 20520:1 20523:1 20524:1 20559:1 20573:1 20585:1 20589:1 20603:3 20604:3 20605:3 20611:1 20613:1 20615:1 20634:1 20636:2 20638:2 20640:1 20646:2 20660:1 20665:1 20676:2 20693:1 20715:2 20727:2 20749:1 20751:3 20756:1 20761:1 20772:3 20775:2 20787:3 20802:1 20815:1 20831:1 20838:1 20846:2 20869:1 20878:1 20884:1 20902:1 20913:2 20919:1 20920:4 20924:1 20926:1 20946:1 20949:1 20962:1 20968:1 20972:2 20978:2 20981:1 20982:1 20985:1 21021:1 21038:1 21049:1 21050:1 21065:1 21078:1 21091:1 21100:1 21112:2 21128:1 21144:1 21158:2 21160:1 21162:2 21164:1 21167:3 21169:1 21202:1 21211:1 21239:1 21243:1 21270:1 21284:1 21285:1 21304:1 21307:1 21332:3 21336:1 21352:1 21356:1 21376:1 21388:2 21393:2 21396:1 21399:1 21401:1 21409:1 21415:1 21426:3 21433:1 21438:2 21444:3 21466:1 21487:2 21490:2 21494:1 21500:1 21518:1 21536:1 21539:1 21549:1 21568:3 21615:4 21626:1 21640:2 21675:2 21682:1 21687:1 21696:1 21701:1 21706:1 21711:1 21720:1 21722:1 21728:1 21743:1 21777:1 21813:1 21821:1 21836:1 21850:2 21865:2 21867:1 21871:4 21875:1 21877:1 21883:2 21897:1 21914:1 21929:1 21931:1 21942:1 21944:3 21946:1 21951:1 21958:2 21961:3 21972:1 21974:1 21998:1 22000:1 22010:1 22013:1 22020:1 22021:2 22039:1 22057:1 22060:1 22073:1 22082:1 22084:1 22103:5 22108:1 22113:2 22127:1 22136:1 22165:3 22189:1 22191:2 22198:1 22282:2 22291:1 22304:1 22305:2 22322:2 22325:1 22387:2 22401:1 22410:1 22416:3 22460:1 22500:1 22502:8 22573:2 22598:2 22600:1 22603:1 22608:1 22617:1 22624:1 22634:2 22657:1 22662:1 22672:3 22678:1 22687:2 22688:7 22691:1 22693:1 22705:1 22710:1 22711:1 22729:1 22732:2 22744:1 22754:1 22757:1 22772:1 22803:1 22811:1 22817:1 22849:1 22856:1 22857:1 22858:1 22861:1 22862:1 22863:1 22864:1 22870:1 22874:1 22909:1 22918:1 22919:3 22921:1 22922:2 22925:1 22927:4 22932:1 22933:1 22939:1 22953:1 22958:1 22960:4 22968:5 22969:1 22984:1 23006:1 23007:1 23026:1 23035:1 23039:1 23042:1 23061:1 23068:2 23076:1 23081:2 23090:2 23109:1 23112:2 23150:1 23164:1 23173:1 23176:1 23204:1 23211:2 23248:1 23255:1 23262:1 23274:2 23282:1 23309:2 23328:6 23360:1 23369:1 23371:1 23381:1 23384:6 23393:1 23396:1 23397:1 23399:1 23407:1 23413:1 23436:2 23437:1 23535:1 23554:1 23569:1 23579:1 23596:2 23598:5 23626:3 23635:1 23637:1 23647:2 23651:1 23660:2 23670:1 23675:1 23701:1 23705:1 23708:1 23729:1 23734:2 23764:1 23817:1 23818:1 23821:1 23826:1 23827:1 23854:1 23856:1 23859:1 23861:1 23878:1 23891:1 23932:1 23934:1 23946:1 23948:2 23949:1 23963:1 23964:1 23994:1 24014:1 24034:1 24092:1 24104:1 24111:1 24121:1 24142:5 24143:1 24144:5 24148:1 24198:1 24233:2 24262:4 24264:1 24285:1 24300:1 24311:1 24313:1 24355:1 24362:1 24364:1 24365:2 24382:1 24394:1 24408:1 24420:3 24436:1 24437:1 24440:1 24444:3 24448:1 24469:1 24477:1 24494:1 24498:1 24500:4 24509:1 24525:1 24548:1 24558:1 24571:6 24572:1 24587:2 24623:1 24642:3 24650:1 24654:2 24671:2 24702:1 24721:1 24726:1 24730:1 24738:1 24743:1 24750:1 24757:1 24776:1 24795:1 24796:2 24800:1 24812:1 24816:1 24819:1 24832:2 24836:3 24837:1 24855:2 24882:2 24888:1 24890:1 24893:1 24897:1 24909:3 24941:2 24947:2 24958:1 24973:1 24991:1 25010:1 25021:1 25033:1 25034:1 25045:1 25082:1 25084:2 25095:1 25161:1 25228:1 25233:1 25241:1 25264:1 25270:2 25271:1 25280:1 25308:1 25349:1 25353:1 25357:1 25362:1 25367:1 25368:3 25384:1 25385:2 25389:1 25393:1 25404:1 25407:1 25417:1 25419:1 25430:3 25440:1 25447:1 25448:1 25461:4 25474:1 25513:1 25524:1 25527:5 25531:1 25548:2 25551:1 25557:1 25614:4 25623:2 25624:2 25631:1 25634:1 25635:2 25638:1 25646:1 25654:1 25664:1 25675:1 25680:2 25684:1 25694:2 25695:2 25696:1 25702:1 25703:1 25706:1 25712:1 25719:1 25723:1 25728:1 25754:2 25761:1 25782:2 25786:1 25805:1 25807:3 25817:1 25835:1 25837:1 25845:1 25849:1 25889:1 25893:1 25909:1 25912:2 25915:1 25928:4 25946:1 25953:1 25980:2 25996:1 25998:6 26017:2 26023:1 26045:1 26065:1 26105:2 26120:1 26165:1 26178:3 26221:1 26250:3 26258:2 26287:1 26293:1 26312:4 26315:1 26341:1 26366:1 26372:1 26378:1 26382:1 26385:1 26392:18 26394:1 26396:1 26411:1 26423:1 26430:10 26434:1 26438:1 26441:1 26443:2 26465:1 26489:2 26512:1 26518:1 26522:3 26529:3 26560:8 26561:1 26568:1 26590:1 26605:1 26632:2 26634:1 26641:1 26643:1 26667:2 26687:1 26688:2 26693:1 26705:2 26726:1 26743:1 26764:1 26770:1 26785:1 26808:4 26810:3 26838:1 26852:1 26864:1 26869:1 26873:1 26875:2 26881:1 26890:1 26901:1 26910:1 26984:1 26997:4 27008:1 27010:1 27011:1 27015:10 27032:1 27037:1 27042:1 27048:1 27052:1 27054:2 27059:1 27087:1 27104:1 27112:1 27121:1 27167:1 27176:1 27188:1 27194:1 27204:1 27211:1 27219:1 27227:3 27233:2 27277:1 27340:2 27379:1 27393:1 27394:1 27403:1 27406:1 27410:1 27420:1 27433:1 27439:2 27442:1 27466:1 27469:1 27475:2 27479:1 27493:1 27502:3 27509:1 27511:1 27512:2 27528:1 27548:1 27549:1 27561:1 27568:1 27572:1 27575:1 27578:3 27580:1 27585:2 27587:3 27592:1 27596:2 27600:1 27602:1 27612:1 27640:1 27643:3 27647:1 27653:1 27654:1 27671:1 27676:1
20 10:1 17:1 21:1 22:1 26:2 29:1 40:1 57:1 68:1 72:1 81:7 86:1 96:1 109:1 114:1 115:1 145:1 155:1 168:1 185:1 191:1 207:1 241:3 245:2 246:1 263:3 266:1 278:1 298:1 317:1 323:2 324:1 344:1 366:1 368:2 382:1 411:1 425:1 435:1 441:3 471:1 479:2 500:1 511:1 526:1 529:1 548:1 549:3 556:1 557:1 570:1 579:2 592:2 615:2 617:1 620:3 692:1 716:1 748:1 784:1 808:1 848:1 853:2 856:1 865:2 867:1 877:1 882:1 883:3 885:1 894:1 908:1 915:3 929:1 933:1 935:3 937:1 938:1 939:5 941:4 948:1 956:1 959:1 966:4 980:1 991:3 992:3 996:2 1000:1 1009:1 1018:1 1040:1 1041:2 1045:1 1059:1 1079:1 1083:1 1097:1 1102:4 1110:4 1136:1 1139:1 1144:1 1160:1 1161:1 1163:1 1180:1 1186:1 1201:1 1202:1 1211:1 1215:1 1217:1 1219:1 1235:1 1244:1 1252:1 1258:1 1271:1 1285:1 1328:1 1344:2 1356:2 1369:1 1371:1 1383:1 1393:1 1395:1 1397:4 1408:3 1418:4 1430:1 1437:1 1440:1 1441:1 1446:1 1460:3 1482:13 1484:2 1486:7 1490:1 1496:2 1501:1 1505:1 1517:1 1518:2 1522:1 1527:1 1541:1 1543:1 1550:9 1568:1 1569:1 1589:1 1593:1 1607:1 1608:1 1635:2 1655:1 1675:1 1703:5 1709:2 1726:1 1754:1 1760:2 1791:1 1799:1 1814:1 1830:2 1839:3 1843:2 1851:1 1863:2 1868:1 1882:1 1883:1 1887:1 1922:1 1924:2 1942:1 1954:4 1974:1 1982:1 1994:1 1996:3 1999:1 2002:1 2005:1 2007:1 2014:1 2021:1 2055:5 2059:1 2077:1 2088:1 2093:2 2094:2 2099:1 2120:2 2123:8 2126:5 2129:1 2130:1 2136:1 2138:1 2139:2 2141:3 2142:2 2143:1 2146:1 2152:1 2158:1 2161:2 2163:2 2186:1 2190:1 2192:2 2193:1 2195:2 2196:4 2198:1 2202:1 2205:2 2209:1 2210:2 2212:1 2214:3 2215:2 2218:3 2222:2 2225:1 2228:2 2230:1 2232:2 2250:1 2254:1 2256:1 2278:1 2289:1 2298:1 2304:1 2324:1 2334:1 2348:1 2351:1 2352:1 2376:1 2387:1 2406:1 2427:1 2433:1 2434:1 2458:1 2490:1 2492:1 2497:1 2509:1 2520:1 2522:1 2528:1 2546:3 2562:1 2571:1 2584:1 2592:1 2602:1 2605:2 2610:1 2618:2 2625:1 2626:1 2655:2 2656:1 2664:1 2670:1 2676:1 2686:1 2691:1 2695:1 2713:2 2729:1 2742:1 2765:3 2774:2 2775:9 2778:2 2788:1 2791:2 2792:3 2806:1 2810:1 2826:9 2849:1 2909:1 2929:2 2934:1 2939:1 2983:3 3032:1 3037:1 3074:1 3108:1 3116:1 3117:1 3125:2 3135:1 3144:3 3174:3 3205:3 3221:1 3226:1 3227:1 3235:1 3238:1 3266:1 3286:1 3328:1 3337:1 3339:1 3374:2 3382:1 3389:2 3440:1 3443:2 3456:2 3458:1 3460:2 3467:1 3476:1 3488:1 3489:1 3497:1 3507:6 3524:1 3535:1 3537:1 3543:1 3544:1 3550:1 3553:2 3584:2 3592:2 3593:4 3638:6 3639:1 3662:1 3664:6 3703:1 3715:2 3723:1 3736:1 3744:1 3751:6 3765:1 3769:2 3772:2 3795:1 3803:1 3804:1 3819:1 3820:2 3825:1 3836:1 3842:2 3847:1 3849:2 3850:1 3865:1 3878:1 3897:1 3907:1 3931:1 3949:1 3969:1 3978:1 3991:1 3998:1 4020:1 4094:1 4097:1 4118:1 4120:1 4130:1 4160:1 4162:1 4167:2 4168:1 4170:1 4191:1 4225:2 4228:1 4245:1 4255:1 4259:1 4289:1 4291:1 4293:1 4323:1 4324:2 4355:1 4359:1 4361:2 4372:1 4393:1 4411:1 4418:1 4434:1 4455:2 4456:1 4460:1 4463:1 4478:4 4498:1 4501:2 4503:1 4553:1 4564:1 4579:1 4592:1 4616:1 4619:1 4659:1 4668:1 4679:1 4688:1 4693:1 4701:14 4702:1 4710:1 4730:1 4736:1 4756:1 4795:3 4799:7 4817:3 4818:2 4820:1 4823:1 4825:1 4828:1 4833:1 4834:1 4839:1 4840:2 4841:2 4843:3 4845:3 4848:1 4849:1 4862:2 4894:1 4915:1 4926:1 4950:1 4959:1 4995:1 5004:4 5007:1 5018:1 5030:1 5038:1 5040:1 5066:3 5071:1 5086:1 5096:1 5123:2 5141:1 5144:1 5149:1 5173:3 5186:1 5211:1 5217:1 5222:1 5227:1 5231:4 5261:1 5281:1 5332:1 5333:2 5338:1 5343:1 5355:2 5366:1 5373:1 5375:1 5380:1 5385:2 5391:1 5398:1 5400:1 5407:1 5414:3 5428:3 5447:1 5473:2 5486:1 5488:1 5505:1 5512:1 5529:1 5537:1 5540:1 5546:1 5549:2 5566:1 5570:1 5572:1 5592:2 5599:3 5629:4 5630:2 5652:2 5657:2 5664:1 5665:2 5708:1 5716:1 5745:1 5757:1 5764:2 5781:3 5789:1 5799:1 5815:2 5829:2 5831:1 5859:1 5863:1 5873:1 5877:2 5925:3 5928:1 5932:3 5965:1 5967:1 5976:1 5986:1 5996:3 5998:1 6006:1 6010:1 6011:1 6024:1 6031:2 6041:1 6063:2 6065:2 6068:1 6080:3 6081:1 6082:1 6088:2 6092:1 6095:1 6096:1 6099:4 6100:2 6103:2 6105:5 6106:2 6108:4 6151:1 6169:1 6172:1 6201:4 6212:1 6217:4 6230:2 6277:1 6278:1 6321:1 6336:1 6385:2 6403:1 6408:1 6415:1 6416:2 6424:1 6427:2 6428:1 6465:1 6466:1 6473:1 6475:1 6477:1 6483:2 6501:2 6502:1 6504:1 6509:1 6526:1 6527:1 6534:1 6553:1 6557:2 6601:1 6610:3 6612:1 6633:1 6642:3 6652:1 6653:1 6659:1 6665:1 6669:1 6696:1 6714:1 6718:2 6731:1 6749:1 6753:1 6766:1 6775:1 6793:6 6794:1 6804:1 6813:2 6817:1 6855:2 6879:1 6887:1 6901:1 6906:1 6907:1 6939:1 6955:1 6970:1 6976:1 6993:1 6998:1 7001:1 7008:1 7025:1 7030:3 7056:3 7065:1 7066:3 7083:1 7085:1 7091:1 7092:1 7104:1 7128:1 7135:1 7140:2 7142:1 7145:1 7148:1 7162:1 7166:1 7168:1 7185:1 7193:2 7195:1 7197:1 7208:1 7209:1 7227:1 7234:1 7258:1 7261:4 7268:9 7277:1 7284:2 7287:1 7289:4 7292:1 7315:1 7320:1 7328:32 7346:5 7347:11 7357:1 7384:1 7401:2 7407:1 7415:1 7457:1 7467:1 7519:1 7527:1 7538:1 7572:1 7587:3 7596:3 7601:1 7615:1 7653:1 7677:1 7691:1 7693:1 7700:1 7704:1 7709:1 7717:1 7723:9 7733:2 7735:1 7741:1 7743:1 7762:1 7783:1 7791:27 7816:1 7835:1 7839:1 7842:1 7849:1 7855:1 7877:1 7910:1 7943:1 7944:1 7947:1 7950:1 7964:1 7969:5 7974:1 7986:2 7988:1 7996:1 8002:3 8015:1 8024:1 8026:3 8054:1 8059:1 8073:1 8112:1 8113:2 8115:1 8123:1 8125:3 8128:1 8130:4 8133:1 8134:1 8136:2 8141:4 8153:1 8154:1 8157:2 8187:1 8216:2 8217:2 8219:1 8246:1 8248:1 8275:3 8277:1 8299:1 8302:1 8327:1 8347:1 8368:1 8383:1 8391:2 8402:1 8412:3 8423:1 8433:1 8440:1 8441:1 8445:4 8457:1 8475:2 8480:1 8488:1 8495:1 8511:1 8514:1 8518:1 8524:1 8530:1 8533:1 8558:1 8560:2 8566:6 8569:4 8573:1 8576:1 8585:3 8598:1 8602:1 8631:1 8647:1 8656:1 8678:1 8684:1 8707:1 8713:1 8735:1 8791:3 8794:1 8804:1 8811:1 8812:1 8813:1 8817:1 8824:1 8830:1 8874:1 8877:1 8893:1 8909:1 8925:2 8933:1 8940:1 8950:1 8956:3 8957:1 8967:1 8972:1 8974:1 8979:1 8988:4 9002:1 9017:3 9050:1 9074:1 9089:4 9102:1 9105:3 9110:6 9123:3 9141:1 9163:1 9166:1 9180:2 9182:1 9186:2 9208:9 9215:1 9223:1 9224:1 9231:1 9249:1 9260:1 9263:1 9267:1 9272:1 9280:1 9283:1 9288:2 9293:1 9353:2 9362:1 9367:3 9368:1 9376:2 9394:1 9405:1 9412:1 9430:2 9433:2 9446:2 9468:1 9472:1 9475:1 9481:2 9487:1 9508:2 9540:1 9551:1 9556:2 9564:1 9565:2 9595:1 9619:1 9650:2 9657:2 9676:1 9719:1 9727:1 9729:1 9732:2 9773:3 9814:1 9832:4 9834:2 9836:1 9847:1 9856:1 9859:1 9870:1 9881:2 9901:2 9908:1 9917:1 9926:1 9931:2 9932:1 9945:1 9958:3 9965:1 9967:1 9990:2 9991:2 9999:1 10001:2 10010:3 10011:1 10013:1 10016:1 10018:1 10021:1 10026:1 10028:2 10035:1 10036:1 10060:3 10061:2 10099:3 10106:1 10113:1 10118:1 10121:1 10125:1 10130:4 10133:8 10172:1 10181:2 10196:1 10202:1 10212:4 10224:1 10229:3 10299:1 10316:1 10328:1 10340:1 10347:1 10348:4 10349:2 10352:1 10353:1 10387:1 10420:2 10427:1 10433:3 10462:1 10467:2 10470:1 10472:1 10474:1 10495:1 10497:1 10531:6 10537:1 10540:2 10566:1 10571:1 10598:1 10601:1 10608:1 10625:1 10630:1 10632:1 10635:1 10651:3 10656:2 10687:1 10688:1 10701:1 10712:1 10716:1 10718:1 10719:1 10723:1 10732:1 10737:1 10741:1 10758:1 10763:1 10771:1 10786:2 10788:7 10825:1 10839:2 10845:2 10848:2 10849:1 10865:1 10867:1 10869:3 10902:1 10903:1 10917:1 10926:1 10930:1 10944:1 10949:1 10950:2 10970:1 10983:6 10985:3 10988:1 11007:1 11020:2 11031:1 11032:1 11034:1 11037:1 11042:1 11045:1 11051:1 11056:2 11058:1 11061:1 11079:1 11081:1 11100:1 11101:1 11102:5 11112:3 11118:8 11167:1 11174:1 11183:1 11185:11 11224:1 11254:1 11273:1 11277:1 11289:1 11297:2 11303:4 11335:1 11365:3 11384:1 11395:1 11408:1 11410:3 11436:2 11443:1 11456:2 11457:2 11462:1 11463:1 11474:1 11479:3 11480:1 11484:1 11499:1 11506:1 11520:1 11538:1 11552:1 11563:1 11567:1 11582:2 11598:3 11608:1 11626:1 11680:1 11693:1 11723:1 11742:3 11751:1 11772:1 11818:1 11842:1 11849:2 11868:1 11870:1 11885:1 11912:1 11918:1 11932:1 11971:1 11975:8 11979:1 11992:1 12005:1 12018:1 12035:1 12053:1 12057:11 12063:1 12085:1 12090:2 12114:1 12115:2 12141:2 12164:1 12179:1 12180:1 12186:1 12251:1 12253:1 12261:1 12263:4 12279:1 12280:1 12283:2 12302:2 12315:1 12344:1 12356:2 12378:4 12387:1 12390:1 12391:3 12394:3 12408:2 12413:1 12414:8 12416:1 12418:1 12437:1 12439:1 12454:1 12456:2 12473:2 12474:1 12498:1 12510:1 12511:8 12516:1 12523:1 12526:14 12527:1 12530:1 12538:1 12548:1 12555:1 12597:3 12626:1 12640:1 12653:2 12670:2 12689:1 12696:1 12702:1 12710:2 12714:1 12728:1 12737:1 12753:1 12757:2 12759:2 12764:1 12787:1 12791:1 12803:1 12818:1 12829:1 12887:1 12889:1 12891:1 12894:5 12895:1 12903:1 12905:2 12920:1 12927:2 12939:1 12947:1 12960:1 12968:1 12978:1 13005:10 13012:1 13013:1 13015:2 13051:1 13055:2 13056:1 13080:2 13088:1 13095:2 13096:1 13097:1 13100:3 13107:1 13122:1 13128:1 13138:1 13170:5 13172:2 13199:2 13233:1 13244:1 13245:2 13282:1 13290:1 13297:1 13300:1 13301:2 13336:2 13343:1 13372:1 13403:2 13405:1 13412:1 13420:1 13422:1 13424:1 13429:1 13430:1 13463:1 13465:1 13468:1 13498:1 13509:1 13527:1 13534:1 13535:2 13541:1 13542:2 13552:1 13554:1 13563:1 13568:1 13586:1 13587:1 13593:2 13618:1 13638:1 13641:4 13671:4 13687:1 13696:1 13705:1 13727:1 13732:1 13739:3 13747:1 13756:5 13771:1 13780:1 13793:1 13794:1 13810:1 13819:2 13834:1 13844:1 13867:1 13869:1 13879:1 13887:1 13895:1 13898:1 13910:1 13930:1 13933:1 13938:1 13943:1 13957:1 14001:1 14015:1 14037:1 14042:3 14045:1 14053:2 14066:1 14087:3 14138:1 14156:1 14158:1 14177:4 14184:1 14185:1 14207:1 14232:1 14234:1 14238:2 14240:2 14271:1 14276:1 14278:1 14295:1 14330:1 14352:3 14363:1 14382:3 14383:2 14385:1 14387:1 14405:1 14432:1 14433:1 14475:1 14483:1 14500:1 14512:1 14524:1 14534:1 14544:1 14549:1 14550:28 14574:1 14580:1 14584:1 14589:1 14621:1 14625:1 14628:1 14639:1 14660:1 14662:1 14671:2 14674:1 14695:1 14717:1 14720:1 14755:1 14757:4 14765:1 14768:2 14769:1 14770:2 14777:1 14779:1 14785:1 14789:2 14794:1 14797:1 14799:6 14801:1 14808:1 14814:1 14847:2 14849:1 14888:1 14889:1 14895:1 14903:1 14911:5 14912:5 14939:1 14949:1 14968:1 15004:1 15018:1 15030:1 15037:2 15051:1 15057:1 15068:1 15074:1 15085:1 15094:1 15128:2 15130:2 15133:1 15135:1 15152:1 15157:1 15163:1 15166:6 15176:1 15184:1 15185:1 15197:1 15204:1 15206:1 15210:1 15211:1 15216:1 15217:4 15238:1 15244:2 15253:1 15267:1 15269:1 15273:1 15274:2 15278:3 15279:1 15280:2 15282:2 15284:1 15287:3 15288:1 15290:1 15292:1 15295:4 15297:1 15300:5 15303:1 15314:1 15331:3 15351:1 15399:1 15410:1 15427:1 15495:1 15501:1 15528:1 15530:1 15567:1 15604:2 15623:1 15647:1 15649:1 15653:1 15661:2 15664:1 15667:2 15668:1 15671:1 15680:1 15725:1 15731:2 15733:2 15734:2 15742:1 15755:2 15758:5 15767:2 15772:1 15780:1 15803:1 15804:1 15814:2 15818:1 15836:1 15844:2 15846:1 15861:3 15868:9 15870:2 15892:1 15921:2 15924:1 15928:1 15930:2 15939:2 15941:3 15962:2 15968:1 15971:2 15992:2 15997:2 15999:2 16015:1 16020:2 16042:1 16045:1 16050:1 16068:1 16074:1 16080:1 16081:1 16090:1 16096:1 16100:1 16102:1 16118:1 16129:1 16131:1 16161:1 16187:1 16193:2 16197:1 16200:1 16214:1 16230:2 16235:1 16241:1 16252:3 16255:1 16269:2 16283:1 16319:1 16328:1 16341:1 16348:1 16374:1 16376:1 16378:1 16390:1 16412:1 16416:2 16466:1 16467:1 16470:2 16487:1 16489:1 16534:1 16535:2 16548:1 16556:2 16563:2 16571:1 16578:1 16580:1 16598:1 16604:1 16607:1 16610:1 16623:2 16625:1 16628:2 16655:1 16666:1 16669:2 16674:1 16692:1 16695:1 16704:6 16724:1 16740:1 16741:1 16748:3 16749:1 16769:1 16772:2 16786:3 16788:1 16789:2 16799:1 16803:1 16828:2 16830:1 16839:1 16848:1 16854:1 16859:1 16862:1 16871:1 16879:4 16886:3 16888:1 16891:1 16899:1 16912:1 16914:1 16918:1 16920:1 16923:1 16940:8 16963:2 16966:2 16994:1 17005:1 17007:1 17012:1 17030:1 17056:1 17067:1 17096:1 17100:1 17109:1 17112:1 17117:1 17142:1 17148:1 17154:1 17169:1 17176:1 17184:1 17188:2 17203:1 17230:1 17237:1 17249:1 17277:2 17284:1 17348:3 17353:1 17374:7 17383:2 17385:1 17399:1 17444:1 17448:1 17449:1 17470:1 17477:1 17523:1 17554:1 17559:2161 17560:2 17575:3 17590:1 17601:1 17611:1 17624:1 17642:1 17670:1 17690:1 17693:1 17699:2 17704:1 17724:1 17729:1 17738:1 17750:1 17752:1 17761:4 17770:1 17773:3 17774:1 17775:2 17776:1 17788:2 17805:1 17842:2 17858:1 17859:1 17873:1 17893:1 17899:1 17917:1 17940:2 17944:1 17964:3 18020:1 18024:2 18039:1 18071:2 18079:1 18092:1 18100:1 18142:1 18166:1 18169:1 18208:1 18209:2 18223:3 18239:1 18245:4 18265:2 18274:2 18293:1 18297:1 18303:1 18329:1 18330:5 18338:1 18348:3 18350:1 18351:1 18383:1 18394:8 18402:1 18423:1 18452:1 18480:1 18483:1 18516:1 18518:1 18544:1 18547:1 18555:1 18578:1 18579:1 18605:1 18613:2 18629:1 18635:1 18639:1 18641:1 18649:1 18657:2 18658:3 18669:4 18673:1 18678:1 18694:2 18695:1 18702:3 18719:1 18728:1 18746:1 18754:2 18773:1 18777:1 18782:1 18801:1 18820:1 18822:1 18839:1 18840:1 18846:2 18855:1 18879:1 18890:1 18898:8 18904:3 18908:1 18909:1 18933:1 18939:1 18946:1 18948:1 18956:1 18959:1 18965:1 18968:1 18973:2 18977:2 18991:2 18994:5 19005:2 19011:2 19027:1 19030:1 19044:2 19046:1 19061:7 19065:3 19069:1 19078:1 19087:1 19098:1 19099:1 19107:1 19115:1 19147:1 19168:1 19183:1 19207:1 19209:1 19254:1 19285:3 19302:1 19308:1 19327:1 19330:6 19333:5 19339:1 19340:2 19377:1 19378:1 19394:1 19403:1 19409:1 19431:1 19440:2 19446:1 19470:1 19479:1 19496:1 19506:1 19516:1 19518:1 19522:1 19533:1 19535:1 19538:1 19551:1 19555:1 19569:1 19589:1 19620:1 19626:4 19646:1 19658:1 19662:1 19664:2 19668:2 19679:1 19691:1 19718:1 19728:3 19736:1 19781:10 19788:2 19792:2 19797:1 19807:4 19808:2 19818:1 19830:1 19834:1 19844:1 19856:1 19859:1 19864:1 19866:1 19869:1 19875:1 19876:1 19893:1 19900:1 19914:1 19922:2 19965:1 19970:1 19971:1 20009:1 20010:1 20026:5 20049:1 20051:2 20065:1 20070:3 20078:1 20084:2 20089:1 20124:1 20152:1 20161:1 20163:1 20167:1 20168:1 20176:1 20177:1 20183:1 20191:1 20193:4 20195:1 20196:1 20199:1 20210:1 20211:1 20219:1 20241:1 20262:1 20270:3 20274:1 20285:1 20302:1 20315:1 20322:2 20341:2 20346:1 20348:1 20361:2 20363:2 20366:2 20408:1 20414:2 20416:2 20425:3 20441:1 20463:1 20466:2 20472:1 20473:1 20495:1 20520:1 20523:1 20524:1 20559:1 20573:1 20576:1 20585:1 20589:1 20603:3 20604:3 20605:3 20611:1 20613:1 20615:1 20634:1 20636:2 20638:2 20640:1 20646:2 20647:1 20660:1 20665:1 20676:2 20693:1 20715:2 20727:2 20749:1 20751:3 20756:1 20761:1 20772:3 20775:2 20787:3 20802:1 20815:1 20831:1 20838:1 20846:2 20869:1 20878:1 20884:1 20902:2 20913:2 20919:1 20920:4 20924:1 20926:1 20946:1 20949:1 20962:1 20968:1 20972:2 20978:2 20981:1 20982:1 20985:1 21021:1 21038:1 21049:1 21050:1 21065:1 21078:1 21091:1 21100:1 21112:2 21128:1 21144:1 21158:3 21160:1 21162:2 21164:1 21167:3 21169:1 21202:1 21211:1 21239:1 21243:1 21270:1 21284:1 21285:1 21304:1 21307:1 21332:3 21336:1 21352:1 21356:1 21376:1 21388:2 21393:2 21394:1 21396:1 21399:1 21401:1 21409:1 21415:1 21426:3 21433:1 21438:2 21444:3 21466:1 21487:2 21490:2 21494:1 21500:1 21518:1 21520:1 21536:1 21539:1 21549:1 21568:3 21615:4 21626:1 21640:3 21675:2 21682:1 21687:1 21696:1 21701:1 21706:1 21711:1 21720:1 21722:1 21728:1 21743:1 21777:1 21813:1 21821:1 21836:1 21850:2 21865:3 21867:1 21871:4 21875:1 21877:1 21883:2 21897:1 21914:1 21929:1 21931:1 21942:1 21944:3 21946:1 21951:1 21958:3 21961:3 21972:1 21974:1 21998:1 22000:1 22010:1 22013:1 22020:1 22021:2 22039:1 22040:2 22057:1 22060:1 22073:1 22082:1 22084:1 22103:6 22108:1 22113:3 22127:1 22136:1 22165:3 22189:1 22191:2 22198:1 22282:2 22291:1 22304:1 22305:2 22322:3 22325:1 22387:2 22401:1 22410:1 22416:3 22460:1 22500:1 22502:8 22562:1 22573:2 22598:2 22600:1 22603:1 22608:1 22617:1 22624:1 22634:2 22657:1 22662:1 22672:3 22678:1 22687:2 22688:7 22691:1 22693:1 22705:1 22710:1 22711:1 22729:1 22732:2 22744:1 22754:1 22757:1 22772:1 22803:1 22811:1 22817:1 22849:1 22856:1 22857:1 22858:1 22861:1 22862:1 22863:1 22864:1 22870:1 22874:1 22909:1 22918:1 22919:3 22921:1 22922:2 22925:1 22927:4 22932:1 22933:1 22939:1 22953:1 22958:1 22960:4 22968:5 22969:1 22984:1 23006:1 23007:1 23026:1 23035:1 23039:1 23042:1 23061:1 23068:2 23076:1 23081:2 23090:2 23109:1 23112:2 23150:1 23164:1 23173:1 23176:1 23204:1 23211:2 23248:1 23255:1 23262:1 23274:2 23282:1 23309:3 23328:6 23360:1 23369:1 23371:1 23381:1 23384:6 23393:1 23396:1 23397:1 23399:1 23407:1 23413:1 23436:2 23437:1 23535:1 23554:1 23569:1 23579:1 23596:2 23598:6 23599:1 23626:3 23635:1 23637:1 23647:2 23651:1 23660:2 23670:1 23675:1 23701:1 23705:1 23708:1 23729:1 23734:2 23746:1 23764:1 23817:1 23818:1 23821:1 23826:1 23827:1 23854:1 23856:1 23859:1 23861:1 23878:1 23891:1 23932:1 23934:1 23946:1 23948:3 23949:1 23963:1 23964:1 23994:1 24014:1 24034:1 24092:1 24104:1 24111:1 24121:1 24142:5 24143:1 24144:5 24148:1 24198:1 24233:2 24247:1 24262:4 24264:1 24285:1 24300:1 24311:1 24313:1 24355:1 24362:1 24364:1 24365:2 24382:1 24394:1 24408:1 24420:3 24436:1 24437:1 24440:1 24444:3 24448:1 24469:1 24477:1 24494:1 24498:1 24500:4 24509:1 24525:1 24548:1 24558:1 24571:6 24572:1 24587:2 24623:1 24642:3 24650:1 24654:2 24671:2 24675:1 24702:1 24721:1 24726:1 24730:1 24738:1 24743:1 24750:1 24757:1 24776:1 24795:1 24796:2 24800:1 24812:1 24816:1 24819:1 24832:2 24836:3 24837:1 24855:2 24882:2 24888:1 24890:1 24893:1 24897:1 24909:4 24941:2 24947:2 24958:1 24973:1 24991:1 25010:1 25021:1 25033:1 25034:1 25045:1 25082:1 25084:2 25095:1 25137:1 25139:1 25161:1 25228:1 25233:1 25241:1 25264:1 25270:2 25271:1 25280:1 25308:1 25349:1 25353:1 25357:1 25362:2 25367:1 25368:3 25384:1 25385:2 25389:1 25393:1 25404:1 25407:1 25417:1 25419:1 25430:3 25440:1 25447:1 25448:1 25461:4 25466:1 25474:1 25513:1 25524:1 25527:6 25531:1 25548:2 25551:1 25557:1 25614:4 25623:2 25624:2 25631:1 25634:1 25635:2 25637:1 25638:1 25646:1 25654:1 25664:1 25675:1 25680:2 25684:1 25694:2 25695:2 25696:1 25702:1 25703:1 25706:1 25712:1 25719:1 25723:1 25728:1 25754:2 25761:1 25782:2 25786:1 25805:1 25807:3 25817:1 25835:1 25837:1 25845:1 25849:1 25889:1 25893:1 25909:1 25912:2 25915:1 25928:4 25946:1 25953:1 25980:2 25996:1 25998:6 26017:2 26023:1 26045:1 26065:1 26105:2 26120:1 26165:1 26178:3 26221:1 26250:3 26258:2 26287:1 26293:1 26312:4 26315:1 26341:1 26366:1 26372:1 26378:1 26382:1 26385:2 26392:18 26394:1 26396:1 26411:1 26423:1 26430:10 26434:1 26438:1 26441:1 26443:2 26465:1 26489:2 26512:1 26518:1 26522:3 26529:3 26560:8 26561:1 26568:1 26590:1 26605:1 26632:2 26634:1 26641:1 26643:1 26667:2 26687:1 26688:2 26693:1 26705:2 26726:1 26743:1 26764:1 26770:1 26785:1 26808:4 26810:3 26838:1 26852:1 26863:1 26864:1 26869:1 26873:1 26875:2 26881:1 26890:1 26901:1 26910:1 26984:1 26997:4 27008:1 27010:1 27011:1 27015:10 27032:1 27037:1 27042:1 27048:1 27052:1 27054:2 27059:1 27063:1 27087:1 27104:1 27112:1 27121:1 27167:1 27176:1 27188:1 27194:1 27204:1 27211:1 27219:1 27227:3 27233:2 27277:1 27340:2 27379:1 27393:1 27394:1 27403:1 27406:1 27410:1 27420:1 27433:1 27439:2 27442:1 27466:1 27469:1 27475:2 27479:1 27493:1 27502:4 27509:1 27511:1 27512:2 27528:1 27548:1 27549:1 27561:1 27568:1 27572:1 27575:1 27578:3 27580:1 27585:2 27587:4 27592:1 27596:2 27600:1 27602:1 27612:1 27640:1 27643:3 27647:1 27653:1 27654:1 27671:1 27676:1
20 10:1 17:1 21:1 22:1 26:2 29:1 30:1 40:1 57:1 68:1 72:1 81:7 86:1 96:1 109:1 114:1 115:1 145:1 155:1 168:1 185:1 191:1 207:1 241:3 245:2 246:1 263:3 266:1 278:1 298:1 317:1 323:2 324:1 344:1 366:1 368:2 382:1 411:1 425:1 435:1 441:3 471:1 479:2 500:1 511:1 526:1 529:1 548:1 549:3 556:1 557:1 570:1 579:2 592:2 595:1 615:2 617:1 620:3 666:1 692:1 716:1 748:1 784:1 808:1 848:1 853:2 856:1 865:2 867:1 877:1 882:1 883:4 885:1 894:1 908:1 915:3 929:1 933:1 935:3 937:1 938:1 939:5 941:4 948:1 956:1 959:1 966:4 980:1 991:3 992:3 996:2 1000:1 1009:1 1018:1 1040:1 1041:2 1045:1 1059:1 1079:1 1083:1 1097:1 1102:4 1110:4 1136:1 1139:1 1144:1 1146:1 1160:1 1161:1 1163:1 1180:1 1186:1 1201:1 1202:1 1211:1 1215:1 1217:1 1219:1 1235:1 1244:1 1252:1 1258:1 1271:1 1285:1 1328:1 1344:2 1356:2 1369:1 1371:1 1383:1 1393:1 1395:1 1397:4 1408:3 1418:4 1430:1 1437:1 1440:1 1441:1 1446:1 1460:3 1482:14 1484:2 1486:7 1490:1 1496:2 1501:1 1505:1 1517:1 1518:2 1522:1 1527:1 1541:1 1543:1 1550:9 1568:1 1569:1 1589:1 1593:1 1607:1 1608:1 1635:2 1655:1 1675:1 1703:5 1709:2 1726:1 1754:1 1760:2 1784:1 1791:1 1799:1 1814:1 1830:2 1839:3 1843:2 1851:1 1863:2 1868:1 1882:1 1883:1 1887:1 1922:1 1924:2 1942:1 1954:4 1974:1 1982:1 1994:1 1996:3 1999:1 2002:1 2005:1 2007:1 2014:1 2021:1 2055:5 2059:1 2077:1 2088:1 2093:2 2094:2 2099:1 2120:2 2123:8 2126:5 2129:1 2130:1 2136:1 2138:1 2139:2 2141:3 2142:2 2143:1 2146:1 2152:1 2158:1 2160:1 2161:2 2163:2 2186:1 2190:1 2192:2 2193:1 2195:2 2196:4 2198:1 2202:1 2205:2 2209:1 2210:2 2212:1 2214:3 2215:2 2218:3 2222:2 2225:1 2228:2 2230:1 2232:2 2250:1 2254:1 2256:1 2278:1 2289:1 2298:1 2304:1 2315:1 2324:1 2334:1 2348:1 2351:1 2352:1 2376:1 2387:1 2406:1 2427:1 2433:1 2434:1 2458:1 2490:1 2492:1 2497:1 2509:1 2520:1 2522:1 2528:1 2546:3 2562:1 2571:1 2584:1 2592:1 2602:1 2605:2 2610:1 2618:2 2625:1 2626:1 2633:1 2655:2 2656:1 2664:1 2670:1 2676:1 2686:1 2687:1 2691:1 2695:1 2713:2 2729:1 2742:1 2765:3 2770:1 2774:2 2775:9 2778:2 2788:1 2791:2 2792:3 2806:1 2810:1 2811:1 2826:9 2849:1 2909:1 2929:2 2934:1 2939:1 2983:3 3032:1 3037:1 3074:1 3108:1 3116:1 3117:1 3125:2 3135:1 3144:3 3174:3 3191:1 3205:3 3221:1 3226:1 3227:1 3235:1 3238:1 3266:1 3286:1 3328:1 3337:1 3339:1 3362:1 3374:2 3382:1 3389:2 3440:1 3443:3 3456:2 3458:1 3460:2 3467:1 3476:2 3488:1 3489:1 3497:1 3507:6 3524:1 3535:1 3537:1 3543:1 3544:1 3550:1 3553:3 3584:2 3592:2 3593:4 3638:6 3639:1 3662:1 3664:6 3703:1 3714:1 3715:2 3723:1 3736:1 3744:1 3751:6 3765:1 3769:2 3772:2 3795:1 3803:1 3804:1 3819:1 3820:2 3825:1 3836:1 3842:2 3847:1 3849:2 3850:1 3865:1 3878:1 3897:1 3907:1 3931:1 3949:1 3969:1 3978:1 3991:1 3998:1 4020:1 4094:1 4097:1 4118:1 4120:1 4130:1 4160:1 4162:1 4167:2 4168:1 4170:1 4191:1 4225:2 4228:1 4245:1 4253:1 4255:1 4259:1 4289:1 4291:1 4293:1 4323:1 4324:2 4355:1 4359:1 4361:2 4372:1 4393:1 4411:1 4418:1 4434:1 4455:2 4456:1 4460:1 4463:1 4478:4 4498:1 4501:2 4503:1 4551:1 4553:1 4564:1 4579:1 4592:1 4616:1 4619:1 4659:1 4668:1 4671:1 4679:1 4688:1 4693:1 4701:14 4702:1 4710:1 4730:1 4736:1 4756:1 4795:3 4799:7 4817:3 4818:2 4820:1 4823:1 4825:1 4828:1 4833:1 4834:1 4839:1 4840:2 4841:2 4843:4 4845:3 4848:1 4849:1 4862:2 4894:1 4915:1 4926:1 4950:1 4959:1 4995:1 5004:4 5007:1 5018:1 5030:1 5038:1 5040:1 5066:3 5071:1 5086:1 5096:1 5123:2 5141:1 5144:1 5149:1 5173:3 5186:1 5211:1 5217:1 5222:1 5227:1 5231:4 5261:1 5281:1 5288:2 5306:1 5332:1 5333:2 5338:1 5343:1 5355:2 5366:1 5373:1 5375:1 5380:1 5385:2 5391:1 5398:1 5400:1 5407:1 5414:3 5428:3 5447:1 5473:2 5486:1 5488:1 5490:1 5505:1 5512:1 5529:1 5537:1 5540:1 5546:1 5549:2 5566:1 5570:1 5572:1 5592:2 5599:3 5629:4 5630:3 5652:2 5657:2 5664:1 5665:2 5708:1 5716:1 5745:1 5757:1 5764:2 5781:5 5789:1 5799:1 5815:2 5829:2 5831:1 5842:1 5859:1 5863:1 5873:1 5877:2 5925:3 5928:1 5932:3 5965:1 5967:1 5976:1 5986:1 5996:3 5998:1 6006:1 6010:1 6011:1 6024:1 6031:2 6041:1 6063:2 6065:2 6068:1 6080:3 6081:1 6082:1 6088:2 6092:1 6095:1 6096:1 6099:4 6100:2 6103:2 6105:5 6106:2 6108:4 6138:1 6151:1 6169:1 6172:1 6201:4 6212:1 6217:4 6230:2 6277:1 6278:1 6290:1 6321:1 6336:1 6385:2 6403:1 6408:1 6415:1 6416:2 6424:1 6427:2 6428:1 6465:1 6466:1 6473:1 6475:1 6477:1 6483:2 6501:2 6502:1 6504:1 6509:1 6526:1 6527:1 6534:1 6553:1 6557:2 6601:1 6610:3 6612:1 6633:1 6642:3 6646:1 6652:1 6653:1 6659:1 6665:1 6669:1 6696:1 6714:1 6718:2 6731:1 6749:1 6753:1 6766:1 6775:1 6793:9 6794:1 6804:1 6813:2 6817:1 6855:2 6879:1 6887:1 6901:1 6906:1 6907:1 6939:1 6955:1 6970:1 6976:1 6993:1 6998:1 7001:1 7008:1 7025:1 7030:3 7056:3 7065:1 7066:3 7083:1 7085:1 7091:1 7092:1 7104:1 7128:1 7135:1 7140:2 7142:1 7145:1 7148:1 7162:1 7166:1 7168:1 7185:1 7193:2 7195:1 7196:1 7197:1 7208:1 7209:1 7227:1 7234:1 7258:1 7261:4 7268:10 7277:1 7284:2 7287:1 7289:4 7292:1 7315:1 7320:1 7328:32 7346:5 7347:11 7357:1 7384:1 7401:2 7407:1 7415:1 7457:1 7467:1 7519:1 7527:1 7535:1 7538:1 7572:1 7587:3 7596:3 7601:1 7615:1 7653:1 7677:1 7691:1 7693:1 7700:1 7704:1 7709:1 7716:1 7717:1 7723:9 7733:2 7735:1 7741:1 7743:1 7762:1 7783:1 7791:27 7816:1 7835:1 7839:1 7842:1 7849:1 7855:1 7877:1 7899:1 7910:1 7943:1 7944:1 7947:1 7950:1 7964:1 7969:5 7974:1 7986:2 7988:1 7996:1 8002:3 8013:1 8015:1 8024:1 8026:3 8054:1 8059:1 8073:1 8090:1 8112:1 8113:2 8115:1 8123:1 8125:3 8128:2 8130:4 8133:1 8134:1 8136:2 8141:4 8153:1 8154:1 8157:2 8187:1 8207:1 8216:2 8217:2 8219:1 8220:1 8246:1 8248:1 8275:3 8277:1 8299:1 8302:1 8327:1 8347:1 8368:1 8383:1 8391:2 8402:2 8412:3 8423:1 8433:1 8440:1 8441:1 8445:4 8457:1 8475:2 8480:1 8488:1 8495:1 8511:1 8514:1 8518:1 8524:2 8530:1 8533:1 8558:1 8560:2 8566:6 8569:4 8573:1 8576:1 8585:3 8598:1 8602:1 8631:1 8647:1 8656:1 8670:1 8678:1 8684:1 8707:1 8713:1 8735:1 8791:3 8794:1 8804:1 8811:1 8812:1 8813:1 8817:1 8824:1 8830:1 8874:1 8877:1 8893:1 8909:1 8925:2 8933:1 8940:1 8950:1 8956:3 8957:1 8967:1 8972:1 8974:1 8979:1 8988:4 9002:1 9017:3 9050:1 9074:1 9089:4 9102:1 9105:3 9110:6 9123:3 9141:1 9163:1 9166:1 9180:2 9182:1 9186:2 9208:11 9215:1 9223:1 9224:1 9231:1 9249:1 9260:1 9263:1 9267:1 9272:1 9280:1 9283:1 9288:2 9293:1 9353:2 9362:1 9367:3 9368:1 9376:2 9394:1 9405:1 9412:1 9430:2 9433:2 9446:2 9468:1 9472:1 9475:1 9481:2 9487:1 9508:2 9540:1 9551:1 9556:2 9564:1 9565:2 9595:1 9619:1 9650:2 9657:2 9676:1 9719:1 9727:1 9729:1 9732:2 9773:3 9814:1 9832:4 9834:3 9836:1 9847:1 9856:1 9859:1 9870:1 9881:2 9901:2 9908:1 9917:1 9926:1 9931:3 9932:1 9945:1 9958:3 9965:1 9967:1 9990:2 9991:2 9999:1 10001:2 10010:3 10011:1 10013:1 10016:1 10018:1 10021:1 10026:1 10028:2 10035:1 10036:1 10060:3 10061:2 10099:3 10106:1 10113:1 10118:1 10121:1 10125:1 10130:4 10133:8 10172:1 10181:2 10196:1 10202:1 10211:1 10212:4 10224:1 10229:3 10299:1 10316:1 10328:1 10340:1 10347:1 10348:4 10349:2 10352:1 10353:1 10387:1 10420:2 10427:1 10433:3 10462:1 10467:2 10470:1 10472:1 10474:1 10495:1 10497:1 10531:6 10537:1 10540:2 10566:1 10571:1 10598:1 10601:1 10608:1 10625:1 10630:1 10632:1 10635:1 10651:3 10656:2 10687:1 10688:1 10701:1 10712:1 10716:1 10718:1 10719:1 10723:1 10732:1 10737:1 10741:1 10758:1 10763:1 10771:1 10786:2 10788:7 10825:1 10839:2 10845:2 10848:2 10849:1 10865:1 10867:1 10869:3 10902:1 10903:1 10917:1 10926:1 10930:1 10944:1 10949:1 10950:2 10970:1 10983:7 10985:3 10988:1 11007:1 11020:2 11031:1 11032:1 11034:1 11037:1 11040:1 11042:1 11045:1 11051:1 11052:1 11056:2 11058:1 11061:1 11071:1 11079:1 11081:1 11092:1 11100:1 11101:1 11102:5 11112:3 11118:8 11167:1 11172:1 11174:1 11183:1 11185:11 11224:1 11254:1 11273:1 11277:1 11289:1 11297:2 11303:4 11304:1 11335:1 11365:3 11384:1 11395:1 11408:1 11410:3 11436:2 11443:1 11456:3 11457:3 11462:1 11463:1 11472:1 11474:1 11479:3 11480:1 11484:1 11499:1 11506:1 11520:1 11538:1 11552:1 11563:1 11567:1 11582:2 11598:3 11608:1 11626:1 11680:1 11692:1 11693:1 11723:1 11742:3 11751:1 11772:1 11818:1 11842:1 11849:2 11868:1 11870:1 11885:1 11912:1 11918:1 11932:1 11971:1 11975:8 11979:1 11992:2 12005:1 12018:1 12035:1 12053:1 12057:11 12063:1 12085:1 12090:2 12114:1 12115:2 12141:2 12164:1 12179:1 12180:1 12186:1 12251:1 12253:1 12261:1 12263:4 12279:1 12280:1 12283:2 12302:2 12315:1 12344:1 12356:2 12378:4 12387:1 12390:1 12391:3 12394:3 12408:3 12413:1 12414:8 12416:1 12418:1 12437:1 12439:1 12454:1 12456:2 12473:2 12474:1 12498:1 12510:1 12511:8 12516:1 12523:1 12526:14 12527:1 12530:1 12538:1 12548:1 12555:1 12597:4 12626:1 12640:1 12653:2 12670:2 12689:1 12696:1 12702:1 12710:2 12714:1 12728:1 12737:1 12753:1 12757:2 12759:2 12764:1 12787:1 12791:1 12803:1 12818:1 12829:1 12887:1 12889:1 12891:1 12894:5 12895:1 12903:1 12905:2 12920:1 12927:2 12939:1 12947:1 12960:1 12968:1 12978:1 13005:10 13012:1 13013:1 13015:2 13051:1 13055:2 13056:1 13080:2 13088:1 13095:2 13096:1 13097:1 13100:3 13107:1 13122:1 13128:1 13138:1 13170:5 13172:2 13199:2 13233:1 13244:1 13245:2 13282:1 13290:1 13297:1 13300:1 13301:2 13336:2 13343:1 13372:1 13403:2 13405:1 13412:1 13420:1 13422:1 13424:1 13429:1 13430:1 13463:1 13465:1 13468:1 13498:1 13509:1 13527:1 13534:1 13535:2 13541:1 13542:2 13552:1 13554:1 13563:1 13568:1 13586:1 13587:1 13593:2 13618:1 13638:1 13641:4 13671:4 13687:1 13696:1 13705:1 13727:1 13732:1 13739:3 13747:1 13756:5 13771:1 13780:1 13793:1 13794:1 13810:1 13819:2 13834:1 13844:1 13867:1 13869:1 13879:1 13887:1 13895:1 13898:1 13910:1 13930:1 13933:1 13938:1 13943:1 13957:1 14001:1 14015:1 14037:1 14042:3 14045:1 14053:3 14066:1 14087:3 14127:1 14138:1 14156:1 14158:1 14177:4 14184:1 14185:1 14207:1 14232:1 14234:1 14238:2 14240:2 14271:1 14276:1 14278:1 14295:1 14330:1 14352:3 14363:1 14382:3 14383:2 14385:1 14387:1 14405:1 14432:1 14433:1 14434:1 14475:1 14483:1 14500:1 14512:1 14524:1 14534:1 14544:1 14549:1 14550:29 14574:1 14580:2 14584:1 14589:1 14611:1 14621:1 14625:1 14628:1 14638:1 14639:1 14660:1 14662:1 14671:2 14674:1 14695:1 14717:1 14720:1 14755:1 14757:4 14765:1 14768:2 14769:1 14770:2 14777:1 14779:1 14785:1 14789:2 14794:1 14797:1 14799:6 14801:1 14808:1 14814:1 14847:2 14849:1 14888:1 14889:1 14891:1 14895:1 14903:1 14911:5 14912:5 14939:1 14949:1 14968:1 15004:1 15018:1 15030:1 15037:3 15051:1 15057:1 15068:1 15074:1 15085:1 15094:1 15128:2 15130:2 15133:1 15135:1 15152:1 15157:1 15163:1 15166:6 15176:1 15184:1 15185:1 15197:1 15204:1 15206:1 15210:1 15211:1 15216:1 15217:4 15238:1 15244:2 15252:1 15253:1 15267:1 15269:1 15273:1 15274:2 15278:3 15279:1 15280:2 15282:2 15284:1 15287:3 15288:1 15290:1 15292:1 15295:4 15297:1 15300:5 15303:1 15314:1 15331:3 15351:1 15399:1 15410:1 15425:1 15427:1 15495:1 15501:1 15528:1 15530:1 15567:1 15604:2 15623:1 15647:1 15649:1 15653:1 15661:2 15664:1 15667:2 15668:1 15671:1 15680:1 15725:1 15731:2 15733:2 15734:2 15742:1 15755:2 15758:5 15767:2 15772:1 15780:1 15803:1 15804:1 15814:2 15818:1 15836:1 15844:2 15846:1 15861:3 15868:9 15870:2 15892:1 15921:2 15924:1 15928:1 15930:2 15939:2 15941:3 15962:2 15968:1 15971:2 15992:2 15997:2 15999:2 16015:1 16020:2 16042:1 16045:1 16050:1 16068:1 16074:1 16080:1 16081:1 16090:1 16096:1 16100:1 16102:1 16118:1 16129:1 16131:1 16161:1 16187:1 16193:2 16197:1 16200:1 16214:1 16230:2 16235:1 16241:1 16252:3 16255:1 16269:2 16283:1 16304:1 16319:1 16328:1 16341:1 16348:1 16374:1 16376:1 16378:1 16390:1 16412:1 16416:2 16466:1 16467:1 16470:2 16487:1 16489:1 16534:1 16535:2 16548:1 16556:2 16563:2 16571:1 16578:1 16580:1 16598:1 16604:1 16607:1 16610:1 16623:2 16625:1 16628:2 16655:1 16666:1 16669:2 16674:1 16692:1 16695:1 16704:6 16724:1 16740:1 16741:1 16748:3 16749:1 16769:1 16772:2 16785:1 16786:3 16788:1 16789:2 16799:1 16803:1 16807:1 16828:2 16830:1 16839:1 16848:1 16854:1 16859:1 16862:1 16871:1 16879:4 16886:3 16888:1 16891:1 16899:1 16912:1 16914:1 16918:1 16920:1 16923:1 16940:8 16963:2 16966:2 16994:1 17005:1 17007:1 17012:1 17030:1 17056:1 17067:1 17096:1 17100:1 17109:1 17112:1 17117:1 17142:1 17148:1 17154:1 17169:1 17176:1 17184:1 17188:2 17203:1 17212:1 17230:1 17237:1 17249:1 17277:2 17284:1 17348:3 17353:1 17374:7 17383:2 17385:1 17399:1 17444:1 17448:1 17449:1 17470:1 17477:1 17523:1 17554:1 17559:2187 17560:2 17575:3 17590:1 17601:1 17611:1 17624:1 17642:1 17670:1 17690:1 17693:1 17699:2 17704:1 17724:1 17729:1 17738:1 17750:1 17752:1 17761:5 17770:1 17773:3 17774:1 17775:2 17776:1 17788:2 17805:1 17842:2 17858:1 17859:1 17873:1 17893:1 17899:1 17917:1 17940:2 17944:1 17955:1 17964:3 18020:1 18024:2 18039:1 18071:2 18079:1 18092:1 18100:1 18142:1 18166:1 18169:1 18208:1 18209:2 18223:3 18239:1 18245:4 18265:2 18274:2 18293:1 18297:1 18303:1 18329:1 18330:5 18338:1 18348:3 18350:1 18351:1 18383:1 18394:8 18402:1 18423:1 18452:1 18465:1 18480:1 18483:1 18516:1 18518:1 18544:1 18547:1 18555:1 18578:1 18579:1 18605:1 18613:2 18629:1 18635:1 18639:1 18641:1 18649:1 18657:2 18658:3 18669:4 18673:1 18678:1 18694:2 18695:1 18702:3 18719:1 18728:1 18746:1 18754:2 18773:1 18777:1 18782:1 18801:1 18820:1 18822:1 18839:1 18840:1 18846:2 18855:1 18879:1 18890:1 18898:9 18904:3 18908:1 18909:1 18933:1 18939:1 18946:1 18948:1 18956:1 18959:1 18965:1 18968:1 18973:2 18977:2 18991:2 18994:5 19005:2 19011:2 19027:1 19030:1 19044:2 19046:1 19061:7 19065:3 19069:1 19078:1 19087:1 19098:1 19099:1 19107:1 19115:1 19121:1 19147:1 19168:1 19183:1 19207:1 19209:1 19254:1 19285:3 19302:1 19308:1 19327:1 19330:6 19333:5 19339:1 19340:2 19377:1 19378:1 19394:1 19403:1 19409:1 19431:1 19440:2 19446:1 19470:1 19479:1 19496:1 19506:1 19516:1 19518:1 19522:1 19533:1 19535:1 19538:1 19551:1 19555:1 19561:1 19569:1 19589:1 19607:1 19620:1 19626:4 19646:1 19658:1 19662:1 19664:2 19668:2 19679:1 19691:1 19718:1 19728:3 19736:1 19781:10 19788:2 19792:2 19797:1 19807:4 19808:2 19818:1 19830:1 19834:1 19844:1 19856:1 19859:1 19864:1 19866:1 19869:1 19875:1 19876:1 19893:1 19900:1 19914:1 19922:2 19965:1 19970:1 19971:1 20009:1 20010:1 20026:5 20049:1 20051:2 20065:1 20070:3 20078:1 20084:2 20089:1 20124:1 20152:1 20161:1 20163:1 20167:1 20168:1 20176:1 20177:1 20183:1 20191:1 20192:1 20193:4 20195:1 20196:1 20199:1 20210:1 20211:1 20219:1 20241:1 20262:1 20270:3 20274:1 20285:1 20302:1 20315:1 20322:2 20341:2 20346:1 20348:1 20361:2 20363:2 20366:2 20408:1 20414:2 20416:2 20425:3 20441:1 20463:1 20466:2 20472:1 20473:1 20495:1 20520:1 20523:1 20524:1 20559:1 20573:1 20576:2 20585:1 20589:1 20603:3 20604:3 20605:3 20611:1 20613:1 20615:1 20634:1 20636:3 20638:2 20640:1 20646:2 20647:1 20660:1 20665:1 20676:2 20693:1 20715:2 20727:2 20749:1 20751:3 20756:1 20761:1 20772:3 20775:2 20787:3 20802:1 20815:1 20831:1 20838:1 20846:2 20869:1 20878:1 20884:1 20902:2 20913:2 20919:1 20920:4 20924:1 20926:1 20946:1 20949:1 20962:1 20968:1 20972:2 20978:2 20981:1 20982:1 20985:1 20986:2 21021:1 21038:1 21049:1 21050:1 21065:1 21074:1 21078:1 21091:2 21100:1 21112:2 21128:1 21144:1 21158:3 21160:1 21162:2 21164:1 21167:3 21169:1 21202:1 21211:1 21239:1 21243:1 21270:1 21284:1 21285:1 21304:1 21307:1 21332:3 21336:1 21352:1 21356:1 21376:1 21388:2 21393:2 21394:1 21396:1 21399:1 21401:1 21409:1 21415:1 21426:3 21433:1 21438:2 21444:3 21466:1 21487:2 21490:2 21494:1 21500:1 21518:1 21520:1 21536:1 21539:1 21549:1 21568:3 21615:4 21626:1 21640:3 21675:2 21682:1 21687:1 21696:1 21701:1 21706:1 21711:1 21720:1 21722:1 21728:1 21743:1 21777:1 21813:1 21821:1 21836:1 21850:2 21865:3 21867:1 21871:4 21875:1 21877:1 21883:2 21896:1 21897:1 21913:1 21914:1 21929:1 21931:1 21942:1 21944:3 21946:1 21951:1 21958:3 21961:3 21972:1 21974:1 21998:1 22000:1 22010:1 22013:1 22020:1 22021:2 22039:1 22040:2 22057:1 22060:1 22073:1 22082:1 22084:1 22103:6 22108:1 22113:3 22127:1 22136:1 22165:3 22189:1 22191:2 22198:1 22282:2 22291:1 22304:1 22305:2 22322:3 22325:1 22387:2 22401:1 22410:1 22416:3 22460:1 22500:1 22502:8 22562:1 22573:2 22598:2 22600:1 22603:1 22608:1 22617:1 22624:1 22625:1 22634:2 22657:1 22662:1 22672:3 22678:1 22687:2 22688:7 22691:1 22693:1 22705:1 22710:1 22711:1 22716:1 22729:1 22732:2 22744:1 22754:1 22757:1 22772:1 22803:1 22811:1 22817:1 22849:1 22856:1 22857:1 22858:1 22861:1 22862:1 22863:1 22864:1 22870:1 22874:1 22909:1 22918:1 22919:3 22921:1 22922:2 22925:1 22927:4 22932:1 22933:1 22939:1 22953:1 22958:1 22960:4 22968:5 22969:1 22984:1 23006:2 23007:1 23026:1 23035:1 23039:1 23042:1 23061:1 23068:2 23076:1 23081:2 23090:2 23109:1 23112:2 23150:1 23164:1 23173:1 23176:1 23204:1 23211:2 23248:1 23255:1 23262:1 23271:1 23274:2 23282:1 23309:3 23313:1 23328:6 23360:1 23369:1 23371:1 23381:1 23384:6 23393:1 23396:1 23397:1 23399:1 23407:1 23413:1 23436:2 23437:1 23477:1 23535:1 23554:1 23569:1 23579:1 23596:3 23598:7 23599:1 23626:3 23635:1 23637:1 23647:2 23651:1 23660:2 23670:1 23675:1 23701:1 23705:1 23708:1 23729:1 23734:2 23746:1 23764:1 23795:1 23817:1 23818:1 23821:1 23826:1 23827:1 23828:1 23854:1 23856:1 23859:1 23861:1 23878:1 23891:1 23932:1 23934:1 23946:1 23948:3 23949:1 23963:1 23964:1 23994:1 24001:1 24014:1 24034:1 24092:1 24104:1 24111:1 24121:1 24142:5 24143:1 24144:5 24148:1 24198:1 24233:2 24247:1 24248:1 24262:4 24264:1 24285:1 24300:1 24311:1 24313:1 24355:1 24362:1 24364:1 24365:2 24382:1 24389:1 24394:1 24408:1 24420:3 24436:1 24437:1 24440:1 24444:3 24448:1 24469:1 24477:1 24494:1 24498:1 24500:4 24509:1 24525:1 24548:1 24558:1 24571:6 24572:1 24587:2 24623:1 24642:3 24650:1 24654:2 24665:1 24671:2 24675:1 24702:1 24721:1 24726:1 24730:1 24738:1 24743:1 24750:1 24757:1 24776:1 24795:2 24796:2 24800:1 24812:1 24816:1 24819:1 24830:1 24832:2 24836:3 24837:1 24855:2 24882:2 24888:1 24890:1 24893:1 24897:1 24909:4 24941:2 24947:2 24958:1 24973:1 24991:1 25010:1 25021:1 25033:1 25034:1 25045:1 25082:1 25084:2 25095:1 25137:1 25139:1 25161:1 25168:1 25228:1 25233:1 25241:1 25264:1 25270:2 25271:1 25280:1 25308:1 25349:1 25353:1 25357:1 25362:2 25367:1 25368:3 25384:1 25385:2 25389:1 25393:1 25404:1 25407:1 25417:1 25419:1 25430:3 25440:1 25447:1 25448:1 25461:4 25466:1 25474:1 25513:1 25524:1 25527:6 25531:2 25533:1 25548:2 25551:1 25557:1 25595:1 25614:4 25623:2 25624:2 25631:1 25634:1 25635:3 25637:1 25638:1 25646:1 25654:1 25664:1 25675:1 25680:2 25684:1 25694:2 25695:2 25696:1 25702:1 25703:1 25706:1 25712:1 25719:1 25723:1 25728:1 25754:2 25761:1 25782:2 25786:1 25805:1 25807:3 25809:1 25817:1 25835:1 25837:1 25845:1 25849:1 25889:1 25893:1 25909:1 25912:2 25915:1 25928:4 25946:1 25953:1 25980:2 25996:1 25998:6 26017:2 26023:1 26045:1 26065:1 26105:2 26120:1 26165:1 26178:3 26221:1 26250:3 26258:2 26287:1 26293:1 26312:4 26315:1 26341:1 26366:1 26372:1 26378:1 26382:1 26385:2 26392:19 26394:1 26396:1 26411:1 26423:1 26430:12 26434:1 26438:1 26441:1 26443:2 26465:1 26489:2 26512:1 26518:1 26522:3 26529:3 26560:9 26561:1 26568:1 26590:1 26605:1 26632:2 26634:1 26641:1 26643:1 26667:2 26687:1 26688:2 26693:1 26705:2 26726:1 26743:1 26764:1 26770:1 26785:1 26808:4 26810:3 26838:1 26852:1 26863:1 26864:1 26869:1 26873:1 26875:2 26881:1 26890:1 26901:1 26910:1 26984:1 26997:4 27008:1 27010:1 27011:1 27015:10 27032:1 27037:1 27042:1 27048:1 27052:1 27054:2 27059:1 27063:1 27087:1 27104:1 27112:1 27121:1 27167:1 27176:1 27188:1 27194:1 27204:1 27211:1 27219:1 27227:3 27233:2 27277:1 27340:2 27379:1 27393:1 27394:2 27403:1 27406:1 27410:1 27420:1 27433:1 27439:2 27442:1 27466:1 27469:1 27475:2 27479:1 27493:1 27502:4 27509:1 27511:1 27512:2 27528:1 27548:1 27549:1 27561:1 27568:1 27572:1 27575:1 27578:3 27580:1 27585:2 27587:4 27592:1 27596:2 27600:1 27602:1 27612:1 27640:1 27643:3 27647:1 27653:1 27654:1 27671:1 27676:1
20 10:1 17:1 21:1 22:1 26:2 29:1 30:1 40:1 57:1 68:1 72:1 81:7 86:1 96:1 109:1 114:1 115:1 145:1 155:1 168:1 185:1 191:1 207:1 241:3 245:2 246:1 263:3 266:1 278:1 298:1 317:1 323:2 324:1 344:1 366:1 368:2 382:1 411:1 425:1 435:1 441:3 471:1 479:2 500:1 511:1 526:1 529:1 548:1 549:3 556:1 557:1 570:1 579:2 592:2 595:1 615:2 617:1 620:3 666:1 692:1 716:1 746:1 748:1 784:1 808:1 848:2 853:2 856:1 860:1 865:2 867:1 877:1 882:1 883:4 885:1 894:1 908:1 915:3 929:1 933:1 935:3 937:1 938:1 939:5 941:4 948:1 956:1 959:1 966:4 980:1 991:3 992:3 996:2 1000:1 1009:1 1018:1 1040:1 1041:2 1045:1 1059:1 1079:1 1083:1 1097:1 1102:5 1110:4 1136:1 1139:1 1144:1 1146:1 1160:1 1161:1 1163:1 1180:1 1186:1 1201:1 1202:1 1211:1 1215:1 1217:1 1219:1 1235:1 1244:1 1252:1 1258:1 1271:1 1285:1 1328:1 1344:2 1356:2 1369:1 1371:1 1383:1 1393:1 1395:1 1397:4 1408:3 1418:4 1430:1 1437:1 1440:1 1441:1 1446:1 1460:3 1482:14 1484:2 1486:7 1490:1 1496:2 1501:1 1505:1 1517:1 1518:2 1522:1 1527:1 1541:1 1543:1 1550:9 1555:1 1568:1 1569:1 1589:1 1593:1 1607:1 1608:1 1611:1 1635:2 1655:1 1675:1 1703:5 1709:2 1726:1 1742:1 1754:1 1760:2 1784:1 1791:1 1799:1 1814:1 1830:2 1839:3 1843:2 1851:1 1863:2 1868:1 1882:1 1883:1 1887:1 1922:1 1924:2 1942:1 1954:4 1974:1 1982:1 1994:1 1996:3 1999:1 2002:1 2005:1 2007:1 2014:1 2021:1 2055:5 2059:1 2077:1 2088:1 2093:2 2094:2 2099:1 2120:2 2123:8 2126:7 2129:1 2130:1 2136:1 2138:1 2139:2 2141:3 2142:2 2143:1 2146:1 2152:1 2158:1 2160:1 2161:2 2163:2 2186:1 2190:1 2192:2 2193:1 2195:2 2196:4 2198:1 2202:1 2205:2 2209:1 2210:2 2212:1 2214:3 2215:2 2218:3 2222:2 2225:1 2228:2 2230:1 2232:2 2250:1 2254:1 2256:1 2278:1 2289:1 2298:1 2304:1 2315:1 2324:1 2334:1 2348:1 2351:1 2352:1 2376:1 2387:1 2406:1 2427:1 2433:1 2434:1 2458:1 2490:1 2492:1 2497:1 2509:1 2520:1 2522:1 2528:1 2546:3 2562:1 2571:1 2584:1 2592:1 2602:1 2605:2 2610:1 2618:2 2625:1 2626:1 2633:1 2655:2 2656:1 2664:1 2670:1 2676:1 2686:1 2687:1 2691:1 2695:1 2713:2 2719:1 2729:1 2742:1 2765:3 2770:1 2774:2 2775:9 2778:2 2788:1 2791:2 2792:3 2806:1 2810:1 2811:1 2826:9 2849:1 2882:1 2909:1 2929:2 2934:1 2939:1 2983:3 3032:1 3037:1 3045:1 3074:1 3108:1 3116:1 3117:1 3125:2 3135:1 3144:3 3145:1 3174:3 3191:1 3205:3 3221:1 3226:1 3227:1 3235:1 3237:1 3238:1 3266:1 3286:1 3328:1 3337:1 3339:1 3362:1 3374:2 3382:1 3389:2 3440:1 3443:4 3456:2 3458:1 3460:2 3467:1 3476:2 3488:1 3489:1 3497:1 3507:6 3524:1 3535:1 3537:1 3543:1 3544:1 3550:1 3553:3 3584:2 3592:2 3593:4 3638:6 3639:1 3662:1 3664:6 3703:1 3714:1 3715:2 3723:1 3736:1 3744:1 3751:6 3765:1 3769:2 3772:2 3795:1 3803:1 3804:1 3819:1 3820:2 3825:1 3836:1 3842:2 3847:1 3849:2 3850:1 3865:1 3878:1 3897:1 3907:1 3931:1 3949:1 3969:1 3978:1 3991:1 3998:1 4020:1 4037:1 4094:1 4097:1 4118:1 4120:1 4130:1 4160:1 4162:1 4167:2 4168:1 4170:1 4191:1 4225:2 4228:1 4245:1 4253:1 4255:1 4259:1 4289:1 4291:1 4293:1 4323:1 4324:2 4355:1 4359:1 4361:2 4372:1 4393:1 4411:1 4418:1 4434:1 4455:2 4456:1 4460:1 4463:1 4478:4 4498:1 4501:2 4503:1 4551:1 4553:1 4564:1 4579:1 4592:1 4616:1 4619:1 4659:1 4668:1 4671:1 4679:1 4688:1 4693:1 4701:15 4702:1 4710:1 4730:1 4736:1 4756:1 4795:3 4799:7 4817:3 4818:2 4820:1 4823:1 4825:1 4828:1 4833:1 4834:1 4839:1 4840:2 4841:2 4843:4 4845:3 4848:1 4849:1 4862:2 4894:1 4915:1 4926:1 4950:1 4959:1 4995:1 5004:4 5007:1 5018:1 5030:1 5038:1 5040:1 5066:3 5071:1 5086:1 5090:1 5096:1 5123:2 5141:1 5144:1 5149:1 5173:3 5186:1 5211:1 5217:1 5222:1 5227:1 5231:4 5261:1 5281:1 5288:2 5306:1 5332:1 5333:2 5338:1 5343:1 5355:2 5366:1 5373:1 5375:1 5380:1 5385:2 5391:1 5398:1 5400:1 5407:1 5414:3 5428:3 5447:1 5473:2 5485:1 5486:1 5488:1 5490:1 5505:1 5512:1 5529:1 5537:1 5540:1 5546:1 5549:2 5566:1 5570:1 5572:1 5592:2 5599:3 5629:4 5630:3 5652:2 5657:2 5664:1 5665:2 5708:1 5716:1 5745:1 5757:1 5764:2 5767:1 5781:5 5789:1 5799:1 5815:2 5829:2 5831:1 5842:1 5859:1 5863:1 5873:1 5877:2 5925:3 5928:1 5932:3 5965:1 5967:1 5976:1 5986:1 5996:3 5998:1 6006:1 6010:1 6011:1 6024:1 6031:2 6041:1 6063:2 6065:2 6068:1 6080:3 6081:1 6082:1 6088:2 6092:1 6095:1 6096:1 6099:4 6100:2 6103:2 6105:5 6106:2 6108:4 6138:1 6151:1 6169:1 6172:1 6201:4 6212:1 6217:4 6230:2 6277:1 6278:1 6290:1 6321:1 6336:1 6385:2 6403:1 6408:1 6415:1 6416:2 6424:1 6427:2 6428:1 6465:1 6466:1 6473:1 6475:1 6477:1 6483:2 6501:2 6502:1 6504:1 6509:1 6526:1 6527:1 6534:1 6553:1 6557:3 6601:1 6610:3 6612:1 6633:1 6642:3 6646:1 6652:1 6653:1 6659:1 6665:1 6669:1 6696:1 6714:1 6718:2 6731:1 6749:1 6753:1 6766:1 6775:1 6793:9 6794:1 6804:1 6813:2 6817:1 6855:2 6879:1 6887:2 6901:1 6906:1 6907:1 6939:1 6955:1 6970:1 6976:1 6993:1 6998:1 7001:1 7008:1 7025:1 7030:3 7056:3 7065:1 7066:3 7083:1 7085:1 7091:1 7092:1 7104:1 7128:1 7135:1 7140:2 7142:1 7145:1 7148:1 7162:1 7166:1 7168:1 7185:1 7193:2 7195:1 7196:1 7197:1 7208:1 7209:1 7227:1 7234:1 7258:1 7261:4 7268:10 7277:1 7284:2 7287:1 7289:4 7292:1 7315:1 7320:1 7328:32 7346:5 7347:11 7357:1 7384:1 7401:2 7404:1 7407:1 7415:1 7457:1 7467:1 7519:1 7527:1 7535:1 7538:1 7572:1 7587:3 7596:3 7601:1 7615:1 7653:1 7677:1 7691:1 7693:1 7700:1 7704:1 7709:1 7716:1 7717:1 7723:9 7733:2 7735:1 7741:1 7743:1 7762:1 7783:1 7791:27 7816:1 7835:1 7839:1 7842:1 7849:1 7855:1 7877:1 7899:1 7910:1 7943:1 7944:1 7947:1 7950:1 7964:1 7969:5 7974:1 7986:2 7988:1 7996:1 8002:3 8013:1 8015:1 8024:1 8026:3 8054:1 8059:1 8073:1 8090:1 8112:1 8113:2 8115:1 8123:1 8125:3 8128:2 8130:4 8133:1 8134:1 8136:2 8141:4 8153:1 8154:1 8157:2 8187:1 8207:1 8216:2 8217:2 8219:1 8220:1 8246:1 8248:1 8275:3 8277:1 8299:1 8302:1 8327:1 8339:1 8347:1 8368:1 8383:2 8391:2 8402:2 8412:3 8423:1 8433:1 8440:1 8441:1 8445:4 8457:1 8475:2 8480:1 8488:1 8495:1 8511:1 8514:1 8518:1 8524:2 8530:1 8533:1 8558:1 8560:2 8566:6 8569:4 8573:1 8576:1 8585:3 8598:1 8602:1 8631:1 8647:1 8656:1 8670:1 8678:1 8684:1 8707:1 8713:1 8735:1 8791:3 8794:1 8804:1 8811:1 8812:1 8813:1 8817:1 8824:1 8830:1 8874:1 8877:1 8893:1 8909:1 8925:3 8933:1 8940:1 8950:1 8956:3 8957:1 8967:1 8972:1 8974:1 8979:1 8988:4 9002:1 9017:3 9050:1 9074:1 9089:4 9102:1 9105:3 9110:6 9123:3 9141:1 9163:1 9166:1 9180:2 9182:1 9186:2 9208:11 9215:1 9223:1 9224:1 9231:1 9236:1 9249:1 9260:1 9263:1 9267:1 9272:1 9280:1 9283:1 9288:2 9293:1 9353:2 9362:1 9367:3 9368:1 9376:2 9394:1 9405:1 9412:1 9418:1 9430:2 9433:2 9446:2 9468:1 9472:1 9475:1 9481:2 9487:1 9508:2 9540:1 9551:1 9556:2 9564:1 9565:2 9595:1 9619:1 9650:2 9657:2 9676:1 9719:1 9727:1 9729:1 9732:2 9761:1 9773:3 9814:1 9832:4 9834:4 9836:1 9847:1 9856:1 9859:1 9870:1 9881:2 9901:2 9908:1 9917:1 9926:1 9931:3 9932:1 9945:1 9958:3 9965:1 9967:1 9990:2 9991:2 9999:1 10001:2 10010:3 10011:1 10013:1 10016:1 10018:1 10021:1 10026:1 10028:2 10035:1 10036:1 10060:3 10061:2 10099:3 10106:1 10113:1 10118:1 10121:1 10125:1 10130:4 10133:8 10172:1 10181:2 10196:1 10202:1 10211:1 10212:4 10224:1 10229:3 10299:1 10316:1 10328:1 10340:1 10347:1 10348:4 10349:2 10352:1 10353:1 10387:1 10420:2 10427:1 10433:3 10462:1 10467:2 10470:1 10472:1 10474:1 10495:1 10497:1 10531:6 10537:1 10540:2 10566:1 10571:1 10598:1 10601:1 10608:1 10625:1 10630:1 10632:1 10635:1 10651:3 10656:2 10687:1 10688:1 10701:1 10712:1 10716:1 10718:1 10719:1 10723:2 10732:1 10737:2 10741:1 10758:1 10763:1 10771:1 10786:2 10788:7 10797:1 10825:1 10839:2 10845:2 10848:2 10849:1 10865:1 10867:1 10869:3 10902:1 10903:1 10917:1 10926:1 10930:1 10944:1 10949:1 10950:2 10970:1 10983:7 10985:3 10988:1 11007:1 11020:2 11031:1 11032:1 11034:1 11035:1 11037:1 11040:1 11042:1 11045:1 11051:1 11052:1 11056:2 11058:1 11061:1 11071:1 11079:1 11081:1 11092:1 11100:1 11101:1 11102:5 11112:3 11118:8 11165:1 11167:1 11172:1 11173:1 11174:1 11183:1 11185:11 11224:1 11254:1 11273:1 11277:1 11289:1 11297:2 11303:4 11304:1 11316:1 11322:1 11335:1 11365:3 11384:1 11394:1 11395:1 11408:1 11410:3 11436:2 11443:1 11456:3 11457:3 11462:1 11463:1 11472:1 11474:1 11479:3 11480:1 11484:1 11499:1 11506:1 11520:1 11538:1 11552:1 11563:1 11567:1 11582:2 11598:3 11608:1 11626:1 11657:1 11663:1 11680:1 11692:1 11693:1 11723:1 11742:3 11751:1 11772:1 11802:1 11818:1 11842:1 11849:2 11868:1 11870:1 11885:1 11912:1 11918:1 11932:1 11971:1 11975:8 11979:1 11992:2 12005:1 12018:1 12035:1 12053:1 12057:11 12063:1 12085:1 12090:2 12114:1 12115:2 12141:2 12164:1 12179:1 12180:1 12186:1 12251:1 12253:1 12261:1 12263:4 12270:1 12279:1 12280:1 12283:2 12302:2 12315:1 12344:1 12356:2 12378:4 12387:1 12390:1 12391:3 12394:3 12408:3 12413:1 12414:8 12416:1 12418:1 12437:1 12439:1 12454:1 12456:2 12473:2 12474:1 12498:1 12510:1 12511:8 12516:1 12523:1 12526:14 12527:1 12530:1 12538:1 12548:1 12555:1 12597:4 12626:1 12640:1 12653:2 12661:1 12670:2 12677:1 12689:1 12696:1 12702:1 12710:2 12714:1 12728:1 12737:1 12753:1 12757:2 12759:2 12764:1 12787:1 12791:1 12803:1 12818:1 12829:1 12887:1 12889:1 12891:1 12894:5 12895:1 12897:1 12903:1 12905:2 12920:1 12927:2 12939:1 12947:1 12960:1 12968:1 12978:1 13005:10 13012:1 13013:1 13015:2 13051:1 13055:2 13056:1 13080:2 13088:1 13095:2 13096:1 13097:1 13100:3 13107:1 13122:1 13128:1 13138:1 13170:5 13172:2 13199:2 13233:1 13244:1 13245:2 13282:1 13290:1 13297:1 13300:1 13301:2 13336:2 13343:1 13372:1 13403:2 13405:1 13412:1 13420:1 13422:1 13424:1 13429:1 13430:1 13463:1 13465:1 13468:1 13498:1 13509:1 13527:1 13534:2 13535:2 13541:1 13542:2 13552:1 13554:1 13563:1 13568:1 13586:1 13587:1 13593:2 13618:1 13638:1 13641:4 13671:4 13687:1 13696:1 13705:1 13727:1 13732:1 13739:3 13747:1 13756:5 13771:1 13780:1 13793:1 13794:1 13810:1 13819:2 13834:1 13844:1 13867:1 13869:1 13879:1 13887:1 13895:1 13898:1 13910:1 13930:1 13933:1 13938:1 13943:1 13957:1 14001:1 14015:1 14037:1 14042:3 14045:1 14053:3 14066:1 14087:3 14127:1 14138:1 14156:1 14158:1 14177:4 14184:1 14185:1 14207:1 14232:1 14234:1 14238:2 14240:2 14271:1 14276:1 14278:1 14295:1 14330:1 14352:3 14363:1 14382:3 14383:2 14385:1 14387:1 14405:1 14432:1 14433:1 14434:1 14458:1 14475:1 14483:1 14500:1 14512:1 14524:1 14534:1 14544:1 14549:1 14550:30 14574:1 14580:2 14584:1 14589:1 14611:1 14621:1 14625:1 14628:1 14638:1 14639:1 14660:1 14662:1 14671:2 14674:1 14695:1 14717:1 14720:1 14755:1 14757:4 14765:1 14768:2 14769:1 14770:2 14777:1 14779:1 14785:1 14789:2 14794:1 14797:1 14799:6 14801:1 14808:1 14814:1 14847:2 14849:1 14850:1 14888:1 14889:1 14891:1 14895:1 14903:1 14911:5 14912:5 14939:1 14949:1 14968:1 15004:1 15018:1 15030:1 15037:3 15051:1 15057:1 15068:1 15074:1 15085:1 15094:1 15128:2 15130:2 15133:1 15135:1 15152:1 15157:1 15163:1 15166:6 15176:1 15184:1 15185:1 15197:1 15204:1 15206:1 15210:1 15211:1 15216:1 15217:4 15238:1 15244:2 15252:1 15253:1 15267:1 15269:1 15273:1 15274:2 15278:3 15279:1 15280:2 15282:2 15284:1 15287:3 15288:1 15290:1 15292:1 15295:4 15297:1 15300:5 15303:1 15314:1 15331:3 15351:1 15399:1 15410:1 15425:1 15427:1 15495:1 15501:1 15528:1 15530:1 15567:1 15604:2 15623:1 15647:1 15649:1 15653:1 15661:2 15664:1 15667:2 15668:1 15671:1 15680:1 15725:1 15731:2 15733:2 15734:2 15742:1 15755:2 15758:5 15767:2 15772:1 15780:1 15803:1 15804:1 15814:2 15818:1 15832:1 15836:1 15844:2 15846:1 15861:3 15868:9 15870:2 15892:1 15921:2 15924:1 15928:1 15930:2 15939:2 15941:3 15962:2 15968:1 15971:2 15992:2 15997:2 15999:2 16015:1 16020:2 16032:1 16042:1 16045:1 16050:1 16068:1 16074:1 16080:1 16081:1 16090:1 16096:2 16100:1 16102:1 16118:1 16129:1 16131:1 16161:1 16187:1 16193:2 16197:1 16200:1 16214:1 16230:2 16235:1 16241:1 16252:3 16255:1 16269:2 16283:1 16304:1 16319:1 16328:1 16341:1 16348:1 16374:1 16376:1 16378:1 16390:1 16412:1 16416:2 16466:1 16467:1 16470:2 16487:1 16489:1 16534:1 16535:2 16548:1 16556:2 16563:2 16571:1 16578:1 16580:1 16598:1 16604:1 16607:1 16610:1 16623:2 16625:1 16628:2 16655:1 16666:1 16669:2 16674:1 16692:1 16695:1 16704:6 16724:1 16740:1 16741:1 16748:3 16749:1 16769:1 16772:3 16785:1 16786:3 16788:1 16789:2 16799:1 16803:1 16807:1 16825:2 16828:2 16830:1 16839:1 16848:1 16854:1 16859:1 16862:1 16871:1 16879:4 16886:3 16888:1 16891:1 16899:1 16912:1 16914:1 16918:1 16920:1 16923:1 16940:8 16963:2 16966:2 16975:1 16994:1 17005:1 17007:1 17012:1 17030:1 17056:1 17067:1 17096:1 17100:1 17109:1 17112:1 17117:1 17142:1 17148:1 17154:1 17169:1 17176:1 17184:1 17188:2 17203:1 17212:1 17230:1 17237:1 17249:1 17277:2 17284:1 17348:3 17353:1 17374:7 17383:2 17385:1 17399:1 17444:1 17448:1 17449:1 17470:1 17477:1 17523:1 17554:1 17559:2249 17560:2 17575:3 17590:1 17601:1 17611:1 17624:1 17642:1 17670:1 17690:1 17693:1 17699:2 17704:1 17724:1 17729:1 17738:1 17750:1 17752:1 17761:5 17770:1 17773:3 17774:1 17775:2 17776:1 17788:2 17805:1 17842:2 17858:1 17859:1 17873:1 17893:1 17899:1 17917:1 17940:2 17944:1 17955:1 17964:3 18020:1 18024:2 18039:1 18071:2 18079:1 18092:1 18100:1 18142:1 18166:1 18169:1 18208:1 18209:2 18223:3 18239:1 18245:4 18265:2 18274:2 18293:1 18297:1 18303:1 18329:1 18330:5 18338:1 18348:3 18350:1 18351:1 18383:1 18394:8 18402:1 18423:1 18452:1 18465:1 18480:1 18483:1 18516:1 18518:1 18519:1 18544:1 18547:2 18555:1 18578:1 18579:1 18605:1 18613:2 18629:1 18635:1 18639:1 18641:1 18649:1 18657:2 18658:3 18669:4 18673:1 18678:1 18694:2 18695:1 18702:3 18719:1 18728:1 18746:1 18754:2 18773:1 18777:1 18782:1 18801:1 18820:1 18822:1 18839:1 18840:1 18846:2 18855:1 18879:1 18884:1 18890:1 18898:10 18904:3 18908:1 18909:1 18933:1 18939:1 18946:1 18948:1 18956:1 18959:1 18965:1 18968:1 18973:2 18977:2 18991:2 18994:5 19005:2 19011:2 19027:1 19030:1 19044:2 19046:1 19049:1 19061:7 19065:3 19069:1 19078:1 19087:1 19098:1 19099:1 19107:1 19115:1 19121:1 19147:1 19168:1 19183:1 19207:1 19209:1 19254:1 19285:3 19302:1 19308:1 19327:1 19330:6 19333:5 19339:1 19340:2 19377:1 19378:1 19394:1 19403:1 19409:1 19431:1 19440:2 19446:1 19470:1 19479:1 19496:1 19506:1 19516:1 19518:1 19522:1 19533:1 19535:1 19538:1 19551:1 19555:1 19561:1 19569:1 19589:1 19607:1 19620:1 19626:4 19642:1 19646:1 19658:1 19662:1 19664:2 19668:2 19679:1 19691:1 19718:1 19728:3 19736:1 19781:10 19788:2 19792:2 19797:1 19807:4 19808:2 19818:1 19830:1 19834:1 19844:1 19856:1 19859:1 19864:1 19866:1 19869:1 19875:1 19876:1 19893:1 19900:1 19914:1 19922:2 19965:1 19970:1 19971:1 20009:1 20010:1 20026:5 20049:1 20051:2 20065:1 20070:3 20078:1 20084:2 20089:1 20124:1 20152:1 20161:1 20163:1 20167:1 20168:1 20176:1 20177:1 20183:1 20191:1 20192:1 20193:4 20195:1 20196:1 20199:1 20210:1 20211:1 20219:1 20241:1 20262:1 20270:3 20274:1 20285:1 20302:1 20315:1 20322:2 20341:2 20346:1 20348:1 20361:2 20363:2 20366:2 20408:1 20414:2 20416:2 20425:3 20441:1 20442:1 20463:1 20466:2 20470:1 20472:1 20473:1 20495:1 20520:1 20523:1 20524:1 20559:1 20573:1 20576:2 20585:1 20589:1 20603:3 20604:3 20605:3 20611:1 20613:1 20615:1 20634:1 20636:3 20638:2 20640:1 20646:2 20647:1 20660:1 20665:1 20676:2 20693:1 20715:2 20727:2 20749:1 20751:3 20756:1 20761:1 20772:3 20775:2 20787:3 20802:1 20815:1 20831:1 20838:1 20846:2 20869:1 20878:1 20884:1 20902:2 20913:2 20919:1 20920:5 20924:1 20926:1 20946:1 20949:1 20962:1 20968:1 20972:2 20978:2 20981:1 20982:1 20985:1 20986:2 21021:1 21038:1 21049:1 21050:1 21065:1 21074:1 21078:1 21091:2 21100:1 21112:2 21128:1 21144:1 21158:3 21160:1 21162:2 21164:1 21167:3 21169:1 21189:1 21202:1 21211:1 21239:2 21243:1 21270:1 21284:1 21285:1 21304:1 21307:1 21332:3 21336:1 21352:1 21356:1 21376:1 21388:2 21393:2 21394:1 21396:1 21399:1 21401:1 21409:1 21415:1 21426:3 21433:1 21438:2 21444:3 21466:1 21487:2 21490:2 21494:1 21500:1 21518:1 21520:1 21536:1 21539:1 21549:1 21568:3 21615:4 21626:1 21640:3 21675:2 21682:1 21687:1 21696:1 21701:1 21706:1 21711:1 21720:1 21722:1 21728:1 21743:1 21777:1 21813:1 21821:1 21836:1 21850:2 21865:3 21867:1 21871:4 21875:1 21877:1 21883:2 21896:1 21897:1 21913:1 21914:1 21929:1 21931:1 21942:1 21944:3 21946:1 21951:1 21958:3 21961:3 21972:1 21974:1 21998:1 22000:1 22010:1 22013:1 22020:1 22021:2 22039:1 22040:2 22057:1 22060:1 22073:1 22082:1 22084:1 22103:6 22108:1 22113:3 22127:1 22136:1 22165:3 22189:1 22191:2 22198:1 22282:2 22291:1 22304:1 22305:2 22322:3 22325:1 22387:2 22401:1 22410:1 22416:3 22460:1 22500:1 22502:8 22562:1 22573:2 22598:2 22600:1 22603:1 22608:1 22617:1 22624:1 22625:1 22634:2 22657:1 22662:1 22672:3 22678:1 22687:2 22688:7 22691:1 22693:1 22705:1 22710:1 22711:1 22716:1 22729:1 22732:2 22744:1 22754:1 22757:1 22772:1 22803:1 22811:1 22817:1 22849:1 22856:1 22857:1 22858:1 22861:1 22862:1 22863:1 22864:1 22870:1 22874:1 22909:2 22918:1 22919:3 22921:1 22922:3 22925:1 22927:4 22932:1 22933:1 22939:1 22953:1 22958:1 22960:4 22968:5 22969:1 22984:1 23006:2 23007:1 23026:1 23035:1 23039:1 23042:1 23061:1 23068:2 23076:1 23081:2 23090:2 23109:1 23112:2 23150:1 23164:1 23173:1 23176:1 23204:1 23211:2 23238:1 23248:1 23255:1 23262:1 23271:1 23274:2 23282:1 23309:3 23313:1 23328:6 23360:1 23369:1 23371:1 23381:1 23384:6 23393:1 23396:1 23397:1 23399:1 23407:1 23413:1 23436:2 23437:1 23477:1 23514:1 23535:1 23554:1 23569:1 23579:1 23596:3 23598:7 23599:1 23626:3 23635:1 23637:1 23647:2 23651:1 23660:2 23670:1 23675:1 23701:1 23705:1 23708:1 23729:1 23734:2 23746:1 23764:1 23795:1 23817:1 23818:1 23821:1 23826:1 23827:1 23828:1 23854:1 23856:1 23859:1 23861:1 23878:1 23891:1 23932:1 23934:1 23946:1 23948:3 23949:1 23963:1 23964:1 23994:1 24001:1 24014:1 24034:1 24092:1 24104:1 24111:1 24121:1 24130:1 24142:5 24143:1 24144:6 24148:1 24198:1 24233:2 24247:1 24248:1 24262:4 24264:1 24285:1 24300:1 24311:1 24313:1 24355:1 24362:1 24364:1 24365:2 24371:1 24382:1 24389:1 24394:1 24408:1 24420:3 24436:1 24437:1 24440:1 24444:3 24448:1 24469:1 24477:1 24494:1 24498:1 24500:4 24509:1 24525:1 24548:1 24558:1 24571:6 24572:1 24587:3 24623:1 24642:3 24650:1 24654:2 24665:1 24671:2 24675:1 24702:1 24721:1 24726:1 24730:1 24738:1 24743:1 24750:1 24757:1 24776:1 24795:2 24796:2 24800:1 24812:1 24816:1 24819:1 24830:1 24832:2 24836:3 24837:1 24855:2 24882:2 24888:1 24890:1 24893:1 24897:1 24909:4 24941:2 24947:2 24958:1 24973:1 24991:1 25010:1 25021:1 25033:1 25034:1 25045:1 25082:1 25084:2 25095:1 25137:1 25139:1 25161:1 25168:1 25228:1 25233:1 25241:1 25264:1 25270:2 25271:1 25280:1 25308:1 25349:1 25353:1 25357:1 25362:2 25367:1 25368:3 25384:1 25385:2 25389:1 25393:1 25404:1 25407:1 25417:1 25419:1 25430:3 25440:1 25447:1 25448:1 25461:4 25466:1 25474:1 25513:1 25524:1 25527:6 25531:2 25533:1 25548:2 25551:1 25557:2 25595:1 25614:4 25623:2 25624:2 25631:1 25634:1 25635:3 25637:1 25638:1 25646:1 25654:1 25664:1 25675:1 25680:2 25684:1 25694:2 25695:2 25696:1 25699:1 25702:1 25703:1 25706:1 25712:1 25719:1 25723:1 25728:1 25754:2 25761:1 25782:2 25783:1 25786:1 25805:1 25807:3 25809:1 25817:1 25835:1 25837:1 25845:1 25849:1 25889:1 25893:1 25908:1 25909:1 25912:2 25915:1 25928:4 25946:1 25953:1 25980:2 25996:1 25998:6 26017:2 26023:1 26045:1 26065:1 26105:2 26120:1 26146:1 26165:1 26178:3 26221:1 26250:3 26258:2 26287:1 26293:1 26312:4 26315:1 26341:1 26366:1 26372:1 26378:1 26382:1 26385:2 26392:19 26394:1 26396:1 26411:1 26423:1 26430:12 26434:1 26438:1 26441:1 26443:2 26465:1 26489:2 26512:1 26518:1 26522:3 26529:3 26560:9 26561:1 26568:1 26590:1 26605:1 26632:2 26634:1 26641:1 26643:1 26667:2 26687:1 26688:2 26693:1 26705:2 26726:1 26743:1 26764:1 26770:1 26785:1 26808:4 26810:3 26838:1 26852:1 26863:1 26864:1 26869:1 26873:1 26875:2 26881:1 26884:1 26890:1 26901:1 26910:1 26984:1 26997:4 27008:1 27010:1 27011:1 27015:10 27032:1 27037:1 27042:1 27048:1 27052:1 27054:3 27059:1 27063:1 27087:1 27104:1 27112:2 27121:1 27167:1 27176:1 27188:1 27194:1 27204:1 27211:1 27219:1 27227:3 27233:2 27244:1 27277:1 27340:2 27379:1 27393:1 27394:3 27403:1 27406:1 27410:1 27420:1 27433:1 27439:2 27442:1 27466:2 27469:1 27475:2 27479:1 27493:1 27502:4 27509:1 27511:1 27512:2 27528:1 27548:1 27549:1 27561:1 27568:1 27572:1 27575:1 27578:3 27580:1 27585:2 27587:4 27592:1 27596:2 27600:1 27602:1 27612:1 27640:1 27643:3 27647:1 27653:1 27654:1 27671:1 27676:1
20 10:1 17:1 21:1 22:1 26:2 29:1 30:1 40:1 57:1 68:1 72:1 81:7 86:1 96:1 109:1 114:1 115:1 145:1 155:1 168:1 185:1 191:1 207:1 241:3 245:2 246:1 263:3 266:1 278:1 298:1 317:1 323:2 324:1 344:1 366:1 368:2 382:1 411:1 425:1 435:1 441:3 471:1 479:2 500:1 511:1 526:1 529:1 548:1 549:3 556:1 557:1 570:1 579:2 592:2 595:1 615:2 617:1 620:3 666:1 692:1 716:1 746:1 748:1 784:1 808:1 848:2 853:2 856:1 860:1 865:2 867:1 877:1 882:1 883:4 885:1 894:1 903:1 908:1 915:3 929:1 933:1 935:3 937:1 938:1 939:5 941:4 948:1 956:1 959:1 966:4 980:1 991:3 992:3 996:2 1000:1 1009:1 1018:1 1040:1 1041:2 1045:1 1059:1 1079:1 1083:1 1097:1 1102:5 1110:4 1136:1 1139:2 1144:1 1146:1 1160:1 1161:2 1163:1 1180:1 1186:1 1201:1 1202:1 1211:1 1215:1 1217:1 1219:1 1235:1 1244:1 1252:1 1258:1 1271:1 1285:1 1328:1 1344:2 1356:2 1369:1 1371:1 1383:1 1393:1 1395:1 1397:4 1408:3 1418:4 1430:1 1437:1 1440:1 1441:1 1446:1 1460:3 1482:14 1484:2 1486:7 1490:1 1496:3 1501:1 1505:1 1517:1 1518:2 1522:1 1527:1 1541:1 1543:1 1550:9 1555:1 1568:1 1569:1 1589:1 1593:1 1607:1 1608:1 1611:1 1635:2 1655:1 1675:1 1703:5 1709:2 1726:1 1742:1 1754:1 1760:2 1784:1 1791:1 1799:1 1814:1 1830:2 1839:3 1843:2 1851:1 1863:2 1868:1 1882:1 1883:1 1887:1 1922:1 1924:2 1942:1 1954:4 1974:1 1982:1 1994:1 1996:3 1999:1 2002:1 2005:1 2007:1 2014:1 2021:1 2055:6 2059:1 2077:1 2088:1 2093:2 2094:2 2099:1 2120:2 2123:8 2126:7 2129:1 2130:1 2136:1 2138:1 2139:3 2141:3 2142:2 2143:1 2146:1 2152:1 2158:1 2160:1 2161:2 2163:3 2186:1 2190:1 2192:2 2193:1 2195:2 2196:4 2198:1 2202:1 2205:2 2209:1 2210:3 2212:1 2214:3 2215:3 2218:3 2222:2 2225:2 2228:2 2230:1 2232:2 2250:1 2254:1 2256:1 2278:1 2280:1 2289:1 2298:1 2304:1 2315:1 2324:1 2334:1 2348:1 2351:1 2352:1 2376:1 2387:1 2406:1 2427:1 2433:1 2434:1 2458:1 2490:1 2492:1 2497:1 2509:1 2520:1 2522:1 2528:1 2546:3 2562:1 2571:1 2584:1 2592:1 2602:1 2605:2 2610:1 2618:2 2625:1 2626:1 2633:1 2640:1 2655:2 2656:1 2664:1 2670:1 2676:1 2686:1 2687:1 2691:1 2695:1 2713:2 2719:1 2729:1 2742:1 2765:4 2770:1 2774:2 2775:10 2778:2 2788:1 2791:2 2792:3 2806:1 2810:1 2811:1 2826:9 2849:1 2882:1 2909:1 2929:2 2934:1 2939:1 2983:3 2988:1 3032:1 3037:1 3045:1 3074:1 3108:1 3116:1 3117:1 3125:3 3135:1 3144:3 3145:1 3174:3 3191:1 3205:3 3221:1 3226:1 3227:1 3235:1 3237:1 3238:1 3266:1 3286:1 3328:1 3337:1 3339:1 3362:1 3374:2 3382:1 3389:2 3440:1 3443:5 3456:2 3458:1 3460:2 3467:1 3476:2 3488:1 3489:1 3497:1 3507:6 3524:1 3535:1 3537:1 3543:1 3544:1 3550:1 3553:3 3584:2 3592:2 3593:4 3638:6 3639:1 3662:1 3664:6 3703:1 3714:1 3715:2 3723:1 3736:1 3744:1 3751:6 3765:1 3769:2 3772:2 3795:1 3803:1 3804:1 3819:1 3820:2 3825:1 3836:1 3842:2 3847:1 3849:2 3850:1 3865:1 3878:1 3897:1 3907:1 3931:1 3949:1 3969:1 3978:1 3991:1 3998:1 4003:1 4020:1 4037:1 4094:1 4097:1 4118:1 4120:1 4130:1 4160:1 4162:1 4167:2 4168:1 4170:1 4191:1 4225:2 4228:1 4245:1 4253:1 4255:1 4259:1 4289:1 4291:1 4293:1 4323:1 4324:2 4355:1 4359:1 4361:2 4372:1 4393:2 4411:2 4418:1 4434:1 4455:2 4456:1 4460:1 4463:1 4478:4 4498:1 4501:2 4503:1 4551:1 4553:1 4564:1 4579:1 4592:1 4616:1 4619:1 4659:1 4668:1 4671:1 4679:1 4688:1 4693:1 4701:15 4702:1 4710:1 4730:1 4736:1 4756:1 4795:3 4799:7 4817:3 4818:2 4820:1 4823:1 4825:1 4828:2 4833:1 4834:1 4839:1 4840:3 4841:2 4843:4 4845:3 4848:1 4849:1 4862:2 4894:1 4915:1 4926:1 4950:1 4959:1 4995:1 5004:4 5007:1 5018:1 5030:1 5038:1 5040:1 5066:3 5071:1 5086:1 5090:1 5096:1 5123:2 5141:1 5144:1 5149:1 5173:3 5186:1 5211:1 5215:1 5217:1 5222:1 5227:1 5231:4 5261:1 5281:1 5288:2 5306:1 5332:1 5333:2 5338:1 5343:1 5355:2 5366:1 5373:1 5375:1 5380:1 5385:2 5391:1 5398:1 5400:1 5407:1 5414:3 5428:3 5447:1 5473:2 5485:1 5486:2 5488:1 5490:1 5505:1 5512:1 5529:1 5537:1 5540:1 5546:1 5549:2 5566:1 5570:1 5572:1 5592:2 5599:3 5629:4 5630:3 5652:2 5657:2 5664:1 5665:2 5708:1 5716:1 5745:1 5757:1 5764:2 5767:1 5781:6 5789:1 5799:1 5815:2 5829:2 5831:1 5842:1 5859:1 5863:1 5873:1 5877:2 5925:3 5928:1 5932:3 5965:1 5967:1 5976:1 5986:1 5996:3 5998:1 6006:1 6010:1 6011:1 6024:1 6031:2 6041:1 6063:2 6065:2 6068:1 6080:3 6081:1 6082:1 6088:2 6092:1 6095:1 6096:1 6099:4 6100:2 6103:2 6105:5 6106:2 6108:4 6138:1 6151:1 6169:1 6172:1 6201:4 6212:1 6217:4 6230:2 6277:1 6278:1 6290:1 6321:1 6328:1 6336:2 6385:2 6403:1 6408:1 6415:1 6416:2 6424:1 6427:2 6428:1 6465:1 6466:1 6473:1 6475:1 6477:1 6483:2 6501:2 6502:1 6504:1 6509:1 6526:1 6527:1 6534:1 6553:1 6557:3 6568:1 6601:1 6610:3 6612:1 6633:1 6642:3 6646:1 6652:1 6653:1 6659:1 6665:1 6669:1 6696:1 6714:1 6718:2 6731:1 6749:1 6753:1 6766:1 6775:1 6793:9 6794:1 6804:1 6813:2 6817:1 6855:2 6879:1 6887:2 6901:1 6906:1 6907:1 6939:1 6955:1 6970:1 6976:1 6993:1 6998:1 7001:1 7008:1 7025:1 7030:3 7056:4 7065:1 7066:3 7083:1 7085:2 7091:1 7092:1 7104:1 7128:1 7135:1 7140:2 7142:1 7145:1 7148:1 7162:1 7166:1 7168:1 7185:1 7193:2 7195:1 7196:1 7197:1 7205:1 7208:1 7209:1 7227:1 7234:1 7258:1 7261:4 7268:11 7277:1 7284:2 7287:1 7289:4 7292:1 7315:1 7320:1 7328:34 7346:6 7347:11 7357:1 7384:1 7401:2 7404:1 7407:1 7415:1 7457:1 7467:1 7519:1 7527:1 7535:1 7538:1 7572:1 7587:3 7596:3 7601:1 7615:1 7653:1 7677:1 7691:1 7693:1 7700:1 7704:2 7709:1 7716:1 7717:1 7723:9 7733:2 7735:1 7741:1 7743:1 7762:1 7783:1 7791:27 7816:1 7835:1 7839:1 7842:1 7849:1 7855:1 7877:1 7899:1 7910:1 7943:1 7944:1 7947:1 7950:1 7964:1 7969:5 7974:1 7986:2 7988:1 7996:1 8002:3 8013:1 8015:1 8024:1 8026:3 8054:1 8059:1 8073:1 8090:1 8112:1 8113:2 8115:1 8123:1 8125:3 8128:2 8130:4 8133:1 8134:1 8136:2 8141:4 8153:1 8154:1 8157:2 8187:1 8207:1 8216:2 8217:2 8219:1 8220:1 8246:1 8248:1 8275:3 8277:1 8299:1 8302:1 8327:1 8339:1 8347:1 8368:1 8371:1 8383:2 8391:2 8402:2 8412:3 8423:1 8433:1 8440:1 8441:1 8445:4 8457:1 8475:2 8480:1 8488:1 8495:1 8511:1 8514:1 8518:1 8524:2 8530:1 8533:1 8558:1 8560:2 8566:6 8569:4 8573:1 8576:1 8585:3 8598:1 8602:1 8631:1 8647:1 8656:1 8670:1 8678:1 8684:1 8707:1 8713:1 8735:1 8791:3 8794:1 8804:1 8811:1 8812:1 8813:1 8817:1 8824:1 8830:1 8874:1 8877:1 8893:1 8909:1 8925:3 8933:1 8940:1 8950:1 8956:3 8957:1 8967:1 8972:1 8974:1 8979:1 8988:4 9002:1 9017:3 9050:1 9074:1 9089:4 9102:1 9105:3 9110:6 9123:3 9141:1 9151:1 9163:2 9166:1 9180:2 9182:1 9186:2 9208:11 9215:1 9223:1 9224:1 9231:1 9236:1 9249:1 9260:1 9263:1 9267:2 9272:1 9280:1 9283:1 9288:2 9293:1 9353:2 9362:1 9367:3 9368:1 9376:2 9394:1 9405:1 9412:1 9418:1 9430:2 9433:2 9446:2 9468:1 9472:1 9475:1 9481:2 9487:1 9508:2 9540:1 9551:1 9556:2 9564:1 9565:2 9595:1 9619:1 9650:2 9657:2 9671:1 9676:1 9719:1 9727:1 9729:1 9732:2 9761:1 9773:3 9784:1 9814:1 9832:4 9834:5 9836:1 9847:1 9856:1 9859:1 9870:1 9876:1 9881:2 9901:2 9908:1 9917:1 9926:1 9931:3 9932:1 9945:1 9958:3 9965:1 9967:1 9990:2 9991:2 9999:1 10001:2 10010:3 10011:1 10013:1 10016:1 10018:1 10021:1 10026:1 10028:2 10035:1 10036:1 10060:3 10061:2 10099:3 10106:1 10113:1 10118:1 10121:1 10125:2 10130:4 10133:8 10172:1 10181:2 10196:1 10202:1 10211:1 10212:4 10224:1 10229:3 10299:1 10316:1 10328:1 10340:1 10347:1 10348:4 10349:2 10352:1 10353:1 10387:1 10420:2 10427:1 10433:3 10462:1 10467:3 10470:1 10472:1 10474:1 10495:1 10497:1 10531:6 10537:1 10540:2 10566:1 10571:1 10598:1 10601:1 10608:1 10625:1 10630:1 10632:1 10635:1 10651:3 10656:2 10687:1 10688:1 10701:1 10712:1 10716:1 10718:1 10719:1 10723:2 10732:1 10737:2 10741:1 10758:1 10763:1 10771:1 10786:2 10788:7 10797:1 10801:1 10825:1 10839:2 10845:2 10848:2 10849:1 10865:1 10867:1 10869:3 10902:1 10903:1 10917:1 10926:1 10930:1 10944:1 10949:1 10950:2 10951:1 10970:1 10983:7 10985:3 10988:1 11007:1 11020:2 11031:1 11032:1 11034:1 11035:1 11037:1 11040:1 11042:1 11045:1 11051:1 11052:1 11056:2 11058:1 11061:1 11071:1 11079:1 11081:1 11092:1 11100:1 11101:1 11102:5 11112:3 11118:8 11165:1 11167:1 11172:1 11173:1 11174:1 11183:1 11185:11 11224:1 11254:1 11273:1 11277:1 11289:1 11297:2 11303:4 11304:1 11316:1 11322:1 11335:1 11365:3 11384:1 11394:1 11395:1 11408:1 11410:3 11436:2 11443:1 11456:3 11457:3 11462:1 11463:1 11472:1 11474:1 11479:3 11480:1 11484:1 11499:1 11506:1 11520:1 11538:1 11552:1 11563:1 11567:1 11582:2 11598:3 11608:1 11626:1 11657:1 11663:1 11680:1 11692:1 11693:1 11723:1 11742:3 11751:1 11772:1 11802:1 11818:1 11842:1 11849:2 11868:1 11870:1 11885:1 11912:1 11918:1 11932:1 11971:1 11975:9 11979:1 11992:2 12005:1 12018:1 12035:1 12053:1 12057:11 12063:1 12085:1 12090:2 12114:1 12115:2 12141:2 12164:1 12179:1 12180:1 12186:1 12251:1 12253:1 12261:1 12263:4 12270:1 12279:1 12280:1 12283:2 12302:2 12315:1 12344:1 12356:2 12378:4 12387:1 12390:1 12391:3 12394:3 12408:3 12413:1 12414:8 12416:1 12418:1 12437:1 12439:1 12454:1 12456:2 12473:2 12474:1 12498:1 12510:1 12511:8 12516:1 12523:1 12526:14 12527:1 12530:1 12538:1 12548:1 12555:1 12597:4 12626:1 12640:1 12653:2 12661:1 12670:2 12677:1 12689:1 12696:1 12702:1 12710:2 12714:1 12728:1 12737:1 12753:1 12757:2 12759:2 12764:1 12787:1 12791:1 12803:1 12818:1 12829:1 12887:1 12889:1 12891:1 12894:5 12895:1 12897:1 12903:1 12905:2 12920:1 12927:3 12939:1 12947:1 12960:1 12968:1 12978:1 13005:10 13012:1 13013:1 13015:2 13051:1 13055:2 13056:2 13080:2 13088:1 13095:2 13096:1 13097:1 13100:3 13107:1 13122:1 13128:1 13138:1 13170:5 13172:2 13199:2 13233:1 13244:1 13245:2 13282:1 13290:1 13297:1 13300:1 13301:2 13336:2 13343:1 13372:1 13403:2 13405:1 13412:1 13420:1 13422:1 13424:1 13429:1 13430:1 13463:1 13465:1 13468:1 13498:1 13509:1 13527:1 13534:2 13535:2 13541:1 13542:2 13552:1 13554:1 13559:1 13563:1 13568:1 13586:1 13587:1 13593:2 13618:1 13638:1 13641:4 13671:4 13687:1 13696:1 13705:1 13727:1 13732:1 13739:3 13747:1 13756:5 13771:1 13780:1 13793:1 13794:1 13810:1 13819:2 13834:1 13844:1 13867:1 13869:1 13879:1 13887:1 13895:1 13898:1 13910:1 13930:1 13933:1 13938:1 13943:1 13957:1 14001:1 14015:1 14037:1 14042:3 14045:1 14053:3 14066:1 14087:3 14127:1 14138:1 14156:1 14158:1 14177:4 14184:1 14185:1 14207:1 14232:1 14234:1 14238:2 14240:2 14271:1 14276:1 14278:1 14295:1 14330:1 14352:3 14363:1 14382:3 14383:2 14385:1 14387:1 14405:1 14432:1 14433:1 14434:1 14458:1 14475:1 14483:1 14500:1 14512:1 14524:1 14534:1 14538:1 14544:1 14549:1 14550:32 14574:1 14580:2 14584:1 14589:1 14611:1 14621:1 14625:1 14628:1 14638:1 14639:1 14660:1 14662:1 14671:2 14674:1 14695:1 14717:1 14720:1 14755:1 14757:4 14765:1 14768:2 14769:1 14770:2 14777:1 14779:1 14785:1 14789:2 14794:1 14797:1 14799:6 14801:1 14808:2 14814:1 14847:2 14849:1 14850:1 14888:1 14889:1 14891:1 14895:1 14903:1 14911:5 14912:5 14939:1 14949:1 14968:1 15004:1 15018:1 15030:1 15037:3 15051:1 15057:1 15068:1 15074:1 15085:1 15094:1 15128:2 15130:3 15133:1 15135:1 15152:1 15157:1 15163:1 15166:6 15176:1 15184:1 15185:1 15197:1 15204:1 15206:1 15210:1 15211:1 15216:1 15217:4 15238:1 15244:2 15252:1 15253:1 15267:1 15269:1 15273:1 15274:2 15278:3 15279:1 15280:2 15282:2 15284:1 15287:3 15288:1 15290:1 15292:1 15295:4 15297:1 15300:5 15303:1 15314:1 15331:3 15351:1 15399:1 15410:1 15425:1 15427:1 15495:1 15501:1 15528:1 15530:1 15567:1 15604:2 15623:1 15647:1 15649:1 15653:1 15661:2 15664:1 15667:2 15668:1 15671:1 15680:1 15725:1 15731:2 15733:2 15734:2 15742:1 15755:2 15758:5 15767:2 15772:1 15780:1 15803:1 15804:1 15814:2 15818:1 15832:1 15836:1 15844:2 15846:1 15861:3 15868:9 15870:2 15892:1 15921:2 15924:1 15928:2 15930:2 15939:2 15941:3 15962:2 15968:1 15971:2 15992:2 15997:2 15999:2 16015:1 16020:2 16032:1 16042:1 16045:1 16050:1 16068:1 16074:1 16080:1 16081:1 16090:1 16096:2 16100:1 16102:1 16118:1 16129:1 16131:1 16161:2 16187:1 16193:2 16197:2 16200:1 16214:1 16230:2 16235:1 16241:1 16252:3 16255:1 16269:2 16283:1 16304:1 16319:1 16328:1 16341:1 16348:1 16374:1 16376:1 16378:1 16390:1 16412:1 16416:2 16466:1 16467:1 16470:2 16487:1 16489:1 16534:2 16535:2 16548:1 16556:2 16563:2 16571:1 16578:1 16580:1 16598:1 16604:1 16607:1 16610:1 16623:2 16625:1 16628:2 16655:1 16666:1 16669:2 16674:1 16692:1 16695:1 16704:6 16724:1 16740:1 16741:1 16748:3 16749:1 16769:2 16772:3 16785:1 16786:3 16788:1 16789:3 16799:1 16803:1 16807:1 16825:2 16828:2 16830:1 16839:1 16848:1 16854:1 16859:1 16862:1 16871:1 16879:4 16886:3 16888:2 16891:1 16899:1 16912:1 16914:1 16918:1 16920:1 16923:1 16940:8 16963:2 16966:2 16975:1 16994:1 17005:1 17007:1 17012:1 17030:1 17056:1 17067:1 17096:1 17100:1 17109:1 17112:1 17117:1 17130:1 17142:1 17148:1 17154:1 17169:1 17176:1 17184:1 17188:2 17203:1 17212:1 17230:1 17237:1 17249:1 17277:2 17284:1 17348:3 17353:1 17374:7 17383:2 17385:1 17399:1 17440:1 17444:1 17448:1 17449:1 17470:1 17477:1 17523:1 17554:1 17559:2293 17560:2 17575:3 17590:1 17601:1 17611:1 17624:1 17642:1 17670:1 17690:1 17693:1 17699:2 17704:1 17724:1 17729:1 17738:1 17750:1 17752:1 17761:5 17770:2 17773:3 17774:1 17775:2 17776:1 17788:2 17805:1 17842:2 17858:1 17859:1 17873:1 17893:1 17899:1 17917:1 17940:2 17944:1 17955:1 17964:3 18020:1 18024:2 18039:1 18071:2 18079:1 18092:1 18100:2 18142:1 18166:1 18169:1 18208:1 18209:2 18223:3 18239:1 18245:5 18265:2 18274:3 18293:1 18297:1 18303:1 18329:1 18330:5 18338:1 18348:3 18350:1 18351:1 18383:1 18394:8 18402:1 18423:1 18452:1 18465:1 18480:1 18483:1 18516:1 18518:1 18519:1 18544:1 18547:2 18555:1 18578:1 18579:1 18605:1 18613:2 18629:1 18635:1 18639:1 18641:1 18649:1 18657:2 18658:3 18669:4 18673:1 18678:1 18694:2 18695:1 18702:3 18719:1 18728:1 18746:1 18754:2 18773:1 18777:1 18782:1 18801:1 18820:1 18822:1 18839:1 18840:1 18846:2 18855:1 18879:1 18884:1 18890:1 18898:12 18904:3 18908:1 18909:1 18933:1 18939:1 18946:1 18948:1 18956:1 18959:1 18965:1 18968:1 18973:2 18977:2 18991:2 18994:5 19005:2 19011:2 19027:1 19030:1 19044:2 19046:1 19049:1 19061:7 19065:3 19069:1 19078:1 19087:1 19098:1 19099:1 19107:1 19115:1 19121:1 19147:1 19168:1 19183:1 19207:1 19209:1 19254:1 19285:3 19291:1 19302:1 19308:1 19327:1 19330:6 19333:5 19339:1 19340:2 19341:1 19377:1 19378:1 19394:1 19403:1 19409:1 19431:1 19440:2 19446:1 19470:1 19479:1 19496:1 19506:1 19516:1 19518:1 19522:1 19533:1 19535:1 19538:1 19551:1 19555:1 19561:1 19569:1 19589:1 19607:1 19620:1 19626:4 19642:1 19646:1 19658:1 19662:1 19664:2 19668:2 19679:1 19691:1 19718:1 19728:3 19736:1 19781:10 19788:2 19792:2 19797:1 19807:4 19808:2 19818:1 19830:1 19834:1 19844:1 19856:1 19859:1 19864:1 19866:1 19869:1 19875:1 19876:1 19893:1 19900:1 19914:2 19922:2 19965:1 19970:1 19971:1 20009:1 20010:1 20026:5 20049:1 20051:2 20065:1 20070:3 20078:1 20084:2 20089:1 20124:1 20152:1 20161:1 20163:1 20167:1 20168:1 20176:1 20177:1 20183:1 20191:1 20192:1 20193:4 20195:1 20196:1 20199:1 20210:1 20211:1 20219:1 20241:1 20262:1 20270:3 20274:1 20285:1 20302:1 20315:1 20322:2 20341:2 20346:1 20348:1 20361:2 20363:2 20366:2 20408:1 20414:2 20416:2 20425:3 20441:1 20442:1 20463:1 20466:2 20470:1 20472:1 20473:2 20495:1 20520:1 20523:1 20524:1 20559:1 20573:1 20576:2 20585:1 20589:1 20603:4 20604:3 20605:3 20611:1 20613:1 20615:1 20634:1 20636:3 20638:2 20640:1 20646:2 20647:1 20660:1 20665:1 20676:2 20693:1 20715:2 20727:2 20749:1 20751:3 20756:1 20761:1 20772:3 20775:2 20787:3 20802:1 20815:1 20831:1 20838:1 20846:2 20869:1 20878:1 20884:1 20886:1 20902:2 20913:2 20919:1 20920:5 20924:1 20926:1 20946:1 20949:1 20962:1 20968:1 20972:3 20978:2 20981:1 20982:1 20985:1 20986:2 21021:1 21038:1 21049:1 21050:1 21065:1 21074:1 21078:1 21091:2 21100:1 21112:2 21128:1 21144:1 21158:3 21160:1 21162:2 21164:1 21167:3 21169:1 21189:1 21202:1 21211:1 21239:2 21243:1 21270:1 21284:1 21285:1 21304:1 21307:1 21321:1 21332:3 21336:1 21352:1 21356:1 21376:1 21388:2 21390:1 21393:2 21394:1 21396:1 21399:1 21401:1 21409:1 21415:1 21426:3 21433:1 21438:2 21444:3 21462:1 21466:1 21487:2 21490:2 21494:1 21500:1 21518:1 21520:1 21536:1 21539:1 21549:1 21568:3 21615:4 21626:1 21640:3 21675:2 21682:1 21687:1 21696:1 21700:1 21701:1 21706:1 21711:2 21720:1 21722:1 21728:1 21743:1 21777:1 21813:1 21821:1 21836:1 21850:2 21865:3 21867:1 21871:4 21875:1 21877:1 21883:2 21896:1 21897:1 21913:1 21914:1 21929:1 21931:1 21942:1 21944:3 21946:1 21951:1 21958:3 21961:3 21972:1 21974:1 21998:1 22000:1 22010:1 22013:1 22020:1 22021:2 22039:1 22040:2 22057:1 22060:1 22073:1 22082:1 22084:1 22103:6 22108:1 22113:3 22127:1 22136:1 22165:3 22189:1 22191:2 22198:1 22282:2 22291:1 22304:1 22305:2 22322:3 22325:1 22387:2 22401:1 22410:1 22416:3 22460:1 22500:1 22502:8 22562:1 22573:2 22598:2 22600:1 22603:1 22608:1 22617:1 22624:1 22625:1 22634:2 22657:1 22662:1 22672:3 22678:1 22687:2 22688:7 22691:1 22693:1 22705:1 22710:1 22711:1 22716:1 22729:1 22732:2 22744:1 22754:1 22757:1 22772:1 22803:1 22811:1 22817:1 22849:1 22856:1 22857:1 22858:1 22861:1 22862:2 22863:1 22864:1 22870:1 22874:1 22909:2 22918:1 22919:3 22921:1 22922:3 22925:1 22927:4 22932:2 22933:1 22939:1 22953:1 22958:1 22960:4 22968:5 22969:1 22984:1 23006:2 23007:1 23026:1 23035:1 23039:1 23042:1 23061:1 23068:2 23076:1 23081:2 23090:2 23109:1 23112:2 23150:1 23164:1 23173:1 23176:1 23204:1 23211:2 23238:1 23248:1 23255:1 23262:1 23271:1 23274:2 23282:1 23309:3 23313:1 23328:6 23360:1 23369:1 23371:1 23381:1 23384:6 23393:1 23396:1 23397:1 23399:1 23407:1 23413:1 23436:2 23437:1 23477:1 23514:1 23535:1 23554:1 23569:1 23579:1 23596:3 23598:7 23599:1 23626:3 23635:1 23637:1 23647:2 23651:1 23660:2 23670:1 23675:1 23701:1 23705:1 23708:1 23729:1 23734:2 23746:1 23764:1 23795:1 23817:1 23818:1 23821:1 23826:1 23827:1 23828:1 23854:1 23856:1 23859:1 23861:2 23878:1 23891:1 23932:1 23934:1 23946:1 23948:3 23949:1 23963:1 23964:1 23994:1 24001:1 24014:1 24034:1 24055:1 24092:1 24104:1 24111:1 24121:1 24125:1 24130:1 24142:5 24143:1 24144:6 24148:1 24198:1 24233:2 24247:1 24248:1 24262:5 24264:1 24285:1 24300:1 24311:1 24313:1 24355:1 24362:1 24364:1 24365:2 24371:1 24382:1 24389:1 24394:1 24408:1 24420:3 24436:1 24437:1 24440:1 24444:3 24448:1 24469:1 24477:1 24494:1 24498:1 24500:4 24509:1 24525:1 24548:1 24558:1 24571:6 24572:1 24587:3 24623:1 24642:3 24650:1 24654:2 24665:1 24671:2 24675:1 24702:1 24721:1 24726:1 24730:1 24738:1 24743:1 24750:2 24757:1 24776:1 24795:2 24796:2 24800:1 24812:1 24816:1 24819:1 24828:1 24830:1 24832:2 24836:3 24837:1 24855:2 24882:2 24888:1 24890:1 24893:1 24897:1 24909:4 24941:2 24947:2 24958:1 24973:1 24991:1 25010:1 25021:1 25033:1 25034:1 25045:1 25082:1 25084:2 25095:1 25137:1 25139:1 25161:1 25168:1 25228:1 25233:1 25241:1 25264:1 25270:2 25271:1 25280:1 25308:1 25349:1 25353:1 25357:1 25362:2 25367:1 25368:3 25378:1 25384:1 25385:2 25389:1 25393:1 25404:1 25407:2 25417:1 25419:1 25430:3 25440:1 25447:1 25448:1 25461:4 25466:1 25474:1 25513:1 25524:1 25527:6 25531:2 25533:1 25548:2 25551:1 25557:2 25595:1 25614:4 25623:2 25624:2 25631:2 25634:1 25635:3 25637:1 25638:1 25646:1 25654:1 25664:1 25675:1 25680:2 25684:1 25691:1 25694:2 25695:2 25696:1 25699:1 25702:1 25703:1 25706:1 25712:1 25719:1 25723:1 25728:1 25754:2 25761:1 25782:2 25783:1 25786:1 25805:1 25807:3 25809:1 25817:1 25835:1 25837:1 25845:1 25849:1 25889:1 25893:1 25908:1 25909:1 25912:2 25915:1 25928:4 25946:1 25953:1 25980:2 25996:1 25998:6 26017:2 26023:1 26045:1 26065:1 26105:2 26120:1 26146:1 26165:1 26178:3 26204:1 26221:1 26250:3 26258:2 26287:1 26293:1 26312:4 26315:1 26341:1 26366:1 26372:1 26378:1 26382:1 26385:2 26392:19 26394:1 26396:1 26411:1 26423:1 26430:12 26434:1 26438:1 26441:1 26443:2 26465:1 26489:2 26512:1 26518:1 26522:3 26529:3 26560:10 26561:1 26568:1 26590:2 26605:1 26632:2 26634:1 26641:1 26643:1 26667:2 26687:1 26688:2 26693:1 26705:2 26726:1 26743:1 26764:1 26770:1 26785:1 26808:4 26810:3 26838:1 26852:1 26863:1 26864:1 26869:1 26873:1 26875:2 26881:1 26884:1 26890:1 26901:1 26910:1 26984:1 26997:4 27008:1 27010:1 27011:1 27015:10 27032:1 27037:1 27042:1 27048:1 27052:1 27054:3 27059:1 27063:1 27087:1 27104:1 27112:2 27121:1 27167:1 27173:1 27176:1 27188:1 27194:1 27204:1 27211:1 27219:1 27227:3 27233:2 27244:1 27277:1 27340:2 27379:1 27393:1 27394:4 27403:1 27406:1 27410:1 27420:1 27433:1 27439:2 27442:1 27466:2 27469:1 27475:2 27479:1 27493:1 27502:5 27509:1 27511:1 27512:2 27528:1 27548:1 27549:1 27561:1 27568:1 27572:1 27575:1 27578:3 27580:1 27585:2 27587:4 27592:2 27596:2 27600:1 27602:1 27612:1 27640:1 27643:3 27647:1 27653:1 27654:1 27671:1 27676:1
20 10:1 17:1 21:1 22:1 23:1 26:2 29:1 30:1 40:1 57:1 68:1 72:1 81:7 86:1 96:1 109:1 114:1 115:1 145:1 155:1 168:1 185:1 191:1 207:1 241:3 245:2 246:1 263:3 266:1 278:1 298:1 317:1 323:2 324:1 344:1 366:1 368:2 382:1 411:1 425:1 435:1 441:3 471:1 479:2 500:1 511:1 526:1 529:1 548:1 549:3 556:1 557:1 570:1 579:2 592:2 595:1 615:2 617:1 620:3 666:1 692:1 716:1 746:1 748:1 784:1 786:1 808:1 848:2 853:2 856:1 860:1 861:1 865:2 867:1 877:1 882:1 883:4 885:1 894:1 903:1 908:1 915:3 929:1 933:1 934:1 935:3 937:1 938:1 939:5 941:5 948:1 956:1 959:1 966:4 980:1 991:3 992:3 996:2 1000:1 1009:1 1018:1 1040:1 1041:2 1045:1 1059:1 1079:1 1083:1 1097:1 1102:5 1110:4 1136:1 1139:2 1144:1 1146:1 1160:1 1161:2 1163:1 1180:1 1186:1 1201:1 1202:1 1211:1 1215:1 1217:1 1219:1 1235:1 1244:1 1252:1 1258:1 1271:1 1285:1 1328:1 1344:3 1356:2 1369:1 1371:1 1383:1 1393:1 1395:1 1397:4 1408:3 1418:4 1430:1 1437:1 1440:1 1441:1 1446:1 1460:3 1482:14 1484:2 1486:7 1490:1 1496:3 1501:1 1505:1 1517:2 1518:2 1522:1 1527:1 1541:1 1543:1 1550:9 1555:1 1568:1 1569:1 1589:1 1593:1 1607:1 1608:1 1611:1 1635:2 1655:1 1675:1 1703:5 1709:2 1726:1 1742:1 1754:1 1760:2 1784:1 1791:1 1799:1 1814:1 1830:2 1839:3 1843:2 1851:1 1863:2 1868:1 1882:1 1883:1 1887:1 1922:1 1924:2 1942:1 1954:4 1974:1 1982:1 1994:1 1996:3 1999:1 2002:1 2005:1 2007:1 2014:1 2021:1 2055:6 2059:1 2077:1 2088:1 2093:2 2094:2 2099:1 2120:2 2123:8 2126:7 2129:1 2130:1 2136:1 2138:1 2139:3 2141:3 2142:2 2143:2 2146:1 2152:1 2158:1 2160:1 2161:2 2163:4 2186:1 2190:1 2192:2 2193:1 2195:2 2196:4 2198:1 2199:1 2202:1 2205:2 2209:1 2210:3 2212:2 2214:3 2215:3 2218:3 2222:2 2225:2 2228:2 2230:1 2232:2 2250:1 2254:1 2256:1 2278:1 2280:1 2289:1 2298:1 2304:1 2315:1 2324:1 2334:1 2348:1 2351:1 2352:1 2376:1 2387:1 2406:1 2427:1 2433:1 2434:1 2458:1 2490:1 2492:1 2497:1 2509:1 2520:1 2522:1 2528:1 2546:3 2562:1 2571:1 2584:1 2592:1 2602:1 2605:2 2610:1 2618:2 2625:1 2626:1 2633:1 2640:1 2655:2 2656:1 2664:1 2670:1 2676:1 2686:1 2687:1 2691:1 2695:1 2713:2 2719:1 2729:1 2742:1 2765:5 2770:1 2774:2 2775:11 2778:2 2788:1 2791:2 2792:3 2806:1 2810:1 2811:1 2826:11 2849:1 2882:1 2909:1 2912:1 2929:2 2934:1 2939:1 2983:3 2988:1 3032:1 3037:1 3045:1 3074:1 3108:1 3116:1 3117:1 3125:3 3135:1 3144:4 3145:1 3174:3 3191:1 3205:3 3221:1 3226:1 3227:1 3235:1 3237:1 3238:1 3266:1 3286:1 3328:1 3337:1 3339:1 3362:1 3374:2 3382:1 3389:2 3440:1 3441:1 3443:6 3456:2 3458:1 3460:2 3467:1 3476:2 3488:1 3489:1 3497:1 3507:6 3524:1 3535:1 3537:1 3543:1 3544:1 3550:1 3553:3 3584:2 3592:2 3593:4 3638:6 3639:1 3648:1 3662:1 3664:6 3703:1 3714:1 3715:2 3723:1 3736:1 3744:1 3751:6 3765:1 3769:2 3772:2 3795:1 3799:1 3803:1 3804:1 3819:1 3820:2 3825:1 3836:1 3842:2 3847:1 3849:2 3850:1 3865:1 3878:1 3897:1 3907:1 3931:1 3949:1 3969:1 3978:1 3991:1 3998:1 4003:1 4020:1 4037:1 4094:1 4097:1 4118:1 4120:1 4130:1 4160:1 4162:1 4167:2 4168:1 4170:1 4191:1 4225:2 4228:1 4245:1 4253:1 4255:1 4259:1 4289:1 4291:1 4293:1 4323:1 4324:2 4355:1 4359:1 4361:2 4372:1 4393:2 4411:2 4418:1 4434:1 4455:2 4456:1 4460:1 4463:1 4478:4 4498:1 4501:2 4503:1 4551:1 4553:1 4564:1 4579:1 4592:1 4616:1 4619:1 4659:1 4668:1 4671:1 4679:1 4688:1 4693:1 4701:18 4702:1 4710:1 4730:1 4736:1 4756:1 4795:3 4799:7 4817:3 4818:2 4820:1 4823:1 4825:1 4828:2 4833:1 4834:1 4839:1 4840:3 4841:2 4843:4 4845:3 4848:1 4849:1 4862:2 4894:1 4915:1 4926:1 4950:1 4959:1 4995:1 5004:4 5007:1 5018:1 5030:1 5038:1 5040:1 5066:3 5071:1 5086:1 5090:1 5096:1 5123:2 5141:1 5144:1 5149:1 5173:3 5186:1 5211:1 5215:1 5217:1 5222:1 5227:1 5231:4 5261:1 5281:1 5288:2 5306:1 5332:1 5333:2 5338:1 5343:1 5355:2 5366:1 5373:1 5375:1 5380:1 5385:2 5391:1 5398:1 5400:1 5407:1 5414:3 5428:3 5447:1 5473:2 5485:1 5486:2 5488:1 5490:1 5505:2 5512:1 5529:1 5537:1 5540:1 5546:1 5549:2 5566:1 5570:1 5572:1 5592:2 5599:3 5629:4 5630:3 5652:2 5657:2 5664:1 5665:2 5708:1 5716:1 5745:1 5757:1 5764:2 5767:1 5781:6 5789:1 5799:1 5815:2 5829:2 5831:1 5842:1 5859:1 5863:1 5873:1 5877:2 5925:3 5928:1 5932:3 5965:1 5967:1 5976:1 5986:1 5996:3 5998:1 6006:1 6010:1 6011:1 6024:1 6031:2 6041:1 6063:3 6065:2 6068:1 6080:3 6081:1 6082:1 6088:3 6092:1 6095:1 6096:1 6099:4 6100:3 6103:2 6105:5 6106:2 6108:4 6138:1 6151:1 6169:1 6172:1 6201:4 6212:1 6217:4 6230:2 6277:1 6278:1 6290:1 6321:1 6328:1 6336:2 6385:2 6403:1 6408:1 6415:1 6416:2 6424:1 6427:2 6428:1 6465:1 6466:1 6473:1 6475:1 6477:1 6483:2 6501:2 6502:1 6504:1 6509:1 6526:1 6527:1 6534:1 6553:1 6557:3 6568:1 6601:1 6610:3 6612:1 6633:1 6642:3 6646:1 6652:1 6653:1 6659:1 6665:1 6669:1 6696:1 6714:1 6718:2 6731:1 6749:1 6753:1 6766:1 6775:1 6793:9 6794:1 6804:1 6813:2 6817:1 6855:2 6879:1 6887:2 6901:1 6906:1 6907:1 6939:1 6955:1 6970:1 6976:1 6993:1 6998:1 7001:1 7008:1 7025:1 7030:3 7056:4 7065:1 7066:3 7083:1 7085:2 7091:2 7092:1 7104:1 7128:1 7135:1 7140:2 7142:1 7145:1 7148:1 7162:1 7166:1 7168:1 7185:1 7193:2 7195:1 7196:1 7197:1 7205:1 7208:1 7209:1 7227:1 7234:1 7258:1 7261:4 7267:1 7268:11 7277:1 7284:2 7287:1 7289:4 7292:1 7315:1 7320:1 7328:36 7346:7 7347:13 7357:1 7384:1 7401:2 7404:1 7407:1 7415:1 7457:1 7467:1 7519:1 7527:1 7535:1 7538:1 7545:1 7572:1 7582:1 7587:3 7596:3 7601:1 7615:1 7653:1 7662:1 7677:1 7691:1 7693:1 7700:1 7704:2 7709:1 7716:1 7717:1 7723:9 7733:2 7735:1 7741:1 7743:1 7762:1 7783:1 7791:27 7816:1 7835:1 7839:1 7842:1 7849:1 7855:1 7877:1 7899:1 7910:1 7943:1 7944:1 7947:1 7950:1 7964:1 7969:5 7974:1 7986:2 7988:1 7996:1 8002:3 8013:1 8015:1 8024:1 8026:3 8054:1 8059:1 8073:1 8090:1 8112:1 8113:2 8115:1 8123:1 8125:3 8128:2 8130:4 8133:1 8134:1 8136:2 8141:4 8153:1 8154:1 8157:2 8187:1 8207:2 8216:2 8217:2 8219:1 8220:1 8246:1 8248:1 8275:3 8277:1 8299:1 8302:1 8327:1 8339:1 8347:1 8368:1 8371:1 8383:2 8391:2 8402:2 8412:3 8423:1 8433:1 8440:1 8441:1 8445:4 8457:1 8475:2 8480:1 8488:1 8495:1 8511:1 8514:1 8518:1 8524:2 8530:1 8533:1 8558:1 8560:2 8566:6 8569:4 8573:1 8576:1 8585:3 8598:1 8602:1 8631:2 8643:1 8647:1 8656:1 8670:1 8678:1 8684:1 8707:1 8713:1 8735:1 8785:1 8791:3 8794:1 8804:1 8811:1 8812:1 8813:1 8817:1 8824:1 8830:1 8874:1 8877:1 8893:1 8909:1 8925:3 8933:1 8940:1 8950:1 8956:4 8957:1 8967:1 8972:1 8974:1 8979:1 8988:4 9002:1 9017:3 9050:1 9074:1 9089:4 9102:1 9105:3 9110:6 9123:3 9141:1 9151:1 9163:2 9166:1 9180:2 9182:1 9186:2 9208:11 9215:1 9223:1 9224:1 9231:1 9236:1 9249:1 9260:1 9263:1 9267:2 9272:1 9280:1 9283:1 9288:2 9293:1 9353:2 9362:1 9367:3 9368:1 9376:2 9394:1 9405:1 9412:1 9418:1 9430:2 9433:2 9446:2 9468:1 9472:1 9475:1 9481:2 9487:1 9508:2 9540:1 9551:1 9556:2 9564:1 9565:2 9569:1 9595:1 9619:1 9624:1 9650:2 9651:1 9657:2 9671:1 9676:1 9719:1 9727:1 9729:1 9732:2 9761:1 9773:3 9784:1 9814:1 9832:4 9834:6 9836:1 9847:1 9856:1 9859:1 9870:1 9876:1 9881:2 9901:2 9908:1 9917:1 9926:1 9931:3 9932:1 9945:1 9958:3 9965:1 9967:1 9990:2 9991:2 9999:1 10001:2 10010:4 10011:1 10013:1 10016:1 10018:1 10021:1 10026:1 10028:2 10035:1 10036:1 10060:3 10061:2 10099:3 10106:1 10113:1 10118:1 10121:2 10125:2 10130:4 10133:9 10172:1 10181:2 10196:1 10202:1 10211:1 10212:4 10224:1 10229:3 10299:1 10316:1 10328:1 10340:1 10347:1 10348:4 10349:2 10352:1 10353:1 10387:1 10420:2 10427:1 10433:4 10462:1 10467:3 10470:1 10472:1 10474:1 10495:1 10497:1 10531:6 10537:1 10540:2 10566:1 10571:1 10598:1 10601:1 10608:1 10625:1 10630:1 10632:1 10635:1 10651:3 10656:2 10687:1 10688:1 10701:1 10712:1 10716:1 10718:1 10719:1 10723:2 10732:1 10737:2 10741:1 10758:1 10763:1 10771:1 10786:2 10788:7 10797:1 10801:1 10823:1 10825:1 10839:2 10845:2 10848:2 10849:1 10865:1 10867:1 10869:3 10902:1 10903:1 10917:1 10926:1 10930:1 10944:1 10949:1 10950:2 10951:1 10970:1 10983:7 10985:3 10988:1 11007:1 11020:2 11027:1 11028:1 11031:1 11032:1 11034:1 11035:1 11037:1 11040:1 11042:1 11045:1 11046:1 11051:1 11052:1 11056:2 11058:1 11061:1 11071:1 11079:1 11081:1 11092:1 11100:1 11101:1 11102:5 11112:3 11118:8 11165:1 11167:1 11172:1 11173:1 11174:1 11183:1 11185:11 11224:1 11254:1 11273:1 11277:1 11289:1 11297:2 11303:4 11304:1 11316:1 11322:1 11335:1 11357:1 11365:3 11384:1 11394:1 11395:1 11408:1 11410:3 11436:2 11443:1 11456:3 11457:3 11462:1 11463:1 11472:1 11474:1 11479:3 11480:1 11484:1 11499:1 11506:1 11520:1 11538:1 11552:1 11563:1 11567:1 11582:2 11598:3 11608:2 11626:1 11657:1 11663:1 11680:1 11692:1 11693:1 11723:1 11742:3 11751:1 11772:1 11802:1 11818:1 11842:1 11849:2 11868:1 11870:1 11885:1 11912:1 11918:1 11932:1 11971:1 11975:10 11979:1 11992:2 12005:1 12018:1 12035:1 12053:1 12057:11 12063:1 12085:1 12090:2 12114:1 12115:2 12141:2 12164:1 12179:1 12180:1 12186:1 12251:1 12253:1 12261:1 12263:4 12270:1 12279:1 12280:1 12283:2 12302:2 12315:1 12344:1 12356:2 12378:4 12387:1 12390:1 12391:3 12394:3 12408:3 12413:1 12414:8 12416:1 12418:1 12437:1 12439:1 12454:1 12456:2 12473:2 12474:2 12498:1 12510:1 12511:8 12516:1 12523:1 12526:14 12527:1 12530:1 12538:1 12548:1 12555:1 12597:4 12626:1 12640:1 12653:2 12661:1 12670:2 12677:1 12689:1 12696:1 12702:1 12710:2 12714:1 12728:1 12737:1 12753:1 12757:2 12759:2 12764:1 12787:1 12791:2 12803:1 12818:1 12829:1 12887:1 12889:1 12891:1 12894:5 12895:1 12897:1 12903:1 12905:2 12920:1 12927:3 12939:1 12947:1 12960:1 12968:1 12978:1 13005:10 13012:1 13013:1 13015:2 13051:1 13055:2 13056:2 13080:2 13088:1 13095:2 13096:1 13097:1 13099:1 13100:3 13107:1 13122:1 13128:1 13138:1 13170:5 13172:2 13199:2 13233:1 13243:2 13244:1 13245:2 13282:1 13290:1 13297:1 13300:1 13301:2 13336:2 13343:1 13372:1 13403:2 13405:1 13412:1 13420:1 13422:1 13424:1 13429:1 13430:1 13463:1 13465:1 13468:1 13498:1 13509:1 13527:1 13534:2 13535:2 13541:1 13542:3 13552:1 13554:1 13559:1 13563:1 13568:1 13586:1 13587:1 13593:2 13618:1 13638:1 13641:4 13671:4 13687:1 13696:1 13705:1 13727:1 13732:1 13739:3 13747:1 13756:5 13771:1 13780:1 13793:1 13794:1 13810:1 13819:2 13834:1 13844:1 13867:1 13869:1 13879:1 13887:1 13895:1 13898:1 13910:1 13930:1 13933:1 13938:1 13943:1 13957:1 13988:1 14001:1 14015:1 14037:1 14042:3 14045:1 14053:3 14066:1 14087:3 14127:1 14138:1 14156:1 14158:1 14177:4 14184:1 14185:1 14207:1 14232:1 14234:1 14238:2 14240:2 14271:1 14276:1 14278:1 14295:1 14330:1 14352:3 14363:1 14382:3 14383:2 14385:1 14387:1 14405:1 14432:1 14433:1 14434:1 14458:1 14475:1 14483:1 14500:1 14512:1 14524:1 14534:1 14538:1 14544:1 14549:1 14550:34 14574:1 14580:2 14584:1 14589:1 14611:1 14621:1 14625:1 14628:1 14638:1 14639:1 14660:1 14662:1 14671:2 14674:1 14695:1 14717:1 14720:1 14755:1 14757:4 14765:1 14768:2 14769:1 14770:2 14777:1 14779:1 14785:1 14789:2 14794:1 14797:1 14799:6 14801:1 14808:2 14814:1 14847:2 14849:1 14850:1 14888:1 14889:1 14891:1 14895:1 14903:1 14911:5 14912:5 14939:1 14949:1 14968:1 15004:1 15018:1 15030:1 15037:3 15051:1 15057:1 15068:1 15074:1 15085:1 15094:1 15128:2 15130:3 15133:1 15135:1 15152:1 15157:1 15163:1 15166:6 15176:1 15184:1 15185:1 15197:1 15204:1 15206:1 15210:1 15211:1 15216:1 15217:4 15238:1 15244:2 15252:1 15253:1 15267:1 15269:1 15273:1 15274:2 15278:3 15279:1 15280:2 15282:2 15284:1 15287:3 15288:1 15290:1 15292:1 15295:4 15297:1 15300:5 15303:1 15314:1 15331:3 15351:1 15399:1 15410:1 15425:1 15427:1 15430:1 15495:1 15501:1 15528:1 15530:1 15567:1 15604:2 15623:1 15647:1 15649:1 15653:1 15661:2 15664:1 15667:2 15668:1 15671:1 15680:1 15725:1 15731:2 15733:2 15734:2 15742:1 15755:2 15758:6 15767:2 15772:1 15780:1 15803:1 15804:1 15814:2 15818:1 15832:1 15836:1 15844:2 15846:1 15861:3 15868:9 15870:2 15892:1 15921:2 15924:1 15928:2 15930:2 15939:2 15941:3 15962:2 15968:1 15971:2 15992:2 15997:2 15999:2 16015:1 16020:2 16032:1 16042:1 16045:1 16050:1 16068:1 16074:1 16080:1 16081:1 16090:1 16096:2 16100:1 16102:1 16105:1 16118:1 16129:1 16131:1 16161:2 16187:1 16189:1 16193:2 16197:3 16200:1 16214:1 16230:2 16235:1 16240:1 16241:1 16252:3 16255:1 16269:2 16283:1 16304:1 16319:1 16328:1 16341:1 16348:1 16374:1 16376:1 16378:1 16390:1 16412:1 16416:2 16466:1 16467:1 16470:2 16474:1 16487:1 16489:1 16534:2 16535:2 16548:1 16556:2 16563:2 16571:1 16578:1 16580:1 16598:1 16604:1 16607:1 16610:1 16623:2 16625:1 16628:2 16655:1 16666:1 16669:2 16674:1 16692:1 16695:1 16704:6 16724:1 16740:1 16741:1 16748:3 16749:1 16769:2 16772:3 16785:1 16786:3 16788:1 16789:3 16799:1 16803:1 16807:1 16825:2 16828:2 16830:1 16839:1 16848:1 16854:1 16859:1 16862:1 16871:2 16879:5 16886:3 16888:2 16891:1 16899:1 16912:1 16914:1 16918:1 16920:1 16923:1 16940:8 16963:2 16966:2 16975:1 16994:1 17005:1 17007:1 17012:2 17030:1 17056:1 17067:1 17096:1 17100:1 17109:1 17112:1 17117:1 17130:1 17142:1 17148:1 17154:1 17169:1 17176:1 17184:1 17188:2 17203:1 17212:1 17230:1 17237:1 17249:1 17277:2 17284:1 17303:1 17348:3 17353:1 17374:7 17383:2 17385:1 17399:1 17440:1 17444:1 17448:1 17449:1 17470:1 17477:1 17523:1 17554:1 17559:2348 17560:2 17575:3 17590:1 17601:1 17611:1 17624:1 17642:1 17653:1 17670:1 17690:1 17693:1 17699:2 17704:1 17724:1 17729:1 17738:1 17750:1 17752:1 17761:5 17770:2 17773:3 17774:1 17775:3 17776:1 17788:2 17805:1 17842:2 17858:1 17859:1 17873:1 17893:1 17899:1 17917:1 17940:2 17944:1 17955:1 17964:3 18020:1 18024:2 18039:1 18071:2 18079:1 18092:1 18100:2 18142:1 18158:2 18166:1 18169:1 18208:1 18209:2 18223:4 18239:1 18245:5 18265:2 18274:3 18293:1 18297:1 18303:1 18329:1 18330:5 18338:1 18348:3 18350:1 18351:1 18383:1 18394:8 18402:1 18423:1 18452:1 18465:1 18480:1 18483:1 18516:1 18518:1 18519:1 18544:1 18547:2 18555:1 18578:1 18579:1 18605:1 18613:2 18629:1 18635:1 18639:1 18641:1 18649:1 18657:3 18658:3 18669:4 18673:1 18678:1 18694:2 18695:1 18702:3 18719:1 18728:1 18746:1 18754:2 18773:1 18777:1 18782:1 18801:1 18820:1 18822:1 18839:1 18840:1 18846:2 18855:1 18879:1 18884:1 18890:1 18898:14 18904:3 18908:1 18909:1 18933:1 18939:1 18946:1 18948:1 18956:1 18959:1 18965:1 18968:1 18973:2 18977:2 18991:2 18994:5 19005:2 19011:2 19027:1 19030:1 19044:2 19046:1 19049:1 19061:8 19065:3 19069:1 19078:1 19087:1 19098:1 19099:1 19107:2 19115:1 19121:1 19131:1 19147:1 19168:1 19183:1 19207:1 19209:1 19241:1 19254:1 19285:3 19291:1 19302:1 19308:1 19327:1 19330:6 19333:5 19339:1 19340:2 19341:1 19377:1 19378:1 19394:1 19403:1 19409:1 19431:1 19440:2 19446:1 19470:1 19479:1 19482:1 19496:1 19506:1 19516:1 19518:1 19522:1 19533:1 19535:1 19538:2 19551:1 19555:1 19561:1 19569:1 19589:1 19598:1 19607:1 19620:1 19626:5 19642:1 19646:1 19658:1 19662:1 19664:2 19668:3 19679:1 19691:1 19714:1 19718:1 19728:3 19736:1 19781:10 19788:2 19792:2 19797:1 19807:4 19808:2 19818:1 19830:1 19834:1 19844:1 19856:1 19859:1 19864:1 19866:1 19869:1 19875:1 19876:1 19893:1 19900:1 19914:2 19922:2 19965:1 19970:1 19971:1 20009:1 20010:1 20026:5 20049:1 20051:3 20065:1 20070:3 20078:1 20084:2 20089:1 20124:1 20152:1 20161:1 20163:1 20167:1 20168:1 20176:1 20177:1 20183:1 20191:1 20192:2 20193:4 20195:1 20196:1 20199:1 20210:1 20211:1 20219:1 20241:1 20244:1 20262:1 20270:3 20274:1 20285:1 20302:1 20315:1 20322:2 20341:2 20346:1 20348:1 20361:2 20363:2 20366:2 20408:1 20414:2 20416:2 20425:3 20441:1 20442:1 20463:1 20466:2 20470:1 20472:1 20473:2 20495:1 20512:1 20520:1 20523:1 20524:1 20559:1 20573:1 20576:2 20585:1 20589:1 20603:4 20604:3 20605:3 20611:1 20613:1 20615:1 20634:1 20636:3 20638:2 20640:1 20646:2 20647:1 20660:1 20665:1 20676:2 20693:1 20715:2 20727:2 20749:1 20751:3 20756:1 20761:1 20772:3 20775:2 20787:3 20802:1 20815:1 20831:1 20838:1 20846:2 20869:1 20878:1 20884:1 20886:1 20902:2 20913:2 20919:1 20920:5 20924:1 20926:1 20946:1 20949:1 20962:1 20968:1 20972:3 20978:2 20981:1 20982:1 20985:1 20986:2 21021:1 21038:1 21049:1 21050:1 21065:1 21074:2 21078:1 21091:2 21100:1 21112:2 21126:1 21127:1 21128:1 21144:1 21158:3 21160:1 21162:2 21164:1 21167:3 21169:1 21189:1 21202:1 21211:1 21239:2 21243:1 21270:1 21284:1 21285:1 21304:1 21307:1 21321:1 21332:3 21336:1 21352:1 21356:1 21376:1 21388:2 21390:1 21393:2 21394:1 21396:1 21399:1 21401:1 21409:1 21415:1 21426:3 21433:1 21438:2 21444:3 21462:1 21466:1 21487:2 21490:2 21494:1 21500:1 21518:1 21520:1 21536:1 21539:1 21549:1 21568:3 21606:1 21615:4 21626:1 21640:3 21675:2 21682:1 21687:1 21696:1 21700:1 21701:1 21706:1 21711:2 21720:1 21722:1 21728:1 21743:1 21777:1 21813:1 21821:1 21836:1 21850:2 21865:3 21867:1 21871:4 21875:1 21877:1 21883:2 21896:1 21897:1 21913:1 21914:1 21929:1 21931:1 21942:1 21944:3 21946:1 21951:1 21958:3 21961:3 21972:1 21974:1 21998:1 22000:1 22010:1 22013:1 22020:1 22021:2 22039:1 22040:2 22057:1 22060:1 22073:1 22082:1 22084:1 22094:2 22103:6 22108:1 22113:3 22127:1 22134:1 22136:1 22165:3 22189:1 22191:2 22198:1 22282:2 22291:1 22304:1 22305:2 22322:3 22325:1 22387:2 22401:1 22410:1 22416:3 22460:1 22500:1 22502:8 22562:1 22573:2 22598:2 22600:1 22603:1 22608:1 22617:1 22624:1 22625:1 22634:2 22657:1 22662:1 22672:3 22678:1 22687:2 22688:7 22691:1 22693:1 22705:1 22710:1 22711:1 22716:1 22729:1 22732:2 22744:1 22754:1 22757:1 22772:1 22803:1 22811:1 22817:1 22849:1 22856:1 22857:1 22858:1 22861:1 22862:2 22863:1 22864:1 22870:1 22874:1 22909:2 22918:1 22919:3 22921:1 22922:3 22925:1 22927:4 22932:2 22933:1 22939:1 22953:1 22958:1 22960:4 22968:5 22969:1 22984:1 23006:2 23007:1 23026:1 23035:1 23039:1 23042:1 23061:1 23068:2 23076:1 23081:2 23090:2 23095:1 23109:1 23112:2 23150:1 23164:1 23173:1 23176:1 23204:1 23211:2 23238:1 23248:1 23255:1 23262:1 23271:1 23274:2 23282:1 23309:3 23313:1 23328:6 23360:1 23369:1 23371:1 23381:1 23384:6 23393:1 23396:1 23397:1 23399:1 23407:1 23413:2 23436:2 23437:1 23477:1 23514:1 23535:1 23554:1 23569:1 23579:1 23596:3 23598:7 23599:1 23626:3 23635:1 23637:1 23647:2 23651:1 23660:2 23670:1 23675:1 23701:1 23705:1 23708:1 23729:1 23734:2 23746:1 23753:1 23764:1 23795:1 23817:1 23818:1 23821:1 23826:1 23827:1 23828:1 23854:1 23856:1 23859:1 23861:2 23878:1 23891:1 23932:1 23934:1 23946:1 23948:3 23949:1 23963:1 23964:1 23994:1 24000:1 24001:1 24014:1 24034:1 24055:1 24092:1 24104:1 24111:1 24121:1 24125:1 24130:1 24142:5 24143:1 24144:6 24148:1 24198:1 24233:2 24247:1 24248:1 24262:5 24264:1 24285:1 24300:1 24311:1 24313:1 24347:1 24355:1 24362:1 24364:1 24365:2 24371:1 24382:1 24389:1 24394:1 24408:1 24420:3 24436:1 24437:1 24440:1 24444:3 24448:1 24469:1 24477:1 24494:1 24498:1 24500:4 24509:1 24525:1 24548:2 24558:1 24571:6 24572:1 24587:3 24623:1 24625:1 24642:3 24650:1 24654:2 24665:1 24671:2 24675:1 24702:1 24721:1 24726:1 24730:1 24738:1 24743:1 24750:2 24757:1 24776:1 24795:2 24796:2 24800:1 24812:1 24816:1 24819:1 24828:1 24830:1 24832:2 24836:3 24837:1 24855:2 24882:2 24888:1 24890:1 24893:1 24897:1 24909:4 24941:2 24947:2 24958:1 24973:1 24984:1 24991:1 25010:1 25021:1 25033:1 25034:1 25045:1 25082:1 25084:2 25095:1 25137:1 25139:1 25161:1 25168:1 25228:1 25233:1 25241:1 25264:1 25270:2 25271:1 25280:1 25282:1 25308:1 25325:1 25349:1 25353:1 25357:1 25362:2 25367:1 25368:3 25378:1 25384:1 25385:2 25389:1 25393:1 25404:1 25407:2 25417:1 25419:1 25430:3 25440:1 25447:1 25448:1 25461:4 25466:1 25474:1 25513:1 25524:1 25527:6 25531:2 25533:1 25548:2 25551:1 25557:2 25595:1 25614:4 25623:2 25624:2 25631:2 25634:1 25635:3 25637:1 25638:1 25646:1 25654:1 25662:1 25664:2 25675:1 25680:2 25684:1 25691:1 25694:2 25695:2 25696:1 25699:1 25702:1 25703:1 25706:1 25712:1 25719:1 25723:1 25728:1 25754:2 25761:1 25782:2 25783:1 25786:1 25805:1 25807:3 25809:1 25817:1 25835:1 25837:1 25845:1 25849:1 25889:1 25893:1 25908:1 25909:1 25912:2 25915:1 25928:4 25946:1 25953:1 25980:2 25996:1 25998:6 26017:2 26023:1 26045:1 26065:1 26105:2 26120:2 26146:1 26165:1 26178:3 26204:1 26221:1 26250:3 26258:2 26287:1 26293:1 26312:4 26315:1 26341:1 26366:1 26372:1 26378:1 26382:1 26385:2 26392:19 26394:1 26396:1 26411:1 26413:1 26423:1 26430:12 26434:1 26438:1 26441:1 26443:2 26465:1 26489:2 26512:1 26518:1 26522:3 26529:3 26560:10 26561:1 26568:1 26590:2 26605:1 26632:2 26634:2 26641:1 26643:1 26667:2 26687:1 26688:2 26693:1 26705:2 26726:1 26743:1 26759:1 26764:1 26770:1 26785:1 26808:4 26810:3 26838:1 26852:1 26863:1 26864:1 26869:1 26873:1 26875:2 26881:2 26884:1 26890:1 26901:1 26910:1 26984:1 26997:4 27008:1 27010:1 27011:1 27015:10 27032:1 27037:1 27042:1 27048:1 27052:1 27054:3 27059:1 27063:1 27087:1 27104:1 27112:2 27121:1 27167:1 27173:1 27176:1 27188:1 27194:1 27204:1 27211:1 27219:1 27227:3 27233:2 27244:1 27277:1 27340:2 27379:1 27393:1 27394:4 27403:1 27406:1 27410:1 27420:1 27433:1 27439:2 27442:1 27466:2 27469:1 27475:2 27479:1 27493:1 27502:5 27509:1 27511:1 27512:2 27528:1 27548:1 27549:1 27561:1 27568:1 27572:1 27575:1 27578:3 27580:1 27585:2 27587:4 27592:2 27596:2 27600:1 27602:1 27612:1 27640:1 27643:3 27647:1 27653:1 27654:1 27671:1 27676:1
20 10:1 17:1 21:1 22:1 23:1 26:2 29:1 30:1 40:1 57:1 68:1 72:1 81:7 86:1 96:1 109:1 114:1 115:1 145:1 155:1 168:1 185:1 191:1 207:1 241:3 245:2 246:1 263:3 266:1 278:2 298:1 317:1 323:2 324:1 344:1 366:1 368:2 382:1 411:1 425:1 435:1 441:3 471:1 479:2 500:1 511:1 526:1 529:1 548:1 549:3 556:1 557:1 570:1 579:2 592:2 595:1 615:2 617:1 620:3 666:1 692:1 716:1 746:1 748:1 784:1 786:1 808:1 848:2 853:2 856:1 860:1 861:1 865:2 867:1 877:1 878:1 882:1 883:4 885:1 894:1 903:1 908:1 915:3 929:1 933:1 934:1 935:3 937:1 938:1 939:5 941:5 948:1 956:1 959:1 966:4 980:1 991:3 992:3 996:2 1000:1 1009:1 1018:1 1040:1 1041:2 1045:1 1059:1 1079:1 1083:1 1097:1 1102:5 1110:4 1136:1 1139:2 1144:1 1146:1 1160:1 1161:2 1163:1 1180:1 1186:1 1201:1 1202:1 1211:1 1215:1 1217:1 1219:1 1235:1 1244:1 1252:1 1258:1 1271:1 1285:1 1328:1 1344:3 1356:2 1369:1 1371:1 1383:1 1393:1 1395:1 1397:4 1408:3 1418:5 1430:1 1437:1 1440:1 1441:1 1446:2 1460:3 1482:14 1484:2 1486:7 1490:1 1496:3 1501:1 1505:1 1517:2 1518:2 1522:1 1527:2 1541:1 1543:1 1550:9 1555:1 1568:1 1569:1 1581:1 1589:1 1593:1 1607:1 1608:1 1611:1 1635:2 1655:1 1675:1 1703:5 1709:2 1726:1 1742:1 1754:1 1760:2 1784:1 1791:1 1799:1 1814:1 1830:2 1839:3 1843:2 1851:1 1863:2 1868:1 1882:1 1883:1 1887:1 1922:1 1924:2 1942:1 1954:4 1974:1 1982:1 1994:1 1996:4 1999:1 2002:1 2005:1 2007:1 2014:1 2021:1 2055:6 2059:1 2077:1 2088:1 2093:2 2094:2 2099:1 2120:2 2123:8 2126:8 2129:1 2130:1 2136:1 2138:1 2139:3 2141:3 2142:3 2143:2 2146:1 2152:1 2158:1 2160:1 2161:2 2163:4 2186:2 2190:1 2192:2 2193:1 2195:2 2196:4 2198:1 2199:1 2202:1 2205:2 2209:1 2210:3 2212:2 2214:3 2215:3 2218:3 2222:2 2225:2 2228:2 2230:1 2232:2 2250:1 2254:1 2256:1 2278:1 2280:1 2289:1 2298:1 2304:1 2315:1 2324:1 2334:1 2348:1 2351:1 2352:1 2376:1 2387:1 2406:1 2427:1 2433:1 2434:1 2458:1 2490:1 2492:1 2497:1 2509:1 2520:1 2522:1 2528:1 2537:1 2546:3 2562:1 2571:1 2584:1 2592:1 2602:1 2605:2 2610:1 2618:2 2625:1 2626:1 2633:1 2640:1 2655:2 2656:1 2664:1 2670:1 2676:1 2686:1 2687:1 2691:1 2695:1 2713:2 2719:1 2729:1 2742:1 2765:5 2770:1 2774:2 2775:11 2778:2 2788:1 2791:2 2792:3 2806:1 2810:1 2811:1 2826:12 2849:1 2882:1 2909:1 2912:1 2929:2 2934:1 2939:1 2983:3 2988:1 3032:1 3037:1 3045:1 3074:1 3108:1 3116:1 3117:1 3125:3 3135:1 3144:4 3145:1 3174:3 3191:1 3205:3 3221:1 3226:1 3227:1 3235:1 3237:1 3238:1 3266:1 3286:1 3328:1 3337:1 3339:1 3362:1 3374:2 3382:1 3389:2 3425:1 3440:1 3441:1 3443:7 3456:2 3458:1 3460:2 3467:1 3476:2 3488:1 3489:1 3497:1 3507:6 3524:1 3535:1 3537:1 3543:1 3544:1 3550:1 3553:3 3584:2 3592:2 3593:4 3638:6 3639:1 3648:1 3662:1 3664:6 3703:1 3714:1 3715:2 3723:2 3736:1 3744:1 3751:6 3765:1 3769:2 3772:2 3795:1 3799:1 3803:1 3804:1 3819:1 3820:2 3825:1 3836:1 3842:2 3847:1 3849:2 3850:1 3865:1 3878:1 3897:1 3907:1 3931:1 3949:2 3969:1 3978:1 3991:1 3998:1 4003:1 4020:1 4037:1 4094:1 4097:1 4118:1 4120:1 4129:1 4130:1 4160:1 4162:1 4167:2 4168:1 4170:1 4191:1 4205:1 4225:2 4228:1 4245:1 4253:1 4255:1 4259:1 4289:1 4291:1 4293:1 4323:1 4324:2 4355:1 4359:1 4361:2 4372:1 4393:2 4411:2 4418:1 4434:1 4455:2 4456:1 4460:1 4463:1 4478:4 4498:1 4501:2 4503:1 4551:1 4553:1 4564:1 4579:1 4592:1 4616:1 4619:1 4659:1 4668:1 4671:1 4679:1 4688:1 4693:1 4701:18 4702:1 4710:1 4730:1 4736:1 4756:1 4795:3 4799:7 4817:3 4818:2 4820:1 4823:1 4825:1 4828:2 4833:1 4834:1 4839:1 4840:3 4841:2 4843:4 4845:3 4848:1 4849:1 4862:2 4894:1 4915:1 4926:1 4950:1 4959:1 4995:1 5004:4 5007:1 5018:1 5030:1 5038:1 5040:1 5066:3 5071:1 5086:1 5090:1 5096:1 5123:2 5141:1 5144:1 5149:1 5173:3 5186:1 5211:1 5215:1 5217:1 5222:1 5227:1 5231:4 5261:1 5281:1 5288:2 5306:1 5332:1 5333:2 5338:1 5343:1 5355:2 5366:1 5373:1 5375:1 5380:1 5385:2 5391:1 5398:1 5400:1 5407:2 5414:3 5428:3 5447:1 5473:2 5485:1 5486:2 5488:1 5490:1 5505:3 5512:1 5529:1 5537:1 5540:1 5546:1 5549:2 5566:1 5570:1 5572:1 5592:2 5599:3 5629:4 5630:3 5652:2 5657:2 5664:1 5665:2 5708:1 5716:1 5745:1 5757:1 5764:2 5767:1 5781:6 5789:1 5799:1 5815:2 5829:2 5831:1 5842:1 5859:1 5863:1 5873:1 5877:2 5925:3 5928:1 5932:3 5965:1 5967:1 5976:1 5986:1 5996:3 5998:1 6006:1 6010:1 6011:1 6024:1 6031:2 6041:1 6063:3 6065:2 6068:1 6080:3 6081:1 6082:1 6088:3 6090:1 6092:1 6095:1 6096:1 6099:4 6100:3 6103:2 6105:5 6106:2 6108:4 6138:1 6151:1 6166:1 6169:1 6172:1 6201:4 6212:1 6217:4 6230:2 6277:1 6278:1 6290:1 6321:1 6328:1 6336:2 6385:2 6398:1 6403:1 6408:1 6415:2 6416:2 6424:1 6426:1 6427:2 6428:1 6465:1 6466:1 6473:1 6475:1 6477:1 6483:2 6501:2 6502:1 6504:1 6509:1 6526:1 6527:1 6534:1 6553:1 6557:3 6568:1 6601:1 6610:3 6612:1 6633:1 6642:3 6646:1 6652:1 6653:2 6659:1 6665:1 6669:1 6696:1 6714:1 6718:2 6731:1 6749:1 6753:1 6766:1 6775:1 6793:9 6794:1 6804:1 6813:2 6817:2 6855:2 6879:1 6887:2 6901:1 6906:1 6907:1 6939:1 6955:1 6970:1 6976:1 6993:1 6998:1 7001:1 7008:1 7025:1 7030:3 7056:4 7065:1 7066:4 7083:1 7085:2 7091:2 7092:1 7104:1 7128:1 7131:1 7135:1 7140:2 7142:1 7145:1 7148:1 7162:1 7166:1 7168:1 7185:1 7193:2 7195:1 7196:1 7197:1 7205:1 7208:1 7209:1 7227:1 7234:2 7258:1 7261:5 7267:1 7268:11 7277:1 7284:2 7287:1 7289:4 7292:1 7315:1 7320:1 7328:36 7346:7 7347:13 7357:1 7384:1 7401:2 7404:1 7407:1 7415:1 7457:1 7467:1 7519:1 7527:1 7535:1 7538:1 7545:1 7572:1 7582:1 7587:3 7596:3 7601:1 7615:1 7618:1 7653:1 7662:1 7663:1 7677:1 7691:1 7693:1 7700:1 7704:2 7709:1 7716:1 7717:1 7723:9 7733:2 7735:1 7741:1 7743:1 7762:1 7783:1 7791:27 7816:1 7835:1 7839:1 7842:1 7849:1 7855:1 7877:1 7899:1 7910:1 7943:1 7944:1 7947:1 7950:1 7964:1 7969:5 7974:1 7986:2 7988:1 7996:1 8002:4 8013:1 8015:1 8024:1 8026:3 8054:1 8059:1 8073:1 8090:1 8112:1 8113:2 8115:1 8123:1 8125:3 8128:2 8130:4 8133:1 8134:1 8136:2 8141:5 8153:1 8154:1 8157:2 8187:1 8207:2 8216:2 8217:2 8219:1 8220:1 8246:1 8248:1 8275:3 8277:1 8299:1 8302:1 8327:1 8339:1 8347:1 8368:1 8371:1 8383:2 8391:2 8402:2 8412:3 8423:1 8433:1 8440:1 8441:1 8443:1 8445:4 8457:1 8475:2 8479:1 8480:1 8488:1 8495:1 8511:1 8514:1 8518:1 8524:2 8530:1 8533:2 8558:1 8560:2 8566:6 8569:4 8573:1 8576:1 8585:3 8596:1 8598:1 8602:1 8631:2 8643:1 8647:1 8656:1 8670:1 8678:1 8684:1 8707:1 8713:1 8735:1 8785:1 8791:3 8794:1 8804:1 8811:1 8812:1 8813:1 8817:1 8824:1 8830:1 8874:1 8877:1 8893:1 8909:1 8925:3 8933:1 8940:1 8950:1 8956:4 8957:1 8967:1 8972:1 8974:1 8979:1 8988:4 9002:1 9017:3 9050:1 9066:1 9074:1 9089:4 9102:1 9105:3 9110:6 9123:3 9141:1 9151:1 9163:2 9166:1 9180:2 9182:1 9186:2 9208:12 9215:1 9223:1 9224:1 9226:1 9231:1 9236:1 9249:1 9260:1 9263:1 9267:2 9272:1 9280:1 9283:1 9288:2 9293:1 9353:2 9362:1 9367:3 9368:1 9376:2 9394:1 9405:1 9412:1 9418:1 9430:2 9433:2 9446:2 9468:1 9472:1 9475:2 9481:2 9487:1 9508:2 9540:1 9551:1 9556:2 9564:1 9565:2 9569:1 9595:1 9619:1 9624:1 9650:2 9651:1 9657:2 9671:1 9676:1 9719:1 9727:1 9729:1 9732:2 9761:1 9773:3 9784:1 9814:1 9832:4 9834:7 9836:1 9837:1 9847:1 9856:1 9859:1 9870:1 9876:1 9881:2 9901:2 9908:1 9917:1 9926:1 9927:1 9931:3 9932:1 9945:1 9958:3 9965:1 9967:1 9990:2 9991:3 9999:1 10001:2 10010:4 10011:1 10013:1 10016:1 10018:1 10021:1 10026:1 10028:2 10035:1 10036:1 10060:3 10061:2 10099:3 10106:1 10113:1 10118:1 10121:2 10125:2 10130:4 10133:9 10172:1 10181:2 10196:1 10202:1 10211:1 10212:4 10224:1 10229:3 10299:1 10316:1 10324:1 10328:1 10340:1 10347:1 10348:4 10349:2 10352:1 10353:1 10387:1 10420:2 10427:1 10433:4 10456:1 10462:1 10467:3 10470:1 10472:1 10474:1 10495:1 10497:1 10531:6 10537:1 10540:2 10566:1 10571:1 10598:1 10601:1 10608:1 10625:1 10630:1 10632:1 10635:1 10651:3 10656:2 10687:1 10688:1 10701:1 10712:1 10716:1 10718:1 10719:1 10723:2 10732:1 10737:2 10741:1 10758:1 10763:1 10771:1 10786:2 10788:7 10797:1 10801:1 10823:1 10825:1 10839:2 10845:2 10848:2 10849:1 10865:1 10867:1 10869:3 10902:1 10903:1 10917:1 10926:1 10930:1 10944:1 10949:1 10950:2 10951:1 10970:1 10983:7 10985:3 10988:1 11007:1 11020:2 11027:1 11028:1 11031:1 11032:1 11034:1 11035:1 11037:1 11040:1 11042:1 11045:1 11046:1 11051:1 11052:1 11053:1 11056:2 11058:1 11061:1 11071:1 11079:1 11081:1 11092:1 11100:1 11101:1 11102:5 11112:3 11118:8 11165:1 11167:1 11172:1 11173:1 11174:1 11183:1 11185:11 11224:1 11254:1 11273:1 11277:1 11289:1 11297:2 11303:4 11304:1 11316:1 11322:1 11335:1 11357:1 11365:3 11384:1 11394:1 11395:1 11408:1 11410:3 11436:2 11443:1 11456:3 11457:3 11462:1 11463:1 11472:1 11474:2 11479:3 11480:1 11484:1 11499:1 11506:1 11520:1 11538:1 11552:1 11563:1 11567:1 11569:1 11582:2 11598:3 11608:3 11626:1 11630:1 11657:1 11663:1 11666:1 11680:1 11692:1 11693:1 11723:1 11742:3 11751:1 11772:1 11802:1 11818:1 11842:1 11849:2 11868:1 11870:1 11885:1 11912:2 11918:1 11932:1 11971:1 11975:10 11979:2 11992:2 12005:1 12018:1 12035:1 12053:1 12057:11 12063:1 12085:1 12090:2 12114:1 12115:2 12141:2 12164:1 12179:1 12180:1 12186:1 12251:1 12253:1 12261:1 12263:4 12270:1 12279:1 12280:1 12283:2 12302:2 12315:1 12344:1 12356:2 12378:4 12387:1 12390:1 12391:3 12394:3 12408:3 12413:1 12414:8 12416:1 12418:1 12437:1 12439:1 12454:1 12456:3 12473:3 12474:2 12498:1 12510:1 12511:8 12516:1 12523:1 12526:14 12527:1 12530:1 12538:1 12548:1 12555:1 12597:4 12626:1 12640:1 12653:2 12661:1 12670:2 12677:1 12689:1 12696:1 12702:1 12710:2 12714:1 12728:1 12737:1 12753:1 12757:2 12759:2 12764:1 12787:1 12791:2 12803:1 12818:1 12829:1 12887:1 12889:1 12891:1 12894:5 12895:1 12897:1 12903:1 12905:2 12920:1 12927:3 12939:1 12947:1 12960:1 12968:1 12978:1 13005:10 13012:1 13013:1 13015:2 13051:1 13055:2 13056:2 13080:2 13088:1 13095:2 13096:1 13097:1 13099:1 13100:3 13107:1 13122:1 13128:1 13138:1 13170:5 13172:2 13199:3 13233:1 13243:2 13244:1 13245:2 13282:1 13290:1 13297:1 13300:1 13301:2 13336:2 13343:1 13368:1 13372:1 13403:2 13405:1 13412:1 13420:1 13422:1 13424:1 13429:2 13430:1 13463:1 13465:1 13468:1 13498:1 13509:1 13527:1 13534:2 13535:2 13541:1 13542:3 13552:1 13554:1 13559:1 13563:1 13568:1 13586:1 13587:1 13591:1 13593:2 13618:1 13638:1 13641:4 13671:4 13687:1 13696:1 13705:1 13727:1 13732:1 13739:3 13747:1 13756:5 13771:1 13780:1 13793:1 13794:1 13810:1 13819:2 13834:1 13844:1 13867:1 13869:1 13879:1 13887:1 13895:1 13898:1 13910:1 13930:1 13933:1 13938:1 13943:1 13957:1 13988:1 14001:1 14015:1 14037:1 14042:3 14045:1 14053:3 14066:1 14087:3 14127:1 14138:1 14156:1 14158:1 14177:4 14184:1 14185:1 14207:1 14232:1 14234:1 14238:2 14240:2 14271:1 14276:1 14278:1 14287:1 14295:1 14330:1 14352:3 14363:1 14382:3 14383:2 14385:1 14387:1 14405:1 14432:1 14433:1 14434:1 14458:1 14475:1 14483:1 14500:1 14512:1 14524:1 14534:1 14538:1 14544:1 14549:1 14550:36 14574:1 14580:2 14584:1 14589:1 14611:1 14621:1 14625:1 14628:1 14638:1 14639:1 14660:1 14662:1 14671:2 14674:1 14695:1 14717:1 14720:1 14755:1 14757:4 14765:1 14768:2 14769:1 14770:2 14777:1 14779:1 14785:1 14789:2 14794:1 14797:1 14799:6 14801:1 14808:2 14813:1 14814:1 14847:2 14849:1 14850:1 14888:1 14889:1 14891:1 14895:1 14903:1 14911:5 14912:5 14939:1 14949:1 14968:1 15004:1 15018:1 15030:1 15037:3 15051:1 15057:1 15068:1 15074:1 15085:1 15094:1 15128:2 15130:3 15133:1 15135:1 15152:1 15157:1 15163:1 15166:6 15176:1 15184:1 15185:1 15197:1 15204:1 15206:1 15210:1 15211:1 15216:1 15217:4 15238:1 15244:2 15252:1 15253:1 15267:1 15269:1 15273:1 15274:2 15278:3 15279:1 15280:2 15282:2 15284:1 15287:3 15288:1 15290:1 15292:1 15295:4 15297:1 15300:5 15303:1 15314:1 15331:3 15351:1 15399:1 15410:1 15425:1 15427:1 15430:1 15495:1 15501:1 15528:1 15530:1 15567:1 15604:2 15623:1 15647:1 15649:1 15653:1 15661:2 15664:1 15667:2 15668:1 15671:1 15680:1 15717:1 15725:2 15731:2 15733:2 15734:2 15742:1 15755:2 15758:6 15767:2 15772:1 15780:1 15803:1 15804:1 15814:2 15818:1 15832:1 15836:1 15844:2 15846:1 15861:3 15868:9 15870:2 15892:1 15921:2 15924:1 15928:2 15930:2 15939:2 15941:3 15962:2 15968:1 15971:2 15992:2 15997:2 15999:2 16015:1 16020:2 16032:1 16042:1 16045:1 16050:1 16068:1 16074:1 16080:1 16081:1 16090:1 16096:2 16100:1 16102:1 16105:1 16118:1 16129:1 16131:1 16161:2 16187:1 16189:1 16193:2 16197:3 16200:1 16214:1 16230:2 16235:1 16240:1 16241:1 16252:3 16255:1 16269:2 16283:1 16304:1 16319:1 16328:1 16341:1 16348:1 16374:1 16376:1 16378:1 16390:1 16412:1 16416:3 16466:1 16467:1 16470:2 16474:1 16487:1 16489:1 16534:2 16535:2 16548:1 16556:2 16563:2 16571:1 16578:1 16580:1 16598:1 16604:1 16607:1 16610:1 16623:2 16625:1 16628:2 16655:1 16666:1 16669:2 16674:1 16692:1 16695:1 16704:6 16724:1 16740:1 16741:1 16748:3 16749:1 16769:2 16772:3 16785:1 16786:3 16788:1 16789:3 16799:1 16803:1 16807:1 16825:3 16828:2 16830:1 16839:1 16848:1 16854:2 16859:1 16862:2 16871:2 16879:6 16886:3 16888:2 16891:1 16899:1 16912:1 16914:1 16918:1 16920:1 16923:1 16940:8 16963:2 16966:2 16975:1 16994:1 17005:1 17007:1 17012:2 17030:1 17056:1 17067:1 17096:1 17100:1 17109:1 17112:1 17117:1 17130:1 17142:1 17148:1 17154:1 17169:1 17176:1 17184:1 17188:2 17203:1 17212:1 17230:1 17237:1 17249:1 17277:2 17284:1 17303:1 17348:3 17353:1 17374:8 17383:2 17385:1 17399:1 17440:1 17444:1 17448:1 17449:1 17470:1 17477:1 17523:1 17554:1 17559:2403 17560:2 17575:3 17590:1 17601:1 17611:1 17624:1 17642:1 17653:1 17670:1 17690:1 17693:1 17699:2 17704:1 17724:1 17729:1 17738:1 17750:1 17752:1 17761:5 17770:2 17773:3 17774:1 17775:3 17776:1 17788:2 17800:1 17805:1 17826:1 17842:2 17858:1 17859:1 17873:1 17893:1 17899:1 17917:1 17936:1 17940:2 17944:1 17955:1 17964:3 18020:1 18024:2 18039:1 18071:2 18079:1 18092:1 18100:2 18142:1 18158:2 18166:1 18169:1 18208:1 18209:3 18223:4 18239:1 18245:5 18265:2 18274:3 18293:1 18297:1 18303:1 18329:1 18330:5 18338:1 18348:3 18350:1 18351:1 18383:1 18394:8 18402:1 18423:1 18452:1 18465:1 18480:1 18483:1 18516:1 18518:1 18519:1 18544:1 18547:2 18555:1 18578:1 18579:1 18605:1 18613:2 18629:1 18635:1 18639:1 18641:1 18649:1 18657:3 18658:3 18669:4 18673:1 18678:1 18694:2 18695:1 18702:3 18719:1 18728:1 18746:1 18754:2 18773:1 18777:1 18782:1 18801:1 18820:1 18822:1 18839:1 18840:1 18846:2 18855:1 18879:1 18884:1 18890:1 18898:16 18904:3 18908:1 18909:1 18933:1 18939:1 18946:1 18948:1 18956:1 18959:1 18965:1 18968:1 18973:2 18977:2 18991:2 18994:5 19005:2 19006:1 19011:2 19027:1 19030:1 19044:2 19046:1 19049:1 19061:8 19065:3 19069:1 19078:1 19087:1 19098:1 19099:1 19107:3 19115:1 19121:1 19131:1 19147:1 19168:1 19183:1 19207:1 19209:1 19241:1 19254:1 19285:3 19291:1 19302:1 19308:1 19327:1 19330:6 19333:5 19339:1 19340:2 19341:1 19377:1 19378:1 19394:1 19403:1 19409:2 19418:1 19431:1 19440:2 19446:1 19470:1 19479:1 19482:1 19496:1 19506:1 19516:1 19518:1 19522:1 19533:1 19535:1 19538:2 19551:1 19555:1 19561:1 19569:1 19589:1 19598:1 19607:1 19620:1 19626:5 19642:1 19646:1 19658:1 19662:1 19664:2 19668:3 19679:1 19691:1 19714:1 19718:1 19728:4 19736:1 19781:10 19788:2 19792:2 19797:1 19807:4 19808:2 19818:1 19830:1 19834:1 19844:1 19856:1 19859:1 19864:1 19866:1 19869:1 19875:1 19876:1 19893:1 19900:1 19914:2 19922:2 19965:1 19970:1 19971:1 20009:1 20010:1 20026:5 20049:1 20051:3 20065:1 20070:3 20071:1 20078:1 20084:2 20089:1 20124:1 20152:1 20161:1 20163:1 20167:1 20168:1 20176:1 20177:1 20183:1 20191:1 20192:2 20193:5 20195:1 20196:1 20199:1 20210:1 20211:1 20219:1 20241:1 20244:1 20262:1 20270:3 20274:1 20285:1 20302:1 20315:1 20322:2 20341:2 20346:1 20348:1 20361:2 20363:2 20366:3 20408:1 20414:2 20416:2 20425:3 20441:1 20442:1 20463:1 20466:2 20470:1 20472:1 20473:2 20495:1 20512:1 20520:1 20523:1 20524:1 20559:1 20573:1 20576:2 20585:1 20589:1 20603:4 20604:3 20605:3 20611:1 20613:1 20615:1 20634:1 20636:3 20638:2 20640:1 20646:2 20647:1 20660:1 20665:1 20676:2 20693:1 20715:2 20727:2 20745:1 20749:1 20751:3 20756:1 20761:1 20772:3 20775:2 20787:3 20802:1 20815:1 20831:2 20838:1 20846:2 20869:1 20878:1 20884:1 20886:1 20902:2 20913:2 20919:1 20920:5 20924:1 20926:1 20946:1 20949:1 20962:1 20968:1 20972:3 20978:2 20981:1 20982:1 20985:1 20986:2 21021:1 21038:1 21049:1 21050:1 21065:1 21074:2 21078:1 21091:2 21100:1 21112:2 21126:1 21127:1 21128:1 21144:1 21158:3 21160:1 21162:2 21164:1 21167:3 21169:1 21189:1 21202:1 21211:1 21239:2 21243:1 21270:1 21284:1 21285:1 21304:1 21307:1 21321:1 21332:3 21336:1 21352:1 21356:1 21376:1 21388:2 21390:1 21393:2 21394:1 21396:2 21399:1 21401:1 21409:1 21415:1 21426:3 21433:1 21438:2 21444:3 21462:1 21466:1 21487:2 21490:2 21494:1 21500:1 21518:1 21520:1 21536:1 21539:1 21549:1 21568:3 21606:1 21615:4 21626:1 21640:3 21675:2 21682:1 21687:1 21696:1 21700:1 21701:1 21706:1 21711:2 21720:1 21722:1 21728:1 21743:1 21777:1 21813:1 21821:1 21836:1 21850:2 21865:3 21867:1 21871:4 21875:1 21877:1 21883:2 21896:1 21897:1 21913:1 21914:1 21929:1 21931:1 21942:1 21944:3 21946:1 21951:1 21958:3 21961:3 21972:1 21974:1 21998:1 22000:1 22010:1 22013:1 22020:1 22021:2 22039:1 22040:2 22057:1 22060:1 22073:1 22082:1 22084:1 22094:2 22103:6 22108:1 22113:3 22127:1 22134:1 22136:1 22165:3 22189:1 22191:2 22198:1 22282:2 22291:1 22304:1 22305:2 22322:3 22325:1 22387:2 22401:1 22410:1 22416:3 22460:1 22500:1 22502:8 22562:1 22573:2 22598:2 22600:1 22603:1 22608:1 22617:1 22624:1 22625:1 22634:2 22657:1 22662:1 22672:3 22678:1 22687:2 22688:7 22691:1 22693:1 22705:1 22710:1 22711:1 22716:1 22729:1 22732:2 22744:1 22754:1 22757:1 22772:1 22803:1 22811:1 22817:1 22849:1 22856:1 22857:1 22858:1 22861:1 22862:2 22863:1 22864:1 22870:2 22874:1 22909:2 22918:1 22919:3 22921:1 22922:3 22925:1 22927:4 22932:2 22933:1 22939:1 22953:1 22958:1 22960:4 22968:5 22969:1 22984:1 23006:2 23007:1 23026:1 23035:1 23039:1 23042:1 23061:1 23068:2 23076:1 23081:2 23090:2 23095:1 23109:1 23112:2 23150:1 23153:1 23164:1 23173:1 23176:1 23204:1 23211:2 23218:1 23238:1 23248:1 23253:1 23255:1 23262:1 23271:1 23274:2 23282:1 23309:3 23313:1 23328:6 23360:1 23369:1 23371:1 23381:1 23384:6 23393:1 23396:1 23397:1 23399:1 23407:1 23413:2 23436:2 23437:1 23477:1 23514:1 23535:1 23554:1 23569:1 23579:1 23596:3 23598:7 23599:1 23626:3 23635:1 23637:1 23647:2 23651:1 23660:2 23670:1 23675:1 23701:1 23705:1 23708:1 23729:1 23734:2 23746:1 23753:1 23764:1 23795:1 23817:1 23818:1 23821:1 23826:1 23827:1 23828:1 23854:1 23856:1 23859:1 23861:2 23878:1 23891:1 23926:1 23932:1 23934:1 23946:1 23948:3 23949:1 23963:1 23964:1 23994:1 24000:1 24001:1 24014:1 24034:1 24055:1 24074:1 24087:1 24092:1 24104:1 24111:1 24121:1 24125:1 24130:1 24142:5 24143:1 24144:6 24148:1 24198:2 24233:2 24247:1 24248:1 24262:5 24264:1 24285:1 24300:1 24311:1 24313:1 24347:1 24355:1 24362:1 24364:1 24365:2 24371:1 24382:1 24389:1 24394:1 24408:1 24420:3 24436:1 24437:1 24440:1 24444:3 24448:1 24469:1 24477:1 24494:1 24498:1 24500:4 24509:1 24525:1 24548:2 24558:1 24571:7 24572:1 24587:3 24623:1 24625:1 24642:3 24650:1 24654:2 24665:1 24671:2 24675:1 24702:1 24721:1 24726:1 24730:1 24738:1 24743:1 24750:2 24757:1 24776:1 24795:3 24796:2 24800:1 24812:1 24816:1 24819:1 24828:1 24830:1 24832:2 24836:3 24837:1 24855:2 24882:2 24888:1 24890:1 24893:1 24897:2 24909:4 24925:1 24941:2 24947:2 24958:1 24973:1 24984:1 24991:1 25010:1 25021:1 25033:1 25034:1 25045:1 25074:1 25082:1 25084:2 25095:1 25137:1 25139:1 25161:1 25168:1 25228:1 25233:1 25241:1 25264:1 25270:2 25271:1 25280:1 25282:1 25308:1 25325:1 25349:1 25353:1 25357:1 25362:2 25367:1 25368:3 25378:1 25384:1 25385:2 25389:1 25393:1 25404:1 25407:2 25417:1 25419:1 25430:3 25439:1 25440:1 25447:1 25448:1 25461:4 25466:1 25474:1 25513:1 25524:1 25527:6 25531:2 25533:1 25548:2 25551:1 25557:2 25595:1 25614:4 25623:2 25624:2 25631:2 25634:1 25635:3 25637:1 25638:1 25646:1 25654:1 25662:1 25664:2 25675:1 25680:2 25684:1 25691:1 25694:2 25695:2 25696:1 25699:1 25702:1 25703:1 25706:1 25712:1 25719:1 25723:1 25728:1 25754:2 25761:1 25782:2 25783:1 25786:1 25805:1 25807:3 25809:1 25817:1 25835:1 25837:1 25845:1 25849:1 25889:1 25893:1 25908:1 25909:1 25912:2 25915:1 25928:4 25946:1 25953:1 25980:2 25996:1 25998:6 26017:2 26023:1 26045:1 26065:1 26105:2 26120:2 26146:1 26165:1 26178:3 26204:1 26221:1 26250:3 26258:2 26283:1 26287:1 26293:1 26312:4 26315:2 26341:1 26366:1 26372:1 26378:1 26382:1 26385:2 26392:20 26394:1 26396:1 26411:1 26413:1 26423:1 26430:13 26434:1 26438:1 26441:1 26443:2 26465:1 26489:2 26512:1 26518:1 26522:3 26529:3 26560:10 26561:1 26568:1 26590:2 26605:1 26632:2 26634:2 26641:1 26643:1 26667:2 26687:1 26688:2 26693:1 26705:2 26726:1 26743:1 26759:1 26764:1 26770:1 26785:1 26808:4 26810:3 26838:1 26852:1 26863:1 26864:1 26869:1 26873:1 26875:2 26881:2 26884:1 26890:1 26901:1 26910:1 26984:1 26997:4 27008:1 27010:1 27011:1 27015:10 27032:1 27034:1 27037:1 27042:1 27048:1 27052:1 27053:1 27054:3 27059:1 27063:1 27087:1 27104:1 27112:2 27121:1 27167:1 27173:1 27176:1 27188:1 27194:1 27204:1 27211:1 27219:1 27227:3 27233:2 27244:1 27277:1 27340:2 27379:1 27393:1 27394:4 27403:1 27406:1 27410:1 27420:1 27433:1 27439:2 27442:1 27466:2 27469:1 27475:2 27479:1 27493:1 27502:5 27509:1 27511:1 27512:2 27528:1 27548:1 27549:1 27561:1 27568:1 27572:1 27575:1 27578:3 27580:2 27585:2 27587:4 27592:2 27596:2 27600:1 27602:1 27612:1 27640:1 27643:3 27647:1 27653:1 27654:1 27671:1 27676:1
20 10:1 17:1 21:1 22:1 23:1 26:2 29:1 30:1 40:1 57:1 68:1 72:1 81:7 86:1 96:1 109:1 114:1 115:1 145:1 155:1 168:1 185:1 191:1 207:1 241:3 245:2 246:1 262:1 263:3 266:1 278:2 298:1 317:1 323:2 324:1 344:1 366:1 368:2 382:1 411:1 425:1 435:1 441:3 471:1 479:2 500:1 511:1 526:1 529:1 548:1 549:3 556:1 557:1 570:1 579:2 592:2 595:1 615:2 617:1 620:3 666:1 692:1 716:1 746:1 748:1 784:1 786:1 808:1 848:2 853:2 856:1 860:1 861:1 865:2 867:1 877:1 878:1 882:1 883:4 885:1 894:1 903:1 908:1 915:3 929:1 933:1 934:1 935:3 937:1 938:1 939:5 941:5 948:1 956:1 959:1 966:4 980:1 991:3 992:3 996:2 1000:1 1009:1 1018:1 1040:1 1041:2 1045:2 1059:1 1079:1 1083:1 1097:1 1102:5 1110:4 1136:1 1139:2 1144:1 1146:1 1160:1 1161:2 1163:1 1180:1 1186:1 1201:1 1202:1 1211:1 1215:1 1217:1 1219:1 1235:1 1244:1 1247:1 1252:1 1258:1 1271:1 1285:1 1328:1 1344:3 1356:2 1369:1 1371:1 1383:1 1393:1 1395:1 1397:4 1408:3 1418:5 1430:1 1437:1 1440:1 1441:1 1446:2 1460:3 1482:14 1484:2 1486:7 1490:1 1496:4 1501:1 1505:1 1517:2 1518:2 1522:1 1527:2 1541:1 1543:1 1550:9 1555:1 1568:1 1569:1 1581:1 1589:1 1593:1 1607:1 1608:1 1611:1 1635:2 1655:1 1675:1 1703:5 1709:2 1726:1 1742:1 1754:1 1760:2 1784:1 1791:1 1799:1 1814:1 1830:2 1839:3 1843:2 1851:1 1863:2 1868:1 1882:1 1883:1 1887:1 1922:1 1924:2 1942:1 1954:4 1974:1 1982:1 1994:1 1996:4 1999:1 2002:1 2005:1 2007:1 2014:1 2021:1 2055:6 2059:1 2077:1 2088:1 2093:2 2094:2 2099:1 2120:2 2123:8 2126:8 2129:1 2130:1 2136:1 2138:1 2139:3 2141:3 2142:3 2143:2 2146:1 2152:1 2158:1 2160:1 2161:2 2163:4 2186:2 2190:1 2192:2 2193:1 2195:2 2196:4 2198:1 2199:1 2202:1 2205:2 2209:1 2210:3 2212:2 2214:3 2215:3 2218:3 2222:2 2225:2 2228:2 2230:1 2232:2 2250:1 2254:1 2256:1 2278:1 2280:1 2289:1 2298:1 2304:1 2315:1 2324:1 2334:1 2348:1 2351:1 2352:1 2376:1 2387:1 2406:1 2427:1 2433:1 2434:1 2458:1 2490:1 2492:1 2497:1 2509:1 2520:1 2522:1 2528:1 2537:1 2546:3 2562:1 2571:1 2584:1 2592:1 2602:1 2605:2 2610:1 2618:2 2625:1 2626:1 2633:3 2640:1 2655:2 2656:1 2664:1 2670:1 2676:1 2686:1 2687:1 2691:1 2695:1 2713:3 2719:1 2729:1 2742:1 2765:6 2770:1 2774:2 2775:11 2778:2 2788:1 2791:2 2792:3 2806:1 2810:1 2811:1 2826:12 2849:1 2882:2 2909:1 2912:1 2929:2 2934:1 2939:1 2983:4 2988:1 3032:1 3037:1 3045:1 3074:1 3108:1 3116:1 3117:1 3125:3 3135:1 3144:4 3145:1 3174:3 3191:1 3205:3 3221:1 3226:1 3227:1 3235:1 3237:1 3238:1 3266:1 3286:1 3328:1 3337:1 3339:1 3362:1 3374:2 3382:1 3389:2 3425:1 3440:1 3441:1 3442:1 3443:7 3456:2 3458:1 3460:2 3467:1 3476:2 3488:1 3489:1 3497:1 3507:6 3524:1 3535:1 3537:1 3543:1 3544:1 3550:1 3553:4 3584:2 3592:2 3593:4 3638:6 3639:1 3648:1 3662:1 3664:6 3703:1 3714:1 3715:2 3723:2 3736:1 3744:1 3751:6 3765:1 3769:2 3772:2 3795:1 3799:1 3803:1 3804:1 3819:1 3820:2 3823:1 3825:1 3836:1 3842:2 3847:1 3849:3 3850:1 3865:1 3878:1 3897:1 3907:1 3931:1 3949:2 3969:1 3978:1 3991:1 3998:1 4003:1 4020:1 4037:1 4094:1 4097:1 4118:1 4120:1 4129:1 4130:1 4160:1 4162:1 4167:2 4168:1 4170:1 4191:1 4205:1 4225:2 4228:1 4245:1 4253:1 4255:1 4259:1 4289:1 4291:1 4293:1 4323:1 4324:2 4355:1 4359:1 4361:2 4372:1 4393:2 4411:2 4418:1 4434:1 4455:2 4456:1 4460:1 4463:1 4478:4 4498:1 4501:2 4503:1 4551:1 4553:1 4564:1 4579:1 4592:1 4616:1 4619:1 4659:1 4668:1 4671:1 4679:1 4688:1 4693:1 4701:19 4702:1 4710:1 4730:1 4736:1 4756:1 4795:3 4799:7 4817:3 4818:2 4820:1 4823:1 4825:1 4828:2 4833:1 4834:1 4839:1 4840:3 4841:2 4843:4 4845:3 4848:1 4849:1 4862:2 4894:1 4915:1 4923:1 4926:1 4950:1 4959:1 4995:1 5004:4 5007:1 5018:1 5030:1 5038:1 5040:1 5066:3 5071:1 5086:1 5090:1 5096:1 5098:1 5123:2 5141:1 5144:1 5149:1 5173:3 5186:1 5211:2 5215:1 5217:1 5222:1 5227:1 5231:4 5261:1 5281:1 5288:2 5306:1 5332:1 5333:2 5338:1 5343:1 5355:2 5366:1 5373:1 5375:1 5380:1 5385:2 5391:1 5398:1 5400:1 5407:2 5414:3 5428:3 5447:1 5473:2 5485:1 5486:2 5488:1 5490:1 5505:3 5512:1 5529:1 5537:1 5540:1 5546:1 5549:2 5566:1 5570:1 5572:1 5592:2 5599:3 5629:4 5630:3 5652:2 5657:2 5664:1 5665:2 5708:1 5716:1 5745:1 5757:1 5764:2 5767:1 5781:6 5789:1 5799:1 5815:2 5829:2 5831:1 5842:1 5859:1 5863:1 5873:1 5877:2 5925:3 5928:1 5932:3 5965:1 5967:1 5976:1 5986:1 5996:3 5998:1 6006:1 6010:1 6011:1 6024:1 6031:2 6041:1 6063:3 6065:2 6068:1 6080:3 6081:1 6082:1 6088:3 6090:1 6092:1 6095:1 6096:1 6099:4 6100:3 6103:2 6105:5 6106:2 6108:4 6138:1 6151:1 6166:1 6169:1 6172:1 6201:4 6212:1 6217:4 6230:2 6277:1 6278:1 6290:1 6321:1 6328:1 6336:2 6385:2 6398:1 6403:1 6408:1 6415:2 6416:2 6424:1 6426:1 6427:2 6428:1 6465:1 6466:1 6473:1 6475:1 6477:1 6483:2 6501:2 6502:1 6504:1 6509:1 6526:1 6527:1 6534:1 6553:1 6557:3 6568:1 6601:1 6610:3 6612:1 6633:1 6642:3 6646:1 6652:1 6653:2 6659:1 6665:1 6669:1 6696:1 6714:1 6718:2 6731:1 6749:1 6753:1 6766:1 6775:1 6793:9 6794:1 6804:1 6813:2 6817:2 6855:2 6879:1 6887:2 6901:1 6906:1 6907:1 6939:1 6955:1 6970:1 6976:1 6993:1 6998:1 7001:1 7008:1 7025:1 7030:3 7056:4 7065:1 7066:4 7083:1 7085:2 7091:2 7092:1 7104:1 7128:1 7131:1 7135:1 7140:2 7142:1 7145:1 7148:1 7162:1 7166:1 7168:1 7185:1 7193:2 7195:1 7196:1 7197:1 7205:1 7208:1 7209:1 7227:1 7234:2 7258:1 7261:5 7267:1 7268:11 7277:1 7284:2 7287:1 7289:4 7292:1 7315:1 7320:1 7328:36 7346:8 7347:13 7357:1 7384:1 7401:2 7404:1 7407:1 7415:1 7457:1 7465:1 7467:1 7519:1 7527:1 7533:1 7535:3 7538:1 7545:1 7572:1 7582:2 7587:3 7596:3 7601:1 7615:1 7618:1 7653:1 7662:1 7663:1 7677:1 7691:1 7693:1 7700:1 7704:2 7709:1 7716:1 7717:1 7723:9 7733:2 7735:1 7741:1 7743:1 7747:1 7762:1 7783:1 7791:27 7816:1 7835:1 7839:1 7842:1 7849:1 7855:1 7877:1 7899:1 7910:1 7943:1 7944:1 7947:1 7950:1 7964:1 7969:5 7974:1 7986:2 7988:1 7996:1 8002:4 8013:1 8015:1 8024:1 8026:3 8054:1 8059:1 8073:1 8090:1 8112:1 8113:2 8115:1 8123:1 8125:3 8128:2 8130:4 8133:1 8134:1 8136:2 8141:5 8153:1 8154:1 8157:2 8187:1 8207:2 8216:2 8217:2 8219:1 8220:1 8246:1 8248:1 8275:3 8277:1 8299:1 8302:1 8327:1 8339:1 8347:1 8368:1 8371:1 8383:2 8391:2 8402:2 8412:3 8423:1 8433:1 8440:1 8441:1 8443:1 8445:4 8457:1 8475:2 8479:1 8480:1 8488:1 8495:1 8511:1 8514:1 8518:1 8524:2 8530:1 8533:2 8558:1 8560:2 8566:6 8569:4 8573:1 8576:1 8585:3 8596:1 8598:1 8602:1 8631:2 8643:1 8647:1 8656:1 8670:3 8678:1 8684:1 8707:1 8713:1 8735:1 8785:1 8791:3 8794:1 8804:1 8811:1 8812:1 8813:1 8817:1 8824:1 8830:1 8874:1 8877:1 8893:1 8909:1 8925:3 8933:1 8940:1 8950:1 8956:4 8957:1 8967:1 8972:1 8974:1 8979:1 8988:4 9002:1 9017:3 9050:1 9066:1 9074:1 9089:4 9102:1 9105:3 9110:6 9123:3 9141:1 9151:1 9163:2 9166:1 9180:2 9182:1 9186:2 9208:12 9215:1 9223:1 9224:1 9226:1 9231:1 9236:1 9249:1 9260:1 9263:1 9267:2 9272:1 9280:1 9283:1 9288:2 9293:1 9353:2 9362:1 9367:3 9368:1 9376:2 9394:1 9405:1 9412:1 9418:1 9430:2 9433:2 9446:2 9468:1 9472:1 9475:2 9481:2 9487:1 9508:2 9540:1 9551:1 9556:2 9564:1 9565:2 9569:1 9595:1 9619:1 9624:1 9650:2 9651:1 9657:2 9671:1 9676:1 9719:1 9727:1 9729:1 9732:2 9751:1 9761:1 9773:3 9784:1 9814:1 9832:4 9834:7 9836:1 9837:1 9847:1 9856:1 9859:1 9870:1 9876:1 9881:2 9901:2 9908:1 9917:1 9926:1 9927:2 9931:3 9932:1 9945:1 9958:3 9965:1 9967:1 9990:2 9991:3 9999:1 10001:2 10010:4 10011:1 10013:1 10016:1 10018:1 10021:1 10026:1 10028:2 10035:1 10036:1 10060:3 10061:2 10099:3 10106:1 10113:1 10118:1 10121:2 10125:2 10130:4 10133:9 10172:1 10181:2 10196:1 10202:1 10211:1 10212:4 10224:1 10228:1 10229:3 10299:1 10316:1 10324:1 10328:1 10340:1 10347:1 10348:4 10349:2 10352:1 10353:1 10387:1 10420:2 10427:1 10433:4 10454:1 10456:1 10462:1 10467:3 10470:1 10472:1 10474:1 10495:1 10497:1 10531:6 10537:1 10540:2 10566:1 10571:1 10598:1 10601:1 10608:1 10625:1 10630:1 10632:1 10635:1 10651:3 10656:2 10687:1 10688:1 10701:1 10712:1 10716:1 10718:1 10719:1 10723:2 10732:1 10737:2 10741:2 10758:1 10763:1 10771:1 10786:2 10788:7 10797:1 10801:1 10823:1 10825:1 10839:2 10845:2 10848:2 10849:1 10865:1 10867:1 10869:3 10902:1 10903:1 10917:1 10926:1 10930:1 10944:1 10949:1 10950:2 10951:1 10970:1 10983:7 10985:3 10988:1 11007:1 11020:2 11027:1 11028:1 11031:1 11032:1 11034:1 11035:1 11037:1 11040:1 11042:1 11045:2 11046:1 11051:1 11052:1 11053:1 11056:2 11058:1 11061:1 11071:1 11079:1 11081:1 11092:1 11100:1 11101:1 11102:5 11112:3 11118:8 11165:1 11167:1 11172:1 11173:1 11174:1 11183:1 11185:11 11224:1 11254:1 11273:1 11277:1 11289:1 11297:2 11303:4 11304:1 11316:1 11322:1 11335:1 11357:1 11365:3 11384:1 11394:1 11395:1 11408:1 11410:3 11436:2 11443:1 11456:4 11457:4 11462:1 11463:1 11472:1 11474:2 11479:3 11480:1 11484:1 11499:1 11505:1 11506:1 11520:1 11538:1 11552:1 11563:1 11567:1 11569:1 11582:2 11598:3 11608:3 11626:1 11630:1 11657:1 11663:1 11666:1 11680:1 11692:1 11693:1 11723:1 11742:3 11751:1 11772:1 11802:1 11818:1 11842:1 11849:2 11868:1 11870:1 11885:1 11912:2 11918:1 11932:1 11971:1 11975:10 11979:2 11992:2 12005:1 12018:1 12029:1 12035:1 12053:1 12057:11 12063:1 12085:1 12090:2 12114:1 12115:2 12141:2 12164:1 12179:1 12180:1 12186:1 12251:1 12253:1 12261:1 12263:4 12270:1 12279:1 12280:1 12283:2 12302:2 12315:1 12344:1 12356:2 12378:4 12387:1 12390:1 12391:3 12394:3 12408:3 12413:1 12414:8 12416:1 12418:1 12437:1 12439:1 12454:1 12456:3 12473:3 12474:2 12498:1 12510:1 12511:8 12516:1 12523:1 12526:14 12527:1 12530:1 12538:1 12548:1 12555:1 12597:4 12626:1 12640:1 12653:2 12661:1 12670:2 12677:1 12689:1 12696:1 12702:1 12710:2 12714:1 12728:1 12737:1 12753:1 12757:2 12759:2 12764:1 12787:1 12791:2 12803:1 12818:1 12829:1 12887:1 12889:1 12891:1 12894:5 12895:1 12897:1 12899:1 12903:1 12905:2 12920:1 12927:3 12939:1 12947:1 12960:1 12968:1 12978:1 13005:10 13012:1 13013:1 13015:2 13051:1 13055:2 13056:2 13080:2 13088:1 13095:2 13096:1 13097:1 13099:1 13100:3 13107:1 13122:1 13128:1 13138:1 13170:5 13172:2 13199:3 13233:1 13243:2 13244:1 13245:2 13282:1 13290:1 13297:1 13300:1 13301:2 13336:2 13343:1 13368:1 13372:1 13403:2 13405:1 13412:1 13420:1 13422:1 13424:1 13429:2 13430:1 13463:1 13465:1 13468:1 13498:1 13509:1 13527:1 13534:2 13535:2 13541:1 13542:3 13552:1 13554:1 13559:1 13563:1 13568:1 13586:1 13587:1 13591:1 13593:2 13618:1 13638:1 13641:4 13671:4 13687:1 13696:1 13705:1 13727:1 13732:1 13739:3 13747:1 13756:5 13771:1 13780:1 13793:1 13794:1 13810:1 13819:2 13834:1 13844:1 13867:1 13869:1 13879:1 13887:1 13895:1 13898:1 13910:1 13930:1 13933:1 13938:1 13943:2 13957:1 13988:1 14001:1 14015:1 14037:1 14042:3 14045:1 14053:4 14066:1 14087:3 14127:1 14138:1 14156:1 14158:1 14177:4 14184:1 14185:1 14207:1 14232:1 14234:1 14238:2 14240:2 14271:1 14276:1 14278:1 14287:1 14295:1 14330:1 14352:3 14363:1 14377:1 14382:3 14383:2 14385:1 14387:1 14405:1 14432:1 14433:1 14434:1 14458:1 14475:1 14483:1 14500:1 14512:1 14524:1 14534:1 14538:1 14544:1 14549:1 14550:37 14574:1 14580:2 14584:1 14589:1 14611:1 14621:1 14625:2 14628:1 14638:1 14639:1 14660:1 14662:1 14671:2 14674:1 14695:1 14717:1 14720:1 14755:1 14757:4 14765:1 14768:2 14769:1 14770:2 14777:1 14779:1 14785:1 14789:2 14794:1 14797:1 14799:6 14801:1 14808:2 14813:1 14814:1 14847:3 14849:1 14850:1 14888:1 14889:1 14891:1 14895:1 14903:1 14911:5 14912:5 14939:1 14949:1 14968:1 15004:1 15018:1 15030:1 15037:3 15051:1 15057:1 15068:1 15074:1 15085:1 15094:1 15128:2 15130:3 15133:1 15135:1 15152:1 15157:1 15163:1 15166:6 15176:1 15184:1 15185:1 15197:1 15204:1 15206:1 15210:1 15211:1 15216:1 15217:4 15238:1 15244:2 15252:1 15253:1 15267:1 15269:1 15273:1 15274:2 15278:3 15279:1 15280:2 15282:2 15284:1 15287:3 15288:1 15290:1 15292:1 15295:4 15297:1 15300:5 15303:1 15314:1 15331:3 15351:1 15399:1 15410:1 15425:1 15427:1 15430:1 15495:1 15501:1 15528:1 15530:1 15567:1 15604:2 15623:1 15647:1 15649:1 15653:1 15661:2 15664:1 15667:2 15668:1 15671:1 15680:1 15686:1 15717:1 15725:2 15731:2 15733:2 15734:2 15742:1 15755:2 15758:6 15767:2 15772:1 15780:1 15803:1 15804:1 15814:2 15818:1 15832:1 15836:1 15844:2 15846:1 15861:3 15868:9 15870:2 15874:1 15892:1 15921:2 15924:1 15928:2 15930:2 15939:2 15941:3 15962:2 15968:1 15971:2 15992:2 15997:2 15999:2 16015:1 16020:2 16032:1 16042:1 16045:1 16050:1 16068:1 16074:1 16080:1 16081:2 16090:1 16096:2 16100:1 16102:1 16105:1 16118:1 16129:1 16131:1 16161:2 16187:1 16189:1 16193:2 16197:3 16200:1 16214:1 16230:2 16235:1 16240:1 16241:1 16252:3 16255:1 16269:2 16283:1 16304:1 16319:1 16328:1 16341:1 16348:1 16374:1 16376:1 16378:1 16390:1 16412:1 16416:3 16466:1 16467:1 16470:2 16474:1 16487:1 16489:1 16534:2 16535:2 16548:1 16552:1 16556:2 16563:2 16571:1 16578:1 16580:1 16598:1 16604:1 16607:1 16610:1 16623:2 16625:1 16628:2 16655:1 16666:1 16669:2 16674:1 16692:1 16695:1 16704:6 16724:1 16740:1 16741:1 16748:3 16749:1 16769:2 16772:3 16785:1 16786:3 16788:1 16789:3 16799:1 16803:1 16807:1 16825:3 16828:2 16830:1 16839:1 16848:1 16854:2 16859:1 16862:2 16871:2 16879:6 16886:3 16888:2 16891:1 16899:1 16912:1 16914:1 16918:1 16920:1 16923:1 16940:8 16963:2 16966:2 16975:1 16994:1 17005:1 17007:1 17012:2 17030:1 17056:1 17067:1 17096:1 17100:1 17109:1 17112:1 17117:1 17130:1 17142:1 17148:1 17154:1 17169:1 17176:1 17184:1 17188:2 17203:1 17212:1 17230:1 17237:1 17249:1 17277:2 17284:2 17303:1 17348:3 17353:1 17374:8 17383:2 17385:1 17399:1 17440:1 17444:1 17448:1 17449:1 17470:1 17477:1 17523:1 17554:1 17559:2485 17560:2 17575:3 17590:1 17601:1 17611:1 17624:1 17642:1 17653:1 17670:1 17690:1 17693:1 17699:2 17704:1 17724:1 17729:1 17738:1 17750:1 17752:1 17761:5 17770:2 17773:3 17774:1 17775:3 17776:1 17788:2 17800:1 17805:1 17826:1 17842:2 17858:1 17859:1 17873:1 17893:1 17899:1 17917:1 17936:1 17940:2 17944:1 17955:1 17964:3 18020:1 18024:2 18039:1 18071:2 18079:1 18092:1 18100:2 18142:1 18158:2 18166:1 18169:1 18208:1 18209:3 18223:4 18239:1 18245:5 18265:2 18274:3 18293:1 18297:1 18303:1 18329:1 18330:5 18338:1 18348:3 18350:1 18351:1 18383:1 18394:8 18402:1 18423:1 18452:1 18465:1 18480:1 18483:1 18516:1 18518:1 18519:1 18544:1 18547:2 18555:1 18578:1 18579:1 18605:1 18613:2 18629:1 18635:1 18639:1 18641:1 18649:1 18657:3 18658:3 18669:4 18673:1 18678:1 18694:2 18695:1 18702:3 18719:1 18728:1 18746:1 18754:2 18773:1 18777:1 18782:1 18801:1 18820:1 18822:1 18839:1 18840:1 18846:2 18855:1 18879:1 18884:1 18890:1 18898:17 18904:3 18908:1 18909:1 18933:1 18939:1 18946:1 18948:1 18956:1 18959:1 18962:1 18965:1 18968:1 18973:2 18977:2 18991:2 18994:5 19005:2 19006:1 19011:2 19027:1 19030:1 19044:2 19046:1 19049:1 19061:8 19065:3 19069:1 19078:1 19087:1 19098:1 19099:1 19107:3 19115:1 19121:1 19131:1 19147:1 19163:1 19168:1 19183:1 19207:1 19209:1 19241:1 19254:1 19285:3 19291:1 19302:1 19308:1 19327:1 19330:6 19333:5 19339:1 19340:2 19341:1 19377:1 19378:1 19394:1 19403:1 19409:2 19418:1 19431:1 19438:1 19440:2 19446:1 19470:1 19479:1 19480:1 19482:1 19496:1 19506:1 19516:1 19518:1 19522:1 19533:1 19535:1 19538:2 19551:1 19555:1 19561:1 19569:1 19589:1 19598:1 19607:1 19620:1 19626:5 19642:1 19646:1 19658:1 19662:1 19664:2 19668:3 19679:1 19691:1 19714:1 19718:2 19728:4 19736:1 19781:10 19788:2 19792:2 19797:1 19807:4 19808:2 19818:1 19830:1 19834:1 19844:1 19856:1 19859:1 19864:1 19866:1 19869:1 19875:1 19876:1 19893:1 19900:1 19914:2 19922:2 19965:1 19970:1 19971:1 20009:1 20010:1 20026:5 20049:1 20051:3 20065:2 20070:3 20071:1 20078:1 20084:2 20089:1 20124:1 20152:1 20161:1 20163:1 20167:1 20168:1 20176:1 20177:1 20183:1 20191:1 20192:2 20193:5 20195:1 20196:1 20199:1 20210:1 20211:1 20219:1 20241:1 20244:1 20262:1 20270:3 20274:1 20285:1 20302:1 20315:1 20322:2 20341:2 20346:1 20348:1 20361:2 20363:2 20366:3 20408:1 20414:2 20416:2 20425:3 20441:1 20442:1 20463:1 20466:2 20470:1 20472:1 20473:2 20495:1 20512:1 20520:1 20523:1 20524:1 20559:1 20573:1 20576:2 20585:1 20589:1 20603:4 20604:3 20605:3 20611:1 20613:1 20615:2 20634:1 20636:3 20638:2 20640:1 20646:2 20647:1 20660:1 20665:1 20676:2 20693:1 20715:2 20727:2 20745:1 20749:1 20751:3 20756:1 20761:1 20772:3 20775:2 20787:3 20802:1 20815:1 20831:2 20838:1 20846:2 20869:1 20878:1 20884:1 20886:1 20902:2 20913:2 20919:1 20920:5 20924:1 20926:1 20946:1 20949:1 20962:1 20968:1 20972:3 20978:2 20981:1 20982:1 20985:1 20986:2 21021:1 21038:1 21049:1 21050:1 21065:1 21074:2 21078:1 21091:2 21100:1 21112:2 21126:2 21127:1 21128:1 21144:1 21158:3 21160:1 21162:2 21164:1 21167:3 21169:1 21189:1 21202:1 21211:1 21239:2 21243:1 21270:1 21284:1 21285:1 21304:1 21307:1 21321:1 21332:3 21336:1 21352:1 21356:1 21376:1 21388:2 21390:1 21393:2 21394:1 21396:2 21399:1 21401:1 21409:1 21415:1 21426:3 21433:1 21438:2 21444:3 21462:1 21466:1 21487:2 21490:2 21494:1 21500:1 21518:1 21520:1 21536:1 21539:1 21549:1 21568:3 21606:1 21615:4 21626:1 21640:3 21675:2 21682:1 21687:1 21696:1 21700:1 21701:1 21706:1 21711:2 21720:1 21722:1 21728:1 21743:1 21777:1 21813:1 21821:1 21836:1 21850:2 21865:3 21867:1 21871:4 21875:1 21877:1 21883:2 21896:1 21897:1 21913:1 21914:1 21929:1 21931:1 21942:1 21944:3 21946:1 21951:1 21958:3 21961:3 21972:1 21974:1 21998:1 22000:1 22010:1 22013:1 22020:1 22021:2 22039:1 22040:2 22057:1 22060:1 22073:1 22082:2 22084:1 22090:1 22094:2 22103:6 22108:1 22113:3 22127:1 22134:1 22136:1 22165:3 22189:1 22191:2 22198:1 22282:2 22291:1 22304:1 22305:2 22322:3 22325:1 22387:2 22401:1 22410:1 22416:3 22460:1 22500:1 22502:8 22562:1 22573:2 22598:2 22600:1 22603:1 22608:1 22617:1 22624:1 22625:1 22634:2 22657:1 22662:1 22672:3 22678:1 22687:2 22688:7 22691:1 22693:1 22705:1 22710:1 22711:1 22716:2 22729:1 22732:2 22744:1 22754:1 22757:1 22772:1 22803:1 22811:1 22817:1 22849:1 22856:1 22857:1 22858:1 22861:1 22862:3 22863:1 22864:1 22870:2 22874:1 22909:2 22918:1 22919:3 22921:1 22922:3 22925:1 22927:5 22932:2 22933:1 22939:1 22953:1 22958:1 22960:4 22968:5 22969:1 22984:1 23006:2 23007:1 23008:1 23026:1 23035:1 23039:1 23042:1 23061:1 23068:2 23076:1 23081:2 23090:2 23095:1 23109:1 23112:2 23150:1 23153:1 23164:1 23173:1 23176:1 23204:1 23211:2 23218:1 23238:1 23248:1 23253:1 23255:1 23262:1 23271:1 23274:2 23282:1 23309:3 23313:1 23328:6 23358:1 23360:1 23369:1 23371:1 23381:1 23384:6 23393:1 23396:1 23397:1 23399:1 23407:1 23413:2 23436:2 23437:1 23477:1 23514:1 23535:1 23554:1 23569:1 23579:1 23596:3 23598:7 23599:1 23626:3 23635:1 23637:2 23647:2 23651:1 23660:2 23670:1 23675:1 23701:1 23705:1 23708:1 23729:1 23734:2 23746:1 23753:1 23764:1 23795:1 23817:1 23818:1 23821:1 23826:1 23827:1 23828:1 23854:1 23856:1 23859:1 23861:2 23878:1 23891:2 23926:1 23932:1 23934:1 23946:1 23948:3 23949:1 23963:1 23964:1 23994:1 24000:1 24001:1 24014:1 24034:1 24055:1 24074:1 24087:1 24092:1 24104:1 24111:1 24121:1 24125:1 24130:1 24142:5 24143:1 24144:6 24148:1 24198:2 24233:2 24247:1 24248:1 24262:5 24264:1 24285:1 24300:1 24309:1 24311:1 24313:1 24347:1 24352:1 24355:1 24362:1 24364:1 24365:2 24371:1 24382:1 24389:1 24394:1 24408:1 24420:3 24436:1 24437:1 24440:1 24444:3 24448:2 24469:1 24477:1 24494:1 24498:1 24500:4 24509:1 24525:1 24548:2 24558:1 24571:7 24572:1 24587:3 24623:1 24625:1 24642:4 24650:1 24654:2 24665:1 24671:2 24675:1 24702:1 24721:1 24726:1 24730:1 24738:1 24743:1 24750:2 24757:1 24776:1 24795:3 24796:2 24800:1 24812:1 24816:1 24819:1 24828:1 24830:1 24832:2 24836:3 24837:1 24855:2 24882:2 24888:1 24890:1 24893:1 24897:2 24909:4 24925:1 24941:2 24947:2 24958:1 24973:1 24984:1 24991:1 25010:1 25021:1 25033:1 25034:1 25045:1 25074:1 25082:1 25084:2 25095:1 25137:1 25139:1 25161:1 25168:1 25228:1 25233:1 25241:1 25264:1 25270:2 25271:1 25280:1 25282:1 25308:1 25325:1 25349:1 25353:1 25357:1 25362:2 25367:1 25368:3 25378:1 25384:1 25385:2 25389:1 25393:1 25404:1 25407:2 25417:1 25419:1 25430:3 25439:1 25440:1 25447:1 25448:1 25461:4 25466:1 25474:1 25513:1 25524:1 25527:6 25531:2 25533:1 25548:2 25551:1 25557:2 25595:1 25614:4 25623:2 25624:2 25631:2 25634:1 25635:4 25637:1 25638:1 25646:1 25654:1 25662:1 25664:2 25675:1 25680:2 25684:1 25691:1 25694:2 25695:2 25696:1 25699:1 25702:1 25703:1 25706:1 25712:1 25719:1 25723:1 25728:1 25754:2 25761:1 25782:2 25783:1 25786:1 25805:1 25807:3 25809:1 25817:1 25835:1 25837:1 25845:1 25849:1 25889:1 25893:1 25908:1 25909:1 25912:2 25915:1 25928:4 25946:1 25953:1 25980:2 25996:1 25998:6 26017:2 26023:1 26045:1 26065:1 26105:2 26120:2 26146:1 26165:1 26178:3 26191:1 26204:1 26221:1 26250:3 26258:2 26283:1 26287:1 26293:1 26312:4 26315:2 26341:1 26366:1 26372:1 26378:1 26382:1 26385:2 26392:20 26394:1 26396:1 26411:1 26413:1 26423:1 26430:13 26434:1 26438:1 26441:1 26443:2 26465:1 26489:2 26512:1 26518:1 26522:3 26529:3 26560:10 26561:1 26568:1 26590:2 26605:1 26632:2 26634:2 26641:1 26643:1 26667:2 26687:1 26688:2 26693:1 26705:2 26726:1 26743:1 26759:1 26764:1 26770:1 26785:1 26808:4 26810:4 26838:1 26852:1 26863:1 26864:1 26869:1 26873:1 26875:2 26881:2 26884:1 26890:1 26901:1 26910:1 26984:1 26997:4 27008:1 27010:1 27011:1 27015:10 27025:1 27032:1 27034:1 27037:1 27042:1 27048:1 27052:1 27053:1 27054:3 27059:1 27063:1 27087:1 27104:1 27112:2 27121:1 27167:1 27173:1 27176:1 27188:1 27194:1 27204:1 27211:1 27219:1 27227:3 27233:2 27244:1 27277:1 27340:2 27379:1 27393:1 27394:4 27403:1 27406:1 27410:1 27420:1 27433:1 27439:2 27442:1 27466:2 27469:1 27475:2 27479:1 27493:1 27502:5 27509:1 27511:1 27512:2 27528:1 27548:1 27549:1 27561:1 27568:1 27572:1 27575:1 27578:3 27580:2 27585:2 27587:4 27588:1 27592:2 27596:2 27600:1 27602:1 27612:1 27640:1 27643:3 27647:1 27653:1 27654:1 27671:1 27676:1
20 10:1 17:1 21:1 22:1 23:1 26:2 29:1 30:1 40:1 57:1 68:1 72:1 81:7 86:1 96:1 109:1 114:1 115:1 145:1 155:1 168:1 185:1 191:1 207:1 241:3 245:2 246:1 262:1 263:3 266:1 276:1 278:2 298:1 317:1 323:2 324:1 344:1 366:2 368:2 382:1 411:1 425:1 435:1 441:3 471:1 479:2 500:1 511:1 526:1 529:1 548:1 549:3 556:1 557:1 570:1 579:2 592:2 595:1 615:2 617:1 620:3 666:1 692:1 716:1 746:1 748:1 784:1 786:1 808:1 843:1 848:2 853:2 856:2 860:1 861:1 865:3 867:1 877:1 878:2 882:1 883:4 885:1 894:1 903:1 908:1 915:3 929:1 933:1 934:1 935:3 937:1 938:1 939:5 941:5 948:1 956:1 959:1 966:5 980:1 991:3 992:3 996:2 1000:1 1009:1 1018:1 1040:1 1041:2 1045:2 1059:1 1079:1 1083:1 1084:1 1097:1 1102:5 1110:4 1136:1 1139:2 1144:1 1146:1 1160:1 1161:2 1163:1 1180:1 1186:1 1201:1 1202:1 1211:1 1215:1 1217:1 1219:1 1235:1 1244:1 1247:1 1252:1 1258:1 1271:1 1285:1 1328:1 1344:3 1356:2 1369:1 1371:1 1383:1 1393:1 1395:1 1397:4 1408:3 1418:6 1430:1 1437:1 1440:1 1441:1 1446:2 1460:3 1482:14 1484:2 1486:7 1490:1 1496:4 1501:1 1505:1 1517:3 1518:2 1522:1 1527:2 1541:1 1543:1 1550:9 1555:1 1568:1 1569:1 1581:1 1589:1 1593:1 1607:1 1608:1 1611:1 1635:2 1655:1 1675:1 1703:5 1709:2 1726:1 1742:1 1754:1 1760:2 1784:1 1791:1 1799:1 1814:1 1830:2 1839:3 1843:2 1851:1 1863:2 1868:1 1882:1 1883:1 1887:1 1922:1 1924:2 1942:1 1954:4 1974:1 1982:1 1994:1 1996:4 1999:1 2002:1 2005:1 2007:1 2014:1 2021:1 2055:6 2059:1 2077:1 2088:1 2093:2 2094:2 2099:1 2120:2 2123:8 2126:8 2129:1 2130:1 2136:1 2138:1 2139:4 2141:3 2142:3 2143:2 2146:1 2152:1 2158:1 2160:1 2161:2 2163:4 2186:2 2190:1 2192:2 2193:1 2195:2 2196:4 2198:1 2199:1 2202:1 2205:2 2209:1 2210:3 2212:2 2214:3 2215:3 2218:4 2222:2 2225:2 2228:2 2230:1 2232:2 2250:1 2254:1 2256:1 2278:1 2280:1 2289:1 2298:1 2304:1 2315:1 2324:1 2334:1 2348:1 2351:1 2352:1 2376:1 2387:1 2406:1 2427:1 2433:1 2434:1 2458:1 2490:1 2492:1 2497:1 2509:1 2520:1 2522:1 2528:1 2537:1 2546:3 2562:1 2571:1 2584:1 2585:1 2592:1 2602:1 2605:2 2610:1 2618:2 2625:1 2626:1 2633:4 2640:1 2655:2 2656:1 2664:1 2670:1 2676:1 2681:1 2686:1 2687:1 2691:1 2695:1 2713:3 2719:1 2729:1 2742:1 2765:6 2770:1 2774:2 2775:11 2778:2 2788:1 2791:2 2792:3 2806:1 2810:1 2811:1 2826:12 2849:1 2882:2 2909:1 2912:1 2929:2 2934:1 2939:1 2983:4 2988:1 3032:1 3037:1 3045:1 3074:1 3108:1 3116:1 3117:1 3125:4 3135:1 3144:4 3145:1 3174:3 3191:1 3205:3 3221:1 3226:1 3227:1 3235:1 3237:1 3238:1 3266:1 3286:1 3328:1 3337:1 3339:1 3362:1 3374:2 3382:1 3389:2 3425:1 3440:1 3441:1 3442:2 3443:7 3456:2 3458:1 3460:3 3467:1 3476:2 3488:1 3489:1 3497:1 3507:6 3524:1 3535:1 3537:1 3543:1 3544:1 3550:1 3553:4 3584:2 3592:2 3593:4 3638:6 3639:1 3648:1 3662:1 3664:7 3703:1 3714:1 3715:2 3723:2 3736:1 3744:1 3751:6 3765:1 3769:2 3772:2 3795:1 3799:1 3803:2 3804:1 3819:1 3820:2 3823:1 3825:1 3836:1 3842:2 3847:1 3849:3 3850:1 3865:1 3878:1 3897:1 3907:1 3931:1 3949:2 3969:1 3978:1 3990:1 3991:1 3998:1 4003:1 4020:1 4037:1 4094:1 4097:1 4118:1 4120:1 4129:1 4130:1 4160:1 4162:1 4167:2 4168:1 4170:1 4191:1 4205:1 4225:2 4228:1 4245:1 4253:1 4255:1 4259:1 4289:1 4291:1 4293:1 4323:1 4324:2 4355:1 4359:1 4361:2 4372:1 4393:2 4411:2 4418:1 4434:1 4455:2 4456:1 4460:1 4463:1 4478:4 4498:1 4501:3 4503:1 4551:1 4553:1 4564:1 4578:1 4579:1 4592:1 4616:1 4619:1 4659:1 4668:1 4671:1 4679:1 4688:1 4693:1 4701:20 4702:1 4710:1 4730:1 4736:1 4756:1 4795:3 4799:7 4817:3 4818:2 4820:1 4823:1 4825:1 4828:2 4833:1 4834:1 4839:1 4840:3 4841:2 4843:4 4845:3 4848:1 4849:1 4862:2 4894:1 4915:1 4923:1 4926:1 4950:1 4959:1 4995:1 5004:4 5007:1 5018:1 5030:1 5038:1 5040:1 5066:3 5071:1 5079:1 5086:1 5090:1 5096:1 5098:1 5123:2 5141:1 5144:1 5149:1 5173:3 5186:1 5211:3 5215:1 5217:1 5222:1 5227:1 5231:4 5261:1 5281:1 5288:2 5306:1 5313:1 5332:1 5333:2 5338:1 5343:1 5355:2 5366:1 5373:1 5375:1 5380:1 5385:2 5391:1 5398:1 5400:1 5407:2 5414:3 5428:3 5447:1 5473:2 5485:1 5486:2 5488:1 5490:1 5505:3 5512:1 5529:1 5537:1 5540:1 5546:1 5549:2 5566:1 5570:1 5572:1 5592:2 5599:3 5629:4 5630:3 5635:1 5652:2 5657:2 5664:1 5665:2 5708:1 5716:1 5745:1 5757:1 5764:2 5767:1 5781:6 5789:1 5799:1 5815:2 5829:2 5831:1 5842:1 5851:1 5859:1 5863:1 5873:1 5877:2 5925:3 5928:1 5932:3 5965:1 5967:1 5976:1 5986:1 5996:4 5998:1 6006:1 6010:1 6011:1 6024:1 6031:2 6041:1 6063:3 6065:2 6068:1 6080:3 6081:1 6082:1 6088:3 6090:2 6092:1 6095:1 6096:1 6099:4 6100:3 6103:2 6105:5 6106:2 6108:4 6138:1 6151:1 6166:1 6169:1 6172:1 6201:4 6212:1 6217:4 6230:2 6277:1 6278:1 6290:1 6321:1 6328:1 6333:1 6336:2 6385:2 6398:1 6403:1 6408:1 6415:2 6416:3 6424:1 6426:1 6427:2 6428:1 6465:1 6466:1 6473:1 6475:1 6477:1 6483:2 6501:2 6502:1 6504:1 6509:1 6526:1 6527:1 6534:1 6553:1 6557:3 6568:1 6569:1 6575:1 6601:1 6610:3 6612:1 6633:1 6642:3 6646:1 6652:1 6653:2 6659:1 6665:1 6669:1 6696:1 6714:1 6718:2 6731:1 6749:1 6753:1 6766:1 6775:1 6793:9 6794:1 6804:1 6813:2 6817:2 6855:2 6879:1 6887:2 6901:1 6906:1 6907:1 6909:1 6939:1 6955:1 6970:1 6976:1 6993:1 6998:1 7001:1 7008:1 7025:1 7030:3 7056:4 7065:1 7066:4 7083:1 7085:2 7091:2 7092:1 7104:1 7105:1 7128:1 7131:1 7135:1 7140:2 7142:1 7145:1 7148:1 7162:1 7166:1 7168:1 7185:1 7193:2 7195:1 7196:1 7197:1 7205:1 7208:1 7209:1 7227:1 7234:2 7258:1 7261:5 7267:1 7268:11 7277:1 7284:2 7287:1 7289:5 7292:1 7315:1 7320:1 7328:37 7337:1 7346:8 7347:13 7351:1 7357:1 7384:1 7401:2 7404:1 7407:1 7415:1 7457:1 7465:1 7467:1 7478:1 7519:1 7527:1 7533:1 7535:4 7538:1 7545:1 7572:1 7582:2 7587:3 7596:3 7601:1 7615:1 7618:1 7653:1 7662:1 7663:1 7677:1 7691:1 7693:1 7700:1 7704:2 7709:1 7716:1 7717:1 7723:9 7733:2 7735:1 7741:1 7743:1 7747:1 7762:1 7783:1 7791:28 7816:1 7835:1 7839:1 7842:1 7849:1 7855:1 7877:1 7899:1 7910:1 7943:1 7944:1 7947:1 7950:1 7964:1 7969:5 7974:1 7986:2 7988:1 7996:1 8002:4 8013:1 8015:1 8024:1 8026:3 8054:1 8059:1 8073:1 8090:1 8112:1 8113:2 8115:1 8123:1 8125:3 8128:2 8130:4 8133:1 8134:1 8136:2 8141:5 8153:1 8154:1 8157:2 8187:1 8207:2 8216:2 8217:2 8219:1 8220:1 8246:1 8248:1 8275:3 8277:1 8299:1 8302:1 8327:1 8339:1 8347:1 8368:1 8371:1 8383:2 8391:2 8402:2 8412:3 8423:1 8433:1 8440:2 8441:1 8443:1 8445:4 8457:1 8475:2 8479:1 8480:1 8488:1 8495:1 8511:1 8514:1 8518:1 8524:2 8530:1 8533:2 8558:1 8560:2 8566:6 8569:4 8573:1 8576:1 8585:3 8596:1 8598:1 8602:1 8631:2 8643:1 8647:1 8656:1 8670:4 8678:1 8684:1 8707:1 8713:1 8735:1 8785:1 8791:3 8794:1 8804:1 8811:2 8812:1 8813:1 8817:1 8824:1 8830:1 8874:1 8877:1 8893:1 8909:1 8925:3 8933:1 8940:1 8950:1 8956:4 8957:1 8967:1 8972:1 8974:1 8979:1 8988:4 9002:1 9017:3 9050:1 9066:1 9074:1 9089:4 9102:1 9105:3 9110:6 9123:3 9141:1 9151:1 9163:2 9166:1 9180:2 9182:1 9186:2 9208:12 9215:1 9223:1 9224:1 9226:1 9231:1 9236:1 9249:1 9260:1 9263:1 9267:2 9272:1 9280:1 9283:1 9288:2 9293:1 9353:2 9362:1 9367:3 9368:1 9376:2 9394:1 9405:1 9412:1 9418:1 9430:2 9433:2 9446:2 9468:1 9472:1 9475:2 9481:2 9487:1 9508:2 9540:1 9551:1 9556:2 9564:1 9565:2 9569:1 9595:1 9619:1 9624:1 9650:2 9651:1 9657:2 9671:1 9676:1 9719:1 9727:1 9729:1 9732:2 9751:1 9761:1 9773:3 9784:1 9814:1 9832:4 9834:7 9836:1 9837:1 9847:1 9856:1 9859:1 9870:1 9876:1 9881:2 9901:2 9908:1 9917:1 9926:1 9927:2 9931:3 9932:1 9945:1 9958:3 9965:1 9967:1 9990:2 9991:3 9999:1 10001:2 10010:4 10011:1 10013:1 10016:1 10018:1 10021:1 10026:1 10028:2 10035:1 10036:1 10060:3 10061:2 10099:3 10106:1 10113:1 10118:1 10121:3 10125:2 10130:4 10133:9 10137:1 10172:1 10176:1 10181:2 10196:1 10202:1 10211:1 10212:4 10224:1 10228:1 10229:3 10299:1 10316:1 10324:1 10328:1 10340:1 10347:1 10348:4 10349:2 10352:1 10353:1 10387:1 10420:2 10427:1 10433:4 10454:1 10456:1 10462:1 10467:3 10470:1 10472:1 10474:1 10484:1 10495:1 10497:1 10531:6 10537:1 10540:2 10566:1 10571:1 10598:1 10601:1 10608:1 10625:1 10630:1 10632:1 10635:1 10651:3 10656:2 10687:1 10688:1 10701:1 10712:1 10713:1 10716:1 10718:1 10719:1 10723:2 10732:1 10737:2 10741:2 10758:1 10763:1 10771:1 10786:2 10788:8 10797:1 10801:1 10823:1 10825:1 10839:2 10845:2 10848:3 10849:1 10865:1 10867:1 10869:3 10902:1 10903:1 10917:1 10926:1 10930:1 10944:1 10949:1 10950:2 10951:1 10970:1 10983:7 10985:3 10988:1 11007:1 11020:2 11027:1 11028:1 11031:2 11032:1 11034:1 11035:1 11037:1 11040:1 11042:1 11045:2 11046:1 11051:1 11052:1 11053:1 11056:2 11058:1 11061:1 11071:1 11079:1 11081:1 11092:1 11100:1 11101:1 11102:5 11112:3 11118:8 11165:1 11167:1 11172:1 11173:1 11174:1 11183:1 11185:11 11224:1 11254:1 11273:1 11277:1 11289:1 11297:2 11303:4 11304:1 11316:1 11322:1 11335:1 11357:1 11365:3 11384:1 11394:1 11395:1 11408:1 11410:3 11436:2 11443:1 11456:4 11457:4 11462:1 11463:1 11472:1 11474:2 11479:4 11480:1 11484:1 11499:1 11505:1 11506:1 11520:1 11538:1 11552:1 11563:1 11567:1 11569:1 11582:2 11598:3 11608:3 11626:1 11630:1 11657:1 11663:1 11666:1 11680:1 11692:1 11693:1 11723:1 11742:3 11751:1 11772:1 11802:1 11818:1 11825:1 11842:1 11849:2 11868:1 11870:1 11885:1 11912:2 11918:1 11932:1 11971:1 11975:10 11979:2 11992:2 12005:1 12018:1 12029:1 12035:1 12053:1 12057:11 12063:1 12085:1 12090:2 12114:1 12115:2 12141:2 12164:1 12179:1 12180:1 12186:1 12251:1 12253:1 12261:1 12263:4 12270:1 12279:1 12280:1 12283:2 12302:2 12315:1 12344:1 12356:2 12378:4 12387:1 12390:1 12391:5 12394:3 12408:3 12413:1 12414:8 12416:1 12418:1 12437:1 12439:1 12454:1 12456:3 12473:3 12474:3 12483:1 12498:2 12510:1 12511:8 12516:2 12523:1 12526:14 12527:1 12530:1 12538:1 12548:1 12555:1 12597:4 12626:1 12640:1 12653:2 12661:1 12670:2 12677:1 12689:1 12696:2 12702:1 12710:2 12714:1 12728:1 12737:1 12753:1 12757:2 12759:2 12764:1 12787:1 12791:2 12797:1 12803:1 12818:1 12829:1 12887:1 12889:1 12891:1 12894:5 12895:1 12897:1 12899:1 12903:1 12905:2 12920:1 12927:3 12939:1 12947:1 12960:1 12968:1 12978:1 13005:11 13012:1 13013:1 13015:2 13051:1 13055:2 13056:2 13080:2 13088:1 13095:2 13096:1 13097:1 13099:1 13100:3 13107:1 13122:1 13128:1 13138:1 13170:5 13172:2 13199:3 13233:1 13243:2 13244:1 13245:2 13282:1 13290:1 13297:1 13300:1 13301:2 13336:2 13343:1 13368:1 13372:1 13403:2 13405:1 13407:1 13412:1 13420:1 13422:1 13424:1 13429:2 13430:1 13463:1 13465:1 13468:1 13498:1 13509:3 13527:1 13534:2 13535:2 13541:1 13542:3 13552:1 13554:1 13559:1 13563:1 13568:1 13577:1 13586:1 13587:1 13591:1 13593:2 13618:1 13638:1 13641:4 13671:4 13687:1 13696:1 13705:1 13727:1 13732:1 13739:3 13747:1 13756:5 13771:1 13780:1 13793:1 13794:1 13810:1 13819:2 13834:1 13844:1 13867:1 13869:1 13879:1 13887:1 13895:1 13898:1 13910:1 13930:1 13933:1 13938:1 13943:3 13957:1 13988:1 14001:1 14015:1 14037:1 14042:3 14045:1 14053:4 14066:1 14087:3 14127:1 14138:1 14156:1 14158:1 14177:4 14184:1 14185:1 14207:1 14232:1 14234:1 14238:2 14240:2 14271:1 14276:1 14278:1 14287:1 14295:1 14330:1 14352:3 14363:1 14377:1 14382:3 14383:2 14385:1 14387:1 14405:1 14432:1 14433:1 14434:1 14458:1 14475:1 14483:1 14500:1 14512:1 14524:1 14534:1 14538:1 14544:1 14549:1 14550:38 14574:1 14580:2 14584:1 14589:1 14611:1 14621:1 14625:2 14628:1 14638:1 14639:1 14660:1 14662:1 14671:2 14674:1 14695:1 14713:1 14717:1 14720:1 14755:1 14757:4 14765:1 14768:2 14769:1 14770:2 14777:1 14779:1 14785:1 14789:2 14794:1 14797:1 14799:6 14801:1 14808:2 14813:1 14814:1 14847:4 14849:1 14850:1 14888:1 14889:1 14891:1 14895:1 14903:1 14911:5 14912:5 14939:1 14949:1 14968:1 15004:1 15018:1 15030:1 15037:3 15051:1 15057:1 15068:2 15074:1 15085:1 15094:1 15128:2 15130:3 15133:1 15135:1 15137:1 15152:1 15157:1 15163:1 15166:6 15176:1 15184:1 15185:1 15197:1 15204:1 15206:1 15210:1 15211:1 15216:1 15217:4 15238:1 15244:2 15252:1 15253:1 15267:1 15269:2 15273:1 15274:2 15278:3 15279:1 15280:2 15282:2 15284:2 15287:3 15288:1 15290:1 15292:1 15295:4 15297:1 15300:5 15303:1 15314:1 15331:3 15351:1 15399:1 15410:1 15425:1 15427:1 15430:1 15495:1 15501:1 15528:1 15530:1 15567:1 15604:2 15623:1 15647:1 15649:1 15653:1 15661:3 15664:1 15667:2 15668:1 15671:1 15680:1 15686:1 15717:1 15725:2 15731:2 15733:2 15734:2 15742:1 15755:2 15758:6 15767:2 15772:1 15780:1 15803:1 15804:1 15814:2 15818:1 15832:1 15836:1 15844:2 15846:1 15861:3 15868:9 15870:2 15874:1 15892:1 15921:2 15924:1 15928:2 15930:2 15939:2 15941:3 15962:2 15968:1 15971:2 15992:2 15997:2 15999:2 16015:1 16020:2 16032:1 16042:1 16045:1 16050:1 16068:1 16074:1 16080:1 16081:2 16090:1 16096:2 16100:1 16102:1 16105:1 16118:1 16129:1 16131:1 16161:2 16174:1 16187:1 16189:1 16193:2 16197:3 16200:1 16214:1 16230:2 16235:1 16240:1 16241:1 16252:3 16255:1 16269:2 16283:1 16304:1 16319:1 16328:1 16341:1 16348:1 16374:1 16376:1 16378:1 16390:1 16412:1 16416:4 16435:1 16466:1 16467:1 16470:2 16474:1 16487:1 16489:1 16534:2 16535:2 16548:1 16552:1 16556:2 16563:2 16571:1 16578:1 16580:1 16598:1 16604:2 16607:1 16610:1 16623:2 16625:1 16628:2 16655:1 16666:1 16669:2 16674:1 16692:1 16695:1 16704:6 16724:1 16740:1 16741:1 16748:3 16749:1 16769:2 16772:3 16785:1 16786:3 16788:1 16789:3 16799:1 16803:1 16807:1 16825:3 16828:2 16830:1 16839:1 16848:1 16854:2 16859:1 16862:2 16871:2 16879:6 16886:3 16888:3 16891:1 16899:1 16912:1 16914:1 16918:1 16920:1 16923:1 16940:8 16963:2 16966:2 16975:1 16994:1 17005:1 17007:1 17012:2 17030:1 17056:1 17067:1 17071:1 17096:1 17100:1 17109:1 17112:1 17117:1 17130:1 17142:1 17148:1 17154:1 17167:1 17169:1 17176:1 17184:1 17188:3 17203:1 17212:1 17230:1 17237:1 17249:1 17277:2 17284:2 17303:1 17348:3 17353:1 17374:9 17383:2 17385:1 17399:1 17440:1 17444:1 17448:1 17449:1 17470:1 17477:1 17523:1 17554:1 17559:2545 17560:3 17575:3 17590:1 17601:1 17611:1 17624:1 17642:1 17653:1 17670:1 17687:1 17690:1 17693:1 17699:2 17704:1 17724:1 17729:1 17738:1 17750:1 17752:1 17761:5 17770:2 17773:3 17774:1 17775:3 17776:1 17788:2 17800:1 17805:1 17826:1 17842:2 17858:1 17859:1 17873:1 17893:1 17899:1 17917:1 17936:1 17940:2 17944:1 17955:1 17964:4 18020:1 18024:3 18039:1 18071:2 18079:1 18092:1 18100:2 18142:1 18158:2 18166:1 18169:1 18208:1 18209:3 18223:4 18239:1 18245:5 18265:2 18274:3 18293:1 18297:1 18303:1 18329:1 18330:5 18338:1 18348:3 18350:1 18351:1 18383:1 18394:8 18402:1 18423:1 18452:1 18465:1 18480:1 18483:1 18516:1 18518:1 18519:1 18544:1 18547:2 18555:1 18578:1 18579:1 18605:1 18613:2 18629:1 18635:1 18639:1 18641:2 18649:1 18657:3 18658:3 18669:4 18673:1 18678:1 18694:2 18695:1 18702:3 18719:1 18728:1 18746:1 18754:2 18773:1 18777:1 18782:1 18801:1 18820:1 18822:1 18839:1 18840:1 18846:2 18855:1 18879:1 18884:1 18890:1 18898:17 18904:3 18908:1 18909:2 18919:1 18933:1 18939:1 18946:1 18948:1 18956:1 18959:1 18962:1 18965:1 18968:1 18973:2 18977:2 18991:2 18994:5 19005:2 19006:1 19011:2 19027:1 19030:1 19044:2 19046:1 19049:1 19061:8 19065:3 19069:1 19078:1 19087:1 19098:1 19099:1 19107:3 19115:1 19121:1 19131:1 19147:1 19163:1 19168:1 19183:1 19207:1 19209:1 19241:1 19254:1 19285:3 19291:1 19302:1 19308:1 19327:1 19330:6 19333:5 19339:1 19340:2 19341:1 19377:1 19378:1 19394:1 19403:1 19409:3 19418:1 19431:1 19438:1 19440:2 19446:1 19470:1 19479:1 19480:1 19482:1 19496:1 19506:1 19516:1 19518:1 19522:1 19533:1 19535:1 19538:2 19551:1 19555:1 19561:1 19569:1 19589:1 19598:1 19607:1 19620:1 19626:5 19642:1 19646:1 19658:1 19662:1 19664:2 19668:3 19679:1 19691:1 19707:1 19714:1 19718:3 19728:4 19736:1 19781:11 19788:2 19792:2 19797:1 19807:4 19808:2 19818:1 19830:1 19834:1 19844:1 19856:1 19859:1 19864:1 19866:1 19869:1 19875:1 19876:1 19893:1 19900:1 19914:2 19922:2 19933:1 19945:1 19965:1 19970:1 19971:1 20009:1 20010:1 20026:5 20049:1 20051:3 20065:3 20070:3 20071:2 20078:1 20084:2 20089:1 20124:1 20152:1 20161:1 20163:1 20167:1 20168:1 20176:1 20177:1 20183:1 20191:1 20192:2 20193:6 20195:1 20196:1 20199:1 20210:1 20211:1 20219:1 20241:1 20244:1 20262:1 20270:3 20274:1 20285:1 20302:1 20315:1 20322:2 20341:2 20346:1 20348:1 20361:2 20363:2 20366:3 20408:1 20414:2 20416:2 20425:3 20441:1 20442:1 20463:1 20466:3 20470:1 20472:1 20473:2 20495:1 20512:1 20520:1 20523:1 20524:1 20559:1 20573:1 20576:2 20585:1 20589:1 20603:4 20604:3 20605:3 20611:1 20613:1 20615:2 20634:1 20636:3 20638:2 20640:1 20646:2 20647:1 20660:1 20665:1 20676:2 20693:1 20707:1 20715:2 20727:2 20745:1 20749:1 20751:3 20756:1 20761:1 20772:3 20775:2 20787:3 20802:1 20815:1 20831:2 20838:1 20846:2 20869:1 20878:1 20884:1 20886:1 20902:2 20913:2 20919:1 20920:6 20924:1 20926:1 20946:1 20949:1 20962:1 20968:1 20972:3 20978:2 20981:1 20982:1 20985:1 20986:2 21021:1 21028:1 21038:1 21047:1 21049:1 21050:1 21065:1 21074:2 21078:1 21091:2 21100:1 21112:2 21126:2 21127:1 21128:1 21144:1 21158:3 21160:1 21162:4 21164:1 21167:3 21169:1 21189:1 21195:1 21202:1 21211:1 21239:2 21243:1 21270:1 21284:1 21285:1 21304:1 21307:1 21317:1 21321:1 21332:3 21336:1 21352:1 21356:1 21376:1 21388:2 21390:1 21393:2 21394:1 21396:2 21399:1 21401:1 21409:1 21415:1 21426:3 21433:1 21438:2 21444:3 21462:1 21466:1 21487:2 21490:2 21494:1 21500:2 21518:1 21520:1 21536:1 21539:1 21549:1 21568:3 21606:1 21615:5 21626:1 21640:3 21675:2 21682:1 21687:1 21696:1 21700:1 21701:1 21706:1 21711:2 21714:1 21715:1 21720:1 21722:1 21728:1 21743:1 21777:1 21813:1 21821:1 21836:1 21850:2 21854:1 21865:3 21867:1 21871:4 21875:1 21877:1 21883:2 21896:1 21897:1 21913:1 21914:1 21929:1 21931:1 21942:1 21944:3 21946:1 21951:1 21958:3 21961:3 21972:1 21974:1 21998:1 22000:1 22010:1 22013:1 22020:1 22021:2 22034:1 22039:1 22040:2 22057:1 22060:1 22073:1 22082:2 22084:1 22090:1 22094:2 22103:6 22108:1 22113:3 22127:1 22134:1 22136:1 22165:3 22189:1 22191:2 22198:2 22282:2 22291:1 22304:1 22305:2 22322:3 22325:1 22387:3 22401:1 22410:1 22416:3 22460:1 22500:2 22502:8 22562:1 22573:3 22598:2 22600:1 22603:1 22608:1 22617:1 22624:1 22625:1 22634:2 22657:1 22662:1 22672:3 22678:1 22687:2 22688:7 22691:1 22693:1 22705:1 22710:1 22711:1 22716:3 22729:1 22732:2 22744:1 22754:1 22757:1 22772:1 22803:1 22811:1 22817:1 22849:1 22856:1 22857:1 22858:1 22861:1 22862:3 22863:1 22864:1 22870:2 22874:1 22909:2 22918:1 22919:3 22921:1 22922:3 22925:1 22927:5 22932:2 22933:1 22939:1 22953:1 22958:1 22960:4 22968:5 22969:1 22984:1 23006:2 23007:1 23008:1 23026:1 23035:1 23039:1 23042:1 23061:1 23068:2 23076:1 23081:2 23090:2 23095:1 23109:1 23112:2 23150:1 23153:1 23164:1 23173:1 23176:1 23204:1 23211:2 23218:1 23238:1 23248:1 23253:1 23255:1 23262:1 23271:1 23274:2 23282:1 23309:3 23313:1 23328:6 23358:1 23360:1 23369:1 23371:1 23381:1 23384:6 23393:1 23396:1 23397:1 23399:1 23407:1 23413:2 23436:2 23437:1 23477:1 23514:1 23535:1 23554:1 23569:1 23579:1 23596:3 23598:7 23599:1 23626:4 23635:1 23637:3 23647:2 23651:1 23660:2 23670:1 23675:1 23701:1 23705:1 23708:1 23729:1 23734:2 23746:1 23753:1 23764:1 23795:1 23817:1 23818:1 23821:1 23826:1 23827:1 23828:1 23854:1 23856:1 23859:1 23861:2 23878:1 23891:2 23907:1 23926:1 23932:1 23934:1 23946:1 23948:3 23949:1 23960:1 23963:1 23964:1 23994:1 24000:1 24001:1 24014:1 24034:1 24055:1 24074:1 24087:1 24092:1 24104:1 24111:1 24121:1 24125:1 24130:1 24142:5 24143:1 24144:7 24148:1 24198:2 24233:2 24247:1 24248:1 24262:5 24264:1 24285:1 24300:1 24309:1 24311:1 24313:1 24347:1 24352:1 24355:1 24362:1 24364:1 24365:2 24371:1 24382:1 24389:1 24394:1 24408:1 24420:3 24436:1 24437:1 24440:1 24444:3 24445:1 24448:2 24469:1 24477:1 24494:1 24498:1 24500:4 24509:1 24525:1 24548:2 24558:1 24571:8 24572:1 24587:3 24623:1 24625:1 24642:4 24650:1 24654:2 24665:1 24671:2 24675:1 24702:1 24721:1 24726:1 24730:1 24738:1 24743:1 24750:2 24757:1 24776:1 24795:3 24796:2 24800:1 24812:1 24816:1 24819:1 24828:1 24830:1 24832:2 24836:3 24837:1 24855:2 24882:2 24888:1 24890:1 24893:1 24897:2 24909:4 24920:1 24925:1 24941:2 24947:2 24958:1 24973:1 24984:1 24991:1 25010:1 25021:1 25033:1 25034:1 25045:1 25074:1 25082:1 25084:2 25095:1 25137:1 25139:1 25161:1 25168:1 25228:1 25233:1 25241:1 25264:1 25270:2 25271:1 25280:1 25282:1 25308:1 25325:1 25349:1 25353:1 25357:1 25362:2 25367:1 25368:3 25378:1 25384:1 25385:2 25389:1 25393:1 25404:1 25407:2 25417:1 25419:1 25430:3 25439:1 25440:2 25447:1 25448:1 25461:4 25466:1 25474:1 25513:1 25524:1 25527:6 25531:2 25533:1 25548:2 25551:1 25557:2 25595:1 25614:4 25623:2 25624:2 25631:2 25634:1 25635:4 25637:1 25638:1 25646:1 25654:1 25662:1 25664:2 25675:1 25680:2 25684:1 25691:1 25694:2 25695:2 25696:1 25699:1 25702:1 25703:1 25706:1 25712:1 25719:1 25723:1 25728:1 25754:2 25761:1 25782:2 25783:1 25786:1 25805:1 25807:3 25809:1 25817:1 25835:1 25837:1 25845:1 25849:1 25889:1 25893:1 25908:1 25909:1 25912:2 25915:1 25928:4 25946:1 25953:1 25980:2 25996:1 25998:6 26017:2 26023:1 26045:1 26065:1 26105:2 26120:3 26146:1 26165:1 26178:3 26191:1 26204:1 26221:1 26250:3 26258:2 26283:1 26287:1 26293:1 26312:5 26315:2 26341:1 26366:1 26372:1 26378:1 26382:1 26385:2 26392:20 26394:1 26396:1 26411:1 26413:1 26423:1 26430:13 26434:1 26438:1 26441:1 26443:2 26458:1 26465:1 26489:2 26512:1 26518:1 26522:3 26529:3 26560:10 26561:1 26568:1 26590:2 26605:1 26632:2 26634:2 26641:1 26643:2 26667:2 26687:1 26688:2 26693:1 26705:2 26726:1 26743:1 26759:1 26764:1 26770:1 26785:1 26808:4 26810:4 26838:1 26852:1 26863:1 26864:1 26869:1 26873:1 26875:2 26881:2 26884:1 26890:1 26901:1 26910:1 26984:1 26997:4 27008:1 27010:1 27011:1 27015:10 27025:1 27032:1 27034:1 27037:1 27042:1 27048:1 27052:1 27053:1 27054:3 27059:1 27063:1 27087:1 27104:1 27112:2 27121:1 27167:1 27173:1 27176:1 27188:1 27194:1 27204:1 27211:1 27219:1 27227:3 27233:2 27244:1 27277:1 27340:2 27364:1 27379:1 27393:1 27394:5 27403:1 27406:1 27410:1 27420:1 27433:1 27439:3 27442:1 27466:2 27469:1 27475:2 27479:1 27493:1 27502:5 27509:1 27511:1 27512:2 27528:1 27548:1 27549:1 27561:1 27568:1 27572:1 27575:1 27578:3 27580:2 27585:2 27587:5 27588:1 27592:2 27596:2 27600:1 27602:1 27612:1 27640:1 27643:3 27647:1 27653:1 27654:1 27671:1 27676:1
|
162a046446166b5ad623dc6d185da0922b757167 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2489/CH7/EX7.10/7_10.sce | 1d7ac45b9abb480fdfcb517e4b17af899142940f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 241 | sce | 7_10.sce | clc
//Intitalisation of variables
clear
m= 1.247 //gm
hc= 2745 //cal deg^-1
mw= 122.12 //gm
dT= 2.87 //C
//CALCULATIONS
mh= dT*hc*mw/(m*1000)
//RESULTS
printf ('molar heat of combustion of benzoic acid = %.1f kcal mole^-1',mh)
|
140d94a44db1b2a88bbd74e884fb8d9c6650f0c8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2135/CH5/EX5.6/Exa_5_6.sce | e85f181d8002ca9ae0e540c6e37daa507a7aacc0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 288 | sce | Exa_5_6.sce | //Exa 5.6
clc;
clear;
close;
format('v',6);
//Given Data :
T=727+273;//Kelvin
T0=17+273;//Kelvin
deltaQ=4000;//KJ
deltaS=deltaQ/T;//KJ/K
A=deltaQ-T0*deltaS;//KJ
disp(A,"Availability of heat energy in KJ : ");
UA=T0*deltaS;//KJ
disp(UA,"Unavailable heat energy in KJ : ");
|
95bb398cfccb345bc1fdcd9402c53456b339ca43 | 584105ff5b87869494a42f632079668e4c3f82de | /TestCases/calib3d/decomposeProjectionMatrix/test2.sce | 2259dacb46cec734acf01110e7cb59b8d0df55d4 | [] | no_license | kevgeo/FOSSEE-Computer-Vision | 0ceb1aafb800580498ea7d79982003714d88fb48 | 9ca5ceae56d11d81a178a9dafddc809238e412ba | refs/heads/master | 2021-01-17T21:11:31.309967 | 2016-08-01T14:45:40 | 2016-08-01T14:45:40 | 63,127,286 | 6 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 279 | sce | test2.sce | //Checking if error message pops up when input is 3x3 instead of 3x4
inpt =[ 3 0 5
1 3 14 ;
10 20 1 ];
[cam rot trans rotX rotY rotZ euler] = decomposeProjectionMatrix(inpt);
//output->
// !--error 999
//Projection matrix should be 3x4.
|
43ab651513655226c87351aada85a016fc10f19a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1388/CH3/EX3.17/3_17.sce | c407468bd3f07b93c058a132f4cc641567a13f7b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 150 | sce | 3_17.sce | clc
//initialisation of variables
H= -40.023 //kcal
H1= -22.063 //kcal
//CALCULATIONS
H2= H-H1
//RESULTS
printf (' Enthalpy = %.3f kcal ',H2)
|
1cb6234a6256b648ce4f8eb41d3124325a295d9f | 5b45d3cab3903ca33bca192b4b4a2f0ecad71450 | /serialt.sce | 156dce7c9183855c7306935030ec54d2d2b4ab32 | [] | no_license | sureshnarayan/Scilab | 95a42dc9bbd59b51941041980db5b58760ae0a47 | 207d2b0ea684505eb3b59a438051ddd2854d4328 | refs/heads/master | 2016-08-08T14:29:38.423391 | 2015-07-02T17:33:33 | 2015-07-02T17:33:33 | 38,413,025 | 0 | 3 | null | null | null | null | UTF-8 | Scilab | false | false | 1,099 | sce | serialt.sce | COMPORT=8;
// mount library on handle "1"
h=slMount();
// handle "1": check availability of specified COM port
slCheck(h,COMPORT);
// handle "1": configure port
slConfig(h,9600,8,0,1);
// handle "1": open port
slOpen(h,COMPORT);
n=900
i=2;
t=1;
prevdata=0;
tic();
//h=openserial(8,"9600,n,8,1",blocking=%t);
//data=zeros(n*10);
plot(0,20)
a=gca(); // Handle on axes entity
a.x_location = "origin";
a.y_location = "origin";
while(i<=n)
//h=openserial(8,"9600,n,8,1",blocking=%t);
i=2+(10*toc());
//TCL_EvalStr("flush.h");
//fort("flush",h,1,"i","out",[1,1],2,"i")
//TCL_EvalStr("flush "+h)
//[q,flags]=serialstatus(h)
//disp(q)
//writeserial(h,'t');
//data(i)=ascii(readserial(h,1));
slFlush(h);
data=slReadByte(h,1);
data=data-100;
plot(i,data,'b-o');
xsegs([t,i],[prevdata,data]);
drawnow();
t=i;
prevdata=data;
//key=input();
//if key ~= ' ' then
// writeserial(h,key);
//end
//closeserial(h);
sleep(10); // wait a little to give data a chance to arrive
end
//closeserial(h);
slClose(h);
|
b5308fed24008e48c317fcdedd815ad44c440f5c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1445/CH1/EX1.19/Ex1_19.sce | 0b567f28882b1c2c4a584b393ad4a36a9a002d99 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,246 | sce | Ex1_19.sce | //CHAPTER 1- D.C. CIRCUIT ANALYSIS AND NETWORK THEOREMS
//Example 19
clc;
disp("CHAPTER 1");
disp("EXAMPLE 19");
//VARIABLE INITIALIZATION
v=7; //voltage source in Volts
I=7; //current source in Amperes
r1=1; //in Ohms
r2=2; //in Ohms
r3=1; //in Ohms
r4=2; //in Ohms
r5=3; //in Ohms
//SOLUTION
//by using mesh analysis, the following equations are obtained
//(1)I1+(-4)I2+(3)In=7.......eq (1)
//(-1)I1+(6)I1+(-3)In=0......eq (2)
//(0)I1+(1)I2+(-1)In=0.......eq (3)
//solving the equations by matrix method
A=[1 -4 3;-1 6 -3;0 1 -1];
b=[7;0;0];
x=inv(A)*b;
I1=x(1,:); //to access the 1st element of 3X1 matrix
I2=x(2,:); //to access the 2nd element of 3X1 matrix
IN=x(3,:); //to access the 3rd element of 3X1 matrix; IN is Norton current
r=r1+r5; //series combination of resistors
rN=(r*r4)/(r+r4); //parallel combination of resistors (Norton resistance)
I=(rN*IN)/(rN+r3);
vx=-I*r3;
disp(sprintf("By Norton Theorem, the value of Vx is %d V",vx));
//END
|
ebcb69eb4399c4b9680601a22382579e094dd88d | 931df7de6dffa2b03ac9771d79e06d88c24ab4ff | /Fortnite real shotgun training.sce | 157660d9bf4bceb136ce71c07cf457f0133a078f | [] | no_license | MBHuman/Scenarios | be1a722825b3b960014b07cda2f12fa4f75c7fc8 | 1db6bfdec8cc42164ca9ff57dd9d3c82cfaf2137 | refs/heads/master | 2023-01-14T02:10:25.103083 | 2020-11-21T16:47:14 | 2020-11-21T16:47:14 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 18,449 | sce | Fortnite real shotgun training.sce | Name=Fortnite real shotgun training
PlayerCharacters=Fortnite
BotCharacters=Fortnite.bot
IsChallenge=false
Timelimit=60.0
PlayerProfile=
AddedBots=
PlayerMaxLives=0
BotMaxLives=
PlayerTeam=0
BotTeams=
MapName=
MapScale=3.8125
BlockProjectilePredictors=true
BlockCheats=true
InvinciblePlayer=false
InvincibleBots=false
Timescale=1.0
BlockHealthbars=false
TimeRefilledByKill=0.0
ScoreToWin=1000.0
ScorePerDamage=1.0
ScorePerKill=0.0
ScorePerMidairDirect=0.0
ScorePerAnyDirect=0.0
ScorePerTime=0.0
ScoreLossPerDamageTaken=0.0
ScoreLossPerDeath=0.0
ScoreLossPerMidairDirected=0.0
ScoreLossPerAnyDirected=0.0
ScoreMultAccuracy=false
ScoreMultDamageEfficiency=false
ScoreMultKillEfficiency=false
GameTag=Fortnite
WeaponHeroTag=Pump shotgun, tactical shotgun, ar, automatic rifle,
DifficultyTag=3
AuthorsTag=Bik
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=true
BlockFCT=false
Description=An attempt at making a fortnite scenario. A work in progress. Use 80 fov. Jump around a lot.
GameVersion=1.0.6.2
ScorePerDistance=0.0
[Aim Profile]
Name=Medium Skill
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Aim Profile]
Name=Default
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Bot Profile]
Name=Fortnite
DodgeProfileNames=Long Strafes Close;Mimic
DodgeProfileWeights=2.0;1.5
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;0.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Medium Skill;Medium Skill;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=Fortnite
SeeThroughWalls=false
[Character Profile]
Name=Fortnite
MaxHealth=200.0
WeaponProfileNames=Pump;Tac Shotgun;FN ARv1;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=300.0
MaxCrouchSpeed=133.0
Acceleration=2000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=550.0
Gravity=1.5
AirControl=0.1
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=270.0
MainBBType=Cylindrical
MainBBHeight=75.0
MainBBRadius=10.0
MainBBHasHead=true
MainBBHeadRadius=8.0
MainBBHeadOffset=-8.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=65.0
ProjBBRadius=10.0
ProjBBHasHead=true
ProjBBHeadRadius=8.0
ProjBBHeadOffset=-8.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=Run.abilsprint;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=0.9
RespawnInvulnTime=1.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=false
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=1.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=true
TPSArmLength=140.0
TPSOffset=X=0.000 Y=20.000 Z=-2.500
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
[Dodge Profile]
Name=Long Strafes Close
MaxTargetDistance=500.0
MinTargetDistance=100.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.5
MaxLRTimeChange=1.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.5
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.1
MaxJumpTime=0.3
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Dodge Profile]
Name=Mimic
MaxTargetDistance=1245.901611
MinTargetDistance=373.770477
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.2
MaxLRTimeChange=0.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.5
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Mimic
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Weapon Profile]
Name=Pump
Type=Hitscan
ShotsPerClick=8
DamagePerShot=11.8
KnockbackFactor=1.0
TimeBetweenShots=1.2
Pierces=false
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=1.0
ReloadTimeFromPartial=1.0
DamageFalloffStartDistance=400.0
DamageFalloffStopDistance=1200.0
DamageAtMaxRange=9.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=None
HitParticleEffect=None
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.8
RecoilNegatable=false
DecalType=1
DecalSize=3.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=false
SpreadStationaryVelocity=300.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=false
AimPunchAmount=0.0
AimPunchResetTime=0.2
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=5
CancelReloadOnKill=true
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=103.0
ADSFOVScale=Clamped Horizontal
ADSAllowUserOverrideFOV=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=100.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=0.0,0.1,0.0,0.0
SpreadSCA=0.0,0.1,0.0,0.0
SpreadMSA=0.0,0.1,0.0,0.0
SpreadMCA=0.0,0.1,0.0,0.0
SpreadSSH=0.0,0.1,1.2,1.2
SpreadSCH=0.0,0.1,0.0,0.0
SpreadMSH=0.0,0.1,1.2,1.2
SpreadMCH=0.0,0.1,0.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=1.0
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
PBS1=1.25,23.0
PBS2=1.8,27.0
PBS3=1.1,360.0
PBS4=2.0,40.0
PBS5=1.6,98.0
PBS6=1.3,270.0
PBS7=1.7,170.0
[Weapon Profile]
Name=Tac Shotgun
Type=Hitscan
ShotsPerClick=8
DamagePerShot=10.0
KnockbackFactor=1.0
TimeBetweenShots=0.65
Pierces=false
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=8
AmmoPerShot=1
ReloadTimeFromEmpty=1.0
ReloadTimeFromPartial=1.0
DamageFalloffStartDistance=400.0
DamageFalloffStopDistance=1200.0
DamageAtMaxRange=6.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=None
HitParticleEffect=None
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.8
RecoilNegatable=false
DecalType=1
DecalSize=3.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=false
SpreadStationaryVelocity=300.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=false
AimPunchAmount=0.0
AimPunchResetTime=0.2
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=8
CancelReloadOnKill=true
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=103.0
ADSFOVScale=Clamped Horizontal
ADSAllowUserOverrideFOV=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=100.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=0.0,0.1,0.0,0.0
SpreadSCA=0.0,0.1,0.0,0.0
SpreadMSA=0.0,0.1,0.0,0.0
SpreadMCA=0.0,0.1,0.0,0.0
SpreadSSH=0.0,0.1,1.6,2.0
SpreadSCH=0.0,0.1,0.0,0.0
SpreadMSH=0.0,0.1,1.6,2.0
SpreadMCH=0.0,0.1,0.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
PBS1=1.25,23.0
PBS2=1.8,27.0
PBS3=1.1,360.0
PBS4=2.0,40.0
PBS5=1.6,98.0
PBS6=1.3,270.0
PBS7=1.7,170.0
[Weapon Profile]
Name=FN ARv1
Type=Hitscan
ShotsPerClick=1
DamagePerShot=19.0
KnockbackFactor=0.1
TimeBetweenShots=0.08
Pierces=false
Category=FullyAuto
BurstShotCount=2
TimeBetweenBursts=0.1
ChargeStartDamage=0.1
ChargeStartVelocity=X=1500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=3000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=3000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=3.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=30
AmmoPerShot=1
ReloadTimeFromEmpty=2.2
ReloadTimeFromPartial=2.2
DamageFalloffStartDistance=800.0
DamageFalloffStopDistance=1200.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.001
WallParticleEffect=Gunshot
HitParticleEffect=Blood
BounceOffWorld=true
BounceFactor=0.6
BounceCount=0
HomingProjectileAcceleration=6000.0
ProjectileEnemyHitRadius=0.1
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=1.0
ADSMoveFactor=0.75
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.1
RecoilNegatable=true
DecalType=1
DecalSize=15.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=30
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=95
ADSFOVOverride=90.0
ADSFOVScale=Vertical (1:1)
ADSAllowUserOverrideFOV=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.1
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=true
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=true
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=5.0
BlockedByWorld=true
SpreadSSA=2.0,2.0,-1.0,0.2
SpreadSCA=2.0,10.0,-2.6,2.4
SpreadMSA=2.0,2.0,-1.0,0.2
SpreadMCA=2.0,10.0,-2.6,2.4
SpreadSSH=2.0,2.0,-1.0,0.2
SpreadSCH=2.0,2.0,-1.0,0.18
SpreadMSH=2.0,2.0,-1.0,0.22
SpreadMCH=2.0,2.0,-1.0,0.18
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.45
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.15
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=0.1
StickyLock=false
HeadLock=true
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Sprint Ability Profile]
Name=Run
MaxCharges=1.0
ChargeTimer=0.001
ChargesRefundedOnKill=0.0
DelayAfterUse=0.5
FullyAuto=false
AbilityDuration=0.0
BlockAttackWhileSprinting=false
AbilityBlockedWhenAttacking=true
SpeedModifier=1.5
45DegreeSprint=true
90DegreeSprint=true
135DegreeSprint=true
180DegreeSprint=true
TapToSprint=false
Block45DegreesWhenSprinting=false
AIUseInCombat=true
AIUseOutOfCombat=false
AIUseOnGround=true
AIUseInAir=true
AIReuseTimer=1.0
AIMinSelfHealth=0.0
AIMaxSelfHealth=100.0
AIMinTargHealth=0.0
AIMaxTargHealth=100.0
AIMinTargDist=0.0
AIMaxTargDist=2000.0
AIMaxTargFOV=15.0
AIDamageReaction=true
AIDamageReactionIgnoreChance=0.0
AIDamageReactionMinDelay=0.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=0.0
AIDamageReactionResetTimer=0.1
[Map Data]
|
9be2ec9d022755552c90a746329ac863b7b589d2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1802/CH2/EX2.9/Exa2_9.sce | a0fdd7aab62b57b7803fc9cc780cccc09f68f325 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 373 | sce | Exa2_9.sce | //Exa 2.9
clc;
clear;
close;
//Given Data :
format('v',6);
P=30*10^6;//in watts
V=220*10^3;//in Volt
l=250*10^3;//in meter
Eta=85;//in %
rho=3*10^-8;//in ohm-meter
cosfi=0.8;//power factor
W=P*(100-Eta)/100;//in watts
I=P/(sqrt(3)*V*cosfi);//in Ampere
a=3*I^2*rho*l/W;//in m^2
Volume=3*a*l;//in m^3
disp(Volume,"Volume of the conductor material(in m^3) :"); |
e80c40e28d93435781f13f8bec359cb2daa683c4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3755/CH10/EX10.2/Ex10_2.sce | 80a737297349a817066ef8f166f7504c2569cbd2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 401 | sce | Ex10_2.sce | clear
//
//
//
//Variable declaration
k=4;
epsilon0=9*10^-12; //relative permeability(F/m)
E=10^6; //electric field(V/m)
//Calculations
D=k*epsilon0*E; //electric displacement(C/m^2)
P=epsilon0*E*(k-1); //polarisation(C/m^2)
//Result
printf("\n electric displacement is %0.0f *10^-6 C/m^2",D*10^6)
printf("\n polarisation is %0.0f *10^-6 C/m^2",P*10^6)
|
a1f02eedbfb075a96992667668b77c35588911db | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.4.1/Unix-Windows/scilab-2.4.1/macros/scicos/do_set_info.sci | 4210131fe0c18adfd086e64be0174e1a2e01d6d0 | [
"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 | 357 | sci | do_set_info.sci | function [ok,new_info]=do_set_info(info)
//This function may be redefined by the user to handle definition
//of the informations associated with the current diagram
// Copyright INRIA
if prod(size(info))==0 then
info=list(' ')
end
new_info=x_dialog('Set Diagram informations',' ')
if new_info==[] then
ok=%f
else
ok=%t
new_info=list(new_info)
end
|
6bd995544b4b8dd5200bd0c16d48fa89612ec525 | 449d555969bfd7befe906877abab098c6e63a0e8 | /896/CH13/EX13.5/5.sce | da77da040126c6df2dae07a3e52d51ddb624a9bb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 500 | sce | 5.sce | clc
//Example 13.5
//Calculate the headstrom ,reynold numbers and the fanning friction factor
tow_yield=3.8//Pa
mew=0.00686//Pa.s
D=0.0206//m
rho=1530//kg/m^3
V=3.47//m/s
He=tow_yield*D^2*rho/mew^2//dimentionless (headstrom number)
printf("The headstrom number is %f\n",He);
R=D*V*rho/mew//dimentionless (reynolds number)
printf("The reynolds number is %f\n",R);
dP=11069//Pa/m
f=dP*D/(4*rho*V^2/2)//dimentionless (fanning friction factor)
printf("The fanning friction factor is %f",f); |
294c68fe71afa9a69a33fdc38e3e553290508103 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.5/tests/examples/xclip.man.tst | 08c94461978c9de6c0f00498079b2ba3ef524236 | [
"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 | 555 | tst | xclip.man.tst | clear;lines(0);
x=0:0.2:2*%pi;
x1=[sin(x);100*sin(x)];
y1=[cos(x);100*cos(x)];
y1=y1+20*ones(y1);
// No clip
plot2d([-100,500],[-100,600],[-1,-1],"022")
xsegs(10*x1+200*ones(x1),10*y1+200*ones(y1))
// rectangle clipping zone
xbasc(); plot2d([-100,500],[-100,600],[-1,-1],"022")
xrect(150,460,100,150)
xclip(150,460,100,150)
xsegs(10*x1+200*ones(x1),10*y1+200*ones(y1))
// usual rectangle boundaries clipping zone
xbasc(); plot2d([-100,500],[-100,600],[-1,-1],"022")
xclip("clipgrf")
xsegs(10*x1+200*ones(x1),10*y1+200*ones(y1));
// clipping of
xclip()
|
831c50238f0bc92480a74ee5026bcea097c0aed4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /479/CH13/EX13.14/Example_13_14.sce | 5c812b36118dba57a3ffeadc27c56ba4f3ebbab4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 849 | sce | Example_13_14.sce | //Chemical Engineering Thermodynamics
//Chapter 13
//Thermodynamics in Phase Equilibria
//Example 13.14
clear;
clc;
//Given
P = 760;//Total pressure of the mixture in mmHg
T = [80 90 95 100];//Temperature in deg celsius
P1 = [87.4 129.0 162.0 187.0];//vapour pressure of 1,1,2,2-tetrachloroethane in mmHg
P2 = [356 526 648 760];//Vapour pressure of water in mmHg
//To Calculate the composition of the vapour evolved
clf;
plot2d(T,P1,style=3);
plot2d(T,P2,style=5);
xtitle(" ","Temp in deg cel","Vapour pressure in mmHg");
legend("1,1,2,2-tetrachloroethane","Water");
//From the graph we conclude that at 93.8 deg cel
P1 = 155;//in mm Hg
P2 = 605;//in mm Hg
y_1 = P1/P;
y_2 = P2/P;
mprintf('Mole fraction of 1,1,2,2-tetrachloroethane in vapour is %f',y_1);
mprintf('\n Mole fraction of water in vapour is %f',y_2);
//end |
c7ea419383ad192b2605d0ae7fee24dd85a7a7d0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3720/CH2/EX2.5/Ex2_5.sce | 3a1d407a6c0d89a165922d32551f2a9a924fddb1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 449 | sce | Ex2_5.sce | // Example 2_5
clc;clear;funcprot(0);
// Given values
T=20;// degree celsius
sigma_s=0.073; // the surface tension of water in N/m
phi=0; // the contact angle of water with glass in degree
rho=1000;// kg/m^3
g=9.81;// m/s^2
R=0.3*10^-3; // Radius of glass tube in m
//Calculation
h=((2*sigma_s)/(rho*g*R))*cos(phi);// the capillary rise of water in m
h=h*100;// m to cm
printf('The capillary rise of water in a tube h=%0.1f cm\n',h);
|
2603e15dac05d25e5e0a777946ea886c502ccec0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3710/CH2/EX2.5/Ex2_5.sce | 81c3ab51f22f53d7a0b3836cc6931de31f55ec18 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 703 | sce | Ex2_5.sce | //Example 2.5, Page Number 70
//The Function fpround(dependency) is used to round a floating point number x to n decimal places
//Contact Potential Difference
clc;
nd=10**22 //Donor Impurity Level in per meter cube
na=10**24 //Acceptor Impurity Level in per meter cube
n=2.4*(10**19) //Intrinsic Electron Concentration in per meter cube
T=290 //Temperature in Kelvin
k=1.38*(10**-23) //Botlzmann Constant in meter square kilogram per second square Kelvin
e=1.6*(10**-19) //Charge of an electron in coulombs
//From Equation 2.45
v=(k*T/e)*log1p((nd*na)/(n**2)) //v is the contact potentital difference in volts
v=fpround(v,2)
mprintf("The Contact Potential Difference is:%.2f Volts ",v)
|
836e98b62c9b58c7823ead43113195a4b4fe428c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1862/CH11/EX11.9/C11P9.sce | b1cb81b4c507f26fc6dc5f3571efd23840ebddae | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,474 | sce | C11P9.sce |
clear
clc
//to find speed of crate according to observer o
////to find work and change in kinetic energy
// GIVEN:
//refer to figure 11-18(a),(b)from page no. 242
//force applied
Fx = 5.63//in N
//mass of crate
m = 12.0//in kg
//speed of train
vx = 15.0//in m/s
//distance travelled by crate
s = 2.4//in meters
// SOLUTION:
//using work-energy principle
//work done
W = Fx*s//in J
//initial kinetic energy according to observer in car
Ki = 0
////final kinetic energy according to observer in car
Kf = W -Ki
//speed of crate according to observer o
vf = sqrt(2*Kf/m)//in m/s
//applying impulse-momentum theorem
//time interval
delta_t = (m*vf/Fx)//in seconds
//forward distance travelled
d = vx*delta_t//in meters
//total distance moved by crate
s_dash = d+s//in meters
//work done
W_dash = Fx*s_dash//in J
//final speed of crate
vf_dash = vx+vf//in m/s
//change in kinetic energy
deltaK_dash = (1/2*m*(vf_dash^2))-(1/2*m*(vx^2))
W_dash = round(W_dash)
deltaK_dash = round(deltaK_dash)
printf ("\n\n Final kinetic energy according to observer in car Kf = \n\n %.1f J",Kf);
printf ("\n\n Speed of crate according to observer o vf = \n\n %.2f m/s",vf);
printf ("\n\n Time interval delta_t = \n\n %.2f seconds",delta_t);
printf ("\n\n Work done W_dash = \n\n %3i J",W_dash);
printf ("\n\n Change in kinetic energy deltaK_dash = \n\n %3i J",deltaK_dash);
printf ("\n\n As W_dash = deltaK_dash work-energy principle is valid")
|
bae612e5d318d6f55d5c5a61d88ed8bfb88b3fec | b8b6499ad21575c5c7c4491b773bdc5d001c839e | /TP1/exo2.sce | 274a94fad7c21fe3e0db8dae73b8d40e3ece89c9 | [] | no_license | m4ssi/Calcul_Numerique | c15a99e536ba37314dd9a22650edcdfbc63e9a2b | e5ed9bcd2338d66ade355e2b4f88276b842e7ccc | refs/heads/master | 2023-01-20T00:56:18.263021 | 2020-12-03T01:52:33 | 2020-12-03T01:52:33 | 318,042,789 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 825 | sce | exo2.sce |
function test_jouet()
rand ( "seed", 42);
frelres = zeros ( 1, 1000);
brelres = zeros ( 1, 1000);
step = [1:1000];
i = 1;
for n = step
A = rand (n, n); // Création d'une matrice
xex = rand (n, 1); // Création d'un vecteur
b = A*xex; // calcul de b
x = A\b; // Calcul de x a partir de A et b
frelres(i) = norm (x-xex)/norm (xex); // Calcul de l'erreur avant (erreur sur x)
brelres(i) = norm (b-A*x)/norm (b); // Calcul de l'erreur arrière (erreur sur b)
i = i+1;
end
xtitle ( "Erreur avant et arrière du programme jouet", "n", "error");
plot ( step, log(frelres), "r-");
plot ( step, log(brelres), "b-");
legend ( 'Forward error', 'Beward error');
xs2png(0, "img/jouet_error.png");
endfunction
|
e0f15f3ace795a5a1a650d0439381c6554643e78 | 449d555969bfd7befe906877abab098c6e63a0e8 | /626/CH2/EX2.6/2_6.sce | 35582e642d9b7d283e09e1a46c12e577ea2faa1e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,342 | sce | 2_6.sce | clear;
clc;
close;
disp("Example2.6")
d=0.2 //Diameter in meters.
M1=0.2 //inlet Mach no.
p1=100*10^3 //inlet pressure in Pa
Tt1=288 //total inlet temperature in K
q=100*10^3 //rate of heat transfer to fluid in Watt.
rg=287 //Gas constant in J/kg.K.
gm=1.4 //gamma
//(a)inlet mass flow:
m=((gm/rg)^(1/2))*(p1/(Tt1)^(1/2))*3.14*(d^2)/4*(M1/(1+((gm-1)/2)*(M1^2))^((gm+1)/(2*(gm-1))));
//(b)
qm=q/m; //Heat per unit mass.
//Tt1/Tcr=0.1736, pt1/Pcr=1.2346, ((Delta(s)/R)1=6.3402,p1/Pcr=2.2727)
Tcr=Tt1/0.1736;
Pcr=p1/2.2727;
//From energy equation:
cp=(gm/(gm-1))*rg;
Tt2=Tt1+(q/cp);
q1cr=cp*(Tcr-Tt1)/1000;
M2=0.22;
//From table : pt2/Pcr=1.2281, (Delta(s)/R)2=5.7395, p2/Pcr=2.2477.
//The percent total pressure drop is (((pt1/Pcr)-(pt2/Pcr))/(pt1/Pcr))*100.
p2=2.2477*Pcr;
dp=((1.2346-1.2281)/1.2346)*100;
//Entropy rise is the difference between (delta(s)/R)1 and (delta(s)/R)2.
ds=6.3402-5.7395;
//Static pressure drop in duct due to heat transfer is
dps=((p1/Pcr)-(p2/Pcr))*Pcr/1000;
disp(m,"(a)Mass flow rate through duct in kg/s:")
disp(q1cr,"(b)Critical heat flux that would choke the duct for the M1 in kJ/kg:")
disp(M2,"(c)The exit Mach No.:")
disp(dp,"(d)The percent total pressure loss (%):")
disp(ds,"(e)The entropy rise (delta(s)/R):")
disp(dps,"(f)The static pressure drop Delta(p) in kPa") |
5975d5cb03cb6eda9320bf2112847aba62c1969f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1793/CH15/EX15.4/15Q4.sce | 98b8f00a1c028b894ac03dbaaf5c0118b8600b2d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 275 | sce | 15Q4.sce | clc
Gs=17.29
d=9.15
d1=6.1
D=d/d1
a=40
m=0.175
b=40
H=6.1
Cu=H*Gs*m
printf('a)The undrained cohesion of the clay Cu = %f kN/m^2\n',Cu)
printf(' b)The nature of the critical circle is midpointcircle\n')
d=1.5
b=40
n=0.9
D1=n*H
printf(' c)Distance = %f m',D1)
|
0cc97ce2d32c3b846325fd85c80dead486c1af86 | e8dbcf469ba8a31d6926ba791ebc5dcccd50282b | /css/Scripts/Funciones/get_religion.tst | 8f57add9004d425680bef3efaac2241d7c2702ef | [] | no_license | bryanjimenezchacon/bryanjimenezchacon.github.io | 5f2a0f1dbfbc584a65dece48f98b1c13d755512f | 7062d1860934808265c05491007c83f69da1112a | refs/heads/master | 2021-01-23T17:20:11.542585 | 2015-10-10T05:52:52 | 2015-10-10T05:52:52 | 41,244,377 | 2 | 0 | null | 2015-08-26T15:46:04 | 2015-08-23T09:52:06 | JavaScript | UTF-8 | Scilab | false | false | 171 | tst | get_religion.tst | PL/SQL Developer Test script 3.0
4
begin
-- Call the function
:result := get_religion(preligion_id => :preligion_id);
end;
2
result
1
Panteismo
5
preligion_id
1
1
4
0
|
71a275eaab43b57ff73a165a810abb81850de4ad | 449d555969bfd7befe906877abab098c6e63a0e8 | /545/CH10/EX10.8/ch_10_eg_8.sce | 54f6f083c6ab802a2ef898f2d4c4e367908a14fa | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 915 | sce | ch_10_eg_8.sce | clc
disp("the soln of eg 10.8-->Gauss Seidel Method");
for i=1:9,tnew(i)=101,e(i)=1 //assumed values
end
t=1e-6
while e(1)>t&e(2)>t&e(3)>t&e(4)>t&e(5)>t &e(6)>t& e(7)>t& e(8)>t & e(9)>t do
for i=1:9, told(i)=tnew(i),end
//using eqn 10.10 for the interior nodes and convective boundary conditions for corner nodes
tnew(1)=(told(2)+50+.5*told(4)+100/3)*3/7
tnew(2)=(tnew(1)+told(3)+told(5)+100)/4
tnew(3)=(tnew(2)+told(6)+600)/4
tnew(4)=(told(5)+.5*tnew(1)+.5*told(7)+100/3)*3/7
tnew(5)=(tnew(2)+told(8)+told(6)+tnew(4))/4
tnew(6)=(tnew(3)+tnew(5)+told(9)+500)/4
tnew(7)=(.5*tnew(4)+.5*told(8)+100/3)*3/4
tnew(8)=(tnew(5)+.5*tnew(7)+.5*told(9)+100/3)*3/7
tnew(9)=(tnew(6)+100/3+.5*tnew(8)+250)*3/7
for i=1:9,e(i)=abs(tnew(i)-told(i))
end
end
disp("the values of T from 1st element to last is");
for i=1:9,disp(tnew(i));
end |
69eecbcc11982cc7ce9e4409e75ba7af306a7992 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1628/CH7/EX7.8/Ex7_8.sce | 2f4ebce2d12e29ce920563b7186fd0f2dacf6c90 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 774 | sce | Ex7_8.sce |
// Example 7.8
N2=1700; // turns of Coil 1
Q2=0.8*10^-3; // total Megnetic Flux
I2=6; // Current in A Coil 2
L2=N2*(Q2/I2); // Formula for (Self Inductance of Coil 1)
disp('(a) Self Induction of a Coil 2 = '+string(L2)+' H');
N1=600; // turns of Coil 2
L1=L2*(N1^2/N2^2); // Formula for(Self Inductance of Coil 2)
disp('(b) Self Induction of a Coil 1 = '+string(L1)+' H');
Q21=0.5*10^-3; // Megnetic Flux in 1st Coil
k=Q21/Q2; // Constant
disp( '(c) Perposnality Constant (k) = '+string(k));
M=k*sqrt(L1*L2); // Mutual Inductance of Coil 1 & 2
disp('(d) Mutual induction of a Coil = '+string(M)+' H');
// p 233 7.8 |
f1e1802c398b65a25067a349ded0ce21c0397a76 | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.3/Unix-Windows/scilab-2.3/macros/scicos/cos2cosf.sci | a57e3bc974be709c6ec0afed7caa01fb87f14ba2 | [
"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 | 1,065 | sci | cos2cosf.sci | function t=cos2cosf(u,scs_m,count)
//write scilab instructions whose evaluation
//returns the value of scicos data structure scs_m.
// in the opened file associated with logical unit u
[lhs,rhs]=argn(0)
if rhs<3 then
count=0,
lname='scs_m'
else
count=count+1
lname='scs_m_'+string(count)
end
bl=' '
lmax=80-3*count
t=lname+'=list()'
t1=sci2exp(scs_m(1),lmax);
t=[t;lname+'(1)='+t1(1);t1(2:$)]
write(u,t,'(a)')
for k=2:size(scs_m)
t=[];
o=scs_m(k)
if o(1)=='Block' then
model=o(3)
if model(1)=='super'| model(1)=='csuper' then
t1=cos2txt(o,count)
t=[t;bl(ones(t1))+t1;lname+'('+string(k)+')='+'scs_m_'+string(count+1)]
else
lhs=lname+'('+string(k)+')='
t1=sci2exp(o,lmax-length(lhs))
bl1=' ';bl1=part(bl1,1:length(lhs))
n1=size(t1,1)
t=[t;lhs+t1(1);bl1(ones(n1-1,1))+t1(2:$)]
end
else
lhs=lname+'('+string(k)+')='
t1=sci2exp(o,lmax-length(lhs))
bl1=' ';bl1=part(bl1,1:length(lhs))
n1=size(t1,1)
t=[t;lhs+t1(1);bl1(ones(n1-1,1))+t1(2:$)]
end
write(u,t,'(a)')
end
|
691b67ebd4c55c474c208210a15b538280233929 | daf9a7434ea9996fc591a79030570f48e396cdc5 | /Poisson/Poisson.sce | 05254d1a4bd3d9500d36089159bcd290a43c2a70 | [] | no_license | isabelle-le/MonteCarloSimulation | c8dbfc2f5485f6dc6291654032ecad6c01cce401 | f96e0a11569b3e4dade452d99e9c1bbd6c3efb81 | refs/heads/master | 2020-04-05T22:40:20.686962 | 2018-11-12T19:18:50 | 2018-11-12T19:18:50 | 157,263,752 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 647 | sce | Poisson.sce | //Poisson calculate Exp and Var
//Le Thu Huong ADEO1
clc
N = 500000;
lamda= 4;
Exp = 0;
var =0;
for i = 1:N
cumul = exp(-lamda);
proba = cumul;
u = rand();
alpha = 0;
while( u > cumul) then
alpha = alpha + 1;
proba = proba * lamda/alpha;
cumul = cumul + proba;
else
poisson = alpha;
end
Exp = Exp + poisson / N;
var = var + poisson^2 / N;
end
Var = var - Exp^2;
disp(' IT IS POISSON SIMILATION ');
disp(Exp,'in theoritical,E[x] = lamda = 3 & our similation E[x] = ');
disp(Var,'in theoritical,Var[x] = lamda = 3 & our simulation Var[x] = ');
|
cba8ef41b4a785a8bc2d94d5c356e1b2141022ee | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/tweet/bow/bow.19_8.tst | c0a157c25ae180ccbd9190aed16e32eaecdc6092 | [] | 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 | 22,619 | tst | bow.19_8.tst | 19 7:0.058823529411764705 40:0.3333333333333333 44:1.0 49:1.0 76:1.0 103:0.4 163:0.4 195:0.25 204:1.0 239:0.2 328:1.0 426:0.5 700:1.0 962:1.0 1275:0.5 2055:1.0 4513:1.0 5561:1.0
19 40:0.6666666666666666 103:0.2 123:0.020202020202020204 124:1.0 133:0.125 167:0.1 195:0.25 306:0.3333333333333333 506:0.14285714285714285 710:1.0 1150:0.125 2687:0.5 4537:1.0 5050:1.0
19 7:0.058823529411764705 20:0.1111111111111111 24:0.5 25:0.1 40:0.3333333333333333 47:1.0 49:2.0 73:2.0 123:0.04040404040404041 152:1.0 159:0.3333333333333333 167:0.1 245:0.1111111111111111 265:1.0 376:1.0 459:0.1 506:0.14285714285714285 700:1.0 722:0.3333333333333333 1082:0.5 1394:1.0 1610:1.0 4722:1.0 5178:1.0
19 25:0.1 46:1.0 124:1.0 167:0.1 229:1.0 245:0.1111111111111111 374:1.0 492:0.14285714285714285 556:0.3333333333333333 1012:1.0 2573:0.5 4627:1.0 4661:0.3333333333333333 5572:1.0
19 13:0.25 20:0.1111111111111111 23:0.3333333333333333 25:0.1 32:0.5 34:0.2 49:2.0 90:0.2 133:0.125 135:1.0 142:0.5 260:1.0 473:1.0 531:0.25 799:1.0 923:1.0 2653:0.25 3071:1.0 4324:1.0 4724:1.0 4960:1.0 5208:1.0
19 32:0.5 34:0.1 98:0.3333333333333333 103:0.2 106:0.09090909090909091 195:0.25 2259:0.5 2687:0.5 3994:1.0 4560:1.0 4661:0.3333333333333333
19 32:0.5 34:0.1 49:1.0 88:0.2 123:0.010101010101010102 130:1.0 167:0.1 226:1.0 472:0.2 958:1.0 964:1.0 1303:1.0 3142:1.0 3348:1.0 4626:1.0 4935:1.0 5082:1.0 5315:1.0
19 7:0.058823529411764705 14:0.25 49:1.0 68:0.2 123:0.010101010101010102 179:0.3333333333333333 239:0.2 443:0.25 552:1.0 727:0.5 1348:0.041666666666666664 2167:1.0 2606:0.16666666666666666 4690:0.5 4796:1.0 5257:1.0 5310:1.0
19 23:0.3333333333333333 32:1.0 34:0.1 51:1.0 107:1.0 130:1.0 133:0.125 140:1.0 167:0.1 179:0.3333333333333333 234:0.1111111111111111 486:0.6666666666666666 579:1.0 1061:0.5 1383:1.0 1896:1.0 1903:1.0 3267:1.0 4447:1.0 4537:1.0 4724:2.0 4755:1.0 4842:1.0 6093:1.0
19 7:0.11764705882352941 14:0.25 15:0.2 68:0.4 103:0.2 769:1.0 1010:0.5 1031:1.0 1348:0.041666666666666664
19 7:0.058823529411764705 20:0.1111111111111111 24:0.5 49:5.0 72:1.0 90:0.2 107:1.0 123:0.010101010101010102 163:0.2 443:0.25 460:0.5 506:0.14285714285714285 556:0.3333333333333333 700:1.0 797:1.0 836:0.5 847:0.5 909:0.5 1167:1.0 1304:1.0 1371:0.5 2030:1.0 2037:1.0 2254:1.0 2375:1.0 3149:1.0 4806:1.0 4833:1.0
19 14:0.25 20:0.1111111111111111 49:1.0 106:0.09090909090909091 123:0.010101010101010102 179:0.3333333333333333 212:0.6666666666666666 443:0.25 700:1.0 1150:0.125 1381:1.0 2319:1.0 2911:1.0 4481:1.0 4722:1.0
19 6:0.5 7:0.058823529411764705 20:0.2222222222222222 24:0.5 25:0.1 39:1.0 49:3.0 68:0.2 73:1.0 123:0.010101010101010102 138:0.5 159:0.3333333333333333 181:0.3333333333333333 243:0.2 282:1.0 420:1.0 426:0.5 449:1.0 697:1.0 773:1.0 790:1.0 958:1.0 3179:1.0 4842:1.0
19 7:0.058823529411764705 15:0.2 23:0.3333333333333333 25:0.1 31:0.14285714285714285 34:0.1 49:2.0 88:0.2 123:0.020202020202020204 124:1.0 133:0.125 318:1.0 388:1.0 420:1.0 459:0.2 492:0.14285714285714285 537:1.0 645:2.0 749:1.0 788:1.0 1494:1.0 1505:1.0 3158:1.0 3819:1.0 4771:1.0 4842:1.0 5262:1.0 5927:1.0
19 7:0.058823529411764705 20:0.2222222222222222 23:0.3333333333333333 25:0.1 32:0.5 34:0.1 88:0.2 123:0.010101010101010102 186:1.0 203:0.125 243:0.2 388:1.0 460:0.5 506:0.14285714285714285 702:1.0 1051:1.0 1061:0.5 1956:1.0 1982:0.2 2573:0.5 2606:0.16666666666666666 3129:1.0 3228:1.0 3378:1.0 4545:1.0 4654:0.5 4693:1.0 4768:1.0 5668:1.0 5722:1.0 5728:1.0
19 7:0.058823529411764705 25:0.1 31:0.2857142857142857 32:0.5 34:0.2 40:0.3333333333333333 76:1.0 90:0.2 123:0.030303030303030304 124:1.0 138:0.5 220:0.3333333333333333 234:0.1111111111111111 274:1.0 282:1.0 372:2.0 389:1.0 447:0.5 473:1.0 573:0.3333333333333333 731:1.0 1275:0.5 1371:0.5 1476:1.0 1983:1.0 2064:1.0 2606:0.16666666666666666 4966:1.0 5257:1.0 5315:1.0
19 7:0.058823529411764705 24:0.5 25:0.1 62:1.0 68:0.2 88:0.2 90:0.4 103:0.2 124:1.0 167:0.1 234:0.1111111111111111 259:2.0 1022:1.0 1061:0.5 1348:0.041666666666666664 1398:1.0 1399:1.0 1406:1.0 2064:1.0 2167:1.0 2653:0.25 4968:0.2 5052:1.0
19 7:0.058823529411764705 14:0.25 20:0.1111111111111111 24:1.0 25:0.4 32:0.5 33:1.0 34:0.1 40:0.3333333333333333 49:2.0 62:1.0 123:0.030303030303030304 133:0.125 152:1.0 167:0.1 303:2.0 307:1.0 310:1.0 388:1.0 460:0.5 473:1.0 619:1.0 776:1.0 861:1.0 963:0.5 1186:1.0 1383:1.0 2347:1.0 2375:1.0 3487:1.0 3561:1.0 4093:1.0 5161:1.0
19 7:0.17647058823529413 13:0.25 14:0.25 20:0.1111111111111111 23:0.3333333333333333 34:0.2 62:1.0 68:0.2 77:1.0 103:0.4 123:0.010101010101010102 124:1.0 133:0.125 167:0.1 220:0.3333333333333333 225:1.0 282:1.0 388:1.0 393:1.0 607:0.5 709:1.0 749:1.0 990:1.0 1381:1.0 2411:1.0 3834:1.0 4513:1.0 4562:1.0 4936:2.0 5096:1.0 5582:1.0 5909:1.0
19 7:0.058823529411764705 44:1.0 51:1.0 91:0.5 103:0.2 224:1.0 234:0.2222222222222222 298:1.0 492:0.14285714285714285 579:1.0 731:1.0 1061:0.5 1382:1.0 1532:2.0 3905:1.0 4574:1.0 4612:1.0 4693:1.0 5082:1.0 5177:1.0 5526:1.0 5843:1.0 6158:1.0
19 7:0.058823529411764705 32:0.5 123:0.010101010101010102 167:0.1 282:1.0 492:0.14285714285714285 722:0.3333333333333333 1150:0.125 2643:1.0 4481:1.0 5178:1.0
19 24:1.0 25:0.1 32:1.0 40:0.3333333333333333 49:1.0 68:0.2 88:0.4 106:0.09090909090909091 123:0.020202020202020204 124:1.0 133:0.125 177:0.3333333333333333 179:0.3333333333333333 203:0.125 239:0.2 259:1.0 388:1.0 393:1.0 459:0.1 472:0.2 1043:0.5 1150:0.125 1956:1.0 2073:1.0 2375:2.0 3845:1.0 4537:1.0 5090:0.5
19 7:0.17647058823529413 13:0.25 24:0.5 25:0.2 34:0.1 103:0.2 121:1.0 123:0.04040404040404041 159:0.6666666666666666 245:0.1111111111111111 259:1.0 303:1.0 304:1.0 449:1.0 486:0.3333333333333333 506:0.14285714285714285 2347:1.0 3291:1.0 3404:1.0 5144:1.0 5923:1.0
19 7:0.11764705882352941 40:0.3333333333333333 49:1.0 76:1.0 88:0.2 123:0.020202020202020204 124:1.0 138:0.5 163:0.2 486:0.3333333333333333 636:0.5 700:1.0 1061:0.5 2404:1.0 3404:1.0 4743:1.0 5118:1.0 5310:1.0 6299:1.0
19 13:0.25 20:0.2222222222222222 49:1.0 63:1.0 88:0.2 123:0.020202020202020204 245:0.1111111111111111 506:0.14285714285714285 692:0.5 749:1.0 1348:0.041666666666666664 1380:0.5 1398:1.0 1489:0.5 2357:1.0 2501:1.0 4743:1.0 4816:1.0
19 123:0.010101010101010102 234:0.1111111111111111 245:0.1111111111111111 506:0.14285714285714285 573:0.3333333333333333 579:1.0 731:1.0 1061:0.5 1982:0.2 2606:0.16666666666666666 2653:0.25 5908:1.0
19 32:0.5 34:0.1 62:1.0 68:0.2 88:0.2 167:0.1 4690:0.5 5064:0.5 5811:1.0
19 7:0.11764705882352941 11:0.16666666666666666 24:0.5 34:0.1 49:1.0 90:0.2 123:0.010101010101010102 124:1.0 130:1.0 245:0.1111111111111111 280:1.0 308:0.125 325:1.0 329:1.0 413:1.0 506:0.14285714285714285 645:1.0 1348:0.041666666666666664 1804:1.0 3071:1.0 3772:1.0 4654:0.5
19 7:0.058823529411764705 123:0.020202020202020204 167:0.1 308:0.125 645:1.0 1896:1.0 2993:1.0 3404:1.0 4968:0.2
19 7:0.058823529411764705 73:1.0 224:1.0 245:0.1111111111111111 398:0.08333333333333333 492:0.2857142857142857 787:1.0 996:1.0 3325:1.0 4562:1.0 6282:1.0
19 24:0.5 25:0.1 34:0.1 40:0.3333333333333333 88:0.4 163:0.4 225:1.0 306:0.3333333333333333 310:1.0 388:2.0 393:2.0 412:0.3333333333333333 443:0.25 798:1.0 980:1.0 1167:1.0 1465:1.0 4722:1.0 5145:1.0
19 7:0.058823529411764705 25:0.1 32:0.5 34:0.2 62:1.0 68:0.2 80:1.0 123:0.010101010101010102 225:1.0 281:1.0 308:0.125 335:1.0 472:0.2 1167:1.0 1326:1.0 1367:1.0 1461:1.0 2302:1.0 2466:1.0 2835:1.0 4481:1.0 4532:1.0 4690:0.5
19 20:0.2222222222222222 24:0.5 25:0.2 40:0.3333333333333333 49:1.0 62:1.0 73:1.0 123:0.030303030303030304 133:0.125 179:0.3333333333333333 203:0.125 220:0.3333333333333333 426:0.5 492:0.14285714285714285 506:0.14285714285714285 530:0.5 645:1.0 776:1.0 1022:1.0 1150:0.125 1380:0.5 1408:1.0 1832:1.0 1878:1.0 4463:1.0 4563:1.0 4954:1.0 5493:0.5
19 24:1.5 25:0.3 26:1.0 47:1.0 90:0.2 131:1.0 159:0.3333333333333333 259:1.0 260:1.0 373:0.16666666666666666 1217:1.0 1898:1.0 2458:0.3333333333333333 4690:0.5 4722:1.0 4991:1.0
19 20:0.2222222222222222 24:0.5 49:2.0 123:0.020202020202020204 133:0.125 159:0.3333333333333333 171:0.3333333333333333 181:0.3333333333333333 486:0.6666666666666666 506:0.14285714285714285 731:1.0 809:1.0 836:0.5 1080:1.0 1303:1.0 1348:0.041666666666666664 2399:1.0 4202:1.0 4217:1.0 4357:1.0 4465:0.3333333333333333 4816:1.0 5526:1.0
19 13:0.25 25:0.2 40:0.3333333333333333 73:1.0 77:1.0 88:0.2 103:0.2 123:0.010101010101010102 171:0.3333333333333333 274:1.0 460:0.5 799:1.0 958:1.0 999:1.0 1867:0.3333333333333333 2291:1.0 4734:1.0 5330:1.0
19 20:0.1111111111111111 24:0.5 31:0.14285714285714285 34:0.1 49:1.0 88:0.4 90:0.2 123:0.010101010101010102 124:1.0 186:1.0 259:1.0 426:0.5 443:0.25 492:0.14285714285714285 506:0.14285714285714285 662:1.0 700:1.0 713:1.0 797:1.0 820:1.0 846:1.0 931:1.0 2183:1.0 2384:1.0 3075:1.0 4463:1.0 4574:1.0 5582:1.0 5711:1.0 5999:1.0
19 7:0.058823529411764705 20:0.1111111111111111 23:0.3333333333333333 25:0.1 34:0.1 40:0.3333333333333333 51:1.0 68:0.2 90:0.2 103:0.4 121:1.0 123:0.020202020202020204 245:0.1111111111111111 447:0.5 688:0.14285714285714285 722:0.3333333333333333 2687:0.5 4357:1.0 4513:1.0 4823:1.0 5734:1.0
19 7:0.058823529411764705 13:0.25 14:0.25 16:1.0 20:0.2222222222222222 24:0.5 31:0.14285714285714285 32:1.0 47:1.0 49:1.0 62:1.0 68:0.2 103:0.2 106:0.09090909090909091 123:0.020202020202020204 133:0.25 167:0.2 203:0.125 259:2.0 388:1.0 393:1.0 425:1.0 459:0.1 486:0.3333333333333333 492:0.2857142857142857 506:0.14285714285714285 573:0.3333333333333333 963:0.5 967:1.0 1150:0.25 1398:2.0 1473:0.5 1849:2.0 3071:1.0 3348:1.0 3536:1.0 4439:1.0 4488:0.5 4541:1.0 5090:0.5 5583:1.0
19 7:0.17647058823529413 23:0.3333333333333333 24:0.5 25:0.2 31:0.14285714285714285 33:1.0 34:0.1 49:3.0 90:0.4 103:0.2 123:0.020202020202020204 124:1.0 329:1.0 457:0.5 486:0.3333333333333333 771:0.5 787:1.0 1275:0.5 1348:0.041666666666666664 1411:0.5 2191:1.0 2538:1.0 2714:1.0
19 34:0.1 88:0.2 123:0.020202020202020204 124:1.0 167:0.1 239:0.2 351:2.0 639:1.0 1849:1.0 1903:1.0 2183:1.0 5203:1.0 5481:1.0
19 7:0.11764705882352941 25:0.1 32:0.5 103:0.2 106:0.09090909090909091 239:0.2 245:0.1111111111111111 260:1.0 282:1.0 373:0.16666666666666666 404:0.07692307692307693 447:0.5 980:1.0 1104:1.0 4725:1.0 4896:1.0 5138:1.0
19 7:0.058823529411764705 88:0.4 123:0.010101010101010102 179:0.3333333333333333 428:1.0 608:0.5 631:1.0 958:1.0 1278:1.0 1653:1.0 1828:1.0 2606:0.16666666666666666 3905:1.0 4480:0.5 4796:1.0
19 6:1.0 7:0.17647058823529413 32:0.5 48:1.0 49:1.0 73:2.0 76:1.0 103:0.2 123:0.020202020202020204 159:0.3333333333333333 220:0.3333333333333333 274:1.0 396:0.3333333333333333 449:1.0 506:0.42857142857142855 507:0.3333333333333333 607:0.5 669:1.0 1380:0.5 1702:1.0 1840:1.0 2439:1.0 3980:1.0
19 76:1.0 103:0.2 123:0.010101010101010102 163:0.2 203:0.125 537:1.0 579:1.0 1804:1.0 5099:0.5 5542:1.0
19 7:0.058823529411764705 13:0.25 15:0.2 20:0.1111111111111111 68:0.2 123:0.020202020202020204 167:0.1 186:1.0 259:1.0 372:1.0 388:1.0 506:0.14285714285714285 769:1.0 1150:0.125 1303:1.0 2653:0.25 3082:1.0 4463:1.0 4488:0.5 4728:1.0 4763:1.0
19 6:0.5 7:0.058823529411764705 106:0.09090909090909091 133:0.125 179:0.3333333333333333 506:0.14285714285714285 731:1.0 1606:1.0 1903:1.0 3267:1.0 3348:1.0 3905:1.0
19 7:0.058823529411764705 23:0.3333333333333333 25:0.1 32:0.5 40:0.3333333333333333 47:1.0 68:0.2 88:0.2 123:0.020202020202020204 142:0.5 351:1.0 492:0.14285714285714285 506:0.14285714285714285 692:0.5 1150:0.125 2719:1.0 4478:1.0 4616:1.0 4842:1.0 5490:1.0 5939:1.0
19 7:0.058823529411764705 24:1.5 25:0.3 40:0.3333333333333333 49:1.0 92:1.0 103:0.2 123:0.010101010101010102 124:1.0 163:0.2 167:0.1 224:1.0 282:2.0 506:0.2857142857142857 709:1.0 749:1.0 1082:0.5 1249:1.0 1473:0.5 1938:1.0 2966:1.0 3193:1.0 4466:1.0 4481:1.0 4558:1.0
19 23:0.3333333333333333 32:0.5 34:0.1 40:0.3333333333333333 49:1.0 80:1.0 88:0.2 123:0.020202020202020204 124:1.0 167:0.1 351:1.0 430:1.0 459:0.1 525:1.0 749:1.0 797:1.0 1082:0.5 2065:1.0 2568:1.0 4612:1.0 5247:1.0 5364:1.0 5843:1.0
19 7:0.058823529411764705 15:0.2 25:0.1 31:0.14285714285714285 40:0.3333333333333333 76:1.0 88:0.2 123:0.010101010101010102 162:1.0 245:0.1111111111111111 308:0.25 537:1.0 631:1.0 958:1.0 1275:1.0 1315:1.0 1840:1.0 3872:1.0 4513:1.0 4791:1.0 4960:1.0
19 7:0.058823529411764705 25:0.1 32:0.5 49:1.0 186:1.0 506:0.14285714285714285 2063:1.0 2259:0.5 5045:1.0 5668:1.0
19 7:0.17647058823529413 25:0.1 34:0.2 90:0.2 123:0.030303030303030304 138:0.5 186:1.0 239:0.2 293:1.0 320:1.0 373:0.16666666666666666 443:0.25 506:0.14285714285714285 1406:1.0 2848:0.5 3570:1.0 4722:1.0 5183:1.0 5206:1.0 5387:1.0 5866:1.0
19 7:0.058823529411764705 24:1.0 25:0.2 68:0.2 135:1.0 234:0.1111111111111111 472:0.2 492:0.14285714285714285 813:1.0 1348:0.041666666666666664 3765:1.0 5717:1.0 5866:1.0
19 14:0.25 25:0.2 62:1.0 68:0.2 123:0.020202020202020204 259:1.0 619:1.0 674:1.0 731:1.0 1200:1.0 1408:1.0 1523:1.0 1867:0.3333333333333333 1908:1.0 4006:1.0 4626:1.0
19 25:0.1 32:0.5 49:1.0 91:0.5 98:0.3333333333333333 133:0.125 245:0.1111111111111111 308:0.125 472:0.2 561:1.0 611:0.3333333333333333 674:1.0 813:1.0 1264:1.0 1804:1.0 1896:1.0 2115:1.0 2803:1.0 3129:1.0 3348:1.0 4562:1.0 5802:1.0
19 123:0.010101010101010102 225:1.0 506:0.14285714285714285 513:1.0 2653:0.25 2803:1.0 4627:1.0 4661:0.3333333333333333 4722:1.0
19 6:0.5 13:0.25 15:0.2 24:0.5 25:0.1 49:1.0 51:1.0 62:1.0 68:0.2 121:1.0 178:1.0 259:1.0 318:1.0 420:1.0 472:0.2 556:0.3333333333333333 639:1.0 674:1.0 720:1.0 836:0.5 963:0.5 1315:1.0 1898:1.0 2071:1.0 3179:1.0 4595:1.0 4796:1.0 5860:1.0
19 7:0.058823529411764705 24:0.5 49:1.0 62:1.0 88:0.2 159:0.3333333333333333 203:0.125 225:1.0 299:1.0 373:0.16666666666666666 434:0.5 510:0.5 709:1.0 746:1.0 909:0.5 1061:0.5 1954:1.0 5476:1.0
19 7:0.11764705882352941 11:0.16666666666666666 68:0.2 88:0.2 135:1.0 245:0.1111111111111111 771:0.5 799:1.0 1348:0.041666666666666664 1587:0.5 4480:0.5 5522:1.0 5768:1.0
19 13:0.25 48:1.0 49:3.0 123:0.010101010101010102 259:2.0 506:0.14285714285714285 731:1.0 1150:0.125 1398:2.0 2659:1.0 3095:1.0 4774:0.3333333333333333 5071:1.0
19 7:0.058823529411764705 33:1.0 47:1.0 68:0.2 123:0.030303030303030304 130:1.0 203:0.125 372:1.0 473:1.0 639:1.0 836:0.5 1348:0.041666666666666664 3126:1.0 4463:1.0 5361:1.0 5627:1.0 5913:1.0
19 7:0.11764705882352941 23:0.3333333333333333 24:0.5 25:0.1 34:0.1 40:0.3333333333333333 49:1.0 62:1.0 73:1.0 90:0.4 135:1.0 156:0.5 167:0.2 280:1.0 645:1.0 836:0.5 914:1.0 1348:0.041666666666666664 1406:1.0 3314:1.0 3375:1.0 3748:1.0 3949:1.0 4591:0.5 4755:1.0 5111:1.0
19 7:0.058823529411764705 23:0.3333333333333333 25:0.1 40:0.6666666666666666 73:1.0 123:0.010101010101010102 138:0.5 167:0.1 239:0.2 393:1.0 1398:2.0 1604:0.25 1849:1.0 1903:1.0 2080:1.0 2643:1.0 3668:1.0 4503:1.0 4591:0.5 4618:1.0 4661:0.3333333333333333 4690:0.5 4741:0.3333333333333333 4768:1.0 5897:1.0
19 32:0.5 40:0.6666666666666666 44:1.0 88:0.2 90:0.2 103:0.2 123:0.010101010101010102 159:0.3333333333333333 167:0.2 179:0.3333333333333333 377:1.0 447:0.5 486:0.6666666666666666 492:0.14285714285714285 506:0.14285714285714285 556:0.3333333333333333 1394:1.0 1587:0.5 1653:1.0 1901:1.0 1982:0.2 2606:0.16666666666666666 2908:1.0 3573:1.0 4447:1.0 5178:1.0 5196:1.0 5216:1.0 5391:1.0
19 7:0.11764705882352941 25:0.1 31:0.14285714285714285 32:0.5 34:0.1 40:0.6666666666666666 49:2.0 90:0.2 98:0.3333333333333333 123:0.010101010101010102 159:0.3333333333333333 167:0.1 245:0.1111111111111111 303:1.0 329:1.0 444:0.3333333333333333 506:0.14285714285714285 507:0.3333333333333333 996:1.0 1348:0.041666666666666664 1587:0.5 2375:1.0 3006:0.5 4481:1.0 6203:1.0
19 3:2.0 23:0.6666666666666666 48:1.0 49:1.0 88:0.2 325:1.0 443:0.25 472:0.2 644:1.0 700:1.0 932:1.0 1304:1.0 4722:1.0
19 3:1.0 7:0.058823529411764705 31:0.14285714285714285 42:1.0 44:1.0 49:4.0 72:1.0 88:0.2 90:0.2 123:0.030303030303030304 124:2.0 135:1.0 159:0.3333333333333333 167:0.1 235:1.0 259:1.0 421:1.0 644:1.0 663:1.0 809:1.0 915:1.0 1036:1.0 1371:0.5 1397:1.0 1714:1.0 1774:1.0 2065:1.0 2259:0.5 3230:1.0 3378:1.0 4463:1.0 4746:1.0 5405:1.0
19 25:0.1 32:0.5 40:0.3333333333333333 106:0.09090909090909091 404:0.07692307692307693 2653:0.25 3404:1.0 5090:0.5 6261:1.0
19 23:0.3333333333333333 25:0.2 49:1.0 92:1.0 123:0.010101010101010102 138:0.5 443:0.5 460:0.5 492:0.14285714285714285 525:1.0 611:0.3333333333333333 1082:0.5 1867:0.3333333333333333 4691:1.0 4719:1.0 4722:1.0
19 24:1.0 25:0.4 34:0.1 40:0.3333333333333333 46:1.0 49:1.0 123:0.020202020202020204 124:1.0 167:0.1 212:0.3333333333333333 459:0.1 754:1.0 833:1.0 893:1.0 964:1.0 979:1.0 1068:1.0 1186:1.0 1326:1.0 1348:0.041666666666666664 1828:1.0 4876:1.0 5095:1.0 5230:1.0 5636:1.0
19 32:0.5 34:0.1 49:1.0 68:0.4 123:0.020202020202020204 162:1.0 163:0.2 234:0.1111111111111111 259:1.0 306:0.3333333333333333 506:0.14285714285714285 525:1.0 2065:1.0 4690:0.5 5230:1.0
19 7:0.11764705882352941 13:0.25 33:1.0 51:1.0 68:0.4 76:1.0 123:0.010101010101010102 135:2.0 159:0.3333333333333333 163:0.2 282:1.0 306:0.3333333333333333 506:0.14285714285714285 1348:0.08333333333333333 2653:0.25 4481:1.0 4562:1.0 4918:1.0 4930:0.3333333333333333 5315:1.0
19 6:0.5 7:0.058823529411764705 13:0.5 25:0.1 76:1.0 90:0.2 103:0.2 123:0.020202020202020204 133:0.125 274:1.0 506:0.14285714285714285 674:1.0 692:0.5 3225:0.5 4470:1.0 4722:1.0
19 13:0.25 40:0.3333333333333333 49:1.0 123:0.020202020202020204 167:0.1 245:0.1111111111111111 328:1.0 389:1.0 536:1.0 1022:2.0 1394:1.0 2065:1.0 2249:1.0 3158:1.0 5838:1.0
19 20:0.2222222222222222 34:0.2 68:0.2 119:1.0 123:0.020202020202020204 124:1.0 130:1.0 133:0.125 138:0.5 167:0.2 308:0.125 398:0.08333333333333333 586:1.0 836:0.5 1061:0.5 1150:0.125 2065:1.0 2783:0.3333333333333333 3228:1.0 4217:1.0 4968:0.2 5058:1.0
19 16:1.0 20:0.2222222222222222 25:0.1 40:0.3333333333333333 49:2.0 73:1.0 90:0.2 123:0.010101010101010102 130:1.0 133:0.125 167:0.1 282:1.0 310:1.0 448:1.0 645:1.0 674:1.0 692:0.5 809:1.0 1150:0.125 2259:0.5 4434:1.0 4662:1.0 4863:1.0 5225:1.0
19 7:0.058823529411764705 20:0.1111111111111111 23:0.3333333333333333 40:0.3333333333333333 68:0.2 73:2.0 88:0.4 103:0.2 123:0.010101010101010102 242:0.5 544:1.0 722:0.3333333333333333 1210:1.0 4627:1.0 4725:1.0 4764:1.0 4870:1.0
19 7:0.11764705882352941 14:0.25 25:0.1 90:0.2 123:0.010101010101010102 163:0.2 308:0.125 309:1.0 507:0.3333333333333333 544:1.0 1217:1.0 1326:1.0 2080:1.0 2131:1.0 4722:1.0
19 20:0.1111111111111111 25:0.1 32:0.5 40:0.3333333333333333 68:0.2 90:0.2 135:1.0 179:0.3333333333333333 226:1.0 282:1.0 425:1.0 1104:1.0 1145:0.3333333333333333 1787:1.0 1908:1.0 2085:1.0 4465:0.3333333333333333 4764:1.0
19 7:0.058823529411764705 123:0.010101010101010102 167:0.1 203:0.125 274:1.0 709:1.0 722:0.3333333333333333 861:1.0 2005:1.0 4644:1.0
19 20:0.1111111111111111 23:0.3333333333333333 49:1.0 92:1.0 167:0.1 225:1.0 749:1.0 1168:0.5 1749:1.0 4481:1.0 4627:1.0 4661:0.3333333333333333 5553:1.0
19 23:0.6666666666666666 24:1.0 25:0.1 34:0.2 51:1.0 123:0.04040404040404041 140:1.0 167:0.1 239:0.2 259:1.0 274:1.0 426:0.5 459:0.1 506:0.14285714285714285 507:0.3333333333333333 722:0.3333333333333333 798:1.0 799:1.0 861:1.0 958:1.0 990:1.0 991:1.0 1196:1.0 1295:1.0 1406:1.0 2581:1.0 2659:1.0 3230:1.0 3403:1.0 4331:0.5 4513:1.0 4558:2.0 4874:1.0
19 7:0.17647058823529413 20:0.1111111111111111 32:0.5 49:1.0 167:0.1 179:0.3333333333333333 404:0.07692307692307693 459:0.1 656:1.0 749:1.0 1150:0.125 1348:0.041666666666666664 2228:1.0 2606:0.16666666666666666 2865:1.0 3286:1.0 5387:1.0 5891:1.0
19 32:0.5 34:0.1 68:0.2 135:2.0 179:0.3333333333333333 329:1.0 722:0.3333333333333333 1001:1.0 1381:1.0 1957:1.0 2606:0.16666666666666666
19 32:0.5 34:0.1 68:0.2 135:2.0 329:1.0 1957:1.0 3905:1.0 5424:1.0
19 16:1.0 20:0.1111111111111111 27:1.0 39:1.0 123:0.010101010101010102 328:1.0 460:0.5 492:0.14285714285714285 597:0.5 4930:0.3333333333333333
19 7:0.058823529411764705 23:0.6666666666666666 24:0.5 25:0.1 32:0.5 40:0.3333333333333333 51:1.0 68:0.4 76:1.0 88:0.2 103:0.2 123:0.010101010101010102 195:0.25 259:1.0 506:0.14285714285714285 674:1.0 727:0.5 1031:1.0 1898:1.0 3230:1.0 3798:1.0 3997:1.0 4513:1.0 6239:1.0
19 23:0.3333333333333333 73:1.0 90:0.2 167:0.1 333:1.0 579:1.0 731:1.0 1144:1.0 4481:1.0 4541:1.0 4554:1.0 4690:0.5 5925:1.0
19 203:0.125 245:0.1111111111111111 5786:2.0
19 7:0.058823529411764705 13:0.25 14:0.25 18:0.3333333333333333 68:0.2 163:0.2 195:0.25 245:0.1111111111111111 1898:1.0 4690:0.5 4722:1.0
19 13:0.25 14:0.25 49:1.0 123:0.010101010101010102 124:1.0 163:0.2 486:0.3333333333333333 771:0.5 809:1.0 1071:1.0 1150:0.125 1348:0.041666666666666664 2907:1.0 3835:1.0 3941:1.0 4463:1.0 4537:1.0 4816:1.0
19 13:0.25 20:0.1111111111111111 25:0.1 32:0.5 49:2.0 68:0.2 72:1.0 90:0.2 123:0.020202020202020204 133:0.125 167:0.1 179:0.3333333333333333 195:0.25 245:0.2222222222222222 318:1.0 447:0.5 472:0.2 492:0.14285714285714285 697:1.0 771:0.5 813:1.0 980:1.0 1983:1.0 2191:1.0 2568:1.0 2606:0.16666666666666666 2653:0.25 3267:1.0 3518:1.0 4629:1.0 4796:1.0
19 31:0.14285714285714285 34:0.1 62:1.0 123:0.010101010101010102 167:0.1 245:0.2222222222222222 506:0.14285714285714285 882:1.0 1587:0.5 2830:1.0 4451:1.0 4509:1.0 5377:1.0 5485:1.0 5859:1.0
19 25:0.1 31:0.2857142857142857 68:0.4 80:1.0 106:0.09090909090909091 107:1.0 108:1.0 123:0.010101010101010102 124:1.0 127:0.5 220:0.3333333333333333 282:1.0 306:0.3333333333333333 351:1.0 398:0.08333333333333333 426:0.5 472:0.2 530:1.0 645:1.0 1797:1.0 1896:1.0 2308:1.0 3325:1.0 3846:1.0 4680:1.0 4842:2.0 5008:1.0 5035:1.0 5073:1.0
19 7:0.058823529411764705 20:0.1111111111111111 31:0.2857142857142857 32:0.5 34:0.1 46:1.0 49:1.0 124:1.0 163:0.2 212:0.3333333333333333 245:0.1111111111111111 989:0.3333333333333333 1150:0.125 1305:1.0 1371:0.5 1398:1.0 1411:0.5 4481:1.0 4666:1.0 5138:1.0
19 5:1.0 34:0.1 124:1.0 220:0.3333333333333333 388:1.0 434:0.5 573:0.3333333333333333 3410:1.0 4957:2.0
19 7:0.058823529411764705 23:0.3333333333333333 24:0.5 31:0.14285714285714285 32:1.0 68:0.2 88:0.4 123:0.020202020202020204 135:1.0 142:0.5 159:0.3333333333333333 203:0.125 298:1.0 329:1.0 388:1.0 459:0.1 472:0.2 492:0.14285714285714285 662:1.0 771:0.5 1150:0.25 1303:1.0 1398:1.0 1406:1.0 2289:1.0 2357:1.0 4465:0.3333333333333333 4654:0.5 4955:1.0 5008:1.0 5242:0.5 5891:1.0
19 259:1.0 492:0.14285714285714285 525:1.0 1082:0.5 4666:1.0 5689:1.0
19 7:0.11764705882352941 20:0.1111111111111111 31:0.14285714285714285 68:0.2 76:1.0 90:0.2 103:0.2 123:0.010101010101010102 133:0.125 163:0.2 171:0.3333333333333333 259:3.0 335:1.0 373:0.16666666666666666 388:1.0 398:0.08333333333333333 507:0.3333333333333333 535:1.0 579:1.0 722:0.3333333333333333 731:1.0 1061:0.5 1303:1.0 1381:1.0 1898:1.0 2369:1.0 3837:1.0 4224:1.0 4454:1.0 4574:1.0 4595:1.0 5020:1.0
|
7209460e1fe364c778db6be63433c9eca227b704 | 484e05962b62928b49ae2e8fd80d4c45031eb3dc | /nx/nx.tst | 6cf67c6fc96e586df522154ab339af5bea4f9fd6 | [] | no_license | Royallle/hdl_cfx | adbb9dce7e3ae69507a4c1b26cddbd3b3a9eb0dc | 52cbe66f365516b659b65909e86aacb60da0342b | refs/heads/master | 2022-02-24T06:54:22.169423 | 2019-09-15T15:29:35 | 2019-09-15T15:29:35 | 110,464,895 | 0 | 0 | null | 2017-11-14T13:40:42 | 2017-11-12T20:05:58 | Scilab | UTF-8 | Scilab | false | false | 245 | tst | nx.tst | // Script de teste da função nx
load nx.hdl,
output-file nx.out,
compare-to nx.cmp,
output-list in%B1.5.1 out%B1.5.1;
set in %B00001,
eval,
output;
set in %B11111,
eval,
output;
set in %B00101,
eval,
output;
set in %B11011,
eval,
output;
|
0d81e02587fda889a3c0d52b0778232a479b985e | abd7728083df51a785c94e61999237380b32c4f8 | /examples/Presentation Packs/Cognitive Psychology Experiments III (Version 3)/Digit Span/Scenarios/Digit Span.sce | 37e4f2aae78951a3673d0407560d7130a756d51a | [] | no_license | LCTO-TLCO/UAVpresentation | 93b0c0e0eb123b550218bbae4e0bb1db8c30cb5e | 83e0f22cfdc2b7172bf0b90a9a14ddf77e6ccf2a | refs/heads/master | 2023-07-25T14:03:39.874916 | 2021-09-07T07:19:38 | 2021-09-07T07:19:38 | 301,918,691 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 17,908 | sce | Digit Span.sce | # -------------------------- Header Parameters --------------------------
scenario = "Digit Span";
write_codes = EXPARAM( "Send ERP Codes" );
default_font_size = EXPARAM( "Default Font Size" );
default_background_color = EXPARAM( "Default Background Color" );
default_text_color = EXPARAM( "Default Font Color" );
default_font = EXPARAM( "Default Font" );
max_y = 100;
active_buttons = 1;
button_codes = 100;
response_matching = simple_matching;
stimulus_properties =
event_cond, string,
block_number, number,
test_type, string,
trial_number, number,
current_length, number,
sequence, string,
resp, string,
accuracy, string,
rt, number;
event_code_delimiter = ";";
# ------------------------------- SDL Part ------------------------------
begin;
trial {
trial_duration = forever;
trial_type = specific_response;
terminator_button = 1;
picture {
text {
caption = "Instructions";
preload = false;
} instruct_text;
x = 0;
y = 0;
} instruct_pic;
} instruct_trial;
trial {
stimulus_event {
picture {
text {
caption = "Main Text";
font = EXPARAM( "Stimulus Font" );
font_size = EXPARAM( "Stimulus Font Size" );
font_color = EXPARAM( "Stimulus Color" );
preload = false;
} main_text;
x = 0;
y = 0;
} main_pic;
} main_event;
} main_trial;
trial {
stimulus_event {
picture {
text {
caption = "Response Prompt";
preload = false;
} prompt_text;
x = 0;
y = 50;
text {
caption = " ";
} resp_text;
x = 0;
y = 0;
} resp_pic;
code = "Prompt";
} resp_event;
} resp_trial;
trial {
stimulus_event {
picture {};
code = "ISI";
} ISI_event;
} ISI_trial;
trial {
stimulus_event {
picture {
text {
caption = "Ready";
preload = false;
} ready_text;
x = 0;
y = 0;
};
code = "Ready";
} ready_event;
} ready_trial;
trial {
picture {};
} wait_trial;
sound {
wavefile {
preload = false;
} main_wave;
} main_sound;
# ----------------------------- PCL Program -----------------------------
begin_pcl;
include_once "../../Library/lib_visual_utilities.pcl";
include_once "../../Library/lib_utilities.pcl";
# --- CONSTANTS ---
string SPLIT_LABEL = "[SPLIT]";
string LINE_BREAK = "\n";
int BUTTON_FWD = 1;
int BUTTON_BWD = 0;
string PRACTICE_TYPE_PRACTICE = "Practice";
string PRACTICE_TYPE_MAIN = "Main";
string MAIN_EVENT_CODE = "Stim";
string STIM_VISUAL = "Visual";
string STIM_AUDITORY = "Auditory";
string TYPE_STAIRCASE = "Staircase";
string TYPE_FIXED = "Fixed";
string COND_FORWARD = "Forward";
string COND_BACKWARD = "Backward";
int COND_FORWARD_IDX = 1;
int COND_BACKWARD_IDX = 2;
string ACC_CORRECT = "Correct";
string ACC_INCORRECT = "Incorrect";
int MIN_LENGTH = 2;
int TYPE_IDX = 1;
int START_IDX = 2;
int BUTTON_PORT_CODE = 100;
int RECALL_PORT_CODE = 10;
string CHARACTER_WRAP = "Character";
# --- Set up fixed stimulus parameters ---
language_file lang = load_language_file( scenario_directory + parameter_manager.get_string( "Language" ) + ".xml" );
bool char_wrap = ( get_lang_item( lang, "Word Wrap Mode" ).lower() == CHARACTER_WRAP.lower() );
adjust_used_screen_size( parameter_manager.get_bool( "Use Widescreen if Available" ) );
double font_size = parameter_manager.get_double( "Default Font Size" );
# Event setup
resp_trial.set_start_time( parameter_manager.get_int( "Recall Prompt Delay" ) );
trial_refresh_fix( main_trial, parameter_manager.get_int( "Stimulus Duration" ) );
trial_refresh_fix( ISI_trial, parameter_manager.get_int( "ISI Duration" ) );
trial_refresh_fix( ready_trial, parameter_manager.get_int( "Ready Duration" ) );
trial_refresh_fix( wait_trial, parameter_manager.get_int( "Time Between Trials" ) );
# Port setup
resp_event.set_port_code( RECALL_PORT_CODE );
array<int> button_codes[1];
button_codes[1] = BUTTON_PORT_CODE;
response_manager.set_button_codes( button_codes );
# --- sub main_instructions --- #
string next_screen = get_lang_item( lang, "Next Screen Caption" );
string prev_screen = get_lang_item( lang, "Previous Screen Caption" );
string final_screen = get_lang_item( lang, "Start Experiment Caption" );
string split_final_screen = get_lang_item( lang, "Multi-Screen Start Experiment Caption" );
bool split_instrucs = parameter_manager.get_bool( "Multi-Screen Instructions" );
sub
main_instructions( string instruct_string )
begin
bool has_splits = instruct_string.find( SPLIT_LABEL ) > 0;
# Split screens only if requested and split labels are present
if ( has_splits ) then
if ( split_instrucs ) then
# Split at split points
array<string> split_instructions[0];
instruct_string.split( SPLIT_LABEL, split_instructions );
# Hold onto the old terminator buttons for later
array<int> old_term_buttons[0];
instruct_trial.get_terminator_buttons( old_term_buttons );
array<int> new_term_buttons[0];
new_term_buttons.add( BUTTON_FWD );
# Present each screen in sequence
loop
int i = 1
until
i > split_instructions.count()
begin
# Remove labels and add screen switching/start experiment instructions
# Remove leading whitespace
string this_screen = split_instructions[i];
this_screen = this_screen.trim();
this_screen = this_screen.replace( SPLIT_LABEL, "" );
this_screen.append( LINE_BREAK + LINE_BREAK );
# Add the correct button options
bool can_go_backward = ( i > 1 ) && ( BUTTON_BWD > 0 );
new_term_buttons.resize( 0 );
new_term_buttons.add( BUTTON_FWD );
if ( can_go_backward ) then
new_term_buttons.add( BUTTON_BWD );
this_screen.append( prev_screen + " " );
end;
if ( i < split_instructions.count() ) then
this_screen.append( next_screen );
else
this_screen.append( split_final_screen );
end;
instruct_trial.set_terminator_buttons( new_term_buttons );
# Word wrap & present the screen
full_size_word_wrap( this_screen, font_size, char_wrap, instruct_text );
instruct_trial.present();
if ( response_manager.last_response_data().button() == BUTTON_BWD ) then
if ( i > 1 ) then
i = i - 1;
end;
else
i = i + 1;
end;
end;
# Reset terminator buttons
instruct_trial.set_terminator_buttons( old_term_buttons );
else
# If the caption has splits but multi-screen isn't requested
# Remove split labels and present everything on one screen
string this_screen = instruct_string.replace( SPLIT_LABEL, "" );
this_screen = this_screen.trim();
this_screen.append( LINE_BREAK + LINE_BREAK + final_screen );
full_size_word_wrap( this_screen, font_size, char_wrap, instruct_text );
instruct_trial.present();
end;
else
# If no splits and no multi-screen, present the entire caption at once
full_size_word_wrap( instruct_string, font_size, char_wrap, instruct_text );
instruct_trial.present();
end;
default.present();
end;
# --- sub present_instructions --- #
sub
present_instructions( string instruct_string )
begin
full_size_word_wrap( instruct_string, font_size, char_wrap, instruct_text );
instruct_trial.present();
default.present();
end;
# --- sub ready_set_go --- #
array<string> ready_caps[3];
ready_caps[1] = get_lang_item( lang, "Ready Caption" );
ready_caps[2] = get_lang_item( lang, "Set Caption" );
ready_caps[3] = get_lang_item( lang, "Go Caption" );
int ready_dur = parameter_manager.get_int( "Ready Duration" );
sub
ready_set_go
begin
if ( ready_dur > 0 ) then
loop
int i = 1
until
i > ready_caps.count()
begin
ready_text.set_caption( ready_caps[i], true );
ready_trial.present();
i = i + 1;
end;
end;
default.present();
end;
# --- sub make_temp_seq --- #
# takes an int array and returns a full 9 digit sequence with
# restriction that consecutive numbers (2-3, 3-2, etc) are not used )
sub
make_temp_seq( array<int,1>& temp_seq )
begin
temp_seq.resize( 9 );
temp_seq.fill( 1, 0, 1, 1 );
loop
int i = 1
until
i > temp_seq.count() - 1
begin
if ( abs( temp_seq[i] - temp_seq[i+1] ) <= 2 ) then
temp_seq.shuffle();
i = 0;
end;
i = i + 1;
end;
end;
# --- sub make_full_seq
# takes an input array and returns a list of the requested
# size meeting the restrictions. for longer lists, generates
# multiple shorter sequences using make_temp_seq and appends them
sub
array<int,1> make_full_seq( int size )
begin
array<int> temp_seq[0];
make_temp_seq( temp_seq );
if ( size > temp_seq.count() ) then
loop
until
temp_seq.count() >= size
begin
array<int> added_seq[0];
make_temp_seq( added_seq );
loop
until
abs( added_seq[1] - temp_seq[temp_seq.count()] ) > 2
begin
make_temp_seq( added_seq );
end;
temp_seq.append( added_seq );
end;
end;
temp_seq.resize( size );
return temp_seq
end;
# --- sub check_accuracy
# takes subject's response and the presented sequence
# returns the number of correct digit responses
sub
string check_accuracy( string subj_resp, array<int,1>& stim_seq )
begin
subj_resp = subj_resp.replace( " ", "" );
int acc_ctr = 0;
loop
int j = 1
until
j > subj_resp.count() || j > stim_seq.count()
begin
if ( int( subj_resp.substring( j,1 ) ) == stim_seq[j] ) then
acc_ctr = acc_ctr + 1;
end;
j = j + 1;
end;
string rval = ACC_INCORRECT;
if ( acc_ctr == stim_seq.count() ) && ( subj_resp.count() == stim_seq.count() ) then
rval = ACC_CORRECT;
end;
return rval
end;
# --- sub show_block
# shows one complete digit span task in the specified direction
string stim_type = parameter_manager.get_string( "Stimulus Modality" );
array<sound> stim_snds[0];
parameter_manager.get_sounds( "Stimulus Sounds", stim_snds );
if ( stim_type == STIM_AUDITORY ) then
if ( stim_snds.count() != 9 ) then
exit( "Error: 'Stimulus Sounds' must contain exactly nine wavefiles, the digits 1-9." );
end;
else
lang.set_map( stim_type );
end;
string test_type = parameter_manager.get_string( "Test Type" );
int corr_to_increase = parameter_manager.get_int( "Staircase Correct to Increase" );
int incorr_to_decrease = parameter_manager.get_int( "Staircase Incorrect to Decrease" );
int fixed_count = parameter_manager.get_int( "Fixed Trials at Each Length" );
int total_trials = parameter_manager.get_int( "Staircase Trial Count" );
string prompt_caption = get_lang_item( lang, "Response Prompt" );
prompt_text.set_max_text_height( used_screen_height/2.0 );
prompt_text.set_max_text_width( used_screen_width );
prompt_text.set_caption( prompt_caption, true );
# -- Set up info for summary stats -- #
int SUM_BLOCK_IDX = 1;
int SUM_SPAN_IDX = 2;
array<string> cond_names[2][0];
cond_names[SUM_BLOCK_IDX].resize( 2 );
cond_names[SUM_BLOCK_IDX][COND_FORWARD_IDX] = COND_FORWARD;
cond_names[SUM_BLOCK_IDX][COND_BACKWARD_IDX] = COND_BACKWARD;
loop
int i = 1
until
i > 100
begin
cond_names[SUM_SPAN_IDX].add( string(i) );
i = i + 1;
end;
# Now build an empty array for all DVs of interest
array<int> acc_stats[cond_names[1].count()][cond_names[2].count()][0];
array<int> RT_stats[cond_names[1].count()][cond_names[2].count()][0];
# --- End Summary Stats --- #
sub
show_block( string order, int start_length, int block_number )
begin
loop
int curr_length = start_length;
bool ok = false;
int length_ctr = 0;
int corr_ctr = 0;
int incorr_ctr = 0;
int i = 1
until
ok
begin
array<int> this_seq[curr_length] = make_full_seq( curr_length );
string actual_seq = "";
# Show sequence
ready_set_go();
loop
int j = 1
until
j > this_seq.count()
begin
# Figure out the number we're using
int stim_number = this_seq[j];
if ( order == COND_BACKWARD ) then
stim_number = this_seq[this_seq.count() - ( j - 1 )];
end;
# Set the stimulus based on that
if ( stim_type == STIM_VISUAL ) then
main_text.set_caption( string( stim_number ), true );
else
main_event.set_stimulus( stim_snds[stim_number] );
end;
# Record the stim number
actual_seq.append( string( stim_number ) );
# Set the port code
main_event.set_port_code( stim_number );
# Show the stimulus
main_trial.present();
ISI_trial.present();
j = j + 1;
end;
# Check response
resp_text.set_caption( " ", true );
resp_trial.present();
string subj_answer = system_keyboard.get_input( resp_pic, resp_text );
int RT = clock.time() - stimulus_manager.last_stimulus_data().time();
string accuracy = check_accuracy( subj_answer, this_seq );
# Store this trial info
stimulus_data last = stimulus_manager.last_stimulus_data();
last.set_event_code(
MAIN_EVENT_CODE + ";" +
string( block_number ) + ";" +
order + ";" +
string( i ) + ";" +
string( curr_length ) + ";" +
actual_seq + ";" +
subj_answer + ";" +
accuracy + ";" +
string( RT )
);
# Record trial info for summary stats
# Make an int array specifying the condition we're in
# This tells us which subarray to store the trial info
array<int> this_trial[cond_names.count()];
if ( order == COND_FORWARD ) then
this_trial[SUM_BLOCK_IDX] = COND_FORWARD_IDX;
else
this_trial[SUM_BLOCK_IDX] = COND_BACKWARD_IDX;
end;
this_trial[SUM_SPAN_IDX] = curr_length;
int this_hit = int( accuracy == ACC_CORRECT );
acc_stats[this_trial[1]][this_trial[2]].add( this_hit );
RT_stats[this_trial[1]][this_trial[2]].add( RT );
# Update the list length, depending on previous trial performance/number
length_ctr = length_ctr + 1;
if ( accuracy == ACC_CORRECT ) then
corr_ctr = corr_ctr + 1;
incorr_ctr = 0;
else
incorr_ctr = incorr_ctr + 1;
corr_ctr = 0;
end;
if ( test_type == TYPE_FIXED ) then
if ( length_ctr >= fixed_count ) then
if ( incorr_ctr >= fixed_count ) then
ok = true;
else
curr_length = curr_length + 1;
length_ctr = 0;
incorr_ctr = 0;
corr_ctr = 0;
end;
end;
else
if ( corr_ctr >= corr_to_increase ) then
curr_length = curr_length + 1;
corr_ctr = 0;
end;
if ( incorr_ctr >= incorr_to_decrease ) then
curr_length = curr_length - 1;
incorr_ctr = 0;
end;
if ( i == total_trials ) then
ok = true;
end;
end;
# Make sure we don't go out of bounds on list length
if ( curr_length < MIN_LENGTH ) then
curr_length = MIN_LENGTH;
end;
# Wait for the next trial
wait_trial.present();
# Increment and check for breaks
i = i + 1;
end;
end;
# --- Conditions and Trial Order --- #
array<string> block_order[0][0];
begin
# Determine the order of forward/backward blocks
array<string> test_order[0];
parameter_manager.get_strings( "Test Order", test_order );
if ( test_order.count() == 0 ) then
exit( "Error: You must specify at least one test type in 'Test Order'" );
elseif ( parameter_manager.get_bool( "Randomize Test Order" ) ) then
test_order.shuffle();
end;
# Set up the order of blocks and the starting list sizes
int forward_start = parameter_manager.get_int( "Forward Span Starting Length" );
int backward_start = parameter_manager.get_int( "Backward Span Starting Length" );
loop
int i = 1
until
i > test_order.count()
begin
array<string> temp[2];
temp[TYPE_IDX] = test_order[i];
if ( test_order[i] == COND_FORWARD ) then
temp[START_IDX] = string( forward_start );
else
temp[START_IDX] = string( backward_start );
end;
block_order.add( temp );
i = i + 1;
end;
end;
# --- Main Sequence --- #
string fwd_instrucs = get_lang_item( lang, "Forward Instructions" );
string bwd_instrucs = get_lang_item( lang, "Backward Instructions" );
loop
int i = 1
until
i > block_order.count()
begin
string this_block = block_order[i][TYPE_IDX];
if ( this_block == COND_FORWARD ) then
main_instructions( fwd_instrucs );
else
main_instructions( bwd_instrucs );
end;
show_block( block_order[i][TYPE_IDX], int( block_order[i][START_IDX] ), i );
i = i + 1;
end;
present_instructions( get_lang_item( lang, "Completion Screen Caption" ) );
# --- Print Summary Stats --- #
string sum_log = logfile.filename();
if ( sum_log.count() > 0 ) then
# Open & name the output file
string TAB = "\t";
int ext = sum_log.find( ".log" );
sum_log = sum_log.substring( 1, ext - 1 ) + "-Summary-" + date_time( "yyyymmdd-hhnnss" ) + ".txt";
string subj = logfile.subject();
output_file out = new output_file;
out.open( sum_log );
# Get the headings for each columns
array<string> cond_headings[cond_names.count() + 1];
cond_headings[1] = "Subject ID";
cond_headings[SUM_BLOCK_IDX + 1] = "Test Type";
cond_headings[SUM_SPAN_IDX + 1] = "Span";
cond_headings.add( "Accuracy" );
cond_headings.add( "Accuracy (SD)" );
cond_headings.add( "Avg RT" );
cond_headings.add( "Avg RT (SD)" );
cond_headings.add( "Median RT" );
cond_headings.add( "Number of Trials" );
cond_headings.add( "Date/Time" );
# Now print them
loop
int i = 1
until
i > cond_headings.count()
begin
out.print( cond_headings[i] + TAB );
i = i + 1;
end;
# Loop through the DV arrays to print each condition in its own row
# Following the headings set up above
loop
int i = 1
until
i > acc_stats.count()
begin
loop
int j = 1
until
j > acc_stats[i].count()
begin
if ( acc_stats[i][j].count() > 0 ) then
out.print( "\n" + subj + TAB );
out.print( cond_names[1][i] + TAB );
out.print( cond_names[2][j] + TAB );
out.print( round( arithmetic_mean( acc_stats[i][j] ), 3 ) );
out.print( TAB );
out.print( round( sample_std_dev( acc_stats[i][j] ), 3 ) );
out.print( TAB );
out.print( round( arithmetic_mean( RT_stats[i][j] ), 3 ) );
out.print( TAB );
out.print( round( sample_std_dev( RT_stats[i][j] ), 3 ) );
out.print( TAB );
out.print( round( median_value( RT_stats[i][j] ), 3 ) );
out.print( TAB );
out.print( acc_stats[i][j].count() );
out.print( TAB );
out.print( date_time() );
end;
j = j + 1;
end;
i = i + 1;
end;
# Close the file and exit
out.close();
end; |
a368c47063d41b3307c6671ff6c8b279fca5d985 | 584105ff5b87869494a42f632079668e4c3f82de | /TestCases/calib3d/convertPointsToHomogeneous/test2.sce~ | 87684d0f52604c7ec2b2737b34e6fc3eb9e17e99 | [] | no_license | kevgeo/FOSSEE-Computer-Vision | 0ceb1aafb800580498ea7d79982003714d88fb48 | 9ca5ceae56d11d81a178a9dafddc809238e412ba | refs/heads/master | 2021-01-17T21:11:31.309967 | 2016-08-01T14:45:40 | 2016-08-01T14:45:40 | 63,127,286 | 6 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 243 | test2.sce~ |
in = [ -75 -90 30 ;
-120 11 12;
122 11 14];
//Checking if error message pops up when input is 3D instead of 2D point set
output = convertPointsToHomogeneous(in);
//output->
// !--error 999
//Please enter 2D points matrix of size Nx2.
| |
8c951865d4892f0a34190a2b38ad4f782a99c054 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1943/CH4/EX4.9/Ex4_9.sce | 83570f70308331165197953fd67aa61c3b601d8c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,320 | sce | Ex4_9.sce |
clc
clear
//Input data
Wf=10;//Coal rate in t/h
C=78;//The mass of carbon present in the coal according to coal analysis on mass basis in %
H=3;//The mass of hydrogen present in the coal according to coal analysis on mass basis in %
O=3;//The mass of oxygen present in the coal according to coal analysis on mass basis in %
S=1;//The mass of sulphur present in the coal according to coal analysis on mass basis in %
M=7;//The mass of moisture present in the coal according to coal analysis on mass basis in %
A=8;//The mass of ash present in the coal according to coal analysis on mass basis in %
E=0.3;//Excess air in percentage
p=180;//Plenum chamber pressure in mm water gauge
nm=0.6;//Mechanical efficiency of the fan
ta=30;//Room temperature in degree centigrade
R=0.287;//Real gas constant
P=101.325;//Atmospheric pressure in kPa
g=9.812;//gravitational force constant m/s^2
//Calculations
Wth=(11.5*(C/100))+(34.5*[(H/100)-(O/(8*100))])+(4.3*(S/100));//Theoretical air required per kg fuel in kg air/kg fuel
WA=Wth*(1+0.3);//Actual air required per kg fuel in kg air/kg fuel
Va=(R*(273+ta))/P;//Volume flow rate of air in m^3/kg
FD=((WA*Wf*1000*Va*p*g)/(3600*nm))/1000;//FD fan motor capacity in kW
//Output
printf('The required motor capacity needed for the FD fan is %3.2f kW ',FD)
|
460f81d33bbc8ecfc165c80354f43df0c1858999 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3269/CH10/EX10.8/Ex10_8.sce | c8968e7346105522c6c3d45e5fd8f9811c490785 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 4,866 | sce | Ex10_8.sce | // Example 10.8
clear all;
clc;
// Given data
R = 7*30.48; // Distance of core from the center of shield in cm
// Assuming average energy produced per fission reaction is 200 MeV
P = 10; // Power of teaching reactor in Watts
P_fission = 200*10^6*1.6*10^(-19); // Energy produced in a fission reaction in terms of joule
fission_rate = P/P_fission; // Number of fission reactions
// By assuming that the gammma rays are of equal energy of 1 MeV (Group 1) and looking into Table 10.5
E1 = 1; // Energy of gamma rays in MeV (Assumed)
chi_pn1 = 5.2; // Number of prompt gamma rays emitted per fission with energy 2 MeV
S1 = chi_pn1*fission_rate; // Source strength in gamma rays/sec
// Using the data from Table II.4 for E = 1 MeV for water
mu1 = 0.0996; // Mass attenuation coefficient at 1 MeV in cm^-1
printf(" \n Buildup factor is due to water measured at %.2f",mu1*R);
// Using the data from Table 10.2 at 1 MeV
B_p1 = 373;
phi_b1 = (S1/(4*%pi*R^2))*B_p1*exp(-mu1*R); // Buildup flux
// Using the data from Table II.5 for 1 MeV
mua_rho_air1 = 0.028; // The ratio of total attenuation coefficient to density of air in cm^2/g
// Calculation
X_dot1 = 0.0659*E1*mua_rho_air1*phi_b1;
printf("\n Exposure rate due to group 1 = %.4f mR/hour \n",X_dot1);
// By assuming that the gammma rays are of equal energy of 2 MeV (Group 2) and looking into Table 10.5
E2 = 2; // Energy of gamma rays in MeV (Assumed)
chi_pn2 = 1.8; // Number of prompt gamma rays emitted per fission with energy 2 MeV
S2 = chi_pn2*fission_rate; // Source strength in gamma rays/sec
// Using the data from Table II.4 for E = 2 MeV for water
mu2 = 0.0493; // Mass attenuation coefficient at 2 MeV in cm^-1
printf(" \n Buildup factor is due to water measured at %.2f",mu2*R);
// Using the data from Table 10.2 at 2 MeV
B_p2 = 13.1;
phi_b2 = (S2/(4*%pi*R^2))*B_p2*exp(-mu2*R); // Buildup flux
// Using the data from Table II.5 for 2 MeV
mua_rho_air2 = 0.0238; // The ratio of total attenuation coefficient to density of air in cm^2/g
// Calculation
X_dot2 = 0.0659*E2*mua_rho_air2*phi_b2;
printf("\n Exposure rate due to group 2 = %.1f mR/hour \n",X_dot2);
// By assuming that the gammma rays are of equal energy of 4 MeV (Group 3) and looking into Table 10.5
E3 = 4; // Energy of gamma rays in MeV (Assumed)
chi_pn3 = 0.22; // Number of prompt gamma rays emitted per fission with energy 4 MeV
S3 = chi_pn3*fission_rate; // Source strength in gamma rays/sec
// Using the data from Table II.4 for E = 4 MeV for water
mu3 = 0.0339; // Mass attenuation coefficient at 4 MeV in cm^-1
printf(" \n Buildup factor is due to water measured at %.1f",mu3*R);
// Using the data from Table 10.2 at 4 MeV
B_p3 = 5.27;
phi_b3 = (S3/(4*%pi*R^2))*B_p3*exp(-mu3*R); // Buildup flux
// Using the data from Table II.5 for 4 MeV
mua_rho_air3=0.0194; // The ratio of total attenuation coefficient to density of air in cm^2/g
// Calculation
X_dot3 = 0.0659*E3*mua_rho_air3*phi_b3;
printf("\n Exposure rate due to group 3 = %.1f mR/hour \n",X_dot3);
// By assuming that the gammma rays are of equal energy of 6 MeV (Group 4) and looking into Table 10.5
E4 = 6; // Energy of gamma rays in MeV (Assumed)
chi_pn4 = 0.025; // Number of prompt gamma rays emitted per fission with energy 4 MeV
S4 = chi_pn4*fission_rate; // Source strength in gamma rays/sec
// Using the data from Table II.4 for E = 6 MeV for water
mu4 = 0.0275; // Mass attenuation coefficient at 6 MeV in cm^-1
printf(" \n Buildup factor is due to water measured at %.2f",mu4*R);
// Using the data from Table 10.2 at 6 MeV
B_p4 = 3.53;
phi_b4 = (S4/(4*%pi*R^2))*B_p4*exp(-mu4*R); // Buildup flux
// Using the data from Table II.5 for 4 MeV
mua_rho_air4=0.0172; // The ratio of total attenuation coefficient to density of air in cm^2/g
// Calculation
X_dot4 = 0.0659*E4*mua_rho_air4*phi_b4;
printf("\n Exposure rate due to group 3 = %.2f mR/hour \n",X_dot4);
//Calculation
X_dot = X_dot1+X_dot2+X_dot3+X_dot4;
// Result
printf("\n The total exposure rate due to all groups = %.2f mR/hour \n",X_dot);
|
90a972ffb820dbb3241860eaf984692f2215b5f5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /149/CH2/EX2.54/ex54.sce | 25b22114ee5ffbf3a0475015bcd03546463da193 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 378 | sce | ex54.sce | clear
clc
A=[0 1+2*%i;-1+2*%i 0]
I=eye(2,2)
disp("I-A= ")
I-A
disp("inverse of (I+A)= ")
inv(I+A)
disp("((I-A)(inverse(I+A)))*((I-A)(inverse(I+A)))=")
(((I-A)*(inv(I+A)))')*((I-A)*(inv(I+A)))
disp("((I-A)(inverse(I+A)))((I-A)(inverse(I+A)))*=")
((I-A)*(inv(I+A)))*(((I-A)*(inv(I+A)))')
disp("clearly,the product is an identity matrix.hence,it is a unitary matrix")
|
aa5c0111dfaeee6c7fb1357bef3147d76e2fa141 | ea3927de4aa75aae204a9e58b320db80528f79b0 | /00/Demux.tst | 61d27a299d5f186de073ddc4631ec120c8fadd80 | [] | no_license | sciolizer/nand2tetris | d829bb3eb62dd1002a5ace9c8afdadefb296de61 | 4003002eb6ff8ea24b60898e234a98debca6454d | refs/heads/master | 2016-08-04T21:55:34.782264 | 2014-10-31T15:04:19 | 2014-10-31T15:04:19 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 490 | tst | Demux.tst | // This file is part of the materials accompanying the book
// "The Elements of Computing Systems" by Nisan and Schocken,
// MIT Press. Book site: www.nand2tetris.org
// File name: projects/00/And.tst
load Demux.hdl,
output-file Demux.out,
compare-to Demux.cmp,
output-list in%B3.1.3 sel%B3.1.3 a%B3.1.3 b%B3.1.3;
set in 0,
set sel 0,
eval,
output;
set in 0,
set sel 1,
eval,
output;
set in 1,
set sel 0,
eval,
output;
set in 1,
set sel 1,
eval,
output;
|
26faaef66aa3404af8ea42127c71464df34bf0d3 | 4a1effb7ec08302914dbd9c5e560c61936c1bb99 | /Project 2/Experiments/Chi-RW-C/results/Chi-RW-C.flare-10-1tra/result7.tst | 863689f75ed1e6ff804356362c9426962a6314db | [] | no_license | nickgreenquist/Intro_To_Intelligent_Systems | 964cad20de7099b8e5808ddee199e3e3343cf7d5 | 7ad43577b3cbbc0b620740205a14c406d96a2517 | refs/heads/master | 2021-01-20T13:23:23.931062 | 2017-05-04T20:08:05 | 2017-05-04T20:08:05 | 90,484,366 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 946 | tst | result7.tst | @relation flare
@attribute LargestSpotSize{A,R,S,X,K,H}
@attribute SpotDistribution{X,O,I,C}
@attribute Activity{1,2}
@attribute Evolution{1,2,3}
@attribute Prev24Hour{1,2,3}
@attribute HistComplex{1,2}
@attribute BecomeHist{1,2}
@attribute Area{1,2}
@attribute C-class{0,1,2,3,4,5,6,7,8}
@attribute M-class{0,1,2,3,4,5}
@attribute X-class{0,1,2}
@attribute Class{H,D,C,B,E,F}
@inputs LargestSpotSize,SpotDistribution,Activity,Evolution,Prev24Hour,HistComplex,BecomeHist,Area,C-class,M-class,X-class
@outputs Class
@data
D ?
B H
B H
C ?
C ?
D H
B H
F ?
H H
E D
H H
D ?
H H
C ?
E H
C ?
F E
D ?
B H
H H
H H
B H
H H
D ?
H ?
D C
H H
C D
D D
B ?
C C
B ?
C ?
B ?
D D
D ?
D H
E D
H H
D D
E H
H H
D D
H H
B ?
H H
B ?
C H
C C
D E
C H
B F
H H
D D
E F
F D
H H
E D
H H
H H
H H
C ?
H H
C C
C H
H H
C ?
H H
D D
H H
C H
H H
D H
D ?
B H
H H
H H
D H
C ?
E D
H H
D D
H H
C ?
C H
H H
D ?
D ?
H ?
H H
E D
B ?
D E
H H
D C
F E
C H
H H
H H
H H
C C
C ?
D D
E ?
B H
B ?
|
aaa087fdf8246e20b06b3fe2eb2c9111e81ecd5d | 449d555969bfd7befe906877abab098c6e63a0e8 | /43/CH9/EX9.7/ex9_7.sce | b0be261dd0cc157d8f8e9b464fbc8ca44b65086b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 260 | sce | ex9_7.sce | //Ex 9.7
clc;
s=%s;
T=10^(-4);
wdc=2*%pi*10^3;
wac=2/T*tan(wdc*T/2);
HS=1/(s^2+sqrt(2)*s+1)//Transfer Function for N=1
HS1=horner(HS,s/wac);
disp(HS1,'Normalized Transfer Function, H(s) =');
z=%z;
HZ=horner(HS1,(2/T)*(z-1)/(z+1));
disp(HZ,'H(z) ='); |
7fbfdb8fbc597010995dea0451c8475ac26caf6e | ebd6f68d47e192da7f81c528312358cfe8052c8d | /swig/Examples/test-suite/scilab/abstract_typedef2_runme.sci | 8da9c2fab5e068cbb2455ac6cf274993bda0abdc | [
"Apache-2.0",
"LicenseRef-scancode-swig",
"GPL-3.0-or-later",
"LicenseRef-scancode-unknown-license-reference",
"GPL-3.0-only"
] | 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 | 168 | sci | abstract_typedef2_runme.sci | exec("swigtest.start", -1);
try
a = new_A_UF();
catch
swigtesterror();
end
try
delete_A_UF(a);
catch
swigtesterror();
end
exec("swigtest.quit", -1);
|
ae047ad7b8e67664e0a4dbb1b65ca2762b6172ac | 449d555969bfd7befe906877abab098c6e63a0e8 | /10/CH1/EX5/cha1_5.sce | 9c3562750b34082440d841712361267d0c645907 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 96 | sce | cha1_5.sce | n=500;E=100;A=0.001;b=1/120;
f=1.2;
max1=(E/1000)*(b)
max2=(f*A)
E=(120*n*max2*2)
|
63ead4f68af9f5592e32d89c676d1bf11296f63d | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/statelevels/statelevels2.sce | 98b849e8c060079bd9b17c6a76d31a3eee7d7550 | [] | 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 | 335 | sce | statelevels2.sce | //
t=[0
2.50000000000000e-07
5.00000000000000e-07
7.50000000000000e-07
1.00000000000000e-06
1.25000000000000e-06];
x=[-0.00104287295007201
-0.00244190236539361
0.00330474678679599
0.00312506274996585
-0.00888427641170878
-0.000128837692967764
];
levels= statelevels(x,1e3,'mean');
disp(levels);
//output
// - 0.0088782 0.0005634
|
c01fc0b98dfbb231fea08fcb2aab218a9dc00ebf | 60a8a4ce793d26ce86d35bcc0f2d58bd428855f1 | /3(G)Program to solve Combinations..sce | c78eb8b35355a6c2437adf95a16a33ca4656945a | [] | no_license | muitnet/DM-Practicals-Exam | 194328e084450c7f06d2847eacb9cad170193197 | a9ad7a06e8fc28ffcbcde231b53c1de716fb97a3 | refs/heads/master | 2020-06-11T19:51:30.232988 | 2016-12-05T13:04:59 | 2016-12-05T13:04:59 | 75,625,333 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 387 | sce | 3(G)Program to solve Combinations..sce | disp('four objects are given (a,b,c,d) and three are taken at a time')
combinations = factorial (4) /( factorial (4 -3)* factorial (3) );
disp(combinations,'number of combinations of the four objects given')
k= factorial (3) ; // number of permutations of objects in a combination
permutations = combinations *k;
disp(permutations ,'total number of permuatations for the problem')
|
631d550378e79d2d9a773f9037c32d2047694a56 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2276/CH5/EX5.3/chapter5_ex3.sce | efc2cafb41340d6ccf856fe2fce004af17e708e5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 890 | sce | chapter5_ex3.sce | clc
clear
//input
//coils a and b in connected in parallel
v=240;//supply voltage in volts
f=50;//supply frequency in hertz
ra=10;//resistance of coil a in ohms
xla=25;//inductive reactance of coil a in ohms
rb=20;//resistance of coil b in ohms
xlb=12;//inductive reactance of coil b in ohms
//calculations
z1=((ra^2)+(xla^2))^0.5;//impedance of coil a in ohms
i1=v/z1;//current in coil a in amperes
cos1=ra/z1;//cosine of phase angle1
sin1=xla/z1;//sine of phase angle1
z2=((rb^2)+(xlb^2))^0.5;//impedance of coil b in ohms
i2=v/z2;//current in coil b in amperes
cos2=rb/z2;//cosine of phase angle2
sin2=xlb/z2;//sine of phase angle2
ii=(i1*cos1)+(i2*cos2);//total in phase component in amperes
iq=(i1*sin1)+(i2*sin2);//total quadrature component in amperes
I=((ii^2)+(iq^2))^0.5;//total current in amperes
//output
mprintf('the total current is %3.1f A',I)
|
914830b1697ec07dfd10da835a43c2fa583b99fb | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.5/tests/examples/randpencil.man.tst | e9ee6186ba8730065e3823e821ec9ddfed23a1f6 | [
"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 | 173 | tst | randpencil.man.tst | clear;lines(0);
F=randpencil([0,1],[2],[-1,0,1],[3]);
[Q,Z,Qd,Zd,numbeps,numbeta]=kroneck(F);
Qd, Zd
s=poly(0,'s');
F=randpencil([],[1,2],s^3-2,[]); //regular pencil
det(F)
|
c7b8cdb604fe0e1fb2a5009e103a74f9e8074e32 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2081/CH8/EX8.5/Ex8_5.sce | ce0f85f56c8eed9047471bd8b87b436d739c3e42 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex8_5.sce | Bt=25*10^6//allocated spectrum
Bc=200*10^3//channel bandwidth
Bg=0//no guard band
m=8//no. of speech channels
N=m*(Bt-2*Bg)/Bc
disp(N,'no. of simultaneous subscribers a GSM system can accommodate is ' )
|
ee2952fa529e7355ed3fa945226ad83abb860b9f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2048/CH5/EX5.4/derv_bode.sce | e45509fffac4a9a0872aafe9adce4c31b2d95357 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 325 | sce | derv_bode.sce | // Bode plot of the differencing filter, discussed in Example 5.6 on page 130
// 5.4
exec('label.sci',-1);
w = 0.01:0.01:%pi;
G = 1-exp(-%i*w);
subplot(2,1,1)
plot2d1("gll",w,abs(G),style = 2);
label('',4,' ','Magnitude',4);
subplot(2,1,2)
plot2d1("gln",w,phasemag(G),style = 2);
label('',4,'w','Phase',4)
|
b54407c249a9cc65005bc1207b695075cf45f53f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2102/CH5/EX5.10/exa_5_10.sce | 38f24831cb049328edeef6c54c314b6a598f75c4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 438 | sce | exa_5_10.sce | // Exa 5.10
clc;
clear;
close;
// Given data
C1= 4;// in pF
C2= 60;// in pF
L=8*10^-3;// in H
C_Tmin= C1*C1/(C1+C1);// in pF
C_Tmin= C_Tmin*10^-12;// in F
C_Tmax= C2*C2/(C2+C2);// in pF
C_Tmax= C_Tmax*10^-12;// in F
Fc_max= 1/(2*%pi*sqrt(L*C_Tmin));// in Hz
Fc_min= 1/(2*%pi*sqrt(L*C_Tmax));// in Hz
disp(Fc_max*10^-6,"Maximum resonance frequency in MHz is :")
disp(Fc_min*10^-6,"Minimum resonance frequency in MHz is :")
|
5b73c2c34ca94a944fc95024afe54d646e17acf4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3763/CH5/EX5.2/Ex5_2.sce | 056f7c4b070009b5cbe3b593c3e001479b223634 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex5_2.sce | clear
//
//
//
//Variable declaration
e=1.602*10**-19
m=9.1*10**-31 //mass(kg)
tow=2*10**-14 //time(s)
n=8.5*10**28
//Calculation
sigma=n*e**2*tow/m //electrical conductivity(ohm-1 m-1)
//Result
printf("\n electrical conductivity is %0.1f *10**7 ohm-1 m-1",sigma/10**7)
|
ff98dc63f3e12636122e79149787b1ec76939b42 | 449d555969bfd7befe906877abab098c6e63a0e8 | /797/CH5/EX5.9.s/5_09_solution.sce | 6432c6b74af7f0c0b05b9b8249c4bea3be805bb1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 5_09_solution.sce | //Solution 5-09
WD=get_absolute_file_path('5_09_solution.sce');
datafile=WD+filesep()+'5_09_example.sci';
clc;
exec(datafile)
V_A = V_A * 1000 / 3600; //conversion from [kmph] to [m/s]
P_atmair = P_atmair / 100; //conversion from [cm of Hg] to [m og Hg]
P_air = P_air / 100; //conversion from [cm of Hg] to [m of Hg]
//(a)
h_1 = rho_Hg / rho_sw * (P_atmair - P_air); //from pressure realtion P=rho*g*h
printf("Ocean swell at point 3 is %1.2f m", h_1);
//(b)
h_air = (V_A)^2 / (2 * g); //Bernoulli equation application between A and B
rho_air = P_air / P_atmair * rho_atmair //from ideal gas equation
h_dynamic = rho_air / rho_sw * h_air; //surge of point 2 from point 3
h_2 = h_1 + h_dynamic; //total surge at point 2
printf("\nOcean swell at point 2 is %1.2f m", h_2);
|
d665eec887fe8ea14615b3376918f0500487481b | b26cbe6bc3e201f030705aaf9eb82da94def231f | /tests/Morisita_RP-018.tst | 2ea4fc7e33ca17a5567d27592114967d9017f4d5 | [] | 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-018.tst | ../inputs/pops-10x2-rand-02.ssv |
cf5b868e0fe652ba7ddb917b87d918f9269073bb | 449d555969bfd7befe906877abab098c6e63a0e8 | /3482/CH8/EX8.8/Ex8_8.sce | 61419596d2bc108e0d97071064974c2431885842 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 523 | sce | Ex8_8.sce | clc;
//page 432
//Given
T2=600;//lb, Tension from side 2
us=0.25;// Coeffiecient of static friction between pulley and belt
bta=(2*%pi)/3;//Co=efficient of kinetic friction between pulley and belt
r1=8//in in
//Pulley B
T1=T2/(exp(us*bta))//N, Tension from side 1
//disp(T1)
//Pulley A
//Aumming moment about A
MA=(T2*r1)-(T1*r1);//lb-ft, Couple MA applied to pulley which is equal and opposite to torque
printf("The largest torque which can be exerted by belt on pulley A is MA= %0.0f lb-in\n",MA);
|
964756947f4be4f889abbfba2a92e753954b910b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1913/CH6/EX6.1/ex1.sce | d0787a9cd0d0df6e20ed30b133f1a59e27a42ca3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 653 | sce | ex1.sce | clc
clear
//Input data
t1=270;//Temperature inside surface of the furnace wall in degree centigrade
t3=20;//Temperature outside surface is dissipating heat by convection into air in degree centigrade
L=0.04;//Thickness of the wall in m
K=1.2;//Thermal conductivity of wall in W/m-K
t2=70;//Temperature of outside surface should not exceed in degree centigrade
A=1;//Assuming area in m^2
//Calculations
Q1=(K*A*(t1-t2))/(L);//Heat transfer through the furnace wall in W
hc=(Q1)/(A*(t2-t3));//Heat transfer coefficient in W/m^2K
//Output
printf('The minimum value of heat transfer coefficient at the outer surface hc = %3.1f W/m^2K',hc)
|
c16f3a10f010ad577f0d49eb8a23db5ac742df1d | 449d555969bfd7befe906877abab098c6e63a0e8 | /2126/CH7/EX7.14/14.sce | 2544f58dec9a9324e5ee13342126af07b80f1c06 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 788 | sce | 14.sce | clc
clear
//input data
R0=6341.6*10^3 //radius of earth at mean sea-level in m
g=9.809 //acceleration due to gravity in m/s^2
Z1=0 //altitude at sea-level in m
Z2=300*10^3 //altitude above sea-level in m
//calculation
uorb1=R0*sqrt(g/(R0+Z1)) //orbit velocity of a rocket at mean sea level in m/s
uesc1=sqrt(2)*uorb1 //escape velocity of a rocket at mean sea level in m/s
uorb2=R0*sqrt(g/(R0+Z2)) //orbit velocity of a rocket at an altitude of 300 km in m/s
uesc2=sqrt(2)*uorb2 //escape velocity of a rocket at an altitude of 300 km in m/s
//output
printf('(A)orbit and escape velocities of a rocket at mean sea level are %3i m/s and %3i m/s\n (B)orbit and escape velocities of a rocket at an altitude of 300 km are %3.1f m/s and %3.2f m/s',uorb1,uesc1,uorb2,uesc2 )
|
ff1bb992c06cac65984ccf5542d62fb9a594cca9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /710/CH10/EX10.7/10_7.sci | a39c827841129aab7f92846f01fb1700c947771d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 503 | sci | 10_7.sci | clc();
clear;
//To determine the kinetic energy of electron
h=6.626*10^-34; //plancks constant
E=85; //Energy in keV
c=3*10^8; //speed of light
lambda=(h*c)/(E*10^3*(1.6*10^-19)); //de Broglie wavelength
m=9.1*10^-31; //mass of electron
K=((h^2)/((lambda^2)*2*m*1.6*10^-9))*10^7 //kinetic energy of electron
printf("The kinetic enery of the electron is %f keV",K);
|
9d24b5c84e73da181c8122acddf66487bdbf4fec | 449d555969bfd7befe906877abab098c6e63a0e8 | /2825/CH18/EX18.5/Ex18_5.sce | fa1236caee205e593804c8ab3fa5b203792a6fb9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 215 | sce | Ex18_5.sce | //Ex18_5 Pg-947
clc
d=5*10^(-6) //thickness of silicon in m
Dc=3.4*10^(-3) //diffusion coefficient in m^2sec^(-1)
t=d^2/(2*Dc) //time taken to diffuse
printf("Time taken to diffuse = %.1f*1e-9 sec",t*1e9)
|
7bdcb09d7df88981fbb96958a71abfa191e92016 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2672/CH3/EX3.8/Ex3_8.sce | 84d526a15b59ba6d307cfbd85eeaf8d016dc7845 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 328 | sce | Ex3_8.sce | //Example 3_8
clc;
clear;
close;
format('v',5);
//given data :
V=100;//V
f=50;//Hz
R=10;//ohm
L=100;//mH
C=100;//micro F
XL=2*%pi*f*L*10^-3;//ohm
XC=1/2/%pi/f/(C*10^-6);//ohm
IR=V/R;//A
disp(IR,"Current through R(A)");
IL=V/XL;//A
disp(IL,"Current through L(A)");
IC=V/XC;//A
disp(IC,"Current through C(A)");
|
0d8bfec52fe23235246880b11e9a8dd2d5b03fae | b26cbe6bc3e201f030705aaf9eb82da94def231f | /tests/Morisita_RP-005.tst | de155eb60c764931d8ac92736e76e3ddc553ccb2 | [] | 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 | 32 | tst | Morisita_RP-005.tst | ../inputs/pops-4x2-0101-1010.ssv |
043853f5a51c9ce20b2d3a3bef92cc8c8e6c0403 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2063/CH1/EX1.41/1_41.sce | 6f61a9e1090996637e482f25d7462dcbdb2c65ad | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,502 | sce | 1_41.sce | clc
clear
//Input data
P1=1;//Initial pressure of a gas turbine plant in bar
T1=310;//Initial temperature in K
P2=4;//Pressure of air after compressing in a rotary compressor in bar
P3=P2;//Constant pressure process
P41=P1;//Since 1-41 is a constant pressure process in bar
T3=900;//Temperature of air at the point 3 in constant process in K
nc=80;//Efficiency of the compressor in percentage
nt=85;//Efficiency of the turbine in percentage
E=70;//Effectiveness of the plant in percentage
r=1.4;//Isentropic index
Cp=1;//Specific heat of air at constant pressure in kJ/kg K
//Calculations
T21=T1*(P2/P1)^((r-1)/r);//Temperature at the point 21 in the temperature versus entropy graph in K
T2=T1+((T21-T1)/(nc/100));//Temperature of air after the compression process in K
T41=T3/((P3/P41)^((r-1)/r));//Temperature at the point 41 after the isentropic expansion process in K
T4=T3-((T3-T41)*(nt/100));//Temperature at the point 4 in K
Wt=Cp*(T3-T4);//Work done by the turbine in kJ
Wc=Cp*(T2-T1);//Work done by the compressor in kJ
Wn=Wt-Wc;//Net work done in kJ
qs=Cp*(T3-T2);//Heat supplied in kJ
qa=Cp*(T4-T2);//Heat available in the exhaust gases in kJ
H=qa*(E/100);//Actual heat recovered from the exhaust gases in the heat exchanger in kJ
Hs=qs-(H);//Heat supplied by the combustion chamber in kJ
nt=(Wn/Hs)*100;//Thermal efficiency of the gas turbine plant with heat exchanger in percent
//Output
printf('The overall efficiency of the plant is %3.1f percent',nt)
|
f681f1c2cc9d7d9256f810732cf380acef40070a | 717ddeb7e700373742c617a95e25a2376565112c | /278/CH15/EX15.6/ex_15_6.sce | 9c8d70f26d6e4b14c532ddb5d4d017f54736be88 | [] | no_license | appucrossroads/Scilab-TBC-Uploads | b7ce9a8665d6253926fa8cc0989cda3c0db8e63d | 1d1c6f68fe7afb15ea12fd38492ec171491f8ce7 | refs/heads/master | 2021-01-22T04:15:15.512674 | 2017-09-19T11:51:56 | 2017-09-19T11:51:56 | 92,444,732 | 0 | 0 | null | 2017-05-25T21:09:20 | 2017-05-25T21:09:19 | null | UTF-8 | Scilab | false | false | 1,450 | sce | ex_15_6.sce | //desing right angled bell crank lever
clc
//soltuion
//given
//ref fig 15.14
FB=500//mm
W=4500//N
FA=150//mm
ft=75//N/mm^2
t=60//N/mm^2
pb=10//N/mm^2
P=(W*500)/150//N
Rf=sqrt(P^2 + W^2)//N
//desing of uflcrum pin
//let d be dia and l be thickness of fulcrum
//l=1.25d
//P=d*l*pb=12.5*d^2
//d=sqrt(P/12.5)//mm
printf("the diameter is,%f mm\n",sqrt(P/12.5))
printf("the dia is say,d=36mm\n")
d=36//mm
l=1.25*d//mm
printf("the length of fulcrum pin is,%f \n",l)
d1=d+ 2*3
printf("the dia of hole in leverr is,%f mm\n",d1)
printf("the dia of boss at fulcrum is,%f mm\n",2*d)
printf("the bending moment at fulcrum is,%f N-mm\n",W*FB)
//design of pin at A
//since force acting at A is not very much different from rxn at fulcrum ,therfore same dimenion of pin and boss may be used as for fulcrum pin
da=36//mm
la=45//mm
dba=72//mm
printf("diameter,length and dia of boss at A is ,%f mm\n,%f mm\n,%f mm\n",da,la,dba)
//desig of pin at B
//let db and lb be dia and length
//W=db*lb*pb
//lb=1.25db
//w=12.5 *db^2
db=sqrt(W/12.5)
lb=1.25*db
printf("the dia and length at B is,%f mm\n,%f mm\n",db,lb)
printf("the inner dia is,%f mm\n",db+6)
printf("the outer dia is,%f mm\n",2*db)
//desig of lever
//let tl and bl be thioknes and dia at lever
//bl=3tl
Ml=4500*(500-50)//N-mm
//Z=(1/6)*t*b^2=1.5*t^3
//ft=Ml/Z
tl=(Ml/(1.5*75))^(1/3)//mm
printf("the thcikness and width of lever is,%f mm\n,%f mm\n ",tl,3*tl)
|
3ff7164c81a577ebf678be9b6d4a8c5bf55b7024 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1382/CH5/EX5.25/EX_5_25.SCE | 9a7c0268ec0aef21eeb5319199ed32560c69af89 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 308 | sce | EX_5_25.SCE | // Example 5.24:PERCENTAGE TILT
clc;
clear;
close;
Rc=4;//RESISTANCE IN KILLO OHMS
Rl=2;//RESISTANCE IN KILLO OHMS
R1=Rc+Rl;//
C=10;//capacitance in micro farad
fl=(1/(2*%pi*R1*10^3*C*10^-6));//LOWER CUT -OFF FREQUENCY
f=200;//frequency in hertz
P= (%pi*fl)/f;//
disp(P*100,"percentage tilt is")
|
e45966ceb63b727512c757be6b5acc983cabe9dd | 449d555969bfd7befe906877abab098c6e63a0e8 | /2075/CH5/EX5.11/pe5_11.sce | 4083bbef002af011ce851a3209671ba05c405dc8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 178 | sce | pe5_11.sce | //example 5.11
clc; funcprot(0);
// Initialization of Variable
P=200;//power
R=8;//ohm
//calculation
Il=(P/R)^.5*2^.5;
Ilm=1.2*Il;
disp(Ilm,"limit level current in A:")
|
79e33c204dec512dd53ea546021b94e48a7547f9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1319/CH12/EX12.4/i_4.sce | 912beb4f55faf0e017a5927b00df4ecb89df8865 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 269 | sce | i_4.sce | // Calculating resistance.
clc;
clear;
L=2.5*(10^-2); // Length of rectangular cross-section.
B=0.05*(10^-2);// Breadth of rectangular cross-section.
A=L*B;
l=1*(10^3);
p=1.724*(10^-8);
R=p*l/A;
disp('ohms',R,'The Resistance of the copper strip =')
|
6513a548428fac7e9b1bc3edd46c957eac4d7f02 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set5/s_Electrical_Machines_-_1_T._Singh_704.zip/Electrical_Machines_-_1_T._Singh_704/CH2/EX2.10/ex2_10.sce | ce0963347b2e00dd288ed939a08a4ee7cafe285f | [] | 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 | 427 | sce | ex2_10.sce | errcatch(-1,"stop");mode(2);//Caption:Calculate the increase of main field flux in percentage
//Exam:2.10
;
;
N_1=750;//speed of dc machine(in rpm)
E_1=220;//induced emf in dc machine when running at N_1
N_2=700;//speed of dc machine second time (in rpm)
E_2=250;//induced emf in dc machine when running at N_2
F=E_2*N_1/(E_1*N_2);
Inc=(F-1);
disp(Inc*100,'increase in main field flux of the dc machine=');
exit();
|
bb42bbb6dfc9a1a9e2674549ce88df29bfa1321b | b5801afaa3964cbd7f9c1c8cf732cdcdb020e7fc | /Scilab6-Keras-Toolbox/macros/ANN_test_sample.sci | 0dda1a1dcd082034707c49a94d8d59aedea95e1f | [
"BSD-3-Clause"
] | permissive | TanayKarve/scilab-keras-toolbox | e179b283102a580f2192d44c63dbc44a6fbaf03d | 48045cd955c821a00377f9719f21fe0f91148541 | refs/heads/master | 2022-12-03T09:22:16.551928 | 2020-08-23T13:26:21 | 2020-08-23T13:26:21 | 289,681,759 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 909 | sci | ANN_test_sample.sci |
function [y]=ANN_test_sample()
// This function is used to test the trained neural network.
// It returns the label which it has guessed according to the provided test sample.
//
// Syntax
// y = ANN_test(in1);
//
// Parameters
// y : class guessed by the neural network
// in1 : test sample values (excluding the label column.)
//
// Description
// Upon calling this function, a dialog box will open which will ask you to choose the model file
// which has been saved to disk after training completion by ANN_train().
// The model files are saved inside the 'models' folder
// It is of the format 'neural_network ###.ml'.
//
//
// Examples
// //Testing the neural network for input values sample to guess class name
// y = ANN_test_sample(test_sample=[5.4,3.4,1.5,0.4]);
//
//Authors
//Tanay Karve
endfunction
|
6f5da9376f866276521daa04c31d25004e3ff656 | 449d555969bfd7befe906877abab098c6e63a0e8 | /581/CH9/EX9.4/Example9_4.sce | 7efa6ba0dcb68e2defa624082eaae18c1e9a9b71 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 416 | sce | Example9_4.sce |
clear;
clc;
printf("\t Example 9.4\n");
a=13600; //desity difference,kg/m^3
s=0.487; //surface tension,kg/s^2
L=2*%pi*(3^0.5)*(s/(9.8*a))^0.5*100; //spacing wavelength,cm
printf("\t maximum spacing is : %.1f cm\n",L);
printf("\t actually this spacing would give the maximum rate of collapse.it can be shown that collapse would begin at 1/3^0.5 times this value or at 1.2 cm.")
//end |
2a3eae4af04aab3f51ecf7245a572c3ba91ea7a0 | 717ddeb7e700373742c617a95e25a2376565112c | /3044/CH5/EX5.11/Ex5_11.sce | 095e690dc31db71a63b7142ff36705f5f109128d | [] | no_license | appucrossroads/Scilab-TBC-Uploads | b7ce9a8665d6253926fa8cc0989cda3c0db8e63d | 1d1c6f68fe7afb15ea12fd38492ec171491f8ce7 | refs/heads/master | 2021-01-22T04:15:15.512674 | 2017-09-19T11:51:56 | 2017-09-19T11:51:56 | 92,444,732 | 0 | 0 | null | 2017-05-25T21:09:20 | 2017-05-25T21:09:19 | null | UTF-8 | Scilab | false | false | 818 | sce | Ex5_11.sce | // Variable declaration
alpha = 2 // mean of normal distribution
beta = 0.1 // standard deviation of normal distribution
// Calculation
// we need to find p(Io/Ii) = p( (ln(b)-alpha) / beta) - p( (ln(a)-alpha) / beta)
a = 6.1 // lower limit
b = 8.2 // upper limit
Z1 = (log(b) - alpha)/(0.1) // Z value correponding to upper limit
Z2 = (log(a) - alpha)/(0.1) // Z value correponding to lower limit
p1 = 0.8413 // probability corresponding to Z1
p2 = 0.0274 // probability corresponding to Z2
p = p1 - p2 // Required probability
// Result
printf ( " required probability: %.4f",p)
|
b2a89da39c2e60410f0ef03af3cc94a946279017 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2438/CH5/EX5.3/Ex5_3.sce | 8404a79c573f8034831db8e309f30fde3c36430a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 813 | sce | Ex5_3.sce | //===============================================================================
//chapter 5 exmple 3
clc;
clear;
//input data
V = 63.5; //atomic weight in kg
d = 8.92*10^3; //density of copper in kg/m^3
r = 0.7*10^-3; //radius in m
I = 10; //current in A
e = 1.6*10^-19; //charge of electronin coulomb
h = 6.02*10^28; //planck's constant in (m^2)*kg/s
//calculation
A = %pi*(r^2); // area in m^2
N = h*d;
n = N/V;
J = I/A; //current density in m/s
vd = J/(n*e); //drift velocity in m/s
//result
mprintf('velocity=%2e.m/s\n',vd);
//================================================================================
|
956900a0da1b44290368da6570d1a4f9179b39c6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2048/DEPENDENCIES/seshft.sci | e69cdf5b32a9c5e69d51318e6b47537f3d9e7b84 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | sci | seshft.sci | // function C = seshft(A,B,N)
//given A and B matrices, returns C = [<-A-> 0
// 0 <-B->] with B shifted east by N cols
function C = seshft(A,B,N)
[Arows,Acols] = size(A);
[Brows,Bcols] = size(B);
if N >= 0
B = [zeros(Brows,N) B];
Bcols = Bcols + N;
elseif N < 0
A = [zeros(Arows,abs(N)) A];
Acols = Acols +abs(N);
end
if Acols < Bcols
A = [A zeros(Arows,Bcols-Acols)];
elseif Acols > Bcols
B = [B zeros(Brows,Acols-Bcols)];
end
C = [A
B];
endfunction
|
48bc388a9cf8b26930ccb4be3deca751e94a56ee | 449d555969bfd7befe906877abab098c6e63a0e8 | /389/CH3/EX3.6/Example3_6.sce | d6ba423e5b50a3c9320ed4e7086c1182e284b897 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,908 | sce | Example3_6.sce | clear;
clc;
// Illustration 3.6
// Page: 77
printf('Illustration 3.6 - Page: 77\n\n');
// solution
//***Data***//
Dp = 0.0125;// [m]
viscosity = 2.4*10^(-5);// [kg/m.s]
Sc = 2;
E = 0.3;
Go = (2*10^(-3))/0.1;// molar superficial mass velocity [kmol/square m.s]
//********//
// a = CO b = Ni(CO)4
// Nb = -(Na/4);
Flux_a = 4/3;
Ca2_by_C = 0;// At the metal interface
// Ca1_by_C = Ya //mole fraction of CO in the bulk
// Eqn. 3.1 becomes: Na = (4/3)*F*log((4/3)/((4/3)-Ya));
// Let G = kmol gas/(square m bed cross section).s
// a = specific metal surface
// z = depth
// Therefore, Na = -(diff(Ya*G))/(a*diff(z));// [kmol/((square m metal surface).s)];
// For each kmol of CO consumed, (1/4)kmol Ni(CO)4 forms, representing a loss of (3/4) kmol per kmol of CO consumed.
// The CO consumed through bed depth dz is therefore (Go-G)(4/3) kmol;
// Ya = (Go-(Go-G)*(4/3))/G;
// G = Go/(4-(3*Ya));
// diff(YaG) = ((4*Go)/(4-3*Ya)^2)*diff(Ya);
// Substituting in Eqn. 3.64
// -(4*Go/((4-3*Ya)^2*a))*(diff(Ya)/diff(z)) = (4/3)*F*log(4/(4-3*Ya));
// At depth z:
// Mass velocity of CO = (Go-(Go-G)/(4/3))*28;
// Mass velocity of Ni(CO)4 = ((Go-G)*(1/3))*170.7;
// G_prime = 47.6*Go-19.6G; // total mass velocity [kg/square m.s]
// Substituting G leads to:
// G_prime = Go*(47.6-19.6*(4-3*Ya));// [kg/m.s]
// Re = (Dp*G')/viscosity
// With Go = 0.002 kmol/square m.s & Ya in the range 1-0.005, the range of Re is 292-444;
// From table 3.3:
// Jd = (F/G)*(Sc^(2/3)) = (2.06/E)*Re^(-0.575);
// F = (2.06/E*(Sc)^(2/3))*(Go/(4-3*Ya))*Re^(-0.575);
a = 6*(1-E)/Dp;
// Result after arrangement:
Z = integrate('-((4*Go)/((4-(3*Ya))^2*a))*(3/4)*(E*(Sc^(2/3))*(4-(3*Ya))/(2.06*Go)*(1/log(4/(4-(3*Ya)))))*(((Dp/viscosity)*(Go*(47.6-(19.6/(4-(3*Ya))))))^0.575)','Ya',1,0.005);// [m]
printf('The bed depth required to reduce the CO content to 0.005 is %f m', Z); |
126d467b26a9b31133ccd1cc255556e9fbf5e3a2 | e9d5f5cf984c905c31f197577d633705e835780a | /data_reconciliation/linear/scilab/P14/P14.sce | 0e24d64e6026f6b6292da5a097f3e9eb817f4ed9 | [] | no_license | faiz-hub/dr-ged-benchmarks | 1ad57a69ed90fe7595c006efdc262d703e22d6c0 | 98b250db9e9f09d42b3413551ce7a346dd99400c | refs/heads/master | 2021-05-18T23:12:18.631904 | 2020-03-30T21:12:16 | 2020-03-30T21:12:16 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 6,092 | sce | P14.sce | // Data Reconciliation Benchmark Problems From Lietrature Review
// Author: Edson Cordeiro do Valle
// Contact - edsoncv@{gmail.com}{vrtech.com.br}
// Skype: edson.cv
//Proposed by author
// 24 Streams
// 14 Equipments
clear xm var jac nc nv i1 i2 nnzeros sparse_dg sparse_dh lower upper var_lin_type constr_lin_type constr_lhs constr_rhs
xm =[54.4
149
157.2
148.1
466
466
510.3
218
292.3
292.3
84.4
13.5
70.9
13.5
208
2.9
2.9
87.3
189.6
204
54.3
149.7
201.7
16.3
];
//the variance
var = [0.284217
2.132184
2.373325
2.106504
57.932395
57.932395
69.470558
4.564205
8.205589
8.205589
0.684127
0.194481
0.596018
0.194481
4.155075
0.008974
0.008974
8.132763
3.452461
3.996801
0.283173
2.152265
3.907185
0.025517
];
//
// gross error
gerror = zeros(length(xm),1);
// to setup gross errors, select the stream and magnitude as the line bellow
//gerror(2) = 9*sqrt(var(2));
xm = xm + gerror;
//The jacobian of the constraints
// 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
jac = [ 1 1 1 1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 //M1
0 0 0 0 1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 //F1
0 0 0 0 0 1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 //T1
0 0 0 0 0 0 1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 //S1
0 0 0 0 0 0 0 0 1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 //F2
// 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
0 0 0 0 0 0 0 0 0 1 -1 0 0 0 -1 0 0 0 0 0 0 0 0 0 //M2
0 0 0 0 0 0 0 0 0 0 1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 //S3
0 0 0 0 0 0 0 0 0 0 0 1 0 -1 0 0 0 0 0 0 0 0 0 0 //F3
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 -1 0 0 -1 0 0 0 0 0 //F4
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 -1 0 0 0 0 0 0 0 //F5
// 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 -1 0 0 0 0 0 0 //S5
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 -1 0 0 0 0 //T2
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 -1 -1 0 0 //S4
0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 //S2
];
// 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
//observability/redundancy tests
umeas_P14 = [];
[red_P14, just_measured_P14, observ_P14, non_obs_P14, spec_cand_P14] = qrlinclass(jac,umeas_P14)
// reconcile with all measured. To reconcile with only redundant variables, uncomment the "red" assignments
measured_P14 = setdiff([1:length(xm)], umeas_P14);
red = measured_P14;//
// to reconcile with all variables, comment the line above and uncomment bellow
//red = [1:length(xm)];
// to run robust reconciliation,, one must choose between the folowing objective functions to set up the functions path and function parameters:
//WLS = 0
// Absolute sum of squares = 1
//Cauchy = 2
//Contamined Normal = 3
//Fair = 4
//Hampel = 5
//Logistic = 6
//Lorenztian = 7
//Quasi Weighted = 8
// run the configuration functions with the desired objective function type
obj_function_type = 0;
exec ../functions/setup_DR.sce
// to run robust reconciliation, it is also necessary to choose the function to return the problem structure
if obj_function_type > 0 then
[nc_eq, n_non_lin_eq, nv, nnzjac_ineq, nnzjac_eq, nnz_hess, sparse_dg, sparse_dh, lower, upper, var_lin_type, constr_lin_type, constr_lhs, constr_rhs] = robust_structure(jac, 0, xm, objfun, res_eq, res_ineq);
else
// for WLS, only the line bellow must be choosen and comment the 3 lines above
[nc, nv, i1, i2, nnzeros, sparse_dg, sparse_dh, lower, upper, var_lin_type, constr_lin_type, constr_lhs, constr_rhs] = wls_structure(jac);
end
params = init_param();
// We use the given Hessian
params = add_param(params,"hessian_approximation","exact");
params = add_param(params,"derivative_test","second-order");
params = add_param(params,"tol",1e-8);
params = add_param(params,"acceptable_tol",1e-8);
params = add_param(params,"mu_strategy","adaptive");
params = add_param(params,"journal_level",5);
[x_sol, f_sol, extra] = ipopt(xm, objfun, gradf, confun, dg, sparse_dg, dh, sparse_dh, var_lin_type, constr_lin_type, constr_rhs, constr_lhs, lower, upper, params);
mprintf("\n\nSolution: , x\n");
for i = 1 : nv
mprintf("x[%d] = %e\n", i, x_sol(i));
end
mprintf("\n\nObjective value at optimal point\n");
mprintf("f(x*) = %e\n", f_sol);
// Balances mounted based on the visual diagram for final check
// Global Mass balance
x_sol(1)+x_sol(2)+x_sol(3)+x_sol(4)-x_sol(14)-x_sol(18)-x_sol(21)-x_sol(22)-x_sol(23)-x_sol(24)
//M1
x_sol(1)+x_sol(2)+x_sol(3)+x_sol(4)-x_sol(5)
//F1
x_sol(5)-x_sol(6)
//T1
x_sol(6)-x_sol(7)
//S1
x_sol(7)-x_sol(8)-x_sol(9)
//F2
x_sol(9)-x_sol(10)
//M2
x_sol(10)-x_sol(11)-x_sol(15)
//S3
x_sol(11)-x_sol(12)-x_sol(13)
//F3
x_sol(12)-x_sol(14)
//F4
x_sol(15)-x_sol(16)-x_sol(19)
//F5
x_sol(16)-x_sol(17)
//S5
x_sol(13)+x_sol(17)-x_sol(18)
//T2
x_sol(19)-x_sol(20)
//S4
x_sol(20)-x_sol(21)-x_sol(22)
//S2
x_sol(6)-x_sol(7)
|
a2827865fe485ba30b0aa5c7f74e41717b509491 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2021/CH19/EX19.9/EX19_9.sce | 8ba1719c340e020759fab74c156d8e3490bd911f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 272 | sce | EX19_9.sce | //Finding of Manometric head
//Given
D1=0.4;
B1=0.025;
Q=0.06;
N=1000;
a=30;
g=9.81;
Emano=0.8;
//To Find
u=(%pi*D1*N)/60;
Vf=Q/(%pi*D1*B1);
Vw1=(-Vf*tan(%pi/6)+u);
H=(Vw1*u)/g;
Hm=(Emano*u*Vw1)/g;
Hm1=2*Hm;
disp("Head Developed ="+string(Hm1)+" meter");
|
a354261f8ffc12c63b810c9c39297b7cf7dc426a | 449d555969bfd7befe906877abab098c6e63a0e8 | /2777/CH7/EX7.14/Ex7_14.sce | 2b3a13c2a8b3e4199f649a053320760aee95e43d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,385 | sce | Ex7_14.sce |
// ELECTRICAL MACHINES
// R.K.Srivastava
// First Impression 2011
// CENGAGE LEARNING INDIA PVT. LTD
// CHAPTER : 7 : SPECIAL MOTORS AND INTRODUCTION TO GENERALIZED MACHINE THEORY
// EXAMPLE : 7.14
clear ; clc ; close ; // Clear the work space and console
// GIVEN DATA
Va = 220 * exp( %i * 0 * %pi/180); // Three phase in Volts
Vb = 230 * exp( %i * (-115) * %pi/180); // Three phase in Volts
Vc = 250 * exp( %i * (-245) * %pi/180); // Three phase in Volts
// CALCUALTIONS
// We know that operator :-
alpha = 1 * exp( %i * 120 * %pi/180);
alpha2 = 1 * exp( %i * (-120) * %pi/180);
Va0 = (Va+Vb+Vc)/3 // Zero sequence Voltage in Volts
Va1 = (Va+alpha*Vb+alpha2*Vc)/3 // Positive sequence Voltage in Volts
Va2 = (Va+alpha2*Vb+alpha*Vc)/3 // Negative sequence Voltage in Volts
// DISPLAY RESULTS
disp("EXAMPLE : 7.14 : SOLUTION :-") ;
printf("\n (a) Zero sequence Voltage, Va0 = %.2f < %.2f V \n",abs(Va0),atand(imag(Va0),real(Va0)))
printf("\n (b) Positive sequence Voltage, Va1 = %.3f < %.2f V \n",abs(Va1),atand(imag(Va1),real(Va1)))
printf("\n (c) Negative sequence Voltage, Va1 = %.2f < %.1f V \n",abs(Va2),atand(imag(Va2),real(Va2)))
|
5c1b17fbe52c66da546627afebdbbce7f3beae6b | 449d555969bfd7befe906877abab098c6e63a0e8 | /257/CH8/EX8.7/example_8_7.sce | 9560835c3a2aca477b3157e0b7e46fad8d8ee63e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 616 | sce | example_8_7.sce | //determining critical value of K
s=%s
syms K
m=s^4+22*s^3+10*s^2+s+K
cof_a_0 = coeffs(m,'s',0);
cof_a_1 = coeffs(m,'s',1);
cof_a_2 = coeffs(m,'s',2);
cof_a_3 = coeffs(m,'s',3);
r=[cof_a_0 cof_a_1 cof_a_2 cof_a_3]
n=length(r);
routh=[r([4,2]);r([3,1])];
routh=[routh;-det(routh)/routh(2,1),0];
t=routh(2:3,1:2); //extracting the square sub block of routh matrix
routh=[routh;-det(t)/t(2,1),0]
disp(routh,"rouths tabulation=")
routh(3,1)=0 //For marginaly stable system
sys=syslin('c',1/(s^4+22*s^3+10*s^2+s))
k=kpure(sys)
disp(k,"K(marginal)=")
w=sqrt(-k/9.95)
disp(w,"w = ")
|
0f9a5da90127fd8c7477cf372355346c74c64ca5 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.5/tests/examples/asin.man.tst | 33675d1b990acc1c10cedb6a6edca0d5f01312ff | [
"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 | 41 | tst | asin.man.tst | clear;lines(0);
A=[1,2;3,4]
sin(asin(A))
|
f1c912fa1ffdc879e48f5feaffaf42b0093302ec | 06ac82af6135b9e0c98564d99e589a9f8eaae7eb | /Scilab/OraclePG.sci | e11af1527951bb7a99ae69e6fd14262d889cdf59 | [] | no_license | Tim3128/Projet-sur-les-reseaux-de-distribution-d-eau | e89852057e1e729a1a8e4bc2296924c55ff26ddb | 5d258f6a2756116bd87eef9b60704fd99290aac5 | refs/heads/master | 2020-05-21T04:14:25.889230 | 2017-05-17T22:43:37 | 2017-05-17T22:43:37 | 84,572,156 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 356 | sci | OraclePG.sci | function [F,G,ind]=OraclePG(qc,ind)
q=q0+B*qc
if ind == 2 then
F = (1/3)*q'*(r.*q.*abs(q))+pr'*Ar*q;
G = 0;
end
if ind == 3 then
F = 0;
G = B'*(r.*q.*abs(q)+Ar'*pr);
end
if ind == 4 then
F=(1/3)*q'*(r.*q.*abs(q))+pr'*Ar*q;
G = B'*(r.*q.*abs(q)+Ar'*pr);
end
endfunction
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.